Merge branch 'PUB'

* PUB:
  update gitignore
  第8次课
  update data
This commit is contained in:
Ming Su 2024-03-27 23:57:20 +08:00
commit cdbea27165
2222 changed files with 1730187 additions and 906 deletions
.gitignore
SD
20240321_0_R实践课程
20240326_1_codestyle
20240326_2_dataimport
20240326_3_datatransform
20240326_9_课后作业
20240328_1_datatransform
20240328_2_正则表达式
20240328_3_datavisualize
20240328_4_实践部分
_extensions/inst/css
_freeze/SD/20240328_3_datavisualize/index
execute-results
figure-revealjs
coord-cartesian-1.pngcoord-cartesian-1.svgcoord-cartesian-comp-flip-1.pngcoord-cartesian-comp-flip-1.svgcoord-cartesian-comp-polar-1.pngcoord-cartesian-comp-polar-1.svgcoord-cartesian-comp-polar-no-padding-1.pngcoord-cartesian-comp-polar-no-padding-1.svgcoord-cartesian-comp-polar-stacked-1.pngcoord-cartesian-comp-polar-stacked-1.svgcoord-cartesian-comp-polar-stacked-sorted-1.pngcoord-cartesian-comp-polar-stacked-sorted-1.svgcoord-cartesian-switch-x-y-1.pngcoord-cartesian-switch-x-y-1.svgcoord-cartesian-ylim-1.pngcoord-cartesian-ylim-1.svgcoord-cartesian-zoom-1.pngcoord-cartesian-zoom-1.svgcoord-clip-1.pngcoord-clip-1.svgcoord-clip-text-1.pngcoord-clip-text-1.svgcoord-clip-text-repel-1.pngcoord-clip-text-repel-1.svgcoord-expand-off-clip-1.pngcoord-expand-off-clip-1.svgcoord-fixed-1.pngcoord-fixed-1.svgcoord-fixed-custom-1.pngcoord-fixed-custom-1.svgcoord-flip-1.pngcoord-flip-1.svgcoord-flip-again-1.pngcoord-flip-again-1.svgcoord-polar-1.pngcoord-polar-1.svgcoord-polar-coxcomb-1.pngcoord-polar-coxcomb-1.svgcoord-polar-pie-1.pngcoord-polar-pie-1.svgcoord-polar-pie-sorted-1.pngcoord-polar-pie-sorted-1.svgcoord-polar-theta-x-1.pngcoord-polar-theta-x-1.svgcoord-polar-theta-y-1.pngcoord-polar-theta-y-1.svgcoord-sf-1.pngcoord-sf-bonne-1.pngcoord-sf-bonne-ocean-1.pngcoord-sf-bonne-ocean-aes-1.pngcoord-sf-bonne-ocean-inner-1.pngcoord-sf-mollweide-1.pngcoord-trans-log-1.pngcoord-trans-log-1.svgdiamonds-facet-1.pngdiamonds-facet-1.svgdiamonds-facet-dark-1.pngdiamonds-facet-dark-1.svgdiamonds-facet-scales-color-1.pngdiamonds-facet-scales-color-1.svgdiamonds-facet-scales-no-legend-1.pngdiamonds-facet-scales-no-legend-1.svgdiamonds-facet-scales-xy-1.pngdiamonds-facet-scales-xy-1.svgdiamonds-facet-scales-y-dollar-format-1.pngdiamonds-facet-scales-y-dollar-format-1.svgdiamonds-facet-scales-y-function-1.pngdiamonds-facet-scales-y-function-1.svgdiamonds-facet-scales-y-paste-format-1.pngdiamonds-facet-scales-y-paste-format-1.svgdiamonds-facet-start-1.pngdiamonds-facet-start-1.svgdiamonds-facet-store-1.pngdiamonds-facet-store-1.svgexercise-facets-1.pngexercise-facets-bonus-1.pngexercise-scales-1.pngfacet-grid-1.pngfacet-grid-1.svgfacet-grid-circumflex-1.pngfacet-grid-circumflex-1.svgfacet-grid-multiple-1.png

3
.gitignore vendored
View File

@ -4,3 +4,6 @@ site_libs/
BB/Ref.bib
_variables.yml
.Rproj.user/
_freeze/
*_cache/
*_files/

View File

@ -49,7 +49,7 @@ knitr::opts_chunk$set(echo = TRUE)
- 采用`R语言`+`quarto`完成
- 网页公开:[https://drwater.rcees.ac.cn/course/public/RWEP/\@PUB/index.html](https://drwater.rcees.ac.cn/course/public/RWEP/@PUB/index.html)
- 课件代码:[https://drwater.rcees.ac.cn/git/course/RWEP.git](https://drwater.rcees.ac.cn/git/course/RWEP.git)
- 代码web界面 [https://on.tty-share.com/s/hWkn5_eF6rfZuAyJu8sheMgrcRzx6AZ2m7V32IphFHs7gn-vP9WYOeVEYtH8a-bGTuM/](https://on.tty-share.com/s/hWkn5_eF6rfZuAyJu8sheMgrcRzx6AZ2m7V32IphFHs7gn-vP9WYOeVEYtH8a-bGTuM/)
- 代码web界面[https://on.tty-share.com/s/ny3JVrMuvUNOmnuioS3I7YEeVCi5Hk3Qc9vgz2QdX0FE2cYAQZFW2MUOkQyG0P5ZUR8/](https://on.tty-share.com/s/ny3JVrMuvUNOmnuioS3I7YEeVCi5Hk3Qc9vgz2QdX0FE2cYAQZFW2MUOkQyG0P5ZUR8/)
## 如何学习接下来的内容?

View File

@ -36,7 +36,6 @@ library(tidyverse)
library(nycflights13)
```
## tidy data
```{r}
@ -136,14 +135,20 @@ flights|>filter(dest=="IAH")|>
group_by(year,month,day)|>summarize(n=n(),
delay=mean(arr_delay,na.rm=TRUE))|>filter(n>10)
flights|>filter(carrier=="UA",
dest%in%c("IAH","HOU"),sched_dep_time>
0900,sched_arr_time<2000)|>group_by(flight)|>
summarize(delay=mean(
arr_delay,na.rm=TRUE),cancelled=sum(is.na(arr_delay)),
n=n())|>filter(n>10)
```
## 练习
```{r}
#| eval: false
flights |>
filter(dest == "IAH") |>
group_by(year, month, day) |>
summarize(n = n(),
delay = mean(arr_delay, na.rm = TRUE)) |>
filter(n > 10)
```
## quarto

View File

@ -274,12 +274,27 @@ geom_point(aes(fill = Area)) +
dwfun::theme_sci()
```
## 练习
```{r}
#| eval: false
metadf <- readxl::read_xlsx("../../data/airquality.xlsx")
dir.create("../../data/metacity2/")
metadf |>
nest(sitedf = -site) |>
mutate(flag = purrr::map2(site, sitedf,
~ writexl::write_xlsx(.y, paste0("../../data/metacity2/", .x, ".xlsx"))))
```
## 练习
```{r}
#| include: false
#| eval: false
if (FALSE) {
require(tidyverse)
conn <- cctdb::get_dbconn("nationalairquality")
metadf <- tbl(conn, "metadf") |>
collect()

View File

@ -318,894 +318,6 @@ flights |>
distinct(origin, dest, .keep_all = TRUE)
```
## 计数
```{r}
flights |>
count(origin, dest, sort = TRUE)
```
## 计数-练习
统计每月的航班数量。
```{r}
#| echo: false
flights |>
count(year, month, sort = TRUE)
```
## 计算新变量
```{r}
flights |>
mutate(
gain = dep_delay - arr_delay,
speed = distance / air_time * 60
)
```
## 计算新变量
```{r}
flights |>
mutate(
gain = dep_delay - arr_delay,
speed = distance / air_time * 60,
.before = 1
)
```
## 计算新变量
```{r}
flights |>
mutate(
gain = dep_delay - arr_delay,
speed = distance / air_time * 60,
.after = day
)
```
## 计算新变量
```{r}
flights |>
mutate(
gain = dep_delay - arr_delay,
hours = air_time / 60,
gain_per_hour = gain / hours,
.keep = "used"
)
```
## 列排序
```{r}
flights |>
relocate(time_hour, air_time)
```
## 列排序
```{r}
#| results: false
flights |>
relocate(year:dep_time, .after = time_hour)
flights |>
relocate(starts_with("arr"), .before = dep_time)
flights |>
select(starts_with("arr"), everything())
```
## 练习
计算目的地为IAH按飞行速度排序的表格保留year:day, `dep_time`, carrier, flight与speed列。
```{r}
flights |>
filter(dest == "IAH") |>
mutate(speed = distance / air_time * 60) |>
select(year:day, dep_time, carrier, flight, speed) |>
arrange(desc(speed))
```
## 练习
计算目的地为IAH按飞行速度排序的表格保留year:day, `dep_time`, carrier, flight与speed列。
```{r}
#| results: false
flights1 <- filter(flights, dest == "IAH")
flights2 <- mutate(flights1, speed = distance / air_time * 60)
flights3 <- select(flights2, year:day, dep_time, carrier, flight, speed)
arrange(flights3, desc(speed))
```
## 练习
计算目的地为IAH按飞行速度排序的表格保留year:day, `dep_time`, carrier, flight与speed列。
```{r}
flights |>
filter(dest == "IAH") |>
mutate(speed = distance / air_time * 60) |>
select(year:day, dep_time, carrier, flight, speed) |>
arrange(desc(speed))
```
## 分组统计
```{r}
library(tidyverse)
mtcars %>%
group_by(cyl) %>%
summarize(n = n())
```
## 分组统计
```{r}
flights |>
group_by(month)
```
## 分组统计
```{r}
flights |>
group_by(month) |>
summarize(
avg_delay = mean(dep_delay)
)
```
## 分组统计
```{r}
flights |>
group_by(month) |>
summarize(
avg_delay = mean(dep_delay, na.rm = TRUE)
)
```
## 分组统计
```{r}
flights |>
group_by(month) |>
summarize(
avg_delay = mean(dep_delay, na.rm = TRUE),
n = n()
)
```
## 分组统计
```{r}
flights |>
group_by(dest) |>
slice_max(arr_delay, n = 1) |>
relocate(dest)
```
## 分组统计
```{r}
flights |>
filter(dest == "IAH") |>
group_by(year, month, day) |>
summarize(
arr_delay = mean(arr_delay, na.rm = TRUE)
)
```
## 分组
```{r}
daily <- flights |>
group_by(year, month, day)
daily
```
## 分组统计
```{r}
daily_flights <- daily |>
summarize(n = n())
```
## 分组统计
```{r}
#| results: false
daily_flights <- daily |>
summarize(
n = n(),
.groups = "drop_last"
)
```
## 删除分组
```{r}
daily |> ungroup()
```
## 删除分组
```{r}
daily |>
ungroup() |>
summarize(
avg_delay = mean(dep_delay, na.rm = TRUE),
flights = n()
)
```
## 分组统计
```{r}
flights |>
summarize(
delay = mean(dep_delay, na.rm = TRUE),
n = n(),
.by = month
)
```
## 分组统计
```{r}
flights |>
summarize(
delay = mean(dep_delay, na.rm = TRUE),
n = n(),
.by = c(origin, dest)
)
```
## 练习
```{r}
df <- tibble(
x = 1:5,
y = c("a", "b", "a", "a", "b"),
z = c("K", "K", "L", "L", "K")
)
df
```
```{r}
#| eval: false
df |> arrange(y)
```
## 练习
```{r}
#| echo: false
df
```
```{r}
#| eval: false
df |>
group_by(y) |>
summarize(mean_x = mean(x))
```
## 练习
```{r}
#| echo: false
df
```
```{r}
#| eval: false
df |>
group_by(y, z) |>
summarize(mean_x = mean(x))
```
## 练习
```{r}
#| echo: false
df
```
```{r}
#| eval: false
df |>
group_by(y, z) |>
summarize(mean_x = mean(x), .groups = "drop")
```
## 练习
```{r}
#| echo: false
df
```
```{r}
#| eval: false
df |>
group_by(y, z) |>
summarize(mean_x = mean(x))
df |>
group_by(y, z) |>
mutate(mean_x = mean(x))
```
## 练习
- 计算不同采样点的平均CO浓度、最大CO浓度、最小CO浓度、中位数CO浓度`CO_mg/m3`)。
- 计算各小时全国的平均CO浓度、最大CO浓度、最小CO浓度、中位数CO浓度`CO_mg/m3`)。
- 计算不同采样点各小时的平均CO浓度、最大CO浓度、最小CO浓度、中位数CO浓度`CO_mg/m3`)。
- 计算各采样点中CO浓度小于全国平均CO浓度的占比。
- 找出全国各采样点中CO浓度小于全国平均CO浓度的占比最高的10个采样点。
```{r}
airqualitydf <- readxl::read_xlsx("../../data/airquality.xlsx",
sheet = 2)
```
## 练习
按月统计dep_delay最大的3个航班的航班号flight用逗号连接。
```{r}
#| echo: false
flights |>
group_by(year, month) |>
slice_max(dep_delay, n = 3) |>
summarize(flight = paste(paste0(carrier, flight), collapse = ", ")) |>
knitr::kable()
```
## 数据变形示意图
```{r}
billboard
knitr::include_graphics("../../image/tidy-data/variables.png", dpi = 270)
```
## 数据变形
```{r}
billboard |>
pivot_longer(
cols = starts_with("wk"),
names_to = "week",
values_to = "rank",
values_drop_na = TRUE
)
```
## 数据变形
```{r}
billboard_longer <- billboard |>
pivot_longer(
cols = starts_with("wk"),
names_to = "week",
values_to = "rank",
values_drop_na = TRUE
) |>
mutate(
week = parse_number(week)
)
billboard_longer
```
## 练习
```{r}
#| echo: false
df <- tribble(
~id, ~bp1, ~bp2,
"A", 100, 120,
"B", 140, 115,
"C", 120, 125
)
df
```
将以上数据(`df`)转换为如下形式。
```{r}
#| echo: false
df |>
pivot_longer(
cols = bp1:bp2,
names_to = "measurement",
values_to = "value"
)
```
## 练习
请转换如下`iris`数据。
```{r}
#| echo: false
as_tibble(head(iris, n = 3))
cat("转为如下形式:")
iris |>
pivot_longer(cols = c(Sepal.Length,
Sepal.Width,
Petal.Length,
Petal.Width),
names_to = "flower_attr",
values_to = "attr_value") |>
head()
```
## 数据变形示意图2
```{r}
who2
knitr::include_graphics("../../image/tidy-data/multiple-names.png", dpi = 270)
```
## 数据变形
```{r}
who2 |>
pivot_longer(
cols = !(country:year),
names_to = c("diagnosis", "gender", "age"),
names_sep = "_",
values_to = "count"
)
```
## 数据变形示意图
```{r}
household
knitr::include_graphics("../../image/tidy-data/names-and-values.png", dpi = 270)
```
## 数据变形
```{r}
household |>
pivot_longer(
cols = !family,
names_to = c(".value", "child"),
names_sep = "_",
values_drop_na = TRUE
)
```
## 查看数据
```{r}
cms_patient_experience
```
## 查看数据
```{r}
cms_patient_experience |>
distinct(measure_cd, measure_title)
```
## 数据变形(变宽)
```{r}
cms_patient_experience |>
pivot_wider(
names_from = measure_cd,
values_from = prf_rate
)
```
## 数据变形(变宽)
```{r}
cms_patient_experience |>
pivot_wider(
id_cols = starts_with("org"),
names_from = measure_cd,
values_from = prf_rate
)
```
## 练习
```{r}
df <- tribble(
~id, ~measurement, ~value,
"A", "bp1", 100,
"B", "bp1", 140,
"B", "bp2", 115,
"A", "bp2", 120,
"A", "bp3", 105
)
```
变形成如下形式:
```{r}
#| echo: false
df |>
pivot_wider(
names_from = measurement,
values_from = value
)
```
## 练习:变宽
```{r}
df <- tribble(
~id, ~measurement, ~value,
"A", "bp1", 100,
"A", "bp1", 102,
"A", "bp2", 120,
"B", "bp1", 140,
"B", "bp2", 115
)
```
## 练习
```{r}
df |>
pivot_wider(
names_from = measurement,
values_from = value
)
```
## 练习
```{r}
df |>
group_by(id, measurement) |>
summarize(n = n(), .groups = "drop") |>
filter(n > 1)
```
## nest套嵌数据框
```{r}
#| echo: false
df <- tibble(x = c(1, 1, 1, 2, 2, 3), y = 1:6, z = 6:1)
df
```
```{r}
df %>% nest(data = c(y, z))
```
## nest套嵌数据框
Specify variables to nest by (rather than variables to nest) using `.by`
```{r}
df %>% nest(.by = x)
```
## nest套嵌数据框
In this case, since `...` isn't used you can specify the resulting column name with `.key`
```{r}
df %>% nest(.by = x, .key = "cols")
```
## nest套嵌数据框
Use tidyselect syntax and helpers, just like in `dplyr::select()`
```{r}
df %>% nest(data = any_of(c("y", "z")))
```
## nest套嵌数据框
`...` and `.by` can be used together to drop columns you no longer need,
or to include the columns you are nesting by in the inner data frame too.
This drops `z`:
```{r}
df %>% nest(data = y, .by = x)
```
## nest套嵌数据框
This includes `x` in the inner data frame:
```{r}
df %>% nest(data = everything(), .by = x)
```
## nest套嵌数据框
Multiple nesting structures can be specified at once
```{r}
iris %>%
nest(petal = starts_with("Petal"), sepal = starts_with("Sepal"))
```
## nest套嵌数据框
```{r}
iris %>%
nest(width = contains("Width"), length = contains("Length"))
```
## nest套嵌数据框
Nesting a grouped data frame nests all variables apart from the group vars
```{r}
fish_encounters
fish_encounters %>%
dplyr::group_by(fish) %>%
nest()
```
## nest套嵌数据框
That is similar to `nest(.by = )`, except here the result isn't grouped
```{r}
fish_encounters %>%
nest(.by = fish)
```
## nest套嵌数据框
Nesting is often useful for creating per group models
```{r}
mtcars %>%
nest(.by = cyl) %>%
dplyr::mutate(models = lapply(data, function(df) lm(mpg ~ wt, data = df)))
```
## 练习
```{r}
#| echo: false
(airqualitydf <- readxl::read_xlsx("../../data/airquality.xlsx",
sheet = 2))
```
```{r}
airqualitydf
airqualitynestdf <- airqualitydf |>
nest(sitedf = -site)
```
## `nest`与`group_by`联用
```{r}
#| echo: false
iris %>%
group_by(Species) %>%
nest(.key = "spdf")
```
## unnest
```{r}
airqualitynestdf |> unnest(sitedf)
```
## `purrr`包
- map():依次应用一元函数到一个序列的每个元素上,基本等同 lapply()
- map2():依次应用二元函数到两个序列的每对元素上
- pmap():应用多元函数到多个序列的每组元素上,可以实现对数据框逐行迭代
- map 系列默认返回列表型可根据想要的返回类型添加后缀_int, _dbl, _lgl, _chr, _df, 甚至可以接着对返回的数据框df做行/列合并_dfr, _dfc
- 如果只想要函数依次作用的过程,而不需要返回结果,改用 walk 系列即可
- 所应用的函数,有 purrr公式风格简写匿名函数支持一元二元多元函数
- purrr 包中的其它有用函数
## `purrr`包
- `map_chr(.x, .f)`: 返回字符型向量
- `map_lgl(.x, .f)`: 返回逻辑型向量
- `map_dbl(.x, .f)`: 返回实数型向量
- `map_int(.x, .f)`: 返回整数型向量
- `map_dfr(.x, .f)`: 返回数据框列表,再 bind_rows 按行合并为一个数据框
- `map_dfc(.x, .f)`: 返回数据框列表,再 bind_cols 按列合并为一个数据框
## `purrr`包-cheatsheet
```{r}
dwfun::ggsavep("../../image/cheatsheet/purrr.svg", loadit = TRUE)
```
[purrr](../../image/cheatsheet/purrr.pdf)
## `purrr`包
生成从1到10的10组随机数每组随机数个数为100均值依次为1到10标准差为1并存储在数据框中。
```{r}
res <- list()
for (i in 1:10) {
res[[i]] <- tibble(随机数 = rnorm(n = 100, mean = i, sd = 1))
}
res
```
## `purrr`包
生成从1到10的10组随机数每组随机数个数为100均值依次为1到10标准差为1并存储在数据框中。
```{r}
1:10 |>
purrr::map(~tibble(随机数 = rnorm(n = 100, mean = .x, sd = 1)))
```
## purrr
```{r}
library(purrr)
mtcars |>
split(mtcars$cyl) |> # from base R
map(\(df) lm(mpg ~ wt, data = df)) |>
map(summary) %>%
map_dbl("r.squared")
```
## 练习:
计算每月最后一个周六的航班数:
```{r}
flights
```
## `tidyr` + `purrr`包
任务:展示不同城市间的大气指标散点图
```{r}
(airqualitydf <- readxl::read_xlsx("../../data/airquality.xlsx",
sheet = 2))
```
## join
Perform left join
```{r}
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
left_join(df1, df2, by = "id")
```
## left join
Create sample data frames with non-matching rows
```{r}
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
left_join(df2, df1, by = "id")
```
## left join
Create sample data frames with multiple columns
```{r}
df1 <- data.frame(id1 = c(1, 2, 3), id2 = c("A", "B", "C"), value1 = letters[1:3])
df2 <- data.frame(id1 = c(2, 3, 4), id2 = c("B", "C", "D"), value2 = LETTERS[1:3])
# Perform left join
left_join(df1, df2, by = c("id1", "id2"))
```
## right join
```{r}
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
# Perform right join
right_join(df1, df2, by = "id")
```
## inner join
```{r}
# Create sample data frames
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
# Perform inner join
inner_join(df1, df2, by = "id")
```
## full join
```{r}
# Create sample data frames
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
# Perform inner join
full_join(df1, df2, by = "id")
```
## semi join
Create sample data frames
```{r}
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
# Perform semi join
semi_join(df1, df2, by = "id")
```
## 欢迎讨论!{.center}

View File

@ -37,8 +37,8 @@ require(learnr)
## 第7次课后作业
1. 根据`airqualitydf.xlsx`,按采样点统计周末2天与工作日5天中空气质量指数AQI中位数按城市统计低于所有采样点AQI30%分位值的采样点占比列出上述占比最高的10个城市不考虑采样点数低于5个的城市
2. 按照不同城市分组,统计周末2天与工作日5天AQI中位数是否具有显著差异。
1. 根据`airqualitydf.xlsx`,按采样点统计白天8:00-20:00与夜晚20:00-8:00中空气质量指数AQI中位数按城市统计低于所有采样点AQI30%分位值的采样点占比列出上述占比最高的10个城市不考虑采样点数低于5个的城市
2. 按照不同城市分组,统计白天与夜晚AQI中位数是否具有显著差异。
作业模板:[第7次课后作业_模板.qmd](https://drwater.rcees.ac.cn/git/course/RWEP/raw/branch/main/SD/20240326_9_课后作业/第7次课后作业_模板.qmd)

View File

@ -18,8 +18,8 @@ total
```
# 根据`airqualitydf.xlsx`,按采样点统计周末2天与工作日5天中空气质量指数AQI中位数按城市统计低于所有采样点AQI30%分位值的采样点占比列出上述占比最高的10个城市不考虑采样点数低于5个的城市
# 根据`airqualitydf.xlsx`,按采样点统计白天8:00-20:00与夜晚20:00-8:00中空气质量指数AQI中位数按城市统计低于所有采样点AQI30%分位值的采样点占比列出上述占比最高的10个城市不考虑采样点数低于5个的城市
# 按照不同城市分组,统计周末2天与工作日5天AQI中位数是否具有显著差异。
# 按照不同城市分组,统计白天与夜晚AQI中位数是否具有显著差异。

View File

@ -0,0 +1,949 @@
---
title: "Data Transform"
subtitle: 《区域水环境污染数据分析实践》<br>Data analysis practice of regional water environment pollution
author: 苏命、王为东<br>中国科学院大学资源与环境学院<br>中国科学院生态环境研究中心
date: today
lang: zh
format:
revealjs:
theme: dark
slide-number: true
chalkboard:
buttons: true
preview-links: auto
lang: zh
toc: true
toc-depth: 1
toc-title: 大纲
logo: ./_extensions/inst/img/ucaslogo.png
css: ./_extensions/inst/css/revealjs.css
pointer:
key: "p"
color: "#32cd32"
pointerSize: 18
revealjs-plugins:
- pointer
filters:
- d2
---
```{r}
#| echo: false
knitr::opts_chunk$set(echo = TRUE)
source("../../coding/_common.R")
library(nycflights13)
library(tidyverse)
```
## 计数
```{r}
flights |>
count(origin, dest, sort = TRUE)
```
## 计数-练习
统计每月的航班数量。
```{r}
#| echo: false
flights |>
count(year, month, sort = TRUE)
```
## 计算新变量
```{r}
flights |>
mutate(
gain = dep_delay - arr_delay,
speed = distance / air_time * 60
)
```
## 计算新变量
```{r}
flights |>
mutate(
gain = dep_delay - arr_delay,
speed = distance / air_time * 60,
.before = 1
)
```
## 计算新变量
```{r}
flights |>
mutate(
gain = dep_delay - arr_delay,
speed = distance / air_time * 60,
.after = day
)
```
## 计算新变量
```{r}
flights |>
mutate(
gain = dep_delay - arr_delay,
hours = air_time / 60,
gain_per_hour = gain / hours,
.keep = "used"
)
```
## 列排序
```{r}
flights |>
relocate(time_hour, air_time)
```
## 列排序
```{r}
#| results: false
flights |>
relocate(year:dep_time, .after = time_hour)
flights |>
relocate(starts_with("arr"), .before = dep_time)
flights |>
select(starts_with("arr"), everything())
```
## 练习
计算目的地为IAH按飞行速度排序的表格保留year:day, `dep_time`, carrier, flight与speed列。
```{r}
flights |>
filter(dest == "IAH") |>
mutate(speed = distance / air_time * 60) |>
select(year:day, dep_time, carrier, flight, speed) |>
arrange(desc(speed))
```
## 练习
计算目的地为IAH按飞行速度排序的表格保留year:day, `dep_time`, carrier, flight与speed列。
```{r}
#| results: false
flights1 <- filter(flights, dest == "IAH")
flights2 <- mutate(flights1, speed = distance / air_time * 60)
flights3 <- select(flights2, year:day, dep_time, carrier, flight, speed)
arrange(flights3, desc(speed))
```
## 练习
计算目的地为IAH按飞行速度排序的表格保留year:day, `dep_time`, carrier, flight与speed列。
```{r}
flights |>
filter(dest == "IAH") |>
mutate(speed = distance / air_time * 60) |>
select(year:day, dep_time, carrier, flight, speed) |>
arrange(desc(speed))
```
## 分组统计
```{r}
library(tidyverse)
mtcars %>%
group_by(cyl) %>%
summarize(n = n())
```
## 分组统计
```{r}
flights |>
group_by(month)
```
## 分组统计
```{r}
flights |>
group_by(month) |>
summarize(
avg_delay = mean(dep_delay)
)
```
## 分组统计
```{r}
flights |>
group_by(month) |>
summarize(
avg_delay = mean(dep_delay, na.rm = TRUE)
)
```
## 分组统计
```{r}
flights |>
group_by(month) |>
summarize(
avg_delay = mean(dep_delay, na.rm = TRUE),
n = n()
)
```
## 分组统计
```{r}
flights |>
group_by(dest) |>
slice_max(arr_delay, n = 1) |>
relocate(dest)
```
## 分组统计
```{r}
flights |>
filter(dest == "IAH") |>
group_by(year, month, day) |>
summarize(
arr_delay = mean(arr_delay, na.rm = TRUE)
)
```
## 分组
```{r}
daily <- flights |>
group_by(year, month, day)
daily
```
## 分组统计
```{r}
daily_flights <- daily |>
summarize(n = n())
```
## 分组统计
```{r}
#| results: false
daily_flights <- daily |>
summarize(
n = n(),
.groups = "drop_last"
)
```
## 删除分组
```{r}
daily |> ungroup()
```
## 删除分组
```{r}
daily |>
ungroup() |>
summarize(
avg_delay = mean(dep_delay, na.rm = TRUE),
flights = n()
)
```
## 分组统计
```{r}
flights |>
summarize(
delay = mean(dep_delay, na.rm = TRUE),
n = n(),
.by = month
)
```
## 分组统计
```{r}
flights |>
summarize(
delay = mean(dep_delay, na.rm = TRUE),
n = n(),
.by = c(origin, dest)
)
```
## 练习
```{r}
df <- tibble(
x = 1:5,
y = c("a", "b", "a", "a", "b"),
z = c("K", "K", "L", "L", "K")
)
df
```
```{r}
#| eval: false
df |> arrange(y)
```
## 练习
```{r}
#| echo: false
df
```
```{r}
#| eval: false
df |>
group_by(y) |>
summarize(mean_x = mean(x))
```
## 练习
```{r}
#| echo: false
df
```
```{r}
#| eval: false
df |>
group_by(y, z) |>
summarize(mean_x = mean(x))
```
## 练习
```{r}
#| echo: false
df
```
```{r}
#| eval: false
df |>
group_by(y, z) |>
summarize(mean_x = mean(x), .groups = "drop")
```
## 练习
```{r}
#| echo: false
df
```
```{r}
#| eval: false
df |>
group_by(y, z) |>
summarize(mean_x = mean(x))
df |>
group_by(y, z) |>
mutate(mean_x = mean(x))
```
## 练习
- 计算不同采样点的平均CO浓度、最大CO浓度、最小CO浓度、中位数CO浓度`CO_mg/m3`)。
- 计算各小时全国的平均CO浓度、最大CO浓度、最小CO浓度、中位数CO浓度`CO_mg/m3`)。
- 计算不同采样点各小时的平均CO浓度、最大CO浓度、最小CO浓度、中位数CO浓度`CO_mg/m3`)。
- 计算各采样点中CO浓度小于全国平均CO浓度的占比。
- 找出全国各采样点中CO浓度小于全国平均CO浓度的占比最高的10个采样点。
```{r}
airqualitydf <- readxl::read_xlsx("../../data/airquality.xlsx",
sheet = 2)
```
## 练习
按月统计dep_delay最大的3个航班的航班号flight用逗号连接。
```{r}
#| echo: false
flights |>
group_by(year, month) |>
slice_max(dep_delay, n = 3) |>
summarize(flight = paste(paste0(carrier, flight), collapse = ", ")) |>
knitr::kable()
```
## 数据变形示意图
```{r}
billboard
knitr::include_graphics("../../image/tidy-data/variables.png", dpi = 270)
```
## 数据变形
```{r}
billboard |>
pivot_longer(
cols = starts_with("wk"),
names_to = "week",
values_to = "rank",
values_drop_na = TRUE
)
```
## 数据变形
```{r}
billboard_longer <- billboard |>
pivot_longer(
cols = starts_with("wk"),
names_to = "week",
values_to = "rank",
values_drop_na = TRUE
) |>
mutate(
week = parse_number(week)
)
billboard_longer
```
## 练习
```{r}
#| echo: false
df <- tribble(
~id, ~bp1, ~bp2,
"A", 100, 120,
"B", 140, 115,
"C", 120, 125
)
df
```
将以上数据(`df`)转换为如下形式。
```{r}
#| echo: false
df |>
pivot_longer(
cols = bp1:bp2,
names_to = "measurement",
values_to = "value"
)
```
## 练习
请转换如下`iris`数据。
```{r}
#| echo: false
as_tibble(head(iris, n = 3))
cat("转为如下形式:")
iris |>
pivot_longer(cols = c(Sepal.Length,
Sepal.Width,
Petal.Length,
Petal.Width),
names_to = "flower_attr",
values_to = "attr_value") |>
head()
```
## 数据变形示意图2
```{r}
who2
knitr::include_graphics("../../image/tidy-data/multiple-names.png", dpi = 270)
```
## 数据变形
```{r}
who2 |>
pivot_longer(
cols = !(country:year),
names_to = c("diagnosis", "gender", "age"),
names_sep = "_",
values_to = "count"
)
```
## 数据变形示意图
```{r}
household
knitr::include_graphics("../../image/tidy-data/names-and-values.png", dpi = 270)
```
## 数据变形
```{r}
household |>
pivot_longer(
cols = !family,
names_to = c(".value", "child"),
names_sep = "_",
values_drop_na = TRUE
)
```
## 查看数据
```{r}
cms_patient_experience
```
## 查看数据
```{r}
cms_patient_experience |>
distinct(measure_cd, measure_title)
```
## 数据变形(变宽)
```{r}
cms_patient_experience |>
pivot_wider(
names_from = measure_cd,
values_from = prf_rate
)
```
## 数据变形(变宽)
```{r}
cms_patient_experience |>
pivot_wider(
id_cols = starts_with("org"),
names_from = measure_cd,
values_from = prf_rate
)
```
## 练习
```{r}
df <- tribble(
~id, ~measurement, ~value,
"A", "bp1", 100,
"B", "bp1", 140,
"B", "bp2", 115,
"A", "bp2", 120,
"A", "bp3", 105
)
```
变形成如下形式:
```{r}
#| echo: false
df |>
pivot_wider(
names_from = measurement,
values_from = value
)
```
## 练习:变宽
```{r}
df <- tribble(
~id, ~measurement, ~value,
"A", "bp1", 100,
"A", "bp1", 102,
"A", "bp2", 120,
"B", "bp1", 140,
"B", "bp2", 115
)
```
## 练习
```{r}
df |>
pivot_wider(
names_from = measurement,
values_from = value
)
```
## 练习
```{r}
df |>
group_by(id, measurement) |>
summarize(n = n(), .groups = "drop") |>
filter(n > 1)
```
## nest套嵌数据框
```{r}
#| echo: false
df <- tibble(x = c(1, 1, 1, 2, 2, 3), y = 1:6, z = 6:1)
df
```
```{r}
df %>% nest(data = c(y, z))
```
## nest套嵌数据框
Specify variables to nest by (rather than variables to nest) using `.by`
```{r}
df %>% nest(.by = x)
```
## nest套嵌数据框
In this case, since `...` isn't used you can specify the resulting column name with `.key`
```{r}
df %>% nest(.by = x, .key = "cols")
```
## nest套嵌数据框
Use tidyselect syntax and helpers, just like in `dplyr::select()`
```{r}
df %>% nest(data = any_of(c("y", "z")))
```
## nest套嵌数据框
`...` and `.by` can be used together to drop columns you no longer need,
or to include the columns you are nesting by in the inner data frame too.
This drops `z`:
```{r}
df %>% nest(data = y, .by = x)
```
## nest套嵌数据框
This includes `x` in the inner data frame:
```{r}
df %>% nest(data = everything(), .by = x)
```
## nest套嵌数据框
Multiple nesting structures can be specified at once
```{r}
iris %>%
nest(petal = starts_with("Petal"), sepal = starts_with("Sepal"))
```
## nest套嵌数据框
```{r}
iris %>%
nest(width = contains("Width"), length = contains("Length"))
```
## nest套嵌数据框
Nesting a grouped data frame nests all variables apart from the group vars
```{r}
fish_encounters
fish_encounters %>%
dplyr::group_by(fish) %>%
nest()
```
## nest套嵌数据框
That is similar to `nest(.by = )`, except here the result isn't grouped
```{r}
fish_encounters %>%
nest(.by = fish)
```
## nest套嵌数据框
Nesting is often useful for creating per group models
```{r}
mtcars %>%
nest(.by = cyl) %>%
dplyr::mutate(models = lapply(data, function(df) lm(mpg ~ wt, data = df)))
```
## 练习
```{r}
#| echo: false
(airqualitydf <- readxl::read_xlsx("../../data/airquality.xlsx",
sheet = 2))
```
```{r}
airqualitydf
airqualitynestdf <- airqualitydf |>
nest(sitedf = -site)
```
## `nest`与`group_by`联用
```{r}
#| echo: false
iris %>%
group_by(Species) %>%
nest(.key = "spdf")
```
## unnest
```{r}
airqualitynestdf |> unnest(sitedf)
```
## `purrr`包
- map():依次应用一元函数到一个序列的每个元素上,基本等同 lapply()
- map2():依次应用二元函数到两个序列的每对元素上
- pmap():应用多元函数到多个序列的每组元素上,可以实现对数据框逐行迭代
- map 系列默认返回列表型可根据想要的返回类型添加后缀_int, _dbl, _lgl, _chr, _df, 甚至可以接着对返回的数据框df做行/列合并_dfr, _dfc
- 如果只想要函数依次作用的过程,而不需要返回结果,改用 walk 系列即可
- 所应用的函数,有 purrr公式风格简写匿名函数支持一元二元多元函数
- purrr 包中的其它有用函数
## `purrr`包
- `map_chr(.x, .f)`: 返回字符型向量
- `map_lgl(.x, .f)`: 返回逻辑型向量
- `map_dbl(.x, .f)`: 返回实数型向量
- `map_int(.x, .f)`: 返回整数型向量
- `map_dfr(.x, .f)`: 返回数据框列表,再 bind_rows 按行合并为一个数据框
- `map_dfc(.x, .f)`: 返回数据框列表,再 bind_cols 按列合并为一个数据框
## `purrr`包-cheatsheet
```{r}
dwfun::ggsavep("../../image/cheatsheet/purrr.svg", loadit = TRUE)
```
[purrr](../../image/cheatsheet/purrr.pdf)
## `purrr`包
生成从1到10的10组随机数每组随机数个数为100均值依次为1到10标准差为1并存储在数据框中。
```{r}
res <- list()
for (i in 1:10) {
res[[i]] <- tibble(随机数 = rnorm(n = 100, mean = i, sd = 1))
}
res
```
## `purrr`包
生成从1到10的10组随机数每组随机数个数为100均值依次为1到10标准差为1并存储在数据框中。
```{r}
1:10 |>
purrr::map(~tibble(随机数 = rnorm(n = 100, mean = .x, sd = 1)))
```
## purrr
```{r}
library(purrr)
mtcars |>
split(mtcars$cyl) |> # from base R
map(\(df) lm(mpg ~ wt, data = df)) |>
map(summary) %>%
map_dbl("r.squared")
```
## 练习:
计算每月最后一个周六的航班数:
```{r}
flights
```
## `tidyr` + `purrr`包
任务:展示不同城市间的大气指标散点图
```{r}
(airqualitydf <- readxl::read_xlsx("../../data/airquality.xlsx",
sheet = 2))
```
## join
Perform left join
```{r}
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
left_join(df1, df2, by = "id")
```
## left join
Create sample data frames with non-matching rows
```{r}
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
left_join(df2, df1, by = "id")
```
## left join
Create sample data frames with multiple columns
```{r}
df1 <- data.frame(id1 = c(1, 2, 3), id2 = c("A", "B", "C"), value1 = letters[1:3])
df2 <- data.frame(id1 = c(2, 3, 4), id2 = c("B", "C", "D"), value2 = LETTERS[1:3])
# Perform left join
left_join(df1, df2, by = c("id1", "id2"))
```
## right join
```{r}
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
# Perform right join
right_join(df1, df2, by = "id")
```
## inner join
```{r}
# Create sample data frames
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
# Perform inner join
inner_join(df1, df2, by = "id")
```
## full join
```{r}
# Create sample data frames
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
# Perform inner join
full_join(df1, df2, by = "id")
```
## semi join
Create sample data frames
```{r}
(df1 <- data.frame(id = 1:5, value1 = letters[1:5]))
(df2 <- data.frame(id = c(2, 4, 6), value2 = LETTERS[1:3]))
# Perform semi join
semi_join(df1, df2, by = "id")
```
## 练习
合并`airquality.xlsx`中的数据。
## 练习
统计各城市白天与晚上的大气质量差异计算不同指标差异最大的10个城市。
## 欢迎讨论!{.center}
`r rmdify::slideend(wechat = FALSE, type = "public", tel = FALSE, thislink = "https://drwater.rcees.ac.cn/course/public/RWEP/@PUB/SD/")`

View File

@ -0,0 +1 @@
../../_extensions

View File

@ -0,0 +1 @@
../../_extensions

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

(image error) Size: 61 KiB

View File

@ -0,0 +1 @@
../../_extensions

View File

@ -0,0 +1,99 @@
---
title: "数据前处理+ggplot2画图实践"
subtitle: 《区域水环境污染数据分析实践》<br>Data analysis practice of regional water environment pollution
author: 苏命、王为东<br>中国科学院大学资源与环境学院<br>中国科学院生态环境研究中心
date: today
lang: zh
format:
revealjs:
theme: dark
slide-number: true
chalkboard:
buttons: true
preview-links: auto
lang: zh
toc: true
toc-depth: 1
toc-title: 大纲
logo: ./_extensions/inst/img/ucaslogo.png
css: ./_extensions/inst/css/revealjs.css
pointer:
key: "p"
color: "#32cd32"
pointerSize: 18
revealjs-plugins:
- pointer
filters:
- d2
---
```{r}
#| echo: false
knitr::opts_chunk$set(echo = TRUE)
source("../../coding/_common.R")
library(tidyverse)
```
## 数据说明
```{r}
mpg
```
## 完成图1
```{r}
#| echo: false
mpg |>
ggplot(aes(x = displ, y = hwy, color = class)) +
geom_point()
```
## 完成图2
```{r}
#| echo: false
ggplot(mpg, aes(x = displ, y = hwy, color = drv)) +
geom_point() +
geom_smooth(aes(linetype = drv))
```
## 完成图3
```{r}
#| echo: false
ggplot(mpg, aes(x = displ, y = hwy)) +
geom_point(aes(color = class)) +
geom_smooth()
```
## 完成图4
```{r}
#| echo: false
ggplot(mpg, aes(x = displ, y = hwy)) +
geom_point() +
facet_wrap(~cyl)
```
## 完成图5
```{r}
#| echo: false
ggplot(mpg, aes(x = drv, fill = class)) +
geom_bar(position = "fill")
```
## 综合实践:三维荧光数据处理

View File

@ -1,7 +1,7 @@
:root {
--r-background-color: #fff;
--r-main-font: Source Sans Pro, simhei, microsoft yahei;
--r-main-font-size: 32px;
--r-main-font-size: 28px;
--r-main-color: #222;
--r-block-margin: 12px;
--r-heading-margin: 0 0 12px 0;
@ -320,11 +320,11 @@ figure > figcaption {
background-color: #554433;
line-height: 1.2em;
color: #fff;
font-size: x-large;
/* font-size: x-large; */
}
.reveal pre code:hover{
font-size: xx-large;
font-size: x-large;
line-height: 120%;
}
@ -337,9 +337,9 @@ section#title-slide p.subtitle {
.reveal div.sourceCode pre code {
background-color: #002233;
min-height: 100%;
font-size: x-large;
/* font-size: x-large; */
}
.reveal div.sourceCode pre code:hover {
font-size: xx-large;
font-size: x-large;
}

File diff suppressed because one or more lines are too long

Binary file not shown.

After

(image error) Size: 51 KiB

View File

@ -0,0 +1,279 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="432" viewBox="0 0 360 432">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
</g>
<g id="glyph-0-1">
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
</g>
<g id="glyph-0-2">
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
</g>
<g id="glyph-0-3">
<path d="M 2.90625 0.21875 C 1.976562 0.21875 1.304688 -0.0351562 0.890625 -0.546875 C 0.472656 -1.054688 0.265625 -1.675781 0.265625 -2.40625 L 1.296875 -2.40625 C 1.335938 -1.894531 1.429688 -1.523438 1.578125 -1.296875 C 1.835938 -0.890625 2.300781 -0.6875 2.96875 -0.6875 C 3.476562 -0.6875 3.890625 -0.820312 4.203125 -1.09375 C 4.523438 -1.375 4.6875 -1.734375 4.6875 -2.171875 C 4.6875 -2.710938 4.519531 -3.085938 4.1875 -3.296875 C 3.851562 -3.515625 3.394531 -3.625 2.8125 -3.625 C 2.75 -3.625 2.679688 -3.625 2.609375 -3.625 C 2.546875 -3.625 2.476562 -3.617188 2.40625 -3.609375 L 2.40625 -4.484375 C 2.507812 -4.472656 2.59375 -4.460938 2.65625 -4.453125 C 2.726562 -4.453125 2.804688 -4.453125 2.890625 -4.453125 C 3.253906 -4.453125 3.554688 -4.515625 3.796875 -4.640625 C 4.210938 -4.835938 4.421875 -5.203125 4.421875 -5.734375 C 4.421875 -6.117188 4.28125 -6.414062 4 -6.625 C 3.726562 -6.84375 3.40625 -6.953125 3.03125 -6.953125 C 2.375 -6.953125 1.921875 -6.734375 1.671875 -6.296875 C 1.535156 -6.054688 1.457031 -5.710938 1.4375 -5.265625 L 0.46875 -5.265625 C 0.46875 -5.847656 0.582031 -6.34375 0.8125 -6.75 C 1.21875 -7.476562 1.925781 -7.84375 2.9375 -7.84375 C 3.726562 -7.84375 4.34375 -7.664062 4.78125 -7.3125 C 5.21875 -6.957031 5.4375 -6.441406 5.4375 -5.765625 C 5.4375 -5.285156 5.304688 -4.894531 5.046875 -4.59375 C 4.890625 -4.40625 4.6875 -4.257812 4.4375 -4.15625 C 4.84375 -4.039062 5.160156 -3.820312 5.390625 -3.5 C 5.628906 -3.175781 5.75 -2.78125 5.75 -2.3125 C 5.75 -1.570312 5.5 -0.960938 5 -0.484375 C 4.507812 -0.015625 3.8125 0.21875 2.90625 0.21875 Z M 2.90625 0.21875 "/>
</g>
<g id="glyph-0-4">
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
</g>
<g id="glyph-0-5">
<path d="M 1.390625 -2 C 1.453125 -1.4375 1.710938 -1.046875 2.171875 -0.828125 C 2.398438 -0.722656 2.664062 -0.671875 2.96875 -0.671875 C 3.550781 -0.671875 3.984375 -0.851562 4.265625 -1.21875 C 4.546875 -1.59375 4.6875 -2.007812 4.6875 -2.46875 C 4.6875 -3.007812 4.519531 -3.425781 4.1875 -3.71875 C 3.851562 -4.019531 3.457031 -4.171875 3 -4.171875 C 2.65625 -4.171875 2.359375 -4.101562 2.109375 -3.96875 C 1.867188 -3.84375 1.664062 -3.664062 1.5 -3.4375 L 0.640625 -3.484375 L 1.234375 -7.703125 L 5.3125 -7.703125 L 5.3125 -6.75 L 1.984375 -6.75 L 1.640625 -4.578125 C 1.828125 -4.710938 2.003906 -4.816406 2.171875 -4.890625 C 2.460938 -5.003906 2.796875 -5.0625 3.171875 -5.0625 C 3.890625 -5.0625 4.5 -4.828125 5 -4.359375 C 5.5 -3.898438 5.75 -3.316406 5.75 -2.609375 C 5.75 -1.867188 5.519531 -1.210938 5.0625 -0.640625 C 4.601562 -0.078125 3.875 0.203125 2.875 0.203125 C 2.238281 0.203125 1.675781 0.0234375 1.1875 -0.328125 C 0.695312 -0.691406 0.421875 -1.25 0.359375 -2 Z M 1.390625 -2 "/>
</g>
<g id="glyph-0-6">
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
</g>
<g id="glyph-0-7">
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
</g>
<g id="glyph-0-8">
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
</g>
<g id="glyph-0-9">
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
</g>
<g id="glyph-0-10">
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-11">
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
</g>
<g id="glyph-0-12">
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
</g>
<g id="glyph-0-13">
<path d="M 3.1875 -0.65625 C 3.65625 -0.65625 4.039062 -0.847656 4.34375 -1.234375 C 4.644531 -1.617188 4.796875 -2.195312 4.796875 -2.96875 C 4.796875 -3.4375 4.726562 -3.835938 4.59375 -4.171875 C 4.34375 -4.816406 3.875 -5.140625 3.1875 -5.140625 C 2.507812 -5.140625 2.046875 -4.796875 1.796875 -4.109375 C 1.660156 -3.742188 1.59375 -3.28125 1.59375 -2.71875 C 1.59375 -2.269531 1.660156 -1.882812 1.796875 -1.5625 C 2.046875 -0.957031 2.507812 -0.65625 3.1875 -0.65625 Z M 0.640625 -5.828125 L 1.609375 -5.828125 L 1.609375 -5.046875 C 1.796875 -5.316406 2.007812 -5.523438 2.25 -5.671875 C 2.582031 -5.890625 2.972656 -6 3.421875 -6 C 4.085938 -6 4.648438 -5.742188 5.109375 -5.234375 C 5.566406 -4.722656 5.796875 -4 5.796875 -3.0625 C 5.796875 -1.78125 5.460938 -0.867188 4.796875 -0.328125 C 4.378906 0.0234375 3.890625 0.203125 3.328125 0.203125 C 2.878906 0.203125 2.507812 0.101562 2.21875 -0.09375 C 2.039062 -0.195312 1.84375 -0.382812 1.625 -0.65625 L 1.625 2.328125 L 0.640625 2.328125 Z M 0.640625 -5.828125 "/>
</g>
<g id="glyph-0-14">
<path d="M 2.796875 -5.96875 C 3.253906 -5.96875 3.65625 -5.851562 4 -5.625 C 4.175781 -5.5 4.363281 -5.3125 4.5625 -5.0625 L 4.5625 -5.796875 L 5.46875 -5.796875 L 5.46875 -0.46875 C 5.46875 0.269531 5.359375 0.851562 5.140625 1.28125 C 4.734375 2.082031 3.960938 2.484375 2.828125 2.484375 C 2.191406 2.484375 1.660156 2.335938 1.234375 2.046875 C 0.804688 1.765625 0.566406 1.328125 0.515625 0.734375 L 1.515625 0.734375 C 1.566406 0.992188 1.660156 1.191406 1.796875 1.328125 C 2.023438 1.546875 2.375 1.65625 2.84375 1.65625 C 3.601562 1.65625 4.097656 1.390625 4.328125 0.859375 C 4.472656 0.546875 4.539062 -0.0078125 4.53125 -0.8125 C 4.332031 -0.507812 4.09375 -0.285156 3.8125 -0.140625 C 3.53125 0.00390625 3.164062 0.078125 2.71875 0.078125 C 2.082031 0.078125 1.523438 -0.144531 1.046875 -0.59375 C 0.566406 -1.050781 0.328125 -1.800781 0.328125 -2.84375 C 0.328125 -3.820312 0.566406 -4.585938 1.046875 -5.140625 C 1.523438 -5.691406 2.109375 -5.96875 2.796875 -5.96875 Z M 4.5625 -2.953125 C 4.5625 -3.679688 4.410156 -4.21875 4.109375 -4.5625 C 3.816406 -4.914062 3.4375 -5.09375 2.96875 -5.09375 C 2.28125 -5.09375 1.804688 -4.769531 1.546875 -4.125 C 1.410156 -3.769531 1.34375 -3.3125 1.34375 -2.75 C 1.34375 -2.09375 1.476562 -1.59375 1.75 -1.25 C 2.019531 -0.90625 2.378906 -0.734375 2.828125 -0.734375 C 3.535156 -0.734375 4.035156 -1.050781 4.328125 -1.6875 C 4.484375 -2.050781 4.5625 -2.472656 4.5625 -2.953125 Z M 2.90625 -6 Z M 2.90625 -6 "/>
</g>
<g id="glyph-0-15">
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-16">
<path d="M 0.71875 -5.859375 L 1.703125 -5.859375 L 1.703125 -5.03125 C 1.929688 -5.3125 2.140625 -5.519531 2.328125 -5.65625 C 2.648438 -5.875 3.019531 -5.984375 3.4375 -5.984375 C 3.90625 -5.984375 4.28125 -5.867188 4.5625 -5.640625 C 4.71875 -5.515625 4.863281 -5.320312 5 -5.0625 C 5.21875 -5.375 5.472656 -5.601562 5.765625 -5.75 C 6.066406 -5.90625 6.398438 -5.984375 6.765625 -5.984375 C 7.554688 -5.984375 8.09375 -5.703125 8.375 -5.140625 C 8.53125 -4.828125 8.609375 -4.414062 8.609375 -3.90625 L 8.609375 0 L 7.578125 0 L 7.578125 -4.0625 C 7.578125 -4.457031 7.476562 -4.726562 7.28125 -4.875 C 7.09375 -5.019531 6.859375 -5.09375 6.578125 -5.09375 C 6.191406 -5.09375 5.859375 -4.960938 5.578125 -4.703125 C 5.296875 -4.441406 5.15625 -4.007812 5.15625 -3.40625 L 5.15625 0 L 4.15625 0 L 4.15625 -3.828125 C 4.15625 -4.222656 4.109375 -4.507812 4.015625 -4.6875 C 3.867188 -4.96875 3.585938 -5.109375 3.171875 -5.109375 C 2.804688 -5.109375 2.46875 -4.960938 2.15625 -4.671875 C 1.851562 -4.378906 1.703125 -3.859375 1.703125 -3.109375 L 1.703125 0 L 0.71875 0 Z M 0.71875 -5.859375 "/>
</g>
<g id="glyph-0-17">
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-1-0">
<path d="M 1.640625 -2.296875 C 1.671875 -1.890625 1.769531 -1.578125 1.9375 -1.359375 C 2.25 -0.960938 2.789062 -0.765625 3.5625 -0.765625 C 4.007812 -0.765625 4.40625 -0.863281 4.75 -1.0625 C 5.101562 -1.257812 5.28125 -1.5625 5.28125 -1.96875 C 5.28125 -2.289062 5.140625 -2.53125 4.859375 -2.6875 C 4.679688 -2.789062 4.332031 -2.910156 3.8125 -3.046875 L 2.828125 -3.28125 C 2.203125 -3.4375 1.742188 -3.613281 1.453125 -3.8125 C 0.921875 -4.144531 0.65625 -4.601562 0.65625 -5.1875 C 0.65625 -5.882812 0.90625 -6.445312 1.40625 -6.875 C 1.90625 -7.300781 2.578125 -7.515625 3.421875 -7.515625 C 4.523438 -7.515625 5.316406 -7.191406 5.796875 -6.546875 C 6.109375 -6.128906 6.257812 -5.6875 6.25 -5.21875 L 5.09375 -5.21875 C 5.0625 -5.5 4.960938 -5.75 4.796875 -5.96875 C 4.515625 -6.289062 4.023438 -6.453125 3.328125 -6.453125 C 2.859375 -6.453125 2.503906 -6.363281 2.265625 -6.1875 C 2.023438 -6.007812 1.90625 -5.773438 1.90625 -5.484375 C 1.90625 -5.171875 2.0625 -4.914062 2.375 -4.71875 C 2.5625 -4.601562 2.832031 -4.503906 3.1875 -4.421875 L 4 -4.21875 C 4.882812 -4.007812 5.476562 -3.804688 5.78125 -3.609375 C 6.257812 -3.285156 6.5 -2.789062 6.5 -2.125 C 6.5 -1.46875 6.25 -0.898438 5.75 -0.421875 C 5.257812 0.0429688 4.507812 0.28125 3.5 0.28125 C 2.40625 0.28125 1.628906 0.0351562 1.171875 -0.453125 C 0.722656 -0.953125 0.484375 -1.566406 0.453125 -2.296875 Z M 3.453125 -7.5 Z M 3.453125 -7.5 "/>
</g>
<g id="glyph-1-1">
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
</g>
<g id="glyph-1-2">
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-3">
<path d="M 3.8125 -0.796875 C 4.625 -0.796875 5.179688 -1.101562 5.484375 -1.71875 C 5.785156 -2.332031 5.9375 -3.019531 5.9375 -3.78125 C 5.9375 -4.46875 5.828125 -5.023438 5.609375 -5.453125 C 5.265625 -6.117188 4.671875 -6.453125 3.828125 -6.453125 C 3.066406 -6.453125 2.515625 -6.164062 2.171875 -5.59375 C 1.835938 -5.019531 1.671875 -4.328125 1.671875 -3.515625 C 1.671875 -2.742188 1.835938 -2.097656 2.171875 -1.578125 C 2.515625 -1.054688 3.0625 -0.796875 3.8125 -0.796875 Z M 3.859375 -7.53125 C 4.796875 -7.53125 5.585938 -7.210938 6.234375 -6.578125 C 6.890625 -5.953125 7.21875 -5.03125 7.21875 -3.8125 C 7.21875 -2.632812 6.929688 -1.660156 6.359375 -0.890625 C 5.785156 -0.117188 4.894531 0.265625 3.6875 0.265625 C 2.6875 0.265625 1.890625 -0.0703125 1.296875 -0.75 C 0.703125 -1.4375 0.40625 -2.351562 0.40625 -3.5 C 0.40625 -4.726562 0.71875 -5.707031 1.34375 -6.4375 C 1.96875 -7.164062 2.804688 -7.53125 3.859375 -7.53125 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-4">
<path d="M 0.90625 -7.328125 L 2.078125 -7.328125 L 2.078125 -6.28125 C 2.421875 -6.707031 2.785156 -7.015625 3.171875 -7.203125 C 3.554688 -7.390625 3.988281 -7.484375 4.46875 -7.484375 C 5.5 -7.484375 6.195312 -7.125 6.5625 -6.40625 C 6.769531 -6 6.875 -5.429688 6.875 -4.703125 L 6.875 0 L 5.625 0 L 5.625 -4.609375 C 5.625 -5.054688 5.554688 -5.414062 5.421875 -5.6875 C 5.203125 -6.144531 4.804688 -6.375 4.234375 -6.375 C 3.941406 -6.375 3.703125 -6.347656 3.515625 -6.296875 C 3.179688 -6.191406 2.882812 -5.988281 2.625 -5.6875 C 2.414062 -5.445312 2.28125 -5.195312 2.21875 -4.9375 C 2.164062 -4.675781 2.140625 -4.304688 2.140625 -3.828125 L 2.140625 0 L 0.90625 0 Z M 3.796875 -7.5 Z M 3.796875 -7.5 "/>
</g>
<g id="glyph-2-0">
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
</g>
<g id="glyph-2-1">
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
</g>
<g id="glyph-2-2">
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
</g>
<g id="glyph-2-3">
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
</g>
<g id="glyph-2-4">
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 61.019531 6.972656 L 353.023438 6.972656 L 353.023438 391.613281 L 61.019531 391.613281 Z M 61.019531 6.972656 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 61.019531 380 L 353.023438 380 L 353.023438 382 L 61.019531 382 Z M 61.019531 380 "/>
</clipPath>
<clipPath id="clip-2">
<path clip-rule="nonzero" d="M 61.019531 311 L 353.023438 311 L 353.023438 313 L 61.019531 313 Z M 61.019531 311 "/>
</clipPath>
<clipPath id="clip-3">
<path clip-rule="nonzero" d="M 61.019531 242 L 353.023438 242 L 353.023438 244 L 61.019531 244 Z M 61.019531 242 "/>
</clipPath>
<clipPath id="clip-4">
<path clip-rule="nonzero" d="M 61.019531 174 L 353.023438 174 L 353.023438 175 L 61.019531 175 Z M 61.019531 174 "/>
</clipPath>
<clipPath id="clip-5">
<path clip-rule="nonzero" d="M 61.019531 105 L 353.023438 105 L 353.023438 107 L 61.019531 107 Z M 61.019531 105 "/>
</clipPath>
<clipPath id="clip-6">
<path clip-rule="nonzero" d="M 61.019531 36 L 353.023438 36 L 353.023438 38 L 61.019531 38 Z M 61.019531 36 "/>
</clipPath>
<clipPath id="clip-7">
<path clip-rule="nonzero" d="M 102 6.972656 L 104 6.972656 L 104 391.613281 L 102 391.613281 Z M 102 6.972656 "/>
</clipPath>
<clipPath id="clip-8">
<path clip-rule="nonzero" d="M 171 6.972656 L 173 6.972656 L 173 391.613281 L 171 391.613281 Z M 171 6.972656 "/>
</clipPath>
<clipPath id="clip-9">
<path clip-rule="nonzero" d="M 241 6.972656 L 243 6.972656 L 243 391.613281 L 241 391.613281 Z M 241 6.972656 "/>
</clipPath>
<clipPath id="clip-10">
<path clip-rule="nonzero" d="M 310 6.972656 L 312 6.972656 L 312 391.613281 L 310 391.613281 Z M 310 6.972656 "/>
</clipPath>
<clipPath id="clip-11">
<path clip-rule="nonzero" d="M 61.019531 6.972656 L 353.023438 6.972656 L 353.023438 391.613281 L 61.019531 391.613281 Z M 61.019531 6.972656 "/>
</clipPath>
</defs>
<rect x="-36" y="-43.2" width="432" height="518.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<rect x="-36" y="-43.2" width="432" height="518.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 432 L 360 432 L 360 0 L 0 0 Z M 0 432 "/>
<g clip-path="url(#clip-0)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 61.019531 391.613281 L 353.023438 391.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 391.613281 "/>
</g>
<g clip-path="url(#clip-1)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 380.675781 L 353.027344 380.675781 "/>
</g>
<g clip-path="url(#clip-2)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 312 L 353.027344 312 "/>
</g>
<g clip-path="url(#clip-3)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 243.324219 L 353.027344 243.324219 "/>
</g>
<g clip-path="url(#clip-4)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 174.648438 L 353.027344 174.648438 "/>
</g>
<g clip-path="url(#clip-5)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 105.972656 L 353.027344 105.972656 "/>
</g>
<g clip-path="url(#clip-6)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 37.300781 L 353.027344 37.300781 "/>
</g>
<g clip-path="url(#clip-7)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 391.613281 L 102.734375 6.972656 "/>
</g>
<g clip-path="url(#clip-8)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 391.613281 L 172.261719 6.972656 "/>
</g>
<g clip-path="url(#clip-9)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 391.613281 L 241.785156 6.972656 "/>
</g>
<g clip-path="url(#clip-10)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 391.613281 L 311.3125 6.972656 "/>
</g>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 274.070312 L 102.734375 191.109375 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 341.949219 L 102.734375 367.558594 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 76.664062 274.070312 L 76.664062 341.949219 L 128.808594 341.949219 L 128.808594 274.070312 Z M 76.664062 274.070312 "/>
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 76.664062 327.796875 L 128.808594 327.796875 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 248.621094 L 172.261719 164.011719 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 329.984375 L 172.261719 372.171875 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 146.1875 248.621094 L 146.1875 329.984375 L 198.332031 329.984375 L 198.332031 248.621094 Z M 146.1875 248.621094 "/>
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 146.1875 305.820312 L 198.332031 305.820312 "/>
<path fill-rule="nonzero" fill="rgb(20%, 20%, 20%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 243.742188 24.457031 C 243.742188 27.0625 239.832031 27.0625 239.832031 24.457031 C 239.832031 21.851562 243.742188 21.851562 243.742188 24.457031 "/>
<path fill-rule="nonzero" fill="rgb(20%, 20%, 20%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 243.742188 71.191406 C 243.742188 73.796875 239.832031 73.796875 239.832031 71.191406 C 239.832031 68.585938 243.742188 68.585938 243.742188 71.191406 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 212.332031 L 241.785156 165.640625 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 302.988281 L 241.785156 348.246094 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 215.714844 212.332031 L 215.714844 302.988281 L 267.859375 302.988281 L 267.859375 212.332031 Z M 215.714844 212.332031 "/>
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 215.714844 279.164062 L 267.859375 279.164062 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 237.566406 L 311.3125 172.199219 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 325.707031 L 311.3125 374.128906 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 285.238281 237.566406 L 285.238281 325.707031 L 337.382812 325.707031 L 337.382812 237.566406 Z M 285.238281 237.566406 "/>
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 285.238281 302.214844 L 337.382812 302.214844 "/>
<g clip-path="url(#clip-11)">
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 391.613281 L 353.023438 391.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 391.613281 "/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="48.511719" y="384.691406"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="23.597656" y="316.015625"/>
<use xlink:href="#glyph-0-0" x="29.826563" y="316.015625"/>
<use xlink:href="#glyph-0-0" x="36.055469" y="316.015625"/>
<use xlink:href="#glyph-0-0" x="42.284375" y="316.015625"/>
<use xlink:href="#glyph-0-0" x="48.513281" y="316.015625"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="23.597656" y="247.339844"/>
<use xlink:href="#glyph-0-0" x="29.826563" y="247.339844"/>
<use xlink:href="#glyph-0-0" x="36.055469" y="247.339844"/>
<use xlink:href="#glyph-0-0" x="42.284375" y="247.339844"/>
<use xlink:href="#glyph-0-0" x="48.513281" y="247.339844"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-3" x="23.597656" y="178.667969"/>
<use xlink:href="#glyph-0-0" x="29.826563" y="178.667969"/>
<use xlink:href="#glyph-0-0" x="36.055469" y="178.667969"/>
<use xlink:href="#glyph-0-0" x="42.284375" y="178.667969"/>
<use xlink:href="#glyph-0-0" x="48.513281" y="178.667969"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-4" x="23.597656" y="109.992188"/>
<use xlink:href="#glyph-0-0" x="29.826563" y="109.992188"/>
<use xlink:href="#glyph-0-0" x="36.055469" y="109.992188"/>
<use xlink:href="#glyph-0-0" x="42.284375" y="109.992188"/>
<use xlink:href="#glyph-0-0" x="48.513281" y="109.992188"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-5" x="23.597656" y="41.316406"/>
<use xlink:href="#glyph-0-0" x="29.826563" y="41.316406"/>
<use xlink:href="#glyph-0-0" x="36.055469" y="41.316406"/>
<use xlink:href="#glyph-0-0" x="42.284375" y="41.316406"/>
<use xlink:href="#glyph-0-0" x="48.513281" y="41.316406"/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 380.675781 L 61.019531 380.675781 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 312 L 61.019531 312 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 243.324219 L 61.019531 243.324219 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 174.648438 L 61.019531 174.648438 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 105.972656 L 61.019531 105.972656 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 37.300781 L 61.019531 37.300781 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 395.101562 L 102.734375 391.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 395.101562 L 172.261719 391.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 395.101562 L 241.785156 391.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 395.101562 L 311.3125 391.613281 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-6" x="87.796875" y="405.921875"/>
<use xlink:href="#glyph-0-7" x="95.885156" y="405.921875"/>
<use xlink:href="#glyph-0-8" x="98.373437" y="405.921875"/>
<use xlink:href="#glyph-0-9" x="104.602344" y="405.921875"/>
<use xlink:href="#glyph-0-10" x="107.714062" y="405.921875"/>
<use xlink:href="#glyph-0-11" x="113.942969" y="405.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-12" x="157.007812" y="405.921875"/>
<use xlink:href="#glyph-0-13" x="162.607812" y="405.921875"/>
<use xlink:href="#glyph-0-11" x="168.836719" y="405.921875"/>
<use xlink:href="#glyph-0-7" x="172.566406" y="405.921875"/>
<use xlink:href="#glyph-0-8" x="175.054688" y="405.921875"/>
<use xlink:href="#glyph-0-14" x="181.283594" y="405.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-12" x="221.5625" y="405.921875"/>
<use xlink:href="#glyph-0-15" x="227.1625" y="405.921875"/>
<use xlink:href="#glyph-0-16" x="233.391406" y="405.921875"/>
<use xlink:href="#glyph-0-16" x="242.721094" y="405.921875"/>
<use xlink:href="#glyph-0-10" x="252.050781" y="405.921875"/>
<use xlink:href="#glyph-0-11" x="258.279688" y="405.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-17" x="292.632812" y="405.921875"/>
<use xlink:href="#glyph-0-15" x="298.861719" y="405.921875"/>
<use xlink:href="#glyph-0-9" x="305.090625" y="405.921875"/>
<use xlink:href="#glyph-0-15" x="308.202344" y="405.921875"/>
<use xlink:href="#glyph-0-16" x="314.43125" y="405.921875"/>
<use xlink:href="#glyph-0-8" x="323.760938" y="405.921875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="184.453125" y="421.929688"/>
<use xlink:href="#glyph-1-1" x="191.453125" y="421.929688"/>
<use xlink:href="#glyph-1-2" x="199.239258" y="421.929688"/>
<use xlink:href="#glyph-1-0" x="207.025391" y="421.929688"/>
<use xlink:href="#glyph-1-3" x="214.025391" y="421.929688"/>
<use xlink:href="#glyph-1-4" x="221.811523" y="421.929688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="17.015625" y="216.417969"/>
<use xlink:href="#glyph-2-1" x="17.015625" y="209.417969"/>
<use xlink:href="#glyph-2-2" x="17.015625" y="201.631836"/>
<use xlink:href="#glyph-2-3" x="17.015625" y="193.845703"/>
<use xlink:href="#glyph-2-4" x="17.015625" y="186.05957"/>
</g>
</svg>

After

(image error) Size: 44 KiB

Binary file not shown.

After

(image error) Size: 40 KiB

View File

@ -0,0 +1,311 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="295" viewBox="0 0 360 295">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
</g>
<g id="glyph-0-1">
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
</g>
<g id="glyph-0-2">
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
</g>
<g id="glyph-0-3">
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
</g>
<g id="glyph-0-4">
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
</g>
<g id="glyph-0-5">
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-6">
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
</g>
<g id="glyph-0-7">
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-8">
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
</g>
<g id="glyph-0-9">
</g>
<g id="glyph-0-10">
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
</g>
<g id="glyph-0-11">
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
</g>
<g id="glyph-0-12">
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-13">
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
</g>
<g id="glyph-0-14">
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
</g>
<g id="glyph-0-15">
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-16">
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
</g>
<g id="glyph-0-17">
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
</g>
<g id="glyph-0-18">
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
</g>
<g id="glyph-0-19">
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
</g>
<g id="glyph-0-20">
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
</g>
<g id="glyph-0-21">
<path d="M 0.859375 -8.03125 L 2.140625 -8.03125 L 6.203125 -1.53125 L 6.203125 -8.03125 L 7.234375 -8.03125 L 7.234375 0 L 6.015625 0 L 1.890625 -6.5 L 1.890625 0 L 0.859375 0 Z M 3.96875 -8.03125 Z M 3.96875 -8.03125 "/>
</g>
<g id="glyph-0-22">
<path d="M 4.984375 -3.296875 L 3.765625 -6.84375 L 2.46875 -3.296875 Z M 3.1875 -8.03125 L 4.421875 -8.03125 L 7.328125 0 L 6.140625 0 L 5.328125 -2.40625 L 2.15625 -2.40625 L 1.28125 0 L 0.171875 0 Z M 3.1875 -8.03125 "/>
</g>
<g id="glyph-1-0">
<path d="M 1.46875 -7.328125 L 2.875 -1.546875 L 4.3125 -7.328125 L 5.6875 -7.328125 L 7.125 -1.59375 L 8.625 -7.328125 L 9.84375 -7.328125 L 7.71875 0 L 6.453125 0 L 4.953125 -5.671875 L 3.515625 0 L 2.234375 0 L 0.125 -7.328125 Z M 1.46875 -7.328125 "/>
</g>
<g id="glyph-1-1">
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
</g>
<g id="glyph-1-2">
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-3">
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
</g>
<g id="glyph-1-4">
<path d="M 0.90625 -10.078125 L 2.140625 -10.078125 L 2.140625 -6.328125 C 2.429688 -6.703125 2.691406 -6.960938 2.921875 -7.109375 C 3.316406 -7.367188 3.8125 -7.5 4.40625 -7.5 C 5.46875 -7.5 6.1875 -7.128906 6.5625 -6.390625 C 6.769531 -5.984375 6.875 -5.421875 6.875 -4.703125 L 6.875 0 L 5.609375 0 L 5.609375 -4.609375 C 5.609375 -5.148438 5.539062 -5.546875 5.40625 -5.796875 C 5.175781 -6.203125 4.753906 -6.40625 4.140625 -6.40625 C 3.628906 -6.40625 3.164062 -6.226562 2.75 -5.875 C 2.34375 -5.519531 2.140625 -4.859375 2.140625 -3.890625 L 2.140625 0 L 0.90625 0 Z M 0.90625 -10.078125 "/>
</g>
<g id="glyph-1-5">
<path d="M 0.9375 -7.328125 L 2.109375 -7.328125 L 2.109375 -6.0625 C 2.203125 -6.300781 2.4375 -6.597656 2.8125 -6.953125 C 3.1875 -7.304688 3.617188 -7.484375 4.109375 -7.484375 C 4.128906 -7.484375 4.164062 -7.476562 4.21875 -7.46875 C 4.269531 -7.46875 4.363281 -7.460938 4.5 -7.453125 L 4.5 -6.15625 C 4.425781 -6.164062 4.359375 -6.171875 4.296875 -6.171875 C 4.234375 -6.179688 4.164062 -6.1875 4.09375 -6.1875 C 3.476562 -6.1875 3.003906 -5.984375 2.671875 -5.578125 C 2.335938 -5.179688 2.171875 -4.726562 2.171875 -4.21875 L 2.171875 0 L 0.9375 0 Z M 0.9375 -7.328125 "/>
</g>
<g id="glyph-1-6">
<path d="M 0 1.75 L 0 1.0625 L 7.78125 1.0625 L 7.78125 1.75 Z M 0 1.75 "/>
</g>
<g id="glyph-1-7">
<path d="M 5.46875 -7.328125 L 6.84375 -7.328125 C 6.664062 -6.859375 6.28125 -5.785156 5.6875 -4.109375 C 5.238281 -2.847656 4.863281 -1.820312 4.5625 -1.03125 C 3.851562 0.832031 3.351562 1.96875 3.0625 2.375 C 2.769531 2.789062 2.265625 3 1.546875 3 C 1.378906 3 1.25 2.988281 1.15625 2.96875 C 1.0625 2.957031 0.945312 2.9375 0.8125 2.90625 L 0.8125 1.78125 C 1.019531 1.84375 1.171875 1.878906 1.265625 1.890625 C 1.367188 1.910156 1.457031 1.921875 1.53125 1.921875 C 1.75 1.921875 1.910156 1.878906 2.015625 1.796875 C 2.128906 1.722656 2.222656 1.632812 2.296875 1.53125 C 2.316406 1.488281 2.394531 1.296875 2.53125 0.953125 C 2.675781 0.617188 2.78125 0.375 2.84375 0.21875 L 0.140625 -7.328125 L 1.53125 -7.328125 L 3.5 -1.359375 Z M 3.5 -7.5 Z M 3.5 -7.5 "/>
</g>
<g id="glyph-1-8">
<path d="M 4 -0.828125 C 4.570312 -0.828125 5.046875 -1.066406 5.421875 -1.546875 C 5.804688 -2.023438 6 -2.742188 6 -3.703125 C 6 -4.285156 5.914062 -4.785156 5.75 -5.203125 C 5.425781 -6.015625 4.84375 -6.421875 4 -6.421875 C 3.144531 -6.421875 2.5625 -5.992188 2.25 -5.140625 C 2.070312 -4.679688 1.984375 -4.101562 1.984375 -3.40625 C 1.984375 -2.84375 2.070312 -2.363281 2.25 -1.96875 C 2.5625 -1.207031 3.144531 -0.828125 4 -0.828125 Z M 0.8125 -7.28125 L 2 -7.28125 L 2 -6.3125 C 2.25 -6.644531 2.519531 -6.90625 2.8125 -7.09375 C 3.226562 -7.363281 3.710938 -7.5 4.265625 -7.5 C 5.097656 -7.5 5.800781 -7.179688 6.375 -6.546875 C 6.957031 -5.910156 7.25 -5.003906 7.25 -3.828125 C 7.25 -2.222656 6.832031 -1.082031 6 -0.40625 C 5.46875 0.0273438 4.851562 0.25 4.15625 0.25 C 3.601562 0.25 3.140625 0.128906 2.765625 -0.109375 C 2.546875 -0.253906 2.300781 -0.492188 2.03125 -0.828125 L 2.03125 2.921875 L 0.8125 2.921875 Z M 0.8125 -7.28125 "/>
</g>
<g id="glyph-2-0">
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
</g>
<g id="glyph-2-1">
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
</g>
<g id="glyph-2-2">
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
</g>
<g id="glyph-2-3">
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
</g>
<g id="glyph-2-4">
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 48.5625 6.972656 L 353.027344 6.972656 L 353.027344 254.613281 L 48.5625 254.613281 Z M 48.5625 6.972656 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 48.5625 243 L 353.027344 243 L 353.027344 244 L 48.5625 244 Z M 48.5625 243 "/>
</clipPath>
<clipPath id="clip-2">
<path clip-rule="nonzero" d="M 48.5625 163 L 353.027344 163 L 353.027344 165 L 48.5625 165 Z M 48.5625 163 "/>
</clipPath>
<clipPath id="clip-3">
<path clip-rule="nonzero" d="M 48.5625 83 L 353.027344 83 L 353.027344 85 L 48.5625 85 Z M 48.5625 83 "/>
</clipPath>
<clipPath id="clip-4">
<path clip-rule="nonzero" d="M 73 6.972656 L 75 6.972656 L 75 254.613281 L 73 254.613281 Z M 73 6.972656 "/>
</clipPath>
<clipPath id="clip-5">
<path clip-rule="nonzero" d="M 115 6.972656 L 117 6.972656 L 117 254.613281 L 115 254.613281 Z M 115 6.972656 "/>
</clipPath>
<clipPath id="clip-6">
<path clip-rule="nonzero" d="M 158 6.972656 L 159 6.972656 L 159 254.613281 L 158 254.613281 Z M 158 6.972656 "/>
</clipPath>
<clipPath id="clip-7">
<path clip-rule="nonzero" d="M 200 6.972656 L 202 6.972656 L 202 254.613281 L 200 254.613281 Z M 200 6.972656 "/>
</clipPath>
<clipPath id="clip-8">
<path clip-rule="nonzero" d="M 242 6.972656 L 244 6.972656 L 244 254.613281 L 242 254.613281 Z M 242 6.972656 "/>
</clipPath>
<clipPath id="clip-9">
<path clip-rule="nonzero" d="M 285 6.972656 L 286 6.972656 L 286 254.613281 L 285 254.613281 Z M 285 6.972656 "/>
</clipPath>
<clipPath id="clip-10">
<path clip-rule="nonzero" d="M 327 6.972656 L 328 6.972656 L 328 254.613281 L 327 254.613281 Z M 327 6.972656 "/>
</clipPath>
<clipPath id="clip-11">
<path clip-rule="nonzero" d="M 48.5625 6.972656 L 353.027344 6.972656 L 353.027344 254.613281 L 48.5625 254.613281 Z M 48.5625 6.972656 "/>
</clipPath>
</defs>
<rect x="-36" y="-29.5" width="432" height="354" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<rect x="-36" y="-29.5" width="432" height="354" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 295 L 360 295 L 360 0 L 0 0 Z M 0 295 "/>
<g clip-path="url(#clip-0)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 48.5625 254.613281 L 353.027344 254.613281 L 353.027344 6.972656 L 48.5625 6.972656 Z M 48.5625 254.613281 "/>
</g>
<g clip-path="url(#clip-1)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 243.355469 L 353.027344 243.355469 "/>
</g>
<g clip-path="url(#clip-2)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 163.664062 L 353.027344 163.664062 "/>
</g>
<g clip-path="url(#clip-3)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 83.976562 L 353.027344 83.976562 "/>
</g>
<g clip-path="url(#clip-4)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 73.933594 254.613281 L 73.933594 6.972656 "/>
</g>
<g clip-path="url(#clip-5)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 116.222656 254.613281 L 116.222656 6.972656 "/>
</g>
<g clip-path="url(#clip-6)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 158.507812 254.613281 L 158.507812 6.972656 "/>
</g>
<g clip-path="url(#clip-7)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 254.613281 L 200.792969 6.972656 "/>
</g>
<g clip-path="url(#clip-8)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 243.082031 254.613281 L 243.082031 6.972656 "/>
</g>
<g clip-path="url(#clip-9)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 285.367188 254.613281 L 285.367188 6.972656 "/>
</g>
<g clip-path="url(#clip-10)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 327.652344 254.613281 L 327.652344 6.972656 "/>
</g>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 54.90625 243.355469 L 92.964844 243.355469 L 92.964844 136.96875 L 54.90625 136.96875 Z M 54.90625 243.355469 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 97.191406 243.355469 L 135.25 243.355469 L 135.25 18.230469 L 97.191406 18.230469 Z M 97.191406 243.355469 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 139.480469 243.355469 L 177.539062 243.355469 L 177.539062 211.878906 L 139.480469 211.878906 Z M 139.480469 243.355469 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 181.765625 243.355469 L 219.824219 243.355469 L 219.824219 180.796875 L 181.765625 180.796875 Z M 181.765625 243.355469 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 224.050781 243.355469 L 262.109375 243.355469 L 262.109375 119.4375 L 224.050781 119.4375 Z M 224.050781 243.355469 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 266.339844 243.355469 L 304.398438 243.355469 L 304.398438 242.160156 L 266.339844 242.160156 Z M 266.339844 243.355469 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 308.625 243.355469 L 346.683594 243.355469 L 346.683594 214.667969 L 308.625 214.667969 Z M 308.625 243.355469 "/>
<g clip-path="url(#clip-11)">
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 254.613281 L 353.027344 254.613281 L 353.027344 6.972656 L 48.5625 6.972656 Z M 48.5625 254.613281 "/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="36.054688" y="247.375"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="23.597656" y="167.683594"/>
<use xlink:href="#glyph-0-0" x="29.826563" y="167.683594"/>
<use xlink:href="#glyph-0-0" x="36.055469" y="167.683594"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="23.597656" y="87.992188"/>
<use xlink:href="#glyph-0-0" x="29.826563" y="87.992188"/>
<use xlink:href="#glyph-0-0" x="36.055469" y="87.992188"/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 45.074219 243.355469 L 48.5625 243.355469 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 45.074219 163.664062 L 48.5625 163.664062 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 45.074219 83.976562 L 48.5625 83.976562 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 73.933594 258.101562 L 73.933594 254.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 116.222656 258.101562 L 116.222656 254.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 158.507812 258.101562 L 158.507812 254.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 258.101562 L 200.792969 254.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 243.082031 258.101562 L 243.082031 254.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 285.367188 258.101562 L 285.367188 254.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 327.652344 258.101562 L 327.652344 254.613281 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-3" x="39.066406" y="268.921875"/>
<use xlink:href="#glyph-0-4" x="45.295313" y="268.921875"/>
<use xlink:href="#glyph-0-5" x="49.025" y="268.921875"/>
<use xlink:href="#glyph-0-6" x="55.253906" y="268.921875"/>
<use xlink:href="#glyph-0-7" x="60.853906" y="268.921875"/>
<use xlink:href="#glyph-0-8" x="67.082813" y="268.921875"/>
<use xlink:href="#glyph-0-9" x="73.311719" y="268.921875"/>
<use xlink:href="#glyph-0-10" x="76.423437" y="268.921875"/>
<use xlink:href="#glyph-0-11" x="82.023437" y="268.921875"/>
<use xlink:href="#glyph-0-5" x="84.511719" y="268.921875"/>
<use xlink:href="#glyph-0-12" x="90.740625" y="268.921875"/>
<use xlink:href="#glyph-0-13" x="96.969531" y="268.921875"/>
<use xlink:href="#glyph-0-14" x="103.198437" y="268.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-10" x="104.085938" y="268.921875"/>
<use xlink:href="#glyph-0-11" x="109.685937" y="268.921875"/>
<use xlink:href="#glyph-0-7" x="112.174219" y="268.921875"/>
<use xlink:href="#glyph-0-15" x="118.403125" y="268.921875"/>
<use xlink:href="#glyph-0-4" x="124.632031" y="268.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-10" x="142.320312" y="268.921875"/>
<use xlink:href="#glyph-0-11" x="147.920312" y="268.921875"/>
<use xlink:href="#glyph-0-5" x="150.408594" y="268.921875"/>
<use xlink:href="#glyph-0-12" x="156.6375" y="268.921875"/>
<use xlink:href="#glyph-0-13" x="162.866406" y="268.921875"/>
<use xlink:href="#glyph-0-16" x="169.095312" y="268.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-4" x="191.457031" y="268.921875"/>
<use xlink:href="#glyph-0-15" x="195.186719" y="268.921875"/>
<use xlink:href="#glyph-0-17" x="201.415625" y="268.921875"/>
<use xlink:href="#glyph-0-8" x="203.903906" y="268.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-14" x="202.304688" y="268.921875"/>
<use xlink:href="#glyph-0-10" x="207.904687" y="268.921875"/>
<use xlink:href="#glyph-0-15" x="213.504687" y="268.921875"/>
<use xlink:href="#glyph-0-18" x="219.733594" y="268.921875"/>
<use xlink:href="#glyph-0-18" x="222.845312" y="268.921875"/>
<use xlink:href="#glyph-0-7" x="225.957031" y="268.921875"/>
<use xlink:href="#glyph-0-4" x="232.185937" y="268.921875"/>
<use xlink:href="#glyph-0-7" x="235.915625" y="268.921875"/>
<use xlink:href="#glyph-0-13" x="242.144531" y="268.921875"/>
<use xlink:href="#glyph-0-9" x="248.373437" y="268.921875"/>
<use xlink:href="#glyph-0-10" x="251.485156" y="268.921875"/>
<use xlink:href="#glyph-0-11" x="257.085156" y="268.921875"/>
<use xlink:href="#glyph-0-5" x="259.573437" y="268.921875"/>
<use xlink:href="#glyph-0-12" x="265.802344" y="268.921875"/>
<use xlink:href="#glyph-0-13" x="272.03125" y="268.921875"/>
<use xlink:href="#glyph-0-14" x="278.260156" y="268.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-14" x="265.136719" y="268.921875"/>
<use xlink:href="#glyph-0-8" x="270.736719" y="268.921875"/>
<use xlink:href="#glyph-0-5" x="276.965625" y="268.921875"/>
<use xlink:href="#glyph-0-19" x="283.194531" y="268.921875"/>
<use xlink:href="#glyph-0-20" x="291.282813" y="268.921875"/>
<use xlink:href="#glyph-0-15" x="294.394531" y="268.921875"/>
<use xlink:href="#glyph-0-11" x="300.623438" y="268.921875"/>
<use xlink:href="#glyph-0-11" x="303.111719" y="268.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-21" x="319.871094" y="268.921875"/>
<use xlink:href="#glyph-0-22" x="327.959375" y="268.921875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="158.765625" y="284.929688"/>
<use xlink:href="#glyph-1-1" x="168.875977" y="284.929688"/>
<use xlink:href="#glyph-1-2" x="176.662109" y="284.929688"/>
<use xlink:href="#glyph-1-3" x="184.448242" y="284.929688"/>
<use xlink:href="#glyph-1-4" x="188.337891" y="284.929688"/>
<use xlink:href="#glyph-1-1" x="196.124023" y="284.929688"/>
<use xlink:href="#glyph-1-5" x="203.910156" y="284.929688"/>
<use xlink:href="#glyph-1-6" x="208.572266" y="284.929688"/>
<use xlink:href="#glyph-1-3" x="216.358398" y="284.929688"/>
<use xlink:href="#glyph-1-7" x="220.248047" y="284.929688"/>
<use xlink:href="#glyph-1-8" x="227.248047" y="284.929688"/>
<use xlink:href="#glyph-1-1" x="235.03418" y="284.929688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="17.015625" y="147.917969"/>
<use xlink:href="#glyph-2-1" x="17.015625" y="140.917969"/>
<use xlink:href="#glyph-2-2" x="17.015625" y="133.131836"/>
<use xlink:href="#glyph-2-3" x="17.015625" y="125.345703"/>
<use xlink:href="#glyph-2-4" x="17.015625" y="117.55957"/>
</g>
</svg>

After

(image error) Size: 42 KiB

Binary file not shown.

After

(image error) Size: 54 KiB

View File

@ -0,0 +1,384 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="280" viewBox="0 0 360 280">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
</g>
<g id="glyph-0-1">
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
</g>
<g id="glyph-0-2">
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
</g>
<g id="glyph-0-3">
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
</g>
<g id="glyph-0-4">
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
</g>
<g id="glyph-0-5">
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-6">
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
</g>
<g id="glyph-0-7">
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-8">
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
</g>
<g id="glyph-0-9">
</g>
<g id="glyph-0-10">
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
</g>
<g id="glyph-0-11">
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
</g>
<g id="glyph-0-12">
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-13">
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
</g>
<g id="glyph-0-14">
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
</g>
<g id="glyph-0-15">
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-16">
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
</g>
<g id="glyph-0-17">
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
</g>
<g id="glyph-0-18">
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
</g>
<g id="glyph-0-19">
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
</g>
<g id="glyph-0-20">
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
</g>
<g id="glyph-1-0">
<path d="M 1.46875 -7.328125 L 2.875 -1.546875 L 4.3125 -7.328125 L 5.6875 -7.328125 L 7.125 -1.59375 L 8.625 -7.328125 L 9.84375 -7.328125 L 7.71875 0 L 6.453125 0 L 4.953125 -5.671875 L 3.515625 0 L 2.234375 0 L 0.125 -7.328125 Z M 1.46875 -7.328125 "/>
</g>
<g id="glyph-1-1">
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
</g>
<g id="glyph-1-2">
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-3">
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
</g>
<g id="glyph-1-4">
<path d="M 0.90625 -10.078125 L 2.140625 -10.078125 L 2.140625 -6.328125 C 2.429688 -6.703125 2.691406 -6.960938 2.921875 -7.109375 C 3.316406 -7.367188 3.8125 -7.5 4.40625 -7.5 C 5.46875 -7.5 6.1875 -7.128906 6.5625 -6.390625 C 6.769531 -5.984375 6.875 -5.421875 6.875 -4.703125 L 6.875 0 L 5.609375 0 L 5.609375 -4.609375 C 5.609375 -5.148438 5.539062 -5.546875 5.40625 -5.796875 C 5.175781 -6.203125 4.753906 -6.40625 4.140625 -6.40625 C 3.628906 -6.40625 3.164062 -6.226562 2.75 -5.875 C 2.34375 -5.519531 2.140625 -4.859375 2.140625 -3.890625 L 2.140625 0 L 0.90625 0 Z M 0.90625 -10.078125 "/>
</g>
<g id="glyph-1-5">
<path d="M 0.9375 -7.328125 L 2.109375 -7.328125 L 2.109375 -6.0625 C 2.203125 -6.300781 2.4375 -6.597656 2.8125 -6.953125 C 3.1875 -7.304688 3.617188 -7.484375 4.109375 -7.484375 C 4.128906 -7.484375 4.164062 -7.476562 4.21875 -7.46875 C 4.269531 -7.46875 4.363281 -7.460938 4.5 -7.453125 L 4.5 -6.15625 C 4.425781 -6.164062 4.359375 -6.171875 4.296875 -6.171875 C 4.234375 -6.179688 4.164062 -6.1875 4.09375 -6.1875 C 3.476562 -6.1875 3.003906 -5.984375 2.671875 -5.578125 C 2.335938 -5.179688 2.171875 -4.726562 2.171875 -4.21875 L 2.171875 0 L 0.9375 0 Z M 0.9375 -7.328125 "/>
</g>
<g id="glyph-1-6">
<path d="M 0 1.75 L 0 1.0625 L 7.78125 1.0625 L 7.78125 1.75 Z M 0 1.75 "/>
</g>
<g id="glyph-1-7">
<path d="M 5.46875 -7.328125 L 6.84375 -7.328125 C 6.664062 -6.859375 6.28125 -5.785156 5.6875 -4.109375 C 5.238281 -2.847656 4.863281 -1.820312 4.5625 -1.03125 C 3.851562 0.832031 3.351562 1.96875 3.0625 2.375 C 2.769531 2.789062 2.265625 3 1.546875 3 C 1.378906 3 1.25 2.988281 1.15625 2.96875 C 1.0625 2.957031 0.945312 2.9375 0.8125 2.90625 L 0.8125 1.78125 C 1.019531 1.84375 1.171875 1.878906 1.265625 1.890625 C 1.367188 1.910156 1.457031 1.921875 1.53125 1.921875 C 1.75 1.921875 1.910156 1.878906 2.015625 1.796875 C 2.128906 1.722656 2.222656 1.632812 2.296875 1.53125 C 2.316406 1.488281 2.394531 1.296875 2.53125 0.953125 C 2.675781 0.617188 2.78125 0.375 2.84375 0.21875 L 0.140625 -7.328125 L 1.53125 -7.328125 L 3.5 -1.359375 Z M 3.5 -7.5 Z M 3.5 -7.5 "/>
</g>
<g id="glyph-1-8">
<path d="M 4 -0.828125 C 4.570312 -0.828125 5.046875 -1.066406 5.421875 -1.546875 C 5.804688 -2.023438 6 -2.742188 6 -3.703125 C 6 -4.285156 5.914062 -4.785156 5.75 -5.203125 C 5.425781 -6.015625 4.84375 -6.421875 4 -6.421875 C 3.144531 -6.421875 2.5625 -5.992188 2.25 -5.140625 C 2.070312 -4.679688 1.984375 -4.101562 1.984375 -3.40625 C 1.984375 -2.84375 2.070312 -2.363281 2.25 -1.96875 C 2.5625 -1.207031 3.144531 -0.828125 4 -0.828125 Z M 0.8125 -7.28125 L 2 -7.28125 L 2 -6.3125 C 2.25 -6.644531 2.519531 -6.90625 2.8125 -7.09375 C 3.226562 -7.363281 3.710938 -7.5 4.265625 -7.5 C 5.097656 -7.5 5.800781 -7.179688 6.375 -6.546875 C 6.957031 -5.910156 7.25 -5.003906 7.25 -3.828125 C 7.25 -2.222656 6.832031 -1.082031 6 -0.40625 C 5.46875 0.0273438 4.851562 0.25 4.15625 0.25 C 3.601562 0.25 3.140625 0.128906 2.765625 -0.109375 C 2.546875 -0.253906 2.300781 -0.492188 2.03125 -0.828125 L 2.03125 2.921875 L 0.8125 2.921875 Z M 0.8125 -7.28125 "/>
</g>
<g id="glyph-2-0">
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
</g>
<g id="glyph-2-1">
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
</g>
<g id="glyph-2-2">
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
</g>
<g id="glyph-2-3">
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
</g>
<g id="glyph-2-4">
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 48.5625 76.402344 L 353.027344 76.402344 L 353.027344 239.613281 L 48.5625 239.613281 Z M 48.5625 76.402344 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 48.5625 231 L 353.027344 231 L 353.027344 233 L 48.5625 233 Z M 48.5625 231 "/>
</clipPath>
<clipPath id="clip-2">
<path clip-rule="nonzero" d="M 48.5625 179 L 353.027344 179 L 353.027344 181 L 48.5625 181 Z M 48.5625 179 "/>
</clipPath>
<clipPath id="clip-3">
<path clip-rule="nonzero" d="M 48.5625 126 L 353.027344 126 L 353.027344 128 L 48.5625 128 Z M 48.5625 126 "/>
</clipPath>
<clipPath id="clip-4">
<path clip-rule="nonzero" d="M 77 76.402344 L 79 76.402344 L 79 239.613281 L 77 239.613281 Z M 77 76.402344 "/>
</clipPath>
<clipPath id="clip-5">
<path clip-rule="nonzero" d="M 126 76.402344 L 128 76.402344 L 128 239.613281 L 126 239.613281 Z M 126 76.402344 "/>
</clipPath>
<clipPath id="clip-6">
<path clip-rule="nonzero" d="M 175 76.402344 L 177 76.402344 L 177 239.613281 L 175 239.613281 Z M 175 76.402344 "/>
</clipPath>
<clipPath id="clip-7">
<path clip-rule="nonzero" d="M 225 76.402344 L 226 76.402344 L 226 239.613281 L 225 239.613281 Z M 225 76.402344 "/>
</clipPath>
<clipPath id="clip-8">
<path clip-rule="nonzero" d="M 274 76.402344 L 275 76.402344 L 275 239.613281 L 274 239.613281 Z M 274 76.402344 "/>
</clipPath>
<clipPath id="clip-9">
<path clip-rule="nonzero" d="M 323 76.402344 L 324 76.402344 L 324 239.613281 L 323 239.613281 Z M 323 76.402344 "/>
</clipPath>
<clipPath id="clip-10">
<path clip-rule="nonzero" d="M 48.5625 76.402344 L 353.027344 76.402344 L 353.027344 239.613281 L 48.5625 239.613281 Z M 48.5625 76.402344 "/>
</clipPath>
</defs>
<rect x="-36" y="-28" width="432" height="336" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<rect x="-36" y="-28" width="432" height="336" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 280 L 360 280 L 360 0 L 0 0 Z M 0 280 "/>
<g clip-path="url(#clip-0)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 48.5625 239.613281 L 353.027344 239.613281 L 353.027344 76.402344 L 48.5625 76.402344 Z M 48.5625 239.613281 "/>
</g>
<g clip-path="url(#clip-1)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 232.195312 L 353.027344 232.195312 "/>
</g>
<g clip-path="url(#clip-2)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 179.671875 L 353.027344 179.671875 "/>
</g>
<g clip-path="url(#clip-3)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 127.152344 L 353.027344 127.152344 "/>
</g>
<g clip-path="url(#clip-4)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 78.027344 239.613281 L 78.027344 76.402344 "/>
</g>
<g clip-path="url(#clip-5)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 127.132812 239.613281 L 127.132812 76.402344 "/>
</g>
<g clip-path="url(#clip-6)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 176.242188 239.613281 L 176.242188 76.402344 "/>
</g>
<g clip-path="url(#clip-7)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 225.347656 239.613281 L 225.347656 76.402344 "/>
</g>
<g clip-path="url(#clip-8)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 274.453125 239.613281 L 274.453125 76.402344 "/>
</g>
<g clip-path="url(#clip-9)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 323.5625 239.613281 L 323.5625 76.402344 "/>
</g>
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 55.929688 232.195312 L 100.125 232.195312 L 100.125 162.078125 L 55.929688 162.078125 Z M 55.929688 232.195312 "/>
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 105.035156 232.195312 L 149.230469 232.195312 L 149.230469 83.824219 L 105.035156 83.824219 Z M 105.035156 232.195312 "/>
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 154.144531 232.195312 L 198.339844 232.195312 L 198.339844 211.449219 L 154.144531 211.449219 Z M 154.144531 232.195312 "/>
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 203.25 232.195312 L 247.445312 232.195312 L 247.445312 190.964844 L 203.25 190.964844 Z M 203.25 232.195312 "/>
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 252.355469 232.195312 L 296.550781 232.195312 L 296.550781 150.523438 L 252.355469 150.523438 Z M 252.355469 232.195312 "/>
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 301.464844 232.195312 L 345.660156 232.195312 L 345.660156 231.40625 L 301.464844 231.40625 Z M 301.464844 232.195312 "/>
<g clip-path="url(#clip-10)">
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 239.613281 L 353.027344 239.613281 L 353.027344 76.402344 L 48.5625 76.402344 Z M 48.5625 239.613281 "/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="36.054688" y="236.210938"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="23.597656" y="183.691406"/>
<use xlink:href="#glyph-0-0" x="29.826563" y="183.691406"/>
<use xlink:href="#glyph-0-0" x="36.055469" y="183.691406"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="23.597656" y="131.167969"/>
<use xlink:href="#glyph-0-0" x="29.826563" y="131.167969"/>
<use xlink:href="#glyph-0-0" x="36.055469" y="131.167969"/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 45.074219 232.195312 L 48.5625 232.195312 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 45.074219 179.671875 L 48.5625 179.671875 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 45.074219 127.152344 L 48.5625 127.152344 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 78.027344 243.101562 L 78.027344 239.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 127.132812 243.101562 L 127.132812 239.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 176.242188 243.101562 L 176.242188 239.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 225.347656 243.101562 L 225.347656 239.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 274.453125 243.101562 L 274.453125 239.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 323.5625 243.101562 L 323.5625 239.613281 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-3" x="43.160156" y="253.921875"/>
<use xlink:href="#glyph-0-4" x="49.389063" y="253.921875"/>
<use xlink:href="#glyph-0-5" x="53.11875" y="253.921875"/>
<use xlink:href="#glyph-0-6" x="59.347656" y="253.921875"/>
<use xlink:href="#glyph-0-7" x="64.947656" y="253.921875"/>
<use xlink:href="#glyph-0-8" x="71.176562" y="253.921875"/>
<use xlink:href="#glyph-0-9" x="77.405469" y="253.921875"/>
<use xlink:href="#glyph-0-10" x="80.517187" y="253.921875"/>
<use xlink:href="#glyph-0-11" x="86.117187" y="253.921875"/>
<use xlink:href="#glyph-0-5" x="88.605469" y="253.921875"/>
<use xlink:href="#glyph-0-12" x="94.834375" y="253.921875"/>
<use xlink:href="#glyph-0-13" x="101.063281" y="253.921875"/>
<use xlink:href="#glyph-0-14" x="107.292187" y="253.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-10" x="114.996094" y="253.921875"/>
<use xlink:href="#glyph-0-11" x="120.596094" y="253.921875"/>
<use xlink:href="#glyph-0-7" x="123.084375" y="253.921875"/>
<use xlink:href="#glyph-0-15" x="129.313281" y="253.921875"/>
<use xlink:href="#glyph-0-4" x="135.542187" y="253.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-10" x="160.054688" y="253.921875"/>
<use xlink:href="#glyph-0-11" x="165.654687" y="253.921875"/>
<use xlink:href="#glyph-0-5" x="168.142969" y="253.921875"/>
<use xlink:href="#glyph-0-12" x="174.371875" y="253.921875"/>
<use xlink:href="#glyph-0-13" x="180.600781" y="253.921875"/>
<use xlink:href="#glyph-0-16" x="186.829687" y="253.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-4" x="216.011719" y="253.921875"/>
<use xlink:href="#glyph-0-15" x="219.741406" y="253.921875"/>
<use xlink:href="#glyph-0-17" x="225.970313" y="253.921875"/>
<use xlink:href="#glyph-0-8" x="228.458594" y="253.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-14" x="233.675781" y="253.921875"/>
<use xlink:href="#glyph-0-10" x="239.275781" y="253.921875"/>
<use xlink:href="#glyph-0-15" x="244.875781" y="253.921875"/>
<use xlink:href="#glyph-0-18" x="251.104687" y="253.921875"/>
<use xlink:href="#glyph-0-18" x="254.216406" y="253.921875"/>
<use xlink:href="#glyph-0-7" x="257.328125" y="253.921875"/>
<use xlink:href="#glyph-0-4" x="263.557031" y="253.921875"/>
<use xlink:href="#glyph-0-7" x="267.286719" y="253.921875"/>
<use xlink:href="#glyph-0-13" x="273.515625" y="253.921875"/>
<use xlink:href="#glyph-0-9" x="279.744531" y="253.921875"/>
<use xlink:href="#glyph-0-10" x="282.85625" y="253.921875"/>
<use xlink:href="#glyph-0-11" x="288.45625" y="253.921875"/>
<use xlink:href="#glyph-0-5" x="290.944531" y="253.921875"/>
<use xlink:href="#glyph-0-12" x="297.173438" y="253.921875"/>
<use xlink:href="#glyph-0-13" x="303.402344" y="253.921875"/>
<use xlink:href="#glyph-0-14" x="309.63125" y="253.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-14" x="303.332031" y="253.921875"/>
<use xlink:href="#glyph-0-8" x="308.932031" y="253.921875"/>
<use xlink:href="#glyph-0-5" x="315.160938" y="253.921875"/>
<use xlink:href="#glyph-0-19" x="321.389844" y="253.921875"/>
<use xlink:href="#glyph-0-20" x="329.478125" y="253.921875"/>
<use xlink:href="#glyph-0-15" x="332.589844" y="253.921875"/>
<use xlink:href="#glyph-0-11" x="338.81875" y="253.921875"/>
<use xlink:href="#glyph-0-11" x="341.307031" y="253.921875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="158.765625" y="269.929688"/>
<use xlink:href="#glyph-1-1" x="168.875977" y="269.929688"/>
<use xlink:href="#glyph-1-2" x="176.662109" y="269.929688"/>
<use xlink:href="#glyph-1-3" x="184.448242" y="269.929688"/>
<use xlink:href="#glyph-1-4" x="188.337891" y="269.929688"/>
<use xlink:href="#glyph-1-1" x="196.124023" y="269.929688"/>
<use xlink:href="#glyph-1-5" x="203.910156" y="269.929688"/>
<use xlink:href="#glyph-1-6" x="208.572266" y="269.929688"/>
<use xlink:href="#glyph-1-3" x="216.358398" y="269.929688"/>
<use xlink:href="#glyph-1-7" x="220.248047" y="269.929688"/>
<use xlink:href="#glyph-1-8" x="227.248047" y="269.929688"/>
<use xlink:href="#glyph-1-1" x="235.03418" y="269.929688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="17.015625" y="175.132812"/>
<use xlink:href="#glyph-2-1" x="17.015625" y="168.132812"/>
<use xlink:href="#glyph-2-2" x="17.015625" y="160.34668"/>
<use xlink:href="#glyph-2-3" x="17.015625" y="152.560547"/>
<use xlink:href="#glyph-2-4" x="17.015625" y="144.774414"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 13.121094 62.457031 L 388.46875 62.457031 L 388.46875 6.976562 L 13.121094 6.976562 Z M 13.121094 62.457031 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="20.09375" y="39.734375"/>
<use xlink:href="#glyph-1-1" x="30.204102" y="39.734375"/>
<use xlink:href="#glyph-1-2" x="37.990234" y="39.734375"/>
<use xlink:href="#glyph-1-3" x="45.776367" y="39.734375"/>
<use xlink:href="#glyph-1-4" x="49.666016" y="39.734375"/>
<use xlink:href="#glyph-1-1" x="57.452148" y="39.734375"/>
<use xlink:href="#glyph-1-5" x="65.238281" y="39.734375"/>
<use xlink:href="#glyph-1-6" x="69.900391" y="39.734375"/>
<use xlink:href="#glyph-1-3" x="77.686523" y="39.734375"/>
<use xlink:href="#glyph-1-7" x="81.576172" y="39.734375"/>
<use xlink:href="#glyph-1-8" x="88.576172" y="39.734375"/>
<use xlink:href="#glyph-1-1" x="96.362305" y="39.734375"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 111.121094 31.226562 L 128.402344 31.226562 L 128.402344 13.945312 L 111.121094 13.945312 Z M 111.121094 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 111.832031 30.519531 L 127.695312 30.519531 L 127.695312 14.65625 L 111.832031 14.65625 Z M 111.832031 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 111.121094 55.480469 L 128.402344 55.480469 L 128.402344 38.199219 L 111.121094 38.199219 Z M 111.121094 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 111.832031 54.773438 L 127.695312 54.773438 L 127.695312 38.910156 L 111.832031 38.910156 Z M 111.832031 54.773438 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 212.082031 31.226562 L 229.363281 31.226562 L 229.363281 13.945312 L 212.082031 13.945312 Z M 212.082031 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 212.792969 30.519531 L 228.65625 30.519531 L 228.65625 14.65625 L 212.792969 14.65625 Z M 212.792969 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 212.082031 55.480469 L 229.363281 55.480469 L 229.363281 38.199219 L 212.082031 38.199219 Z M 212.082031 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 212.792969 54.773438 L 228.65625 54.773438 L 228.65625 38.910156 L 212.792969 38.910156 Z M 212.792969 54.773438 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 275.683594 31.226562 L 292.964844 31.226562 L 292.964844 13.945312 L 275.683594 13.945312 Z M 275.683594 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 276.394531 30.519531 L 292.257812 30.519531 L 292.257812 14.65625 L 276.394531 14.65625 Z M 276.394531 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 275.683594 55.480469 L 292.964844 55.480469 L 292.964844 38.199219 L 275.683594 38.199219 Z M 275.683594 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 276.394531 54.773438 L 292.257812 54.773438 L 292.257812 38.910156 L 276.394531 38.910156 Z M 276.394531 54.773438 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-3" x="135.375" y="26.605469"/>
<use xlink:href="#glyph-0-4" x="141.603906" y="26.605469"/>
<use xlink:href="#glyph-0-5" x="145.333594" y="26.605469"/>
<use xlink:href="#glyph-0-6" x="151.5625" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="157.1625" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="163.391406" y="26.605469"/>
<use xlink:href="#glyph-0-9" x="169.620312" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="172.732031" y="26.605469"/>
<use xlink:href="#glyph-0-11" x="178.332031" y="26.605469"/>
<use xlink:href="#glyph-0-5" x="180.820312" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="187.049219" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="193.278125" y="26.605469"/>
<use xlink:href="#glyph-0-14" x="199.507031" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-10" x="135.375" y="50.859375"/>
<use xlink:href="#glyph-0-11" x="140.975" y="50.859375"/>
<use xlink:href="#glyph-0-7" x="143.463281" y="50.859375"/>
<use xlink:href="#glyph-0-15" x="149.692187" y="50.859375"/>
<use xlink:href="#glyph-0-4" x="155.921094" y="50.859375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-10" x="236.335938" y="26.605469"/>
<use xlink:href="#glyph-0-11" x="241.935937" y="26.605469"/>
<use xlink:href="#glyph-0-5" x="244.424219" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="250.653125" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="256.882031" y="26.605469"/>
<use xlink:href="#glyph-0-16" x="263.110938" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-4" x="236.335938" y="50.859375"/>
<use xlink:href="#glyph-0-15" x="240.065625" y="50.859375"/>
<use xlink:href="#glyph-0-17" x="246.294531" y="50.859375"/>
<use xlink:href="#glyph-0-8" x="248.782813" y="50.859375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-14" x="299.9375" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="305.5375" y="26.605469"/>
<use xlink:href="#glyph-0-15" x="311.1375" y="26.605469"/>
<use xlink:href="#glyph-0-18" x="317.366406" y="26.605469"/>
<use xlink:href="#glyph-0-18" x="320.478125" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="323.589844" y="26.605469"/>
<use xlink:href="#glyph-0-4" x="329.81875" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="333.548438" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="339.777344" y="26.605469"/>
<use xlink:href="#glyph-0-9" x="346.00625" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="349.117969" y="26.605469"/>
<use xlink:href="#glyph-0-11" x="354.717969" y="26.605469"/>
<use xlink:href="#glyph-0-5" x="357.20625" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="363.435156" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="369.664063" y="26.605469"/>
<use xlink:href="#glyph-0-14" x="375.892969" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-14" x="299.9375" y="50.859375"/>
<use xlink:href="#glyph-0-8" x="305.5375" y="50.859375"/>
<use xlink:href="#glyph-0-5" x="311.766406" y="50.859375"/>
<use xlink:href="#glyph-0-19" x="317.995313" y="50.859375"/>
<use xlink:href="#glyph-0-20" x="326.083594" y="50.859375"/>
<use xlink:href="#glyph-0-15" x="329.195313" y="50.859375"/>
<use xlink:href="#glyph-0-11" x="335.424219" y="50.859375"/>
<use xlink:href="#glyph-0-11" x="337.9125" y="50.859375"/>
</g>
</svg>

After

(image error) Size: 48 KiB

View File

@ -0,0 +1,417 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="280" viewBox="0 0 360 280">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
</g>
<g id="glyph-0-1">
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
</g>
<g id="glyph-0-2">
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
</g>
<g id="glyph-0-3">
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
</g>
<g id="glyph-0-4">
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
</g>
<g id="glyph-0-5">
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-6">
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-7">
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
</g>
<g id="glyph-0-8">
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
</g>
<g id="glyph-0-9">
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
</g>
<g id="glyph-0-10">
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
</g>
<g id="glyph-0-11">
</g>
<g id="glyph-0-12">
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-13">
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-14">
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
</g>
<g id="glyph-0-15">
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
</g>
<g id="glyph-0-16">
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
</g>
<g id="glyph-0-17">
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
</g>
<g id="glyph-0-18">
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
</g>
<g id="glyph-0-19">
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
</g>
<g id="glyph-0-20">
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
</g>
<g id="glyph-1-0">
<path d="M 1.203125 -8.4375 C 1.222656 -8.945312 1.316406 -9.320312 1.484375 -9.5625 C 1.765625 -9.976562 2.316406 -10.1875 3.140625 -10.1875 C 3.210938 -10.1875 3.289062 -10.179688 3.375 -10.171875 C 3.457031 -10.171875 3.550781 -10.164062 3.65625 -10.15625 L 3.65625 -9.03125 C 3.53125 -9.039062 3.4375 -9.046875 3.375 -9.046875 C 3.320312 -9.054688 3.269531 -9.0625 3.21875 -9.0625 C 2.84375 -9.0625 2.617188 -8.960938 2.546875 -8.765625 C 2.472656 -8.578125 2.4375 -8.082031 2.4375 -7.28125 L 3.65625 -7.28125 L 3.65625 -6.3125 L 2.421875 -6.3125 L 2.421875 0 L 1.203125 0 L 1.203125 -6.3125 L 0.1875 -6.3125 L 0.1875 -7.28125 L 1.203125 -7.28125 Z M 1.203125 -8.4375 "/>
</g>
<g id="glyph-1-1">
<path d="M 3.71875 -7.53125 C 4.550781 -7.53125 5.222656 -7.328125 5.734375 -6.921875 C 6.253906 -6.523438 6.566406 -5.835938 6.671875 -4.859375 L 5.46875 -4.859375 C 5.394531 -5.304688 5.226562 -5.679688 4.96875 -5.984375 C 4.71875 -6.285156 4.300781 -6.4375 3.71875 -6.4375 C 2.9375 -6.4375 2.378906 -6.050781 2.046875 -5.28125 C 1.828125 -4.789062 1.71875 -4.179688 1.71875 -3.453125 C 1.71875 -2.710938 1.867188 -2.09375 2.171875 -1.59375 C 2.484375 -1.09375 2.972656 -0.84375 3.640625 -0.84375 C 4.148438 -0.84375 4.554688 -1 4.859375 -1.3125 C 5.160156 -1.625 5.363281 -2.050781 5.46875 -2.59375 L 6.671875 -2.59375 C 6.535156 -1.625 6.191406 -0.910156 5.640625 -0.453125 C 5.097656 -0.00390625 4.398438 0.21875 3.546875 0.21875 C 2.585938 0.21875 1.820312 -0.128906 1.25 -0.828125 C 0.6875 -1.535156 0.40625 -2.410156 0.40625 -3.453125 C 0.40625 -4.742188 0.71875 -5.742188 1.34375 -6.453125 C 1.96875 -7.171875 2.757812 -7.53125 3.71875 -7.53125 Z M 3.53125 -7.5 Z M 3.53125 -7.5 "/>
</g>
<g id="glyph-1-2">
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
</g>
<g id="glyph-1-3">
<path d="M 0 1.75 L 0 1.0625 L 7.78125 1.0625 L 7.78125 1.75 Z M 0 1.75 "/>
</g>
<g id="glyph-1-4">
<path d="M 0.90625 -7.28125 L 2.15625 -7.28125 L 2.15625 0 L 0.90625 0 Z M 0.90625 -10.046875 L 2.15625 -10.046875 L 2.15625 -8.640625 L 0.90625 -8.640625 Z M 0.90625 -10.046875 "/>
</g>
<g id="glyph-1-5">
<path d="M 0.90625 -7.328125 L 2.078125 -7.328125 L 2.078125 -6.28125 C 2.421875 -6.707031 2.785156 -7.015625 3.171875 -7.203125 C 3.554688 -7.390625 3.988281 -7.484375 4.46875 -7.484375 C 5.5 -7.484375 6.195312 -7.125 6.5625 -6.40625 C 6.769531 -6 6.875 -5.429688 6.875 -4.703125 L 6.875 0 L 5.625 0 L 5.625 -4.609375 C 5.625 -5.054688 5.554688 -5.414062 5.421875 -5.6875 C 5.203125 -6.144531 4.804688 -6.375 4.234375 -6.375 C 3.941406 -6.375 3.703125 -6.347656 3.515625 -6.296875 C 3.179688 -6.191406 2.882812 -5.988281 2.625 -5.6875 C 2.414062 -5.445312 2.28125 -5.195312 2.21875 -4.9375 C 2.164062 -4.675781 2.140625 -4.304688 2.140625 -3.828125 L 2.140625 0 L 0.90625 0 Z M 3.796875 -7.5 Z M 3.796875 -7.5 "/>
</g>
<g id="glyph-1-6">
<path d="M 0.9375 -7.328125 L 2.109375 -7.328125 L 2.109375 -6.0625 C 2.203125 -6.300781 2.4375 -6.597656 2.8125 -6.953125 C 3.1875 -7.304688 3.617188 -7.484375 4.109375 -7.484375 C 4.128906 -7.484375 4.164062 -7.476562 4.21875 -7.46875 C 4.269531 -7.46875 4.363281 -7.460938 4.5 -7.453125 L 4.5 -6.15625 C 4.425781 -6.164062 4.359375 -6.171875 4.296875 -6.171875 C 4.234375 -6.179688 4.164062 -6.1875 4.09375 -6.1875 C 3.476562 -6.1875 3.003906 -5.984375 2.671875 -5.578125 C 2.335938 -5.179688 2.171875 -4.726562 2.171875 -4.21875 L 2.171875 0 L 0.9375 0 Z M 0.9375 -7.328125 "/>
</g>
<g id="glyph-1-7">
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
</g>
<g id="glyph-1-8">
<path d="M 1.703125 -3.5625 C 1.703125 -2.925781 1.789062 -2.394531 1.96875 -1.96875 C 2.28125 -1.207031 2.84375 -0.828125 3.65625 -0.828125 C 4.507812 -0.828125 5.097656 -1.226562 5.421875 -2.03125 C 5.597656 -2.46875 5.6875 -3.03125 5.6875 -3.71875 C 5.6875 -4.351562 5.585938 -4.882812 5.390625 -5.3125 C 5.054688 -6.039062 4.472656 -6.40625 3.640625 -6.40625 C 3.109375 -6.40625 2.648438 -6.171875 2.265625 -5.703125 C 1.890625 -5.242188 1.703125 -4.53125 1.703125 -3.5625 Z M 3.515625 -7.484375 C 4.117188 -7.484375 4.628906 -7.332031 5.046875 -7.03125 C 5.273438 -6.863281 5.492188 -6.617188 5.703125 -6.296875 L 5.703125 -7.328125 L 6.875 -7.328125 L 6.875 2.921875 L 5.640625 2.921875 L 5.640625 -0.84375 C 5.429688 -0.507812 5.144531 -0.242188 4.78125 -0.046875 C 4.414062 0.140625 3.960938 0.234375 3.421875 0.234375 C 2.640625 0.234375 1.941406 -0.0664062 1.328125 -0.671875 C 0.710938 -1.285156 0.40625 -2.21875 0.40625 -3.46875 C 0.40625 -4.644531 0.691406 -5.609375 1.265625 -6.359375 C 1.847656 -7.109375 2.597656 -7.484375 3.515625 -7.484375 Z M 3.515625 -7.484375 "/>
</g>
<g id="glyph-1-9">
<path d="M 4.140625 -10.203125 C 3.421875 -8.816406 2.957031 -7.796875 2.75 -7.140625 C 2.425781 -6.140625 2.265625 -4.984375 2.265625 -3.671875 C 2.265625 -2.359375 2.445312 -1.15625 2.8125 -0.0625 C 3.039062 0.613281 3.488281 1.585938 4.15625 2.859375 L 3.34375 2.859375 C 2.675781 1.816406 2.257812 1.148438 2.09375 0.859375 C 1.9375 0.578125 1.765625 0.191406 1.578125 -0.296875 C 1.328125 -0.972656 1.148438 -1.695312 1.046875 -2.46875 C 0.992188 -2.863281 0.96875 -3.238281 0.96875 -3.59375 C 0.96875 -4.945312 1.179688 -6.148438 1.609375 -7.203125 C 1.878906 -7.867188 2.4375 -8.867188 3.28125 -10.203125 Z M 4.140625 -10.203125 "/>
</g>
<g id="glyph-1-10">
<path d="M 1.46875 -7.328125 L 2.875 -1.546875 L 4.3125 -7.328125 L 5.6875 -7.328125 L 7.125 -1.59375 L 8.625 -7.328125 L 9.84375 -7.328125 L 7.71875 0 L 6.453125 0 L 4.953125 -5.671875 L 3.515625 0 L 2.234375 0 L 0.125 -7.328125 Z M 1.46875 -7.328125 "/>
</g>
<g id="glyph-1-11">
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-12">
<path d="M 0.90625 -10.078125 L 2.140625 -10.078125 L 2.140625 -6.328125 C 2.429688 -6.703125 2.691406 -6.960938 2.921875 -7.109375 C 3.316406 -7.367188 3.8125 -7.5 4.40625 -7.5 C 5.46875 -7.5 6.1875 -7.128906 6.5625 -6.390625 C 6.769531 -5.984375 6.875 -5.421875 6.875 -4.703125 L 6.875 0 L 5.609375 0 L 5.609375 -4.609375 C 5.609375 -5.148438 5.539062 -5.546875 5.40625 -5.796875 C 5.175781 -6.203125 4.753906 -6.40625 4.140625 -6.40625 C 3.628906 -6.40625 3.164062 -6.226562 2.75 -5.875 C 2.34375 -5.519531 2.140625 -4.859375 2.140625 -3.890625 L 2.140625 0 L 0.90625 0 Z M 0.90625 -10.078125 "/>
</g>
<g id="glyph-1-13">
<path d="M 5.46875 -7.328125 L 6.84375 -7.328125 C 6.664062 -6.859375 6.28125 -5.785156 5.6875 -4.109375 C 5.238281 -2.847656 4.863281 -1.820312 4.5625 -1.03125 C 3.851562 0.832031 3.351562 1.96875 3.0625 2.375 C 2.769531 2.789062 2.265625 3 1.546875 3 C 1.378906 3 1.25 2.988281 1.15625 2.96875 C 1.0625 2.957031 0.945312 2.9375 0.8125 2.90625 L 0.8125 1.78125 C 1.019531 1.84375 1.171875 1.878906 1.265625 1.890625 C 1.367188 1.910156 1.457031 1.921875 1.53125 1.921875 C 1.75 1.921875 1.910156 1.878906 2.015625 1.796875 C 2.128906 1.722656 2.222656 1.632812 2.296875 1.53125 C 2.316406 1.488281 2.394531 1.296875 2.53125 0.953125 C 2.675781 0.617188 2.78125 0.375 2.84375 0.21875 L 0.140625 -7.328125 L 1.53125 -7.328125 L 3.5 -1.359375 Z M 3.5 -7.5 Z M 3.5 -7.5 "/>
</g>
<g id="glyph-1-14">
<path d="M 4 -0.828125 C 4.570312 -0.828125 5.046875 -1.066406 5.421875 -1.546875 C 5.804688 -2.023438 6 -2.742188 6 -3.703125 C 6 -4.285156 5.914062 -4.785156 5.75 -5.203125 C 5.425781 -6.015625 4.84375 -6.421875 4 -6.421875 C 3.144531 -6.421875 2.5625 -5.992188 2.25 -5.140625 C 2.070312 -4.679688 1.984375 -4.101562 1.984375 -3.40625 C 1.984375 -2.84375 2.070312 -2.363281 2.25 -1.96875 C 2.5625 -1.207031 3.144531 -0.828125 4 -0.828125 Z M 0.8125 -7.28125 L 2 -7.28125 L 2 -6.3125 C 2.25 -6.644531 2.519531 -6.90625 2.8125 -7.09375 C 3.226562 -7.363281 3.710938 -7.5 4.265625 -7.5 C 5.097656 -7.5 5.800781 -7.179688 6.375 -6.546875 C 6.957031 -5.910156 7.25 -5.003906 7.25 -3.828125 C 7.25 -2.222656 6.832031 -1.082031 6 -0.40625 C 5.46875 0.0273438 4.851562 0.25 4.15625 0.25 C 3.601562 0.25 3.140625 0.128906 2.765625 -0.109375 C 2.546875 -0.253906 2.300781 -0.492188 2.03125 -0.828125 L 2.03125 2.921875 L 0.8125 2.921875 Z M 0.8125 -7.28125 "/>
</g>
<g id="glyph-1-15">
<path d="M 0.484375 2.859375 C 1.210938 1.441406 1.679688 0.410156 1.890625 -0.234375 C 2.203125 -1.210938 2.359375 -2.359375 2.359375 -3.671875 C 2.359375 -4.992188 2.175781 -6.203125 1.8125 -7.296875 C 1.582031 -7.972656 1.132812 -8.941406 0.46875 -10.203125 L 1.296875 -10.203125 C 1.992188 -9.085938 2.414062 -8.394531 2.5625 -8.125 C 2.71875 -7.863281 2.878906 -7.503906 3.046875 -7.046875 C 3.265625 -6.472656 3.421875 -5.910156 3.515625 -5.359375 C 3.609375 -4.804688 3.65625 -4.269531 3.65625 -3.75 C 3.65625 -2.40625 3.441406 -1.203125 3.015625 -0.140625 C 2.742188 0.535156 2.1875 1.535156 1.34375 2.859375 Z M 0.484375 2.859375 "/>
</g>
<g id="glyph-2-0">
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
</g>
<g id="glyph-2-1">
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
</g>
<g id="glyph-2-2">
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
</g>
<g id="glyph-2-3">
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
</g>
<g id="glyph-2-4">
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 48.5625 76.402344 L 353.027344 76.402344 L 353.027344 239.613281 L 48.5625 239.613281 Z M 48.5625 76.402344 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 48.5625 231 L 353.027344 231 L 353.027344 233 L 48.5625 233 Z M 48.5625 231 "/>
</clipPath>
<clipPath id="clip-2">
<path clip-rule="nonzero" d="M 48.5625 179 L 353.027344 179 L 353.027344 181 L 48.5625 181 Z M 48.5625 179 "/>
</clipPath>
<clipPath id="clip-3">
<path clip-rule="nonzero" d="M 48.5625 126 L 353.027344 126 L 353.027344 128 L 48.5625 128 Z M 48.5625 126 "/>
</clipPath>
<clipPath id="clip-4">
<path clip-rule="nonzero" d="M 77 76.402344 L 79 76.402344 L 79 239.613281 L 77 239.613281 Z M 77 76.402344 "/>
</clipPath>
<clipPath id="clip-5">
<path clip-rule="nonzero" d="M 126 76.402344 L 128 76.402344 L 128 239.613281 L 126 239.613281 Z M 126 76.402344 "/>
</clipPath>
<clipPath id="clip-6">
<path clip-rule="nonzero" d="M 175 76.402344 L 177 76.402344 L 177 239.613281 L 175 239.613281 Z M 175 76.402344 "/>
</clipPath>
<clipPath id="clip-7">
<path clip-rule="nonzero" d="M 225 76.402344 L 226 76.402344 L 226 239.613281 L 225 239.613281 Z M 225 76.402344 "/>
</clipPath>
<clipPath id="clip-8">
<path clip-rule="nonzero" d="M 274 76.402344 L 275 76.402344 L 275 239.613281 L 274 239.613281 Z M 274 76.402344 "/>
</clipPath>
<clipPath id="clip-9">
<path clip-rule="nonzero" d="M 323 76.402344 L 324 76.402344 L 324 239.613281 L 323 239.613281 Z M 323 76.402344 "/>
</clipPath>
<clipPath id="clip-10">
<path clip-rule="nonzero" d="M 48.5625 76.402344 L 353.027344 76.402344 L 353.027344 239.613281 L 48.5625 239.613281 Z M 48.5625 76.402344 "/>
</clipPath>
</defs>
<rect x="-36" y="-28" width="432" height="336" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<rect x="-36" y="-28" width="432" height="336" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 280 L 360 280 L 360 0 L 0 0 Z M 0 280 "/>
<g clip-path="url(#clip-0)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 48.5625 239.613281 L 353.027344 239.613281 L 353.027344 76.402344 L 48.5625 76.402344 Z M 48.5625 239.613281 "/>
</g>
<g clip-path="url(#clip-1)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 232.195312 L 353.027344 232.195312 "/>
</g>
<g clip-path="url(#clip-2)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 179.671875 L 353.027344 179.671875 "/>
</g>
<g clip-path="url(#clip-3)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 127.152344 L 353.027344 127.152344 "/>
</g>
<g clip-path="url(#clip-4)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 78.027344 239.613281 L 78.027344 76.402344 "/>
</g>
<g clip-path="url(#clip-5)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 127.132812 239.613281 L 127.132812 76.402344 "/>
</g>
<g clip-path="url(#clip-6)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 176.242188 239.613281 L 176.242188 76.402344 "/>
</g>
<g clip-path="url(#clip-7)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 225.347656 239.613281 L 225.347656 76.402344 "/>
</g>
<g clip-path="url(#clip-8)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 274.453125 239.613281 L 274.453125 76.402344 "/>
</g>
<g clip-path="url(#clip-9)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 323.5625 239.613281 L 323.5625 76.402344 "/>
</g>
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 53.472656 232.195312 L 102.578125 232.195312 L 102.578125 83.824219 L 53.472656 83.824219 Z M 53.472656 232.195312 "/>
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 102.582031 232.195312 L 151.6875 232.195312 L 151.6875 150.523438 L 102.582031 150.523438 Z M 102.582031 232.195312 "/>
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 151.6875 232.195312 L 200.792969 232.195312 L 200.792969 162.078125 L 151.6875 162.078125 Z M 151.6875 232.195312 "/>
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 200.792969 232.195312 L 249.898438 232.195312 L 249.898438 190.964844 L 200.792969 190.964844 Z M 200.792969 232.195312 "/>
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 249.902344 232.195312 L 299.007812 232.195312 L 299.007812 211.449219 L 249.902344 211.449219 Z M 249.902344 232.195312 "/>
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 299.007812 232.195312 L 348.113281 232.195312 L 348.113281 231.40625 L 299.007812 231.40625 Z M 299.007812 232.195312 "/>
<g clip-path="url(#clip-10)">
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.5625 239.613281 L 353.027344 239.613281 L 353.027344 76.402344 L 48.5625 76.402344 Z M 48.5625 239.613281 "/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="36.054688" y="236.210938"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="23.597656" y="183.691406"/>
<use xlink:href="#glyph-0-0" x="29.826563" y="183.691406"/>
<use xlink:href="#glyph-0-0" x="36.055469" y="183.691406"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="23.597656" y="131.167969"/>
<use xlink:href="#glyph-0-0" x="29.826563" y="131.167969"/>
<use xlink:href="#glyph-0-0" x="36.055469" y="131.167969"/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 45.074219 232.195312 L 48.5625 232.195312 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 45.074219 179.671875 L 48.5625 179.671875 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 45.074219 127.152344 L 48.5625 127.152344 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 78.027344 243.101562 L 78.027344 239.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 127.132812 243.101562 L 127.132812 239.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 176.242188 243.101562 L 176.242188 239.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 225.347656 243.101562 L 225.347656 239.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 274.453125 243.101562 L 274.453125 239.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 323.5625 243.101562 L 323.5625 239.613281 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-3" x="65.890625" y="253.921875"/>
<use xlink:href="#glyph-0-4" x="71.490625" y="253.921875"/>
<use xlink:href="#glyph-0-5" x="73.978906" y="253.921875"/>
<use xlink:href="#glyph-0-6" x="80.207812" y="253.921875"/>
<use xlink:href="#glyph-0-7" x="86.436719" y="253.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-8" x="86.355469" y="253.921875"/>
<use xlink:href="#glyph-0-3" x="91.955469" y="253.921875"/>
<use xlink:href="#glyph-0-6" x="97.555469" y="253.921875"/>
<use xlink:href="#glyph-0-9" x="103.784375" y="253.921875"/>
<use xlink:href="#glyph-0-9" x="106.896094" y="253.921875"/>
<use xlink:href="#glyph-0-5" x="110.007812" y="253.921875"/>
<use xlink:href="#glyph-0-7" x="116.236719" y="253.921875"/>
<use xlink:href="#glyph-0-5" x="119.966406" y="253.921875"/>
<use xlink:href="#glyph-0-10" x="126.195312" y="253.921875"/>
<use xlink:href="#glyph-0-11" x="132.424219" y="253.921875"/>
<use xlink:href="#glyph-0-3" x="135.535937" y="253.921875"/>
<use xlink:href="#glyph-0-4" x="141.135937" y="253.921875"/>
<use xlink:href="#glyph-0-12" x="143.624219" y="253.921875"/>
<use xlink:href="#glyph-0-13" x="149.853125" y="253.921875"/>
<use xlink:href="#glyph-0-10" x="156.082031" y="253.921875"/>
<use xlink:href="#glyph-0-8" x="162.310937" y="253.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-14" x="141.375" y="253.921875"/>
<use xlink:href="#glyph-0-7" x="147.603906" y="253.921875"/>
<use xlink:href="#glyph-0-12" x="151.333594" y="253.921875"/>
<use xlink:href="#glyph-0-15" x="157.5625" y="253.921875"/>
<use xlink:href="#glyph-0-5" x="163.1625" y="253.921875"/>
<use xlink:href="#glyph-0-16" x="169.391406" y="253.921875"/>
<use xlink:href="#glyph-0-11" x="175.620312" y="253.921875"/>
<use xlink:href="#glyph-0-3" x="178.732031" y="253.921875"/>
<use xlink:href="#glyph-0-4" x="184.332031" y="253.921875"/>
<use xlink:href="#glyph-0-12" x="186.820312" y="253.921875"/>
<use xlink:href="#glyph-0-13" x="193.049219" y="253.921875"/>
<use xlink:href="#glyph-0-10" x="199.278125" y="253.921875"/>
<use xlink:href="#glyph-0-8" x="205.507031" y="253.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-7" x="216.011719" y="253.921875"/>
<use xlink:href="#glyph-0-6" x="219.741406" y="253.921875"/>
<use xlink:href="#glyph-0-17" x="225.970313" y="253.921875"/>
<use xlink:href="#glyph-0-16" x="228.458594" y="253.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-3" x="258.265625" y="253.921875"/>
<use xlink:href="#glyph-0-4" x="263.865625" y="253.921875"/>
<use xlink:href="#glyph-0-12" x="266.353906" y="253.921875"/>
<use xlink:href="#glyph-0-13" x="272.582813" y="253.921875"/>
<use xlink:href="#glyph-0-10" x="278.811719" y="253.921875"/>
<use xlink:href="#glyph-0-18" x="285.040625" y="253.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-8" x="303.332031" y="253.921875"/>
<use xlink:href="#glyph-0-16" x="308.932031" y="253.921875"/>
<use xlink:href="#glyph-0-12" x="315.160938" y="253.921875"/>
<use xlink:href="#glyph-0-19" x="321.389844" y="253.921875"/>
<use xlink:href="#glyph-0-20" x="329.478125" y="253.921875"/>
<use xlink:href="#glyph-0-6" x="332.589844" y="253.921875"/>
<use xlink:href="#glyph-0-4" x="338.81875" y="253.921875"/>
<use xlink:href="#glyph-0-4" x="341.307031" y="253.921875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="125.308594" y="269.929688"/>
<use xlink:href="#glyph-1-1" x="129.198242" y="269.929688"/>
<use xlink:href="#glyph-1-2" x="136.198242" y="269.929688"/>
<use xlink:href="#glyph-1-3" x="140.087891" y="269.929688"/>
<use xlink:href="#glyph-1-4" x="147.874023" y="269.929688"/>
<use xlink:href="#glyph-1-5" x="150.984375" y="269.929688"/>
<use xlink:href="#glyph-1-0" x="158.770508" y="269.929688"/>
<use xlink:href="#glyph-1-6" x="162.660156" y="269.929688"/>
<use xlink:href="#glyph-1-7" x="167.322266" y="269.929688"/>
<use xlink:href="#glyph-1-8" x="175.108398" y="269.929688"/>
<use xlink:href="#glyph-1-9" x="182.894531" y="269.929688"/>
<use xlink:href="#glyph-1-10" x="187.556641" y="269.929688"/>
<use xlink:href="#glyph-1-7" x="197.666992" y="269.929688"/>
<use xlink:href="#glyph-1-11" x="205.453125" y="269.929688"/>
<use xlink:href="#glyph-1-2" x="213.239258" y="269.929688"/>
<use xlink:href="#glyph-1-12" x="217.128906" y="269.929688"/>
<use xlink:href="#glyph-1-7" x="224.915039" y="269.929688"/>
<use xlink:href="#glyph-1-6" x="232.701172" y="269.929688"/>
<use xlink:href="#glyph-1-3" x="237.363281" y="269.929688"/>
<use xlink:href="#glyph-1-2" x="245.149414" y="269.929688"/>
<use xlink:href="#glyph-1-13" x="249.039062" y="269.929688"/>
<use xlink:href="#glyph-1-14" x="256.039062" y="269.929688"/>
<use xlink:href="#glyph-1-7" x="263.825195" y="269.929688"/>
<use xlink:href="#glyph-1-15" x="271.611328" y="269.929688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="17.015625" y="175.132812"/>
<use xlink:href="#glyph-2-1" x="17.015625" y="168.132812"/>
<use xlink:href="#glyph-2-2" x="17.015625" y="160.34668"/>
<use xlink:href="#glyph-2-3" x="17.015625" y="152.560547"/>
<use xlink:href="#glyph-2-4" x="17.015625" y="144.774414"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 13.121094 62.457031 L 388.46875 62.457031 L 388.46875 6.976562 L 13.121094 6.976562 Z M 13.121094 62.457031 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-10" x="20.09375" y="39.734375"/>
<use xlink:href="#glyph-1-7" x="30.204102" y="39.734375"/>
<use xlink:href="#glyph-1-11" x="37.990234" y="39.734375"/>
<use xlink:href="#glyph-1-2" x="45.776367" y="39.734375"/>
<use xlink:href="#glyph-1-12" x="49.666016" y="39.734375"/>
<use xlink:href="#glyph-1-7" x="57.452148" y="39.734375"/>
<use xlink:href="#glyph-1-6" x="65.238281" y="39.734375"/>
<use xlink:href="#glyph-1-3" x="69.900391" y="39.734375"/>
<use xlink:href="#glyph-1-2" x="77.686523" y="39.734375"/>
<use xlink:href="#glyph-1-13" x="81.576172" y="39.734375"/>
<use xlink:href="#glyph-1-14" x="88.576172" y="39.734375"/>
<use xlink:href="#glyph-1-7" x="96.362305" y="39.734375"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 111.121094 31.226562 L 128.402344 31.226562 L 128.402344 13.945312 L 111.121094 13.945312 Z M 111.121094 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 111.832031 30.519531 L 127.695312 30.519531 L 127.695312 14.65625 L 111.832031 14.65625 Z M 111.832031 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 111.121094 55.480469 L 128.402344 55.480469 L 128.402344 38.199219 L 111.121094 38.199219 Z M 111.121094 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 111.832031 54.773438 L 127.695312 54.773438 L 127.695312 38.910156 L 111.832031 38.910156 Z M 111.832031 54.773438 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 212.082031 31.226562 L 229.363281 31.226562 L 229.363281 13.945312 L 212.082031 13.945312 Z M 212.082031 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 212.792969 30.519531 L 228.65625 30.519531 L 228.65625 14.65625 L 212.792969 14.65625 Z M 212.792969 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 212.082031 55.480469 L 229.363281 55.480469 L 229.363281 38.199219 L 212.082031 38.199219 Z M 212.082031 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 212.792969 54.773438 L 228.65625 54.773438 L 228.65625 38.910156 L 212.792969 38.910156 Z M 212.792969 54.773438 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 275.683594 31.226562 L 292.964844 31.226562 L 292.964844 13.945312 L 275.683594 13.945312 Z M 275.683594 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 276.394531 30.519531 L 292.257812 30.519531 L 292.257812 14.65625 L 276.394531 14.65625 Z M 276.394531 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 275.683594 55.480469 L 292.964844 55.480469 L 292.964844 38.199219 L 275.683594 38.199219 Z M 275.683594 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 276.394531 54.773438 L 292.257812 54.773438 L 292.257812 38.910156 L 276.394531 38.910156 Z M 276.394531 54.773438 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-14" x="135.375" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="141.603906" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="145.333594" y="26.605469"/>
<use xlink:href="#glyph-0-15" x="151.5625" y="26.605469"/>
<use xlink:href="#glyph-0-5" x="157.1625" y="26.605469"/>
<use xlink:href="#glyph-0-16" x="163.391406" y="26.605469"/>
<use xlink:href="#glyph-0-11" x="169.620312" y="26.605469"/>
<use xlink:href="#glyph-0-3" x="172.732031" y="26.605469"/>
<use xlink:href="#glyph-0-4" x="178.332031" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="180.820312" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="187.049219" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="193.278125" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="199.507031" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-3" x="135.375" y="50.859375"/>
<use xlink:href="#glyph-0-4" x="140.975" y="50.859375"/>
<use xlink:href="#glyph-0-5" x="143.463281" y="50.859375"/>
<use xlink:href="#glyph-0-6" x="149.692187" y="50.859375"/>
<use xlink:href="#glyph-0-7" x="155.921094" y="50.859375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-3" x="236.335938" y="26.605469"/>
<use xlink:href="#glyph-0-4" x="241.935937" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="244.424219" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="250.653125" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="256.882031" y="26.605469"/>
<use xlink:href="#glyph-0-18" x="263.110938" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-7" x="236.335938" y="50.859375"/>
<use xlink:href="#glyph-0-6" x="240.065625" y="50.859375"/>
<use xlink:href="#glyph-0-17" x="246.294531" y="50.859375"/>
<use xlink:href="#glyph-0-16" x="248.782813" y="50.859375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-8" x="299.9375" y="26.605469"/>
<use xlink:href="#glyph-0-3" x="305.5375" y="26.605469"/>
<use xlink:href="#glyph-0-6" x="311.1375" y="26.605469"/>
<use xlink:href="#glyph-0-9" x="317.366406" y="26.605469"/>
<use xlink:href="#glyph-0-9" x="320.478125" y="26.605469"/>
<use xlink:href="#glyph-0-5" x="323.589844" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="329.81875" y="26.605469"/>
<use xlink:href="#glyph-0-5" x="333.548438" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="339.777344" y="26.605469"/>
<use xlink:href="#glyph-0-11" x="346.00625" y="26.605469"/>
<use xlink:href="#glyph-0-3" x="349.117969" y="26.605469"/>
<use xlink:href="#glyph-0-4" x="354.717969" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="357.20625" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="363.435156" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="369.664063" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="375.892969" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-8" x="299.9375" y="50.859375"/>
<use xlink:href="#glyph-0-16" x="305.5375" y="50.859375"/>
<use xlink:href="#glyph-0-12" x="311.766406" y="50.859375"/>
<use xlink:href="#glyph-0-19" x="317.995313" y="50.859375"/>
<use xlink:href="#glyph-0-20" x="326.083594" y="50.859375"/>
<use xlink:href="#glyph-0-6" x="329.195313" y="50.859375"/>
<use xlink:href="#glyph-0-4" x="335.424219" y="50.859375"/>
<use xlink:href="#glyph-0-4" x="337.9125" y="50.859375"/>
</g>
</svg>

After

(image error) Size: 53 KiB

View File

@ -0,0 +1,319 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="295" viewBox="0 0 360 295">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
</g>
<g id="glyph-0-1">
<path d="M 1.390625 -2 C 1.453125 -1.4375 1.710938 -1.046875 2.171875 -0.828125 C 2.398438 -0.722656 2.664062 -0.671875 2.96875 -0.671875 C 3.550781 -0.671875 3.984375 -0.851562 4.265625 -1.21875 C 4.546875 -1.59375 4.6875 -2.007812 4.6875 -2.46875 C 4.6875 -3.007812 4.519531 -3.425781 4.1875 -3.71875 C 3.851562 -4.019531 3.457031 -4.171875 3 -4.171875 C 2.65625 -4.171875 2.359375 -4.101562 2.109375 -3.96875 C 1.867188 -3.84375 1.664062 -3.664062 1.5 -3.4375 L 0.640625 -3.484375 L 1.234375 -7.703125 L 5.3125 -7.703125 L 5.3125 -6.75 L 1.984375 -6.75 L 1.640625 -4.578125 C 1.828125 -4.710938 2.003906 -4.816406 2.171875 -4.890625 C 2.460938 -5.003906 2.796875 -5.0625 3.171875 -5.0625 C 3.890625 -5.0625 4.5 -4.828125 5 -4.359375 C 5.5 -3.898438 5.75 -3.316406 5.75 -2.609375 C 5.75 -1.867188 5.519531 -1.210938 5.0625 -0.640625 C 4.601562 -0.078125 3.875 0.203125 2.875 0.203125 C 2.238281 0.203125 1.675781 0.0234375 1.1875 -0.328125 C 0.695312 -0.691406 0.421875 -1.25 0.359375 -2 Z M 1.390625 -2 "/>
</g>
<g id="glyph-0-2">
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
</g>
<g id="glyph-0-3">
<path d="M 0.953125 -1.1875 L 2.09375 -1.1875 L 2.09375 0 L 0.953125 0 Z M 0.953125 -1.1875 "/>
</g>
<g id="glyph-0-4">
<path d="M 5.859375 -7.703125 L 5.859375 -6.84375 C 5.609375 -6.601562 5.273438 -6.175781 4.859375 -5.5625 C 4.441406 -4.957031 4.070312 -4.304688 3.75 -3.609375 C 3.425781 -2.929688 3.1875 -2.3125 3.03125 -1.75 C 2.914062 -1.382812 2.773438 -0.800781 2.609375 0 L 1.53125 0 C 1.769531 -1.5 2.316406 -2.988281 3.171875 -4.46875 C 3.671875 -5.332031 4.195312 -6.082031 4.75 -6.71875 L 0.40625 -6.71875 L 0.40625 -7.703125 Z M 5.859375 -7.703125 "/>
</g>
<g id="glyph-0-5">
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
</g>
<g id="glyph-0-6">
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
</g>
<g id="glyph-0-7">
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
</g>
<g id="glyph-0-8">
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-9">
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
</g>
<g id="glyph-0-10">
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-11">
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
</g>
<g id="glyph-0-12">
</g>
<g id="glyph-0-13">
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
</g>
<g id="glyph-0-14">
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
</g>
<g id="glyph-0-15">
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-16">
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
</g>
<g id="glyph-0-17">
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
</g>
<g id="glyph-0-18">
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-19">
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
</g>
<g id="glyph-0-20">
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
</g>
<g id="glyph-0-21">
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
</g>
<g id="glyph-0-22">
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
</g>
<g id="glyph-0-23">
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
</g>
<g id="glyph-1-0">
<path d="M 0.203125 -7.328125 L 1.796875 -7.328125 L 3.484375 -4.75 L 5.1875 -7.328125 L 6.671875 -7.28125 L 4.21875 -3.75 L 6.78125 0 L 5.21875 0 L 3.390625 -2.75 L 1.640625 0 L 0.078125 0 L 2.65625 -3.75 Z M 0.203125 -7.328125 "/>
</g>
<g id="glyph-1-1">
<path d="M 1.46875 -7.328125 L 2.875 -1.546875 L 4.3125 -7.328125 L 5.6875 -7.328125 L 7.125 -1.59375 L 8.625 -7.328125 L 9.84375 -7.328125 L 7.71875 0 L 6.453125 0 L 4.953125 -5.671875 L 3.515625 0 L 2.234375 0 L 0.125 -7.328125 Z M 1.46875 -7.328125 "/>
</g>
<g id="glyph-1-2">
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
</g>
<g id="glyph-1-3">
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-4">
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
</g>
<g id="glyph-1-5">
<path d="M 0.90625 -10.078125 L 2.140625 -10.078125 L 2.140625 -6.328125 C 2.429688 -6.703125 2.691406 -6.960938 2.921875 -7.109375 C 3.316406 -7.367188 3.8125 -7.5 4.40625 -7.5 C 5.46875 -7.5 6.1875 -7.128906 6.5625 -6.390625 C 6.769531 -5.984375 6.875 -5.421875 6.875 -4.703125 L 6.875 0 L 5.609375 0 L 5.609375 -4.609375 C 5.609375 -5.148438 5.539062 -5.546875 5.40625 -5.796875 C 5.175781 -6.203125 4.753906 -6.40625 4.140625 -6.40625 C 3.628906 -6.40625 3.164062 -6.226562 2.75 -5.875 C 2.34375 -5.519531 2.140625 -4.859375 2.140625 -3.890625 L 2.140625 0 L 0.90625 0 Z M 0.90625 -10.078125 "/>
</g>
<g id="glyph-1-6">
<path d="M 0.9375 -7.328125 L 2.109375 -7.328125 L 2.109375 -6.0625 C 2.203125 -6.300781 2.4375 -6.597656 2.8125 -6.953125 C 3.1875 -7.304688 3.617188 -7.484375 4.109375 -7.484375 C 4.128906 -7.484375 4.164062 -7.476562 4.21875 -7.46875 C 4.269531 -7.46875 4.363281 -7.460938 4.5 -7.453125 L 4.5 -6.15625 C 4.425781 -6.164062 4.359375 -6.171875 4.296875 -6.171875 C 4.234375 -6.179688 4.164062 -6.1875 4.09375 -6.1875 C 3.476562 -6.1875 3.003906 -5.984375 2.671875 -5.578125 C 2.335938 -5.179688 2.171875 -4.726562 2.171875 -4.21875 L 2.171875 0 L 0.9375 0 Z M 0.9375 -7.328125 "/>
</g>
<g id="glyph-1-7">
<path d="M 0 1.75 L 0 1.0625 L 7.78125 1.0625 L 7.78125 1.75 Z M 0 1.75 "/>
</g>
<g id="glyph-1-8">
<path d="M 5.46875 -7.328125 L 6.84375 -7.328125 C 6.664062 -6.859375 6.28125 -5.785156 5.6875 -4.109375 C 5.238281 -2.847656 4.863281 -1.820312 4.5625 -1.03125 C 3.851562 0.832031 3.351562 1.96875 3.0625 2.375 C 2.769531 2.789062 2.265625 3 1.546875 3 C 1.378906 3 1.25 2.988281 1.15625 2.96875 C 1.0625 2.957031 0.945312 2.9375 0.8125 2.90625 L 0.8125 1.78125 C 1.019531 1.84375 1.171875 1.878906 1.265625 1.890625 C 1.367188 1.910156 1.457031 1.921875 1.53125 1.921875 C 1.75 1.921875 1.910156 1.878906 2.015625 1.796875 C 2.128906 1.722656 2.222656 1.632812 2.296875 1.53125 C 2.316406 1.488281 2.394531 1.296875 2.53125 0.953125 C 2.675781 0.617188 2.78125 0.375 2.84375 0.21875 L 0.140625 -7.328125 L 1.53125 -7.328125 L 3.5 -1.359375 Z M 3.5 -7.5 Z M 3.5 -7.5 "/>
</g>
<g id="glyph-1-9">
<path d="M 4 -0.828125 C 4.570312 -0.828125 5.046875 -1.066406 5.421875 -1.546875 C 5.804688 -2.023438 6 -2.742188 6 -3.703125 C 6 -4.285156 5.914062 -4.785156 5.75 -5.203125 C 5.425781 -6.015625 4.84375 -6.421875 4 -6.421875 C 3.144531 -6.421875 2.5625 -5.992188 2.25 -5.140625 C 2.070312 -4.679688 1.984375 -4.101562 1.984375 -3.40625 C 1.984375 -2.84375 2.070312 -2.363281 2.25 -1.96875 C 2.5625 -1.207031 3.144531 -0.828125 4 -0.828125 Z M 0.8125 -7.28125 L 2 -7.28125 L 2 -6.3125 C 2.25 -6.644531 2.519531 -6.90625 2.8125 -7.09375 C 3.226562 -7.363281 3.710938 -7.5 4.265625 -7.5 C 5.097656 -7.5 5.800781 -7.179688 6.375 -6.546875 C 6.957031 -5.910156 7.25 -5.003906 7.25 -3.828125 C 7.25 -2.222656 6.832031 -1.082031 6 -0.40625 C 5.46875 0.0273438 4.851562 0.25 4.15625 0.25 C 3.601562 0.25 3.140625 0.128906 2.765625 -0.109375 C 2.546875 -0.253906 2.300781 -0.492188 2.03125 -0.828125 L 2.03125 2.921875 L 0.8125 2.921875 Z M 0.8125 -7.28125 "/>
</g>
<g id="glyph-2-0">
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
</g>
<g id="glyph-2-1">
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
</g>
<g id="glyph-2-2">
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
</g>
<g id="glyph-2-3">
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
</g>
<g id="glyph-2-4">
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 54.792969 76.402344 L 353.027344 76.402344 L 353.027344 254.613281 L 54.792969 254.613281 Z M 54.792969 76.402344 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 54.792969 246 L 353.027344 246 L 353.027344 247 L 54.792969 247 Z M 54.792969 246 "/>
</clipPath>
<clipPath id="clip-2">
<path clip-rule="nonzero" d="M 54.792969 187 L 353.027344 187 L 353.027344 189 L 54.792969 189 Z M 54.792969 187 "/>
</clipPath>
<clipPath id="clip-3">
<path clip-rule="nonzero" d="M 54.792969 128 L 353.027344 128 L 353.027344 130 L 54.792969 130 Z M 54.792969 128 "/>
</clipPath>
<clipPath id="clip-4">
<path clip-rule="nonzero" d="M 128 76.402344 L 129 76.402344 L 129 254.613281 L 128 254.613281 Z M 128 76.402344 "/>
</clipPath>
<clipPath id="clip-5">
<path clip-rule="nonzero" d="M 203 76.402344 L 205 76.402344 L 205 254.613281 L 203 254.613281 Z M 203 76.402344 "/>
</clipPath>
<clipPath id="clip-6">
<path clip-rule="nonzero" d="M 278 76.402344 L 280 76.402344 L 280 254.613281 L 278 254.613281 Z M 278 76.402344 "/>
</clipPath>
<clipPath id="clip-7">
<path clip-rule="nonzero" d="M 54.792969 76.402344 L 353.027344 76.402344 L 353.027344 254.613281 L 54.792969 254.613281 Z M 54.792969 76.402344 "/>
</clipPath>
</defs>
<rect x="-36" y="-29.5" width="432" height="354" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<rect x="-36" y="-29.5" width="432" height="354" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 295 L 360 295 L 360 0 L 0 0 Z M 0 295 "/>
<g clip-path="url(#clip-0)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 54.792969 254.613281 L 353.027344 254.613281 L 353.027344 76.402344 L 54.792969 76.402344 Z M 54.792969 254.613281 "/>
</g>
<g clip-path="url(#clip-1)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 54.792969 246.511719 L 353.027344 246.511719 "/>
</g>
<g clip-path="url(#clip-2)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 54.792969 187.898438 L 353.027344 187.898438 "/>
</g>
<g clip-path="url(#clip-3)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 54.792969 129.285156 L 353.027344 129.285156 "/>
</g>
<g clip-path="url(#clip-4)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 128.597656 254.613281 L 128.597656 76.402344 "/>
</g>
<g clip-path="url(#clip-5)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 203.910156 254.613281 L 203.910156 76.402344 "/>
</g>
<g clip-path="url(#clip-6)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 279.21875 254.613281 L 279.21875 76.402344 "/>
</g>
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 68.347656 115.804688 L 339.46875 115.804688 L 339.46875 84.503906 L 68.347656 84.503906 Z M 68.347656 115.804688 "/>
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 68.347656 182.039062 L 339.46875 182.039062 L 339.46875 115.804688 L 68.347656 115.804688 Z M 68.347656 182.039062 "/>
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 68.347656 191.296875 L 339.46875 191.296875 L 339.46875 182.035156 L 68.347656 182.035156 Z M 68.347656 191.296875 "/>
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 68.347656 209.703125 L 339.46875 209.703125 L 339.46875 191.296875 L 68.347656 191.296875 Z M 68.347656 209.703125 "/>
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 68.347656 246.160156 L 339.46875 246.160156 L 339.46875 209.703125 L 68.347656 209.703125 Z M 68.347656 246.160156 "/>
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 68.347656 246.511719 L 339.46875 246.511719 L 339.46875 246.160156 L 68.347656 246.160156 Z M 68.347656 246.511719 "/>
<g clip-path="url(#clip-7)">
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 54.792969 254.613281 L 353.027344 254.613281 L 353.027344 76.402344 L 54.792969 76.402344 Z M 54.792969 254.613281 "/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="42.285156" y="250.53125"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="29.828125" y="191.914062"/>
<use xlink:href="#glyph-0-0" x="36.057031" y="191.914062"/>
<use xlink:href="#glyph-0-0" x="42.285938" y="191.914062"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="23.601562" y="133.300781"/>
<use xlink:href="#glyph-0-0" x="29.830469" y="133.300781"/>
<use xlink:href="#glyph-0-0" x="36.059375" y="133.300781"/>
<use xlink:href="#glyph-0-0" x="42.288281" y="133.300781"/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 51.304688 246.511719 L 54.792969 246.511719 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 51.304688 187.898438 L 54.792969 187.898438 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 51.304688 129.285156 L 54.792969 129.285156 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 128.597656 258.101562 L 128.597656 254.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 203.910156 258.101562 L 203.910156 254.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 279.21875 258.101562 L 279.21875 254.613281 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="117.699219" y="268.921875"/>
<use xlink:href="#glyph-0-3" x="123.928125" y="268.921875"/>
<use xlink:href="#glyph-0-4" x="127.039844" y="268.921875"/>
<use xlink:href="#glyph-0-1" x="133.26875" y="268.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="193.011719" y="268.921875"/>
<use xlink:href="#glyph-0-3" x="199.240625" y="268.921875"/>
<use xlink:href="#glyph-0-0" x="202.352344" y="268.921875"/>
<use xlink:href="#glyph-0-0" x="208.58125" y="268.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="268.320312" y="268.921875"/>
<use xlink:href="#glyph-0-3" x="274.549219" y="268.921875"/>
<use xlink:href="#glyph-0-5" x="277.660938" y="268.921875"/>
<use xlink:href="#glyph-0-1" x="283.889844" y="268.921875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="200.410156" y="284.929688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="17.015625" y="182.632812"/>
<use xlink:href="#glyph-2-1" x="17.015625" y="175.632812"/>
<use xlink:href="#glyph-2-2" x="17.015625" y="167.84668"/>
<use xlink:href="#glyph-2-3" x="17.015625" y="160.060547"/>
<use xlink:href="#glyph-2-4" x="17.015625" y="152.274414"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 16.234375 62.457031 L 391.582031 62.457031 L 391.582031 6.976562 L 16.234375 6.976562 Z M 16.234375 62.457031 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-1" x="23.207031" y="39.734375"/>
<use xlink:href="#glyph-1-2" x="33.317383" y="39.734375"/>
<use xlink:href="#glyph-1-3" x="41.103516" y="39.734375"/>
<use xlink:href="#glyph-1-4" x="48.889648" y="39.734375"/>
<use xlink:href="#glyph-1-5" x="52.779297" y="39.734375"/>
<use xlink:href="#glyph-1-2" x="60.56543" y="39.734375"/>
<use xlink:href="#glyph-1-6" x="68.351562" y="39.734375"/>
<use xlink:href="#glyph-1-7" x="73.013672" y="39.734375"/>
<use xlink:href="#glyph-1-4" x="80.799805" y="39.734375"/>
<use xlink:href="#glyph-1-8" x="84.689453" y="39.734375"/>
<use xlink:href="#glyph-1-9" x="91.689453" y="39.734375"/>
<use xlink:href="#glyph-1-2" x="99.475586" y="39.734375"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 114.238281 31.226562 L 131.519531 31.226562 L 131.519531 13.945312 L 114.238281 13.945312 Z M 114.238281 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 114.945312 30.519531 L 130.808594 30.519531 L 130.808594 14.65625 L 114.945312 14.65625 Z M 114.945312 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 114.238281 55.480469 L 131.519531 55.480469 L 131.519531 38.199219 L 114.238281 38.199219 Z M 114.238281 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 114.945312 54.773438 L 130.808594 54.773438 L 130.808594 38.910156 L 114.945312 38.910156 Z M 114.945312 54.773438 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 215.195312 31.226562 L 232.476562 31.226562 L 232.476562 13.945312 L 215.195312 13.945312 Z M 215.195312 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 215.90625 30.519531 L 231.769531 30.519531 L 231.769531 14.65625 L 215.90625 14.65625 Z M 215.90625 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 215.195312 55.480469 L 232.476562 55.480469 L 232.476562 38.199219 L 215.195312 38.199219 Z M 215.195312 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 215.90625 54.773438 L 231.769531 54.773438 L 231.769531 38.910156 L 215.90625 38.910156 Z M 215.90625 54.773438 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 278.800781 31.226562 L 296.082031 31.226562 L 296.082031 13.945312 L 278.800781 13.945312 Z M 278.800781 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 279.507812 30.519531 L 295.371094 30.519531 L 295.371094 14.65625 L 279.507812 14.65625 Z M 279.507812 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 278.800781 55.480469 L 296.082031 55.480469 L 296.082031 38.199219 L 278.800781 38.199219 Z M 278.800781 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 279.507812 54.773438 L 295.371094 54.773438 L 295.371094 38.910156 L 279.507812 38.910156 Z M 279.507812 54.773438 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-6" x="138.492188" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="144.721094" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="148.450781" y="26.605469"/>
<use xlink:href="#glyph-0-9" x="154.679688" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="160.279687" y="26.605469"/>
<use xlink:href="#glyph-0-11" x="166.508594" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="172.7375" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="175.849219" y="26.605469"/>
<use xlink:href="#glyph-0-14" x="181.449219" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="183.9375" y="26.605469"/>
<use xlink:href="#glyph-0-15" x="190.166406" y="26.605469"/>
<use xlink:href="#glyph-0-16" x="196.395312" y="26.605469"/>
<use xlink:href="#glyph-0-17" x="202.624219" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-13" x="138.492188" y="50.859375"/>
<use xlink:href="#glyph-0-14" x="144.092187" y="50.859375"/>
<use xlink:href="#glyph-0-10" x="146.580469" y="50.859375"/>
<use xlink:href="#glyph-0-18" x="152.809375" y="50.859375"/>
<use xlink:href="#glyph-0-7" x="159.038281" y="50.859375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-13" x="239.449219" y="26.605469"/>
<use xlink:href="#glyph-0-14" x="245.049219" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="247.5375" y="26.605469"/>
<use xlink:href="#glyph-0-15" x="253.766406" y="26.605469"/>
<use xlink:href="#glyph-0-16" x="259.995313" y="26.605469"/>
<use xlink:href="#glyph-0-19" x="266.224219" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-7" x="239.449219" y="50.859375"/>
<use xlink:href="#glyph-0-18" x="243.178906" y="50.859375"/>
<use xlink:href="#glyph-0-20" x="249.407813" y="50.859375"/>
<use xlink:href="#glyph-0-11" x="251.896094" y="50.859375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-17" x="303.054688" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="308.654688" y="26.605469"/>
<use xlink:href="#glyph-0-18" x="314.254688" y="26.605469"/>
<use xlink:href="#glyph-0-21" x="320.483594" y="26.605469"/>
<use xlink:href="#glyph-0-21" x="323.595313" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="326.707031" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="332.935938" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="336.665625" y="26.605469"/>
<use xlink:href="#glyph-0-16" x="342.894531" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="349.123438" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="352.235156" y="26.605469"/>
<use xlink:href="#glyph-0-14" x="357.835156" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="360.323438" y="26.605469"/>
<use xlink:href="#glyph-0-15" x="366.552344" y="26.605469"/>
<use xlink:href="#glyph-0-16" x="372.78125" y="26.605469"/>
<use xlink:href="#glyph-0-17" x="379.010156" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-17" x="303.054688" y="50.859375"/>
<use xlink:href="#glyph-0-11" x="308.654688" y="50.859375"/>
<use xlink:href="#glyph-0-8" x="314.883594" y="50.859375"/>
<use xlink:href="#glyph-0-22" x="321.1125" y="50.859375"/>
<use xlink:href="#glyph-0-23" x="329.200781" y="50.859375"/>
<use xlink:href="#glyph-0-18" x="332.3125" y="50.859375"/>
<use xlink:href="#glyph-0-14" x="338.541406" y="50.859375"/>
<use xlink:href="#glyph-0-14" x="341.029688" y="50.859375"/>
</g>
</svg>

After

(image error) Size: 44 KiB

View File

@ -0,0 +1,278 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="259" viewBox="0 0 360 259">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
</g>
<g id="glyph-0-1">
<path d="M 1.390625 -2 C 1.453125 -1.4375 1.710938 -1.046875 2.171875 -0.828125 C 2.398438 -0.722656 2.664062 -0.671875 2.96875 -0.671875 C 3.550781 -0.671875 3.984375 -0.851562 4.265625 -1.21875 C 4.546875 -1.59375 4.6875 -2.007812 4.6875 -2.46875 C 4.6875 -3.007812 4.519531 -3.425781 4.1875 -3.71875 C 3.851562 -4.019531 3.457031 -4.171875 3 -4.171875 C 2.65625 -4.171875 2.359375 -4.101562 2.109375 -3.96875 C 1.867188 -3.84375 1.664062 -3.664062 1.5 -3.4375 L 0.640625 -3.484375 L 1.234375 -7.703125 L 5.3125 -7.703125 L 5.3125 -6.75 L 1.984375 -6.75 L 1.640625 -4.578125 C 1.828125 -4.710938 2.003906 -4.816406 2.171875 -4.890625 C 2.460938 -5.003906 2.796875 -5.0625 3.171875 -5.0625 C 3.890625 -5.0625 4.5 -4.828125 5 -4.359375 C 5.5 -3.898438 5.75 -3.316406 5.75 -2.609375 C 5.75 -1.867188 5.519531 -1.210938 5.0625 -0.640625 C 4.601562 -0.078125 3.875 0.203125 2.875 0.203125 C 2.238281 0.203125 1.675781 0.0234375 1.1875 -0.328125 C 0.695312 -0.691406 0.421875 -1.25 0.359375 -2 Z M 1.390625 -2 "/>
</g>
<g id="glyph-0-2">
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
</g>
<g id="glyph-0-3">
<path d="M 0.953125 -1.1875 L 2.09375 -1.1875 L 2.09375 0 L 0.953125 0 Z M 0.953125 -1.1875 "/>
</g>
<g id="glyph-0-4">
<path d="M 5.859375 -7.703125 L 5.859375 -6.84375 C 5.609375 -6.601562 5.273438 -6.175781 4.859375 -5.5625 C 4.441406 -4.957031 4.070312 -4.304688 3.75 -3.609375 C 3.425781 -2.929688 3.1875 -2.3125 3.03125 -1.75 C 2.914062 -1.382812 2.773438 -0.800781 2.609375 0 L 1.53125 0 C 1.769531 -1.5 2.316406 -2.988281 3.171875 -4.46875 C 3.671875 -5.332031 4.195312 -6.082031 4.75 -6.71875 L 0.40625 -6.71875 L 0.40625 -7.703125 Z M 5.859375 -7.703125 "/>
</g>
<g id="glyph-0-5">
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
</g>
<g id="glyph-0-6">
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
</g>
<g id="glyph-0-7">
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
</g>
<g id="glyph-0-8">
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-9">
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
</g>
<g id="glyph-0-10">
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
</g>
<g id="glyph-0-11">
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-12">
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
</g>
<g id="glyph-0-13">
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
</g>
<g id="glyph-0-14">
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-15">
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
</g>
<g id="glyph-0-16">
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
</g>
<g id="glyph-0-17">
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
</g>
<g id="glyph-0-18">
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
</g>
<g id="glyph-0-19">
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
</g>
<g id="glyph-0-20">
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
</g>
<g id="glyph-0-21">
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-22">
</g>
<g id="glyph-0-23">
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
</g>
<g id="glyph-1-0">
<path d="M 0.203125 -7.328125 L 1.796875 -7.328125 L 3.484375 -4.75 L 5.1875 -7.328125 L 6.671875 -7.28125 L 4.21875 -3.75 L 6.78125 0 L 5.21875 0 L 3.390625 -2.75 L 1.640625 0 L 0.078125 0 L 2.65625 -3.75 Z M 0.203125 -7.328125 "/>
</g>
<g id="glyph-2-0">
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
</g>
<g id="glyph-2-1">
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
</g>
<g id="glyph-2-2">
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
</g>
<g id="glyph-2-3">
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
</g>
<g id="glyph-2-4">
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 54.792969 76.402344 L 353.027344 76.402344 L 353.027344 218.613281 L 54.792969 218.613281 Z M 54.792969 76.402344 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 54.792969 211 L 353.027344 211 L 353.027344 213 L 54.792969 213 Z M 54.792969 211 "/>
</clipPath>
<clipPath id="clip-2">
<path clip-rule="nonzero" d="M 54.792969 165 L 353.027344 165 L 353.027344 166 L 54.792969 166 Z M 54.792969 165 "/>
</clipPath>
<clipPath id="clip-3">
<path clip-rule="nonzero" d="M 54.792969 118 L 353.027344 118 L 353.027344 119 L 54.792969 119 Z M 54.792969 118 "/>
</clipPath>
<clipPath id="clip-4">
<path clip-rule="nonzero" d="M 128 76.402344 L 129 76.402344 L 129 218.613281 L 128 218.613281 Z M 128 76.402344 "/>
</clipPath>
<clipPath id="clip-5">
<path clip-rule="nonzero" d="M 203 76.402344 L 205 76.402344 L 205 218.613281 L 203 218.613281 Z M 203 76.402344 "/>
</clipPath>
<clipPath id="clip-6">
<path clip-rule="nonzero" d="M 278 76.402344 L 280 76.402344 L 280 218.613281 L 278 218.613281 Z M 278 76.402344 "/>
</clipPath>
<clipPath id="clip-7">
<path clip-rule="nonzero" d="M 54.792969 76.402344 L 353.027344 76.402344 L 353.027344 218.613281 L 54.792969 218.613281 Z M 54.792969 76.402344 "/>
</clipPath>
</defs>
<rect x="-36" y="-25.9" width="432" height="310.8" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<rect x="-36" y="-25.9" width="432" height="310.8" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 259 L 360 259 L 360 0 L 0 0 Z M 0 259 "/>
<g clip-path="url(#clip-0)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 54.792969 218.613281 L 353.027344 218.613281 L 353.027344 76.402344 L 54.792969 76.402344 Z M 54.792969 218.613281 "/>
</g>
<g clip-path="url(#clip-1)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 54.792969 212.148438 L 353.027344 212.148438 "/>
</g>
<g clip-path="url(#clip-2)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 54.792969 165.375 L 353.027344 165.375 "/>
</g>
<g clip-path="url(#clip-3)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 54.792969 118.601562 L 353.027344 118.601562 "/>
</g>
<g clip-path="url(#clip-4)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 128.597656 218.613281 L 128.597656 76.402344 "/>
</g>
<g clip-path="url(#clip-5)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 203.910156 218.613281 L 203.910156 76.402344 "/>
</g>
<g clip-path="url(#clip-6)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 279.21875 218.613281 L 279.21875 76.402344 "/>
</g>
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 68.347656 83.148438 L 339.46875 83.148438 L 339.46875 82.867188 L 68.347656 82.867188 Z M 68.347656 83.148438 "/>
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 68.347656 90.539062 L 339.46875 90.539062 L 339.46875 83.148438 L 68.347656 83.148438 Z M 68.347656 90.539062 "/>
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 68.347656 105.226562 L 339.46875 105.226562 L 339.46875 90.539062 L 68.347656 90.539062 Z M 68.347656 105.226562 "/>
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 68.347656 130.203125 L 339.46875 130.203125 L 339.46875 105.226562 L 68.347656 105.226562 Z M 68.347656 130.203125 "/>
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 68.347656 159.296875 L 339.46875 159.296875 L 339.46875 130.203125 L 68.347656 130.203125 Z M 68.347656 159.296875 "/>
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 68.347656 212.148438 L 339.46875 212.148438 L 339.46875 159.292969 L 68.347656 159.292969 Z M 68.347656 212.148438 "/>
<g clip-path="url(#clip-7)">
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 54.792969 218.613281 L 353.027344 218.613281 L 353.027344 76.402344 L 54.792969 76.402344 Z M 54.792969 218.613281 "/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="42.285156" y="216.164062"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="29.828125" y="169.390625"/>
<use xlink:href="#glyph-0-0" x="36.057031" y="169.390625"/>
<use xlink:href="#glyph-0-0" x="42.285938" y="169.390625"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="23.601562" y="122.617188"/>
<use xlink:href="#glyph-0-0" x="29.830469" y="122.617188"/>
<use xlink:href="#glyph-0-0" x="36.059375" y="122.617188"/>
<use xlink:href="#glyph-0-0" x="42.288281" y="122.617188"/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 51.304688 212.148438 L 54.792969 212.148438 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 51.304688 165.375 L 54.792969 165.375 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 51.304688 118.601562 L 54.792969 118.601562 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 128.597656 222.101562 L 128.597656 218.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 203.910156 222.101562 L 203.910156 218.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 279.21875 222.101562 L 279.21875 218.613281 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="117.699219" y="232.921875"/>
<use xlink:href="#glyph-0-3" x="123.928125" y="232.921875"/>
<use xlink:href="#glyph-0-4" x="127.039844" y="232.921875"/>
<use xlink:href="#glyph-0-1" x="133.26875" y="232.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="193.011719" y="232.921875"/>
<use xlink:href="#glyph-0-3" x="199.240625" y="232.921875"/>
<use xlink:href="#glyph-0-0" x="202.352344" y="232.921875"/>
<use xlink:href="#glyph-0-0" x="208.58125" y="232.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="268.320312" y="232.921875"/>
<use xlink:href="#glyph-0-3" x="274.549219" y="232.921875"/>
<use xlink:href="#glyph-0-5" x="277.660938" y="232.921875"/>
<use xlink:href="#glyph-0-1" x="283.889844" y="232.921875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="200.410156" y="248.929688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="17.015625" y="164.632812"/>
<use xlink:href="#glyph-2-1" x="17.015625" y="157.632812"/>
<use xlink:href="#glyph-2-2" x="17.015625" y="149.84668"/>
<use xlink:href="#glyph-2-3" x="17.015625" y="142.060547"/>
<use xlink:href="#glyph-2-4" x="17.015625" y="134.274414"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 57.703125 62.457031 L 350.109375 62.457031 L 350.109375 6.976562 L 57.703125 6.976562 Z M 57.703125 62.457031 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 64.679688 31.226562 L 81.960938 31.226562 L 81.960938 13.945312 L 64.679688 13.945312 Z M 64.679688 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 65.386719 30.519531 L 81.25 30.519531 L 81.25 14.65625 L 65.386719 14.65625 Z M 65.386719 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 64.679688 55.480469 L 81.960938 55.480469 L 81.960938 38.199219 L 64.679688 38.199219 Z M 64.679688 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 65.386719 54.773438 L 81.25 54.773438 L 81.25 38.910156 L 65.386719 38.910156 Z M 65.386719 54.773438 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 136.371094 31.226562 L 153.652344 31.226562 L 153.652344 13.945312 L 136.371094 13.945312 Z M 136.371094 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 137.078125 30.519531 L 152.941406 30.519531 L 152.941406 14.65625 L 137.078125 14.65625 Z M 137.078125 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 136.371094 55.480469 L 153.652344 55.480469 L 153.652344 38.199219 L 136.371094 38.199219 Z M 136.371094 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 137.078125 54.773438 L 152.941406 54.773438 L 152.941406 38.910156 L 137.078125 38.910156 Z M 137.078125 54.773438 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 237.328125 31.226562 L 254.609375 31.226562 L 254.609375 13.945312 L 237.328125 13.945312 Z M 237.328125 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 238.039062 30.519531 L 253.902344 30.519531 L 253.902344 14.65625 L 238.039062 14.65625 Z M 238.039062 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 237.328125 55.480469 L 254.609375 55.480469 L 254.609375 38.199219 L 237.328125 38.199219 Z M 237.328125 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 238.039062 54.773438 L 253.902344 54.773438 L 253.902344 38.910156 L 238.039062 38.910156 Z M 238.039062 54.773438 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-6" x="88.933594" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="94.533594" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="100.7625" y="26.605469"/>
<use xlink:href="#glyph-0-9" x="106.991406" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="115.079687" y="26.605469"/>
<use xlink:href="#glyph-0-11" x="118.191406" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="124.420312" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="126.908594" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-13" x="88.933594" y="50.859375"/>
<use xlink:href="#glyph-0-12" x="94.533594" y="50.859375"/>
<use xlink:href="#glyph-0-8" x="97.021875" y="50.859375"/>
<use xlink:href="#glyph-0-14" x="103.250781" y="50.859375"/>
<use xlink:href="#glyph-0-15" x="109.479687" y="50.859375"/>
<use xlink:href="#glyph-0-16" x="115.708594" y="50.859375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-17" x="160.625" y="26.605469"/>
<use xlink:href="#glyph-0-11" x="164.354688" y="26.605469"/>
<use xlink:href="#glyph-0-18" x="170.583594" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="173.071875" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-19" x="160.625" y="50.859375"/>
<use xlink:href="#glyph-0-17" x="166.853906" y="50.859375"/>
<use xlink:href="#glyph-0-8" x="170.583594" y="50.859375"/>
<use xlink:href="#glyph-0-20" x="176.8125" y="50.859375"/>
<use xlink:href="#glyph-0-21" x="182.4125" y="50.859375"/>
<use xlink:href="#glyph-0-7" x="188.641406" y="50.859375"/>
<use xlink:href="#glyph-0-22" x="194.870312" y="50.859375"/>
<use xlink:href="#glyph-0-13" x="197.982031" y="50.859375"/>
<use xlink:href="#glyph-0-12" x="203.582031" y="50.859375"/>
<use xlink:href="#glyph-0-8" x="206.070312" y="50.859375"/>
<use xlink:href="#glyph-0-14" x="212.299219" y="50.859375"/>
<use xlink:href="#glyph-0-15" x="218.528125" y="50.859375"/>
<use xlink:href="#glyph-0-6" x="224.757031" y="50.859375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-6" x="261.582031" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="267.182031" y="26.605469"/>
<use xlink:href="#glyph-0-11" x="272.782031" y="26.605469"/>
<use xlink:href="#glyph-0-23" x="279.010938" y="26.605469"/>
<use xlink:href="#glyph-0-23" x="282.122656" y="26.605469"/>
<use xlink:href="#glyph-0-21" x="285.234375" y="26.605469"/>
<use xlink:href="#glyph-0-17" x="291.463281" y="26.605469"/>
<use xlink:href="#glyph-0-21" x="295.192969" y="26.605469"/>
<use xlink:href="#glyph-0-15" x="301.421875" y="26.605469"/>
<use xlink:href="#glyph-0-22" x="307.650781" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="310.7625" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="316.3625" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="318.850781" y="26.605469"/>
<use xlink:href="#glyph-0-14" x="325.079688" y="26.605469"/>
<use xlink:href="#glyph-0-15" x="331.308594" y="26.605469"/>
<use xlink:href="#glyph-0-6" x="337.5375" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-13" x="261.582031" y="50.859375"/>
<use xlink:href="#glyph-0-12" x="267.182031" y="50.859375"/>
<use xlink:href="#glyph-0-21" x="269.670313" y="50.859375"/>
<use xlink:href="#glyph-0-11" x="275.899219" y="50.859375"/>
<use xlink:href="#glyph-0-17" x="282.128125" y="50.859375"/>
</g>
</svg>

After

(image error) Size: 36 KiB

Binary file not shown.

After

(image error) Size: 49 KiB

View File

@ -0,0 +1,311 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="295" viewBox="0 0 360 295">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
</g>
<g id="glyph-0-1">
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
</g>
<g id="glyph-0-2">
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-3">
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
</g>
<g id="glyph-0-4">
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-5">
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
</g>
<g id="glyph-0-6">
</g>
<g id="glyph-0-7">
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
</g>
<g id="glyph-0-8">
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
</g>
<g id="glyph-0-9">
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-10">
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
</g>
<g id="glyph-0-11">
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
</g>
<g id="glyph-0-12">
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-13">
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
</g>
<g id="glyph-0-14">
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
</g>
<g id="glyph-0-15">
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
</g>
<g id="glyph-0-16">
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
</g>
<g id="glyph-0-17">
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
</g>
<g id="glyph-0-18">
<path d="M 0.859375 -8.03125 L 2.140625 -8.03125 L 6.203125 -1.53125 L 6.203125 -8.03125 L 7.234375 -8.03125 L 7.234375 0 L 6.015625 0 L 1.890625 -6.5 L 1.890625 0 L 0.859375 0 Z M 3.96875 -8.03125 Z M 3.96875 -8.03125 "/>
</g>
<g id="glyph-0-19">
<path d="M 4.984375 -3.296875 L 3.765625 -6.84375 L 2.46875 -3.296875 Z M 3.1875 -8.03125 L 4.421875 -8.03125 L 7.328125 0 L 6.140625 0 L 5.328125 -2.40625 L 2.15625 -2.40625 L 1.28125 0 L 0.171875 0 Z M 3.1875 -8.03125 "/>
</g>
<g id="glyph-0-20">
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
</g>
<g id="glyph-0-21">
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
</g>
<g id="glyph-0-22">
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
</g>
<g id="glyph-1-0">
<path d="M 3.71875 -7.53125 C 4.550781 -7.53125 5.222656 -7.328125 5.734375 -6.921875 C 6.253906 -6.523438 6.566406 -5.835938 6.671875 -4.859375 L 5.46875 -4.859375 C 5.394531 -5.304688 5.226562 -5.679688 4.96875 -5.984375 C 4.71875 -6.285156 4.300781 -6.4375 3.71875 -6.4375 C 2.9375 -6.4375 2.378906 -6.050781 2.046875 -5.28125 C 1.828125 -4.789062 1.71875 -4.179688 1.71875 -3.453125 C 1.71875 -2.710938 1.867188 -2.09375 2.171875 -1.59375 C 2.484375 -1.09375 2.972656 -0.84375 3.640625 -0.84375 C 4.148438 -0.84375 4.554688 -1 4.859375 -1.3125 C 5.160156 -1.625 5.363281 -2.050781 5.46875 -2.59375 L 6.671875 -2.59375 C 6.535156 -1.625 6.191406 -0.910156 5.640625 -0.453125 C 5.097656 -0.00390625 4.398438 0.21875 3.546875 0.21875 C 2.585938 0.21875 1.820312 -0.128906 1.25 -0.828125 C 0.6875 -1.535156 0.40625 -2.410156 0.40625 -3.453125 C 0.40625 -4.742188 0.71875 -5.742188 1.34375 -6.453125 C 1.96875 -7.171875 2.757812 -7.53125 3.71875 -7.53125 Z M 3.53125 -7.5 Z M 3.53125 -7.5 "/>
</g>
<g id="glyph-1-1">
<path d="M 3.8125 -0.796875 C 4.625 -0.796875 5.179688 -1.101562 5.484375 -1.71875 C 5.785156 -2.332031 5.9375 -3.019531 5.9375 -3.78125 C 5.9375 -4.46875 5.828125 -5.023438 5.609375 -5.453125 C 5.265625 -6.117188 4.671875 -6.453125 3.828125 -6.453125 C 3.066406 -6.453125 2.515625 -6.164062 2.171875 -5.59375 C 1.835938 -5.019531 1.671875 -4.328125 1.671875 -3.515625 C 1.671875 -2.742188 1.835938 -2.097656 2.171875 -1.578125 C 2.515625 -1.054688 3.0625 -0.796875 3.8125 -0.796875 Z M 3.859375 -7.53125 C 4.796875 -7.53125 5.585938 -7.210938 6.234375 -6.578125 C 6.890625 -5.953125 7.21875 -5.03125 7.21875 -3.8125 C 7.21875 -2.632812 6.929688 -1.660156 6.359375 -0.890625 C 5.785156 -0.117188 4.894531 0.265625 3.6875 0.265625 C 2.6875 0.265625 1.890625 -0.0703125 1.296875 -0.75 C 0.703125 -1.4375 0.40625 -2.351562 0.40625 -3.5 C 0.40625 -4.726562 0.71875 -5.707031 1.34375 -6.4375 C 1.96875 -7.164062 2.804688 -7.53125 3.859375 -7.53125 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-2">
<path d="M 2.140625 -7.328125 L 2.140625 -2.46875 C 2.140625 -2.09375 2.195312 -1.785156 2.3125 -1.546875 C 2.53125 -1.109375 2.9375 -0.890625 3.53125 -0.890625 C 4.382812 -0.890625 4.96875 -1.269531 5.28125 -2.03125 C 5.445312 -2.445312 5.53125 -3.007812 5.53125 -3.71875 L 5.53125 -7.328125 L 6.765625 -7.328125 L 6.765625 0 L 5.609375 0 L 5.625 -1.078125 C 5.457031 -0.796875 5.257812 -0.5625 5.03125 -0.375 C 4.5625 0.0078125 3.988281 0.203125 3.3125 0.203125 C 2.269531 0.203125 1.5625 -0.144531 1.1875 -0.84375 C 0.976562 -1.21875 0.875 -1.71875 0.875 -2.34375 L 0.875 -7.328125 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
</g>
<g id="glyph-1-3">
<path d="M 0.90625 -7.328125 L 2.078125 -7.328125 L 2.078125 -6.28125 C 2.421875 -6.707031 2.785156 -7.015625 3.171875 -7.203125 C 3.554688 -7.390625 3.988281 -7.484375 4.46875 -7.484375 C 5.5 -7.484375 6.195312 -7.125 6.5625 -6.40625 C 6.769531 -6 6.875 -5.429688 6.875 -4.703125 L 6.875 0 L 5.625 0 L 5.625 -4.609375 C 5.625 -5.054688 5.554688 -5.414062 5.421875 -5.6875 C 5.203125 -6.144531 4.804688 -6.375 4.234375 -6.375 C 3.941406 -6.375 3.703125 -6.347656 3.515625 -6.296875 C 3.179688 -6.191406 2.882812 -5.988281 2.625 -5.6875 C 2.414062 -5.445312 2.28125 -5.195312 2.21875 -4.9375 C 2.164062 -4.675781 2.140625 -4.304688 2.140625 -3.828125 L 2.140625 0 L 0.90625 0 Z M 3.796875 -7.5 Z M 3.796875 -7.5 "/>
</g>
<g id="glyph-1-4">
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
</g>
<g id="glyph-2-0">
<path d="M -7.328125 -1.46875 L -1.546875 -2.875 L -7.328125 -4.3125 L -7.328125 -5.6875 L -1.59375 -7.125 L -7.328125 -8.625 L -7.328125 -9.84375 L 0 -7.71875 L 0 -6.453125 L -5.671875 -4.953125 L 0 -3.515625 L 0 -2.234375 L -7.328125 -0.125 Z M -7.328125 -1.46875 "/>
</g>
<g id="glyph-2-1">
<path d="M -7.484375 -3.953125 C -7.484375 -4.472656 -7.359375 -4.972656 -7.109375 -5.453125 C -6.867188 -5.941406 -6.554688 -6.316406 -6.171875 -6.578125 C -5.804688 -6.828125 -5.375 -6.988281 -4.875 -7.0625 C -4.539062 -7.132812 -4.003906 -7.171875 -3.265625 -7.171875 L -3.265625 -1.8125 C -2.523438 -1.832031 -1.929688 -2.003906 -1.484375 -2.328125 C -1.035156 -2.660156 -0.8125 -3.171875 -0.8125 -3.859375 C -0.8125 -4.503906 -1.019531 -5.019531 -1.4375 -5.40625 C -1.6875 -5.625 -1.972656 -5.773438 -2.296875 -5.859375 L -2.296875 -7.078125 C -2.023438 -7.046875 -1.722656 -6.9375 -1.390625 -6.75 C -1.066406 -6.570312 -0.800781 -6.375 -0.59375 -6.15625 C -0.226562 -5.78125 0.0195312 -5.316406 0.15625 -4.765625 C 0.226562 -4.472656 0.265625 -4.140625 0.265625 -3.765625 C 0.265625 -2.847656 -0.0664062 -2.070312 -0.734375 -1.4375 C -1.398438 -0.8125 -2.328125 -0.5 -3.515625 -0.5 C -4.691406 -0.5 -5.644531 -0.816406 -6.375 -1.453125 C -7.113281 -2.085938 -7.484375 -2.921875 -7.484375 -3.953125 Z M -4.25 -5.90625 C -4.78125 -5.863281 -5.207031 -5.75 -5.53125 -5.5625 C -6.113281 -5.226562 -6.40625 -4.664062 -6.40625 -3.875 C -6.40625 -3.3125 -6.203125 -2.835938 -5.796875 -2.453125 C -5.390625 -2.066406 -4.875 -1.863281 -4.25 -1.84375 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
</g>
<g id="glyph-2-2">
<path d="M -1.953125 -1.84375 C -1.597656 -1.84375 -1.316406 -1.972656 -1.109375 -2.234375 C -0.898438 -2.492188 -0.796875 -2.800781 -0.796875 -3.15625 C -0.796875 -3.59375 -0.894531 -4.015625 -1.09375 -4.421875 C -1.425781 -5.097656 -1.972656 -5.4375 -2.734375 -5.4375 L -3.71875 -5.4375 C -3.625 -5.289062 -3.546875 -5.097656 -3.484375 -4.859375 C -3.421875 -4.617188 -3.375 -4.382812 -3.34375 -4.15625 L -3.25 -3.421875 C -3.195312 -2.972656 -3.101562 -2.632812 -2.96875 -2.40625 C -2.757812 -2.03125 -2.421875 -1.84375 -1.953125 -1.84375 Z M -4.4375 -4.828125 C -4.46875 -5.109375 -4.585938 -5.296875 -4.796875 -5.390625 C -4.898438 -5.441406 -5.054688 -5.46875 -5.265625 -5.46875 C -5.679688 -5.46875 -5.984375 -5.316406 -6.171875 -5.015625 C -6.359375 -4.722656 -6.453125 -4.300781 -6.453125 -3.75 C -6.453125 -3.101562 -6.28125 -2.644531 -5.9375 -2.375 C -5.75 -2.226562 -5.46875 -2.128906 -5.09375 -2.078125 L -5.09375 -0.9375 C -5.988281 -0.957031 -6.613281 -1.25 -6.96875 -1.8125 C -7.320312 -2.375 -7.5 -3.03125 -7.5 -3.78125 C -7.5 -4.632812 -7.332031 -5.332031 -7 -5.875 C -6.675781 -6.40625 -6.164062 -6.671875 -5.46875 -6.671875 L -1.265625 -6.671875 C -1.128906 -6.671875 -1.019531 -6.695312 -0.9375 -6.75 C -0.863281 -6.800781 -0.828125 -6.910156 -0.828125 -7.078125 C -0.828125 -7.140625 -0.832031 -7.203125 -0.84375 -7.265625 C -0.851562 -7.335938 -0.863281 -7.410156 -0.875 -7.484375 L 0.03125 -7.484375 C 0.0820312 -7.296875 0.113281 -7.148438 0.125 -7.046875 C 0.144531 -6.941406 0.15625 -6.804688 0.15625 -6.640625 C 0.15625 -6.210938 0.00390625 -5.90625 -0.296875 -5.71875 C -0.453125 -5.613281 -0.675781 -5.539062 -0.96875 -5.5 C -0.644531 -5.25 -0.359375 -4.890625 -0.109375 -4.421875 C 0.128906 -3.953125 0.25 -3.4375 0.25 -2.875 C 0.25 -2.195312 0.0429688 -1.640625 -0.359375 -1.203125 C -0.773438 -0.773438 -1.296875 -0.5625 -1.921875 -0.5625 C -2.597656 -0.5625 -3.125 -0.769531 -3.5 -1.1875 C -3.875 -1.613281 -4.101562 -2.171875 -4.1875 -2.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
</g>
<g id="glyph-2-3">
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
</g>
<g id="glyph-2-4">
<path d="M -10.078125 -0.90625 L -10.078125 -2.140625 L -6.328125 -2.140625 C -6.703125 -2.429688 -6.960938 -2.691406 -7.109375 -2.921875 C -7.367188 -3.316406 -7.5 -3.8125 -7.5 -4.40625 C -7.5 -5.46875 -7.128906 -6.1875 -6.390625 -6.5625 C -5.984375 -6.769531 -5.421875 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.609375 L -4.609375 -5.609375 C -5.148438 -5.609375 -5.546875 -5.539062 -5.796875 -5.40625 C -6.203125 -5.175781 -6.40625 -4.753906 -6.40625 -4.140625 C -6.40625 -3.628906 -6.226562 -3.164062 -5.875 -2.75 C -5.519531 -2.34375 -4.859375 -2.140625 -3.890625 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -10.078125 -0.90625 "/>
</g>
<g id="glyph-2-5">
<path d="M -7.328125 -0.9375 L -7.328125 -2.109375 L -6.0625 -2.109375 C -6.300781 -2.203125 -6.597656 -2.4375 -6.953125 -2.8125 C -7.304688 -3.1875 -7.484375 -3.617188 -7.484375 -4.109375 C -7.484375 -4.128906 -7.476562 -4.164062 -7.46875 -4.21875 C -7.46875 -4.269531 -7.460938 -4.363281 -7.453125 -4.5 L -6.15625 -4.5 C -6.164062 -4.425781 -6.171875 -4.359375 -6.171875 -4.296875 C -6.179688 -4.234375 -6.1875 -4.164062 -6.1875 -4.09375 C -6.1875 -3.476562 -5.984375 -3.003906 -5.578125 -2.671875 C -5.179688 -2.335938 -4.726562 -2.171875 -4.21875 -2.171875 L 0 -2.171875 L 0 -0.9375 Z M -7.328125 -0.9375 "/>
</g>
<g id="glyph-2-6">
<path d="M 1.75 0 L 1.0625 0 L 1.0625 -7.78125 L 1.75 -7.78125 Z M 1.75 0 "/>
</g>
<g id="glyph-2-7">
<path d="M -7.328125 -5.46875 L -7.328125 -6.84375 C -6.859375 -6.664062 -5.785156 -6.28125 -4.109375 -5.6875 C -2.847656 -5.238281 -1.820312 -4.863281 -1.03125 -4.5625 C 0.832031 -3.851562 1.96875 -3.351562 2.375 -3.0625 C 2.789062 -2.769531 3 -2.265625 3 -1.546875 C 3 -1.378906 2.988281 -1.25 2.96875 -1.15625 C 2.957031 -1.0625 2.9375 -0.945312 2.90625 -0.8125 L 1.78125 -0.8125 C 1.84375 -1.019531 1.878906 -1.171875 1.890625 -1.265625 C 1.910156 -1.367188 1.921875 -1.457031 1.921875 -1.53125 C 1.921875 -1.75 1.878906 -1.910156 1.796875 -2.015625 C 1.722656 -2.128906 1.632812 -2.222656 1.53125 -2.296875 C 1.488281 -2.316406 1.296875 -2.394531 0.953125 -2.53125 C 0.617188 -2.675781 0.375 -2.78125 0.21875 -2.84375 L -7.328125 -0.140625 L -7.328125 -1.53125 L -1.359375 -3.5 Z M -7.5 -3.5 Z M -7.5 -3.5 "/>
</g>
<g id="glyph-2-8">
<path d="M -0.828125 -4 C -0.828125 -4.570312 -1.066406 -5.046875 -1.546875 -5.421875 C -2.023438 -5.804688 -2.742188 -6 -3.703125 -6 C -4.285156 -6 -4.785156 -5.914062 -5.203125 -5.75 C -6.015625 -5.425781 -6.421875 -4.84375 -6.421875 -4 C -6.421875 -3.144531 -5.992188 -2.5625 -5.140625 -2.25 C -4.679688 -2.070312 -4.101562 -1.984375 -3.40625 -1.984375 C -2.84375 -1.984375 -2.363281 -2.070312 -1.96875 -2.25 C -1.207031 -2.5625 -0.828125 -3.144531 -0.828125 -4 Z M -7.28125 -0.8125 L -7.28125 -2 L -6.3125 -2 C -6.644531 -2.25 -6.90625 -2.519531 -7.09375 -2.8125 C -7.363281 -3.226562 -7.5 -3.710938 -7.5 -4.265625 C -7.5 -5.097656 -7.179688 -5.800781 -6.546875 -6.375 C -5.910156 -6.957031 -5.003906 -7.25 -3.828125 -7.25 C -2.222656 -7.25 -1.082031 -6.832031 -0.40625 -6 C 0.0273438 -5.46875 0.25 -4.851562 0.25 -4.15625 C 0.25 -3.601562 0.128906 -3.140625 -0.109375 -2.765625 C -0.253906 -2.546875 -0.492188 -2.300781 -0.828125 -2.03125 L 2.921875 -2.03125 L 2.921875 -0.8125 Z M -7.28125 -0.8125 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 111.429688 6.972656 L 353.023438 6.972656 L 353.023438 254.613281 L 111.429688 254.613281 Z M 111.429688 6.972656 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 111.429688 233 L 353.023438 233 L 353.023438 235 L 111.429688 235 Z M 111.429688 233 "/>
</clipPath>
<clipPath id="clip-2">
<path clip-rule="nonzero" d="M 111.429688 199 L 353.023438 199 L 353.023438 200 L 111.429688 200 Z M 111.429688 199 "/>
</clipPath>
<clipPath id="clip-3">
<path clip-rule="nonzero" d="M 111.429688 164 L 353.023438 164 L 353.023438 166 L 111.429688 166 Z M 111.429688 164 "/>
</clipPath>
<clipPath id="clip-4">
<path clip-rule="nonzero" d="M 111.429688 130 L 353.023438 130 L 353.023438 132 L 111.429688 132 Z M 111.429688 130 "/>
</clipPath>
<clipPath id="clip-5">
<path clip-rule="nonzero" d="M 111.429688 96 L 353.023438 96 L 353.023438 97 L 111.429688 97 Z M 111.429688 96 "/>
</clipPath>
<clipPath id="clip-6">
<path clip-rule="nonzero" d="M 111.429688 61 L 353.023438 61 L 353.023438 63 L 111.429688 63 Z M 111.429688 61 "/>
</clipPath>
<clipPath id="clip-7">
<path clip-rule="nonzero" d="M 111.429688 27 L 353.023438 27 L 353.023438 28 L 111.429688 28 Z M 111.429688 27 "/>
</clipPath>
<clipPath id="clip-8">
<path clip-rule="nonzero" d="M 122 6.972656 L 123 6.972656 L 123 254.613281 L 122 254.613281 Z M 122 6.972656 "/>
</clipPath>
<clipPath id="clip-9">
<path clip-rule="nonzero" d="M 199 6.972656 L 201 6.972656 L 201 254.613281 L 199 254.613281 Z M 199 6.972656 "/>
</clipPath>
<clipPath id="clip-10">
<path clip-rule="nonzero" d="M 277 6.972656 L 279 6.972656 L 279 254.613281 L 277 254.613281 Z M 277 6.972656 "/>
</clipPath>
<clipPath id="clip-11">
<path clip-rule="nonzero" d="M 111.429688 6.972656 L 353.023438 6.972656 L 353.023438 254.613281 L 111.429688 254.613281 Z M 111.429688 6.972656 "/>
</clipPath>
</defs>
<rect x="-36" y="-29.5" width="432" height="354" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<rect x="-36" y="-29.5" width="432" height="354" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 295 L 360 295 L 360 0 L 0 0 Z M 0 295 "/>
<g clip-path="url(#clip-0)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 111.429688 254.613281 L 353.023438 254.613281 L 353.023438 6.972656 L 111.429688 6.972656 Z M 111.429688 254.613281 "/>
</g>
<g clip-path="url(#clip-1)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 233.976562 L 353.027344 233.976562 "/>
</g>
<g clip-path="url(#clip-2)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 199.582031 L 353.027344 199.582031 "/>
</g>
<g clip-path="url(#clip-3)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 165.1875 L 353.027344 165.1875 "/>
</g>
<g clip-path="url(#clip-4)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 130.792969 L 353.027344 130.792969 "/>
</g>
<g clip-path="url(#clip-5)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 96.398438 L 353.027344 96.398438 "/>
</g>
<g clip-path="url(#clip-6)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 62.003906 L 353.027344 62.003906 "/>
</g>
<g clip-path="url(#clip-7)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 27.609375 L 353.027344 27.609375 "/>
</g>
<g clip-path="url(#clip-8)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 122.414062 254.613281 L 122.414062 6.972656 "/>
</g>
<g clip-path="url(#clip-9)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.160156 254.613281 L 200.160156 6.972656 "/>
</g>
<g clip-path="url(#clip-10)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 277.90625 254.613281 L 277.90625 6.972656 "/>
</g>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 249.453125 L 226.203125 249.453125 L 226.203125 218.5 L 122.414062 218.5 Z M 122.414062 249.453125 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 215.058594 L 342.046875 215.058594 L 342.046875 184.105469 L 122.414062 184.105469 Z M 122.414062 215.058594 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 180.664062 L 153.125 180.664062 L 153.125 149.710938 L 122.414062 149.710938 Z M 122.414062 180.664062 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 146.269531 L 183.445312 146.269531 L 183.445312 115.316406 L 122.414062 115.316406 Z M 122.414062 146.269531 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 111.875 L 243.308594 111.875 L 243.308594 80.921875 L 122.414062 80.921875 Z M 122.414062 111.875 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 77.480469 L 123.582031 77.480469 L 123.582031 46.527344 L 122.414062 46.527344 Z M 122.414062 77.480469 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 43.089844 L 150.402344 43.089844 L 150.402344 12.136719 L 122.414062 12.136719 Z M 122.414062 43.089844 "/>
<g clip-path="url(#clip-11)">
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 254.613281 L 353.023438 254.613281 L 353.023438 6.972656 L 111.429688 6.972656 Z M 111.429688 254.613281 "/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="35.425781" y="237.992188"/>
<use xlink:href="#glyph-0-1" x="41.654688" y="237.992188"/>
<use xlink:href="#glyph-0-2" x="45.384375" y="237.992188"/>
<use xlink:href="#glyph-0-3" x="51.613281" y="237.992188"/>
<use xlink:href="#glyph-0-4" x="57.213281" y="237.992188"/>
<use xlink:href="#glyph-0-5" x="63.442188" y="237.992188"/>
<use xlink:href="#glyph-0-6" x="69.671094" y="237.992188"/>
<use xlink:href="#glyph-0-7" x="72.782812" y="237.992188"/>
<use xlink:href="#glyph-0-8" x="78.382812" y="237.992188"/>
<use xlink:href="#glyph-0-2" x="80.871094" y="237.992188"/>
<use xlink:href="#glyph-0-9" x="87.1" y="237.992188"/>
<use xlink:href="#glyph-0-10" x="93.328906" y="237.992188"/>
<use xlink:href="#glyph-0-11" x="99.557812" y="237.992188"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-7" x="80.878906" y="203.597656"/>
<use xlink:href="#glyph-0-8" x="86.478906" y="203.597656"/>
<use xlink:href="#glyph-0-4" x="88.967187" y="203.597656"/>
<use xlink:href="#glyph-0-12" x="95.196094" y="203.597656"/>
<use xlink:href="#glyph-0-1" x="101.425" y="203.597656"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-7" x="72.78125" y="169.203125"/>
<use xlink:href="#glyph-0-8" x="78.38125" y="169.203125"/>
<use xlink:href="#glyph-0-2" x="80.869531" y="169.203125"/>
<use xlink:href="#glyph-0-9" x="87.098437" y="169.203125"/>
<use xlink:href="#glyph-0-10" x="93.327344" y="169.203125"/>
<use xlink:href="#glyph-0-13" x="99.55625" y="169.203125"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="86.480469" y="134.808594"/>
<use xlink:href="#glyph-0-12" x="90.210156" y="134.808594"/>
<use xlink:href="#glyph-0-14" x="96.439062" y="134.808594"/>
<use xlink:href="#glyph-0-5" x="98.927344" y="134.808594"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="23.601562" y="100.414062"/>
<use xlink:href="#glyph-0-7" x="29.201563" y="100.414062"/>
<use xlink:href="#glyph-0-12" x="34.801563" y="100.414062"/>
<use xlink:href="#glyph-0-15" x="41.030469" y="100.414062"/>
<use xlink:href="#glyph-0-15" x="44.142188" y="100.414062"/>
<use xlink:href="#glyph-0-4" x="47.253906" y="100.414062"/>
<use xlink:href="#glyph-0-1" x="53.482813" y="100.414062"/>
<use xlink:href="#glyph-0-4" x="57.2125" y="100.414062"/>
<use xlink:href="#glyph-0-10" x="63.441406" y="100.414062"/>
<use xlink:href="#glyph-0-6" x="69.670313" y="100.414062"/>
<use xlink:href="#glyph-0-7" x="72.782031" y="100.414062"/>
<use xlink:href="#glyph-0-8" x="78.382031" y="100.414062"/>
<use xlink:href="#glyph-0-2" x="80.870312" y="100.414062"/>
<use xlink:href="#glyph-0-9" x="87.099219" y="100.414062"/>
<use xlink:href="#glyph-0-10" x="93.328125" y="100.414062"/>
<use xlink:href="#glyph-0-11" x="99.557031" y="100.414062"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="64.691406" y="66.023438"/>
<use xlink:href="#glyph-0-5" x="70.291406" y="66.023438"/>
<use xlink:href="#glyph-0-2" x="76.520312" y="66.023438"/>
<use xlink:href="#glyph-0-16" x="82.749219" y="66.023438"/>
<use xlink:href="#glyph-0-17" x="90.8375" y="66.023438"/>
<use xlink:href="#glyph-0-12" x="93.949219" y="66.023438"/>
<use xlink:href="#glyph-0-8" x="100.178125" y="66.023438"/>
<use xlink:href="#glyph-0-8" x="102.666406" y="66.023438"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-18" x="89.597656" y="31.628906"/>
<use xlink:href="#glyph-0-19" x="97.685937" y="31.628906"/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 233.976562 L 111.429688 233.976562 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 199.582031 L 111.429688 199.582031 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 165.1875 L 111.429688 165.1875 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 130.792969 L 111.429688 130.792969 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 96.398438 L 111.429688 96.398438 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 62.003906 L 111.429688 62.003906 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 27.609375 L 111.429688 27.609375 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 122.414062 258.101562 L 122.414062 254.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.160156 258.101562 L 200.160156 254.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 277.90625 258.101562 L 277.90625 254.613281 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-20" x="119.300781" y="268.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-21" x="190.816406" y="268.921875"/>
<use xlink:href="#glyph-0-20" x="197.045312" y="268.921875"/>
<use xlink:href="#glyph-0-20" x="203.274219" y="268.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-22" x="268.5625" y="268.921875"/>
<use xlink:href="#glyph-0-20" x="274.791406" y="268.921875"/>
<use xlink:href="#glyph-0-20" x="281.020313" y="268.921875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="215.105469" y="284.929688"/>
<use xlink:href="#glyph-1-1" x="222.105469" y="284.929688"/>
<use xlink:href="#glyph-1-2" x="229.891602" y="284.929688"/>
<use xlink:href="#glyph-1-3" x="237.677734" y="284.929688"/>
<use xlink:href="#glyph-1-4" x="245.463867" y="284.929688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="17.015625" y="172.820312"/>
<use xlink:href="#glyph-2-1" x="17.015625" y="162.709961"/>
<use xlink:href="#glyph-2-2" x="17.015625" y="154.923828"/>
<use xlink:href="#glyph-2-3" x="17.015625" y="147.137695"/>
<use xlink:href="#glyph-2-4" x="17.015625" y="143.248047"/>
<use xlink:href="#glyph-2-1" x="17.015625" y="135.461914"/>
<use xlink:href="#glyph-2-5" x="17.015625" y="127.675781"/>
<use xlink:href="#glyph-2-6" x="17.015625" y="123.013672"/>
<use xlink:href="#glyph-2-3" x="17.015625" y="115.227539"/>
<use xlink:href="#glyph-2-7" x="17.015625" y="111.337891"/>
<use xlink:href="#glyph-2-8" x="17.015625" y="104.337891"/>
<use xlink:href="#glyph-2-1" x="17.015625" y="96.551758"/>
</g>
</svg>

After

(image error) Size: 43 KiB

Binary file not shown.

After

(image error) Size: 34 KiB

View File

@ -0,0 +1,269 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="252" viewBox="0 0 360 252">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
</g>
<g id="glyph-0-1">
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
</g>
<g id="glyph-0-2">
<path d="M 3.046875 -4.546875 C 3.484375 -4.546875 3.820312 -4.664062 4.0625 -4.90625 C 4.3125 -5.15625 4.4375 -5.445312 4.4375 -5.78125 C 4.4375 -6.070312 4.316406 -6.335938 4.078125 -6.578125 C 3.847656 -6.828125 3.492188 -6.953125 3.015625 -6.953125 C 2.535156 -6.953125 2.191406 -6.828125 1.984375 -6.578125 C 1.773438 -6.335938 1.671875 -6.054688 1.671875 -5.734375 C 1.671875 -5.359375 1.804688 -5.066406 2.078125 -4.859375 C 2.347656 -4.648438 2.671875 -4.546875 3.046875 -4.546875 Z M 3.109375 -0.671875 C 3.566406 -0.671875 3.941406 -0.789062 4.234375 -1.03125 C 4.535156 -1.28125 4.6875 -1.648438 4.6875 -2.140625 C 4.6875 -2.648438 4.53125 -3.035156 4.21875 -3.296875 C 3.914062 -3.554688 3.519531 -3.6875 3.03125 -3.6875 C 2.5625 -3.6875 2.175781 -3.550781 1.875 -3.28125 C 1.582031 -3.019531 1.4375 -2.648438 1.4375 -2.171875 C 1.4375 -1.765625 1.570312 -1.410156 1.84375 -1.109375 C 2.113281 -0.816406 2.535156 -0.671875 3.109375 -0.671875 Z M 1.703125 -4.171875 C 1.429688 -4.285156 1.21875 -4.421875 1.0625 -4.578125 C 0.78125 -4.867188 0.640625 -5.25 0.640625 -5.71875 C 0.640625 -6.300781 0.847656 -6.800781 1.265625 -7.21875 C 1.691406 -7.644531 2.289062 -7.859375 3.0625 -7.859375 C 3.820312 -7.859375 4.410156 -7.660156 4.828125 -7.265625 C 5.253906 -6.867188 5.46875 -6.40625 5.46875 -5.875 C 5.46875 -5.382812 5.347656 -4.988281 5.109375 -4.6875 C 4.960938 -4.519531 4.742188 -4.351562 4.453125 -4.1875 C 4.773438 -4.03125 5.03125 -3.859375 5.21875 -3.671875 C 5.570312 -3.304688 5.75 -2.832031 5.75 -2.25 C 5.75 -1.5625 5.515625 -0.976562 5.046875 -0.5 C 4.585938 -0.0195312 3.929688 0.21875 3.078125 0.21875 C 2.316406 0.21875 1.671875 0.0117188 1.140625 -0.390625 C 0.617188 -0.804688 0.359375 -1.410156 0.359375 -2.203125 C 0.359375 -2.660156 0.472656 -3.054688 0.703125 -3.390625 C 0.929688 -3.734375 1.265625 -3.992188 1.703125 -4.171875 Z M 1.703125 -4.171875 "/>
</g>
<g id="glyph-0-3">
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
</g>
<g id="glyph-0-4">
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
</g>
<g id="glyph-0-5">
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
</g>
<g id="glyph-0-6">
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
</g>
<g id="glyph-0-7">
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
</g>
<g id="glyph-0-8">
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
</g>
<g id="glyph-0-9">
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-10">
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
</g>
<g id="glyph-0-11">
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
</g>
<g id="glyph-0-12">
<path d="M 3.1875 -0.65625 C 3.65625 -0.65625 4.039062 -0.847656 4.34375 -1.234375 C 4.644531 -1.617188 4.796875 -2.195312 4.796875 -2.96875 C 4.796875 -3.4375 4.726562 -3.835938 4.59375 -4.171875 C 4.34375 -4.816406 3.875 -5.140625 3.1875 -5.140625 C 2.507812 -5.140625 2.046875 -4.796875 1.796875 -4.109375 C 1.660156 -3.742188 1.59375 -3.28125 1.59375 -2.71875 C 1.59375 -2.269531 1.660156 -1.882812 1.796875 -1.5625 C 2.046875 -0.957031 2.507812 -0.65625 3.1875 -0.65625 Z M 0.640625 -5.828125 L 1.609375 -5.828125 L 1.609375 -5.046875 C 1.796875 -5.316406 2.007812 -5.523438 2.25 -5.671875 C 2.582031 -5.890625 2.972656 -6 3.421875 -6 C 4.085938 -6 4.648438 -5.742188 5.109375 -5.234375 C 5.566406 -4.722656 5.796875 -4 5.796875 -3.0625 C 5.796875 -1.78125 5.460938 -0.867188 4.796875 -0.328125 C 4.378906 0.0234375 3.890625 0.203125 3.328125 0.203125 C 2.878906 0.203125 2.507812 0.101562 2.21875 -0.09375 C 2.039062 -0.195312 1.84375 -0.382812 1.625 -0.65625 L 1.625 2.328125 L 0.640625 2.328125 Z M 0.640625 -5.828125 "/>
</g>
<g id="glyph-0-13">
<path d="M 2.796875 -5.96875 C 3.253906 -5.96875 3.65625 -5.851562 4 -5.625 C 4.175781 -5.5 4.363281 -5.3125 4.5625 -5.0625 L 4.5625 -5.796875 L 5.46875 -5.796875 L 5.46875 -0.46875 C 5.46875 0.269531 5.359375 0.851562 5.140625 1.28125 C 4.734375 2.082031 3.960938 2.484375 2.828125 2.484375 C 2.191406 2.484375 1.660156 2.335938 1.234375 2.046875 C 0.804688 1.765625 0.566406 1.328125 0.515625 0.734375 L 1.515625 0.734375 C 1.566406 0.992188 1.660156 1.191406 1.796875 1.328125 C 2.023438 1.546875 2.375 1.65625 2.84375 1.65625 C 3.601562 1.65625 4.097656 1.390625 4.328125 0.859375 C 4.472656 0.546875 4.539062 -0.0078125 4.53125 -0.8125 C 4.332031 -0.507812 4.09375 -0.285156 3.8125 -0.140625 C 3.53125 0.00390625 3.164062 0.078125 2.71875 0.078125 C 2.082031 0.078125 1.523438 -0.144531 1.046875 -0.59375 C 0.566406 -1.050781 0.328125 -1.800781 0.328125 -2.84375 C 0.328125 -3.820312 0.566406 -4.585938 1.046875 -5.140625 C 1.523438 -5.691406 2.109375 -5.96875 2.796875 -5.96875 Z M 4.5625 -2.953125 C 4.5625 -3.679688 4.410156 -4.21875 4.109375 -4.5625 C 3.816406 -4.914062 3.4375 -5.09375 2.96875 -5.09375 C 2.28125 -5.09375 1.804688 -4.769531 1.546875 -4.125 C 1.410156 -3.769531 1.34375 -3.3125 1.34375 -2.75 C 1.34375 -2.09375 1.476562 -1.59375 1.75 -1.25 C 2.019531 -0.90625 2.378906 -0.734375 2.828125 -0.734375 C 3.535156 -0.734375 4.035156 -1.050781 4.328125 -1.6875 C 4.484375 -2.050781 4.5625 -2.472656 4.5625 -2.953125 Z M 2.90625 -6 Z M 2.90625 -6 "/>
</g>
<g id="glyph-0-14">
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-15">
<path d="M 0.71875 -5.859375 L 1.703125 -5.859375 L 1.703125 -5.03125 C 1.929688 -5.3125 2.140625 -5.519531 2.328125 -5.65625 C 2.648438 -5.875 3.019531 -5.984375 3.4375 -5.984375 C 3.90625 -5.984375 4.28125 -5.867188 4.5625 -5.640625 C 4.71875 -5.515625 4.863281 -5.320312 5 -5.0625 C 5.21875 -5.375 5.472656 -5.601562 5.765625 -5.75 C 6.066406 -5.90625 6.398438 -5.984375 6.765625 -5.984375 C 7.554688 -5.984375 8.09375 -5.703125 8.375 -5.140625 C 8.53125 -4.828125 8.609375 -4.414062 8.609375 -3.90625 L 8.609375 0 L 7.578125 0 L 7.578125 -4.0625 C 7.578125 -4.457031 7.476562 -4.726562 7.28125 -4.875 C 7.09375 -5.019531 6.859375 -5.09375 6.578125 -5.09375 C 6.191406 -5.09375 5.859375 -4.960938 5.578125 -4.703125 C 5.296875 -4.441406 5.15625 -4.007812 5.15625 -3.40625 L 5.15625 0 L 4.15625 0 L 4.15625 -3.828125 C 4.15625 -4.222656 4.109375 -4.507812 4.015625 -4.6875 C 3.867188 -4.96875 3.585938 -5.109375 3.171875 -5.109375 C 2.804688 -5.109375 2.46875 -4.960938 2.15625 -4.671875 C 1.851562 -4.378906 1.703125 -3.859375 1.703125 -3.109375 L 1.703125 0 L 0.71875 0 Z M 0.71875 -5.859375 "/>
</g>
<g id="glyph-0-16">
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-1-0">
<path d="M 1.640625 -2.296875 C 1.671875 -1.890625 1.769531 -1.578125 1.9375 -1.359375 C 2.25 -0.960938 2.789062 -0.765625 3.5625 -0.765625 C 4.007812 -0.765625 4.40625 -0.863281 4.75 -1.0625 C 5.101562 -1.257812 5.28125 -1.5625 5.28125 -1.96875 C 5.28125 -2.289062 5.140625 -2.53125 4.859375 -2.6875 C 4.679688 -2.789062 4.332031 -2.910156 3.8125 -3.046875 L 2.828125 -3.28125 C 2.203125 -3.4375 1.742188 -3.613281 1.453125 -3.8125 C 0.921875 -4.144531 0.65625 -4.601562 0.65625 -5.1875 C 0.65625 -5.882812 0.90625 -6.445312 1.40625 -6.875 C 1.90625 -7.300781 2.578125 -7.515625 3.421875 -7.515625 C 4.523438 -7.515625 5.316406 -7.191406 5.796875 -6.546875 C 6.109375 -6.128906 6.257812 -5.6875 6.25 -5.21875 L 5.09375 -5.21875 C 5.0625 -5.5 4.960938 -5.75 4.796875 -5.96875 C 4.515625 -6.289062 4.023438 -6.453125 3.328125 -6.453125 C 2.859375 -6.453125 2.503906 -6.363281 2.265625 -6.1875 C 2.023438 -6.007812 1.90625 -5.773438 1.90625 -5.484375 C 1.90625 -5.171875 2.0625 -4.914062 2.375 -4.71875 C 2.5625 -4.601562 2.832031 -4.503906 3.1875 -4.421875 L 4 -4.21875 C 4.882812 -4.007812 5.476562 -3.804688 5.78125 -3.609375 C 6.257812 -3.285156 6.5 -2.789062 6.5 -2.125 C 6.5 -1.46875 6.25 -0.898438 5.75 -0.421875 C 5.257812 0.0429688 4.507812 0.28125 3.5 0.28125 C 2.40625 0.28125 1.628906 0.0351562 1.171875 -0.453125 C 0.722656 -0.953125 0.484375 -1.566406 0.453125 -2.296875 Z M 3.453125 -7.5 Z M 3.453125 -7.5 "/>
</g>
<g id="glyph-1-1">
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
</g>
<g id="glyph-1-2">
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-3">
<path d="M 3.8125 -0.796875 C 4.625 -0.796875 5.179688 -1.101562 5.484375 -1.71875 C 5.785156 -2.332031 5.9375 -3.019531 5.9375 -3.78125 C 5.9375 -4.46875 5.828125 -5.023438 5.609375 -5.453125 C 5.265625 -6.117188 4.671875 -6.453125 3.828125 -6.453125 C 3.066406 -6.453125 2.515625 -6.164062 2.171875 -5.59375 C 1.835938 -5.019531 1.671875 -4.328125 1.671875 -3.515625 C 1.671875 -2.742188 1.835938 -2.097656 2.171875 -1.578125 C 2.515625 -1.054688 3.0625 -0.796875 3.8125 -0.796875 Z M 3.859375 -7.53125 C 4.796875 -7.53125 5.585938 -7.210938 6.234375 -6.578125 C 6.890625 -5.953125 7.21875 -5.03125 7.21875 -3.8125 C 7.21875 -2.632812 6.929688 -1.660156 6.359375 -0.890625 C 5.785156 -0.117188 4.894531 0.265625 3.6875 0.265625 C 2.6875 0.265625 1.890625 -0.0703125 1.296875 -0.75 C 0.703125 -1.4375 0.40625 -2.351562 0.40625 -3.5 C 0.40625 -4.726562 0.71875 -5.707031 1.34375 -6.4375 C 1.96875 -7.164062 2.804688 -7.53125 3.859375 -7.53125 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-4">
<path d="M 0.90625 -7.328125 L 2.078125 -7.328125 L 2.078125 -6.28125 C 2.421875 -6.707031 2.785156 -7.015625 3.171875 -7.203125 C 3.554688 -7.390625 3.988281 -7.484375 4.46875 -7.484375 C 5.5 -7.484375 6.195312 -7.125 6.5625 -6.40625 C 6.769531 -6 6.875 -5.429688 6.875 -4.703125 L 6.875 0 L 5.625 0 L 5.625 -4.609375 C 5.625 -5.054688 5.554688 -5.414062 5.421875 -5.6875 C 5.203125 -6.144531 4.804688 -6.375 4.234375 -6.375 C 3.941406 -6.375 3.703125 -6.347656 3.515625 -6.296875 C 3.179688 -6.191406 2.882812 -5.988281 2.625 -5.6875 C 2.414062 -5.445312 2.28125 -5.195312 2.21875 -4.9375 C 2.164062 -4.675781 2.140625 -4.304688 2.140625 -3.828125 L 2.140625 0 L 0.90625 0 Z M 3.796875 -7.5 Z M 3.796875 -7.5 "/>
</g>
<g id="glyph-2-0">
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
</g>
<g id="glyph-2-1">
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
</g>
<g id="glyph-2-2">
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
</g>
<g id="glyph-2-3">
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
</g>
<g id="glyph-2-4">
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 61.019531 6.972656 L 353.023438 6.972656 L 353.023438 211.613281 L 61.019531 211.613281 Z M 61.019531 6.972656 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 61.019531 161 L 353.023438 161 L 353.023438 163 L 61.019531 163 Z M 61.019531 161 "/>
</clipPath>
<clipPath id="clip-2">
<path clip-rule="nonzero" d="M 61.019531 108 L 353.023438 108 L 353.023438 110 L 61.019531 110 Z M 61.019531 108 "/>
</clipPath>
<clipPath id="clip-3">
<path clip-rule="nonzero" d="M 61.019531 55 L 353.023438 55 L 353.023438 57 L 61.019531 57 Z M 61.019531 55 "/>
</clipPath>
<clipPath id="clip-4">
<path clip-rule="nonzero" d="M 102 6.972656 L 104 6.972656 L 104 211.613281 L 102 211.613281 Z M 102 6.972656 "/>
</clipPath>
<clipPath id="clip-5">
<path clip-rule="nonzero" d="M 171 6.972656 L 173 6.972656 L 173 211.613281 L 171 211.613281 Z M 171 6.972656 "/>
</clipPath>
<clipPath id="clip-6">
<path clip-rule="nonzero" d="M 241 6.972656 L 243 6.972656 L 243 211.613281 L 241 211.613281 Z M 241 6.972656 "/>
</clipPath>
<clipPath id="clip-7">
<path clip-rule="nonzero" d="M 310 6.972656 L 312 6.972656 L 312 211.613281 L 310 211.613281 Z M 310 6.972656 "/>
</clipPath>
<clipPath id="clip-8">
<path clip-rule="nonzero" d="M 102 6.972656 L 104 6.972656 L 104 10 L 102 10 Z M 102 6.972656 "/>
</clipPath>
<clipPath id="clip-9">
<path clip-rule="nonzero" d="M 146 6.972656 L 199 6.972656 L 199 118 L 146 118 Z M 146 6.972656 "/>
</clipPath>
<clipPath id="clip-10">
<path clip-rule="nonzero" d="M 145 6.972656 L 199 6.972656 L 199 118 L 145 118 Z M 145 6.972656 "/>
</clipPath>
<clipPath id="clip-11">
<path clip-rule="nonzero" d="M 215 6.972656 L 268 6.972656 L 268 66 L 215 66 Z M 215 6.972656 "/>
</clipPath>
<clipPath id="clip-12">
<path clip-rule="nonzero" d="M 215 6.972656 L 269 6.972656 L 269 66 L 215 66 Z M 215 6.972656 "/>
</clipPath>
<clipPath id="clip-13">
<path clip-rule="nonzero" d="M 285 6.972656 L 338 6.972656 L 338 109 L 285 109 Z M 285 6.972656 "/>
</clipPath>
<clipPath id="clip-14">
<path clip-rule="nonzero" d="M 284 6.972656 L 338 6.972656 L 338 110 L 284 110 Z M 284 6.972656 "/>
</clipPath>
<clipPath id="clip-15">
<path clip-rule="nonzero" d="M 61.019531 6.972656 L 353.023438 6.972656 L 353.023438 211.613281 L 61.019531 211.613281 Z M 61.019531 6.972656 "/>
</clipPath>
</defs>
<rect x="-36" y="-25.2" width="432" height="302.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<rect x="-36" y="-25.2" width="432" height="302.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 252 L 360 252 L 360 0 L 0 0 Z M 0 252 "/>
<g clip-path="url(#clip-0)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 61.019531 211.613281 L 353.023438 211.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 211.613281 "/>
</g>
<g clip-path="url(#clip-1)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 161.957031 L 353.027344 161.957031 "/>
</g>
<g clip-path="url(#clip-2)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 108.980469 L 353.027344 108.980469 "/>
</g>
<g clip-path="url(#clip-3)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 56.007812 L 353.027344 56.007812 "/>
</g>
<g clip-path="url(#clip-4)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 211.613281 L 102.734375 6.972656 "/>
</g>
<g clip-path="url(#clip-5)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 211.613281 L 172.261719 6.972656 "/>
</g>
<g clip-path="url(#clip-6)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 211.613281 L 241.785156 6.972656 "/>
</g>
<g clip-path="url(#clip-7)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 211.613281 L 311.3125 6.972656 "/>
</g>
<g clip-path="url(#clip-8)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 9.347656 L 102.734375 -150.636719 "/>
</g>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 140.25 L 102.734375 189.636719 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 76.664062 9.347656 L 76.664062 140.25 L 128.808594 140.25 L 128.808594 9.347656 Z M 76.664062 9.347656 "/>
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 76.664062 112.960938 L 128.808594 112.960938 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 117.175781 L 172.261719 198.535156 "/>
<g clip-path="url(#clip-9)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 146.1875 -39.730469 L 146.1875 117.175781 L 198.332031 117.175781 L 198.332031 -39.730469 Z M 146.1875 -39.730469 "/>
</g>
<g clip-path="url(#clip-10)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 146.1875 -39.730469 L 146.1875 117.175781 L 198.332031 117.175781 L 198.332031 -39.730469 Z M 146.1875 -39.730469 "/>
</g>
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 146.1875 70.582031 L 198.332031 70.582031 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 65.117188 L 241.785156 152.394531 "/>
<g clip-path="url(#clip-11)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 215.714844 -109.710938 L 215.714844 65.117188 L 267.859375 65.117188 L 267.859375 -109.710938 Z M 215.714844 -109.710938 "/>
</g>
<g clip-path="url(#clip-12)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 215.714844 -109.710938 L 215.714844 65.117188 L 267.859375 65.117188 L 267.859375 -109.710938 Z M 215.714844 -109.710938 "/>
</g>
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 215.714844 19.167969 L 267.859375 19.167969 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 108.929688 L 311.3125 202.3125 "/>
<g clip-path="url(#clip-13)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 285.238281 -61.046875 L 285.238281 108.929688 L 337.382812 108.929688 L 337.382812 -61.046875 Z M 285.238281 -61.046875 "/>
</g>
<g clip-path="url(#clip-14)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 285.238281 -61.046875 L 285.238281 108.929688 L 337.382812 108.929688 L 337.382812 -61.046875 Z M 285.238281 -61.046875 "/>
</g>
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 285.238281 63.621094 L 337.382812 63.621094 "/>
<g clip-path="url(#clip-15)">
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 211.613281 L 353.023438 211.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 211.613281 "/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="29.828125" y="165.972656"/>
<use xlink:href="#glyph-0-1" x="36.057031" y="165.972656"/>
<use xlink:href="#glyph-0-1" x="42.285938" y="165.972656"/>
<use xlink:href="#glyph-0-1" x="48.514844" y="165.972656"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="29.828125" y="113"/>
<use xlink:href="#glyph-0-1" x="36.057031" y="113"/>
<use xlink:href="#glyph-0-1" x="42.285938" y="113"/>
<use xlink:href="#glyph-0-1" x="48.514844" y="113"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-3" x="23.597656" y="60.023438"/>
<use xlink:href="#glyph-0-4" x="29.826563" y="60.023438"/>
<use xlink:href="#glyph-0-1" x="36.055469" y="60.023438"/>
<use xlink:href="#glyph-0-1" x="42.284375" y="60.023438"/>
<use xlink:href="#glyph-0-1" x="48.513281" y="60.023438"/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 161.957031 L 61.019531 161.957031 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 108.980469 L 61.019531 108.980469 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 56.007812 L 61.019531 56.007812 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 215.101562 L 102.734375 211.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 215.101562 L 172.261719 211.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 215.101562 L 241.785156 211.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 215.101562 L 311.3125 211.613281 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-5" x="87.796875" y="225.921875"/>
<use xlink:href="#glyph-0-6" x="95.885156" y="225.921875"/>
<use xlink:href="#glyph-0-7" x="98.373437" y="225.921875"/>
<use xlink:href="#glyph-0-8" x="104.602344" y="225.921875"/>
<use xlink:href="#glyph-0-9" x="107.714062" y="225.921875"/>
<use xlink:href="#glyph-0-10" x="113.942969" y="225.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="157.007812" y="225.921875"/>
<use xlink:href="#glyph-0-12" x="162.607812" y="225.921875"/>
<use xlink:href="#glyph-0-10" x="168.836719" y="225.921875"/>
<use xlink:href="#glyph-0-6" x="172.566406" y="225.921875"/>
<use xlink:href="#glyph-0-7" x="175.054688" y="225.921875"/>
<use xlink:href="#glyph-0-13" x="181.283594" y="225.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="221.5625" y="225.921875"/>
<use xlink:href="#glyph-0-14" x="227.1625" y="225.921875"/>
<use xlink:href="#glyph-0-15" x="233.391406" y="225.921875"/>
<use xlink:href="#glyph-0-15" x="242.721094" y="225.921875"/>
<use xlink:href="#glyph-0-9" x="252.050781" y="225.921875"/>
<use xlink:href="#glyph-0-10" x="258.279688" y="225.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-16" x="292.632812" y="225.921875"/>
<use xlink:href="#glyph-0-14" x="298.861719" y="225.921875"/>
<use xlink:href="#glyph-0-8" x="305.090625" y="225.921875"/>
<use xlink:href="#glyph-0-14" x="308.202344" y="225.921875"/>
<use xlink:href="#glyph-0-15" x="314.43125" y="225.921875"/>
<use xlink:href="#glyph-0-7" x="323.760938" y="225.921875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="184.453125" y="241.929688"/>
<use xlink:href="#glyph-1-1" x="191.453125" y="241.929688"/>
<use xlink:href="#glyph-1-2" x="199.239258" y="241.929688"/>
<use xlink:href="#glyph-1-0" x="207.025391" y="241.929688"/>
<use xlink:href="#glyph-1-3" x="214.025391" y="241.929688"/>
<use xlink:href="#glyph-1-4" x="221.811523" y="241.929688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="17.015625" y="126.417969"/>
<use xlink:href="#glyph-2-1" x="17.015625" y="119.417969"/>
<use xlink:href="#glyph-2-2" x="17.015625" y="111.631836"/>
<use xlink:href="#glyph-2-3" x="17.015625" y="103.845703"/>
<use xlink:href="#glyph-2-4" x="17.015625" y="96.05957"/>
</g>
</svg>

After

(image error) Size: 40 KiB

Binary file not shown.

After

(image error) Size: 45 KiB

View File

@ -0,0 +1,269 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="432" viewBox="0 0 360 432">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
</g>
<g id="glyph-0-1">
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
</g>
<g id="glyph-0-2">
<path d="M 3.046875 -4.546875 C 3.484375 -4.546875 3.820312 -4.664062 4.0625 -4.90625 C 4.3125 -5.15625 4.4375 -5.445312 4.4375 -5.78125 C 4.4375 -6.070312 4.316406 -6.335938 4.078125 -6.578125 C 3.847656 -6.828125 3.492188 -6.953125 3.015625 -6.953125 C 2.535156 -6.953125 2.191406 -6.828125 1.984375 -6.578125 C 1.773438 -6.335938 1.671875 -6.054688 1.671875 -5.734375 C 1.671875 -5.359375 1.804688 -5.066406 2.078125 -4.859375 C 2.347656 -4.648438 2.671875 -4.546875 3.046875 -4.546875 Z M 3.109375 -0.671875 C 3.566406 -0.671875 3.941406 -0.789062 4.234375 -1.03125 C 4.535156 -1.28125 4.6875 -1.648438 4.6875 -2.140625 C 4.6875 -2.648438 4.53125 -3.035156 4.21875 -3.296875 C 3.914062 -3.554688 3.519531 -3.6875 3.03125 -3.6875 C 2.5625 -3.6875 2.175781 -3.550781 1.875 -3.28125 C 1.582031 -3.019531 1.4375 -2.648438 1.4375 -2.171875 C 1.4375 -1.765625 1.570312 -1.410156 1.84375 -1.109375 C 2.113281 -0.816406 2.535156 -0.671875 3.109375 -0.671875 Z M 1.703125 -4.171875 C 1.429688 -4.285156 1.21875 -4.421875 1.0625 -4.578125 C 0.78125 -4.867188 0.640625 -5.25 0.640625 -5.71875 C 0.640625 -6.300781 0.847656 -6.800781 1.265625 -7.21875 C 1.691406 -7.644531 2.289062 -7.859375 3.0625 -7.859375 C 3.820312 -7.859375 4.410156 -7.660156 4.828125 -7.265625 C 5.253906 -6.867188 5.46875 -6.40625 5.46875 -5.875 C 5.46875 -5.382812 5.347656 -4.988281 5.109375 -4.6875 C 4.960938 -4.519531 4.742188 -4.351562 4.453125 -4.1875 C 4.773438 -4.03125 5.03125 -3.859375 5.21875 -3.671875 C 5.570312 -3.304688 5.75 -2.832031 5.75 -2.25 C 5.75 -1.5625 5.515625 -0.976562 5.046875 -0.5 C 4.585938 -0.0195312 3.929688 0.21875 3.078125 0.21875 C 2.316406 0.21875 1.671875 0.0117188 1.140625 -0.390625 C 0.617188 -0.804688 0.359375 -1.410156 0.359375 -2.203125 C 0.359375 -2.660156 0.472656 -3.054688 0.703125 -3.390625 C 0.929688 -3.734375 1.265625 -3.992188 1.703125 -4.171875 Z M 1.703125 -4.171875 "/>
</g>
<g id="glyph-0-3">
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
</g>
<g id="glyph-0-4">
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
</g>
<g id="glyph-0-5">
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
</g>
<g id="glyph-0-6">
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
</g>
<g id="glyph-0-7">
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
</g>
<g id="glyph-0-8">
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
</g>
<g id="glyph-0-9">
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-10">
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
</g>
<g id="glyph-0-11">
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
</g>
<g id="glyph-0-12">
<path d="M 3.1875 -0.65625 C 3.65625 -0.65625 4.039062 -0.847656 4.34375 -1.234375 C 4.644531 -1.617188 4.796875 -2.195312 4.796875 -2.96875 C 4.796875 -3.4375 4.726562 -3.835938 4.59375 -4.171875 C 4.34375 -4.816406 3.875 -5.140625 3.1875 -5.140625 C 2.507812 -5.140625 2.046875 -4.796875 1.796875 -4.109375 C 1.660156 -3.742188 1.59375 -3.28125 1.59375 -2.71875 C 1.59375 -2.269531 1.660156 -1.882812 1.796875 -1.5625 C 2.046875 -0.957031 2.507812 -0.65625 3.1875 -0.65625 Z M 0.640625 -5.828125 L 1.609375 -5.828125 L 1.609375 -5.046875 C 1.796875 -5.316406 2.007812 -5.523438 2.25 -5.671875 C 2.582031 -5.890625 2.972656 -6 3.421875 -6 C 4.085938 -6 4.648438 -5.742188 5.109375 -5.234375 C 5.566406 -4.722656 5.796875 -4 5.796875 -3.0625 C 5.796875 -1.78125 5.460938 -0.867188 4.796875 -0.328125 C 4.378906 0.0234375 3.890625 0.203125 3.328125 0.203125 C 2.878906 0.203125 2.507812 0.101562 2.21875 -0.09375 C 2.039062 -0.195312 1.84375 -0.382812 1.625 -0.65625 L 1.625 2.328125 L 0.640625 2.328125 Z M 0.640625 -5.828125 "/>
</g>
<g id="glyph-0-13">
<path d="M 2.796875 -5.96875 C 3.253906 -5.96875 3.65625 -5.851562 4 -5.625 C 4.175781 -5.5 4.363281 -5.3125 4.5625 -5.0625 L 4.5625 -5.796875 L 5.46875 -5.796875 L 5.46875 -0.46875 C 5.46875 0.269531 5.359375 0.851562 5.140625 1.28125 C 4.734375 2.082031 3.960938 2.484375 2.828125 2.484375 C 2.191406 2.484375 1.660156 2.335938 1.234375 2.046875 C 0.804688 1.765625 0.566406 1.328125 0.515625 0.734375 L 1.515625 0.734375 C 1.566406 0.992188 1.660156 1.191406 1.796875 1.328125 C 2.023438 1.546875 2.375 1.65625 2.84375 1.65625 C 3.601562 1.65625 4.097656 1.390625 4.328125 0.859375 C 4.472656 0.546875 4.539062 -0.0078125 4.53125 -0.8125 C 4.332031 -0.507812 4.09375 -0.285156 3.8125 -0.140625 C 3.53125 0.00390625 3.164062 0.078125 2.71875 0.078125 C 2.082031 0.078125 1.523438 -0.144531 1.046875 -0.59375 C 0.566406 -1.050781 0.328125 -1.800781 0.328125 -2.84375 C 0.328125 -3.820312 0.566406 -4.585938 1.046875 -5.140625 C 1.523438 -5.691406 2.109375 -5.96875 2.796875 -5.96875 Z M 4.5625 -2.953125 C 4.5625 -3.679688 4.410156 -4.21875 4.109375 -4.5625 C 3.816406 -4.914062 3.4375 -5.09375 2.96875 -5.09375 C 2.28125 -5.09375 1.804688 -4.769531 1.546875 -4.125 C 1.410156 -3.769531 1.34375 -3.3125 1.34375 -2.75 C 1.34375 -2.09375 1.476562 -1.59375 1.75 -1.25 C 2.019531 -0.90625 2.378906 -0.734375 2.828125 -0.734375 C 3.535156 -0.734375 4.035156 -1.050781 4.328125 -1.6875 C 4.484375 -2.050781 4.5625 -2.472656 4.5625 -2.953125 Z M 2.90625 -6 Z M 2.90625 -6 "/>
</g>
<g id="glyph-0-14">
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-15">
<path d="M 0.71875 -5.859375 L 1.703125 -5.859375 L 1.703125 -5.03125 C 1.929688 -5.3125 2.140625 -5.519531 2.328125 -5.65625 C 2.648438 -5.875 3.019531 -5.984375 3.4375 -5.984375 C 3.90625 -5.984375 4.28125 -5.867188 4.5625 -5.640625 C 4.71875 -5.515625 4.863281 -5.320312 5 -5.0625 C 5.21875 -5.375 5.472656 -5.601562 5.765625 -5.75 C 6.066406 -5.90625 6.398438 -5.984375 6.765625 -5.984375 C 7.554688 -5.984375 8.09375 -5.703125 8.375 -5.140625 C 8.53125 -4.828125 8.609375 -4.414062 8.609375 -3.90625 L 8.609375 0 L 7.578125 0 L 7.578125 -4.0625 C 7.578125 -4.457031 7.476562 -4.726562 7.28125 -4.875 C 7.09375 -5.019531 6.859375 -5.09375 6.578125 -5.09375 C 6.191406 -5.09375 5.859375 -4.960938 5.578125 -4.703125 C 5.296875 -4.441406 5.15625 -4.007812 5.15625 -3.40625 L 5.15625 0 L 4.15625 0 L 4.15625 -3.828125 C 4.15625 -4.222656 4.109375 -4.507812 4.015625 -4.6875 C 3.867188 -4.96875 3.585938 -5.109375 3.171875 -5.109375 C 2.804688 -5.109375 2.46875 -4.960938 2.15625 -4.671875 C 1.851562 -4.378906 1.703125 -3.859375 1.703125 -3.109375 L 1.703125 0 L 0.71875 0 Z M 0.71875 -5.859375 "/>
</g>
<g id="glyph-0-16">
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-1-0">
<path d="M 1.640625 -2.296875 C 1.671875 -1.890625 1.769531 -1.578125 1.9375 -1.359375 C 2.25 -0.960938 2.789062 -0.765625 3.5625 -0.765625 C 4.007812 -0.765625 4.40625 -0.863281 4.75 -1.0625 C 5.101562 -1.257812 5.28125 -1.5625 5.28125 -1.96875 C 5.28125 -2.289062 5.140625 -2.53125 4.859375 -2.6875 C 4.679688 -2.789062 4.332031 -2.910156 3.8125 -3.046875 L 2.828125 -3.28125 C 2.203125 -3.4375 1.742188 -3.613281 1.453125 -3.8125 C 0.921875 -4.144531 0.65625 -4.601562 0.65625 -5.1875 C 0.65625 -5.882812 0.90625 -6.445312 1.40625 -6.875 C 1.90625 -7.300781 2.578125 -7.515625 3.421875 -7.515625 C 4.523438 -7.515625 5.316406 -7.191406 5.796875 -6.546875 C 6.109375 -6.128906 6.257812 -5.6875 6.25 -5.21875 L 5.09375 -5.21875 C 5.0625 -5.5 4.960938 -5.75 4.796875 -5.96875 C 4.515625 -6.289062 4.023438 -6.453125 3.328125 -6.453125 C 2.859375 -6.453125 2.503906 -6.363281 2.265625 -6.1875 C 2.023438 -6.007812 1.90625 -5.773438 1.90625 -5.484375 C 1.90625 -5.171875 2.0625 -4.914062 2.375 -4.71875 C 2.5625 -4.601562 2.832031 -4.503906 3.1875 -4.421875 L 4 -4.21875 C 4.882812 -4.007812 5.476562 -3.804688 5.78125 -3.609375 C 6.257812 -3.285156 6.5 -2.789062 6.5 -2.125 C 6.5 -1.46875 6.25 -0.898438 5.75 -0.421875 C 5.257812 0.0429688 4.507812 0.28125 3.5 0.28125 C 2.40625 0.28125 1.628906 0.0351562 1.171875 -0.453125 C 0.722656 -0.953125 0.484375 -1.566406 0.453125 -2.296875 Z M 3.453125 -7.5 Z M 3.453125 -7.5 "/>
</g>
<g id="glyph-1-1">
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
</g>
<g id="glyph-1-2">
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-3">
<path d="M 3.8125 -0.796875 C 4.625 -0.796875 5.179688 -1.101562 5.484375 -1.71875 C 5.785156 -2.332031 5.9375 -3.019531 5.9375 -3.78125 C 5.9375 -4.46875 5.828125 -5.023438 5.609375 -5.453125 C 5.265625 -6.117188 4.671875 -6.453125 3.828125 -6.453125 C 3.066406 -6.453125 2.515625 -6.164062 2.171875 -5.59375 C 1.835938 -5.019531 1.671875 -4.328125 1.671875 -3.515625 C 1.671875 -2.742188 1.835938 -2.097656 2.171875 -1.578125 C 2.515625 -1.054688 3.0625 -0.796875 3.8125 -0.796875 Z M 3.859375 -7.53125 C 4.796875 -7.53125 5.585938 -7.210938 6.234375 -6.578125 C 6.890625 -5.953125 7.21875 -5.03125 7.21875 -3.8125 C 7.21875 -2.632812 6.929688 -1.660156 6.359375 -0.890625 C 5.785156 -0.117188 4.894531 0.265625 3.6875 0.265625 C 2.6875 0.265625 1.890625 -0.0703125 1.296875 -0.75 C 0.703125 -1.4375 0.40625 -2.351562 0.40625 -3.5 C 0.40625 -4.726562 0.71875 -5.707031 1.34375 -6.4375 C 1.96875 -7.164062 2.804688 -7.53125 3.859375 -7.53125 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-4">
<path d="M 0.90625 -7.328125 L 2.078125 -7.328125 L 2.078125 -6.28125 C 2.421875 -6.707031 2.785156 -7.015625 3.171875 -7.203125 C 3.554688 -7.390625 3.988281 -7.484375 4.46875 -7.484375 C 5.5 -7.484375 6.195312 -7.125 6.5625 -6.40625 C 6.769531 -6 6.875 -5.429688 6.875 -4.703125 L 6.875 0 L 5.625 0 L 5.625 -4.609375 C 5.625 -5.054688 5.554688 -5.414062 5.421875 -5.6875 C 5.203125 -6.144531 4.804688 -6.375 4.234375 -6.375 C 3.941406 -6.375 3.703125 -6.347656 3.515625 -6.296875 C 3.179688 -6.191406 2.882812 -5.988281 2.625 -5.6875 C 2.414062 -5.445312 2.28125 -5.195312 2.21875 -4.9375 C 2.164062 -4.675781 2.140625 -4.304688 2.140625 -3.828125 L 2.140625 0 L 0.90625 0 Z M 3.796875 -7.5 Z M 3.796875 -7.5 "/>
</g>
<g id="glyph-2-0">
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
</g>
<g id="glyph-2-1">
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
</g>
<g id="glyph-2-2">
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
</g>
<g id="glyph-2-3">
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
</g>
<g id="glyph-2-4">
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 61.019531 6.972656 L 353.023438 6.972656 L 353.023438 391.613281 L 61.019531 391.613281 Z M 61.019531 6.972656 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 61.019531 297 L 353.023438 297 L 353.023438 299 L 61.019531 299 Z M 61.019531 297 "/>
</clipPath>
<clipPath id="clip-2">
<path clip-rule="nonzero" d="M 61.019531 198 L 353.023438 198 L 353.023438 200 L 61.019531 200 Z M 61.019531 198 "/>
</clipPath>
<clipPath id="clip-3">
<path clip-rule="nonzero" d="M 61.019531 98 L 353.023438 98 L 353.023438 100 L 61.019531 100 Z M 61.019531 98 "/>
</clipPath>
<clipPath id="clip-4">
<path clip-rule="nonzero" d="M 102 6.972656 L 104 6.972656 L 104 391.613281 L 102 391.613281 Z M 102 6.972656 "/>
</clipPath>
<clipPath id="clip-5">
<path clip-rule="nonzero" d="M 171 6.972656 L 173 6.972656 L 173 391.613281 L 171 391.613281 Z M 171 6.972656 "/>
</clipPath>
<clipPath id="clip-6">
<path clip-rule="nonzero" d="M 241 6.972656 L 243 6.972656 L 243 391.613281 L 241 391.613281 Z M 241 6.972656 "/>
</clipPath>
<clipPath id="clip-7">
<path clip-rule="nonzero" d="M 310 6.972656 L 312 6.972656 L 312 391.613281 L 310 391.613281 Z M 310 6.972656 "/>
</clipPath>
<clipPath id="clip-8">
<path clip-rule="nonzero" d="M 102 6.972656 L 104 6.972656 L 104 12 L 102 12 Z M 102 6.972656 "/>
</clipPath>
<clipPath id="clip-9">
<path clip-rule="nonzero" d="M 146 6.972656 L 199 6.972656 L 199 215 L 146 215 Z M 146 6.972656 "/>
</clipPath>
<clipPath id="clip-10">
<path clip-rule="nonzero" d="M 145 6.972656 L 199 6.972656 L 199 215 L 145 215 Z M 145 6.972656 "/>
</clipPath>
<clipPath id="clip-11">
<path clip-rule="nonzero" d="M 215 6.972656 L 268 6.972656 L 268 117 L 215 117 Z M 215 6.972656 "/>
</clipPath>
<clipPath id="clip-12">
<path clip-rule="nonzero" d="M 215 6.972656 L 269 6.972656 L 269 117 L 215 117 Z M 215 6.972656 "/>
</clipPath>
<clipPath id="clip-13">
<path clip-rule="nonzero" d="M 285 6.972656 L 338 6.972656 L 338 199 L 285 199 Z M 285 6.972656 "/>
</clipPath>
<clipPath id="clip-14">
<path clip-rule="nonzero" d="M 284 6.972656 L 338 6.972656 L 338 200 L 284 200 Z M 284 6.972656 "/>
</clipPath>
<clipPath id="clip-15">
<path clip-rule="nonzero" d="M 61.019531 6.972656 L 353.023438 6.972656 L 353.023438 391.613281 L 61.019531 391.613281 Z M 61.019531 6.972656 "/>
</clipPath>
</defs>
<rect x="-36" y="-43.2" width="432" height="518.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<rect x="-36" y="-43.2" width="432" height="518.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 432 L 360 432 L 360 0 L 0 0 Z M 0 432 "/>
<g clip-path="url(#clip-0)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 61.019531 391.613281 L 353.023438 391.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 391.613281 "/>
</g>
<g clip-path="url(#clip-1)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 298.28125 L 353.027344 298.28125 "/>
</g>
<g clip-path="url(#clip-2)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 198.707031 L 353.027344 198.707031 "/>
</g>
<g clip-path="url(#clip-3)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 99.136719 L 353.027344 99.136719 "/>
</g>
<g clip-path="url(#clip-4)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 391.613281 L 102.734375 6.972656 "/>
</g>
<g clip-path="url(#clip-5)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 391.613281 L 172.261719 6.972656 "/>
</g>
<g clip-path="url(#clip-6)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 391.613281 L 241.785156 6.972656 "/>
</g>
<g clip-path="url(#clip-7)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 391.613281 L 311.3125 6.972656 "/>
</g>
<g clip-path="url(#clip-8)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 11.433594 L 102.734375 -289.269531 "/>
</g>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 257.480469 L 102.734375 350.308594 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 76.664062 11.433594 L 76.664062 257.480469 L 128.808594 257.480469 L 128.808594 11.433594 Z M 76.664062 11.433594 "/>
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 76.664062 206.1875 L 128.808594 206.1875 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 214.109375 L 172.261719 367.035156 "/>
<g clip-path="url(#clip-9)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 146.1875 -80.816406 L 146.1875 214.109375 L 198.332031 214.109375 L 198.332031 -80.816406 Z M 146.1875 -80.816406 "/>
</g>
<g clip-path="url(#clip-10)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 146.1875 -80.816406 L 146.1875 214.109375 L 198.332031 214.109375 L 198.332031 -80.816406 Z M 146.1875 -80.816406 "/>
</g>
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 146.1875 126.53125 L 198.332031 126.53125 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 116.261719 L 241.785156 280.308594 "/>
<g clip-path="url(#clip-11)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 215.714844 -212.34375 L 215.714844 116.261719 L 267.859375 116.261719 L 267.859375 -212.34375 Z M 215.714844 -212.34375 "/>
</g>
<g clip-path="url(#clip-12)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 215.714844 -212.34375 L 215.714844 116.261719 L 267.859375 116.261719 L 267.859375 -212.34375 Z M 215.714844 -212.34375 "/>
</g>
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 215.714844 29.898438 L 267.859375 29.898438 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 198.609375 L 311.3125 374.128906 "/>
<g clip-path="url(#clip-13)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 285.238281 -120.875 L 285.238281 198.609375 L 337.382812 198.609375 L 337.382812 -120.875 Z M 285.238281 -120.875 "/>
</g>
<g clip-path="url(#clip-14)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 285.238281 -120.875 L 285.238281 198.609375 L 337.382812 198.609375 L 337.382812 -120.875 Z M 285.238281 -120.875 "/>
</g>
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 285.238281 113.449219 L 337.382812 113.449219 "/>
<g clip-path="url(#clip-15)">
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 391.613281 L 353.023438 391.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 391.613281 "/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="29.828125" y="302.296875"/>
<use xlink:href="#glyph-0-1" x="36.057031" y="302.296875"/>
<use xlink:href="#glyph-0-1" x="42.285938" y="302.296875"/>
<use xlink:href="#glyph-0-1" x="48.514844" y="302.296875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="29.828125" y="202.726562"/>
<use xlink:href="#glyph-0-1" x="36.057031" y="202.726562"/>
<use xlink:href="#glyph-0-1" x="42.285938" y="202.726562"/>
<use xlink:href="#glyph-0-1" x="48.514844" y="202.726562"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-3" x="23.597656" y="103.152344"/>
<use xlink:href="#glyph-0-4" x="29.826563" y="103.152344"/>
<use xlink:href="#glyph-0-1" x="36.055469" y="103.152344"/>
<use xlink:href="#glyph-0-1" x="42.284375" y="103.152344"/>
<use xlink:href="#glyph-0-1" x="48.513281" y="103.152344"/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 298.28125 L 61.019531 298.28125 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 198.707031 L 61.019531 198.707031 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 99.136719 L 61.019531 99.136719 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 395.101562 L 102.734375 391.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 395.101562 L 172.261719 391.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 395.101562 L 241.785156 391.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 395.101562 L 311.3125 391.613281 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-5" x="87.796875" y="405.921875"/>
<use xlink:href="#glyph-0-6" x="95.885156" y="405.921875"/>
<use xlink:href="#glyph-0-7" x="98.373437" y="405.921875"/>
<use xlink:href="#glyph-0-8" x="104.602344" y="405.921875"/>
<use xlink:href="#glyph-0-9" x="107.714062" y="405.921875"/>
<use xlink:href="#glyph-0-10" x="113.942969" y="405.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="157.007812" y="405.921875"/>
<use xlink:href="#glyph-0-12" x="162.607812" y="405.921875"/>
<use xlink:href="#glyph-0-10" x="168.836719" y="405.921875"/>
<use xlink:href="#glyph-0-6" x="172.566406" y="405.921875"/>
<use xlink:href="#glyph-0-7" x="175.054688" y="405.921875"/>
<use xlink:href="#glyph-0-13" x="181.283594" y="405.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="221.5625" y="405.921875"/>
<use xlink:href="#glyph-0-14" x="227.1625" y="405.921875"/>
<use xlink:href="#glyph-0-15" x="233.391406" y="405.921875"/>
<use xlink:href="#glyph-0-15" x="242.721094" y="405.921875"/>
<use xlink:href="#glyph-0-9" x="252.050781" y="405.921875"/>
<use xlink:href="#glyph-0-10" x="258.279688" y="405.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-16" x="292.632812" y="405.921875"/>
<use xlink:href="#glyph-0-14" x="298.861719" y="405.921875"/>
<use xlink:href="#glyph-0-8" x="305.090625" y="405.921875"/>
<use xlink:href="#glyph-0-14" x="308.202344" y="405.921875"/>
<use xlink:href="#glyph-0-15" x="314.43125" y="405.921875"/>
<use xlink:href="#glyph-0-7" x="323.760938" y="405.921875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="184.453125" y="421.929688"/>
<use xlink:href="#glyph-1-1" x="191.453125" y="421.929688"/>
<use xlink:href="#glyph-1-2" x="199.239258" y="421.929688"/>
<use xlink:href="#glyph-1-0" x="207.025391" y="421.929688"/>
<use xlink:href="#glyph-1-3" x="214.025391" y="421.929688"/>
<use xlink:href="#glyph-1-4" x="221.811523" y="421.929688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="17.015625" y="216.417969"/>
<use xlink:href="#glyph-2-1" x="17.015625" y="209.417969"/>
<use xlink:href="#glyph-2-2" x="17.015625" y="201.631836"/>
<use xlink:href="#glyph-2-3" x="17.015625" y="193.845703"/>
<use xlink:href="#glyph-2-4" x="17.015625" y="186.05957"/>
</g>
</svg>

After

(image error) Size: 40 KiB

Binary file not shown.

After

(image error) Size: 45 KiB

View File

@ -0,0 +1,186 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="432" viewBox="0 0 360 432">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
</g>
<g id="glyph-0-1">
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
</g>
<g id="glyph-0-2">
<path d="M 3.046875 -4.546875 C 3.484375 -4.546875 3.820312 -4.664062 4.0625 -4.90625 C 4.3125 -5.15625 4.4375 -5.445312 4.4375 -5.78125 C 4.4375 -6.070312 4.316406 -6.335938 4.078125 -6.578125 C 3.847656 -6.828125 3.492188 -6.953125 3.015625 -6.953125 C 2.535156 -6.953125 2.191406 -6.828125 1.984375 -6.578125 C 1.773438 -6.335938 1.671875 -6.054688 1.671875 -5.734375 C 1.671875 -5.359375 1.804688 -5.066406 2.078125 -4.859375 C 2.347656 -4.648438 2.671875 -4.546875 3.046875 -4.546875 Z M 3.109375 -0.671875 C 3.566406 -0.671875 3.941406 -0.789062 4.234375 -1.03125 C 4.535156 -1.28125 4.6875 -1.648438 4.6875 -2.140625 C 4.6875 -2.648438 4.53125 -3.035156 4.21875 -3.296875 C 3.914062 -3.554688 3.519531 -3.6875 3.03125 -3.6875 C 2.5625 -3.6875 2.175781 -3.550781 1.875 -3.28125 C 1.582031 -3.019531 1.4375 -2.648438 1.4375 -2.171875 C 1.4375 -1.765625 1.570312 -1.410156 1.84375 -1.109375 C 2.113281 -0.816406 2.535156 -0.671875 3.109375 -0.671875 Z M 1.703125 -4.171875 C 1.429688 -4.285156 1.21875 -4.421875 1.0625 -4.578125 C 0.78125 -4.867188 0.640625 -5.25 0.640625 -5.71875 C 0.640625 -6.300781 0.847656 -6.800781 1.265625 -7.21875 C 1.691406 -7.644531 2.289062 -7.859375 3.0625 -7.859375 C 3.820312 -7.859375 4.410156 -7.660156 4.828125 -7.265625 C 5.253906 -6.867188 5.46875 -6.40625 5.46875 -5.875 C 5.46875 -5.382812 5.347656 -4.988281 5.109375 -4.6875 C 4.960938 -4.519531 4.742188 -4.351562 4.453125 -4.1875 C 4.773438 -4.03125 5.03125 -3.859375 5.21875 -3.671875 C 5.570312 -3.304688 5.75 -2.832031 5.75 -2.25 C 5.75 -1.5625 5.515625 -0.976562 5.046875 -0.5 C 4.585938 -0.0195312 3.929688 0.21875 3.078125 0.21875 C 2.316406 0.21875 1.671875 0.0117188 1.140625 -0.390625 C 0.617188 -0.804688 0.359375 -1.410156 0.359375 -2.203125 C 0.359375 -2.660156 0.472656 -3.054688 0.703125 -3.390625 C 0.929688 -3.734375 1.265625 -3.992188 1.703125 -4.171875 Z M 1.703125 -4.171875 "/>
</g>
<g id="glyph-0-3">
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
</g>
<g id="glyph-0-4">
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
</g>
<g id="glyph-0-5">
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
</g>
<g id="glyph-0-6">
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
</g>
<g id="glyph-0-7">
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
</g>
<g id="glyph-0-8">
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
</g>
<g id="glyph-0-9">
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-10">
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
</g>
<g id="glyph-0-11">
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
</g>
<g id="glyph-0-12">
<path d="M 3.1875 -0.65625 C 3.65625 -0.65625 4.039062 -0.847656 4.34375 -1.234375 C 4.644531 -1.617188 4.796875 -2.195312 4.796875 -2.96875 C 4.796875 -3.4375 4.726562 -3.835938 4.59375 -4.171875 C 4.34375 -4.816406 3.875 -5.140625 3.1875 -5.140625 C 2.507812 -5.140625 2.046875 -4.796875 1.796875 -4.109375 C 1.660156 -3.742188 1.59375 -3.28125 1.59375 -2.71875 C 1.59375 -2.269531 1.660156 -1.882812 1.796875 -1.5625 C 2.046875 -0.957031 2.507812 -0.65625 3.1875 -0.65625 Z M 0.640625 -5.828125 L 1.609375 -5.828125 L 1.609375 -5.046875 C 1.796875 -5.316406 2.007812 -5.523438 2.25 -5.671875 C 2.582031 -5.890625 2.972656 -6 3.421875 -6 C 4.085938 -6 4.648438 -5.742188 5.109375 -5.234375 C 5.566406 -4.722656 5.796875 -4 5.796875 -3.0625 C 5.796875 -1.78125 5.460938 -0.867188 4.796875 -0.328125 C 4.378906 0.0234375 3.890625 0.203125 3.328125 0.203125 C 2.878906 0.203125 2.507812 0.101562 2.21875 -0.09375 C 2.039062 -0.195312 1.84375 -0.382812 1.625 -0.65625 L 1.625 2.328125 L 0.640625 2.328125 Z M 0.640625 -5.828125 "/>
</g>
<g id="glyph-0-13">
<path d="M 2.796875 -5.96875 C 3.253906 -5.96875 3.65625 -5.851562 4 -5.625 C 4.175781 -5.5 4.363281 -5.3125 4.5625 -5.0625 L 4.5625 -5.796875 L 5.46875 -5.796875 L 5.46875 -0.46875 C 5.46875 0.269531 5.359375 0.851562 5.140625 1.28125 C 4.734375 2.082031 3.960938 2.484375 2.828125 2.484375 C 2.191406 2.484375 1.660156 2.335938 1.234375 2.046875 C 0.804688 1.765625 0.566406 1.328125 0.515625 0.734375 L 1.515625 0.734375 C 1.566406 0.992188 1.660156 1.191406 1.796875 1.328125 C 2.023438 1.546875 2.375 1.65625 2.84375 1.65625 C 3.601562 1.65625 4.097656 1.390625 4.328125 0.859375 C 4.472656 0.546875 4.539062 -0.0078125 4.53125 -0.8125 C 4.332031 -0.507812 4.09375 -0.285156 3.8125 -0.140625 C 3.53125 0.00390625 3.164062 0.078125 2.71875 0.078125 C 2.082031 0.078125 1.523438 -0.144531 1.046875 -0.59375 C 0.566406 -1.050781 0.328125 -1.800781 0.328125 -2.84375 C 0.328125 -3.820312 0.566406 -4.585938 1.046875 -5.140625 C 1.523438 -5.691406 2.109375 -5.96875 2.796875 -5.96875 Z M 4.5625 -2.953125 C 4.5625 -3.679688 4.410156 -4.21875 4.109375 -4.5625 C 3.816406 -4.914062 3.4375 -5.09375 2.96875 -5.09375 C 2.28125 -5.09375 1.804688 -4.769531 1.546875 -4.125 C 1.410156 -3.769531 1.34375 -3.3125 1.34375 -2.75 C 1.34375 -2.09375 1.476562 -1.59375 1.75 -1.25 C 2.019531 -0.90625 2.378906 -0.734375 2.828125 -0.734375 C 3.535156 -0.734375 4.035156 -1.050781 4.328125 -1.6875 C 4.484375 -2.050781 4.5625 -2.472656 4.5625 -2.953125 Z M 2.90625 -6 Z M 2.90625 -6 "/>
</g>
<g id="glyph-0-14">
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-15">
<path d="M 0.71875 -5.859375 L 1.703125 -5.859375 L 1.703125 -5.03125 C 1.929688 -5.3125 2.140625 -5.519531 2.328125 -5.65625 C 2.648438 -5.875 3.019531 -5.984375 3.4375 -5.984375 C 3.90625 -5.984375 4.28125 -5.867188 4.5625 -5.640625 C 4.71875 -5.515625 4.863281 -5.320312 5 -5.0625 C 5.21875 -5.375 5.472656 -5.601562 5.765625 -5.75 C 6.066406 -5.90625 6.398438 -5.984375 6.765625 -5.984375 C 7.554688 -5.984375 8.09375 -5.703125 8.375 -5.140625 C 8.53125 -4.828125 8.609375 -4.414062 8.609375 -3.90625 L 8.609375 0 L 7.578125 0 L 7.578125 -4.0625 C 7.578125 -4.457031 7.476562 -4.726562 7.28125 -4.875 C 7.09375 -5.019531 6.859375 -5.09375 6.578125 -5.09375 C 6.191406 -5.09375 5.859375 -4.960938 5.578125 -4.703125 C 5.296875 -4.441406 5.15625 -4.007812 5.15625 -3.40625 L 5.15625 0 L 4.15625 0 L 4.15625 -3.828125 C 4.15625 -4.222656 4.109375 -4.507812 4.015625 -4.6875 C 3.867188 -4.96875 3.585938 -5.109375 3.171875 -5.109375 C 2.804688 -5.109375 2.46875 -4.960938 2.15625 -4.671875 C 1.851562 -4.378906 1.703125 -3.859375 1.703125 -3.109375 L 1.703125 0 L 0.71875 0 Z M 0.71875 -5.859375 "/>
</g>
<g id="glyph-0-16">
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-1-0">
<path d="M 1.640625 -2.296875 C 1.671875 -1.890625 1.769531 -1.578125 1.9375 -1.359375 C 2.25 -0.960938 2.789062 -0.765625 3.5625 -0.765625 C 4.007812 -0.765625 4.40625 -0.863281 4.75 -1.0625 C 5.101562 -1.257812 5.28125 -1.5625 5.28125 -1.96875 C 5.28125 -2.289062 5.140625 -2.53125 4.859375 -2.6875 C 4.679688 -2.789062 4.332031 -2.910156 3.8125 -3.046875 L 2.828125 -3.28125 C 2.203125 -3.4375 1.742188 -3.613281 1.453125 -3.8125 C 0.921875 -4.144531 0.65625 -4.601562 0.65625 -5.1875 C 0.65625 -5.882812 0.90625 -6.445312 1.40625 -6.875 C 1.90625 -7.300781 2.578125 -7.515625 3.421875 -7.515625 C 4.523438 -7.515625 5.316406 -7.191406 5.796875 -6.546875 C 6.109375 -6.128906 6.257812 -5.6875 6.25 -5.21875 L 5.09375 -5.21875 C 5.0625 -5.5 4.960938 -5.75 4.796875 -5.96875 C 4.515625 -6.289062 4.023438 -6.453125 3.328125 -6.453125 C 2.859375 -6.453125 2.503906 -6.363281 2.265625 -6.1875 C 2.023438 -6.007812 1.90625 -5.773438 1.90625 -5.484375 C 1.90625 -5.171875 2.0625 -4.914062 2.375 -4.71875 C 2.5625 -4.601562 2.832031 -4.503906 3.1875 -4.421875 L 4 -4.21875 C 4.882812 -4.007812 5.476562 -3.804688 5.78125 -3.609375 C 6.257812 -3.285156 6.5 -2.789062 6.5 -2.125 C 6.5 -1.46875 6.25 -0.898438 5.75 -0.421875 C 5.257812 0.0429688 4.507812 0.28125 3.5 0.28125 C 2.40625 0.28125 1.628906 0.0351562 1.171875 -0.453125 C 0.722656 -0.953125 0.484375 -1.566406 0.453125 -2.296875 Z M 3.453125 -7.5 Z M 3.453125 -7.5 "/>
</g>
<g id="glyph-1-1">
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
</g>
<g id="glyph-1-2">
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-3">
<path d="M 3.8125 -0.796875 C 4.625 -0.796875 5.179688 -1.101562 5.484375 -1.71875 C 5.785156 -2.332031 5.9375 -3.019531 5.9375 -3.78125 C 5.9375 -4.46875 5.828125 -5.023438 5.609375 -5.453125 C 5.265625 -6.117188 4.671875 -6.453125 3.828125 -6.453125 C 3.066406 -6.453125 2.515625 -6.164062 2.171875 -5.59375 C 1.835938 -5.019531 1.671875 -4.328125 1.671875 -3.515625 C 1.671875 -2.742188 1.835938 -2.097656 2.171875 -1.578125 C 2.515625 -1.054688 3.0625 -0.796875 3.8125 -0.796875 Z M 3.859375 -7.53125 C 4.796875 -7.53125 5.585938 -7.210938 6.234375 -6.578125 C 6.890625 -5.953125 7.21875 -5.03125 7.21875 -3.8125 C 7.21875 -2.632812 6.929688 -1.660156 6.359375 -0.890625 C 5.785156 -0.117188 4.894531 0.265625 3.6875 0.265625 C 2.6875 0.265625 1.890625 -0.0703125 1.296875 -0.75 C 0.703125 -1.4375 0.40625 -2.351562 0.40625 -3.5 C 0.40625 -4.726562 0.71875 -5.707031 1.34375 -6.4375 C 1.96875 -7.164062 2.804688 -7.53125 3.859375 -7.53125 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-4">
<path d="M 0.90625 -7.328125 L 2.078125 -7.328125 L 2.078125 -6.28125 C 2.421875 -6.707031 2.785156 -7.015625 3.171875 -7.203125 C 3.554688 -7.390625 3.988281 -7.484375 4.46875 -7.484375 C 5.5 -7.484375 6.195312 -7.125 6.5625 -6.40625 C 6.769531 -6 6.875 -5.429688 6.875 -4.703125 L 6.875 0 L 5.625 0 L 5.625 -4.609375 C 5.625 -5.054688 5.554688 -5.414062 5.421875 -5.6875 C 5.203125 -6.144531 4.804688 -6.375 4.234375 -6.375 C 3.941406 -6.375 3.703125 -6.347656 3.515625 -6.296875 C 3.179688 -6.191406 2.882812 -5.988281 2.625 -5.6875 C 2.414062 -5.445312 2.28125 -5.195312 2.21875 -4.9375 C 2.164062 -4.675781 2.140625 -4.304688 2.140625 -3.828125 L 2.140625 0 L 0.90625 0 Z M 3.796875 -7.5 Z M 3.796875 -7.5 "/>
</g>
<g id="glyph-2-0">
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
</g>
<g id="glyph-2-1">
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
</g>
<g id="glyph-2-2">
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
</g>
<g id="glyph-2-3">
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
</g>
<g id="glyph-2-4">
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
</g>
</g>
</defs>
<rect x="-36" y="-43.2" width="432" height="518.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<rect x="-36" y="-43.2" width="432" height="518.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 432 L 360 432 L 360 0 L 0 0 Z M 0 432 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 61.019531 391.613281 L 353.023438 391.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 391.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 298.28125 L 353.027344 298.28125 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 198.707031 L 353.027344 198.707031 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 99.136719 L 353.027344 99.136719 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 391.613281 L 102.734375 6.972656 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 391.613281 L 172.261719 6.972656 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 391.613281 L 241.785156 6.972656 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 391.613281 L 311.3125 6.972656 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 11.433594 L 102.734375 -289.269531 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 257.480469 L 102.734375 350.308594 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 76.664062 11.433594 L 76.664062 257.480469 L 128.808594 257.480469 L 128.808594 11.433594 Z M 76.664062 11.433594 "/>
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 76.664062 206.1875 L 128.808594 206.1875 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 214.109375 L 172.261719 367.035156 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 146.1875 -80.816406 L 146.1875 214.109375 L 198.332031 214.109375 L 198.332031 -80.816406 Z M 146.1875 -80.816406 "/>
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 146.1875 126.53125 L 198.332031 126.53125 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 116.261719 L 241.785156 280.308594 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 215.714844 -212.34375 L 215.714844 116.261719 L 267.859375 116.261719 L 267.859375 -212.34375 Z M 215.714844 -212.34375 "/>
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 215.714844 29.898438 L 267.859375 29.898438 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 198.609375 L 311.3125 374.128906 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 285.238281 -120.875 L 285.238281 198.609375 L 337.382812 198.609375 L 337.382812 -120.875 Z M 285.238281 -120.875 "/>
<path fill="none" stroke-width="2.133957" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 285.238281 113.449219 L 337.382812 113.449219 "/>
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 391.613281 L 353.023438 391.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 391.613281 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="29.828125" y="302.296875"/>
<use xlink:href="#glyph-0-1" x="36.057031" y="302.296875"/>
<use xlink:href="#glyph-0-1" x="42.285938" y="302.296875"/>
<use xlink:href="#glyph-0-1" x="48.514844" y="302.296875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="29.828125" y="202.726562"/>
<use xlink:href="#glyph-0-1" x="36.057031" y="202.726562"/>
<use xlink:href="#glyph-0-1" x="42.285938" y="202.726562"/>
<use xlink:href="#glyph-0-1" x="48.514844" y="202.726562"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-3" x="23.597656" y="103.152344"/>
<use xlink:href="#glyph-0-4" x="29.826563" y="103.152344"/>
<use xlink:href="#glyph-0-1" x="36.055469" y="103.152344"/>
<use xlink:href="#glyph-0-1" x="42.284375" y="103.152344"/>
<use xlink:href="#glyph-0-1" x="48.513281" y="103.152344"/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 298.28125 L 61.019531 298.28125 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 198.707031 L 61.019531 198.707031 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 99.136719 L 61.019531 99.136719 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 102.734375 395.101562 L 102.734375 391.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.261719 395.101562 L 172.261719 391.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.785156 395.101562 L 241.785156 391.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 311.3125 395.101562 L 311.3125 391.613281 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-5" x="87.796875" y="405.921875"/>
<use xlink:href="#glyph-0-6" x="95.885156" y="405.921875"/>
<use xlink:href="#glyph-0-7" x="98.373437" y="405.921875"/>
<use xlink:href="#glyph-0-8" x="104.602344" y="405.921875"/>
<use xlink:href="#glyph-0-9" x="107.714062" y="405.921875"/>
<use xlink:href="#glyph-0-10" x="113.942969" y="405.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="157.007812" y="405.921875"/>
<use xlink:href="#glyph-0-12" x="162.607812" y="405.921875"/>
<use xlink:href="#glyph-0-10" x="168.836719" y="405.921875"/>
<use xlink:href="#glyph-0-6" x="172.566406" y="405.921875"/>
<use xlink:href="#glyph-0-7" x="175.054688" y="405.921875"/>
<use xlink:href="#glyph-0-13" x="181.283594" y="405.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="221.5625" y="405.921875"/>
<use xlink:href="#glyph-0-14" x="227.1625" y="405.921875"/>
<use xlink:href="#glyph-0-15" x="233.391406" y="405.921875"/>
<use xlink:href="#glyph-0-15" x="242.721094" y="405.921875"/>
<use xlink:href="#glyph-0-9" x="252.050781" y="405.921875"/>
<use xlink:href="#glyph-0-10" x="258.279688" y="405.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-16" x="292.632812" y="405.921875"/>
<use xlink:href="#glyph-0-14" x="298.861719" y="405.921875"/>
<use xlink:href="#glyph-0-8" x="305.090625" y="405.921875"/>
<use xlink:href="#glyph-0-14" x="308.202344" y="405.921875"/>
<use xlink:href="#glyph-0-15" x="314.43125" y="405.921875"/>
<use xlink:href="#glyph-0-7" x="323.760938" y="405.921875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="184.453125" y="421.929688"/>
<use xlink:href="#glyph-1-1" x="191.453125" y="421.929688"/>
<use xlink:href="#glyph-1-2" x="199.239258" y="421.929688"/>
<use xlink:href="#glyph-1-0" x="207.025391" y="421.929688"/>
<use xlink:href="#glyph-1-3" x="214.025391" y="421.929688"/>
<use xlink:href="#glyph-1-4" x="221.811523" y="421.929688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="17.015625" y="216.417969"/>
<use xlink:href="#glyph-2-1" x="17.015625" y="209.417969"/>
<use xlink:href="#glyph-2-2" x="17.015625" y="201.631836"/>
<use xlink:href="#glyph-2-3" x="17.015625" y="193.845703"/>
<use xlink:href="#glyph-2-4" x="17.015625" y="186.05957"/>
</g>
</svg>

After

(image error) Size: 37 KiB

Binary file not shown.

After

(image error) Size: 101 KiB

View File

@ -0,0 +1,439 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="432" viewBox="0 0 360 432">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 1.296875 -1.8125 C 1.316406 -1.488281 1.394531 -1.238281 1.53125 -1.0625 C 1.78125 -0.75 2.207031 -0.59375 2.8125 -0.59375 C 3.164062 -0.59375 3.476562 -0.671875 3.75 -0.828125 C 4.03125 -0.984375 4.171875 -1.226562 4.171875 -1.5625 C 4.171875 -1.8125 4.054688 -2 3.828125 -2.125 C 3.691406 -2.207031 3.414062 -2.300781 3 -2.40625 L 2.234375 -2.59375 C 1.742188 -2.71875 1.378906 -2.851562 1.140625 -3 C 0.722656 -3.257812 0.515625 -3.625 0.515625 -4.09375 C 0.515625 -4.632812 0.710938 -5.070312 1.109375 -5.40625 C 1.503906 -5.75 2.035156 -5.921875 2.703125 -5.921875 C 3.566406 -5.921875 4.191406 -5.664062 4.578125 -5.15625 C 4.816406 -4.832031 4.9375 -4.484375 4.9375 -4.109375 L 4.015625 -4.109375 C 3.992188 -4.328125 3.914062 -4.53125 3.78125 -4.71875 C 3.5625 -4.96875 3.175781 -5.09375 2.625 -5.09375 C 2.257812 -5.09375 1.976562 -5.019531 1.78125 -4.875 C 1.59375 -4.738281 1.5 -4.554688 1.5 -4.328125 C 1.5 -4.078125 1.625 -3.878906 1.875 -3.734375 C 2.019531 -3.640625 2.234375 -3.554688 2.515625 -3.484375 L 3.15625 -3.328125 C 3.851562 -3.160156 4.320312 -3 4.5625 -2.84375 C 4.9375 -2.59375 5.125 -2.203125 5.125 -1.671875 C 5.125 -1.160156 4.925781 -0.71875 4.53125 -0.34375 C 4.144531 0.0273438 3.550781 0.21875 2.75 0.21875 C 1.894531 0.21875 1.285156 0.0234375 0.921875 -0.359375 C 0.566406 -0.753906 0.378906 -1.238281 0.359375 -1.8125 Z M 2.71875 -5.921875 Z M 2.71875 -5.921875 "/>
</g>
<g id="glyph-0-1">
<path d="M 3.15625 -0.65625 C 3.601562 -0.65625 3.976562 -0.84375 4.28125 -1.21875 C 4.582031 -1.601562 4.734375 -2.171875 4.734375 -2.921875 C 4.734375 -3.378906 4.664062 -3.773438 4.53125 -4.109375 C 4.28125 -4.742188 3.820312 -5.0625 3.15625 -5.0625 C 2.476562 -5.0625 2.015625 -4.726562 1.765625 -4.0625 C 1.628906 -3.695312 1.5625 -3.238281 1.5625 -2.6875 C 1.5625 -2.238281 1.628906 -1.859375 1.765625 -1.546875 C 2.015625 -0.953125 2.476562 -0.65625 3.15625 -0.65625 Z M 0.640625 -5.75 L 1.578125 -5.75 L 1.578125 -4.984375 C 1.773438 -5.242188 1.988281 -5.445312 2.21875 -5.59375 C 2.539062 -5.8125 2.925781 -5.921875 3.375 -5.921875 C 4.03125 -5.921875 4.582031 -5.664062 5.03125 -5.15625 C 5.488281 -4.65625 5.71875 -3.941406 5.71875 -3.015625 C 5.71875 -1.753906 5.390625 -0.851562 4.734375 -0.3125 C 4.316406 0.0195312 3.832031 0.1875 3.28125 0.1875 C 2.84375 0.1875 2.476562 0.0898438 2.1875 -0.09375 C 2.007812 -0.195312 1.816406 -0.378906 1.609375 -0.640625 L 1.609375 2.296875 L 0.640625 2.296875 Z M 0.640625 -5.75 "/>
</g>
<g id="glyph-0-2">
<path d="M 0.734375 -5.78125 L 1.65625 -5.78125 L 1.65625 -4.78125 C 1.738281 -4.976562 1.925781 -5.210938 2.21875 -5.484375 C 2.507812 -5.765625 2.847656 -5.90625 3.234375 -5.90625 C 3.253906 -5.90625 3.285156 -5.898438 3.328125 -5.890625 C 3.367188 -5.890625 3.441406 -5.882812 3.546875 -5.875 L 3.546875 -4.859375 C 3.492188 -4.867188 3.441406 -4.875 3.390625 -4.875 C 3.335938 -4.875 3.285156 -4.875 3.234375 -4.875 C 2.742188 -4.875 2.363281 -4.71875 2.09375 -4.40625 C 1.832031 -4.09375 1.703125 -3.734375 1.703125 -3.328125 L 1.703125 0 L 0.734375 0 Z M 0.734375 -5.78125 "/>
</g>
<g id="glyph-0-3">
<path d="M 0.71875 -5.75 L 1.703125 -5.75 L 1.703125 0 L 0.71875 0 Z M 0.71875 -7.921875 L 1.703125 -7.921875 L 1.703125 -6.828125 L 0.71875 -6.828125 Z M 0.71875 -7.921875 "/>
</g>
<g id="glyph-0-4">
<path d="M 0.71875 -5.78125 L 1.640625 -5.78125 L 1.640625 -4.953125 C 1.910156 -5.296875 2.195312 -5.539062 2.5 -5.6875 C 2.8125 -5.832031 3.148438 -5.90625 3.515625 -5.90625 C 4.335938 -5.90625 4.894531 -5.617188 5.1875 -5.046875 C 5.34375 -4.734375 5.421875 -4.285156 5.421875 -3.703125 L 5.421875 0 L 4.4375 0 L 4.4375 -3.640625 C 4.4375 -3.992188 4.382812 -4.28125 4.28125 -4.5 C 4.101562 -4.851562 3.789062 -5.03125 3.34375 -5.03125 C 3.113281 -5.03125 2.921875 -5.007812 2.765625 -4.96875 C 2.503906 -4.882812 2.273438 -4.722656 2.078125 -4.484375 C 1.910156 -4.296875 1.800781 -4.097656 1.75 -3.890625 C 1.707031 -3.691406 1.6875 -3.40625 1.6875 -3.03125 L 1.6875 0 L 0.71875 0 Z M 3 -5.921875 Z M 3 -5.921875 "/>
</g>
<g id="glyph-0-5">
<path d="M 2.75 -5.875 C 3.207031 -5.875 3.601562 -5.765625 3.9375 -5.546875 C 4.125 -5.421875 4.3125 -5.238281 4.5 -5 L 4.5 -5.71875 L 5.390625 -5.71875 L 5.390625 -0.46875 C 5.390625 0.257812 5.285156 0.835938 5.078125 1.265625 C 4.671875 2.046875 3.90625 2.4375 2.78125 2.4375 C 2.164062 2.4375 1.644531 2.296875 1.21875 2.015625 C 0.789062 1.742188 0.550781 1.3125 0.5 0.71875 L 1.5 0.71875 C 1.539062 0.976562 1.632812 1.175781 1.78125 1.3125 C 2 1.53125 2.34375 1.640625 2.8125 1.640625 C 3.550781 1.640625 4.035156 1.378906 4.265625 0.859375 C 4.410156 0.546875 4.472656 -0.00390625 4.453125 -0.796875 C 4.265625 -0.503906 4.03125 -0.285156 3.75 -0.140625 C 3.476562 -0.00390625 3.117188 0.0625 2.671875 0.0625 C 2.046875 0.0625 1.5 -0.15625 1.03125 -0.59375 C 0.5625 -1.039062 0.328125 -1.773438 0.328125 -2.796875 C 0.328125 -3.765625 0.5625 -4.519531 1.03125 -5.0625 C 1.507812 -5.601562 2.082031 -5.875 2.75 -5.875 Z M 4.5 -2.90625 C 4.5 -3.625 4.347656 -4.15625 4.046875 -4.5 C 3.753906 -4.84375 3.378906 -5.015625 2.921875 -5.015625 C 2.242188 -5.015625 1.78125 -4.695312 1.53125 -4.0625 C 1.394531 -3.71875 1.328125 -3.269531 1.328125 -2.71875 C 1.328125 -2.070312 1.457031 -1.578125 1.71875 -1.234375 C 1.988281 -0.890625 2.34375 -0.71875 2.78125 -0.71875 C 3.476562 -0.71875 3.972656 -1.035156 4.265625 -1.671875 C 4.421875 -2.023438 4.5 -2.4375 4.5 -2.90625 Z M 2.859375 -5.921875 Z M 2.859375 -5.921875 "/>
</g>
<g id="glyph-0-6">
<path d="M 1.6875 -5.78125 L 1.6875 -1.9375 C 1.6875 -1.644531 1.734375 -1.40625 1.828125 -1.21875 C 1.992188 -0.875 2.3125 -0.703125 2.78125 -0.703125 C 3.457031 -0.703125 3.921875 -1.003906 4.171875 -1.609375 C 4.304688 -1.929688 4.375 -2.375 4.375 -2.9375 L 4.375 -5.78125 L 5.34375 -5.78125 L 5.34375 0 L 4.421875 0 L 4.4375 -0.859375 C 4.3125 -0.628906 4.15625 -0.441406 3.96875 -0.296875 C 3.59375 0.00390625 3.140625 0.15625 2.609375 0.15625 C 1.785156 0.15625 1.226562 -0.117188 0.9375 -0.671875 C 0.769531 -0.960938 0.6875 -1.351562 0.6875 -1.84375 L 0.6875 -5.78125 Z M 3.015625 -5.921875 Z M 3.015625 -5.921875 "/>
</g>
<g id="glyph-0-7">
<path d="M 0.71875 -5.78125 L 1.671875 -5.78125 L 1.671875 -4.953125 C 1.898438 -5.242188 2.109375 -5.453125 2.296875 -5.578125 C 2.617188 -5.796875 2.984375 -5.90625 3.390625 -5.90625 C 3.847656 -5.90625 4.21875 -5.789062 4.5 -5.5625 C 4.65625 -5.4375 4.800781 -5.25 4.9375 -5 C 5.144531 -5.300781 5.394531 -5.523438 5.6875 -5.671875 C 5.976562 -5.828125 6.304688 -5.90625 6.671875 -5.90625 C 7.453125 -5.90625 7.984375 -5.625 8.265625 -5.0625 C 8.410156 -4.757812 8.484375 -4.351562 8.484375 -3.84375 L 8.484375 0 L 7.46875 0 L 7.46875 -4.015625 C 7.46875 -4.398438 7.375 -4.660156 7.1875 -4.796875 C 7 -4.941406 6.765625 -5.015625 6.484375 -5.015625 C 6.097656 -5.015625 5.769531 -4.882812 5.5 -4.625 C 5.226562 -4.375 5.09375 -3.953125 5.09375 -3.359375 L 5.09375 0 L 4.09375 0 L 4.09375 -3.765625 C 4.09375 -4.160156 4.046875 -4.445312 3.953125 -4.625 C 3.804688 -4.894531 3.535156 -5.03125 3.140625 -5.03125 C 2.765625 -5.03125 2.425781 -4.890625 2.125 -4.609375 C 1.832031 -4.328125 1.6875 -3.8125 1.6875 -3.0625 L 1.6875 0 L 0.71875 0 Z M 0.71875 -5.78125 "/>
</g>
<g id="glyph-0-8">
<path d="M 3.125 -5.90625 C 3.53125 -5.90625 3.925781 -5.804688 4.3125 -5.609375 C 4.695312 -5.421875 4.988281 -5.175781 5.1875 -4.875 C 5.382812 -4.582031 5.515625 -4.238281 5.578125 -3.84375 C 5.628906 -3.582031 5.65625 -3.160156 5.65625 -2.578125 L 1.421875 -2.578125 C 1.441406 -1.992188 1.582031 -1.523438 1.84375 -1.171875 C 2.101562 -0.816406 2.503906 -0.640625 3.046875 -0.640625 C 3.554688 -0.640625 3.960938 -0.804688 4.265625 -1.140625 C 4.429688 -1.328125 4.550781 -1.550781 4.625 -1.8125 L 5.578125 -1.8125 C 5.554688 -1.601562 5.472656 -1.367188 5.328125 -1.109375 C 5.191406 -0.847656 5.035156 -0.632812 4.859375 -0.46875 C 4.554688 -0.175781 4.191406 0.0195312 3.765625 0.125 C 3.523438 0.175781 3.257812 0.203125 2.96875 0.203125 C 2.25 0.203125 1.640625 -0.0546875 1.140625 -0.578125 C 0.640625 -1.097656 0.390625 -1.832031 0.390625 -2.78125 C 0.390625 -3.707031 0.640625 -4.457031 1.140625 -5.03125 C 1.648438 -5.613281 2.3125 -5.90625 3.125 -5.90625 Z M 4.671875 -3.34375 C 4.628906 -3.769531 4.535156 -4.109375 4.390625 -4.359375 C 4.117188 -4.828125 3.675781 -5.0625 3.0625 -5.0625 C 2.613281 -5.0625 2.238281 -4.898438 1.9375 -4.578125 C 1.632812 -4.253906 1.472656 -3.84375 1.453125 -3.34375 Z M 3.03125 -5.921875 Z M 3.03125 -5.921875 "/>
</g>
<g id="glyph-0-9">
<path d="M 1.15625 -5.78125 L 2.265625 -1.21875 L 3.390625 -5.78125 L 4.484375 -5.78125 L 5.625 -1.25 L 6.796875 -5.78125 L 7.765625 -5.78125 L 6.09375 0 L 5.09375 0 L 3.90625 -4.46875 L 2.765625 0 L 1.765625 0 L 0.09375 -5.78125 Z M 1.15625 -5.78125 "/>
</g>
<g id="glyph-0-10">
<path d="M 0.90625 -7.390625 L 1.890625 -7.390625 L 1.890625 -5.78125 L 2.8125 -5.78125 L 2.8125 -4.984375 L 1.890625 -4.984375 L 1.890625 -1.21875 C 1.890625 -1.007812 1.957031 -0.875 2.09375 -0.8125 C 2.164062 -0.769531 2.289062 -0.75 2.46875 -0.75 C 2.519531 -0.75 2.570312 -0.75 2.625 -0.75 C 2.675781 -0.75 2.738281 -0.753906 2.8125 -0.765625 L 2.8125 0 C 2.695312 0.03125 2.578125 0.0507812 2.453125 0.0625 C 2.335938 0.0820312 2.210938 0.09375 2.078125 0.09375 C 1.617188 0.09375 1.304688 -0.0195312 1.140625 -0.25 C 0.984375 -0.488281 0.90625 -0.789062 0.90625 -1.15625 L 0.90625 -4.984375 L 0.125 -4.984375 L 0.125 -5.78125 L 0.90625 -5.78125 Z M 0.90625 -7.390625 "/>
</g>
<g id="glyph-1-0">
<path d="M 1.390625 -2 C 1.453125 -1.4375 1.710938 -1.046875 2.171875 -0.828125 C 2.398438 -0.722656 2.664062 -0.671875 2.96875 -0.671875 C 3.550781 -0.671875 3.984375 -0.851562 4.265625 -1.21875 C 4.546875 -1.59375 4.6875 -2.007812 4.6875 -2.46875 C 4.6875 -3.007812 4.519531 -3.425781 4.1875 -3.71875 C 3.851562 -4.019531 3.457031 -4.171875 3 -4.171875 C 2.65625 -4.171875 2.359375 -4.101562 2.109375 -3.96875 C 1.867188 -3.84375 1.664062 -3.664062 1.5 -3.4375 L 0.640625 -3.484375 L 1.234375 -7.703125 L 5.3125 -7.703125 L 5.3125 -6.75 L 1.984375 -6.75 L 1.640625 -4.578125 C 1.828125 -4.710938 2.003906 -4.816406 2.171875 -4.890625 C 2.460938 -5.003906 2.796875 -5.0625 3.171875 -5.0625 C 3.890625 -5.0625 4.5 -4.828125 5 -4.359375 C 5.5 -3.898438 5.75 -3.316406 5.75 -2.609375 C 5.75 -1.867188 5.519531 -1.210938 5.0625 -0.640625 C 4.601562 -0.078125 3.875 0.203125 2.875 0.203125 C 2.238281 0.203125 1.675781 0.0234375 1.1875 -0.328125 C 0.695312 -0.691406 0.421875 -1.25 0.359375 -2 Z M 1.390625 -2 "/>
</g>
<g id="glyph-1-1">
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
</g>
<g id="glyph-1-2">
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
</g>
<g id="glyph-1-3">
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
</g>
<g id="glyph-2-0">
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
</g>
<g id="glyph-2-1">
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
</g>
<g id="glyph-2-2">
<path d="M 0.90625 -7.328125 L 2.125 -7.328125 L 2.125 -6.28125 C 2.414062 -6.644531 2.675781 -6.90625 2.90625 -7.0625 C 3.3125 -7.34375 3.773438 -7.484375 4.296875 -7.484375 C 4.878906 -7.484375 5.347656 -7.34375 5.703125 -7.0625 C 5.898438 -6.894531 6.082031 -6.648438 6.25 -6.328125 C 6.519531 -6.722656 6.835938 -7.015625 7.203125 -7.203125 C 7.578125 -7.390625 7.992188 -7.484375 8.453125 -7.484375 C 9.441406 -7.484375 10.113281 -7.128906 10.46875 -6.421875 C 10.65625 -6.035156 10.75 -5.519531 10.75 -4.875 L 10.75 0 L 9.46875 0 L 9.46875 -5.09375 C 9.46875 -5.570312 9.347656 -5.898438 9.109375 -6.078125 C 8.867188 -6.265625 8.570312 -6.359375 8.21875 -6.359375 C 7.738281 -6.359375 7.320312 -6.195312 6.96875 -5.875 C 6.625 -5.550781 6.453125 -5.015625 6.453125 -4.265625 L 6.453125 0 L 5.203125 0 L 5.203125 -4.78125 C 5.203125 -5.28125 5.140625 -5.640625 5.015625 -5.859375 C 4.828125 -6.203125 4.476562 -6.375 3.96875 -6.375 C 3.507812 -6.375 3.085938 -6.191406 2.703125 -5.828125 C 2.328125 -5.472656 2.140625 -4.828125 2.140625 -3.890625 L 2.140625 0 L 0.90625 0 Z M 0.90625 -7.328125 "/>
</g>
<g id="glyph-2-3">
<path d="M 4 -0.828125 C 4.570312 -0.828125 5.046875 -1.066406 5.421875 -1.546875 C 5.804688 -2.023438 6 -2.742188 6 -3.703125 C 6 -4.285156 5.914062 -4.785156 5.75 -5.203125 C 5.425781 -6.015625 4.84375 -6.421875 4 -6.421875 C 3.144531 -6.421875 2.5625 -5.992188 2.25 -5.140625 C 2.070312 -4.679688 1.984375 -4.101562 1.984375 -3.40625 C 1.984375 -2.84375 2.070312 -2.363281 2.25 -1.96875 C 2.5625 -1.207031 3.144531 -0.828125 4 -0.828125 Z M 0.8125 -7.28125 L 2 -7.28125 L 2 -6.3125 C 2.25 -6.644531 2.519531 -6.90625 2.8125 -7.09375 C 3.226562 -7.363281 3.710938 -7.5 4.265625 -7.5 C 5.097656 -7.5 5.800781 -7.179688 6.375 -6.546875 C 6.957031 -5.910156 7.25 -5.003906 7.25 -3.828125 C 7.25 -2.222656 6.832031 -1.082031 6 -0.40625 C 5.46875 0.0273438 4.851562 0.25 4.15625 0.25 C 3.601562 0.25 3.140625 0.128906 2.765625 -0.109375 C 2.546875 -0.253906 2.300781 -0.492188 2.03125 -0.828125 L 2.03125 2.921875 L 0.8125 2.921875 Z M 0.8125 -7.28125 "/>
</g>
<g id="glyph-2-4">
<path d="M 0 1.75 L 0 1.0625 L 7.78125 1.0625 L 7.78125 1.75 Z M 0 1.75 "/>
</g>
<g id="glyph-2-5">
<path d="M 1.203125 -8.4375 C 1.222656 -8.945312 1.316406 -9.320312 1.484375 -9.5625 C 1.765625 -9.976562 2.316406 -10.1875 3.140625 -10.1875 C 3.210938 -10.1875 3.289062 -10.179688 3.375 -10.171875 C 3.457031 -10.171875 3.550781 -10.164062 3.65625 -10.15625 L 3.65625 -9.03125 C 3.53125 -9.039062 3.4375 -9.046875 3.375 -9.046875 C 3.320312 -9.054688 3.269531 -9.0625 3.21875 -9.0625 C 2.84375 -9.0625 2.617188 -8.960938 2.546875 -8.765625 C 2.472656 -8.578125 2.4375 -8.082031 2.4375 -7.28125 L 3.65625 -7.28125 L 3.65625 -6.3125 L 2.421875 -6.3125 L 2.421875 0 L 1.203125 0 L 1.203125 -6.3125 L 0.1875 -6.3125 L 0.1875 -7.28125 L 1.203125 -7.28125 Z M 1.203125 -8.4375 "/>
</g>
<g id="glyph-2-6">
<path d="M 0.9375 -10.046875 L 2.171875 -10.046875 L 2.171875 0 L 0.9375 0 Z M 0.9375 -10.046875 "/>
</g>
<g id="glyph-3-0">
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
</g>
<g id="glyph-3-1">
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
</g>
<g id="glyph-3-2">
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
</g>
<g id="glyph-3-3">
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
</g>
<g id="glyph-3-4">
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
</g>
</g>
</defs>
<rect x="-36" y="-43.2" width="432" height="518.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<rect x="-36" y="-43.2" width="432" height="518.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 432 L 360 432 L 360 0 L 0 0 Z M 0 432 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 61.019531 391.613281 L 353.023438 391.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 391.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 328.605469 L 353.027344 328.605469 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 243.867188 L 353.027344 243.867188 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 159.125 L 353.027344 159.125 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 74.386719 L 353.027344 74.386719 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 121.292969 391.613281 L 121.292969 6.972656 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 192.683594 391.613281 L 192.683594 6.972656 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 264.078125 391.613281 L 264.078125 6.972656 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 335.46875 391.613281 L 335.46875 6.972656 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 189.878906 270 C 189.878906 272.605469 185.972656 272.605469 185.972656 270 C 185.972656 267.394531 189.878906 267.394531 189.878906 270 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 158.945312 365.214844 C 158.945312 367.820312 155.035156 367.820312 155.035156 365.214844 C 155.035156 362.609375 158.945312 362.609375 158.945312 365.214844 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 197.019531 69.574219 C 197.019531 72.179688 193.109375 72.179688 193.109375 69.574219 C 193.109375 66.964844 197.019531 66.964844 197.019531 69.574219 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 128.601562 325.980469 C 128.601562 328.585938 124.691406 328.585938 124.691406 325.980469 C 124.691406 323.375 128.601562 323.375 128.601562 325.980469 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 275.550781 43.050781 C 275.550781 45.65625 271.640625 45.65625 271.640625 43.050781 C 271.640625 40.441406 275.550781 40.441406 275.550781 43.050781 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 245.210938 329.523438 C 245.210938 332.128906 241.300781 332.128906 241.300781 329.523438 C 241.300781 326.914062 245.210938 326.914062 245.210938 329.523438 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 253.539062 53.539062 C 253.539062 56.148438 249.628906 56.148438 249.628906 53.539062 C 249.628906 50.933594 253.539062 50.933594 253.539062 53.539062 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 242.828125 273.152344 C 242.828125 275.757812 238.921875 275.757812 238.921875 273.152344 C 238.921875 270.546875 242.828125 270.546875 242.828125 273.152344 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 271.980469 330.402344 C 271.980469 333.011719 268.070312 333.011719 268.070312 330.402344 C 268.070312 327.796875 271.980469 327.796875 271.980469 330.402344 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 273.765625 332.929688 C 273.765625 335.535156 269.855469 335.535156 269.855469 332.929688 C 269.855469 330.324219 273.765625 330.324219 273.765625 332.929688 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 198.210938 134.601562 C 198.210938 137.210938 194.300781 137.210938 194.300781 134.601562 C 194.300781 131.996094 198.210938 131.996094 198.210938 134.601562 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 201.183594 312.066406 C 201.183594 314.671875 197.273438 314.671875 197.273438 312.066406 C 197.273438 309.460938 201.183594 309.460938 201.183594 312.066406 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 221.414062 241.1875 C 221.414062 243.796875 217.503906 243.796875 217.503906 241.1875 C 217.503906 238.582031 221.414062 238.582031 221.414062 241.1875 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 212.488281 352.773438 C 212.488281 355.382812 208.578125 355.382812 208.578125 352.773438 C 208.578125 350.167969 212.488281 350.167969 212.488281 352.773438 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 94.691406 317.726562 C 94.691406 320.332031 90.78125 320.332031 90.78125 317.726562 C 90.78125 315.121094 94.691406 315.121094 94.691406 317.726562 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 115.515625 342.929688 C 115.515625 345.535156 111.605469 345.535156 111.605469 342.929688 C 111.605469 340.320312 115.515625 340.320312 115.515625 342.929688 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 207.730469 74.640625 C 207.730469 77.246094 203.820312 77.246094 203.820312 74.640625 C 203.820312 72.035156 207.730469 72.035156 207.730469 74.640625 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 160.730469 324.351562 C 160.730469 326.960938 156.820312 326.960938 156.820312 324.351562 C 156.820312 321.746094 160.730469 321.746094 160.730469 324.351562 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 150.019531 279.425781 C 150.019531 282.03125 146.109375 282.03125 146.109375 279.425781 C 146.109375 276.816406 150.019531 276.816406 150.019531 279.425781 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 114.917969 374.128906 C 114.917969 376.734375 111.007812 376.734375 111.007812 374.128906 C 111.007812 371.523438 114.917969 371.523438 114.917969 374.128906 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 252.945312 163.449219 C 252.945312 166.054688 249.035156 166.054688 249.035156 163.449219 C 249.035156 160.84375 252.945312 160.84375 252.945312 163.449219 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 210.109375 333.980469 C 210.109375 336.585938 206.199219 336.585938 206.199219 333.980469 C 206.199219 331.375 210.109375 331.375 210.109375 333.980469 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 258.296875 139.332031 C 258.296875 141.9375 254.386719 141.9375 254.386719 139.332031 C 254.386719 136.726562 258.296875 136.726562 258.296875 139.332031 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 257.109375 285.746094 C 257.109375 288.351562 253.199219 288.351562 253.199219 285.746094 C 253.199219 283.140625 257.109375 283.140625 257.109375 285.746094 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 337.425781 24.457031 C 337.425781 27.0625 333.515625 27.0625 333.515625 24.457031 C 333.515625 21.851562 337.425781 21.851562 337.425781 24.457031 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 320.765625 223.019531 C 320.765625 225.628906 316.855469 225.628906 316.855469 223.019531 C 316.855469 220.414062 320.765625 220.414062 320.765625 223.019531 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 125.628906 265.304688 C 125.628906 267.914062 121.71875 267.914062 121.71875 265.304688 C 121.71875 262.699219 125.628906 262.699219 125.628906 265.304688 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 136.335938 367.25 C 136.335938 369.855469 132.425781 369.855469 132.425781 367.25 C 132.425781 364.640625 136.335938 364.640625 136.335938 367.25 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 97.664062 274.964844 C 97.664062 277.574219 93.757812 277.574219 93.757812 274.964844 C 93.757812 272.359375 97.664062 272.359375 97.664062 274.964844 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 76.25 367.976562 C 76.25 370.582031 72.339844 370.582031 72.339844 367.976562 C 72.339844 365.371094 76.25 365.371094 76.25 367.976562 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="192.210938" y="273.960938"/>
<use xlink:href="#glyph-0-1" x="197.730772" y="273.960938"/>
<use xlink:href="#glyph-0-2" x="203.87051" y="273.960938"/>
<use xlink:href="#glyph-0-3" x="207.546806" y="273.960938"/>
<use xlink:href="#glyph-0-4" x="209.999467" y="273.960938"/>
<use xlink:href="#glyph-0-5" x="216.139205" y="273.960938"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="161.273438" y="369.175781"/>
<use xlink:href="#glyph-0-1" x="166.793272" y="369.175781"/>
<use xlink:href="#glyph-0-2" x="172.93301" y="369.175781"/>
<use xlink:href="#glyph-0-3" x="176.609306" y="369.175781"/>
<use xlink:href="#glyph-0-4" x="179.061967" y="369.175781"/>
<use xlink:href="#glyph-0-5" x="185.201705" y="369.175781"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="199.347656" y="73.53125"/>
<use xlink:href="#glyph-0-1" x="204.867491" y="73.53125"/>
<use xlink:href="#glyph-0-2" x="211.007229" y="73.53125"/>
<use xlink:href="#glyph-0-3" x="214.683525" y="73.53125"/>
<use xlink:href="#glyph-0-4" x="217.136186" y="73.53125"/>
<use xlink:href="#glyph-0-5" x="223.275924" y="73.53125"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="130.929688" y="329.9375"/>
<use xlink:href="#glyph-0-1" x="136.449522" y="329.9375"/>
<use xlink:href="#glyph-0-2" x="142.58926" y="329.9375"/>
<use xlink:href="#glyph-0-3" x="146.265556" y="329.9375"/>
<use xlink:href="#glyph-0-4" x="148.718217" y="329.9375"/>
<use xlink:href="#glyph-0-5" x="154.857955" y="329.9375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="277.878906" y="47.007812"/>
<use xlink:href="#glyph-0-1" x="283.398741" y="47.007812"/>
<use xlink:href="#glyph-0-2" x="289.538479" y="47.007812"/>
<use xlink:href="#glyph-0-3" x="293.214775" y="47.007812"/>
<use xlink:href="#glyph-0-4" x="295.667436" y="47.007812"/>
<use xlink:href="#glyph-0-5" x="301.807174" y="47.007812"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="247.539062" y="333.480469"/>
<use xlink:href="#glyph-0-1" x="253.058897" y="333.480469"/>
<use xlink:href="#glyph-0-2" x="259.198635" y="333.480469"/>
<use xlink:href="#glyph-0-3" x="262.874931" y="333.480469"/>
<use xlink:href="#glyph-0-4" x="265.327592" y="333.480469"/>
<use xlink:href="#glyph-0-5" x="271.46733" y="333.480469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="255.867188" y="57.5"/>
<use xlink:href="#glyph-0-1" x="261.387022" y="57.5"/>
<use xlink:href="#glyph-0-2" x="267.52676" y="57.5"/>
<use xlink:href="#glyph-0-3" x="271.203056" y="57.5"/>
<use xlink:href="#glyph-0-4" x="273.655717" y="57.5"/>
<use xlink:href="#glyph-0-5" x="279.795455" y="57.5"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="245.160156" y="277.113281"/>
<use xlink:href="#glyph-0-1" x="250.679991" y="277.113281"/>
<use xlink:href="#glyph-0-2" x="256.819729" y="277.113281"/>
<use xlink:href="#glyph-0-3" x="260.496025" y="277.113281"/>
<use xlink:href="#glyph-0-4" x="262.948686" y="277.113281"/>
<use xlink:href="#glyph-0-5" x="269.088424" y="277.113281"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="274.308594" y="334.363281"/>
<use xlink:href="#glyph-0-6" x="279.828428" y="334.363281"/>
<use xlink:href="#glyph-0-7" x="285.968166" y="334.363281"/>
<use xlink:href="#glyph-0-7" x="295.164297" y="334.363281"/>
<use xlink:href="#glyph-0-8" x="304.360428" y="334.363281"/>
<use xlink:href="#glyph-0-2" x="310.500166" y="334.363281"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="276.09375" y="336.886719"/>
<use xlink:href="#glyph-0-6" x="281.613585" y="336.886719"/>
<use xlink:href="#glyph-0-7" x="287.753323" y="336.886719"/>
<use xlink:href="#glyph-0-7" x="296.949453" y="336.886719"/>
<use xlink:href="#glyph-0-8" x="306.145584" y="336.886719"/>
<use xlink:href="#glyph-0-2" x="312.285322" y="336.886719"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="200.539062" y="138.5625"/>
<use xlink:href="#glyph-0-3" x="208.511558" y="138.5625"/>
<use xlink:href="#glyph-0-4" x="210.964219" y="138.5625"/>
<use xlink:href="#glyph-0-10" x="217.103957" y="138.5625"/>
<use xlink:href="#glyph-0-8" x="220.171131" y="138.5625"/>
<use xlink:href="#glyph-0-2" x="226.310869" y="138.5625"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="203.511719" y="316.023438"/>
<use xlink:href="#glyph-0-3" x="211.484214" y="316.023438"/>
<use xlink:href="#glyph-0-4" x="213.936875" y="316.023438"/>
<use xlink:href="#glyph-0-10" x="220.076613" y="316.023438"/>
<use xlink:href="#glyph-0-8" x="223.143787" y="316.023438"/>
<use xlink:href="#glyph-0-2" x="229.283525" y="316.023438"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="223.742188" y="245.148438"/>
<use xlink:href="#glyph-0-3" x="231.714683" y="245.148438"/>
<use xlink:href="#glyph-0-4" x="234.167344" y="245.148438"/>
<use xlink:href="#glyph-0-10" x="240.307082" y="245.148438"/>
<use xlink:href="#glyph-0-8" x="243.374256" y="245.148438"/>
<use xlink:href="#glyph-0-2" x="249.513994" y="245.148438"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="214.816406" y="356.734375"/>
<use xlink:href="#glyph-0-3" x="222.788902" y="356.734375"/>
<use xlink:href="#glyph-0-4" x="225.241563" y="356.734375"/>
<use xlink:href="#glyph-0-10" x="231.381301" y="356.734375"/>
<use xlink:href="#glyph-0-8" x="234.448474" y="356.734375"/>
<use xlink:href="#glyph-0-2" x="240.588212" y="356.734375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="97.019531" y="321.6875"/>
<use xlink:href="#glyph-0-3" x="104.992027" y="321.6875"/>
<use xlink:href="#glyph-0-4" x="107.444688" y="321.6875"/>
<use xlink:href="#glyph-0-10" x="113.584426" y="321.6875"/>
<use xlink:href="#glyph-0-8" x="116.651599" y="321.6875"/>
<use xlink:href="#glyph-0-2" x="122.791337" y="321.6875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="117.84375" y="346.886719"/>
<use xlink:href="#glyph-0-3" x="125.816246" y="346.886719"/>
<use xlink:href="#glyph-0-4" x="128.268906" y="346.886719"/>
<use xlink:href="#glyph-0-10" x="134.408644" y="346.886719"/>
<use xlink:href="#glyph-0-8" x="137.475818" y="346.886719"/>
<use xlink:href="#glyph-0-2" x="143.615556" y="346.886719"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="210.058594" y="78.601562"/>
<use xlink:href="#glyph-0-1" x="215.578428" y="78.601562"/>
<use xlink:href="#glyph-0-2" x="221.718166" y="78.601562"/>
<use xlink:href="#glyph-0-3" x="225.394462" y="78.601562"/>
<use xlink:href="#glyph-0-4" x="227.847123" y="78.601562"/>
<use xlink:href="#glyph-0-5" x="233.986861" y="78.601562"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="163.058594" y="328.3125"/>
<use xlink:href="#glyph-0-1" x="168.578428" y="328.3125"/>
<use xlink:href="#glyph-0-2" x="174.718166" y="328.3125"/>
<use xlink:href="#glyph-0-3" x="178.394462" y="328.3125"/>
<use xlink:href="#glyph-0-4" x="180.847123" y="328.3125"/>
<use xlink:href="#glyph-0-5" x="186.986861" y="328.3125"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="152.347656" y="283.382812"/>
<use xlink:href="#glyph-0-1" x="157.867491" y="283.382812"/>
<use xlink:href="#glyph-0-2" x="164.007229" y="283.382812"/>
<use xlink:href="#glyph-0-3" x="167.683525" y="283.382812"/>
<use xlink:href="#glyph-0-4" x="170.136186" y="283.382812"/>
<use xlink:href="#glyph-0-5" x="176.275924" y="283.382812"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="117.246094" y="378.089844"/>
<use xlink:href="#glyph-0-1" x="122.765928" y="378.089844"/>
<use xlink:href="#glyph-0-2" x="128.905666" y="378.089844"/>
<use xlink:href="#glyph-0-3" x="132.581962" y="378.089844"/>
<use xlink:href="#glyph-0-4" x="135.034623" y="378.089844"/>
<use xlink:href="#glyph-0-5" x="141.174361" y="378.089844"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="255.273438" y="167.40625"/>
<use xlink:href="#glyph-0-1" x="260.793272" y="167.40625"/>
<use xlink:href="#glyph-0-2" x="266.93301" y="167.40625"/>
<use xlink:href="#glyph-0-3" x="270.609306" y="167.40625"/>
<use xlink:href="#glyph-0-4" x="273.061967" y="167.40625"/>
<use xlink:href="#glyph-0-5" x="279.201705" y="167.40625"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="212.4375" y="337.9375"/>
<use xlink:href="#glyph-0-1" x="217.957335" y="337.9375"/>
<use xlink:href="#glyph-0-2" x="224.097073" y="337.9375"/>
<use xlink:href="#glyph-0-3" x="227.773369" y="337.9375"/>
<use xlink:href="#glyph-0-4" x="230.22603" y="337.9375"/>
<use xlink:href="#glyph-0-5" x="236.365768" y="337.9375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="260.625" y="143.289062"/>
<use xlink:href="#glyph-0-1" x="266.144835" y="143.289062"/>
<use xlink:href="#glyph-0-2" x="272.284573" y="143.289062"/>
<use xlink:href="#glyph-0-3" x="275.960869" y="143.289062"/>
<use xlink:href="#glyph-0-4" x="278.41353" y="143.289062"/>
<use xlink:href="#glyph-0-5" x="284.553268" y="143.289062"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="259.4375" y="289.703125"/>
<use xlink:href="#glyph-0-1" x="264.957335" y="289.703125"/>
<use xlink:href="#glyph-0-2" x="271.097073" y="289.703125"/>
<use xlink:href="#glyph-0-3" x="274.773369" y="289.703125"/>
<use xlink:href="#glyph-0-4" x="277.22603" y="289.703125"/>
<use xlink:href="#glyph-0-5" x="283.365768" y="289.703125"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="339.753906" y="28.417969"/>
<use xlink:href="#glyph-0-6" x="345.273741" y="28.417969"/>
<use xlink:href="#glyph-0-7" x="351.413479" y="28.417969"/>
<use xlink:href="#glyph-0-7" x="360.60961" y="28.417969"/>
<use xlink:href="#glyph-0-8" x="369.80574" y="28.417969"/>
<use xlink:href="#glyph-0-2" x="375.945478" y="28.417969"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="323.09375" y="226.980469"/>
<use xlink:href="#glyph-0-6" x="328.613585" y="226.980469"/>
<use xlink:href="#glyph-0-7" x="334.753323" y="226.980469"/>
<use xlink:href="#glyph-0-7" x="343.949453" y="226.980469"/>
<use xlink:href="#glyph-0-8" x="353.145584" y="226.980469"/>
<use xlink:href="#glyph-0-2" x="359.285322" y="226.980469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="127.957031" y="269.265625"/>
<use xlink:href="#glyph-0-3" x="135.929527" y="269.265625"/>
<use xlink:href="#glyph-0-4" x="138.382188" y="269.265625"/>
<use xlink:href="#glyph-0-10" x="144.521926" y="269.265625"/>
<use xlink:href="#glyph-0-8" x="147.589099" y="269.265625"/>
<use xlink:href="#glyph-0-2" x="153.728837" y="269.265625"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="138.664062" y="371.207031"/>
<use xlink:href="#glyph-0-3" x="146.636558" y="371.207031"/>
<use xlink:href="#glyph-0-4" x="149.089219" y="371.207031"/>
<use xlink:href="#glyph-0-10" x="155.228957" y="371.207031"/>
<use xlink:href="#glyph-0-8" x="158.296131" y="371.207031"/>
<use xlink:href="#glyph-0-2" x="164.435869" y="371.207031"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="99.996094" y="278.925781"/>
<use xlink:href="#glyph-0-3" x="107.968589" y="278.925781"/>
<use xlink:href="#glyph-0-4" x="110.42125" y="278.925781"/>
<use xlink:href="#glyph-0-10" x="116.560988" y="278.925781"/>
<use xlink:href="#glyph-0-8" x="119.628162" y="278.925781"/>
<use xlink:href="#glyph-0-2" x="125.7679" y="278.925781"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="78.578125" y="371.9375"/>
<use xlink:href="#glyph-0-3" x="86.550621" y="371.9375"/>
<use xlink:href="#glyph-0-4" x="89.003281" y="371.9375"/>
<use xlink:href="#glyph-0-10" x="95.143019" y="371.9375"/>
<use xlink:href="#glyph-0-8" x="98.210193" y="371.9375"/>
<use xlink:href="#glyph-0-2" x="104.349931" y="371.9375"/>
</g>
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 391.613281 L 353.023438 391.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 391.613281 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="29.828125" y="332.625"/>
<use xlink:href="#glyph-1-1" x="36.057031" y="332.625"/>
<use xlink:href="#glyph-1-1" x="42.285938" y="332.625"/>
<use xlink:href="#glyph-1-1" x="48.514844" y="332.625"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-1-2" x="23.597656" y="247.882812"/>
<use xlink:href="#glyph-1-1" x="29.826563" y="247.882812"/>
<use xlink:href="#glyph-1-1" x="36.055469" y="247.882812"/>
<use xlink:href="#glyph-1-1" x="42.284375" y="247.882812"/>
<use xlink:href="#glyph-1-1" x="48.513281" y="247.882812"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-1-2" x="23.597656" y="163.144531"/>
<use xlink:href="#glyph-1-0" x="29.826563" y="163.144531"/>
<use xlink:href="#glyph-1-1" x="36.055469" y="163.144531"/>
<use xlink:href="#glyph-1-1" x="42.284375" y="163.144531"/>
<use xlink:href="#glyph-1-1" x="48.513281" y="163.144531"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-1-3" x="23.597656" y="78.402344"/>
<use xlink:href="#glyph-1-1" x="29.826563" y="78.402344"/>
<use xlink:href="#glyph-1-1" x="36.055469" y="78.402344"/>
<use xlink:href="#glyph-1-1" x="42.284375" y="78.402344"/>
<use xlink:href="#glyph-1-1" x="48.513281" y="78.402344"/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 328.605469 L 61.019531 328.605469 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 243.867188 L 61.019531 243.867188 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 159.125 L 61.019531 159.125 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 74.386719 L 61.019531 74.386719 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 121.292969 395.101562 L 121.292969 391.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 192.683594 395.101562 L 192.683594 391.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 264.078125 395.101562 L 264.078125 391.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 335.46875 395.101562 L 335.46875 391.613281 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="118.179688" y="405.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-1-2" x="186.453125" y="405.921875"/>
<use xlink:href="#glyph-1-1" x="192.682031" y="405.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-1-2" x="257.847656" y="405.921875"/>
<use xlink:href="#glyph-1-0" x="264.076563" y="405.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-1-3" x="329.238281" y="405.921875"/>
<use xlink:href="#glyph-1-1" x="335.467188" y="405.921875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="176.28125" y="421.929688"/>
<use xlink:href="#glyph-2-1" x="180.170898" y="421.929688"/>
<use xlink:href="#glyph-2-2" x="187.957031" y="421.929688"/>
<use xlink:href="#glyph-2-3" x="199.619141" y="421.929688"/>
<use xlink:href="#glyph-2-4" x="207.405273" y="421.929688"/>
<use xlink:href="#glyph-2-5" x="215.191406" y="421.929688"/>
<use xlink:href="#glyph-2-1" x="219.081055" y="421.929688"/>
<use xlink:href="#glyph-2-1" x="226.867188" y="421.929688"/>
<use xlink:href="#glyph-2-6" x="234.65332" y="421.929688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-0" x="17.015625" y="216.417969"/>
<use xlink:href="#glyph-3-1" x="17.015625" y="209.417969"/>
<use xlink:href="#glyph-3-2" x="17.015625" y="201.631836"/>
<use xlink:href="#glyph-3-3" x="17.015625" y="193.845703"/>
<use xlink:href="#glyph-3-4" x="17.015625" y="186.05957"/>
</g>
</svg>

After

(image error) Size: 52 KiB

Binary file not shown.

After

(image error) Size: 104 KiB

View File

@ -0,0 +1,439 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="432" viewBox="0 0 360 432">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 1.296875 -1.8125 C 1.316406 -1.488281 1.394531 -1.238281 1.53125 -1.0625 C 1.78125 -0.75 2.207031 -0.59375 2.8125 -0.59375 C 3.164062 -0.59375 3.476562 -0.671875 3.75 -0.828125 C 4.03125 -0.984375 4.171875 -1.226562 4.171875 -1.5625 C 4.171875 -1.8125 4.054688 -2 3.828125 -2.125 C 3.691406 -2.207031 3.414062 -2.300781 3 -2.40625 L 2.234375 -2.59375 C 1.742188 -2.71875 1.378906 -2.851562 1.140625 -3 C 0.722656 -3.257812 0.515625 -3.625 0.515625 -4.09375 C 0.515625 -4.632812 0.710938 -5.070312 1.109375 -5.40625 C 1.503906 -5.75 2.035156 -5.921875 2.703125 -5.921875 C 3.566406 -5.921875 4.191406 -5.664062 4.578125 -5.15625 C 4.816406 -4.832031 4.9375 -4.484375 4.9375 -4.109375 L 4.015625 -4.109375 C 3.992188 -4.328125 3.914062 -4.53125 3.78125 -4.71875 C 3.5625 -4.96875 3.175781 -5.09375 2.625 -5.09375 C 2.257812 -5.09375 1.976562 -5.019531 1.78125 -4.875 C 1.59375 -4.738281 1.5 -4.554688 1.5 -4.328125 C 1.5 -4.078125 1.625 -3.878906 1.875 -3.734375 C 2.019531 -3.640625 2.234375 -3.554688 2.515625 -3.484375 L 3.15625 -3.328125 C 3.851562 -3.160156 4.320312 -3 4.5625 -2.84375 C 4.9375 -2.59375 5.125 -2.203125 5.125 -1.671875 C 5.125 -1.160156 4.925781 -0.71875 4.53125 -0.34375 C 4.144531 0.0273438 3.550781 0.21875 2.75 0.21875 C 1.894531 0.21875 1.285156 0.0234375 0.921875 -0.359375 C 0.566406 -0.753906 0.378906 -1.238281 0.359375 -1.8125 Z M 2.71875 -5.921875 Z M 2.71875 -5.921875 "/>
</g>
<g id="glyph-0-1">
<path d="M 3.15625 -0.65625 C 3.601562 -0.65625 3.976562 -0.84375 4.28125 -1.21875 C 4.582031 -1.601562 4.734375 -2.171875 4.734375 -2.921875 C 4.734375 -3.378906 4.664062 -3.773438 4.53125 -4.109375 C 4.28125 -4.742188 3.820312 -5.0625 3.15625 -5.0625 C 2.476562 -5.0625 2.015625 -4.726562 1.765625 -4.0625 C 1.628906 -3.695312 1.5625 -3.238281 1.5625 -2.6875 C 1.5625 -2.238281 1.628906 -1.859375 1.765625 -1.546875 C 2.015625 -0.953125 2.476562 -0.65625 3.15625 -0.65625 Z M 0.640625 -5.75 L 1.578125 -5.75 L 1.578125 -4.984375 C 1.773438 -5.242188 1.988281 -5.445312 2.21875 -5.59375 C 2.539062 -5.8125 2.925781 -5.921875 3.375 -5.921875 C 4.03125 -5.921875 4.582031 -5.664062 5.03125 -5.15625 C 5.488281 -4.65625 5.71875 -3.941406 5.71875 -3.015625 C 5.71875 -1.753906 5.390625 -0.851562 4.734375 -0.3125 C 4.316406 0.0195312 3.832031 0.1875 3.28125 0.1875 C 2.84375 0.1875 2.476562 0.0898438 2.1875 -0.09375 C 2.007812 -0.195312 1.816406 -0.378906 1.609375 -0.640625 L 1.609375 2.296875 L 0.640625 2.296875 Z M 0.640625 -5.75 "/>
</g>
<g id="glyph-0-2">
<path d="M 0.734375 -5.78125 L 1.65625 -5.78125 L 1.65625 -4.78125 C 1.738281 -4.976562 1.925781 -5.210938 2.21875 -5.484375 C 2.507812 -5.765625 2.847656 -5.90625 3.234375 -5.90625 C 3.253906 -5.90625 3.285156 -5.898438 3.328125 -5.890625 C 3.367188 -5.890625 3.441406 -5.882812 3.546875 -5.875 L 3.546875 -4.859375 C 3.492188 -4.867188 3.441406 -4.875 3.390625 -4.875 C 3.335938 -4.875 3.285156 -4.875 3.234375 -4.875 C 2.742188 -4.875 2.363281 -4.71875 2.09375 -4.40625 C 1.832031 -4.09375 1.703125 -3.734375 1.703125 -3.328125 L 1.703125 0 L 0.734375 0 Z M 0.734375 -5.78125 "/>
</g>
<g id="glyph-0-3">
<path d="M 0.71875 -5.75 L 1.703125 -5.75 L 1.703125 0 L 0.71875 0 Z M 0.71875 -7.921875 L 1.703125 -7.921875 L 1.703125 -6.828125 L 0.71875 -6.828125 Z M 0.71875 -7.921875 "/>
</g>
<g id="glyph-0-4">
<path d="M 0.71875 -5.78125 L 1.640625 -5.78125 L 1.640625 -4.953125 C 1.910156 -5.296875 2.195312 -5.539062 2.5 -5.6875 C 2.8125 -5.832031 3.148438 -5.90625 3.515625 -5.90625 C 4.335938 -5.90625 4.894531 -5.617188 5.1875 -5.046875 C 5.34375 -4.734375 5.421875 -4.285156 5.421875 -3.703125 L 5.421875 0 L 4.4375 0 L 4.4375 -3.640625 C 4.4375 -3.992188 4.382812 -4.28125 4.28125 -4.5 C 4.101562 -4.851562 3.789062 -5.03125 3.34375 -5.03125 C 3.113281 -5.03125 2.921875 -5.007812 2.765625 -4.96875 C 2.503906 -4.882812 2.273438 -4.722656 2.078125 -4.484375 C 1.910156 -4.296875 1.800781 -4.097656 1.75 -3.890625 C 1.707031 -3.691406 1.6875 -3.40625 1.6875 -3.03125 L 1.6875 0 L 0.71875 0 Z M 3 -5.921875 Z M 3 -5.921875 "/>
</g>
<g id="glyph-0-5">
<path d="M 2.75 -5.875 C 3.207031 -5.875 3.601562 -5.765625 3.9375 -5.546875 C 4.125 -5.421875 4.3125 -5.238281 4.5 -5 L 4.5 -5.71875 L 5.390625 -5.71875 L 5.390625 -0.46875 C 5.390625 0.257812 5.285156 0.835938 5.078125 1.265625 C 4.671875 2.046875 3.90625 2.4375 2.78125 2.4375 C 2.164062 2.4375 1.644531 2.296875 1.21875 2.015625 C 0.789062 1.742188 0.550781 1.3125 0.5 0.71875 L 1.5 0.71875 C 1.539062 0.976562 1.632812 1.175781 1.78125 1.3125 C 2 1.53125 2.34375 1.640625 2.8125 1.640625 C 3.550781 1.640625 4.035156 1.378906 4.265625 0.859375 C 4.410156 0.546875 4.472656 -0.00390625 4.453125 -0.796875 C 4.265625 -0.503906 4.03125 -0.285156 3.75 -0.140625 C 3.476562 -0.00390625 3.117188 0.0625 2.671875 0.0625 C 2.046875 0.0625 1.5 -0.15625 1.03125 -0.59375 C 0.5625 -1.039062 0.328125 -1.773438 0.328125 -2.796875 C 0.328125 -3.765625 0.5625 -4.519531 1.03125 -5.0625 C 1.507812 -5.601562 2.082031 -5.875 2.75 -5.875 Z M 4.5 -2.90625 C 4.5 -3.625 4.347656 -4.15625 4.046875 -4.5 C 3.753906 -4.84375 3.378906 -5.015625 2.921875 -5.015625 C 2.242188 -5.015625 1.78125 -4.695312 1.53125 -4.0625 C 1.394531 -3.71875 1.328125 -3.269531 1.328125 -2.71875 C 1.328125 -2.070312 1.457031 -1.578125 1.71875 -1.234375 C 1.988281 -0.890625 2.34375 -0.71875 2.78125 -0.71875 C 3.476562 -0.71875 3.972656 -1.035156 4.265625 -1.671875 C 4.421875 -2.023438 4.5 -2.4375 4.5 -2.90625 Z M 2.859375 -5.921875 Z M 2.859375 -5.921875 "/>
</g>
<g id="glyph-0-6">
<path d="M 1.6875 -5.78125 L 1.6875 -1.9375 C 1.6875 -1.644531 1.734375 -1.40625 1.828125 -1.21875 C 1.992188 -0.875 2.3125 -0.703125 2.78125 -0.703125 C 3.457031 -0.703125 3.921875 -1.003906 4.171875 -1.609375 C 4.304688 -1.929688 4.375 -2.375 4.375 -2.9375 L 4.375 -5.78125 L 5.34375 -5.78125 L 5.34375 0 L 4.421875 0 L 4.4375 -0.859375 C 4.3125 -0.628906 4.15625 -0.441406 3.96875 -0.296875 C 3.59375 0.00390625 3.140625 0.15625 2.609375 0.15625 C 1.785156 0.15625 1.226562 -0.117188 0.9375 -0.671875 C 0.769531 -0.960938 0.6875 -1.351562 0.6875 -1.84375 L 0.6875 -5.78125 Z M 3.015625 -5.921875 Z M 3.015625 -5.921875 "/>
</g>
<g id="glyph-0-7">
<path d="M 0.71875 -5.78125 L 1.671875 -5.78125 L 1.671875 -4.953125 C 1.898438 -5.242188 2.109375 -5.453125 2.296875 -5.578125 C 2.617188 -5.796875 2.984375 -5.90625 3.390625 -5.90625 C 3.847656 -5.90625 4.21875 -5.789062 4.5 -5.5625 C 4.65625 -5.4375 4.800781 -5.25 4.9375 -5 C 5.144531 -5.300781 5.394531 -5.523438 5.6875 -5.671875 C 5.976562 -5.828125 6.304688 -5.90625 6.671875 -5.90625 C 7.453125 -5.90625 7.984375 -5.625 8.265625 -5.0625 C 8.410156 -4.757812 8.484375 -4.351562 8.484375 -3.84375 L 8.484375 0 L 7.46875 0 L 7.46875 -4.015625 C 7.46875 -4.398438 7.375 -4.660156 7.1875 -4.796875 C 7 -4.941406 6.765625 -5.015625 6.484375 -5.015625 C 6.097656 -5.015625 5.769531 -4.882812 5.5 -4.625 C 5.226562 -4.375 5.09375 -3.953125 5.09375 -3.359375 L 5.09375 0 L 4.09375 0 L 4.09375 -3.765625 C 4.09375 -4.160156 4.046875 -4.445312 3.953125 -4.625 C 3.804688 -4.894531 3.535156 -5.03125 3.140625 -5.03125 C 2.765625 -5.03125 2.425781 -4.890625 2.125 -4.609375 C 1.832031 -4.328125 1.6875 -3.8125 1.6875 -3.0625 L 1.6875 0 L 0.71875 0 Z M 0.71875 -5.78125 "/>
</g>
<g id="glyph-0-8">
<path d="M 3.125 -5.90625 C 3.53125 -5.90625 3.925781 -5.804688 4.3125 -5.609375 C 4.695312 -5.421875 4.988281 -5.175781 5.1875 -4.875 C 5.382812 -4.582031 5.515625 -4.238281 5.578125 -3.84375 C 5.628906 -3.582031 5.65625 -3.160156 5.65625 -2.578125 L 1.421875 -2.578125 C 1.441406 -1.992188 1.582031 -1.523438 1.84375 -1.171875 C 2.101562 -0.816406 2.503906 -0.640625 3.046875 -0.640625 C 3.554688 -0.640625 3.960938 -0.804688 4.265625 -1.140625 C 4.429688 -1.328125 4.550781 -1.550781 4.625 -1.8125 L 5.578125 -1.8125 C 5.554688 -1.601562 5.472656 -1.367188 5.328125 -1.109375 C 5.191406 -0.847656 5.035156 -0.632812 4.859375 -0.46875 C 4.554688 -0.175781 4.191406 0.0195312 3.765625 0.125 C 3.523438 0.175781 3.257812 0.203125 2.96875 0.203125 C 2.25 0.203125 1.640625 -0.0546875 1.140625 -0.578125 C 0.640625 -1.097656 0.390625 -1.832031 0.390625 -2.78125 C 0.390625 -3.707031 0.640625 -4.457031 1.140625 -5.03125 C 1.648438 -5.613281 2.3125 -5.90625 3.125 -5.90625 Z M 4.671875 -3.34375 C 4.628906 -3.769531 4.535156 -4.109375 4.390625 -4.359375 C 4.117188 -4.828125 3.675781 -5.0625 3.0625 -5.0625 C 2.613281 -5.0625 2.238281 -4.898438 1.9375 -4.578125 C 1.632812 -4.253906 1.472656 -3.84375 1.453125 -3.34375 Z M 3.03125 -5.921875 Z M 3.03125 -5.921875 "/>
</g>
<g id="glyph-0-9">
<path d="M 1.15625 -5.78125 L 2.265625 -1.21875 L 3.390625 -5.78125 L 4.484375 -5.78125 L 5.625 -1.25 L 6.796875 -5.78125 L 7.765625 -5.78125 L 6.09375 0 L 5.09375 0 L 3.90625 -4.46875 L 2.765625 0 L 1.765625 0 L 0.09375 -5.78125 Z M 1.15625 -5.78125 "/>
</g>
<g id="glyph-0-10">
<path d="M 0.90625 -7.390625 L 1.890625 -7.390625 L 1.890625 -5.78125 L 2.8125 -5.78125 L 2.8125 -4.984375 L 1.890625 -4.984375 L 1.890625 -1.21875 C 1.890625 -1.007812 1.957031 -0.875 2.09375 -0.8125 C 2.164062 -0.769531 2.289062 -0.75 2.46875 -0.75 C 2.519531 -0.75 2.570312 -0.75 2.625 -0.75 C 2.675781 -0.75 2.738281 -0.753906 2.8125 -0.765625 L 2.8125 0 C 2.695312 0.03125 2.578125 0.0507812 2.453125 0.0625 C 2.335938 0.0820312 2.210938 0.09375 2.078125 0.09375 C 1.617188 0.09375 1.304688 -0.0195312 1.140625 -0.25 C 0.984375 -0.488281 0.90625 -0.789062 0.90625 -1.15625 L 0.90625 -4.984375 L 0.125 -4.984375 L 0.125 -5.78125 L 0.90625 -5.78125 Z M 0.90625 -7.390625 "/>
</g>
<g id="glyph-1-0">
<path d="M 1.390625 -2 C 1.453125 -1.4375 1.710938 -1.046875 2.171875 -0.828125 C 2.398438 -0.722656 2.664062 -0.671875 2.96875 -0.671875 C 3.550781 -0.671875 3.984375 -0.851562 4.265625 -1.21875 C 4.546875 -1.59375 4.6875 -2.007812 4.6875 -2.46875 C 4.6875 -3.007812 4.519531 -3.425781 4.1875 -3.71875 C 3.851562 -4.019531 3.457031 -4.171875 3 -4.171875 C 2.65625 -4.171875 2.359375 -4.101562 2.109375 -3.96875 C 1.867188 -3.84375 1.664062 -3.664062 1.5 -3.4375 L 0.640625 -3.484375 L 1.234375 -7.703125 L 5.3125 -7.703125 L 5.3125 -6.75 L 1.984375 -6.75 L 1.640625 -4.578125 C 1.828125 -4.710938 2.003906 -4.816406 2.171875 -4.890625 C 2.460938 -5.003906 2.796875 -5.0625 3.171875 -5.0625 C 3.890625 -5.0625 4.5 -4.828125 5 -4.359375 C 5.5 -3.898438 5.75 -3.316406 5.75 -2.609375 C 5.75 -1.867188 5.519531 -1.210938 5.0625 -0.640625 C 4.601562 -0.078125 3.875 0.203125 2.875 0.203125 C 2.238281 0.203125 1.675781 0.0234375 1.1875 -0.328125 C 0.695312 -0.691406 0.421875 -1.25 0.359375 -2 Z M 1.390625 -2 "/>
</g>
<g id="glyph-1-1">
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
</g>
<g id="glyph-1-2">
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
</g>
<g id="glyph-1-3">
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
</g>
<g id="glyph-2-0">
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
</g>
<g id="glyph-2-1">
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
</g>
<g id="glyph-2-2">
<path d="M 0.90625 -7.328125 L 2.125 -7.328125 L 2.125 -6.28125 C 2.414062 -6.644531 2.675781 -6.90625 2.90625 -7.0625 C 3.3125 -7.34375 3.773438 -7.484375 4.296875 -7.484375 C 4.878906 -7.484375 5.347656 -7.34375 5.703125 -7.0625 C 5.898438 -6.894531 6.082031 -6.648438 6.25 -6.328125 C 6.519531 -6.722656 6.835938 -7.015625 7.203125 -7.203125 C 7.578125 -7.390625 7.992188 -7.484375 8.453125 -7.484375 C 9.441406 -7.484375 10.113281 -7.128906 10.46875 -6.421875 C 10.65625 -6.035156 10.75 -5.519531 10.75 -4.875 L 10.75 0 L 9.46875 0 L 9.46875 -5.09375 C 9.46875 -5.570312 9.347656 -5.898438 9.109375 -6.078125 C 8.867188 -6.265625 8.570312 -6.359375 8.21875 -6.359375 C 7.738281 -6.359375 7.320312 -6.195312 6.96875 -5.875 C 6.625 -5.550781 6.453125 -5.015625 6.453125 -4.265625 L 6.453125 0 L 5.203125 0 L 5.203125 -4.78125 C 5.203125 -5.28125 5.140625 -5.640625 5.015625 -5.859375 C 4.828125 -6.203125 4.476562 -6.375 3.96875 -6.375 C 3.507812 -6.375 3.085938 -6.191406 2.703125 -5.828125 C 2.328125 -5.472656 2.140625 -4.828125 2.140625 -3.890625 L 2.140625 0 L 0.90625 0 Z M 0.90625 -7.328125 "/>
</g>
<g id="glyph-2-3">
<path d="M 4 -0.828125 C 4.570312 -0.828125 5.046875 -1.066406 5.421875 -1.546875 C 5.804688 -2.023438 6 -2.742188 6 -3.703125 C 6 -4.285156 5.914062 -4.785156 5.75 -5.203125 C 5.425781 -6.015625 4.84375 -6.421875 4 -6.421875 C 3.144531 -6.421875 2.5625 -5.992188 2.25 -5.140625 C 2.070312 -4.679688 1.984375 -4.101562 1.984375 -3.40625 C 1.984375 -2.84375 2.070312 -2.363281 2.25 -1.96875 C 2.5625 -1.207031 3.144531 -0.828125 4 -0.828125 Z M 0.8125 -7.28125 L 2 -7.28125 L 2 -6.3125 C 2.25 -6.644531 2.519531 -6.90625 2.8125 -7.09375 C 3.226562 -7.363281 3.710938 -7.5 4.265625 -7.5 C 5.097656 -7.5 5.800781 -7.179688 6.375 -6.546875 C 6.957031 -5.910156 7.25 -5.003906 7.25 -3.828125 C 7.25 -2.222656 6.832031 -1.082031 6 -0.40625 C 5.46875 0.0273438 4.851562 0.25 4.15625 0.25 C 3.601562 0.25 3.140625 0.128906 2.765625 -0.109375 C 2.546875 -0.253906 2.300781 -0.492188 2.03125 -0.828125 L 2.03125 2.921875 L 0.8125 2.921875 Z M 0.8125 -7.28125 "/>
</g>
<g id="glyph-2-4">
<path d="M 0 1.75 L 0 1.0625 L 7.78125 1.0625 L 7.78125 1.75 Z M 0 1.75 "/>
</g>
<g id="glyph-2-5">
<path d="M 1.203125 -8.4375 C 1.222656 -8.945312 1.316406 -9.320312 1.484375 -9.5625 C 1.765625 -9.976562 2.316406 -10.1875 3.140625 -10.1875 C 3.210938 -10.1875 3.289062 -10.179688 3.375 -10.171875 C 3.457031 -10.171875 3.550781 -10.164062 3.65625 -10.15625 L 3.65625 -9.03125 C 3.53125 -9.039062 3.4375 -9.046875 3.375 -9.046875 C 3.320312 -9.054688 3.269531 -9.0625 3.21875 -9.0625 C 2.84375 -9.0625 2.617188 -8.960938 2.546875 -8.765625 C 2.472656 -8.578125 2.4375 -8.082031 2.4375 -7.28125 L 3.65625 -7.28125 L 3.65625 -6.3125 L 2.421875 -6.3125 L 2.421875 0 L 1.203125 0 L 1.203125 -6.3125 L 0.1875 -6.3125 L 0.1875 -7.28125 L 1.203125 -7.28125 Z M 1.203125 -8.4375 "/>
</g>
<g id="glyph-2-6">
<path d="M 0.9375 -10.046875 L 2.171875 -10.046875 L 2.171875 0 L 0.9375 0 Z M 0.9375 -10.046875 "/>
</g>
<g id="glyph-3-0">
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
</g>
<g id="glyph-3-1">
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
</g>
<g id="glyph-3-2">
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
</g>
<g id="glyph-3-3">
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
</g>
<g id="glyph-3-4">
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
</g>
</g>
</defs>
<rect x="-36" y="-43.2" width="432" height="518.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<rect x="-36" y="-43.2" width="432" height="518.4" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 432 L 360 432 L 360 0 L 0 0 Z M 0 432 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 61.019531 391.613281 L 353.023438 391.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 391.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 328.605469 L 353.027344 328.605469 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 243.867188 L 353.027344 243.867188 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 159.125 L 353.027344 159.125 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 74.386719 L 353.027344 74.386719 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 121.292969 391.613281 L 121.292969 6.972656 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 192.683594 391.613281 L 192.683594 6.972656 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 264.078125 391.613281 L 264.078125 6.972656 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 335.46875 391.613281 L 335.46875 6.972656 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 189.878906 270 C 189.878906 272.605469 185.972656 272.605469 185.972656 270 C 185.972656 267.394531 189.878906 267.394531 189.878906 270 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 158.945312 365.214844 C 158.945312 367.820312 155.035156 367.820312 155.035156 365.214844 C 155.035156 362.609375 158.945312 362.609375 158.945312 365.214844 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 197.019531 69.574219 C 197.019531 72.179688 193.109375 72.179688 193.109375 69.574219 C 193.109375 66.964844 197.019531 66.964844 197.019531 69.574219 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 128.601562 325.980469 C 128.601562 328.585938 124.691406 328.585938 124.691406 325.980469 C 124.691406 323.375 128.601562 323.375 128.601562 325.980469 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 275.550781 43.050781 C 275.550781 45.65625 271.640625 45.65625 271.640625 43.050781 C 271.640625 40.441406 275.550781 40.441406 275.550781 43.050781 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 245.210938 329.523438 C 245.210938 332.128906 241.300781 332.128906 241.300781 329.523438 C 241.300781 326.914062 245.210938 326.914062 245.210938 329.523438 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 253.539062 53.539062 C 253.539062 56.148438 249.628906 56.148438 249.628906 53.539062 C 249.628906 50.933594 253.539062 50.933594 253.539062 53.539062 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 242.828125 273.152344 C 242.828125 275.757812 238.921875 275.757812 238.921875 273.152344 C 238.921875 270.546875 242.828125 270.546875 242.828125 273.152344 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 271.980469 330.402344 C 271.980469 333.011719 268.070312 333.011719 268.070312 330.402344 C 268.070312 327.796875 271.980469 327.796875 271.980469 330.402344 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 273.765625 332.929688 C 273.765625 335.535156 269.855469 335.535156 269.855469 332.929688 C 269.855469 330.324219 273.765625 330.324219 273.765625 332.929688 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 198.210938 134.601562 C 198.210938 137.210938 194.300781 137.210938 194.300781 134.601562 C 194.300781 131.996094 198.210938 131.996094 198.210938 134.601562 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 201.183594 312.066406 C 201.183594 314.671875 197.273438 314.671875 197.273438 312.066406 C 197.273438 309.460938 201.183594 309.460938 201.183594 312.066406 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 221.414062 241.1875 C 221.414062 243.796875 217.503906 243.796875 217.503906 241.1875 C 217.503906 238.582031 221.414062 238.582031 221.414062 241.1875 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 212.488281 352.773438 C 212.488281 355.382812 208.578125 355.382812 208.578125 352.773438 C 208.578125 350.167969 212.488281 350.167969 212.488281 352.773438 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 94.691406 317.726562 C 94.691406 320.332031 90.78125 320.332031 90.78125 317.726562 C 90.78125 315.121094 94.691406 315.121094 94.691406 317.726562 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 115.515625 342.929688 C 115.515625 345.535156 111.605469 345.535156 111.605469 342.929688 C 111.605469 340.320312 115.515625 340.320312 115.515625 342.929688 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 207.730469 74.640625 C 207.730469 77.246094 203.820312 77.246094 203.820312 74.640625 C 203.820312 72.035156 207.730469 72.035156 207.730469 74.640625 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 160.730469 324.351562 C 160.730469 326.960938 156.820312 326.960938 156.820312 324.351562 C 156.820312 321.746094 160.730469 321.746094 160.730469 324.351562 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 150.019531 279.425781 C 150.019531 282.03125 146.109375 282.03125 146.109375 279.425781 C 146.109375 276.816406 150.019531 276.816406 150.019531 279.425781 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 114.917969 374.128906 C 114.917969 376.734375 111.007812 376.734375 111.007812 374.128906 C 111.007812 371.523438 114.917969 371.523438 114.917969 374.128906 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 252.945312 163.449219 C 252.945312 166.054688 249.035156 166.054688 249.035156 163.449219 C 249.035156 160.84375 252.945312 160.84375 252.945312 163.449219 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 210.109375 333.980469 C 210.109375 336.585938 206.199219 336.585938 206.199219 333.980469 C 206.199219 331.375 210.109375 331.375 210.109375 333.980469 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 258.296875 139.332031 C 258.296875 141.9375 254.386719 141.9375 254.386719 139.332031 C 254.386719 136.726562 258.296875 136.726562 258.296875 139.332031 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 257.109375 285.746094 C 257.109375 288.351562 253.199219 288.351562 253.199219 285.746094 C 253.199219 283.140625 257.109375 283.140625 257.109375 285.746094 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 337.425781 24.457031 C 337.425781 27.0625 333.515625 27.0625 333.515625 24.457031 C 333.515625 21.851562 337.425781 21.851562 337.425781 24.457031 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 320.765625 223.019531 C 320.765625 225.628906 316.855469 225.628906 316.855469 223.019531 C 316.855469 220.414062 320.765625 220.414062 320.765625 223.019531 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 125.628906 265.304688 C 125.628906 267.914062 121.71875 267.914062 121.71875 265.304688 C 121.71875 262.699219 125.628906 262.699219 125.628906 265.304688 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 136.335938 367.25 C 136.335938 369.855469 132.425781 369.855469 132.425781 367.25 C 132.425781 364.640625 136.335938 364.640625 136.335938 367.25 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 97.664062 274.964844 C 97.664062 277.574219 93.757812 277.574219 93.757812 274.964844 C 93.757812 272.359375 97.664062 272.359375 97.664062 274.964844 "/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.708661" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 76.25 367.976562 C 76.25 370.582031 72.339844 370.582031 72.339844 367.976562 C 72.339844 365.371094 76.25 365.371094 76.25 367.976562 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="192.382812" y="273.960938"/>
<use xlink:href="#glyph-0-1" x="197.902647" y="273.960938"/>
<use xlink:href="#glyph-0-2" x="204.042385" y="273.960938"/>
<use xlink:href="#glyph-0-3" x="207.718681" y="273.960938"/>
<use xlink:href="#glyph-0-4" x="210.171342" y="273.960938"/>
<use xlink:href="#glyph-0-5" x="216.31108" y="273.960938"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="162.5" y="369.808594"/>
<use xlink:href="#glyph-0-1" x="168.019835" y="369.808594"/>
<use xlink:href="#glyph-0-2" x="174.159573" y="369.808594"/>
<use xlink:href="#glyph-0-3" x="177.835869" y="369.808594"/>
<use xlink:href="#glyph-0-4" x="180.28853" y="369.808594"/>
<use xlink:href="#glyph-0-5" x="186.428268" y="369.808594"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="192.066406" y="64.8125"/>
<use xlink:href="#glyph-0-1" x="197.586241" y="64.8125"/>
<use xlink:href="#glyph-0-2" x="203.725979" y="64.8125"/>
<use xlink:href="#glyph-0-3" x="207.402275" y="64.8125"/>
<use xlink:href="#glyph-0-4" x="209.854936" y="64.8125"/>
<use xlink:href="#glyph-0-5" x="215.994674" y="64.8125"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="123.644531" y="338.628906"/>
<use xlink:href="#glyph-0-1" x="129.164366" y="338.628906"/>
<use xlink:href="#glyph-0-2" x="135.304104" y="338.628906"/>
<use xlink:href="#glyph-0-3" x="138.9804" y="338.628906"/>
<use xlink:href="#glyph-0-4" x="141.433061" y="338.628906"/>
<use xlink:href="#glyph-0-5" x="147.572799" y="338.628906"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="278.914062" y="45.640625"/>
<use xlink:href="#glyph-0-1" x="284.433897" y="45.640625"/>
<use xlink:href="#glyph-0-2" x="290.573635" y="45.640625"/>
<use xlink:href="#glyph-0-3" x="294.249931" y="45.640625"/>
<use xlink:href="#glyph-0-4" x="296.702592" y="45.640625"/>
<use xlink:href="#glyph-0-5" x="302.84233" y="45.640625"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="235.582031" y="342.164062"/>
<use xlink:href="#glyph-0-1" x="241.101866" y="342.164062"/>
<use xlink:href="#glyph-0-2" x="247.241604" y="342.164062"/>
<use xlink:href="#glyph-0-3" x="250.9179" y="342.164062"/>
<use xlink:href="#glyph-0-4" x="253.370561" y="342.164062"/>
<use xlink:href="#glyph-0-5" x="259.510299" y="342.164062"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="256.074219" y="60.882812"/>
<use xlink:href="#glyph-0-1" x="261.594053" y="60.882812"/>
<use xlink:href="#glyph-0-2" x="267.733791" y="60.882812"/>
<use xlink:href="#glyph-0-3" x="271.410087" y="60.882812"/>
<use xlink:href="#glyph-0-4" x="273.862748" y="60.882812"/>
<use xlink:href="#glyph-0-5" x="280.002486" y="60.882812"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="245.359375" y="275.671875"/>
<use xlink:href="#glyph-0-1" x="250.87921" y="275.671875"/>
<use xlink:href="#glyph-0-2" x="257.018948" y="275.671875"/>
<use xlink:href="#glyph-0-3" x="260.695244" y="275.671875"/>
<use xlink:href="#glyph-0-4" x="263.147905" y="275.671875"/>
<use xlink:href="#glyph-0-5" x="269.287643" y="275.671875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="267.054688" y="325.664062"/>
<use xlink:href="#glyph-0-6" x="272.574522" y="325.664062"/>
<use xlink:href="#glyph-0-7" x="278.71426" y="325.664062"/>
<use xlink:href="#glyph-0-7" x="287.910391" y="325.664062"/>
<use xlink:href="#glyph-0-8" x="297.106522" y="325.664062"/>
<use xlink:href="#glyph-0-2" x="303.24626" y="325.664062"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="278.519531" y="340.867188"/>
<use xlink:href="#glyph-0-6" x="284.039366" y="340.867188"/>
<use xlink:href="#glyph-0-7" x="290.179104" y="340.867188"/>
<use xlink:href="#glyph-0-7" x="299.375235" y="340.867188"/>
<use xlink:href="#glyph-0-8" x="308.571365" y="340.867188"/>
<use xlink:href="#glyph-0-2" x="314.711103" y="340.867188"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="200.703125" y="138.5625"/>
<use xlink:href="#glyph-0-3" x="208.675621" y="138.5625"/>
<use xlink:href="#glyph-0-4" x="211.128281" y="138.5625"/>
<use xlink:href="#glyph-0-10" x="217.268019" y="138.5625"/>
<use xlink:href="#glyph-0-8" x="220.335193" y="138.5625"/>
<use xlink:href="#glyph-0-2" x="226.474931" y="138.5625"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="203.695312" y="316.027344"/>
<use xlink:href="#glyph-0-3" x="211.667808" y="316.027344"/>
<use xlink:href="#glyph-0-4" x="214.120469" y="316.027344"/>
<use xlink:href="#glyph-0-10" x="220.260207" y="316.027344"/>
<use xlink:href="#glyph-0-8" x="223.327381" y="316.027344"/>
<use xlink:href="#glyph-0-2" x="229.467119" y="316.027344"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="223.898438" y="245.148438"/>
<use xlink:href="#glyph-0-3" x="231.870933" y="245.148438"/>
<use xlink:href="#glyph-0-4" x="234.323594" y="245.148438"/>
<use xlink:href="#glyph-0-10" x="240.463332" y="245.148438"/>
<use xlink:href="#glyph-0-8" x="243.530506" y="245.148438"/>
<use xlink:href="#glyph-0-2" x="249.670244" y="245.148438"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="215.140625" y="357.320312"/>
<use xlink:href="#glyph-0-3" x="223.113121" y="357.320312"/>
<use xlink:href="#glyph-0-4" x="225.565781" y="357.320312"/>
<use xlink:href="#glyph-0-10" x="231.705519" y="357.320312"/>
<use xlink:href="#glyph-0-8" x="234.772693" y="357.320312"/>
<use xlink:href="#glyph-0-2" x="240.912431" y="357.320312"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="97.1875" y="321.269531"/>
<use xlink:href="#glyph-0-3" x="105.159996" y="321.269531"/>
<use xlink:href="#glyph-0-4" x="107.612656" y="321.269531"/>
<use xlink:href="#glyph-0-10" x="113.752394" y="321.269531"/>
<use xlink:href="#glyph-0-8" x="116.819568" y="321.269531"/>
<use xlink:href="#glyph-0-2" x="122.959306" y="321.269531"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="89.164062" y="355.546875"/>
<use xlink:href="#glyph-0-3" x="97.136558" y="355.546875"/>
<use xlink:href="#glyph-0-4" x="99.589219" y="355.546875"/>
<use xlink:href="#glyph-0-10" x="105.728957" y="355.546875"/>
<use xlink:href="#glyph-0-8" x="108.796131" y="355.546875"/>
<use xlink:href="#glyph-0-2" x="114.935869" y="355.546875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="210.925781" y="79.996094"/>
<use xlink:href="#glyph-0-1" x="216.445616" y="79.996094"/>
<use xlink:href="#glyph-0-2" x="222.585354" y="79.996094"/>
<use xlink:href="#glyph-0-3" x="226.26165" y="79.996094"/>
<use xlink:href="#glyph-0-4" x="228.714311" y="79.996094"/>
<use xlink:href="#glyph-0-5" x="234.854049" y="79.996094"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="163.214844" y="328.3125"/>
<use xlink:href="#glyph-0-1" x="168.734678" y="328.3125"/>
<use xlink:href="#glyph-0-2" x="174.874416" y="328.3125"/>
<use xlink:href="#glyph-0-3" x="178.550712" y="328.3125"/>
<use xlink:href="#glyph-0-4" x="181.003373" y="328.3125"/>
<use xlink:href="#glyph-0-5" x="187.143111" y="328.3125"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="152.507812" y="283.382812"/>
<use xlink:href="#glyph-0-1" x="158.027647" y="283.382812"/>
<use xlink:href="#glyph-0-2" x="164.167385" y="283.382812"/>
<use xlink:href="#glyph-0-3" x="167.843681" y="283.382812"/>
<use xlink:href="#glyph-0-4" x="170.296342" y="283.382812"/>
<use xlink:href="#glyph-0-5" x="176.43608" y="283.382812"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="109.910156" y="386.867188"/>
<use xlink:href="#glyph-0-1" x="115.429991" y="386.867188"/>
<use xlink:href="#glyph-0-2" x="121.569729" y="386.867188"/>
<use xlink:href="#glyph-0-3" x="125.246025" y="386.867188"/>
<use xlink:href="#glyph-0-4" x="127.698686" y="386.867188"/>
<use xlink:href="#glyph-0-5" x="133.838424" y="386.867188"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="255.457031" y="167.40625"/>
<use xlink:href="#glyph-0-1" x="260.976866" y="167.40625"/>
<use xlink:href="#glyph-0-2" x="267.116604" y="167.40625"/>
<use xlink:href="#glyph-0-3" x="270.7929" y="167.40625"/>
<use xlink:href="#glyph-0-4" x="273.245561" y="167.40625"/>
<use xlink:href="#glyph-0-5" x="279.385299" y="167.40625"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="177.855469" y="346.570312"/>
<use xlink:href="#glyph-0-1" x="183.375303" y="346.570312"/>
<use xlink:href="#glyph-0-2" x="189.515041" y="346.570312"/>
<use xlink:href="#glyph-0-3" x="193.191337" y="346.570312"/>
<use xlink:href="#glyph-0-4" x="195.643998" y="346.570312"/>
<use xlink:href="#glyph-0-5" x="201.783736" y="346.570312"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="260.792969" y="143.292969"/>
<use xlink:href="#glyph-0-1" x="266.312803" y="143.292969"/>
<use xlink:href="#glyph-0-2" x="272.452541" y="143.292969"/>
<use xlink:href="#glyph-0-3" x="276.128837" y="143.292969"/>
<use xlink:href="#glyph-0-4" x="278.581498" y="143.292969"/>
<use xlink:href="#glyph-0-5" x="284.721236" y="143.292969"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="260.003906" y="290.875"/>
<use xlink:href="#glyph-0-1" x="265.523741" y="290.875"/>
<use xlink:href="#glyph-0-2" x="271.663479" y="290.875"/>
<use xlink:href="#glyph-0-3" x="275.339775" y="290.875"/>
<use xlink:href="#glyph-0-4" x="277.792436" y="290.875"/>
<use xlink:href="#glyph-0-5" x="283.932174" y="290.875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="291.28125" y="28.417969"/>
<use xlink:href="#glyph-0-6" x="296.801085" y="28.417969"/>
<use xlink:href="#glyph-0-7" x="302.940823" y="28.417969"/>
<use xlink:href="#glyph-0-7" x="312.136953" y="28.417969"/>
<use xlink:href="#glyph-0-8" x="321.333084" y="28.417969"/>
<use xlink:href="#glyph-0-2" x="327.472822" y="28.417969"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="274.53125" y="226.988281"/>
<use xlink:href="#glyph-0-6" x="280.051085" y="226.988281"/>
<use xlink:href="#glyph-0-7" x="286.190823" y="226.988281"/>
<use xlink:href="#glyph-0-7" x="295.386953" y="226.988281"/>
<use xlink:href="#glyph-0-8" x="304.583084" y="226.988281"/>
<use xlink:href="#glyph-0-2" x="310.722822" y="226.988281"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="129.609375" y="267.566406"/>
<use xlink:href="#glyph-0-3" x="137.581871" y="267.566406"/>
<use xlink:href="#glyph-0-4" x="140.034531" y="267.566406"/>
<use xlink:href="#glyph-0-10" x="146.174269" y="267.566406"/>
<use xlink:href="#glyph-0-8" x="149.241443" y="267.566406"/>
<use xlink:href="#glyph-0-2" x="155.381181" y="267.566406"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="125.835938" y="360.511719"/>
<use xlink:href="#glyph-0-3" x="133.808433" y="360.511719"/>
<use xlink:href="#glyph-0-4" x="136.261094" y="360.511719"/>
<use xlink:href="#glyph-0-10" x="142.400832" y="360.511719"/>
<use xlink:href="#glyph-0-8" x="145.468006" y="360.511719"/>
<use xlink:href="#glyph-0-2" x="151.607744" y="360.511719"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="100.179688" y="282.683594"/>
<use xlink:href="#glyph-0-3" x="108.152183" y="282.683594"/>
<use xlink:href="#glyph-0-4" x="110.604844" y="282.683594"/>
<use xlink:href="#glyph-0-10" x="116.744582" y="282.683594"/>
<use xlink:href="#glyph-0-8" x="119.811756" y="282.683594"/>
<use xlink:href="#glyph-0-2" x="125.951494" y="282.683594"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-9" x="78.738281" y="371.597656"/>
<use xlink:href="#glyph-0-3" x="86.710777" y="371.597656"/>
<use xlink:href="#glyph-0-4" x="89.163438" y="371.597656"/>
<use xlink:href="#glyph-0-10" x="95.303176" y="371.597656"/>
<use xlink:href="#glyph-0-8" x="98.370349" y="371.597656"/>
<use xlink:href="#glyph-0-2" x="104.510087" y="371.597656"/>
</g>
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.019531 391.613281 L 353.023438 391.613281 L 353.023438 6.972656 L 61.019531 6.972656 Z M 61.019531 391.613281 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="29.828125" y="332.625"/>
<use xlink:href="#glyph-1-1" x="36.057031" y="332.625"/>
<use xlink:href="#glyph-1-1" x="42.285938" y="332.625"/>
<use xlink:href="#glyph-1-1" x="48.514844" y="332.625"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-1-2" x="23.597656" y="247.882812"/>
<use xlink:href="#glyph-1-1" x="29.826563" y="247.882812"/>
<use xlink:href="#glyph-1-1" x="36.055469" y="247.882812"/>
<use xlink:href="#glyph-1-1" x="42.284375" y="247.882812"/>
<use xlink:href="#glyph-1-1" x="48.513281" y="247.882812"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-1-2" x="23.597656" y="163.144531"/>
<use xlink:href="#glyph-1-0" x="29.826563" y="163.144531"/>
<use xlink:href="#glyph-1-1" x="36.055469" y="163.144531"/>
<use xlink:href="#glyph-1-1" x="42.284375" y="163.144531"/>
<use xlink:href="#glyph-1-1" x="48.513281" y="163.144531"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-1-3" x="23.597656" y="78.402344"/>
<use xlink:href="#glyph-1-1" x="29.826563" y="78.402344"/>
<use xlink:href="#glyph-1-1" x="36.055469" y="78.402344"/>
<use xlink:href="#glyph-1-1" x="42.284375" y="78.402344"/>
<use xlink:href="#glyph-1-1" x="48.513281" y="78.402344"/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 328.605469 L 61.019531 328.605469 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 243.867188 L 61.019531 243.867188 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 159.125 L 61.019531 159.125 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.535156 74.386719 L 61.019531 74.386719 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 121.292969 395.101562 L 121.292969 391.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 192.683594 395.101562 L 192.683594 391.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 264.078125 395.101562 L 264.078125 391.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 335.46875 395.101562 L 335.46875 391.613281 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="118.179688" y="405.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-1-2" x="186.453125" y="405.921875"/>
<use xlink:href="#glyph-1-1" x="192.682031" y="405.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-1-2" x="257.847656" y="405.921875"/>
<use xlink:href="#glyph-1-0" x="264.076563" y="405.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-1-3" x="329.238281" y="405.921875"/>
<use xlink:href="#glyph-1-1" x="335.467188" y="405.921875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="176.28125" y="421.929688"/>
<use xlink:href="#glyph-2-1" x="180.170898" y="421.929688"/>
<use xlink:href="#glyph-2-2" x="187.957031" y="421.929688"/>
<use xlink:href="#glyph-2-3" x="199.619141" y="421.929688"/>
<use xlink:href="#glyph-2-4" x="207.405273" y="421.929688"/>
<use xlink:href="#glyph-2-5" x="215.191406" y="421.929688"/>
<use xlink:href="#glyph-2-1" x="219.081055" y="421.929688"/>
<use xlink:href="#glyph-2-1" x="226.867188" y="421.929688"/>
<use xlink:href="#glyph-2-6" x="234.65332" y="421.929688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-0" x="17.015625" y="216.417969"/>
<use xlink:href="#glyph-3-1" x="17.015625" y="209.417969"/>
<use xlink:href="#glyph-3-2" x="17.015625" y="201.631836"/>
<use xlink:href="#glyph-3-3" x="17.015625" y="193.845703"/>
<use xlink:href="#glyph-3-4" x="17.015625" y="186.05957"/>
</g>
</svg>

After

(image error) Size: 52 KiB

Binary file not shown.

After

(image error) Size: 168 KiB

File diff suppressed because it is too large Load Diff

After

(image error) Size: 543 KiB

Binary file not shown.

After

(image error) Size: 51 KiB

File diff suppressed because it is too large Load Diff

After

(image error) Size: 542 KiB

Binary file not shown.

After

(image error) Size: 42 KiB

File diff suppressed because it is too large Load Diff

After

(image error) Size: 542 KiB

Binary file not shown.

After

(image error) Size: 49 KiB

View File

@ -0,0 +1,311 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="295" viewBox="0 0 360 295">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
</g>
<g id="glyph-0-1">
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
</g>
<g id="glyph-0-2">
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-3">
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
</g>
<g id="glyph-0-4">
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-5">
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
</g>
<g id="glyph-0-6">
</g>
<g id="glyph-0-7">
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
</g>
<g id="glyph-0-8">
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
</g>
<g id="glyph-0-9">
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-10">
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
</g>
<g id="glyph-0-11">
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
</g>
<g id="glyph-0-12">
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-13">
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
</g>
<g id="glyph-0-14">
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
</g>
<g id="glyph-0-15">
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
</g>
<g id="glyph-0-16">
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
</g>
<g id="glyph-0-17">
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
</g>
<g id="glyph-0-18">
<path d="M 0.859375 -8.03125 L 2.140625 -8.03125 L 6.203125 -1.53125 L 6.203125 -8.03125 L 7.234375 -8.03125 L 7.234375 0 L 6.015625 0 L 1.890625 -6.5 L 1.890625 0 L 0.859375 0 Z M 3.96875 -8.03125 Z M 3.96875 -8.03125 "/>
</g>
<g id="glyph-0-19">
<path d="M 4.984375 -3.296875 L 3.765625 -6.84375 L 2.46875 -3.296875 Z M 3.1875 -8.03125 L 4.421875 -8.03125 L 7.328125 0 L 6.140625 0 L 5.328125 -2.40625 L 2.15625 -2.40625 L 1.28125 0 L 0.171875 0 Z M 3.1875 -8.03125 "/>
</g>
<g id="glyph-0-20">
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
</g>
<g id="glyph-0-21">
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
</g>
<g id="glyph-0-22">
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
</g>
<g id="glyph-1-0">
<path d="M 3.71875 -7.53125 C 4.550781 -7.53125 5.222656 -7.328125 5.734375 -6.921875 C 6.253906 -6.523438 6.566406 -5.835938 6.671875 -4.859375 L 5.46875 -4.859375 C 5.394531 -5.304688 5.226562 -5.679688 4.96875 -5.984375 C 4.71875 -6.285156 4.300781 -6.4375 3.71875 -6.4375 C 2.9375 -6.4375 2.378906 -6.050781 2.046875 -5.28125 C 1.828125 -4.789062 1.71875 -4.179688 1.71875 -3.453125 C 1.71875 -2.710938 1.867188 -2.09375 2.171875 -1.59375 C 2.484375 -1.09375 2.972656 -0.84375 3.640625 -0.84375 C 4.148438 -0.84375 4.554688 -1 4.859375 -1.3125 C 5.160156 -1.625 5.363281 -2.050781 5.46875 -2.59375 L 6.671875 -2.59375 C 6.535156 -1.625 6.191406 -0.910156 5.640625 -0.453125 C 5.097656 -0.00390625 4.398438 0.21875 3.546875 0.21875 C 2.585938 0.21875 1.820312 -0.128906 1.25 -0.828125 C 0.6875 -1.535156 0.40625 -2.410156 0.40625 -3.453125 C 0.40625 -4.742188 0.71875 -5.742188 1.34375 -6.453125 C 1.96875 -7.171875 2.757812 -7.53125 3.71875 -7.53125 Z M 3.53125 -7.5 Z M 3.53125 -7.5 "/>
</g>
<g id="glyph-1-1">
<path d="M 3.8125 -0.796875 C 4.625 -0.796875 5.179688 -1.101562 5.484375 -1.71875 C 5.785156 -2.332031 5.9375 -3.019531 5.9375 -3.78125 C 5.9375 -4.46875 5.828125 -5.023438 5.609375 -5.453125 C 5.265625 -6.117188 4.671875 -6.453125 3.828125 -6.453125 C 3.066406 -6.453125 2.515625 -6.164062 2.171875 -5.59375 C 1.835938 -5.019531 1.671875 -4.328125 1.671875 -3.515625 C 1.671875 -2.742188 1.835938 -2.097656 2.171875 -1.578125 C 2.515625 -1.054688 3.0625 -0.796875 3.8125 -0.796875 Z M 3.859375 -7.53125 C 4.796875 -7.53125 5.585938 -7.210938 6.234375 -6.578125 C 6.890625 -5.953125 7.21875 -5.03125 7.21875 -3.8125 C 7.21875 -2.632812 6.929688 -1.660156 6.359375 -0.890625 C 5.785156 -0.117188 4.894531 0.265625 3.6875 0.265625 C 2.6875 0.265625 1.890625 -0.0703125 1.296875 -0.75 C 0.703125 -1.4375 0.40625 -2.351562 0.40625 -3.5 C 0.40625 -4.726562 0.71875 -5.707031 1.34375 -6.4375 C 1.96875 -7.164062 2.804688 -7.53125 3.859375 -7.53125 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-2">
<path d="M 2.140625 -7.328125 L 2.140625 -2.46875 C 2.140625 -2.09375 2.195312 -1.785156 2.3125 -1.546875 C 2.53125 -1.109375 2.9375 -0.890625 3.53125 -0.890625 C 4.382812 -0.890625 4.96875 -1.269531 5.28125 -2.03125 C 5.445312 -2.445312 5.53125 -3.007812 5.53125 -3.71875 L 5.53125 -7.328125 L 6.765625 -7.328125 L 6.765625 0 L 5.609375 0 L 5.625 -1.078125 C 5.457031 -0.796875 5.257812 -0.5625 5.03125 -0.375 C 4.5625 0.0078125 3.988281 0.203125 3.3125 0.203125 C 2.269531 0.203125 1.5625 -0.144531 1.1875 -0.84375 C 0.976562 -1.21875 0.875 -1.71875 0.875 -2.34375 L 0.875 -7.328125 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
</g>
<g id="glyph-1-3">
<path d="M 0.90625 -7.328125 L 2.078125 -7.328125 L 2.078125 -6.28125 C 2.421875 -6.707031 2.785156 -7.015625 3.171875 -7.203125 C 3.554688 -7.390625 3.988281 -7.484375 4.46875 -7.484375 C 5.5 -7.484375 6.195312 -7.125 6.5625 -6.40625 C 6.769531 -6 6.875 -5.429688 6.875 -4.703125 L 6.875 0 L 5.625 0 L 5.625 -4.609375 C 5.625 -5.054688 5.554688 -5.414062 5.421875 -5.6875 C 5.203125 -6.144531 4.804688 -6.375 4.234375 -6.375 C 3.941406 -6.375 3.703125 -6.347656 3.515625 -6.296875 C 3.179688 -6.191406 2.882812 -5.988281 2.625 -5.6875 C 2.414062 -5.445312 2.28125 -5.195312 2.21875 -4.9375 C 2.164062 -4.675781 2.140625 -4.304688 2.140625 -3.828125 L 2.140625 0 L 0.90625 0 Z M 3.796875 -7.5 Z M 3.796875 -7.5 "/>
</g>
<g id="glyph-1-4">
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
</g>
<g id="glyph-2-0">
<path d="M -7.328125 -1.46875 L -1.546875 -2.875 L -7.328125 -4.3125 L -7.328125 -5.6875 L -1.59375 -7.125 L -7.328125 -8.625 L -7.328125 -9.84375 L 0 -7.71875 L 0 -6.453125 L -5.671875 -4.953125 L 0 -3.515625 L 0 -2.234375 L -7.328125 -0.125 Z M -7.328125 -1.46875 "/>
</g>
<g id="glyph-2-1">
<path d="M -7.484375 -3.953125 C -7.484375 -4.472656 -7.359375 -4.972656 -7.109375 -5.453125 C -6.867188 -5.941406 -6.554688 -6.316406 -6.171875 -6.578125 C -5.804688 -6.828125 -5.375 -6.988281 -4.875 -7.0625 C -4.539062 -7.132812 -4.003906 -7.171875 -3.265625 -7.171875 L -3.265625 -1.8125 C -2.523438 -1.832031 -1.929688 -2.003906 -1.484375 -2.328125 C -1.035156 -2.660156 -0.8125 -3.171875 -0.8125 -3.859375 C -0.8125 -4.503906 -1.019531 -5.019531 -1.4375 -5.40625 C -1.6875 -5.625 -1.972656 -5.773438 -2.296875 -5.859375 L -2.296875 -7.078125 C -2.023438 -7.046875 -1.722656 -6.9375 -1.390625 -6.75 C -1.066406 -6.570312 -0.800781 -6.375 -0.59375 -6.15625 C -0.226562 -5.78125 0.0195312 -5.316406 0.15625 -4.765625 C 0.226562 -4.472656 0.265625 -4.140625 0.265625 -3.765625 C 0.265625 -2.847656 -0.0664062 -2.070312 -0.734375 -1.4375 C -1.398438 -0.8125 -2.328125 -0.5 -3.515625 -0.5 C -4.691406 -0.5 -5.644531 -0.816406 -6.375 -1.453125 C -7.113281 -2.085938 -7.484375 -2.921875 -7.484375 -3.953125 Z M -4.25 -5.90625 C -4.78125 -5.863281 -5.207031 -5.75 -5.53125 -5.5625 C -6.113281 -5.226562 -6.40625 -4.664062 -6.40625 -3.875 C -6.40625 -3.3125 -6.203125 -2.835938 -5.796875 -2.453125 C -5.390625 -2.066406 -4.875 -1.863281 -4.25 -1.84375 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
</g>
<g id="glyph-2-2">
<path d="M -1.953125 -1.84375 C -1.597656 -1.84375 -1.316406 -1.972656 -1.109375 -2.234375 C -0.898438 -2.492188 -0.796875 -2.800781 -0.796875 -3.15625 C -0.796875 -3.59375 -0.894531 -4.015625 -1.09375 -4.421875 C -1.425781 -5.097656 -1.972656 -5.4375 -2.734375 -5.4375 L -3.71875 -5.4375 C -3.625 -5.289062 -3.546875 -5.097656 -3.484375 -4.859375 C -3.421875 -4.617188 -3.375 -4.382812 -3.34375 -4.15625 L -3.25 -3.421875 C -3.195312 -2.972656 -3.101562 -2.632812 -2.96875 -2.40625 C -2.757812 -2.03125 -2.421875 -1.84375 -1.953125 -1.84375 Z M -4.4375 -4.828125 C -4.46875 -5.109375 -4.585938 -5.296875 -4.796875 -5.390625 C -4.898438 -5.441406 -5.054688 -5.46875 -5.265625 -5.46875 C -5.679688 -5.46875 -5.984375 -5.316406 -6.171875 -5.015625 C -6.359375 -4.722656 -6.453125 -4.300781 -6.453125 -3.75 C -6.453125 -3.101562 -6.28125 -2.644531 -5.9375 -2.375 C -5.75 -2.226562 -5.46875 -2.128906 -5.09375 -2.078125 L -5.09375 -0.9375 C -5.988281 -0.957031 -6.613281 -1.25 -6.96875 -1.8125 C -7.320312 -2.375 -7.5 -3.03125 -7.5 -3.78125 C -7.5 -4.632812 -7.332031 -5.332031 -7 -5.875 C -6.675781 -6.40625 -6.164062 -6.671875 -5.46875 -6.671875 L -1.265625 -6.671875 C -1.128906 -6.671875 -1.019531 -6.695312 -0.9375 -6.75 C -0.863281 -6.800781 -0.828125 -6.910156 -0.828125 -7.078125 C -0.828125 -7.140625 -0.832031 -7.203125 -0.84375 -7.265625 C -0.851562 -7.335938 -0.863281 -7.410156 -0.875 -7.484375 L 0.03125 -7.484375 C 0.0820312 -7.296875 0.113281 -7.148438 0.125 -7.046875 C 0.144531 -6.941406 0.15625 -6.804688 0.15625 -6.640625 C 0.15625 -6.210938 0.00390625 -5.90625 -0.296875 -5.71875 C -0.453125 -5.613281 -0.675781 -5.539062 -0.96875 -5.5 C -0.644531 -5.25 -0.359375 -4.890625 -0.109375 -4.421875 C 0.128906 -3.953125 0.25 -3.4375 0.25 -2.875 C 0.25 -2.195312 0.0429688 -1.640625 -0.359375 -1.203125 C -0.773438 -0.773438 -1.296875 -0.5625 -1.921875 -0.5625 C -2.597656 -0.5625 -3.125 -0.769531 -3.5 -1.1875 C -3.875 -1.613281 -4.101562 -2.171875 -4.1875 -2.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
</g>
<g id="glyph-2-3">
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
</g>
<g id="glyph-2-4">
<path d="M -10.078125 -0.90625 L -10.078125 -2.140625 L -6.328125 -2.140625 C -6.703125 -2.429688 -6.960938 -2.691406 -7.109375 -2.921875 C -7.367188 -3.316406 -7.5 -3.8125 -7.5 -4.40625 C -7.5 -5.46875 -7.128906 -6.1875 -6.390625 -6.5625 C -5.984375 -6.769531 -5.421875 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.609375 L -4.609375 -5.609375 C -5.148438 -5.609375 -5.546875 -5.539062 -5.796875 -5.40625 C -6.203125 -5.175781 -6.40625 -4.753906 -6.40625 -4.140625 C -6.40625 -3.628906 -6.226562 -3.164062 -5.875 -2.75 C -5.519531 -2.34375 -4.859375 -2.140625 -3.890625 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -10.078125 -0.90625 "/>
</g>
<g id="glyph-2-5">
<path d="M -7.328125 -0.9375 L -7.328125 -2.109375 L -6.0625 -2.109375 C -6.300781 -2.203125 -6.597656 -2.4375 -6.953125 -2.8125 C -7.304688 -3.1875 -7.484375 -3.617188 -7.484375 -4.109375 C -7.484375 -4.128906 -7.476562 -4.164062 -7.46875 -4.21875 C -7.46875 -4.269531 -7.460938 -4.363281 -7.453125 -4.5 L -6.15625 -4.5 C -6.164062 -4.425781 -6.171875 -4.359375 -6.171875 -4.296875 C -6.179688 -4.234375 -6.1875 -4.164062 -6.1875 -4.09375 C -6.1875 -3.476562 -5.984375 -3.003906 -5.578125 -2.671875 C -5.179688 -2.335938 -4.726562 -2.171875 -4.21875 -2.171875 L 0 -2.171875 L 0 -0.9375 Z M -7.328125 -0.9375 "/>
</g>
<g id="glyph-2-6">
<path d="M 1.75 0 L 1.0625 0 L 1.0625 -7.78125 L 1.75 -7.78125 Z M 1.75 0 "/>
</g>
<g id="glyph-2-7">
<path d="M -7.328125 -5.46875 L -7.328125 -6.84375 C -6.859375 -6.664062 -5.785156 -6.28125 -4.109375 -5.6875 C -2.847656 -5.238281 -1.820312 -4.863281 -1.03125 -4.5625 C 0.832031 -3.851562 1.96875 -3.351562 2.375 -3.0625 C 2.789062 -2.769531 3 -2.265625 3 -1.546875 C 3 -1.378906 2.988281 -1.25 2.96875 -1.15625 C 2.957031 -1.0625 2.9375 -0.945312 2.90625 -0.8125 L 1.78125 -0.8125 C 1.84375 -1.019531 1.878906 -1.171875 1.890625 -1.265625 C 1.910156 -1.367188 1.921875 -1.457031 1.921875 -1.53125 C 1.921875 -1.75 1.878906 -1.910156 1.796875 -2.015625 C 1.722656 -2.128906 1.632812 -2.222656 1.53125 -2.296875 C 1.488281 -2.316406 1.296875 -2.394531 0.953125 -2.53125 C 0.617188 -2.675781 0.375 -2.78125 0.21875 -2.84375 L -7.328125 -0.140625 L -7.328125 -1.53125 L -1.359375 -3.5 Z M -7.5 -3.5 Z M -7.5 -3.5 "/>
</g>
<g id="glyph-2-8">
<path d="M -0.828125 -4 C -0.828125 -4.570312 -1.066406 -5.046875 -1.546875 -5.421875 C -2.023438 -5.804688 -2.742188 -6 -3.703125 -6 C -4.285156 -6 -4.785156 -5.914062 -5.203125 -5.75 C -6.015625 -5.425781 -6.421875 -4.84375 -6.421875 -4 C -6.421875 -3.144531 -5.992188 -2.5625 -5.140625 -2.25 C -4.679688 -2.070312 -4.101562 -1.984375 -3.40625 -1.984375 C -2.84375 -1.984375 -2.363281 -2.070312 -1.96875 -2.25 C -1.207031 -2.5625 -0.828125 -3.144531 -0.828125 -4 Z M -7.28125 -0.8125 L -7.28125 -2 L -6.3125 -2 C -6.644531 -2.25 -6.90625 -2.519531 -7.09375 -2.8125 C -7.363281 -3.226562 -7.5 -3.710938 -7.5 -4.265625 C -7.5 -5.097656 -7.179688 -5.800781 -6.546875 -6.375 C -5.910156 -6.957031 -5.003906 -7.25 -3.828125 -7.25 C -2.222656 -7.25 -1.082031 -6.832031 -0.40625 -6 C 0.0273438 -5.46875 0.25 -4.851562 0.25 -4.15625 C 0.25 -3.601562 0.128906 -3.140625 -0.109375 -2.765625 C -0.253906 -2.546875 -0.492188 -2.300781 -0.828125 -2.03125 L 2.921875 -2.03125 L 2.921875 -0.8125 Z M -7.28125 -0.8125 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 111.429688 6.972656 L 353.023438 6.972656 L 353.023438 254.613281 L 111.429688 254.613281 Z M 111.429688 6.972656 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 111.429688 233 L 353.023438 233 L 353.023438 235 L 111.429688 235 Z M 111.429688 233 "/>
</clipPath>
<clipPath id="clip-2">
<path clip-rule="nonzero" d="M 111.429688 199 L 353.023438 199 L 353.023438 200 L 111.429688 200 Z M 111.429688 199 "/>
</clipPath>
<clipPath id="clip-3">
<path clip-rule="nonzero" d="M 111.429688 164 L 353.023438 164 L 353.023438 166 L 111.429688 166 Z M 111.429688 164 "/>
</clipPath>
<clipPath id="clip-4">
<path clip-rule="nonzero" d="M 111.429688 130 L 353.023438 130 L 353.023438 132 L 111.429688 132 Z M 111.429688 130 "/>
</clipPath>
<clipPath id="clip-5">
<path clip-rule="nonzero" d="M 111.429688 96 L 353.023438 96 L 353.023438 97 L 111.429688 97 Z M 111.429688 96 "/>
</clipPath>
<clipPath id="clip-6">
<path clip-rule="nonzero" d="M 111.429688 61 L 353.023438 61 L 353.023438 63 L 111.429688 63 Z M 111.429688 61 "/>
</clipPath>
<clipPath id="clip-7">
<path clip-rule="nonzero" d="M 111.429688 27 L 353.023438 27 L 353.023438 28 L 111.429688 28 Z M 111.429688 27 "/>
</clipPath>
<clipPath id="clip-8">
<path clip-rule="nonzero" d="M 122 6.972656 L 123 6.972656 L 123 254.613281 L 122 254.613281 Z M 122 6.972656 "/>
</clipPath>
<clipPath id="clip-9">
<path clip-rule="nonzero" d="M 199 6.972656 L 201 6.972656 L 201 254.613281 L 199 254.613281 Z M 199 6.972656 "/>
</clipPath>
<clipPath id="clip-10">
<path clip-rule="nonzero" d="M 277 6.972656 L 279 6.972656 L 279 254.613281 L 277 254.613281 Z M 277 6.972656 "/>
</clipPath>
<clipPath id="clip-11">
<path clip-rule="nonzero" d="M 111.429688 6.972656 L 353.023438 6.972656 L 353.023438 254.613281 L 111.429688 254.613281 Z M 111.429688 6.972656 "/>
</clipPath>
</defs>
<rect x="-36" y="-29.5" width="432" height="354" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<rect x="-36" y="-29.5" width="432" height="354" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 295 L 360 295 L 360 0 L 0 0 Z M 0 295 "/>
<g clip-path="url(#clip-0)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 111.429688 254.613281 L 353.023438 254.613281 L 353.023438 6.972656 L 111.429688 6.972656 Z M 111.429688 254.613281 "/>
</g>
<g clip-path="url(#clip-1)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 233.976562 L 353.027344 233.976562 "/>
</g>
<g clip-path="url(#clip-2)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 199.582031 L 353.027344 199.582031 "/>
</g>
<g clip-path="url(#clip-3)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 165.1875 L 353.027344 165.1875 "/>
</g>
<g clip-path="url(#clip-4)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 130.792969 L 353.027344 130.792969 "/>
</g>
<g clip-path="url(#clip-5)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 96.398438 L 353.027344 96.398438 "/>
</g>
<g clip-path="url(#clip-6)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 62.003906 L 353.027344 62.003906 "/>
</g>
<g clip-path="url(#clip-7)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 27.609375 L 353.027344 27.609375 "/>
</g>
<g clip-path="url(#clip-8)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 122.414062 254.613281 L 122.414062 6.972656 "/>
</g>
<g clip-path="url(#clip-9)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.160156 254.613281 L 200.160156 6.972656 "/>
</g>
<g clip-path="url(#clip-10)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 277.90625 254.613281 L 277.90625 6.972656 "/>
</g>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 249.453125 L 226.203125 249.453125 L 226.203125 218.5 L 122.414062 218.5 Z M 122.414062 249.453125 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 215.058594 L 342.046875 215.058594 L 342.046875 184.105469 L 122.414062 184.105469 Z M 122.414062 215.058594 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 180.664062 L 153.125 180.664062 L 153.125 149.710938 L 122.414062 149.710938 Z M 122.414062 180.664062 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 146.269531 L 183.445312 146.269531 L 183.445312 115.316406 L 122.414062 115.316406 Z M 122.414062 146.269531 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 111.875 L 243.308594 111.875 L 243.308594 80.921875 L 122.414062 80.921875 Z M 122.414062 111.875 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 77.480469 L 123.582031 77.480469 L 123.582031 46.527344 L 122.414062 46.527344 Z M 122.414062 77.480469 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 43.089844 L 150.402344 43.089844 L 150.402344 12.136719 L 122.414062 12.136719 Z M 122.414062 43.089844 "/>
<g clip-path="url(#clip-11)">
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 254.613281 L 353.023438 254.613281 L 353.023438 6.972656 L 111.429688 6.972656 Z M 111.429688 254.613281 "/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="35.425781" y="237.992188"/>
<use xlink:href="#glyph-0-1" x="41.654688" y="237.992188"/>
<use xlink:href="#glyph-0-2" x="45.384375" y="237.992188"/>
<use xlink:href="#glyph-0-3" x="51.613281" y="237.992188"/>
<use xlink:href="#glyph-0-4" x="57.213281" y="237.992188"/>
<use xlink:href="#glyph-0-5" x="63.442188" y="237.992188"/>
<use xlink:href="#glyph-0-6" x="69.671094" y="237.992188"/>
<use xlink:href="#glyph-0-7" x="72.782812" y="237.992188"/>
<use xlink:href="#glyph-0-8" x="78.382812" y="237.992188"/>
<use xlink:href="#glyph-0-2" x="80.871094" y="237.992188"/>
<use xlink:href="#glyph-0-9" x="87.1" y="237.992188"/>
<use xlink:href="#glyph-0-10" x="93.328906" y="237.992188"/>
<use xlink:href="#glyph-0-11" x="99.557812" y="237.992188"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-7" x="80.878906" y="203.597656"/>
<use xlink:href="#glyph-0-8" x="86.478906" y="203.597656"/>
<use xlink:href="#glyph-0-4" x="88.967187" y="203.597656"/>
<use xlink:href="#glyph-0-12" x="95.196094" y="203.597656"/>
<use xlink:href="#glyph-0-1" x="101.425" y="203.597656"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-7" x="72.78125" y="169.203125"/>
<use xlink:href="#glyph-0-8" x="78.38125" y="169.203125"/>
<use xlink:href="#glyph-0-2" x="80.869531" y="169.203125"/>
<use xlink:href="#glyph-0-9" x="87.098437" y="169.203125"/>
<use xlink:href="#glyph-0-10" x="93.327344" y="169.203125"/>
<use xlink:href="#glyph-0-13" x="99.55625" y="169.203125"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="86.480469" y="134.808594"/>
<use xlink:href="#glyph-0-12" x="90.210156" y="134.808594"/>
<use xlink:href="#glyph-0-14" x="96.439062" y="134.808594"/>
<use xlink:href="#glyph-0-5" x="98.927344" y="134.808594"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="23.601562" y="100.414062"/>
<use xlink:href="#glyph-0-7" x="29.201563" y="100.414062"/>
<use xlink:href="#glyph-0-12" x="34.801563" y="100.414062"/>
<use xlink:href="#glyph-0-15" x="41.030469" y="100.414062"/>
<use xlink:href="#glyph-0-15" x="44.142188" y="100.414062"/>
<use xlink:href="#glyph-0-4" x="47.253906" y="100.414062"/>
<use xlink:href="#glyph-0-1" x="53.482813" y="100.414062"/>
<use xlink:href="#glyph-0-4" x="57.2125" y="100.414062"/>
<use xlink:href="#glyph-0-10" x="63.441406" y="100.414062"/>
<use xlink:href="#glyph-0-6" x="69.670313" y="100.414062"/>
<use xlink:href="#glyph-0-7" x="72.782031" y="100.414062"/>
<use xlink:href="#glyph-0-8" x="78.382031" y="100.414062"/>
<use xlink:href="#glyph-0-2" x="80.870312" y="100.414062"/>
<use xlink:href="#glyph-0-9" x="87.099219" y="100.414062"/>
<use xlink:href="#glyph-0-10" x="93.328125" y="100.414062"/>
<use xlink:href="#glyph-0-11" x="99.557031" y="100.414062"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="64.691406" y="66.023438"/>
<use xlink:href="#glyph-0-5" x="70.291406" y="66.023438"/>
<use xlink:href="#glyph-0-2" x="76.520312" y="66.023438"/>
<use xlink:href="#glyph-0-16" x="82.749219" y="66.023438"/>
<use xlink:href="#glyph-0-17" x="90.8375" y="66.023438"/>
<use xlink:href="#glyph-0-12" x="93.949219" y="66.023438"/>
<use xlink:href="#glyph-0-8" x="100.178125" y="66.023438"/>
<use xlink:href="#glyph-0-8" x="102.666406" y="66.023438"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-18" x="89.597656" y="31.628906"/>
<use xlink:href="#glyph-0-19" x="97.685937" y="31.628906"/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 233.976562 L 111.429688 233.976562 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 199.582031 L 111.429688 199.582031 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 165.1875 L 111.429688 165.1875 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 130.792969 L 111.429688 130.792969 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 96.398438 L 111.429688 96.398438 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 62.003906 L 111.429688 62.003906 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 27.609375 L 111.429688 27.609375 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 122.414062 258.101562 L 122.414062 254.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.160156 258.101562 L 200.160156 254.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 277.90625 258.101562 L 277.90625 254.613281 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-20" x="119.300781" y="268.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-21" x="190.816406" y="268.921875"/>
<use xlink:href="#glyph-0-20" x="197.045312" y="268.921875"/>
<use xlink:href="#glyph-0-20" x="203.274219" y="268.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-22" x="268.5625" y="268.921875"/>
<use xlink:href="#glyph-0-20" x="274.791406" y="268.921875"/>
<use xlink:href="#glyph-0-20" x="281.020313" y="268.921875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="215.105469" y="284.929688"/>
<use xlink:href="#glyph-1-1" x="222.105469" y="284.929688"/>
<use xlink:href="#glyph-1-2" x="229.891602" y="284.929688"/>
<use xlink:href="#glyph-1-3" x="237.677734" y="284.929688"/>
<use xlink:href="#glyph-1-4" x="245.463867" y="284.929688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="17.015625" y="172.820312"/>
<use xlink:href="#glyph-2-1" x="17.015625" y="162.709961"/>
<use xlink:href="#glyph-2-2" x="17.015625" y="154.923828"/>
<use xlink:href="#glyph-2-3" x="17.015625" y="147.137695"/>
<use xlink:href="#glyph-2-4" x="17.015625" y="143.248047"/>
<use xlink:href="#glyph-2-1" x="17.015625" y="135.461914"/>
<use xlink:href="#glyph-2-5" x="17.015625" y="127.675781"/>
<use xlink:href="#glyph-2-6" x="17.015625" y="123.013672"/>
<use xlink:href="#glyph-2-3" x="17.015625" y="115.227539"/>
<use xlink:href="#glyph-2-7" x="17.015625" y="111.337891"/>
<use xlink:href="#glyph-2-8" x="17.015625" y="104.337891"/>
<use xlink:href="#glyph-2-1" x="17.015625" y="96.551758"/>
</g>
</svg>

After

(image error) Size: 43 KiB

Binary file not shown.

After

(image error) Size: 49 KiB

View File

@ -0,0 +1,311 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="295" viewBox="0 0 360 295">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
</g>
<g id="glyph-0-1">
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
</g>
<g id="glyph-0-2">
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-3">
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
</g>
<g id="glyph-0-4">
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-5">
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
</g>
<g id="glyph-0-6">
</g>
<g id="glyph-0-7">
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
</g>
<g id="glyph-0-8">
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
</g>
<g id="glyph-0-9">
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-10">
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
</g>
<g id="glyph-0-11">
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
</g>
<g id="glyph-0-12">
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-13">
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
</g>
<g id="glyph-0-14">
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
</g>
<g id="glyph-0-15">
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
</g>
<g id="glyph-0-16">
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
</g>
<g id="glyph-0-17">
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
</g>
<g id="glyph-0-18">
<path d="M 0.859375 -8.03125 L 2.140625 -8.03125 L 6.203125 -1.53125 L 6.203125 -8.03125 L 7.234375 -8.03125 L 7.234375 0 L 6.015625 0 L 1.890625 -6.5 L 1.890625 0 L 0.859375 0 Z M 3.96875 -8.03125 Z M 3.96875 -8.03125 "/>
</g>
<g id="glyph-0-19">
<path d="M 4.984375 -3.296875 L 3.765625 -6.84375 L 2.46875 -3.296875 Z M 3.1875 -8.03125 L 4.421875 -8.03125 L 7.328125 0 L 6.140625 0 L 5.328125 -2.40625 L 2.15625 -2.40625 L 1.28125 0 L 0.171875 0 Z M 3.1875 -8.03125 "/>
</g>
<g id="glyph-0-20">
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
</g>
<g id="glyph-0-21">
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
</g>
<g id="glyph-0-22">
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
</g>
<g id="glyph-1-0">
<path d="M 3.71875 -7.53125 C 4.550781 -7.53125 5.222656 -7.328125 5.734375 -6.921875 C 6.253906 -6.523438 6.566406 -5.835938 6.671875 -4.859375 L 5.46875 -4.859375 C 5.394531 -5.304688 5.226562 -5.679688 4.96875 -5.984375 C 4.71875 -6.285156 4.300781 -6.4375 3.71875 -6.4375 C 2.9375 -6.4375 2.378906 -6.050781 2.046875 -5.28125 C 1.828125 -4.789062 1.71875 -4.179688 1.71875 -3.453125 C 1.71875 -2.710938 1.867188 -2.09375 2.171875 -1.59375 C 2.484375 -1.09375 2.972656 -0.84375 3.640625 -0.84375 C 4.148438 -0.84375 4.554688 -1 4.859375 -1.3125 C 5.160156 -1.625 5.363281 -2.050781 5.46875 -2.59375 L 6.671875 -2.59375 C 6.535156 -1.625 6.191406 -0.910156 5.640625 -0.453125 C 5.097656 -0.00390625 4.398438 0.21875 3.546875 0.21875 C 2.585938 0.21875 1.820312 -0.128906 1.25 -0.828125 C 0.6875 -1.535156 0.40625 -2.410156 0.40625 -3.453125 C 0.40625 -4.742188 0.71875 -5.742188 1.34375 -6.453125 C 1.96875 -7.171875 2.757812 -7.53125 3.71875 -7.53125 Z M 3.53125 -7.5 Z M 3.53125 -7.5 "/>
</g>
<g id="glyph-1-1">
<path d="M 3.8125 -0.796875 C 4.625 -0.796875 5.179688 -1.101562 5.484375 -1.71875 C 5.785156 -2.332031 5.9375 -3.019531 5.9375 -3.78125 C 5.9375 -4.46875 5.828125 -5.023438 5.609375 -5.453125 C 5.265625 -6.117188 4.671875 -6.453125 3.828125 -6.453125 C 3.066406 -6.453125 2.515625 -6.164062 2.171875 -5.59375 C 1.835938 -5.019531 1.671875 -4.328125 1.671875 -3.515625 C 1.671875 -2.742188 1.835938 -2.097656 2.171875 -1.578125 C 2.515625 -1.054688 3.0625 -0.796875 3.8125 -0.796875 Z M 3.859375 -7.53125 C 4.796875 -7.53125 5.585938 -7.210938 6.234375 -6.578125 C 6.890625 -5.953125 7.21875 -5.03125 7.21875 -3.8125 C 7.21875 -2.632812 6.929688 -1.660156 6.359375 -0.890625 C 5.785156 -0.117188 4.894531 0.265625 3.6875 0.265625 C 2.6875 0.265625 1.890625 -0.0703125 1.296875 -0.75 C 0.703125 -1.4375 0.40625 -2.351562 0.40625 -3.5 C 0.40625 -4.726562 0.71875 -5.707031 1.34375 -6.4375 C 1.96875 -7.164062 2.804688 -7.53125 3.859375 -7.53125 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-2">
<path d="M 2.140625 -7.328125 L 2.140625 -2.46875 C 2.140625 -2.09375 2.195312 -1.785156 2.3125 -1.546875 C 2.53125 -1.109375 2.9375 -0.890625 3.53125 -0.890625 C 4.382812 -0.890625 4.96875 -1.269531 5.28125 -2.03125 C 5.445312 -2.445312 5.53125 -3.007812 5.53125 -3.71875 L 5.53125 -7.328125 L 6.765625 -7.328125 L 6.765625 0 L 5.609375 0 L 5.625 -1.078125 C 5.457031 -0.796875 5.257812 -0.5625 5.03125 -0.375 C 4.5625 0.0078125 3.988281 0.203125 3.3125 0.203125 C 2.269531 0.203125 1.5625 -0.144531 1.1875 -0.84375 C 0.976562 -1.21875 0.875 -1.71875 0.875 -2.34375 L 0.875 -7.328125 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
</g>
<g id="glyph-1-3">
<path d="M 0.90625 -7.328125 L 2.078125 -7.328125 L 2.078125 -6.28125 C 2.421875 -6.707031 2.785156 -7.015625 3.171875 -7.203125 C 3.554688 -7.390625 3.988281 -7.484375 4.46875 -7.484375 C 5.5 -7.484375 6.195312 -7.125 6.5625 -6.40625 C 6.769531 -6 6.875 -5.429688 6.875 -4.703125 L 6.875 0 L 5.625 0 L 5.625 -4.609375 C 5.625 -5.054688 5.554688 -5.414062 5.421875 -5.6875 C 5.203125 -6.144531 4.804688 -6.375 4.234375 -6.375 C 3.941406 -6.375 3.703125 -6.347656 3.515625 -6.296875 C 3.179688 -6.191406 2.882812 -5.988281 2.625 -5.6875 C 2.414062 -5.445312 2.28125 -5.195312 2.21875 -4.9375 C 2.164062 -4.675781 2.140625 -4.304688 2.140625 -3.828125 L 2.140625 0 L 0.90625 0 Z M 3.796875 -7.5 Z M 3.796875 -7.5 "/>
</g>
<g id="glyph-1-4">
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
</g>
<g id="glyph-2-0">
<path d="M -7.328125 -1.46875 L -1.546875 -2.875 L -7.328125 -4.3125 L -7.328125 -5.6875 L -1.59375 -7.125 L -7.328125 -8.625 L -7.328125 -9.84375 L 0 -7.71875 L 0 -6.453125 L -5.671875 -4.953125 L 0 -3.515625 L 0 -2.234375 L -7.328125 -0.125 Z M -7.328125 -1.46875 "/>
</g>
<g id="glyph-2-1">
<path d="M -7.484375 -3.953125 C -7.484375 -4.472656 -7.359375 -4.972656 -7.109375 -5.453125 C -6.867188 -5.941406 -6.554688 -6.316406 -6.171875 -6.578125 C -5.804688 -6.828125 -5.375 -6.988281 -4.875 -7.0625 C -4.539062 -7.132812 -4.003906 -7.171875 -3.265625 -7.171875 L -3.265625 -1.8125 C -2.523438 -1.832031 -1.929688 -2.003906 -1.484375 -2.328125 C -1.035156 -2.660156 -0.8125 -3.171875 -0.8125 -3.859375 C -0.8125 -4.503906 -1.019531 -5.019531 -1.4375 -5.40625 C -1.6875 -5.625 -1.972656 -5.773438 -2.296875 -5.859375 L -2.296875 -7.078125 C -2.023438 -7.046875 -1.722656 -6.9375 -1.390625 -6.75 C -1.066406 -6.570312 -0.800781 -6.375 -0.59375 -6.15625 C -0.226562 -5.78125 0.0195312 -5.316406 0.15625 -4.765625 C 0.226562 -4.472656 0.265625 -4.140625 0.265625 -3.765625 C 0.265625 -2.847656 -0.0664062 -2.070312 -0.734375 -1.4375 C -1.398438 -0.8125 -2.328125 -0.5 -3.515625 -0.5 C -4.691406 -0.5 -5.644531 -0.816406 -6.375 -1.453125 C -7.113281 -2.085938 -7.484375 -2.921875 -7.484375 -3.953125 Z M -4.25 -5.90625 C -4.78125 -5.863281 -5.207031 -5.75 -5.53125 -5.5625 C -6.113281 -5.226562 -6.40625 -4.664062 -6.40625 -3.875 C -6.40625 -3.3125 -6.203125 -2.835938 -5.796875 -2.453125 C -5.390625 -2.066406 -4.875 -1.863281 -4.25 -1.84375 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
</g>
<g id="glyph-2-2">
<path d="M -1.953125 -1.84375 C -1.597656 -1.84375 -1.316406 -1.972656 -1.109375 -2.234375 C -0.898438 -2.492188 -0.796875 -2.800781 -0.796875 -3.15625 C -0.796875 -3.59375 -0.894531 -4.015625 -1.09375 -4.421875 C -1.425781 -5.097656 -1.972656 -5.4375 -2.734375 -5.4375 L -3.71875 -5.4375 C -3.625 -5.289062 -3.546875 -5.097656 -3.484375 -4.859375 C -3.421875 -4.617188 -3.375 -4.382812 -3.34375 -4.15625 L -3.25 -3.421875 C -3.195312 -2.972656 -3.101562 -2.632812 -2.96875 -2.40625 C -2.757812 -2.03125 -2.421875 -1.84375 -1.953125 -1.84375 Z M -4.4375 -4.828125 C -4.46875 -5.109375 -4.585938 -5.296875 -4.796875 -5.390625 C -4.898438 -5.441406 -5.054688 -5.46875 -5.265625 -5.46875 C -5.679688 -5.46875 -5.984375 -5.316406 -6.171875 -5.015625 C -6.359375 -4.722656 -6.453125 -4.300781 -6.453125 -3.75 C -6.453125 -3.101562 -6.28125 -2.644531 -5.9375 -2.375 C -5.75 -2.226562 -5.46875 -2.128906 -5.09375 -2.078125 L -5.09375 -0.9375 C -5.988281 -0.957031 -6.613281 -1.25 -6.96875 -1.8125 C -7.320312 -2.375 -7.5 -3.03125 -7.5 -3.78125 C -7.5 -4.632812 -7.332031 -5.332031 -7 -5.875 C -6.675781 -6.40625 -6.164062 -6.671875 -5.46875 -6.671875 L -1.265625 -6.671875 C -1.128906 -6.671875 -1.019531 -6.695312 -0.9375 -6.75 C -0.863281 -6.800781 -0.828125 -6.910156 -0.828125 -7.078125 C -0.828125 -7.140625 -0.832031 -7.203125 -0.84375 -7.265625 C -0.851562 -7.335938 -0.863281 -7.410156 -0.875 -7.484375 L 0.03125 -7.484375 C 0.0820312 -7.296875 0.113281 -7.148438 0.125 -7.046875 C 0.144531 -6.941406 0.15625 -6.804688 0.15625 -6.640625 C 0.15625 -6.210938 0.00390625 -5.90625 -0.296875 -5.71875 C -0.453125 -5.613281 -0.675781 -5.539062 -0.96875 -5.5 C -0.644531 -5.25 -0.359375 -4.890625 -0.109375 -4.421875 C 0.128906 -3.953125 0.25 -3.4375 0.25 -2.875 C 0.25 -2.195312 0.0429688 -1.640625 -0.359375 -1.203125 C -0.773438 -0.773438 -1.296875 -0.5625 -1.921875 -0.5625 C -2.597656 -0.5625 -3.125 -0.769531 -3.5 -1.1875 C -3.875 -1.613281 -4.101562 -2.171875 -4.1875 -2.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
</g>
<g id="glyph-2-3">
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
</g>
<g id="glyph-2-4">
<path d="M -10.078125 -0.90625 L -10.078125 -2.140625 L -6.328125 -2.140625 C -6.703125 -2.429688 -6.960938 -2.691406 -7.109375 -2.921875 C -7.367188 -3.316406 -7.5 -3.8125 -7.5 -4.40625 C -7.5 -5.46875 -7.128906 -6.1875 -6.390625 -6.5625 C -5.984375 -6.769531 -5.421875 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.609375 L -4.609375 -5.609375 C -5.148438 -5.609375 -5.546875 -5.539062 -5.796875 -5.40625 C -6.203125 -5.175781 -6.40625 -4.753906 -6.40625 -4.140625 C -6.40625 -3.628906 -6.226562 -3.164062 -5.875 -2.75 C -5.519531 -2.34375 -4.859375 -2.140625 -3.890625 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -10.078125 -0.90625 "/>
</g>
<g id="glyph-2-5">
<path d="M -7.328125 -0.9375 L -7.328125 -2.109375 L -6.0625 -2.109375 C -6.300781 -2.203125 -6.597656 -2.4375 -6.953125 -2.8125 C -7.304688 -3.1875 -7.484375 -3.617188 -7.484375 -4.109375 C -7.484375 -4.128906 -7.476562 -4.164062 -7.46875 -4.21875 C -7.46875 -4.269531 -7.460938 -4.363281 -7.453125 -4.5 L -6.15625 -4.5 C -6.164062 -4.425781 -6.171875 -4.359375 -6.171875 -4.296875 C -6.179688 -4.234375 -6.1875 -4.164062 -6.1875 -4.09375 C -6.1875 -3.476562 -5.984375 -3.003906 -5.578125 -2.671875 C -5.179688 -2.335938 -4.726562 -2.171875 -4.21875 -2.171875 L 0 -2.171875 L 0 -0.9375 Z M -7.328125 -0.9375 "/>
</g>
<g id="glyph-2-6">
<path d="M 1.75 0 L 1.0625 0 L 1.0625 -7.78125 L 1.75 -7.78125 Z M 1.75 0 "/>
</g>
<g id="glyph-2-7">
<path d="M -7.328125 -5.46875 L -7.328125 -6.84375 C -6.859375 -6.664062 -5.785156 -6.28125 -4.109375 -5.6875 C -2.847656 -5.238281 -1.820312 -4.863281 -1.03125 -4.5625 C 0.832031 -3.851562 1.96875 -3.351562 2.375 -3.0625 C 2.789062 -2.769531 3 -2.265625 3 -1.546875 C 3 -1.378906 2.988281 -1.25 2.96875 -1.15625 C 2.957031 -1.0625 2.9375 -0.945312 2.90625 -0.8125 L 1.78125 -0.8125 C 1.84375 -1.019531 1.878906 -1.171875 1.890625 -1.265625 C 1.910156 -1.367188 1.921875 -1.457031 1.921875 -1.53125 C 1.921875 -1.75 1.878906 -1.910156 1.796875 -2.015625 C 1.722656 -2.128906 1.632812 -2.222656 1.53125 -2.296875 C 1.488281 -2.316406 1.296875 -2.394531 0.953125 -2.53125 C 0.617188 -2.675781 0.375 -2.78125 0.21875 -2.84375 L -7.328125 -0.140625 L -7.328125 -1.53125 L -1.359375 -3.5 Z M -7.5 -3.5 Z M -7.5 -3.5 "/>
</g>
<g id="glyph-2-8">
<path d="M -0.828125 -4 C -0.828125 -4.570312 -1.066406 -5.046875 -1.546875 -5.421875 C -2.023438 -5.804688 -2.742188 -6 -3.703125 -6 C -4.285156 -6 -4.785156 -5.914062 -5.203125 -5.75 C -6.015625 -5.425781 -6.421875 -4.84375 -6.421875 -4 C -6.421875 -3.144531 -5.992188 -2.5625 -5.140625 -2.25 C -4.679688 -2.070312 -4.101562 -1.984375 -3.40625 -1.984375 C -2.84375 -1.984375 -2.363281 -2.070312 -1.96875 -2.25 C -1.207031 -2.5625 -0.828125 -3.144531 -0.828125 -4 Z M -7.28125 -0.8125 L -7.28125 -2 L -6.3125 -2 C -6.644531 -2.25 -6.90625 -2.519531 -7.09375 -2.8125 C -7.363281 -3.226562 -7.5 -3.710938 -7.5 -4.265625 C -7.5 -5.097656 -7.179688 -5.800781 -6.546875 -6.375 C -5.910156 -6.957031 -5.003906 -7.25 -3.828125 -7.25 C -2.222656 -7.25 -1.082031 -6.832031 -0.40625 -6 C 0.0273438 -5.46875 0.25 -4.851562 0.25 -4.15625 C 0.25 -3.601562 0.128906 -3.140625 -0.109375 -2.765625 C -0.253906 -2.546875 -0.492188 -2.300781 -0.828125 -2.03125 L 2.921875 -2.03125 L 2.921875 -0.8125 Z M -7.28125 -0.8125 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 111.429688 6.972656 L 353.023438 6.972656 L 353.023438 254.613281 L 111.429688 254.613281 Z M 111.429688 6.972656 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 111.429688 233 L 353.023438 233 L 353.023438 235 L 111.429688 235 Z M 111.429688 233 "/>
</clipPath>
<clipPath id="clip-2">
<path clip-rule="nonzero" d="M 111.429688 199 L 353.023438 199 L 353.023438 200 L 111.429688 200 Z M 111.429688 199 "/>
</clipPath>
<clipPath id="clip-3">
<path clip-rule="nonzero" d="M 111.429688 164 L 353.023438 164 L 353.023438 166 L 111.429688 166 Z M 111.429688 164 "/>
</clipPath>
<clipPath id="clip-4">
<path clip-rule="nonzero" d="M 111.429688 130 L 353.023438 130 L 353.023438 132 L 111.429688 132 Z M 111.429688 130 "/>
</clipPath>
<clipPath id="clip-5">
<path clip-rule="nonzero" d="M 111.429688 96 L 353.023438 96 L 353.023438 97 L 111.429688 97 Z M 111.429688 96 "/>
</clipPath>
<clipPath id="clip-6">
<path clip-rule="nonzero" d="M 111.429688 61 L 353.023438 61 L 353.023438 63 L 111.429688 63 Z M 111.429688 61 "/>
</clipPath>
<clipPath id="clip-7">
<path clip-rule="nonzero" d="M 111.429688 27 L 353.023438 27 L 353.023438 28 L 111.429688 28 Z M 111.429688 27 "/>
</clipPath>
<clipPath id="clip-8">
<path clip-rule="nonzero" d="M 122 6.972656 L 123 6.972656 L 123 254.613281 L 122 254.613281 Z M 122 6.972656 "/>
</clipPath>
<clipPath id="clip-9">
<path clip-rule="nonzero" d="M 199 6.972656 L 201 6.972656 L 201 254.613281 L 199 254.613281 Z M 199 6.972656 "/>
</clipPath>
<clipPath id="clip-10">
<path clip-rule="nonzero" d="M 277 6.972656 L 279 6.972656 L 279 254.613281 L 277 254.613281 Z M 277 6.972656 "/>
</clipPath>
<clipPath id="clip-11">
<path clip-rule="nonzero" d="M 111.429688 6.972656 L 353.023438 6.972656 L 353.023438 254.613281 L 111.429688 254.613281 Z M 111.429688 6.972656 "/>
</clipPath>
</defs>
<rect x="-36" y="-29.5" width="432" height="354" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<rect x="-36" y="-29.5" width="432" height="354" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 295 L 360 295 L 360 0 L 0 0 Z M 0 295 "/>
<g clip-path="url(#clip-0)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 111.429688 254.613281 L 353.023438 254.613281 L 353.023438 6.972656 L 111.429688 6.972656 Z M 111.429688 254.613281 "/>
</g>
<g clip-path="url(#clip-1)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 233.976562 L 353.027344 233.976562 "/>
</g>
<g clip-path="url(#clip-2)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 199.582031 L 353.027344 199.582031 "/>
</g>
<g clip-path="url(#clip-3)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 165.1875 L 353.027344 165.1875 "/>
</g>
<g clip-path="url(#clip-4)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 130.792969 L 353.027344 130.792969 "/>
</g>
<g clip-path="url(#clip-5)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 96.398438 L 353.027344 96.398438 "/>
</g>
<g clip-path="url(#clip-6)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 62.003906 L 353.027344 62.003906 "/>
</g>
<g clip-path="url(#clip-7)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 27.609375 L 353.027344 27.609375 "/>
</g>
<g clip-path="url(#clip-8)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 122.414062 254.613281 L 122.414062 6.972656 "/>
</g>
<g clip-path="url(#clip-9)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.160156 254.613281 L 200.160156 6.972656 "/>
</g>
<g clip-path="url(#clip-10)">
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 277.90625 254.613281 L 277.90625 6.972656 "/>
</g>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 249.453125 L 226.203125 249.453125 L 226.203125 218.5 L 122.414062 218.5 Z M 122.414062 249.453125 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 215.058594 L 342.046875 215.058594 L 342.046875 184.105469 L 122.414062 184.105469 Z M 122.414062 215.058594 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 180.664062 L 153.125 180.664062 L 153.125 149.710938 L 122.414062 149.710938 Z M 122.414062 180.664062 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 146.269531 L 183.445312 146.269531 L 183.445312 115.316406 L 122.414062 115.316406 Z M 122.414062 146.269531 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 111.875 L 243.308594 111.875 L 243.308594 80.921875 L 122.414062 80.921875 Z M 122.414062 111.875 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 77.480469 L 123.582031 77.480469 L 123.582031 46.527344 L 122.414062 46.527344 Z M 122.414062 77.480469 "/>
<path fill-rule="nonzero" fill="rgb(34.901961%, 34.901961%, 34.901961%)" fill-opacity="1" d="M 122.414062 43.089844 L 150.402344 43.089844 L 150.402344 12.136719 L 122.414062 12.136719 Z M 122.414062 43.089844 "/>
<g clip-path="url(#clip-11)">
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.429688 254.613281 L 353.023438 254.613281 L 353.023438 6.972656 L 111.429688 6.972656 Z M 111.429688 254.613281 "/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="35.425781" y="237.992188"/>
<use xlink:href="#glyph-0-1" x="41.654688" y="237.992188"/>
<use xlink:href="#glyph-0-2" x="45.384375" y="237.992188"/>
<use xlink:href="#glyph-0-3" x="51.613281" y="237.992188"/>
<use xlink:href="#glyph-0-4" x="57.213281" y="237.992188"/>
<use xlink:href="#glyph-0-5" x="63.442188" y="237.992188"/>
<use xlink:href="#glyph-0-6" x="69.671094" y="237.992188"/>
<use xlink:href="#glyph-0-7" x="72.782812" y="237.992188"/>
<use xlink:href="#glyph-0-8" x="78.382812" y="237.992188"/>
<use xlink:href="#glyph-0-2" x="80.871094" y="237.992188"/>
<use xlink:href="#glyph-0-9" x="87.1" y="237.992188"/>
<use xlink:href="#glyph-0-10" x="93.328906" y="237.992188"/>
<use xlink:href="#glyph-0-11" x="99.557812" y="237.992188"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-7" x="80.878906" y="203.597656"/>
<use xlink:href="#glyph-0-8" x="86.478906" y="203.597656"/>
<use xlink:href="#glyph-0-4" x="88.967187" y="203.597656"/>
<use xlink:href="#glyph-0-12" x="95.196094" y="203.597656"/>
<use xlink:href="#glyph-0-1" x="101.425" y="203.597656"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-7" x="72.78125" y="169.203125"/>
<use xlink:href="#glyph-0-8" x="78.38125" y="169.203125"/>
<use xlink:href="#glyph-0-2" x="80.869531" y="169.203125"/>
<use xlink:href="#glyph-0-9" x="87.098437" y="169.203125"/>
<use xlink:href="#glyph-0-10" x="93.327344" y="169.203125"/>
<use xlink:href="#glyph-0-13" x="99.55625" y="169.203125"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="86.480469" y="134.808594"/>
<use xlink:href="#glyph-0-12" x="90.210156" y="134.808594"/>
<use xlink:href="#glyph-0-14" x="96.439062" y="134.808594"/>
<use xlink:href="#glyph-0-5" x="98.927344" y="134.808594"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="23.601562" y="100.414062"/>
<use xlink:href="#glyph-0-7" x="29.201563" y="100.414062"/>
<use xlink:href="#glyph-0-12" x="34.801563" y="100.414062"/>
<use xlink:href="#glyph-0-15" x="41.030469" y="100.414062"/>
<use xlink:href="#glyph-0-15" x="44.142188" y="100.414062"/>
<use xlink:href="#glyph-0-4" x="47.253906" y="100.414062"/>
<use xlink:href="#glyph-0-1" x="53.482813" y="100.414062"/>
<use xlink:href="#glyph-0-4" x="57.2125" y="100.414062"/>
<use xlink:href="#glyph-0-10" x="63.441406" y="100.414062"/>
<use xlink:href="#glyph-0-6" x="69.670313" y="100.414062"/>
<use xlink:href="#glyph-0-7" x="72.782031" y="100.414062"/>
<use xlink:href="#glyph-0-8" x="78.382031" y="100.414062"/>
<use xlink:href="#glyph-0-2" x="80.870312" y="100.414062"/>
<use xlink:href="#glyph-0-9" x="87.099219" y="100.414062"/>
<use xlink:href="#glyph-0-10" x="93.328125" y="100.414062"/>
<use xlink:href="#glyph-0-11" x="99.557031" y="100.414062"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="64.691406" y="66.023438"/>
<use xlink:href="#glyph-0-5" x="70.291406" y="66.023438"/>
<use xlink:href="#glyph-0-2" x="76.520312" y="66.023438"/>
<use xlink:href="#glyph-0-16" x="82.749219" y="66.023438"/>
<use xlink:href="#glyph-0-17" x="90.8375" y="66.023438"/>
<use xlink:href="#glyph-0-12" x="93.949219" y="66.023438"/>
<use xlink:href="#glyph-0-8" x="100.178125" y="66.023438"/>
<use xlink:href="#glyph-0-8" x="102.666406" y="66.023438"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-18" x="89.597656" y="31.628906"/>
<use xlink:href="#glyph-0-19" x="97.685937" y="31.628906"/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 233.976562 L 111.429688 233.976562 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 199.582031 L 111.429688 199.582031 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 165.1875 L 111.429688 165.1875 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 130.792969 L 111.429688 130.792969 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 96.398438 L 111.429688 96.398438 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 62.003906 L 111.429688 62.003906 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.945312 27.609375 L 111.429688 27.609375 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 122.414062 258.101562 L 122.414062 254.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.160156 258.101562 L 200.160156 254.613281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 277.90625 258.101562 L 277.90625 254.613281 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-20" x="119.300781" y="268.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-21" x="190.816406" y="268.921875"/>
<use xlink:href="#glyph-0-20" x="197.045312" y="268.921875"/>
<use xlink:href="#glyph-0-20" x="203.274219" y="268.921875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-22" x="268.5625" y="268.921875"/>
<use xlink:href="#glyph-0-20" x="274.791406" y="268.921875"/>
<use xlink:href="#glyph-0-20" x="281.020313" y="268.921875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="215.105469" y="284.929688"/>
<use xlink:href="#glyph-1-1" x="222.105469" y="284.929688"/>
<use xlink:href="#glyph-1-2" x="229.891602" y="284.929688"/>
<use xlink:href="#glyph-1-3" x="237.677734" y="284.929688"/>
<use xlink:href="#glyph-1-4" x="245.463867" y="284.929688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="17.015625" y="172.820312"/>
<use xlink:href="#glyph-2-1" x="17.015625" y="162.709961"/>
<use xlink:href="#glyph-2-2" x="17.015625" y="154.923828"/>
<use xlink:href="#glyph-2-3" x="17.015625" y="147.137695"/>
<use xlink:href="#glyph-2-4" x="17.015625" y="143.248047"/>
<use xlink:href="#glyph-2-1" x="17.015625" y="135.461914"/>
<use xlink:href="#glyph-2-5" x="17.015625" y="127.675781"/>
<use xlink:href="#glyph-2-6" x="17.015625" y="123.013672"/>
<use xlink:href="#glyph-2-3" x="17.015625" y="115.227539"/>
<use xlink:href="#glyph-2-7" x="17.015625" y="111.337891"/>
<use xlink:href="#glyph-2-8" x="17.015625" y="104.337891"/>
<use xlink:href="#glyph-2-1" x="17.015625" y="96.551758"/>
</g>
</svg>

After

(image error) Size: 43 KiB

Binary file not shown.

After

(image error) Size: 99 KiB

View File

@ -0,0 +1,378 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="280" viewBox="0 0 360 280">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
</g>
<g id="glyph-0-1">
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
</g>
<g id="glyph-0-2">
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-3">
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
</g>
<g id="glyph-0-4">
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-5">
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
</g>
<g id="glyph-0-6">
</g>
<g id="glyph-0-7">
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
</g>
<g id="glyph-0-8">
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
</g>
<g id="glyph-0-9">
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-10">
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
</g>
<g id="glyph-0-11">
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
</g>
<g id="glyph-0-12">
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-13">
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
</g>
<g id="glyph-0-14">
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
</g>
<g id="glyph-0-15">
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
</g>
<g id="glyph-0-16">
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
</g>
<g id="glyph-0-17">
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
</g>
<g id="glyph-0-18">
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
</g>
<g id="glyph-0-19">
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
</g>
<g id="glyph-0-20">
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
</g>
<g id="glyph-0-21">
<path d="M 2.90625 0.21875 C 1.976562 0.21875 1.304688 -0.0351562 0.890625 -0.546875 C 0.472656 -1.054688 0.265625 -1.675781 0.265625 -2.40625 L 1.296875 -2.40625 C 1.335938 -1.894531 1.429688 -1.523438 1.578125 -1.296875 C 1.835938 -0.890625 2.300781 -0.6875 2.96875 -0.6875 C 3.476562 -0.6875 3.890625 -0.820312 4.203125 -1.09375 C 4.523438 -1.375 4.6875 -1.734375 4.6875 -2.171875 C 4.6875 -2.710938 4.519531 -3.085938 4.1875 -3.296875 C 3.851562 -3.515625 3.394531 -3.625 2.8125 -3.625 C 2.75 -3.625 2.679688 -3.625 2.609375 -3.625 C 2.546875 -3.625 2.476562 -3.617188 2.40625 -3.609375 L 2.40625 -4.484375 C 2.507812 -4.472656 2.59375 -4.460938 2.65625 -4.453125 C 2.726562 -4.453125 2.804688 -4.453125 2.890625 -4.453125 C 3.253906 -4.453125 3.554688 -4.515625 3.796875 -4.640625 C 4.210938 -4.835938 4.421875 -5.203125 4.421875 -5.734375 C 4.421875 -6.117188 4.28125 -6.414062 4 -6.625 C 3.726562 -6.84375 3.40625 -6.953125 3.03125 -6.953125 C 2.375 -6.953125 1.921875 -6.734375 1.671875 -6.296875 C 1.535156 -6.054688 1.457031 -5.710938 1.4375 -5.265625 L 0.46875 -5.265625 C 0.46875 -5.847656 0.582031 -6.34375 0.8125 -6.75 C 1.21875 -7.476562 1.925781 -7.84375 2.9375 -7.84375 C 3.726562 -7.84375 4.34375 -7.664062 4.78125 -7.3125 C 5.21875 -6.957031 5.4375 -6.441406 5.4375 -5.765625 C 5.4375 -5.285156 5.304688 -4.894531 5.046875 -4.59375 C 4.890625 -4.40625 4.6875 -4.257812 4.4375 -4.15625 C 4.84375 -4.039062 5.160156 -3.820312 5.390625 -3.5 C 5.628906 -3.175781 5.75 -2.78125 5.75 -2.3125 C 5.75 -1.570312 5.5 -0.960938 5 -0.484375 C 4.507812 -0.015625 3.8125 0.21875 2.90625 0.21875 Z M 2.90625 0.21875 "/>
</g>
<g id="glyph-0-22">
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
</g>
<g id="glyph-0-23">
<path d="M 1.390625 -2 C 1.453125 -1.4375 1.710938 -1.046875 2.171875 -0.828125 C 2.398438 -0.722656 2.664062 -0.671875 2.96875 -0.671875 C 3.550781 -0.671875 3.984375 -0.851562 4.265625 -1.21875 C 4.546875 -1.59375 4.6875 -2.007812 4.6875 -2.46875 C 4.6875 -3.007812 4.519531 -3.425781 4.1875 -3.71875 C 3.851562 -4.019531 3.457031 -4.171875 3 -4.171875 C 2.65625 -4.171875 2.359375 -4.101562 2.109375 -3.96875 C 1.867188 -3.84375 1.664062 -3.664062 1.5 -3.4375 L 0.640625 -3.484375 L 1.234375 -7.703125 L 5.3125 -7.703125 L 5.3125 -6.75 L 1.984375 -6.75 L 1.640625 -4.578125 C 1.828125 -4.710938 2.003906 -4.816406 2.171875 -4.890625 C 2.460938 -5.003906 2.796875 -5.0625 3.171875 -5.0625 C 3.890625 -5.0625 4.5 -4.828125 5 -4.359375 C 5.5 -3.898438 5.75 -3.316406 5.75 -2.609375 C 5.75 -1.867188 5.519531 -1.210938 5.0625 -0.640625 C 4.601562 -0.078125 3.875 0.203125 2.875 0.203125 C 2.238281 0.203125 1.675781 0.0234375 1.1875 -0.328125 C 0.695312 -0.691406 0.421875 -1.25 0.359375 -2 Z M 1.390625 -2 "/>
</g>
<g id="glyph-1-0">
<path d="M 1.46875 -7.328125 L 2.875 -1.546875 L 4.3125 -7.328125 L 5.6875 -7.328125 L 7.125 -1.59375 L 8.625 -7.328125 L 9.84375 -7.328125 L 7.71875 0 L 6.453125 0 L 4.953125 -5.671875 L 3.515625 0 L 2.234375 0 L 0.125 -7.328125 Z M 1.46875 -7.328125 "/>
</g>
<g id="glyph-1-1">
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
</g>
<g id="glyph-1-2">
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-3">
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
</g>
<g id="glyph-1-4">
<path d="M 0.90625 -10.078125 L 2.140625 -10.078125 L 2.140625 -6.328125 C 2.429688 -6.703125 2.691406 -6.960938 2.921875 -7.109375 C 3.316406 -7.367188 3.8125 -7.5 4.40625 -7.5 C 5.46875 -7.5 6.1875 -7.128906 6.5625 -6.390625 C 6.769531 -5.984375 6.875 -5.421875 6.875 -4.703125 L 6.875 0 L 5.609375 0 L 5.609375 -4.609375 C 5.609375 -5.148438 5.539062 -5.546875 5.40625 -5.796875 C 5.175781 -6.203125 4.753906 -6.40625 4.140625 -6.40625 C 3.628906 -6.40625 3.164062 -6.226562 2.75 -5.875 C 2.34375 -5.519531 2.140625 -4.859375 2.140625 -3.890625 L 2.140625 0 L 0.90625 0 Z M 0.90625 -10.078125 "/>
</g>
<g id="glyph-1-5">
<path d="M 0.9375 -7.328125 L 2.109375 -7.328125 L 2.109375 -6.0625 C 2.203125 -6.300781 2.4375 -6.597656 2.8125 -6.953125 C 3.1875 -7.304688 3.617188 -7.484375 4.109375 -7.484375 C 4.128906 -7.484375 4.164062 -7.476562 4.21875 -7.46875 C 4.269531 -7.46875 4.363281 -7.460938 4.5 -7.453125 L 4.5 -6.15625 C 4.425781 -6.164062 4.359375 -6.171875 4.296875 -6.171875 C 4.234375 -6.179688 4.164062 -6.1875 4.09375 -6.1875 C 3.476562 -6.1875 3.003906 -5.984375 2.671875 -5.578125 C 2.335938 -5.179688 2.171875 -4.726562 2.171875 -4.21875 L 2.171875 0 L 0.9375 0 Z M 0.9375 -7.328125 "/>
</g>
<g id="glyph-1-6">
<path d="M 0 1.75 L 0 1.0625 L 7.78125 1.0625 L 7.78125 1.75 Z M 0 1.75 "/>
</g>
<g id="glyph-1-7">
<path d="M 5.46875 -7.328125 L 6.84375 -7.328125 C 6.664062 -6.859375 6.28125 -5.785156 5.6875 -4.109375 C 5.238281 -2.847656 4.863281 -1.820312 4.5625 -1.03125 C 3.851562 0.832031 3.351562 1.96875 3.0625 2.375 C 2.769531 2.789062 2.265625 3 1.546875 3 C 1.378906 3 1.25 2.988281 1.15625 2.96875 C 1.0625 2.957031 0.945312 2.9375 0.8125 2.90625 L 0.8125 1.78125 C 1.019531 1.84375 1.171875 1.878906 1.265625 1.890625 C 1.367188 1.910156 1.457031 1.921875 1.53125 1.921875 C 1.75 1.921875 1.910156 1.878906 2.015625 1.796875 C 2.128906 1.722656 2.222656 1.632812 2.296875 1.53125 C 2.316406 1.488281 2.394531 1.296875 2.53125 0.953125 C 2.675781 0.617188 2.78125 0.375 2.84375 0.21875 L 0.140625 -7.328125 L 1.53125 -7.328125 L 3.5 -1.359375 Z M 3.5 -7.5 Z M 3.5 -7.5 "/>
</g>
<g id="glyph-1-8">
<path d="M 4 -0.828125 C 4.570312 -0.828125 5.046875 -1.066406 5.421875 -1.546875 C 5.804688 -2.023438 6 -2.742188 6 -3.703125 C 6 -4.285156 5.914062 -4.785156 5.75 -5.203125 C 5.425781 -6.015625 4.84375 -6.421875 4 -6.421875 C 3.144531 -6.421875 2.5625 -5.992188 2.25 -5.140625 C 2.070312 -4.679688 1.984375 -4.101562 1.984375 -3.40625 C 1.984375 -2.84375 2.070312 -2.363281 2.25 -1.96875 C 2.5625 -1.207031 3.144531 -0.828125 4 -0.828125 Z M 0.8125 -7.28125 L 2 -7.28125 L 2 -6.3125 C 2.25 -6.644531 2.519531 -6.90625 2.8125 -7.09375 C 3.226562 -7.363281 3.710938 -7.5 4.265625 -7.5 C 5.097656 -7.5 5.800781 -7.179688 6.375 -6.546875 C 6.957031 -5.910156 7.25 -5.003906 7.25 -3.828125 C 7.25 -2.222656 6.832031 -1.082031 6 -0.40625 C 5.46875 0.0273438 4.851562 0.25 4.15625 0.25 C 3.601562 0.25 3.140625 0.128906 2.765625 -0.109375 C 2.546875 -0.253906 2.300781 -0.492188 2.03125 -0.828125 L 2.03125 2.921875 L 0.8125 2.921875 Z M 0.8125 -7.28125 "/>
</g>
<g id="glyph-2-0">
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
</g>
<g id="glyph-2-1">
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
</g>
<g id="glyph-2-2">
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
</g>
<g id="glyph-2-3">
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
</g>
<g id="glyph-2-4">
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 66.609375 0 L 293.390625 0 L 293.390625 280 L 66.609375 280 Z M 66.609375 0 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 115.171875 76.402344 L 286.414062 76.402344 L 286.414062 247.644531 L 115.171875 247.644531 Z M 115.171875 76.402344 "/>
</clipPath>
<clipPath id="clip-2">
<path clip-rule="nonzero" d="M 266 158 L 286.414062 158 L 286.414062 167 L 266 167 Z M 266 158 "/>
</clipPath>
<clipPath id="clip-3">
<path clip-rule="nonzero" d="M 115.171875 157 L 165 157 L 165 167 L 115.171875 167 Z M 115.171875 157 "/>
</clipPath>
<clipPath id="clip-4">
<path clip-rule="nonzero" d="M 115.171875 76.402344 L 286.414062 76.402344 L 286.414062 247.644531 L 115.171875 247.644531 Z M 115.171875 76.402344 "/>
</clipPath>
</defs>
<rect x="-36" y="-28" width="432" height="336" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<g clip-path="url(#clip-0)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 66.609375 280 L 293.390625 280 L 293.390625 0 L 66.609375 0 Z M 66.609375 280 "/>
</g>
<g clip-path="url(#clip-1)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 115.171875 247.648438 L 286.414062 247.648438 L 286.414062 76.40625 L 115.171875 76.40625 Z M 115.171875 247.648438 "/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 239.324219 95.289062 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 277.855469 162.023438 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 239.324219 228.761719 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 162.265625 228.761719 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 123.734375 162.023438 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 162.265625 95.289062 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 200.792969 162.023438 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 149.902344 L 201.5625 149.925781 L 202.328125 150 L 203.089844 150.121094 L 203.839844 150.289062 L 204.578125 150.507812 L 205.300781 150.769531 L 206.003906 151.078125 L 206.6875 151.429688 L 207.347656 151.824219 L 207.984375 152.261719 L 208.585938 152.738281 L 209.160156 153.25 L 209.699219 153.800781 L 210.203125 154.378906 L 210.667969 154.992188 L 211.097656 155.632812 L 211.480469 156.300781 L 211.820312 156.988281 L 212.121094 157.699219 L 212.371094 158.425781 L 212.574219 159.167969 L 212.734375 159.917969 L 212.84375 160.679688 L 212.902344 161.449219 L 212.917969 162.21875 L 212.878906 162.984375 L 212.792969 163.75 L 212.660156 164.507812 L 212.480469 165.253906 L 212.25 165.988281 L 211.976562 166.707031 L 211.65625 167.410156 L 211.292969 168.085938 L 210.886719 168.742188 L 210.441406 169.367188 L 209.957031 169.964844 L 209.433594 170.527344 L 208.878906 171.058594 L 208.289062 171.554688 L 207.667969 172.011719 L 207.023438 172.425781 L 206.351562 172.800781 L 205.65625 173.132812 L 204.941406 173.417969 L 204.210938 173.65625 L 203.464844 173.851562 L 202.710938 173.996094 L 201.945312 174.09375 L 201.179688 174.140625 L 200.410156 174.140625 L 199.640625 174.09375 L 198.878906 173.996094 L 198.125 173.851562 L 197.378906 173.65625 L 196.648438 173.417969 L 195.933594 173.132812 L 195.238281 172.800781 L 194.566406 172.425781 L 193.917969 172.011719 L 193.300781 171.554688 L 192.710938 171.058594 L 192.152344 170.527344 L 191.632812 169.964844 L 191.148438 169.367188 L 190.699219 168.742188 L 190.296875 168.085938 L 189.933594 167.410156 L 189.613281 166.707031 L 189.335938 165.988281 L 189.109375 165.253906 L 188.929688 164.507812 L 188.792969 163.75 L 188.710938 162.984375 L 188.671875 162.21875 L 188.683594 161.449219 L 188.746094 160.679688 L 188.855469 159.917969 L 189.011719 159.167969 L 189.21875 158.425781 L 189.46875 157.699219 L 189.765625 156.988281 L 190.109375 156.300781 L 190.492188 155.632812 L 190.917969 154.992188 L 191.386719 154.378906 L 191.886719 153.800781 L 192.429688 153.25 L 193 152.738281 L 193.605469 152.261719 L 194.238281 151.824219 L 194.898438 151.429688 L 195.582031 151.078125 L 196.289062 150.769531 L 197.011719 150.507812 L 197.75 150.289062 L 198.5 150.121094 L 199.257812 150 L 200.027344 149.925781 L 200.792969 149.902344 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 137.777344 L 202.332031 137.828125 L 203.863281 137.972656 L 205.382812 138.214844 L 206.882812 138.554688 L 208.359375 138.988281 L 209.804688 139.515625 L 211.214844 140.132812 L 212.582031 140.835938 L 213.902344 141.628906 L 215.171875 142.5 L 216.378906 143.449219 L 217.527344 144.476562 L 218.605469 145.574219 L 219.613281 146.734375 L 220.546875 147.960938 L 221.398438 149.242188 L 222.167969 150.574219 L 222.851562 151.953125 L 223.445312 153.371094 L 223.949219 154.824219 L 224.359375 156.308594 L 224.671875 157.816406 L 224.890625 159.335938 L 225.015625 160.871094 L 225.039062 162.410156 L 224.964844 163.945312 L 224.792969 165.476562 L 224.527344 166.992188 L 224.164062 168.484375 L 223.707031 169.957031 L 223.160156 171.394531 L 222.519531 172.792969 L 221.792969 174.148438 L 220.980469 175.457031 L 220.089844 176.710938 L 219.117188 177.902344 L 218.074219 179.035156 L 216.960938 180.09375 L 215.78125 181.085938 L 214.542969 181.996094 L 213.25 182.828125 L 211.90625 183.578125 L 210.515625 184.238281 L 209.085938 184.808594 L 207.625 185.289062 L 206.136719 185.675781 L 204.625 185.96875 L 203.097656 186.160156 L 201.5625 186.257812 L 200.023438 186.257812 L 198.488281 186.160156 L 196.964844 185.96875 L 195.453125 185.675781 L 193.964844 185.289062 L 192.5 184.808594 L 191.074219 184.238281 L 189.683594 183.578125 L 188.339844 182.828125 L 187.046875 181.996094 L 185.804688 181.085938 L 184.628906 180.09375 L 183.515625 179.035156 L 182.46875 177.902344 L 181.5 176.710938 L 180.605469 175.457031 L 179.796875 174.148438 L 179.070312 172.792969 L 178.429688 171.394531 L 177.882812 169.957031 L 177.425781 168.484375 L 177.0625 166.992188 L 176.792969 165.476562 L 176.625 163.945312 L 176.550781 162.410156 L 176.574219 160.871094 L 176.695312 159.335938 L 176.914062 157.816406 L 177.230469 156.308594 L 177.640625 154.824219 L 178.144531 153.371094 L 178.738281 151.953125 L 179.421875 150.574219 L 180.191406 149.242188 L 181.042969 147.960938 L 181.976562 146.734375 L 182.984375 145.574219 L 184.0625 144.476562 L 185.207031 143.449219 L 186.417969 142.5 L 187.683594 141.628906 L 189.003906 140.835938 L 190.375 140.132812 L 191.78125 139.515625 L 193.230469 138.988281 L 194.703125 138.554688 L 196.207031 138.214844 L 197.726562 137.972656 L 199.257812 137.828125 L 200.792969 137.777344 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 125.65625 L 203.101562 125.726562 L 205.398438 125.945312 L 207.675781 126.3125 L 209.929688 126.820312 L 212.144531 127.46875 L 214.3125 128.261719 L 216.425781 129.183594 L 218.476562 130.242188 L 220.457031 131.429688 L 222.359375 132.738281 L 224.171875 134.164062 L 225.894531 135.703125 L 227.511719 137.347656 L 229.023438 139.089844 L 230.421875 140.929688 L 231.699219 142.847656 L 232.851562 144.847656 L 233.878906 146.917969 L 234.769531 149.042969 L 235.523438 151.226562 L 236.140625 153.449219 L 236.613281 155.710938 L 236.941406 157.992188 L 237.125 160.292969 L 237.160156 162.601562 L 237.050781 164.90625 L 236.792969 167.199219 L 236.394531 169.472656 L 235.851562 171.714844 L 235.164062 173.921875 L 234.339844 176.078125 L 233.382812 178.175781 L 232.292969 180.210938 L 231.074219 182.171875 L 229.738281 184.050781 L 228.28125 185.84375 L 226.714844 187.539062 L 225.046875 189.128906 L 223.277344 190.613281 L 221.417969 191.980469 L 219.476562 193.230469 L 217.460938 194.351562 L 215.375 195.34375 L 213.234375 196.203125 L 211.042969 196.921875 L 208.808594 197.5 L 206.539062 197.9375 L 204.25 198.230469 L 201.949219 198.375 L 199.640625 198.375 L 197.335938 198.230469 L 195.046875 197.9375 L 192.78125 197.5 L 190.546875 196.921875 L 188.355469 196.203125 L 186.210938 195.34375 L 184.128906 194.351562 L 182.113281 193.230469 L 180.171875 191.980469 L 178.3125 190.613281 L 176.542969 189.128906 L 174.875 187.539062 L 173.308594 185.84375 L 171.851562 184.050781 L 170.511719 182.171875 L 169.296875 180.210938 L 168.207031 178.175781 L 167.25 176.078125 L 166.425781 173.921875 L 165.738281 171.714844 L 165.195312 169.472656 L 164.792969 167.199219 L 164.539062 164.90625 L 164.429688 162.601562 L 164.464844 160.292969 L 164.648438 157.992188 L 164.976562 155.710938 L 165.449219 153.449219 L 166.0625 151.226562 L 166.820312 149.042969 L 167.710938 146.917969 L 168.734375 144.847656 L 169.890625 142.847656 L 171.167969 140.929688 L 172.566406 139.089844 L 174.078125 137.347656 L 175.695312 135.703125 L 177.414062 134.164062 L 179.230469 132.738281 L 181.132812 131.429688 L 183.109375 130.242188 L 185.164062 129.183594 L 187.277344 128.261719 L 189.445312 127.46875 L 191.660156 126.820312 L 193.910156 126.3125 L 196.191406 125.945312 L 198.488281 125.726562 L 200.792969 125.65625 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 113.53125 L 203.871094 113.628906 L 206.933594 113.921875 L 209.972656 114.40625 L 212.972656 115.085938 L 215.925781 115.953125 L 218.816406 117.003906 L 221.636719 118.238281 L 224.371094 119.648438 L 227.011719 121.230469 L 229.546875 122.972656 L 231.964844 124.875 L 234.257812 126.929688 L 236.417969 129.121094 L 238.433594 131.445312 L 240.296875 133.894531 L 242 136.457031 L 243.539062 139.121094 L 244.90625 141.878906 L 246.09375 144.71875 L 247.101562 147.625 L 247.921875 150.59375 L 248.550781 153.605469 L 248.988281 156.648438 L 249.234375 159.71875 L 249.28125 162.792969 L 249.136719 165.867188 L 248.792969 168.925781 L 248.261719 171.957031 L 247.535156 174.945312 L 246.621094 177.886719 L 245.523438 180.761719 L 244.246094 183.558594 L 242.792969 186.273438 L 241.167969 188.886719 L 239.382812 191.394531 L 237.445312 193.78125 L 235.355469 196.042969 L 233.128906 198.164062 L 230.769531 200.144531 L 228.292969 201.96875 L 225.703125 203.632812 L 223.015625 205.128906 L 220.238281 206.449219 L 217.378906 207.59375 L 214.457031 208.554688 L 211.476562 209.328125 L 208.457031 209.910156 L 205.402344 210.300781 L 202.332031 210.496094 L 199.253906 210.496094 L 196.183594 210.300781 L 193.132812 209.910156 L 190.109375 209.328125 L 187.132812 208.554688 L 184.207031 207.59375 L 181.351562 206.449219 L 178.574219 205.128906 L 175.882812 203.632812 L 173.296875 201.96875 L 170.816406 200.144531 L 168.460938 198.164062 L 166.234375 196.042969 L 164.144531 193.78125 L 162.203125 191.394531 L 160.421875 188.886719 L 158.796875 186.273438 L 157.34375 183.558594 L 156.066406 180.761719 L 154.96875 177.886719 L 154.054688 174.945312 L 153.328125 171.957031 L 152.792969 168.925781 L 152.453125 165.867188 L 152.308594 162.792969 L 152.355469 159.71875 L 152.597656 156.648438 L 153.039062 153.605469 L 153.667969 150.59375 L 154.488281 147.625 L 155.492188 144.71875 L 156.683594 141.878906 L 158.050781 139.121094 L 159.589844 136.457031 L 161.292969 133.894531 L 163.15625 131.445312 L 165.171875 129.121094 L 167.328125 126.929688 L 169.625 124.875 L 172.042969 122.972656 L 174.578125 121.230469 L 177.21875 119.648438 L 179.953125 118.238281 L 182.769531 117.003906 L 185.664062 115.953125 L 188.617188 115.085938 L 191.617188 114.40625 L 194.65625 113.921875 L 197.71875 113.628906 L 200.792969 113.53125 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 101.40625 L 204.640625 101.53125 L 208.46875 101.894531 L 212.265625 102.503906 L 216.019531 103.351562 L 219.710938 104.433594 L 223.324219 105.75 L 226.847656 107.292969 L 230.265625 109.054688 L 233.566406 111.03125 L 236.734375 113.210938 L 239.757812 115.589844 L 242.625 118.152344 L 245.324219 120.894531 L 247.84375 123.800781 L 250.171875 126.863281 L 252.300781 130.066406 L 254.226562 133.398438 L 255.933594 136.84375 L 257.417969 140.390625 L 258.679688 144.027344 L 259.703125 147.734375 L 260.492188 151.5 L 261.039062 155.304688 L 261.34375 159.140625 L 261.402344 162.988281 L 261.222656 166.828125 L 260.792969 170.652344 L 260.125 174.441406 L 259.21875 178.179688 L 258.078125 181.851562 L 256.703125 185.445312 L 255.105469 188.941406 L 253.289062 192.332031 L 251.261719 195.601562 L 249.03125 198.734375 L 246.605469 201.722656 L 243.996094 204.546875 L 241.210938 207.199219 L 238.265625 209.671875 L 235.167969 211.953125 L 231.933594 214.035156 L 228.570312 215.902344 L 225.097656 217.558594 L 221.527344 218.988281 L 217.871094 220.1875 L 214.148438 221.152344 L 210.371094 221.878906 L 206.554688 222.367188 L 202.71875 222.613281 L 198.871094 222.613281 L 195.03125 222.367188 L 191.214844 221.878906 L 187.441406 221.152344 L 183.714844 220.1875 L 180.0625 218.988281 L 176.492188 217.558594 L 173.019531 215.902344 L 169.65625 214.035156 L 166.421875 211.953125 L 163.324219 209.671875 L 160.375 207.199219 L 157.59375 204.546875 L 154.984375 201.722656 L 152.558594 198.734375 L 150.328125 195.601562 L 148.296875 192.332031 L 146.480469 188.941406 L 144.882812 185.445312 L 143.511719 181.851562 L 142.367188 178.179688 L 141.460938 174.441406 L 140.792969 170.652344 L 140.367188 166.828125 L 140.183594 162.988281 L 140.246094 159.140625 L 140.550781 155.304688 L 141.097656 151.5 L 141.886719 147.734375 L 142.910156 144.027344 L 144.167969 140.390625 L 145.65625 136.84375 L 147.363281 133.398438 L 149.285156 130.066406 L 151.417969 126.863281 L 153.746094 123.800781 L 156.265625 120.894531 L 158.964844 118.152344 L 161.832031 115.589844 L 164.855469 113.210938 L 168.023438 111.03125 L 171.324219 109.054688 L 174.742188 107.292969 L 178.265625 105.75 L 181.878906 104.433594 L 185.570312 103.351562 L 189.324219 102.503906 L 193.121094 101.894531 L 196.949219 101.53125 L 200.792969 101.40625 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 84.964844 L 205.683594 85.121094 L 210.550781 85.585938 L 215.378906 86.359375 L 220.148438 87.433594 L 224.839844 88.8125 L 229.433594 90.484375 L 233.914062 92.445312 L 238.261719 94.6875 L 242.457031 97.199219 L 246.484375 99.972656 L 250.328125 102.992188 L 253.972656 106.253906 L 257.402344 109.738281 L 260.605469 113.433594 L 263.566406 117.324219 L 266.273438 121.398438 L 268.71875 125.632812 L 270.890625 130.011719 L 272.78125 134.523438 L 274.378906 139.144531 L 275.683594 143.855469 L 276.683594 148.644531 L 277.378906 153.484375 L 277.765625 158.359375 L 277.84375 163.246094 L 277.613281 168.132812 L 277.070312 172.992188 L 276.21875 177.808594 L 275.066406 182.558594 L 273.617188 187.230469 L 271.871094 191.796875 L 269.839844 196.246094 L 267.53125 200.554688 L 264.953125 204.710938 L 262.117188 208.691406 L 259.03125 212.488281 L 255.714844 216.082031 L 252.175781 219.453125 L 248.429688 222.597656 L 244.492188 225.496094 L 240.378906 228.140625 L 236.105469 230.519531 L 231.691406 232.621094 L 227.148438 234.4375 L 222.503906 235.964844 L 217.769531 237.191406 L 212.96875 238.117188 L 208.121094 238.734375 L 203.238281 239.046875 L 198.347656 239.046875 L 193.46875 238.734375 L 188.617188 238.117188 L 183.816406 237.191406 L 179.085938 235.964844 L 174.4375 234.4375 L 169.898438 232.621094 L 165.484375 230.519531 L 161.210938 228.140625 L 157.097656 225.496094 L 153.160156 222.597656 L 149.414062 219.453125 L 145.875 216.082031 L 142.554688 212.488281 L 139.472656 208.691406 L 136.636719 204.710938 L 134.058594 200.554688 L 131.75 196.246094 L 129.71875 191.796875 L 127.972656 187.230469 L 126.519531 182.558594 L 125.367188 177.808594 L 124.519531 172.992188 L 123.976562 168.132812 L 123.746094 163.246094 L 123.820312 158.359375 L 124.210938 153.484375 L 124.90625 148.644531 L 125.90625 143.855469 L 127.210938 139.144531 L 128.808594 134.523438 L 130.699219 130.011719 L 132.871094 125.632812 L 135.316406 121.398438 L 138.023438 117.324219 L 140.984375 113.433594 L 144.1875 109.738281 L 147.617188 106.253906 L 151.261719 102.992188 L 155.105469 99.972656 L 159.132812 97.199219 L 163.328125 94.6875 L 167.675781 92.445312 L 172.152344 90.484375 L 176.75 88.8125 L 181.441406 87.433594 L 186.210938 86.359375 L 191.039062 85.585938 L 195.90625 85.121094 L 200.792969 84.964844 "/>
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 202.488281 129.699219 L 204.824219 129.90625 L 207.140625 130.285156 L 209.425781 130.828125 L 211.660156 131.535156 L 213.839844 132.402344 L 215.953125 133.425781 L 217.984375 134.597656 L 219.925781 135.914062 L 221.765625 137.367188 L 223.496094 138.953125 L 225.109375 140.65625 L 226.59375 142.476562 L 227.941406 144.394531 L 225.855469 145.75 L 223.765625 147.109375 L 221.675781 148.464844 L 219.589844 149.820312 L 217.5 151.175781 L 215.414062 152.53125 L 213.324219 153.886719 L 211.234375 155.246094 L 209.148438 156.601562 L 207.058594 157.957031 L 204.972656 159.3125 L 200.792969 162.023438 L 200.925781 159.539062 L 201.054688 157.050781 L 201.183594 154.566406 L 201.316406 152.078125 L 201.445312 149.59375 L 201.578125 147.105469 L 201.707031 144.617188 L 201.835938 142.132812 L 201.96875 139.644531 L 202.097656 137.160156 L 202.226562 134.671875 L 202.359375 132.1875 Z M 202.488281 129.699219 "/>
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 261.824219 130.925781 L 262.875 133.078125 L 263.847656 135.261719 L 264.742188 137.476562 L 265.558594 139.722656 L 266.300781 142 L 266.957031 144.296875 L 267.535156 146.617188 L 268.035156 148.953125 L 268.449219 151.308594 L 268.78125 153.675781 L 269.03125 156.054688 L 269.199219 158.441406 L 269.28125 160.828125 L 269.28125 163.21875 L 269.199219 165.609375 L 269.03125 167.996094 L 268.78125 170.371094 L 268.449219 172.742188 L 268.035156 175.09375 L 267.535156 177.433594 L 266.957031 179.753906 L 266.300781 182.050781 L 265.558594 184.324219 L 264.742188 186.570312 L 263.847656 188.789062 L 262.875 190.972656 L 261.824219 193.121094 L 259.722656 192.050781 L 257.617188 190.976562 L 255.511719 189.90625 L 253.40625 188.832031 L 251.304688 187.761719 L 249.199219 186.6875 L 247.09375 185.617188 L 244.988281 184.542969 L 242.886719 183.472656 L 240.78125 182.398438 L 238.675781 181.328125 L 236.570312 180.253906 L 234.46875 179.183594 L 232.363281 178.109375 L 230.257812 177.039062 L 228.152344 175.964844 L 226.050781 174.894531 L 223.945312 173.820312 L 221.839844 172.75 L 217.628906 170.601562 L 215.527344 169.53125 L 213.421875 168.457031 L 211.316406 167.386719 L 209.210938 166.3125 L 207.109375 165.242188 L 205.003906 164.167969 L 202.898438 163.097656 L 200.792969 162.023438 L 202.898438 160.953125 L 205.003906 159.878906 L 207.109375 158.808594 L 209.210938 157.734375 L 211.316406 156.664062 L 213.421875 155.589844 L 215.527344 154.519531 L 217.628906 153.445312 L 219.734375 152.375 L 221.839844 151.300781 L 223.945312 150.230469 L 226.050781 149.15625 L 228.152344 148.085938 L 230.257812 147.011719 L 232.363281 145.941406 L 234.46875 144.867188 L 236.570312 143.796875 L 238.675781 142.722656 L 240.78125 141.652344 L 242.886719 140.578125 L 244.988281 139.507812 L 247.09375 138.433594 L 249.199219 137.363281 L 251.304688 136.289062 L 253.40625 135.21875 L 255.511719 134.144531 L 257.617188 133.074219 L 259.722656 132 Z M 261.824219 130.925781 "/>
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 208.828125 167.242188 L 206.820312 169.46875 L 204.226562 170.964844 L 201.296875 171.589844 L 201.046875 166.808594 L 200.917969 164.417969 L 200.792969 162.023438 L 202.800781 163.328125 L 204.8125 164.632812 Z M 208.828125 167.242188 "/>
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 199.796875 181.03125 L 197.253906 180.726562 L 194.777344 180.082031 L 192.40625 179.113281 L 190.191406 177.832031 L 188.164062 176.265625 L 186.367188 174.441406 L 184.832031 172.390625 L 186.828125 171.09375 L 188.820312 169.800781 L 192.8125 167.207031 L 194.808594 165.914062 L 198.800781 163.320312 L 200.792969 162.023438 L 200.667969 164.402344 L 200.546875 166.777344 L 200.296875 171.527344 L 200.171875 173.90625 Z M 199.796875 181.03125 "/>
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 167.199219 179.140625 L 166.191406 177 L 165.320312 174.796875 L 164.585938 172.542969 L 164 170.25 L 163.554688 167.921875 L 163.257812 165.574219 L 163.109375 163.210938 L 163.109375 160.839844 L 163.257812 158.476562 L 163.554688 156.125 L 164 153.800781 L 164.585938 151.507812 L 165.320312 149.253906 L 166.191406 147.050781 L 167.199219 144.90625 L 169.300781 145.976562 L 171.398438 147.046875 L 173.5 148.117188 L 175.597656 149.1875 L 177.699219 150.257812 L 179.796875 151.328125 L 181.898438 152.394531 L 183.996094 153.464844 L 186.097656 154.535156 L 188.195312 155.605469 L 190.296875 156.675781 L 192.394531 157.746094 L 194.496094 158.816406 L 196.59375 159.886719 L 198.695312 160.957031 L 200.792969 162.023438 L 198.695312 163.09375 L 196.59375 164.164062 L 194.496094 165.234375 L 192.394531 166.304688 L 190.296875 167.375 L 188.195312 168.445312 L 186.097656 169.515625 L 183.996094 170.582031 L 181.898438 171.652344 L 179.796875 172.722656 L 177.699219 173.792969 L 175.597656 174.863281 L 173.5 175.933594 L 171.398438 177.003906 L 169.300781 178.074219 Z M 167.199219 179.140625 "/>
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 200.488281 161.828125 L 200.773438 161.660156 L 200.792969 162.023438 Z M 200.488281 161.828125 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="204.457031" y="99.304688"/>
<use xlink:href="#glyph-0-1" x="210.685937" y="99.304688"/>
<use xlink:href="#glyph-0-2" x="214.415625" y="99.304688"/>
<use xlink:href="#glyph-0-3" x="220.644531" y="99.304688"/>
<use xlink:href="#glyph-0-4" x="226.244531" y="99.304688"/>
<use xlink:href="#glyph-0-5" x="232.473437" y="99.304688"/>
<use xlink:href="#glyph-0-6" x="238.702344" y="99.304688"/>
<use xlink:href="#glyph-0-7" x="241.814062" y="99.304688"/>
<use xlink:href="#glyph-0-8" x="247.414062" y="99.304688"/>
<use xlink:href="#glyph-0-2" x="249.902344" y="99.304688"/>
<use xlink:href="#glyph-0-9" x="256.13125" y="99.304688"/>
<use xlink:href="#glyph-0-10" x="262.360156" y="99.304688"/>
<use xlink:href="#glyph-0-11" x="268.589063" y="99.304688"/>
</g>
<g clip-path="url(#clip-2)">
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-7" x="265.71875" y="166.042969"/>
<use xlink:href="#glyph-0-8" x="271.31875" y="166.042969"/>
<use xlink:href="#glyph-0-4" x="273.807031" y="166.042969"/>
<use xlink:href="#glyph-0-12" x="280.035938" y="166.042969"/>
<use xlink:href="#glyph-0-1" x="286.264844" y="166.042969"/>
</g>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-7" x="223.136719" y="232.777344"/>
<use xlink:href="#glyph-0-8" x="228.736719" y="232.777344"/>
<use xlink:href="#glyph-0-2" x="231.225" y="232.777344"/>
<use xlink:href="#glyph-0-9" x="237.453906" y="232.777344"/>
<use xlink:href="#glyph-0-10" x="243.682812" y="232.777344"/>
<use xlink:href="#glyph-0-13" x="249.911719" y="232.777344"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="152.929688" y="232.777344"/>
<use xlink:href="#glyph-0-12" x="156.659375" y="232.777344"/>
<use xlink:href="#glyph-0-14" x="162.888281" y="232.777344"/>
<use xlink:href="#glyph-0-5" x="165.376563" y="232.777344"/>
</g>
<g clip-path="url(#clip-3)">
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="82.957031" y="166.042969"/>
<use xlink:href="#glyph-0-7" x="88.557031" y="166.042969"/>
<use xlink:href="#glyph-0-12" x="94.157031" y="166.042969"/>
<use xlink:href="#glyph-0-15" x="100.385937" y="166.042969"/>
<use xlink:href="#glyph-0-15" x="103.497656" y="166.042969"/>
<use xlink:href="#glyph-0-4" x="106.609375" y="166.042969"/>
<use xlink:href="#glyph-0-1" x="112.838281" y="166.042969"/>
<use xlink:href="#glyph-0-4" x="116.567969" y="166.042969"/>
<use xlink:href="#glyph-0-10" x="122.796875" y="166.042969"/>
<use xlink:href="#glyph-0-6" x="129.025781" y="166.042969"/>
<use xlink:href="#glyph-0-7" x="132.1375" y="166.042969"/>
<use xlink:href="#glyph-0-8" x="137.7375" y="166.042969"/>
<use xlink:href="#glyph-0-2" x="140.225781" y="166.042969"/>
<use xlink:href="#glyph-0-9" x="146.454687" y="166.042969"/>
<use xlink:href="#glyph-0-10" x="152.683594" y="166.042969"/>
<use xlink:href="#glyph-0-11" x="158.9125" y="166.042969"/>
</g>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="142.035156" y="99.304688"/>
<use xlink:href="#glyph-0-5" x="147.635156" y="99.304688"/>
<use xlink:href="#glyph-0-2" x="153.864062" y="99.304688"/>
<use xlink:href="#glyph-0-16" x="160.092969" y="99.304688"/>
<use xlink:href="#glyph-0-17" x="168.18125" y="99.304688"/>
<use xlink:href="#glyph-0-12" x="171.292969" y="99.304688"/>
<use xlink:href="#glyph-0-8" x="177.521875" y="99.304688"/>
<use xlink:href="#glyph-0-8" x="180.010156" y="99.304688"/>
</g>
<g clip-path="url(#clip-4)">
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 115.171875 247.648438 L 286.414062 247.648438 L 286.414062 76.40625 L 115.171875 76.40625 Z M 115.171875 247.648438 "/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-18" x="102.664062" y="166.042969"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-19" x="90.207031" y="153.917969"/>
<use xlink:href="#glyph-0-18" x="96.435937" y="153.917969"/>
<use xlink:href="#glyph-0-18" x="102.664844" y="153.917969"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-20" x="90.207031" y="141.792969"/>
<use xlink:href="#glyph-0-18" x="96.435937" y="141.792969"/>
<use xlink:href="#glyph-0-18" x="102.664844" y="141.792969"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-21" x="90.207031" y="129.671875"/>
<use xlink:href="#glyph-0-18" x="96.435937" y="129.671875"/>
<use xlink:href="#glyph-0-18" x="102.664844" y="129.671875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-22" x="90.207031" y="117.546875"/>
<use xlink:href="#glyph-0-18" x="96.435937" y="117.546875"/>
<use xlink:href="#glyph-0-18" x="102.664844" y="117.546875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-23" x="90.207031" y="105.425781"/>
<use xlink:href="#glyph-0-18" x="96.435937" y="105.425781"/>
<use xlink:href="#glyph-0-18" x="102.664844" y="105.425781"/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.6875 162.023438 L 115.171875 162.023438 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.6875 149.902344 L 115.171875 149.902344 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.6875 137.777344 L 115.171875 137.777344 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.6875 125.65625 L 115.171875 125.65625 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.6875 113.53125 L 115.171875 113.53125 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.6875 101.40625 L 115.171875 101.40625 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="158.765625" y="269.929688"/>
<use xlink:href="#glyph-1-1" x="168.875977" y="269.929688"/>
<use xlink:href="#glyph-1-2" x="176.662109" y="269.929688"/>
<use xlink:href="#glyph-1-3" x="184.448242" y="269.929688"/>
<use xlink:href="#glyph-1-4" x="188.337891" y="269.929688"/>
<use xlink:href="#glyph-1-1" x="196.124023" y="269.929688"/>
<use xlink:href="#glyph-1-5" x="203.910156" y="269.929688"/>
<use xlink:href="#glyph-1-6" x="208.572266" y="269.929688"/>
<use xlink:href="#glyph-1-3" x="216.358398" y="269.929688"/>
<use xlink:href="#glyph-1-7" x="220.248047" y="269.929688"/>
<use xlink:href="#glyph-1-8" x="227.248047" y="269.929688"/>
<use xlink:href="#glyph-1-1" x="235.03418" y="269.929688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="83.625" y="179.148438"/>
<use xlink:href="#glyph-2-1" x="83.625" y="172.148438"/>
<use xlink:href="#glyph-2-2" x="83.625" y="164.362305"/>
<use xlink:href="#glyph-2-3" x="83.625" y="156.576172"/>
<use xlink:href="#glyph-2-4" x="83.625" y="148.790039"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 13.121094 62.457031 L 388.46875 62.457031 L 388.46875 6.976562 L 13.121094 6.976562 Z M 13.121094 62.457031 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="20.09375" y="39.734375"/>
<use xlink:href="#glyph-1-1" x="30.204102" y="39.734375"/>
<use xlink:href="#glyph-1-2" x="37.990234" y="39.734375"/>
<use xlink:href="#glyph-1-3" x="45.776367" y="39.734375"/>
<use xlink:href="#glyph-1-4" x="49.666016" y="39.734375"/>
<use xlink:href="#glyph-1-1" x="57.452148" y="39.734375"/>
<use xlink:href="#glyph-1-5" x="65.238281" y="39.734375"/>
<use xlink:href="#glyph-1-6" x="69.900391" y="39.734375"/>
<use xlink:href="#glyph-1-3" x="77.686523" y="39.734375"/>
<use xlink:href="#glyph-1-7" x="81.576172" y="39.734375"/>
<use xlink:href="#glyph-1-8" x="88.576172" y="39.734375"/>
<use xlink:href="#glyph-1-1" x="96.362305" y="39.734375"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 111.121094 31.226562 L 128.402344 31.226562 L 128.402344 13.945312 L 111.121094 13.945312 Z M 111.121094 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 111.832031 30.519531 L 127.695312 30.519531 L 127.695312 14.65625 L 111.832031 14.65625 Z M 111.832031 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 111.121094 55.480469 L 128.402344 55.480469 L 128.402344 38.199219 L 111.121094 38.199219 Z M 111.121094 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 111.832031 54.773438 L 127.695312 54.773438 L 127.695312 38.910156 L 111.832031 38.910156 Z M 111.832031 54.773438 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 212.082031 31.226562 L 229.363281 31.226562 L 229.363281 13.945312 L 212.082031 13.945312 Z M 212.082031 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 212.792969 30.519531 L 228.65625 30.519531 L 228.65625 14.65625 L 212.792969 14.65625 Z M 212.792969 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 212.082031 55.480469 L 229.363281 55.480469 L 229.363281 38.199219 L 212.082031 38.199219 Z M 212.082031 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 212.792969 54.773438 L 228.65625 54.773438 L 228.65625 38.910156 L 212.792969 38.910156 Z M 212.792969 54.773438 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 275.683594 31.226562 L 292.964844 31.226562 L 292.964844 13.945312 L 275.683594 13.945312 Z M 275.683594 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 276.394531 30.519531 L 292.257812 30.519531 L 292.257812 14.65625 L 276.394531 14.65625 Z M 276.394531 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 275.683594 55.480469 L 292.964844 55.480469 L 292.964844 38.199219 L 275.683594 38.199219 Z M 275.683594 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 276.394531 54.773438 L 292.257812 54.773438 L 292.257812 38.910156 L 276.394531 38.910156 Z M 276.394531 54.773438 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="135.375" y="26.605469"/>
<use xlink:href="#glyph-0-1" x="141.603906" y="26.605469"/>
<use xlink:href="#glyph-0-2" x="145.333594" y="26.605469"/>
<use xlink:href="#glyph-0-3" x="151.5625" y="26.605469"/>
<use xlink:href="#glyph-0-4" x="157.1625" y="26.605469"/>
<use xlink:href="#glyph-0-5" x="163.391406" y="26.605469"/>
<use xlink:href="#glyph-0-6" x="169.620312" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="172.732031" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="178.332031" y="26.605469"/>
<use xlink:href="#glyph-0-2" x="180.820312" y="26.605469"/>
<use xlink:href="#glyph-0-9" x="187.049219" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="193.278125" y="26.605469"/>
<use xlink:href="#glyph-0-11" x="199.507031" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-7" x="135.375" y="50.859375"/>
<use xlink:href="#glyph-0-8" x="140.975" y="50.859375"/>
<use xlink:href="#glyph-0-4" x="143.463281" y="50.859375"/>
<use xlink:href="#glyph-0-12" x="149.692187" y="50.859375"/>
<use xlink:href="#glyph-0-1" x="155.921094" y="50.859375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-7" x="236.335938" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="241.935937" y="26.605469"/>
<use xlink:href="#glyph-0-2" x="244.424219" y="26.605469"/>
<use xlink:href="#glyph-0-9" x="250.653125" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="256.882031" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="263.110938" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="236.335938" y="50.859375"/>
<use xlink:href="#glyph-0-12" x="240.065625" y="50.859375"/>
<use xlink:href="#glyph-0-14" x="246.294531" y="50.859375"/>
<use xlink:href="#glyph-0-5" x="248.782813" y="50.859375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="299.9375" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="305.5375" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="311.1375" y="26.605469"/>
<use xlink:href="#glyph-0-15" x="317.366406" y="26.605469"/>
<use xlink:href="#glyph-0-15" x="320.478125" y="26.605469"/>
<use xlink:href="#glyph-0-4" x="323.589844" y="26.605469"/>
<use xlink:href="#glyph-0-1" x="329.81875" y="26.605469"/>
<use xlink:href="#glyph-0-4" x="333.548438" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="339.777344" y="26.605469"/>
<use xlink:href="#glyph-0-6" x="346.00625" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="349.117969" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="354.717969" y="26.605469"/>
<use xlink:href="#glyph-0-2" x="357.20625" y="26.605469"/>
<use xlink:href="#glyph-0-9" x="363.435156" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="369.664063" y="26.605469"/>
<use xlink:href="#glyph-0-11" x="375.892969" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="299.9375" y="50.859375"/>
<use xlink:href="#glyph-0-5" x="305.5375" y="50.859375"/>
<use xlink:href="#glyph-0-2" x="311.766406" y="50.859375"/>
<use xlink:href="#glyph-0-16" x="317.995313" y="50.859375"/>
<use xlink:href="#glyph-0-17" x="326.083594" y="50.859375"/>
<use xlink:href="#glyph-0-12" x="329.195313" y="50.859375"/>
<use xlink:href="#glyph-0-8" x="335.424219" y="50.859375"/>
<use xlink:href="#glyph-0-8" x="337.9125" y="50.859375"/>
</g>
</svg>

After

(image error) Size: 68 KiB

Binary file not shown.

After

(image error) Size: 97 KiB

View File

@ -0,0 +1,411 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="280" viewBox="0 0 360 280">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
</g>
<g id="glyph-0-1">
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
</g>
<g id="glyph-0-2">
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-3">
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-4">
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
</g>
<g id="glyph-0-5">
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
</g>
<g id="glyph-0-6">
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
</g>
<g id="glyph-0-7">
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
</g>
<g id="glyph-0-8">
</g>
<g id="glyph-0-9">
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-10">
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-11">
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
</g>
<g id="glyph-0-12">
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
</g>
<g id="glyph-0-13">
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
</g>
<g id="glyph-0-14">
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
</g>
<g id="glyph-0-15">
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
</g>
<g id="glyph-0-16">
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
</g>
<g id="glyph-0-17">
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
</g>
<g id="glyph-0-18">
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
</g>
<g id="glyph-0-19">
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
</g>
<g id="glyph-0-20">
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
</g>
<g id="glyph-0-21">
<path d="M 2.90625 0.21875 C 1.976562 0.21875 1.304688 -0.0351562 0.890625 -0.546875 C 0.472656 -1.054688 0.265625 -1.675781 0.265625 -2.40625 L 1.296875 -2.40625 C 1.335938 -1.894531 1.429688 -1.523438 1.578125 -1.296875 C 1.835938 -0.890625 2.300781 -0.6875 2.96875 -0.6875 C 3.476562 -0.6875 3.890625 -0.820312 4.203125 -1.09375 C 4.523438 -1.375 4.6875 -1.734375 4.6875 -2.171875 C 4.6875 -2.710938 4.519531 -3.085938 4.1875 -3.296875 C 3.851562 -3.515625 3.394531 -3.625 2.8125 -3.625 C 2.75 -3.625 2.679688 -3.625 2.609375 -3.625 C 2.546875 -3.625 2.476562 -3.617188 2.40625 -3.609375 L 2.40625 -4.484375 C 2.507812 -4.472656 2.59375 -4.460938 2.65625 -4.453125 C 2.726562 -4.453125 2.804688 -4.453125 2.890625 -4.453125 C 3.253906 -4.453125 3.554688 -4.515625 3.796875 -4.640625 C 4.210938 -4.835938 4.421875 -5.203125 4.421875 -5.734375 C 4.421875 -6.117188 4.28125 -6.414062 4 -6.625 C 3.726562 -6.84375 3.40625 -6.953125 3.03125 -6.953125 C 2.375 -6.953125 1.921875 -6.734375 1.671875 -6.296875 C 1.535156 -6.054688 1.457031 -5.710938 1.4375 -5.265625 L 0.46875 -5.265625 C 0.46875 -5.847656 0.582031 -6.34375 0.8125 -6.75 C 1.21875 -7.476562 1.925781 -7.84375 2.9375 -7.84375 C 3.726562 -7.84375 4.34375 -7.664062 4.78125 -7.3125 C 5.21875 -6.957031 5.4375 -6.441406 5.4375 -5.765625 C 5.4375 -5.285156 5.304688 -4.894531 5.046875 -4.59375 C 4.890625 -4.40625 4.6875 -4.257812 4.4375 -4.15625 C 4.84375 -4.039062 5.160156 -3.820312 5.390625 -3.5 C 5.628906 -3.175781 5.75 -2.78125 5.75 -2.3125 C 5.75 -1.570312 5.5 -0.960938 5 -0.484375 C 4.507812 -0.015625 3.8125 0.21875 2.90625 0.21875 Z M 2.90625 0.21875 "/>
</g>
<g id="glyph-0-22">
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
</g>
<g id="glyph-0-23">
<path d="M 1.390625 -2 C 1.453125 -1.4375 1.710938 -1.046875 2.171875 -0.828125 C 2.398438 -0.722656 2.664062 -0.671875 2.96875 -0.671875 C 3.550781 -0.671875 3.984375 -0.851562 4.265625 -1.21875 C 4.546875 -1.59375 4.6875 -2.007812 4.6875 -2.46875 C 4.6875 -3.007812 4.519531 -3.425781 4.1875 -3.71875 C 3.851562 -4.019531 3.457031 -4.171875 3 -4.171875 C 2.65625 -4.171875 2.359375 -4.101562 2.109375 -3.96875 C 1.867188 -3.84375 1.664062 -3.664062 1.5 -3.4375 L 0.640625 -3.484375 L 1.234375 -7.703125 L 5.3125 -7.703125 L 5.3125 -6.75 L 1.984375 -6.75 L 1.640625 -4.578125 C 1.828125 -4.710938 2.003906 -4.816406 2.171875 -4.890625 C 2.460938 -5.003906 2.796875 -5.0625 3.171875 -5.0625 C 3.890625 -5.0625 4.5 -4.828125 5 -4.359375 C 5.5 -3.898438 5.75 -3.316406 5.75 -2.609375 C 5.75 -1.867188 5.519531 -1.210938 5.0625 -0.640625 C 4.601562 -0.078125 3.875 0.203125 2.875 0.203125 C 2.238281 0.203125 1.675781 0.0234375 1.1875 -0.328125 C 0.695312 -0.691406 0.421875 -1.25 0.359375 -2 Z M 1.390625 -2 "/>
</g>
<g id="glyph-1-0">
<path d="M 1.203125 -8.4375 C 1.222656 -8.945312 1.316406 -9.320312 1.484375 -9.5625 C 1.765625 -9.976562 2.316406 -10.1875 3.140625 -10.1875 C 3.210938 -10.1875 3.289062 -10.179688 3.375 -10.171875 C 3.457031 -10.171875 3.550781 -10.164062 3.65625 -10.15625 L 3.65625 -9.03125 C 3.53125 -9.039062 3.4375 -9.046875 3.375 -9.046875 C 3.320312 -9.054688 3.269531 -9.0625 3.21875 -9.0625 C 2.84375 -9.0625 2.617188 -8.960938 2.546875 -8.765625 C 2.472656 -8.578125 2.4375 -8.082031 2.4375 -7.28125 L 3.65625 -7.28125 L 3.65625 -6.3125 L 2.421875 -6.3125 L 2.421875 0 L 1.203125 0 L 1.203125 -6.3125 L 0.1875 -6.3125 L 0.1875 -7.28125 L 1.203125 -7.28125 Z M 1.203125 -8.4375 "/>
</g>
<g id="glyph-1-1">
<path d="M 3.71875 -7.53125 C 4.550781 -7.53125 5.222656 -7.328125 5.734375 -6.921875 C 6.253906 -6.523438 6.566406 -5.835938 6.671875 -4.859375 L 5.46875 -4.859375 C 5.394531 -5.304688 5.226562 -5.679688 4.96875 -5.984375 C 4.71875 -6.285156 4.300781 -6.4375 3.71875 -6.4375 C 2.9375 -6.4375 2.378906 -6.050781 2.046875 -5.28125 C 1.828125 -4.789062 1.71875 -4.179688 1.71875 -3.453125 C 1.71875 -2.710938 1.867188 -2.09375 2.171875 -1.59375 C 2.484375 -1.09375 2.972656 -0.84375 3.640625 -0.84375 C 4.148438 -0.84375 4.554688 -1 4.859375 -1.3125 C 5.160156 -1.625 5.363281 -2.050781 5.46875 -2.59375 L 6.671875 -2.59375 C 6.535156 -1.625 6.191406 -0.910156 5.640625 -0.453125 C 5.097656 -0.00390625 4.398438 0.21875 3.546875 0.21875 C 2.585938 0.21875 1.820312 -0.128906 1.25 -0.828125 C 0.6875 -1.535156 0.40625 -2.410156 0.40625 -3.453125 C 0.40625 -4.742188 0.71875 -5.742188 1.34375 -6.453125 C 1.96875 -7.171875 2.757812 -7.53125 3.71875 -7.53125 Z M 3.53125 -7.5 Z M 3.53125 -7.5 "/>
</g>
<g id="glyph-1-2">
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
</g>
<g id="glyph-1-3">
<path d="M 0 1.75 L 0 1.0625 L 7.78125 1.0625 L 7.78125 1.75 Z M 0 1.75 "/>
</g>
<g id="glyph-1-4">
<path d="M 0.90625 -7.28125 L 2.15625 -7.28125 L 2.15625 0 L 0.90625 0 Z M 0.90625 -10.046875 L 2.15625 -10.046875 L 2.15625 -8.640625 L 0.90625 -8.640625 Z M 0.90625 -10.046875 "/>
</g>
<g id="glyph-1-5">
<path d="M 0.90625 -7.328125 L 2.078125 -7.328125 L 2.078125 -6.28125 C 2.421875 -6.707031 2.785156 -7.015625 3.171875 -7.203125 C 3.554688 -7.390625 3.988281 -7.484375 4.46875 -7.484375 C 5.5 -7.484375 6.195312 -7.125 6.5625 -6.40625 C 6.769531 -6 6.875 -5.429688 6.875 -4.703125 L 6.875 0 L 5.625 0 L 5.625 -4.609375 C 5.625 -5.054688 5.554688 -5.414062 5.421875 -5.6875 C 5.203125 -6.144531 4.804688 -6.375 4.234375 -6.375 C 3.941406 -6.375 3.703125 -6.347656 3.515625 -6.296875 C 3.179688 -6.191406 2.882812 -5.988281 2.625 -5.6875 C 2.414062 -5.445312 2.28125 -5.195312 2.21875 -4.9375 C 2.164062 -4.675781 2.140625 -4.304688 2.140625 -3.828125 L 2.140625 0 L 0.90625 0 Z M 3.796875 -7.5 Z M 3.796875 -7.5 "/>
</g>
<g id="glyph-1-6">
<path d="M 0.9375 -7.328125 L 2.109375 -7.328125 L 2.109375 -6.0625 C 2.203125 -6.300781 2.4375 -6.597656 2.8125 -6.953125 C 3.1875 -7.304688 3.617188 -7.484375 4.109375 -7.484375 C 4.128906 -7.484375 4.164062 -7.476562 4.21875 -7.46875 C 4.269531 -7.46875 4.363281 -7.460938 4.5 -7.453125 L 4.5 -6.15625 C 4.425781 -6.164062 4.359375 -6.171875 4.296875 -6.171875 C 4.234375 -6.179688 4.164062 -6.1875 4.09375 -6.1875 C 3.476562 -6.1875 3.003906 -5.984375 2.671875 -5.578125 C 2.335938 -5.179688 2.171875 -4.726562 2.171875 -4.21875 L 2.171875 0 L 0.9375 0 Z M 0.9375 -7.328125 "/>
</g>
<g id="glyph-1-7">
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
</g>
<g id="glyph-1-8">
<path d="M 1.703125 -3.5625 C 1.703125 -2.925781 1.789062 -2.394531 1.96875 -1.96875 C 2.28125 -1.207031 2.84375 -0.828125 3.65625 -0.828125 C 4.507812 -0.828125 5.097656 -1.226562 5.421875 -2.03125 C 5.597656 -2.46875 5.6875 -3.03125 5.6875 -3.71875 C 5.6875 -4.351562 5.585938 -4.882812 5.390625 -5.3125 C 5.054688 -6.039062 4.472656 -6.40625 3.640625 -6.40625 C 3.109375 -6.40625 2.648438 -6.171875 2.265625 -5.703125 C 1.890625 -5.242188 1.703125 -4.53125 1.703125 -3.5625 Z M 3.515625 -7.484375 C 4.117188 -7.484375 4.628906 -7.332031 5.046875 -7.03125 C 5.273438 -6.863281 5.492188 -6.617188 5.703125 -6.296875 L 5.703125 -7.328125 L 6.875 -7.328125 L 6.875 2.921875 L 5.640625 2.921875 L 5.640625 -0.84375 C 5.429688 -0.507812 5.144531 -0.242188 4.78125 -0.046875 C 4.414062 0.140625 3.960938 0.234375 3.421875 0.234375 C 2.640625 0.234375 1.941406 -0.0664062 1.328125 -0.671875 C 0.710938 -1.285156 0.40625 -2.21875 0.40625 -3.46875 C 0.40625 -4.644531 0.691406 -5.609375 1.265625 -6.359375 C 1.847656 -7.109375 2.597656 -7.484375 3.515625 -7.484375 Z M 3.515625 -7.484375 "/>
</g>
<g id="glyph-1-9">
<path d="M 4.140625 -10.203125 C 3.421875 -8.816406 2.957031 -7.796875 2.75 -7.140625 C 2.425781 -6.140625 2.265625 -4.984375 2.265625 -3.671875 C 2.265625 -2.359375 2.445312 -1.15625 2.8125 -0.0625 C 3.039062 0.613281 3.488281 1.585938 4.15625 2.859375 L 3.34375 2.859375 C 2.675781 1.816406 2.257812 1.148438 2.09375 0.859375 C 1.9375 0.578125 1.765625 0.191406 1.578125 -0.296875 C 1.328125 -0.972656 1.148438 -1.695312 1.046875 -2.46875 C 0.992188 -2.863281 0.96875 -3.238281 0.96875 -3.59375 C 0.96875 -4.945312 1.179688 -6.148438 1.609375 -7.203125 C 1.878906 -7.867188 2.4375 -8.867188 3.28125 -10.203125 Z M 4.140625 -10.203125 "/>
</g>
<g id="glyph-1-10">
<path d="M 1.46875 -7.328125 L 2.875 -1.546875 L 4.3125 -7.328125 L 5.6875 -7.328125 L 7.125 -1.59375 L 8.625 -7.328125 L 9.84375 -7.328125 L 7.71875 0 L 6.453125 0 L 4.953125 -5.671875 L 3.515625 0 L 2.234375 0 L 0.125 -7.328125 Z M 1.46875 -7.328125 "/>
</g>
<g id="glyph-1-11">
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-12">
<path d="M 0.90625 -10.078125 L 2.140625 -10.078125 L 2.140625 -6.328125 C 2.429688 -6.703125 2.691406 -6.960938 2.921875 -7.109375 C 3.316406 -7.367188 3.8125 -7.5 4.40625 -7.5 C 5.46875 -7.5 6.1875 -7.128906 6.5625 -6.390625 C 6.769531 -5.984375 6.875 -5.421875 6.875 -4.703125 L 6.875 0 L 5.609375 0 L 5.609375 -4.609375 C 5.609375 -5.148438 5.539062 -5.546875 5.40625 -5.796875 C 5.175781 -6.203125 4.753906 -6.40625 4.140625 -6.40625 C 3.628906 -6.40625 3.164062 -6.226562 2.75 -5.875 C 2.34375 -5.519531 2.140625 -4.859375 2.140625 -3.890625 L 2.140625 0 L 0.90625 0 Z M 0.90625 -10.078125 "/>
</g>
<g id="glyph-1-13">
<path d="M 5.46875 -7.328125 L 6.84375 -7.328125 C 6.664062 -6.859375 6.28125 -5.785156 5.6875 -4.109375 C 5.238281 -2.847656 4.863281 -1.820312 4.5625 -1.03125 C 3.851562 0.832031 3.351562 1.96875 3.0625 2.375 C 2.769531 2.789062 2.265625 3 1.546875 3 C 1.378906 3 1.25 2.988281 1.15625 2.96875 C 1.0625 2.957031 0.945312 2.9375 0.8125 2.90625 L 0.8125 1.78125 C 1.019531 1.84375 1.171875 1.878906 1.265625 1.890625 C 1.367188 1.910156 1.457031 1.921875 1.53125 1.921875 C 1.75 1.921875 1.910156 1.878906 2.015625 1.796875 C 2.128906 1.722656 2.222656 1.632812 2.296875 1.53125 C 2.316406 1.488281 2.394531 1.296875 2.53125 0.953125 C 2.675781 0.617188 2.78125 0.375 2.84375 0.21875 L 0.140625 -7.328125 L 1.53125 -7.328125 L 3.5 -1.359375 Z M 3.5 -7.5 Z M 3.5 -7.5 "/>
</g>
<g id="glyph-1-14">
<path d="M 4 -0.828125 C 4.570312 -0.828125 5.046875 -1.066406 5.421875 -1.546875 C 5.804688 -2.023438 6 -2.742188 6 -3.703125 C 6 -4.285156 5.914062 -4.785156 5.75 -5.203125 C 5.425781 -6.015625 4.84375 -6.421875 4 -6.421875 C 3.144531 -6.421875 2.5625 -5.992188 2.25 -5.140625 C 2.070312 -4.679688 1.984375 -4.101562 1.984375 -3.40625 C 1.984375 -2.84375 2.070312 -2.363281 2.25 -1.96875 C 2.5625 -1.207031 3.144531 -0.828125 4 -0.828125 Z M 0.8125 -7.28125 L 2 -7.28125 L 2 -6.3125 C 2.25 -6.644531 2.519531 -6.90625 2.8125 -7.09375 C 3.226562 -7.363281 3.710938 -7.5 4.265625 -7.5 C 5.097656 -7.5 5.800781 -7.179688 6.375 -6.546875 C 6.957031 -5.910156 7.25 -5.003906 7.25 -3.828125 C 7.25 -2.222656 6.832031 -1.082031 6 -0.40625 C 5.46875 0.0273438 4.851562 0.25 4.15625 0.25 C 3.601562 0.25 3.140625 0.128906 2.765625 -0.109375 C 2.546875 -0.253906 2.300781 -0.492188 2.03125 -0.828125 L 2.03125 2.921875 L 0.8125 2.921875 Z M 0.8125 -7.28125 "/>
</g>
<g id="glyph-1-15">
<path d="M 0.484375 2.859375 C 1.210938 1.441406 1.679688 0.410156 1.890625 -0.234375 C 2.203125 -1.210938 2.359375 -2.359375 2.359375 -3.671875 C 2.359375 -4.992188 2.175781 -6.203125 1.8125 -7.296875 C 1.582031 -7.972656 1.132812 -8.941406 0.46875 -10.203125 L 1.296875 -10.203125 C 1.992188 -9.085938 2.414062 -8.394531 2.5625 -8.125 C 2.71875 -7.863281 2.878906 -7.503906 3.046875 -7.046875 C 3.265625 -6.472656 3.421875 -5.910156 3.515625 -5.359375 C 3.609375 -4.804688 3.65625 -4.269531 3.65625 -3.75 C 3.65625 -2.40625 3.441406 -1.203125 3.015625 -0.140625 C 2.742188 0.535156 2.1875 1.535156 1.34375 2.859375 Z M 0.484375 2.859375 "/>
</g>
<g id="glyph-2-0">
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
</g>
<g id="glyph-2-1">
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
</g>
<g id="glyph-2-2">
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
</g>
<g id="glyph-2-3">
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
</g>
<g id="glyph-2-4">
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 66.609375 0 L 293.390625 0 L 293.390625 280 L 66.609375 280 Z M 66.609375 0 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 115.171875 76.402344 L 286.414062 76.402344 L 286.414062 247.644531 L 115.171875 247.644531 Z M 115.171875 76.402344 "/>
</clipPath>
<clipPath id="clip-2">
<path clip-rule="nonzero" d="M 237 157 L 286.414062 157 L 286.414062 167 L 237 167 Z M 237 157 "/>
</clipPath>
<clipPath id="clip-3">
<path clip-rule="nonzero" d="M 115.171875 157 L 140 157 L 140 169 L 115.171875 169 Z M 115.171875 157 "/>
</clipPath>
<clipPath id="clip-4">
<path clip-rule="nonzero" d="M 115.171875 76.402344 L 286.414062 76.402344 L 286.414062 247.644531 L 115.171875 247.644531 Z M 115.171875 76.402344 "/>
</clipPath>
</defs>
<rect x="-36" y="-28" width="432" height="336" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<g clip-path="url(#clip-0)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 66.609375 280 L 293.390625 280 L 293.390625 0 L 66.609375 0 Z M 66.609375 280 "/>
</g>
<g clip-path="url(#clip-1)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 115.171875 247.648438 L 286.414062 247.648438 L 286.414062 76.40625 L 115.171875 76.40625 Z M 115.171875 247.648438 "/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 239.324219 95.289062 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 277.855469 162.023438 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 239.324219 228.761719 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 162.265625 228.761719 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 123.734375 162.023438 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 162.265625 95.289062 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 200.792969 162.023438 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 149.902344 L 201.5625 149.925781 L 202.328125 150 L 203.089844 150.121094 L 203.839844 150.289062 L 204.578125 150.507812 L 205.300781 150.769531 L 206.003906 151.078125 L 206.6875 151.429688 L 207.347656 151.824219 L 207.984375 152.261719 L 208.585938 152.738281 L 209.160156 153.25 L 209.699219 153.800781 L 210.203125 154.378906 L 210.667969 154.992188 L 211.097656 155.632812 L 211.480469 156.300781 L 211.820312 156.988281 L 212.121094 157.699219 L 212.371094 158.425781 L 212.574219 159.167969 L 212.734375 159.917969 L 212.84375 160.679688 L 212.902344 161.449219 L 212.917969 162.21875 L 212.878906 162.984375 L 212.792969 163.75 L 212.660156 164.507812 L 212.480469 165.253906 L 212.25 165.988281 L 211.976562 166.707031 L 211.65625 167.410156 L 211.292969 168.085938 L 210.886719 168.742188 L 210.441406 169.367188 L 209.957031 169.964844 L 209.433594 170.527344 L 208.878906 171.058594 L 208.289062 171.554688 L 207.667969 172.011719 L 207.023438 172.425781 L 206.351562 172.800781 L 205.65625 173.132812 L 204.941406 173.417969 L 204.210938 173.65625 L 203.464844 173.851562 L 202.710938 173.996094 L 201.945312 174.09375 L 201.179688 174.140625 L 200.410156 174.140625 L 199.640625 174.09375 L 198.878906 173.996094 L 198.125 173.851562 L 197.378906 173.65625 L 196.648438 173.417969 L 195.933594 173.132812 L 195.238281 172.800781 L 194.566406 172.425781 L 193.917969 172.011719 L 193.300781 171.554688 L 192.710938 171.058594 L 192.152344 170.527344 L 191.632812 169.964844 L 191.148438 169.367188 L 190.699219 168.742188 L 190.296875 168.085938 L 189.933594 167.410156 L 189.613281 166.707031 L 189.335938 165.988281 L 189.109375 165.253906 L 188.929688 164.507812 L 188.792969 163.75 L 188.710938 162.984375 L 188.671875 162.21875 L 188.683594 161.449219 L 188.746094 160.679688 L 188.855469 159.917969 L 189.011719 159.167969 L 189.21875 158.425781 L 189.46875 157.699219 L 189.765625 156.988281 L 190.109375 156.300781 L 190.492188 155.632812 L 190.917969 154.992188 L 191.386719 154.378906 L 191.886719 153.800781 L 192.429688 153.25 L 193 152.738281 L 193.605469 152.261719 L 194.238281 151.824219 L 194.898438 151.429688 L 195.582031 151.078125 L 196.289062 150.769531 L 197.011719 150.507812 L 197.75 150.289062 L 198.5 150.121094 L 199.257812 150 L 200.027344 149.925781 L 200.792969 149.902344 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 137.777344 L 202.332031 137.828125 L 203.863281 137.972656 L 205.382812 138.214844 L 206.882812 138.554688 L 208.359375 138.988281 L 209.804688 139.515625 L 211.214844 140.132812 L 212.582031 140.835938 L 213.902344 141.628906 L 215.171875 142.5 L 216.378906 143.449219 L 217.527344 144.476562 L 218.605469 145.574219 L 219.613281 146.734375 L 220.546875 147.960938 L 221.398438 149.242188 L 222.167969 150.574219 L 222.851562 151.953125 L 223.445312 153.371094 L 223.949219 154.824219 L 224.359375 156.308594 L 224.671875 157.816406 L 224.890625 159.335938 L 225.015625 160.871094 L 225.039062 162.410156 L 224.964844 163.945312 L 224.792969 165.476562 L 224.527344 166.992188 L 224.164062 168.484375 L 223.707031 169.957031 L 223.160156 171.394531 L 222.519531 172.792969 L 221.792969 174.148438 L 220.980469 175.457031 L 220.089844 176.710938 L 219.117188 177.902344 L 218.074219 179.035156 L 216.960938 180.09375 L 215.78125 181.085938 L 214.542969 181.996094 L 213.25 182.828125 L 211.90625 183.578125 L 210.515625 184.238281 L 209.085938 184.808594 L 207.625 185.289062 L 206.136719 185.675781 L 204.625 185.96875 L 203.097656 186.160156 L 201.5625 186.257812 L 200.023438 186.257812 L 198.488281 186.160156 L 196.964844 185.96875 L 195.453125 185.675781 L 193.964844 185.289062 L 192.5 184.808594 L 191.074219 184.238281 L 189.683594 183.578125 L 188.339844 182.828125 L 187.046875 181.996094 L 185.804688 181.085938 L 184.628906 180.09375 L 183.515625 179.035156 L 182.46875 177.902344 L 181.5 176.710938 L 180.605469 175.457031 L 179.796875 174.148438 L 179.070312 172.792969 L 178.429688 171.394531 L 177.882812 169.957031 L 177.425781 168.484375 L 177.0625 166.992188 L 176.792969 165.476562 L 176.625 163.945312 L 176.550781 162.410156 L 176.574219 160.871094 L 176.695312 159.335938 L 176.914062 157.816406 L 177.230469 156.308594 L 177.640625 154.824219 L 178.144531 153.371094 L 178.738281 151.953125 L 179.421875 150.574219 L 180.191406 149.242188 L 181.042969 147.960938 L 181.976562 146.734375 L 182.984375 145.574219 L 184.0625 144.476562 L 185.207031 143.449219 L 186.417969 142.5 L 187.683594 141.628906 L 189.003906 140.835938 L 190.375 140.132812 L 191.78125 139.515625 L 193.230469 138.988281 L 194.703125 138.554688 L 196.207031 138.214844 L 197.726562 137.972656 L 199.257812 137.828125 L 200.792969 137.777344 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 125.65625 L 203.101562 125.726562 L 205.398438 125.945312 L 207.675781 126.3125 L 209.929688 126.820312 L 212.144531 127.46875 L 214.3125 128.261719 L 216.425781 129.183594 L 218.476562 130.242188 L 220.457031 131.429688 L 222.359375 132.738281 L 224.171875 134.164062 L 225.894531 135.703125 L 227.511719 137.347656 L 229.023438 139.089844 L 230.421875 140.929688 L 231.699219 142.847656 L 232.851562 144.847656 L 233.878906 146.917969 L 234.769531 149.042969 L 235.523438 151.226562 L 236.140625 153.449219 L 236.613281 155.710938 L 236.941406 157.992188 L 237.125 160.292969 L 237.160156 162.601562 L 237.050781 164.90625 L 236.792969 167.199219 L 236.394531 169.472656 L 235.851562 171.714844 L 235.164062 173.921875 L 234.339844 176.078125 L 233.382812 178.175781 L 232.292969 180.210938 L 231.074219 182.171875 L 229.738281 184.050781 L 228.28125 185.84375 L 226.714844 187.539062 L 225.046875 189.128906 L 223.277344 190.613281 L 221.417969 191.980469 L 219.476562 193.230469 L 217.460938 194.351562 L 215.375 195.34375 L 213.234375 196.203125 L 211.042969 196.921875 L 208.808594 197.5 L 206.539062 197.9375 L 204.25 198.230469 L 201.949219 198.375 L 199.640625 198.375 L 197.335938 198.230469 L 195.046875 197.9375 L 192.78125 197.5 L 190.546875 196.921875 L 188.355469 196.203125 L 186.210938 195.34375 L 184.128906 194.351562 L 182.113281 193.230469 L 180.171875 191.980469 L 178.3125 190.613281 L 176.542969 189.128906 L 174.875 187.539062 L 173.308594 185.84375 L 171.851562 184.050781 L 170.511719 182.171875 L 169.296875 180.210938 L 168.207031 178.175781 L 167.25 176.078125 L 166.425781 173.921875 L 165.738281 171.714844 L 165.195312 169.472656 L 164.792969 167.199219 L 164.539062 164.90625 L 164.429688 162.601562 L 164.464844 160.292969 L 164.648438 157.992188 L 164.976562 155.710938 L 165.449219 153.449219 L 166.0625 151.226562 L 166.820312 149.042969 L 167.710938 146.917969 L 168.734375 144.847656 L 169.890625 142.847656 L 171.167969 140.929688 L 172.566406 139.089844 L 174.078125 137.347656 L 175.695312 135.703125 L 177.414062 134.164062 L 179.230469 132.738281 L 181.132812 131.429688 L 183.109375 130.242188 L 185.164062 129.183594 L 187.277344 128.261719 L 189.445312 127.46875 L 191.660156 126.820312 L 193.910156 126.3125 L 196.191406 125.945312 L 198.488281 125.726562 L 200.792969 125.65625 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 113.53125 L 203.871094 113.628906 L 206.933594 113.921875 L 209.972656 114.40625 L 212.972656 115.085938 L 215.925781 115.953125 L 218.816406 117.003906 L 221.636719 118.238281 L 224.371094 119.648438 L 227.011719 121.230469 L 229.546875 122.972656 L 231.964844 124.875 L 234.257812 126.929688 L 236.417969 129.121094 L 238.433594 131.445312 L 240.296875 133.894531 L 242 136.457031 L 243.539062 139.121094 L 244.90625 141.878906 L 246.09375 144.71875 L 247.101562 147.625 L 247.921875 150.59375 L 248.550781 153.605469 L 248.988281 156.648438 L 249.234375 159.71875 L 249.28125 162.792969 L 249.136719 165.867188 L 248.792969 168.925781 L 248.261719 171.957031 L 247.535156 174.945312 L 246.621094 177.886719 L 245.523438 180.761719 L 244.246094 183.558594 L 242.792969 186.273438 L 241.167969 188.886719 L 239.382812 191.394531 L 237.445312 193.78125 L 235.355469 196.042969 L 233.128906 198.164062 L 230.769531 200.144531 L 228.292969 201.96875 L 225.703125 203.632812 L 223.015625 205.128906 L 220.238281 206.449219 L 217.378906 207.59375 L 214.457031 208.554688 L 211.476562 209.328125 L 208.457031 209.910156 L 205.402344 210.300781 L 202.332031 210.496094 L 199.253906 210.496094 L 196.183594 210.300781 L 193.132812 209.910156 L 190.109375 209.328125 L 187.132812 208.554688 L 184.207031 207.59375 L 181.351562 206.449219 L 178.574219 205.128906 L 175.882812 203.632812 L 173.296875 201.96875 L 170.816406 200.144531 L 168.460938 198.164062 L 166.234375 196.042969 L 164.144531 193.78125 L 162.203125 191.394531 L 160.421875 188.886719 L 158.796875 186.273438 L 157.34375 183.558594 L 156.066406 180.761719 L 154.96875 177.886719 L 154.054688 174.945312 L 153.328125 171.957031 L 152.792969 168.925781 L 152.453125 165.867188 L 152.308594 162.792969 L 152.355469 159.71875 L 152.597656 156.648438 L 153.039062 153.605469 L 153.667969 150.59375 L 154.488281 147.625 L 155.492188 144.71875 L 156.683594 141.878906 L 158.050781 139.121094 L 159.589844 136.457031 L 161.292969 133.894531 L 163.15625 131.445312 L 165.171875 129.121094 L 167.328125 126.929688 L 169.625 124.875 L 172.042969 122.972656 L 174.578125 121.230469 L 177.21875 119.648438 L 179.953125 118.238281 L 182.769531 117.003906 L 185.664062 115.953125 L 188.617188 115.085938 L 191.617188 114.40625 L 194.65625 113.921875 L 197.71875 113.628906 L 200.792969 113.53125 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 101.40625 L 204.640625 101.53125 L 208.46875 101.894531 L 212.265625 102.503906 L 216.019531 103.351562 L 219.710938 104.433594 L 223.324219 105.75 L 226.847656 107.292969 L 230.265625 109.054688 L 233.566406 111.03125 L 236.734375 113.210938 L 239.757812 115.589844 L 242.625 118.152344 L 245.324219 120.894531 L 247.84375 123.800781 L 250.171875 126.863281 L 252.300781 130.066406 L 254.226562 133.398438 L 255.933594 136.84375 L 257.417969 140.390625 L 258.679688 144.027344 L 259.703125 147.734375 L 260.492188 151.5 L 261.039062 155.304688 L 261.34375 159.140625 L 261.402344 162.988281 L 261.222656 166.828125 L 260.792969 170.652344 L 260.125 174.441406 L 259.21875 178.179688 L 258.078125 181.851562 L 256.703125 185.445312 L 255.105469 188.941406 L 253.289062 192.332031 L 251.261719 195.601562 L 249.03125 198.734375 L 246.605469 201.722656 L 243.996094 204.546875 L 241.210938 207.199219 L 238.265625 209.671875 L 235.167969 211.953125 L 231.933594 214.035156 L 228.570312 215.902344 L 225.097656 217.558594 L 221.527344 218.988281 L 217.871094 220.1875 L 214.148438 221.152344 L 210.371094 221.878906 L 206.554688 222.367188 L 202.71875 222.613281 L 198.871094 222.613281 L 195.03125 222.367188 L 191.214844 221.878906 L 187.441406 221.152344 L 183.714844 220.1875 L 180.0625 218.988281 L 176.492188 217.558594 L 173.019531 215.902344 L 169.65625 214.035156 L 166.421875 211.953125 L 163.324219 209.671875 L 160.375 207.199219 L 157.59375 204.546875 L 154.984375 201.722656 L 152.558594 198.734375 L 150.328125 195.601562 L 148.296875 192.332031 L 146.480469 188.941406 L 144.882812 185.445312 L 143.511719 181.851562 L 142.367188 178.179688 L 141.460938 174.441406 L 140.792969 170.652344 L 140.367188 166.828125 L 140.183594 162.988281 L 140.246094 159.140625 L 140.550781 155.304688 L 141.097656 151.5 L 141.886719 147.734375 L 142.910156 144.027344 L 144.167969 140.390625 L 145.65625 136.84375 L 147.363281 133.398438 L 149.285156 130.066406 L 151.417969 126.863281 L 153.746094 123.800781 L 156.265625 120.894531 L 158.964844 118.152344 L 161.832031 115.589844 L 164.855469 113.210938 L 168.023438 111.03125 L 171.324219 109.054688 L 174.742188 107.292969 L 178.265625 105.75 L 181.878906 104.433594 L 185.570312 103.351562 L 189.324219 102.503906 L 193.121094 101.894531 L 196.949219 101.53125 L 200.792969 101.40625 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 84.964844 L 205.683594 85.121094 L 210.550781 85.585938 L 215.378906 86.359375 L 220.148438 87.433594 L 224.839844 88.8125 L 229.433594 90.484375 L 233.914062 92.445312 L 238.261719 94.6875 L 242.457031 97.199219 L 246.484375 99.972656 L 250.328125 102.992188 L 253.972656 106.253906 L 257.402344 109.738281 L 260.605469 113.433594 L 263.566406 117.324219 L 266.273438 121.398438 L 268.71875 125.632812 L 270.890625 130.011719 L 272.78125 134.523438 L 274.378906 139.144531 L 275.683594 143.855469 L 276.683594 148.644531 L 277.378906 153.484375 L 277.765625 158.359375 L 277.84375 163.246094 L 277.613281 168.132812 L 277.070312 172.992188 L 276.21875 177.808594 L 275.066406 182.558594 L 273.617188 187.230469 L 271.871094 191.796875 L 269.839844 196.246094 L 267.53125 200.554688 L 264.953125 204.710938 L 262.117188 208.691406 L 259.03125 212.488281 L 255.714844 216.082031 L 252.175781 219.453125 L 248.429688 222.597656 L 244.492188 225.496094 L 240.378906 228.140625 L 236.105469 230.519531 L 231.691406 232.621094 L 227.148438 234.4375 L 222.503906 235.964844 L 217.769531 237.191406 L 212.96875 238.117188 L 208.121094 238.734375 L 203.238281 239.046875 L 198.347656 239.046875 L 193.46875 238.734375 L 188.617188 238.117188 L 183.816406 237.191406 L 179.085938 235.964844 L 174.4375 234.4375 L 169.898438 232.621094 L 165.484375 230.519531 L 161.210938 228.140625 L 157.097656 225.496094 L 153.160156 222.597656 L 149.414062 219.453125 L 145.875 216.082031 L 142.554688 212.488281 L 139.472656 208.691406 L 136.636719 204.710938 L 134.058594 200.554688 L 131.75 196.246094 L 129.71875 191.796875 L 127.972656 187.230469 L 126.519531 182.558594 L 125.367188 177.808594 L 124.519531 172.992188 L 123.976562 168.132812 L 123.746094 163.246094 L 123.820312 158.359375 L 124.210938 153.484375 L 124.90625 148.644531 L 125.90625 143.855469 L 127.210938 139.144531 L 128.808594 134.523438 L 130.699219 130.011719 L 132.871094 125.632812 L 135.316406 121.398438 L 138.023438 117.324219 L 140.984375 113.433594 L 144.1875 109.738281 L 147.617188 106.253906 L 151.261719 102.992188 L 155.105469 99.972656 L 159.132812 97.199219 L 163.328125 94.6875 L 167.675781 92.445312 L 172.152344 90.484375 L 176.75 88.8125 L 181.441406 87.433594 L 186.210938 86.359375 L 191.039062 85.585938 L 195.90625 85.121094 L 200.792969 84.964844 "/>
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 200.792969 93.527344 L 203.183594 93.570312 L 205.574219 93.695312 L 207.953125 93.902344 L 210.328125 94.195312 L 212.6875 94.566406 L 215.035156 95.023438 L 217.367188 95.5625 L 219.675781 96.179688 L 221.960938 96.878906 L 224.222656 97.660156 L 226.453125 98.515625 L 228.65625 99.449219 L 230.820312 100.460938 L 232.953125 101.546875 L 235.042969 102.703125 L 237.09375 103.9375 L 239.097656 105.238281 L 241.054688 106.609375 L 242.964844 108.046875 L 244.824219 109.554688 L 246.628906 111.121094 L 248.375 112.753906 L 250.066406 114.441406 L 251.699219 116.191406 L 253.265625 117.996094 L 254.769531 119.855469 L 256.210938 121.761719 L 257.582031 123.722656 L 258.882812 125.726562 L 260.113281 127.777344 L 258.070312 128.957031 L 256.023438 130.136719 L 253.976562 131.320312 L 251.933594 132.5 L 249.886719 133.679688 L 247.839844 134.863281 L 245.796875 136.042969 L 243.75 137.222656 L 241.707031 138.40625 L 237.613281 140.765625 L 235.570312 141.949219 L 231.476562 144.308594 L 229.433594 145.492188 L 225.339844 147.851562 L 223.296875 149.035156 L 219.203125 151.394531 L 217.160156 152.578125 L 213.066406 154.9375 L 211.023438 156.121094 L 206.929688 158.480469 L 204.886719 159.664062 L 200.792969 162.023438 Z M 200.792969 93.527344 "/>
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 233.445312 143.171875 L 234.546875 145.21875 L 235.515625 147.328125 L 236.355469 149.492188 L 237.058594 151.707031 L 237.625 153.957031 L 238.050781 156.242188 L 238.335938 158.546875 L 238.480469 160.863281 L 238.480469 163.1875 L 238.335938 165.503906 L 238.050781 167.808594 L 237.625 170.089844 L 237.058594 172.34375 L 236.355469 174.554688 L 235.515625 176.722656 L 234.546875 178.832031 L 233.445312 180.875 L 231.40625 179.699219 L 229.367188 178.519531 L 227.324219 177.34375 L 225.285156 176.164062 L 223.242188 174.984375 L 221.203125 173.808594 L 219.160156 172.628906 L 217.121094 171.449219 L 215.078125 170.273438 L 213.039062 169.09375 L 211 167.917969 L 208.957031 166.738281 L 206.917969 165.558594 L 204.875 164.382812 L 202.835938 163.203125 L 200.792969 162.023438 L 202.835938 160.847656 L 204.875 159.667969 L 206.917969 158.488281 L 208.957031 157.3125 L 211 156.132812 L 213.039062 154.957031 L 215.078125 153.777344 L 217.121094 152.597656 L 219.160156 151.421875 L 221.203125 150.242188 L 223.242188 149.0625 L 225.285156 147.886719 L 227.324219 146.707031 L 229.367188 145.53125 Z M 233.445312 143.171875 "/>
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 228.828125 178.210938 L 227.539062 180.257812 L 226.101562 182.207031 L 224.523438 184.042969 L 222.8125 185.753906 L 220.976562 187.332031 L 219.027344 188.769531 L 216.980469 190.058594 L 214.839844 191.1875 L 212.621094 192.15625 L 210.335938 192.957031 L 207.996094 193.582031 L 205.617188 194.03125 L 203.214844 194.304688 L 200.792969 194.394531 L 200.792969 162.023438 L 207.261719 165.761719 L 209.417969 167.003906 L 211.578125 168.25 L 213.734375 169.496094 L 215.890625 170.738281 L 222.359375 174.476562 L 224.515625 175.71875 Z M 228.828125 178.210938 "/>
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 200.792969 181.058594 L 198.308594 180.894531 L 195.867188 180.410156 L 193.511719 179.609375 L 191.277344 178.507812 L 189.207031 177.125 L 187.335938 175.484375 L 185.695312 173.613281 L 184.3125 171.542969 L 186.371094 170.351562 L 188.429688 169.164062 L 190.492188 167.972656 L 192.550781 166.785156 L 194.613281 165.59375 L 196.671875 164.402344 L 198.734375 163.214844 L 200.792969 162.023438 Z M 200.792969 181.058594 "/>
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 192.5 166.8125 L 191.542969 164.503906 L 191.21875 162.023438 L 191.542969 159.546875 L 192.5 157.234375 L 194.574219 158.433594 L 196.648438 159.628906 L 198.722656 160.828125 L 200.792969 162.023438 L 198.722656 163.222656 L 196.648438 164.417969 L 194.574219 165.617188 Z M 192.5 166.8125 "/>
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 200.480469 161.84375 L 200.792969 161.660156 L 200.792969 162.023438 Z M 200.480469 161.84375 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="227.1875" y="99.304688"/>
<use xlink:href="#glyph-0-1" x="232.7875" y="99.304688"/>
<use xlink:href="#glyph-0-2" x="235.275781" y="99.304688"/>
<use xlink:href="#glyph-0-3" x="241.504687" y="99.304688"/>
<use xlink:href="#glyph-0-4" x="247.733594" y="99.304688"/>
</g>
<g clip-path="url(#clip-2)">
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-5" x="237.078125" y="166.042969"/>
<use xlink:href="#glyph-0-0" x="242.678125" y="166.042969"/>
<use xlink:href="#glyph-0-3" x="248.278125" y="166.042969"/>
<use xlink:href="#glyph-0-6" x="254.507031" y="166.042969"/>
<use xlink:href="#glyph-0-6" x="257.61875" y="166.042969"/>
<use xlink:href="#glyph-0-2" x="260.730469" y="166.042969"/>
<use xlink:href="#glyph-0-4" x="266.959375" y="166.042969"/>
<use xlink:href="#glyph-0-2" x="270.689063" y="166.042969"/>
<use xlink:href="#glyph-0-7" x="276.917969" y="166.042969"/>
<use xlink:href="#glyph-0-8" x="283.146875" y="166.042969"/>
<use xlink:href="#glyph-0-0" x="286.258594" y="166.042969"/>
<use xlink:href="#glyph-0-1" x="291.858594" y="166.042969"/>
<use xlink:href="#glyph-0-9" x="294.346875" y="166.042969"/>
<use xlink:href="#glyph-0-10" x="300.575781" y="166.042969"/>
<use xlink:href="#glyph-0-7" x="306.804688" y="166.042969"/>
<use xlink:href="#glyph-0-5" x="313.033594" y="166.042969"/>
</g>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="204.457031" y="232.777344"/>
<use xlink:href="#glyph-0-4" x="210.685937" y="232.777344"/>
<use xlink:href="#glyph-0-9" x="214.415625" y="232.777344"/>
<use xlink:href="#glyph-0-12" x="220.644531" y="232.777344"/>
<use xlink:href="#glyph-0-2" x="226.244531" y="232.777344"/>
<use xlink:href="#glyph-0-13" x="232.473437" y="232.777344"/>
<use xlink:href="#glyph-0-8" x="238.702344" y="232.777344"/>
<use xlink:href="#glyph-0-0" x="241.814062" y="232.777344"/>
<use xlink:href="#glyph-0-1" x="247.414062" y="232.777344"/>
<use xlink:href="#glyph-0-9" x="249.902344" y="232.777344"/>
<use xlink:href="#glyph-0-10" x="256.13125" y="232.777344"/>
<use xlink:href="#glyph-0-7" x="262.360156" y="232.777344"/>
<use xlink:href="#glyph-0-5" x="268.589063" y="232.777344"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-4" x="152.929688" y="232.777344"/>
<use xlink:href="#glyph-0-3" x="156.659375" y="232.777344"/>
<use xlink:href="#glyph-0-14" x="162.888281" y="232.777344"/>
<use xlink:href="#glyph-0-13" x="165.376563" y="232.777344"/>
</g>
<g clip-path="url(#clip-3)">
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="107.546875" y="166.042969"/>
<use xlink:href="#glyph-0-1" x="113.146875" y="166.042969"/>
<use xlink:href="#glyph-0-9" x="115.635156" y="166.042969"/>
<use xlink:href="#glyph-0-10" x="121.864062" y="166.042969"/>
<use xlink:href="#glyph-0-7" x="128.092969" y="166.042969"/>
<use xlink:href="#glyph-0-15" x="134.321875" y="166.042969"/>
</g>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-5" x="142.035156" y="99.304688"/>
<use xlink:href="#glyph-0-13" x="147.635156" y="99.304688"/>
<use xlink:href="#glyph-0-9" x="153.864062" y="99.304688"/>
<use xlink:href="#glyph-0-16" x="160.092969" y="99.304688"/>
<use xlink:href="#glyph-0-17" x="168.18125" y="99.304688"/>
<use xlink:href="#glyph-0-3" x="171.292969" y="99.304688"/>
<use xlink:href="#glyph-0-1" x="177.521875" y="99.304688"/>
<use xlink:href="#glyph-0-1" x="180.010156" y="99.304688"/>
</g>
<g clip-path="url(#clip-4)">
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 115.171875 247.648438 L 286.414062 247.648438 L 286.414062 76.40625 L 115.171875 76.40625 Z M 115.171875 247.648438 "/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-18" x="102.664062" y="166.042969"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-19" x="90.207031" y="153.917969"/>
<use xlink:href="#glyph-0-18" x="96.435937" y="153.917969"/>
<use xlink:href="#glyph-0-18" x="102.664844" y="153.917969"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-20" x="90.207031" y="141.792969"/>
<use xlink:href="#glyph-0-18" x="96.435937" y="141.792969"/>
<use xlink:href="#glyph-0-18" x="102.664844" y="141.792969"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-21" x="90.207031" y="129.671875"/>
<use xlink:href="#glyph-0-18" x="96.435937" y="129.671875"/>
<use xlink:href="#glyph-0-18" x="102.664844" y="129.671875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-22" x="90.207031" y="117.546875"/>
<use xlink:href="#glyph-0-18" x="96.435937" y="117.546875"/>
<use xlink:href="#glyph-0-18" x="102.664844" y="117.546875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-23" x="90.207031" y="105.425781"/>
<use xlink:href="#glyph-0-18" x="96.435937" y="105.425781"/>
<use xlink:href="#glyph-0-18" x="102.664844" y="105.425781"/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.6875 162.023438 L 115.171875 162.023438 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.6875 149.902344 L 115.171875 149.902344 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.6875 137.777344 L 115.171875 137.777344 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.6875 125.65625 L 115.171875 125.65625 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.6875 113.53125 L 115.171875 113.53125 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.6875 101.40625 L 115.171875 101.40625 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="125.308594" y="269.929688"/>
<use xlink:href="#glyph-1-1" x="129.198242" y="269.929688"/>
<use xlink:href="#glyph-1-2" x="136.198242" y="269.929688"/>
<use xlink:href="#glyph-1-3" x="140.087891" y="269.929688"/>
<use xlink:href="#glyph-1-4" x="147.874023" y="269.929688"/>
<use xlink:href="#glyph-1-5" x="150.984375" y="269.929688"/>
<use xlink:href="#glyph-1-0" x="158.770508" y="269.929688"/>
<use xlink:href="#glyph-1-6" x="162.660156" y="269.929688"/>
<use xlink:href="#glyph-1-7" x="167.322266" y="269.929688"/>
<use xlink:href="#glyph-1-8" x="175.108398" y="269.929688"/>
<use xlink:href="#glyph-1-9" x="182.894531" y="269.929688"/>
<use xlink:href="#glyph-1-10" x="187.556641" y="269.929688"/>
<use xlink:href="#glyph-1-7" x="197.666992" y="269.929688"/>
<use xlink:href="#glyph-1-11" x="205.453125" y="269.929688"/>
<use xlink:href="#glyph-1-2" x="213.239258" y="269.929688"/>
<use xlink:href="#glyph-1-12" x="217.128906" y="269.929688"/>
<use xlink:href="#glyph-1-7" x="224.915039" y="269.929688"/>
<use xlink:href="#glyph-1-6" x="232.701172" y="269.929688"/>
<use xlink:href="#glyph-1-3" x="237.363281" y="269.929688"/>
<use xlink:href="#glyph-1-2" x="245.149414" y="269.929688"/>
<use xlink:href="#glyph-1-13" x="249.039062" y="269.929688"/>
<use xlink:href="#glyph-1-14" x="256.039062" y="269.929688"/>
<use xlink:href="#glyph-1-7" x="263.825195" y="269.929688"/>
<use xlink:href="#glyph-1-15" x="271.611328" y="269.929688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="83.625" y="179.148438"/>
<use xlink:href="#glyph-2-1" x="83.625" y="172.148438"/>
<use xlink:href="#glyph-2-2" x="83.625" y="164.362305"/>
<use xlink:href="#glyph-2-3" x="83.625" y="156.576172"/>
<use xlink:href="#glyph-2-4" x="83.625" y="148.790039"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 13.121094 62.457031 L 388.46875 62.457031 L 388.46875 6.976562 L 13.121094 6.976562 Z M 13.121094 62.457031 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-10" x="20.09375" y="39.734375"/>
<use xlink:href="#glyph-1-7" x="30.204102" y="39.734375"/>
<use xlink:href="#glyph-1-11" x="37.990234" y="39.734375"/>
<use xlink:href="#glyph-1-2" x="45.776367" y="39.734375"/>
<use xlink:href="#glyph-1-12" x="49.666016" y="39.734375"/>
<use xlink:href="#glyph-1-7" x="57.452148" y="39.734375"/>
<use xlink:href="#glyph-1-6" x="65.238281" y="39.734375"/>
<use xlink:href="#glyph-1-3" x="69.900391" y="39.734375"/>
<use xlink:href="#glyph-1-2" x="77.686523" y="39.734375"/>
<use xlink:href="#glyph-1-13" x="81.576172" y="39.734375"/>
<use xlink:href="#glyph-1-14" x="88.576172" y="39.734375"/>
<use xlink:href="#glyph-1-7" x="96.362305" y="39.734375"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 111.121094 31.226562 L 128.402344 31.226562 L 128.402344 13.945312 L 111.121094 13.945312 Z M 111.121094 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 111.832031 30.519531 L 127.695312 30.519531 L 127.695312 14.65625 L 111.832031 14.65625 Z M 111.832031 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 111.121094 55.480469 L 128.402344 55.480469 L 128.402344 38.199219 L 111.121094 38.199219 Z M 111.121094 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 111.832031 54.773438 L 127.695312 54.773438 L 127.695312 38.910156 L 111.832031 38.910156 Z M 111.832031 54.773438 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 212.082031 31.226562 L 229.363281 31.226562 L 229.363281 13.945312 L 212.082031 13.945312 Z M 212.082031 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 212.792969 30.519531 L 228.65625 30.519531 L 228.65625 14.65625 L 212.792969 14.65625 Z M 212.792969 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 212.082031 55.480469 L 229.363281 55.480469 L 229.363281 38.199219 L 212.082031 38.199219 Z M 212.082031 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 212.792969 54.773438 L 228.65625 54.773438 L 228.65625 38.910156 L 212.792969 38.910156 Z M 212.792969 54.773438 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 275.683594 31.226562 L 292.964844 31.226562 L 292.964844 13.945312 L 275.683594 13.945312 Z M 275.683594 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 276.394531 30.519531 L 292.257812 30.519531 L 292.257812 14.65625 L 276.394531 14.65625 Z M 276.394531 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 275.683594 55.480469 L 292.964844 55.480469 L 292.964844 38.199219 L 275.683594 38.199219 Z M 275.683594 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 276.394531 54.773438 L 292.257812 54.773438 L 292.257812 38.910156 L 276.394531 38.910156 Z M 276.394531 54.773438 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="135.375" y="26.605469"/>
<use xlink:href="#glyph-0-4" x="141.603906" y="26.605469"/>
<use xlink:href="#glyph-0-9" x="145.333594" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="151.5625" y="26.605469"/>
<use xlink:href="#glyph-0-2" x="157.1625" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="163.391406" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="169.620312" y="26.605469"/>
<use xlink:href="#glyph-0-0" x="172.732031" y="26.605469"/>
<use xlink:href="#glyph-0-1" x="178.332031" y="26.605469"/>
<use xlink:href="#glyph-0-9" x="180.820312" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="187.049219" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="193.278125" y="26.605469"/>
<use xlink:href="#glyph-0-5" x="199.507031" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="135.375" y="50.859375"/>
<use xlink:href="#glyph-0-1" x="140.975" y="50.859375"/>
<use xlink:href="#glyph-0-2" x="143.463281" y="50.859375"/>
<use xlink:href="#glyph-0-3" x="149.692187" y="50.859375"/>
<use xlink:href="#glyph-0-4" x="155.921094" y="50.859375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="236.335938" y="26.605469"/>
<use xlink:href="#glyph-0-1" x="241.935937" y="26.605469"/>
<use xlink:href="#glyph-0-9" x="244.424219" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="250.653125" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="256.882031" y="26.605469"/>
<use xlink:href="#glyph-0-15" x="263.110938" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-4" x="236.335938" y="50.859375"/>
<use xlink:href="#glyph-0-3" x="240.065625" y="50.859375"/>
<use xlink:href="#glyph-0-14" x="246.294531" y="50.859375"/>
<use xlink:href="#glyph-0-13" x="248.782813" y="50.859375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-5" x="299.9375" y="26.605469"/>
<use xlink:href="#glyph-0-0" x="305.5375" y="26.605469"/>
<use xlink:href="#glyph-0-3" x="311.1375" y="26.605469"/>
<use xlink:href="#glyph-0-6" x="317.366406" y="26.605469"/>
<use xlink:href="#glyph-0-6" x="320.478125" y="26.605469"/>
<use xlink:href="#glyph-0-2" x="323.589844" y="26.605469"/>
<use xlink:href="#glyph-0-4" x="329.81875" y="26.605469"/>
<use xlink:href="#glyph-0-2" x="333.548438" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="339.777344" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="346.00625" y="26.605469"/>
<use xlink:href="#glyph-0-0" x="349.117969" y="26.605469"/>
<use xlink:href="#glyph-0-1" x="354.717969" y="26.605469"/>
<use xlink:href="#glyph-0-9" x="357.20625" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="363.435156" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="369.664063" y="26.605469"/>
<use xlink:href="#glyph-0-5" x="375.892969" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-5" x="299.9375" y="50.859375"/>
<use xlink:href="#glyph-0-13" x="305.5375" y="50.859375"/>
<use xlink:href="#glyph-0-9" x="311.766406" y="50.859375"/>
<use xlink:href="#glyph-0-16" x="317.995313" y="50.859375"/>
<use xlink:href="#glyph-0-17" x="326.083594" y="50.859375"/>
<use xlink:href="#glyph-0-3" x="329.195313" y="50.859375"/>
<use xlink:href="#glyph-0-1" x="335.424219" y="50.859375"/>
<use xlink:href="#glyph-0-1" x="337.9125" y="50.859375"/>
</g>
</svg>

After

(image error) Size: 72 KiB

Binary file not shown.

After

(image error) Size: 75 KiB

View File

@ -0,0 +1,293 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="295" viewBox="0 0 360 295">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
</g>
<g id="glyph-0-1">
<path d="M 1.390625 -2 C 1.453125 -1.4375 1.710938 -1.046875 2.171875 -0.828125 C 2.398438 -0.722656 2.664062 -0.671875 2.96875 -0.671875 C 3.550781 -0.671875 3.984375 -0.851562 4.265625 -1.21875 C 4.546875 -1.59375 4.6875 -2.007812 4.6875 -2.46875 C 4.6875 -3.007812 4.519531 -3.425781 4.1875 -3.71875 C 3.851562 -4.019531 3.457031 -4.171875 3 -4.171875 C 2.65625 -4.171875 2.359375 -4.101562 2.109375 -3.96875 C 1.867188 -3.84375 1.664062 -3.664062 1.5 -3.4375 L 0.640625 -3.484375 L 1.234375 -7.703125 L 5.3125 -7.703125 L 5.3125 -6.75 L 1.984375 -6.75 L 1.640625 -4.578125 C 1.828125 -4.710938 2.003906 -4.816406 2.171875 -4.890625 C 2.460938 -5.003906 2.796875 -5.0625 3.171875 -5.0625 C 3.890625 -5.0625 4.5 -4.828125 5 -4.359375 C 5.5 -3.898438 5.75 -3.316406 5.75 -2.609375 C 5.75 -1.867188 5.519531 -1.210938 5.0625 -0.640625 C 4.601562 -0.078125 3.875 0.203125 2.875 0.203125 C 2.238281 0.203125 1.675781 0.0234375 1.1875 -0.328125 C 0.695312 -0.691406 0.421875 -1.25 0.359375 -2 Z M 1.390625 -2 "/>
</g>
<g id="glyph-0-2">
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
</g>
<g id="glyph-0-3">
<path d="M 0.953125 -1.1875 L 2.09375 -1.1875 L 2.09375 0 L 0.953125 0 Z M 0.953125 -1.1875 "/>
</g>
<g id="glyph-0-4">
<path d="M 5.859375 -7.703125 L 5.859375 -6.84375 C 5.609375 -6.601562 5.273438 -6.175781 4.859375 -5.5625 C 4.441406 -4.957031 4.070312 -4.304688 3.75 -3.609375 C 3.425781 -2.929688 3.1875 -2.3125 3.03125 -1.75 C 2.914062 -1.382812 2.773438 -0.800781 2.609375 0 L 1.53125 0 C 1.769531 -1.5 2.316406 -2.988281 3.171875 -4.46875 C 3.671875 -5.332031 4.195312 -6.082031 4.75 -6.71875 L 0.40625 -6.71875 L 0.40625 -7.703125 Z M 5.859375 -7.703125 "/>
</g>
<g id="glyph-0-5">
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
</g>
<g id="glyph-0-6">
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
</g>
<g id="glyph-0-7">
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
</g>
<g id="glyph-0-8">
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-9">
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
</g>
<g id="glyph-0-10">
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-11">
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
</g>
<g id="glyph-0-12">
</g>
<g id="glyph-0-13">
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
</g>
<g id="glyph-0-14">
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
</g>
<g id="glyph-0-15">
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-16">
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
</g>
<g id="glyph-0-17">
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
</g>
<g id="glyph-0-18">
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-19">
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
</g>
<g id="glyph-0-20">
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
</g>
<g id="glyph-0-21">
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
</g>
<g id="glyph-0-22">
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
</g>
<g id="glyph-0-23">
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
</g>
<g id="glyph-1-0">
<path d="M 3.71875 -7.53125 C 4.550781 -7.53125 5.222656 -7.328125 5.734375 -6.921875 C 6.253906 -6.523438 6.566406 -5.835938 6.671875 -4.859375 L 5.46875 -4.859375 C 5.394531 -5.304688 5.226562 -5.679688 4.96875 -5.984375 C 4.71875 -6.285156 4.300781 -6.4375 3.71875 -6.4375 C 2.9375 -6.4375 2.378906 -6.050781 2.046875 -5.28125 C 1.828125 -4.789062 1.71875 -4.179688 1.71875 -3.453125 C 1.71875 -2.710938 1.867188 -2.09375 2.171875 -1.59375 C 2.484375 -1.09375 2.972656 -0.84375 3.640625 -0.84375 C 4.148438 -0.84375 4.554688 -1 4.859375 -1.3125 C 5.160156 -1.625 5.363281 -2.050781 5.46875 -2.59375 L 6.671875 -2.59375 C 6.535156 -1.625 6.191406 -0.910156 5.640625 -0.453125 C 5.097656 -0.00390625 4.398438 0.21875 3.546875 0.21875 C 2.585938 0.21875 1.820312 -0.128906 1.25 -0.828125 C 0.6875 -1.535156 0.40625 -2.410156 0.40625 -3.453125 C 0.40625 -4.742188 0.71875 -5.742188 1.34375 -6.453125 C 1.96875 -7.171875 2.757812 -7.53125 3.71875 -7.53125 Z M 3.53125 -7.5 Z M 3.53125 -7.5 "/>
</g>
<g id="glyph-1-1">
<path d="M 3.8125 -0.796875 C 4.625 -0.796875 5.179688 -1.101562 5.484375 -1.71875 C 5.785156 -2.332031 5.9375 -3.019531 5.9375 -3.78125 C 5.9375 -4.46875 5.828125 -5.023438 5.609375 -5.453125 C 5.265625 -6.117188 4.671875 -6.453125 3.828125 -6.453125 C 3.066406 -6.453125 2.515625 -6.164062 2.171875 -5.59375 C 1.835938 -5.019531 1.671875 -4.328125 1.671875 -3.515625 C 1.671875 -2.742188 1.835938 -2.097656 2.171875 -1.578125 C 2.515625 -1.054688 3.0625 -0.796875 3.8125 -0.796875 Z M 3.859375 -7.53125 C 4.796875 -7.53125 5.585938 -7.210938 6.234375 -6.578125 C 6.890625 -5.953125 7.21875 -5.03125 7.21875 -3.8125 C 7.21875 -2.632812 6.929688 -1.660156 6.359375 -0.890625 C 5.785156 -0.117188 4.894531 0.265625 3.6875 0.265625 C 2.6875 0.265625 1.890625 -0.0703125 1.296875 -0.75 C 0.703125 -1.4375 0.40625 -2.351562 0.40625 -3.5 C 0.40625 -4.726562 0.71875 -5.707031 1.34375 -6.4375 C 1.96875 -7.164062 2.804688 -7.53125 3.859375 -7.53125 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-2">
<path d="M 2.140625 -7.328125 L 2.140625 -2.46875 C 2.140625 -2.09375 2.195312 -1.785156 2.3125 -1.546875 C 2.53125 -1.109375 2.9375 -0.890625 3.53125 -0.890625 C 4.382812 -0.890625 4.96875 -1.269531 5.28125 -2.03125 C 5.445312 -2.445312 5.53125 -3.007812 5.53125 -3.71875 L 5.53125 -7.328125 L 6.765625 -7.328125 L 6.765625 0 L 5.609375 0 L 5.625 -1.078125 C 5.457031 -0.796875 5.257812 -0.5625 5.03125 -0.375 C 4.5625 0.0078125 3.988281 0.203125 3.3125 0.203125 C 2.269531 0.203125 1.5625 -0.144531 1.1875 -0.84375 C 0.976562 -1.21875 0.875 -1.71875 0.875 -2.34375 L 0.875 -7.328125 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
</g>
<g id="glyph-1-3">
<path d="M 0.90625 -7.328125 L 2.078125 -7.328125 L 2.078125 -6.28125 C 2.421875 -6.707031 2.785156 -7.015625 3.171875 -7.203125 C 3.554688 -7.390625 3.988281 -7.484375 4.46875 -7.484375 C 5.5 -7.484375 6.195312 -7.125 6.5625 -6.40625 C 6.769531 -6 6.875 -5.429688 6.875 -4.703125 L 6.875 0 L 5.625 0 L 5.625 -4.609375 C 5.625 -5.054688 5.554688 -5.414062 5.421875 -5.6875 C 5.203125 -6.144531 4.804688 -6.375 4.234375 -6.375 C 3.941406 -6.375 3.703125 -6.347656 3.515625 -6.296875 C 3.179688 -6.191406 2.882812 -5.988281 2.625 -5.6875 C 2.414062 -5.445312 2.28125 -5.195312 2.21875 -4.9375 C 2.164062 -4.675781 2.140625 -4.304688 2.140625 -3.828125 L 2.140625 0 L 0.90625 0 Z M 3.796875 -7.5 Z M 3.796875 -7.5 "/>
</g>
<g id="glyph-1-4">
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
</g>
<g id="glyph-1-5">
<path d="M 1.46875 -7.328125 L 2.875 -1.546875 L 4.3125 -7.328125 L 5.6875 -7.328125 L 7.125 -1.59375 L 8.625 -7.328125 L 9.84375 -7.328125 L 7.71875 0 L 6.453125 0 L 4.953125 -5.671875 L 3.515625 0 L 2.234375 0 L 0.125 -7.328125 Z M 1.46875 -7.328125 "/>
</g>
<g id="glyph-1-6">
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
</g>
<g id="glyph-1-7">
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-8">
<path d="M 0.90625 -10.078125 L 2.140625 -10.078125 L 2.140625 -6.328125 C 2.429688 -6.703125 2.691406 -6.960938 2.921875 -7.109375 C 3.316406 -7.367188 3.8125 -7.5 4.40625 -7.5 C 5.46875 -7.5 6.1875 -7.128906 6.5625 -6.390625 C 6.769531 -5.984375 6.875 -5.421875 6.875 -4.703125 L 6.875 0 L 5.609375 0 L 5.609375 -4.609375 C 5.609375 -5.148438 5.539062 -5.546875 5.40625 -5.796875 C 5.175781 -6.203125 4.753906 -6.40625 4.140625 -6.40625 C 3.628906 -6.40625 3.164062 -6.226562 2.75 -5.875 C 2.34375 -5.519531 2.140625 -4.859375 2.140625 -3.890625 L 2.140625 0 L 0.90625 0 Z M 0.90625 -10.078125 "/>
</g>
<g id="glyph-1-9">
<path d="M 0.9375 -7.328125 L 2.109375 -7.328125 L 2.109375 -6.0625 C 2.203125 -6.300781 2.4375 -6.597656 2.8125 -6.953125 C 3.1875 -7.304688 3.617188 -7.484375 4.109375 -7.484375 C 4.128906 -7.484375 4.164062 -7.476562 4.21875 -7.46875 C 4.269531 -7.46875 4.363281 -7.460938 4.5 -7.453125 L 4.5 -6.15625 C 4.425781 -6.164062 4.359375 -6.171875 4.296875 -6.171875 C 4.234375 -6.179688 4.164062 -6.1875 4.09375 -6.1875 C 3.476562 -6.1875 3.003906 -5.984375 2.671875 -5.578125 C 2.335938 -5.179688 2.171875 -4.726562 2.171875 -4.21875 L 2.171875 0 L 0.9375 0 Z M 0.9375 -7.328125 "/>
</g>
<g id="glyph-1-10">
<path d="M 0 1.75 L 0 1.0625 L 7.78125 1.0625 L 7.78125 1.75 Z M 0 1.75 "/>
</g>
<g id="glyph-1-11">
<path d="M 5.46875 -7.328125 L 6.84375 -7.328125 C 6.664062 -6.859375 6.28125 -5.785156 5.6875 -4.109375 C 5.238281 -2.847656 4.863281 -1.820312 4.5625 -1.03125 C 3.851562 0.832031 3.351562 1.96875 3.0625 2.375 C 2.769531 2.789062 2.265625 3 1.546875 3 C 1.378906 3 1.25 2.988281 1.15625 2.96875 C 1.0625 2.957031 0.945312 2.9375 0.8125 2.90625 L 0.8125 1.78125 C 1.019531 1.84375 1.171875 1.878906 1.265625 1.890625 C 1.367188 1.910156 1.457031 1.921875 1.53125 1.921875 C 1.75 1.921875 1.910156 1.878906 2.015625 1.796875 C 2.128906 1.722656 2.222656 1.632812 2.296875 1.53125 C 2.316406 1.488281 2.394531 1.296875 2.53125 0.953125 C 2.675781 0.617188 2.78125 0.375 2.84375 0.21875 L 0.140625 -7.328125 L 1.53125 -7.328125 L 3.5 -1.359375 Z M 3.5 -7.5 Z M 3.5 -7.5 "/>
</g>
<g id="glyph-1-12">
<path d="M 4 -0.828125 C 4.570312 -0.828125 5.046875 -1.066406 5.421875 -1.546875 C 5.804688 -2.023438 6 -2.742188 6 -3.703125 C 6 -4.285156 5.914062 -4.785156 5.75 -5.203125 C 5.425781 -6.015625 4.84375 -6.421875 4 -6.421875 C 3.144531 -6.421875 2.5625 -5.992188 2.25 -5.140625 C 2.070312 -4.679688 1.984375 -4.101562 1.984375 -3.40625 C 1.984375 -2.84375 2.070312 -2.363281 2.25 -1.96875 C 2.5625 -1.207031 3.144531 -0.828125 4 -0.828125 Z M 0.8125 -7.28125 L 2 -7.28125 L 2 -6.3125 C 2.25 -6.644531 2.519531 -6.90625 2.8125 -7.09375 C 3.226562 -7.363281 3.710938 -7.5 4.265625 -7.5 C 5.097656 -7.5 5.800781 -7.179688 6.375 -6.546875 C 6.957031 -5.910156 7.25 -5.003906 7.25 -3.828125 C 7.25 -2.222656 6.832031 -1.082031 6 -0.40625 C 5.46875 0.0273438 4.851562 0.25 4.15625 0.25 C 3.601562 0.25 3.140625 0.128906 2.765625 -0.109375 C 2.546875 -0.253906 2.300781 -0.492188 2.03125 -0.828125 L 2.03125 2.921875 L 0.8125 2.921875 Z M 0.8125 -7.28125 "/>
</g>
<g id="glyph-2-0">
<path d="M -7.328125 -0.203125 L -7.328125 -1.796875 L -4.75 -3.484375 L -7.328125 -5.1875 L -7.28125 -6.671875 L -3.75 -4.21875 L 0 -6.78125 L 0 -5.21875 L -2.75 -3.390625 L 0 -1.640625 L 0 -0.078125 L -3.75 -2.65625 Z M -7.328125 -0.203125 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 57.554688 0 L 302.445312 0 L 302.445312 295 L 57.554688 295 Z M 57.554688 0 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 109.226562 76.402344 L 295.46875 76.402344 L 295.46875 262.644531 L 109.226562 262.644531 Z M 109.226562 76.402344 "/>
</clipPath>
<clipPath id="clip-2">
<path clip-rule="nonzero" d="M 109.226562 179 L 132 179 L 132 188 L 109.226562 188 Z M 109.226562 179 "/>
</clipPath>
<clipPath id="clip-3">
<path clip-rule="nonzero" d="M 109.226562 76.402344 L 295.46875 76.402344 L 295.46875 262.644531 L 109.226562 262.644531 Z M 109.226562 76.402344 "/>
</clipPath>
</defs>
<rect x="-36" y="-29.5" width="432" height="354" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<g clip-path="url(#clip-0)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 57.554688 295 L 302.445312 295 L 302.445312 0 L 57.554688 0 Z M 57.554688 295 "/>
</g>
<g clip-path="url(#clip-1)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 109.226562 262.648438 L 295.46875 262.648438 L 295.46875 76.40625 L 109.226562 76.40625 Z M 109.226562 262.648438 "/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 202.351562 169.523438 L 202.351562 85.714844 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 202.351562 169.523438 L 266.320312 223.671875 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 202.351562 169.523438 L 119.691406 183.367188 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 202.351562 152.96875 L 203.398438 153.003906 L 204.445312 153.101562 L 205.484375 153.269531 L 206.507812 153.5 L 207.515625 153.796875 L 208.503906 154.15625 L 209.464844 154.578125 L 210.398438 155.058594 L 211.300781 155.597656 L 212.164062 156.195312 L 212.992188 156.84375 L 213.773438 157.542969 L 214.511719 158.292969 L 215.199219 159.085938 L 215.835938 159.921875 L 216.417969 160.796875 L 216.941406 161.707031 L 217.410156 162.648438 L 217.816406 163.617188 L 218.160156 164.609375 L 218.4375 165.621094 L 218.652344 166.648438 L 218.804688 167.691406 L 218.886719 168.738281 L 218.902344 169.789062 L 218.851562 170.835938 L 218.738281 171.882812 L 218.554688 172.914062 L 218.308594 173.9375 L 217.996094 174.941406 L 217.621094 175.921875 L 217.183594 176.875 L 216.6875 177.800781 L 216.132812 178.695312 L 215.523438 179.550781 L 214.863281 180.367188 L 214.148438 181.136719 L 213.386719 181.863281 L 212.582031 182.539062 L 211.738281 183.160156 L 210.855469 183.730469 L 209.9375 184.238281 L 208.988281 184.691406 L 208.011719 185.082031 L 207.015625 185.410156 L 205.996094 185.671875 L 204.964844 185.871094 L 203.925781 186.003906 L 202.875 186.070312 L 201.824219 186.070312 L 200.777344 186.003906 L 199.734375 185.871094 L 198.703125 185.671875 L 197.6875 185.410156 L 196.6875 185.082031 L 195.710938 184.691406 L 194.765625 184.238281 L 193.847656 183.730469 L 192.960938 183.160156 L 192.117188 182.539062 L 191.3125 181.863281 L 190.550781 181.136719 L 189.839844 180.367188 L 189.175781 179.550781 L 188.566406 178.695312 L 188.011719 177.800781 L 187.515625 176.875 L 187.082031 175.921875 L 186.707031 174.941406 L 186.394531 173.9375 L 186.144531 172.914062 L 185.964844 171.882812 L 185.847656 170.835938 L 185.796875 169.789062 L 185.8125 168.738281 L 185.898438 167.691406 L 186.046875 166.648438 L 186.261719 165.621094 L 186.542969 164.609375 L 186.886719 163.617188 L 187.292969 162.648438 L 187.757812 161.707031 L 188.28125 160.796875 L 188.863281 159.921875 L 189.5 159.085938 L 190.1875 158.292969 L 190.925781 157.542969 L 191.707031 156.84375 L 192.535156 156.195312 L 193.398438 155.597656 L 194.300781 155.058594 L 195.234375 154.578125 L 196.199219 154.15625 L 197.183594 153.796875 L 198.191406 153.5 L 199.21875 153.269531 L 200.253906 153.101562 L 201.300781 153.003906 L 202.351562 152.96875 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 202.351562 132.277344 L 204.710938 132.351562 L 207.066406 132.574219 L 209.398438 132.949219 L 211.707031 133.46875 L 213.972656 134.136719 L 216.195312 134.945312 L 218.359375 135.890625 L 220.460938 136.976562 L 222.488281 138.1875 L 224.433594 139.53125 L 226.292969 140.992188 L 228.054688 142.566406 L 229.710938 144.25 L 231.261719 146.039062 L 232.691406 147.917969 L 234 149.886719 L 235.183594 151.933594 L 236.234375 154.050781 L 237.144531 156.230469 L 237.917969 158.464844 L 238.550781 160.742188 L 239.03125 163.058594 L 239.371094 165.394531 L 239.558594 167.753906 L 239.59375 170.117188 L 239.480469 172.476562 L 239.21875 174.824219 L 238.808594 177.152344 L 238.253906 179.449219 L 237.550781 181.707031 L 236.707031 183.914062 L 235.726562 186.066406 L 234.609375 188.148438 L 233.363281 190.15625 L 231.992188 192.082031 L 230.5 193.917969 L 228.898438 195.652344 L 227.1875 197.285156 L 225.375 198.804688 L 223.472656 200.207031 L 221.484375 201.484375 L 219.417969 202.632812 L 217.285156 203.648438 L 215.089844 204.527344 L 212.84375 205.265625 L 210.554688 205.859375 L 208.234375 206.304688 L 205.890625 206.605469 L 203.53125 206.753906 L 201.167969 206.753906 L 198.808594 206.605469 L 196.464844 206.304688 L 194.144531 205.859375 L 191.855469 205.265625 L 189.609375 204.527344 L 187.417969 203.648438 L 185.28125 202.632812 L 183.214844 201.484375 L 181.226562 200.207031 L 179.324219 198.804688 L 177.515625 197.285156 L 175.804688 195.652344 L 174.199219 193.917969 L 172.710938 192.082031 L 171.339844 190.15625 L 170.09375 188.148438 L 168.976562 186.066406 L 167.992188 183.914062 L 167.148438 181.707031 L 166.449219 179.449219 L 165.890625 177.152344 L 165.480469 174.824219 L 165.21875 172.476562 L 165.105469 170.117188 L 165.144531 167.753906 L 165.332031 165.394531 L 165.667969 163.058594 L 166.152344 160.742188 L 166.78125 158.464844 L 167.554688 156.230469 L 168.46875 154.050781 L 169.515625 151.933594 L 170.699219 149.886719 L 172.007812 147.917969 L 173.441406 146.039062 L 174.988281 144.25 L 176.644531 142.566406 L 178.40625 140.992188 L 180.265625 139.53125 L 182.210938 138.1875 L 184.238281 136.976562 L 186.339844 135.890625 L 188.507812 134.945312 L 190.726562 134.136719 L 192.996094 133.46875 L 195.300781 132.949219 L 197.636719 132.574219 L 199.988281 132.351562 L 202.351562 132.277344 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 202.351562 111.582031 L 206.023438 111.699219 L 209.683594 112.046875 L 213.316406 112.628906 L 216.902344 113.441406 L 220.429688 114.476562 L 223.886719 115.734375 L 227.253906 117.207031 L 230.523438 118.890625 L 233.675781 120.78125 L 236.703125 122.867188 L 239.59375 125.136719 L 242.335938 127.589844 L 244.914062 130.210938 L 247.320312 132.988281 L 249.546875 135.914062 L 251.585938 138.976562 L 253.425781 142.160156 L 255.054688 145.453125 L 256.476562 148.847656 L 257.679688 152.320312 L 258.660156 155.863281 L 259.414062 159.464844 L 259.9375 163.101562 L 260.226562 166.769531 L 260.285156 170.445312 L 260.109375 174.117188 L 259.703125 177.769531 L 259.066406 181.390625 L 258.199219 184.964844 L 257.105469 188.476562 L 255.792969 191.910156 L 254.265625 195.253906 L 252.53125 198.496094 L 250.589844 201.621094 L 248.457031 204.617188 L 246.140625 207.46875 L 243.644531 210.171875 L 240.984375 212.707031 L 238.167969 215.070312 L 235.207031 217.25 L 232.113281 219.238281 L 228.902344 221.027344 L 225.582031 222.605469 L 222.167969 223.972656 L 218.675781 225.121094 L 215.117188 226.042969 L 211.503906 226.738281 L 207.859375 227.203125 L 204.1875 227.4375 L 200.511719 227.4375 L 196.84375 227.203125 L 193.195312 226.738281 L 189.585938 226.042969 L 186.027344 225.121094 L 182.53125 223.972656 L 179.121094 222.605469 L 175.800781 221.027344 L 172.585938 219.238281 L 169.492188 217.25 L 166.53125 215.070312 L 163.714844 212.707031 L 161.054688 210.171875 L 158.558594 207.46875 L 156.242188 204.617188 L 154.109375 201.621094 L 152.171875 198.496094 L 150.433594 195.253906 L 148.90625 191.910156 L 147.59375 188.476562 L 146.503906 184.964844 L 145.636719 181.390625 L 144.996094 177.769531 L 144.589844 174.117188 L 144.414062 170.445312 L 144.472656 166.769531 L 144.765625 163.101562 L 145.289062 159.464844 L 146.042969 155.863281 L 147.019531 152.320312 L 148.222656 148.847656 L 149.644531 145.453125 L 151.277344 142.160156 L 153.113281 138.976562 L 155.152344 135.914062 L 157.378906 132.988281 L 159.785156 130.210938 L 162.367188 127.589844 L 165.105469 125.136719 L 167.996094 122.867188 L 171.023438 120.78125 L 174.179688 118.890625 L 177.445312 117.207031 L 180.816406 115.734375 L 184.269531 114.476562 L 187.796875 113.441406 L 191.382812 112.628906 L 195.015625 112.046875 L 198.675781 111.699219 L 202.351562 111.582031 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 202.351562 85.714844 L 207.664062 85.882812 L 212.960938 86.390625 L 218.210938 87.230469 L 223.398438 88.402344 L 228.5 89.898438 L 233.5 91.71875 L 238.371094 93.851562 L 243.097656 96.289062 L 247.660156 99.019531 L 252.042969 102.035156 L 256.222656 105.324219 L 260.183594 108.867188 L 263.917969 112.660156 L 267.398438 116.679688 L 270.621094 120.910156 L 273.566406 125.339844 L 276.222656 129.945312 L 278.585938 134.710938 L 280.640625 139.613281 L 282.378906 144.640625 L 283.796875 149.765625 L 284.886719 154.972656 L 285.644531 160.234375 L 286.066406 165.535156 L 286.148438 170.855469 L 285.894531 176.167969 L 285.308594 181.453125 L 284.382812 186.691406 L 283.128906 191.859375 L 281.550781 196.9375 L 279.652344 201.90625 L 277.441406 206.742188 L 274.929688 211.429688 L 272.128906 215.949219 L 269.042969 220.28125 L 265.6875 224.410156 L 262.082031 228.316406 L 258.230469 231.984375 L 254.15625 235.402344 L 249.875 238.558594 L 245.402344 241.433594 L 240.753906 244.019531 L 235.953125 246.304688 L 231.015625 248.28125 L 225.960938 249.941406 L 220.8125 251.273438 L 215.59375 252.28125 L 210.316406 252.953125 L 205.007812 253.292969 L 199.691406 253.292969 L 194.382812 252.953125 L 189.109375 252.28125 L 183.886719 251.273438 L 178.738281 249.941406 L 173.6875 248.28125 L 168.75 246.304688 L 163.945312 244.019531 L 159.300781 241.433594 L 154.824219 238.558594 L 150.542969 235.402344 L 146.46875 231.984375 L 142.621094 228.316406 L 139.011719 224.410156 L 135.65625 220.28125 L 132.574219 215.949219 L 129.769531 211.429688 L 127.257812 206.742188 L 125.046875 201.90625 L 123.148438 196.9375 L 121.570312 191.859375 L 120.316406 186.691406 L 119.394531 181.453125 L 118.804688 176.167969 L 118.550781 170.855469 L 118.636719 165.535156 L 119.058594 160.234375 L 119.8125 154.972656 L 120.902344 149.765625 L 122.320312 144.640625 L 124.058594 139.613281 L 126.113281 134.710938 L 128.476562 129.945312 L 131.136719 125.339844 L 134.082031 120.910156 L 137.300781 116.679688 L 140.785156 112.660156 L 144.515625 108.867188 L 148.476562 105.324219 L 152.660156 102.035156 L 157.039062 99.019531 L 161.601562 96.289062 L 166.328125 93.851562 L 171.203125 91.71875 L 176.199219 89.898438 L 181.300781 88.402344 L 186.488281 87.230469 L 191.742188 86.390625 L 197.035156 85.882812 L 202.351562 85.714844 "/>
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 202.351562 169.523438 L 202.351562 95.027344 L 199.765625 95.070312 L 197.1875 95.207031 L 194.613281 95.429688 L 192.046875 95.742188 L 189.496094 96.144531 L 186.960938 96.632812 L 184.441406 97.210938 L 181.945312 97.875 L 179.472656 98.628906 L 177.027344 99.464844 L 174.613281 100.382812 L 172.230469 101.386719 L 169.886719 102.472656 L 167.582031 103.636719 L 165.316406 104.882812 L 163.097656 106.207031 L 160.925781 107.605469 L 158.804688 109.078125 L 156.734375 110.625 L 154.71875 112.242188 L 152.761719 113.929688 L 150.863281 115.683594 L 149.027344 117.5 L 147.257812 119.378906 L 145.550781 121.320312 L 143.914062 123.320312 L 142.347656 125.375 L 140.851562 127.480469 L 139.429688 129.636719 L 138.085938 131.84375 L 136.816406 134.09375 L 135.628906 136.390625 L 134.519531 138.722656 L 133.492188 141.09375 L 132.546875 143.496094 L 137.359375 145.292969 L 139.769531 146.191406 L 142.175781 147.085938 L 149.394531 149.78125 L 151.804688 150.679688 L 154.210938 151.574219 L 161.429688 154.269531 L 163.839844 155.164062 L 171.058594 157.859375 L 173.464844 158.753906 L 175.875 159.652344 L 180.6875 161.449219 L 183.09375 162.34375 L 185.5 163.242188 L 187.910156 164.140625 L 190.316406 165.039062 L 192.722656 165.933594 L 199.941406 168.628906 Z M 202.351562 169.523438 "/>
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 202.351562 169.523438 L 199.941406 168.628906 L 192.722656 165.933594 L 190.316406 165.039062 L 187.910156 164.140625 L 185.5 163.242188 L 183.09375 162.34375 L 180.6875 161.449219 L 175.875 159.652344 L 173.464844 158.753906 L 171.058594 157.859375 L 163.839844 155.164062 L 161.429688 154.269531 L 154.210938 151.574219 L 151.804688 150.679688 L 149.394531 149.78125 L 142.175781 147.085938 L 139.769531 146.191406 L 137.359375 145.292969 L 132.546875 143.496094 L 131.695312 145.902344 L 130.929688 148.335938 L 130.246094 150.792969 L 129.648438 153.273438 L 129.132812 155.773438 L 128.703125 158.289062 L 128.363281 160.816406 L 128.109375 163.355469 L 127.941406 165.902344 L 127.859375 168.453125 L 127.867188 171.003906 L 127.960938 173.554688 L 128.144531 176.097656 L 128.410156 178.636719 L 128.765625 181.164062 L 129.207031 183.675781 L 129.738281 186.171875 L 130.347656 188.648438 L 131.046875 191.101562 L 131.828125 193.53125 L 132.691406 195.933594 L 133.636719 198.300781 L 134.660156 200.636719 L 135.765625 202.9375 L 136.949219 205.199219 L 138.210938 207.417969 L 139.542969 209.589844 L 140.953125 211.71875 L 142.433594 213.796875 L 143.984375 215.820312 L 145.605469 217.792969 L 147.292969 219.707031 L 149.042969 221.5625 L 150.855469 223.359375 L 152.730469 225.089844 L 154.660156 226.757812 L 156.648438 228.355469 L 158.691406 229.886719 L 160.78125 231.347656 L 162.921875 232.734375 L 165.109375 234.046875 L 167.34375 235.285156 L 169.613281 236.445312 L 171.925781 237.527344 L 174.273438 238.527344 L 176.652344 239.449219 L 179.0625 240.289062 L 181.496094 241.042969 L 183.960938 241.714844 L 186.441406 242.304688 L 188.945312 242.804688 L 191.460938 243.222656 L 193.992188 243.550781 L 196.53125 243.792969 L 199.078125 243.949219 L 201.628906 244.019531 L 204.179688 244 L 206.726562 243.894531 L 209.273438 243.699219 L 211.808594 243.417969 L 214.332031 243.050781 L 216.84375 242.597656 L 219.335938 242.058594 L 221.8125 241.433594 L 224.261719 240.726562 L 226.6875 239.933594 L 229.085938 239.058594 L 231.449219 238.105469 L 233.78125 237.066406 L 236.074219 235.953125 L 238.332031 234.757812 L 240.542969 233.488281 L 242.710938 232.140625 L 244.832031 230.722656 L 246.902344 229.230469 L 245.367188 227.171875 L 243.828125 225.113281 L 239.222656 218.9375 L 237.683594 216.878906 L 234.613281 212.761719 L 233.074219 210.703125 L 228.46875 204.527344 L 226.929688 202.46875 L 225.394531 200.40625 L 223.859375 198.347656 L 222.320312 196.289062 L 217.714844 190.113281 L 216.175781 188.054688 L 213.105469 183.9375 L 211.566406 181.878906 L 206.960938 175.703125 L 205.421875 173.644531 L 203.886719 171.582031 Z M 202.351562 169.523438 "/>
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 202.351562 169.523438 L 203.886719 171.582031 L 205.421875 173.644531 L 206.960938 175.703125 L 211.566406 181.878906 L 213.105469 183.9375 L 216.175781 188.054688 L 217.714844 190.113281 L 222.320312 196.289062 L 223.859375 198.347656 L 225.394531 200.40625 L 226.929688 202.46875 L 228.46875 204.527344 L 233.074219 210.703125 L 234.613281 212.761719 L 237.683594 216.878906 L 239.222656 218.9375 L 243.828125 225.113281 L 245.367188 227.171875 L 246.902344 229.230469 L 249.019531 227.59375 L 251.074219 225.878906 L 253.066406 224.09375 L 254.992188 222.238281 L 256.851562 220.3125 L 258.640625 218.324219 L 260.355469 216.273438 L 261.996094 214.160156 L 263.5625 211.988281 L 265.046875 209.761719 L 262.882812 208.375 L 258.5625 205.601562 L 256.398438 204.210938 L 254.238281 202.824219 L 252.074219 201.4375 L 249.914062 200.050781 L 247.75 198.664062 L 245.589844 197.273438 L 243.425781 195.886719 L 241.265625 194.5 L 239.101562 193.113281 L 236.941406 191.726562 L 234.78125 190.335938 L 232.617188 188.949219 L 230.457031 187.5625 L 228.292969 186.175781 L 226.132812 184.789062 L 223.96875 183.398438 L 221.808594 182.011719 L 219.644531 180.625 L 217.484375 179.238281 L 215.320312 177.851562 L 213.160156 176.460938 L 210.996094 175.074219 L 206.675781 172.300781 L 204.511719 170.914062 Z M 202.351562 169.523438 "/>
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 202.351562 169.523438 L 204.511719 170.914062 L 206.675781 172.300781 L 210.996094 175.074219 L 213.160156 176.460938 L 215.320312 177.851562 L 217.484375 179.238281 L 219.644531 180.625 L 221.808594 182.011719 L 223.96875 183.398438 L 226.132812 184.789062 L 228.292969 186.175781 L 230.457031 187.5625 L 232.617188 188.949219 L 234.78125 190.335938 L 236.941406 191.726562 L 239.101562 193.113281 L 241.265625 194.5 L 243.425781 195.886719 L 245.589844 197.273438 L 247.75 198.664062 L 249.914062 200.050781 L 252.074219 201.4375 L 254.238281 202.824219 L 256.398438 204.210938 L 258.5625 205.601562 L 262.882812 208.375 L 265.046875 209.761719 L 266.378906 207.609375 L 267.636719 205.410156 L 268.816406 203.171875 L 269.921875 200.894531 L 270.949219 198.578125 L 271.894531 196.230469 L 272.765625 193.851562 L 273.550781 191.445312 L 274.253906 189.011719 L 274.875 186.558594 L 275.410156 184.082031 L 275.863281 181.59375 L 276.230469 179.085938 L 276.515625 176.570312 L 276.710938 174.046875 L 276.820312 171.515625 L 276.847656 168.984375 L 276.785156 166.453125 L 276.636719 163.925781 L 276.402344 161.402344 L 276.085938 158.890625 L 260.828125 161.09375 L 258.285156 161.457031 L 255.746094 161.824219 L 243.03125 163.660156 L 240.488281 164.023438 L 232.859375 165.125 L 230.320312 165.492188 L 225.234375 166.226562 L 222.691406 166.589844 L 207.433594 168.792969 L 204.894531 169.160156 Z M 202.351562 169.523438 "/>
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 202.351562 169.523438 L 204.894531 169.160156 L 207.433594 168.792969 L 222.691406 166.589844 L 225.234375 166.226562 L 230.320312 165.492188 L 232.859375 165.125 L 240.488281 164.023438 L 243.03125 163.660156 L 255.746094 161.824219 L 258.285156 161.457031 L 260.828125 161.09375 L 276.085938 158.890625 L 275.675781 156.355469 L 275.175781 153.835938 L 274.59375 151.335938 L 273.921875 148.855469 L 273.167969 146.398438 L 272.328125 143.96875 L 271.40625 141.574219 L 270.398438 139.207031 L 269.316406 136.878906 L 268.148438 134.589844 L 266.90625 132.34375 L 265.585938 130.140625 L 264.191406 127.980469 L 262.71875 125.875 L 261.179688 123.820312 L 259.570312 121.816406 L 257.890625 119.875 L 256.144531 117.988281 L 254.335938 116.164062 L 252.464844 114.402344 L 250.535156 112.707031 L 248.546875 111.082031 L 246.503906 109.523438 L 244.410156 108.035156 L 242.265625 106.621094 L 240.070312 105.285156 L 237.832031 104.019531 L 235.554688 102.835938 L 233.234375 101.730469 L 230.878906 100.707031 L 228.488281 99.765625 L 226.070312 98.902344 L 223.621094 98.128906 L 221.144531 97.4375 L 218.648438 96.832031 L 216.132812 96.3125 L 213.601562 95.882812 L 211.054688 95.539062 L 208.496094 95.28125 L 205.933594 95.113281 L 203.367188 95.035156 L 203.332031 97.601562 L 203.261719 102.742188 L 203.226562 105.308594 L 203.191406 107.878906 L 203.15625 110.445312 L 203.121094 113.015625 L 203.085938 115.582031 L 203.015625 120.722656 L 202.980469 123.289062 L 202.945312 125.859375 L 202.910156 128.425781 L 202.875 130.996094 L 202.839844 133.5625 L 202.769531 138.703125 L 202.734375 141.269531 L 202.699219 143.839844 L 202.664062 146.40625 L 202.628906 148.976562 L 202.59375 151.542969 L 202.558594 154.113281 L 202.527344 156.683594 L 202.492188 159.25 L 202.457031 161.820312 L 202.421875 164.386719 L 202.386719 166.957031 Z M 202.351562 169.523438 "/>
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 202.351562 169.523438 L 202.386719 166.957031 L 202.421875 164.386719 L 202.457031 161.820312 L 202.492188 159.25 L 202.527344 156.683594 L 202.558594 154.113281 L 202.59375 151.542969 L 202.628906 148.976562 L 202.664062 146.40625 L 202.699219 143.839844 L 202.734375 141.269531 L 202.769531 138.703125 L 202.839844 133.5625 L 202.875 130.996094 L 202.910156 128.425781 L 202.945312 125.859375 L 202.980469 123.289062 L 203.015625 120.722656 L 203.085938 115.582031 L 203.121094 113.015625 L 203.15625 110.445312 L 203.191406 107.878906 L 203.226562 105.308594 L 203.261719 102.742188 L 203.332031 97.601562 L 203.367188 95.035156 L 202.351562 95.027344 Z M 202.351562 169.523438 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="199.238281" y="89.730469"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="256.976562" y="227.6875"/>
<use xlink:href="#glyph-0-0" x="263.205469" y="227.6875"/>
<use xlink:href="#glyph-0-0" x="269.434375" y="227.6875"/>
</g>
<g clip-path="url(#clip-2)">
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="107.234375" y="187.386719"/>
<use xlink:href="#glyph-0-0" x="113.463281" y="187.386719"/>
<use xlink:href="#glyph-0-0" x="119.692187" y="187.386719"/>
<use xlink:href="#glyph-0-0" x="125.921094" y="187.386719"/>
</g>
</g>
<g clip-path="url(#clip-3)">
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 109.226562 262.648438 L 295.46875 262.648438 L 295.46875 76.40625 L 109.226562 76.40625 Z M 109.226562 262.648438 "/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="81.15625" y="156.988281"/>
<use xlink:href="#glyph-0-3" x="87.385156" y="156.988281"/>
<use xlink:href="#glyph-0-4" x="90.496875" y="156.988281"/>
<use xlink:href="#glyph-0-1" x="96.725781" y="156.988281"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="81.15625" y="136.292969"/>
<use xlink:href="#glyph-0-3" x="87.385156" y="136.292969"/>
<use xlink:href="#glyph-0-0" x="90.496875" y="136.292969"/>
<use xlink:href="#glyph-0-0" x="96.725781" y="136.292969"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="81.15625" y="115.597656"/>
<use xlink:href="#glyph-0-3" x="87.385156" y="115.597656"/>
<use xlink:href="#glyph-0-5" x="90.496875" y="115.597656"/>
<use xlink:href="#glyph-0-1" x="96.725781" y="115.597656"/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 105.742188 152.96875 L 109.226562 152.96875 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 105.742188 132.277344 L 109.226562 132.277344 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 105.742188 111.582031 L 109.226562 111.582031 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="185.226562" y="284.929688"/>
<use xlink:href="#glyph-1-1" x="192.226562" y="284.929688"/>
<use xlink:href="#glyph-1-2" x="200.012695" y="284.929688"/>
<use xlink:href="#glyph-1-3" x="207.798828" y="284.929688"/>
<use xlink:href="#glyph-1-4" x="215.584961" y="284.929688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="74.570312" y="173.023438"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 14.675781 62.457031 L 390.023438 62.457031 L 390.023438 6.976562 L 14.675781 6.976562 Z M 14.675781 62.457031 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-5" x="21.648438" y="39.734375"/>
<use xlink:href="#glyph-1-6" x="31.758789" y="39.734375"/>
<use xlink:href="#glyph-1-7" x="39.544922" y="39.734375"/>
<use xlink:href="#glyph-1-4" x="47.331055" y="39.734375"/>
<use xlink:href="#glyph-1-8" x="51.220703" y="39.734375"/>
<use xlink:href="#glyph-1-6" x="59.006836" y="39.734375"/>
<use xlink:href="#glyph-1-9" x="66.792969" y="39.734375"/>
<use xlink:href="#glyph-1-10" x="71.455078" y="39.734375"/>
<use xlink:href="#glyph-1-4" x="79.241211" y="39.734375"/>
<use xlink:href="#glyph-1-11" x="83.130859" y="39.734375"/>
<use xlink:href="#glyph-1-12" x="90.130859" y="39.734375"/>
<use xlink:href="#glyph-1-6" x="97.916992" y="39.734375"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 112.679688 31.226562 L 129.960938 31.226562 L 129.960938 13.945312 L 112.679688 13.945312 Z M 112.679688 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 113.386719 30.519531 L 129.25 30.519531 L 129.25 14.65625 L 113.386719 14.65625 Z M 113.386719 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 112.679688 55.480469 L 129.960938 55.480469 L 129.960938 38.199219 L 112.679688 38.199219 Z M 112.679688 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 113.386719 54.773438 L 129.25 54.773438 L 129.25 38.910156 L 113.386719 38.910156 Z M 113.386719 54.773438 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 213.636719 31.226562 L 230.917969 31.226562 L 230.917969 13.945312 L 213.636719 13.945312 Z M 213.636719 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 214.347656 30.519531 L 230.210938 30.519531 L 230.210938 14.65625 L 214.347656 14.65625 Z M 214.347656 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 213.636719 55.480469 L 230.917969 55.480469 L 230.917969 38.199219 L 213.636719 38.199219 Z M 213.636719 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 214.347656 54.773438 L 230.210938 54.773438 L 230.210938 38.910156 L 214.347656 38.910156 Z M 214.347656 54.773438 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 277.242188 31.226562 L 294.523438 31.226562 L 294.523438 13.945312 L 277.242188 13.945312 Z M 277.242188 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 277.949219 30.519531 L 293.8125 30.519531 L 293.8125 14.65625 L 277.949219 14.65625 Z M 277.949219 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 277.242188 55.480469 L 294.523438 55.480469 L 294.523438 38.199219 L 277.242188 38.199219 Z M 277.242188 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 277.949219 54.773438 L 293.8125 54.773438 L 293.8125 38.910156 L 277.949219 38.910156 Z M 277.949219 54.773438 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-6" x="136.933594" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="143.1625" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="146.892188" y="26.605469"/>
<use xlink:href="#glyph-0-9" x="153.121094" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="158.721094" y="26.605469"/>
<use xlink:href="#glyph-0-11" x="164.95" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="171.178906" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="174.290625" y="26.605469"/>
<use xlink:href="#glyph-0-14" x="179.890625" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="182.378906" y="26.605469"/>
<use xlink:href="#glyph-0-15" x="188.607812" y="26.605469"/>
<use xlink:href="#glyph-0-16" x="194.836719" y="26.605469"/>
<use xlink:href="#glyph-0-17" x="201.065625" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-13" x="136.933594" y="50.859375"/>
<use xlink:href="#glyph-0-14" x="142.533594" y="50.859375"/>
<use xlink:href="#glyph-0-10" x="145.021875" y="50.859375"/>
<use xlink:href="#glyph-0-18" x="151.250781" y="50.859375"/>
<use xlink:href="#glyph-0-7" x="157.479687" y="50.859375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-13" x="237.890625" y="26.605469"/>
<use xlink:href="#glyph-0-14" x="243.490625" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="245.978906" y="26.605469"/>
<use xlink:href="#glyph-0-15" x="252.207812" y="26.605469"/>
<use xlink:href="#glyph-0-16" x="258.436719" y="26.605469"/>
<use xlink:href="#glyph-0-19" x="264.665625" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-7" x="237.890625" y="50.859375"/>
<use xlink:href="#glyph-0-18" x="241.620313" y="50.859375"/>
<use xlink:href="#glyph-0-20" x="247.849219" y="50.859375"/>
<use xlink:href="#glyph-0-11" x="250.3375" y="50.859375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-17" x="301.496094" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="307.096094" y="26.605469"/>
<use xlink:href="#glyph-0-18" x="312.696094" y="26.605469"/>
<use xlink:href="#glyph-0-21" x="318.925" y="26.605469"/>
<use xlink:href="#glyph-0-21" x="322.036719" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="325.148438" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="331.377344" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="335.107031" y="26.605469"/>
<use xlink:href="#glyph-0-16" x="341.335938" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="347.564844" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="350.676563" y="26.605469"/>
<use xlink:href="#glyph-0-14" x="356.276563" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="358.764844" y="26.605469"/>
<use xlink:href="#glyph-0-15" x="364.99375" y="26.605469"/>
<use xlink:href="#glyph-0-16" x="371.222656" y="26.605469"/>
<use xlink:href="#glyph-0-17" x="377.451563" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-17" x="301.496094" y="50.859375"/>
<use xlink:href="#glyph-0-11" x="307.096094" y="50.859375"/>
<use xlink:href="#glyph-0-8" x="313.325" y="50.859375"/>
<use xlink:href="#glyph-0-22" x="319.553906" y="50.859375"/>
<use xlink:href="#glyph-0-23" x="327.642188" y="50.859375"/>
<use xlink:href="#glyph-0-18" x="330.753906" y="50.859375"/>
<use xlink:href="#glyph-0-14" x="336.982813" y="50.859375"/>
<use xlink:href="#glyph-0-14" x="339.471094" y="50.859375"/>
</g>
</svg>

After

(image error) Size: 60 KiB

Binary file not shown.

After

(image error) Size: 64 KiB

View File

@ -0,0 +1,255 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="259" viewBox="0 0 360 259">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
</g>
<g id="glyph-0-1">
<path d="M 1.390625 -2 C 1.453125 -1.4375 1.710938 -1.046875 2.171875 -0.828125 C 2.398438 -0.722656 2.664062 -0.671875 2.96875 -0.671875 C 3.550781 -0.671875 3.984375 -0.851562 4.265625 -1.21875 C 4.546875 -1.59375 4.6875 -2.007812 4.6875 -2.46875 C 4.6875 -3.007812 4.519531 -3.425781 4.1875 -3.71875 C 3.851562 -4.019531 3.457031 -4.171875 3 -4.171875 C 2.65625 -4.171875 2.359375 -4.101562 2.109375 -3.96875 C 1.867188 -3.84375 1.664062 -3.664062 1.5 -3.4375 L 0.640625 -3.484375 L 1.234375 -7.703125 L 5.3125 -7.703125 L 5.3125 -6.75 L 1.984375 -6.75 L 1.640625 -4.578125 C 1.828125 -4.710938 2.003906 -4.816406 2.171875 -4.890625 C 2.460938 -5.003906 2.796875 -5.0625 3.171875 -5.0625 C 3.890625 -5.0625 4.5 -4.828125 5 -4.359375 C 5.5 -3.898438 5.75 -3.316406 5.75 -2.609375 C 5.75 -1.867188 5.519531 -1.210938 5.0625 -0.640625 C 4.601562 -0.078125 3.875 0.203125 2.875 0.203125 C 2.238281 0.203125 1.675781 0.0234375 1.1875 -0.328125 C 0.695312 -0.691406 0.421875 -1.25 0.359375 -2 Z M 1.390625 -2 "/>
</g>
<g id="glyph-0-2">
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
</g>
<g id="glyph-0-3">
<path d="M 0.953125 -1.1875 L 2.09375 -1.1875 L 2.09375 0 L 0.953125 0 Z M 0.953125 -1.1875 "/>
</g>
<g id="glyph-0-4">
<path d="M 5.859375 -7.703125 L 5.859375 -6.84375 C 5.609375 -6.601562 5.273438 -6.175781 4.859375 -5.5625 C 4.441406 -4.957031 4.070312 -4.304688 3.75 -3.609375 C 3.425781 -2.929688 3.1875 -2.3125 3.03125 -1.75 C 2.914062 -1.382812 2.773438 -0.800781 2.609375 0 L 1.53125 0 C 1.769531 -1.5 2.316406 -2.988281 3.171875 -4.46875 C 3.671875 -5.332031 4.195312 -6.082031 4.75 -6.71875 L 0.40625 -6.71875 L 0.40625 -7.703125 Z M 5.859375 -7.703125 "/>
</g>
<g id="glyph-0-5">
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
</g>
<g id="glyph-0-6">
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
</g>
<g id="glyph-0-7">
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
</g>
<g id="glyph-0-8">
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-9">
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
</g>
<g id="glyph-0-10">
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
</g>
<g id="glyph-0-11">
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-12">
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
</g>
<g id="glyph-0-13">
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
</g>
<g id="glyph-0-14">
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-15">
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
</g>
<g id="glyph-0-16">
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
</g>
<g id="glyph-0-17">
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
</g>
<g id="glyph-0-18">
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
</g>
<g id="glyph-0-19">
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
</g>
<g id="glyph-0-20">
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
</g>
<g id="glyph-0-21">
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-22">
</g>
<g id="glyph-0-23">
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
</g>
<g id="glyph-1-0">
<path d="M 3.71875 -7.53125 C 4.550781 -7.53125 5.222656 -7.328125 5.734375 -6.921875 C 6.253906 -6.523438 6.566406 -5.835938 6.671875 -4.859375 L 5.46875 -4.859375 C 5.394531 -5.304688 5.226562 -5.679688 4.96875 -5.984375 C 4.71875 -6.285156 4.300781 -6.4375 3.71875 -6.4375 C 2.9375 -6.4375 2.378906 -6.050781 2.046875 -5.28125 C 1.828125 -4.789062 1.71875 -4.179688 1.71875 -3.453125 C 1.71875 -2.710938 1.867188 -2.09375 2.171875 -1.59375 C 2.484375 -1.09375 2.972656 -0.84375 3.640625 -0.84375 C 4.148438 -0.84375 4.554688 -1 4.859375 -1.3125 C 5.160156 -1.625 5.363281 -2.050781 5.46875 -2.59375 L 6.671875 -2.59375 C 6.535156 -1.625 6.191406 -0.910156 5.640625 -0.453125 C 5.097656 -0.00390625 4.398438 0.21875 3.546875 0.21875 C 2.585938 0.21875 1.820312 -0.128906 1.25 -0.828125 C 0.6875 -1.535156 0.40625 -2.410156 0.40625 -3.453125 C 0.40625 -4.742188 0.71875 -5.742188 1.34375 -6.453125 C 1.96875 -7.171875 2.757812 -7.53125 3.71875 -7.53125 Z M 3.53125 -7.5 Z M 3.53125 -7.5 "/>
</g>
<g id="glyph-1-1">
<path d="M 3.8125 -0.796875 C 4.625 -0.796875 5.179688 -1.101562 5.484375 -1.71875 C 5.785156 -2.332031 5.9375 -3.019531 5.9375 -3.78125 C 5.9375 -4.46875 5.828125 -5.023438 5.609375 -5.453125 C 5.265625 -6.117188 4.671875 -6.453125 3.828125 -6.453125 C 3.066406 -6.453125 2.515625 -6.164062 2.171875 -5.59375 C 1.835938 -5.019531 1.671875 -4.328125 1.671875 -3.515625 C 1.671875 -2.742188 1.835938 -2.097656 2.171875 -1.578125 C 2.515625 -1.054688 3.0625 -0.796875 3.8125 -0.796875 Z M 3.859375 -7.53125 C 4.796875 -7.53125 5.585938 -7.210938 6.234375 -6.578125 C 6.890625 -5.953125 7.21875 -5.03125 7.21875 -3.8125 C 7.21875 -2.632812 6.929688 -1.660156 6.359375 -0.890625 C 5.785156 -0.117188 4.894531 0.265625 3.6875 0.265625 C 2.6875 0.265625 1.890625 -0.0703125 1.296875 -0.75 C 0.703125 -1.4375 0.40625 -2.351562 0.40625 -3.5 C 0.40625 -4.726562 0.71875 -5.707031 1.34375 -6.4375 C 1.96875 -7.164062 2.804688 -7.53125 3.859375 -7.53125 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-2">
<path d="M 2.140625 -7.328125 L 2.140625 -2.46875 C 2.140625 -2.09375 2.195312 -1.785156 2.3125 -1.546875 C 2.53125 -1.109375 2.9375 -0.890625 3.53125 -0.890625 C 4.382812 -0.890625 4.96875 -1.269531 5.28125 -2.03125 C 5.445312 -2.445312 5.53125 -3.007812 5.53125 -3.71875 L 5.53125 -7.328125 L 6.765625 -7.328125 L 6.765625 0 L 5.609375 0 L 5.625 -1.078125 C 5.457031 -0.796875 5.257812 -0.5625 5.03125 -0.375 C 4.5625 0.0078125 3.988281 0.203125 3.3125 0.203125 C 2.269531 0.203125 1.5625 -0.144531 1.1875 -0.84375 C 0.976562 -1.21875 0.875 -1.71875 0.875 -2.34375 L 0.875 -7.328125 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
</g>
<g id="glyph-1-3">
<path d="M 0.90625 -7.328125 L 2.078125 -7.328125 L 2.078125 -6.28125 C 2.421875 -6.707031 2.785156 -7.015625 3.171875 -7.203125 C 3.554688 -7.390625 3.988281 -7.484375 4.46875 -7.484375 C 5.5 -7.484375 6.195312 -7.125 6.5625 -6.40625 C 6.769531 -6 6.875 -5.429688 6.875 -4.703125 L 6.875 0 L 5.625 0 L 5.625 -4.609375 C 5.625 -5.054688 5.554688 -5.414062 5.421875 -5.6875 C 5.203125 -6.144531 4.804688 -6.375 4.234375 -6.375 C 3.941406 -6.375 3.703125 -6.347656 3.515625 -6.296875 C 3.179688 -6.191406 2.882812 -5.988281 2.625 -5.6875 C 2.414062 -5.445312 2.28125 -5.195312 2.21875 -4.9375 C 2.164062 -4.675781 2.140625 -4.304688 2.140625 -3.828125 L 2.140625 0 L 0.90625 0 Z M 3.796875 -7.5 Z M 3.796875 -7.5 "/>
</g>
<g id="glyph-1-4">
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
</g>
<g id="glyph-2-0">
<path d="M -7.328125 -0.203125 L -7.328125 -1.796875 L -4.75 -3.484375 L -7.328125 -5.1875 L -7.28125 -6.671875 L -3.75 -4.21875 L 0 -6.78125 L 0 -5.21875 L -2.75 -3.390625 L 0 -1.640625 L 0 -0.078125 L -3.75 -2.65625 Z M -7.328125 -0.203125 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 75.554688 0 L 284.445312 0 L 284.445312 259 L 75.554688 259 Z M 75.554688 0 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 127.226562 76.402344 L 277.46875 76.402344 L 277.46875 226.644531 L 127.226562 226.644531 Z M 127.226562 76.402344 "/>
</clipPath>
<clipPath id="clip-2">
<path clip-rule="nonzero" d="M 127.226562 158 L 148 158 L 148 167 L 127.226562 167 Z M 127.226562 158 "/>
</clipPath>
<clipPath id="clip-3">
<path clip-rule="nonzero" d="M 127.226562 76.402344 L 277.46875 76.402344 L 277.46875 226.644531 L 127.226562 226.644531 Z M 127.226562 76.402344 "/>
</clipPath>
</defs>
<rect x="-36" y="-25.9" width="432" height="310.8" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<g clip-path="url(#clip-0)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 75.554688 259 L 284.445312 259 L 284.445312 0 L 75.554688 0 Z M 75.554688 259 "/>
</g>
<g clip-path="url(#clip-1)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 127.226562 226.648438 L 277.46875 226.648438 L 277.46875 76.40625 L 127.226562 76.40625 Z M 127.226562 226.648438 "/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 202.351562 151.523438 L 202.351562 83.914062 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 202.351562 151.523438 L 253.957031 195.207031 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 202.351562 151.523438 L 135.667969 162.691406 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 202.351562 138.171875 L 203.199219 138.195312 L 204.039062 138.277344 L 204.878906 138.410156 L 205.703125 138.597656 L 206.515625 138.835938 L 207.3125 139.125 L 208.089844 139.464844 L 208.84375 139.855469 L 209.570312 140.289062 L 210.269531 140.769531 L 210.933594 141.292969 L 211.566406 141.859375 L 212.160156 142.464844 L 212.714844 143.105469 L 213.230469 143.777344 L 213.699219 144.484375 L 214.121094 145.21875 L 214.5 145.976562 L 214.824219 146.757812 L 215.101562 147.558594 L 215.328125 148.375 L 215.503906 149.207031 L 215.621094 150.042969 L 215.691406 150.890625 L 215.703125 151.738281 L 215.664062 152.582031 L 215.570312 153.425781 L 215.421875 154.261719 L 215.222656 155.082031 L 214.972656 155.894531 L 214.667969 156.683594 L 214.316406 157.457031 L 213.914062 158.203125 L 213.46875 158.921875 L 212.976562 159.613281 L 212.441406 160.269531 L 211.867188 160.894531 L 211.253906 161.476562 L 210.605469 162.023438 L 209.921875 162.523438 L 209.210938 162.984375 L 208.46875 163.394531 L 207.703125 163.757812 L 206.917969 164.074219 L 206.113281 164.339844 L 205.292969 164.550781 L 204.460938 164.710938 L 203.621094 164.820312 L 202.773438 164.875 L 201.925781 164.875 L 201.082031 164.820312 L 200.238281 164.710938 L 199.40625 164.550781 L 198.585938 164.339844 L 197.78125 164.074219 L 196.996094 163.757812 L 196.230469 163.394531 L 195.488281 162.984375 L 194.777344 162.523438 L 194.09375 162.023438 L 193.445312 161.476562 L 192.832031 160.894531 L 192.257812 160.269531 L 191.722656 159.613281 L 191.230469 158.921875 L 190.785156 158.203125 L 190.382812 157.457031 L 190.03125 156.683594 L 189.730469 155.894531 L 189.476562 155.082031 L 189.277344 154.261719 L 189.132812 153.425781 L 189.039062 152.582031 L 188.996094 151.738281 L 189.011719 150.890625 L 189.078125 150.042969 L 189.199219 149.207031 L 189.371094 148.375 L 189.597656 147.558594 L 189.875 146.757812 L 190.203125 145.976562 L 190.578125 145.21875 L 191.003906 144.484375 L 191.472656 143.777344 L 191.984375 143.105469 L 192.539062 142.464844 L 193.132812 141.859375 L 193.765625 141.292969 L 194.433594 140.769531 L 195.128906 140.289062 L 195.855469 139.855469 L 196.609375 139.464844 L 197.386719 139.125 L 198.183594 138.835938 L 198.996094 138.597656 L 199.824219 138.410156 L 200.660156 138.277344 L 201.503906 138.195312 L 202.351562 138.171875 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 202.351562 121.476562 L 204.257812 121.535156 L 206.152344 121.71875 L 208.035156 122.019531 L 209.898438 122.4375 L 211.726562 122.976562 L 213.519531 123.628906 L 215.265625 124.394531 L 216.960938 125.265625 L 218.597656 126.246094 L 220.167969 127.328125 L 221.664062 128.507812 L 223.085938 129.777344 L 224.421875 131.136719 L 225.671875 132.578125 L 226.828125 134.09375 L 227.882812 135.683594 L 228.835938 137.332031 L 229.683594 139.042969 L 230.421875 140.800781 L 231.042969 142.601562 L 231.550781 144.441406 L 231.941406 146.308594 L 232.214844 148.195312 L 232.363281 150.09375 L 232.394531 152 L 232.304688 153.90625 L 232.09375 155.800781 L 231.761719 157.679688 L 231.3125 159.53125 L 230.746094 161.351562 L 230.066406 163.132812 L 229.273438 164.867188 L 228.375 166.550781 L 227.367188 168.167969 L 226.261719 169.722656 L 225.058594 171.203125 L 223.765625 172.601562 L 222.386719 173.917969 L 220.925781 175.144531 L 219.390625 176.273438 L 217.785156 177.304688 L 216.121094 178.234375 L 214.398438 179.054688 L 212.628906 179.761719 L 210.816406 180.355469 L 208.96875 180.835938 L 207.097656 181.195312 L 205.207031 181.4375 L 203.304688 181.558594 L 201.398438 181.558594 L 199.492188 181.4375 L 197.601562 181.195312 L 195.730469 180.835938 L 193.882812 180.355469 L 192.074219 179.761719 L 190.304688 179.054688 L 188.582031 178.234375 L 186.914062 177.304688 L 185.3125 176.273438 L 183.773438 175.144531 L 182.316406 173.917969 L 180.933594 172.601562 L 179.640625 171.203125 L 178.4375 169.722656 L 177.332031 168.167969 L 176.328125 166.550781 L 175.425781 164.867188 L 174.632812 163.132812 L 173.953125 161.351562 L 173.386719 159.53125 L 172.9375 157.679688 L 172.605469 155.800781 L 172.394531 153.90625 L 172.304688 152 L 172.335938 150.09375 L 172.488281 148.195312 L 172.757812 146.308594 L 173.148438 144.441406 L 173.65625 142.601562 L 174.28125 140.800781 L 175.015625 139.042969 L 175.863281 137.332031 L 176.816406 135.683594 L 177.875 134.09375 L 179.027344 132.578125 L 180.277344 131.136719 L 181.613281 129.777344 L 183.035156 128.507812 L 184.535156 127.328125 L 186.105469 126.246094 L 187.742188 125.265625 L 189.433594 124.394531 L 191.183594 123.628906 L 192.972656 122.976562 L 194.804688 122.4375 L 196.664062 122.019531 L 198.546875 121.71875 L 200.445312 121.535156 L 202.351562 121.476562 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 202.351562 104.78125 L 205.316406 104.875 L 208.265625 105.160156 L 211.195312 105.628906 L 214.089844 106.28125 L 216.933594 107.117188 L 219.722656 108.128906 L 222.441406 109.320312 L 225.078125 110.679688 L 227.621094 112.203125 L 230.0625 113.882812 L 232.394531 115.71875 L 234.605469 117.695312 L 236.6875 119.808594 L 238.628906 122.050781 L 240.425781 124.410156 L 242.070312 126.882812 L 243.550781 129.449219 L 244.867188 132.105469 L 246.015625 134.84375 L 246.984375 137.644531 L 247.773438 140.503906 L 248.382812 143.40625 L 248.804688 146.34375 L 249.039062 149.300781 L 249.085938 152.265625 L 248.945312 155.230469 L 248.617188 158.175781 L 248.101562 161.097656 L 247.402344 163.980469 L 246.523438 166.8125 L 245.464844 169.582031 L 244.230469 172.28125 L 242.832031 174.894531 L 241.265625 177.417969 L 239.546875 179.832031 L 237.675781 182.132812 L 235.664062 184.3125 L 233.515625 186.359375 L 231.246094 188.265625 L 228.855469 190.027344 L 226.359375 191.628906 L 223.769531 193.070312 L 221.089844 194.347656 L 218.335938 195.449219 L 215.519531 196.375 L 212.648438 197.117188 L 209.734375 197.679688 L 206.792969 198.054688 L 203.832031 198.242188 L 200.867188 198.242188 L 197.90625 198.054688 L 194.964844 197.679688 L 192.050781 197.117188 L 189.179688 196.375 L 186.363281 195.449219 L 183.609375 194.347656 L 180.929688 193.070312 L 178.339844 191.628906 L 175.84375 190.027344 L 173.457031 188.265625 L 171.183594 186.359375 L 169.039062 184.3125 L 167.023438 182.132812 L 165.15625 179.832031 L 163.433594 177.417969 L 161.871094 174.894531 L 160.46875 172.28125 L 159.238281 169.582031 L 158.179688 166.8125 L 157.296875 163.980469 L 156.597656 161.097656 L 156.082031 158.175781 L 155.753906 155.230469 L 155.613281 152.265625 L 155.660156 149.300781 L 155.894531 146.34375 L 156.316406 143.40625 L 156.925781 140.503906 L 157.714844 137.644531 L 158.6875 134.84375 L 159.832031 132.105469 L 161.148438 129.449219 L 162.632812 126.882812 L 164.273438 124.410156 L 166.070312 122.050781 L 168.011719 119.808594 L 170.09375 117.695312 L 172.304688 115.71875 L 174.636719 113.882812 L 177.078125 112.203125 L 179.625 110.679688 L 182.261719 109.320312 L 184.976562 108.128906 L 187.765625 107.117188 L 190.609375 106.28125 L 193.503906 105.628906 L 196.433594 105.160156 L 199.386719 104.875 L 202.351562 104.78125 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 202.351562 83.914062 L 206.636719 84.050781 L 210.910156 84.460938 L 215.144531 85.136719 L 219.332031 86.082031 L 223.445312 87.289062 L 227.476562 88.757812 L 231.410156 90.476562 L 235.222656 92.445312 L 238.902344 94.648438 L 242.4375 97.082031 L 245.808594 99.734375 L 249.007812 102.59375 L 252.015625 105.652344 L 254.824219 108.894531 L 257.421875 112.308594 L 259.800781 115.878906 L 261.945312 119.59375 L 263.851562 123.4375 L 265.507812 127.394531 L 266.910156 131.449219 L 268.054688 135.585938 L 268.933594 139.785156 L 269.542969 144.03125 L 269.882812 148.308594 L 269.953125 152.597656 L 269.746094 156.882812 L 269.273438 161.148438 L 268.527344 165.371094 L 267.515625 169.542969 L 266.242188 173.636719 L 264.710938 177.644531 L 262.929688 181.546875 L 260.902344 185.328125 L 258.640625 188.976562 L 256.152344 192.46875 L 253.445312 195.800781 L 250.535156 198.953125 L 247.429688 201.910156 L 244.144531 204.667969 L 240.6875 207.214844 L 237.078125 209.53125 L 233.332031 211.617188 L 229.457031 213.460938 L 225.472656 215.058594 L 221.398438 216.394531 L 217.246094 217.472656 L 213.03125 218.285156 L 208.777344 218.828125 L 204.496094 219.101562 L 200.207031 219.101562 L 195.921875 218.828125 L 191.667969 218.285156 L 187.457031 217.472656 L 183.300781 216.394531 L 179.226562 215.058594 L 175.242188 213.460938 L 171.371094 211.617188 L 167.621094 209.53125 L 164.011719 207.214844 L 160.558594 204.667969 L 157.269531 201.910156 L 154.164062 198.953125 L 151.253906 195.800781 L 148.550781 192.46875 L 146.058594 188.976562 L 143.796875 185.328125 L 141.773438 181.546875 L 139.988281 177.644531 L 138.460938 173.636719 L 137.183594 169.542969 L 136.171875 165.371094 L 135.429688 161.148438 L 134.953125 156.882812 L 134.75 152.597656 L 134.816406 148.308594 L 135.15625 144.03125 L 135.769531 139.785156 L 136.644531 135.585938 L 137.789062 131.449219 L 139.191406 127.394531 L 140.851562 123.4375 L 142.753906 119.59375 L 144.902344 115.878906 L 147.277344 112.308594 L 149.875 108.894531 L 152.683594 105.652344 L 155.695312 102.59375 L 158.890625 99.734375 L 162.265625 97.082031 L 165.796875 94.648438 L 169.480469 92.445312 L 173.292969 90.476562 L 177.222656 88.757812 L 181.253906 87.289062 L 185.371094 86.082031 L 189.554688 85.136719 L 193.792969 84.460938 L 198.0625 84.050781 L 202.351562 83.914062 "/>
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 202.351562 151.523438 L 202.351562 91.425781 L 201.53125 91.433594 L 201.558594 93.503906 L 201.585938 95.578125 L 201.617188 97.648438 L 201.644531 99.722656 L 201.671875 101.792969 L 201.699219 103.867188 L 201.726562 105.9375 L 201.757812 108.011719 L 201.785156 110.082031 L 201.8125 112.15625 L 201.839844 114.226562 L 201.871094 116.296875 L 201.898438 118.371094 L 201.925781 120.441406 L 201.953125 122.515625 L 201.984375 124.585938 L 202.011719 126.660156 L 202.039062 128.730469 L 202.066406 130.804688 L 202.097656 132.875 L 202.125 134.949219 L 202.152344 137.019531 L 202.179688 139.09375 L 202.207031 141.164062 L 202.238281 143.238281 L 202.292969 147.378906 L 202.320312 149.453125 Z M 202.351562 151.523438 "/>
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 202.351562 151.523438 L 202.320312 149.453125 L 202.292969 147.378906 L 202.238281 143.238281 L 202.207031 141.164062 L 202.179688 139.09375 L 202.152344 137.019531 L 202.125 134.949219 L 202.097656 132.875 L 202.066406 130.804688 L 202.039062 128.730469 L 202.011719 126.660156 L 201.984375 124.585938 L 201.953125 122.515625 L 201.925781 120.441406 L 201.898438 118.371094 L 201.871094 116.296875 L 201.839844 114.226562 L 201.8125 112.15625 L 201.785156 110.082031 L 201.757812 108.011719 L 201.726562 105.9375 L 201.699219 103.867188 L 201.671875 101.792969 L 201.644531 99.722656 L 201.617188 97.648438 L 201.585938 95.578125 L 201.558594 93.503906 L 201.53125 91.433594 L 199.375 91.5 L 197.21875 91.648438 L 195.074219 91.871094 L 192.933594 92.167969 L 190.808594 92.546875 L 188.699219 93 L 186.605469 93.527344 L 184.535156 94.128906 L 182.484375 94.804688 L 180.460938 95.554688 L 181.96875 99.414062 L 182.726562 101.34375 L 183.480469 103.277344 L 184.988281 107.136719 L 185.746094 109.066406 L 188.007812 114.855469 L 188.765625 116.785156 L 191.78125 124.503906 L 192.539062 126.433594 L 193.292969 128.363281 L 194.046875 130.296875 L 194.800781 132.226562 L 195.558594 134.15625 L 197.820312 139.945312 L 198.578125 141.875 L 201.59375 149.59375 Z M 202.351562 151.523438 "/>
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 202.351562 151.523438 L 201.59375 149.59375 L 198.578125 141.875 L 197.820312 139.945312 L 195.558594 134.15625 L 194.800781 132.226562 L 194.046875 130.296875 L 193.292969 128.363281 L 192.539062 126.433594 L 191.78125 124.503906 L 188.765625 116.785156 L 188.007812 114.855469 L 185.746094 109.066406 L 184.988281 107.136719 L 183.480469 103.277344 L 182.726562 101.34375 L 181.96875 99.414062 L 180.460938 95.554688 L 178.570312 96.332031 L 176.710938 97.171875 L 174.878906 98.074219 L 173.078125 99.039062 L 171.308594 100.0625 L 169.578125 101.148438 L 167.886719 102.292969 L 166.234375 103.492188 L 164.621094 104.746094 L 163.054688 106.054688 L 161.53125 107.417969 L 160.054688 108.828125 L 158.628906 110.292969 L 157.253906 111.800781 L 155.929688 113.355469 L 154.660156 114.957031 L 153.445312 116.597656 L 152.285156 118.28125 L 151.183594 120 L 150.140625 121.757812 L 149.160156 123.550781 L 150.996094 124.515625 L 152.828125 125.480469 L 154.664062 126.445312 L 156.496094 127.410156 L 158.332031 128.371094 L 160.164062 129.335938 L 162 130.300781 L 163.832031 131.265625 L 167.503906 133.195312 L 169.335938 134.160156 L 171.171875 135.125 L 173.003906 136.089844 L 174.839844 137.054688 L 176.671875 138.019531 L 178.507812 138.984375 L 180.339844 139.949219 L 182.175781 140.914062 L 184.007812 141.878906 L 185.84375 142.84375 L 187.675781 143.808594 L 189.511719 144.773438 L 191.34375 145.738281 L 195.015625 147.667969 L 196.847656 148.632812 L 198.683594 149.59375 L 200.515625 150.558594 Z M 202.351562 151.523438 "/>
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 202.351562 151.523438 L 200.515625 150.558594 L 198.683594 149.59375 L 196.847656 148.632812 L 195.015625 147.667969 L 191.34375 145.738281 L 189.511719 144.773438 L 187.675781 143.808594 L 185.84375 142.84375 L 184.007812 141.878906 L 182.175781 140.914062 L 180.339844 139.949219 L 178.507812 138.984375 L 176.671875 138.019531 L 174.839844 137.054688 L 173.003906 136.089844 L 171.171875 135.125 L 169.335938 134.160156 L 167.503906 133.195312 L 163.832031 131.265625 L 162 130.300781 L 160.164062 129.335938 L 158.332031 128.371094 L 156.496094 127.410156 L 154.664062 126.445312 L 152.828125 125.480469 L 150.996094 124.515625 L 149.160156 123.550781 L 148.222656 125.410156 L 147.351562 127.304688 L 146.542969 129.226562 L 145.804688 131.175781 L 145.132812 133.148438 L 144.527344 135.140625 L 143.996094 137.15625 L 143.53125 139.1875 L 143.140625 141.234375 L 142.820312 143.296875 L 142.570312 145.363281 L 142.390625 147.441406 L 142.285156 149.523438 L 142.253906 151.605469 L 142.292969 153.691406 L 142.402344 155.773438 L 142.585938 157.847656 L 142.839844 159.917969 L 143.167969 161.976562 L 143.566406 164.019531 L 144.035156 166.050781 L 144.574219 168.066406 L 145.183594 170.058594 L 145.859375 172.03125 L 146.605469 173.976562 L 147.417969 175.894531 L 148.292969 177.785156 L 149.238281 179.644531 L 150.246094 181.46875 L 151.3125 183.257812 L 152.445312 185.007812 L 153.636719 186.71875 L 154.886719 188.386719 L 156.191406 190.011719 L 157.554688 191.589844 L 159.101562 190.207031 L 160.644531 188.824219 L 162.1875 187.445312 L 163.734375 186.0625 L 165.277344 184.679688 L 166.824219 183.300781 L 168.367188 181.917969 L 169.914062 180.535156 L 171.457031 179.15625 L 173 177.773438 L 174.546875 176.390625 L 176.089844 175.011719 L 177.636719 173.628906 L 179.179688 172.246094 L 180.726562 170.867188 L 183.8125 168.101562 L 185.359375 166.722656 L 186.902344 165.339844 L 188.449219 163.957031 L 189.992188 162.578125 L 191.539062 161.195312 L 193.082031 159.8125 L 194.628906 158.433594 L 197.714844 155.667969 L 199.261719 154.289062 L 200.804688 152.90625 Z M 202.351562 151.523438 "/>
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 202.351562 151.523438 L 200.804688 152.90625 L 199.261719 154.289062 L 197.714844 155.667969 L 194.628906 158.433594 L 193.082031 159.8125 L 191.539062 161.195312 L 189.992188 162.578125 L 188.449219 163.957031 L 186.902344 165.339844 L 185.359375 166.722656 L 183.8125 168.101562 L 180.726562 170.867188 L 179.179688 172.246094 L 177.636719 173.628906 L 176.089844 175.011719 L 174.546875 176.390625 L 173 177.773438 L 171.457031 179.15625 L 169.914062 180.535156 L 168.367188 181.917969 L 166.824219 183.300781 L 165.277344 184.679688 L 163.734375 186.0625 L 162.1875 187.445312 L 160.644531 188.824219 L 159.101562 190.207031 L 157.554688 191.589844 L 158.964844 193.109375 L 160.421875 194.582031 L 161.933594 196 L 163.488281 197.367188 L 165.09375 198.679688 L 166.742188 199.9375 L 168.433594 201.136719 L 170.164062 202.277344 L 171.933594 203.355469 L 173.738281 204.375 L 175.578125 205.328125 L 177.449219 206.21875 L 179.347656 207.046875 L 181.277344 207.804688 L 183.230469 208.5 L 185.203125 209.125 L 187.203125 209.683594 L 189.214844 210.167969 L 191.246094 210.585938 L 193.289062 210.933594 L 195.34375 211.210938 L 197.40625 211.417969 L 199.472656 211.554688 L 201.542969 211.617188 L 203.617188 211.609375 L 205.6875 211.53125 L 207.753906 211.378906 L 209.816406 211.15625 L 211.867188 210.863281 L 213.90625 210.5 L 215.933594 210.066406 L 217.945312 209.5625 L 219.9375 208.992188 L 221.90625 208.351562 L 223.855469 207.644531 L 225.777344 206.867188 L 227.671875 206.027344 L 229.535156 205.121094 L 231.367188 204.152344 L 233.164062 203.121094 L 234.925781 202.027344 L 233.800781 200.285156 L 232.679688 198.546875 L 231.554688 196.804688 L 230.433594 195.0625 L 228.183594 191.578125 L 227.0625 189.835938 L 225.9375 188.097656 L 224.816406 186.355469 L 223.691406 184.613281 L 222.570312 182.871094 L 221.445312 181.128906 L 220.324219 179.390625 L 218.074219 175.90625 L 216.953125 174.164062 L 215.828125 172.421875 L 214.707031 170.679688 L 213.582031 168.941406 L 212.460938 167.199219 L 211.335938 165.457031 L 210.214844 163.714844 L 207.964844 160.230469 L 206.84375 158.492188 L 205.71875 156.75 L 204.597656 155.007812 L 203.472656 153.265625 Z M 202.351562 151.523438 "/>
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 202.351562 151.523438 L 203.472656 153.265625 L 204.597656 155.007812 L 205.71875 156.75 L 206.84375 158.492188 L 207.964844 160.230469 L 210.214844 163.714844 L 211.335938 165.457031 L 212.460938 167.199219 L 213.582031 168.941406 L 214.707031 170.679688 L 215.828125 172.421875 L 216.953125 174.164062 L 218.074219 175.90625 L 220.324219 179.390625 L 221.445312 181.128906 L 222.570312 182.871094 L 223.691406 184.613281 L 224.816406 186.355469 L 225.9375 188.097656 L 227.0625 189.835938 L 228.183594 191.578125 L 230.433594 195.0625 L 231.554688 196.804688 L 232.679688 198.546875 L 233.800781 200.285156 L 234.925781 202.027344 L 236.636719 200.882812 L 238.304688 199.679688 L 239.933594 198.421875 L 241.515625 197.105469 L 243.054688 195.738281 L 244.546875 194.320312 L 245.984375 192.847656 L 247.375 191.332031 L 248.710938 189.765625 L 249.992188 188.15625 L 251.21875 186.503906 L 252.390625 184.808594 L 253.5 183.074219 L 254.550781 181.304688 L 255.539062 179.5 L 256.464844 177.664062 L 257.328125 175.792969 L 258.128906 173.898438 L 258.863281 171.972656 L 259.527344 170.027344 L 260.128906 168.058594 L 260.660156 166.070312 L 261.125 164.0625 L 261.519531 162.042969 L 261.84375 160.011719 L 262.101562 157.96875 L 262.285156 155.921875 L 262.402344 153.863281 L 262.445312 151.808594 L 262.421875 149.75 L 262.324219 147.691406 L 262.160156 145.640625 L 261.921875 143.597656 L 261.617188 141.5625 L 261.238281 139.539062 L 260.796875 137.527344 L 260.28125 135.535156 L 259.699219 133.5625 L 259.050781 131.609375 L 258.335938 129.679688 L 257.554688 127.773438 L 256.710938 125.898438 L 255.800781 124.050781 L 254.828125 122.238281 L 253.792969 120.457031 L 252.699219 118.714844 L 251.546875 117.007812 L 250.335938 115.34375 L 249.070312 113.722656 L 247.746094 112.144531 L 246.371094 110.613281 L 244.945312 109.128906 L 243.46875 107.695312 L 241.945312 106.3125 L 240.371094 104.984375 L 238.757812 103.710938 L 237.097656 102.492188 L 235.398438 101.328125 L 233.660156 100.226562 L 231.886719 99.183594 L 230.074219 98.203125 L 228.234375 97.285156 L 226.359375 96.433594 L 224.460938 95.640625 L 222.535156 94.917969 L 220.582031 94.261719 L 218.613281 93.667969 L 216.621094 93.144531 L 214.613281 92.691406 L 212.589844 92.304688 L 210.558594 91.992188 L 208.515625 91.746094 L 206.464844 91.570312 L 204.40625 91.460938 L 202.351562 91.425781 Z M 202.351562 151.523438 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="199.238281" y="87.933594"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="244.613281" y="199.222656"/>
<use xlink:href="#glyph-0-0" x="250.842187" y="199.222656"/>
<use xlink:href="#glyph-0-0" x="257.071094" y="199.222656"/>
</g>
<g clip-path="url(#clip-2)">
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="123.210938" y="166.710938"/>
<use xlink:href="#glyph-0-0" x="129.439844" y="166.710938"/>
<use xlink:href="#glyph-0-0" x="135.66875" y="166.710938"/>
<use xlink:href="#glyph-0-0" x="141.897656" y="166.710938"/>
</g>
</g>
<g clip-path="url(#clip-3)">
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 127.226562 226.648438 L 277.46875 226.648438 L 277.46875 76.40625 L 127.226562 76.40625 Z M 127.226562 226.648438 "/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="99.15625" y="142.1875"/>
<use xlink:href="#glyph-0-3" x="105.385156" y="142.1875"/>
<use xlink:href="#glyph-0-4" x="108.496875" y="142.1875"/>
<use xlink:href="#glyph-0-1" x="114.725781" y="142.1875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="99.15625" y="125.492188"/>
<use xlink:href="#glyph-0-3" x="105.385156" y="125.492188"/>
<use xlink:href="#glyph-0-0" x="108.496875" y="125.492188"/>
<use xlink:href="#glyph-0-0" x="114.725781" y="125.492188"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="99.15625" y="108.800781"/>
<use xlink:href="#glyph-0-3" x="105.385156" y="108.800781"/>
<use xlink:href="#glyph-0-5" x="108.496875" y="108.800781"/>
<use xlink:href="#glyph-0-1" x="114.725781" y="108.800781"/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 123.742188 138.171875 L 127.226562 138.171875 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 123.742188 121.476562 L 127.226562 121.476562 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 123.742188 104.78125 L 127.226562 104.78125 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="185.226562" y="248.929688"/>
<use xlink:href="#glyph-1-1" x="192.226562" y="248.929688"/>
<use xlink:href="#glyph-1-2" x="200.012695" y="248.929688"/>
<use xlink:href="#glyph-1-3" x="207.798828" y="248.929688"/>
<use xlink:href="#glyph-1-4" x="215.584961" y="248.929688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="92.570312" y="155.023438"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 56.144531 62.457031 L 348.550781 62.457031 L 348.550781 6.976562 L 56.144531 6.976562 Z M 56.144531 62.457031 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 63.121094 31.226562 L 80.402344 31.226562 L 80.402344 13.945312 L 63.121094 13.945312 Z M 63.121094 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 63.828125 30.519531 L 79.691406 30.519531 L 79.691406 14.65625 L 63.828125 14.65625 Z M 63.828125 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 63.121094 55.480469 L 80.402344 55.480469 L 80.402344 38.199219 L 63.121094 38.199219 Z M 63.121094 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 63.828125 54.773438 L 79.691406 54.773438 L 79.691406 38.910156 L 63.828125 38.910156 Z M 63.828125 54.773438 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 134.8125 31.226562 L 152.09375 31.226562 L 152.09375 13.945312 L 134.8125 13.945312 Z M 134.8125 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 135.519531 30.519531 L 151.382812 30.519531 L 151.382812 14.65625 L 135.519531 14.65625 Z M 135.519531 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 134.8125 55.480469 L 152.09375 55.480469 L 152.09375 38.199219 L 134.8125 38.199219 Z M 134.8125 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 135.519531 54.773438 L 151.382812 54.773438 L 151.382812 38.910156 L 135.519531 38.910156 Z M 135.519531 54.773438 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 235.769531 31.226562 L 253.050781 31.226562 L 253.050781 13.945312 L 235.769531 13.945312 Z M 235.769531 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 236.480469 30.519531 L 252.34375 30.519531 L 252.34375 14.65625 L 236.480469 14.65625 Z M 236.480469 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 235.769531 55.480469 L 253.050781 55.480469 L 253.050781 38.199219 L 235.769531 38.199219 Z M 235.769531 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 236.480469 54.773438 L 252.34375 54.773438 L 252.34375 38.910156 L 236.480469 38.910156 Z M 236.480469 54.773438 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-6" x="87.375" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="92.975" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="99.203906" y="26.605469"/>
<use xlink:href="#glyph-0-9" x="105.432812" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="113.521094" y="26.605469"/>
<use xlink:href="#glyph-0-11" x="116.632812" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="122.861719" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="125.35" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-13" x="87.375" y="50.859375"/>
<use xlink:href="#glyph-0-12" x="92.975" y="50.859375"/>
<use xlink:href="#glyph-0-8" x="95.463281" y="50.859375"/>
<use xlink:href="#glyph-0-14" x="101.692187" y="50.859375"/>
<use xlink:href="#glyph-0-15" x="107.921094" y="50.859375"/>
<use xlink:href="#glyph-0-16" x="114.15" y="50.859375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-17" x="159.066406" y="26.605469"/>
<use xlink:href="#glyph-0-11" x="162.796094" y="26.605469"/>
<use xlink:href="#glyph-0-18" x="169.025" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="171.513281" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-19" x="159.066406" y="50.859375"/>
<use xlink:href="#glyph-0-17" x="165.295312" y="50.859375"/>
<use xlink:href="#glyph-0-8" x="169.025" y="50.859375"/>
<use xlink:href="#glyph-0-20" x="175.253906" y="50.859375"/>
<use xlink:href="#glyph-0-21" x="180.853906" y="50.859375"/>
<use xlink:href="#glyph-0-7" x="187.082812" y="50.859375"/>
<use xlink:href="#glyph-0-22" x="193.311719" y="50.859375"/>
<use xlink:href="#glyph-0-13" x="196.423437" y="50.859375"/>
<use xlink:href="#glyph-0-12" x="202.023437" y="50.859375"/>
<use xlink:href="#glyph-0-8" x="204.511719" y="50.859375"/>
<use xlink:href="#glyph-0-14" x="210.740625" y="50.859375"/>
<use xlink:href="#glyph-0-15" x="216.969531" y="50.859375"/>
<use xlink:href="#glyph-0-6" x="223.198437" y="50.859375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-6" x="260.023438" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="265.623438" y="26.605469"/>
<use xlink:href="#glyph-0-11" x="271.223438" y="26.605469"/>
<use xlink:href="#glyph-0-23" x="277.452344" y="26.605469"/>
<use xlink:href="#glyph-0-23" x="280.564063" y="26.605469"/>
<use xlink:href="#glyph-0-21" x="283.675781" y="26.605469"/>
<use xlink:href="#glyph-0-17" x="289.904688" y="26.605469"/>
<use xlink:href="#glyph-0-21" x="293.634375" y="26.605469"/>
<use xlink:href="#glyph-0-15" x="299.863281" y="26.605469"/>
<use xlink:href="#glyph-0-22" x="306.092188" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="309.203906" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="314.803906" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="317.292188" y="26.605469"/>
<use xlink:href="#glyph-0-14" x="323.521094" y="26.605469"/>
<use xlink:href="#glyph-0-15" x="329.75" y="26.605469"/>
<use xlink:href="#glyph-0-6" x="335.978906" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-13" x="260.023438" y="50.859375"/>
<use xlink:href="#glyph-0-12" x="265.623438" y="50.859375"/>
<use xlink:href="#glyph-0-21" x="268.111719" y="50.859375"/>
<use xlink:href="#glyph-0-11" x="274.340625" y="50.859375"/>
<use xlink:href="#glyph-0-17" x="280.569531" y="50.859375"/>
</g>
</svg>

After

(image error) Size: 53 KiB

Binary file not shown.

After

(image error) Size: 100 KiB

View File

@ -0,0 +1,411 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="280" viewBox="0 0 360 280">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
</g>
<g id="glyph-0-1">
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
</g>
<g id="glyph-0-2">
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-3">
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-4">
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
</g>
<g id="glyph-0-5">
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
</g>
<g id="glyph-0-6">
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
</g>
<g id="glyph-0-7">
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
</g>
<g id="glyph-0-8">
</g>
<g id="glyph-0-9">
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-10">
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-11">
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
</g>
<g id="glyph-0-12">
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
</g>
<g id="glyph-0-13">
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
</g>
<g id="glyph-0-14">
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
</g>
<g id="glyph-0-15">
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
</g>
<g id="glyph-0-16">
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
</g>
<g id="glyph-0-17">
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
</g>
<g id="glyph-0-18">
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
</g>
<g id="glyph-0-19">
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
</g>
<g id="glyph-0-20">
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
</g>
<g id="glyph-0-21">
<path d="M 2.90625 0.21875 C 1.976562 0.21875 1.304688 -0.0351562 0.890625 -0.546875 C 0.472656 -1.054688 0.265625 -1.675781 0.265625 -2.40625 L 1.296875 -2.40625 C 1.335938 -1.894531 1.429688 -1.523438 1.578125 -1.296875 C 1.835938 -0.890625 2.300781 -0.6875 2.96875 -0.6875 C 3.476562 -0.6875 3.890625 -0.820312 4.203125 -1.09375 C 4.523438 -1.375 4.6875 -1.734375 4.6875 -2.171875 C 4.6875 -2.710938 4.519531 -3.085938 4.1875 -3.296875 C 3.851562 -3.515625 3.394531 -3.625 2.8125 -3.625 C 2.75 -3.625 2.679688 -3.625 2.609375 -3.625 C 2.546875 -3.625 2.476562 -3.617188 2.40625 -3.609375 L 2.40625 -4.484375 C 2.507812 -4.472656 2.59375 -4.460938 2.65625 -4.453125 C 2.726562 -4.453125 2.804688 -4.453125 2.890625 -4.453125 C 3.253906 -4.453125 3.554688 -4.515625 3.796875 -4.640625 C 4.210938 -4.835938 4.421875 -5.203125 4.421875 -5.734375 C 4.421875 -6.117188 4.28125 -6.414062 4 -6.625 C 3.726562 -6.84375 3.40625 -6.953125 3.03125 -6.953125 C 2.375 -6.953125 1.921875 -6.734375 1.671875 -6.296875 C 1.535156 -6.054688 1.457031 -5.710938 1.4375 -5.265625 L 0.46875 -5.265625 C 0.46875 -5.847656 0.582031 -6.34375 0.8125 -6.75 C 1.21875 -7.476562 1.925781 -7.84375 2.9375 -7.84375 C 3.726562 -7.84375 4.34375 -7.664062 4.78125 -7.3125 C 5.21875 -6.957031 5.4375 -6.441406 5.4375 -5.765625 C 5.4375 -5.285156 5.304688 -4.894531 5.046875 -4.59375 C 4.890625 -4.40625 4.6875 -4.257812 4.4375 -4.15625 C 4.84375 -4.039062 5.160156 -3.820312 5.390625 -3.5 C 5.628906 -3.175781 5.75 -2.78125 5.75 -2.3125 C 5.75 -1.570312 5.5 -0.960938 5 -0.484375 C 4.507812 -0.015625 3.8125 0.21875 2.90625 0.21875 Z M 2.90625 0.21875 "/>
</g>
<g id="glyph-0-22">
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
</g>
<g id="glyph-0-23">
<path d="M 1.390625 -2 C 1.453125 -1.4375 1.710938 -1.046875 2.171875 -0.828125 C 2.398438 -0.722656 2.664062 -0.671875 2.96875 -0.671875 C 3.550781 -0.671875 3.984375 -0.851562 4.265625 -1.21875 C 4.546875 -1.59375 4.6875 -2.007812 4.6875 -2.46875 C 4.6875 -3.007812 4.519531 -3.425781 4.1875 -3.71875 C 3.851562 -4.019531 3.457031 -4.171875 3 -4.171875 C 2.65625 -4.171875 2.359375 -4.101562 2.109375 -3.96875 C 1.867188 -3.84375 1.664062 -3.664062 1.5 -3.4375 L 0.640625 -3.484375 L 1.234375 -7.703125 L 5.3125 -7.703125 L 5.3125 -6.75 L 1.984375 -6.75 L 1.640625 -4.578125 C 1.828125 -4.710938 2.003906 -4.816406 2.171875 -4.890625 C 2.460938 -5.003906 2.796875 -5.0625 3.171875 -5.0625 C 3.890625 -5.0625 4.5 -4.828125 5 -4.359375 C 5.5 -3.898438 5.75 -3.316406 5.75 -2.609375 C 5.75 -1.867188 5.519531 -1.210938 5.0625 -0.640625 C 4.601562 -0.078125 3.875 0.203125 2.875 0.203125 C 2.238281 0.203125 1.675781 0.0234375 1.1875 -0.328125 C 0.695312 -0.691406 0.421875 -1.25 0.359375 -2 Z M 1.390625 -2 "/>
</g>
<g id="glyph-1-0">
<path d="M 1.203125 -8.4375 C 1.222656 -8.945312 1.316406 -9.320312 1.484375 -9.5625 C 1.765625 -9.976562 2.316406 -10.1875 3.140625 -10.1875 C 3.210938 -10.1875 3.289062 -10.179688 3.375 -10.171875 C 3.457031 -10.171875 3.550781 -10.164062 3.65625 -10.15625 L 3.65625 -9.03125 C 3.53125 -9.039062 3.4375 -9.046875 3.375 -9.046875 C 3.320312 -9.054688 3.269531 -9.0625 3.21875 -9.0625 C 2.84375 -9.0625 2.617188 -8.960938 2.546875 -8.765625 C 2.472656 -8.578125 2.4375 -8.082031 2.4375 -7.28125 L 3.65625 -7.28125 L 3.65625 -6.3125 L 2.421875 -6.3125 L 2.421875 0 L 1.203125 0 L 1.203125 -6.3125 L 0.1875 -6.3125 L 0.1875 -7.28125 L 1.203125 -7.28125 Z M 1.203125 -8.4375 "/>
</g>
<g id="glyph-1-1">
<path d="M 3.71875 -7.53125 C 4.550781 -7.53125 5.222656 -7.328125 5.734375 -6.921875 C 6.253906 -6.523438 6.566406 -5.835938 6.671875 -4.859375 L 5.46875 -4.859375 C 5.394531 -5.304688 5.226562 -5.679688 4.96875 -5.984375 C 4.71875 -6.285156 4.300781 -6.4375 3.71875 -6.4375 C 2.9375 -6.4375 2.378906 -6.050781 2.046875 -5.28125 C 1.828125 -4.789062 1.71875 -4.179688 1.71875 -3.453125 C 1.71875 -2.710938 1.867188 -2.09375 2.171875 -1.59375 C 2.484375 -1.09375 2.972656 -0.84375 3.640625 -0.84375 C 4.148438 -0.84375 4.554688 -1 4.859375 -1.3125 C 5.160156 -1.625 5.363281 -2.050781 5.46875 -2.59375 L 6.671875 -2.59375 C 6.535156 -1.625 6.191406 -0.910156 5.640625 -0.453125 C 5.097656 -0.00390625 4.398438 0.21875 3.546875 0.21875 C 2.585938 0.21875 1.820312 -0.128906 1.25 -0.828125 C 0.6875 -1.535156 0.40625 -2.410156 0.40625 -3.453125 C 0.40625 -4.742188 0.71875 -5.742188 1.34375 -6.453125 C 1.96875 -7.171875 2.757812 -7.53125 3.71875 -7.53125 Z M 3.53125 -7.5 Z M 3.53125 -7.5 "/>
</g>
<g id="glyph-1-2">
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
</g>
<g id="glyph-1-3">
<path d="M 0 1.75 L 0 1.0625 L 7.78125 1.0625 L 7.78125 1.75 Z M 0 1.75 "/>
</g>
<g id="glyph-1-4">
<path d="M 0.90625 -7.28125 L 2.15625 -7.28125 L 2.15625 0 L 0.90625 0 Z M 0.90625 -10.046875 L 2.15625 -10.046875 L 2.15625 -8.640625 L 0.90625 -8.640625 Z M 0.90625 -10.046875 "/>
</g>
<g id="glyph-1-5">
<path d="M 0.90625 -7.328125 L 2.078125 -7.328125 L 2.078125 -6.28125 C 2.421875 -6.707031 2.785156 -7.015625 3.171875 -7.203125 C 3.554688 -7.390625 3.988281 -7.484375 4.46875 -7.484375 C 5.5 -7.484375 6.195312 -7.125 6.5625 -6.40625 C 6.769531 -6 6.875 -5.429688 6.875 -4.703125 L 6.875 0 L 5.625 0 L 5.625 -4.609375 C 5.625 -5.054688 5.554688 -5.414062 5.421875 -5.6875 C 5.203125 -6.144531 4.804688 -6.375 4.234375 -6.375 C 3.941406 -6.375 3.703125 -6.347656 3.515625 -6.296875 C 3.179688 -6.191406 2.882812 -5.988281 2.625 -5.6875 C 2.414062 -5.445312 2.28125 -5.195312 2.21875 -4.9375 C 2.164062 -4.675781 2.140625 -4.304688 2.140625 -3.828125 L 2.140625 0 L 0.90625 0 Z M 3.796875 -7.5 Z M 3.796875 -7.5 "/>
</g>
<g id="glyph-1-6">
<path d="M 0.9375 -7.328125 L 2.109375 -7.328125 L 2.109375 -6.0625 C 2.203125 -6.300781 2.4375 -6.597656 2.8125 -6.953125 C 3.1875 -7.304688 3.617188 -7.484375 4.109375 -7.484375 C 4.128906 -7.484375 4.164062 -7.476562 4.21875 -7.46875 C 4.269531 -7.46875 4.363281 -7.460938 4.5 -7.453125 L 4.5 -6.15625 C 4.425781 -6.164062 4.359375 -6.171875 4.296875 -6.171875 C 4.234375 -6.179688 4.164062 -6.1875 4.09375 -6.1875 C 3.476562 -6.1875 3.003906 -5.984375 2.671875 -5.578125 C 2.335938 -5.179688 2.171875 -4.726562 2.171875 -4.21875 L 2.171875 0 L 0.9375 0 Z M 0.9375 -7.328125 "/>
</g>
<g id="glyph-1-7">
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
</g>
<g id="glyph-1-8">
<path d="M 1.703125 -3.5625 C 1.703125 -2.925781 1.789062 -2.394531 1.96875 -1.96875 C 2.28125 -1.207031 2.84375 -0.828125 3.65625 -0.828125 C 4.507812 -0.828125 5.097656 -1.226562 5.421875 -2.03125 C 5.597656 -2.46875 5.6875 -3.03125 5.6875 -3.71875 C 5.6875 -4.351562 5.585938 -4.882812 5.390625 -5.3125 C 5.054688 -6.039062 4.472656 -6.40625 3.640625 -6.40625 C 3.109375 -6.40625 2.648438 -6.171875 2.265625 -5.703125 C 1.890625 -5.242188 1.703125 -4.53125 1.703125 -3.5625 Z M 3.515625 -7.484375 C 4.117188 -7.484375 4.628906 -7.332031 5.046875 -7.03125 C 5.273438 -6.863281 5.492188 -6.617188 5.703125 -6.296875 L 5.703125 -7.328125 L 6.875 -7.328125 L 6.875 2.921875 L 5.640625 2.921875 L 5.640625 -0.84375 C 5.429688 -0.507812 5.144531 -0.242188 4.78125 -0.046875 C 4.414062 0.140625 3.960938 0.234375 3.421875 0.234375 C 2.640625 0.234375 1.941406 -0.0664062 1.328125 -0.671875 C 0.710938 -1.285156 0.40625 -2.21875 0.40625 -3.46875 C 0.40625 -4.644531 0.691406 -5.609375 1.265625 -6.359375 C 1.847656 -7.109375 2.597656 -7.484375 3.515625 -7.484375 Z M 3.515625 -7.484375 "/>
</g>
<g id="glyph-1-9">
<path d="M 4.140625 -10.203125 C 3.421875 -8.816406 2.957031 -7.796875 2.75 -7.140625 C 2.425781 -6.140625 2.265625 -4.984375 2.265625 -3.671875 C 2.265625 -2.359375 2.445312 -1.15625 2.8125 -0.0625 C 3.039062 0.613281 3.488281 1.585938 4.15625 2.859375 L 3.34375 2.859375 C 2.675781 1.816406 2.257812 1.148438 2.09375 0.859375 C 1.9375 0.578125 1.765625 0.191406 1.578125 -0.296875 C 1.328125 -0.972656 1.148438 -1.695312 1.046875 -2.46875 C 0.992188 -2.863281 0.96875 -3.238281 0.96875 -3.59375 C 0.96875 -4.945312 1.179688 -6.148438 1.609375 -7.203125 C 1.878906 -7.867188 2.4375 -8.867188 3.28125 -10.203125 Z M 4.140625 -10.203125 "/>
</g>
<g id="glyph-1-10">
<path d="M 1.46875 -7.328125 L 2.875 -1.546875 L 4.3125 -7.328125 L 5.6875 -7.328125 L 7.125 -1.59375 L 8.625 -7.328125 L 9.84375 -7.328125 L 7.71875 0 L 6.453125 0 L 4.953125 -5.671875 L 3.515625 0 L 2.234375 0 L 0.125 -7.328125 Z M 1.46875 -7.328125 "/>
</g>
<g id="glyph-1-11">
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-12">
<path d="M 0.90625 -10.078125 L 2.140625 -10.078125 L 2.140625 -6.328125 C 2.429688 -6.703125 2.691406 -6.960938 2.921875 -7.109375 C 3.316406 -7.367188 3.8125 -7.5 4.40625 -7.5 C 5.46875 -7.5 6.1875 -7.128906 6.5625 -6.390625 C 6.769531 -5.984375 6.875 -5.421875 6.875 -4.703125 L 6.875 0 L 5.609375 0 L 5.609375 -4.609375 C 5.609375 -5.148438 5.539062 -5.546875 5.40625 -5.796875 C 5.175781 -6.203125 4.753906 -6.40625 4.140625 -6.40625 C 3.628906 -6.40625 3.164062 -6.226562 2.75 -5.875 C 2.34375 -5.519531 2.140625 -4.859375 2.140625 -3.890625 L 2.140625 0 L 0.90625 0 Z M 0.90625 -10.078125 "/>
</g>
<g id="glyph-1-13">
<path d="M 5.46875 -7.328125 L 6.84375 -7.328125 C 6.664062 -6.859375 6.28125 -5.785156 5.6875 -4.109375 C 5.238281 -2.847656 4.863281 -1.820312 4.5625 -1.03125 C 3.851562 0.832031 3.351562 1.96875 3.0625 2.375 C 2.769531 2.789062 2.265625 3 1.546875 3 C 1.378906 3 1.25 2.988281 1.15625 2.96875 C 1.0625 2.957031 0.945312 2.9375 0.8125 2.90625 L 0.8125 1.78125 C 1.019531 1.84375 1.171875 1.878906 1.265625 1.890625 C 1.367188 1.910156 1.457031 1.921875 1.53125 1.921875 C 1.75 1.921875 1.910156 1.878906 2.015625 1.796875 C 2.128906 1.722656 2.222656 1.632812 2.296875 1.53125 C 2.316406 1.488281 2.394531 1.296875 2.53125 0.953125 C 2.675781 0.617188 2.78125 0.375 2.84375 0.21875 L 0.140625 -7.328125 L 1.53125 -7.328125 L 3.5 -1.359375 Z M 3.5 -7.5 Z M 3.5 -7.5 "/>
</g>
<g id="glyph-1-14">
<path d="M 4 -0.828125 C 4.570312 -0.828125 5.046875 -1.066406 5.421875 -1.546875 C 5.804688 -2.023438 6 -2.742188 6 -3.703125 C 6 -4.285156 5.914062 -4.785156 5.75 -5.203125 C 5.425781 -6.015625 4.84375 -6.421875 4 -6.421875 C 3.144531 -6.421875 2.5625 -5.992188 2.25 -5.140625 C 2.070312 -4.679688 1.984375 -4.101562 1.984375 -3.40625 C 1.984375 -2.84375 2.070312 -2.363281 2.25 -1.96875 C 2.5625 -1.207031 3.144531 -0.828125 4 -0.828125 Z M 0.8125 -7.28125 L 2 -7.28125 L 2 -6.3125 C 2.25 -6.644531 2.519531 -6.90625 2.8125 -7.09375 C 3.226562 -7.363281 3.710938 -7.5 4.265625 -7.5 C 5.097656 -7.5 5.800781 -7.179688 6.375 -6.546875 C 6.957031 -5.910156 7.25 -5.003906 7.25 -3.828125 C 7.25 -2.222656 6.832031 -1.082031 6 -0.40625 C 5.46875 0.0273438 4.851562 0.25 4.15625 0.25 C 3.601562 0.25 3.140625 0.128906 2.765625 -0.109375 C 2.546875 -0.253906 2.300781 -0.492188 2.03125 -0.828125 L 2.03125 2.921875 L 0.8125 2.921875 Z M 0.8125 -7.28125 "/>
</g>
<g id="glyph-1-15">
<path d="M 0.484375 2.859375 C 1.210938 1.441406 1.679688 0.410156 1.890625 -0.234375 C 2.203125 -1.210938 2.359375 -2.359375 2.359375 -3.671875 C 2.359375 -4.992188 2.175781 -6.203125 1.8125 -7.296875 C 1.582031 -7.972656 1.132812 -8.941406 0.46875 -10.203125 L 1.296875 -10.203125 C 1.992188 -9.085938 2.414062 -8.394531 2.5625 -8.125 C 2.71875 -7.863281 2.878906 -7.503906 3.046875 -7.046875 C 3.265625 -6.472656 3.421875 -5.910156 3.515625 -5.359375 C 3.609375 -4.804688 3.65625 -4.269531 3.65625 -3.75 C 3.65625 -2.40625 3.441406 -1.203125 3.015625 -0.140625 C 2.742188 0.535156 2.1875 1.535156 1.34375 2.859375 Z M 0.484375 2.859375 "/>
</g>
<g id="glyph-2-0">
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
</g>
<g id="glyph-2-1">
<path d="M -0.796875 -3.8125 C -0.796875 -4.625 -1.101562 -5.179688 -1.71875 -5.484375 C -2.332031 -5.785156 -3.019531 -5.9375 -3.78125 -5.9375 C -4.46875 -5.9375 -5.023438 -5.828125 -5.453125 -5.609375 C -6.117188 -5.265625 -6.453125 -4.671875 -6.453125 -3.828125 C -6.453125 -3.066406 -6.164062 -2.515625 -5.59375 -2.171875 C -5.019531 -1.835938 -4.328125 -1.671875 -3.515625 -1.671875 C -2.742188 -1.671875 -2.097656 -1.835938 -1.578125 -2.171875 C -1.054688 -2.515625 -0.796875 -3.0625 -0.796875 -3.8125 Z M -7.53125 -3.859375 C -7.53125 -4.796875 -7.210938 -5.585938 -6.578125 -6.234375 C -5.953125 -6.890625 -5.03125 -7.21875 -3.8125 -7.21875 C -2.632812 -7.21875 -1.660156 -6.929688 -0.890625 -6.359375 C -0.117188 -5.785156 0.265625 -4.894531 0.265625 -3.6875 C 0.265625 -2.6875 -0.0703125 -1.890625 -0.75 -1.296875 C -1.4375 -0.703125 -2.351562 -0.40625 -3.5 -0.40625 C -4.726562 -0.40625 -5.707031 -0.71875 -6.4375 -1.34375 C -7.164062 -1.96875 -7.53125 -2.804688 -7.53125 -3.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
</g>
<g id="glyph-2-2">
<path d="M -7.328125 -2.140625 L -2.46875 -2.140625 C -2.09375 -2.140625 -1.785156 -2.195312 -1.546875 -2.3125 C -1.109375 -2.53125 -0.890625 -2.9375 -0.890625 -3.53125 C -0.890625 -4.382812 -1.269531 -4.96875 -2.03125 -5.28125 C -2.445312 -5.445312 -3.007812 -5.53125 -3.71875 -5.53125 L -7.328125 -5.53125 L -7.328125 -6.765625 L 0 -6.765625 L 0 -5.609375 L -1.078125 -5.625 C -0.796875 -5.457031 -0.5625 -5.257812 -0.375 -5.03125 C 0.0078125 -4.5625 0.203125 -3.988281 0.203125 -3.3125 C 0.203125 -2.269531 -0.144531 -1.5625 -0.84375 -1.1875 C -1.21875 -0.976562 -1.71875 -0.875 -2.34375 -0.875 L -7.328125 -0.875 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
</g>
<g id="glyph-2-3">
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
</g>
<g id="glyph-2-4">
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 66.609375 0 L 293.390625 0 L 293.390625 280 L 66.609375 280 Z M 66.609375 0 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 115.171875 76.402344 L 286.414062 76.402344 L 286.414062 247.644531 L 115.171875 247.644531 Z M 115.171875 76.402344 "/>
</clipPath>
<clipPath id="clip-2">
<path clip-rule="nonzero" d="M 237 157 L 286.414062 157 L 286.414062 167 L 237 167 Z M 237 157 "/>
</clipPath>
<clipPath id="clip-3">
<path clip-rule="nonzero" d="M 115.171875 157 L 140 157 L 140 169 L 115.171875 169 Z M 115.171875 157 "/>
</clipPath>
<clipPath id="clip-4">
<path clip-rule="nonzero" d="M 115.171875 76.402344 L 286.414062 76.402344 L 286.414062 247.644531 L 115.171875 247.644531 Z M 115.171875 76.402344 "/>
</clipPath>
</defs>
<rect x="-36" y="-28" width="432" height="336" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<g clip-path="url(#clip-0)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 66.609375 280 L 293.390625 280 L 293.390625 0 L 66.609375 0 Z M 66.609375 280 "/>
</g>
<g clip-path="url(#clip-1)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 115.171875 247.648438 L 286.414062 247.648438 L 286.414062 76.40625 L 115.171875 76.40625 Z M 115.171875 247.648438 "/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 239.324219 95.289062 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 277.855469 162.023438 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 239.324219 228.761719 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 162.265625 228.761719 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 123.734375 162.023438 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 162.265625 95.289062 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 162.023438 L 200.792969 162.023438 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 149.902344 L 201.5625 149.925781 L 202.328125 150 L 203.089844 150.121094 L 203.839844 150.289062 L 204.578125 150.507812 L 205.300781 150.769531 L 206.003906 151.078125 L 206.6875 151.429688 L 207.347656 151.824219 L 207.984375 152.261719 L 208.585938 152.738281 L 209.160156 153.25 L 209.699219 153.800781 L 210.203125 154.378906 L 210.667969 154.992188 L 211.097656 155.632812 L 211.480469 156.300781 L 211.820312 156.988281 L 212.121094 157.699219 L 212.371094 158.425781 L 212.574219 159.167969 L 212.734375 159.917969 L 212.84375 160.679688 L 212.902344 161.449219 L 212.917969 162.21875 L 212.878906 162.984375 L 212.792969 163.75 L 212.660156 164.507812 L 212.480469 165.253906 L 212.25 165.988281 L 211.976562 166.707031 L 211.65625 167.410156 L 211.292969 168.085938 L 210.886719 168.742188 L 210.441406 169.367188 L 209.957031 169.964844 L 209.433594 170.527344 L 208.878906 171.058594 L 208.289062 171.554688 L 207.667969 172.011719 L 207.023438 172.425781 L 206.351562 172.800781 L 205.65625 173.132812 L 204.941406 173.417969 L 204.210938 173.65625 L 203.464844 173.851562 L 202.710938 173.996094 L 201.945312 174.09375 L 201.179688 174.140625 L 200.410156 174.140625 L 199.640625 174.09375 L 198.878906 173.996094 L 198.125 173.851562 L 197.378906 173.65625 L 196.648438 173.417969 L 195.933594 173.132812 L 195.238281 172.800781 L 194.566406 172.425781 L 193.917969 172.011719 L 193.300781 171.554688 L 192.710938 171.058594 L 192.152344 170.527344 L 191.632812 169.964844 L 191.148438 169.367188 L 190.699219 168.742188 L 190.296875 168.085938 L 189.933594 167.410156 L 189.613281 166.707031 L 189.335938 165.988281 L 189.109375 165.253906 L 188.929688 164.507812 L 188.792969 163.75 L 188.710938 162.984375 L 188.671875 162.21875 L 188.683594 161.449219 L 188.746094 160.679688 L 188.855469 159.917969 L 189.011719 159.167969 L 189.21875 158.425781 L 189.46875 157.699219 L 189.765625 156.988281 L 190.109375 156.300781 L 190.492188 155.632812 L 190.917969 154.992188 L 191.386719 154.378906 L 191.886719 153.800781 L 192.429688 153.25 L 193 152.738281 L 193.605469 152.261719 L 194.238281 151.824219 L 194.898438 151.429688 L 195.582031 151.078125 L 196.289062 150.769531 L 197.011719 150.507812 L 197.75 150.289062 L 198.5 150.121094 L 199.257812 150 L 200.027344 149.925781 L 200.792969 149.902344 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 137.777344 L 202.332031 137.828125 L 203.863281 137.972656 L 205.382812 138.214844 L 206.882812 138.554688 L 208.359375 138.988281 L 209.804688 139.515625 L 211.214844 140.132812 L 212.582031 140.835938 L 213.902344 141.628906 L 215.171875 142.5 L 216.378906 143.449219 L 217.527344 144.476562 L 218.605469 145.574219 L 219.613281 146.734375 L 220.546875 147.960938 L 221.398438 149.242188 L 222.167969 150.574219 L 222.851562 151.953125 L 223.445312 153.371094 L 223.949219 154.824219 L 224.359375 156.308594 L 224.671875 157.816406 L 224.890625 159.335938 L 225.015625 160.871094 L 225.039062 162.410156 L 224.964844 163.945312 L 224.792969 165.476562 L 224.527344 166.992188 L 224.164062 168.484375 L 223.707031 169.957031 L 223.160156 171.394531 L 222.519531 172.792969 L 221.792969 174.148438 L 220.980469 175.457031 L 220.089844 176.710938 L 219.117188 177.902344 L 218.074219 179.035156 L 216.960938 180.09375 L 215.78125 181.085938 L 214.542969 181.996094 L 213.25 182.828125 L 211.90625 183.578125 L 210.515625 184.238281 L 209.085938 184.808594 L 207.625 185.289062 L 206.136719 185.675781 L 204.625 185.96875 L 203.097656 186.160156 L 201.5625 186.257812 L 200.023438 186.257812 L 198.488281 186.160156 L 196.964844 185.96875 L 195.453125 185.675781 L 193.964844 185.289062 L 192.5 184.808594 L 191.074219 184.238281 L 189.683594 183.578125 L 188.339844 182.828125 L 187.046875 181.996094 L 185.804688 181.085938 L 184.628906 180.09375 L 183.515625 179.035156 L 182.46875 177.902344 L 181.5 176.710938 L 180.605469 175.457031 L 179.796875 174.148438 L 179.070312 172.792969 L 178.429688 171.394531 L 177.882812 169.957031 L 177.425781 168.484375 L 177.0625 166.992188 L 176.792969 165.476562 L 176.625 163.945312 L 176.550781 162.410156 L 176.574219 160.871094 L 176.695312 159.335938 L 176.914062 157.816406 L 177.230469 156.308594 L 177.640625 154.824219 L 178.144531 153.371094 L 178.738281 151.953125 L 179.421875 150.574219 L 180.191406 149.242188 L 181.042969 147.960938 L 181.976562 146.734375 L 182.984375 145.574219 L 184.0625 144.476562 L 185.207031 143.449219 L 186.417969 142.5 L 187.683594 141.628906 L 189.003906 140.835938 L 190.375 140.132812 L 191.78125 139.515625 L 193.230469 138.988281 L 194.703125 138.554688 L 196.207031 138.214844 L 197.726562 137.972656 L 199.257812 137.828125 L 200.792969 137.777344 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 125.65625 L 203.101562 125.726562 L 205.398438 125.945312 L 207.675781 126.3125 L 209.929688 126.820312 L 212.144531 127.46875 L 214.3125 128.261719 L 216.425781 129.183594 L 218.476562 130.242188 L 220.457031 131.429688 L 222.359375 132.738281 L 224.171875 134.164062 L 225.894531 135.703125 L 227.511719 137.347656 L 229.023438 139.089844 L 230.421875 140.929688 L 231.699219 142.847656 L 232.851562 144.847656 L 233.878906 146.917969 L 234.769531 149.042969 L 235.523438 151.226562 L 236.140625 153.449219 L 236.613281 155.710938 L 236.941406 157.992188 L 237.125 160.292969 L 237.160156 162.601562 L 237.050781 164.90625 L 236.792969 167.199219 L 236.394531 169.472656 L 235.851562 171.714844 L 235.164062 173.921875 L 234.339844 176.078125 L 233.382812 178.175781 L 232.292969 180.210938 L 231.074219 182.171875 L 229.738281 184.050781 L 228.28125 185.84375 L 226.714844 187.539062 L 225.046875 189.128906 L 223.277344 190.613281 L 221.417969 191.980469 L 219.476562 193.230469 L 217.460938 194.351562 L 215.375 195.34375 L 213.234375 196.203125 L 211.042969 196.921875 L 208.808594 197.5 L 206.539062 197.9375 L 204.25 198.230469 L 201.949219 198.375 L 199.640625 198.375 L 197.335938 198.230469 L 195.046875 197.9375 L 192.78125 197.5 L 190.546875 196.921875 L 188.355469 196.203125 L 186.210938 195.34375 L 184.128906 194.351562 L 182.113281 193.230469 L 180.171875 191.980469 L 178.3125 190.613281 L 176.542969 189.128906 L 174.875 187.539062 L 173.308594 185.84375 L 171.851562 184.050781 L 170.511719 182.171875 L 169.296875 180.210938 L 168.207031 178.175781 L 167.25 176.078125 L 166.425781 173.921875 L 165.738281 171.714844 L 165.195312 169.472656 L 164.792969 167.199219 L 164.539062 164.90625 L 164.429688 162.601562 L 164.464844 160.292969 L 164.648438 157.992188 L 164.976562 155.710938 L 165.449219 153.449219 L 166.0625 151.226562 L 166.820312 149.042969 L 167.710938 146.917969 L 168.734375 144.847656 L 169.890625 142.847656 L 171.167969 140.929688 L 172.566406 139.089844 L 174.078125 137.347656 L 175.695312 135.703125 L 177.414062 134.164062 L 179.230469 132.738281 L 181.132812 131.429688 L 183.109375 130.242188 L 185.164062 129.183594 L 187.277344 128.261719 L 189.445312 127.46875 L 191.660156 126.820312 L 193.910156 126.3125 L 196.191406 125.945312 L 198.488281 125.726562 L 200.792969 125.65625 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 113.53125 L 203.871094 113.628906 L 206.933594 113.921875 L 209.972656 114.40625 L 212.972656 115.085938 L 215.925781 115.953125 L 218.816406 117.003906 L 221.636719 118.238281 L 224.371094 119.648438 L 227.011719 121.230469 L 229.546875 122.972656 L 231.964844 124.875 L 234.257812 126.929688 L 236.417969 129.121094 L 238.433594 131.445312 L 240.296875 133.894531 L 242 136.457031 L 243.539062 139.121094 L 244.90625 141.878906 L 246.09375 144.71875 L 247.101562 147.625 L 247.921875 150.59375 L 248.550781 153.605469 L 248.988281 156.648438 L 249.234375 159.71875 L 249.28125 162.792969 L 249.136719 165.867188 L 248.792969 168.925781 L 248.261719 171.957031 L 247.535156 174.945312 L 246.621094 177.886719 L 245.523438 180.761719 L 244.246094 183.558594 L 242.792969 186.273438 L 241.167969 188.886719 L 239.382812 191.394531 L 237.445312 193.78125 L 235.355469 196.042969 L 233.128906 198.164062 L 230.769531 200.144531 L 228.292969 201.96875 L 225.703125 203.632812 L 223.015625 205.128906 L 220.238281 206.449219 L 217.378906 207.59375 L 214.457031 208.554688 L 211.476562 209.328125 L 208.457031 209.910156 L 205.402344 210.300781 L 202.332031 210.496094 L 199.253906 210.496094 L 196.183594 210.300781 L 193.132812 209.910156 L 190.109375 209.328125 L 187.132812 208.554688 L 184.207031 207.59375 L 181.351562 206.449219 L 178.574219 205.128906 L 175.882812 203.632812 L 173.296875 201.96875 L 170.816406 200.144531 L 168.460938 198.164062 L 166.234375 196.042969 L 164.144531 193.78125 L 162.203125 191.394531 L 160.421875 188.886719 L 158.796875 186.273438 L 157.34375 183.558594 L 156.066406 180.761719 L 154.96875 177.886719 L 154.054688 174.945312 L 153.328125 171.957031 L 152.792969 168.925781 L 152.453125 165.867188 L 152.308594 162.792969 L 152.355469 159.71875 L 152.597656 156.648438 L 153.039062 153.605469 L 153.667969 150.59375 L 154.488281 147.625 L 155.492188 144.71875 L 156.683594 141.878906 L 158.050781 139.121094 L 159.589844 136.457031 L 161.292969 133.894531 L 163.15625 131.445312 L 165.171875 129.121094 L 167.328125 126.929688 L 169.625 124.875 L 172.042969 122.972656 L 174.578125 121.230469 L 177.21875 119.648438 L 179.953125 118.238281 L 182.769531 117.003906 L 185.664062 115.953125 L 188.617188 115.085938 L 191.617188 114.40625 L 194.65625 113.921875 L 197.71875 113.628906 L 200.792969 113.53125 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 101.40625 L 204.640625 101.53125 L 208.46875 101.894531 L 212.265625 102.503906 L 216.019531 103.351562 L 219.710938 104.433594 L 223.324219 105.75 L 226.847656 107.292969 L 230.265625 109.054688 L 233.566406 111.03125 L 236.734375 113.210938 L 239.757812 115.589844 L 242.625 118.152344 L 245.324219 120.894531 L 247.84375 123.800781 L 250.171875 126.863281 L 252.300781 130.066406 L 254.226562 133.398438 L 255.933594 136.84375 L 257.417969 140.390625 L 258.679688 144.027344 L 259.703125 147.734375 L 260.492188 151.5 L 261.039062 155.304688 L 261.34375 159.140625 L 261.402344 162.988281 L 261.222656 166.828125 L 260.792969 170.652344 L 260.125 174.441406 L 259.21875 178.179688 L 258.078125 181.851562 L 256.703125 185.445312 L 255.105469 188.941406 L 253.289062 192.332031 L 251.261719 195.601562 L 249.03125 198.734375 L 246.605469 201.722656 L 243.996094 204.546875 L 241.210938 207.199219 L 238.265625 209.671875 L 235.167969 211.953125 L 231.933594 214.035156 L 228.570312 215.902344 L 225.097656 217.558594 L 221.527344 218.988281 L 217.871094 220.1875 L 214.148438 221.152344 L 210.371094 221.878906 L 206.554688 222.367188 L 202.71875 222.613281 L 198.871094 222.613281 L 195.03125 222.367188 L 191.214844 221.878906 L 187.441406 221.152344 L 183.714844 220.1875 L 180.0625 218.988281 L 176.492188 217.558594 L 173.019531 215.902344 L 169.65625 214.035156 L 166.421875 211.953125 L 163.324219 209.671875 L 160.375 207.199219 L 157.59375 204.546875 L 154.984375 201.722656 L 152.558594 198.734375 L 150.328125 195.601562 L 148.296875 192.332031 L 146.480469 188.941406 L 144.882812 185.445312 L 143.511719 181.851562 L 142.367188 178.179688 L 141.460938 174.441406 L 140.792969 170.652344 L 140.367188 166.828125 L 140.183594 162.988281 L 140.246094 159.140625 L 140.550781 155.304688 L 141.097656 151.5 L 141.886719 147.734375 L 142.910156 144.027344 L 144.167969 140.390625 L 145.65625 136.84375 L 147.363281 133.398438 L 149.285156 130.066406 L 151.417969 126.863281 L 153.746094 123.800781 L 156.265625 120.894531 L 158.964844 118.152344 L 161.832031 115.589844 L 164.855469 113.210938 L 168.023438 111.03125 L 171.324219 109.054688 L 174.742188 107.292969 L 178.265625 105.75 L 181.878906 104.433594 L 185.570312 103.351562 L 189.324219 102.503906 L 193.121094 101.894531 L 196.949219 101.53125 L 200.792969 101.40625 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 200.792969 84.964844 L 205.683594 85.121094 L 210.550781 85.585938 L 215.378906 86.359375 L 220.148438 87.433594 L 224.839844 88.8125 L 229.433594 90.484375 L 233.914062 92.445312 L 238.261719 94.6875 L 242.457031 97.199219 L 246.484375 99.972656 L 250.328125 102.992188 L 253.972656 106.253906 L 257.402344 109.738281 L 260.605469 113.433594 L 263.566406 117.324219 L 266.273438 121.398438 L 268.71875 125.632812 L 270.890625 130.011719 L 272.78125 134.523438 L 274.378906 139.144531 L 275.683594 143.855469 L 276.683594 148.644531 L 277.378906 153.484375 L 277.765625 158.359375 L 277.84375 163.246094 L 277.613281 168.132812 L 277.070312 172.992188 L 276.21875 177.808594 L 275.066406 182.558594 L 273.617188 187.230469 L 271.871094 191.796875 L 269.839844 196.246094 L 267.53125 200.554688 L 264.953125 204.710938 L 262.117188 208.691406 L 259.03125 212.488281 L 255.714844 216.082031 L 252.175781 219.453125 L 248.429688 222.597656 L 244.492188 225.496094 L 240.378906 228.140625 L 236.105469 230.519531 L 231.691406 232.621094 L 227.148438 234.4375 L 222.503906 235.964844 L 217.769531 237.191406 L 212.96875 238.117188 L 208.121094 238.734375 L 203.238281 239.046875 L 198.347656 239.046875 L 193.46875 238.734375 L 188.617188 238.117188 L 183.816406 237.191406 L 179.085938 235.964844 L 174.4375 234.4375 L 169.898438 232.621094 L 165.484375 230.519531 L 161.210938 228.140625 L 157.097656 225.496094 L 153.160156 222.597656 L 149.414062 219.453125 L 145.875 216.082031 L 142.554688 212.488281 L 139.472656 208.691406 L 136.636719 204.710938 L 134.058594 200.554688 L 131.75 196.246094 L 129.71875 191.796875 L 127.972656 187.230469 L 126.519531 182.558594 L 125.367188 177.808594 L 124.519531 172.992188 L 123.976562 168.132812 L 123.746094 163.246094 L 123.820312 158.359375 L 124.210938 153.484375 L 124.90625 148.644531 L 125.90625 143.855469 L 127.210938 139.144531 L 128.808594 134.523438 L 130.699219 130.011719 L 132.871094 125.632812 L 135.316406 121.398438 L 138.023438 117.324219 L 140.984375 113.433594 L 144.1875 109.738281 L 147.617188 106.253906 L 151.261719 102.992188 L 155.105469 99.972656 L 159.132812 97.199219 L 163.328125 94.6875 L 167.675781 92.445312 L 172.152344 90.484375 L 176.75 88.8125 L 181.441406 87.433594 L 186.210938 86.359375 L 191.039062 85.585938 L 195.90625 85.121094 L 200.792969 84.964844 "/>
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 204.378906 93.621094 L 206.765625 93.789062 L 209.140625 94.039062 L 211.507812 94.371094 L 213.863281 94.785156 L 216.203125 95.28125 L 218.523438 95.863281 L 220.820312 96.519531 L 223.09375 97.257812 L 225.339844 98.078125 L 227.558594 98.972656 L 229.742188 99.945312 L 231.890625 100.992188 L 234.003906 102.117188 L 236.074219 103.3125 L 238.101562 104.578125 L 240.082031 105.914062 L 242.015625 107.320312 L 243.902344 108.792969 L 245.734375 110.328125 L 247.507812 111.929688 L 249.230469 113.589844 L 250.890625 115.308594 L 252.488281 117.085938 L 254.027344 118.917969 L 255.5 120.800781 L 256.902344 122.738281 L 258.242188 124.71875 L 256.261719 126.003906 L 254.28125 127.292969 L 252.296875 128.578125 L 250.316406 129.863281 L 248.335938 131.152344 L 244.375 133.722656 L 242.394531 135.011719 L 238.433594 137.582031 L 236.449219 138.871094 L 230.507812 142.726562 L 228.527344 144.015625 L 224.566406 146.585938 L 222.585938 147.875 L 220.605469 149.160156 L 218.621094 150.445312 L 216.640625 151.734375 L 212.679688 154.304688 L 210.699219 155.59375 L 206.738281 158.164062 L 204.757812 159.453125 L 202.773438 160.738281 L 200.792969 162.023438 L 200.917969 159.667969 L 201.042969 157.308594 L 201.164062 154.949219 L 201.414062 150.230469 L 201.535156 147.871094 L 201.660156 145.515625 L 201.785156 143.15625 L 201.90625 140.796875 L 202.03125 138.4375 L 202.152344 136.078125 L 202.402344 131.359375 L 202.523438 129.003906 L 202.773438 124.285156 L 202.894531 121.925781 L 203.144531 117.207031 L 203.265625 114.851562 L 203.515625 110.132812 L 203.636719 107.773438 L 203.886719 103.054688 L 204.007812 100.699219 L 204.132812 98.339844 L 204.253906 95.980469 Z M 204.378906 93.621094 "/>
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 234.390625 144.90625 L 235.398438 147.050781 L 236.269531 149.253906 L 237 151.507812 L 237.589844 153.800781 L 238.035156 156.125 L 238.332031 158.476562 L 238.480469 160.839844 L 238.480469 163.210938 L 238.332031 165.574219 L 238.035156 167.921875 L 237.589844 170.25 L 237 172.542969 L 236.269531 174.796875 L 235.398438 177 L 234.390625 179.140625 L 232.289062 178.074219 L 230.191406 177.003906 L 225.988281 174.863281 L 223.890625 173.792969 L 221.789062 172.722656 L 219.691406 171.652344 L 217.589844 170.582031 L 215.492188 169.515625 L 213.390625 168.445312 L 211.292969 167.375 L 209.191406 166.304688 L 207.09375 165.234375 L 204.992188 164.164062 L 202.894531 163.09375 L 200.792969 162.023438 L 202.894531 160.957031 L 204.992188 159.886719 L 207.09375 158.816406 L 209.191406 157.746094 L 211.292969 156.675781 L 213.390625 155.605469 L 215.492188 154.535156 L 217.589844 153.464844 L 219.691406 152.394531 L 221.789062 151.328125 L 223.890625 150.257812 L 225.988281 149.1875 L 230.191406 147.046875 L 232.289062 145.976562 Z M 234.390625 144.90625 "/>
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 227.941406 179.65625 L 226.59375 181.574219 L 225.109375 183.390625 L 223.496094 185.097656 L 221.765625 186.679688 L 219.925781 188.136719 L 217.984375 189.453125 L 215.953125 190.625 L 213.839844 191.648438 L 211.660156 192.515625 L 209.425781 193.222656 L 207.140625 193.765625 L 204.824219 194.140625 L 202.488281 194.351562 L 202.359375 191.863281 L 202.226562 189.378906 L 201.96875 184.402344 L 201.835938 181.917969 L 201.707031 179.429688 L 201.578125 176.945312 L 201.445312 174.457031 L 201.316406 171.972656 L 201.183594 169.484375 L 201.054688 166.996094 L 200.925781 164.511719 L 200.792969 162.023438 L 202.882812 163.382812 L 204.972656 164.738281 L 207.058594 166.09375 L 209.148438 167.449219 L 211.234375 168.804688 L 213.324219 170.160156 L 215.414062 171.519531 L 217.5 172.875 L 219.589844 174.230469 L 221.675781 175.585938 L 225.855469 178.296875 Z M 227.941406 179.65625 "/>
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 199.796875 181.03125 L 197.253906 180.726562 L 194.777344 180.082031 L 192.40625 179.113281 L 190.191406 177.832031 L 188.164062 176.265625 L 186.367188 174.441406 L 184.832031 172.390625 L 186.828125 171.09375 L 188.820312 169.800781 L 192.8125 167.207031 L 194.808594 165.914062 L 198.800781 163.320312 L 200.792969 162.023438 L 200.667969 164.402344 L 200.546875 166.777344 L 200.296875 171.527344 L 200.171875 173.90625 Z M 199.796875 181.03125 "/>
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 192.261719 166.371094 L 191.335938 163.523438 L 191.335938 160.527344 L 192.261719 157.675781 L 194.394531 158.765625 L 200.792969 162.023438 L 198.660156 163.113281 Z M 192.261719 166.371094 "/>
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 200.488281 161.828125 L 200.773438 161.660156 L 200.792969 162.023438 Z M 200.488281 161.828125 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="227.1875" y="99.304688"/>
<use xlink:href="#glyph-0-1" x="232.7875" y="99.304688"/>
<use xlink:href="#glyph-0-2" x="235.275781" y="99.304688"/>
<use xlink:href="#glyph-0-3" x="241.504687" y="99.304688"/>
<use xlink:href="#glyph-0-4" x="247.733594" y="99.304688"/>
</g>
<g clip-path="url(#clip-2)">
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-5" x="237.078125" y="166.042969"/>
<use xlink:href="#glyph-0-0" x="242.678125" y="166.042969"/>
<use xlink:href="#glyph-0-3" x="248.278125" y="166.042969"/>
<use xlink:href="#glyph-0-6" x="254.507031" y="166.042969"/>
<use xlink:href="#glyph-0-6" x="257.61875" y="166.042969"/>
<use xlink:href="#glyph-0-2" x="260.730469" y="166.042969"/>
<use xlink:href="#glyph-0-4" x="266.959375" y="166.042969"/>
<use xlink:href="#glyph-0-2" x="270.689063" y="166.042969"/>
<use xlink:href="#glyph-0-7" x="276.917969" y="166.042969"/>
<use xlink:href="#glyph-0-8" x="283.146875" y="166.042969"/>
<use xlink:href="#glyph-0-0" x="286.258594" y="166.042969"/>
<use xlink:href="#glyph-0-1" x="291.858594" y="166.042969"/>
<use xlink:href="#glyph-0-9" x="294.346875" y="166.042969"/>
<use xlink:href="#glyph-0-10" x="300.575781" y="166.042969"/>
<use xlink:href="#glyph-0-7" x="306.804688" y="166.042969"/>
<use xlink:href="#glyph-0-5" x="313.033594" y="166.042969"/>
</g>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="204.457031" y="232.777344"/>
<use xlink:href="#glyph-0-4" x="210.685937" y="232.777344"/>
<use xlink:href="#glyph-0-9" x="214.415625" y="232.777344"/>
<use xlink:href="#glyph-0-12" x="220.644531" y="232.777344"/>
<use xlink:href="#glyph-0-2" x="226.244531" y="232.777344"/>
<use xlink:href="#glyph-0-13" x="232.473437" y="232.777344"/>
<use xlink:href="#glyph-0-8" x="238.702344" y="232.777344"/>
<use xlink:href="#glyph-0-0" x="241.814062" y="232.777344"/>
<use xlink:href="#glyph-0-1" x="247.414062" y="232.777344"/>
<use xlink:href="#glyph-0-9" x="249.902344" y="232.777344"/>
<use xlink:href="#glyph-0-10" x="256.13125" y="232.777344"/>
<use xlink:href="#glyph-0-7" x="262.360156" y="232.777344"/>
<use xlink:href="#glyph-0-5" x="268.589063" y="232.777344"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-4" x="152.929688" y="232.777344"/>
<use xlink:href="#glyph-0-3" x="156.659375" y="232.777344"/>
<use xlink:href="#glyph-0-14" x="162.888281" y="232.777344"/>
<use xlink:href="#glyph-0-13" x="165.376563" y="232.777344"/>
</g>
<g clip-path="url(#clip-3)">
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="107.546875" y="166.042969"/>
<use xlink:href="#glyph-0-1" x="113.146875" y="166.042969"/>
<use xlink:href="#glyph-0-9" x="115.635156" y="166.042969"/>
<use xlink:href="#glyph-0-10" x="121.864062" y="166.042969"/>
<use xlink:href="#glyph-0-7" x="128.092969" y="166.042969"/>
<use xlink:href="#glyph-0-15" x="134.321875" y="166.042969"/>
</g>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-5" x="142.035156" y="99.304688"/>
<use xlink:href="#glyph-0-13" x="147.635156" y="99.304688"/>
<use xlink:href="#glyph-0-9" x="153.864062" y="99.304688"/>
<use xlink:href="#glyph-0-16" x="160.092969" y="99.304688"/>
<use xlink:href="#glyph-0-17" x="168.18125" y="99.304688"/>
<use xlink:href="#glyph-0-3" x="171.292969" y="99.304688"/>
<use xlink:href="#glyph-0-1" x="177.521875" y="99.304688"/>
<use xlink:href="#glyph-0-1" x="180.010156" y="99.304688"/>
</g>
<g clip-path="url(#clip-4)">
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 115.171875 247.648438 L 286.414062 247.648438 L 286.414062 76.40625 L 115.171875 76.40625 Z M 115.171875 247.648438 "/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-18" x="102.664062" y="166.042969"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-19" x="90.207031" y="153.917969"/>
<use xlink:href="#glyph-0-18" x="96.435937" y="153.917969"/>
<use xlink:href="#glyph-0-18" x="102.664844" y="153.917969"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-20" x="90.207031" y="141.792969"/>
<use xlink:href="#glyph-0-18" x="96.435937" y="141.792969"/>
<use xlink:href="#glyph-0-18" x="102.664844" y="141.792969"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-21" x="90.207031" y="129.671875"/>
<use xlink:href="#glyph-0-18" x="96.435937" y="129.671875"/>
<use xlink:href="#glyph-0-18" x="102.664844" y="129.671875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-22" x="90.207031" y="117.546875"/>
<use xlink:href="#glyph-0-18" x="96.435937" y="117.546875"/>
<use xlink:href="#glyph-0-18" x="102.664844" y="117.546875"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-23" x="90.207031" y="105.425781"/>
<use xlink:href="#glyph-0-18" x="96.435937" y="105.425781"/>
<use xlink:href="#glyph-0-18" x="102.664844" y="105.425781"/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.6875 162.023438 L 115.171875 162.023438 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.6875 149.902344 L 115.171875 149.902344 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.6875 137.777344 L 115.171875 137.777344 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.6875 125.65625 L 115.171875 125.65625 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.6875 113.53125 L 115.171875 113.53125 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 111.6875 101.40625 L 115.171875 101.40625 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="125.308594" y="269.929688"/>
<use xlink:href="#glyph-1-1" x="129.198242" y="269.929688"/>
<use xlink:href="#glyph-1-2" x="136.198242" y="269.929688"/>
<use xlink:href="#glyph-1-3" x="140.087891" y="269.929688"/>
<use xlink:href="#glyph-1-4" x="147.874023" y="269.929688"/>
<use xlink:href="#glyph-1-5" x="150.984375" y="269.929688"/>
<use xlink:href="#glyph-1-0" x="158.770508" y="269.929688"/>
<use xlink:href="#glyph-1-6" x="162.660156" y="269.929688"/>
<use xlink:href="#glyph-1-7" x="167.322266" y="269.929688"/>
<use xlink:href="#glyph-1-8" x="175.108398" y="269.929688"/>
<use xlink:href="#glyph-1-9" x="182.894531" y="269.929688"/>
<use xlink:href="#glyph-1-10" x="187.556641" y="269.929688"/>
<use xlink:href="#glyph-1-7" x="197.666992" y="269.929688"/>
<use xlink:href="#glyph-1-11" x="205.453125" y="269.929688"/>
<use xlink:href="#glyph-1-2" x="213.239258" y="269.929688"/>
<use xlink:href="#glyph-1-12" x="217.128906" y="269.929688"/>
<use xlink:href="#glyph-1-7" x="224.915039" y="269.929688"/>
<use xlink:href="#glyph-1-6" x="232.701172" y="269.929688"/>
<use xlink:href="#glyph-1-3" x="237.363281" y="269.929688"/>
<use xlink:href="#glyph-1-2" x="245.149414" y="269.929688"/>
<use xlink:href="#glyph-1-13" x="249.039062" y="269.929688"/>
<use xlink:href="#glyph-1-14" x="256.039062" y="269.929688"/>
<use xlink:href="#glyph-1-7" x="263.825195" y="269.929688"/>
<use xlink:href="#glyph-1-15" x="271.611328" y="269.929688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="83.625" y="179.148438"/>
<use xlink:href="#glyph-2-1" x="83.625" y="172.148438"/>
<use xlink:href="#glyph-2-2" x="83.625" y="164.362305"/>
<use xlink:href="#glyph-2-3" x="83.625" y="156.576172"/>
<use xlink:href="#glyph-2-4" x="83.625" y="148.790039"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 13.121094 62.457031 L 388.46875 62.457031 L 388.46875 6.976562 L 13.121094 6.976562 Z M 13.121094 62.457031 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-10" x="20.09375" y="39.734375"/>
<use xlink:href="#glyph-1-7" x="30.204102" y="39.734375"/>
<use xlink:href="#glyph-1-11" x="37.990234" y="39.734375"/>
<use xlink:href="#glyph-1-2" x="45.776367" y="39.734375"/>
<use xlink:href="#glyph-1-12" x="49.666016" y="39.734375"/>
<use xlink:href="#glyph-1-7" x="57.452148" y="39.734375"/>
<use xlink:href="#glyph-1-6" x="65.238281" y="39.734375"/>
<use xlink:href="#glyph-1-3" x="69.900391" y="39.734375"/>
<use xlink:href="#glyph-1-2" x="77.686523" y="39.734375"/>
<use xlink:href="#glyph-1-13" x="81.576172" y="39.734375"/>
<use xlink:href="#glyph-1-14" x="88.576172" y="39.734375"/>
<use xlink:href="#glyph-1-7" x="96.362305" y="39.734375"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 111.121094 31.226562 L 128.402344 31.226562 L 128.402344 13.945312 L 111.121094 13.945312 Z M 111.121094 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 111.832031 30.519531 L 127.695312 30.519531 L 127.695312 14.65625 L 111.832031 14.65625 Z M 111.832031 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 111.121094 55.480469 L 128.402344 55.480469 L 128.402344 38.199219 L 111.121094 38.199219 Z M 111.121094 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 111.832031 54.773438 L 127.695312 54.773438 L 127.695312 38.910156 L 111.832031 38.910156 Z M 111.832031 54.773438 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 212.082031 31.226562 L 229.363281 31.226562 L 229.363281 13.945312 L 212.082031 13.945312 Z M 212.082031 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 212.792969 30.519531 L 228.65625 30.519531 L 228.65625 14.65625 L 212.792969 14.65625 Z M 212.792969 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 212.082031 55.480469 L 229.363281 55.480469 L 229.363281 38.199219 L 212.082031 38.199219 Z M 212.082031 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 212.792969 54.773438 L 228.65625 54.773438 L 228.65625 38.910156 L 212.792969 38.910156 Z M 212.792969 54.773438 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 275.683594 31.226562 L 292.964844 31.226562 L 292.964844 13.945312 L 275.683594 13.945312 Z M 275.683594 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 276.394531 30.519531 L 292.257812 30.519531 L 292.257812 14.65625 L 276.394531 14.65625 Z M 276.394531 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 275.683594 55.480469 L 292.964844 55.480469 L 292.964844 38.199219 L 275.683594 38.199219 Z M 275.683594 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 276.394531 54.773438 L 292.257812 54.773438 L 292.257812 38.910156 L 276.394531 38.910156 Z M 276.394531 54.773438 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="135.375" y="26.605469"/>
<use xlink:href="#glyph-0-4" x="141.603906" y="26.605469"/>
<use xlink:href="#glyph-0-9" x="145.333594" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="151.5625" y="26.605469"/>
<use xlink:href="#glyph-0-2" x="157.1625" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="163.391406" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="169.620312" y="26.605469"/>
<use xlink:href="#glyph-0-0" x="172.732031" y="26.605469"/>
<use xlink:href="#glyph-0-1" x="178.332031" y="26.605469"/>
<use xlink:href="#glyph-0-9" x="180.820312" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="187.049219" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="193.278125" y="26.605469"/>
<use xlink:href="#glyph-0-5" x="199.507031" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="135.375" y="50.859375"/>
<use xlink:href="#glyph-0-1" x="140.975" y="50.859375"/>
<use xlink:href="#glyph-0-2" x="143.463281" y="50.859375"/>
<use xlink:href="#glyph-0-3" x="149.692187" y="50.859375"/>
<use xlink:href="#glyph-0-4" x="155.921094" y="50.859375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="236.335938" y="26.605469"/>
<use xlink:href="#glyph-0-1" x="241.935937" y="26.605469"/>
<use xlink:href="#glyph-0-9" x="244.424219" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="250.653125" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="256.882031" y="26.605469"/>
<use xlink:href="#glyph-0-15" x="263.110938" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-4" x="236.335938" y="50.859375"/>
<use xlink:href="#glyph-0-3" x="240.065625" y="50.859375"/>
<use xlink:href="#glyph-0-14" x="246.294531" y="50.859375"/>
<use xlink:href="#glyph-0-13" x="248.782813" y="50.859375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-5" x="299.9375" y="26.605469"/>
<use xlink:href="#glyph-0-0" x="305.5375" y="26.605469"/>
<use xlink:href="#glyph-0-3" x="311.1375" y="26.605469"/>
<use xlink:href="#glyph-0-6" x="317.366406" y="26.605469"/>
<use xlink:href="#glyph-0-6" x="320.478125" y="26.605469"/>
<use xlink:href="#glyph-0-2" x="323.589844" y="26.605469"/>
<use xlink:href="#glyph-0-4" x="329.81875" y="26.605469"/>
<use xlink:href="#glyph-0-2" x="333.548438" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="339.777344" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="346.00625" y="26.605469"/>
<use xlink:href="#glyph-0-0" x="349.117969" y="26.605469"/>
<use xlink:href="#glyph-0-1" x="354.717969" y="26.605469"/>
<use xlink:href="#glyph-0-9" x="357.20625" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="363.435156" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="369.664063" y="26.605469"/>
<use xlink:href="#glyph-0-5" x="375.892969" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-5" x="299.9375" y="50.859375"/>
<use xlink:href="#glyph-0-13" x="305.5375" y="50.859375"/>
<use xlink:href="#glyph-0-9" x="311.766406" y="50.859375"/>
<use xlink:href="#glyph-0-16" x="317.995313" y="50.859375"/>
<use xlink:href="#glyph-0-17" x="326.083594" y="50.859375"/>
<use xlink:href="#glyph-0-3" x="329.195313" y="50.859375"/>
<use xlink:href="#glyph-0-1" x="335.424219" y="50.859375"/>
<use xlink:href="#glyph-0-1" x="337.9125" y="50.859375"/>
</g>
</svg>

After

(image error) Size: 73 KiB

Binary file not shown.

After

(image error) Size: 114 KiB

View File

@ -0,0 +1,425 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="280" viewBox="0 0 360 280">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 3.03125 -7.828125 C 4.039062 -7.828125 4.773438 -7.410156 5.234375 -6.578125 C 5.578125 -5.929688 5.75 -5.046875 5.75 -3.921875 C 5.75 -2.859375 5.59375 -1.976562 5.28125 -1.28125 C 4.820312 -0.28125 4.070312 0.21875 3.03125 0.21875 C 2.082031 0.21875 1.378906 -0.191406 0.921875 -1.015625 C 0.535156 -1.691406 0.34375 -2.609375 0.34375 -3.765625 C 0.34375 -4.648438 0.457031 -5.410156 0.6875 -6.046875 C 1.125 -7.234375 1.90625 -7.828125 3.03125 -7.828125 Z M 3.015625 -0.6875 C 3.523438 -0.6875 3.929688 -0.910156 4.234375 -1.359375 C 4.535156 -1.816406 4.6875 -2.660156 4.6875 -3.890625 C 4.6875 -4.773438 4.578125 -5.503906 4.359375 -6.078125 C 4.140625 -6.660156 3.71875 -6.953125 3.09375 -6.953125 C 2.507812 -6.953125 2.082031 -6.675781 1.8125 -6.125 C 1.550781 -5.582031 1.421875 -4.78125 1.421875 -3.71875 C 1.421875 -2.914062 1.503906 -2.273438 1.671875 -1.796875 C 1.929688 -1.054688 2.378906 -0.6875 3.015625 -0.6875 Z M 3.015625 -0.6875 "/>
</g>
<g id="glyph-0-1">
<path d="M 1.078125 -5.546875 L 1.078125 -6.296875 C 1.785156 -6.367188 2.28125 -6.484375 2.5625 -6.640625 C 2.84375 -6.804688 3.050781 -7.191406 3.1875 -7.796875 L 3.96875 -7.796875 L 3.96875 0 L 2.921875 0 L 2.921875 -5.546875 Z M 1.078125 -5.546875 "/>
</g>
<g id="glyph-0-2">
<path d="M 0.34375 0 C 0.382812 -0.675781 0.523438 -1.265625 0.765625 -1.765625 C 1.003906 -2.265625 1.476562 -2.71875 2.1875 -3.125 L 3.234375 -3.734375 C 3.703125 -4.003906 4.035156 -4.238281 4.234375 -4.4375 C 4.523438 -4.738281 4.671875 -5.082031 4.671875 -5.46875 C 4.671875 -5.925781 4.535156 -6.285156 4.265625 -6.546875 C 3.992188 -6.816406 3.628906 -6.953125 3.171875 -6.953125 C 2.492188 -6.953125 2.023438 -6.695312 1.765625 -6.1875 C 1.628906 -5.914062 1.554688 -5.535156 1.546875 -5.046875 L 0.546875 -5.046875 C 0.554688 -5.734375 0.679688 -6.289062 0.921875 -6.71875 C 1.347656 -7.476562 2.097656 -7.859375 3.171875 -7.859375 C 4.078125 -7.859375 4.734375 -7.613281 5.140625 -7.125 C 5.554688 -6.644531 5.765625 -6.109375 5.765625 -5.515625 C 5.765625 -4.890625 5.546875 -4.351562 5.109375 -3.90625 C 4.847656 -3.644531 4.390625 -3.332031 3.734375 -2.96875 L 2.984375 -2.546875 C 2.617188 -2.347656 2.335938 -2.160156 2.140625 -1.984375 C 1.773438 -1.671875 1.546875 -1.320312 1.453125 -0.9375 L 5.734375 -0.9375 L 5.734375 0 Z M 0.34375 0 "/>
</g>
<g id="glyph-0-3">
<path d="M 2.90625 0.21875 C 1.976562 0.21875 1.304688 -0.0351562 0.890625 -0.546875 C 0.472656 -1.054688 0.265625 -1.675781 0.265625 -2.40625 L 1.296875 -2.40625 C 1.335938 -1.894531 1.429688 -1.523438 1.578125 -1.296875 C 1.835938 -0.890625 2.300781 -0.6875 2.96875 -0.6875 C 3.476562 -0.6875 3.890625 -0.820312 4.203125 -1.09375 C 4.523438 -1.375 4.6875 -1.734375 4.6875 -2.171875 C 4.6875 -2.710938 4.519531 -3.085938 4.1875 -3.296875 C 3.851562 -3.515625 3.394531 -3.625 2.8125 -3.625 C 2.75 -3.625 2.679688 -3.625 2.609375 -3.625 C 2.546875 -3.625 2.476562 -3.617188 2.40625 -3.609375 L 2.40625 -4.484375 C 2.507812 -4.472656 2.59375 -4.460938 2.65625 -4.453125 C 2.726562 -4.453125 2.804688 -4.453125 2.890625 -4.453125 C 3.253906 -4.453125 3.554688 -4.515625 3.796875 -4.640625 C 4.210938 -4.835938 4.421875 -5.203125 4.421875 -5.734375 C 4.421875 -6.117188 4.28125 -6.414062 4 -6.625 C 3.726562 -6.84375 3.40625 -6.953125 3.03125 -6.953125 C 2.375 -6.953125 1.921875 -6.734375 1.671875 -6.296875 C 1.535156 -6.054688 1.457031 -5.710938 1.4375 -5.265625 L 0.46875 -5.265625 C 0.46875 -5.847656 0.582031 -6.34375 0.8125 -6.75 C 1.21875 -7.476562 1.925781 -7.84375 2.9375 -7.84375 C 3.726562 -7.84375 4.34375 -7.664062 4.78125 -7.3125 C 5.21875 -6.957031 5.4375 -6.441406 5.4375 -5.765625 C 5.4375 -5.285156 5.304688 -4.894531 5.046875 -4.59375 C 4.890625 -4.40625 4.6875 -4.257812 4.4375 -4.15625 C 4.84375 -4.039062 5.160156 -3.820312 5.390625 -3.5 C 5.628906 -3.175781 5.75 -2.78125 5.75 -2.3125 C 5.75 -1.570312 5.5 -0.960938 5 -0.484375 C 4.507812 -0.015625 3.8125 0.21875 2.90625 0.21875 Z M 2.90625 0.21875 "/>
</g>
<g id="glyph-0-4">
<path d="M 3.703125 -2.765625 L 3.703125 -6.328125 L 1.1875 -2.765625 Z M 3.71875 0 L 3.71875 -1.921875 L 0.28125 -1.921875 L 0.28125 -2.875 L 3.875 -7.859375 L 4.703125 -7.859375 L 4.703125 -2.765625 L 5.859375 -2.765625 L 5.859375 -1.921875 L 4.703125 -1.921875 L 4.703125 0 Z M 3.71875 0 "/>
</g>
<g id="glyph-0-5">
<path d="M 1.390625 -2 C 1.453125 -1.4375 1.710938 -1.046875 2.171875 -0.828125 C 2.398438 -0.722656 2.664062 -0.671875 2.96875 -0.671875 C 3.550781 -0.671875 3.984375 -0.851562 4.265625 -1.21875 C 4.546875 -1.59375 4.6875 -2.007812 4.6875 -2.46875 C 4.6875 -3.007812 4.519531 -3.425781 4.1875 -3.71875 C 3.851562 -4.019531 3.457031 -4.171875 3 -4.171875 C 2.65625 -4.171875 2.359375 -4.101562 2.109375 -3.96875 C 1.867188 -3.84375 1.664062 -3.664062 1.5 -3.4375 L 0.640625 -3.484375 L 1.234375 -7.703125 L 5.3125 -7.703125 L 5.3125 -6.75 L 1.984375 -6.75 L 1.640625 -4.578125 C 1.828125 -4.710938 2.003906 -4.816406 2.171875 -4.890625 C 2.460938 -5.003906 2.796875 -5.0625 3.171875 -5.0625 C 3.890625 -5.0625 4.5 -4.828125 5 -4.359375 C 5.5 -3.898438 5.75 -3.316406 5.75 -2.609375 C 5.75 -1.867188 5.519531 -1.210938 5.0625 -0.640625 C 4.601562 -0.078125 3.875 0.203125 2.875 0.203125 C 2.238281 0.203125 1.675781 0.0234375 1.1875 -0.328125 C 0.695312 -0.691406 0.421875 -1.25 0.359375 -2 Z M 1.390625 -2 "/>
</g>
<g id="glyph-0-6">
<path d="M 2.984375 -6.03125 C 3.640625 -6.03125 4.175781 -5.867188 4.59375 -5.546875 C 5.007812 -5.222656 5.257812 -4.671875 5.34375 -3.890625 L 4.375 -3.890625 C 4.320312 -4.253906 4.191406 -4.550781 3.984375 -4.78125 C 3.773438 -5.019531 3.441406 -5.140625 2.984375 -5.140625 C 2.359375 -5.140625 1.910156 -4.835938 1.640625 -4.234375 C 1.460938 -3.828125 1.375 -3.332031 1.375 -2.75 C 1.375 -2.164062 1.492188 -1.671875 1.734375 -1.265625 C 1.984375 -0.867188 2.378906 -0.671875 2.921875 -0.671875 C 3.328125 -0.671875 3.648438 -0.796875 3.890625 -1.046875 C 4.128906 -1.296875 4.289062 -1.640625 4.375 -2.078125 L 5.34375 -2.078125 C 5.226562 -1.296875 4.953125 -0.722656 4.515625 -0.359375 C 4.078125 -0.00390625 3.519531 0.171875 2.84375 0.171875 C 2.070312 0.171875 1.457031 -0.109375 1 -0.671875 C 0.550781 -1.234375 0.328125 -1.929688 0.328125 -2.765625 C 0.328125 -3.796875 0.578125 -4.597656 1.078125 -5.171875 C 1.578125 -5.742188 2.210938 -6.03125 2.984375 -6.03125 Z M 2.828125 -6 Z M 2.828125 -6 "/>
</g>
<g id="glyph-0-7">
<path d="M 0.75 -8.03125 L 1.734375 -8.03125 L 1.734375 0 L 0.75 0 Z M 0.75 -8.03125 "/>
</g>
<g id="glyph-0-8">
<path d="M 3.15625 -5.984375 C 3.570312 -5.984375 3.972656 -5.882812 4.359375 -5.6875 C 4.753906 -5.5 5.054688 -5.25 5.265625 -4.9375 C 5.460938 -4.644531 5.59375 -4.300781 5.65625 -3.90625 C 5.71875 -3.632812 5.75 -3.203125 5.75 -2.609375 L 1.453125 -2.609375 C 1.472656 -2.015625 1.613281 -1.535156 1.875 -1.171875 C 2.132812 -0.816406 2.539062 -0.640625 3.09375 -0.640625 C 3.601562 -0.640625 4.015625 -0.8125 4.328125 -1.15625 C 4.492188 -1.351562 4.613281 -1.582031 4.6875 -1.84375 L 5.65625 -1.84375 C 5.632812 -1.625 5.550781 -1.378906 5.40625 -1.109375 C 5.257812 -0.847656 5.097656 -0.632812 4.921875 -0.46875 C 4.617188 -0.175781 4.25 0.0195312 3.8125 0.125 C 3.570312 0.175781 3.304688 0.203125 3.015625 0.203125 C 2.285156 0.203125 1.664062 -0.0625 1.15625 -0.59375 C 0.644531 -1.125 0.390625 -1.863281 0.390625 -2.8125 C 0.390625 -3.757812 0.644531 -4.523438 1.15625 -5.109375 C 1.664062 -5.691406 2.332031 -5.984375 3.15625 -5.984375 Z M 4.734375 -3.390625 C 4.691406 -3.816406 4.597656 -4.160156 4.453125 -4.421875 C 4.179688 -4.890625 3.734375 -5.125 3.109375 -5.125 C 2.648438 -5.125 2.265625 -4.960938 1.953125 -4.640625 C 1.648438 -4.316406 1.492188 -3.898438 1.484375 -3.390625 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-9">
<path d="M 1.484375 -1.5625 C 1.484375 -1.269531 1.582031 -1.039062 1.78125 -0.875 C 1.988281 -0.71875 2.238281 -0.640625 2.53125 -0.640625 C 2.875 -0.640625 3.207031 -0.71875 3.53125 -0.875 C 4.082031 -1.144531 4.359375 -1.582031 4.359375 -2.1875 L 4.359375 -2.984375 C 4.234375 -2.898438 4.078125 -2.832031 3.890625 -2.78125 C 3.703125 -2.738281 3.515625 -2.707031 3.328125 -2.6875 L 2.734375 -2.609375 C 2.378906 -2.554688 2.113281 -2.476562 1.9375 -2.375 C 1.632812 -2.207031 1.484375 -1.9375 1.484375 -1.5625 Z M 3.859375 -3.546875 C 4.085938 -3.578125 4.238281 -3.671875 4.3125 -3.828125 C 4.351562 -3.921875 4.375 -4.050781 4.375 -4.21875 C 4.375 -4.550781 4.253906 -4.789062 4.015625 -4.9375 C 3.785156 -5.09375 3.445312 -5.171875 3 -5.171875 C 2.476562 -5.171875 2.113281 -5.03125 1.90625 -4.75 C 1.78125 -4.601562 1.703125 -4.375 1.671875 -4.0625 L 0.75 -4.0625 C 0.769531 -4.789062 1.003906 -5.296875 1.453125 -5.578125 C 1.898438 -5.859375 2.421875 -6 3.015625 -6 C 3.703125 -6 4.265625 -5.867188 4.703125 -5.609375 C 5.128906 -5.347656 5.34375 -4.9375 5.34375 -4.375 L 5.34375 -1 C 5.34375 -0.90625 5.363281 -0.828125 5.40625 -0.765625 C 5.445312 -0.703125 5.535156 -0.671875 5.671875 -0.671875 C 5.710938 -0.671875 5.757812 -0.671875 5.8125 -0.671875 C 5.863281 -0.679688 5.921875 -0.691406 5.984375 -0.703125 L 5.984375 0.03125 C 5.835938 0.0703125 5.722656 0.0976562 5.640625 0.109375 C 5.554688 0.117188 5.445312 0.125 5.3125 0.125 C 4.96875 0.125 4.722656 0.00390625 4.578125 -0.234375 C 4.492188 -0.359375 4.4375 -0.539062 4.40625 -0.78125 C 4.207031 -0.519531 3.914062 -0.289062 3.53125 -0.09375 C 3.15625 0.101562 2.742188 0.203125 2.296875 0.203125 C 1.753906 0.203125 1.3125 0.0351562 0.96875 -0.296875 C 0.625 -0.628906 0.453125 -1.039062 0.453125 -1.53125 C 0.453125 -2.082031 0.617188 -2.503906 0.953125 -2.796875 C 1.296875 -3.097656 1.742188 -3.285156 2.296875 -3.359375 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-10">
<path d="M 0.75 -5.859375 L 1.6875 -5.859375 L 1.6875 -4.84375 C 1.757812 -5.039062 1.945312 -5.28125 2.25 -5.5625 C 2.550781 -5.84375 2.894531 -5.984375 3.28125 -5.984375 C 3.300781 -5.984375 3.332031 -5.984375 3.375 -5.984375 C 3.414062 -5.984375 3.488281 -5.976562 3.59375 -5.96875 L 3.59375 -4.921875 C 3.539062 -4.929688 3.488281 -4.9375 3.4375 -4.9375 C 3.382812 -4.945312 3.332031 -4.953125 3.28125 -4.953125 C 2.78125 -4.953125 2.394531 -4.789062 2.125 -4.46875 C 1.863281 -4.15625 1.734375 -3.789062 1.734375 -3.375 L 1.734375 0 L 0.75 0 Z M 0.75 -5.859375 "/>
</g>
<g id="glyph-0-11">
<path d="M 1.3125 -1.84375 C 1.332031 -1.507812 1.410156 -1.253906 1.546875 -1.078125 C 1.796875 -0.765625 2.226562 -0.609375 2.84375 -0.609375 C 3.207031 -0.609375 3.523438 -0.6875 3.796875 -0.84375 C 4.078125 -1 4.21875 -1.242188 4.21875 -1.578125 C 4.21875 -1.828125 4.109375 -2.019531 3.890625 -2.15625 C 3.742188 -2.238281 3.460938 -2.332031 3.046875 -2.4375 L 2.265625 -2.625 C 1.765625 -2.75 1.394531 -2.890625 1.15625 -3.046875 C 0.738281 -3.316406 0.53125 -3.6875 0.53125 -4.15625 C 0.53125 -4.707031 0.726562 -5.15625 1.125 -5.5 C 1.519531 -5.84375 2.054688 -6.015625 2.734375 -6.015625 C 3.617188 -6.015625 4.253906 -5.753906 4.640625 -5.234375 C 4.890625 -4.910156 5.007812 -4.554688 5 -4.171875 L 4.0625 -4.171875 C 4.050781 -4.390625 3.972656 -4.59375 3.828125 -4.78125 C 3.609375 -5.039062 3.21875 -5.171875 2.65625 -5.171875 C 2.28125 -5.171875 2 -5.097656 1.8125 -4.953125 C 1.625 -4.816406 1.53125 -4.628906 1.53125 -4.390625 C 1.53125 -4.140625 1.65625 -3.9375 1.90625 -3.78125 C 2.050781 -3.6875 2.265625 -3.609375 2.546875 -3.546875 L 3.203125 -3.375 C 3.910156 -3.207031 4.382812 -3.046875 4.625 -2.890625 C 5.007812 -2.628906 5.203125 -2.234375 5.203125 -1.703125 C 5.203125 -1.171875 5.003906 -0.71875 4.609375 -0.34375 C 4.210938 0.0273438 3.609375 0.21875 2.796875 0.21875 C 1.921875 0.21875 1.300781 0.0195312 0.9375 -0.375 C 0.582031 -0.769531 0.390625 -1.257812 0.359375 -1.84375 Z M 2.765625 -6 Z M 2.765625 -6 "/>
</g>
<g id="glyph-0-12">
<path d="M 0.921875 -7.5 L 1.921875 -7.5 L 1.921875 -5.859375 L 2.84375 -5.859375 L 2.84375 -5.046875 L 1.921875 -5.046875 L 1.921875 -1.234375 C 1.921875 -1.023438 1.988281 -0.890625 2.125 -0.828125 C 2.195312 -0.785156 2.320312 -0.765625 2.5 -0.765625 C 2.550781 -0.765625 2.601562 -0.765625 2.65625 -0.765625 C 2.707031 -0.765625 2.769531 -0.769531 2.84375 -0.78125 L 2.84375 0 C 2.738281 0.03125 2.625 0.0507812 2.5 0.0625 C 2.375 0.0820312 2.238281 0.09375 2.09375 0.09375 C 1.632812 0.09375 1.320312 -0.0195312 1.15625 -0.25 C 1 -0.488281 0.921875 -0.796875 0.921875 -1.171875 L 0.921875 -5.046875 L 0.125 -5.046875 L 0.125 -5.859375 L 0.921875 -5.859375 Z M 0.921875 -7.5 "/>
</g>
<g id="glyph-0-13">
<path d="M 1.34375 -2.859375 C 1.34375 -2.234375 1.472656 -1.707031 1.734375 -1.28125 C 2.003906 -0.863281 2.4375 -0.65625 3.03125 -0.65625 C 3.476562 -0.65625 3.847656 -0.847656 4.140625 -1.234375 C 4.441406 -1.628906 4.59375 -2.191406 4.59375 -2.921875 C 4.59375 -3.660156 4.441406 -4.207031 4.140625 -4.5625 C 3.835938 -4.925781 3.460938 -5.109375 3.015625 -5.109375 C 2.515625 -5.109375 2.109375 -4.914062 1.796875 -4.53125 C 1.492188 -4.15625 1.34375 -3.597656 1.34375 -2.859375 Z M 2.828125 -5.96875 C 3.273438 -5.96875 3.648438 -5.867188 3.953125 -5.671875 C 4.128906 -5.566406 4.328125 -5.378906 4.546875 -5.109375 L 4.546875 -8.0625 L 5.5 -8.0625 L 5.5 0 L 4.609375 0 L 4.609375 -0.8125 C 4.378906 -0.457031 4.109375 -0.195312 3.796875 -0.03125 C 3.484375 0.121094 3.125 0.203125 2.71875 0.203125 C 2.0625 0.203125 1.492188 -0.0664062 1.015625 -0.609375 C 0.546875 -1.160156 0.3125 -1.894531 0.3125 -2.8125 C 0.3125 -3.664062 0.523438 -4.40625 0.953125 -5.03125 C 1.390625 -5.65625 2.015625 -5.96875 2.828125 -5.96875 Z M 2.828125 -5.96875 "/>
</g>
<g id="glyph-0-14">
</g>
<g id="glyph-0-15">
<path d="M 3.046875 -0.640625 C 3.703125 -0.640625 4.148438 -0.882812 4.390625 -1.375 C 4.628906 -1.863281 4.75 -2.414062 4.75 -3.03125 C 4.75 -3.570312 4.660156 -4.015625 4.484375 -4.359375 C 4.210938 -4.898438 3.738281 -5.171875 3.0625 -5.171875 C 2.457031 -5.171875 2.015625 -4.941406 1.734375 -4.484375 C 1.460938 -4.023438 1.328125 -3.46875 1.328125 -2.8125 C 1.328125 -2.1875 1.460938 -1.664062 1.734375 -1.25 C 2.015625 -0.84375 2.453125 -0.640625 3.046875 -0.640625 Z M 3.078125 -6.03125 C 3.835938 -6.03125 4.476562 -5.773438 5 -5.265625 C 5.519531 -4.765625 5.78125 -4.023438 5.78125 -3.046875 C 5.78125 -2.109375 5.550781 -1.328125 5.09375 -0.703125 C 4.632812 -0.0859375 3.921875 0.21875 2.953125 0.21875 C 2.148438 0.21875 1.507812 -0.0507812 1.03125 -0.59375 C 0.5625 -1.144531 0.328125 -1.878906 0.328125 -2.796875 C 0.328125 -3.785156 0.578125 -4.570312 1.078125 -5.15625 C 1.578125 -5.738281 2.242188 -6.03125 3.078125 -6.03125 Z M 3.046875 -6 Z M 3.046875 -6 "/>
</g>
<g id="glyph-0-16">
<path d="M 1.703125 -5.859375 L 1.703125 -1.96875 C 1.703125 -1.664062 1.75 -1.421875 1.84375 -1.234375 C 2.019531 -0.890625 2.347656 -0.71875 2.828125 -0.71875 C 3.515625 -0.71875 3.984375 -1.019531 4.234375 -1.625 C 4.367188 -1.957031 4.4375 -2.410156 4.4375 -2.984375 L 4.4375 -5.859375 L 5.421875 -5.859375 L 5.421875 0 L 4.484375 0 L 4.5 -0.859375 C 4.375 -0.640625 4.210938 -0.453125 4.015625 -0.296875 C 3.640625 0.00390625 3.1875 0.15625 2.65625 0.15625 C 1.820312 0.15625 1.253906 -0.117188 0.953125 -0.671875 C 0.785156 -0.972656 0.703125 -1.375 0.703125 -1.875 L 0.703125 -5.859375 Z M 3.0625 -6 Z M 3.0625 -6 "/>
</g>
<g id="glyph-0-17">
<path d="M 0.640625 -8.0625 L 1.609375 -8.0625 L 1.609375 -5.140625 C 1.816406 -5.421875 2.070312 -5.632812 2.375 -5.78125 C 2.675781 -5.9375 3 -6.015625 3.34375 -6.015625 C 4.070312 -6.015625 4.660156 -5.757812 5.109375 -5.25 C 5.566406 -4.75 5.796875 -4.015625 5.796875 -3.046875 C 5.796875 -2.117188 5.570312 -1.347656 5.125 -0.734375 C 4.675781 -0.117188 4.054688 0.1875 3.265625 0.1875 C 2.816406 0.1875 2.441406 0.0742188 2.140625 -0.140625 C 1.953125 -0.265625 1.753906 -0.46875 1.546875 -0.75 L 1.546875 0 L 0.640625 0 Z M 3.203125 -0.6875 C 3.734375 -0.6875 4.128906 -0.894531 4.390625 -1.3125 C 4.660156 -1.738281 4.796875 -2.300781 4.796875 -3 C 4.796875 -3.613281 4.660156 -4.117188 4.390625 -4.515625 C 4.128906 -4.921875 3.742188 -5.125 3.234375 -5.125 C 2.785156 -5.125 2.390625 -4.957031 2.046875 -4.625 C 1.710938 -4.300781 1.546875 -3.757812 1.546875 -3 C 1.546875 -2.445312 1.613281 -2 1.75 -1.65625 C 2.007812 -1.007812 2.492188 -0.6875 3.203125 -0.6875 Z M 3.203125 -0.6875 "/>
</g>
<g id="glyph-0-18">
<path d="M 0.703125 -8.03125 L 1.640625 -8.03125 L 1.640625 -3.375 L 4.171875 -5.859375 L 5.4375 -5.859375 L 3.1875 -3.671875 L 5.5625 0 L 4.296875 0 L 2.46875 -2.953125 L 1.640625 -2.203125 L 1.640625 0 L 0.703125 0 Z M 0.703125 -8.03125 "/>
</g>
<g id="glyph-0-19">
<path d="M 0.71875 -5.859375 L 1.65625 -5.859375 L 1.65625 -5.03125 C 1.9375 -5.375 2.226562 -5.617188 2.53125 -5.765625 C 2.84375 -5.910156 3.191406 -5.984375 3.578125 -5.984375 C 4.398438 -5.984375 4.957031 -5.695312 5.25 -5.125 C 5.414062 -4.800781 5.5 -4.347656 5.5 -3.765625 L 5.5 0 L 4.5 0 L 4.5 -3.6875 C 4.5 -4.050781 4.445312 -4.34375 4.34375 -4.5625 C 4.164062 -4.925781 3.847656 -5.109375 3.390625 -5.109375 C 3.148438 -5.109375 2.957031 -5.082031 2.8125 -5.03125 C 2.539062 -4.945312 2.300781 -4.785156 2.09375 -4.546875 C 1.9375 -4.359375 1.832031 -4.160156 1.78125 -3.953125 C 1.726562 -3.742188 1.703125 -3.445312 1.703125 -3.0625 L 1.703125 0 L 0.71875 0 Z M 3.03125 -6 Z M 3.03125 -6 "/>
</g>
<g id="glyph-0-20">
<path d="M 0.71875 -5.828125 L 1.71875 -5.828125 L 1.71875 0 L 0.71875 0 Z M 0.71875 -8.03125 L 1.71875 -8.03125 L 1.71875 -6.921875 L 0.71875 -6.921875 Z M 0.71875 -8.03125 "/>
</g>
<g id="glyph-0-21">
<path d="M 4.375 -5.859375 L 5.46875 -5.859375 C 5.332031 -5.484375 5.023438 -4.625 4.546875 -3.28125 C 4.191406 -2.28125 3.894531 -1.460938 3.65625 -0.828125 C 3.082031 0.667969 2.675781 1.582031 2.4375 1.90625 C 2.207031 2.238281 1.804688 2.40625 1.234375 2.40625 C 1.097656 2.40625 0.992188 2.398438 0.921875 2.390625 C 0.847656 2.378906 0.753906 2.359375 0.640625 2.328125 L 0.640625 1.421875 C 0.816406 1.472656 0.941406 1.503906 1.015625 1.515625 C 1.085938 1.523438 1.15625 1.53125 1.21875 1.53125 C 1.40625 1.53125 1.539062 1.5 1.625 1.4375 C 1.707031 1.375 1.78125 1.300781 1.84375 1.21875 C 1.851562 1.1875 1.914062 1.035156 2.03125 0.765625 C 2.144531 0.492188 2.226562 0.296875 2.28125 0.171875 L 0.109375 -5.859375 L 1.234375 -5.859375 L 2.796875 -1.09375 Z M 2.796875 -6 Z M 2.796875 -6 "/>
</g>
<g id="glyph-0-22">
<path d="M 1.171875 -5.859375 L 2.296875 -1.234375 L 3.453125 -5.859375 L 4.546875 -5.859375 L 5.703125 -1.265625 L 6.890625 -5.859375 L 7.875 -5.859375 L 6.1875 0 L 5.15625 0 L 3.96875 -4.53125 L 2.8125 0 L 1.78125 0 L 0.09375 -5.859375 Z M 1.171875 -5.859375 "/>
</g>
<g id="glyph-0-23">
<path d="M 0.96875 -6.75 C 0.976562 -7.15625 1.050781 -7.453125 1.1875 -7.640625 C 1.414062 -7.984375 1.859375 -8.15625 2.515625 -8.15625 C 2.578125 -8.15625 2.640625 -8.148438 2.703125 -8.140625 C 2.765625 -8.140625 2.835938 -8.132812 2.921875 -8.125 L 2.921875 -7.234375 C 2.816406 -7.242188 2.742188 -7.25 2.703125 -7.25 C 2.660156 -7.25 2.617188 -7.25 2.578125 -7.25 C 2.273438 -7.25 2.09375 -7.171875 2.03125 -7.015625 C 1.976562 -6.859375 1.953125 -6.460938 1.953125 -5.828125 L 2.921875 -5.828125 L 2.921875 -5.046875 L 1.9375 -5.046875 L 1.9375 0 L 0.96875 0 L 0.96875 -5.046875 L 0.15625 -5.046875 L 0.15625 -5.828125 L 0.96875 -5.828125 Z M 0.96875 -6.75 "/>
</g>
<g id="glyph-1-0">
<path d="M 3.71875 -7.53125 C 4.550781 -7.53125 5.222656 -7.328125 5.734375 -6.921875 C 6.253906 -6.523438 6.566406 -5.835938 6.671875 -4.859375 L 5.46875 -4.859375 C 5.394531 -5.304688 5.226562 -5.679688 4.96875 -5.984375 C 4.71875 -6.285156 4.300781 -6.4375 3.71875 -6.4375 C 2.9375 -6.4375 2.378906 -6.050781 2.046875 -5.28125 C 1.828125 -4.789062 1.71875 -4.179688 1.71875 -3.453125 C 1.71875 -2.710938 1.867188 -2.09375 2.171875 -1.59375 C 2.484375 -1.09375 2.972656 -0.84375 3.640625 -0.84375 C 4.148438 -0.84375 4.554688 -1 4.859375 -1.3125 C 5.160156 -1.625 5.363281 -2.050781 5.46875 -2.59375 L 6.671875 -2.59375 C 6.535156 -1.625 6.191406 -0.910156 5.640625 -0.453125 C 5.097656 -0.00390625 4.398438 0.21875 3.546875 0.21875 C 2.585938 0.21875 1.820312 -0.128906 1.25 -0.828125 C 0.6875 -1.535156 0.40625 -2.410156 0.40625 -3.453125 C 0.40625 -4.742188 0.71875 -5.742188 1.34375 -6.453125 C 1.96875 -7.171875 2.757812 -7.53125 3.71875 -7.53125 Z M 3.53125 -7.5 Z M 3.53125 -7.5 "/>
</g>
<g id="glyph-1-1">
<path d="M 3.8125 -0.796875 C 4.625 -0.796875 5.179688 -1.101562 5.484375 -1.71875 C 5.785156 -2.332031 5.9375 -3.019531 5.9375 -3.78125 C 5.9375 -4.46875 5.828125 -5.023438 5.609375 -5.453125 C 5.265625 -6.117188 4.671875 -6.453125 3.828125 -6.453125 C 3.066406 -6.453125 2.515625 -6.164062 2.171875 -5.59375 C 1.835938 -5.019531 1.671875 -4.328125 1.671875 -3.515625 C 1.671875 -2.742188 1.835938 -2.097656 2.171875 -1.578125 C 2.515625 -1.054688 3.0625 -0.796875 3.8125 -0.796875 Z M 3.859375 -7.53125 C 4.796875 -7.53125 5.585938 -7.210938 6.234375 -6.578125 C 6.890625 -5.953125 7.21875 -5.03125 7.21875 -3.8125 C 7.21875 -2.632812 6.929688 -1.660156 6.359375 -0.890625 C 5.785156 -0.117188 4.894531 0.265625 3.6875 0.265625 C 2.6875 0.265625 1.890625 -0.0703125 1.296875 -0.75 C 0.703125 -1.4375 0.40625 -2.351562 0.40625 -3.5 C 0.40625 -4.726562 0.71875 -5.707031 1.34375 -6.4375 C 1.96875 -7.164062 2.804688 -7.53125 3.859375 -7.53125 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-2">
<path d="M 2.140625 -7.328125 L 2.140625 -2.46875 C 2.140625 -2.09375 2.195312 -1.785156 2.3125 -1.546875 C 2.53125 -1.109375 2.9375 -0.890625 3.53125 -0.890625 C 4.382812 -0.890625 4.96875 -1.269531 5.28125 -2.03125 C 5.445312 -2.445312 5.53125 -3.007812 5.53125 -3.71875 L 5.53125 -7.328125 L 6.765625 -7.328125 L 6.765625 0 L 5.609375 0 L 5.625 -1.078125 C 5.457031 -0.796875 5.257812 -0.5625 5.03125 -0.375 C 4.5625 0.0078125 3.988281 0.203125 3.3125 0.203125 C 2.269531 0.203125 1.5625 -0.144531 1.1875 -0.84375 C 0.976562 -1.21875 0.875 -1.71875 0.875 -2.34375 L 0.875 -7.328125 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
</g>
<g id="glyph-1-3">
<path d="M 0.90625 -7.328125 L 2.078125 -7.328125 L 2.078125 -6.28125 C 2.421875 -6.707031 2.785156 -7.015625 3.171875 -7.203125 C 3.554688 -7.390625 3.988281 -7.484375 4.46875 -7.484375 C 5.5 -7.484375 6.195312 -7.125 6.5625 -6.40625 C 6.769531 -6 6.875 -5.429688 6.875 -4.703125 L 6.875 0 L 5.625 0 L 5.625 -4.609375 C 5.625 -5.054688 5.554688 -5.414062 5.421875 -5.6875 C 5.203125 -6.144531 4.804688 -6.375 4.234375 -6.375 C 3.941406 -6.375 3.703125 -6.347656 3.515625 -6.296875 C 3.179688 -6.191406 2.882812 -5.988281 2.625 -5.6875 C 2.414062 -5.445312 2.28125 -5.195312 2.21875 -4.9375 C 2.164062 -4.675781 2.140625 -4.304688 2.140625 -3.828125 L 2.140625 0 L 0.90625 0 Z M 3.796875 -7.5 Z M 3.796875 -7.5 "/>
</g>
<g id="glyph-1-4">
<path d="M 1.15625 -9.359375 L 2.390625 -9.359375 L 2.390625 -7.328125 L 3.5625 -7.328125 L 3.5625 -6.3125 L 2.390625 -6.3125 L 2.390625 -1.53125 C 2.390625 -1.28125 2.476562 -1.113281 2.65625 -1.03125 C 2.75 -0.976562 2.90625 -0.953125 3.125 -0.953125 C 3.1875 -0.953125 3.25 -0.953125 3.3125 -0.953125 C 3.382812 -0.953125 3.46875 -0.957031 3.5625 -0.96875 L 3.5625 0 C 3.414062 0.0390625 3.265625 0.0664062 3.109375 0.078125 C 2.960938 0.0976562 2.800781 0.109375 2.625 0.109375 C 2.050781 0.109375 1.660156 -0.0351562 1.453125 -0.328125 C 1.253906 -0.617188 1.15625 -1 1.15625 -1.46875 L 1.15625 -6.3125 L 0.15625 -6.3125 L 0.15625 -7.328125 L 1.15625 -7.328125 Z M 1.15625 -9.359375 "/>
</g>
<g id="glyph-1-5">
<path d="M 1.46875 -7.328125 L 2.875 -1.546875 L 4.3125 -7.328125 L 5.6875 -7.328125 L 7.125 -1.59375 L 8.625 -7.328125 L 9.84375 -7.328125 L 7.71875 0 L 6.453125 0 L 4.953125 -5.671875 L 3.515625 0 L 2.234375 0 L 0.125 -7.328125 Z M 1.46875 -7.328125 "/>
</g>
<g id="glyph-1-6">
<path d="M 3.953125 -7.484375 C 4.472656 -7.484375 4.972656 -7.359375 5.453125 -7.109375 C 5.941406 -6.867188 6.316406 -6.554688 6.578125 -6.171875 C 6.828125 -5.804688 6.988281 -5.375 7.0625 -4.875 C 7.132812 -4.539062 7.171875 -4.003906 7.171875 -3.265625 L 1.8125 -3.265625 C 1.832031 -2.523438 2.003906 -1.929688 2.328125 -1.484375 C 2.660156 -1.035156 3.171875 -0.8125 3.859375 -0.8125 C 4.503906 -0.8125 5.019531 -1.019531 5.40625 -1.4375 C 5.625 -1.6875 5.773438 -1.972656 5.859375 -2.296875 L 7.078125 -2.296875 C 7.046875 -2.023438 6.9375 -1.722656 6.75 -1.390625 C 6.570312 -1.066406 6.375 -0.800781 6.15625 -0.59375 C 5.78125 -0.226562 5.316406 0.0195312 4.765625 0.15625 C 4.472656 0.226562 4.140625 0.265625 3.765625 0.265625 C 2.847656 0.265625 2.070312 -0.0664062 1.4375 -0.734375 C 0.8125 -1.398438 0.5 -2.328125 0.5 -3.515625 C 0.5 -4.691406 0.816406 -5.644531 1.453125 -6.375 C 2.085938 -7.113281 2.921875 -7.484375 3.953125 -7.484375 Z M 5.90625 -4.25 C 5.863281 -4.78125 5.75 -5.207031 5.5625 -5.53125 C 5.226562 -6.113281 4.664062 -6.40625 3.875 -6.40625 C 3.3125 -6.40625 2.835938 -6.203125 2.453125 -5.796875 C 2.066406 -5.390625 1.863281 -4.875 1.84375 -4.25 Z M 3.828125 -7.5 Z M 3.828125 -7.5 "/>
</g>
<g id="glyph-1-7">
<path d="M 1.84375 -1.953125 C 1.84375 -1.597656 1.972656 -1.316406 2.234375 -1.109375 C 2.492188 -0.898438 2.800781 -0.796875 3.15625 -0.796875 C 3.59375 -0.796875 4.015625 -0.894531 4.421875 -1.09375 C 5.097656 -1.425781 5.4375 -1.972656 5.4375 -2.734375 L 5.4375 -3.71875 C 5.289062 -3.625 5.097656 -3.546875 4.859375 -3.484375 C 4.617188 -3.421875 4.382812 -3.375 4.15625 -3.34375 L 3.421875 -3.25 C 2.972656 -3.195312 2.632812 -3.101562 2.40625 -2.96875 C 2.03125 -2.757812 1.84375 -2.421875 1.84375 -1.953125 Z M 4.828125 -4.4375 C 5.109375 -4.46875 5.296875 -4.585938 5.390625 -4.796875 C 5.441406 -4.898438 5.46875 -5.054688 5.46875 -5.265625 C 5.46875 -5.679688 5.316406 -5.984375 5.015625 -6.171875 C 4.722656 -6.359375 4.300781 -6.453125 3.75 -6.453125 C 3.101562 -6.453125 2.644531 -6.28125 2.375 -5.9375 C 2.226562 -5.75 2.128906 -5.46875 2.078125 -5.09375 L 0.9375 -5.09375 C 0.957031 -5.988281 1.25 -6.613281 1.8125 -6.96875 C 2.375 -7.320312 3.03125 -7.5 3.78125 -7.5 C 4.632812 -7.5 5.332031 -7.332031 5.875 -7 C 6.40625 -6.675781 6.671875 -6.164062 6.671875 -5.46875 L 6.671875 -1.265625 C 6.671875 -1.128906 6.695312 -1.019531 6.75 -0.9375 C 6.800781 -0.863281 6.910156 -0.828125 7.078125 -0.828125 C 7.140625 -0.828125 7.203125 -0.832031 7.265625 -0.84375 C 7.335938 -0.851562 7.410156 -0.863281 7.484375 -0.875 L 7.484375 0.03125 C 7.296875 0.0820312 7.148438 0.113281 7.046875 0.125 C 6.941406 0.144531 6.804688 0.15625 6.640625 0.15625 C 6.210938 0.15625 5.90625 0.00390625 5.71875 -0.296875 C 5.613281 -0.453125 5.539062 -0.675781 5.5 -0.96875 C 5.25 -0.644531 4.890625 -0.359375 4.421875 -0.109375 C 3.953125 0.128906 3.4375 0.25 2.875 0.25 C 2.195312 0.25 1.640625 0.0429688 1.203125 -0.359375 C 0.773438 -0.773438 0.5625 -1.296875 0.5625 -1.921875 C 0.5625 -2.597656 0.769531 -3.125 1.1875 -3.5 C 1.613281 -3.875 2.171875 -4.101562 2.859375 -4.1875 Z M 3.8125 -7.5 Z M 3.8125 -7.5 "/>
</g>
<g id="glyph-1-8">
<path d="M 0.90625 -10.078125 L 2.140625 -10.078125 L 2.140625 -6.328125 C 2.429688 -6.703125 2.691406 -6.960938 2.921875 -7.109375 C 3.316406 -7.367188 3.8125 -7.5 4.40625 -7.5 C 5.46875 -7.5 6.1875 -7.128906 6.5625 -6.390625 C 6.769531 -5.984375 6.875 -5.421875 6.875 -4.703125 L 6.875 0 L 5.609375 0 L 5.609375 -4.609375 C 5.609375 -5.148438 5.539062 -5.546875 5.40625 -5.796875 C 5.175781 -6.203125 4.753906 -6.40625 4.140625 -6.40625 C 3.628906 -6.40625 3.164062 -6.226562 2.75 -5.875 C 2.34375 -5.519531 2.140625 -4.859375 2.140625 -3.890625 L 2.140625 0 L 0.90625 0 Z M 0.90625 -10.078125 "/>
</g>
<g id="glyph-1-9">
<path d="M 0.9375 -7.328125 L 2.109375 -7.328125 L 2.109375 -6.0625 C 2.203125 -6.300781 2.4375 -6.597656 2.8125 -6.953125 C 3.1875 -7.304688 3.617188 -7.484375 4.109375 -7.484375 C 4.128906 -7.484375 4.164062 -7.476562 4.21875 -7.46875 C 4.269531 -7.46875 4.363281 -7.460938 4.5 -7.453125 L 4.5 -6.15625 C 4.425781 -6.164062 4.359375 -6.171875 4.296875 -6.171875 C 4.234375 -6.179688 4.164062 -6.1875 4.09375 -6.1875 C 3.476562 -6.1875 3.003906 -5.984375 2.671875 -5.578125 C 2.335938 -5.179688 2.171875 -4.726562 2.171875 -4.21875 L 2.171875 0 L 0.9375 0 Z M 0.9375 -7.328125 "/>
</g>
<g id="glyph-1-10">
<path d="M 0 1.75 L 0 1.0625 L 7.78125 1.0625 L 7.78125 1.75 Z M 0 1.75 "/>
</g>
<g id="glyph-1-11">
<path d="M 5.46875 -7.328125 L 6.84375 -7.328125 C 6.664062 -6.859375 6.28125 -5.785156 5.6875 -4.109375 C 5.238281 -2.847656 4.863281 -1.820312 4.5625 -1.03125 C 3.851562 0.832031 3.351562 1.96875 3.0625 2.375 C 2.769531 2.789062 2.265625 3 1.546875 3 C 1.378906 3 1.25 2.988281 1.15625 2.96875 C 1.0625 2.957031 0.945312 2.9375 0.8125 2.90625 L 0.8125 1.78125 C 1.019531 1.84375 1.171875 1.878906 1.265625 1.890625 C 1.367188 1.910156 1.457031 1.921875 1.53125 1.921875 C 1.75 1.921875 1.910156 1.878906 2.015625 1.796875 C 2.128906 1.722656 2.222656 1.632812 2.296875 1.53125 C 2.316406 1.488281 2.394531 1.296875 2.53125 0.953125 C 2.675781 0.617188 2.78125 0.375 2.84375 0.21875 L 0.140625 -7.328125 L 1.53125 -7.328125 L 3.5 -1.359375 Z M 3.5 -7.5 Z M 3.5 -7.5 "/>
</g>
<g id="glyph-1-12">
<path d="M 4 -0.828125 C 4.570312 -0.828125 5.046875 -1.066406 5.421875 -1.546875 C 5.804688 -2.023438 6 -2.742188 6 -3.703125 C 6 -4.285156 5.914062 -4.785156 5.75 -5.203125 C 5.425781 -6.015625 4.84375 -6.421875 4 -6.421875 C 3.144531 -6.421875 2.5625 -5.992188 2.25 -5.140625 C 2.070312 -4.679688 1.984375 -4.101562 1.984375 -3.40625 C 1.984375 -2.84375 2.070312 -2.363281 2.25 -1.96875 C 2.5625 -1.207031 3.144531 -0.828125 4 -0.828125 Z M 0.8125 -7.28125 L 2 -7.28125 L 2 -6.3125 C 2.25 -6.644531 2.519531 -6.90625 2.8125 -7.09375 C 3.226562 -7.363281 3.710938 -7.5 4.265625 -7.5 C 5.097656 -7.5 5.800781 -7.179688 6.375 -6.546875 C 6.957031 -5.910156 7.25 -5.003906 7.25 -3.828125 C 7.25 -2.222656 6.832031 -1.082031 6 -0.40625 C 5.46875 0.0273438 4.851562 0.25 4.15625 0.25 C 3.601562 0.25 3.140625 0.128906 2.765625 -0.109375 C 2.546875 -0.253906 2.300781 -0.492188 2.03125 -0.828125 L 2.03125 2.921875 L 0.8125 2.921875 Z M 0.8125 -7.28125 "/>
</g>
<g id="glyph-2-0">
<path d="M -8.4375 -1.203125 C -8.945312 -1.222656 -9.320312 -1.316406 -9.5625 -1.484375 C -9.976562 -1.765625 -10.1875 -2.316406 -10.1875 -3.140625 C -10.1875 -3.210938 -10.179688 -3.289062 -10.171875 -3.375 C -10.171875 -3.457031 -10.164062 -3.550781 -10.15625 -3.65625 L -9.03125 -3.65625 C -9.039062 -3.53125 -9.046875 -3.4375 -9.046875 -3.375 C -9.054688 -3.320312 -9.0625 -3.269531 -9.0625 -3.21875 C -9.0625 -2.84375 -8.960938 -2.617188 -8.765625 -2.546875 C -8.578125 -2.472656 -8.082031 -2.4375 -7.28125 -2.4375 L -7.28125 -3.65625 L -6.3125 -3.65625 L -6.3125 -2.421875 L 0 -2.421875 L 0 -1.203125 L -6.3125 -1.203125 L -6.3125 -0.1875 L -7.28125 -0.1875 L -7.28125 -1.203125 Z M -8.4375 -1.203125 "/>
</g>
<g id="glyph-2-1">
<path d="M -7.53125 -3.71875 C -7.53125 -4.550781 -7.328125 -5.222656 -6.921875 -5.734375 C -6.523438 -6.253906 -5.835938 -6.566406 -4.859375 -6.671875 L -4.859375 -5.46875 C -5.304688 -5.394531 -5.679688 -5.226562 -5.984375 -4.96875 C -6.285156 -4.71875 -6.4375 -4.300781 -6.4375 -3.71875 C -6.4375 -2.9375 -6.050781 -2.378906 -5.28125 -2.046875 C -4.789062 -1.828125 -4.179688 -1.71875 -3.453125 -1.71875 C -2.710938 -1.71875 -2.09375 -1.867188 -1.59375 -2.171875 C -1.09375 -2.484375 -0.84375 -2.972656 -0.84375 -3.640625 C -0.84375 -4.148438 -1 -4.554688 -1.3125 -4.859375 C -1.625 -5.160156 -2.050781 -5.363281 -2.59375 -5.46875 L -2.59375 -6.671875 C -1.625 -6.535156 -0.910156 -6.191406 -0.453125 -5.640625 C -0.00390625 -5.097656 0.21875 -4.398438 0.21875 -3.546875 C 0.21875 -2.585938 -0.128906 -1.820312 -0.828125 -1.25 C -1.535156 -0.6875 -2.410156 -0.40625 -3.453125 -0.40625 C -4.742188 -0.40625 -5.742188 -0.71875 -6.453125 -1.34375 C -7.171875 -1.96875 -7.53125 -2.757812 -7.53125 -3.71875 Z M -7.5 -3.53125 Z M -7.5 -3.53125 "/>
</g>
<g id="glyph-2-2">
<path d="M -9.359375 -1.15625 L -9.359375 -2.390625 L -7.328125 -2.390625 L -7.328125 -3.5625 L -6.3125 -3.5625 L -6.3125 -2.390625 L -1.53125 -2.390625 C -1.28125 -2.390625 -1.113281 -2.476562 -1.03125 -2.65625 C -0.976562 -2.75 -0.953125 -2.90625 -0.953125 -3.125 C -0.953125 -3.1875 -0.953125 -3.25 -0.953125 -3.3125 C -0.953125 -3.382812 -0.957031 -3.46875 -0.96875 -3.5625 L 0 -3.5625 C 0.0390625 -3.414062 0.0664062 -3.265625 0.078125 -3.109375 C 0.0976562 -2.960938 0.109375 -2.800781 0.109375 -2.625 C 0.109375 -2.050781 -0.0351562 -1.660156 -0.328125 -1.453125 C -0.617188 -1.253906 -1 -1.15625 -1.46875 -1.15625 L -6.3125 -1.15625 L -6.3125 -0.15625 L -7.328125 -0.15625 L -7.328125 -1.15625 Z M -9.359375 -1.15625 "/>
</g>
<g id="glyph-2-3">
<path d="M 1.75 0 L 1.0625 0 L 1.0625 -7.78125 L 1.75 -7.78125 Z M 1.75 0 "/>
</g>
<g id="glyph-2-4">
<path d="M -7.28125 -0.90625 L -7.28125 -2.15625 L 0 -2.15625 L 0 -0.90625 Z M -10.046875 -0.90625 L -10.046875 -2.15625 L -8.640625 -2.15625 L -8.640625 -0.90625 Z M -10.046875 -0.90625 "/>
</g>
<g id="glyph-2-5">
<path d="M -7.328125 -0.90625 L -7.328125 -2.078125 L -6.28125 -2.078125 C -6.707031 -2.421875 -7.015625 -2.785156 -7.203125 -3.171875 C -7.390625 -3.554688 -7.484375 -3.988281 -7.484375 -4.46875 C -7.484375 -5.5 -7.125 -6.195312 -6.40625 -6.5625 C -6 -6.769531 -5.429688 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.625 L -4.609375 -5.625 C -5.054688 -5.625 -5.414062 -5.554688 -5.6875 -5.421875 C -6.144531 -5.203125 -6.375 -4.804688 -6.375 -4.234375 C -6.375 -3.941406 -6.347656 -3.703125 -6.296875 -3.515625 C -6.191406 -3.179688 -5.988281 -2.882812 -5.6875 -2.625 C -5.445312 -2.414062 -5.195312 -2.28125 -4.9375 -2.21875 C -4.675781 -2.164062 -4.304688 -2.140625 -3.828125 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -7.5 -3.796875 Z M -7.5 -3.796875 "/>
</g>
<g id="glyph-2-6">
<path d="M -7.328125 -0.9375 L -7.328125 -2.109375 L -6.0625 -2.109375 C -6.300781 -2.203125 -6.597656 -2.4375 -6.953125 -2.8125 C -7.304688 -3.1875 -7.484375 -3.617188 -7.484375 -4.109375 C -7.484375 -4.128906 -7.476562 -4.164062 -7.46875 -4.21875 C -7.46875 -4.269531 -7.460938 -4.363281 -7.453125 -4.5 L -6.15625 -4.5 C -6.164062 -4.425781 -6.171875 -4.359375 -6.171875 -4.296875 C -6.179688 -4.234375 -6.1875 -4.164062 -6.1875 -4.09375 C -6.1875 -3.476562 -5.984375 -3.003906 -5.578125 -2.671875 C -5.179688 -2.335938 -4.726562 -2.171875 -4.21875 -2.171875 L 0 -2.171875 L 0 -0.9375 Z M -7.328125 -0.9375 "/>
</g>
<g id="glyph-2-7">
<path d="M -7.484375 -3.953125 C -7.484375 -4.472656 -7.359375 -4.972656 -7.109375 -5.453125 C -6.867188 -5.941406 -6.554688 -6.316406 -6.171875 -6.578125 C -5.804688 -6.828125 -5.375 -6.988281 -4.875 -7.0625 C -4.539062 -7.132812 -4.003906 -7.171875 -3.265625 -7.171875 L -3.265625 -1.8125 C -2.523438 -1.832031 -1.929688 -2.003906 -1.484375 -2.328125 C -1.035156 -2.660156 -0.8125 -3.171875 -0.8125 -3.859375 C -0.8125 -4.503906 -1.019531 -5.019531 -1.4375 -5.40625 C -1.6875 -5.625 -1.972656 -5.773438 -2.296875 -5.859375 L -2.296875 -7.078125 C -2.023438 -7.046875 -1.722656 -6.9375 -1.390625 -6.75 C -1.066406 -6.570312 -0.800781 -6.375 -0.59375 -6.15625 C -0.226562 -5.78125 0.0195312 -5.316406 0.15625 -4.765625 C 0.226562 -4.472656 0.265625 -4.140625 0.265625 -3.765625 C 0.265625 -2.847656 -0.0664062 -2.070312 -0.734375 -1.4375 C -1.398438 -0.8125 -2.328125 -0.5 -3.515625 -0.5 C -4.691406 -0.5 -5.644531 -0.816406 -6.375 -1.453125 C -7.113281 -2.085938 -7.484375 -2.921875 -7.484375 -3.953125 Z M -4.25 -5.90625 C -4.78125 -5.863281 -5.207031 -5.75 -5.53125 -5.5625 C -6.113281 -5.226562 -6.40625 -4.664062 -6.40625 -3.875 C -6.40625 -3.3125 -6.203125 -2.835938 -5.796875 -2.453125 C -5.390625 -2.066406 -4.875 -1.863281 -4.25 -1.84375 Z M -7.5 -3.828125 Z M -7.5 -3.828125 "/>
</g>
<g id="glyph-2-8">
<path d="M -3.5625 -1.703125 C -2.925781 -1.703125 -2.394531 -1.789062 -1.96875 -1.96875 C -1.207031 -2.28125 -0.828125 -2.84375 -0.828125 -3.65625 C -0.828125 -4.507812 -1.226562 -5.097656 -2.03125 -5.421875 C -2.46875 -5.597656 -3.03125 -5.6875 -3.71875 -5.6875 C -4.351562 -5.6875 -4.882812 -5.585938 -5.3125 -5.390625 C -6.039062 -5.054688 -6.40625 -4.472656 -6.40625 -3.640625 C -6.40625 -3.109375 -6.171875 -2.648438 -5.703125 -2.265625 C -5.242188 -1.890625 -4.53125 -1.703125 -3.5625 -1.703125 Z M -7.484375 -3.515625 C -7.484375 -4.117188 -7.332031 -4.628906 -7.03125 -5.046875 C -6.863281 -5.273438 -6.617188 -5.492188 -6.296875 -5.703125 L -7.328125 -5.703125 L -7.328125 -6.875 L 2.921875 -6.875 L 2.921875 -5.640625 L -0.84375 -5.640625 C -0.507812 -5.429688 -0.242188 -5.144531 -0.046875 -4.78125 C 0.140625 -4.414062 0.234375 -3.960938 0.234375 -3.421875 C 0.234375 -2.640625 -0.0664062 -1.941406 -0.671875 -1.328125 C -1.285156 -0.710938 -2.21875 -0.40625 -3.46875 -0.40625 C -4.644531 -0.40625 -5.609375 -0.691406 -6.359375 -1.265625 C -7.109375 -1.847656 -7.484375 -2.597656 -7.484375 -3.515625 Z M -7.484375 -3.515625 "/>
</g>
<g id="glyph-2-9">
<path d="M -10.203125 -4.140625 C -8.816406 -3.421875 -7.796875 -2.957031 -7.140625 -2.75 C -6.140625 -2.425781 -4.984375 -2.265625 -3.671875 -2.265625 C -2.359375 -2.265625 -1.15625 -2.445312 -0.0625 -2.8125 C 0.613281 -3.039062 1.585938 -3.488281 2.859375 -4.15625 L 2.859375 -3.34375 C 1.816406 -2.675781 1.148438 -2.257812 0.859375 -2.09375 C 0.578125 -1.9375 0.191406 -1.765625 -0.296875 -1.578125 C -0.972656 -1.328125 -1.695312 -1.148438 -2.46875 -1.046875 C -2.863281 -0.992188 -3.238281 -0.96875 -3.59375 -0.96875 C -4.945312 -0.96875 -6.148438 -1.179688 -7.203125 -1.609375 C -7.867188 -1.878906 -8.867188 -2.4375 -10.203125 -3.28125 Z M -10.203125 -4.140625 "/>
</g>
<g id="glyph-2-10">
<path d="M -7.328125 -1.46875 L -1.546875 -2.875 L -7.328125 -4.3125 L -7.328125 -5.6875 L -1.59375 -7.125 L -7.328125 -8.625 L -7.328125 -9.84375 L 0 -7.71875 L 0 -6.453125 L -5.671875 -4.953125 L 0 -3.515625 L 0 -2.234375 L -7.328125 -0.125 Z M -7.328125 -1.46875 "/>
</g>
<g id="glyph-2-11">
<path d="M -1.953125 -1.84375 C -1.597656 -1.84375 -1.316406 -1.972656 -1.109375 -2.234375 C -0.898438 -2.492188 -0.796875 -2.800781 -0.796875 -3.15625 C -0.796875 -3.59375 -0.894531 -4.015625 -1.09375 -4.421875 C -1.425781 -5.097656 -1.972656 -5.4375 -2.734375 -5.4375 L -3.71875 -5.4375 C -3.625 -5.289062 -3.546875 -5.097656 -3.484375 -4.859375 C -3.421875 -4.617188 -3.375 -4.382812 -3.34375 -4.15625 L -3.25 -3.421875 C -3.195312 -2.972656 -3.101562 -2.632812 -2.96875 -2.40625 C -2.757812 -2.03125 -2.421875 -1.84375 -1.953125 -1.84375 Z M -4.4375 -4.828125 C -4.46875 -5.109375 -4.585938 -5.296875 -4.796875 -5.390625 C -4.898438 -5.441406 -5.054688 -5.46875 -5.265625 -5.46875 C -5.679688 -5.46875 -5.984375 -5.316406 -6.171875 -5.015625 C -6.359375 -4.722656 -6.453125 -4.300781 -6.453125 -3.75 C -6.453125 -3.101562 -6.28125 -2.644531 -5.9375 -2.375 C -5.75 -2.226562 -5.46875 -2.128906 -5.09375 -2.078125 L -5.09375 -0.9375 C -5.988281 -0.957031 -6.613281 -1.25 -6.96875 -1.8125 C -7.320312 -2.375 -7.5 -3.03125 -7.5 -3.78125 C -7.5 -4.632812 -7.332031 -5.332031 -7 -5.875 C -6.675781 -6.40625 -6.164062 -6.671875 -5.46875 -6.671875 L -1.265625 -6.671875 C -1.128906 -6.671875 -1.019531 -6.695312 -0.9375 -6.75 C -0.863281 -6.800781 -0.828125 -6.910156 -0.828125 -7.078125 C -0.828125 -7.140625 -0.832031 -7.203125 -0.84375 -7.265625 C -0.851562 -7.335938 -0.863281 -7.410156 -0.875 -7.484375 L 0.03125 -7.484375 C 0.0820312 -7.296875 0.113281 -7.148438 0.125 -7.046875 C 0.144531 -6.941406 0.15625 -6.804688 0.15625 -6.640625 C 0.15625 -6.210938 0.00390625 -5.90625 -0.296875 -5.71875 C -0.453125 -5.613281 -0.675781 -5.539062 -0.96875 -5.5 C -0.644531 -5.25 -0.359375 -4.890625 -0.109375 -4.421875 C 0.128906 -3.953125 0.25 -3.4375 0.25 -2.875 C 0.25 -2.195312 0.0429688 -1.640625 -0.359375 -1.203125 C -0.773438 -0.773438 -1.296875 -0.5625 -1.921875 -0.5625 C -2.597656 -0.5625 -3.125 -0.769531 -3.5 -1.1875 C -3.875 -1.613281 -4.101562 -2.171875 -4.1875 -2.859375 Z M -7.5 -3.8125 Z M -7.5 -3.8125 "/>
</g>
<g id="glyph-2-12">
<path d="M -10.078125 -0.90625 L -10.078125 -2.140625 L -6.328125 -2.140625 C -6.703125 -2.429688 -6.960938 -2.691406 -7.109375 -2.921875 C -7.367188 -3.316406 -7.5 -3.8125 -7.5 -4.40625 C -7.5 -5.46875 -7.128906 -6.1875 -6.390625 -6.5625 C -5.984375 -6.769531 -5.421875 -6.875 -4.703125 -6.875 L 0 -6.875 L 0 -5.609375 L -4.609375 -5.609375 C -5.148438 -5.609375 -5.546875 -5.539062 -5.796875 -5.40625 C -6.203125 -5.175781 -6.40625 -4.753906 -6.40625 -4.140625 C -6.40625 -3.628906 -6.226562 -3.164062 -5.875 -2.75 C -5.519531 -2.34375 -4.859375 -2.140625 -3.890625 -2.140625 L 0 -2.140625 L 0 -0.90625 Z M -10.078125 -0.90625 "/>
</g>
<g id="glyph-2-13">
<path d="M -7.328125 -5.46875 L -7.328125 -6.84375 C -6.859375 -6.664062 -5.785156 -6.28125 -4.109375 -5.6875 C -2.847656 -5.238281 -1.820312 -4.863281 -1.03125 -4.5625 C 0.832031 -3.851562 1.96875 -3.351562 2.375 -3.0625 C 2.789062 -2.769531 3 -2.265625 3 -1.546875 C 3 -1.378906 2.988281 -1.25 2.96875 -1.15625 C 2.957031 -1.0625 2.9375 -0.945312 2.90625 -0.8125 L 1.78125 -0.8125 C 1.84375 -1.019531 1.878906 -1.171875 1.890625 -1.265625 C 1.910156 -1.367188 1.921875 -1.457031 1.921875 -1.53125 C 1.921875 -1.75 1.878906 -1.910156 1.796875 -2.015625 C 1.722656 -2.128906 1.632812 -2.222656 1.53125 -2.296875 C 1.488281 -2.316406 1.296875 -2.394531 0.953125 -2.53125 C 0.617188 -2.675781 0.375 -2.78125 0.21875 -2.84375 L -7.328125 -0.140625 L -7.328125 -1.53125 L -1.359375 -3.5 Z M -7.5 -3.5 Z M -7.5 -3.5 "/>
</g>
<g id="glyph-2-14">
<path d="M -0.828125 -4 C -0.828125 -4.570312 -1.066406 -5.046875 -1.546875 -5.421875 C -2.023438 -5.804688 -2.742188 -6 -3.703125 -6 C -4.285156 -6 -4.785156 -5.914062 -5.203125 -5.75 C -6.015625 -5.425781 -6.421875 -4.84375 -6.421875 -4 C -6.421875 -3.144531 -5.992188 -2.5625 -5.140625 -2.25 C -4.679688 -2.070312 -4.101562 -1.984375 -3.40625 -1.984375 C -2.84375 -1.984375 -2.363281 -2.070312 -1.96875 -2.25 C -1.207031 -2.5625 -0.828125 -3.144531 -0.828125 -4 Z M -7.28125 -0.8125 L -7.28125 -2 L -6.3125 -2 C -6.644531 -2.25 -6.90625 -2.519531 -7.09375 -2.8125 C -7.363281 -3.226562 -7.5 -3.710938 -7.5 -4.265625 C -7.5 -5.097656 -7.179688 -5.800781 -6.546875 -6.375 C -5.910156 -6.957031 -5.003906 -7.25 -3.828125 -7.25 C -2.222656 -7.25 -1.082031 -6.832031 -0.40625 -6 C 0.0273438 -5.46875 0.25 -4.851562 0.25 -4.15625 C 0.25 -3.601562 0.128906 -3.140625 -0.109375 -2.765625 C -0.253906 -2.546875 -0.492188 -2.300781 -0.828125 -2.03125 L 2.921875 -2.03125 L 2.921875 -0.8125 Z M -7.28125 -0.8125 "/>
</g>
<g id="glyph-2-15">
<path d="M 2.859375 -0.484375 C 1.441406 -1.210938 0.410156 -1.679688 -0.234375 -1.890625 C -1.210938 -2.203125 -2.359375 -2.359375 -3.671875 -2.359375 C -4.992188 -2.359375 -6.203125 -2.175781 -7.296875 -1.8125 C -7.972656 -1.582031 -8.941406 -1.132812 -10.203125 -0.46875 L -10.203125 -1.296875 C -9.085938 -1.992188 -8.394531 -2.414062 -8.125 -2.5625 C -7.863281 -2.71875 -7.503906 -2.878906 -7.046875 -3.046875 C -6.472656 -3.265625 -5.910156 -3.421875 -5.359375 -3.515625 C -4.804688 -3.609375 -4.269531 -3.65625 -3.75 -3.65625 C -2.40625 -3.65625 -1.203125 -3.441406 -0.140625 -3.015625 C 0.535156 -2.742188 1.535156 -2.1875 2.859375 -1.34375 Z M 2.859375 -0.484375 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 35.175781 0 L 324.824219 0 L 324.824219 280 L 35.175781 280 Z M 35.175781 0 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 146.605469 76.402344 L 317.847656 76.402344 L 317.847656 247.644531 L 146.605469 247.644531 Z M 146.605469 76.402344 "/>
</clipPath>
<clipPath id="clip-2">
<path clip-rule="nonzero" d="M 146.605469 76.402344 L 317.847656 76.402344 L 317.847656 247.644531 L 146.605469 247.644531 Z M 146.605469 76.402344 "/>
</clipPath>
</defs>
<rect x="-36" y="-28" width="432" height="336" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<g clip-path="url(#clip-0)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 35.175781 280 L 324.824219 280 L 324.824219 0 L 35.175781 0 Z M 35.175781 280 "/>
</g>
<g clip-path="url(#clip-1)">
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 146.605469 247.648438 L 317.847656 247.648438 L 317.847656 76.40625 L 146.605469 76.40625 Z M 146.605469 247.648438 "/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 232.230469 162.023438 L 232.230469 84.964844 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 232.230469 162.023438 L 301.320312 127.902344 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 232.230469 162.023438 L 293.417969 208.863281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 232.230469 162.023438 L 217.328125 237.628906 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 232.230469 162.023438 L 157.839844 182.140625 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 232.230469 162.023438 L 181.253906 104.234375 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 232.230469 156.800781 L 232.558594 156.8125 L 232.890625 156.84375 L 233.21875 156.894531 L 233.539062 156.96875 L 233.859375 157.0625 L 234.171875 157.175781 L 234.472656 157.308594 L 234.769531 157.460938 L 235.054688 157.628906 L 235.328125 157.816406 L 235.585938 158.023438 L 235.835938 158.242188 L 236.066406 158.480469 L 236.285156 158.730469 L 236.484375 158.996094 L 236.667969 159.269531 L 236.832031 159.558594 L 236.980469 159.855469 L 237.109375 160.160156 L 237.21875 160.472656 L 237.304688 160.792969 L 237.375 161.117188 L 237.421875 161.445312 L 237.445312 161.777344 L 237.453125 162.109375 L 237.4375 162.4375 L 237.398438 162.769531 L 237.34375 163.09375 L 237.265625 163.417969 L 237.164062 163.734375 L 237.046875 164.042969 L 236.910156 164.34375 L 236.753906 164.636719 L 236.578125 164.917969 L 236.386719 165.1875 L 236.175781 165.445312 L 235.953125 165.691406 L 235.710938 165.917969 L 235.457031 166.132812 L 235.191406 166.328125 L 234.914062 166.507812 L 234.621094 166.667969 L 234.324219 166.8125 L 234.015625 166.933594 L 233.699219 167.039062 L 233.378906 167.121094 L 233.054688 167.183594 L 232.726562 167.226562 L 232.394531 167.246094 L 232.0625 167.246094 L 231.730469 167.226562 L 231.402344 167.183594 L 231.078125 167.121094 L 230.757812 167.039062 L 230.441406 166.933594 L 230.132812 166.8125 L 229.835938 166.667969 L 229.546875 166.507812 L 229.265625 166.328125 L 229 166.132812 L 228.746094 165.917969 L 228.503906 165.691406 L 228.28125 165.445312 L 228.070312 165.1875 L 227.878906 164.917969 L 227.703125 164.636719 L 227.546875 164.34375 L 227.410156 164.042969 L 227.292969 163.734375 L 227.191406 163.417969 L 227.113281 163.09375 L 227.058594 162.769531 L 227.019531 162.4375 L 227.003906 162.109375 L 227.011719 161.777344 L 227.035156 161.445312 L 227.082031 161.117188 L 227.152344 160.792969 L 227.238281 160.472656 L 227.347656 160.160156 L 227.476562 159.855469 L 227.625 159.558594 L 227.789062 159.269531 L 227.972656 158.996094 L 228.175781 158.730469 L 228.390625 158.480469 L 228.625 158.242188 L 228.871094 158.023438 L 229.132812 157.816406 L 229.402344 157.628906 L 229.6875 157.460938 L 229.984375 157.308594 L 230.285156 157.175781 L 230.597656 157.0625 L 230.917969 156.96875 L 231.238281 156.894531 L 231.566406 156.84375 L 231.898438 156.8125 L 232.230469 156.800781 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 232.230469 145.191406 L 233.296875 145.226562 L 234.359375 145.328125 L 235.414062 145.496094 L 236.457031 145.730469 L 237.480469 146.03125 L 238.484375 146.398438 L 239.464844 146.824219 L 240.414062 147.3125 L 241.328125 147.863281 L 242.210938 148.46875 L 243.050781 149.128906 L 243.84375 149.839844 L 244.59375 150.601562 L 245.292969 151.410156 L 245.941406 152.261719 L 246.53125 153.148438 L 247.066406 154.074219 L 247.542969 155.03125 L 247.953125 156.015625 L 248.304688 157.027344 L 248.589844 158.054688 L 248.808594 159.101562 L 248.960938 160.160156 L 249.042969 161.222656 L 249.0625 162.292969 L 249.011719 163.359375 L 248.890625 164.421875 L 248.707031 165.472656 L 248.453125 166.511719 L 248.136719 167.53125 L 247.753906 168.527344 L 247.3125 169.5 L 246.808594 170.441406 L 246.246094 171.351562 L 245.625 172.21875 L 244.949219 173.050781 L 244.226562 173.832031 L 243.453125 174.570312 L 242.636719 175.257812 L 241.773438 175.890625 L 240.875 176.46875 L 239.941406 176.988281 L 238.976562 177.445312 L 237.988281 177.84375 L 236.972656 178.175781 L 235.9375 178.445312 L 234.886719 178.648438 L 233.828125 178.78125 L 232.761719 178.851562 L 231.695312 178.851562 L 230.628906 178.78125 L 229.570312 178.648438 L 228.519531 178.445312 L 227.484375 178.175781 L 226.472656 177.84375 L 225.480469 177.445312 L 224.515625 176.988281 L 223.582031 176.46875 L 222.683594 175.890625 L 221.824219 175.257812 L 221.003906 174.570312 L 220.230469 173.832031 L 219.507812 173.050781 L 218.832031 172.21875 L 218.214844 171.351562 L 217.648438 170.441406 L 217.144531 169.5 L 216.703125 168.527344 L 216.320312 167.53125 L 216.003906 166.511719 L 215.75 165.472656 L 215.566406 164.421875 L 215.449219 163.359375 L 215.398438 162.292969 L 215.414062 161.222656 L 215.5 160.160156 L 215.648438 159.101562 L 215.871094 158.054688 L 216.152344 157.027344 L 216.503906 156.015625 L 216.914062 155.03125 L 217.390625 154.074219 L 217.925781 153.148438 L 218.515625 152.261719 L 219.164062 151.410156 L 219.863281 150.601562 L 220.613281 149.839844 L 221.40625 149.128906 L 222.246094 148.46875 L 223.128906 147.863281 L 224.042969 147.3125 L 224.992188 146.824219 L 225.972656 146.398438 L 226.976562 146.03125 L 228 145.730469 L 229.042969 145.496094 L 230.097656 145.328125 L 231.160156 145.226562 L 232.230469 145.191406 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 232.230469 133.582031 L 234.03125 133.636719 L 235.828125 133.808594 L 237.613281 134.09375 L 239.371094 134.492188 L 241.105469 135 L 242.800781 135.617188 L 244.453125 136.34375 L 246.058594 137.167969 L 247.605469 138.097656 L 249.09375 139.121094 L 250.511719 140.234375 L 251.855469 141.4375 L 253.125 142.726562 L 254.304688 144.089844 L 255.398438 145.527344 L 256.398438 147.027344 L 257.300781 148.589844 L 258.101562 150.207031 L 258.800781 151.875 L 259.390625 153.578125 L 259.871094 155.320312 L 260.242188 157.085938 L 260.496094 158.871094 L 260.640625 160.671875 L 260.667969 162.476562 L 260.582031 164.277344 L 260.382812 166.074219 L 260.070312 167.851562 L 259.644531 169.605469 L 259.109375 171.328125 L 258.464844 173.015625 L 257.714844 174.65625 L 256.863281 176.246094 L 255.910156 177.78125 L 254.863281 179.25 L 253.726562 180.652344 L 252.5 181.976562 L 251.195312 183.222656 L 249.8125 184.382812 L 248.359375 185.453125 L 246.839844 186.429688 L 245.261719 187.308594 L 243.632812 188.082031 L 241.957031 188.753906 L 240.242188 189.316406 L 238.496094 189.769531 L 236.722656 190.113281 L 234.933594 190.339844 L 233.132812 190.453125 L 231.328125 190.453125 L 229.523438 190.339844 L 227.734375 190.113281 L 225.960938 189.769531 L 224.214844 189.316406 L 222.5 188.753906 L 220.824219 188.082031 L 219.195312 187.308594 L 217.617188 186.429688 L 216.097656 185.453125 L 214.644531 184.382812 L 213.261719 183.222656 L 211.957031 181.976562 L 210.730469 180.652344 L 209.59375 179.25 L 208.546875 177.78125 L 207.59375 176.246094 L 206.742188 174.65625 L 205.992188 173.015625 L 205.347656 171.328125 L 204.8125 169.605469 L 204.386719 167.851562 L 204.074219 166.074219 L 203.875 164.277344 L 203.789062 162.476562 L 203.816406 160.671875 L 203.960938 158.871094 L 204.21875 157.085938 L 204.585938 155.320312 L 205.066406 153.578125 L 205.65625 151.875 L 206.355469 150.207031 L 207.15625 148.589844 L 208.058594 147.027344 L 209.058594 145.527344 L 210.152344 144.089844 L 211.335938 142.726562 L 212.601562 141.4375 L 213.945312 140.234375 L 215.363281 139.121094 L 216.851562 138.097656 L 218.398438 137.167969 L 220.003906 136.34375 L 221.65625 135.617188 L 223.351562 135 L 225.085938 134.492188 L 226.847656 134.09375 L 228.628906 133.808594 L 230.425781 133.636719 L 232.230469 133.582031 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 232.230469 121.972656 L 234.769531 122.050781 L 237.300781 122.292969 L 239.808594 122.695312 L 242.289062 123.253906 L 244.726562 123.972656 L 247.113281 124.839844 L 249.445312 125.859375 L 251.703125 127.023438 L 253.882812 128.328125 L 255.976562 129.769531 L 257.976562 131.34375 L 259.867188 133.035156 L 261.652344 134.847656 L 263.316406 136.769531 L 264.855469 138.792969 L 266.261719 140.90625 L 267.535156 143.109375 L 268.664062 145.386719 L 269.644531 147.730469 L 270.476562 150.132812 L 271.152344 152.582031 L 271.675781 155.070312 L 272.035156 157.585938 L 272.238281 160.117188 L 272.277344 162.660156 L 272.15625 165.199219 L 271.875 167.726562 L 271.433594 170.226562 L 270.835938 172.699219 L 270.078125 175.125 L 269.171875 177.5 L 268.117188 179.8125 L 266.917969 182.050781 L 265.578125 184.210938 L 264.101562 186.28125 L 262.5 188.253906 L 260.773438 190.121094 L 258.933594 191.875 L 256.988281 193.507812 L 254.941406 195.015625 L 252.804688 196.390625 L 250.582031 197.625 L 248.289062 198.71875 L 245.929688 199.664062 L 243.511719 200.457031 L 241.054688 201.09375 L 238.558594 201.574219 L 236.035156 201.898438 L 233.5 202.058594 L 230.957031 202.058594 L 228.421875 201.898438 L 225.898438 201.574219 L 223.40625 201.09375 L 220.945312 200.457031 L 218.53125 199.664062 L 216.171875 198.71875 L 213.875 197.625 L 211.652344 196.390625 L 209.515625 195.015625 L 207.46875 193.507812 L 205.523438 191.875 L 203.683594 190.121094 L 201.957031 188.253906 L 200.355469 186.28125 L 198.882812 184.210938 L 197.542969 182.050781 L 196.339844 179.8125 L 195.285156 177.5 L 194.378906 175.125 L 193.625 172.699219 L 193.023438 170.226562 L 192.582031 167.726562 L 192.300781 165.199219 L 192.179688 162.660156 L 192.21875 160.117188 L 192.421875 157.585938 L 192.785156 155.070312 L 193.304688 152.582031 L 193.980469 150.132812 L 194.8125 147.730469 L 195.792969 145.386719 L 196.921875 143.109375 L 198.195312 140.90625 L 199.601562 138.792969 L 201.140625 136.769531 L 202.804688 134.847656 L 204.589844 133.035156 L 206.484375 131.34375 L 208.480469 129.769531 L 210.574219 128.328125 L 212.753906 127.023438 L 215.015625 125.859375 L 217.34375 124.839844 L 219.730469 123.972656 L 222.167969 123.253906 L 224.648438 122.695312 L 227.160156 122.292969 L 229.6875 122.050781 L 232.230469 121.972656 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 232.230469 110.363281 L 235.503906 110.464844 L 238.769531 110.777344 L 242.007812 111.296875 L 245.203125 112.015625 L 248.347656 112.941406 L 251.429688 114.0625 L 254.433594 115.375 L 257.347656 116.878906 L 260.160156 118.5625 L 262.859375 120.421875 L 265.4375 122.449219 L 267.878906 124.632812 L 270.179688 126.972656 L 272.328125 129.449219 L 274.3125 132.058594 L 276.128906 134.785156 L 277.769531 137.625 L 279.222656 140.5625 L 280.488281 143.585938 L 281.5625 146.683594 L 282.4375 149.84375 L 283.105469 153.054688 L 283.574219 156.296875 L 283.832031 159.566406 L 283.886719 162.84375 L 283.730469 166.121094 L 283.367188 169.378906 L 282.796875 172.605469 L 282.023438 175.792969 L 281.050781 178.921875 L 279.878906 181.984375 L 278.519531 184.96875 L 276.96875 187.855469 L 275.242188 190.640625 L 273.339844 193.3125 L 271.273438 195.855469 L 269.050781 198.265625 L 266.675781 200.527344 L 264.164062 202.636719 L 261.523438 204.578125 L 258.765625 206.351562 L 255.902344 207.945312 L 252.941406 209.355469 L 249.898438 210.574219 L 246.785156 211.59375 L 243.609375 212.417969 L 240.390625 213.039062 L 237.140625 213.453125 L 233.867188 213.664062 L 230.589844 213.664062 L 227.316406 213.453125 L 224.066406 213.039062 L 220.847656 212.417969 L 217.671875 211.59375 L 214.558594 210.574219 L 211.515625 209.355469 L 208.554688 207.945312 L 205.691406 206.351562 L 202.933594 204.578125 L 200.292969 202.636719 L 197.78125 200.527344 L 195.410156 198.265625 L 193.183594 195.855469 L 191.117188 193.3125 L 189.214844 190.640625 L 187.488281 187.855469 L 185.9375 184.96875 L 184.578125 181.984375 L 183.40625 178.921875 L 182.433594 175.792969 L 181.660156 172.605469 L 181.089844 169.378906 L 180.726562 166.121094 L 180.570312 162.84375 L 180.625 159.566406 L 180.882812 156.296875 L 181.351562 153.054688 L 182.023438 149.84375 L 182.894531 146.683594 L 183.96875 143.585938 L 185.234375 140.5625 L 186.691406 137.625 L 188.328125 134.785156 L 190.144531 132.058594 L 192.128906 129.449219 L 194.277344 126.972656 L 196.578125 124.632812 L 199.019531 122.449219 L 201.597656 120.421875 L 204.296875 118.5625 L 207.109375 116.878906 L 210.023438 115.375 L 213.027344 114.0625 L 216.109375 112.941406 L 219.253906 112.015625 L 222.453125 111.296875 L 225.6875 110.777344 L 228.953125 110.464844 L 232.230469 110.363281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 232.230469 98.75 L 236.242188 98.878906 L 240.238281 99.261719 L 244.203125 99.894531 L 248.121094 100.78125 L 251.972656 101.910156 L 255.746094 103.285156 L 259.421875 104.894531 L 262.992188 106.734375 L 266.4375 108.796875 L 269.742188 111.074219 L 272.898438 113.554688 L 275.890625 116.230469 L 278.707031 119.09375 L 281.339844 122.128906 L 283.769531 125.324219 L 285.992188 128.664062 L 288 132.144531 L 289.785156 135.742188 L 291.335938 139.445312 L 292.648438 143.238281 L 293.71875 147.109375 L 294.539062 151.039062 L 295.113281 155.011719 L 295.429688 159.015625 L 295.492188 163.027344 L 295.304688 167.039062 L 294.859375 171.03125 L 294.160156 174.984375 L 293.214844 178.886719 L 292.023438 182.71875 L 290.589844 186.46875 L 288.921875 190.121094 L 287.023438 193.660156 L 284.90625 197.074219 L 282.578125 200.34375 L 280.046875 203.460938 L 277.324219 206.410156 L 274.417969 209.179688 L 271.339844 211.761719 L 268.109375 214.140625 L 264.730469 216.3125 L 261.222656 218.265625 L 257.597656 219.988281 L 253.871094 221.480469 L 250.054688 222.734375 L 246.167969 223.742188 L 242.226562 224.503906 L 238.242188 225.011719 L 234.234375 225.265625 L 230.222656 225.265625 L 226.214844 225.011719 L 222.230469 224.503906 L 218.289062 223.742188 L 214.402344 222.734375 L 210.589844 221.480469 L 206.859375 219.988281 L 203.234375 218.265625 L 199.726562 216.3125 L 196.347656 214.140625 L 193.117188 211.761719 L 190.039062 209.179688 L 187.132812 206.410156 L 184.410156 203.460938 L 181.878906 200.34375 L 179.550781 197.074219 L 177.433594 193.660156 L 175.535156 190.121094 L 173.867188 186.46875 L 172.4375 182.71875 L 171.242188 178.886719 L 170.296875 174.984375 L 169.601562 171.03125 L 169.15625 167.039062 L 168.964844 163.027344 L 169.027344 159.015625 L 169.34375 155.011719 L 169.917969 151.039062 L 170.738281 147.109375 L 171.808594 143.238281 L 173.121094 139.445312 L 174.671875 135.742188 L 176.457031 132.144531 L 178.464844 128.664062 L 180.6875 125.324219 L 183.121094 122.128906 L 185.75 119.09375 L 188.566406 116.230469 L 191.558594 113.554688 L 194.714844 111.074219 L 198.019531 108.796875 L 201.464844 106.734375 L 205.035156 104.894531 L 208.710938 103.285156 L 212.484375 101.910156 L 216.335938 100.78125 L 220.253906 99.894531 L 224.21875 99.261719 L 228.214844 98.878906 L 232.230469 98.75 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(87.058824%, 87.058824%, 87.058824%)" stroke-opacity="1" stroke-miterlimit="10" d="M 232.230469 84.964844 L 237.117188 85.121094 L 241.984375 85.585938 L 246.8125 86.359375 L 251.582031 87.433594 L 256.273438 88.8125 L 260.867188 90.484375 L 265.347656 92.445312 L 269.695312 94.6875 L 273.890625 97.199219 L 277.917969 99.972656 L 281.761719 102.992188 L 285.40625 106.253906 L 288.835938 109.738281 L 292.039062 113.433594 L 295 117.324219 L 297.707031 121.398438 L 300.152344 125.632812 L 302.324219 130.011719 L 304.214844 134.523438 L 305.8125 139.144531 L 307.117188 143.855469 L 308.117188 148.644531 L 308.8125 153.484375 L 309.199219 158.359375 L 309.277344 163.246094 L 309.046875 168.132812 L 308.503906 172.992188 L 307.65625 177.808594 L 306.503906 182.558594 L 305.050781 187.230469 L 303.304688 191.796875 L 301.273438 196.246094 L 298.964844 200.554688 L 296.386719 204.710938 L 293.550781 208.691406 L 290.464844 212.488281 L 287.148438 216.082031 L 283.609375 219.453125 L 279.863281 222.597656 L 275.925781 225.496094 L 271.8125 228.140625 L 267.539062 230.519531 L 263.125 232.621094 L 258.585938 234.4375 L 253.9375 235.964844 L 249.207031 237.191406 L 244.402344 238.117188 L 239.554688 238.734375 L 234.671875 239.046875 L 229.785156 239.046875 L 224.902344 238.734375 L 220.054688 238.117188 L 215.25 237.191406 L 210.519531 235.964844 L 205.871094 234.4375 L 201.332031 232.621094 L 196.917969 230.519531 L 192.644531 228.140625 L 188.53125 225.496094 L 184.59375 222.597656 L 180.847656 219.453125 L 177.308594 216.082031 L 173.992188 212.488281 L 170.90625 208.691406 L 168.070312 204.710938 L 165.492188 200.554688 L 163.183594 196.246094 L 161.152344 191.796875 L 159.40625 187.230469 L 157.957031 182.558594 L 156.800781 177.808594 L 155.953125 172.992188 L 155.410156 168.132812 L 155.179688 163.246094 L 155.257812 158.359375 L 155.644531 153.484375 L 156.339844 148.644531 L 157.339844 143.855469 L 158.644531 139.144531 L 160.242188 134.523438 L 162.132812 130.011719 L 164.304688 125.632812 L 166.75 121.398438 L 169.457031 117.324219 L 172.417969 113.433594 L 175.621094 109.738281 L 179.050781 106.253906 L 182.695312 102.992188 L 186.539062 99.972656 L 190.566406 97.199219 L 194.761719 94.6875 L 199.109375 92.445312 L 203.589844 90.484375 L 208.183594 88.8125 L 212.875 87.433594 L 217.644531 86.359375 L 222.472656 85.585938 L 227.339844 85.121094 L 232.230469 84.964844 "/>
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 232.230469 162.023438 L 232.230469 151.574219 L 229.902344 151.839844 L 227.695312 152.609375 L 225.714844 153.855469 L 224.058594 155.511719 L 222.816406 157.492188 L 222.042969 159.699219 L 221.78125 162.023438 L 222.042969 164.351562 L 222.816406 166.558594 L 224.058594 168.539062 L 225.714844 170.195312 L 227.695312 171.4375 L 229.902344 172.210938 L 232.230469 172.472656 L 234.554688 172.210938 L 236.761719 171.4375 L 238.742188 170.195312 L 240.398438 168.539062 L 241.644531 166.558594 L 242.414062 164.351562 L 242.675781 162.023438 L 242.414062 159.699219 L 241.644531 157.492188 L 240.398438 155.511719 L 238.742188 153.855469 L 236.761719 152.609375 L 234.554688 151.839844 L 232.230469 151.574219 Z M 232.230469 162.023438 "/>
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 228.609375 173.054688 L 227.796875 175.539062 L 226.980469 178.019531 L 226.167969 180.503906 L 225.355469 182.984375 L 227.65625 183.605469 L 230.007812 183.972656 L 232.390625 184.082031 L 234.769531 183.9375 L 237.117188 183.535156 L 239.410156 182.882812 L 241.617188 181.984375 L 243.714844 180.855469 L 245.679688 179.507812 L 247.488281 177.953125 L 249.117188 176.214844 L 250.546875 174.3125 L 251.765625 172.265625 L 252.757812 170.097656 L 253.507812 167.835938 L 254.011719 165.507812 L 254.257812 163.136719 L 254.25 160.753906 L 253.984375 158.386719 L 253.464844 156.058594 L 252.699219 153.804688 L 251.691406 151.644531 L 250.457031 149.605469 L 249.011719 147.710938 L 247.371094 145.984375 L 245.550781 144.445312 L 243.578125 143.109375 L 241.472656 141.996094 L 239.257812 141.117188 L 236.960938 140.480469 L 234.609375 140.09375 L 232.230469 139.964844 L 232.230469 150.414062 L 234.574219 150.65625 L 236.824219 151.363281 L 238.882812 152.511719 L 240.667969 154.050781 L 242.105469 155.921875 L 243.132812 158.042969 L 243.714844 160.328125 L 243.820312 162.683594 L 243.449219 165.011719 L 242.613281 167.21875 L 241.351562 169.207031 L 239.710938 170.902344 L 237.761719 172.230469 L 235.585938 173.136719 L 233.273438 173.585938 L 230.914062 173.558594 Z M 228.609375 173.054688 "/>
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 236.210938 184.898438 L 236.660156 187.472656 L 237.105469 190.046875 L 238.003906 195.195312 L 240.277344 194.714844 L 242.515625 194.082031 L 244.703125 193.296875 L 246.832031 192.363281 L 248.886719 191.28125 L 250.867188 190.0625 L 252.757812 188.710938 L 254.550781 187.230469 L 256.234375 185.628906 L 257.808594 183.917969 L 259.257812 182.101562 L 260.578125 180.1875 L 261.761719 178.1875 L 262.808594 176.113281 L 263.707031 173.96875 L 264.457031 171.769531 L 265.050781 169.523438 L 265.492188 167.238281 L 265.769531 164.933594 L 265.890625 162.609375 L 265.851562 160.285156 L 265.652344 157.96875 L 265.292969 155.675781 L 264.777344 153.40625 L 264.105469 151.183594 L 263.28125 149.007812 L 262.308594 146.898438 L 261.191406 144.859375 L 259.9375 142.902344 L 258.554688 141.035156 L 257.042969 139.269531 L 255.414062 137.609375 L 253.671875 136.070312 L 251.832031 134.652344 L 249.894531 133.363281 L 247.875 132.214844 L 245.78125 131.207031 L 243.625 130.34375 L 241.410156 129.632812 L 239.152344 129.078125 L 236.863281 128.675781 L 234.550781 128.4375 L 232.230469 128.355469 L 232.230469 138.804688 L 234.601562 138.925781 L 236.949219 139.289062 L 239.25 139.890625 L 241.476562 140.726562 L 243.601562 141.78125 L 245.613281 143.050781 L 247.480469 144.519531 L 249.191406 146.167969 L 250.722656 147.984375 L 252.0625 149.949219 L 253.191406 152.039062 L 254.101562 154.234375 L 254.785156 156.511719 L 255.230469 158.84375 L 255.433594 161.210938 L 255.394531 163.589844 L 255.113281 165.949219 L 254.59375 168.265625 L 253.839844 170.519531 L 252.855469 172.683594 L 251.660156 174.738281 L 250.257812 176.65625 L 248.667969 178.421875 L 246.90625 180.015625 L 244.992188 181.421875 L 242.941406 182.625 L 240.78125 183.613281 L 238.527344 184.375 Z M 236.210938 184.898438 "/>
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 266.523438 168.09375 L 269.097656 168.550781 L 271.667969 169.003906 L 274.242188 169.460938 L 276.8125 169.914062 L 277.160156 167.617188 L 277.386719 165.300781 L 277.496094 162.980469 L 277.484375 160.65625 L 277.355469 158.335938 L 277.105469 156.023438 L 276.738281 153.726562 L 276.253906 151.453125 L 275.65625 149.207031 L 274.941406 146.996094 L 274.113281 144.824219 L 273.171875 142.695312 L 272.128906 140.621094 L 270.976562 138.601562 L 269.722656 136.640625 L 268.371094 134.75 L 266.921875 132.929688 L 265.382812 131.1875 L 263.757812 129.527344 L 262.046875 127.953125 L 260.257812 126.464844 L 258.398438 125.074219 L 256.464844 123.78125 L 254.472656 122.585938 L 252.417969 121.496094 L 250.3125 120.515625 L 248.15625 119.640625 L 245.960938 118.878906 L 243.726562 118.230469 L 241.464844 117.699219 L 239.175781 117.28125 L 236.871094 116.984375 L 234.554688 116.804688 L 232.230469 116.746094 L 232.230469 127.195312 L 234.566406 127.273438 L 236.890625 127.507812 L 239.199219 127.898438 L 241.472656 128.445312 L 243.703125 129.140625 L 245.886719 129.984375 L 248.003906 130.972656 L 250.050781 132.101562 L 252.019531 133.367188 L 253.898438 134.757812 L 255.679688 136.273438 L 257.355469 137.90625 L 258.917969 139.644531 L 260.359375 141.488281 L 261.671875 143.421875 L 262.855469 145.4375 L 263.898438 147.53125 L 264.800781 149.6875 L 265.554688 151.902344 L 266.160156 154.160156 L 266.609375 156.453125 L 266.90625 158.773438 L 267.046875 161.109375 L 267.027344 163.445312 L 266.855469 165.777344 Z M 266.523438 168.09375 "/>
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 267.976562 132.382812 L 269.988281 130.714844 L 272 129.050781 L 274.011719 127.382812 L 276.019531 125.714844 L 274.464844 123.914062 L 272.832031 122.183594 L 271.132812 120.519531 L 269.363281 118.929688 L 267.527344 117.414062 L 265.628906 115.976562 L 263.675781 114.617188 L 261.664062 113.34375 L 259.601562 112.15625 L 257.492188 111.054688 L 255.339844 110.042969 L 253.144531 109.121094 L 250.914062 108.292969 L 248.652344 107.558594 L 246.359375 106.921875 L 244.042969 106.378906 L 241.703125 105.933594 L 239.351562 105.585938 L 236.984375 105.335938 L 234.609375 105.1875 L 232.230469 105.136719 L 232.230469 115.585938 L 234.628906 115.648438 L 237.019531 115.832031 L 239.398438 116.144531 L 241.761719 116.574219 L 244.09375 117.128906 L 246.398438 117.800781 L 248.664062 118.589844 L 250.886719 119.5 L 253.058594 120.519531 L 255.171875 121.648438 L 257.230469 122.890625 L 259.214844 124.234375 L 261.132812 125.675781 L 262.972656 127.21875 L 264.730469 128.855469 L 266.398438 130.578125 Z M 267.976562 132.382812 "/>
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 234.164062 104.007812 L 234.253906 101.398438 L 234.339844 98.785156 L 234.511719 93.566406 L 232.230469 93.527344 L 232.230469 103.976562 Z M 234.164062 104.007812 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="229.117188" y="88.980469"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="291.976562" y="131.917969"/>
<use xlink:href="#glyph-0-0" x="298.205469" y="131.917969"/>
<use xlink:href="#glyph-0-0" x="304.434375" y="131.917969"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="284.074219" y="212.882812"/>
<use xlink:href="#glyph-0-0" x="290.303125" y="212.882812"/>
<use xlink:href="#glyph-0-0" x="296.532031" y="212.882812"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-3" x="207.984375" y="241.648438"/>
<use xlink:href="#glyph-0-0" x="214.213281" y="241.648438"/>
<use xlink:href="#glyph-0-0" x="220.442187" y="241.648438"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-4" x="148.496094" y="186.160156"/>
<use xlink:href="#glyph-0-0" x="154.725" y="186.160156"/>
<use xlink:href="#glyph-0-0" x="160.953906" y="186.160156"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-5" x="171.910156" y="108.253906"/>
<use xlink:href="#glyph-0-0" x="178.139062" y="108.253906"/>
<use xlink:href="#glyph-0-0" x="184.367969" y="108.253906"/>
</g>
<g clip-path="url(#clip-2)">
<path fill="none" stroke-width="1.357972" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 146.605469 247.648438 L 317.847656 247.648438 L 317.847656 76.40625 L 146.605469 76.40625 Z M 146.605469 247.648438 "/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-6" x="116.054688" y="160.816406"/>
<use xlink:href="#glyph-0-7" x="121.654687" y="160.816406"/>
<use xlink:href="#glyph-0-8" x="124.142969" y="160.816406"/>
<use xlink:href="#glyph-0-9" x="130.371875" y="160.816406"/>
<use xlink:href="#glyph-0-10" x="136.600781" y="160.816406"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="58.777344" y="149.207031"/>
<use xlink:href="#glyph-0-6" x="64.377344" y="149.207031"/>
<use xlink:href="#glyph-0-9" x="69.977344" y="149.207031"/>
<use xlink:href="#glyph-0-12" x="76.20625" y="149.207031"/>
<use xlink:href="#glyph-0-12" x="79.317969" y="149.207031"/>
<use xlink:href="#glyph-0-8" x="82.429687" y="149.207031"/>
<use xlink:href="#glyph-0-10" x="88.658594" y="149.207031"/>
<use xlink:href="#glyph-0-8" x="92.388281" y="149.207031"/>
<use xlink:href="#glyph-0-13" x="98.617187" y="149.207031"/>
<use xlink:href="#glyph-0-14" x="104.846094" y="149.207031"/>
<use xlink:href="#glyph-0-6" x="107.957812" y="149.207031"/>
<use xlink:href="#glyph-0-7" x="113.557812" y="149.207031"/>
<use xlink:href="#glyph-0-15" x="116.046094" y="149.207031"/>
<use xlink:href="#glyph-0-16" x="122.275" y="149.207031"/>
<use xlink:href="#glyph-0-13" x="128.503906" y="149.207031"/>
<use xlink:href="#glyph-0-11" x="134.732812" y="149.207031"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-17" x="70.601562" y="137.597656"/>
<use xlink:href="#glyph-0-10" x="76.830469" y="137.597656"/>
<use xlink:href="#glyph-0-15" x="80.560156" y="137.597656"/>
<use xlink:href="#glyph-0-18" x="86.789062" y="137.597656"/>
<use xlink:href="#glyph-0-8" x="92.389062" y="137.597656"/>
<use xlink:href="#glyph-0-19" x="98.617969" y="137.597656"/>
<use xlink:href="#glyph-0-14" x="104.846875" y="137.597656"/>
<use xlink:href="#glyph-0-6" x="107.958594" y="137.597656"/>
<use xlink:href="#glyph-0-7" x="113.558594" y="137.597656"/>
<use xlink:href="#glyph-0-15" x="116.046875" y="137.597656"/>
<use xlink:href="#glyph-0-16" x="122.275781" y="137.597656"/>
<use xlink:href="#glyph-0-13" x="128.504687" y="137.597656"/>
<use xlink:href="#glyph-0-11" x="134.733594" y="137.597656"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-10" x="121.65625" y="125.988281"/>
<use xlink:href="#glyph-0-9" x="125.385937" y="125.988281"/>
<use xlink:href="#glyph-0-20" x="131.614844" y="125.988281"/>
<use xlink:href="#glyph-0-19" x="134.103125" y="125.988281"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-6" x="107.957031" y="114.378906"/>
<use xlink:href="#glyph-0-7" x="113.557031" y="114.378906"/>
<use xlink:href="#glyph-0-15" x="116.045312" y="114.378906"/>
<use xlink:href="#glyph-0-16" x="122.274219" y="114.378906"/>
<use xlink:href="#glyph-0-13" x="128.503125" y="114.378906"/>
<use xlink:href="#glyph-0-21" x="134.732031" y="114.378906"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="99.867188" y="102.769531"/>
<use xlink:href="#glyph-0-19" x="105.467187" y="102.769531"/>
<use xlink:href="#glyph-0-15" x="111.696094" y="102.769531"/>
<use xlink:href="#glyph-0-22" x="117.925" y="102.769531"/>
<use xlink:href="#glyph-0-23" x="126.013281" y="102.769531"/>
<use xlink:href="#glyph-0-9" x="129.125" y="102.769531"/>
<use xlink:href="#glyph-0-7" x="135.353906" y="102.769531"/>
<use xlink:href="#glyph-0-7" x="137.842187" y="102.769531"/>
</g>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 143.121094 156.800781 L 146.605469 156.800781 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 143.121094 145.191406 L 146.605469 145.191406 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 143.121094 133.582031 L 146.605469 133.582031 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 143.121094 121.972656 L 146.605469 121.972656 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 143.121094 110.363281 L 146.605469 110.363281 "/>
<path fill="none" stroke-width="0.678986" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(70.196078%, 70.196078%, 70.196078%)" stroke-opacity="1" stroke-miterlimit="10" d="M 143.121094 98.75 L 146.605469 98.75 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="215.105469" y="269.929688"/>
<use xlink:href="#glyph-1-1" x="222.105469" y="269.929688"/>
<use xlink:href="#glyph-1-2" x="229.891602" y="269.929688"/>
<use xlink:href="#glyph-1-3" x="237.677734" y="269.929688"/>
<use xlink:href="#glyph-1-4" x="245.463867" y="269.929688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="52.191406" y="237.507812"/>
<use xlink:href="#glyph-2-1" x="52.191406" y="233.618164"/>
<use xlink:href="#glyph-2-2" x="52.191406" y="226.618164"/>
<use xlink:href="#glyph-2-3" x="52.191406" y="222.728516"/>
<use xlink:href="#glyph-2-4" x="52.191406" y="214.942383"/>
<use xlink:href="#glyph-2-5" x="52.191406" y="211.832031"/>
<use xlink:href="#glyph-2-0" x="52.191406" y="204.045898"/>
<use xlink:href="#glyph-2-6" x="52.191406" y="200.15625"/>
<use xlink:href="#glyph-2-7" x="52.191406" y="195.494141"/>
<use xlink:href="#glyph-2-8" x="52.191406" y="187.708008"/>
<use xlink:href="#glyph-2-9" x="52.191406" y="179.921875"/>
<use xlink:href="#glyph-2-10" x="52.191406" y="175.259766"/>
<use xlink:href="#glyph-2-7" x="52.191406" y="165.149414"/>
<use xlink:href="#glyph-2-11" x="52.191406" y="157.363281"/>
<use xlink:href="#glyph-2-2" x="52.191406" y="149.577148"/>
<use xlink:href="#glyph-2-12" x="52.191406" y="145.6875"/>
<use xlink:href="#glyph-2-7" x="52.191406" y="137.901367"/>
<use xlink:href="#glyph-2-6" x="52.191406" y="130.115234"/>
<use xlink:href="#glyph-2-3" x="52.191406" y="125.453125"/>
<use xlink:href="#glyph-2-2" x="52.191406" y="117.666992"/>
<use xlink:href="#glyph-2-13" x="52.191406" y="113.777344"/>
<use xlink:href="#glyph-2-14" x="52.191406" y="106.777344"/>
<use xlink:href="#glyph-2-7" x="52.191406" y="98.991211"/>
<use xlink:href="#glyph-2-15" x="52.191406" y="91.205078"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 44.554688 62.457031 L 419.902344 62.457031 L 419.902344 6.976562 L 44.554688 6.976562 Z M 44.554688 62.457031 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-5" x="51.527344" y="39.734375"/>
<use xlink:href="#glyph-1-6" x="61.637695" y="39.734375"/>
<use xlink:href="#glyph-1-7" x="69.423828" y="39.734375"/>
<use xlink:href="#glyph-1-4" x="77.209961" y="39.734375"/>
<use xlink:href="#glyph-1-8" x="81.099609" y="39.734375"/>
<use xlink:href="#glyph-1-6" x="88.885742" y="39.734375"/>
<use xlink:href="#glyph-1-9" x="96.671875" y="39.734375"/>
<use xlink:href="#glyph-1-10" x="101.333984" y="39.734375"/>
<use xlink:href="#glyph-1-4" x="109.120117" y="39.734375"/>
<use xlink:href="#glyph-1-11" x="113.009766" y="39.734375"/>
<use xlink:href="#glyph-1-12" x="120.009766" y="39.734375"/>
<use xlink:href="#glyph-1-6" x="127.795898" y="39.734375"/>
</g>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 142.558594 31.226562 L 159.839844 31.226562 L 159.839844 13.945312 L 142.558594 13.945312 Z M 142.558594 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(97.254902%, 46.27451%, 42.745098%)" fill-opacity="1" d="M 143.265625 30.519531 L 159.128906 30.519531 L 159.128906 14.65625 L 143.265625 14.65625 Z M 143.265625 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 142.558594 55.480469 L 159.839844 55.480469 L 159.839844 38.199219 L 142.558594 38.199219 Z M 142.558594 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(71.764706%, 62.352941%, 0%)" fill-opacity="1" d="M 143.265625 54.773438 L 159.128906 54.773438 L 159.128906 38.910156 L 143.265625 38.910156 Z M 143.265625 54.773438 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 243.515625 31.226562 L 260.796875 31.226562 L 260.796875 13.945312 L 243.515625 13.945312 Z M 243.515625 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(0%, 72.941176%, 21.960784%)" fill-opacity="1" d="M 244.226562 30.519531 L 260.089844 30.519531 L 260.089844 14.65625 L 244.226562 14.65625 Z M 244.226562 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 243.515625 55.480469 L 260.796875 55.480469 L 260.796875 38.199219 L 243.515625 38.199219 Z M 243.515625 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(0%, 74.901961%, 76.862745%)" fill-opacity="1" d="M 244.226562 54.773438 L 260.089844 54.773438 L 260.089844 38.910156 L 244.226562 38.910156 Z M 244.226562 54.773438 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 307.121094 31.226562 L 324.402344 31.226562 L 324.402344 13.945312 L 307.121094 13.945312 Z M 307.121094 31.226562 "/>
<path fill-rule="nonzero" fill="rgb(38.039216%, 61.176471%, 100%)" fill-opacity="1" d="M 307.828125 30.519531 L 323.691406 30.519531 L 323.691406 14.65625 L 307.828125 14.65625 Z M 307.828125 30.519531 "/>
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 307.121094 55.480469 L 324.402344 55.480469 L 324.402344 38.199219 L 307.121094 38.199219 Z M 307.121094 55.480469 "/>
<path fill-rule="nonzero" fill="rgb(96.078431%, 39.215686%, 89.019608%)" fill-opacity="1" d="M 307.828125 54.773438 L 323.691406 54.773438 L 323.691406 38.910156 L 307.828125 38.910156 Z M 307.828125 54.773438 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-17" x="166.8125" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="173.041406" y="26.605469"/>
<use xlink:href="#glyph-0-15" x="176.771094" y="26.605469"/>
<use xlink:href="#glyph-0-18" x="183" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="188.6" y="26.605469"/>
<use xlink:href="#glyph-0-19" x="194.828906" y="26.605469"/>
<use xlink:href="#glyph-0-14" x="201.057812" y="26.605469"/>
<use xlink:href="#glyph-0-6" x="204.169531" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="209.769531" y="26.605469"/>
<use xlink:href="#glyph-0-15" x="212.257812" y="26.605469"/>
<use xlink:href="#glyph-0-16" x="218.486719" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="224.715625" y="26.605469"/>
<use xlink:href="#glyph-0-11" x="230.944531" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-6" x="166.8125" y="50.859375"/>
<use xlink:href="#glyph-0-7" x="172.4125" y="50.859375"/>
<use xlink:href="#glyph-0-8" x="174.900781" y="50.859375"/>
<use xlink:href="#glyph-0-9" x="181.129687" y="50.859375"/>
<use xlink:href="#glyph-0-10" x="187.358594" y="50.859375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-6" x="267.769531" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="273.369531" y="26.605469"/>
<use xlink:href="#glyph-0-15" x="275.857813" y="26.605469"/>
<use xlink:href="#glyph-0-16" x="282.086719" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="288.315625" y="26.605469"/>
<use xlink:href="#glyph-0-21" x="294.544531" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-10" x="267.769531" y="50.859375"/>
<use xlink:href="#glyph-0-9" x="271.499219" y="50.859375"/>
<use xlink:href="#glyph-0-20" x="277.728125" y="50.859375"/>
<use xlink:href="#glyph-0-19" x="280.216406" y="50.859375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="331.375" y="26.605469"/>
<use xlink:href="#glyph-0-6" x="336.975" y="26.605469"/>
<use xlink:href="#glyph-0-9" x="342.575" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="348.803906" y="26.605469"/>
<use xlink:href="#glyph-0-12" x="351.915625" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="355.027344" y="26.605469"/>
<use xlink:href="#glyph-0-10" x="361.25625" y="26.605469"/>
<use xlink:href="#glyph-0-8" x="364.985938" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="371.214844" y="26.605469"/>
<use xlink:href="#glyph-0-14" x="377.44375" y="26.605469"/>
<use xlink:href="#glyph-0-6" x="380.555469" y="26.605469"/>
<use xlink:href="#glyph-0-7" x="386.155469" y="26.605469"/>
<use xlink:href="#glyph-0-15" x="388.64375" y="26.605469"/>
<use xlink:href="#glyph-0-16" x="394.872656" y="26.605469"/>
<use xlink:href="#glyph-0-13" x="401.101563" y="26.605469"/>
<use xlink:href="#glyph-0-11" x="407.330469" y="26.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-11" x="331.375" y="50.859375"/>
<use xlink:href="#glyph-0-19" x="336.975" y="50.859375"/>
<use xlink:href="#glyph-0-15" x="343.203906" y="50.859375"/>
<use xlink:href="#glyph-0-22" x="349.432813" y="50.859375"/>
<use xlink:href="#glyph-0-23" x="357.521094" y="50.859375"/>
<use xlink:href="#glyph-0-9" x="360.632813" y="50.859375"/>
<use xlink:href="#glyph-0-7" x="366.861719" y="50.859375"/>
<use xlink:href="#glyph-0-7" x="369.35" y="50.859375"/>
</g>
</svg>

After

(image error) Size: 84 KiB

Binary file not shown.

After

(image error) Size: 146 KiB

Binary file not shown.

After

(image error) Size: 166 KiB

Binary file not shown.

After

(image error) Size: 158 KiB

Binary file not shown.

After

(image error) Size: 167 KiB

Binary file not shown.

After

(image error) Size: 165 KiB

Binary file not shown.

After

(image error) Size: 157 KiB

Binary file not shown.

After

(image error) Size: 152 KiB

File diff suppressed because it is too large Load Diff

After

(image error) Size: 542 KiB

Binary file not shown.

After

(image error) Size: 286 KiB

File diff suppressed because it is too large Load Diff

After

(image error) Size: 25 MiB

Binary file not shown.

After

(image error) Size: 281 KiB

File diff suppressed because it is too large Load Diff

After

(image error) Size: 25 MiB

Binary file not shown.

After

(image error) Size: 287 KiB

File diff suppressed because it is too large Load Diff

After

(image error) Size: 25 MiB

File diff suppressed because it is too large Load Diff

After

(image error) Size: 25 MiB

Binary file not shown.

After

(image error) Size: 274 KiB

File diff suppressed because it is too large Load Diff

After

(image error) Size: 25 MiB

File diff suppressed because it is too large Load Diff

After

(image error) Size: 25 MiB

File diff suppressed because it is too large Load Diff

After

(image error) Size: 25 MiB

File diff suppressed because it is too large Load Diff

After

(image error) Size: 25 MiB

Binary file not shown.

After

(image error) Size: 168 KiB

File diff suppressed because it is too large Load Diff

After

(image error) Size: 20 MiB

Binary file not shown.

After

(image error) Size: 262 KiB

File diff suppressed because it is too large Load Diff

After

(image error) Size: 24 MiB

Binary file not shown.

After

(image error) Size: 167 KiB

Binary file not shown.

After

(image error) Size: 158 KiB

Binary file not shown.

After

(image error) Size: 189 KiB

Binary file not shown.

After

(image error) Size: 259 KiB

File diff suppressed because it is too large Load Diff

After

(image error) Size: 674 KiB

Binary file not shown.

After

(image error) Size: 259 KiB

File diff suppressed because it is too large Load Diff

After

(image error) Size: 674 KiB

Binary file not shown.

After

(image error) Size: 218 KiB

Some files were not shown because too many files have changed in this diff Show More