Compare commits
103 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
0c59712c5f
|
|||
|
4894ffcf21
|
|||
|
1c4f49214c
|
|||
|
b09fa63497
|
|||
|
13c238779e
|
|||
|
99e7b2fd7b
|
|||
|
1c58c4bf89
|
|||
|
b18f551a84
|
|||
|
065f2fa142
|
|||
|
ecff3e485a
|
|||
|
1941b43d1c
|
|||
|
732ed1a39a
|
|||
|
21d58ccc4e
|
|||
|
6b5d7abfea
|
|||
|
74d338b7f1
|
|||
|
6b1b6aea20
|
|||
|
b231513d0a
|
|||
|
9f8cd986f1
|
|||
|
a8f46db8a2
|
|||
|
b49fa7d0db
|
|||
|
9bc402b926
|
|||
|
2b22506fb8
|
|||
|
e84df0ca8f
|
|||
|
05dc28288b
|
|||
|
eb0529a964
|
|||
|
169f00c937
|
|||
|
ee421bf1e0
|
|||
|
e584642d95
|
|||
|
1e008769b6
|
|||
|
e22976a178
|
|||
|
fd2222edb3
|
|||
|
83f0138ede
|
|||
|
657272bbc5
|
|||
|
17d34e5069
|
|||
|
528dc1d69c
|
|||
|
74dfdf0bf3
|
|||
|
5cea7e03c2
|
|||
|
8df71ce1d3
|
|||
|
25e935661f
|
|||
|
92539be2e0
|
|||
|
be5dda0d0b
|
|||
|
8c34c03d0b
|
|||
|
5d5fd300ad
|
|||
|
52dda50048
|
|||
|
ce7b930b9a
|
|||
|
91f578bcf1
|
|||
|
78b6846eef
|
|||
|
7be31d0b01
|
|||
|
3e58060e75
|
|||
|
9c90536f9f
|
|||
|
5a1f509b8a
|
|||
|
31b168acec
|
|||
|
6411fa3079
|
|||
|
bf246e2713
|
|||
|
e4021df6d2
|
|||
|
301eccdd5b
|
|||
|
08760180ef
|
|||
|
c11bc691af
|
|||
|
de5573e171
|
|||
|
42663f73b9
|
|||
|
839f7fb82e
|
|||
|
0630311e00
|
|||
|
068f0fb44c
|
|||
|
b8530bc227
|
|||
|
37f76d4f1d
|
|||
|
5c98bf64ae
|
|||
|
37b1a68d0c
|
|||
|
d1c77def49
|
|||
|
02a9c80b19
|
|||
|
6a93f94d4b
|
|||
|
5dec1e78ff
|
|||
|
c96022c7b2
|
|||
|
b6f7263b12
|
|||
|
5639c11809
|
|||
|
f2358a326b
|
|||
|
8681d7b374
|
|||
|
82639a8b3a
|
|||
|
2411b24e29
|
|||
|
83219fd607
|
|||
|
64325b8e0f
|
|||
|
122a77fcfa
|
|||
|
d8f476013a
|
|||
|
116cf87539
|
|||
|
13b2c2e71f
|
|||
|
70f138f28f
|
|||
|
56bd816568
|
|||
|
8c58fb857a
|
|||
|
56410ce775
|
|||
|
de3f7ca407
|
|||
|
cc509316d0
|
|||
|
aff2d4f4cc
|
|||
|
63691f53b1
|
|||
|
38c3e5d931
|
|||
|
c7a5519e0f
|
|||
|
5b58a7d4c2
|
|||
|
b5963e1d54
|
|||
|
993e01d4e8
|
|||
|
f4cfddfd4e
|
|||
|
8a0cf4564b
|
|||
|
751337eb5c
|
|||
|
00ce3d9dd9
|
|||
|
6fed9201f5
|
|||
|
9cf52e5d46
|
7
.githooks/pre-commit
Normal file
@@ -0,0 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
echo "Start pre-commit hook"
|
||||
|
||||
# Copy current state into sciebo on every commit
|
||||
# This excludes .directories and .files inside of bernstein_paper
|
||||
cp -r ./25_07_phd_defense/* ~/sciebo/PHD-Presentation-Backup
|
||||
88
.gitignore
vendored
@@ -1,88 +1,2 @@
|
||||
# This file contains patterns for ignoring files / folders in a git repository.
|
||||
# If a specific file is catched by the .gitignore file, but you need to add it
|
||||
# you can use the following command to do so:
|
||||
# git add -f path/to/file/i/want/to/track.txt
|
||||
# However, think about the necessity of tracking the file before doing so.
|
||||
|
||||
### Blacklist folders:
|
||||
|
||||
data/*
|
||||
.bin/*
|
||||
.direnv/*
|
||||
.venv/*
|
||||
|
||||
### Blacklist files:
|
||||
|
||||
# Secrets
|
||||
*secrets*
|
||||
|
||||
# Latex related
|
||||
*.aux
|
||||
*.glo
|
||||
*.idx
|
||||
*.log
|
||||
*.toc
|
||||
*.ist
|
||||
*.acn
|
||||
*.acr
|
||||
*.alg
|
||||
*.bbl
|
||||
*.blg
|
||||
*.dvi
|
||||
*.glg
|
||||
*.gls
|
||||
*.ilg
|
||||
*.ind
|
||||
*.lof
|
||||
*.lot
|
||||
*.maf
|
||||
*.mtc
|
||||
*.mtc1
|
||||
*.out
|
||||
*.synctex.gz
|
||||
*.bcf
|
||||
*.xml
|
||||
*.bst
|
||||
*.fdb_latexmk
|
||||
*.fls
|
||||
*.snm
|
||||
*.nav
|
||||
|
||||
# R Related
|
||||
*.Rhistory
|
||||
*.RDataTmp
|
||||
*.RData
|
||||
|
||||
# Python binaries
|
||||
*.pyc
|
||||
*.npy
|
||||
*.pt
|
||||
*.py.ipynb
|
||||
|
||||
# Potentially large but not binary
|
||||
*.svg
|
||||
|
||||
# Binary files
|
||||
*.pdf
|
||||
*.jpg
|
||||
*.png
|
||||
*.zip
|
||||
*.gz
|
||||
*.tar
|
||||
*.kmz
|
||||
# Matches Rds, RDS, rds, etc.
|
||||
*.[rR][dD][sS]
|
||||
|
||||
# Misc
|
||||
.~lock.*
|
||||
|
||||
# Data
|
||||
*.csv
|
||||
*.xlsx
|
||||
|
||||
# Whitelist selected files
|
||||
!data/example_witelisted.csv
|
||||
|
||||
# Ignore html files for now
|
||||
# TODO: Remove later
|
||||
*.html
|
||||
.bin/*
|
||||
|
||||
3
.gitmodules
vendored
@@ -1,3 +0,0 @@
|
||||
[submodule "02_crps_learning"]
|
||||
path = 02_crps_learning
|
||||
url = git@git.uni-due.de:dsee/papers/crps-learning-code.git
|
||||
8
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"files.autoSave": "off",
|
||||
"files.exclude": {
|
||||
"**/.git": false,
|
||||
".git": false
|
||||
},
|
||||
"todo-tree.tree.hideTreeWhenEmpty": false
|
||||
}
|
||||
@@ -1,31 +0,0 @@
|
||||
text_size <- 16
|
||||
width <- 12
|
||||
height <- 6
|
||||
|
||||
# col_lightgray <- "#e7e7e7"
|
||||
# col_blue <- "#F24159"
|
||||
# col_b_smooth <- "#F7CE14"
|
||||
# col_p_smooth <- "#58A64A"
|
||||
# col_pointwise <- "#772395"
|
||||
# col_b_constant <- "#BF236D"
|
||||
# col_p_constant <- "#F6912E"
|
||||
# col_optimum <- "#666666"
|
||||
|
||||
# https://www.schemecolor.com/retro-rainbow-pastels.php
|
||||
col_lightgray <- "#e7e7e7"
|
||||
col_blue <- "#F24159"
|
||||
col_b_smooth <- "#5391AE"
|
||||
col_p_smooth <- "#85B464"
|
||||
col_pointwise <- "#E2D269"
|
||||
col_b_constant <- "#7A4E8A"
|
||||
col_p_constant <- "#BC677B"
|
||||
col_optimum <- "#666666"
|
||||
col_auto <- "#EA915E"
|
||||
|
||||
T_selection <- c(32, 128, 512)
|
||||
|
||||
# Lambda grid
|
||||
lamgrid <- c(-Inf, 2^(-15:25))
|
||||
|
||||
# Gamma grid
|
||||
gammagrid <- sort(1 - sqrt(seq(0, 0.99, .05)))
|
||||
|
Before Width: | Height: | Size: 1.6 MiB |
|
Before Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 692 KiB |
@@ -1,539 +0,0 @@
|
||||
@article{aastveit2014nowcasting,
|
||||
title = {Nowcasting GDP in real time: A density combination approach},
|
||||
author = {Aastveit, Knut Are and Gerdrup, Karsten R and Jore, Anne Sofie and Thorsrud, Leif Anders},
|
||||
journal = {Journal of Business \& Economic Statistics},
|
||||
volume = {32},
|
||||
number = {1},
|
||||
pages = {48--68},
|
||||
year = {2014},
|
||||
publisher = {Taylor \& Francis}
|
||||
}
|
||||
@incollection{aastveit2019evolution,
|
||||
title = {The Evolution of Forecast Density Combinations in Economics},
|
||||
author = {Aastveit, Knut Are and Mitchell, James and Ravazzolo, Francesco and van Dijk, Herman K},
|
||||
booktitle = {Oxford Research Encyclopedia of Economics and Finance},
|
||||
year = {2019}
|
||||
}
|
||||
@article{atiya2020does,
|
||||
title = {Why does forecast combination work so well?},
|
||||
author = {Atiya, Amir F},
|
||||
journal = {International Journal of Forecasting},
|
||||
volume = {36},
|
||||
number = {1},
|
||||
pages = {197--200},
|
||||
year = {2020},
|
||||
publisher = {Elsevier}
|
||||
}
|
||||
@article{atsalakis2016using,
|
||||
title = {Using computational intelligence to forecast carbon prices},
|
||||
author = {Atsalakis, George S},
|
||||
journal = {Applied Soft Computing},
|
||||
volume = {43},
|
||||
pages = {107--116},
|
||||
year = {2016},
|
||||
publisher = {Elsevier}
|
||||
}
|
||||
@article{bai2020does,
|
||||
title = {Does crude oil futures price really help to predict spot oil price? New evidence from density forecasting},
|
||||
author = {Bai, Lan and Li, Xiafei and Wei, Yu and Wei, Guiwu},
|
||||
journal = {International Journal of Finance \& Economics},
|
||||
year = {2020},
|
||||
publisher = {Wiley Online Library}
|
||||
}
|
||||
@article{benz2009modeling,
|
||||
title = {Modeling the price dynamics of CO2 emission allowances},
|
||||
author = {Benz, Eva and Tr{\"u}ck, Stefan},
|
||||
journal = {Energy Economics},
|
||||
volume = {31},
|
||||
number = {1},
|
||||
pages = {4--15},
|
||||
year = {2009},
|
||||
publisher = {Elsevier}
|
||||
}
|
||||
@article{biau2011sequential,
|
||||
title = {Sequential quantile prediction of time series},
|
||||
author = {Biau, G{\'e}rard and Patra, Beno{\^\i}t},
|
||||
journal = {IEEE Transactions on Information Theory},
|
||||
volume = {57},
|
||||
number = {3},
|
||||
pages = {1664--1674},
|
||||
year = {2011},
|
||||
publisher = {IEEE}
|
||||
}
|
||||
@inproceedings{bousquet2001tracking,
|
||||
title = {Tracking a small set of experts by mixing past posteriors},
|
||||
author = {Bousquet, Olivier and Warmuth, Manfred K},
|
||||
booktitle = {International Conference on Computational Learning Theory},
|
||||
pages = {31--47},
|
||||
year = {2001},
|
||||
organization = {Springer}
|
||||
}
|
||||
@article{bregere2020online,
|
||||
title = {Online hierarchical forecasting for power consumption data},
|
||||
author = {Br{\'e}g{\`e}re, Margaux and Huard, Malo},
|
||||
journal = {arXiv preprint arXiv:2003.00585},
|
||||
year = {2020}
|
||||
}
|
||||
@article{busetti2017quantile,
|
||||
title = {Quantile aggregation of density forecasts},
|
||||
author = {Busetti, Fabio},
|
||||
journal = {Oxford Bulletin of Economics and Statistics},
|
||||
volume = {79},
|
||||
number = {4},
|
||||
pages = {495--512},
|
||||
year = {2017},
|
||||
publisher = {Wiley Online Library}
|
||||
}
|
||||
@book{cesa2006prediction,
|
||||
title = {Prediction, learning, and games},
|
||||
author = {Cesa-Bianchi, Nicolo and Lugosi, G{\'a}bor},
|
||||
year = {2006},
|
||||
publisher = {Cambridge university press}
|
||||
}
|
||||
@article{cesa2012mirror,
|
||||
title = {Mirror descent meets fixed share (and feels no regret)},
|
||||
author = {Cesa-Bianchi, Nicolo and Gaillard, Pierre and Lugosi, G{\'a}bor and Stoltz, Gilles},
|
||||
journal = {Advances in Neural Information Processing Systems},
|
||||
volume = {25},
|
||||
pages = {980--988},
|
||||
year = {2012}
|
||||
}
|
||||
@article{cheng2015forecasting,
|
||||
title = {Forecasting with factor-augmented regression: A frequentist model averaging approach},
|
||||
author = {Cheng, Xu and Hansen, Bruce E},
|
||||
journal = {Journal of Econometrics},
|
||||
volume = {186},
|
||||
number = {2},
|
||||
pages = {280--293},
|
||||
year = {2015},
|
||||
publisher = {Elsevier}
|
||||
}
|
||||
@article{chernozhukov2010quantile,
|
||||
title = {Quantile and probability curves without crossing},
|
||||
author = {Chernozhukov, Victor and Fern{\'a}ndez-Val, Iv{\'a}n and Galichon, Alfred},
|
||||
journal = {Econometrica},
|
||||
volume = {78},
|
||||
number = {3},
|
||||
pages = {1093--1125},
|
||||
year = {2010},
|
||||
publisher = {Wiley Online Library}
|
||||
}
|
||||
@article{devaine2013forecasting,
|
||||
title = {Forecasting electricity consumption by aggregating specialized experts},
|
||||
author = {Devaine, Marie and Gaillard, Pierre and Goude, Yannig and Stoltz, Gilles},
|
||||
journal = {Machine Learning},
|
||||
volume = {90},
|
||||
number = {2},
|
||||
pages = {231--260},
|
||||
year = {2013},
|
||||
publisher = {Springer}
|
||||
}
|
||||
@article{dutta2018modeling,
|
||||
title = {Modeling and forecasting the volatility of carbon emission market: The role of outliers, time-varying jumps and oil price risk},
|
||||
author = {Dutta, Anupam},
|
||||
journal = {Journal of Cleaner Production},
|
||||
volume = {172},
|
||||
pages = {2773--2781},
|
||||
year = {2018},
|
||||
publisher = {Elsevier}
|
||||
}
|
||||
@article{eddelbuettel2014rcpparmadillo,
|
||||
title = {RcppArmadillo: Accelerating R with high-performance C++ linear algebra},
|
||||
author = {Eddelbuettel, Dirk and Sanderson, Conrad},
|
||||
journal = {Computational Statistics \& Data Analysis},
|
||||
volume = {71},
|
||||
pages = {1054--1063},
|
||||
year = {2014},
|
||||
publisher = {Elsevier}
|
||||
}
|
||||
@article{fragoso2018bayesian,
|
||||
title = {Bayesian model averaging: A systematic review and conceptual classification},
|
||||
author = {Fragoso, Tiago M and Bertoli, Wesley and Louzada, Francisco},
|
||||
journal = {International Statistical Review},
|
||||
volume = {86},
|
||||
number = {1},
|
||||
pages = {1--28},
|
||||
year = {2018},
|
||||
publisher = {Wiley Online Library}
|
||||
}
|
||||
@inproceedings{gaillard2014second,
|
||||
title = {A second-order bound with excess losses},
|
||||
author = {Gaillard, Pierre and Stoltz, Gilles and Van Erven, Tim},
|
||||
booktitle = {Conference on Learning Theory},
|
||||
pages = {176--196},
|
||||
year = {2014},
|
||||
organization = {PMLR}
|
||||
}
|
||||
@incollection{gaillard2015forecasting,
|
||||
title = {Forecasting electricity consumption by aggregating experts; how to design a good set of experts},
|
||||
author = {Gaillard, Pierre and Goude, Yannig},
|
||||
booktitle = {Modeling and stochastic learning for forecasting in high dimensions},
|
||||
pages = {95--115},
|
||||
year = {2015},
|
||||
publisher = {Springer}
|
||||
}
|
||||
@inproceedings{gaillard2018efficient,
|
||||
title = {Efficient online algorithms for fast-rate regret bounds under sparsity},
|
||||
author = {Gaillard, Pierre and Wintenberger, Olivier},
|
||||
booktitle = {Advances in Neural Information Processing Systems},
|
||||
pages = {7026--7036},
|
||||
year = {2018}
|
||||
}
|
||||
@article{garcia2020short,
|
||||
title = {Short-term European Union Allowance price forecasting with artificial neural networks},
|
||||
author = {Garc{\'\i}a, Agust{\'\i}n and Jaramillo-Mor{\'a}n, Miguel A},
|
||||
journal = {Entrepreneurship and Sustainability Issues},
|
||||
volume = {8},
|
||||
number = {1},
|
||||
pages = {261},
|
||||
year = {2020}
|
||||
}
|
||||
@article{gneiting2007strictly,
|
||||
title = {Strictly proper scoring rules, prediction, and estimation},
|
||||
author = {Gneiting, Tilmann and Raftery, Adrian E},
|
||||
journal = {Journal of the American statistical Association},
|
||||
volume = {102},
|
||||
number = {477},
|
||||
pages = {359--378},
|
||||
year = {2007},
|
||||
publisher = {Taylor \& Francis}
|
||||
}
|
||||
@article{gneiting2011comparing,
|
||||
title = {Comparing density forecasts using threshold-and quantile-weighted scoring rules},
|
||||
author = {Gneiting, Tilmann and Ranjan, Roopesh},
|
||||
journal = {Journal of Business \& Economic Statistics},
|
||||
volume = {29},
|
||||
number = {3},
|
||||
pages = {411--422},
|
||||
year = {2011},
|
||||
publisher = {Taylor \& Francis}
|
||||
}
|
||||
@article{gneiting2011making,
|
||||
title = {Making and evaluating point forecasts},
|
||||
author = {Gneiting, Tilmann},
|
||||
journal = {Journal of the American Statistical Association},
|
||||
volume = {106},
|
||||
number = {494},
|
||||
pages = {746--762},
|
||||
year = {2011},
|
||||
publisher = {Taylor \& Francis}
|
||||
}
|
||||
@article{gneiting2011quantiles,
|
||||
title = {Quantiles as optimal point forecasts},
|
||||
author = {Gneiting, Tilmann},
|
||||
journal = {International Journal of forecasting},
|
||||
volume = {27},
|
||||
number = {2},
|
||||
pages = {197--207},
|
||||
year = {2011},
|
||||
publisher = {Elsevier}
|
||||
}
|
||||
@article{hansen2008least,
|
||||
title = {Least-squares forecast averaging},
|
||||
author = {Hansen, Bruce E},
|
||||
journal = {Journal of Econometrics},
|
||||
volume = {146},
|
||||
number = {2},
|
||||
pages = {342--350},
|
||||
year = {2008},
|
||||
publisher = {Elsevier}
|
||||
}
|
||||
@article{hao2020modelling,
|
||||
title = {Modelling of carbon price in two real carbon trading markets},
|
||||
author = {Hao, Yan and Tian, Chengshi and Wu, Chunying},
|
||||
journal = {Journal of Cleaner Production},
|
||||
volume = {244},
|
||||
pages = {118556},
|
||||
year = {2020},
|
||||
publisher = {Elsevier}
|
||||
}
|
||||
@article{he1997quantile,
|
||||
title = {Quantile curves without crossing},
|
||||
author = {He, Xuming},
|
||||
journal = {The American Statistician},
|
||||
volume = {51},
|
||||
number = {2},
|
||||
pages = {186--192},
|
||||
year = {1997},
|
||||
publisher = {Taylor \& Francis}
|
||||
}
|
||||
@article{herbster1998tracking,
|
||||
title = {Tracking the best expert},
|
||||
author = {Herbster, Mark and Warmuth, Manfred K},
|
||||
journal = {Machine learning},
|
||||
volume = {32},
|
||||
number = {2},
|
||||
pages = {151--178},
|
||||
year = {1998},
|
||||
publisher = {Springer}
|
||||
}
|
||||
@article{hsiao2014there,
|
||||
title = {Is there an optimal forecast combination?},
|
||||
author = {Hsiao, Cheng and Wan, Shui Ki},
|
||||
journal = {Journal of Econometrics},
|
||||
volume = {178},
|
||||
pages = {294--309},
|
||||
year = {2014},
|
||||
publisher = {Elsevier}
|
||||
}
|
||||
@book{hyndman2018forecasting,
|
||||
title = {Forecasting: principles and practice},
|
||||
author = {Hyndman, Rob J and Athanasopoulos, George},
|
||||
year = {2018},
|
||||
publisher = {OTexts}
|
||||
}
|
||||
@article{jore2010combining,
|
||||
title = {Combining forecast densities from VARs with uncertain instabilities},
|
||||
author = {Jore, Anne Sofie and Mitchell, James and Vahey, Shaun P},
|
||||
journal = {Journal of Applied Econometrics},
|
||||
volume = {25},
|
||||
number = {4},
|
||||
pages = {621--634},
|
||||
year = {2010},
|
||||
publisher = {Wiley Online Library}
|
||||
}
|
||||
@inproceedings{kakade2008generalization,
|
||||
title = {On the Generalization Ability of Online Strongly Convex Programming Algorithms.},
|
||||
author = {Kakade, Sham M and Tewari, Ambuj},
|
||||
booktitle = {NIPS},
|
||||
pages = {801--808},
|
||||
year = {2008}
|
||||
}
|
||||
@article{kapetanios2015generalised,
|
||||
title = {Generalised density forecast combinations},
|
||||
author = {Kapetanios, G and Mitchell, James and Price, Simon and Fawcett, Nicholas},
|
||||
journal = {Journal of Econometrics},
|
||||
volume = {188},
|
||||
number = {1},
|
||||
pages = {150--165},
|
||||
year = {2015},
|
||||
publisher = {Elsevier}
|
||||
}
|
||||
@inproceedings{koolen2015second,
|
||||
title = {Second-order quantile methods for experts and combinatorial games},
|
||||
author = {Koolen, Wouter M and Van Erven, Tim},
|
||||
booktitle = {Conference on Learning Theory},
|
||||
pages = {1155--1175},
|
||||
year = {2015}
|
||||
}
|
||||
@article{koop2013forecasting,
|
||||
title = {Forecasting the European carbon market},
|
||||
author = {Koop, Gary and Tole, Lise},
|
||||
journal = {Journal of the Royal Statistical Society: Series A (Statistics in Society)},
|
||||
volume = {176},
|
||||
number = {3},
|
||||
pages = {723--741},
|
||||
year = {2013},
|
||||
publisher = {Wiley Online Library}
|
||||
}
|
||||
@article{korotin2019integral,
|
||||
title = {Integral Mixabilty: a Tool for Efficient Online Aggregation of Functional and Probabilistic Forecasts},
|
||||
author = {Korotin, Alexander and V'yugin, Vladimir and Burnaev, Evgeny},
|
||||
journal = {arXiv preprint arXiv:1912.07048},
|
||||
year = {2019}
|
||||
}
|
||||
@inproceedings{korotin2020mixing,
|
||||
title = {Mixing past predictions},
|
||||
author = {Korotin, Alexander and V’yugin, Vladimir and Burnaev, Evgeny},
|
||||
booktitle = {Conformal and Probabilistic Prediction and Applications},
|
||||
pages = {171--188},
|
||||
year = {2020},
|
||||
organization = {PMLR}
|
||||
}
|
||||
@article{lichtendahl2013better,
|
||||
title = {Is it better to average probabilities or quantiles?},
|
||||
author = {Lichtendahl Jr, Kenneth C and Grushka-Cockayne, Yael and Winkler, Robert L},
|
||||
journal = {Management Science},
|
||||
volume = {59},
|
||||
number = {7},
|
||||
pages = {1594--1611},
|
||||
year = {2013},
|
||||
publisher = {INFORMS}
|
||||
}
|
||||
@article{lin2018multi,
|
||||
title = {A multi-model combination approach for probabilistic wind power forecasting},
|
||||
author = {Lin, You and Yang, Ming and Wan, Can and Wang, Jianhui and Song, Yonghua},
|
||||
journal = {IEEE Transactions on Sustainable Energy},
|
||||
volume = {10},
|
||||
number = {1},
|
||||
pages = {226--237},
|
||||
year = {2018},
|
||||
publisher = {IEEE}
|
||||
}
|
||||
@article{littlestone1994weighted,
|
||||
title = {The weighted majority algorithm},
|
||||
author = {Littlestone, Nick and Warmuth, Manfred K},
|
||||
journal = {Information and computation},
|
||||
volume = {108},
|
||||
number = {2},
|
||||
pages = {212--261},
|
||||
year = {1994},
|
||||
publisher = {Elsevier}
|
||||
}
|
||||
@article{lu2015jackknife,
|
||||
title = {Jackknife model averaging for quantile regressions},
|
||||
author = {Lu, Xun and Su, Liangjun},
|
||||
journal = {Journal of Econometrics},
|
||||
volume = {188},
|
||||
number = {1},
|
||||
pages = {40--58},
|
||||
year = {2015},
|
||||
publisher = {Elsevier}
|
||||
}
|
||||
@article{maciejowska2020pca,
|
||||
title = {PCA Forecast Averaging—Predicting Day-Ahead and Intraday Electricity Prices},
|
||||
author = {Maciejowska, Katarzyna and Uniejewski, Bartosz and Serafin, Tomasz},
|
||||
journal = {Energies},
|
||||
volume = {13},
|
||||
number = {14},
|
||||
pages = {3530},
|
||||
year = {2020},
|
||||
publisher = {Multidisciplinary Digital Publishing Institute}
|
||||
}
|
||||
@article{mhammedi2019lipschitz,
|
||||
title = {Lipschitz adaptivity with multiple learning rates in online learning},
|
||||
author = {Mhammedi, Zakaria and Koolen, Wouter M and Van Erven, Tim},
|
||||
journal = {arXiv preprint arXiv:1902.10797},
|
||||
year = {2019}
|
||||
}
|
||||
@article{nowotarski2018recent,
|
||||
title = {Recent advances in electricity price forecasting: A review of probabilistic forecasting},
|
||||
author = {Nowotarski, Jakub and Weron, Rafa{\l}},
|
||||
journal = {Renewable and Sustainable Energy Reviews},
|
||||
volume = {81},
|
||||
pages = {1548--1568},
|
||||
year = {2018},
|
||||
publisher = {Elsevier}
|
||||
}
|
||||
@article{opschoor2017combining,
|
||||
title = {Combining density forecasts using focused scoring rules},
|
||||
author = {Opschoor, Anne and Van Dijk, Dick and van der Wel, Michel},
|
||||
journal = {Journal of Applied Econometrics},
|
||||
volume = {32},
|
||||
number = {7},
|
||||
pages = {1298--1313},
|
||||
year = {2017},
|
||||
publisher = {Wiley Online Library}
|
||||
}
|
||||
@article{petropoulos2020forecasting,
|
||||
title = {Forecasting: theory and practice},
|
||||
author = {Petropoulos, Fotios and Apiletti, Daniele and Assimakopoulos, Vassilios and Babai, Mohamed Zied and Barrow, Devon K and Bergmeir, Christoph and Bessa, Ricardo J and Boylan, John E and Browell, Jethro and Carnevale, Claudio and others},
|
||||
journal = {arXiv preprint arXiv:2012.03854},
|
||||
year = {2020}
|
||||
}
|
||||
@article{raftery2005using,
|
||||
title = {Using Bayesian model averaging to calibrate forecast ensembles},
|
||||
author = {Raftery, Adrian E and Gneiting, Tilmann and Balabdaoui, Fadoua and Polakowski, Michael},
|
||||
journal = {Monthly weather review},
|
||||
volume = {133},
|
||||
number = {5},
|
||||
pages = {1155--1174},
|
||||
year = {2005}
|
||||
}
|
||||
@article{segnon2017modeling,
|
||||
title = {Modeling and forecasting the volatility of carbon dioxide emission allowance prices: A review and comparison of modern volatility models},
|
||||
author = {Segnon, Mawuli and Lux, Thomas and Gupta, Rangan},
|
||||
journal = {Renewable and Sustainable Energy Reviews},
|
||||
volume = {69},
|
||||
pages = {692--704},
|
||||
year = {2017},
|
||||
publisher = {Elsevier}
|
||||
}
|
||||
@article{thorey2017online,
|
||||
title = {Online learning with the Continuous Ranked Probability Score for ensemble forecasting},
|
||||
author = {Thorey, Jean and Mallet, Vivien and Baudin, Paul},
|
||||
journal = {Quarterly Journal of the Royal Meteorological Society},
|
||||
volume = {143},
|
||||
number = {702},
|
||||
pages = {521--529},
|
||||
year = {2017},
|
||||
publisher = {Wiley Online Library}
|
||||
}
|
||||
@article{thorey2018ensemble,
|
||||
title = {Ensemble forecast of photovoltaic power with online CRPS learning},
|
||||
author = {Thorey, Jean and Chaussin, Christophe and Mallet, Vivien},
|
||||
journal = {International Journal of Forecasting},
|
||||
volume = {34},
|
||||
number = {4},
|
||||
pages = {762--773},
|
||||
year = {2018},
|
||||
publisher = {Elsevier}
|
||||
}
|
||||
@article{tu2011markowitz,
|
||||
title = {Markowitz meets Talmud: A combination of sophisticated and naive diversification strategies},
|
||||
author = {Tu, Jun and Zhou, Guofu},
|
||||
journal = {Journal of Financial Economics},
|
||||
volume = {99},
|
||||
number = {1},
|
||||
pages = {204--215},
|
||||
year = {2011},
|
||||
publisher = {Elsevier}
|
||||
}
|
||||
@article{v2020online,
|
||||
title = {Online Aggregation of Probabilistic Forecasts Based on the Continuous Ranked Probability Score},
|
||||
author = {V’yugin, VV and Trunov, VG},
|
||||
journal = {Journal of Communications Technology and Electronics},
|
||||
volume = {65},
|
||||
number = {6},
|
||||
pages = {662--676},
|
||||
year = {2020},
|
||||
publisher = {Springer}
|
||||
}
|
||||
@article{van2018probabilistic,
|
||||
title = {Probabilistic forecasting of solar power, electricity consumption and net load: Investigating the effect of seasons, aggregation and penetration on prediction intervals},
|
||||
author = {Van der Meer, DW and Munkhammar, Joakim and Wid{\'e}n, Joakim},
|
||||
journal = {Solar Energy},
|
||||
volume = {171},
|
||||
pages = {397--413},
|
||||
year = {2018},
|
||||
publisher = {Elsevier}
|
||||
}
|
||||
@article{vovk1990aggregating,
|
||||
title = {Aggregating strategies},
|
||||
author = {Vovk, Volodimir G},
|
||||
journal = {Proc. of Computational Learning Theory, 1990},
|
||||
year = {1990}
|
||||
}
|
||||
@book{wahba1990spline,
|
||||
title = {Spline models for observational data},
|
||||
author = {Wahba, Grace},
|
||||
year = {1990},
|
||||
publisher = {SIAM}
|
||||
}
|
||||
@book{wang2011smoothing,
|
||||
title = {Smoothing splines: methods and applications},
|
||||
author = {Wang, Yuedong},
|
||||
year = {2011},
|
||||
publisher = {CRC Press}
|
||||
}
|
||||
@article{wang2019jackknife,
|
||||
title = {Jackknife Model Averaging for Composite Quantile Regression},
|
||||
author = {Wang, Miaomiao and Zou, Guohua},
|
||||
journal = {arXiv preprint arXiv:1910.12209},
|
||||
year = {2019}
|
||||
}
|
||||
@article{wintenberger2017optimal,
|
||||
title = {Optimal learning with Bernstein online aggregation},
|
||||
author = {Wintenberger, Olivier},
|
||||
journal = {Machine Learning},
|
||||
volume = {106},
|
||||
number = {1},
|
||||
pages = {119--141},
|
||||
year = {2017},
|
||||
publisher = {Springer}
|
||||
}
|
||||
@article{zamo2020sequential,
|
||||
title = {Sequential Aggregation of Probabilistic Forecasts--Applicaton to Wind Speed Ensemble Forecasts},
|
||||
author = {Zamo, Micha{\"e}l and Bel, Liliane and Mestre, Olivier},
|
||||
journal = {arXiv preprint arXiv:2005.03540},
|
||||
year = {2020}
|
||||
}
|
||||
@article{zhang2020load,
|
||||
title = {Load probability density forecasting by transforming and combining quantile forecasts},
|
||||
author = {Zhang, Shu and Wang, Yi and Zhang, Yutian and Wang, Dan and Zhang, Ning},
|
||||
journal = {Applied Energy},
|
||||
volume = {277},
|
||||
pages = {115600},
|
||||
year = {2020},
|
||||
publisher = {Elsevier}
|
||||
}
|
||||
@@ -1,261 +0,0 @@
|
||||
/*-- scss:defaults --*/
|
||||
|
||||
// Custom colours and variables
|
||||
|
||||
$jet: #131516;
|
||||
$accent: #107895;
|
||||
$accent2: #9a2515;
|
||||
// $accent2: #e64173;
|
||||
$right-arrow: "\2192"; // Unicode character for right arrow
|
||||
|
||||
// fonts
|
||||
|
||||
/*
|
||||
Note: This theme uses the Roboto font family, which it imports from Google
|
||||
Fonts to ensure consistent weighting in addition to availability. While
|
||||
you can use a local installation of Roboto, this is generally not
|
||||
recommended since the weighting will likely be wrong (probably too
|
||||
light). OTOH, importing from Google Fonts can cause some issues in
|
||||
certain secure environments due the external CDN (see:
|
||||
https://github.com/grantmcdermott/quarto-revealjs-clean/issues/7). If
|
||||
that's the case for you, simply comment out the `@import url(...)` line
|
||||
below and it will default for the default Sans Serif font on your system
|
||||
(e.g., Helvetica on a Mac). Circling back to the earlier point about
|
||||
preserving consistent font weights, you may also wish to remove "Roboto"
|
||||
from the choice set if the family is installed locally.
|
||||
*/
|
||||
@import url(https://fonts.googleapis.com/css?family=Roboto:200,200i,300,300i,350,350i,400,400i);
|
||||
$font-family-sans-serif: "Roboto", sans-serif !default;
|
||||
$presentation-heading-font: "Roboto", sans-serif !default;
|
||||
|
||||
$presentation-heading-color: $jet !default;
|
||||
$presentation-heading-font-weight: lighter;
|
||||
//$presentation-heading-line-height: 2;
|
||||
//$presentation-block-margin: 28px;
|
||||
$presentation-font-size-root: 32px;
|
||||
|
||||
// colors
|
||||
//$body-bg: #f0f1eb !default;
|
||||
$body-color: $jet !default;
|
||||
$link-color: $accent !default;
|
||||
$selection-bg: #26351c !default;
|
||||
|
||||
|
||||
/*-- scss:rules --*/
|
||||
|
||||
.reveal a {
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.reveal p {
|
||||
// font-weight: 300;
|
||||
font-weight: lighter;
|
||||
margin-top: 1.25em;
|
||||
}
|
||||
|
||||
// title and headings
|
||||
|
||||
#title-slide {
|
||||
text-align: left;
|
||||
|
||||
.title {
|
||||
color: $body-color;
|
||||
font-size: 1.4em;
|
||||
// font-weight: 350;
|
||||
font-weight: lighter;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
color: $accent;
|
||||
font-style: italic;
|
||||
margin-top: 0em;
|
||||
font-weight: lighter;
|
||||
}
|
||||
|
||||
.institute,
|
||||
.quarto-title-affiliation,
|
||||
.quarto-title-author-email {
|
||||
font-style: italic;
|
||||
// font-size: 80%;
|
||||
// color: #7F7F7F;
|
||||
}
|
||||
|
||||
.author,
|
||||
.quarto-title-author-name {
|
||||
color: $body-color;
|
||||
}
|
||||
|
||||
.quarto-title-authors {
|
||||
display: flex;
|
||||
justify-content: left;
|
||||
|
||||
.quarto-title-author {
|
||||
padding-left: 0em;
|
||||
padding-right: 0em;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
.reveal h2 {
|
||||
// font-weight: 350;
|
||||
font-weight: lighter;
|
||||
font-size: 1.4em;
|
||||
}
|
||||
|
||||
.reveal h3 {
|
||||
color: $accent;
|
||||
font-style: italic;
|
||||
// font-weight: 350;
|
||||
font-weight: lighter;
|
||||
font-size: 0.95em;
|
||||
}
|
||||
|
||||
.reveal h4 {
|
||||
color: $accent2;
|
||||
// font-weight: 350;
|
||||
font-weight: normal;
|
||||
margin-top: 1.25em;
|
||||
}
|
||||
|
||||
// alerts etc.
|
||||
|
||||
.alert {
|
||||
color: $accent2;
|
||||
}
|
||||
|
||||
.fg {
|
||||
color: var(--col, $jet);
|
||||
}
|
||||
|
||||
.bg {
|
||||
background-color: var(--col, #fff);
|
||||
padding: 0.1em;
|
||||
border-radius: 5px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
// lists
|
||||
|
||||
// Unordered lists
|
||||
|
||||
.reveal ul {
|
||||
// font-weight: 300;
|
||||
font-weight: lighter;
|
||||
padding-left: 16px;
|
||||
|
||||
li::marker {
|
||||
color: mix($accent, white, 70%);
|
||||
}
|
||||
}
|
||||
|
||||
.reveal ul ul {
|
||||
list-style: none;
|
||||
|
||||
li:before {
|
||||
content: $right-arrow;
|
||||
color: mix($accent, white, 60%);
|
||||
display: inline-block;
|
||||
width: 1em;
|
||||
margin-left: -1em;
|
||||
margin-right: 0.5em;
|
||||
}
|
||||
}
|
||||
|
||||
// Ordered lists
|
||||
|
||||
.reveal ol {
|
||||
// font-weight: 300;
|
||||
font-weight: lighter;
|
||||
padding-left: 16px;
|
||||
|
||||
li::marker {
|
||||
color: $accent;
|
||||
}
|
||||
}
|
||||
|
||||
// Move "hamburger" menu button to top right
|
||||
|
||||
.reveal .slide-menu-button {
|
||||
position: fixed;
|
||||
top: 6px;
|
||||
right: 0;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: flex-start;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.reveal .slide-menu-button > * {
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
|
||||
// Same for chalkboard buttons (with an offset)
|
||||
|
||||
.reveal .slide-chalkboard-buttons {
|
||||
position: fixed;
|
||||
top: 12px;
|
||||
right: 24px;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: flex-start;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.reveal .slide-chalkboard-buttons > * {
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
// Beamer-style button link environment
|
||||
|
||||
.button {
|
||||
display: inline-block;
|
||||
padding: 6px 12px;
|
||||
margin-bottom: 0;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
line-height: 1.42857143;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
vertical-align: middle;
|
||||
cursor: pointer;
|
||||
background-color: $accent;
|
||||
border: 1px solid $accent;
|
||||
color: #fff !important;
|
||||
text-decoration: none;
|
||||
border-radius: 4px;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
background-color: #0056b3;
|
||||
border-color: #0056b3;
|
||||
}
|
||||
|
||||
.button::before {
|
||||
content: "▶";
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
// Special catch for etable environment to ensure these table images
|
||||
// don't overflow the slide.
|
||||
// See: https://lrberge.github.io/fixest/articles/etable_new_features.html
|
||||
|
||||
.etable {
|
||||
width: 100%;
|
||||
height: calc(100% - 3em); /* Adjust 3em based on the height of your header, if necessary */
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.etable img {
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
width: auto;
|
||||
height: auto;
|
||||
object-fit: contain;
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
/*-- scss:defaults --*/
|
||||
|
||||
$body-bg: #ffffff;
|
||||
$body-color: #7a6f69;
|
||||
$link-color: #005088;
|
||||
$selection-color: #00b0dc;
|
||||
|
||||
$presentation-heading-color: $selection-color;
|
||||
$tabset-border-color: #bbb3b0;
|
||||
|
||||
/*-- scss:rules --*/
|
||||
17
_extensions/quarto-ext/pointer/_extension.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
title: Pointer
|
||||
author: Posit Software, PBC
|
||||
version: 0.1.0
|
||||
quarto-required: ">=1.2.198"
|
||||
contributes:
|
||||
revealjs-plugins:
|
||||
- name: RevealPointer
|
||||
script: pointer.js
|
||||
stylesheet: pointer.css
|
||||
config:
|
||||
pointer:
|
||||
key: "q"
|
||||
alwaysVisible: false
|
||||
hideDelay: 3000
|
||||
color: "#202020FF"
|
||||
scaleFactor: 0.03 # 3% of viewport height
|
||||
icon: "fa fa-hand-point-up"
|
||||
41
_extensions/quarto-ext/pointer/pointer.css
Normal file
@@ -0,0 +1,41 @@
|
||||
:root {
|
||||
--pointer-scale-factor: 0.025;
|
||||
/* 2.5% of viewport height */
|
||||
}
|
||||
|
||||
.cursor-dot,
|
||||
.cursor-dot-outline {
|
||||
pointer-events: none;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
opacity: 0;
|
||||
transform: translate(-30%, 0%);
|
||||
transition: opacity 0.4s ease-in-out;
|
||||
z-index: 99;
|
||||
}
|
||||
|
||||
.cursor-dot {
|
||||
font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands";
|
||||
font-weight: 900;
|
||||
color: red;
|
||||
font-size: calc(var(--pointer-scale-factor) * 100vh);
|
||||
}
|
||||
|
||||
.cursor-dot.visible {
|
||||
opacity: 0.8 !important;
|
||||
}
|
||||
|
||||
.cursor-dot.hidden {
|
||||
opacity: 0 !important;
|
||||
}
|
||||
|
||||
.no-cursor {
|
||||
cursor: none;
|
||||
}
|
||||
|
||||
.no-cursor a,
|
||||
.no-cursor div,
|
||||
.no-cursor span {
|
||||
cursor: none;
|
||||
}
|
||||
1
_extensions/quarto-ext/pointer/pointer.js
Normal file
@@ -0,0 +1 @@
|
||||
var RevealPointer=function(){"use strict";var e={backspace:8,tab:9,enter:13,shift:16,ctrl:17,alt:18,pausebreak:19,capslock:20,esc:27,space:32,pageup:33,pagedown:34,end:35,home:36,leftarrow:37,uparrow:38,rightarrow:39,downarrow:40,insert:45,delete:46,0:48,1:49,2:50,3:51,4:52,5:53,6:54,7:55,8:56,9:57,a:65,b:66,c:67,d:68,e:69,f:70,g:71,h:72,i:73,j:74,k:75,l:76,m:77,n:78,o:79,p:80,q:81,r:82,s:83,t:84,u:85,v:86,w:87,x:88,y:89,z:90,leftwindowkey:91,rightwindowkey:92,selectkey:93,numpad0:96,numpad1:97,numpad2:98,numpad3:99,numpad4:100,numpad5:101,numpad6:102,numpad7:103,numpad8:104,numpad9:105,multiply:106,add:107,subtract:109,decimalpoint:110,divide:111,f1:112,f2:113,f3:114,f4:115,f5:116,f6:117,f7:118,f8:119,f9:120,f10:121,f11:122,f12:123,numlock:144,scrolllock:145,semicolon:186,equalsign:187,comma:188,dash:189,period:190,forwardslash:191,graveaccent:192,openbracket:219,backslash:220,closebracket:221,singlequote:222};return function(){var t={},o=!1,a=null,n={x:0,y:0,isVisible:!1},i={x:0,y:0,scale:1},hideTimer=null;function l(o){var a;null==(t=o.pointer||{}).key?t.key="q":t.key=t.key.toLowerCase(),null!=t.tailLength&&"number"==typeof t.tailLength||(t.tailLength=10),null!=t.color&&"string"==typeof t.color||(t.color="red"),null!=t.alwaysVisible&&"boolean"==typeof t.alwaysVisible||(t.alwaysVisible=!1),null!=t.icon&&"string"==typeof t.icon||(t.icon="fa-solid fa-arrow-pointer"),null!=t.hideDelay&&"number"==typeof t.hideDelay||(t.hideDelay=3e3),null!=t.scaleFactor&&"number"==typeof t.scaleFactor||(t.scaleFactor=0.025),t.keyCode=(a=t.key,e[a])}function updatePointerSize(){document.documentElement.style.setProperty("--pointer-scale-factor",t.scaleFactor)}function showPointer(){if(!n.isVisible){n.isVisible=!0;a.classList.remove("hidden");setTimeout(()=>{a.classList.add("visible")},10);if(hideTimer){clearTimeout(hideTimer);hideTimer=null}if(!t.alwaysVisible){hideTimer=setTimeout(hidePointer,t.hideDelay)}}}function hidePointer(){if(n.isVisible){n.isVisible=!1;a.classList.remove("visible");if(hideTimer){clearTimeout(hideTimer);hideTimer=null}}}function s(){a.style.top="".concat((n.y-i.y)/i.scale,"px"),a.style.left="".concat((n.x-i.x)/i.scale,"px")}function c(e){n.x=e.pageX,n.y=e.pageY;var t=document.body.style.transform;""!==t?(i.x=Number.parseInt(/translate\((.*)px,/gm.exec(t)[1]),i.y=Number.parseInt(/px,\s(.*)px\)/gm.exec(t)[1]),i.scale=Number.parseFloat(/scale\((.)\)/gm.exec(t)[1])):(i.x=0,i.y=0,i.scale=1),requestAnimationFrame(s);if(o&&!t.alwaysVisible){showPointer()}}function r(){(o=!o)?(document.addEventListener("mousemove",c),document.body.classList.add("no-cursor"),showPointer()):(document.removeEventListener("mousemove",c),document.body.classList.remove("no-cursor"),hidePointer())}return{id:"pointer",init:function(e){var o;l(e.getConfig()),updatePointerSize(),t.alwaysVisible?r():e.addKeyBinding({keyCode:t.keyCode,key:t.key},(function(){r()})),(o=document.createElement("i")).className="cursor-dot "+t.icon,o.style.color=t.color,t.alwaysVisible&&o.classList.add("visible"),document.body.appendChild(o),a=o,window.addEventListener("resize",updatePointerSize)}}}}();
|
||||
90
assets/01_common.R
Normal file
@@ -0,0 +1,90 @@
|
||||
text_size <- 16
|
||||
linesize <- 1
|
||||
width <- 12
|
||||
height <- 6
|
||||
|
||||
# col_lightgray <- "#e7e7e7"
|
||||
# col_blue <- "#F24159"
|
||||
# col_b_smooth <- "#F7CE14"
|
||||
# col_p_smooth <- "#58A64A"
|
||||
# col_pointwise <- "#772395"
|
||||
# col_b_constant <- "#BF236D"
|
||||
# col_p_constant <- "#F6912E"
|
||||
# col_optimum <- "#666666"
|
||||
|
||||
# https://www.schemecolor.com/retro-rainbow-pastels.php
|
||||
col_lightgray <- "#e7e7e7"
|
||||
col_blue <- "#F24159"
|
||||
col_b_smooth <- "#5391AE"
|
||||
col_p_smooth <- "#85B464"
|
||||
col_pointwise <- "#E2D269"
|
||||
col_b_constant <- "#7A4E8A"
|
||||
col_p_constant <- "#BC677B"
|
||||
col_optimum <- "#666666"
|
||||
col_auto <- "#EA915E"
|
||||
|
||||
T_selection <- c(32, 128, 512)
|
||||
|
||||
# Lambda grid
|
||||
lamgrid <- c(-Inf, 2^(-15:25))
|
||||
|
||||
# Gamma grid
|
||||
gammagrid <- sort(1 - sqrt(seq(0, 0.99, .05)))
|
||||
|
||||
material_pals <- c(
|
||||
"red", "pink", "purple", "deep-purple", "indigo",
|
||||
"blue", "light-blue", "cyan", "teal", "green", "light-green", "lime",
|
||||
"yellow", "amber", "orange", "deep-orange", "brown", "grey", "blue-grey"
|
||||
)
|
||||
cols <- purrr::map(material_pals, ~ ggsci::pal_material(.x)(10)) %>%
|
||||
purrr::reduce(cbind)
|
||||
colnames(cols) <- material_pals
|
||||
|
||||
cols %>%
|
||||
as_tibble() %>%
|
||||
mutate(idx = as.factor(1:10)) %>%
|
||||
pivot_longer(-idx, names_to = "var", values_to = "val") %>%
|
||||
mutate(var = factor(var, levels = material_pals[19:1])) %>%
|
||||
ggplot() +
|
||||
xlab(NULL) +
|
||||
ylab(NULL) +
|
||||
geom_tile(aes(x = idx, y = var, fill = val)) +
|
||||
scale_fill_identity() +
|
||||
scale_x_discrete(expand = c(0, 0)) +
|
||||
scale_y_discrete(expand = c(0, 0)) +
|
||||
theme_minimal() -> plot_cols
|
||||
|
||||
col_gas <- "blue"
|
||||
col_eua <- "green"
|
||||
col_oil <- "amber"
|
||||
col_coal <- "brown"
|
||||
|
||||
col_scale2 <- function(x, rng_t) {
|
||||
ret <- x
|
||||
for (i in seq_along(x)) {
|
||||
if (x[i] < rng_t[1]) {
|
||||
ret[i] <- col_scale(rng_t[1])
|
||||
} else if (x[i] > rng_t[2]) {
|
||||
ret[i] <- col_scale(rng_t[2])
|
||||
} else {
|
||||
ret[i] <- col_scale(x[i])
|
||||
}
|
||||
}
|
||||
return(ret)
|
||||
}
|
||||
|
||||
rng_t <- c(-5, 5)
|
||||
h_sub <- c(1, 5, 30)
|
||||
|
||||
col_scale <- scales::gradient_n_pal(
|
||||
c(
|
||||
cols[5, "green"],
|
||||
cols[5, "light-green"],
|
||||
cols[5, "yellow"],
|
||||
# cols[5, "amber"],
|
||||
cols[5, "orange"],
|
||||
# cols[5, "deep-orange"],
|
||||
cols[5, "red"]
|
||||
),
|
||||
values = seq(rng_t[1], rng_t[2], length.out = 5)
|
||||
)
|
||||
BIN
assets/Renewable_Energy_Forecasting.png
Normal file
|
After Width: | Height: | Size: 1.6 MiB |
BIN
assets/allisonhorst/hiding.png
Normal file
|
After Width: | Height: | Size: 1.9 MiB |
BIN
assets/allisonhorst/not_normal.png
Normal file
|
After Width: | Height: | Size: 250 KiB |
BIN
assets/allisonhorst/the_beginning.png
Normal file
|
After Width: | Height: | Size: 923 KiB |
BIN
assets/allisonhorst/the_beginning_cropped.png
Normal file
|
After Width: | Height: | Size: 926 KiB |
BIN
assets/crps_learning/01_motivation_01.RData
Normal file
BIN
assets/crps_learning/01_motivation_02.RData
Normal file
|
Before Width: | Height: | Size: 2.3 MiB After Width: | Height: | Size: 2.3 MiB |
|
Before Width: | Height: | Size: 3.1 MiB After Width: | Height: | Size: 3.1 MiB |
BIN
assets/crps_learning/changing_weights.rds
Normal file
BIN
assets/crps_learning/forget.png
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
assets/crps_learning/overview_data.rds
Normal file
BIN
assets/crps_learning/pre_vs_post.gif
Normal file
|
After Width: | Height: | Size: 1.7 MiB |
BIN
assets/crps_learning/pre_vs_post_kstep.gif
Normal file
|
After Width: | Height: | Size: 891 KiB |
BIN
assets/crps_learning/pre_vs_post_lambda.gif
Normal file
|
After Width: | Height: | Size: 934 KiB |
|
Before Width: | Height: | Size: 4.2 MiB After Width: | Height: | Size: 4.2 MiB |
BIN
assets/crps_learning/weights_data.RData
Normal file
BIN
assets/crps_learning/weights_example.RData
Normal file
BIN
assets/crps_learning/weights_kstep.gif
Normal file
|
After Width: | Height: | Size: 862 KiB |
BIN
assets/crps_learning/weights_lambda.gif
Normal file
|
After Width: | Height: | Size: 636 KiB |
33034
assets/crps_learning/weights_plot/cdf_data.csv
Normal file
206
assets/crps_learning/weights_plot/index.qmd
Normal file
@@ -0,0 +1,206 @@
|
||||
---
|
||||
title: "CDF Weights"
|
||||
date: 2025-07-10
|
||||
format:
|
||||
revealjs:
|
||||
embed-resources: true
|
||||
execute:
|
||||
daemon: false
|
||||
highlight-style: github
|
||||
---
|
||||
|
||||
|
||||
```{ojs}
|
||||
d3 = require("d3@7")
|
||||
```
|
||||
|
||||
```{ojs}
|
||||
cdf_data = FileAttachment("cdf_data.csv").csv({ typed: true })
|
||||
```
|
||||
|
||||
```{ojs}
|
||||
function updateChartInner(g, x, y, linesGroup, color, line, data) {
|
||||
// Update axes with transitions
|
||||
x.domain(d3.extent(data, d => d.x));
|
||||
g.select(".x-axis").transition().duration(1500).call(d3.axisBottom(x).ticks(10));
|
||||
y.domain([0, d3.max(data, d => d.y)]);
|
||||
g.select(".y-axis").transition().duration(1500).call(d3.axisLeft(y).ticks(5));
|
||||
|
||||
// Group data by basis function
|
||||
const dataByFunction = Array.from(d3.group(data, d => d.b));
|
||||
const keyFn = d => d[0];
|
||||
|
||||
// Update basis function lines
|
||||
const u = linesGroup.selectAll("path").data(dataByFunction, keyFn);
|
||||
u.join(
|
||||
enter => enter.append("path").attr("fill","none").attr("stroke-width",3)
|
||||
.attr("stroke", (_, i) => color(i)).attr("d", d => line(d[1].map(pt => ({x: pt.x, y: 0}))))
|
||||
.style("opacity",0),
|
||||
update => update,
|
||||
exit => exit.transition().duration(1000).style("opacity",0).remove()
|
||||
)
|
||||
.transition().duration(1000)
|
||||
.attr("d", d => line(d[1]))
|
||||
.attr("stroke", (_, i) => color(i))
|
||||
.style("opacity",1);
|
||||
}
|
||||
|
||||
chart = {
|
||||
// State variable for selected mu parameter
|
||||
let selectedMu = 1;
|
||||
|
||||
const filteredData = () => cdf_data.filter(d =>
|
||||
Math.abs(selectedMu - d.mu) < 0.001
|
||||
);
|
||||
|
||||
const container = d3.create("div")
|
||||
.style("max-width", "none")
|
||||
.style("width", "100%");
|
||||
|
||||
const controlsContainer = container.append("div")
|
||||
.style("display", "flex")
|
||||
.style("gap", "20px")
|
||||
.style("align-items", "center");
|
||||
|
||||
// Single slider control for mu
|
||||
const sliderContainer = controlsContainer.append('div')
|
||||
.style('display','flex')
|
||||
.style('align-items','center')
|
||||
.style('gap','10px')
|
||||
.style('flex','1');
|
||||
|
||||
sliderContainer.append('label')
|
||||
.text('Naive:')
|
||||
.style('font-size','20px');
|
||||
|
||||
const muSlider = sliderContainer.append('input')
|
||||
.attr('type','range')
|
||||
.attr('min', 0)
|
||||
.attr('max', 1)
|
||||
.attr('step', 0.1)
|
||||
.property('value', selectedMu)
|
||||
.on('input', function(event) {
|
||||
selectedMu = +this.value;
|
||||
muDisplay.text(selectedMu.toFixed(1));
|
||||
updateChart(filteredData());
|
||||
})
|
||||
.style('width', '100%')
|
||||
//.style('-webkit-appearance', 'none')
|
||||
.style('appearance', 'none')
|
||||
.style('height', '8px')
|
||||
.style('background', '#BDBDBDFF');
|
||||
|
||||
const muDisplay = sliderContainer.append('span')
|
||||
.text(selectedMu.toFixed(1))
|
||||
.style('font-size','20px');
|
||||
|
||||
// Add Reset button
|
||||
controlsContainer.append('button')
|
||||
.text('Reset')
|
||||
.style('font-size', '20px')
|
||||
.style('align-self', 'center')
|
||||
.style('margin-left', 'auto')
|
||||
.on('click', () => {
|
||||
selectedMu = 0.5;
|
||||
muSlider.property('value', selectedMu);
|
||||
muDisplay.text(selectedMu.toFixed(1));
|
||||
updateChart(filteredData());
|
||||
});
|
||||
|
||||
// Build SVG
|
||||
const width = 800;
|
||||
const height = 450;
|
||||
const margin = {top: 40, right: 20, bottom: 40, left: 40};
|
||||
const innerWidth = width - margin.left - margin.right;
|
||||
const innerHeight = height - margin.top - margin.bottom;
|
||||
|
||||
// Set controls container width to match SVG plot width
|
||||
controlsContainer.style("max-width", "none").style("width", "100%");
|
||||
// Distribute each control evenly and make sliders full-width
|
||||
controlsContainer.selectAll("div").style("flex", "1").style("min-width", "0px");
|
||||
controlsContainer.selectAll("input").style("width", "100%").style("box-sizing", "border-box");
|
||||
|
||||
// Create scales
|
||||
const x = d3.scaleLinear()
|
||||
.range([0, innerWidth]);
|
||||
|
||||
const y = d3.scaleLinear()
|
||||
.range([innerHeight, 0]);
|
||||
|
||||
// Create a color scale for the basis functions
|
||||
const color = d3.scaleOrdinal(["#80C684FF", "#FFD44EFF", "#D81A5FFF"]);
|
||||
|
||||
// Create SVG
|
||||
const svg = d3.create("svg")
|
||||
.attr("width", "100%")
|
||||
.attr("height", "auto")
|
||||
.attr("viewBox", [0, 0, width, height])
|
||||
.attr("preserveAspectRatio", "xMidYMid meet")
|
||||
.attr("style", "max-width: 100%; height: auto;");
|
||||
|
||||
// Create the chart group
|
||||
const g = svg.append("g")
|
||||
.attr("transform", `translate(${margin.left},${margin.top})`);
|
||||
|
||||
// Add axes
|
||||
const xAxis = g.append("g")
|
||||
.attr("transform", `translate(0,${innerHeight})`)
|
||||
.attr("class", "x-axis")
|
||||
.call(d3.axisBottom(x).ticks(10))
|
||||
.style("font-size", "20px");
|
||||
|
||||
const yAxis = g.append("g")
|
||||
.attr("class", "y-axis")
|
||||
.call(d3.axisLeft(y).ticks(5))
|
||||
.style("font-size", "20px");
|
||||
|
||||
// Add a horizontal line at y = 0
|
||||
g.append("line")
|
||||
.attr("x1", 0)
|
||||
.attr("x2", innerWidth)
|
||||
.attr("y1", y(0))
|
||||
.attr("y2", y(0))
|
||||
.attr("stroke", "#000")
|
||||
.attr("stroke-opacity", 0.2);
|
||||
|
||||
// Add gridlines
|
||||
g.append("g")
|
||||
.attr("class", "grid-lines")
|
||||
.selectAll("line")
|
||||
.data(y.ticks(5))
|
||||
.join("line")
|
||||
.attr("x1", 0)
|
||||
.attr("x2", innerWidth)
|
||||
.attr("y1", d => y(d))
|
||||
.attr("y2", d => y(d))
|
||||
.attr("stroke", "#ccc")
|
||||
.attr("stroke-opacity", 0.5);
|
||||
|
||||
// Create a line generator
|
||||
const line = d3.line()
|
||||
.x(d => x(d.x))
|
||||
.y(d => y(d.y))
|
||||
.curve(d3.curveBasis);
|
||||
|
||||
// Group to contain the basis function lines
|
||||
const linesGroup = g.append("g")
|
||||
.attr("class", "basis-functions");
|
||||
|
||||
// Store the current basis functions for transition
|
||||
let currentBasisFunctions = new Map();
|
||||
|
||||
// Function to update the chart with new data
|
||||
function updateChart(data) {
|
||||
updateChartInner(g, x, y, linesGroup, color, line, data);
|
||||
}
|
||||
|
||||
// Store the update function
|
||||
svg.node().update = updateChart;
|
||||
|
||||
// Initial render
|
||||
updateChart(filteredData());
|
||||
|
||||
container.node().appendChild(svg.node());
|
||||
return container.node();
|
||||
}
|
||||
```
|
||||
78
assets/crps_learning/weights_plot/make_cdf_data.R
Normal file
@@ -0,0 +1,78 @@
|
||||
library(tidyverse)
|
||||
|
||||
source("assets/01_common.R")
|
||||
|
||||
set.seed(2002)
|
||||
# Experts
|
||||
N <- 2
|
||||
# Observations
|
||||
T <- 2^5
|
||||
# Size of probability grid
|
||||
P <- 999
|
||||
prob_grid <- 1:P / (P + 1)
|
||||
|
||||
# Realized observations
|
||||
y <- rnorm(T)
|
||||
|
||||
# Deviation of the experts
|
||||
dev <- c(-1, 3)
|
||||
experts_sd <- c(1, sqrt(4))
|
||||
|
||||
# Expert predictions
|
||||
experts <- array(dim = c(P, N))
|
||||
|
||||
seq(-5, 10, length.out = P) -> x_grid
|
||||
|
||||
experts[, 1] <- qnorm(prob_grid, mean = dev[1], sd = experts_sd[1])
|
||||
experts[, 2] <- qnorm(prob_grid, mean = dev[2], sd = experts_sd[2])
|
||||
|
||||
experts <- rbind(c(rep(min(experts), N)), experts)
|
||||
experts <- rbind(experts, c(rep(max(experts), N)))
|
||||
prob_grid <- c(0, prob_grid, 1)
|
||||
|
||||
naive <- 1
|
||||
|
||||
df <- data.frame(
|
||||
x = rep(prob_grid, each = N),
|
||||
y = c(t(experts)),
|
||||
expert = rep(1:N, (P + 2)),
|
||||
naive = rep(naive, (P + 2) * N)
|
||||
)
|
||||
|
||||
naive <- seq(0, 1, length.out = 11)
|
||||
|
||||
dfs <- list()
|
||||
|
||||
df_old <- df
|
||||
|
||||
for (i in seq_along(naive)) {
|
||||
df_old$naive <- naive[i]
|
||||
|
||||
df_new <- data.frame(
|
||||
x = prob_grid,
|
||||
y = (experts[, 1] * (naive[i] * (0.5) + (1 - naive[i]) * (1 - prob_grid)) + (naive[i] * 0.5 + (1 - naive[i]) * (prob_grid)) * experts[, 2]),
|
||||
expert = 3,
|
||||
naive = rep(naive[i], (P + 2))
|
||||
)
|
||||
|
||||
dfs[[i + 1]] <- bind_rows(df_old, df_new)
|
||||
}
|
||||
|
||||
dfs <- reduce(dfs, bind_rows)
|
||||
|
||||
colnames(dfs) <- c("y", "x", "b", "mu")
|
||||
|
||||
dfs %>%
|
||||
ggplot(aes(x = x, y = y, color = factor(b))) +
|
||||
geom_line() +
|
||||
labs(
|
||||
title = "Expert Predictions",
|
||||
x = "Probability Grid",
|
||||
y = "Predicted Value"
|
||||
) +
|
||||
theme_minimal() +
|
||||
scale_color_brewer(palette = "Set1") +
|
||||
theme(legend.position = "top") +
|
||||
facet_wrap(. ~ mu, ncol = 3)
|
||||
|
||||
write_csv(dfs, "assets/crps_learning/weights_plot/cdf_data.csv")
|
||||
BIN
assets/crps_learning/weights_preprocessed.rda
Normal file
1387
assets/hecf_logo.svg
Normal file
|
After Width: | Height: | Size: 84 KiB |
1382
assets/hecf_logo_reduced.svg
Normal file
|
After Width: | Height: | Size: 64 KiB |
1364
assets/hecf_signet.svg
Normal file
|
After Width: | Height: | Size: 42 KiB |
197
assets/library.bib
Normal file
@@ -0,0 +1,197 @@
|
||||
@article{berrisch2023modeling,
|
||||
title = {Modeling volatility and dependence of European carbon and energy prices},
|
||||
author = {Jonathan Berrisch and Sven Pappert and Florian Ziel and Antonia Arsova},
|
||||
year = {2023},
|
||||
month = {3},
|
||||
journal = {Finance Research Letters},
|
||||
publisher = {Elsevier BV},
|
||||
volume = {52},
|
||||
pages = {103503},
|
||||
doi = {10.1016/j.frl.2022.103503},
|
||||
issn = {1544-6123},
|
||||
url = {https://arxiv.org/pdf/2208.14311},
|
||||
abstract = {We study the prices of European Emission Allowances (EUA), whereby we analyze their uncertainty and dependencies on related energy prices (natural gas, coal, and oil). We propose a probabilistic multivariate conditional time series model with a VECM-Copula-GARCH structure which exploits key characteristics of the data. Data are normalized with respect to inflation and carbon emissions to allow for proper cross-series evaluation. The forecasting performance is evaluated in an extensive rolling-window forecasting study, covering eight years out-of-sample. We discuss our findings for both levels- and log-transformed data, focusing on time-varying correlations, and in view of the Russian invasion of Ukraine.},
|
||||
keywords = {Carbon prices, Conditional volatility, Copula, Emission allowances, Energy markets, Forecasting, Multivariate modeling, Time series}
|
||||
}
|
||||
@article{marcjasz2022distributional,
|
||||
title = {Distributional neural networks for electricity price forecasting},
|
||||
author = {Marcjasz, Grzegorz and Narajewski, Micha{\l} and Weron, Rafa{\l} and Ziel, Florian},
|
||||
journal = {Energy Economics},
|
||||
volume = {125},
|
||||
pages = {106843},
|
||||
year = {2023},
|
||||
doi = {10.1016/j.eneco.2023.106843},
|
||||
publisher = {Elsevier}
|
||||
}
|
||||
@book{cesa2006prediction,
|
||||
title = {{Prediction, learning, and games}},
|
||||
author = {Cesa-Bianchi, Nicol{\`o} and Lugosi, G{\'a}bor},
|
||||
year = {2006},
|
||||
month = {3},
|
||||
publisher = {Cambridge university press},
|
||||
pages = {I--XII, 1--394},
|
||||
doi = {10.1017/CBO9780511546921},
|
||||
isbn = {978-0521841085}
|
||||
}
|
||||
@inproceedings{gaillard2018efficient,
|
||||
title = {{Efficient online algorithms for fast-rate regret bounds under sparsity}},
|
||||
author = {Gaillard, Pierre and Wintenberger, Olivier},
|
||||
year = {2018},
|
||||
month = {5},
|
||||
journal = {arXiv (Cornell University)},
|
||||
booktitle = {Proceedings of the 32nd International Conference on Neural Information Processing Systems},
|
||||
publisher = {Cornell University},
|
||||
pages = {7026--7036},
|
||||
doi = {10.48550/arxiv.1805.09174},
|
||||
url = {https://arxiv.org/abs/1805.09174},
|
||||
editor = {Bengio, Samy and Wallach, Hanna M. and Larochelle, Hugo and Grauman, Kristen and Cesa-Bianchi, Nicolò and Garnett, Roman}
|
||||
}
|
||||
@article{gneiting2007strictly,
|
||||
title = {{Strictly proper scoring rules, prediction, and estimation}},
|
||||
author = {Gneiting, Tilmann and Raftery, Adrian E},
|
||||
year = {2007},
|
||||
month = {3},
|
||||
journal = {Journal of the American statistical Association},
|
||||
publisher = {Taylor \& Francis},
|
||||
volume = {102},
|
||||
number = {477},
|
||||
pages = {359--378},
|
||||
doi = {10.1198/016214506000001437},
|
||||
issn = {0162-1459}
|
||||
}
|
||||
@article{gneiting2011making,
|
||||
title = {{Making and evaluating point forecasts}},
|
||||
author = {Gneiting, Tilmann},
|
||||
year = {2011},
|
||||
month = {6},
|
||||
journal = {Journal of the American Statistical Association},
|
||||
publisher = {Taylor \& Francis},
|
||||
volume = {106},
|
||||
number = {494},
|
||||
pages = {746--762},
|
||||
doi = {10.1198/jasa.2011.r10138},
|
||||
issn = {0162-1459},
|
||||
url = {https://arxiv.org/pdf/0912.0902.pdf}
|
||||
}
|
||||
@article{wintenberger2017optimal,
|
||||
title = {Optimal learning with Bernstein online aggregation},
|
||||
author = {Wintenberger, Olivier},
|
||||
year = {2017},
|
||||
journal = {Machine Learning},
|
||||
publisher = {Springer},
|
||||
volume = {106},
|
||||
number = {1},
|
||||
pages = {119--141},
|
||||
doi = {10.1007/s10994-016-5592-6}
|
||||
}
|
||||
@article{BERRISCH2023105221,
|
||||
title = {CRPS learning},
|
||||
author = {Jonathan Berrisch and Florian Ziel},
|
||||
year = {2023},
|
||||
month = {12},
|
||||
journal = {Journal of Econometrics},
|
||||
publisher = {Elsevier BV},
|
||||
volume = {237},
|
||||
number = {2, Part C},
|
||||
pages = {105221},
|
||||
doi = {10.1016/j.jeconom.2021.11.008},
|
||||
issn = {0304-4076},
|
||||
url = {https://arxiv.org/pdf/2102.00968},
|
||||
abstract = {Combination and aggregation techniques can significantly improve forecast accuracy. This also holds for probabilistic forecasting methods where predictive distributions are combined. There are several time-varying and adaptive weighting schemes such as Bayesian model averaging (BMA). However, the quality of different forecasts may vary not only over time but also within the distribution. For example, some distribution forecasts may be more accurate in the center of the distributions, while others are better at predicting the tails. Therefore, we introduce a new weighting method that considers the differences in performance over time and within the distribution. We discuss pointwise combination algorithms based on aggregation across quantiles that optimize with respect to the continuous ranked probability score (CRPS). After analyzing the theoretical properties of pointwise CRPS learning, we discuss B- and P-Spline-based estimation techniques for batch and online learning, based on quantile regression and prediction with expert advice. We prove that the proposed fully adaptive Bernstein online aggregation (BOA) method for pointwise CRPS online learning has optimal convergence properties. They are confirmed in simulations and a probabilistic forecasting study for European emission allowance (EUA) prices.},
|
||||
keywords = {Combination, Aggregation, Online, Probabilistic, Forecasting, Quantile, Time series, Distribution, Density, Prediction, Splines}
|
||||
}
|
||||
|
||||
@article{BERRISCH20241568,
|
||||
title = {Multivariate probabilistic CRPS learning with an application to day-ahead electricity prices},
|
||||
author = {Jonathan Berrisch and Florian Ziel},
|
||||
year = {2024},
|
||||
month = {10},
|
||||
journal = {International Journal of Forecasting},
|
||||
publisher = {Elsevier BV},
|
||||
volume = {40},
|
||||
number = {4},
|
||||
pages = {1568--1586},
|
||||
doi = {10.1016/j.ijforecast.2024.01.005},
|
||||
issn = {0169-2070},
|
||||
abstract = {This paper presents a new method for combining (or aggregating or ensembling) multivariate probabilistic forecasts, considering dependencies between quantiles and marginals through a smoothing procedure that allows for online learning. We discuss two smoothing methods: dimensionality reduction using Basis matrices and penalized smoothing. The new online learning algorithm generalizes the standard CRPS learning framework into multivariate dimensions. It is based on Bernstein Online Aggregation (BOA) and yields optimal asymptotic learning properties. The procedure uses horizontal aggregation, i.e., aggregation across quantiles. We provide an in-depth discussion on possible extensions of the algorithm and several nested cases related to the existing literature on online forecast combination. We apply the proposed methodology to forecasting day-ahead electricity prices, which are 24-dimensional distributional forecasts. The proposed method yields significant improvements over uniform combination in terms of continuous ranked probability score (CRPS). We discuss the temporal evolution of the weights and hyperparameters and present the results of reduced versions of the preferred model. A fast C++implementation of the proposed algorithm is provided in the open-source R-Package profoc on CRAN.},
|
||||
keywords = {Combination, Aggregation, Ensembling, Online, Multivariate, Probabilistic, Forecasting, Quantile, Time series, Distribution, Density, Prediction, Splines}
|
||||
}
|
||||
@article{berrisch2025rcpptimer,
|
||||
title = {rcpptimer: Rcpp Tic-Toc Timer with OpenMP Support},
|
||||
author = {Berrisch, Jonathan},
|
||||
year = {2025},
|
||||
month = {1},
|
||||
journal = {arXiv preprint arXiv:2501.15856},
|
||||
publisher = {Cornell University},
|
||||
volume = {abs/2501.15856},
|
||||
doi = {10.48550/arXiv.2501.15856},
|
||||
issn = {2331-8422},
|
||||
url = {https://arxiv.org/pdf/2501.15856}
|
||||
}
|
||||
@article{hirsch2024online,
|
||||
title = {Online Distributional Regression},
|
||||
author = {Hirsch, Simon and Berrisch, Jonathan and Ziel, Florian},
|
||||
year = {2024},
|
||||
month = {6},
|
||||
journal = {arXiv preprint arXiv:2407.08750},
|
||||
publisher = {Cornell University},
|
||||
volume = {abs/2407.08750},
|
||||
doi = {10.48550/arXiv.2407.08750},
|
||||
issn = {2331-8422},
|
||||
url = {https://arxiv.org/pdf/2407.08750}
|
||||
}
|
||||
@article{berrisch2022distributional,
|
||||
title = {Distributional modeling and forecasting of natural gas prices},
|
||||
author = {Berrisch, Jonathan and Ziel, Florian},
|
||||
year = {2022},
|
||||
month = {1},
|
||||
journal = {Journal of Forecasting},
|
||||
publisher = {Wiley},
|
||||
volume = {41},
|
||||
number = {6},
|
||||
pages = {1065--1086},
|
||||
doi = {10.1002/for.2853},
|
||||
issn = {0277-6693},
|
||||
url = {https://arxiv.org/pdf/2010.06227},
|
||||
abstract = {Abstract We examine the problem of modeling and forecasting European day-ahead and month-ahead natural gas prices. For this, we propose two distinct probabilistic models that can be utilized in risk and portfolio management. We use daily pricing data ranging from 2011 to 2020. Extensive descriptive data analysis shows that both time series feature heavy tails and conditional heteroscedasticity and show asymmetric behavior in their differences. We propose state-space time series models under skewed, heavy-tailed distributions to capture all stylized facts of the data. They include the impact of autocorrelation, seasonality, risk premia, temperature, storage levels, the price of European Emission Allowances, and related fuel prices of oil, coal, and electricity. We provide rigorous model diagnostics and interpret all model components in detail. Additionally, we conduct a probabilistic forecasting study with significance tests and compare the predictive performance against literature benchmarks. The proposed day-ahead (month-ahead) model leads to a 13\% (9\%) reduction in out-of-sample continuous ranked probability score (CRPS) compared with the best performing benchmark model, mainly due to adequate modeling of the volatility and heavy tails.},
|
||||
keywords = {gas prices, heavy-tailed distribution, probabilistic forecasting, risk premium, state-space models}
|
||||
}
|
||||
@article{BERRISCH2023100236,
|
||||
title = {High-resolution peak demand estimation using generalized additive models and deep neural networks},
|
||||
author = {Jonathan Berrisch and Micha{\l} Narajewski and Florian Ziel},
|
||||
year = {2023},
|
||||
month = {7},
|
||||
journal = {Energy and AI},
|
||||
publisher = {Elsevier BV},
|
||||
volume = {13},
|
||||
pages = {100236},
|
||||
doi = {10.1016/j.egyai.2023.100236},
|
||||
issn = {2666-5468},
|
||||
keywords = {Electricity peak load, Generalized additive models, Artificial neural networks, Prediction, Combination, Weather effects, Seasonality}
|
||||
}
|
||||
@book{johnson1995continuous,
|
||||
title = {Continuous univariate distributions, volume 2},
|
||||
author = {Johnson, Norman L and Kotz, Samuel and Balakrishnan, Narayanaswamy},
|
||||
year = {1995},
|
||||
publisher = {John wiley \& sons},
|
||||
volume = {289}
|
||||
}
|
||||
@article{li2022general,
|
||||
title = {General P-splines for non-uniform B-splines},
|
||||
author = {Li, Zheyuan and Cao, Jiguo},
|
||||
year = {2022},
|
||||
journal = {arXiv preprint},
|
||||
publisher = {Cornell University},
|
||||
doi = {10.48550/arXiv.2201.06808},
|
||||
url = {https://arxiv.org/abs/2201.06808}
|
||||
}
|
||||
@article{taylor2023angular,
|
||||
title = {Angular Combining of Forecasts of Probability Distributions},
|
||||
author = {Taylor, James W and Meng, Xiaochun},
|
||||
year = {2023},
|
||||
month = {5},
|
||||
journal = {arXiv preprint arXiv:2305.16735},
|
||||
publisher = {Cornell University},
|
||||
doi = {10.48550/arXiv.2305.16735},
|
||||
url = {https://arxiv.org/abs/2305.16735}
|
||||
}
|
||||
82
assets/make_knots_data.R
Normal file
@@ -0,0 +1,82 @@
|
||||
# %%
|
||||
library(profoc)
|
||||
library(ggplot2)
|
||||
library(tidyr)
|
||||
library(dplyr)
|
||||
library(readr)
|
||||
|
||||
# Creating faceted plots for different knot values and mu values
|
||||
# Create a function to generate the data for a given number of knots and mu value
|
||||
generate_basis_data <- function(num_knots, mu_value, sig_value, nonc_value, tailw_value, deg_value) {
|
||||
grid <- seq(from = 0, to = 1, length.out = 26)
|
||||
# Use provided degree
|
||||
B <- profoc:::make_basis_matrix(grid,
|
||||
profoc::make_knots(
|
||||
n = num_knots,
|
||||
mu = mu_value,
|
||||
sig = sig_value,
|
||||
nonc = nonc_value,
|
||||
tailw = tailw_value,
|
||||
deg = deg_value
|
||||
),
|
||||
deg = deg_value
|
||||
)
|
||||
B_mat <- round(as.matrix(B), 5)
|
||||
df <- as.data.frame(B_mat)
|
||||
df$x <- grid
|
||||
df_long <- pivot_longer(df,
|
||||
cols = -x,
|
||||
names_to = "b",
|
||||
values_to = "y"
|
||||
)
|
||||
df_long$knots <- num_knots
|
||||
df_long$mu <- mu_value
|
||||
df_long$sig <- sig_value
|
||||
df_long$nonc <- nonc_value
|
||||
df_long$tailw <- tailw_value
|
||||
df_long$deg <- deg_value
|
||||
return(df_long)
|
||||
}
|
||||
|
||||
# Generate data for each combination of knot, mu, sig, nonc, tailw, and deg
|
||||
mu_values <- seq(0.1, 0.9, by = 0.2)
|
||||
sig_values <- 2^(-2:2)
|
||||
nonc_values <- c(-4, -2, 0, 2, 4)
|
||||
tailw_values <- 2^(-2:2)
|
||||
|
||||
# Create an empty list to store all combinations
|
||||
all_data <- list()
|
||||
counter <- 1
|
||||
|
||||
# Nested loops to cover all parameter combinations
|
||||
for (m in mu_values) {
|
||||
print(paste("Processing mu:", m))
|
||||
for (s in sig_values) {
|
||||
for (nc in nonc_values) {
|
||||
for (tw in tailw_values) {
|
||||
all_data[[counter]] <- generate_basis_data(5, m, s, nc, tw, 2)
|
||||
counter <- counter + 1
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# Combine all data frames
|
||||
all_data <- bind_rows(all_data)
|
||||
|
||||
write_csv(all_data, "25_07_phd_defense/assets/mcrps_learning/basis_functions.csv")
|
||||
|
||||
# %%
|
||||
all_data %>%
|
||||
filter(mu == 0.1) %>%
|
||||
filter(sig == 0.25) %>%
|
||||
filter(nonc == -4) %>%
|
||||
filter(tailw == 0.25) %>%
|
||||
ggplot(aes(x = x, y = y, col = b)) +
|
||||
geom_line(size = 2) +
|
||||
labs(
|
||||
title = "Basis Functions for Different Knot Values",
|
||||
x = "x",
|
||||
y = "y"
|
||||
) +
|
||||
theme_minimal()
|
||||
809
assets/mcrps_learning/algorithm.svg
Normal file
@@ -0,0 +1,809 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="369.75846pt" height="380.82173pt" viewBox="0 0 369.75846 380.82173">
|
||||
<defs>
|
||||
<path id="font_0_27" d="M.82699587 0V.04699707H.7299957L.47399903 .6722412C.46299745 .6982422 .45098878 .6982422 .43399049 .6982422 .4059906 .6982422 .4019928 .6902313 .394989 .6722412L.14698792 .07002258C.14099121 .055007936 .13798523 .04699707 .06199646 .04699707H.040985109V0L.1579895 .0029907227C.19699097 .0029907227 .25299073 .0029907227 .2899933 0V.04699707C.2899933 .04699707 .20098877 .04699707 .20098877 .060012819L.20498657 .07203674 .25498963 .19322205H.522995L.58299258 .04699707H.48799134V0C.526001 .0029907227 .62098696 .0029907227 .6639862 .0029907227 .70399478 .0029907227 .7919922 .0029907227 .82699587 0M.5029907 .24023438H.2749939L.3889923 .51823428 .5029907 .24023438Z"/>
|
||||
<path id="font_0_72" d="M.29299928 0V.04699707H.22399903V.69433596L.04699707 .6855469V.63853457C.10899353 .63853457 .115997318 .63853457 .115997318 .5995636V.04699707H.04699707V0L.16999817 .0029907227 .29299928 0Z"/>
|
||||
<path id="font_0_59" d="M.55799868 .3970642C.55799868 .42007447 .54100039 .45507813 .49499513 .45507813 .47999574 .45507813 .43299867 .45207215 .3889923 .41706849 .37098695 .42918397 .32899476 .4501953 .25498963 .4501953 .11099243 .4501953 .055999757 .37243653 .055999757 .3024292 .055999757 .26127626 .07598877 .22012329 .10798645 .19703675 .07998657 .16191101 .07398987 .12878418 .07398987 .10771179 .07398987 .0927124 .07798767 .04371643 .117996219 .01171875 .10499573 .008712769 .03199768-.012252808 .03199768-.075164798 .03199768-.12609864 .08699036-.2010498 .2869873-.2010498 .46398927-.2010498 .5419922-.14207459 .5419922-.07217407 .5419922-.04222107 .5339966 .020706177 .46699525 .054718019 .41099549 .08300781 .35099793 .08300781 .25498963 .08300781 .22898865 .08300781 .18299866 .08300781 .17799378 .083984378 .13398743 .0909729 .12298584 .12898255 .12298584 .14697266 .12298584 .15698242 .1269989 .17198181 .1329956 .17997742 .1789856 .15629578 .22999573 .15429688 .25498963 .15429688 .39898683 .15429688 .45399476 .23234558 .45399476 .3024292 .45399476 .34942628 .42900086 .38243104 .4139862 .3984375 .44400025 .4144287 .46499635 .4164276 .47599793 .4174347 .47399903 .4124298 .47200013 .40342713 .47200013 .39743043 .47200013 .37219239 .4889984 .354187 .5149994 .354187 .54100039 .354187 .55799868 .3731842 .55799868 .39718629V.3970642M.34298707 .30221559C.34298707 .25724793 .34298707 .19029236 .25498963 .19029236 .16699219 .19021607 .16699219 .25733949 .16699219 .3024292 .16699219 .34742738 .16699219 .41418458 .25498963 .41418458 .34298707 .41418458 .34298707 .34742738 .34298707 .3024292V.30221559M.45599366-.07501221C.45599366-.11102295 .4169922-.16503906 .2869873-.16503906 .16699219-.16503906 .117996219-.11903381 .117996219-.073013309 .117996219-.013000488 .18099976-.013000488 .19499207-.013000488H.31199647C.34298707-.013000488 .45599366-.013000488 .45599366-.07501221Z"/>
|
||||
<path id="font_0_81" d="M.5419922 .21812439C.5419922 .35212709 .44999696 .453125 .2869873 .453125 .12298584 .453125 .03199768 .35112 .03199768 .21812439 .03199768 .09413147 .11999512-.005859375 .2869873-.005859375 .45498658-.005859375 .5419922 .09512329 .5419922 .21812439M.4139862 .22912598C.4139862 .14213562 .4139862 .03413391 .2869873 .03413391 .1599884 .03413391 .1599884 .14213562 .1599884 .22912598 .1599884 .27412416 .1599884 .32511903 .1769867 .3591156 .19599915 .39611817 .23799134 .41711427 .2869873 .41711427 .32899476 .41711427 .37098695 .40112306 .3929901 .36611939 .4139862 .3321228 .4139862 .27713014 .4139862 .22912598Z"/>
|
||||
<path id="font_0_96" d="M.44198609 .36819459C.44198609 .42118836 .3880005 .4501953 .33599855 .4501953 .2659912 .4501953 .22599793 .40019227 .20298767 .33718873V.4501953L.036987306 .4423828V.39537049C.09899902 .39537049 .10598755 .39537049 .10598755 .3563385V.04699707H.036987306V0L.16299439 .0029907227C.20098877 .0029907227 .2649994 .0029907227 .30099488 0V.04699707H.21398926V.22218323C.21398926 .29226686 .23899842 .41436769 .33898927 .41436769 .33898927 .41436769 .31999208 .39736939 .31999208 .36834718 .31999208 .32730104 .35198976 .3072815 .3809967 .3072815 .4099884 .3072815 .44198609 .3283081 .44198609 .36834718V.36819459Z"/>
|
||||
<path id="font_0_66" d="M.28599549 0V.04699707H.22399903V.4501953L.049987794 .4423828V.39537049C.10899353 .39537049 .115997318 .39537049 .115997318 .3563385V.04699707H.04699707V0L.16899109 .0029907227 .28599549 0M.23799134 .60728457C.23799134 .6502838 .20298767 .6852875 .1599884 .6852875 .116989139 .6852875 .08198547 .6502838 .08198547 .60728457 .08198547 .5642853 .116989139 .5292969 .1599884 .5292969 .20298767 .5292969 .23799134 .5642853 .23799134 .60728457Z"/>
|
||||
<path id="font_0_105" d="M.38198854 .124176029V.17721558H.33499146V.12619019C.33499146 .058151246 .30299378 .03413391 .2749939 .03413391 .21699524 .03413391 .21699524 .09817505 .21699524 .1211853V.3973236H.36299134V.44433595H.21699524V.6357422H.16999817C.16899109 .53552249 .11999512 .43632508 .020996094 .43333436V.3973236H.102996829V.123184207C.102996829 .01612854 .18998719-.005859375 .26098634-.005859375 .33699037-.005859375 .38198854 .05114746 .38198854 .124176029Z"/>
|
||||
<path id="font_0_63" d="M.61499026 0V.04699707H.54599V.30613709C.54599 .41119386 .49198915 .4501953 .3919983 .4501953 .29599 .4501953 .24499512 .3921814 .22299195 .3541565H.22200012V.69433596L.04499817 .6855469V.63853457C.10699463 .63853457 .11399841 .63853457 .11399841 .5996704V.04699707H.04499817V0L.17098999 .0029907227 .29699708 0V.04699707H.22799683V.25610353C.22799683 .36515809 .31399537 .41418458 .3769989 .41418458 .41099549 .41418458 .43199159 .39317323 .43199159 .31713868V.04699707H.36299134V0L.4889984 .0029907227 .61499026 0Z"/>
|
||||
<path id="font_0_75" d="M.93499758 0V.04699707H.8659973V.30613709C.8659973 .40919496 .8149872 .4501953 .71199038 .4501953 .62098696 .4501953 .56900027 .40019227 .54299929 .3541565 .522995 .44718934 .43099977 .4501953 .3929901 .4501953 .30599977 .4501953 .24899292 .40518189 .21699524 .3421631V.4501953L.04499817 .4423828V.39537049C.10699463 .39537049 .11399841 .39537049 .11399841 .3563385V.04699707H.04499817V0L.17098999 .0029907227 .29699708 0V.04699707H.22799683V.2562256C.22799683 .3653412 .31498719 .41436769 .3769989 .41436769 .41099549 .41436769 .43299867 .39437867 .43299867 .31729127V.04699707H.3639984V0L.48999024 .0029907227 .6159973 0V.04699707H.5469971V.2562256C.5469971 .3653412 .6339874 .41436769 .69599917 .41436769 .7299957 .41436769 .7519989 .39437867 .7519989 .31729127V.04699707H.68299868V0L.8089905 .0029907227 .93499758 0Z"/>
|
||||
<path id="font_0_82" d="M.49398805 0V.04699707H.35398866V.6231079C.35398866 .6452179 .35398866 .65527346 .32798768 .65527346 .31698609 .65527346 .31498719 .65527346 .30599977 .6482239 .22898865 .5909424 .12599182 .5909424 .10499573 .5909424H.084991458V.5439453H.10499573C.12098694 .5439453 .17599488 .54493716 .23498535 .5639343V.04699707H.09599304V0C.13999939 .0029907227 .24598694 .0029907227 .29499818 .0029907227 .34399415 .0029907227 .44999696 .0029907227 .49398805 0Z"/>
|
||||
<path id="font_0_44" d="M.23699951 .366333C.23699951 .40933229 .20199585 .44433595 .15899658 .44433595 .115997318 .44433595 .08099365 .40933229 .08099365 .366333 .08099365 .32333375 .115997318 .28833009 .15899658 .28833009 .20199585 .28833009 .23699951 .32333375 .23699951 .366333M.23699951 .07798767C.23699951 .12098694 .20199585 .1559906 .15899658 .1559906 .115997318 .1559906 .08099365 .12098694 .08099365 .07798767 .08099365 .034988405 .115997318 0 .15899658 0 .20199585 0 .23699951 .034988405 .23699951 .07798767Z"/>
|
||||
<path id="font_1_97" d="M.49899293 .18579102C.49899293 .2858429 .43299867 .36791993 .34899903 .38793946L.22099304 .4189453C.15899658 .43388368 .11999512 .48773194 .11999512 .5458069 .11999512 .61595156 .17399597 .677063 .2519989 .677063 .4189911 .677063 .44099427 .5127411 .44699098 .46777345 .44799806 .461792 .44799806 .45581056 .45899964 .45581056 .47200013 .45581056 .47200013 .46080018 .47200013 .47973634V.68107607C.47200013 .69807437 .47200013 .7050781 .46099855 .7050781 .45399476 .7050781 .45298768 .70407107 .44599916 .69207766L.41099549 .63497927C.3809967 .66404727 .33999635 .7050781 .25099183 .7050781 .13999939 .7050781 .055999757 .61694338 .055999757 .5107422 .055999757 .42790223 .10899353 .35490418 .18699646 .32788087 .19799805 .32388307 .24899292 .3118744 .31900025 .29486085 .34599305 .28785707 .37599183 .280838 .4039917 .24382019 .4249878 .2177887 .43499757 .18478394 .43499757 .1517334 .43499757 .0806427 .3849945 .008529663 .30099488 .008529663 .27198792 .008529663 .19599915 .013534546 .14299011 .06260681 .084991458 .11668396 .08198547 .18078614 .08099365 .21679688 .07998657 .22679138 .07199097 .22679138 .068984989 .22679138 .055999757 .22679138 .055999757 .2197876 .055999757 .20178223V.0015258789C.055999757-.015472412 .055999757-.022460938 .066986087-.022460938 .07398987-.022460938 .07499695-.020462037 .08198547-.009475708 .08198547-.009475708 .084991458-.0054626467 .117996219 .047592164 .14898682 .013534546 .21299744-.022460938 .3019867-.022460938 .4189911-.022460938 .49899293 .07562256 .49899293 .18579102Z"/>
|
||||
<path id="font_1_75" d="M.8129883 0V.0309906C.7609863 .0309906 .73599246 .0309906 .7350006 .061019899V.25221253C.7350006 .3383026 .7350006 .36932374 .70399478 .405365 .6899872 .42237855 .6569977 .4423828 .598999 .4423828 .5149994 .4423828 .47099305 .38233949 .45399476 .34429933 .43998719 .43138124 .3659973 .4423828 .32099916 .4423828 .24798584 .4423828 .20098877 .39935304 .17298889 .33729554V.4423828L.03199768 .43066407V.3996582C.101989749 .3996582 .10998535 .39266969 .10998535 .34370423V.07595825C.10998535 .0309906 .09899902 .0309906 .03199768 .0309906V0L.14498902 .0029907227 .25698854 0V.0309906C.18998719 .0309906 .1789856 .0309906 .1789856 .07595825V.25978089C.1789856 .36431886 .25 .42037965 .31399537 .42037965 .3769989 .42037965 .3880005 .36631776 .3880005 .30926515V.076034549C.3880005 .0309906 .3769989 .0309906 .30999757 .0309906V0L.4229889 .0029907227 .5349884 0V.0309906C.46798707 .0309906 .45700074 .0309906 .45700074 .076034549V.2602234C.45700074 .36431886 .5279999 .42037965 .59199526 .42037965 .6549988 .42037965 .66600039 .36631776 .66600039 .30926515V.076034549C.66600039 .0309906 .6549988 .0309906 .58799746 .0309906V0L.70098879 .0029907227 .8129883 0Z"/>
|
||||
<path id="font_1_81" d="M.47099305 .21424866C.47099305 .34223939 .37098695 .4482422 .25 .4482422 .125 .4482422 .027999878 .3392334 .027999878 .21424866 .027999878 .085250858 .13198853-.0107421879 .24899292-.0107421879 .36999513-.0107421879 .47099305 .087249759 .47099305 .21424866M.3880005 .22224427C.3880005 .18624878 .3880005 .13224793 .3659973 .08824158 .34399415 .04324341 .2999878 .014251709 .25 .014251709 .20698548 .014251709 .16299439 .035247804 .13598633 .08125305 .11099243 .12524414 .11099243 .18624878 .11099243 .22224427 .11099243 .26124574 .11099243 .31523133 .1349945 .35923768 .1619873 .40522767 .20899964 .426239 .24899292 .426239 .29299928 .426239 .33599855 .40423585 .3619995 .36123658 .3880005 .3182373 .3880005 .26023866 .3880005 .22224427Z"/>
|
||||
<path id="font_1_105" d="M.33198548 .12385559V.18066406H.30699159V.12585449C.30699159 .052108766 .2769928 .014251709 .23999024 .014251709 .17298889 .014251709 .17298889 .10491943 .17298889 .12187195V.3996582H.31599427V.43066407H.17298889V.6142578H.147995C.14698792 .5324249 .116989139 .42565919 .018997193 .42166139V.3996582H.10398865V.12408447C.10398865 .0012512207 .19699097-.0107421879 .23298645-.0107421879 .3039856-.0107421879 .33198548 .060180665 .33198548 .12408447V.12385559Z"/>
|
||||
<path id="font_1_63" d="M.5349884 0V.0309906C.48298646 .0309906 .45799256 .0309906 .45700074 .061019899V.25221253C.45700074 .3383026 .45700074 .36932374 .42599488 .405365 .4119873 .42237855 .3789978 .4423828 .32099916 .4423828 .23699951 .4423828 .19299317 .38233949 .1769867 .34629823H.17599488V.69433596L.03199768 .6826172V.6516113C.101989749 .6516113 .10998535 .64463809 .10998535 .59580996V.076034549C.10998535 .0309906 .09899902 .0309906 .03199768 .0309906V0L.14498902 .0029907227 .25698854 0V.0309906C.18998719 .0309906 .1789856 .0309906 .1789856 .076034549V.2602234C.1789856 .36431886 .25 .42037965 .31399537 .42037965 .3769989 .42037965 .3880005 .36631776 .3880005 .30926515V.076034549C.3880005 .0309906 .3769989 .0309906 .30999757 .0309906V0L.4229889 .0029907227 .5349884 0Z"/>
|
||||
<path id="font_1_50" d="M.4149933 .11933899C.4149933 .12934876 .40699769 .13134766 .4019928 .13134766 .3929901 .13134766 .3909912 .12535095 .3889923 .11734009 .35398866 .014251709 .2639923 .014251709 .2539978 .014251709 .20399475 .014251709 .1639862 .044281007 .14099121 .08131409 .11099243 .12934876 .11099243 .19540406 .11099243 .23144531H.3899994C.4119873 .23144531 .4149933 .23144531 .4149933 .2524414 .4149933 .35131837 .36099244 .4482422 .23599243 .4482422 .11999512 .4482422 .027999878 .34532167 .027999878 .22042847 .027999878 .08631897 .1329956-.0107421879 .24798584-.0107421879 .36999513-.0107421879 .4149933 .10032654 .4149933 .11933899M.34899903 .2524414H.11199951C.117996219 .40126039 .20199585 .426239 .23599243 .426239 .33898927 .426239 .34899903 .2913971 .34899903 .2524414Z"/>
|
||||
<path id="font_1_47" d="M.5269928 0V.0309906C.45700074 .0309906 .44898988 .038009645 .44898988 .0871582V.69433596L.30499269 .6826172V.6516113C.375 .6516113 .3829956 .64463809 .3829956 .59580996V.38035584C.35398866 .41636659 .31098939 .4423828 .25698854 .4423828 .13899231 .4423828 .033996583 .3443451 .033996583 .21531677 .033996583 .088272098 .13198853-.0107421879 .24598694-.0107421879 .30999757-.0107421879 .35499574 .023254395 .37998963 .055267335V-.0107421879L.5269928 0M.37998963 .117996219C.37998963 .099990848 .37998963 .09799194 .36898805 .08099365 .33898927 .033218385 .2939911 .011245728 .25099183 .011245728 .20599365 .011245728 .16999817 .037216188 .1459961 .075164798 .11999512 .1161499 .116989139 .17320252 .116989139 .21421814 .116989139 .25125123 .11898804 .31129457 .147995 .35632325 .16899109 .38734437 .20698548 .42037965 .26098634 .42037965 .29599 .42037965 .33799745 .405365 .36898805 .3603363 .37998963 .34332276 .37998963 .34132386 .37998963 .32330323V.117996219Z"/>
|
||||
<path id="font_1_42" d="M.6649933 .23271179C.6649933 .24272156 .6649933 .24972534 .6519928 .24972534 .6409912 .24972534 .6409912 .24372864 .6399994 .23371887 .6319885 .09059143 .5249939 .008529663 .41600038 .008529663 .35499574 .008529663 .15899658 .042556764 .15899658 .34080506 .15899658 .64004519 .35398866 .67407229 .4149933 .67407229 .5239868 .67407229 .61299136 .58299258 .6329956 .4368744 .6349945 .42286683 .6349945 .41986085 .6489868 .41986085 .6649933 .41986085 .6649933 .42286683 .6649933 .44387818V.68107607C.6649933 .69807437 .6649933 .7050781 .6539917 .7050781 .6499939 .7050781 .6459961 .7050781 .6380005 .69306948L.58799746 .61901858C.5509949 .6550598 .5 .7050781 .4039917 .7050781 .21699524 .7050781 .055999757 .5459595 .055999757 .34179688 .055999757 .1346283 .21798706-.022460938 .4039917-.022460938 .5669861-.022460938 .6649933 .116622928 .6649933 .23271179Z"/>
|
||||
<path id="font_1_95" d="M.7319946 .08753967C.7319946 .09353638 .7319946 .104537967 .71899417 .104537967 .70799258 .104537967 .70799258 .09555054 .70700076 .08854675 .70098879 .017532349 .66600039-.00047302247 .6409912-.00047302247 .59199526-.00047302247 .58399966 .05053711 .56999209 .14355469L.5569916 .22355652C.5389862 .28756715 .48999024 .3205719 .43499757 .3395691 .5319977 .36357118 .6100006 .4245758 .6100006 .502594 .6100006 .5986023 .49598695 .6826172 .34899903 .6826172H.034988405V.6516113H.05899048C.13598633 .6516113 .13798523 .64060977 .13798523 .604599V.077545169C.13798523 .04197693 .13598633 .0309906 .05899048 .0309906H.034988405V0C.070999149 .0029907227 .14199829 .0029907227 .18099976 .0029907227 .21998596 .0029907227 .29100038 .0029907227 .32699586 0V.0309906H.30299378C.22599793 .0309906 .22399903 .04197693 .22399903 .077926639V.3305359H.33898927C.35499574 .3305359 .39698792 .3305359 .43199159 .29658509 .46998597 .26063539 .46998597 .22969055 .46998597 .16279602 .46998597 .09788513 .46998597 .05795288 .5109863 .019989014 .5519867-.016464234 .6069946-.022460938 .6369934-.022460938 .71499636-.022460938 .7319946 .059524537 .7319946 .087524417V.08753967M.5069885 .5025635C.5069885 .43354798 .48298646 .35253907 .33499146 .35253907H.22399903V.6116028C.22399903 .6345978 .22399903 .64660647 .24598694 .6496124 .2559967 .6516113 .2849884 .6516113 .30499269 .6516113 .394989 .6516113 .5069885 .6476135 .5069885 .5025635Z"/>
|
||||
<path id="font_1_83" d="M.6239929 .4967041C.6239929 .59465029 .5249939 .6826172 .3880005 .6826172H.034988405V.6516113H.05899048C.13598633 .6516113 .13798523 .64060977 .13798523 .6046295V.07795715C.13798523 .041992189 .13598633 .0309906 .05899048 .0309906H.034988405V0C.069992069 .0029907227 .14399719 .0029907227 .18199158 .0029907227 .21998596 .0029907227 .29499818 .0029907227 .32998658 0V.0309906H.30599977C.22898865 .0309906 .22698975 .041992189 .22698975 .07795715V.3157959H.3959961C.5159912 .3157959 .6239929 .39675904 .6239929 .4967041M.5209961 .4967041C.5209961 .4497223 .5209961 .34179688 .3619995 .34179688H.22399903V.6116333C.22399903 .64460757 .22599793 .6516113 .272995 .6516113H.3619995C.5209961 .6516113 .5209961 .54566958 .5209961 .4967041Z"/>
|
||||
<path id="font_1_34" d="M.651001 .18289185C.651001 .26983644 .56900027 .34480287 .45799256 .35679627 .5549927 .3757782 .6239929 .43974305 .6239929 .51368716 .6239929 .6006317 .5319977 .6826172 .4019928 .6826172H.035995485V.6516113H.05999756C.13699341 .6516113 .13899231 .64060977 .13899231 .6046295V.07795715C.13899231 .041992189 .13699341 .0309906 .05999756 .0309906H.035995485V0H.42799378C.5609894-.0002593994 .651001 .08874512 .651001 .18273926V.18289185M.5269928 .5136719C.5269928 .44970704 .47799684 .36573792 .36698915 .36573792H.22200012V.6116333C.22200012 .64460757 .22399903 .6516113 .2709961 .6516113H.394989C.49198915 .65174868 .5269928 .56674197 .5269928 .51374819V.5136719M.5509949 .18386841C.5509949 .1129303 .49899293 .0309906 .3959961 .0309906H.2709961C.22399903 .0309906 .22200012 .037994386 .22200012 .07095337V.34375H.4099884C.5089874 .34399415 .5509949 .25099183 .5509949 .18399048V.18386841Z"/>
|
||||
<path id="font_1_96" d="M.3639984 .38137818C.3639984 .41337586 .33299256 .4423828 .2899933 .4423828 .21699524 .4423828 .18099976 .37538148 .16699219 .3323822V.4423828L.027999878 .43066407V.3996582C.09799194 .3996582 .10598755 .39266969 .10598755 .34370423V.07595825C.10598755 .0309906 .09498596 .0309906 .027999878 .0309906V0L.14199829 .0029907227C.18199158 .0029907227 .22898865 .0029907227 .2689972 0V.0309906H.24798584C.17399597 .0309906 .17199707 .04197693 .17199707 .07795715V.23181153C.17199707 .33137513 .21398926 .42037965 .2899933 .42037965 .29699708 .42037965 .29899598 .42037965 .30099488 .41937257 .2979889 .41838075 .27799989 .40637208 .27799989 .3803711 .27799989 .35237123 .29899598 .33737184 .32099916 .33737184 .33898927 .33737184 .3639984 .3493805 .3639984 .38137818Z"/>
|
||||
<path id="font_1_77" d="M.5349884 0V.0309906C.48298646 .0309906 .45799256 .0309906 .45700074 .061019899V.25221253C.45700074 .3383026 .45700074 .36932374 .42599488 .405365 .4119873 .42237855 .3789978 .4423828 .32099916 .4423828 .24798584 .4423828 .20098877 .39935304 .17298889 .33729554V.4423828L.03199768 .43066407V.3996582C.101989749 .3996582 .10998535 .39266969 .10998535 .34370423V.07595825C.10998535 .0309906 .09899902 .0309906 .03199768 .0309906V0L.14498902 .0029907227 .25698854 0V.0309906C.18998719 .0309906 .1789856 .0309906 .1789856 .07595825V.25978089C.1789856 .36431886 .25 .42037965 .31399537 .42037965 .3769989 .42037965 .3880005 .36631776 .3880005 .30926515V.076034549C.3880005 .0309906 .3769989 .0309906 .30999757 .0309906V0L.4229889 .0029907227 .5349884 0Z"/>
|
||||
<path id="font_1_98" d="M.3600006 .12823487C.3600006 .18122864 .32998658 .21122742 .31799317 .22323609 .2849884 .25523377 .24598694 .26322938 .20399475 .27124024 .147995 .28224183 .08099365 .29522706 .08099365 .35324098 .08099365 .38822938 .10699463 .42922975 .19299317 .42922975 .30299378 .42922975 .30799867 .3392334 .30999757 .30822755 .31098939 .2992401 .32199098 .2992401 .32199098 .2992401 .33499146 .2992401 .33499146 .30422975 .33499146 .32322694V.4242401C.33499146 .4412384 .33499146 .4482422 .32398988 .4482422 .31900025 .4482422 .31698609 .4482422 .3039856 .43623353 .30099488 .43223573 .29100038 .42323304 .2869873 .42022706 .24899292 .4482422 .20799256 .4482422 .19299317 .4482422 .070999149 .4482422 .032989503 .38124085 .032989503 .3252411 .032989503 .29023744 .04899597 .26223756 .07598877 .24023438 .10798645 .2142334 .13598633 .2082367 .20799256 .19422913 .22999573 .19021607 .31199647 .17422486 .31199647 .10221863 .31199647 .051223756 .2769928 .011245728 .19898987 .011245728 .114990238 .011245728 .07899475 .068222049 .05999756 .1532135 .056991579 .16621399 .055999757 .17021179 .04598999 .17021179 .032989503 .17021179 .032989503 .16322327 .032989503 .1452179V.013214111C.032989503-.003753662 .032989503-.0107421879 .04399109-.0107421879 .04899597-.0107421879 .049987794-.009750366 .068984989 .009246826 .070999149 .011245728 .070999149 .013214111 .08898926 .032226564 .1329956-.009750366 .17799378-.0107421879 .19898987-.0107421879 .31399537-.0107421879 .3600006 .05621338 .3600006 .1282196V.12823487Z"/>
|
||||
<path id="font_1_66" d="M.24699402 0V.0309906C.18099976 .0309906 .1769867 .035995485 .1769867 .075042728V.4423828L.036987306 .43066407V.3996582C.101989749 .3996582 .11099243 .3936615 .11099243 .3447113V.07595825C.11099243 .0309906 .099990848 .0309906 .032989503 .0309906V0L.14299011 .0029907227C.17799378 .0029907227 .21299744 .0009918213 .24699402 0M.19198609 .603775C.19198609 .6307678 .16899109 .6567688 .13899231 .6567688 .10499573 .6567688 .084991458 .6287689 .084991458 .603775 .084991458 .57676699 .10798645 .55078127 .13798523 .55078127 .17199707 .55078127 .19198609 .5787811 .19198609 .603775Z"/>
|
||||
<path id="font_1_80" d="M.72099307 .3387909C.72099307 .5429535 .56999209 .7050781 .3880005 .7050781 .20899964 .7050781 .055999757 .5449524 .055999757 .3387909 .055999757 .13363648 .20999146-.022460938 .3880005-.022460938 .56999209-.022460938 .72099307 .13664246 .72099307 .3387909M.6179962 .35281373C.6179962 .08760071 .48098756 .0035247803 .3889923 .0035247803 .29299928 .0035247803 .15899658 .09159851 .15899658 .35281373 .15899658 .6120148 .30499269 .68006899 .3880005 .68006899 .47499085 .68006899 .6179962 .6090088 .6179962 .35281373Z"/>
|
||||
<path id="font_1_72" d="M.25498963 0V.0309906C.18798828 .0309906 .1769867 .0309906 .1769867 .07601929V.69433596L.032989503 .6826172V.6516113C.102996829 .6516113 .11099243 .64460757 .11099243 .5956421V.07595825C.11099243 .0309906 .099990848 .0309906 .032989503 .0309906V0L.14399719 .0029907227 .25498963 0Z"/>
|
||||
<path id="font_1_27" d="M.71699526 0V.0309906H.69898989C.6389923 .0309906 .625 .037979127 .6139984 .07095337L.397995 .6958008C.3929901 .7088165 .3909912 .7158203 .375 .7158203 .35899354 .7158203 .35598756 .70980837 .35099793 .6958008L.14399719 .09791565C.12599182 .04698181 .085998538 .03199768 .03199768 .0309906V0L.13398743 .0029907227 .24899292 0V.0309906C.19898987 .0309906 .17399597 .05596924 .17399597 .0819397 .17399597 .08493042 .1749878 .09492493 .17599488 .09692383L.22200012 .2277832H.46899415L.5219879 .07495117C.522995 .07095337 .5249939 .064956668 .5249939 .060958864 .5249939 .0309906 .46899415 .0309906 .44198609 .0309906V0C.47799684 .0029907227 .5479889 .0029907227 .58599856 .0029907227L.71699526 0M.45799256 .25878907H.23298645L.34498597 .58380129 .45799256 .25878907Z"/>
|
||||
<path id="font_1_59" d="M.4850006 .40411378C.4850006 .42111207 .47299195 .453125 .43399049 .453125 .4139862 .453125 .36999513 .44711305 .32798768 .40611268 .28599549 .43937684 .24398804 .4423828 .22200012 .4423828 .1289978 .4423828 .05999756 .37338258 .05999756 .29638673 .05999756 .25239564 .08198547 .21440125 .10699463 .19340515 .09399414 .17840576 .07598877 .14538574 .07598877 .11035156 .07598877 .07899475 .08898926 .04083252 .11999512 .020828248 .05999756 .003829956 .027999878-.039138795 .027999878-.07911682 .027999878-.15107727 .1269989-.20605469 .24899292-.20605469 .36698915-.20605469 .47099305-.15507508 .47099305-.07711792 .47099305-.042144777 .45700074 .008834839 .4059906 .036834718 .35299684 .064834598 .29499818 .064834598 .23399353 .064834598 .20899964 .064834598 .1659851 .064834598 .15899658 .065841678 .1269989 .069885257 .10598755 .101242069 .10598755 .13334656 .10598755 .13735962 .10598755 .16040039 .12298584 .18040467 .1619873 .15240479 .20298767 .14941406 .22200012 .14941406 .31498719 .14941406 .38398744 .21839905 .38398744 .2953949 .38398744 .3323822 .36799623 .36938478 .34298707 .39237977 .3789978 .42637635 .4149933 .43138124 .43299867 .43138124 .43299867 .43112184 .43998719 .43112184 .44299317 .43011476 .43199159 .42611695 .4269867 .41513063 .4269867 .40315248 .4269867 .38616944 .43998719 .37417604 .45599366 .37417604 .46598817 .37417604 .4850006 .3811798 .4850006 .4041443V.40411378M.30899049 .29626466C.30899049 .26930238 .30799867 .2373352 .29299928 .21235657 .2849884 .20037842 .2619934 .17240906 .22200012 .17240906 .1349945 .17240906 .1349945 .2722931 .1349945 .29527284 .1349945 .3222351 .13598633 .35420228 .15098572 .3791809 .15899658 .3913269 .18199158 .41937257 .22200012 .41937257 .30899049 .41937257 .30899049 .31922914 .30899049 .29618836V.29626466M.4189911-.07911682C.4189911-.13308716 .34799195-.18305969 .25-.18305969 .14898682-.18305969 .07998657-.13209534 .07998657-.07911682 .07998657-.03314209 .117996219 .003829956 .1619873 .0068359377H.22099304C.30699159 .0068359377 .4189911 .0068359377 .4189911-.07911682Z"/>
|
||||
<path id="font_1_28" d="M.48298646 .08912659V.14511109H.45799256V.08912659C.45799256 .03112793 .43299867 .025131226 .42199708 .025131226 .3889923 .025131226 .3849945 .070129398 .3849945 .07511902V.27508546C.3849945 .31707765 .3849945 .3560791 .34899903 .39312745 .30999757 .43223573 .2599945 .4482422 .21199036 .4482422 .12998963 .4482422 .06098938 .40115357 .06098938 .335083 .06098938 .30508424 .08099365 .28808595 .10699463 .28808595 .1349945 .28808595 .15299988 .30807496 .15299988 .33407594 .15299988 .3460846 .147995 .37908937 .101989749 .38008119 .1289978 .41519166 .17799378 .426239 .20999146 .426239 .25898744 .426239 .31599427 .38710023 .31599427 .29808045V.26107789C.2649994 .25808717 .19499207 .25508119 .13198853 .22509766 .056991579 .19110108 .03199768 .13911438 .03199768 .09512329 .03199768 .014251709 .1289978-.0107421879 .19198609-.0107421879 .2579956-.0107421879 .3039856 .029251099 .32299806 .07624817 .32699586 .036132814 .35398866-.005859375 .40098573-.005859375 .42199708-.005859375 .48298646 .008132935 .48298646 .08912659M.31599427 .14013672C.31599427 .04525757 .24398804 .011245728 .19898987 .011245728 .1499939 .011245728 .10899353 .04624939 .10899353 .09625244 .10899353 .15124512 .15098572 .23425293 .31599427 .24024964V.14013672Z"/>
|
||||
<path id="font_2_82" d="M.5529938 0V.055999757H.39898683V.6211853C.39898683 .65625 .3919983 .65625 .34999085 .65625 .28799439 .6061554 .20599365 .59213259 .12599182 .59213259H.101989749V.5361328H.12599182C.1659851 .5361328 .22698975 .54312136 .2689972 .5571289V.055999757H.11099243V0C.1599884 .0039978029 .27999879 .0039978029 .33399964 .0039978029L.44198609 .0029907227C.47200013 .0029907227 .5239868 .0019989014 .5529938 0Z"/>
|
||||
<path id="font_0_55" d="M.43699647 .6132202C.43699647 .65519717 .40098573 .7001953 .32299806 .7001953 .22499085 .7001953 .116989139 .65818789 .116989139 .54525759V.44433595H.041992189V.3973236H.116989139V.04699707H.04798889V0L.17399597 .0029907227C.21199036 .0029907227 .27598573 .0029907227 .31199647 0V.04699707H.22499085V.3973236H.33999635V.44433595H.21899414V.54525759C.21899414 .65519717 .29499818 .6641846 .31999208 .6641846 .32499696 .6641846 .32998658 .6641846 .33699037 .66218569 .32199098 .65119937 .31399537 .63220217 .31399537 .6132202 .31399537 .57025149 .34899903 .5512543 .375 .5512543 .40499879 .5512543 .43699647 .57225039 .43699647 .6132202Z"/>
|
||||
<path id="font_3_18" d="M.20599365 .3996582H.2999878C.31999208 .3996582 .32998658 .3996582 .32998658 .41966249 .32998658 .43066407 .31999208 .43066407 .3019867 .43066407H.21398926C.25 .5724945 .25498963 .59246829 .25498963 .59846499 .25498963 .61546328 .24299622 .62545779 .22599793 .62545779 .22299195 .62545779 .19499207 .62446597 .18598938 .58947756L.14698792 .43066407H.052993776C.032989503 .43066407 .022994996 .43066407 .022994996 .4116516 .022994996 .3996582 .0309906 .3996582 .050994874 .3996582H.13899231C.066986087 .11608887 .06298828 .099121097 .06298828 .08114624 .06298828 .02722168 .100997928-.0107421879 .15499878-.0107421879 .25698854-.0107421879 .31399537 .13505554 .31399537 .14305115 .31399537 .1530304 .30599977 .1530304 .3019867 .1530304 .29299928 .1530304 .2919922 .15003968 .2869873 .13905335 .24398804 .035217287 .19099427 .011245728 .15699768 .011245728 .13598633 .011245728 .12599182 .024230957 .12599182 .057174684 .12599182 .08114624 .12799073 .088134769 .13198853 .10510254L.20599365 .3996582Z"/>
|
||||
<path id="font_4_66" d="M.33099366 .14329529C.33099366 .1532898 .32299806 .1532898 .31599427 .1532898 .30299378 .1532898 .30299378 .1512909 .29899598 .1362915 .29100038 .107284549 .2639923 .011245728 .20599365 .011245728 .19799805 .011245728 .18399048 .012252808 .18399048 .039260866 .18399048 .06526184 .19699097 .09828186 .20999146 .13528443L.27398683 .30633546C.28399659 .3353424 .28599549 .34335328 .28599549 .36235047 .28599549 .41737367 .24798584 .4423828 .21099854 .4423828 .116989139 .4423828 .08299255 .29333497 .08299255 .28833009 .08299255 .27833558 .09298706 .27833558 .09799194 .27833558 .11099243 .27833558 .11199951 .28033448 .115997318 .29434205 .125 .3273468 .15098572 .42037965 .20899964 .42037965 .21998596 .42037965 .23098755 .41537477 .23098755 .3923645 .23098755 .36836244 .21998596 .33935548 .21299744 .32034303L.18299866 .23731995 .1459961 .1382904C.13198853 .10028076 .12799073 .089279178 .12799073 .0692749 .12799073 .030258179 .1519928-.0107421879 .20399475-.0107421879 .2979889-.0107421879 .33099366 .13928223 .33099366 .14329529M.35798646 .61128237C.35798646 .6322937 .34298707 .6542969 .31298829 .6542969 .2809906 .6542969 .24899292 .623291 .24899292 .59129336 .24899292 .56929019 .2649994 .54829409 .2939911 .54829409 .32598878 .54829409 .35798646 .57928469 .35798646 .61128237Z"/>
|
||||
<path id="font_4_77" d="M.58599856 .14329529C.58599856 .1532898 .5779877 .1532898 .57099917 .1532898 .55799868 .1532898 .55799868 .1512909 .55400088 .1362915 .54599 .10928345 .5189972 .011245728 .46099855 .011245728 .43998719 .011245728 .43899537 .026260376 .43899537 .040252687 .43899537 .06526184 .44898988 .091278079 .45700074 .11528015 .47698976 .16830445 .5179901 .28033448 .5179901 .3383484 .5179901 .42037965 .46299745 .4423828 .4139862 .4423828 .33198548 .4423828 .28399659 .38235475 .2709961 .36335755 .2639923 .41236878 .22999573 .4423828 .18699646 .4423828 .15098572 .4423828 .1309967 .41937257 .114990238 .38935853 .09599304 .34934999 .08299255 .28833009 .08299255 .28833009 .08299255 .27833558 .09298706 .27833558 .09799194 .27833558 .11099243 .27833558 .11199951 .2793274 .116989139 .30133058 .1349945 .37135316 .1539917 .42037965 .18499756 .42037965 .21099854 .42037965 .21099854 .39135743 .21099854 .38035584 .21099854 .36434938 .20799256 .34535218 .20399475 .3293457L.1289978 .029251099C.1269989 .023254395 .12599182 .018249512 .12599182 .015258789 .12599182 .004257202 .13398743-.0107421879 .1539917-.0107421879 .1659851-.0107421879 .18299866-.003753662 .18998719 .015258789L.22999573 .17529297C.23498535 .1973114 .24099732 .2183075 .24598694 .24032593 .25898744 .29133607 .25898744 .29232789 .27598573 .3213501 .2899933 .34535218 .33499146 .42037965 .41099549 .42037965 .45498658 .42037965 .45700074 .3753662 .45700074 .35435487 .45700074 .29232789 .41299439 .17329407 .39898683 .13328552 .38598634 .09927368 .3829956 .090270999 .3829956 .0692749 .3829956 .025253296 .41099549-.0107421879 .45899964-.0107421879 .5519867-.0107421879 .58599856 .1382904 .58599856 .14329529Z"/>
|
||||
<path id="font_5_4" d="M.2939911 .64004519C.2939911 .66400149 .2939911 .6660156 .2709961 .6660156 .20899964 .60227969 .12098694 .60227969 .08898926 .60227969V.57128909C.10899353 .57128909 .16799927 .57128909 .21998596 .5972748V.07902527C.21998596 .042999269 .21699524 .0309906 .1269989 .0309906H.09498596V0C.12998963 .0029907227 .21699524 .0029907227 .25698854 .0029907227 .29699708 .0029907227 .38398744 .0029907227 .4189911 0V.0309906H.3869934C.29699708 .0309906 .2939911 .041992189 .2939911 .07902527V.64004519Z"/>
|
||||
<path id="font_3_4" d="M.20298767 .0009918213C.20298767 .066986087 .17799378 .10598755 .13899231 .10598755 .10598755 .10598755 .085998538 .08099365 .085998538 .052993776 .085998538 .025985718 .10598755 0 .13899231 0 .15098572 0 .1639862 .0039978029 .17399597 .0129852299 .1769867 .01499939 .17799378 .015991211 .1789856 .015991211 .17999268 .015991211 .18099976 .01499939 .18099976 .0009918213 .18099976-.07316589 .1459961-.13328552 .11299133-.16635132 .101989749-.17736817 .101989749-.17936707 .101989749-.18237305 .101989749-.18936157 .10699463-.19335938 .11199951-.19335938 .12298584-.19335938 .20298767-.116256717 .20298767 .0009918213Z"/>
|
||||
<path id="font_3_3" d="M.19198609 .052993776C.19198609 .08198547 .16799927 .10598755 .13899231 .10598755 .10998535 .10598755 .085998538 .08198547 .085998538 .052993776 .085998538 .023986817 .10998535 0 .13899231 0 .16799927 0 .19198609 .023986817 .19198609 .052993776Z"/>
|
||||
<path id="font_3_12" d="M.4269867 .6066284C.43399049 .63461306 .43798829 .64060977 .44999696 .6436157 .45899964 .6456146 .49198915 .6456146 .5130005 .6456146 .6139984 .6456146 .6589966 .6416168 .6589966 .56365969 .6589966 .54867556 .6549988 .50968936 .651001 .4837036 .6499939 .4797058 .647995 .4677124 .647995 .46472169 .647995 .45872499 .651001 .45173646 .6599884 .45173646 .67099 .45173646 .6729889 .45973207 .6749878 .4747162L.70199587 .64860537C.7029877 .65260317 .70399478 .6626129 .70399478 .66560366 .70399478 .6766052 .69400027 .6766052 .6769867 .6766052H.12199402C.09799194 .6766052 .09700012 .6756134 .08999634 .6566162L.02999878 .4807129C.0289917 .478714 .023986817 .46472169 .023986817 .46272279 .023986817 .45672608 .0289917 .45173646 .035995485 .45173646 .04598999 .45173646 .04699707 .45672608 .052993776 .4727173 .10699463 .6276245 .1329956 .6456146 .2809906 .6456146H.31999208C.34799195 .6456146 .34799195 .6416168 .34799195 .6336212 .34799195 .6276245 .34498597 .6156311 .34399415 .6126251L.20999146 .07896423C.20098877 .041992189 .19799805 .0309906 .09098816 .0309906 .054992677 .0309906 .04899597 .0309906 .04899597 .011993408 .04899597 0 .05999756 0 .06599426 0 .09298706 0 .12098694 .0019989014 .147995 .0019989014 .17599488 .0019989014 .20498657 .0029907227 .23298645 .0029907227 .26098634 .0029907227 .2889862 .0019989014 .31599427 .0019989014 .34498597 .0019989014 .375 0 .40299989 0 .41299439 0 .4249878 0 .4249878 .019989014 .4249878 .0309906 .4169922 .0309906 .3909912 .0309906 .3659973 .0309906 .35299684 .0309906 .32699586 .032989503 .2979889 .035995485 .2899933 .038986207 .2899933 .054977418 .2899933 .05596924 .2899933 .06097412 .2939911 .07595825L.4269867 .6066284Z"/>
|
||||
<path id="font_0_47" d="M.6009979 0V.04699707C.5389862 .04699707 .5319977 .04699707 .5319977 .086013797V.69433596L.35499574 .6855469V.63853457C.4169922 .63853457 .42399598 .63853457 .42399598 .5996704V.40518189C.37399293 .44418336 .32199098 .4501953 .2889862 .4501953 .14299011 .4501953 .037994386 .36218263 .037994386 .22116089 .037994386 .089141849 .12998963-.005859375 .27799989-.005859375 .33898927-.005859375 .3869934 .018127442 .41799928 .043136598V-.005859375L.6009979 0M.41799928 .102996829C.40499879 .08514404 .3639984 .030136109 .28799439 .030136109 .1659851 .030136109 .1659851 .15115357 .1659851 .22116089 .1659851 .26916505 .1659851 .3231659 .19198609 .36218263 .22099304 .40419007 .2679901 .41418458 .29899598 .41418458 .35598756 .41418458 .3959961 .3821869 .41799928 .35317994V.102996829Z"/>
|
||||
<path id="font_2_107" d="M.5779877 .2280426H.5149994C.5130005 .21603394 .5039978 .14500427 .48599244 .14099121 .46499635 .13699341 .40499879 .13699341 .38198854 .13699341H.24499512C.2999878 .17800904 .35598756 .21903992 .4139862 .25605775 .49499513 .3080902 .5779877 .3611145 .5779877 .46116639 .5779877 .5812378 .46499635 .65625 .30599977 .65625 .16999817 .65625 .067993167 .60324099 .067993167 .50819399 .067993167 .4501648 .114990238 .42915345 .14498902 .42915345 .18099976 .42915345 .22299195 .4541626 .22299195 .5071869 .22299195 .55522158 .18598938 .57522585 .18299866 .5762329 .21899414 .59924319 .2649994 .600235 .2769928 .600235 .3619995 .600235 .42900086 .5462189 .42900086 .4601593 .42900086 .38311769 .3769989 .3190918 .31900025 .2680664L.08099365 .056991579C.068984989 .04499817 .067993167 .04399109 .067993167 .023986817V0H.5439911L.5779877 .2280426Z"/>
|
||||
<path id="font_3_15" d="M.5159912 .68333438C.5159912 .6843262 .5159912 .69433596 .5029907 .69433596 .48799134 .69433596 .3929901 .68533328 .37599183 .68333438 .36799623 .6823273 .3619995 .6773224 .3619995 .6643219 .3619995 .6523285 .37098695 .6523285 .38598634 .6523285 .43399049 .6523285 .43598939 .6453247 .43598939 .6353302L.43299867 .6153412 .37298585 .37835694C.35499574 .41537477 .32598878 .4423828 .2809906 .4423828 .1639862 .4423828 .039993287 .29533387 .039993287 .14929199 .039993287 .055267335 .09498596-.0107421879 .17298889-.0107421879 .19299317-.0107421879 .24299622-.0067443849 .30299378 .06427002 .31098939 .022247315 .34599305-.0107421879 .3939972-.0107421879 .42900086-.0107421879 .45199586 .012252808 .46798707 .044265748 .4850006 .08027649 .49798585 .14129639 .49798585 .14329529 .49798585 .1532898 .4889984 .1532898 .48599244 .1532898 .47599793 .1532898 .47499085 .14929199 .47200013 .13528443 .45498658 .07026672 .43699647 .011245728 .3959961 .011245728 .36898805 .011245728 .3659973 .037261964 .3659973 .057266237 .3659973 .08126831 .36799623 .088272098 .37199403 .105285648L.5159912 .68333438M.30799867 .119277957C.30299378 .10127258 .30299378 .09927368 .28799439 .08227539 .24398804 .027252198 .20298767 .011245728 .1749878 .011245728 .125 .011245728 .11099243 .06626892 .11099243 .105285648 .11099243 .1552887 .14299011 .27833558 .1659851 .32434083 .19699097 .38336183 .24198914 .42037965 .28199769 .42037965 .34700013 .42037965 .36099244 .3383484 .36099244 .33235169 .36099244 .32633973 .35899354 .32034303 .35798646 .31533814L.30799867 .119277957Z"/>
|
||||
<path id="font_3_7" d="M.15899658 .07795715C.14898682 .038986207 .14698792 .0309906 .067993167 .0309906 .050994874 .0309906 .039993287 .0309906 .039993287 .011993408 .039993287 0 .04899597 0 .067993167 0H.39898683C.6069946 0 .80400088 .21087647 .80400088 .42974855 .80400088 .5706482 .71899417 .6826172 .56900027 .6826172H.23298645C.21398926 .6826172 .20298767 .6826172 .20298767 .66360476 .20298767 .6516113 .21199036 .6516113 .23199463 .6516113 .24499512 .6516113 .2630005 .65060427 .2749939 .6496124 .29100038 .6476135 .29699708 .64460757 .29699708 .6336212 .29699708 .6296234 .29599 .62661746 .29299928 .614624L.15899658 .07795715M.375 .6136322C.38398744 .64860537 .38598634 .6516113 .42900086 .6516113H.5359955C.6339874 .6516113 .71699526 .5986328 .71699526 .46672059 .71699526 .41775514 .69699099 .25386048 .6119995 .1439209 .58299258 .10694885 .5039978 .0309906 .3809967 .0309906H.2679901C.2539978 .0309906 .2519989 .0309906 .24598694 .03199768 .23599243 .032989503 .23298645 .033996583 .23298645 .041992189 .23298645 .04498291 .23298645 .04698181 .23799134 .064971927L.375 .6136322Z"/>
|
||||
<path id="font_3_17" d="M.04499817-.122177127C.036987306-.15631104 .034988405-.16334534-.009002686-.16334534-.021011353-.16334534-.03201294-.16334534-.03201294-.18234253-.03201294-.19033814-.027008057-.19433594-.019012452-.19433594 .0079956059-.19433594 .036987306-.19134522 .06498718-.19134522 .09799194-.19134522 .13198853-.19433594 .1639862-.19433594 .16899109-.19433594 .18199158-.19433594 .18199158-.17434693 .18199158-.16334534 .17199707-.16334534 .1579895-.16334534 .10798645-.16334534 .10798645-.15631104 .10798645-.14727783 .10798645-.13523865 .1499939 .028259278 .15699768 .053268434 .16999817 .024261475 .19799805-.0107421879 .24899292-.0107421879 .36499024-.0107421879 .48999024 .13528443 .48999024 .28233338 .48999024 .37635804 .43299867 .4423828 .35699464 .4423828 .30699159 .4423828 .25898744 .40637208 .22599793 .36735536 .21598816 .42137147 .17298889 .4423828 .13598633 .4423828 .08999634 .4423828 .070999149 .4033661 .06199646 .38536073 .04399109 .35134889 .0309906 .29133607 .0309906 .28833009 .0309906 .27833558 .040985109 .27833558 .042999269 .27833558 .052993776 .27833558 .053985597 .2793274 .05999756 .30133058 .07699585 .37236024 .09700012 .42037965 .1329956 .42037965 .1499939 .42037965 .1639862 .41236878 .1639862 .37435914 .1639862 .35134889 .16099549 .3403473 .15699768 .323349L.04499817-.122177127M.22099304 .3123474C.22799683 .33935548 .25498963 .36735536 .272995 .38235475 .30799867 .41337586 .33699037 .42037965 .35398866 .42037965 .3939972 .42037965 .41799928 .38536073 .41799928 .32633973 .41799928 .26733399 .3849945 .15229798 .36698915 .11428833 .33299256 .044265748 .2849884 .011245728 .24798584 .011245728 .18199158 .011245728 .16899109 .0942688 .16899109 .10028076 .16899109 .10227966 .16899109 .104278568 .17199707 .11628723L.22099304 .3123474Z"/>
|
||||
<path id="font_3_10" d="M.30299378 .3157959H.47299195C.61499026 .3157959 .7539978 .41973878 .7539978 .53167727 .7539978 .6086273 .6879883 .6826172 .5569916 .6826172H.23298645C.21398926 .6826172 .20298767 .6826172 .20298767 .66360476 .20298767 .6516113 .21199036 .6516113 .23199463 .6516113 .24499512 .6516113 .2630005 .65060427 .2749939 .6496124 .29100038 .6476135 .29699708 .64460757 .29699708 .6336212 .29699708 .6296234 .29599 .62661746 .29299928 .614624L.15899658 .07795715C.14898682 .038986207 .14698792 .0309906 .067993167 .0309906 .050994874 .0309906 .039993287 .0309906 .039993287 .011993408 .039993287 0 .051986696 0 .054992677 0 .08299255 0 .1539917 .0029907227 .18199158 .0029907227 .20298767 .0029907227 .22499085 .0019989014 .24598694 .0019989014 .2679901 .0019989014 .2899933 0 .31098939 0 .31799317 0 .33099366 0 .33099366 .019989014 .33099366 .0309906 .32199098 .0309906 .30299378 .0309906 .2659912 .0309906 .23799134 .0309906 .23799134 .048980714 .23799134 .054977418 .23999024 .05996704 .24099732 .065963748L.30299378 .3157959M.375 .6136322C.38398744 .64860537 .38598634 .6516113 .42900086 .6516113H.5249939C.60798647 .6516113 .6609955 .62461856 .6609955 .55566409 .6609955 .5166931 .6409912 .43074037 .60198977 .39476014 .5519867 .34977723 .49198915 .34179688 .44799806 .34179688H.30699159L.375 .6136322Z"/>
|
||||
<path id="font_2_106" d="M.58898928 .18118286C.58898928 .25819398 .5279999 .32818605 .4139862 .35118104 .48599244 .3781891 .5529938 .4302063 .5529938 .5142212 .5529938 .5922394 .47299195 .65625 .31298829 .65625 .1769867 .65625 .09298706 .5892334 .09298706 .5062256 .09298706 .45620729 .1289978 .42919923 .16799927 .42919923 .21798706 .42919923 .24398804 .46621705 .24398804 .5042114 .24398804 .5552368 .20399475 .5732269 .19400025 .5762329 .23498535 .60624697 .28799439 .61024478 .30799867 .61024478 .4059906 .61024478 .4059906 .54522708 .4059906 .5172272 .4059906 .47120667 .38598634 .37919618 .28599549 .37419129 .26098634 .3731842 .23599243 .37219239 .22999573 .37019349 .21699524 .36618043 .21699524 .354187 .21699524 .3481903 .21699524 .3251953 .22999573 .3251953 .24899292 .3251953H.3019867C.42099 .3251953 .42599488 .23521424 .42599488 .18223572 .42599488 .14024353 .42599488 .039276124 .30599977 .039276124 .2789917 .039276124 .21598816 .044265748 .17298889 .071258548 .19400025 .07998657 .21998596 .102996829 .21998596 .1459961 .21998596 .1925354 .18699646 .22753906 .13899231 .22753906 .08898926 .22753906 .056991579 .1925354 .056991579 .14546204 .056991579 .043273927 .16799927-.01171875 .30999757-.01171875 .5189972-.01171875 .58898928 .09738159 .58898928 .18153382V.18118286Z"/>
|
||||
<path id="font_6_8" d="M.54100039 .7217102C.49198915 .68070986 .43899537 .6513672 .3880005 .6513672 .34799195 .6513672 .31900025 .66796877 .28399659 .68769839 .25498963 .70469668 .22399903 .7217102 .18399048 .7217102 .15899658 .7217102 .1329956 .71369937 .11099243 .70370486 .09098816 .6937103 .070999149 .68270877 .053985597 .6689453L0 .6253662 .01399231 .60835269C.06298828 .649353 .115997318 .67871096 .16699219 .67871096 .20698548 .67871096 .23599243 .6621094 .2709961 .6423645 .2999878 .6253662 .33099366 .60835269 .37098695 .60835269 .3959961 .60835269 .42199708 .6163635 .44400025 .62635806 .46398927 .63635256 .48399354 .6473541 .5009918 .6611328L.5549927 .70469668 .54100039 .7217102Z"/>
|
||||
<path id="font_3_13" d="M.4850006 .41075135 .40098573 .6096344C.397995 .61763 .3959961 .6216278 .3959961 .6226196 .3959961 .62861636 .41299439 .6476135 .45498658 .6516113 .46499635 .65260317 .47499085 .6536102 .47499085 .6706085 .47499085 .6826172 .46299745 .6826172 .45999146 .6826172 .4189911 .6826172 .37599183 .6796112 .33399964 .6796112 .30899049 .6796112 .24699402 .6826172 .22200012 .6826172 .21598816 .6826172 .20399475 .6826172 .20399475 .6626129 .20399475 .6516113 .21398926 .6516113 .22698975 .6516113 .2869873 .6516113 .29299928 .6416168 .3019867 .6196289L.41999818 .34080506 .20899964 .11393738 .19599915 .10295105C.14698792 .049987794 .099990848 .033996583 .04899597 .0309906 .035995485 .02999878 .026992798 .02999878 .026992798 .010986328 .026992798 .009994507 .026992798 0 .039993287 0 .069992069 0 .102996829 .0029907227 .13398743 .0029907227 .17098999 .0029907227 .20999146 0 .24598694 0 .2519989 0 .2639923 0 .2639923 .019989014 .2639923 .02999878 .2539978 .0309906 .2519989 .0309906 .24299622 .03199768 .21199036 .033996583 .21199036 .061965944 .21199036 .07795715 .22698975 .093948367 .23899842 .10694885L.34098817 .21487427 .43099977 .31282044 .5319977 .07395935C.5359955 .06297302 .5369873 .061965944 .5369873 .05996704 .5369873 .051986696 .5179901 .034988405 .47898866 .0309906 .46798707 .02999878 .45899964 .0289917 .45899964 .011993408 .45899964 0 .46998597 0 .47399903 0 .5019989 0 .57199099 .0029907227 .59999087 .0029907227 .625 .0029907227 .6859894 0 .71099856 0 .71798709 0 .7299957 0 .7299957 .018997193 .7299957 .0309906 .7200012 .0309906 .71199038 .0309906 .644989 .03199768 .6429901 .034988405 .6259918 .07496643 .58699038 .16790772 .519989 .32380677 .49699403 .3837738 .5649872 .45373536 .66999819 .5726471 .70199587 .6006317 .73098757 .62461856 .7689972 .64860537 .82899478 .6516113 .84199526 .65260317 .8509979 .65260317 .8509979 .6716156 .8509979 .6726074 .8509979 .6826172 .83799746 .6826172 .80799868 .6826172 .7749939 .6796112 .74398806 .6796112 .70700076 .6796112 .6689911 .6826172 .6329956 .6826172 .6269989 .6826172 .6139984 .6826172 .6139984 .6626129 .6139984 .65560916 .61898806 .65260317 .6259918 .6516113 .6349945 .65060427 .66600039 .64860537 .66600039 .6206207 .66600039 .6066284 .6549988 .5936432 .6469879 .5846405L.4850006 .41075135Z"/>
|
||||
<path id="font_7_10" d="M.24598694 .39465333H.34799195C.36698915 .39465333 .37998963 .39465333 .37998963 .4166565 .37998963 .43066407 .36698915 .43066407 .34999085 .43066407H.25498963L.2919922 .57850649C.29299928 .58351138 .29499818 .588501 .29499818 .5924988 .29499818 .6104889 .2809906 .6244812 .26098634 .6244812 .23599243 .6244812 .22099304 .6074829 .21398926 .58151248 .20698548 .5565338 .21998596 .6044922 .17599488 .43066407H.07398987C.054992677 .43066407 .041992189 .43066407 .041992189 .4086609 .041992189 .39465333 .053985597 .39465333 .07199097 .39465333H.16699219L.10798645 .15901184C.101989749 .13404846 .09298706 .098098758 .09298706 .085128787 .09298706 .0262146 .14299011-.009765625 .19999695-.009765625 .31098939-.009765625 .37399293 .13005066 .37399293 .14303589 .37399293 .15602112 .36099244 .15602112 .35798646 .15602112 .34599305 .15602112 .34498597 .15402222 .33699037 .13703919 .30899049 .074142459 .2579956 .018234253 .20298767 .018234253 .18199158 .018234253 .16799927 .031204224 .16799927 .06715393 .16799927 .07713318 .17199707 .098098758 .17399597 .10809326L.24598694 .39465333Z"/>
|
||||
<path id="font_7_4" d="M.21099854 .015991211C.21099854-.03907776 .20098877-.10321045 .1329956-.16732788 .1289978-.17134094 .12599182-.17434693 .12599182-.17933655 .12599182-.18634033 .13398743-.19334412 .13999939-.19334412 .1539917-.19334412 .23899842-.113220218 .23899842 .005996704 .23899842 .067993167 .21499634 .114990238 .16899109 .114990238 .13598633 .114990238 .11199951 .08898926 .11199951 .057998659 .11199951 .025985718 .1349945 0 .16999817 0 .19400025 0 .20999146 .015991211 .21099854 .015991211Z"/>
|
||||
<path id="font_7_7" d="M.57099917 .66430667C.57199099 .66630557 .57499697 .67930606 .57499697 .68029788 .57499697 .68530276 .57099917 .6943054 .5589905 .6943054 .5389862 .6943054 .45599366 .6863098 .43099977 .6843109 .4229889 .68330386 .40899659 .682312 .40899659 .66130068 .40899659 .64730837 .4229889 .64730837 .43499757 .64730837 .48298646 .64730837 .48298646 .64030459 .48298646 .63230898 .48298646 .62532046 .48098756 .61932376 .47898866 .61032107L.42199708 .38238526C.40098573 .41540528 .36698915 .44140626 .31900025 .44140626 .19099427 .44140626 .06098938 .300354 .06098938 .15628052 .06098938 .059249879 .12599182-.009765625 .21199036-.009765625 .2659912-.009765625 .31399537 .021224976 .35398866 .0602417 .37298585 .00022888184 .43099977-.009765625 .45700074-.009765625 .49299623-.009765625 .5179901 .01222229 .5359955 .04324341 .55799868 .08226013 .57099917 .13928223 .57099917 .14328003 .57099917 .15628052 .55799868 .15628052 .5549927 .15628052 .54100039 .15628052 .5399933 .15228272 .5329895 .12527466 .5209961 .07725525 .5019989 .018234253 .45999146 .018234253 .43399049 .018234253 .4269867 .040237428 .4269867 .06724548 .4269867 .086257938 .42900086 .09526062 .43199159 .10826111L.57099917 .66430667M.35798646 .12527466C.35099793 .09725952 .32899476 .07725525 .30699159 .058242799 .2979889 .050247194 .2579956 .018234253 .21499634 .018234253 .17799378 .018234253 .14199829 .04423523 .14199829 .11526489 .14199829 .16828919 .17098999 .27833558 .19400025 .31835938 .23999024 .39839173 .29100038 .4133911 .31900025 .4133911 .3889923 .4133911 .4079895 .33737184 .4079895 .32635499 .4079895 .32235719 .4059906 .3153534 .40499879 .3123474L.35798646 .12527466Z"/>
|
||||
<path id="font_7_9" d="M.07499695-.12220764C.067993167-.15031433 .06599426-.15834046 .025985718-.15834046 .0129852299-.15834046-.0010070801-.15834046-.0010070801-.17933655-.0010070801-.19033814 .0079956059-.19433594 .0129852299-.19433594 .038986207-.19433594 .07199097-.19033814 .09899902-.19033814 .1329956-.19033814 .17098999-.19433594 .20399475-.19433594 .21299744-.19433594 .22399903-.19134522 .22399903-.17234802 .22399903-.15834046 .20999146-.15834046 .19799805-.15834046 .17599488-.15834046 .14898682-.15834046 .14898682-.14630127 .14898682-.14128113 .1559906-.11517334 .1599884-.100112918 .17199707-.046920778 .18598938 .007232666 .19699097 .049240114 .20899964 .02923584 .23999024-.009765625 .2999878-.009765625 .42199708-.009765625 .5569916 .12527466 .5569916 .27433778 .5569916 .39138795 .47599793 .44140626 .40699769 .44140626 .34498597 .44140626 .2919922 .3993988 .2649994 .37138368 .24798584 .42840577 .19198609 .44140626 .1619873 .44140626 .12298584 .44140626 .09899902 .41540528 .08299255 .38838197 .06298828 .35437013 .04699707 .29434205 .04699707 .28834535 .04699707 .27534486 .06098938 .27534486 .06399536 .27534486 .07798767 .27534486 .07899475 .27833558 .085998538 .3053589 .100997928 .3633728 .11999512 .4133911 .15899658 .4133911 .18499756 .4133911 .19198609 .39138795 .19198609 .36437989 .19198609 .3533783 .18998719 .34036256 .18899536 .33436585L.07499695-.12220764M.2639923 .32136537C.32199098 .39839173 .37199403 .4133911 .4039917 .4133911 .44299317 .4133911 .47698976 .38438417 .47698976 .31636048 .47698976 .27534486 .45498658 .17329407 .4249878 .11526489 .3999939 .06625366 .35099793 .018234253 .2999878 .018234253 .22898865 .018234253 .21099854 .09526062 .21099854 .105270389 .21099854 .10926819 .21299744 .11627197 .21398926 .120269779L.2639923 .32136537Z"/>
|
||||
<path id="font_5_6" d="M.68699648 .32714845C.70199587 .32714845 .72099307 .32714845 .72099307 .34713746 .72099307 .36714173 .70199587 .36714173 .6879883 .36714173H.08898926C.07499695 .36714173 .055999757 .36714173 .055999757 .34713746 .055999757 .32714845 .07499695 .32714845 .08999634 .32714845H.68699648M.6879883 .13284302C.70199587 .13284302 .72099307 .13284302 .72099307 .15284729 .72099307 .17285156 .70199587 .17285156 .68699648 .17285156H.08999634C.07499695 .17285156 .055999757 .17285156 .055999757 .15284729 .055999757 .13284302 .07499695 .13284302 .08898926 .13284302H.6879883Z"/>
|
||||
<path id="font_8_9" d="M.55599978 .35514833C.55999758 .3701477 .56599429 .3951416 .56599429 .40014649 .56599429 .4221344 .5499878 .44413758 .5189972 .44413758 .5029907 .44413758 .46598817 .43614198 .45298768 .3911438 .43598939 .32815553 .41799928 .25515748 .4019928 .1871643 .3939972 .15216065 .3939972 .13917542 .3939972 .12617493 .3939972 .09916687 .39698792 .10017395 .39698792 .094177249 .39698792 .08917236 .36999513 .028182984 .31199647 .028182984 .23098755 .028182984 .23098755 .08917236 .23098755 .11016846 .23098755 .15216065 .24299622 .19915772 .2829895 .30114747 .29100038 .32115174 .30099488 .3451538 .30099488 .3621521 .30099488 .4201355 .24299622 .45214845 .18798828 .45214845 .08198547 .45214845 .03199768 .31614686 .03199768 .29615785 .03199768 .28215028 .04699707 .28215028 .055999757 .28215028 .067993167 .28215028 .07499695 .28215028 .07899475 .29515077 .11199951 .4061432 .1659851 .4161377 .18199158 .4161377 .18798828 .4161377 .19898987 .4161377 .19898987 .3951416 .19898987 .3721466 .18899536 .3471527 .1769867 .31614686 .13798523 .21916199 .12298584 .17016602 .12298584 .12817383 .12298584 .018173218 .21899414-.0078125 .30499269-.0078125 .32499696-.0078125 .37098695-.0078125 .4169922 .048171998 .44400025 .014175415 .4889984-.0078125 .5669861-.0078125 .6269989-.0078125 .6799927 .0211792 .7259979 .109176639 .7659912 .18415833 .7969971 .31015016 .7969971 .3621521 .7969971 .45314027 .7299957 .45314027 .72898867 .45314027 .69099429 .45314027 .6529999 .41314698 .6529999 .3771515 .6529999 .3491516 .673996 .33714295 .68299868 .33215333 .7220001 .30915834 .73298647 .29115296 .73298647 .26914979 .73298647 .2541504 .70799258 .15916443 .6769867 .10417175 .6489868 .05418396 .61698916 .028182984 .57398989 .028182984 .5019989 .028182984 .5009918 .08717346 .5009918 .107177738 .5009918 .13316345 .5049896 .14816284 .5169983 .1981659 .5239868 .2271576 .5359955 .27615357 .5419922 .29914857L.55599978 .35514833Z"/>
|
||||
<path id="font_9_3" d="M.2899933 .4720459C.2979889 .4890442 .29899598 .49705506 .29899598 .5040436 .29899598 .53504946 .2709961 .5590515 .23999024 .5590515 .20199585 .5590515 .18998719 .52804568 .18499756 .51205447L.052993776 .07901001C.051986696 .07701111 .04798889 .06401062 .04798889 .06300354 .04798889 .05101013 .07899475 .041015626 .08699036 .041015626 .09399414 .041015626 .09498596 .043014528 .101989749 .058013917L.2899933 .4720459Z"/>
|
||||
<path id="font_9_1" d="M.74398806 .2263794C.7599945 .2263794 .7839966 .2263794 .7839966 .25038148 .7839966 .27539063 .7609863 .27539063 .74398806 .27539063H.147995C.13198853 .27539063 .10798645 .27539063 .10798645 .25138856 .10798645 .2263794 .1309967 .2263794 .147995 .2263794H.74398806Z"/>
|
||||
<path id="font_10_2" d="M.33499146 .63612368C.33499146 .6630554 .33299256 .6640625 .30499269 .6640625 .24099732 .6014404 .1499939 .6004486 .10899353 .6004486V.5644531C.1329956 .5644531 .19898987 .5644531 .2539978 .592453V.08203125C.2539978 .04899597 .2539978 .035995485 .1539917 .035995485H.115997318V0C.13398743 .0009918213 .25698854 .0039978029 .2939911 .0039978029 .32499696 .0039978029 .45098878 .0009918213 .47299195 0V.035995485H.43499757C.33499146 .035995485 .33499146 .04899597 .33499146 .08203125V.63612368Z"/>
|
||||
<path id="font_6_7" d="M.49899293 .7128906 .9949951 .5751953 1.0029907 .5991821 .5 .7718811-.0040130617 .5991821 .0039978029 .5751953 .49899293 .7128906Z"/>
|
||||
<path id="font_8_7" d="M.58200076 .3947296 .71398928 .5246277 .776001 .5875702C.81599429 .6255493 .8279877 .6375427 .9319916 .63853457 .95098879 .63853457 .9529877 .6645355 .9529877 .6675415 .9529877 .6735382 .94898989 .6855469 .93299868 .6855469 .897995 .6855469 .8600006 .6825409 .82398989 .6825409 .79499819 .6825409 .72299197 .6855469 .69400027 .6855469 .6859894 .6855469 .66600039 .6855469 .66600039 .65753176 .66600039 .6395416 .6819916 .63853457 .69099429 .63853457 .72099307 .6375427 .746994 .6295471 .7509918 .62854006L.55999758 .439682 .46798707 .63253787C.47799684 .63453677 .5089874 .63853457 .526001 .63853457 .5369873 .63853457 .5549927 .63853457 .5549927 .6665344 .5549927 .680542 .54599 .6855469 .5329895 .6855469 .49899293 .6855469 .4149933 .6825409 .3809967 .6825409 .35798646 .6825409 .33499146 .6835327 .31199647 .6835327 .2889862 .6835327 .2649994 .6855469 .24198914 .6855469 .23298645 .6855469 .21398926 .6855469 .21398926 .65753176 .21398926 .63853457 .22698975 .63853457 .25498963 .63853457 .2689972 .63853457 .27999879 .63853457 .2939911 .6375427 .30799867 .6355438 .30899049 .63453677 .31498719 .62254336L.45298768 .33377076 .20199585 .08596802C.18399048 .06896973 .16299439 .04798889 .07398987 .04699707 .055999757 .04699707 .038986207 .04699707 .038986207 .017990113 .038986207 .010986328 .04399109 0 .05899048 0 .08299255 0 .14399719 .0029907227 .16799927 .0029907227 .19699097 .0029907227 .2689972 0 .2979889 0 .30599977 0 .32598878 0 .32598878 .0289917 .32598878 .04699707 .30799867 .04699707 .2999878 .04699707 .27999879 .04699707 .2599945 .049987794 .24099732 .056991579L.47399903 .2888031 .58699038 .052993776C.58599856 .052993776 .5529938 .04699707 .5289917 .04699707 .5189972 .04699707 .5 .04699707 .5 .017990113 .5 .01499939 .5009918 0 .5219879 0 .55599978 0 .6409912 .0029907227 .6749878 .0029907227 .69799807 .0029907227 .72099307 .0019989014 .74398806 .0019989014 .7669983 .0019989014 .79100039 0 .81399539 0 .82199099 0 .84199526 0 .84199526 .0289917 .84199526 .04699707 .82598879 .04699707 .8019867 .04699707 .7879944 .04699707 .7779999 .04699707 .7630005 .04798889 .7480011 .049987794 .746994 .050994874 .73999026 .0639801L.58200076 .3947296Z"/>
|
||||
<path id="font_2_57" d="M.60598757 0V.055999757H.49699403V.15394593H.60598757V.20996094H.49699403V.62709048C.49699403 .6571045 .49198915 .6621094 .46199037 .6621094H.44699098C.42799378 .6621094 .41999818 .6621094 .40699769 .6470947L.039993287 .20996094V.15394593H.3600006V.055999757H.23599243V0C.2849884 .0039978029 .375 .0039978029 .4269867 .0039978029 .44898988 .0039978029 .58099368 .0019989014 .60598757 0M.37298585 .20996094H.10899353L.37298585 .5240631V.20996094Z"/>
|
||||
<path id="font_3_16" d="M.2869873 .68333438C.2869873 .6843262 .2869873 .69433596 .27398683 .69433596 .25099183 .69433596 .17799378 .6863251 .1519928 .6843262 .14399719 .68333438 .1329956 .6823273 .1329956 .6643219 .1329956 .6523285 .14199829 .6523285 .15699768 .6523285 .20498657 .6523285 .20698548 .6453247 .20698548 .6353302L.20399475 .6153412 .05899048 .039260866C.054992677 .025253296 .054992677 .023254395 .054992677 .01725769 .054992677-.0057525637 .07499695-.0107421879 .083999637-.0107421879 .09700012-.0107421879 .11199951-.0017547608 .117996219 .010253906 .12298584 .019256592 .16799927 .20431519 .17399597 .22932434 .20799256 .22631836 .2899933 .21031189 .2899933 .14428711 .2899933 .13729859 .2899933 .13328552 .2869873 .123291019 .2849884 .11128235 .2829895 .09927368 .2829895 .088272098 .2829895 .029251099 .32299806-.0107421879 .375-.0107421879 .40499879-.0107421879 .43199159 .0052490236 .45399476 .042266847 .47898866 .08627319 .48999024 .14129639 .48999024 .14329529 .48999024 .1532898 .48098756 .1532898 .47799684 .1532898 .46798707 .1532898 .46699525 .14929199 .46398927 .13528443 .44400025 .06227112 .42099 .011245728 .3769989 .011245728 .35798646 .011245728 .34498597 .022247315 .34498597 .058273317 .34498597 .07527161 .34899903 .09828186 .35299684 .11428833 .35699464 .13128662 .35699464 .13528443 .35699464 .14529419 .35699464 .21031189 .2939911 .23931885 .20899964 .2503357 .23999024 .26834107 .27198792 .30033876 .29499818 .32435609 .34298707 .37734986 .3889923 .42037965 .43798829 .42037965 .44400025 .42037965 .44499208 .42037965 .44699098 .41937257 .45899964 .41737367 .45999146 .41737367 .46798707 .4113617 .46998597 .4103546 .46998597 .40934754 .47200013 .40734864 .42399598 .4043579 .4149933 .36535646 .4149933 .35334779 .4149933 .33735658 .42599488 .31835938 .45298768 .31835938 .47898866 .31835938 .5079956 .3403473 .5079956 .37934876 .5079956 .40934754 .4850006 .4423828 .43998719 .4423828 .4119873 .4423828 .3659973 .43437196 .2939911 .35435487 .2599945 .3163452 .22099304 .27633668 .18299866 .26133729L.2869873 .68333438Z"/>
|
||||
<path id="font_3_8" d="M.5089874 .40376283C.5079956 .40675355 .5039978 .41474916 .5039978 .41775514 .5039978 .41874696 .5219879 .43273927 .5329895 .44073487L.70799258 .5756531C.8019867 .64460757 .84098818 .64860537 .87098696 .6516113 .8789978 .65260317 .8889923 .6536102 .8889923 .6716156 .8889923 .6756134 .8860016 .6826172 .8779907 .6826172 .85598757 .6826172 .83099368 .6796112 .8069916 .6796112 .7709961 .6796112 .7319946 .6826172 .69599917 .6826172 .68899539 .6826172 .6769867 .6826172 .6769867 .6626129 .6769867 .65560916 .6819916 .65260317 .68899539 .6516113 .71099856 .6496124 .7200012 .64460757 .7200012 .63061526 .7200012 .6126251 .6899872 .5896454 .6839905 .5846405L.2939911 .28483583 .37399293 .6056366C.3829956 .6416168 .3849945 .6516113 .45799256 .6516113 .48298646 .6516113 .49198915 .6516113 .49198915 .6716156 .49198915 .680603 .48399354 .6826172 .47799684 .6826172 .44999696 .6826172 .37799073 .6796112 .34999085 .6796112 .32099916 .6796112 .25 .6826172 .22099304 .6826172 .21398926 .6826172 .20098877 .6826172 .20098877 .66360476 .20098877 .6516113 .20999146 .6516113 .22999573 .6516113 .24299622 .6516113 .26098634 .65060427 .272995 .6496124 .2889862 .6476135 .29499818 .64460757 .29499818 .6336212 .29499818 .6296234 .2939911 .62661746 .29100038 .614624L.15699768 .07795715C.14698792 .038986207 .14498902 .0309906 .06599426 .0309906 .04899597 .0309906 .037994386 .0309906 .037994386 .011993408 .037994386 0 .049987794 0 .052993776 0 .08099365 0 .1519928 .0029907227 .17999268 .0029907227 .20098877 .0029907227 .22299195 .0019989014 .24398804 .0019989014 .2659912 .0019989014 .28799439 0 .30899049 0 .31599427 0 .32899476 0 .32899476 .019989014 .32899476 .0309906 .31999208 .0309906 .30099488 .0309906 .2639923 .0309906 .23599243 .0309906 .23599243 .048980714 .23599243 .05596924 .24198914 .07795715 .24499512 .09295654 .25898744 .14492798 .27198792 .19789124 .2849884 .24986267L.43399049 .3657837 .5499878 .096954349C.56199648 .06996155 .56199648 .06796265 .56199648 .061965944 .56199648 .03199768 .5189972 .0309906 .5099945 .0309906 .49899293 .0309906 .48799134 .0309906 .48799134 .010986328 .48799134 0 .5 0 .5019989 0 .5419922 0 .58399966 .0029907227 .6239929 .0029907227 .6459961 .0029907227 .69999697 0 .7220001 0 .72698977 0 .73999026 0 .73999026 .019989014 .73999026 .0309906 .72898867 .0309906 .7200012 .0309906 .67900088 .03199768 .66600039 .040985109 .651001 .07595825L.5089874 .40376283Z"/>
|
||||
<path id="font_8_8" d="M.44400025 .4021454C.3889923 .3911438 .3829956 .34214784 .3829956 .33215333 .3829956 .31015016 .3999939 .28614808 .43299867 .28614808 .46699525 .28614808 .5049896 .31414796 .5049896 .36514283 .5049896 .4111328 .46899415 .45214845 .40699769 .45214845 .35099793 .45214845 .3039856 .4241333 .27398683 .39213563 .25 .43814088 .19299317 .45214845 .15699768 .45214845 .11999512 .45214845 .09199524 .43113709 .069992069 .3951416 .04598999 .35614015 .03199768 .30215455 .03199768 .29615785 .03199768 .28215028 .04699707 .28215028 .055999757 .28215028 .066986087 .28215028 .070999149 .28215028 .07598877 .28715516 .07798767 .28915406 .07798767 .29115296 .083999637 .31614686 .102996829 .39213563 .125 .4161377 .1519928 .4161377 .16699219 .4161377 .1749878 .4061432 .1749878 .3801422 .1749878 .36213685 .17199707 .3511505 .16099549 .30415345 .1559906 .28715516 .13999939 .22116089 .1329956 .19616699 .1289978 .1771698 .117996219 .13217163 .11299133 .11416626 .10699463 .08816528 .09498596 .043182374 .09498596 .03617859 .09498596 .015182495 .11099243-.0078125 .14199829-.0078125 .1619873-.0078125 .19699097 .004180908 .20799256 .045181276 .20899964 .048171998 .2769928 .32014466 .27799989 .32614137 .28199769 .34114076 .28199769 .34313966 .29499818 .35813905 .31799317 .387146 .35499574 .4161377 .40499879 .4161377 .42999269 .4161377 .44099427 .4051361 .44400025 .4021454Z"/>
|
||||
<path id="font_11_55" d="M.397995 .63075259C.397995 .6737671 .35499574 .7037811 .2999878 .7037811 .22099304 .7037811 .1309967 .6477661 .1309967 .54270938V.43066407H.04499817V.39465333H.1309967V.078948978C.1309967 .035995485 .12098694 .035995485 .055999757 .035995485V0C.06098938 0 .1289978 .0039978029 .16999817 .0039978029L.2999878 0V.035995485H.27999879C.20599365 .03565979 .20599365 .046661378 .20599365 .08065796V.39465333H.33099366V.43066407H.20199585V.54270938C.20199585 .63375857 .2559967 .67578127 .29899598 .67578127 .30799867 .67578127 .31799317 .6737671 .32798768 .67077639 .31399537 .6627655 .30599977 .64675906 .30599977 .63075259 .30599977 .6037445 .32499696 .58473208 .35198976 .58473208 .3789978 .58473208 .397995 .6037445 .397995 .63075259Z"/>
|
||||
<path id="font_11_109" d="M.58999636 0V.035995485C.522995 .035995485 .5149994 .042999269 .5149994 .092056278V.44140626L.36099244 .43052674V.39453126C.42799378 .39439393 .43598939 .3874359 .43598939 .33872987V.16749573C.43598939 .079330448 .3789978 .018234253 .30299378 .018234253 .21199036 .018234253 .20799256 .061309816 .20799256 .11239624V.44140626L.053985597 .43052674V.39453126C.1289978 .39453126 .1289978 .39154054 .1289978 .30273438V.15246582C.1289978 .083343509 .1289978-.009765625 .29599-.009765625 .31799317-.009765625 .3909912-.009765625 .43899537 .07432556H.43998719V-.009765625L.58999636 0Z"/>
|
||||
<path id="font_11_72" d="M.2809906 0V.035995485C.21598816 .035995485 .20599365 .035995485 .20599365 .07901001V.69433596L.055999757 .6826172V.64660647C.12298584 .64660647 .1309967 .6396179 .1309967 .59065249V.07896423C.1309967 .035995485 .12098694 .035995485 .055999757 .035995485V0C.055999757 0 .12799073 .0039978029 .16799927 .0039978029 .20599365 .0039978029 .24299622 .0029907227 .2809906 0Z"/>
|
||||
<path id="font_7_8" d="M.31298829 .66430667C.31399537 .66630557 .31698609 .67930606 .31698609 .68029788 .31698609 .68530276 .31298829 .6943054 .30099488 .6943054 .2809906 .6943054 .19799805 .6863098 .17298889 .6843109 .16499329 .68330386 .15098572 .682312 .15098572 .66130068 .15098572 .64730837 .16499329 .64730837 .1769867 .64730837 .22499085 .64730837 .22499085 .64030459 .22499085 .63230898 .22499085 .62532046 .22299195 .61932376 .22099304 .61032107L.07998657 .04425049C.07499695 .026229859 .07499695 .024230957 .07499695 .022232056 .07499695 .007232666 .08699036-.009765625 .10899353-.009765625 .13598633-.009765625 .14898682 .010223389 .15499878 .03224182 .15699768 .036239625 .19999695 .21234131 .20399475 .22636414 .2749939 .21936035 .33198548 .19633484 .33198548 .14430237 .33198548 .13929749 .33198548 .1342926 .32998658 .124298099 .32598878 .10928345 .32598878 .104278568 .32598878 .09327698 .32598878 .022232056 .38398744-.009765625 .43199159-.009765625 .5289917-.009765625 .5589905 .14230347 .5589905 .14331055 .5589905 .15631104 .54599 .15631104 .54299929 .15631104 .5289917 .15631104 .5279999 .15130615 .522995 .1322937 .5109863 .089263919 .48399354 .018234253 .43499757 .018234253 .4079895 .018234253 .3999939 .04324341 .3999939 .07026672 .3999939 .087265018 .3999939 .089263919 .4059906 .11528015 .40699769 .11828613 .41099549 .13529969 .41099549 .14630127 .41099549 .23536682 .29100038 .24937439 .24899292 .25238038 .27799989 .27038575 .31498719 .30340577 .33198548 .31840516 .3829956 .3664093 .43299867 .4133911 .4889984 .4133911 .5009918 .4133911 .5139923 .4104004 .5219879 .40040589 .47898866 .3934021 .46998597 .35940553 .46998597 .34440614 .46998597 .32240296 .4869995 .30740357 .5099945 .30740357 .5369873 .30740357 .5669861 .32940675 .5669861 .37139894 .5669861 .4044037 .54299929 .44140626 .48999024 .44140626 .43299867 .44140626 .3809967 .40040589 .32998658 .3534088 .28799439 .31340028 .25498963 .2823944 .21398926 .26538087L.31298829 .66430667Z"/>
|
||||
<path id="font_3_11" d="M.43798829 .0055236818C.59298709 .0644989 .73999026 .24256897 .73999026 .43579103 .73999026 .5969696 .6339874 .7050781 .4850006 .7050781 .2689972 .7050781 .04899597 .47784425 .04899597 .24456787 .04899597 .07847595 .16099549-.022460938 .30499269-.022460938 .32998658-.022460938 .3639984-.018463135 .40299989-.007461548 .39898683-.06939697 .39898683-.071380618 .39898683-.084365848 .39898683-.11634827 .39898683-.19433594 .48199464-.19433594 .6009979-.19433594 .6489868-.011474609 .6489868-.00047302247 .6489868 .0065307619 .6419983 .009521484 .6380005 .009521484 .6299896 .009521484 .6279907 .0045318605 .6259918-.0014648438 .60198977-.072387699 .5439911-.097335819 .5089874-.097335819 .46299745-.097335819 .44799806-.070388797 .43798829 .0055236818M.24899292 .013519287C.17098999 .044509889 .13699341 .12245178 .13699341 .21252442 .13699341 .2816162 .16299439 .4237671 .23899842 .5319061 .31199647 .63401797 .4059906 .68006899 .47898866 .68006899 .57899478 .68006899 .6519928 .6019745 .6519928 .4678192 .6519928 .3677063 .6009979 .13345337 .43299867 .039505006 .42799378 .07447815 .41799928 .14746094 .34498597 .14746094 .2919922 .14746094 .24299622 .097473148 .24299622 .04550171 .24299622 .025512696 .24899292 .014526367 .24899292 .013519287M.31098939 .002532959C.29699708 .002532959 .2649994 .002532959 .2649994 .04550171 .2649994 .08547974 .30299378 .12545777 .34498597 .12545777 .3869934 .12545777 .4059906 .10147095 .4059906 .040512086 .4059906 .025512696 .40499879 .024520874 .394989 .020523072 .36898805 .009521484 .33898927 .002532959 .31098939 .002532959Z"/>
|
||||
<path id="font_3_9" d="M.37399293 .6046295C.3829956 .64060977 .38598634 .6516113 .47999574 .6516113 .5099945 .6516113 .5179901 .6516113 .5179901 .6706085 .5179901 .6826172 .5069885 .6826172 .5019989 .6826172 .46899415 .6826172 .3869934 .6796112 .35398866 .6796112 .32398988 .6796112 .25099183 .6826172 .22099304 .6826172 .21398926 .6826172 .20199585 .6826172 .20199585 .6626129 .20199585 .6516113 .21099854 .6516113 .22999573 .6516113 .23199463 .6516113 .25099183 .6516113 .2679901 .6496124 .28599549 .6476135 .29499818 .64660647 .29499818 .6336212 .29499818 .6296234 .2939911 .62661746 .29100038 .614624L.15699768 .07795715C.14698792 .038986207 .14498902 .0309906 .06599426 .0309906 .04899597 .0309906 .038986207 .0309906 .038986207 .010986328 .038986207 0 .04798889 0 .06599426 0H.5289917C.5529938 0 .55400088 0 .55999758 .016998291L.6389923 .23286438C.6429901 .24386597 .6429901 .24586487 .6429901 .24685669 .6429901 .2508545 .6399994 .25785829 .6309967 .25785829 .621994 .25785829 .62098696 .2528534 .6139984 .23686219 .5799866 .14492798 .5359955 .0309906 .36299134 .0309906H.2689972C.25498963 .0309906 .25299073 .0309906 .24699402 .03199768 .23699951 .032989503 .23399353 .033996583 .23399353 .041992189 .23399353 .04498291 .23399353 .04698181 .23899842 .064971927L.37399293 .6046295Z"/>
|
||||
<path id="font_9_4" d="M.8769989 .6566162C.8779907 .6586151 .8839874 .6686096 .8839874 .6736145 .8839874 .6826172 .8759918 .6826172 .8580017 .6826172H.09498596C.07699585 .6826172 .068984989 .6826172 .068984989 .6736145 .068984989 .6686096 .07499695 .6596222 .07598877 .6566162L.44299317-.00579834C.45199586-.02279663 .45599366-.029800415 .47599793-.029800415 .49598695-.029800415 .5-.023803711 .5079956-.0087890629L.8769989 .6566162M.21199036 .60266116H.80599978L.5099945 .06713867H.5089874L.21199036 .60266116Z"/>
|
||||
<path id="font_5_1" d="M.33099366-.2400055C.33099366-.23701477 .33099366-.23500061 .31399537-.21800232 .18899536-.0920105 .15699768 .09700012 .15699768 .25 .15699768 .42399598 .19499207 .59799197 .31799317 .72299197 .33099366 .73498538 .33099366 .7369995 .33099366 .73999026 .33099366 .746994 .32699586 .75 .32099916 .75 .31098939 .75 .22099304 .6819916 .1619873 .5549927 .11099243 .44499208 .09899902 .33399964 .09899902 .25 .09899902 .17199707 .10998535 .050994874 .16499329-.06201172 .22499085-.18501282 .31098939-.25 .32099916-.25 .32699586-.25 .33099366-.24700928 .33099366-.2400055Z"/>
|
||||
<path id="font_3_14" d="M.5970001 .5686493 .61099246 .5826416C.6409912 .6126251 .673996 .64660647 .74198916 .6516113 .7529907 .65260317 .7619934 .65260317 .7619934 .6706085 .7619934 .6786041 .7569885 .6826172 .7489929 .6826172 .72299197 .6826172 .69400027 .6796112 .6669922 .6796112 .6339874 .6796112 .598999 .6826172 .5669861 .6826172 .5609894 .6826172 .5479889 .6826172 .5479889 .66360476 .5479889 .65260317 .55799868 .6516113 .5629883 .6516113 .56999209 .6516113 .598999 .6496124 .598999 .62861636 .598999 .6116333 .57598879 .5856476 .57199099 .5806427L.33999635 .31381227 .22999573 .6106262C.22399903 .62461856 .22399903 .62661746 .22399903 .6276245 .22399903 .6516113 .272995 .6516113 .2829895 .6516113 .29699708 .6516113 .30699159 .6516113 .30699159 .6716156 .30699159 .6826172 .29499818 .6826172 .2919922 .6826172 .2639923 .6826172 .19400025 .6796112 .1659851 .6796112 .14099121 .6796112 .07899475 .6826172 .053985597 .6826172 .04798889 .6826172 .034988405 .6826172 .034988405 .6626129 .034988405 .6516113 .04499817 .6516113 .057998659 .6516113 .117996219 .6516113 .12199402 .64260867 .1309967 .61763L.2539978 .28883363C.25498963 .28582765 .2579956 .2748413 .2579956 .27183534 .2579956 .2688446 .21798706 .107940677 .21299744 .08995056 .19999695 .034988405 .19898987 .03199768 .11898804 .0309906 .099990848 .0309906 .09199524 .0309906 .09199524 .010986328 .09199524 0 .10398865 0 .10598755 0 .13398743 0 .20399475 .0029907227 .23199463 .0029907227 .2599945 .0029907227 .33198548 0 .3600006 0 .36698915 0 .3789978 0 .3789978 .019989014 .3789978 .0309906 .36999513 .0309906 .35099793 .0309906 .34899903 .0309906 .32998658 .0309906 .31298829 .032989503 .2919922 .034988405 .28599549 .036987306 .28599549 .048980714 .28599549 .05596924 .29499818 .09095764 .2999878 .11193848L.33499146 .2528534C.33999635 .27183534 .34098817 .2748413 .34899903 .28382875L.5970001 .5686493Z"/>
|
||||
<path id="font_5_2" d="M.2889862 .25C.2889862 .32798768 .27799989 .44898988 .22299195 .56199648 .16299439 .68499758 .07699585 .75 .066986087 .75 .06098938 .75 .056991579 .74598696 .056991579 .73999026 .056991579 .7369995 .056991579 .73498538 .07598877 .71699526 .17399597 .6179962 .23098755 .45899964 .23098755 .25 .23098755 .07899475 .19400025-.09700012 .069992069-.2230072 .056991579-.23500061 .056991579-.23701477 .056991579-.2400055 .056991579-.2460022 .06098938-.25 .066986087-.25 .07699585-.25 .16699219-.18200684 .22599793-.055007936 .2769928 .054992677 .2889862 .16600037 .2889862 .25Z"/>
|
||||
<path id="font_12_1" d="M.6589966 .23046875C.6759949 .23046875 .69400027 .23046875 .69400027 .25045777 .69400027 .27046205 .6759949 .27046205 .6589966 .27046205H.117996219C.100997928 .27046205 .08299255 .27046205 .08299255 .25045777 .08299255 .23046875 .100997928 .23046875 .117996219 .23046875H.6589966Z"/>
|
||||
<path id="font_6_6" d="M.2769928 .6851349 .548996 .56199648 .5609894 .58399966 .27799989 .7441406-.005004883 .58399966 .005996704 .56199648 .2769928 .6851349Z"/>
|
||||
<path id="font_2_56" d="M.5779877 .20124817C.5779877 .30725099 .5 .4102478 .32798768 .4102478 .2889862 .4102478 .23699951 .40524293 .18899536 .37724305V.49620057C.22499085 .49121095 .25099183 .49121095 .2630005 .49121095 .2869873 .49121095 .35598756 .49121095 .42999269 .535202 .45899964 .5522003 .5279999 .60321047 .5279999 .6332092 .5279999 .6372223 .5279999 .65625 .5099945 .65625 .5099945 .65625 .5059967 .65625 .49398805 .65223696 .42799378 .63020327 .36898805 .62420657 .32299806 .62420657 .28199769 .62420657 .21998596 .6292114 .1539917 .65122988 .13999939 .65625 .13598633 .65625 .13598633 .65625 .117996219 .6559906 .117996219 .6399994 .117996219 .625V.32899476C.117996219 .30899049 .117996219 .29499818 .14698792 .29499818 .15699768 .29525758 .1639862 .29525758 .17199707 .30325318 .19099427 .32424928 .22799683 .3642578 .32299806 .3642578 .4269867 .3642578 .4269867 .2772522 .4269867 .20526123 .4269867 .13825989 .4269867 .039276124 .2889862 .039276124 .24198914 .039276124 .18998719 .055267335 .16099549 .088272098 .21099854 .10127258 .21499634 .14326477 .21499634 .15826416 .21499634 .20741272 .1769867 .23242188 .14199829 .23242188 .10598755 .23242188 .067993167 .2084198 .067993167 .15740967 .067993167 .06535339 .1579895-.01171875 .29299928-.01171875 .48199464-.01171875 .5779877 .088409427 .5779877 .20141602V.20124817Z"/>
|
||||
<path id="font_2_101" d="M.58898928 .20600891C.58898928 .3380127 .4869995 .42001344 .34399415 .42001344 .32199098 .42001344 .2539978 .42001344 .20399475 .34301759 .20399475 .41101075 .20799256 .48805238 .24398804 .53808596 .29299928 .6072235 .37199403 .61024478 .3929901 .61024478 .42399598 .61024478 .44999696 .6011658 .46499635 .5890808 .43598939 .5780792 .41799928 .5530853 .41799928 .52207949 .41799928 .4841156 .44499208 .453125 .4869995 .453125 .5279999 .453125 .5569916 .48112489 .5569916 .52412417 .5569916 .5851135 .5169983 .65625 .3909912 .65625 .22200012 .65625 .056991579 .5541229 .056991579 .31817628 .056991579 .18322754 .09298706-.01171875 .32699586-.01171875 .4869995-.01171875 .58898928 .07426453 .58898928 .20620728V.20600891M.44198609 .20721436C.44198609 .11424255 .44198609 .039276124 .32598878 .039276124 .20698548 .039016725 .20599365 .15802002 .20599365 .2190094 .20599365 .29101563 .24699402 .37402345 .33299256 .37402345 .44198609 .37402345 .44198609 .2980194 .44198609 .20701599V.20721436Z"/>
|
||||
<path id="font_11_96" d="M.40699769 .37739564C.40699769 .4113922 .375 .44140626 .32798768 .44140626 .27799989 .44140626 .22299195 .4104004 .19299317 .33439637H.19198609V.44140626L.04899597 .43052674V.39453126C.115997318 .39453126 .12399292 .3875122 .12399292 .33843995V.079055789C.12399292 .035995485 .11399841 .035995485 .04899597 .035995485V0C.053985597 0 .12199402 .0039978029 .16299439 .0039978029L.29299928 0V.035995485H.272995C.19898987 .036071779 .19898987 .047073366 .19898987 .081085208V.22807312C.19898987 .31207276 .23799134 .41308595 .33299256 .41308595 .32398988 .40608216 .31599427 .39308167 .31599427 .3770752 .31599427 .3440857 .34199525 .3310852 .36099244 .3310852 .3849945 .3310852 .40699769 .34707643 .40699769 .3770752V.37739564Z"/>
|
||||
<path id="font_11_50" d="M.46798707 .12036133C.46798707 .12435913 .46598817 .13438416 .45098878 .13438416 .43798829 .13438416 .43598939 .12837219 .43299867 .11836243 .4019928 .037246705 .32598878 .022232056 .2899933 .022232056 .24299622 .022232056 .19799805 .043258668 .16799927 .08131409 .1309967 .12837219 .12998963 .18945313 .12998963 .22851563H.43998719C.46099855 .22851563 .46798707 .22851563 .46798707 .25050355 .46798707 .33839417 .4189911 .44628907 .269989 .44628907 .13899231 .44628907 .038986207 .34239198 .038986207 .21949768 .038986207 .092315677 .1499939-.009765625 .2829895-.009765625 .41799928-.009765625 .46798707 .09832764 .46798707 .12036133M.397995 .25450135H.1309967C.14199829 .39530946 .23199463 .41827394 .269989 .41827394 .3929901 .41827394 .39698792 .27947999 .397995 .25450135Z"/>
|
||||
<path id="font_11_47" d="M.58099368 0V.035995485C.5139923 .035995485 .5059967 .042999269 .5059967 .09202576V.69433596L.35598756 .6826172V.64660647C.4229889 .64660647 .43099977 .6396332 .43099977 .5908203V.3843689C.3939972 .4203949 .34599305 .44140626 .29100038 .44140626 .1579895 .44140626 .04598999 .34132386 .04598999 .21520996 .04598999 .09008789 .1519928-.009765625 .2789917-.009765625 .36099244-.009765625 .4099884 .03414917 .4269867 .05206299V-.009765625L.58099368 0M.4269867 .10499573C.40098573 .05807495 .34999085 .018234253 .2849884 .018234253 .22898865 .018234253 .18899536 .051071168 .16899109 .080078128 .14898682 .11010742 .13699341 .15014649 .13699341 .21421814 .13699341 .23724365 .13699341 .3123169 .17799378 .35932923 .21798706 .40438844 .2669983 .4133911 .29599 .4133911 .34399415 .4133911 .3869934 .39137269 .4149933 .35533143 .4269867 .33932496 .4269867 .33833314 .4269867 .31933595V.10499573Z"/>
|
||||
<path id="font_13_1" d="M.6299896 .6989136C.6239929 .70791628 .61898806 .71492007 .61299136 .72190859 .5569916 .6789093 .5029907 .65527346 .44999696 .65527346 .4139862 .65527346 .3889923 .6621094 .33499146 .687912 .2979889 .70591738 .26098634 .72190859 .21899414 .72190859 .1499939 .72190859 .10398865 .68891909 .015991211 .6262665 .021987915 .6172638 .026992798 .61026 .032989503 .6032715 .08898926 .64627078 .14299011 .6699219 .19599915 .6699219 .23199463 .6699219 .25698854 .66308596 .31098939 .63726809 .34799195 .6192627 .3849945 .6032715 .4269867 .6032715 .49598695 .6032715 .5419922 .636261 .6299896 .6989136Z"/>
|
||||
<path id="font_7_5" d="M.18899536 .07797241C.18099976 .04399109 .1789856 .035995485 .100997928 .035995485 .08299255 .035995485 .070999149 .035995485 .070999149 .01399231 .070999149 0 .08299255 0 .100997928 0H.45799256C.6799927 0 .8929901 .20388794 .8929901 .42175294 .8929901 .5676575 .7919922 .6826172 .6289978 .6826172H.2649994C.24499512 .6826172 .23298645 .6826172 .23298645 .660614 .23298645 .64660647 .24398804 .64660647 .2659912 .64660647 .28199769 .64660647 .28599549 .64660647 .3039856 .64460757 .32398988 .64260867 .32598878 .64060977 .32598878 .63061526 .32598878 .62861636 .32598878 .6236267 .32199098 .6086426L.18899536 .07797241M.41299439 .6126251C.42099 .6436157 .42199708 .64660647 .46398927 .64660647H.59199526C.70399478 .64660647 .7979889 .59065249 .7979889 .45472718 .7979889 .43174745 .7879944 .2588501 .6879883 .14492798 .6489868 .09994507 .5629883 .035995485 .43998719 .035995485H.3039856C.272995 .035995485 .27198792 .036987306 .27198792 .04598999 .27198792 .04698181 .27198792 .051986696 .27598573 .066970828L.41299439 .6126251Z"/>
|
||||
<path id="font_7_6" d="M.34098817 .30978395H.5219879C.69099429 .30978395 .83399966 .41773988 .83399966 .52667239 .83399966 .6106262 .7519989 .6826172 .61499026 .6826172H.2649994C.24499512 .6826172 .23298645 .6826172 .23298645 .660614 .23298645 .64660647 .24398804 .64660647 .2659912 .64660647 .28199769 .64660647 .28599549 .64660647 .3039856 .64460757 .32398988 .64260867 .32598878 .64060977 .32598878 .63061526 .32598878 .62861636 .32598878 .6236267 .32199098 .6086273L.18998719 .081954959C.17999268 .04298401 .1789856 .035995485 .100997928 .035995485 .08299255 .035995485 .070999149 .035995485 .070999149 .01399231 .070999149 .0129852299 .070999149 0 .08699036 0 .115997318 0 .18798828 .0039978029 .21699524 .0039978029 .23399353 .0039978029 .2689972 .0039978029 .28599549 .0029907227 .30599977 .0019989014 .33099366 0 .34999085 0 .35598756 0 .37098695 0 .37098695 .021987915 .37098695 .035995485 .35899354 .035995485 .33898927 .035995485 .33799745 .035995485 .31900025 .035995485 .30099488 .037994386 .27799989 .039993287 .27799989 .04298401 .27799989 .052978517 .27799989 .053985597 .27799989 .05996704 .28199769 .07496643L.34098817 .30978395M.41299439 .6126251C.42099 .6436157 .42199708 .64660647 .46398927 .64660647H.58099368C.673996 .64660647 .7319946 .6186218 .7319946 .54766848 .7319946 .51667788 .7200012 .43772889 .66999819 .39276124 .6339874 .3607788 .57699587 .34179688 .5049896 .34179688H.34498597L.41299439 .6126251Z"/>
|
||||
<path id="font_8_3" d="M.16299439 .066986087C.15899658 .050994874 .1579895 .049987794 .13999939 .04798889 .12298584 .04699707 .102996829 .04699707 .08699036 .04699707 .06098938 .04699707 .05899048 .04699707 .054992677 .04499817 .042999269 .037994386 .042999269 .021987915 .042999269 .017990113 .042999269 0 .06098938 0 .07699585 0H.5009918C.70999148 0 .80400088 .13195801 .80400088 .22091675 .80400088 .3068695 .72898867 .34985353 .6369934 .35786439 .7969971 .38684083 .85398867 .47973634 .85398867 .5466461 .85398867 .6285553 .7819977 .6855469 .6409912 .6855469H.23999024C.21998596 .6855469 .20298767 .6855469 .20298767 .6565399 .20298767 .63853457 .21598816 .63853457 .24499512 .63853457 .2659912 .63853457 .2849884 .6375427 .30599977 .63653567L.16299439 .066986087M.43099977 .6205597C.43499757 .6355438 .43598939 .63653567 .44198609 .6375427 .45098878 .63853457 .45799256 .63853457 .46899415 .63853457H.6179962C.6380005 .63853457 .71899417 .63853457 .71899417 .551651 .71899417 .48173524 .6629944 .37486268 .5269928 .37486268H.36898805L.43099977 .6205597M.31199647 .04699707C.29699708 .04699707 .29499818 .04699707 .28799439 .04798889L.3600006 .3388672H.5549927C.58099368 .3388672 .6649933 .3388672 .6649933 .23690796 .6649933 .15994263 .6139984 .04699707 .47200013 .04699707H.31199647Z"/>
|
||||
<path id="font_11_75" d="M.8969879 0V.035995485C.83200076 .035995485 .82199099 .035995485 .82199099 .07904053V.3032837C.82199099 .3903656 .7789917 .44140626 .6719971 .44140626 .59298709 .44140626 .5389862 .39837647 .5119934 .34832765 .49198915 .41940309 .43798829 .44140626 .36499024 .44140626 .2829895 .44140626 .22999573 .39637757 .20199585 .34432984H.20098877V.44140626L.053985597 .43052674V.39453126C.12098694 .39453126 .1289978 .3875122 .1289978 .33843995V.079055789C.1289978 .035995485 .11898804 .035995485 .053985597 .035995485V0C.053985597 0 .12599182 .0039978029 .16799927 .0039978029 .20498657 .0039978029 .27398683 .0009918213 .2829895 0V.035995485C.21798706 .035995485 .20799256 .035995485 .20799256 .079055789V.25932313C.20799256 .36434938 .29100038 .4133911 .35699464 .4133911 .4269867 .4133911 .43598939 .3583374 .43598939 .3072815V.07904053C.43598939 .035995485 .42599488 .035995485 .36099244 .035995485V0C.36099244 0 .43299867 .0039978029 .47499085 .0039978029 .5119934 .0039978029 .58099368 .0009918213 .58999636 0V.035995485C.5249939 .035995485 .5149994 .035995485 .5149994 .07904053V.25923158C.5149994 .36434938 .59799197 .4133911 .6639862 .4133911 .73399356 .4133911 .7429962 .3583374 .7429962 .3072815V.07904053C.7429962 .035995485 .73298647 .035995485 .66799929 .035995485V0C.66799929 0 .73999026 .0039978029 .7819977 .0039978029 .81900027 .0039978029 .8880005 .0009918213 .8969879 0Z"/>
|
||||
<path id="font_11_112" d="M.56799319 .39465333V.43066407C.54299929 .4286499 .5169983 .426651 .49198915 .426651 .46499635 .426651 .42799378 .42765809 .40098573 .43066407V.39465333C.44299317 .39265443 .44299317 .35964967 .44299317 .35665895 .44299317 .35165406 .44198609 .34165956 .43499757 .32765199L.32199098 .08065796 .19799805 .35266114C.19799805 .35266114 .19198609 .36465455 .19198609 .37165834 .19198609 .39465333 .22599793 .39465333 .24299622 .39465333V.43066407C.24299622 .43066407 .16999817 .426651 .1289978 .426651 .09899902 .426651 .05999756 .42765809 .0309906 .43066407V.39465333C.085998538 .39453126 .09799194 .3925171 .11299133 .3585205L.2709961 .011184692C.27598573-.00079345706 .28199769-.009765625 .29899598-.009765625 .31799317-.009765625 .32199098-.00079345706 .32699586 .010192871L.47399903 .33258058C.5019989 .39352418 .5519867 .39453126 .56799319 .39453126V.39465333Z"/>
|
||||
<path id="font_11_84" d="M.58399966 .21640015C.58399966 .33940126 .48199464 .44140626 .35499574 .44140626 .2979889 .44140626 .23999024 .4203949 .19898987 .3804016V.44140626L.04899597 .43052674V.39453126C.11898804 .39453126 .12399292 .38952638 .12399292 .34753419V-.11437988C.12399292-.15736389 .11399841-.15736389 .04899597-.15736389V-.19335938C.04899597-.19346619 .12098694-.18945313 .16299439-.18945313 .19999695-.18936157 .2689972-.19236756 .27799989-.19335938V-.15736389C.21299744-.15736389 .20298767-.15736389 .20298767-.114486698V.048233034C.20799256 .04324341 .25498963-.009765625 .33898927-.009765625 .47099305-.009765625 .58399966 .089263919 .58399966 .2163086V.21640015M.49299623 .2163086C.49299623 .102264408 .41799928 .018234253 .33299256 .018234253 .24499512 .018234253 .20599365 .09526062 .20298767 .101257327V.33335877C.23298645 .38339234 .29100038 .4093933 .34399415 .4093933 .42799378 .4093933 .49299623 .32136537 .49299623 .2163086Z"/>
|
||||
<path id="font_14_102" d="M.46598817 .6589966C.46598817 .6769867 .45098878 .69400027 .43099977 .69400027 .40899659 .69400027 .4019928 .67900088 .3959961 .66600039L.06599426-.024002076C.05899048-.040008546 .057998659-.040008546 .057998659-.04800415 .057998659-.06600952 .07299805-.08300781 .09298706-.08300781 .114990238-.08300781 .12199402-.06800842 .12799073-.055007936L.45799256 .6349945C.46499635 .651001 .46598817 .651001 .46598817 .6589966Z"/>
|
||||
<path id="font_14_77" d="M.5119934 .02999878C.5119934 .06098938 .4869995 .06098938 .47099305 .06098938H.4269867V.29263307C.4269867 .3935089 .37599183 .43652345 .29699708 .43652345 .22999573 .43652345 .18499756 .4025116 .1659851 .3835144 .1659851 .4156494 .1659851 .43066407 .12599182 .43066407H.052993776C.036987306 .43066407 .011993408 .43066407 .011993408 .3996582 .011993408 .36965943 .037994386 .36965943 .051986696 .36965943H.09700012V.06098938H.052993776C.036987306 .06098938 .011993408 .06098938 .011993408 .02999878 .011993408 0 .037994386 0 .051986696 0H.21099854C.22499085 0 .25099183 0 .25099183 .02999878 .25099183 .06098938 .22599793 .06098938 .20999146 .06098938H.1659851V.23779297C.1659851 .3375702 .23999024 .3755188 .29100038 .3755188 .34399415 .3755188 .35798646 .34754945 .35798646 .28764344V.06098938H.31900025C.30299378 .06098938 .27799989 .06098938 .27799989 .02999878 .27799989 0 .30499269 0 .31900025 0H.47200013C.48599244 0 .5119934 0 .5119934 .02999878Z"/>
|
||||
<path id="font_14_81" d="M.46699525 .21627808C.46699525 .3413849 .37399293 .4404297 .2619934 .4404297 .1499939 .4404297 .056991579 .3413849 .056991579 .21627808 .056991579 .089157108 .1519928-.005859375 .2619934-.005859375 .37199403-.005859375 .46699525 .090164188 .46699525 .21627808M.397995 .22328186C.397995 .13020325 .33599855 .055130006 .2619934 .055130006 .18798828 .055130006 .12599182 .13020325 .12599182 .22328186 .12599182 .31436158 .19099427 .37942506 .2619934 .37942506 .33399964 .37942506 .397995 .31436158 .397995 .22328186Z"/>
|
||||
<path id="font_14_114" d="M.5079956 .40065003C.5079956 .43066407 .48399354 .43066407 .46598817 .43066407H.35099793C.33299256 .43066407 .30899049 .43066407 .30899049 .40065003 .30899049 .36965943 .33198548 .36965943 .35099793 .36965943H.3999939L.34999085 .07208252H.34899903C.34498597 .09805298 .33198548 .14398194 .31999208 .18492127 .3019867 .24783325 .29899598 .25881959 .2639923 .25881959 .2539978 .25881959 .23498535 .25881959 .22399903 .23684693 .22099304 .2298584 .18099976 .092056278 .1769867 .07208252H.17599488L.12399292 .36965943H.17298889C.19099427 .36965943 .21499634 .36965943 .21499634 .3996582 .21499634 .43066407 .19198609 .43066407 .17298889 .43066407H.057998659C.039993287 .43066407 .015991211 .43066407 .015991211 .40065003 .015991211 .36965943 .036987306 .36965943 .066986087 .36965943L.1269989 .034088136C.1309967 .01109314 .13398743-.00390625 .17399597-.00390625 .21398926-.00390625 .21699524 .0050811769 .23498535 .066085819 .2599945 .15396118 .26098634 .16795349 .2639923 .18991089H.2649994C.269989 .13798523 .30699159 .021087647 .31098939 .013092041 .32299806-.00390625 .34098817-.00390625 .35299684-.00390625 .3899994-.00390625 .3929901 .012084961 .39698792 .034088136L.45700074 .36965943C.4869995 .36965943 .5079956 .36965943 .5079956 .40065003Z"/>
|
||||
<path id="font_15_96" d="M.49299623 .36953736C.49299623 .3945465 .47499085 .43554688 .39698792 .43554688 .30499269 .43554688 .25099183 .38253785 .22599793 .35754396V.38754273C.22599793 .42166139 .21598816 .43066407 .18299866 .43066407H.07398987C.05999756 .43066407 .02999878 .43066407 .02999878 .3976593 .02999878 .36465455 .05999756 .36465455 .07398987 .36465455H.1499939V.06599426H.07398987C.05999756 .06599426 .02999878 .06599426 .02999878 .032989503 .02999878 0 .05999756 0 .07398987 0H.33198548C.34799195 0 .375 0 .375 .032989503 .375 .06599426 .34799195 .06599426 .33198548 .06599426H.22599793V.18281555C.22599793 .2916565 .3039856 .36953736 .40098573 .36953736 .40299989 .33059693 .43099977 .32261659 .44699098 .32261659 .47200013 .32261659 .49299623 .34057618 .49299623 .36953736Z"/>
|
||||
<path id="font_15_50" d="M.46998597 .10824585C.46998597 .13031006 .45298768 .139328 .43199159 .139328 .4149933 .139328 .40499879 .13832093 .394989 .11627197 .375 .071136478 .32598878 .06111145 .2939911 .06111145 .22099304 .06111145 .147995 .10925293 .13198853 .18847656H.4269867C.44599916 .18847656 .46998597 .18847656 .46998597 .22647095 .46998597 .3464508 .4019928 .43945313 .272995 .43945313 .1499939 .43945313 .052993776 .33944703 .052993776 .21746826 .052993776 .098220828 .15299988-.0048828127 .2889862-.0048828127 .42599488-.0048828127 .46998597 .08317566 .46998597 .10824585M.3919983 .25346376H.1329956C.147995 .3234558 .20698548 .3734436 .272995 .3734436 .36299134 .3734436 .38598634 .3034668 .3919983 .25346376Z"/>
|
||||
<path id="font_15_47" d="M.5189972 .032989503C.5189972 .06599426 .49198915 .06599426 .47599793 .06599426H.43499757V.5683136C.43499757 .60232546 .4249878 .6113281 .3919983 .6113281H.31799317C.3019867 .6113281 .2749939 .6113281 .2749939 .57832339 .2749939 .5453186 .3019867 .5453186 .31799317 .5453186H.35899354V.3945465C.31298829 .430542 .2709961 .43554688 .24398804 .43554688 .1329956 .43554688 .033996583 .34158326 .033996583 .21476746 .033996583 .09310913 .125-.0048828127 .23498535-.0048828127 .28799439-.0048828127 .32998658 .019104004 .35899354 .04710388 .35899354 .018997193 .35899354 0 .4019928 0H.47599793C.49198915 0 .5189972 0 .5189972 .032989503M.35899354 .19699097C.35899354 .13996887 .31298829 .06111145 .23799134 .06111145 .17098999 .06111145 .10998535 .12698365 .10998535 .21482849 .10998535 .30366517 .17599488 .36953736 .24899292 .36953736 .30799867 .36953736 .35899354 .31863404 .35899354 .2637329V.19699097Z"/>
|
||||
<path id="font_14_66" d="M.45498658 .02999878C.45498658 .06098938 .42900086 .06098938 .4139862 .06098938H.30899049V.3896637C.30899049 .4206543 .30299378 .43066407 .2689972 .43066407H.1269989C.11199951 .43066407 .085998538 .43066407 .085998538 .40065003 .085998538 .36965943 .11199951 .36965943 .1269989 .36965943H.23999024V.06098938H.11898804C.102996829 .06098938 .07798767 .06098938 .07798767 .02999878 .07798767 0 .10398865 0 .11898804 0H.4139862C.42900086 0 .45498658 0 .45498658 .02999878M.31298829 .55448916C.31298829 .582489 .29100038 .6044922 .2630005 .6044922 .23498535 .6044922 .21299744 .582489 .21299744 .55448916 .21299744 .52648928 .23498535 .5044861 .2630005 .5044861 .29100038 .5044861 .31298829 .52648928 .31298829 .55448916Z"/>
|
||||
<path id="font_14_98" d="M.45899964 .12519837C.45899964 .22929383 .32998658 .25030519 .2979889 .25531007L.22999573 .26731874C.20098877 .2713318 .1329956 .28334046 .1329956 .32237245 .1329956 .34838868 .16499329 .37942506 .2599945 .37942506 .34298707 .37942506 .35699464 .34939576 .3600006 .32337953 .36099244 .3063507 .36299134 .28933717 .3939972 .28933717 .42900086 .28933717 .42900086 .31036378 .42900086 .3303833V.39942933C.42900086 .41542054 .42900086 .4404297 .39898683 .4404297 .375 .4404297 .37098695 .42642213 .36898805 .41941834 .32499696 .4404297 .2809906 .4404297 .2619934 .4404297 .09498596 .4404297 .07199097 .35839845 .07199097 .32237245 .07199097 .23028565 .1769867 .2132721 .2689972 .19926453 .31799317 .19125366 .397995 .17823792 .397995 .12519837 .397995 .08816528 .36099244 .055130006 .269989 .055130006 .22299195 .055130006 .16699219 .06614685 .14199829 .14421082 .13699341 .16223145 .1329956 .17323303 .10699463 .17323303 .07199097 .17323303 .07199097 .15222168 .07199097 .13220215V.035125734C.07199097 .019134522 .07199097-.005859375 .101989749-.005859375 .11099243-.005859375 .1269989-.0048675539 .13899231 .03213501 .18798828-.0038604737 .24099732-.005859375 .2689972-.005859375 .4269867-.005859375 .45899964 .07714844 .45899964 .12519837Z"/>
|
||||
<path id="font_12_2" d="M.3889923 .27801515 .18899536 .47720338C.1769867 .48919679 .1749878 .49121095 .16699219 .49121095 .15699768 .49121095 .14698792 .48220826 .14698792 .47120667 .14698792 .46420289 .14898682 .46218873 .1599884 .45118714L.3600006 .24998474 .1599884 .048797609C.14898682 .03779602 .14698792 .03578186 .14698792 .028778077 .14698792 .01777649 .15699768 .0087890629 .16699219 .0087890629 .1749878 .0087890629 .1769867 .010787964 .18899536 .022781373L.3880005 .2219696 .59498599 .014785767C.5970001 .0137786869 .60398867 .0087890629 .6100006 .0087890629 .621994 .0087890629 .6299896 .01777649 .6299896 .028778077 .6299896 .030776978 .6299896 .03479004 .6269989 .039794923 .6259918 .041793825 .46699525 .19894409 .4169922 .24998474L.59999087 .4331665C.6049957 .43917848 .6199951 .45217896 .625 .45819093 .6259918 .46018983 .6299896 .46420289 .6299896 .47120667 .6299896 .48220826 .621994 .49121095 .6100006 .49121095 .60198977 .49121095 .59799197 .48719789 .58699038 .4761963L.3889923 .27801515Z"/>
|
||||
<path id="font_2_100" d="M.6239929 .64382937H.37298585L.3019867 .64782717 .23298645 .65083315C.22599793 .64982607 .22399903 .64982607 .21798706 .64982607 .17999268 .64982607 .17799378 .66282656 .17599488 .6738281H.11299133L.07499695 .4159088H.13798523C.1459961 .4728546 .15899658 .500824 .16899109 .50183108 .17199707 .5028229 .21199036 .50683596 .28199769 .50683596H.44499208C.41799928 .47685243 .40499879 .4658661 .37098695 .42988587 .30299378 .35694886 .21899414 .21807862 .21899414 .065200809 .21899414-.01171875 .2829895-.01171875 .28799439-.01171875 .31999208-.01171875 .33699037 .0062561037 .34199525 .011260986 .35798646 .03024292 .35798646 .040222169 .35798646 .107177738 .35798646 .2680359 .3869934 .35694886 .44699098 .4179077L.61698916 .5928345C.61898806 .5958252 .62098696 .5988312 .621994 .6018219 .6239929 .6048279 .6239929 .6068268 .6239929 .64382937Z"/>
|
||||
<path id="font_2_51" d="M.58898928 .18824768C.58898928 .2992401 .4909973 .34724427 .44799806 .36924745 .519989 .40423585 .5529938 .4502411 .5529938 .5072479 .5529938 .65625 .3639984 .65625 .32598878 .65625 .1639862 .65625 .09298706 .5752411 .09298706 .47824098 .09298706 .38523866 .1789856 .33624269 .18899536 .33024598 .10998535 .29927064 .056991579 .24627686 .056991579 .16326905 .056991579 .0022735596 .23999024-.01171875 .32099916-.01171875 .5039978-.01171875 .58898928 .07727051 .58898928 .1882782V.18824768M.46499635 .50627139C.46499635 .4562683 .43399049 .4232788 .3899994 .39927674L.22698975 .48127748C.19198609 .49925233 .18099976 .51724246 .18099976 .5372467 .18099976 .5882416 .23199463 .61024478 .31999208 .61024478 .4119873 .61024478 .46499635 .5732422 .46499635 .50624087V.50627139M.4869995 .13526917C.4869995 .057266237 .3999939 .039276124 .32499696 .039276124 .22898865 .038986207 .15899658 .07899475 .15899658 .16299439 .15899658 .22499085 .19499207 .2689972 .25299073 .2979889L.394989 .22698975C.44898988 .19898987 .4869995 .17999268 .4869995 .1349945V.13526917Z"/>
|
||||
<path id="font_2_78" d="M.58898928 .32843019C.58898928 .48632813 .5399933 .65625 .32499696 .65625 .1619873 .65625 .056991579 .5702667 .056991579 .4403534 .056991579 .30645753 .16099549 .22547913 .3019867 .22547913 .32598878 .22547913 .3899994 .22547913 .44198609 .30245973 .44198609 .23248291 .43798829 .15939331 .40899659 .11239624 .37799073 .06340027 .32499696 .039276124 .2679901 .039276124 .25898744 .039276124 .21798706 .039276124 .18699646 .058395387 .21398926 .07040405 .22799683 .09339905 .22799683 .122406009 .22799683 .16040039 .20098877 .19140625 .15899658 .19140625 .117996219 .19140625 .08898926 .16339112 .08898926 .120391849 .08898926 .052352907 .13798523-.01171875 .269989-.01171875 .43798829-.01171875 .58898928 .09539795 .58898928 .32843019M.43998719 .43536378C.43998719 .33242799 .38398744 .27148438 .31298829 .27148438 .20399475 .27148438 .20399475 .34742738 .20399475 .43936158 .20399475 .527298 .20399475 .61024478 .32598878 .61024478 .38598634 .61024478 .41299439 .5712738 .4229889 .5522766 .43998719 .5209961 .43998719 .43499757 .43998719 .43499757V.43536378Z"/>
|
||||
<path id="font_8_6" d="M.7589874 .59858706C.7739868 .6205597 .7859955 .6375427 .8549957 .63853457 .86698916 .63853457 .8849945 .63853457 .8849945 .6675415 .8849945 .6735382 .8799896 .6855469 .86698916 .6855469 .83799746 .6855469 .80599978 .6825409 .776001 .6825409 .73999026 .6825409 .70098879 .6855469 .66600039 .6855469 .6579895 .6855469 .6389923 .6855469 .6389923 .6565399 .6389923 .63853457 .6559906 .63853457 .6649933 .63853457 .66999819 .63853457 .69898989 .63853457 .72099307 .6285553L.3909912 .14920044 .30299378 .61657717C.3019867 .6195679 .30099488 .6275482 .30099488 .6305542 .30099488 .63853457 .35499574 .63853457 .3619995 .63853457 .38398744 .63853457 .3999939 .63853457 .3999939 .6675415 .3999939 .680542 .3899994 .6855469 .37799073 .6855469 .35299684 .6855469 .32699586 .6835327 .3019867 .6835327 .27799989 .6835327 .25299073 .6825409 .22898865 .6825409 .20599365 .6825409 .18299866 .6835327 .1599884 .6835327 .13798523 .6835327 .114990238 .6855469 .09399414 .6855469 .084991458 .6855469 .06599426 .6855469 .06599426 .6565399 .06599426 .63853457 .08198547 .63853457 .102996829 .63853457 .115997318 .63853457 .12799073 .63853457 .14199829 .6375427 .15299988 .63653567 .1539917 .6355438 .15699768 .6185608L.2709961 .011383057C.27598573-.016601563 .2869873-.016601563 .30599977-.016601563 .33399964-.016601563 .33898927-.009613037 .35198976 .009384155L.7589874 .59858706Z"/>
|
||||
<path id="font_3_2" d="M.45498658 .5001831C.45498658 .56614688 .43699647 .7050781 .33499146 .7050781 .19599915 .7050781 .041992189 .42323304 .041992189 .19425965 .041992189 .100250247 .070999149-.0107421879 .1619873-.0107421879 .30299378-.0107421879 .45498658 .27627564 .45498658 .5001831M.147995 .36328126C.16499329 .42723084 .18499756 .5071869 .22499085 .57814028 .2519989 .6271057 .2889862 .68307498 .33399964 .68307498 .3829956 .68307498 .3889923 .6191101 .3889923 .56214907 .3889923 .5131836 .3809967 .46220399 .35699464 .36328126H.147995M.34799195 .3312683C.33699037 .28527833 .31599427 .2002716 .27799989 .12826538 .24299622 .060256959 .20498657 .011245728 .1619873 .011245728 .1289978 .011245728 .10798645 .040252687 .10798645 .133255 .10798645 .17526245 .11399841 .23326111 .13999939 .3312683H.34799195Z"/>
|
||||
<path id="font_5_3" d="M.40899659 .23046875H.6879883C.70199587 .23046875 .72099307 .23046875 .72099307 .25045777 .72099307 .27046205 .70199587 .27046205 .6879883 .27046205H.40899659V.5500183C.40899659 .56399539 .40899659 .5830078 .3889923 .5830078 .36898805 .5830078 .36898805 .56399539 .36898805 .5500183V.27046205H.08898926C.07499695 .27046205 .055999757 .27046205 .055999757 .25045777 .055999757 .23046875 .07499695 .23046875 .08898926 .23046875H.36898805V-.05000305C.36898805-.06401062 .36898805-.08300781 .3889923-.08300781 .40899659-.08300781 .40899659-.06401062 .40899659-.05000305V.23046875Z"/>
|
||||
<path id="font_6_2" d="M.5149994-1.7478027C.5169983-1.7487946 .526001-1.7587891 .5269928-1.7587891H.548996C.5519867-1.7587891 .55999758-1.7577973 .55999758-1.7487946 .55999758-1.7447968 .55799868-1.7427979 .55599978-1.7397919 .519989-1.7037964 .46598817-1.6488037 .4039917-1.5388184 .29599-1.3468323 .2559967-1.0998688 .2559967-.8598938 .2559967-.41593934 .38198854-.154953 .5569916 .022033692 .55999758 .025024414 .55999758 .028030396 .55999758 .030029297 .55999758 .040039064 .5529938 .040039064 .54100039 .040039064 .5279999 .040039064 .526001 .040039064 .5169983 .0320282 .42199708-.049972536 .31498719-.18894959 .24598694-.39993287 .20298767-.5319214 .17999268-.6929016 .17999268-.8588867 .17999268-1.0958557 .22299195-1.3638306 .37998963-1.5958099 .40699769-1.6348114 .44400025-1.6757965 .44400025-1.6768036 .45399476-1.688797 .46798707-1.7048035 .47599793-1.711792L.5149994-1.7478027Z"/>
|
||||
<path id="font_6_3" d="M.41600038-.8588867C.41600038-.5719147 .34899903-.2669525 .1519928-.04197693 .13798523-.025970459 .100997928 .013031006 .07699585 .0340271 .069992069 .040039064 .067993167 .040039064 .054992677 .040039064 .04499817 .040039064 .035995485 .040039064 .035995485 .030029297 .035995485 .026031495 .039993287 .022033692 .041992189 .02003479 .07598877-.014968872 .12998963-.06996155 .19198609-.17996216 .2999878-.37193299 .33999635-.61891177 .33999635-.8588867 .33999635-1.2928467 .21998596-1.5578156 .039993287-1.740799 .037994386-1.7427979 .035995485-1.7458038 .035995485-1.7487946 .035995485-1.7587891 .04499817-1.7587891 .054992677-1.7587891 .067993167-1.7587891 .069992069-1.7587891 .07899475-1.7507935 .17399597-1.668808 .2809906-1.5298157 .34999085-1.3188324 .3939972-1.1818543 .41600038-1.019867 .41600038-.8588867Z"/>
|
||||
<path id="font_9_2" d="M.8149872 .2501831C.8149872 .45506288 .647995 .6189575 .44599916 .6189575 .24198914 .6189575 .07699585 .45207215 .07699585 .2511902 .07699585 .0460968 .24398804-.117996219 .44599916-.117996219 .6499939-.117996219 .8149872 .049102785 .8149872 .2501831M.44599916-.083984378C.2599945-.083984378 .11099243 .068115238 .11099243 .2501831 .11099243 .43608094 .2619934 .58496096 .44599916 .58496096 .6319885 .58496096 .7809906 .4330902 .7809906 .2511902 .7809906 .06510925 .6299896-.083984378 .44599916-.083984378M.5209961 .2501831C.5209961 .29219056 .4869995 .3251953 .44599916 .3251953 .4019928 .3251953 .37098695 .29019166 .37098695 .2511902 .37098695 .20918274 .40499879 .17619324 .44599916 .17619324 .48999024 .17619324 .5209961 .21118164 .5209961 .2501831Z"/>
|
||||
<path id="font_10_3" d="M.5049896 .18203736H.47099305C.46798707 .16001892 .45799256 .100997928 .44499208 .09098816 .43699647 .084991458 .3600006 .084991458 .34599305 .084991458H.1619873C.2669983 .17803955 .3019867 .20603943 .3619995 .25306703 .43598939 .312088 .5049896 .374115 .5049896 .46914674 .5049896 .5900879 .39898683 .6640625 .2709961 .6640625 .14698792 .6640625 .06298828 .57710269 .06298828 .4851532 .06298828 .43414308 .10598755 .42915345 .115997318 .42915345 .13999939 .42915345 .16899109 .44615174 .16899109 .48214723 .16899109 .5001526 .1619873 .53515627 .10998535 .53515627 .14099121 .6060791 .20899964 .62805178 .2559967 .62805178 .35598756 .62805178 .4079895 .5501404 .4079895 .46914674 .4079895 .38212586 .34599305 .3130951 .31399537 .27708436L.07299805 .038986207C.06298828 .02999878 .06298828 .027999878 .06298828 0H.47499085L.5049896 .18203736Z"/>
|
||||
<path id="font_2_121" d="M.59199526 .31825257C.59199526 .44125367 .57899478 .65625 .32299806 .65625 .066986087 .65625 .053985597 .44024659 .053985597 .31825257 .053985597 .19226074 .069992069-.01171875 .32299806-.01171875 .57598879-.01171875 .59199526 .19126892 .59199526 .31825257M.45298768 .33125306C.45298768 .261261 .45298768 .18826294 .44299317 .13226319 .42900086 .05126953 .3600006 .03427124 .32299806 .03427124 .29100038 .03427124 .26098634 .045272829 .23699951 .06626892 .20999146 .089263919 .19299317 .104263309 .19299317 .33125306 .19299317 .4002533 .19299317 .47924806 .20399475 .5272522 .21998596 .5922394 .28199769 .61024478 .32299806 .61024478 .36099244 .61024478 .42599488 .5942383 .44198609 .52523806 .45298768 .47824098 .45298768 .3952484 .45298768 .33125306Z"/>
|
||||
<path id="font_8_4" d="M.7809906 .23797608C.7869873 .25097657 .7869873 .25497438 .7869873 .25598146 .7869873 .27397157 .7679901 .27397157 .7630005 .27397157 .746994 .27397157 .74598696 .27197267 .73399356 .24497986 .673996 .11299133 .621994 .04699707 .45298768 .04699707H.32299806C.30799867 .04699707 .30599977 .04699707 .29899598 .04798889L.36898805 .32896424H.43798829C.49699403 .32896424 .5169983 .31996156 .5169983 .28596498 .5169983 .26997376 .5099945 .24298096 .5089874 .23997498L.5079956 .22998047C.5079956 .21498108 .5209961 .2119751 .5309906 .2119751 .5499878 .2119751 .5509949 .2179718 .55599978 .23597718L.6119995 .4588318C.6159973 .47180177 .6159973 .47380067 .6159973 .47480775 .6159973 .49276734 .59599307 .49276734 .59199526 .49276734 .57299807 .49276734 .57099917 .4857788 .56599429 .46681214 .54599 .39193727 .5159912 .37597657 .44099427 .37597657H.3809967L.44400025 .63053897C.45700074 .63253787 .46798707 .63253787 .47799684 .63253787H.60899356C.71798709 .63253787 .7619934 .60858157 .7619934 .5137329 .7619934 .49577333 .7579956 .47380067 .7579956 .4578247 .7579956 .43885804 .7769928 .43885804 .7819977 .43885804 .8029938 .43885804 .80400088 .44885255 .80599978 .46681214L.82398989 .64553835 .82499697 .6615448C.82499697 .6795349 .80799868 .6795349 .7919922 .6795349H.23799134C.21699524 .6795349 .21598816 .6785431 .21099854 .6745453 .20399475 .6695404 .20199585 .65153506 .20199585 .6505432 .20199585 .63253787 .21598816 .63253787 .24299622 .63253787 .2639923 .63253787 .2829895 .631546 .3039856 .63053897L.16299439 .066986087C.15899658 .050994874 .1579895 .049987794 .13999939 .04798889 .12298584 .04699707 .102996829 .04699707 .08699036 .04699707 .06098938 .04699707 .05899048 .04699707 .054992677 .04499817 .042999269 .037994386 .042999269 .021987915 .042999269 .017990113 .042999269 0 .05999756 0 .07699585 0H.647995C.6719971 0 .6759949 0 .68499758 .020996094L.7809906 .23797608Z"/>
|
||||
<path id="font_5_11" d="M.10998535 .34429933V.076034549C.10998535 .0309906 .09899902 .0309906 .03199768 .0309906V0C.066986087 .0009918213 .117996219 .0029907227 .14498902 .0029907227 .17098999 .0029907227 .22299195 .0009918213 .25698854 0V.0309906C.18998719 .0309906 .1789856 .0309906 .1789856 .076034549V.2602234C.1789856 .36431886 .25 .42037965 .31399537 .42037965 .3769989 .42037965 .3880005 .36631776 .3880005 .30926515V.076034549C.3880005 .0309906 .3769989 .0309906 .30999757 .0309906V0C.34498597 .0009918213 .3959961 .0029907227 .4229889 .0029907227 .44898988 .0029907227 .5009918 .0009918213 .5349884 0V.0309906C.46798707 .0309906 .45700074 .0309906 .45700074 .076034549V.2602234C.45700074 .36431886 .5279999 .42037965 .59199526 .42037965 .6549988 .42037965 .66600039 .36631776 .66600039 .30926515V.076034549C.66600039 .0309906 .6549988 .0309906 .58799746 .0309906V0C.6230011 .0009918213 .673996 .0029907227 .70098879 .0029907227 .72698977 .0029907227 .7789917 .0009918213 .8129883 0V.0309906C.7609863 .0309906 .73599246 .0309906 .7350006 .061019899V.25221253C.7350006 .3383026 .7350006 .36932374 .70399478 .405365 .6899872 .42237855 .6569977 .4423828 .598999 .4423828 .5149994 .4423828 .47099305 .38233949 .45399476 .34429933 .43998719 .43138124 .3659973 .4423828 .32099916 .4423828 .24798584 .4423828 .20098877 .39935304 .17298889 .33729554V.4423828L.03199768 .43138124V.40037538C.101989749 .4003601 .10998535 .39335633 .10998535 .34429933Z"/>
|
||||
<path id="font_5_7" d="M.33299256 .076156619C.33699037 .036132814 .3639984-.005859375 .41099549-.005859375 .43199159-.005859375 .49299623 .008132935 .49299623 .089157108V.14518738H.46798707V.089157108C.46798707 .031143189 .44299317 .025131226 .43199159 .025131226 .39898683 .025131226 .394989 .07015991 .394989 .075149539V.27514649C.394989 .31707765 .394989 .3560791 .35899354 .39312745 .31999208 .43223573 .269989 .4482422 .22200012 .4482422 .13999939 .4482422 .070999149 .40115357 .070999149 .335083 .070999149 .30508424 .09098816 .28808595 .116989139 .28808595 .14498902 .28808595 .16299439 .30807496 .16299439 .33407594 .16299439 .3460846 .1579895 .3790741 .11199951 .38008119 .13899231 .41519166 .18798828 .426239 .21998596 .426239 .2689972 .426239 .32598878 .38710023 .32598878 .29808045V.26123048C.2749939 .2582245 .20498657 .25523377 .14199829 .22523499 .066986087 .1912384 .041992189 .13923645 .041992189 .09524536 .041992189 .014251709 .13899231-.0107421879 .20199585-.0107421879 .2679901-.010864258 .31399537 .029129029 .33299256 .076156619M.32598878 .24023438V.1401825C.32598878 .045135499 .2539978 .011138916 .20899964 .011138916 .1599884 .011138916 .11898804 .046142579 .11898804 .09616089 .11898804 .15118408 .16099549 .23422241 .32598878 .24023438Z"/>
|
||||
<path id="font_5_14" d="M.2869873 .23480225C.31698609 .2727661 .35499574 .32173158 .3789978 .34770204 .4099884 .383667 .45098878 .39865113 .49798585 .3996582V.43066407C.47200013 .4286499 .44198609 .42765809 .41600038 .42765809 .38598634 .42765809 .33299256 .42965699 .31999208 .43066407V.3996582C.34098817 .3976593 .34899903 .38467408 .34899903 .36868287 .34899903 .3527069 .33898927 .33970643 .33399964 .33372499L.27198792 .25578309 .19400025 .35668946C.18499756 .36668397 .18499756 .36868287 .18499756 .37467958 .18499756 .3896637 .19999695 .39865113 .21998596 .3996582V.43066407C.19400025 .42965699 .12799073 .42765809 .11199951 .42765809 .09098816 .42765809 .04399109 .4286499 .016998291 .43066407V.3996582C.08699036 .3996582 .08799744 .39865113 .1349945 .3387146L.23399353 .20982361 .13999939 .09094238C.09199524 .032989503 .032989503 .0309906 .011993408 .0309906V0C.037994386 .0019989014 .068984989 .0029907227 .09498596 .0029907227 .12399292 .0029907227 .1659851 .0009918213 .18998719 0V.0309906C.16799927 .033996583 .16099549 .04698181 .16099549 .061965944 .16099549 .0839386 .18998719 .11691284 .25099183 .18884278L.32699586 .08894348C.33499146 .07795715 .34799195 .061965944 .34799195 .05596924 .34799195 .04698181 .33898927 .03199768 .31199647 .0309906V0C.34199525 .0009918213 .397995 .0029907227 .41999818 .0029907227 .44699098 .0029907227 .48599244 .0019989014 .5159912 0V.0309906C.46199037 .0309906 .44400025 .032989503 .42099 .061965944L.2869873 .23480225Z"/>
|
||||
<path id="font_6_1" d="M.14498902-.58361819C.14498902-.5996094 .14498902-.6206207 .1659851-.6206207 .18798828-.6206207 .18798828-.60061648 .18798828-.58361819V-.015533447C.18798828 .00045776368 .18798828 .021453858 .16699219 .021453858 .14498902 .021453858 .14498902 .0014648438 .14498902-.015533447V-.58361819Z"/>
|
||||
<path id="font_8_2" d="M.58599856 .28012086C.59098818 .29812623 .59399417 .3111267 .59399417 .3361206 .59399417 .42814637 .5169983 .45214845 .44499208 .45214845 .42399598 .45214845 .35099793 .45214845 .27999879 .37612916 .2659912 .42614747 .21099854 .45214845 .15699768 .45214845 .11999512 .45214845 .09098816 .43113709 .069992069 .3951416 .04499817 .35513307 .03199768 .30111695 .03199768 .29612733 .03199768 .28211976 .04699707 .28211976 .055999757 .28211976 .066986087 .28211976 .070999149 .28211976 .07598877 .28712464 .07798767 .28912355 .07798767 .29112245 .083999637 .31611634 .10398865 .39613343 .1269989 .4161377 .1519928 .4161377 .16299439 .4161377 .1749878 .4121399 .1749878 .37913514 .1749878 .36213685 .17098999 .34613038 .16099549 .30612184 .1539917 .27812196 .14399719 .2381134 .13899231 .21611023L.102996829 .07609558C.099990848 .062088014 .09498596 .04309082 .09498596 .036087037 .09498596 .015075684 .11099243-.0079193119 .14199829-.0079193119 .19400025-.0079193119 .20599365 .038085939 .21299744 .06808472 .22299195 .10510254 .23098755 .13710022 .24099732 .18009949 .24499512 .19309998 .269989 .29612733 .27198792 .29911805 .272995 .30511476 .30099488 .35012818 .33399964 .37713624 .3619995 .3991394 .394989 .4161377 .43699647 .4161377 .46299745 .4161377 .4869995 .4061432 .4869995 .35713197 .4869995 .3321228 .48298646 .3181305 .47898866 .30012513L.36799623-.14094544C.3639984-.15693665 .3639984-.16294861 .3639984-.16694641 .3639984-.19894409 .3899994-.2109375 .41099549-.2109375 .42199708-.2109375 .46299745-.20994568 .47799684-.14993286L.58599856 .28012086Z"/>
|
||||
<path id="font_3_1" d="M.040985109 .2543335C.07998657 .3693695 .18899536 .3703766 .19999695 .3703766 .35099793 .3703766 .3619995 .1953125 .3619995 .11627197 .3619995 .055252077 .35699464 .038238527 .34999085 .018234253 .32798768-.05479431 .2979889-.1708374 .2979889-.19685364 .2979889-.20785523 .30299378-.21484375 .31098939-.21484375 .32398988-.21484375 .33198548-.19285584 .34298707-.15483094 .3659973-.07080078 .37599183-.0137786869 .37998963 .017227173 .38198854 .03024292 .38398744 .04324341 .3880005 .056243898 .41999818 .1552887 .48399354 .3043518 .5239868 .38337709 .5309906 .39537049 .54299929 .41737367 .54299929 .42137147 .54299929 .43138124 .5329895 .43138124 .5309906 .43138124 .5279999 .43138124 .5219879 .43138124 .5189972 .42437745 .46699525 .32936097 .4269867 .22932434 .3869934 .12828064 .38598634 .1592865 .3849945 .23532105 .34599305 .33236695 .32199098 .39337159 .28199769 .4423828 .21299744 .4423828 .08799744 .4423828 .017990113 .29034425 .017990113 .25933839 .017990113 .24932862 .026992798 .24932862 .036987306 .24932862L.040985109 .2543335Z"/>
|
||||
<path id="font_5_9" d="M.1769867 .4423828 .036987306 .43138124V.40037538C.101989749 .40037538 .11099243 .3943634 .11099243 .34532167V.076034549C.11099243 .0309906 .099990848 .0309906 .032989503 .0309906V0C.06498718 .0009918213 .11898804 .0029907227 .14299011 .0029907227 .17799378 .0029907227 .21299744 .0009918213 .24699402 0V.0309906C.18099976 .0309906 .1769867 .035995485 .1769867 .075042728V.4423828M.18099976 .6159363C.18099976 .64793398 .1559906 .6689453 .12799073 .6689453 .09700012 .6689453 .07499695 .64193728 .07499695 .6159363 .07499695 .5889435 .09700012 .5629425 .12799073 .5629425 .1559906 .5629425 .18099976 .5839386 .18099976 .6159363Z"/>
|
||||
<path id="font_5_12" d="M.10998535 .34429933V.076034549C.10998535 .0309906 .09899902 .0309906 .03199768 .0309906V0C.066986087 .0009918213 .117996219 .0029907227 .14498902 .0029907227 .17098999 .0029907227 .22299195 .0009918213 .25698854 0V.0309906C.18998719 .0309906 .1789856 .0309906 .1789856 .076034549V.2602234C.1789856 .36431886 .25 .42037965 .31399537 .42037965 .3769989 .42037965 .3880005 .36631776 .3880005 .30926515V.076034549C.3880005 .0309906 .3769989 .0309906 .30999757 .0309906V0C.34498597 .0009918213 .3959961 .0029907227 .4229889 .0029907227 .44898988 .0029907227 .5009918 .0009918213 .5349884 0V.0309906C.48298646 .0309906 .45799256 .0309906 .45700074 .061019899V.25221253C.45700074 .3383026 .45700074 .36932374 .42599488 .405365 .4119873 .42237855 .3789978 .4423828 .32099916 .4423828 .24798584 .4423828 .20098877 .39935304 .17298889 .33729554V.4423828L.03199768 .43138124V.40037538C.101989749 .4003601 .10998535 .39335633 .10998535 .34429933Z"/>
|
||||
<path id="font_6_4" d="M.69999697-2.3488923C.69999697-2.3448945 .69799807-2.3428956 .69599917-2.3399049 .6589966-2.3029023 .59199526-2.2359009 .5249939-2.1278992 .3639984-1.8699188 .29100038-1.5449219 .29100038-1.1599274 .29100038-.89094546 .32699586-.5439453 .49198915-.24595642 .57099917-.10395813 .6529999-.021957398 .69699099 .022033692 .69999697 .025024414 .69999697 .027038575 .69999697 .030029297 .69999697 .040039064 .69299319 .040039064 .67900088 .040039064 .6649933 .040039064 .6629944 .040039064 .647995 .025024414 .31298829-.279953 .20799256-.73794558 .20799256-1.1589356 .20799256-1.5519257 .2979889-1.9479065 .5519867-2.2469025 .57199099-2.2698975 .6100006-2.3108979 .651001-2.3468934 .6629944-2.358902 .6649933-2.358902 .67900088-2.358902 .69299319-2.358902 .69999697-2.358902 .69999697-2.3488923Z"/>
|
||||
<path id="font_5_10" d="M.1769867 .69433596 .032989503 .68333438V.6523285C.102996829 .6523285 .11099243 .6453247 .11099243 .5962982V.07601929C.11099243 .0309906 .099990848 .0309906 .032989503 .0309906V0C.06599426 .0009918213 .11898804 .0029907227 .14399719 .0029907227 .16899109 .0029907227 .21798706 .0009918213 .25498963 0V.0309906C.18798828 .0309906 .1769867 .0309906 .1769867 .07601929V.69433596Z"/>
|
||||
<path id="font_5_13" d="M.47099305 .21424866C.47099305 .34223939 .37098695 .4482422 .25 .4482422 .125 .4482422 .027999878 .3392334 .027999878 .21424866 .027999878 .085250858 .13198853-.0107421879 .24899292-.0107421879 .36999513-.0107421879 .47099305 .087249759 .47099305 .21424866M.25 .014251709C.20698548 .014251709 .16299439 .035247804 .13598633 .08125305 .11099243 .12524414 .11099243 .18624878 .11099243 .22224427 .11099243 .26124574 .11099243 .31523133 .1349945 .35923768 .1619873 .40522767 .20899964 .426239 .24899292 .426239 .29299928 .426239 .33599855 .40423585 .3619995 .36123658 .3880005 .3182373 .3880005 .26023866 .3880005 .22224427 .3880005 .18624878 .3880005 .13224793 .3659973 .08824158 .34399415 .04324341 .2999878 .014251709 .25 .014251709Z"/>
|
||||
<path id="font_5_8" d="M.22200012 .17240906C.1349945 .17240906 .1349945 .2723999 .1349945 .2953949 .1349945 .3223877 .13598633 .35438539 .15098572 .37937928 .15899658 .39137269 .18199158 .41937257 .22200012 .41937257 .30899049 .41937257 .30899049 .3193817 .30899049 .29638673 .30899049 .26939393 .30799867 .23739624 .29299928 .21240235 .2849884 .20040894 .2619934 .17240906 .22200012 .17240906M.10598755 .13330078C.10598755 .1373291 .10598755 .16040039 .12298584 .18040467 .1619873 .15240479 .20298767 .14941406 .22200012 .14941406 .31498719 .14941406 .38398744 .21839905 .38398744 .2953949 .38398744 .3323822 .36799623 .36938478 .34298707 .39237977 .3789978 .42637635 .4149933 .43138124 .43299867 .43138124 .43499757 .43138124 .43998719 .43138124 .44299317 .43037416 .43199159 .42637635 .4269867 .41537477 .4269867 .40338136 .4269867 .38638307 .43998719 .3743744 .45599366 .3743744 .46598817 .3743744 .4850006 .38137818 .4850006 .40437318 .4850006 .42137147 .47299195 .45336915 .43399049 .45336915 .4139862 .45336915 .36999513 .44737245 .32798768 .40637208 .28599549 .43937684 .24398804 .4423828 .22200012 .4423828 .1289978 .4423828 .05999756 .37338258 .05999756 .29638673 .05999756 .25239564 .08198547 .21440125 .10699463 .19340515 .09399414 .17840576 .07598877 .14538574 .07598877 .11013794 .07598877 .07891846 .08898926 .04083252 .11999512 .020828248 .05999756 .003829956 .027999878-.039138795 .027999878-.07911682 .027999878-.15107727 .1269989-.20605469 .24899292-.20605469 .36698915-.20605469 .47099305-.15507508 .47099305-.07711792 .47099305-.042144777 .45700074 .008834839 .4059906 .036834718 .35299684 .064834598 .29499818 .064834598 .23399353 .064834598 .20899964 .064834598 .1659851 .064834598 .15899658 .065841678 .1269989 .069869998 .10598755 .10107422 .10598755 .13330078M.25-.18305969C.14898682-.18305969 .07998657-.13209534 .07998657-.07911682 .07998657-.03314209 .117996219 .003829956 .1619873 .0068359377H.22099304C.30699159 .0068359377 .4189911 .0068359377 .4189911-.07911682 .4189911-.13308716 .34799195-.18305969 .25-.18305969Z"/>
|
||||
<path id="font_8_1" d="M.019989014-.16430664C.018997193-.1663208 .015991211-.17933655 .015991211-.18034363 .015991211-.19433594 .0309906-.19433594 .039993287-.19433594 .05999756-.19433594 .05999756-.19233704 .06599426-.17134094 .068984989-.15527344 .1289978 .08534241 .12998963 .08734131 .17199707 .01727295 .24899292-.01171875 .32899476-.01171875 .5299988-.01171875 .6419983 .1414032 .6419983 .27253724 .6419983 .34262086 .61099246 .3806305 .5779877 .405365 .6139984 .43533326 .6549988 .50027468 .6549988 .5692291 .6549988 .6541443 .59298709 .70214846 .49899293 .70214846 .35598756 .70214846 .20799256 .5912018 .17199707 .44631959L.019989014-.16430664M.47299195 .40141297C.44898988 .3846283 .42399598 .3846283 .4099884 .3846283 .4059906 .3846283 .3619995 .3846283 .3619995 .39253236 .3619995 .4083252 .41099549 .4083252 .42399598 .4083252 .44198609 .4083252 .45399476 .4083252 .47299195 .40141297M.5069885 .43632508C.47399903 .44433595 .44599916 .44433595 .4269867 .44433595 .394989 .44433595 .31399537 .44433595 .31399537 .3905487 .31399537 .3486328 .37399293 .3486328 .40899659 .3486328 .42599488 .3486328 .47099305 .3486328 .5159912 .36763 .5239868 .35263063 .5269928 .33261109 .5269928 .31559754 .5269928 .27955628 .5009918 .15841675 .46998597 .10636902 .43899537 .05731201 .3899994 .024276734 .32699586 .024276734 .23399353 .024276734 .1559906 .080337528 .1559906 .17042542 .1559906 .1904602 .16099549 .21147156 .16299439 .22148133 .17799378 .2805481 .20999146 .41133119 .22200012 .45532228 .2539978 .56422427 .375 .6661377 .49398805 .6661377 .5309906 .6661377 .5529938 .64816287 .5529938 .6091919 .5529938 .57821658 .5289917 .47529603 .5069885 .43632508Z"/>
|
||||
<path id="font_10_1" d="M.5159912 .31925965C.5159912 .42918397 .5029907 .50813296 .45700074 .5780945 .42599488 .62405398 .3639984 .6640625 .28399659 .6640625 .051986696 .6640625 .051986696 .39120484 .051986696 .31925965 .051986696 .2472992 .051986696-.01953125 .28399659-.01953125 .5159912-.01953125 .5159912 .2472992 .5159912 .31925965M.28399659 .008468628C.23799134 .008468628 .1769867 .035446168 .15699768 .117385867 .14299011 .17634583 .14299011 .25830079 .14299011 .33224488 .14299011 .40519715 .14299011 .4811554 .1579895 .53611758 .1789856 .6150665 .24299622 .63604739 .28399659 .63604739 .33799745 .63604739 .3899994 .6030731 .4079895 .545105 .42399598 .4911499 .4249878 .41918946 .4249878 .33224488 .4249878 .25830079 .4249878 .18434143 .4119873 .12138367 .3919983 .030441285 .32398988 .008468628 .28399659 .008468628Z"/>
|
||||
<path id="font_12_3" d="M.7220001 .2503357C.7220001 .43417359 .57199099 .5830078 .3889923 .5830078 .20298767 .5830078 .054992677 .43217469 .054992677 .2503357 .054992677 .06616211 .20498657-.08300781 .3880005-.08300781 .57398989-.08300781 .7220001 .06816101 .7220001 .2503357M.3889923-.058013917C.21699524-.058013917 .07998657 .08117676 .07998657 .2503357 .07998657 .42218019 .21998596 .55799868 .3880005 .55799868 .55999758 .55799868 .69699099 .41918946 .69699099 .2503357 .69699099 .078186038 .5569916-.058013917 .3889923-.058013917M.45700074 .2503357C.45700074 .28833009 .42599488 .31933595 .3889923 .31933595 .34899903 .31933595 .31999208 .28633119 .31999208 .2503357 .31999208 .21232605 .35099793 .18133545 .3880005 .18133545 .42799378 .18133545 .45700074 .21432495 .45700074 .2503357Z"/>
|
||||
<path id="font_16_1" d="M.397995 .63591006C.397995 .6660156 .394989 .6660156 .3619995 .6660156 .29100038 .6016083 .17999268 .6016083 .1599884 .6016083H.14299011V.5576172H.1599884C.18299866 .5576172 .24798584 .5606079 .30599977 .58561709V.08596802C.30599977 .054977418 .30599977 .04399109 .19999695 .04399109H.1499939V0C.20498657 .0039978029 .2939911 .0039978029 .35198976 .0039978029 .4099884 .0039978029 .49899293 .0039978029 .55400088 0V.04399109H.5039978C.397995 .04399109 .397995 .054977418 .397995 .08596802V.63591006Z"/>
|
||||
<path id="font_16_2" d="M.58898928 .19296265H.5469971C.5439911 .17396546 .5339966 .11198425 .5179901 .101989749 .5099945 .09599304 .42599488 .09599304 .41099549 .09599304H.21499634C.2809906 .14497376 .35499574 .20095825 .4149933 .24093628 .5049896 .30291749 .58898928 .36090089 .58898928 .46687318 .58898928 .59495547 .46798707 .6660156 .32499696 .6660156 .18998719 .6660156 .09098816 .58795168 .09098816 .48986817 .09098816 .4378662 .1349945 .42886354 .14898682 .42886354 .17599488 .42886354 .20799256 .4468689 .20799256 .48786927 .20799256 .52386477 .18199158 .543869 .15098572 .546875 .1789856 .59194949 .23699951 .6220093 .3039856 .6220093 .40098573 .6220093 .48199464 .5639038 .48199464 .4658661 .48199464 .3818817 .42399598 .31791688 .34700013 .2529297L.102996829 .04598999C.09298706 .036987306 .09199524 .036987306 .09098816 .02999878V0H.55599978L.58898928 .19296265Z"/>
|
||||
<path id="font_6_5" d="M.5269928-1.1599274C.5269928-.76693728 .43699647-.37095643 .18299866-.07196045 .16299439-.048965455 .125-.007965088 .083999637 .028030396 .07199097 .040039064 .069992069 .040039064 .055999757 .040039064 .04399109 .040039064 .034988405 .040039064 .034988405 .030029297 .034988405 .026031495 .038986207 .022033692 .040985109 .02003479 .07598877-.015960694 .14299011-.082962039 .20999146-.19096375 .37098695-.4489441 .44400025-.77394106 .44400025-1.1589356 .44400025-1.4279175 .4079895-1.7749176 .24299622-2.0729066 .1639862-2.2149049 .08099365-2.2978974 .038986207-2.3399049 .036987306-2.3428956 .034988405-2.3459016 .034988405-2.3488923 .034988405-2.358902 .04399109-2.358902 .055999757-2.358902 .069992069-2.358902 .07199097-2.358902 .08699036-2.3439027 .42199708-2.03891 .5269928-1.5809174 .5269928-1.1599274Z"/>
|
||||
<path id="font_8_5" d="M.43598939 .6205292C.43998719 .63453677 .44099427 .6355438 .44198609 .63653567 .44799806 .63853457 .49198915 .63853457 .5169983 .63853457 .60798647 .63853457 .70199587 .63853457 .70199587 .55548098 .70199587 .5544739 .69799807 .45741273 .6459961 .40538026 .6319885 .39137269 .58699038 .36035157 .4869995 .36035157H.37098695L.43598939 .6205292M.6329956 .3383484C.81199648 .3863678 .84399417 .48143006 .84399417 .5324707 .84399417 .63253787 .7369995 .6855469 .58699038 .6855469H.23999024C.21998596 .6855469 .20298767 .6855469 .20298767 .6565399 .20298767 .63853457 .21598816 .63853457 .24499512 .63853457 .2659912 .63853457 .2849884 .6375427 .30599977 .63653567L.16299439 .06694031C.15899658 .050979616 .1579895 .049987794 .13999939 .04798889 .12298584 .04699707 .102996829 .04699707 .08699036 .04699707 .06098938 .04699707 .05899048 .04699707 .054992677 .04499817 .042999269 .037994386 .042999269 .021987915 .042999269 .017990113 .042999269 .015991211 .04399109 0 .06498718 0 .08999634 0 .115997318 .0019989014 .14099121 .0019989014 .16499329 .0019989014 .18998719 .0029907227 .21398926 .0029907227 .24798584 .0029907227 .33299256 0 .36698915 0 .375 0 .3829956 0 .3880005 .0069885256 .3929901 .011993408 .394989 .027999878 .394989 .0289917 .394989 .04699707 .3809967 .04699707 .35398866 .04699707 .33299256 .04699707 .31399537 .04798889 .29299928 .048980714L.3619995 .32434083H.48298646C.5119934 .32434083 .58200076 .31736756 .58200076 .24263 .58200076 .22866822 .57299807 .1927948 .56599429 .1678772 .55599978 .12602234 .5519867 .111068729 .5519867 .09512329 .5519867-.008605957 .6859894-.016601563 .73799136-.016601563 .84399417-.016601563 .8809967 .08317566 .8809967 .099121097 .8809967 .11705017 .86299136 .11705017 .8569946 .11705017 .83999636 .11705017 .83699038 .112075809 .83299258 .09712219 .81999209 .057266237 .7839966 .01939392 .74598696 .01939392 .71899417 .01939392 .69999697 .030349732 .69999697 .08018494 .69999697 .09512329 .70098879 .111068729 .71398928 .1907959 .71598818 .20275879 .71899417 .22169495 .71899417 .23066712 .71899417 .26953126 .69799807 .31437684 .6329956 .3383484Z"/>
|
||||
<path id="font_3_5" d="M.43899537 .71199038C.44400025 .72499087 .44400025 .72898867 .44400025 .7299957 .44400025 .7409973 .43499757 .75 .42399598 .75 .4169922 .75 .4099884 .746994 .40699769 .7409973L.05999756-.21200562C.054992677-.2250061 .054992677-.2290039 .054992677-.23001099 .054992677-.24101258 .06399536-.25 .07499695-.25 .08799744-.25 .09098816-.24301148 .09700012-.22601319L.43899537 .71199038Z"/>
|
||||
<path id="font_5_5" d="M.1269989 .07699585 .23298645 .18003845C.3889923 .31811524 .44898988 .3721466 .44898988 .47216798 .44898988 .5860901 .35899354 .6660156 .23699951 .6660156 .12399292 .6660156 .049987794 .57411196 .049987794 .48516847 .049987794 .4291687 .099990848 .4291687 .102996829 .4291687 .11999512 .4291687 .15499878 .44117738 .15499878 .48217774 .15499878 .5081787 .13699341 .5341797 .101989749 .5341797 .09399414 .5341797 .09199524 .5341797 .08898926 .5331726 .11199951 .59806826 .1659851 .63500979 .22399903 .63500979 .31498719 .63500979 .35798646 .5541382 .35798646 .47216798 .35798646 .39215089 .30799867 .31311036 .25299073 .25108338L.06098938 .036987306C.049987794 .025985718 .049987794 .023986817 .049987794 0H.42099L.44898988 .17404175H.42399598C.4189911 .14402771 .4119873 .1000061 .4019928 .084991458 .394989 .07699585 .32899476 .07699585 .30699159 .07699585H.1269989Z"/>
|
||||
<g id="font_17_49">
|
||||
<mask id="mask_18">
|
||||
<image id="image_19" width="37" height="54" xlink:href="data:image/png;base64,
|
||||
iVBORw0KGgoAAAANSUhEUgAAACUAAAA2CAAAAABltw/qAAAACXBIWXMAAA7EAAAO
|
||||
xAGVKw4bAAAAWUlEQVR4nO3UsRHAMAhDUfZf+idlbETEAKLVO6NzQZUeGILDYBl4
|
||||
BV6BV+DVJx/V8cagrj1StTJCicpNycq30pWlapHYWD0yvxoVFRUV5S/5z6zQy3Zq
|
||||
tfEBtkFPze/dCMIAAAAASUVORK5CYII="/>
|
||||
</mask>
|
||||
<rect x="0" y="0" width="37" height="54" transform="matrix(.01204,0,0,-.01204,.04816,.65016)" mask="url(#mask_18)"/>
|
||||
</g>
|
||||
<path id="font_12_8" d="M.2829895 .6169281C.2829895 .6569519 .30899049 .72099307 .41799928 .7279968 .4229889 .72898867 .4269867 .73298647 .4269867 .7389984 .4269867 .75 .4189911 .75 .4079895 .75 .30799867 .75 .21699524 .6989746 .21598816 .62493899V.3968048C.21598816 .3577881 .21598816 .32577516 .17599488 .29275514 .14099121 .2637329 .102996829 .261734 .08099365 .2607422 .07598877 .2597351 .07199097 .2557373 .07199097 .2497406 .07199097 .23973084 .07798767 .23973084 .08799744 .23873902 .1539917 .23474121 .20199585 .19876099 .21299744 .14978028 .21598816 .13879395 .21598816 .13679505 .21598816 .10081482V-.097076419C.21598816-.13905335 .21598816-.17103577 .2639923-.2090149 .30299378-.23901367 .36898805-.25 .4079895-.25 .4189911-.25 .4269867-.25 .4269867-.23901367 .4269867-.2290039 .42099-.2290039 .41099549-.22801209 .34799195-.22401428 .29899598-.19203186 .28599549-.14105225 .2829895-.13206482 .2829895-.13006592 .2829895-.09408569V.11579895C.2829895 .16177368 .2749939 .17877198 .24299622 .2107544 .22200012 .23173523 .19299317 .24172974 .16499329 .2497406 .24699402 .2727356 .2829895 .31877137 .2829895 .37680055V.6169281Z"/>
|
||||
<path id="font_3_6" d="M.6749878 .22798157C.6859894 .23298645 .69400027 .23799134 .69400027 .24998474 .69400027 .2619934 .6859894 .2669983 .6749878 .27198792L.12098694 .53305056C.10798645 .5400543 .10598755 .5400543 .102996829 .5400543 .09199524 .5400543 .08299255 .53105166 .08299255 .52005007 .08299255 .51104739 .08799744 .50505068 .101989749 .49804688L.6269989 .24998474 .101989749 .0019378662C.08799744-.005065918 .08299255-.011062622 .08299255-.020065308 .08299255-.031066895 .09199524-.04006958 .102996829-.04006958 .10598755-.04006958 .10798645-.04006958 .12098694-.033065797L.6749878 .22798157Z"/>
|
||||
<path id="font_12_9" d="M.21598816-.11706543C.21598816-.15704346 .18998719-.2210083 .08099365-.22801209 .07598877-.2290039 .07199097-.23300171 .07199097-.23901367 .07199097-.25 .08299255-.25 .09199524-.25 .18899536-.25 .28199769-.20101929 .2829895-.12506104V.10282898C.2829895 .14179993 .2829895 .17378235 .32299806 .20677185 .35798646 .23576355 .3959961 .23776245 .41799928 .23875427 .4229889 .23976135 .4269867 .24375916 .4269867 .24975586 .4269867 .25976563 .42099 .25976563 .41099549 .26075746 .34498597 .26475526 .29699708 .30078126 .28599549 .34980775 .2829895 .36080934 .2829895 .36280824 .2829895 .39883424V.5969238C.2829895 .63894656 .2829895 .6709595 .23498535 .7089844 .19499207 .73999026 .12599182 .75 .09199524 .75 .08299255 .75 .07199097 .75 .07199097 .7389984 .07199097 .72898867 .07798767 .72898867 .08799744 .72798159 .15098572 .72398379 .19999695 .6919708 .21299744 .64094546 .21598816 .63194277 .21598816 .62994387 .21598816 .59391787V.38381959C.21598816 .33779908 .22399903 .32078553 .2559967 .28877259 .2769928 .26776124 .30599977 .25775147 .33399964 .24975586 .2519989 .22676087 .21598816 .18078614 .21598816 .12281799V-.11706543Z"/>
|
||||
<path id="font_1_55" d="M.35699464 .63479617C.35699464 .6717987 .31999208 .7050781 .2669983 .7050781 .19699097 .7050781 .11199951 .65179446 .11199951 .5457611V.43066407H.032989503V.3996582H.11199951V.07595825C.11199951 .0309906 .100997928 .0309906 .033996583 .0309906V0L.147995 .0029907227C.18798828 .0029907227 .23498535 .0029907227 .2749939 0V.0309906H.2539978C.17999268 .0309906 .17799378 .04197693 .17799378 .07795715V.3996582H.2919922V.43066407H.1749878V.5467529C.1749878 .63479617 .22299195 .68307498 .2669983 .68307498 .269989 .68307498 .2849884 .68307498 .2999878 .675827 .28799439 .6717987 .269989 .6587982 .269989 .6338043 .269989 .61079409 .28599549 .5907898 .31298829 .5907898 .34199525 .5907898 .35699464 .61079409 .35699464 .63479617Z"/>
|
||||
<path id="font_1_74" d="M.8789978 0V.0309906H.8549957C.7779999 .0309906 .776001 .041992189 .776001 .07795715V.6046295C.776001 .64060977 .7779999 .6516113 .8549957 .6516113H.8789978V.6826172H.70999148C.6839905 .6826172 .6839905 .6816101 .6769867 .66360476L.45799256 .10095215 .24099732 .660614C.23199463 .6826172 .22898865 .6826172 .20599365 .6826172H.036987306V.6516113H.06098938C.13798523 .6516113 .13999939 .64060977 .13999939 .6046295V.10494995C.13999939 .07795715 .13999939 .0309906 .036987306 .0309906V0L.1539917 .0029907227 .2709961 0V.0309906C.16799927 .0309906 .16799927 .07795715 .16799927 .10494995V.6436157H.16899109L.4099884 .021987915C.4149933 .008987427 .41999818 0 .42999269 0 .44099427 0 .44400025 .0079956059 .44799806 .018997193L.69400027 .6516113H.69499209V.07795715C.69499209 .041992189 .69299319 .0309906 .6159973 .0309906H.59199526V0C.6289978 .0029907227 .69699099 .0029907227 .73599246 .0029907227 .7749939 .0029907227 .84199526 .0029907227 .8789978 0Z"/>
|
||||
<path id="font_1_116" d="M.5159912 0V.0309906C.46199037 .03125 .44400025 .0332489 .42099 .0622406L.2869873 .23493958C.31698609 .27287293 .35499574 .3217926 .3789978 .3477478 .4099884 .38368226 .45098878 .39866639 .49798585 .3996582V.43066407C.47200013 .4286499 .44198609 .42765809 .41600038 .42765809 .38598634 .42765809 .33299256 .42965699 .31999208 .43066407V.3996582C.34098817 .3973999 .34899903 .3843994 .34899903 .3684082 .34899903 .35240174 .33898927 .33940126 .33399964 .33340455L.27198792 .2554016 .19400025 .35639955C.18499756 .3664093 .18499756 .3684082 .18499756 .3744049 .18499756 .3894043 .19999695 .39840699 .21998596 .39941407V.43066407L.11199951 .42765809C.09098816 .42765809 .04399109 .4286499 .016998291 .43066407V.3996582C.08699036 .3996582 .08799744 .39865113 .1349945 .3387146L.23399353 .20982361C.18699646 .14988709 .18699646 .14788819 .13999939 .09094238 .09199524 .032989503 .032989503 .0309906 .011993408 .0309906V0C.037994386 .0019989014 .068984989 .0029907227 .09498596 .0029907227L.18998719 0V.0309906C.16799927 .034240724 .16099549 .04724121 .16099549 .0622406 .16099549 .084243778 .18998719 .117248538 .25099183 .1892395L.32699586 .08924866C.33499146 .07824707 .34799195 .0622406 .34799195 .056243898 .34799195 .04724121 .33898927 .03224182 .31199647 .03125V0L.41999818 .0029907227C.44699098 .0029907227 .48599244 .0019989014 .5159912 0Z"/>
|
||||
<path id="font_12_5" d="M.8299866 .6445923C.8299866 .6905823 .7529907 .68359377 .7220001 .68359377H.34498597C.29499818 .68359377 .20599365 .6545868 .18998719 .6006012 .19198609 .5946045 .19400025 .5935974 .19999695 .5935974 .22200012 .5935974 .2519989 .6115875 .2659912 .6265869 .29699708 .6265869 .32699586 .6285858 .35798646 .6285858H.41999818C.41999818 .6285858 .41600038 .6105957 .41600038 .6095886 .3769989 .42668153 .31799317 .27171327 .27398683 .17373657 .2679901 .16075135 .21398926 .0357666 .19999695 .023773194 .1559906 .023773194 .12298584 .04776001 .10499573 .086761478 .101989749 .09277344 .101989749 .09677124 .09498596 .09677124 .07199097 .09677124 .016998291 .06477356 .016998291 .04776001 .016998291 .04576111 .017990113 .043762208 .018997193 .041763307 .036987306-.0052337648 .08198547-.032226564 .1309967-.032226564 .18199158-.032226564 .24099732 .004760742 .272995 .041763307 .30599977 .07977295 .37199403 .24372864 .397995 .30371095L.59098818 .30393983C.58999636 .30293275 .58898928 .30194093 .58898928 .30093385 .58898928 .29670716 .59498599 .29370118 .598999 .29370118 .62098696 .29370118 .6779938 .32170106 .6779938 .3527069 .6779938 .35969544 .67099 .3587036 .6589966 .3587036H.4189911C.44499208 .44866944 .47898866 .5366211 .49699403 .6285858H.6289978C.6539917 .6285858 .723999 .6335907 .74198916 .6115875 .74398806 .6055908 .7409973 .5955963 .74398806 .5906067 .74598696 .5886078 .7489929 .5876007 .7519989 .5876007 .776001 .5876007 .8299866 .6175995 .8299866 .6445923Z"/>
|
||||
<path id="font_7_3" d="M.49198915 .68133547C.49198915 .69433596 .47999574 .69433596 .47499085 .69433596 .45999146 .69433596 .45899964 .68933108 .45498658 .67233279L.397995 .44335938C.22099304 .4353485 .069992069 .30833436 .069992069 .17430115 .069992069 .061279298 .17298889-.006729126 .28399659-.010726929 .27598573-.041793825 .2689972-.0738678 .26098634-.10493469 .24899292-.15203858 .23999024-.18910218 .23999024-.19210816 .23999024-.20410156 .25299073-.20410156 .2559967-.20410156 .2709961-.20410156 .27198792-.20111084 .2769928-.18009949L.31900025-.01171875C.48999024-.0047302248 .6469879 .121292117 .6469879 .25732423 .6469879 .3623352 .5549927 .4373474 .43299867 .4423523L.49198915 .68133547M.29100038 .01727295C.21398926 .021270752 .14299011 .0632782 .14299011 .15730286 .14299011 .25732423 .21899414 .39834596 .3899994 .41435243L.29100038 .01727295M.4249878 .41435243C.5019989 .41134645 .57398989 .369339 .57398989 .2743225 .57398989 .16529846 .48799134 .031280519 .32598878 .01727295L.4249878 .41435243Z"/>
|
||||
<path id="font_12_4" d="M.44400025 .24998474C.44400025 .357193 .35499574 .44429017 .25 .44429017 .14199829 .44429017 .054992677 .3551941 .054992677 .24998474 .054992677 .14378357 .14199829 .05569458 .25 .05569458 .35499574 .05569458 .44400025 .14279175 .44400025 .24998474M.25 .095703128C.16299439 .095703128 .09498596 .16583252 .09498596 .24998474 .09498596 .33415223 .1639862 .40429688 .25 .40429688 .33299256 .40429688 .4039917 .33615113 .4039917 .24998474 .4039917 .16383362 .33299256 .095703128 .25 .095703128Z"/>
|
||||
<path id="font_12_6" d="M.33099366 .33467103C.34399415 .38165284 .35699464 .4326477 .36698915 .4806366 .3789978 .5476227 .38598634 .61460879 .38598634 .6266022 .38598634 .6826172 .33099366 .6826172 .31900025 .6826172 .24299622 .6826172 .1749878 .65460208 .12799073 .62260439 .04699707 .56762698 .020996094 .5006256 .020996094 .495636 .020996094 .4886322 .027999878 .4886322 .0309906 .4886322 .038986207 .4886322 .085998538 .5006256 .10699463 .53862 .13398743 .58961489 .16299439 .62760928 .25299073 .62760928 .2939911 .62760928 .30099488 .5996094 .30099488 .58361819 .30099488 .5826111 .2979889 .5356293 .28599549 .4666443 .2809906 .4386444 .27799989 .42063905 .25698854 .33467103H.22099304C.19299317 .33366395 .14698792 .30171205 .14698792 .2867279 .14698792 .28074647 .147995 .27973939 .16999817 .27973939H.24198914C.22099304 .20983887 .19299317 .113967899 .14698792-.007888794 .13798523-.030883789 .13798523-.03288269 .13798523-.03388977 .13798523-.040878297 .1459961-.040878297 .147995-.040878297 .1619873-.040878297 .19299317-.027877808 .21299744-.007888794 .21798706-.001876831 .21998596 .00012207031 .22399903 .010116577 .25898744 .09799194 .2889862 .18786621 .31498719 .27973939H.5399933C.5509949 .27973939 .56999209 .27973939 .58599856 .2897339 .57499697 .24778748 .5339966 .085006717 .5339966 .0061187746 .5339966-.022888184 .5509949-.04888916 .59399417-.04888916 .72698977-.04888916 .8009949 .034088136 .8009949 .06604004 .8009949 .072021488 .79599 .074020389 .79100039 .074020389 .7829895 .074020389 .7299957 .060043336 .71499636 .021102906 .71099856 .0131073 .70999148 .0121154789 .69099429 .009109497 .6799927 .0071105959 .6609955 .0061187746 .6599884 .0061187746 .6419983 .0061187746 .61898806 .018096924 .61898806 .049057008 .61898806 .061050416 .6259918 .1159668 .6289978 .13793946 .6459961 .2487793 .69499209 .4366455 .7809906 .6646118 .7839966 .6716156 .7839966 .6736145 .7839966 .6756134 .7839966 .6826172 .7779999 .6826172 .7739868 .6826172 .7589874 .6826172 .7299957 .6686096 .71099856 .6516113 .70999148 .6496124 .70399478 .64460757 .69999697 .63560488 .6599884 .5376282 .6289978 .4366455 .598999 .33467103H.33099366Z"/>
|
||||
<path id="font_7_1" d="M.2649994 .25379945C.3019867 .2757721 .34999085 .31170655 .35598756 .3156891 .4249878 .36766053 .44898988 .38165284 .48098756 .39265443 .47898866 .38865663 .47799684 .380661 .47799684 .37565614 .47799684 .35165406 .49398805 .33766175 .5169983 .33766175 .548996 .33766175 .57299807 .36566163 .57299807 .39265443 .57299807 .41766358 .5569916 .43066407 .5309906 .43066407 .46398927 .43066407 .3959961 .37965394 .34298707 .33865357 .2649994 .28076173 .23799134 .2697754 .21299744 .26278688 .22499085 .30970765 .22698975 .317688 .23098755 .33566285 .23799134 .35964967 .24899292 .403656 .24899292 .4086609 .24899292 .426651 .23498535 .44065858 .21499634 .44065858 .19599915 .44065858 .1789856 .426651 .17298889 .4146576 .16799927 .40264894 .07499695 .029205323 .07499695 .022216797 .07499695 .00022888184 .09298706-.009765625 .10899353-.009765625 .14498902-.009765625 .15299988 .023223877 .15699768 .04019165 .15899658 .045181276 .1789856 .12702942 .20399475 .22685242 .2559967 .22685242 .3939972 .22285462 .3939972 .1459961 .3939972 .14500427 .3929901 .13601685 .3899994 .1240387 .3869934 .108062747 .3869934 .10307312 .3869934 .09309387 .3869934 .022216797 .44499208-.009765625 .49299623-.009765625 .59098818-.009765625 .6199951 .14199829 .6199951 .14300537 .6199951 .15597534 .6069946 .15597534 .60398867 .15597534 .58999636 .15597534 .58898928 .15098572 .58399966 .13201905 .57299807 .09309387 .5469971 .018234253 .49598695 .018234253 .46899415 .018234253 .46099855 .043182374 .46099855 .070129398 .46099855 .08709717 .46099855 .08909607 .46699525 .11505127 .46998597 .1260376 .47200013 .13601685 .47200013 .147995 .47200013 .25379945 .29599 .25379945 .2649994 .25379945Z"/>
|
||||
<path id="font_12_7" d="M.114990238 .21868897C.1269989 .22369385 .1619873 .24571228 .1619873 .2597351 .1619873 .2667389 .1559906 .2667389 .1499939 .2667389 .115997318 .2667389 .017990113 .22369385 .017990113 .12361145 .017990113 .05154419 .09899902-.022460938 .22099304-.022460938 .38398744-.022460938 .57299807 .09057617 .57299807 .22669983 .57299807 .32177735 .47299195 .36782838 .3919983 .40385438 .32199098 .43588258 .27598573 .47691346 .27598573 .53396609 .27598573 .5549774 .2849884 .59402468 .31599427 .621048 .34599305 .6470642 .4019928 .6500702 .41600038 .6500702 .4269867 .6500702 .46899415 .6490631 .5119934 .63005068 .5309906 .621048 .5569916 .60902407 .5569916 .56599429 .5569916 .5519867 .55599978 .5469818 .5529938 .53596499 .5519867 .532959 .5509949 .5289612 .5509949 .5259552 .5509949 .5189514 .5569916 .5189514 .5609894 .5189514 .57398989 .5189514 .59799197 .5289612 .6179962 .54597476 .6309967 .5559845 .6419983 .56900027 .6419983 .6080322 .6419983 .657074 .6159973 .6710663 .58898928 .68307498 .5419922 .7050781 .49598695 .7050781 .48199464 .7050781 .35099793 .7050781 .19099427 .60502627 .19099427 .49092103 .19099427 .40686036 .27799989 .3668213 .32598878 .34580995 .39698792 .31378175 .48799134 .2677307 .48799134 .18365479 .48799134 .116607669 .43899537 .03253174 .2869873 .03253174 .18499756 .03253174 .102996829 .098587039 .102996829 .16664124 .102996829 .18466187 .10798645 .2026825 .114990238 .21868897Z"/>
|
||||
<path id="font_7_2" d="M.25099183 .4123993C.2519989 .4163971 .25299073 .4223938 .25299073 .42739869 .25299073 .42840577 .25299073 .44140626 .23699951 .44140626 .23599243 .44140626 .1789856 .43640138 .17199707 .43640138 .15299988 .43440248 .1349945 .4333954 .115997318 .43139649 .099990848 .43040467 .08799744 .42939759 .08799744 .4084015 .08799744 .39439393 .101989749 .39439393 .11399841 .39439393 .1619873 .39439393 .1619873 .38839723 .1619873 .37937928 .1619873 .3733673 .15699768 .35334779 .15299988 .34033204L.102996829 .13809204C.07798767 .037963869 .07299805 .017944336 .07299805 .013946533 .07299805-.000061035159 .08799744-.000061035159 .09199524-.000061035159H.10798645C.19699097 .013946533 .32398988 .06098938 .43099977 .15611267 .5669861 .2772522 .58699038 .4073944 .58699038 .4093933 .58699038 .42739869 .57299807 .44140626 .5529938 .44140626 .5179901 .44140626 .5109863 .4133911 .5019989 .38539125 .46199037 .24320984 .32798768 .090026859 .1579895 .03996277L.25099183 .4123993Z"/>
|
||||
<path id="font_6_9" d="M.9889984 .75C.96199038 .73599246 .81599429 .6620178 .68899539 .6620178 .6159973 .6620178 .57199099 .68000796 .5029907 .70999148 .45498658 .7299957 .4059906 .75 .33699037 .75 .21998596 .75 .10398865 .69400027 0 .64401248L.009994507 .62402346C.036987306 .63801577 .18299866 .71199038 .30999757 .71199038 .3829956 .71199038 .4269867 .69400027 .49598695 .6640167 .5439911 .64401248 .59298709 .62402346 .6619873 .62402346 .7789917 .62402346 .894989 .68000796 .9989929 .7299957L.9889984 .75Z"/>
|
||||
<path id="font_20_2" d="M.35198976 .20796204C.35798646 .20596314 .3639984 .20596314 .37199403 .20596314 .59599307 .20596314 .84599307 .3668518 .84599307 .53163149 .84599307 .60554507 .7849884 .6445465 .7220001 .6645355 .6559906 .6855469 .598999 .6855469 .49499513 .6855469 .37098695 .6855469 .272995 .6855469 .1619873 .62753298 .039993287 .56259158 .021987915 .4817047 .021987915 .4727173 .021987915 .46672059 .026992798 .45973207 .037994386 .45973207 .07598877 .45973207 .14099121 .5006714 .1499939 .52864077 .1639862 .571579 .16999817 .5765686 .21699524 .58755496 .22599793 .58955386 .2579956 .59654238 .31098939 .59854128 .30299378 .48768617 .28199769 .2659607 .15499878-.027053833 .14698792-.042053224 .14698792-.044052125 .14698792-.048049928 .14698792-.056045534 .1559906-.061050416 .1619873-.061050416 .18399048-.061050416 .22799683-.046051027 .2639923-.010040283 .27999879 .006958008 .33099366 .13995362 .35198976 .20796204M.3659973 .2489624C.4169922 .42477418 .42799378 .52563479 .43598939 .59854128 .49598695 .59854128 .71598818 .59854128 .71598818 .46871949 .71598818 .4377594 .69799807 .3718567 .6389923 .3348999 .58898928 .30393983 .5069885 .29396058 .47698976 .29296876 .45199586 .29296876 .4139862 .29196168 .3659973 .2489624Z"/>
|
||||
<path id="font_20_1" d="M.651001 .27763368C.6339874 .21572876 .6259918 .17680359 .6199951 .14286804 .6100006 .08695984 .60598757 .031051636 .60598757 .02305603 .60598757-.019943238 .6369934-.047943117 .68099978-.047943117 .8549957-.047943117 .94400027 .055023195 .94400027 .093948367 .94400027 .10194397 .9359894 .106933597 .92900088 .106933597 .8959961 .106933597 .83799746 .07598877 .81799319 .043045045 .80799868 .041046144 .79299929 .0390625 .7829895 .0390625 .74598696 .0390625 .73599246 .06500244 .73599246 .0849762 .73599246 .08596802 .73599246 .16482544 .7749939 .31463624 .8029938 .42262269 .83999636 .5315857 .8860016 .64753726 .894989 .6685333 .894989 .6705322 .894989 .6725464 .894989 .6765442 .8929901 .6855469 .8779907 .6855469 .8569946 .6855469 .8089905 .6675415 .7769928 .6335449 .7630005 .6175537 .71299746 .48260499 .6719971 .3516388H.4249878C.43598939 .39363099 .47200013 .53056338 .47200013 .61354067 .47200013 .64953616 .44898988 .6855469 .3899994 .6855469 .1519928 .6855469 .021987915 .49357606 .021987915 .4725952 .021987915 .4645996 .0289917 .45959474 .037994386 .45959474 .052993776 .45959474 .11399841 .4725952 .15098572 .52757266 .1789856 .56855776 .20399475 .59854128 .28799439 .59854128 .29899598 .59854128 .34199525 .59854128 .34199525 .55155947 .34199525 .54956057 .33699037 .4506073 .30999757 .3516388 .2639923 .3516388 .25099183 .3516388 .21699524 .3326416 .18998719 .3176422 .1619873 .29364015 .1619873 .27763368 .1619873 .26464845 .17399597 .26464845 .19198609 .26464845H.28599549C.2519989 .14178467 .20199585 .019927979 .19299317-.004043579 .18399048-.024017334 .18399048-.026016236 .18399048-.029022217 .18399048-.038024904 .19400025-.041015626 .20199585-.041015626 .23699951-.041015626 .28599549-.0070343019 .2979889 .0059509279 .30899049 .017929078 .30899049 .019927979 .32199098 .05088806 .36799623 .16375733 .3959961 .2536621 .39898683 .26464845H.58999636C.6029968 .26464845 .6239929 .26464845 .651001 .27763368Z"/>
|
||||
<path id="font_0_50" d="M.49398805 .11706543C.49398805 .13504029 .47499085 .13504029 .46998597 .13504029 .45298768 .13504029 .45098878 .13005066 .44499208 .11405945 .42399598 .066101077 .36698915 .03413391 .3019867 .03413391 .16099549 .03413391 .1599884 .16700745 .1599884 .2179718H.46199037C.48399354 .2179718 .49398805 .2179718 .49398805 .2449646 .49398805 .27598573 .48799134 .34906007 .43798829 .3991089 .40098573 .43511964 .34799195 .453125 .2789917 .453125 .11898804 .453125 .03199768 .35005189 .03199768 .22497559 .03199768 .09107971 .13198853-.005859375 .29299928-.005859375 .45098878-.005859375 .49398805 .10006714 .49398805 .11706543M.39898683 .25097657H.1599884C.1619873 .29000855 .16299439 .3320465 .18399048 .36506654 .20999146 .4051056 .25 .41711427 .2789917 .41711427 .3959961 .41711427 .397995 .28599549 .39898683 .25097657Z"/>
|
||||
<path id="font_0_77" d="M.61499026 0V.04699707H.54599V.30613709C.54599 .41119386 .49198915 .4501953 .3919983 .4501953 .29599 .4501953 .24299622 .39318849 .21699524 .3421631V.4501953L.04499817 .4423828V.39537049C.10699463 .39537049 .11399841 .39537049 .11399841 .3563385V.04699707H.04499817V0L.17098999 .0029907227 .29699708 0V.04699707H.22799683V.2562256C.22799683 .3653412 .31399537 .41436769 .3769989 .41436769 .41099549 .41436769 .43199159 .39337159 .43199159 .31729127V.04699707H.36299134V0L.4889984 .0029907227 .61499026 0Z"/>
|
||||
<path id="font_1_82" d="M.4189911 0V.0309906H.3869934C.29699708 .0309906 .2939911 .041992189 .2939911 .07902527V.64012148C.2939911 .6640167 .2939911 .6660156 .2709961 .6660156 .20899964 .60227969 .12098694 .60227969 .08898926 .60227969V.57128909C.10899353 .57128909 .16799927 .57128909 .21998596 .5972748V.07902527C.21998596 .042999269 .21699524 .0309906 .1269989 .0309906H.09498596V0C.12998963 .0029907227 .21699524 .0029907227 .25698854 .0029907227 .29699708 .0029907227 .38398744 .0029907227 .4189911 0Z"/>
|
||||
</defs>
|
||||
<path transform="matrix(1,0,0,-1,.6596451,1.3012695)" stroke-width=".797" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M0 0H368.504"/>
|
||||
<use data-text="A" xlink:href="#font_0_27" transform="matrix(9.96264,0,0,-9.96264,8.131645,10.826294)"/>
|
||||
<use data-text="l" xlink:href="#font_0_72" transform="matrix(9.96264,0,0,-9.96264,16.789177,10.826294)"/>
|
||||
<use data-text="g" xlink:href="#font_0_59" transform="matrix(9.96264,0,0,-9.96264,19.967263,10.826294)"/>
|
||||
<use data-text="o" xlink:href="#font_0_81" transform="matrix(9.96264,0,0,-9.96264,25.695778,10.826294)"/>
|
||||
<use data-text="r" xlink:href="#font_0_96" transform="matrix(9.96264,0,0,-9.96264,31.424294,10.826294)"/>
|
||||
<use data-text="i" xlink:href="#font_0_66" transform="matrix(9.96264,0,0,-9.96264,36.146585,10.826294)"/>
|
||||
<use data-text="t" xlink:href="#font_0_105" transform="matrix(9.96264,0,0,-9.96264,39.32467,10.826294)"/>
|
||||
<use data-text="h" xlink:href="#font_0_63" transform="matrix(9.96264,0,0,-9.96264,43.777978,10.826294)"/>
|
||||
<use data-text="m" xlink:href="#font_0_75" transform="matrix(9.96264,0,0,-9.96264,50.14411,10.826294)"/>
|
||||
<use data-text="1" xlink:href="#font_0_82" transform="matrix(9.96264,0,0,-9.96264,63.504007,10.826294)"/>
|
||||
<use data-text=":" xlink:href="#font_0_44" transform="matrix(9.96264,0,0,-9.96264,69.23252,10.826294)"/>
|
||||
<use data-text="S" xlink:href="#font_1_97" transform="matrix(9.96264,0,0,-9.96264,80.15165,10.826294)"/>
|
||||
<use data-text="m" xlink:href="#font_1_75" transform="matrix(9.96264,0,0,-9.96264,85.69088,10.826294)"/>
|
||||
<use data-text="o" xlink:href="#font_1_81" transform="matrix(9.96264,0,0,-9.96264,93.98975,10.826294)"/>
|
||||
<use data-text="o" xlink:href="#font_1_81" transform="matrix(9.96264,0,0,-9.96264,99.25004,10.826294)"/>
|
||||
<use data-text="t" xlink:href="#font_1_105" transform="matrix(9.96264,0,0,-9.96264,104.23136,10.826294)"/>
|
||||
<use data-text="h" xlink:href="#font_1_63" transform="matrix(9.96264,0,0,-9.96264,108.106838,10.826294)"/>
|
||||
<use data-text="e" xlink:href="#font_1_50" transform="matrix(9.96264,0,0,-9.96264,113.646068,10.826294)"/>
|
||||
<use data-text="d" xlink:href="#font_1_47" transform="matrix(9.96264,0,0,-9.96264,118.06948,10.826294)"/>
|
||||
<use data-text="C" xlink:href="#font_1_42" transform="matrix(9.96264,0,0,-9.96264,126.92628,10.826294)"/>
|
||||
<use data-text="R" xlink:href="#font_1_95" transform="matrix(9.96264,0,0,-9.96264,134.1193,10.826294)"/>
|
||||
<use data-text="P" xlink:href="#font_1_83" transform="matrix(9.96264,0,0,-9.96264,141.45182,10.826294)"/>
|
||||
<use data-text="S" xlink:href="#font_1_97" transform="matrix(9.96264,0,0,-9.96264,148.23636,10.826294)"/>
|
||||
<use data-text="B" xlink:href="#font_1_34" transform="matrix(9.96264,0,0,-9.96264,157.09314,10.826294)"/>
|
||||
<use data-text="e" xlink:href="#font_1_50" transform="matrix(9.96264,0,0,-9.96264,164.1467,10.826294)"/>
|
||||
<use data-text="r" xlink:href="#font_1_96" transform="matrix(9.96264,0,0,-9.96264,168.5701,10.826294)"/>
|
||||
<use data-text="n" xlink:href="#font_1_77" transform="matrix(9.96264,0,0,-9.96264,172.47547,10.826294)"/>
|
||||
<use data-text="s" xlink:href="#font_1_98" transform="matrix(9.96264,0,0,-9.96264,178.01468,10.826294)"/>
|
||||
<use data-text="t" xlink:href="#font_1_105" transform="matrix(9.96264,0,0,-9.96264,181.93997,10.826294)"/>
|
||||
<use data-text="e" xlink:href="#font_1_50" transform="matrix(9.96264,0,0,-9.96264,185.81543,10.826294)"/>
|
||||
<use data-text="i" xlink:href="#font_1_66" transform="matrix(9.96264,0,0,-9.96264,190.23883,10.826294)"/>
|
||||
<use data-text="n" xlink:href="#font_1_77" transform="matrix(9.96264,0,0,-9.96264,193.00846,10.826294)"/>
|
||||
<use data-text="O" xlink:href="#font_1_80" transform="matrix(9.96264,0,0,-9.96264,201.86524,10.826294)"/>
|
||||
<use data-text="n" xlink:href="#font_1_77" transform="matrix(9.96264,0,0,-9.96264,209.61618,10.826294)"/>
|
||||
<use data-text="l" xlink:href="#font_1_72" transform="matrix(9.96264,0,0,-9.96264,215.1554,10.826294)"/>
|
||||
<use data-text="i" xlink:href="#font_1_66" transform="matrix(9.96264,0,0,-9.96264,217.92502,10.826294)"/>
|
||||
<use data-text="n" xlink:href="#font_1_77" transform="matrix(9.96264,0,0,-9.96264,220.69464,10.826294)"/>
|
||||
<use data-text="e" xlink:href="#font_1_50" transform="matrix(9.96264,0,0,-9.96264,226.23386,10.826294)"/>
|
||||
<use data-text="A" xlink:href="#font_1_27" transform="matrix(9.96264,0,0,-9.96264,233.97483,10.826294)"/>
|
||||
<use data-text="g" xlink:href="#font_1_59" transform="matrix(9.96264,0,0,-9.96264,241.44681,10.826294)"/>
|
||||
<use data-text="g" xlink:href="#font_1_59" transform="matrix(9.96264,0,0,-9.96264,246.42813,10.826294)"/>
|
||||
<use data-text="r" xlink:href="#font_1_96" transform="matrix(9.96264,0,0,-9.96264,251.40946,10.826294)"/>
|
||||
<use data-text="e" xlink:href="#font_1_50" transform="matrix(9.96264,0,0,-9.96264,255.31482,10.826294)"/>
|
||||
<use data-text="g" xlink:href="#font_1_59" transform="matrix(9.96264,0,0,-9.96264,259.73823,10.826294)"/>
|
||||
<use data-text="a" xlink:href="#font_1_28" transform="matrix(9.96264,0,0,-9.96264,264.71955,10.826294)"/>
|
||||
<use data-text="t" xlink:href="#font_1_105" transform="matrix(9.96264,0,0,-9.96264,269.70088,10.826294)"/>
|
||||
<use data-text="i" xlink:href="#font_1_66" transform="matrix(9.96264,0,0,-9.96264,273.57633,10.826294)"/>
|
||||
<use data-text="o" xlink:href="#font_1_81" transform="matrix(9.96264,0,0,-9.96264,276.34596,10.826294)"/>
|
||||
<use data-text="n" xlink:href="#font_1_77" transform="matrix(9.96264,0,0,-9.96264,281.32728,10.826294)"/>
|
||||
<path transform="matrix(1,0,0,-1,.6596451,15.269287)" stroke-width=".797" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M0 0H368.504"/>
|
||||
<use data-text="1" xlink:href="#font_2_82" transform="matrix(6.97385,0,0,-6.97385,6.109642,30.213257)"/>
|
||||
<use data-text="f" xlink:href="#font_0_55" transform="matrix(9.96264,0,0,-9.96264,15.603645,30.213257)"/>
|
||||
<use data-text="o" xlink:href="#font_0_81" transform="matrix(9.96264,0,0,-9.96264,19.100533,30.213257)"/>
|
||||
<use data-text="r" xlink:href="#font_0_96" transform="matrix(9.96264,0,0,-9.96264,24.829049,30.213257)"/>
|
||||
<use data-text="t" xlink:href="#font_3_18" transform="matrix(9.96264,0,0,-9.96264,32.868646,30.213257)"/>
|
||||
<use data-text="i" xlink:href="#font_4_66" transform="matrix(9.96264,0,0,-9.96264,40.032648,30.213257)"/>
|
||||
<use data-text="n" xlink:href="#font_4_77" transform="matrix(9.96264,0,0,-9.96264,43.09118,30.213257)"/>
|
||||
<use data-text="1" xlink:href="#font_5_4" transform="matrix(9.96264,0,0,-9.96264,52.256647,30.213257)"/>
|
||||
<use data-text="," xlink:href="#font_3_4" transform="matrix(9.96264,0,0,-9.96264,57.23864,30.213257)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,61.66204,30.213257)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,66.095409,30.213257)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,70.51881,30.213257)"/>
|
||||
<use data-text="," xlink:href="#font_3_4" transform="matrix(9.96264,0,0,-9.96264,74.95217,30.213257)"/>
|
||||
<use data-text="T" xlink:href="#font_3_12" transform="matrix(9.96264,0,0,-9.96264,79.38554,30.213257)"/>
|
||||
<use data-text="d" xlink:href="#font_0_47" transform="matrix(9.96264,0,0,-9.96264,89.90064,30.213257)"/>
|
||||
<use data-text="o" xlink:href="#font_0_81" transform="matrix(9.96264,0,0,-9.96264,96.26678,30.213257)"/>
|
||||
<path transform="matrix(1,0,0,-1,20.783638,358.06028)" stroke-width=".398" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M0 0V322.467"/>
|
||||
<use data-text="2" xlink:href="#font_2_107" transform="matrix(6.97385,0,0,-6.97385,6.508644,48.1463)"/>
|
||||
<use data-text="f" xlink:href="#font_0_55" transform="matrix(9.96264,0,0,-9.96264,30.94564,48.1463)"/>
|
||||
<use data-text="o" xlink:href="#font_0_81" transform="matrix(9.96264,0,0,-9.96264,34.442529,48.1463)"/>
|
||||
<use data-text="r" xlink:href="#font_0_96" transform="matrix(9.96264,0,0,-9.96264,40.171045,48.1463)"/>
|
||||
<use data-text="d" xlink:href="#font_3_15" transform="matrix(9.96264,0,0,-9.96264,48.211648,48.1463)"/>
|
||||
<use data-text="i" xlink:href="#font_4_66" transform="matrix(9.96264,0,0,-9.96264,56.963647,48.1463)"/>
|
||||
<use data-text="n" xlink:href="#font_4_77" transform="matrix(9.96264,0,0,-9.96264,60.02218,48.1463)"/>
|
||||
<use data-text="1" xlink:href="#font_5_4" transform="matrix(9.96264,0,0,-9.96264,69.187648,48.1463)"/>
|
||||
<use data-text="," xlink:href="#font_3_4" transform="matrix(9.96264,0,0,-9.96264,74.16865,48.1463)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,78.59205,48.1463)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,83.02541,48.1463)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,87.448818,48.1463)"/>
|
||||
<use data-text="," xlink:href="#font_3_4" transform="matrix(9.96264,0,0,-9.96264,91.88218,48.1463)"/>
|
||||
<use data-text="D" xlink:href="#font_3_7" transform="matrix(9.96264,0,0,-9.96264,96.315547,48.1463)"/>
|
||||
<use data-text="d" xlink:href="#font_0_47" transform="matrix(9.96264,0,0,-9.96264,108.15064,48.1463)"/>
|
||||
<use data-text="o" xlink:href="#font_0_81" transform="matrix(9.96264,0,0,-9.96264,114.51678,48.1463)"/>
|
||||
<use data-text="f" xlink:href="#font_0_55" transform="matrix(9.96264,0,0,-9.96264,126.88041,48.1463)"/>
|
||||
<use data-text="o" xlink:href="#font_0_81" transform="matrix(9.96264,0,0,-9.96264,130.37729,48.1463)"/>
|
||||
<use data-text="r" xlink:href="#font_0_96" transform="matrix(9.96264,0,0,-9.96264,136.1058,48.1463)"/>
|
||||
<use data-text="p" xlink:href="#font_3_17" transform="matrix(9.96264,0,0,-9.96264,144.14566,48.1463)"/>
|
||||
<use data-text="i" xlink:href="#font_4_66" transform="matrix(9.96264,0,0,-9.96264,152.72464,48.1463)"/>
|
||||
<use data-text="n" xlink:href="#font_4_77" transform="matrix(9.96264,0,0,-9.96264,155.78318,48.1463)"/>
|
||||
<use data-text="1" xlink:href="#font_5_4" transform="matrix(9.96264,0,0,-9.96264,164.94864,48.1463)"/>
|
||||
<use data-text="," xlink:href="#font_3_4" transform="matrix(9.96264,0,0,-9.96264,169.92966,48.1463)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,174.35309,48.1463)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,178.78647,48.1463)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,183.2099,48.1463)"/>
|
||||
<use data-text="," xlink:href="#font_3_4" transform="matrix(9.96264,0,0,-9.96264,187.64328,48.1463)"/>
|
||||
<use data-text="P" xlink:href="#font_3_10" transform="matrix(9.96264,0,0,-9.96264,192.07666,48.1463)"/>
|
||||
<use data-text="d" xlink:href="#font_0_47" transform="matrix(9.96264,0,0,-9.96264,203.16666,48.1463)"/>
|
||||
<use data-text="o" xlink:href="#font_0_81" transform="matrix(9.96264,0,0,-9.96264,209.53278,48.1463)"/>
|
||||
<path transform="matrix(1,0,0,-1,36.12664,89.3913)" stroke-width=".398" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M0 0V35.866"/>
|
||||
<use data-text="3" xlink:href="#font_2_106" transform="matrix(6.97385,0,0,-6.97385,6.9066469,66.07825)"/>
|
||||
<use data-text="�" xlink:href="#font_6_8" transform="matrix(9.96264,0,0,-9.96264,48.868646,63.560304)"/>
|
||||
<use data-text="X" xlink:href="#font_3_13" transform="matrix(9.96264,0,0,-9.96264,46.288644,66.07825)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,54.54165,67.5733)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,57.55436,67.5733)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,59.918497,67.5733)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,64.06794,67.5733)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,66.432079,67.5733)"/>
|
||||
<use data-text="=" xlink:href="#font_5_6" transform="matrix(9.96264,0,0,-9.96264,73.80364,66.07825)"/>
|
||||
<use data-text="w" xlink:href="#font_8_9" transform="matrix(9.96264,0,0,-9.96264,84.31965,66.07825)"/>
|
||||
<use data-text="′" xlink:href="#font_9_3" transform="matrix(6.97385,0,0,-6.97385,92.88064,62.463258)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,92.603649,68.90027)"/>
|
||||
<use data-text="−" xlink:href="#font_9_1" transform="matrix(6.97385,0,0,-6.97385,95.61265,68.90027)"/>
|
||||
<use data-text="1" xlink:href="#font_10_2" transform="matrix(6.97385,0,0,-6.97385,101.83964,68.90027)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,105.810649,68.90027)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,108.17478,68.90027)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,112.32423,68.90027)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,114.68836,68.90027)"/>
|
||||
<use data-text="�" xlink:href="#font_6_7" transform="matrix(9.96264,0,0,-9.96264,120.37464,63.532289)"/>
|
||||
<use data-text="X" xlink:href="#font_8_7" transform="matrix(9.96264,0,0,-9.96264,119.29565,66.07825)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,128.73264,67.5733)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,131.74536,67.5733)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,134.1095,67.5733)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,138.25894,67.5733)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,140.62308,67.5733)"/>
|
||||
<use data-text="4" xlink:href="#font_2_57" transform="matrix(6.97385,0,0,-6.97385,6.9066469,84.01129)"/>
|
||||
<use data-text="f" xlink:href="#font_0_55" transform="matrix(9.96264,0,0,-9.96264,46.288644,84.01129)"/>
|
||||
<use data-text="o" xlink:href="#font_0_81" transform="matrix(9.96264,0,0,-9.96264,49.78553,84.01129)"/>
|
||||
<use data-text="r" xlink:href="#font_0_96" transform="matrix(9.96264,0,0,-9.96264,55.514047,84.01129)"/>
|
||||
<use data-text="k" xlink:href="#font_3_16" transform="matrix(9.96264,0,0,-9.96264,63.553644,84.01129)"/>
|
||||
<use data-text="i" xlink:href="#font_4_66" transform="matrix(9.96264,0,0,-9.96264,72.62064,84.01129)"/>
|
||||
<use data-text="n" xlink:href="#font_4_77" transform="matrix(9.96264,0,0,-9.96264,75.67918,84.01129)"/>
|
||||
<use data-text="1" xlink:href="#font_5_4" transform="matrix(9.96264,0,0,-9.96264,84.84464,84.01129)"/>
|
||||
<use data-text="," xlink:href="#font_3_4" transform="matrix(9.96264,0,0,-9.96264,89.825649,84.01129)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,94.24905,84.01129)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,98.68241,84.01129)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,103.115779,84.01129)"/>
|
||||
<use data-text="," xlink:href="#font_3_4" transform="matrix(9.96264,0,0,-9.96264,107.53918,84.01129)"/>
|
||||
<use data-text="K" xlink:href="#font_3_8" transform="matrix(9.96264,0,0,-9.96264,111.97254,84.01129)"/>
|
||||
<use data-text="d" xlink:href="#font_0_47" transform="matrix(9.96264,0,0,-9.96264,124.45664,84.01129)"/>
|
||||
<use data-text="o" xlink:href="#font_0_81" transform="matrix(9.96264,0,0,-9.96264,130.82279,84.01129)"/>
|
||||
<use data-text="r" xlink:href="#font_8_8" transform="matrix(9.96264,0,0,-9.96264,143.18665,84.01129)"/>
|
||||
<use data-text="f" xlink:href="#font_11_55" transform="matrix(6.97385,0,0,-6.97385,148.77164,80.3963)"/>
|
||||
<use data-text="u" xlink:href="#font_11_109" transform="matrix(6.97385,0,0,-6.97385,151.24039,80.3963)"/>
|
||||
<use data-text="l" xlink:href="#font_11_72" transform="matrix(6.97385,0,0,-6.97385,155.6409,80.3963)"/>
|
||||
<use data-text="l" xlink:href="#font_11_72" transform="matrix(6.97385,0,0,-6.97385,157.89347,80.3963)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,148.45365,86.90228)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,152.60309,86.90228)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,154.96723,86.90228)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,159.07483,86.90228)"/>
|
||||
<use data-text="k" xlink:href="#font_7_8" transform="matrix(6.97385,0,0,-6.97385,161.43897,86.90228)"/>
|
||||
<use data-text="=" xlink:href="#font_5_6" transform="matrix(9.96264,0,0,-9.96264,169.10965,84.01129)"/>
|
||||
<use data-text="Q" xlink:href="#font_3_11" transform="matrix(9.96264,0,0,-9.96264,179.62564,84.01129)"/>
|
||||
<use data-text="L" xlink:href="#font_3_9" transform="matrix(9.96264,0,0,-9.96264,187.5061,84.01129)"/>
|
||||
<use data-text="∇" xlink:href="#font_9_4" transform="matrix(6.97385,0,0,-6.97385,194.28165,80.3963)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,194.28165,86.474308)"/>
|
||||
<use data-text="(" xlink:href="#font_5_1" transform="matrix(9.96264,0,0,-9.96264,201.43466,84.01129)"/>
|
||||
<use data-text="�" xlink:href="#font_6_8" transform="matrix(9.96264,0,0,-9.96264,207.88965,81.493289)"/>
|
||||
<use data-text="X" xlink:href="#font_3_13" transform="matrix(9.96264,0,0,-9.96264,205.30966,84.01129)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,213.56366,85.50629)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,216.57636,85.50629)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,218.94049,85.50629)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,223.08994,85.50629)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,225.45407,85.50629)"/>
|
||||
<use data-text="," xlink:href="#font_3_4" transform="matrix(9.96264,0,0,-9.96264,230.05765,84.01129)"/>
|
||||
<use data-text="Y" xlink:href="#font_3_14" transform="matrix(9.96264,0,0,-9.96264,234.48108,84.01129)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,240.26966,85.50629)"/>
|
||||
<use data-text=")" xlink:href="#font_5_2" transform="matrix(9.96264,0,0,-9.96264,243.77664,84.01129)"/>
|
||||
<use data-text="−" xlink:href="#font_12_1" transform="matrix(9.96264,0,0,-9.96264,249.86466,84.01129)"/>
|
||||
<use data-text="Q" xlink:href="#font_3_11" transform="matrix(9.96264,0,0,-9.96264,259.82765,84.01129)"/>
|
||||
<use data-text="L" xlink:href="#font_3_9" transform="matrix(9.96264,0,0,-9.96264,267.7081,84.01129)"/>
|
||||
<use data-text="∇" xlink:href="#font_9_4" transform="matrix(6.97385,0,0,-6.97385,274.48365,80.3963)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,274.48365,86.474308)"/>
|
||||
<use data-text="(" xlink:href="#font_5_1" transform="matrix(9.96264,0,0,-9.96264,281.63768,84.01129)"/>
|
||||
<use data-text="�" xlink:href="#font_6_6" transform="matrix(9.96264,0,0,-9.96264,288.09266,81.493289)"/>
|
||||
<use data-text="X" xlink:href="#font_3_13" transform="matrix(9.96264,0,0,-9.96264,285.51167,84.01129)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,293.76567,85.50629)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,296.77836,85.50629)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,299.1425,85.50629)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,303.29194,85.50629)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,305.65608,85.50629)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,309.76368,85.50629)"/>
|
||||
<use data-text="k" xlink:href="#font_7_8" transform="matrix(6.97385,0,0,-6.97385,312.1278,85.50629)"/>
|
||||
<use data-text="," xlink:href="#font_3_4" transform="matrix(9.96264,0,0,-9.96264,317.02967,84.01129)"/>
|
||||
<use data-text="Y" xlink:href="#font_3_14" transform="matrix(9.96264,0,0,-9.96264,321.4531,84.01129)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,327.24165,85.50629)"/>
|
||||
<use data-text=")" xlink:href="#font_5_2" transform="matrix(9.96264,0,0,-9.96264,330.74867,84.01129)"/>
|
||||
<use data-text="5" xlink:href="#font_2_56" transform="matrix(6.97385,0,0,-6.97385,6.508644,102.94025)"/>
|
||||
<use data-text="f" xlink:href="#font_0_55" transform="matrix(9.96264,0,0,-9.96264,30.94564,102.94025)"/>
|
||||
<use data-text="o" xlink:href="#font_0_81" transform="matrix(9.96264,0,0,-9.96264,34.442529,102.94025)"/>
|
||||
<use data-text="r" xlink:href="#font_0_96" transform="matrix(9.96264,0,0,-9.96264,40.171045,102.94025)"/>
|
||||
<use data-text="k" xlink:href="#font_3_16" transform="matrix(9.96264,0,0,-9.96264,48.211648,102.94025)"/>
|
||||
<use data-text="i" xlink:href="#font_4_66" transform="matrix(9.96264,0,0,-9.96264,57.27764,102.94025)"/>
|
||||
<use data-text="n" xlink:href="#font_4_77" transform="matrix(9.96264,0,0,-9.96264,60.336175,102.94025)"/>
|
||||
<use data-text="1" xlink:href="#font_5_4" transform="matrix(9.96264,0,0,-9.96264,69.50265,102.94025)"/>
|
||||
<use data-text="," xlink:href="#font_3_4" transform="matrix(9.96264,0,0,-9.96264,74.48365,102.94025)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,78.90705,102.94025)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,83.340419,102.94025)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,87.76382,102.94025)"/>
|
||||
<use data-text="," xlink:href="#font_3_4" transform="matrix(9.96264,0,0,-9.96264,92.19718,102.94025)"/>
|
||||
<use data-text="K" xlink:href="#font_3_8" transform="matrix(9.96264,0,0,-9.96264,96.63055,102.94025)"/>
|
||||
<use data-text="d" xlink:href="#font_0_47" transform="matrix(9.96264,0,0,-9.96264,109.11364,102.94025)"/>
|
||||
<use data-text="o" xlink:href="#font_0_81" transform="matrix(9.96264,0,0,-9.96264,115.479778,102.94025)"/>
|
||||
<path transform="matrix(1,0,0,-1,36.12664,126.253299)" stroke-width=".398" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M0 0V17.933"/>
|
||||
<use data-text="6" xlink:href="#font_2_101" transform="matrix(6.97385,0,0,-6.97385,6.9066469,120.87329)"/>
|
||||
<use data-text="r" xlink:href="#font_8_8" transform="matrix(9.96264,0,0,-9.96264,46.288644,120.87329)"/>
|
||||
<use data-text="r" xlink:href="#font_11_96" transform="matrix(6.97385,0,0,-6.97385,51.87365,117.2583)"/>
|
||||
<use data-text="e" xlink:href="#font_11_50" transform="matrix(6.97385,0,0,-6.97385,54.983987,117.2583)"/>
|
||||
<use data-text="d" xlink:href="#font_11_47" transform="matrix(6.97385,0,0,-6.97385,58.526697,117.2583)"/>
|
||||
<use data-text="k" xlink:href="#font_7_8" transform="matrix(6.97385,0,0,-6.97385,51.55564,123.76428)"/>
|
||||
<use data-text="=" xlink:href="#font_5_6" transform="matrix(9.96264,0,0,-9.96264,66.19265,120.87329)"/>
|
||||
<use data-text="�" xlink:href="#font_13_1" transform="matrix(6.97385,0,0,-6.97385,79.44265,115.187259)"/>
|
||||
<use data-text="D" xlink:href="#font_7_5" transform="matrix(6.97385,0,0,-6.97385,77.90464,116.95026)"/>
|
||||
<path transform="matrix(1,0,0,-1,77.90464,118.38226)" stroke-width=".398" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M0 0H6.729"/>
|
||||
<use data-text="D" xlink:href="#font_7_5" transform="matrix(6.97385,0,0,-6.97385,77.90464,124.30829)"/>
|
||||
<use data-text="�" xlink:href="#font_13_1" transform="matrix(6.97385,0,0,-6.97385,88.48464,115.187259)"/>
|
||||
<use data-text="P" xlink:href="#font_7_6" transform="matrix(6.97385,0,0,-6.97385,87.02364,116.95026)"/>
|
||||
<path transform="matrix(1,0,0,-1,87.02364,118.38226)" stroke-width=".398" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M0 0H6.145"/>
|
||||
<use data-text="P" xlink:href="#font_7_6" transform="matrix(6.97385,0,0,-6.97385,87.02364,124.30829)"/>
|
||||
<use data-text="B" xlink:href="#font_8_3" transform="matrix(9.96264,0,0,-9.96264,94.36465,120.87329)"/>
|
||||
<use data-text="m" xlink:href="#font_11_75" transform="matrix(6.97385,0,0,-6.97385,103.47764,117.2583)"/>
|
||||
<use data-text="v" xlink:href="#font_11_112" transform="matrix(6.97385,0,0,-6.97385,109.8099,117.2583)"/>
|
||||
<use data-text="′" xlink:href="#font_9_3" transform="matrix(6.97385,0,0,-6.97385,114.49264,116.500247)"/>
|
||||
<use data-text="r" xlink:href="#font_8_8" transform="matrix(9.96264,0,0,-9.96264,117.28765,120.87329)"/>
|
||||
<use data-text="f" xlink:href="#font_11_55" transform="matrix(6.97385,0,0,-6.97385,122.87264,117.2583)"/>
|
||||
<use data-text="u" xlink:href="#font_11_109" transform="matrix(6.97385,0,0,-6.97385,125.34139,117.2583)"/>
|
||||
<use data-text="l" xlink:href="#font_11_72" transform="matrix(6.97385,0,0,-6.97385,129.74188,117.2583)"/>
|
||||
<use data-text="l" xlink:href="#font_11_72" transform="matrix(6.97385,0,0,-6.97385,131.99445,117.2583)"/>
|
||||
<use data-text="k" xlink:href="#font_7_8" transform="matrix(6.97385,0,0,-6.97385,122.55465,123.76428)"/>
|
||||
<use data-text="B" xlink:href="#font_8_3" transform="matrix(9.96264,0,0,-9.96264,134.74564,120.87329)"/>
|
||||
<use data-text="p" xlink:href="#font_11_84" transform="matrix(6.97385,0,0,-6.97385,143.85865,117.2583)"/>
|
||||
<use data-text="r" xlink:href="#font_11_96" transform="matrix(6.97385,0,0,-6.97385,148.25916,117.2583)"/>
|
||||
<use data-text="/" xlink:href="#font_14_102" transform="matrix(9.96264,0,0,-9.96264,251.01065,120.87329)"/>
|
||||
<use data-text="/" xlink:href="#font_14_102" transform="matrix(9.96264,0,0,-9.96264,256.24104,120.87329)"/>
|
||||
<use data-text="n" xlink:href="#font_14_77" transform="matrix(9.96264,0,0,-9.96264,266.70167,120.87329)"/>
|
||||
<use data-text="o" xlink:href="#font_14_81" transform="matrix(9.96264,0,0,-9.96264,271.93205,120.87329)"/>
|
||||
<use data-text="w" xlink:href="#font_14_114" transform="matrix(9.96264,0,0,-9.96264,277.1624,120.87329)"/>
|
||||
<use data-text="r" xlink:href="#font_8_8" transform="matrix(9.96264,0,0,-9.96264,287.62367,120.87329)"/>
|
||||
<use data-text="r" xlink:href="#font_15_96" transform="matrix(6.97385,0,0,-6.97385,293.20866,117.2583)"/>
|
||||
<use data-text="e" xlink:href="#font_15_50" transform="matrix(6.97385,0,0,-6.97385,296.91178,117.2583)"/>
|
||||
<use data-text="d" xlink:href="#font_15_47" transform="matrix(6.97385,0,0,-6.97385,300.6149,117.2583)"/>
|
||||
<use data-text="k" xlink:href="#font_7_8" transform="matrix(6.97385,0,0,-6.97385,292.89067,123.72925)"/>
|
||||
<use data-text="i" xlink:href="#font_14_66" transform="matrix(9.96264,0,0,-9.96264,310.04667,120.87329)"/>
|
||||
<use data-text="s" xlink:href="#font_14_98" transform="matrix(9.96264,0,0,-9.96264,315.27705,120.87329)"/>
|
||||
<use data-text="�" xlink:href="#font_6_8" transform="matrix(9.96264,0,0,-9.96264,327.78666,118.355289)"/>
|
||||
<use data-text="D" xlink:href="#font_3_7" transform="matrix(9.96264,0,0,-9.96264,325.73765,120.87329)"/>
|
||||
<use data-text="×" xlink:href="#font_12_2" transform="matrix(9.96264,0,0,-9.96264,336.47666,120.87329)"/>
|
||||
<use data-text="�" xlink:href="#font_6_8" transform="matrix(9.96264,0,0,-9.96264,348.39265,118.355289)"/>
|
||||
<use data-text="P" xlink:href="#font_3_10" transform="matrix(9.96264,0,0,-9.96264,346.43965,120.87329)"/>
|
||||
<use data-text="7" xlink:href="#font_2_100" transform="matrix(6.97385,0,0,-6.97385,6.508644,138.80628)"/>
|
||||
<use data-text="f" xlink:href="#font_0_55" transform="matrix(9.96264,0,0,-9.96264,30.94564,138.80628)"/>
|
||||
<use data-text="o" xlink:href="#font_0_81" transform="matrix(9.96264,0,0,-9.96264,34.442529,138.80628)"/>
|
||||
<use data-text="r" xlink:href="#font_0_96" transform="matrix(9.96264,0,0,-9.96264,40.171045,138.80628)"/>
|
||||
<use data-text="d" xlink:href="#font_3_15" transform="matrix(9.96264,0,0,-9.96264,48.211648,138.80628)"/>
|
||||
<use data-text="i" xlink:href="#font_4_66" transform="matrix(9.96264,0,0,-9.96264,56.963647,138.80628)"/>
|
||||
<use data-text="n" xlink:href="#font_4_77" transform="matrix(9.96264,0,0,-9.96264,60.02218,138.80628)"/>
|
||||
<use data-text="1" xlink:href="#font_5_4" transform="matrix(9.96264,0,0,-9.96264,69.187648,138.80628)"/>
|
||||
<use data-text="," xlink:href="#font_3_4" transform="matrix(9.96264,0,0,-9.96264,74.16865,138.80628)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,78.59205,138.80628)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,83.02541,138.80628)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,87.448818,138.80628)"/>
|
||||
<use data-text="," xlink:href="#font_3_4" transform="matrix(9.96264,0,0,-9.96264,91.88218,138.80628)"/>
|
||||
<use data-text="�" xlink:href="#font_6_8" transform="matrix(9.96264,0,0,-9.96264,98.356639,136.2873)"/>
|
||||
<use data-text="D" xlink:href="#font_3_7" transform="matrix(9.96264,0,0,-9.96264,96.30764,138.80628)"/>
|
||||
<use data-text="d" xlink:href="#font_0_47" transform="matrix(9.96264,0,0,-9.96264,108.15064,138.80628)"/>
|
||||
<use data-text="o" xlink:href="#font_0_81" transform="matrix(9.96264,0,0,-9.96264,114.51678,138.80628)"/>
|
||||
<path transform="matrix(1,0,0,-1,36.12664,321.19828)" stroke-width=".398" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M0 0V177.013"/>
|
||||
<use data-text="8" xlink:href="#font_2_51" transform="matrix(6.97385,0,0,-6.97385,6.9066469,156.73828)"/>
|
||||
<use data-text="f" xlink:href="#font_0_55" transform="matrix(9.96264,0,0,-9.96264,46.288644,156.73828)"/>
|
||||
<use data-text="o" xlink:href="#font_0_81" transform="matrix(9.96264,0,0,-9.96264,49.78553,156.73828)"/>
|
||||
<use data-text="r" xlink:href="#font_0_96" transform="matrix(9.96264,0,0,-9.96264,55.514047,156.73828)"/>
|
||||
<use data-text="p" xlink:href="#font_3_17" transform="matrix(9.96264,0,0,-9.96264,63.553644,156.73828)"/>
|
||||
<use data-text="i" xlink:href="#font_4_66" transform="matrix(9.96264,0,0,-9.96264,72.13264,156.73828)"/>
|
||||
<use data-text="n" xlink:href="#font_4_77" transform="matrix(9.96264,0,0,-9.96264,75.19117,156.73828)"/>
|
||||
<use data-text="1" xlink:href="#font_5_4" transform="matrix(9.96264,0,0,-9.96264,84.356639,156.73828)"/>
|
||||
<use data-text="," xlink:href="#font_3_4" transform="matrix(9.96264,0,0,-9.96264,89.338649,156.73828)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,93.76205,156.73828)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,98.19541,156.73828)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,102.61881,156.73828)"/>
|
||||
<use data-text="," xlink:href="#font_3_4" transform="matrix(9.96264,0,0,-9.96264,107.05218,156.73828)"/>
|
||||
<use data-text="�" xlink:href="#font_6_8" transform="matrix(9.96264,0,0,-9.96264,113.42965,154.22028)"/>
|
||||
<use data-text="P" xlink:href="#font_3_10" transform="matrix(9.96264,0,0,-9.96264,111.47764,156.73828)"/>
|
||||
<use data-text="d" xlink:href="#font_0_47" transform="matrix(9.96264,0,0,-9.96264,122.57464,156.73828)"/>
|
||||
<use data-text="o" xlink:href="#font_0_81" transform="matrix(9.96264,0,0,-9.96264,128.94077,156.73828)"/>
|
||||
<path transform="matrix(1,0,0,-1,51.46865,302.2693)" stroke-width=".398" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M0 0V140.151"/>
|
||||
<use data-text="9" xlink:href="#font_2_78" transform="matrix(6.97385,0,0,-6.97385,7.305641,175.6073)"/>
|
||||
<use data-text="V" xlink:href="#font_8_6" transform="matrix(9.96264,0,0,-9.96264,61.63064,175.6073)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,68.383647,177.10126)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,71.396358,177.10126)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,73.76049,177.10126)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,77.909938,177.10126)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,80.27407,177.10126)"/>
|
||||
<use data-text="=" xlink:href="#font_5_6" transform="matrix(9.96264,0,0,-9.96264,89.85464,175.6073)"/>
|
||||
<use data-text="(" xlink:href="#font_5_1" transform="matrix(9.96264,0,0,-9.96264,100.36523,175.6073)"/>
|
||||
<use data-text="1" xlink:href="#font_5_4" transform="matrix(9.96264,0,0,-9.96264,104.2407,175.6073)"/>
|
||||
<use data-text="−" xlink:href="#font_12_1" transform="matrix(9.96264,0,0,-9.96264,111.44065,175.6073)"/>
|
||||
<use data-text="θ" xlink:href="#font_3_2" transform="matrix(9.96264,0,0,-9.96264,121.40365,175.6073)"/>
|
||||
<use data-text=")" xlink:href="#font_5_2" transform="matrix(9.96264,0,0,-9.96264,126.356639,175.6073)"/>
|
||||
<use data-text="V" xlink:href="#font_8_6" transform="matrix(9.96264,0,0,-9.96264,130.23163,175.6073)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,136.98365,177.10126)"/>
|
||||
<use data-text="−" xlink:href="#font_9_1" transform="matrix(6.97385,0,0,-6.97385,139.99365,177.10126)"/>
|
||||
<use data-text="1" xlink:href="#font_10_2" transform="matrix(6.97385,0,0,-6.97385,146.21967,177.10126)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,150.19065,177.10126)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,152.55478,177.10126)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,156.70423,177.10126)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,159.06836,177.10126)"/>
|
||||
<use data-text="+" xlink:href="#font_5_3" transform="matrix(9.96264,0,0,-9.96264,165.88965,175.6073)"/>
|
||||
<use data-text="�" xlink:href="#font_6_2" transform="matrix(9.96264,0,0,-9.96264,175.85266,164.54828)"/>
|
||||
<use data-text="r" xlink:href="#font_8_8" transform="matrix(9.96264,0,0,-9.96264,181.80265,175.6073)"/>
|
||||
<use data-text="r" xlink:href="#font_11_96" transform="matrix(6.97385,0,0,-6.97385,187.38767,171.99127)"/>
|
||||
<use data-text="e" xlink:href="#font_11_50" transform="matrix(6.97385,0,0,-6.97385,190.49802,171.99127)"/>
|
||||
<use data-text="d" xlink:href="#font_11_47" transform="matrix(6.97385,0,0,-6.97385,194.04074,171.99127)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,187.06964,178.49829)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,191.21909,178.49829)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,193.58322,178.49829)"/>
|
||||
<use data-text="�" xlink:href="#font_6_3" transform="matrix(9.96264,0,0,-9.96264,198.93964,164.54828)"/>
|
||||
<use data-text="⊙" xlink:href="#font_9_2" transform="matrix(6.97385,0,0,-6.97385,204.88965,166.61328)"/>
|
||||
<use data-text="2" xlink:href="#font_10_3" transform="matrix(6.97385,0,0,-6.97385,211.11566,166.61328)"/>
|
||||
<use data-text="1" xlink:href="#font_2_82" transform="matrix(6.97385,0,0,-6.97385,2.7936402,195.63227)"/>
|
||||
<use data-text="0" xlink:href="#font_2_121" transform="matrix(6.97385,0,0,-6.97385,7.3057177,195.63227)"/>
|
||||
<use data-text="E" xlink:href="#font_8_4" transform="matrix(9.96264,0,0,-9.96264,61.63064,195.63227)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,69.70164,197.12628)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,72.71435,197.12628)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,75.07848,197.12628)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,79.22793,197.12628)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,81.592067,197.12628)"/>
|
||||
<use data-text="=" xlink:href="#font_5_6" transform="matrix(9.96264,0,0,-9.96264,89.85464,195.63227)"/>
|
||||
<use data-text="m" xlink:href="#font_5_11" transform="matrix(9.96264,0,0,-9.96264,100.36523,195.63227)"/>
|
||||
<use data-text="a" xlink:href="#font_5_7" transform="matrix(9.96264,0,0,-9.96264,108.6641,195.63227)"/>
|
||||
<use data-text="x" xlink:href="#font_5_14" transform="matrix(9.96264,0,0,-9.96264,113.645427,195.63227)"/>
|
||||
<use data-text="�" xlink:href="#font_6_2" transform="matrix(9.96264,0,0,-9.96264,120.57264,184.5733)"/>
|
||||
<use data-text="(" xlink:href="#font_5_1" transform="matrix(9.96264,0,0,-9.96264,126.52264,195.63227)"/>
|
||||
<use data-text="1" xlink:href="#font_5_4" transform="matrix(9.96264,0,0,-9.96264,130.3981,195.63227)"/>
|
||||
<use data-text="−" xlink:href="#font_12_1" transform="matrix(9.96264,0,0,-9.96264,137.59265,195.63227)"/>
|
||||
<use data-text="θ" xlink:href="#font_3_2" transform="matrix(9.96264,0,0,-9.96264,147.55567,195.63227)"/>
|
||||
<use data-text=")" xlink:href="#font_5_2" transform="matrix(9.96264,0,0,-9.96264,152.50864,195.63227)"/>
|
||||
<use data-text="E" xlink:href="#font_8_4" transform="matrix(9.96264,0,0,-9.96264,156.38364,195.63227)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,164.45365,197.12628)"/>
|
||||
<use data-text="−" xlink:href="#font_9_1" transform="matrix(6.97385,0,0,-6.97385,167.46366,197.12628)"/>
|
||||
<use data-text="1" xlink:href="#font_10_2" transform="matrix(6.97385,0,0,-6.97385,173.68964,197.12628)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,177.66065,197.12628)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,180.02478,197.12628)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,184.17423,197.12628)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,186.53836,197.12628)"/>
|
||||
<use data-text="," xlink:href="#font_3_4" transform="matrix(9.96264,0,0,-9.96264,191.14566,195.63227)"/>
|
||||
<use data-text="�" xlink:href="#font_6_1" transform="matrix(9.96264,0,0,-9.96264,195.57364,184.1753)"/>
|
||||
<use data-text="�" xlink:href="#font_6_1" transform="matrix(9.96264,0,0,-9.96264,195.57364,190.15229)"/>
|
||||
<use data-text="�" xlink:href="#font_6_1" transform="matrix(9.96264,0,0,-9.96264,195.57364,196.13025)"/>
|
||||
<use data-text="r" xlink:href="#font_8_8" transform="matrix(9.96264,0,0,-9.96264,198.89466,195.63227)"/>
|
||||
<use data-text="r" xlink:href="#font_11_96" transform="matrix(6.97385,0,0,-6.97385,204.47965,192.0163)"/>
|
||||
<use data-text="e" xlink:href="#font_11_50" transform="matrix(6.97385,0,0,-6.97385,207.59,192.0163)"/>
|
||||
<use data-text="d" xlink:href="#font_11_47" transform="matrix(6.97385,0,0,-6.97385,211.13272,192.0163)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,204.16165,198.52326)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,208.3111,198.52326)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,210.67523,198.52326)"/>
|
||||
<use data-text="�" xlink:href="#font_6_1" transform="matrix(9.96264,0,0,-9.96264,216.03165,184.1753)"/>
|
||||
<use data-text="�" xlink:href="#font_6_1" transform="matrix(9.96264,0,0,-9.96264,216.03165,190.15229)"/>
|
||||
<use data-text="�" xlink:href="#font_6_1" transform="matrix(9.96264,0,0,-9.96264,216.03165,196.13025)"/>
|
||||
<use data-text="�" xlink:href="#font_6_3" transform="matrix(9.96264,0,0,-9.96264,219.35266,184.5733)"/>
|
||||
<use data-text="1" xlink:href="#font_2_82" transform="matrix(6.97385,0,0,-6.97385,2.7936402,217.98526)"/>
|
||||
<use data-text="1" xlink:href="#font_2_82" transform="matrix(6.97385,0,0,-6.97385,7.3057177,217.98526)"/>
|
||||
<use data-text="η" xlink:href="#font_8_2" transform="matrix(9.96264,0,0,-9.96264,61.63064,217.98526)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,67.60865,219.48029)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,70.62136,219.48029)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,72.9855,219.48029)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,77.13494,219.48029)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,79.49908,219.48029)"/>
|
||||
<use data-text="=" xlink:href="#font_5_6" transform="matrix(9.96264,0,0,-9.96264,89.85464,217.98526)"/>
|
||||
<use data-text="γ" xlink:href="#font_3_1" transform="matrix(9.96264,0,0,-9.96264,100.37064,217.98526)"/>
|
||||
<use data-text="m" xlink:href="#font_5_11" transform="matrix(9.96264,0,0,-9.96264,107.74264,217.98526)"/>
|
||||
<use data-text="i" xlink:href="#font_5_9" transform="matrix(9.96264,0,0,-9.96264,116.04151,217.98526)"/>
|
||||
<use data-text="n" xlink:href="#font_5_12" transform="matrix(9.96264,0,0,-9.96264,118.81112,217.98526)"/>
|
||||
<use data-text="�" xlink:href="#font_6_4" transform="matrix(9.96264,0,0,-9.96264,126.00764,203.9383)"/>
|
||||
<use data-text="�" xlink:href="#font_6_2" transform="matrix(9.96264,0,0,-9.96264,133.34165,206.92725)"/>
|
||||
<use data-text="−" xlink:href="#font_12_1" transform="matrix(9.96264,0,0,-9.96264,139.29166,217.98526)"/>
|
||||
<use data-text="l" xlink:href="#font_5_10" transform="matrix(9.96264,0,0,-9.96264,148.70066,217.98526)"/>
|
||||
<use data-text="o" xlink:href="#font_5_13" transform="matrix(9.96264,0,0,-9.96264,151.47028,217.98526)"/>
|
||||
<use data-text="g" xlink:href="#font_5_8" transform="matrix(9.96264,0,0,-9.96264,156.4516,217.98526)"/>
|
||||
<use data-text="(" xlink:href="#font_5_1" transform="matrix(9.96264,0,0,-9.96264,161.56244,217.98526)"/>
|
||||
<use data-text="β" xlink:href="#font_8_1" transform="matrix(9.96264,0,0,-9.96264,165.44367,217.98526)"/>
|
||||
<use data-text="0" xlink:href="#font_10_1" transform="matrix(6.97385,0,0,-6.97385,172.01566,219.48029)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,175.98667,219.48029)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,178.3508,219.48029)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,182.50025,219.48029)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,184.86438,219.48029)"/>
|
||||
<use data-text=")" xlink:href="#font_5_2" transform="matrix(9.96264,0,0,-9.96264,189.47165,217.98526)"/>
|
||||
<use data-text="⊙" xlink:href="#font_12_3" transform="matrix(9.96264,0,0,-9.96264,195.55966,217.98526)"/>
|
||||
<use data-text="V" xlink:href="#font_8_6" transform="matrix(9.96264,0,0,-9.96264,205.52265,217.98526)"/>
|
||||
<use data-text="⊙" xlink:href="#font_9_2" transform="matrix(6.97385,0,0,-6.97385,214.82065,213.7243)"/>
|
||||
<use data-text="−" xlink:href="#font_9_1" transform="matrix(6.97385,0,0,-6.97385,221.04831,213.7243)"/>
|
||||
<use data-text="1" xlink:href="#font_10_2" transform="matrix(6.97385,0,0,-6.97385,227.27466,213.7243)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,212.27466,220.99127)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,215.28736,220.99127)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,217.65149,220.99127)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,221.80094,220.99127)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,224.16507,220.99127)"/>
|
||||
<use data-text="�" xlink:href="#font_6_3" transform="matrix(9.96264,0,0,-9.96264,231.74365,206.92725)"/>
|
||||
<use data-text="⊙" xlink:href="#font_9_2" transform="matrix(6.97385,0,0,-6.97385,237.69367,208.99127)"/>
|
||||
<use data-text="1" xlink:href="#font_16_1" transform="matrix(4.98132,0,0,-4.98132,245.11566,206.31427)"/>
|
||||
<path transform="matrix(1,0,0,-1,245.11566,207.24829)" stroke-width=".339" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M0 0H3.39"/>
|
||||
<use data-text="2" xlink:href="#font_16_2" transform="matrix(4.98132,0,0,-4.98132,245.11566,211.39228)"/>
|
||||
<use data-text="," xlink:href="#font_3_4" transform="matrix(9.96264,0,0,-9.96264,251.85965,217.98526)"/>
|
||||
<use data-text="1" xlink:href="#font_10_2" transform="matrix(6.97385,0,0,-6.97385,257.48365,214.0633)"/>
|
||||
<path transform="matrix(1,0,0,-1,257.48365,215.49527)" stroke-width=".398" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M0 0H3.971"/>
|
||||
<use data-text="2" xlink:href="#font_10_3" transform="matrix(6.97385,0,0,-6.97385,257.48365,221.42127)"/>
|
||||
<use data-text="E" xlink:href="#font_8_4" transform="matrix(9.96264,0,0,-9.96264,262.64967,217.98526)"/>
|
||||
<use data-text="⊙" xlink:href="#font_9_2" transform="matrix(6.97385,0,0,-6.97385,271.26365,213.7243)"/>
|
||||
<use data-text="−" xlink:href="#font_9_1" transform="matrix(6.97385,0,0,-6.97385,277.4913,213.7243)"/>
|
||||
<use data-text="1" xlink:href="#font_10_2" transform="matrix(6.97385,0,0,-6.97385,283.71665,213.7243)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,270.72065,220.99127)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,273.73335,220.99127)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,276.09748,220.99127)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,280.24693,220.99127)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,282.61106,220.99127)"/>
|
||||
<use data-text="�" xlink:href="#font_6_5" transform="matrix(9.96264,0,0,-9.96264,288.18666,203.9383)"/>
|
||||
<use data-text="1" xlink:href="#font_2_82" transform="matrix(6.97385,0,0,-6.97385,2.7936402,240.99927)"/>
|
||||
<use data-text="2" xlink:href="#font_2_107" transform="matrix(6.97385,0,0,-6.97385,7.3057177,240.99927)"/>
|
||||
<use data-text="R" xlink:href="#font_8_5" transform="matrix(9.96264,0,0,-9.96264,61.63064,240.99927)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,70.32165,242.49329)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,73.33436,242.49329)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,75.698497,242.49329)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,79.84794,242.49329)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,82.212078,242.49329)"/>
|
||||
<use data-text="=" xlink:href="#font_5_6" transform="matrix(9.96264,0,0,-9.96264,89.85464,240.99927)"/>
|
||||
<use data-text="(" xlink:href="#font_5_1" transform="matrix(9.96264,0,0,-9.96264,100.36523,240.99927)"/>
|
||||
<use data-text="1" xlink:href="#font_5_4" transform="matrix(9.96264,0,0,-9.96264,104.2407,240.99927)"/>
|
||||
<use data-text="−" xlink:href="#font_12_1" transform="matrix(9.96264,0,0,-9.96264,111.44065,240.99927)"/>
|
||||
<use data-text="θ" xlink:href="#font_3_2" transform="matrix(9.96264,0,0,-9.96264,121.40365,240.99927)"/>
|
||||
<use data-text=")" xlink:href="#font_5_2" transform="matrix(9.96264,0,0,-9.96264,126.356639,240.99927)"/>
|
||||
<use data-text="R" xlink:href="#font_8_5" transform="matrix(9.96264,0,0,-9.96264,130.23163,240.99927)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,138.92264,242.49329)"/>
|
||||
<use data-text="−" xlink:href="#font_9_1" transform="matrix(6.97385,0,0,-6.97385,141.93164,242.49329)"/>
|
||||
<use data-text="1" xlink:href="#font_10_2" transform="matrix(6.97385,0,0,-6.97385,148.15866,242.49329)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,152.12964,242.49329)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,154.49378,242.49329)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,158.64322,242.49329)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,161.00736,242.49329)"/>
|
||||
<use data-text="+" xlink:href="#font_5_3" transform="matrix(9.96264,0,0,-9.96264,167.82764,240.99927)"/>
|
||||
<use data-text="r" xlink:href="#font_8_8" transform="matrix(9.96264,0,0,-9.96264,177.79065,240.99927)"/>
|
||||
<use data-text="r" xlink:href="#font_11_96" transform="matrix(6.97385,0,0,-6.97385,183.37665,237.38428)"/>
|
||||
<use data-text="e" xlink:href="#font_11_50" transform="matrix(6.97385,0,0,-6.97385,186.487,237.38428)"/>
|
||||
<use data-text="d" xlink:href="#font_11_47" transform="matrix(6.97385,0,0,-6.97385,190.02973,237.38428)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,183.05765,243.89026)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,187.20709,243.89026)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,189.57123,243.89026)"/>
|
||||
<use data-text="⊙" xlink:href="#font_12_3" transform="matrix(9.96264,0,0,-9.96264,197.14167,240.99927)"/>
|
||||
<use data-text="�" xlink:href="#font_6_2" transform="matrix(9.96264,0,0,-9.96264,207.10465,229.94028)"/>
|
||||
<use data-text="1" xlink:href="#font_5_4" transform="matrix(9.96264,0,0,-9.96264,213.05466,240.99927)"/>
|
||||
<use data-text="−" xlink:href="#font_12_1" transform="matrix(9.96264,0,0,-9.96264,220.24967,240.99927)"/>
|
||||
<use data-text="η" xlink:href="#font_8_2" transform="matrix(9.96264,0,0,-9.96264,230.21265,240.99927)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,236.18964,242.49329)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,239.20233,242.49329)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,241.56647,242.49329)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,245.71591,242.49329)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,248.08005,242.49329)"/>
|
||||
<use data-text="⊙" xlink:href="#font_12_3" transform="matrix(9.96264,0,0,-9.96264,254.89765,240.99927)"/>
|
||||
<use data-text="r" xlink:href="#font_8_8" transform="matrix(9.96264,0,0,-9.96264,264.86067,240.99927)"/>
|
||||
<use data-text="r" xlink:href="#font_11_96" transform="matrix(6.97385,0,0,-6.97385,270.44566,237.38428)"/>
|
||||
<use data-text="e" xlink:href="#font_11_50" transform="matrix(6.97385,0,0,-6.97385,273.556,237.38428)"/>
|
||||
<use data-text="d" xlink:href="#font_11_47" transform="matrix(6.97385,0,0,-6.97385,277.09873,237.38428)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,270.12767,243.89026)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,274.2771,243.89026)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,276.64125,243.89026)"/>
|
||||
<use data-text="�" xlink:href="#font_6_3" transform="matrix(9.96264,0,0,-9.96264,281.99766,229.94028)"/>
|
||||
<use data-text="/" xlink:href="#font_3_5" transform="matrix(9.96264,0,0,-9.96264,289.60768,240.99927)"/>
|
||||
<use data-text="2" xlink:href="#font_5_5" transform="matrix(9.96264,0,0,-9.96264,294.58967,240.99927)"/>
|
||||
<use data-text="+" xlink:href="#font_5_3" transform="matrix(9.96264,0,0,-9.96264,301.78269,240.99927)"/>
|
||||
<use data-text="E" xlink:href="#font_8_4" transform="matrix(9.96264,0,0,-9.96264,100.37464,261.02427)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,108.44465,262.51829)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,111.45736,262.51829)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,113.821498,262.51829)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,117.97094,262.51829)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,120.335079,262.51829)"/>
|
||||
<use data-text="⊙" xlink:href="#font_12_3" transform="matrix(9.96264,0,0,-9.96264,127.15264,261.02427)"/>
|
||||
<use data-text="1" xlink:href="#font_17_49" transform="matrix(9.96264,0,0,-9.96264,137.11563,261.02427)"/>
|
||||
<use data-text="{" xlink:href="#font_12_8" transform="matrix(9.96264,0,0,-9.96264,142.65064,261.02427)"/>
|
||||
<use data-text="−" xlink:href="#font_12_1" transform="matrix(9.96264,0,0,-9.96264,147.63196,261.02427)"/>
|
||||
<use data-text="2" xlink:href="#font_5_5" transform="matrix(9.96264,0,0,-9.96264,155.38065,261.02427)"/>
|
||||
<use data-text="η" xlink:href="#font_8_2" transform="matrix(9.96264,0,0,-9.96264,160.36167,261.02427)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,166.33966,262.51829)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,169.35236,262.51829)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,171.71649,262.51829)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,175.86594,262.51829)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,178.23007,262.51829)"/>
|
||||
<use data-text="⊙" xlink:href="#font_12_3" transform="matrix(9.96264,0,0,-9.96264,185.04764,261.02427)"/>
|
||||
<use data-text="r" xlink:href="#font_8_8" transform="matrix(9.96264,0,0,-9.96264,195.00965,261.02427)"/>
|
||||
<use data-text="r" xlink:href="#font_11_96" transform="matrix(6.97385,0,0,-6.97385,200.59564,257.40928)"/>
|
||||
<use data-text="e" xlink:href="#font_11_50" transform="matrix(6.97385,0,0,-6.97385,203.706,257.40928)"/>
|
||||
<use data-text="d" xlink:href="#font_11_47" transform="matrix(6.97385,0,0,-6.97385,207.24872,257.40928)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,200.27765,263.91529)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,204.4271,263.91529)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,206.79123,263.91529)"/>
|
||||
<use data-text=">" xlink:href="#font_3_6" transform="matrix(9.96264,0,0,-9.96264,214.91464,261.02427)"/>
|
||||
<use data-text="1" xlink:href="#font_5_4" transform="matrix(9.96264,0,0,-9.96264,225.43067,261.02427)"/>
|
||||
<use data-text="}" xlink:href="#font_12_9" transform="matrix(9.96264,0,0,-9.96264,230.41165,261.02427)"/>
|
||||
<use data-text="1" xlink:href="#font_2_82" transform="matrix(6.97385,0,0,-6.97385,2.7936402,278.95729)"/>
|
||||
<use data-text="3" xlink:href="#font_2_106" transform="matrix(6.97385,0,0,-6.97385,7.3057177,278.95729)"/>
|
||||
<use data-text="β" xlink:href="#font_8_1" transform="matrix(9.96264,0,0,-9.96264,61.63064,278.95729)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,68.203639,280.45127)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,71.21635,280.45127)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,73.58048,280.45127)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,77.72993,280.45127)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,80.09406,280.45127)"/>
|
||||
<use data-text="=" xlink:href="#font_5_6" transform="matrix(9.96264,0,0,-9.96264,89.85464,278.95729)"/>
|
||||
<use data-text="K" xlink:href="#font_3_8" transform="matrix(9.96264,0,0,-9.96264,100.37064,278.95729)"/>
|
||||
<use data-text="β" xlink:href="#font_8_1" transform="matrix(9.96264,0,0,-9.96264,109.54464,278.95729)"/>
|
||||
<use data-text="0" xlink:href="#font_10_1" transform="matrix(6.97385,0,0,-6.97385,116.11764,280.45127)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,120.088649,280.45127)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,122.45278,280.45127)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,126.60223,280.45127)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,128.96637,280.45127)"/>
|
||||
<use data-text="⊙" xlink:href="#font_12_3" transform="matrix(9.96264,0,0,-9.96264,135.78766,278.95729)"/>
|
||||
<use data-text="S" xlink:href="#font_1_97" transform="matrix(9.96264,0,0,-9.96264,145.74967,278.95729)"/>
|
||||
<use data-text="o" xlink:href="#font_1_81" transform="matrix(9.96264,0,0,-9.96264,151.28888,278.95729)"/>
|
||||
<use data-text="f" xlink:href="#font_1_55" transform="matrix(9.96264,0,0,-9.96264,156.2702,278.95729)"/>
|
||||
<use data-text="t" xlink:href="#font_1_105" transform="matrix(9.96264,0,0,-9.96264,159.31876,278.95729)"/>
|
||||
<use data-text="M" xlink:href="#font_1_74" transform="matrix(9.96264,0,0,-9.96264,163.19422,278.95729)"/>
|
||||
<use data-text="a" xlink:href="#font_1_28" transform="matrix(9.96264,0,0,-9.96264,172.32996,278.95729)"/>
|
||||
<use data-text="x" xlink:href="#font_1_116" transform="matrix(9.96264,0,0,-9.96264,177.31128,278.95729)"/>
|
||||
<use data-text="(" xlink:href="#font_5_1" transform="matrix(9.96264,0,0,-9.96264,184.23267,278.95729)"/>
|
||||
<use data-text="−" xlink:href="#font_12_1" transform="matrix(9.96264,0,0,-9.96264,188.10666,278.95729)"/>
|
||||
<use data-text="η" xlink:href="#font_8_2" transform="matrix(9.96264,0,0,-9.96264,195.85565,278.95729)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,201.83264,280.45127)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,204.84534,280.45127)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,207.20948,280.45127)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,211.35892,280.45127)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,213.72306,280.45127)"/>
|
||||
<use data-text="⊙" xlink:href="#font_12_3" transform="matrix(9.96264,0,0,-9.96264,220.54065,278.95729)"/>
|
||||
<use data-text="R" xlink:href="#font_8_5" transform="matrix(9.96264,0,0,-9.96264,230.50366,278.95729)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,239.19464,280.45127)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,242.20734,280.45127)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,244.57147,280.45127)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,248.72092,280.45127)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,251.08506,280.45127)"/>
|
||||
<use data-text="+" xlink:href="#font_5_3" transform="matrix(9.96264,0,0,-9.96264,257.90266,278.95729)"/>
|
||||
<use data-text="l" xlink:href="#font_5_10" transform="matrix(9.96264,0,0,-9.96264,267.8653,278.95729)"/>
|
||||
<use data-text="o" xlink:href="#font_5_13" transform="matrix(9.96264,0,0,-9.96264,270.63493,278.95729)"/>
|
||||
<use data-text="g" xlink:href="#font_5_8" transform="matrix(9.96264,0,0,-9.96264,275.61625,278.95729)"/>
|
||||
<use data-text="(" xlink:href="#font_5_1" transform="matrix(9.96264,0,0,-9.96264,280.73704,278.95729)"/>
|
||||
<use data-text="η" xlink:href="#font_8_2" transform="matrix(9.96264,0,0,-9.96264,284.60768,278.95729)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,290.58567,280.45127)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,293.59837,280.45127)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,295.9625,280.45127)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,300.11195,280.45127)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,302.47608,280.45127)"/>
|
||||
<use data-text=")" xlink:href="#font_5_2" transform="matrix(9.96264,0,0,-9.96264,307.07966,278.95729)"/>
|
||||
<use data-text=")" xlink:href="#font_5_2" transform="matrix(9.96264,0,0,-9.96264,310.9551,278.95729)"/>
|
||||
<use data-text="1" xlink:href="#font_2_82" transform="matrix(6.97385,0,0,-6.97385,2.7936402,296.89027)"/>
|
||||
<use data-text="4" xlink:href="#font_2_57" transform="matrix(6.97385,0,0,-6.97385,7.3057177,296.89027)"/>
|
||||
<use data-text="β" xlink:href="#font_8_1" transform="matrix(9.96264,0,0,-9.96264,61.63064,296.89027)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,68.203639,298.38429)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,71.21635,298.38429)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,73.58048,298.38429)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,77.72993,298.38429)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,80.09406,298.38429)"/>
|
||||
<use data-text="=" xlink:href="#font_5_6" transform="matrix(9.96264,0,0,-9.96264,89.85464,296.89027)"/>
|
||||
<use data-text="(" xlink:href="#font_5_1" transform="matrix(9.96264,0,0,-9.96264,100.36523,296.89027)"/>
|
||||
<use data-text="F" xlink:href="#font_12_5" transform="matrix(9.96264,0,0,-9.96264,104.24564,296.89027)"/>
|
||||
<use data-text="φ" xlink:href="#font_7_3" transform="matrix(6.97385,0,0,-6.97385,111.40565,298.38429)"/>
|
||||
<use data-text="◦" xlink:href="#font_12_4" transform="matrix(9.96264,0,0,-9.96264,118.90864,296.89027)"/>
|
||||
<use data-text="H" xlink:href="#font_12_6" transform="matrix(9.96264,0,0,-9.96264,126.10166,296.89027)"/>
|
||||
<use data-text="κ" xlink:href="#font_7_1" transform="matrix(6.97385,0,0,-6.97385,134.51764,298.38429)"/>
|
||||
<use data-text="◦" xlink:href="#font_12_4" transform="matrix(9.96264,0,0,-9.96264,141.89365,296.89027)"/>
|
||||
<use data-text="S" xlink:href="#font_12_7" transform="matrix(9.96264,0,0,-9.96264,149.08667,296.89027)"/>
|
||||
<use data-text="ν" xlink:href="#font_7_2" transform="matrix(6.97385,0,0,-6.97385,155.12165,298.38429)"/>
|
||||
<use data-text=")" xlink:href="#font_5_2" transform="matrix(9.96264,0,0,-9.96264,160.07865,296.89027)"/>
|
||||
<use data-text="(" xlink:href="#font_5_1" transform="matrix(9.96264,0,0,-9.96264,165.60791,296.89027)"/>
|
||||
<use data-text="β" xlink:href="#font_8_1" transform="matrix(9.96264,0,0,-9.96264,169.48764,296.89027)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,176.06064,298.38429)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,179.07334,298.38429)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,181.43747,298.38429)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,185.58692,298.38429)"/>
|
||||
<use data-text="p" xlink:href="#font_7_9" transform="matrix(6.97385,0,0,-6.97385,187.95105,298.38429)"/>
|
||||
<use data-text=")" xlink:href="#font_5_2" transform="matrix(9.96264,0,0,-9.96264,192.55466,296.89027)"/>
|
||||
<use data-text="1" xlink:href="#font_2_82" transform="matrix(6.97385,0,0,-6.97385,2.3946458,315.81929)"/>
|
||||
<use data-text="5" xlink:href="#font_2_56" transform="matrix(6.97385,0,0,-6.97385,6.906723,315.81929)"/>
|
||||
<use data-text="�" xlink:href="#font_6_9" transform="matrix(9.96264,0,0,-9.96264,47.367639,313.2733)"/>
|
||||
<use data-text="X" xlink:href="#font_8_7" transform="matrix(9.96264,0,0,-9.96264,46.288644,315.81929)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,55.724649,317.31327)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,58.73736,317.31327)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,61.101495,317.31327)"/>
|
||||
<use data-text="=" xlink:href="#font_5_6" transform="matrix(9.96264,0,0,-9.96264,68.51365,315.81929)"/>
|
||||
<use data-text="S" xlink:href="#font_1_97" transform="matrix(9.96264,0,0,-9.96264,79.02964,315.81929)"/>
|
||||
<use data-text="o" xlink:href="#font_1_81" transform="matrix(9.96264,0,0,-9.96264,84.56887,315.81929)"/>
|
||||
<use data-text="r" xlink:href="#font_1_96" transform="matrix(9.96264,0,0,-9.96264,89.55019,315.81929)"/>
|
||||
<use data-text="t" xlink:href="#font_1_105" transform="matrix(9.96264,0,0,-9.96264,93.45554,315.81929)"/>
|
||||
<use data-text="(" xlink:href="#font_5_1" transform="matrix(9.96264,0,0,-9.96264,97.33065,315.81929)"/>
|
||||
<use data-text="�" xlink:href="#font_6_9" transform="matrix(9.96264,0,0,-9.96264,102.284648,313.2733)"/>
|
||||
<use data-text="X" xlink:href="#font_8_7" transform="matrix(9.96264,0,0,-9.96264,101.20565,315.81929)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,110.64265,317.31327)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,113.65536,317.31327)"/>
|
||||
<use data-text="d" xlink:href="#font_7_7" transform="matrix(6.97385,0,0,-6.97385,116.01949,317.31327)"/>
|
||||
<use data-text=")" xlink:href="#font_5_2" transform="matrix(9.96264,0,0,-9.96264,120.66364,315.81929)"/>
|
||||
<use data-text="1" xlink:href="#font_2_82" transform="matrix(6.97385,0,0,-6.97385,1.9966431,334.74827)"/>
|
||||
<use data-text="6" xlink:href="#font_2_101" transform="matrix(6.97385,0,0,-6.97385,6.5087206,334.74827)"/>
|
||||
<use data-text="f" xlink:href="#font_0_55" transform="matrix(9.96264,0,0,-9.96264,30.94564,334.74827)"/>
|
||||
<use data-text="o" xlink:href="#font_0_81" transform="matrix(9.96264,0,0,-9.96264,34.442529,334.74827)"/>
|
||||
<use data-text="r" xlink:href="#font_0_96" transform="matrix(9.96264,0,0,-9.96264,40.171045,334.74827)"/>
|
||||
<use data-text="k" xlink:href="#font_3_16" transform="matrix(9.96264,0,0,-9.96264,48.211648,334.74827)"/>
|
||||
<use data-text="i" xlink:href="#font_4_66" transform="matrix(9.96264,0,0,-9.96264,57.27764,334.74827)"/>
|
||||
<use data-text="n" xlink:href="#font_4_77" transform="matrix(9.96264,0,0,-9.96264,60.336175,334.74827)"/>
|
||||
<use data-text="1" xlink:href="#font_5_4" transform="matrix(9.96264,0,0,-9.96264,69.50265,334.74827)"/>
|
||||
<use data-text="," xlink:href="#font_3_4" transform="matrix(9.96264,0,0,-9.96264,74.48365,334.74827)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,78.90705,334.74827)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,83.340419,334.74827)"/>
|
||||
<use data-text="." xlink:href="#font_3_3" transform="matrix(9.96264,0,0,-9.96264,87.76382,334.74827)"/>
|
||||
<use data-text="," xlink:href="#font_3_4" transform="matrix(9.96264,0,0,-9.96264,92.19718,334.74827)"/>
|
||||
<use data-text="K" xlink:href="#font_3_8" transform="matrix(9.96264,0,0,-9.96264,96.63055,334.74827)"/>
|
||||
<use data-text="d" xlink:href="#font_0_47" transform="matrix(9.96264,0,0,-9.96264,109.11364,334.74827)"/>
|
||||
<use data-text="o" xlink:href="#font_0_81" transform="matrix(9.96264,0,0,-9.96264,115.479778,334.74827)"/>
|
||||
<path transform="matrix(1,0,0,-1,36.12664,358.06028)" stroke-width=".398" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M0 0V17.933"/>
|
||||
<use data-text="1" xlink:href="#font_2_82" transform="matrix(6.97385,0,0,-6.97385,2.3946458,352.68028)"/>
|
||||
<use data-text="7" xlink:href="#font_2_100" transform="matrix(6.97385,0,0,-6.97385,6.906723,352.68028)"/>
|
||||
<use data-text="w" xlink:href="#font_8_9" transform="matrix(9.96264,0,0,-9.96264,46.288644,352.68028)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,54.571649,354.17527)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,57.58436,354.17527)"/>
|
||||
<use data-text="k" xlink:href="#font_7_8" transform="matrix(6.97385,0,0,-6.97385,59.948495,354.17527)"/>
|
||||
<use data-text="(" xlink:href="#font_5_1" transform="matrix(9.96264,0,0,-9.96264,64.84965,352.68028)"/>
|
||||
<use data-text="P" xlink:href="#font_20_2" transform="matrix(9.96264,0,0,-9.96264,68.72364,352.68028)"/>
|
||||
<use data-text=")" xlink:href="#font_5_2" transform="matrix(9.96264,0,0,-9.96264,77.634639,352.68028)"/>
|
||||
<use data-text="=" xlink:href="#font_5_6" transform="matrix(9.96264,0,0,-9.96264,84.26977,352.68028)"/>
|
||||
<use data-text="H" xlink:href="#font_20_1" transform="matrix(9.96264,0,0,-9.96264,94.79264,352.68028)"/>
|
||||
<use data-text="m" xlink:href="#font_11_75" transform="matrix(6.97385,0,0,-6.97385,104.62965,348.3083)"/>
|
||||
<use data-text="v" xlink:href="#font_11_112" transform="matrix(6.97385,0,0,-6.97385,110.96191,348.3083)"/>
|
||||
<use data-text="B" xlink:href="#font_8_3" transform="matrix(9.96264,0,0,-9.96264,115.644649,352.68028)"/>
|
||||
<use data-text="m" xlink:href="#font_11_75" transform="matrix(6.97385,0,0,-6.97385,124.75764,349.06529)"/>
|
||||
<use data-text="v" xlink:href="#font_11_112" transform="matrix(6.97385,0,0,-6.97385,131.0899,349.06529)"/>
|
||||
<use data-text="β" xlink:href="#font_8_1" transform="matrix(9.96264,0,0,-9.96264,135.77265,352.68028)"/>
|
||||
<use data-text="t" xlink:href="#font_7_10" transform="matrix(6.97385,0,0,-6.97385,142.34464,354.17527)"/>
|
||||
<use data-text="," xlink:href="#font_7_4" transform="matrix(6.97385,0,0,-6.97385,145.35736,354.17527)"/>
|
||||
<use data-text="k" xlink:href="#font_7_8" transform="matrix(6.97385,0,0,-6.97385,147.7215,354.17527)"/>
|
||||
<use data-text="B" xlink:href="#font_8_3" transform="matrix(9.96264,0,0,-9.96264,152.62265,352.68028)"/>
|
||||
<use data-text="p" xlink:href="#font_11_84" transform="matrix(6.97385,0,0,-6.97385,161.73566,349.06529)"/>
|
||||
<use data-text="r" xlink:href="#font_11_96" transform="matrix(6.97385,0,0,-6.97385,166.13617,349.06529)"/>
|
||||
<use data-text="′" xlink:href="#font_9_3" transform="matrix(6.97385,0,0,-6.97385,169.74466,348.3083)"/>
|
||||
<use data-text="H" xlink:href="#font_20_1" transform="matrix(9.96264,0,0,-9.96264,172.53964,352.68028)"/>
|
||||
<use data-text="p" xlink:href="#font_11_84" transform="matrix(6.97385,0,0,-6.97385,182.37665,348.3083)"/>
|
||||
<use data-text="r" xlink:href="#font_11_96" transform="matrix(6.97385,0,0,-6.97385,186.77716,348.3083)"/>
|
||||
<use data-text="1" xlink:href="#font_2_82" transform="matrix(6.97385,0,0,-6.97385,1.597641,371.60929)"/>
|
||||
<use data-text="8" xlink:href="#font_2_51" transform="matrix(6.97385,0,0,-6.97385,6.1097185,371.60929)"/>
|
||||
<use data-text="e" xlink:href="#font_0_50" transform="matrix(9.96264,0,0,-9.96264,15.603645,371.60929)"/>
|
||||
<use data-text="n" xlink:href="#font_0_77" transform="matrix(9.96264,0,0,-9.96264,20.85395,371.60929)"/>
|
||||
<use data-text="d" xlink:href="#font_0_47" transform="matrix(9.96264,0,0,-9.96264,27.220086,371.60929)"/>
|
||||
<path transform="matrix(1,0,0,-1,.6596451,379.38029)" stroke-width=".797" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M0 0H368.504"/>
|
||||
<use data-text="1" xlink:href="#font_1_82" transform="matrix(9.96264,0,0,-9.96264,182.42066,642.9203)"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 216 KiB |
125321
assets/mcrps_learning/basis_functions.csv
Normal file
1282
assets/mcrps_learning/constant.svg
Normal file
|
After Width: | Height: | Size: 95 KiB |
2575
assets/mcrps_learning/constant_mv.svg
Normal file
|
After Width: | Height: | Size: 177 KiB |
2270
assets/mcrps_learning/constant_pr.svg
Normal file
|
After Width: | Height: | Size: 158 KiB |
983
assets/mcrps_learning/knot_placement.svg
Normal file
|
After Width: | Height: | Size: 1.7 MiB |
209
assets/mcrps_learning/knots_plot/index.qmd
Normal file
@@ -0,0 +1,209 @@
|
||||
---
|
||||
title: "Knots-Demo"
|
||||
date: 2025-07-10
|
||||
format:
|
||||
revealjs:
|
||||
embed-resources: true
|
||||
execute:
|
||||
daemon: false
|
||||
highlight-style: github
|
||||
---
|
||||
|
||||
|
||||
```{ojs}
|
||||
d3 = require("d3@7")
|
||||
```
|
||||
|
||||
```{ojs}
|
||||
bsplineData = FileAttachment("basis_functions.csv").csv({ typed: true })
|
||||
```
|
||||
|
||||
```{ojs}
|
||||
function updateChartInner(g, x, y, linesGroup, color, line, data) {
|
||||
// Update axes with transitions
|
||||
x.domain([0, d3.max(data, d => d.x)]);
|
||||
g.select(".x-axis").transition().duration(1500).call(d3.axisBottom(x).ticks(10));
|
||||
y.domain([0, d3.max(data, d => d.y)]);
|
||||
g.select(".y-axis").transition().duration(1500).call(d3.axisLeft(y).ticks(5));
|
||||
|
||||
// Group data by basis function
|
||||
const dataByFunction = Array.from(d3.group(data, d => d.b));
|
||||
const keyFn = d => d[0];
|
||||
|
||||
// Update basis function lines
|
||||
const u = linesGroup.selectAll("path").data(dataByFunction, keyFn);
|
||||
u.join(
|
||||
enter => enter.append("path").attr("fill","none").attr("stroke-width",3)
|
||||
.attr("stroke", (_, i) => color(i)).attr("d", d => line(d[1].map(pt => ({x: pt.x, y: 0}))))
|
||||
.style("opacity",0),
|
||||
update => update,
|
||||
exit => exit.transition().duration(1000).style("opacity",0).remove()
|
||||
)
|
||||
.transition().duration(1000)
|
||||
.attr("d", d => line(d[1]))
|
||||
.attr("stroke", (_, i) => color(i))
|
||||
.style("opacity",1);
|
||||
}
|
||||
|
||||
chart = {
|
||||
// State variables for selected parameters
|
||||
let selectedMu = 0.5;
|
||||
let selectedSig = 1;
|
||||
let selectedNonc = 0;
|
||||
let selectedTailw = 1;
|
||||
const filteredData = () => bsplineData.filter(d =>
|
||||
Math.abs(selectedMu - d.mu) < 0.001 &&
|
||||
d.sig === selectedSig &&
|
||||
d.nonc === selectedNonc &&
|
||||
d.tailw === selectedTailw
|
||||
);
|
||||
const container = d3.create("div")
|
||||
.style("max-width", "none")
|
||||
.style("width", "100%");;
|
||||
const controlsContainer = container.append("div")
|
||||
.style("display", "flex")
|
||||
.style("gap", "20px");
|
||||
// slider controls
|
||||
const sliders = [
|
||||
{ label: 'Mu', get: () => selectedMu, set: v => selectedMu = v, min: 0.1, max: 0.9, step: 0.2 },
|
||||
{ label: 'Sigma', get: () => Math.log2(selectedSig), set: v => selectedSig = 2 ** v, min: -2, max: 2, step: 1 },
|
||||
{ label: 'Noncentrality', get: () => selectedNonc, set: v => selectedNonc = v, min: -4, max: 4, step: 2 },
|
||||
{ label: 'Tailweight', get: () => Math.log2(selectedTailw), set: v => selectedTailw = 2 ** v, min: -2, max: 2, step: 1 }
|
||||
];
|
||||
// Build slider controls with D3 data join
|
||||
const sliderCont = controlsContainer.selectAll('div').data(sliders).join('div')
|
||||
.style('display','flex').style('align-items','center').style('gap','10px')
|
||||
.style('flex','1').style('min-width','0px');
|
||||
sliderCont.append('label').text(d => d.label + ':').style('font-size','20px');
|
||||
sliderCont.append('input')
|
||||
.attr('type','range').attr('min', d => d.min).attr('max', d => d.max).attr('step', d => d.step)
|
||||
.property('value', d => d.get())
|
||||
.on('input', function(event, d) {
|
||||
const val = +this.value; d.set(val);
|
||||
d3.select(this.parentNode).select('span').text(d.label.match(/Sigma|Tailweight/) ? 2**val : val);
|
||||
updateChart(filteredData());
|
||||
})
|
||||
.style('width', '100%');
|
||||
sliderCont.append('span').text(d => (d.label.match(/Sigma|Tailweight/) ? d.get() : d.get()))
|
||||
.style('font-size','20px');
|
||||
|
||||
// Add Reset button to clear all sliders to their defaults
|
||||
controlsContainer.append('button')
|
||||
.text('Reset')
|
||||
.style('font-size', '20px')
|
||||
.style('align-self', 'center')
|
||||
.style('margin-left', 'auto')
|
||||
.on('click', () => {
|
||||
// reset state vars
|
||||
selectedMu = 0.5;
|
||||
selectedSig = 1;
|
||||
selectedNonc = 0;
|
||||
selectedTailw = 1;
|
||||
// update input positions
|
||||
sliderCont.selectAll('input').property('value', d => d.get());
|
||||
// update displayed labels
|
||||
sliderCont.selectAll('span')
|
||||
.text(d => d.label.match(/Sigma|Tailweight/) ? (2**d.get()) : d.get());
|
||||
// redraw chart
|
||||
updateChart(filteredData());
|
||||
});
|
||||
|
||||
// Build SVG
|
||||
const width = 1200;
|
||||
const height = 450;
|
||||
const margin = {top: 40, right: 20, bottom: 40, left: 40};
|
||||
const innerWidth = width - margin.left - margin.right;
|
||||
const innerHeight = height - margin.top - margin.bottom;
|
||||
|
||||
// Set controls container width to match SVG plot width
|
||||
controlsContainer.style("max-width", "none").style("width", "100%");
|
||||
// Distribute each control evenly and make sliders full-width
|
||||
controlsContainer.selectAll("div").style("flex", "1").style("min-width", "0px");
|
||||
controlsContainer.selectAll("input").style("width", "100%").style("box-sizing", "border-box");
|
||||
|
||||
// Create scales
|
||||
const x = d3.scaleLinear()
|
||||
.domain([0, 1])
|
||||
.range([0, innerWidth]);
|
||||
|
||||
const y = d3.scaleLinear()
|
||||
.domain([0, 1])
|
||||
.range([innerHeight, 0]);
|
||||
|
||||
// Create a color scale for the basis functions
|
||||
const color = d3.scaleOrdinal(d3.schemeCategory10);
|
||||
|
||||
// Create SVG
|
||||
const svg = d3.create("svg")
|
||||
.attr("width", "100%")
|
||||
.attr("height", "auto")
|
||||
.attr("viewBox", [0, 0, width, height])
|
||||
.attr("preserveAspectRatio", "xMidYMid meet")
|
||||
.attr("style", "max-width: 100%; height: auto;");
|
||||
|
||||
// Create the chart group
|
||||
const g = svg.append("g")
|
||||
.attr("transform", `translate(${margin.left},${margin.top})`);
|
||||
|
||||
// Add axes
|
||||
const xAxis = g.append("g")
|
||||
.attr("transform", `translate(0,${innerHeight})`)
|
||||
.attr("class", "x-axis")
|
||||
.call(d3.axisBottom(x).ticks(10))
|
||||
.style("font-size", "20px");
|
||||
|
||||
const yAxis = g.append("g")
|
||||
.attr("class", "y-axis")
|
||||
.call(d3.axisLeft(y).ticks(5))
|
||||
.style("font-size", "20px");
|
||||
|
||||
// Add a horizontal line at y = 0
|
||||
g.append("line")
|
||||
.attr("x1", 0)
|
||||
.attr("x2", innerWidth)
|
||||
.attr("y1", y(0))
|
||||
.attr("y2", y(0))
|
||||
.attr("stroke", "#000")
|
||||
.attr("stroke-opacity", 0.2);
|
||||
|
||||
// Add gridlines
|
||||
g.append("g")
|
||||
.attr("class", "grid-lines")
|
||||
.selectAll("line")
|
||||
.data(y.ticks(5))
|
||||
.join("line")
|
||||
.attr("x1", 0)
|
||||
.attr("x2", innerWidth)
|
||||
.attr("y1", d => y(d))
|
||||
.attr("y2", d => y(d))
|
||||
.attr("stroke", "#ccc")
|
||||
.attr("stroke-opacity", 0.5);
|
||||
|
||||
// Create a line generator
|
||||
const line = d3.line()
|
||||
.x(d => x(d.x))
|
||||
.y(d => y(d.y))
|
||||
.curve(d3.curveBasis);
|
||||
|
||||
// Group to contain the basis function lines
|
||||
const linesGroup = g.append("g")
|
||||
.attr("class", "basis-functions");
|
||||
|
||||
// Store the current basis functions for transition
|
||||
let currentBasisFunctions = new Map();
|
||||
|
||||
// Function to update the chart with new data
|
||||
function updateChart(data) {
|
||||
updateChartInner(g, x, y, linesGroup, color, line, data);
|
||||
}
|
||||
|
||||
// Store the update function
|
||||
svg.node().update = updateChart;
|
||||
|
||||
// Initial render
|
||||
updateChart(filteredData());
|
||||
|
||||
container.node().appendChild(svg.node());
|
||||
return container.node();
|
||||
}
|
||||
```
|
||||
BIN
assets/mcrps_learning/naive_table_df.rds
Normal file
BIN
assets/mcrps_learning/pars_data.rds
Normal file
BIN
assets/mcrps_learning/performance_data.rds
Normal file
5103
assets/mcrps_learning/pointwise.svg
Normal file
|
After Width: | Height: | Size: 337 KiB |
BIN
assets/mcrps_learning/profoc_langs.png
Normal file
|
After Width: | Height: | Size: 25 KiB |
3476
assets/mcrps_learning/smooth_best.svg
Normal file
|
After Width: | Height: | Size: 234 KiB |
BIN
assets/mcrps_learning/web_pres.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
assets/mcrps_learning/weights_h.rds
Normal file
BIN
assets/mcrps_learning/weights_q.rds
Normal file
BIN
assets/minmaxload/overview.rds
Normal file
BIN
assets/minmaxload/plot_overview.rds
Normal file
BIN
assets/ngas/residuals.RData
Normal file
1105
assets/ondir/ondir_flow.excalidraw
Normal file
4
assets/ondir/ondir_flow.svg
Normal file
|
After Width: | Height: | Size: 29 KiB |
687
assets/revealjs/apa-old-doi-prefix.csl
Normal file
@@ -0,0 +1,687 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="never">
|
||||
<info>
|
||||
<title>American Psychological Association 6th edition ("DOI:" DOI prefix)</title>
|
||||
<title-short>APA</title-short>
|
||||
<id>http://www.zotero.org/styles/apa-old-doi-prefix</id>
|
||||
<link href="http://www.zotero.org/styles/apa-old-doi-prefix" rel="self"/>
|
||||
<link href="http://owl.english.purdue.edu/owl/resource/560/01/" rel="documentation"/>
|
||||
<author>
|
||||
<name>Simon Kornblith</name>
|
||||
<email>simon@simonster.com</email>
|
||||
</author>
|
||||
<contributor>
|
||||
<name>Bruce D'Arcus</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Curtis M. Humphrey</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Richard Karnesky</name>
|
||||
<email>karnesky+zotero@gmail.com</email>
|
||||
<uri>http://arc.nucapt.northwestern.edu/Richard_Karnesky</uri>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Sebastian Karcher</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name> Brenton M. Wiernik</name>
|
||||
<email>zotero@wiernik.org</email>
|
||||
</contributor>
|
||||
<category citation-format="author-date"/>
|
||||
<category field="psychology"/>
|
||||
<category field="generic-base"/>
|
||||
<updated>2017-09-05T01:06:39+00:00</updated>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
</info>
|
||||
<locale xml:lang="en">
|
||||
<terms>
|
||||
<term name="editortranslator" form="short">
|
||||
<single>ed. & trans.</single>
|
||||
<multiple>eds. & trans.</multiple>
|
||||
</term>
|
||||
<term name="translator" form="short">
|
||||
<single>trans.</single>
|
||||
<multiple>trans.</multiple>
|
||||
</term>
|
||||
</terms>
|
||||
</locale>
|
||||
<macro name="container-contributors">
|
||||
<choose>
|
||||
<if type="chapter paper-conference entry-dictionary entry-encyclopedia" match="any">
|
||||
<group delimiter=", ">
|
||||
<names variable="container-author" delimiter=", ">
|
||||
<name and="symbol" initialize-with=". " delimiter=", "/>
|
||||
<label form="short" prefix=" (" text-case="title" suffix=")"/>
|
||||
</names>
|
||||
<names variable="editor translator" delimiter=", ">
|
||||
<name and="symbol" initialize-with=". " delimiter=", "/>
|
||||
<label form="short" prefix=" (" text-case="title" suffix=")"/>
|
||||
</names>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="secondary-contributors">
|
||||
<choose>
|
||||
<if type="article-journal chapter paper-conference entry-dictionary entry-encyclopedia" match="none">
|
||||
<group delimiter=", " prefix=" (" suffix=")">
|
||||
<names variable="container-author" delimiter=", ">
|
||||
<name and="symbol" initialize-with=". " delimiter=", "/>
|
||||
<label form="short" prefix=", " text-case="title"/>
|
||||
</names>
|
||||
<names variable="editor translator" delimiter=", ">
|
||||
<name and="symbol" initialize-with=". " delimiter=", "/>
|
||||
<label form="short" prefix=", " text-case="title"/>
|
||||
</names>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="author">
|
||||
<names variable="author">
|
||||
<name name-as-sort-order="all" and="symbol" sort-separator=", " initialize-with="." delimiter=", " delimiter-precedes-last="always"/>
|
||||
<label form="short" prefix=" (" suffix=")" text-case="capitalize-first"/>
|
||||
<substitute>
|
||||
<names variable="editor"/>
|
||||
<names variable="translator"/>
|
||||
<choose>
|
||||
<if type="report">
|
||||
<text variable="publisher"/>
|
||||
<text macro="title"/>
|
||||
</if>
|
||||
<else>
|
||||
<text macro="title"/>
|
||||
</else>
|
||||
</choose>
|
||||
</substitute>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="author-short">
|
||||
<choose>
|
||||
<if type="patent" variable="number" match="all">
|
||||
<text macro="patent-number"/>
|
||||
</if>
|
||||
<else>
|
||||
<names variable="author">
|
||||
<name form="short" and="symbol" delimiter=", " initialize-with=". "/>
|
||||
<substitute>
|
||||
<names variable="editor"/>
|
||||
<names variable="translator"/>
|
||||
<choose>
|
||||
<if type="report">
|
||||
<text variable="publisher"/>
|
||||
<text variable="title" form="short" font-style="italic"/>
|
||||
</if>
|
||||
<else-if type="legal_case">
|
||||
<text variable="title" font-style="italic"/>
|
||||
</else-if>
|
||||
<else-if type="book graphic motion_picture song" match="any">
|
||||
<text variable="title" form="short" font-style="italic"/>
|
||||
</else-if>
|
||||
<else-if type="bill legislation" match="any">
|
||||
<text variable="title" form="short"/>
|
||||
</else-if>
|
||||
<else-if variable="reviewed-author">
|
||||
<choose>
|
||||
<if variable="reviewed-title" match="none">
|
||||
<text variable="title" form="short" font-style="italic" prefix="Review of "/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="title" form="short" quotes="true"/>
|
||||
</else>
|
||||
</choose>
|
||||
</else-if>
|
||||
<else>
|
||||
<text variable="title" form="short" quotes="true"/>
|
||||
</else>
|
||||
</choose>
|
||||
</substitute>
|
||||
</names>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="patent-number">
|
||||
<!-- genre: U.S. Patent number: 123,445-->
|
||||
<group delimiter=" ">
|
||||
<group delimiter=" ">
|
||||
<text variable="genre"/>
|
||||
<text term="issue" form="short" text-case="capitalize-first"/>
|
||||
</group>
|
||||
<text variable="number"/>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="access">
|
||||
<choose>
|
||||
<if type="thesis report" match="any">
|
||||
<choose>
|
||||
<if variable="DOI" match="any">
|
||||
<text variable="DOI" prefix="DOI: /"/>
|
||||
</if>
|
||||
<else-if variable="URL" match="any">
|
||||
<group>
|
||||
<text variable="URL"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if variable="archive" match="any">
|
||||
<group>
|
||||
<text term="retrieved" text-case="capitalize-first" suffix=" "/>
|
||||
<text term="from" suffix=" "/>
|
||||
<text variable="archive" suffix="."/>
|
||||
<text variable="archive_location" prefix=" (" suffix=")"/>
|
||||
</group>
|
||||
</else-if>
|
||||
</choose>
|
||||
</if>
|
||||
<else>
|
||||
<choose>
|
||||
<if variable="DOI">
|
||||
<text variable="DOI" prefix="DOI: "/>
|
||||
</if>
|
||||
<else>
|
||||
<choose>
|
||||
<if type="post post-weblog webpage" match="any">
|
||||
<group delimiter=" ">
|
||||
<text term="retrieved" text-case="capitalize-first" suffix=" "/>
|
||||
<group>
|
||||
<date variable="accessed" form="text" suffix=", "/>
|
||||
</group>
|
||||
<text term="from"/>
|
||||
<text variable="URL"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<group>
|
||||
<text variable="URL"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</else>
|
||||
</choose>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="title">
|
||||
<choose>
|
||||
<if type="book graphic manuscript motion_picture report song speech thesis" match="any">
|
||||
<choose>
|
||||
<if variable="version" type="book" match="all">
|
||||
<!---This is a hack until we have a computer program type -->
|
||||
<text variable="title"/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="title" font-style="italic"/>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
<else-if variable="reviewed-author">
|
||||
<choose>
|
||||
<if variable="reviewed-title">
|
||||
<group delimiter=" ">
|
||||
<text variable="title"/>
|
||||
<group delimiter=", " prefix="[" suffix="]">
|
||||
<text variable="reviewed-title" font-style="italic" prefix="Review of "/>
|
||||
<names variable="reviewed-author" delimiter=", ">
|
||||
<label form="verb-short" suffix=" "/>
|
||||
<name and="symbol" initialize-with=". " delimiter=", "/>
|
||||
</names>
|
||||
</group>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<!-- assume `title` is title of reviewed work -->
|
||||
<group delimiter=", " prefix="[" suffix="]">
|
||||
<text variable="title" font-style="italic" prefix="Review of "/>
|
||||
<names variable="reviewed-author" delimiter=", ">
|
||||
<label form="verb-short" suffix=" "/>
|
||||
<name and="symbol" initialize-with=". " delimiter=", "/>
|
||||
</names>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</else-if>
|
||||
<else-if type="patent" variable="number" match="all">
|
||||
<text macro="patent-number" font-style="italic"/>
|
||||
</else-if>
|
||||
<else>
|
||||
<text variable="title"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="title-plus-extra">
|
||||
<text macro="title"/>
|
||||
<choose>
|
||||
<if type="report thesis" match="any">
|
||||
<group prefix=" (" suffix=")" delimiter=", ">
|
||||
<group delimiter=" ">
|
||||
<choose>
|
||||
<if variable="genre" match="any">
|
||||
<text variable="genre"/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="collection-title"/>
|
||||
</else>
|
||||
</choose>
|
||||
<text variable="number" prefix="No. "/>
|
||||
</group>
|
||||
<group delimiter=" ">
|
||||
<text term="version" text-case="capitalize-first"/>
|
||||
<text variable="version"/>
|
||||
</group>
|
||||
<text macro="edition"/>
|
||||
</group>
|
||||
</if>
|
||||
<else-if type="post-weblog webpage" match="any">
|
||||
<text variable="genre" prefix=" [" suffix="]"/>
|
||||
</else-if>
|
||||
<else-if variable="version">
|
||||
<group delimiter=" " prefix=" (" suffix=")">
|
||||
<text term="version" text-case="capitalize-first"/>
|
||||
<text variable="version"/>
|
||||
</group>
|
||||
</else-if>
|
||||
</choose>
|
||||
<text macro="format" prefix=" [" suffix="]"/>
|
||||
</macro>
|
||||
<macro name="format">
|
||||
<choose>
|
||||
<if match="any" variable="medium">
|
||||
<text variable="medium" text-case="capitalize-first"/>
|
||||
</if>
|
||||
<else-if type="dataset" match="any">
|
||||
<text value="Data set"/>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="publisher">
|
||||
<choose>
|
||||
<if type="report" match="any">
|
||||
<group delimiter=": ">
|
||||
<text variable="publisher-place"/>
|
||||
<text variable="publisher"/>
|
||||
</group>
|
||||
</if>
|
||||
<else-if type="thesis" match="any">
|
||||
<group delimiter=", ">
|
||||
<text variable="publisher"/>
|
||||
<text variable="publisher-place"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="patent">
|
||||
<group delimiter=": ">
|
||||
<text variable="publisher-place"/>
|
||||
<choose>
|
||||
<if variable="publisher">
|
||||
<text variable="publisher"/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="authority"/>
|
||||
</else>
|
||||
</choose>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="post-weblog webpage" match="none">
|
||||
<group delimiter=", ">
|
||||
<choose>
|
||||
<if variable="event version" type="speech motion_picture" match="none">
|
||||
<!-- Including version is to avoid printing the programming language for computerProgram /-->
|
||||
<text variable="genre"/>
|
||||
</if>
|
||||
</choose>
|
||||
<choose>
|
||||
<if type="article-journal article-magazine article-newspaper" match="none">
|
||||
<group delimiter=": ">
|
||||
<choose>
|
||||
<if variable="publisher-place">
|
||||
<text variable="publisher-place"/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="event-place"/>
|
||||
</else>
|
||||
</choose>
|
||||
<text variable="publisher"/>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</group>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="event">
|
||||
<choose>
|
||||
<if variable="container-title" match="none">
|
||||
<choose>
|
||||
<if variable="event">
|
||||
<choose>
|
||||
<if variable="genre" match="none">
|
||||
<text term="presented at" text-case="capitalize-first" suffix=" "/>
|
||||
<text variable="event"/>
|
||||
</if>
|
||||
<else>
|
||||
<group delimiter=" ">
|
||||
<text variable="genre" text-case="capitalize-first"/>
|
||||
<text term="presented at"/>
|
||||
<text variable="event"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
<else-if type="speech">
|
||||
<text variable="genre" text-case="capitalize-first"/>
|
||||
</else-if>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="issued">
|
||||
<choose>
|
||||
<if type="bill legal_case legislation" match="none">
|
||||
<choose>
|
||||
<if variable="issued">
|
||||
<group prefix=" (" suffix=")">
|
||||
<date variable="issued">
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<text variable="year-suffix"/>
|
||||
<choose>
|
||||
<if type="speech" match="any">
|
||||
<date variable="issued">
|
||||
<date-part prefix=", " name="month"/>
|
||||
</date>
|
||||
</if>
|
||||
<else-if type="article-journal bill book chapter graphic legal_case legislation motion_picture paper-conference report song dataset" match="none">
|
||||
<date variable="issued">
|
||||
<date-part prefix=", " name="month"/>
|
||||
<date-part prefix=" " name="day"/>
|
||||
</date>
|
||||
</else-if>
|
||||
</choose>
|
||||
</group>
|
||||
</if>
|
||||
<else-if variable="status">
|
||||
<group prefix=" (" suffix=")">
|
||||
<text variable="status"/>
|
||||
<text variable="year-suffix" prefix="-"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else>
|
||||
<group prefix=" (" suffix=")">
|
||||
<text term="no date" form="short"/>
|
||||
<text variable="year-suffix" prefix="-"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="issued-sort">
|
||||
<choose>
|
||||
<if type="article-journal bill book chapter graphic legal_case legislation motion_picture paper-conference report song dataset" match="none">
|
||||
<date variable="issued">
|
||||
<date-part name="year"/>
|
||||
<date-part name="month"/>
|
||||
<date-part name="day"/>
|
||||
</date>
|
||||
</if>
|
||||
<else>
|
||||
<date variable="issued">
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="issued-year">
|
||||
<choose>
|
||||
<if variable="issued">
|
||||
<group delimiter="/">
|
||||
<date variable="original-date" form="text"/>
|
||||
<group>
|
||||
<date variable="issued">
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
<text variable="year-suffix"/>
|
||||
</group>
|
||||
</group>
|
||||
</if>
|
||||
<else-if variable="status">
|
||||
<text variable="status"/>
|
||||
<text variable="year-suffix" prefix="-"/>
|
||||
</else-if>
|
||||
<else>
|
||||
<text term="no date" form="short"/>
|
||||
<text variable="year-suffix" prefix="-"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="edition">
|
||||
<choose>
|
||||
<if is-numeric="edition">
|
||||
<group delimiter=" ">
|
||||
<number variable="edition" form="ordinal"/>
|
||||
<text term="edition" form="short"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="edition"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="locators">
|
||||
<choose>
|
||||
<if type="article-journal article-magazine" match="any">
|
||||
<group prefix=", " delimiter=", ">
|
||||
<group>
|
||||
<text variable="volume" font-style="bold"/>
|
||||
<text variable="issue" prefix="(" suffix=")"/>
|
||||
</group>
|
||||
<text variable="page"/>
|
||||
</group>
|
||||
<choose>
|
||||
<!--for advanced online publication-->
|
||||
<if variable="issued">
|
||||
<choose>
|
||||
<if variable="page issue" match="none">
|
||||
<text variable="status" prefix=". "/>
|
||||
</if>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</if>
|
||||
<else-if type="article-newspaper">
|
||||
<group delimiter=" " prefix=", ">
|
||||
<label variable="page" form="short"/>
|
||||
<text variable="page"/>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="book graphic motion_picture report song chapter paper-conference entry-encyclopedia entry-dictionary" match="any">
|
||||
<group prefix=" (" suffix=")" delimiter=", ">
|
||||
<choose>
|
||||
<if type="report" match="none">
|
||||
<!-- edition for report is included in title-plus-extra /-->
|
||||
<text macro="edition"/>
|
||||
</if>
|
||||
</choose>
|
||||
<choose>
|
||||
<if variable="volume" match="any">
|
||||
<group>
|
||||
<text term="volume" form="short" text-case="capitalize-first" suffix=" "/>
|
||||
<number variable="volume" form="numeric"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<group>
|
||||
<text term="volume" form="short" plural="true" text-case="capitalize-first" suffix=" "/>
|
||||
<number variable="number-of-volumes" form="numeric" prefix="1–"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
<group>
|
||||
<label variable="page" form="short" suffix=" "/>
|
||||
<text variable="page"/>
|
||||
</group>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="legal_case">
|
||||
<group prefix=" (" suffix=")" delimiter=" ">
|
||||
<text variable="authority"/>
|
||||
<choose>
|
||||
<if variable="container-title" match="any">
|
||||
<!--Only print year for cases published in reporters-->
|
||||
<date variable="issued" form="numeric" date-parts="year"/>
|
||||
</if>
|
||||
<else>
|
||||
<date variable="issued" form="text"/>
|
||||
</else>
|
||||
</choose>
|
||||
</group>
|
||||
</else-if>
|
||||
<else-if type="bill legislation" match="any">
|
||||
<date variable="issued" prefix=" (" suffix=")">
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="citation-locator">
|
||||
<group>
|
||||
<choose>
|
||||
<if locator="chapter">
|
||||
<label variable="locator" form="long" text-case="capitalize-first"/>
|
||||
</if>
|
||||
<else>
|
||||
<label variable="locator" form="short"/>
|
||||
</else>
|
||||
</choose>
|
||||
<text variable="locator" prefix=" "/>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="container">
|
||||
<choose>
|
||||
<if type="post-weblog webpage" match="none">
|
||||
<group>
|
||||
<choose>
|
||||
<if type="chapter paper-conference entry-encyclopedia" match="any">
|
||||
<text term="in" text-case="capitalize-first" suffix=" "/>
|
||||
</if>
|
||||
</choose>
|
||||
<group delimiter=", ">
|
||||
<text macro="container-contributors"/>
|
||||
<text macro="secondary-contributors"/>
|
||||
<text macro="container-title"/>
|
||||
</group>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="container-title">
|
||||
<choose>
|
||||
<if type="article article-journal article-magazine article-newspaper" match="any">
|
||||
<text variable="container-title" font-style="italic" text-case="title"/>
|
||||
</if>
|
||||
<else-if type="bill legal_case legislation" match="none">
|
||||
<text variable="container-title" font-style="italic"/>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="legal-cites">
|
||||
<choose>
|
||||
<if type="legal_case" match="any">
|
||||
<group prefix=", " delimiter=" ">
|
||||
<choose>
|
||||
<if variable="container-title">
|
||||
<text variable="volume"/>
|
||||
<text variable="container-title"/>
|
||||
<group delimiter=" ">
|
||||
<!--change to label variable="section" as that becomes available -->
|
||||
<text term="section" form="symbol"/>
|
||||
<text variable="section"/>
|
||||
</group>
|
||||
<text variable="page"/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="number" prefix="No. "/>
|
||||
</else>
|
||||
</choose>
|
||||
</group>
|
||||
</if>
|
||||
<else-if type="bill legislation" match="any">
|
||||
<group delimiter=", " prefix=", ">
|
||||
<choose>
|
||||
<if variable="number">
|
||||
<!--There's a public law number-->
|
||||
<text variable="number" prefix="Pub. L. No. "/>
|
||||
<group delimiter=" ">
|
||||
<!--change to label variable="section" as that becomes available -->
|
||||
<text term="section" form="symbol"/>
|
||||
<text variable="section"/>
|
||||
</group>
|
||||
<group delimiter=" ">
|
||||
<text variable="volume"/>
|
||||
<text variable="container-title"/>
|
||||
<text variable="page-first"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<group delimiter=" ">
|
||||
<text variable="volume"/>
|
||||
<text variable="container-title"/>
|
||||
<!--change to label variable="section" as that becomes available -->
|
||||
<text term="section" form="symbol"/>
|
||||
<text variable="section"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</group>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="original-date">
|
||||
<choose>
|
||||
<if variable="original-date">
|
||||
<group prefix="(" suffix=")" delimiter=" ">
|
||||
<!---This should be localized-->
|
||||
<text value="Original work published"/>
|
||||
<date variable="original-date" form="text"/>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<citation et-al-min="3" et-al-use-first="1" et-al-subsequent-min="3" et-al-subsequent-use-first="1" disambiguate-add-year-suffix="true" disambiguate-add-names="true" disambiguate-add-givenname="true" collapse="year" givenname-disambiguation-rule="primary-name">
|
||||
<sort>
|
||||
<key macro="author"/>
|
||||
<key macro="issued-sort"/>
|
||||
</sort>
|
||||
<layout prefix="(" suffix=")" delimiter="; ">
|
||||
<group delimiter=", ">
|
||||
<text macro="author-short"/>
|
||||
<text macro="issued-year"/>
|
||||
<text macro="citation-locator"/>
|
||||
</group>
|
||||
</layout>
|
||||
</citation>
|
||||
<bibliography hanging-indent="true" et-al-min="8" et-al-use-first="6" et-al-use-last="true" entry-spacing="0" line-spacing="2">
|
||||
<sort>
|
||||
<key macro="author"/>
|
||||
<key macro="issued-sort" sort="ascending"/>
|
||||
<key macro="title"/>
|
||||
</sort>
|
||||
<layout>
|
||||
<group suffix=".">
|
||||
<group delimiter=". ">
|
||||
<text macro="author"/>
|
||||
<text macro="issued"/>
|
||||
<text macro="title-plus-extra"/>
|
||||
<text macro="container"/>
|
||||
</group>
|
||||
<text macro="legal-cites"/>
|
||||
<text macro="locators"/>
|
||||
<group delimiter=", " prefix=". ">
|
||||
<text macro="event"/>
|
||||
<text macro="publisher"/>
|
||||
</group>
|
||||
</group>
|
||||
<text macro="access" prefix=" "/>
|
||||
<text macro="original-date" prefix=" "/>
|
||||
</layout>
|
||||
</bibliography>
|
||||
</style>
|
||||
25
assets/revealjs/clone_title_slide.html
Normal file
@@ -0,0 +1,25 @@
|
||||
<!--
|
||||
Below is the original version of: https://stackoverflow.com/questions/76261113/repeat-title-slide-at-end-of-reveal-js-presentation-and-add-additionnal-slides-a
|
||||
Which *clones* the title slide to the placeholder slide.
|
||||
You can add the placeholder slide like this:
|
||||
## {.placeholder-for-titleSlide visibility="uncounted"}
|
||||
-->
|
||||
|
||||
<script>
|
||||
function move_titleSlide() {
|
||||
var titleSlide = document.querySelector('section#title-slide');
|
||||
var titleSlideClone = titleSlide.cloneNode(true);
|
||||
titleSlideClone.id = 'title-slide-cloned';
|
||||
var placeholder = document.querySelector('section.placeholder-for-titleSlide');
|
||||
var visibility = placeholder.getAttribute('data-visibility');
|
||||
if (visibility !== null) {
|
||||
titleSlideClone.setAttribute('data-visibility', visibility);
|
||||
}
|
||||
placeholder.replaceWith(titleSlideClone);
|
||||
Reveal.sync();
|
||||
}
|
||||
|
||||
window.document.addEventListener("DOMContentLoaded", function (event) {
|
||||
move_titleSlide();
|
||||
});
|
||||
</script>
|
||||
35
assets/revealjs/custom.html
Normal file
@@ -0,0 +1,35 @@
|
||||
<script src="assets/revealjs/custom.js"></script>
|
||||
|
||||
<div
|
||||
style="position: fixed; bottom: 10px; right: 20px; display: flex; justify-content: flex-end; align-items: center; gap: 20px; flex-wrap: wrap;">
|
||||
<a href="https://www.uni-due.de/">
|
||||
<img src="assets/ude_signet.svg" alt="Uni Duisburg-Essen Logo" style="height: 4vh; width: auto;">
|
||||
</a>
|
||||
<a href="https://www.hemf.wiwi.uni-due.de/en/">
|
||||
<img src="assets/hecf_signet.svg" alt="HECF Logo" style="height: 4vh; width: auto;">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function move_titleSlide() {
|
||||
var titleSlide = document.querySelector('section#title-slide');
|
||||
var placeholder = document.querySelector('section.placeholder-for-titleSlide');
|
||||
|
||||
if (titleSlide && placeholder) {
|
||||
// Transfer visibility attribute from placeholder to title slide
|
||||
var visibility = placeholder.getAttribute('data-visibility');
|
||||
if (visibility !== null) {
|
||||
titleSlide.setAttribute('data-visibility', visibility);
|
||||
}
|
||||
|
||||
// Move the title slide to replace the placeholder
|
||||
placeholder.parentNode.replaceChild(titleSlide, placeholder);
|
||||
|
||||
Reveal.sync();
|
||||
}
|
||||
}
|
||||
|
||||
window.document.addEventListener("DOMContentLoaded", function (event) {
|
||||
move_titleSlide();
|
||||
});
|
||||
</script>
|
||||
7
assets/revealjs/custom.js
Normal file
@@ -0,0 +1,7 @@
|
||||
window.MathJax = {
|
||||
tex: {
|
||||
tags: 'ams'
|
||||
},
|
||||
displayAlign: "left",
|
||||
displayIndent: "0em",
|
||||
};
|
||||
254
assets/revealjs/custom.scss
Normal file
@@ -0,0 +1,254 @@
|
||||
:root {
|
||||
--col_lightgray: #e7e7e7;
|
||||
--col_blue: #000088;
|
||||
--col_smooth_expost: #a7008b;
|
||||
--col_constant: #dd9002;
|
||||
--col_optimum: #666666;
|
||||
--col_smooth: #187a00;
|
||||
--col_pointwise: #008790;
|
||||
--col_green: #61B94C;
|
||||
--col_orange: #ffa600;
|
||||
--col_yellow: #FCE135;
|
||||
--col_amber_1: #FFF8E0FF;
|
||||
--col_amber_2: #FFEBB2FF;
|
||||
--col_amber_3: #FFDF81FF;
|
||||
--col_amber_4: #FFD44EFF;
|
||||
--col_amber_5: #FFCA27FF;
|
||||
--col_amber_6: #FFC006FF;
|
||||
--col_amber_7: #FFB200FF;
|
||||
--col_amber_8: #FF9F00FF;
|
||||
--col_amber_9: #FF8E00FF;
|
||||
--col_amber_10: #FF6E00FF;
|
||||
--col_blue_1: #E3F2FDFF;
|
||||
--col_blue_2: #BADEFAFF;
|
||||
--col_blue_3: #90CAF8FF;
|
||||
--col_blue_4: #64B4F6FF;
|
||||
--col_blue_5: #41A5F4FF;
|
||||
--col_blue_6: #2096F2FF;
|
||||
--col_blue_7: #1E87E5FF;
|
||||
--col_blue_8: #1976D2FF;
|
||||
--col_blue_9: #1465BFFF;
|
||||
--col_blue_10: #0C46A0FF;
|
||||
--col_blue-grey_1: #EBEEF1FF;
|
||||
--col_blue-grey_2: #CED8DCFF;
|
||||
--col_blue-grey_3: #B0BEC5FF;
|
||||
--col_blue-grey_4: #90A4ADFF;
|
||||
--col_blue-grey_5: #78909BFF;
|
||||
--col_blue-grey_6: #5F7D8BFF;
|
||||
--col_blue-grey_7: #536D79FF;
|
||||
--col_blue-grey_8: #455964FF;
|
||||
--col_blue-grey_9: #37464EFF;
|
||||
--col_blue-grey_10: #263238FF;
|
||||
--col_brown_1: #EEEBE9FF;
|
||||
--col_brown_2: #D7CCC7FF;
|
||||
--col_brown_3: #BBAAA4FF;
|
||||
--col_brown_4: #A0877FFF;
|
||||
--col_brown_5: #8C6D63FF;
|
||||
--col_brown_6: #795447FF;
|
||||
--col_brown_7: #6C4C40FF;
|
||||
--col_brown_8: #5D3F37FF;
|
||||
--col_brown_9: #4D332DFF;
|
||||
--col_brown_10: #3E2622FF;
|
||||
--col_cyan_1: #DFF7F9FF;
|
||||
--col_cyan_2: #B2EBF2FF;
|
||||
--col_cyan_3: #7FDEEAFF;
|
||||
--col_cyan_4: #4CD0E0FF;
|
||||
--col_cyan_5: #26C5D9FF;
|
||||
--col_cyan_6: #00BBD3FF;
|
||||
--col_cyan_7: #00ACC0FF;
|
||||
--col_cyan_8: #0097A6FF;
|
||||
--col_cyan_9: #00838EFF;
|
||||
--col_cyan_10: #005F64FF;
|
||||
--col_deep-orange_1: #FAE9E6FF;
|
||||
--col_deep-orange_2: #FFCCBBFF;
|
||||
--col_deep-orange_3: #FFAB91FF;
|
||||
--col_deep-orange_4: #FF8A65FF;
|
||||
--col_deep-orange_5: #FF7043FF;
|
||||
--col_deep-orange_6: #FF5721FF;
|
||||
--col_deep-orange_7: #F3511EFF;
|
||||
--col_deep-orange_8: #E54A19FF;
|
||||
--col_deep-orange_9: #D84314FF;
|
||||
--col_deep-orange_10: #BF350CFF;
|
||||
--col_deep-purple_1: #ECE6F6FF;
|
||||
--col_deep-purple_2: #D1C4E9FF;
|
||||
--col_deep-purple_3: #B29DDAFF;
|
||||
--col_deep-purple_4: #9474CCFF;
|
||||
--col_deep-purple_5: #7E57C1FF;
|
||||
--col_deep-purple_6: #6639B7FF;
|
||||
--col_deep-purple_7: #5E34B1FF;
|
||||
--col_deep-purple_8: #512CA7FF;
|
||||
--col_deep-purple_9: #45269FFF;
|
||||
--col_deep-purple_10: #311A92FF;
|
||||
--col_green_1: #E7F4E9FF;
|
||||
--col_green_2: #C7E5C9FF;
|
||||
--col_green_3: #A5D6A6FF;
|
||||
--col_green_4: #80C684FF;
|
||||
--col_green_5: #66BA6AFF;
|
||||
--col_green_6: #4CAE50FF;
|
||||
--col_green_7: #439F46FF;
|
||||
--col_green_8: #388D3BFF;
|
||||
--col_green_9: #2D7D32FF;
|
||||
--col_green_10: #1A5E1FFF;
|
||||
--col_grey_1: #F9F9F9FF;
|
||||
--col_grey_2: #F4F4F4FF;
|
||||
--col_grey_3: #EDEDEDFF;
|
||||
--col_grey_4: #DFDFDFFF;
|
||||
--col_grey_5: #BDBDBDFF;
|
||||
--col_grey_6: #9E9E9EFF;
|
||||
--col_grey_7: #747474FF;
|
||||
--col_grey_8: #606060FF;
|
||||
--col_grey_9: #414141FF;
|
||||
--col_grey_10: #202020FF;
|
||||
--col_indigo_1: #E7EAF6FF;
|
||||
--col_indigo_2: #C5CAE9FF;
|
||||
--col_indigo_3: #9FA7D9FF;
|
||||
--col_indigo_4: #7985CBFF;
|
||||
--col_indigo_5: #5B6BBFFF;
|
||||
--col_indigo_6: #3F51B4FF;
|
||||
--col_indigo_7: #3948ABFF;
|
||||
--col_indigo_8: #303F9FFF;
|
||||
--col_indigo_9: #273492FF;
|
||||
--col_indigo_10: #19227EFF;
|
||||
--col_light-blue_1: #E0F4FEFF;
|
||||
--col_light-blue_2: #B2E5FCFF;
|
||||
--col_light-blue_3: #80D3F9FF;
|
||||
--col_light-blue_4: #4EC3F7FF;
|
||||
--col_light-blue_5: #28B6F6FF;
|
||||
--col_light-blue_6: #02A9F3FF;
|
||||
--col_light-blue_7: #029AE5FF;
|
||||
--col_light-blue_8: #0187D1FF;
|
||||
--col_light-blue_9: #0177BDFF;
|
||||
--col_light-blue_10: #00579AFF;
|
||||
--col_light-green_1: #F1F8E9FF;
|
||||
--col_light-green_2: #DCECC7FF;
|
||||
--col_light-green_3: #C5E0A5FF;
|
||||
--col_light-green_4: #ADD480FF;
|
||||
--col_light-green_5: #9BCC65FF;
|
||||
--col_light-green_6: #8BC34AFF;
|
||||
--col_light-green_7: #7BB241FF;
|
||||
--col_light-green_8: #679F38FF;
|
||||
--col_light-green_9: #548B2EFF;
|
||||
--col_light-green_10: #33681EFF;
|
||||
--col_lime_1: #F8FAE6FF;
|
||||
--col_lime_2: #F0F3C3FF;
|
||||
--col_lime_3: #E5ED9BFF;
|
||||
--col_lime_4: #DCE674FF;
|
||||
--col_lime_5: #D3E057FF;
|
||||
--col_lime_6: #CCDC39FF;
|
||||
--col_lime_7: #BFCA33FF;
|
||||
--col_lime_8: #AEB32BFF;
|
||||
--col_lime_9: #9E9D24FF;
|
||||
--col_lime_10: #817717FF;
|
||||
--col_orange_1: #FFF2DFFF;
|
||||
--col_orange_2: #FFDFB2FF;
|
||||
--col_orange_3: #FFCC7FFF;
|
||||
--col_orange_4: #FFB74CFF;
|
||||
--col_orange_5: #FFA626FF;
|
||||
--col_orange_6: #FF9800FF;
|
||||
--col_orange_7: #FA8C00FF;
|
||||
--col_orange_8: #F47B00FF;
|
||||
--col_orange_9: #EE6C00FF;
|
||||
--col_orange_10: #E55100FF;
|
||||
--col_pink_1: #FCE4EBFF;
|
||||
--col_pink_2: #F8BAD0FF;
|
||||
--col_pink_3: #F38EB1FF;
|
||||
--col_pink_4: #F06192FF;
|
||||
--col_pink_5: #EB3F79FF;
|
||||
--col_pink_6: #E91E63FF;
|
||||
--col_pink_7: #D81A5FFF;
|
||||
--col_pink_8: #C1185AFF;
|
||||
--col_pink_9: #AC1357FF;
|
||||
--col_pink_10: #870D4EFF;
|
||||
--col_purple_1: #F2E5F4FF;
|
||||
--col_purple_2: #E0BEE6FF;
|
||||
--col_purple_3: #CD92D8FF;
|
||||
--col_purple_4: #B967C7FF;
|
||||
--col_purple_5: #AB46BBFF;
|
||||
--col_purple_6: #9B26B0FF;
|
||||
--col_purple_7: #8D24AAFF;
|
||||
--col_purple_8: #7A1FA1FF;
|
||||
--col_purple_9: #6A1A99FF;
|
||||
--col_purple_10: #4A138CFF;
|
||||
--col_red_1: #FFEBEDFF;
|
||||
--col_red_2: #FFCCD2FF;
|
||||
--col_red_3: #EE9999FF;
|
||||
--col_red_4: #E57272FF;
|
||||
--col_red_5: #EE5250FF;
|
||||
--col_red_6: #F34335FF;
|
||||
--col_red_7: #E53934FF;
|
||||
--col_red_8: #D22E2EFF;
|
||||
--col_red_9: #C52727FF;
|
||||
--col_red_10: #B71B1BFF;
|
||||
--col_teal_1: #DFF2F1FF;
|
||||
--col_teal_2: #B2DFDAFF;
|
||||
--col_teal_3: #7FCBC4FF;
|
||||
--col_teal_4: #4CB6ACFF;
|
||||
--col_teal_5: #26A599FF;
|
||||
--col_teal_6: #009687FF;
|
||||
--col_teal_7: #00887AFF;
|
||||
--col_teal_8: #00796BFF;
|
||||
--col_teal_9: #00685BFF;
|
||||
--col_teal_10: #004C3FFF;
|
||||
--col_yellow_1: #FFFDE6FF;
|
||||
--col_yellow_2: #FFF8C4FF;
|
||||
--col_yellow_3: #FFF49DFF;
|
||||
--col_yellow_4: #FFF176FF;
|
||||
--col_yellow_5: #FFED58FF;
|
||||
--col_yellow_6: #FFEB3AFF;
|
||||
--col_yellow_7: #FDD834FF;
|
||||
--col_yellow_8: #FABF2CFF;
|
||||
--col_yellow_9: #F8A725FF;
|
||||
--col_yellow_10: #F47F17FF;
|
||||
}
|
||||
|
||||
/*-- scss:defaults --*/
|
||||
|
||||
// $body-bg: #ffffff;
|
||||
// $body-color: #7a6f69;
|
||||
// $link-color: #005088;
|
||||
// $selection-color: #00b0dc;
|
||||
|
||||
// $presentation-heading-color: $selection-color;
|
||||
// $tabset-border-color: #bbb3b0;
|
||||
|
||||
/*-- scss:rules --*/
|
||||
.slide-number,
|
||||
.reveal.has-logo .slide-number {
|
||||
bottom: 14px !important;
|
||||
left: 50px !important;
|
||||
top: unset !important;
|
||||
color: #777777 !important;
|
||||
}
|
||||
|
||||
// Alternatively center the slide numbers
|
||||
// .slide-number,
|
||||
// .reveal.has-logo .slide-number {
|
||||
// bottom: 10px !important;
|
||||
// left: 50% !important;
|
||||
// top: unset !important;
|
||||
// color: #777777 !important;
|
||||
// }
|
||||
|
||||
.sup-zero-width {
|
||||
display: inline-block;
|
||||
vertical-align: super;
|
||||
font-size: smaller;
|
||||
width: 0px;
|
||||
}
|
||||
|
||||
.zero-width {
|
||||
display: inline-block;
|
||||
width: 0px;
|
||||
}
|
||||
|
||||
.fa {
|
||||
width: 1.25em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* Grey out links inside a row with class "greyed-out" */
|
||||
tr.greyed-out,
|
||||
tr.greyed-out a {
|
||||
color: var(--col_grey_3) !important;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
36
assets/revealjs/move_title_slide.html
Normal file
@@ -0,0 +1,36 @@
|
||||
<!--
|
||||
Below is an adjusted version of: https://stackoverflow.com/questions/76261113/repeat-title-slide-at-end-of-reveal-js-presentation-and-add-additionnal-slides-a
|
||||
Which *moves* the title slide to the placeholder slide.
|
||||
You can add the placeholder slide like this:
|
||||
## {.placeholder-for-titleSlide visibility="uncounted"}
|
||||
-->
|
||||
|
||||
<script>
|
||||
function move_titleSlide() {
|
||||
var titleSlide = document.querySelector('section#title-slide');
|
||||
var placeholder = document.querySelector('section.placeholder-for-titleSlide');
|
||||
|
||||
if (titleSlide && placeholder) {
|
||||
// Transfer visibility attribute from placeholder to title slide
|
||||
var visibility = placeholder.getAttribute('data-visibility');
|
||||
if (visibility !== null) {
|
||||
titleSlide.setAttribute('data-visibility', visibility);
|
||||
}
|
||||
|
||||
// Move the title slide to replace the placeholder
|
||||
placeholder.parentNode.replaceChild(titleSlide, placeholder);
|
||||
|
||||
Reveal.sync();
|
||||
}
|
||||
}
|
||||
|
||||
window.document.addEventListener("DOMContentLoaded", function (event) {
|
||||
move_titleSlide();
|
||||
});
|
||||
</script>
|
||||
|
||||
<style>
|
||||
#title-slide .subtitle {
|
||||
margin-bottom: 2.5rem
|
||||
}
|
||||
</style>
|
||||
172
assets/revealjs/sydney.scss
Normal file
@@ -0,0 +1,172 @@
|
||||
// See https://quarto.org/docs/presentations/revealjs/themes.html#saas-variables
|
||||
|
||||
$brand-red: #004c93;
|
||||
$brand-blue: #efe4bf;
|
||||
$brand-yellow: #ec7206;
|
||||
$brand-charcoal: #424242;
|
||||
$brand-gray: #F1F1F1;
|
||||
$brand-grey: #F1F1F1;
|
||||
|
||||
/*-- scss:defaults --*/
|
||||
|
||||
// icons
|
||||
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css");
|
||||
|
||||
// fonts
|
||||
@import url('https://fonts.googleapis.com/css2?family=Roboto');
|
||||
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed);
|
||||
@import url(https://fonts.googleapis.com/css?family=Source+Code+Pro);
|
||||
@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');
|
||||
|
||||
$roboto: 'Roboto', Arial, sans-serif;
|
||||
$roboto-cond: 'Roboto Condensed', Arial, sans-serif;
|
||||
$code-font: 'Source Code Pro', 'Lucida Console', Monaco, monospace;
|
||||
$blockquote-font: 'Patrick Hand', cursive;
|
||||
|
||||
// colors
|
||||
$body-bg: #fff;
|
||||
$body-color: #222;
|
||||
$link-color: #2a76dd;
|
||||
$selection-bg: lighten($link-color, 25%);
|
||||
|
||||
|
||||
// website
|
||||
$font-family-sans-serif: $roboto !default;
|
||||
$font-family-monospace: $code-font !default;
|
||||
$body-color: $brand-charcoal;
|
||||
$navbar-bg: #333333;
|
||||
//$navbar-color: #0F2E3D;
|
||||
$link-color: $brand-red;
|
||||
|
||||
// headings
|
||||
$presentation-heading-font: $roboto-cond !default;
|
||||
$presentation-heading-color: #383d3d !default;
|
||||
|
||||
// title slide
|
||||
$presentation-title-slide-text-align: left;
|
||||
|
||||
// body
|
||||
$presentation-font-size-root: 28px; // default is 40px
|
||||
$presentation-font-smaller: 0.9 !default;
|
||||
$presentation-line-height: 1.3; // default is 1.3
|
||||
|
||||
// code blocks
|
||||
|
||||
$code-block-bg: $brand-grey;
|
||||
// $code-block-border-color: lighten($body-color, 60%);
|
||||
$code-block-font-size: 0.75em;
|
||||
// $code-color: $brand-charcoal; // var(–quarto-hl-fu-color);
|
||||
// $code-bg: transparent;
|
||||
|
||||
|
||||
/*-- scss:rules --*/
|
||||
|
||||
|
||||
// .reveal .slide-background:first-child {
|
||||
// background-image: url("https://raw.githubusercontent.com/DATA2002/data/master/usydlogo-white.svg");
|
||||
// background-repeat: no-repeat;
|
||||
// background-position: 95% 95%;
|
||||
// background-size: 15%;
|
||||
// background-color: $brand-red;
|
||||
// }
|
||||
|
||||
|
||||
.reveal .slide aside,
|
||||
.reveal .slide div.aside {
|
||||
position: absolute;
|
||||
bottom: 20px;
|
||||
font-size: 0.6em;
|
||||
color: #8f8f8f;
|
||||
}
|
||||
|
||||
.red {
|
||||
color: $brand-red;
|
||||
}
|
||||
|
||||
.blue {
|
||||
color: $brand-blue;
|
||||
}
|
||||
|
||||
.slide smaller {
|
||||
font-size: $presentation-font-smaller;
|
||||
}
|
||||
|
||||
.blockquote,
|
||||
.reveal .slide blockquote {
|
||||
/* border-left: 3px solid $text-muted; */
|
||||
/* padding-left: 0.5em; */
|
||||
|
||||
display: block;
|
||||
position: relative;
|
||||
font-family: $blockquote-font;
|
||||
font-size: 1.2em;
|
||||
/* font-style: italic; */
|
||||
color: $brand-charcoal;
|
||||
margin-top: 0.1em;
|
||||
margin-bottom: 0.2em;
|
||||
border-left: solid 0.3rem $brand-blue;
|
||||
/* matches with .callouts */
|
||||
border-top: solid 1px silver;
|
||||
border-bottom: solid 1px silver;
|
||||
border-right: solid 1px silver;
|
||||
/* box-shadow: 0 0 6px rgba(0,0,0,0.5); */
|
||||
/* background-color: #e64626; */
|
||||
|
||||
/* padding: 0.5em; */
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
|
||||
|
||||
width: unset;
|
||||
margin: var(--r-block-margin) auto;
|
||||
padding: 0.625rem 1.75rem;
|
||||
}
|
||||
|
||||
.reveal .slides section .callout {
|
||||
font-size: inherit;
|
||||
}
|
||||
|
||||
.reveal .callout.callout-style-simple .callout-body,
|
||||
.reveal .callout.callout-style-default .callout-body,
|
||||
.reveal .callout.callout-style-simple div.callout-caption,
|
||||
.reveal .callout.callout-style-default div.callout-caption {
|
||||
font-size: inherit;
|
||||
}
|
||||
|
||||
.reveal .callout.callout-style-default .callout-icon::before,
|
||||
.reveal .callout.callout-style-simple .callout-icon::before {
|
||||
height: 2rem;
|
||||
width: 2rem;
|
||||
background-size: 2rem 2rem;
|
||||
}
|
||||
|
||||
.reveal .title-slide {
|
||||
background-color: $brand-blue;
|
||||
}
|
||||
|
||||
// customisations for printing to pdf
|
||||
|
||||
.print-pdf .reveal .title-slide {
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
.print-pdf {
|
||||
|
||||
section.has-dark-background,
|
||||
section.has-dark-background h1,
|
||||
section.has-dark-background h2,
|
||||
section.has-dark-background h3,
|
||||
section.has-dark-background h4,
|
||||
section.has-dark-background h5,
|
||||
section.has-dark-background h6 {
|
||||
color: #000000 !important;
|
||||
}
|
||||
}
|
||||
|
||||
.print-pdf .reveal .slide-background {
|
||||
background-color: #FFFFFF !important;
|
||||
}
|
||||
|
||||
.print-pdf .reveal .has-dark-background {
|
||||
color: #222 !important;
|
||||
}
|
||||
66
assets/ude_logo.svg
Normal file
@@ -0,0 +1,66 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg version="1.2" viewBox="0 0 1052.3625 414.5675" height="414.5675" width="1052.3625" id="ude-logo" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<style type="text/css">
|
||||
path { fill:#003B7A;fill-opacity:1;fill-rule:nonzero;stroke:none }
|
||||
</style>
|
||||
<defs id="defs6">
|
||||
<clipPath id="clipPath16" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path18" d="m 0,331.654 841.89,0 L 841.89,0 0,0 0,331.654 Z"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g transform="matrix(1.25,0,0,-1.25,0,414.5675)">
|
||||
<g>
|
||||
<g clip-path="url(#clipPath16)">
|
||||
<g transform="translate(59.0718,56.833)">
|
||||
<path d="m 0,0 c 0,5.246 -1.094,7.721 -4.588,7.721 -8.666,0 -13.325,-17.549 -13.325,-29.418 0,-5.17 1.093,-7.645 4.659,-7.645 C -4.588,-29.342 0,-11.869 0,0 m -14.271,-36.988 c -8.595,0 -13.474,5.24 -13.474,15.074 0,17.035 7.501,37.279 24.249,37.279 8.446,0 13.324,-5.314 13.324,-15.146 0,-16.963 -7.426,-37.207 -24.099,-37.207"/>
|
||||
</g>
|
||||
<g transform="translate(82.8135,20.5752)">
|
||||
<path d="m 0,0 c -1.384,-6.846 -4.079,-14.199 -13.98,-14.199 -3.352,0 -6.482,0.437 -6.482,1.238 0,0.287 0.072,0.506 0.145,0.799 l 1.529,5.099 c 0.147,0.36 0.294,0.508 0.512,0.508 0.216,0 1.455,-0.365 2.984,-0.365 4.951,0 5.825,3.348 6.772,8.008 l 5.68,28.836 -5.172,0 c -0.436,0 -1.018,0.074 -1.018,0.73 0,0.291 0.075,0.58 0.144,0.871 l 0.874,4.082 c 0.075,0.651 0.219,0.87 1.021,0.87 l 5.388,0 0.875,4.589 c 1.092,5.897 2.985,11.651 12.959,11.651 3.058,0 7.355,-0.949 7.355,-2.041 0,-0.221 -0.074,-0.363 -0.146,-0.582 L 17.694,44.996 C 17.475,44.559 17.256,44.49 17.11,44.49 c -0.728,0 -2.184,0.944 -4.369,0.944 -3.786,0 -4.296,-2.838 -4.951,-5.825 l -0.654,-3.132 8.3,0 c 0.655,0 0.874,-0.364 0.874,-0.653 0,-0.293 -0.146,-0.586 -0.219,-0.875 L 14.78,30.727 c -0.219,-0.655 -0.291,-0.803 -1.019,-0.803 l -7.864,0 L 0,0 Z"/>
|
||||
</g>
|
||||
<g transform="translate(108.4463,20.5752)">
|
||||
<path d="m 0,0 c -1.384,-6.846 -4.079,-14.199 -13.98,-14.199 -3.35,0 -6.482,0.437 -6.482,1.238 0,0.287 0.072,0.506 0.147,0.799 l 1.528,5.099 c 0.146,0.36 0.29,0.508 0.509,0.508 0.218,0 1.456,-0.365 2.986,-0.365 4.954,0 5.825,3.348 6.772,8.008 l 5.679,28.836 -5.169,0 c -0.437,0 -1.021,0.074 -1.021,0.73 0,0.291 0.073,0.58 0.148,0.871 l 0.873,4.082 c 0.071,0.651 0.219,0.87 1.019,0.87 l 5.388,0 0.873,4.589 c 1.092,5.897 2.986,11.651 12.962,11.651 3.059,0 7.354,-0.949 7.354,-2.041 0,-0.221 -0.072,-0.363 -0.146,-0.582 L 17.691,44.996 C 17.475,44.559 17.257,44.49 17.11,44.49 c -0.728,0 -2.184,0.944 -4.367,0.944 -3.788,0 -4.298,-2.838 -4.953,-5.825 l -0.656,-3.132 8.301,0 c 0.656,0 0.875,-0.364 0.875,-0.653 0,-0.293 -0.146,-0.586 -0.219,-0.875 L 14.78,30.727 c -0.218,-0.655 -0.291,-0.803 -1.019,-0.803 l -7.865,0 L 0,0 Z"/>
|
||||
</g>
|
||||
<g transform="translate(132.6211,41.4697)">
|
||||
<path d="m 0,0 c 3.132,0 12.889,0 12.889,6.697 0,1.893 -1.165,3.573 -3.351,3.573 C 2.694,10.27 0.655,2.693 0,0 m 16.893,-16.453 c 0.073,-0.219 0.219,-0.438 0.219,-0.656 0,-0.95 -6.772,-4.516 -14.199,-4.516 -8.736,0 -12.67,5.459 -12.67,13.543 0,14.562 9.394,24.906 20.607,24.906 6.846,0 10.776,-3.793 10.776,-9.615 0,-13.76 -18.494,-13.76 -22.645,-13.76 0,-2.185 -0.582,-7.791 6.262,-7.791 4.295,0 8.155,2.91 9.248,2.91 0.363,0 0.438,-0.216 0.582,-0.509 l 1.82,-4.512 z"/>
|
||||
</g>
|
||||
<g transform="translate(183.5234,21.9561)" id="g36">
|
||||
<path d="m 0,0 c -0.145,-0.801 -0.291,-0.873 -1.019,-0.873 l -6.771,0 c -0.582,0 -0.947,0.148 -0.947,0.728 0,0.219 0.072,0.508 0.072,0.801 l 4.805,20.752 c 0.365,1.455 0.656,2.91 0.656,4.442 0,1.673 -0.656,2.841 -2.185,2.841 -6.698,0 -9.101,-9.031 -10.266,-14.273 L -18.785,0 c -0.146,-0.801 -0.293,-0.873 -1.021,-0.873 l -6.771,0 c -0.584,0 -0.946,0.148 -0.946,0.728 0,0.219 0.074,0.508 0.074,0.801 l 4.948,21.918 c 0.438,1.819 0.875,3.637 0.875,5.969 0,2.186 -0.656,3.203 -0.656,4.516 0,0.509 0.511,0.656 0.874,0.798 l 5.827,2.26 c 0.219,0.071 0.363,0.221 0.727,0.221 0.802,0 1.457,-3.279 1.457,-7.359 1.965,2.33 6.116,7.359 12.085,7.359 4.734,0 7.355,-3.643 7.355,-7.647 0,-1.892 -0.29,-3.859 -0.727,-5.683 L 0,0 Z"/>
|
||||
</g>
|
||||
<g transform="translate(230.2773,65.1338)" id="g40">
|
||||
<path id="path42" d="m 0,0 c -2.257,0 -4.079,1.822 -4.079,4.078 0,2.186 1.822,4.08 4.079,4.08 2.184,0 4.077,-1.894 4.077,-4.08 C 4.077,1.822 2.184,0 0,0 m -6.917,-42.594 c -0.148,-0.658 -0.22,-1.457 -0.947,-1.457 l -3.861,0 c -0.437,0 -0.728,0.149 -0.728,0.367 0,0.288 0.073,0.649 0.147,0.87 l 6.262,29.49 -5.752,0 c -0.51,0 -0.584,0.219 -0.584,0.511 0,0.145 0,0.288 0.074,0.583 l 0.51,2.328 c 0.146,0.511 0.365,0.8 0.874,0.8 l 9.685,0 c 1.017,0 1.162,-0.07 1.162,-0.582 0,-0.435 -0.218,-1.017 -0.362,-1.818 l -6.48,-31.092 z"/>
|
||||
</g>
|
||||
<g transform="translate(275.9316,46.1318)">
|
||||
<path id="path46" d="m 0,0 c 0.219,0.949 0.438,1.967 0.438,2.912 0,2.041 -1.092,3.129 -3.277,3.129 -7.646,0 -9.902,-7.643 -11.65,-15.506 l -3.277,-14.855 c -0.147,-0.512 -0.29,-0.729 -0.875,-0.729 l -3.786,0 c -0.364,0 -0.582,0.149 -0.582,0.436 0,0.144 0,0.363 0.074,0.511 L -17.838,0 c 0.218,0.949 0.437,1.967 0.437,2.912 0,2.041 -1.093,3.129 -3.279,3.129 -7.645,0 -10.483,-9.684 -11.503,-14.488 l -3.352,-15.873 c -0.144,-0.512 -0.287,-0.729 -0.871,-0.729 l -3.788,0 c -0.363,0 -0.582,0.149 -0.582,0.436 0,0.144 0,0.363 0.075,0.511 l 5.166,24.463 c 0.294,1.532 0.513,3.131 0.513,4.155 0,1.453 -0.293,2.91 -0.582,4.367 0,0.291 0.363,0.51 0.654,0.582 l 2.476,1.092 c 0.437,0.144 0.728,0.363 1.018,0.363 0.8,0 1.312,-1.82 1.312,-3.637 0,-1.461 -0.147,-2.33 -0.147,-3.279 l 0.147,0 c 2.402,3.496 5.898,6.916 11.65,6.916 3.495,0 6.116,-1.963 6.116,-6.916 l 0.145,0 C -9.685,7.5 -6.188,10.92 -0.654,10.92 3.132,10.92 5.972,8.957 5.972,5.098 5.972,3.348 5.607,1.674 5.244,0 L 0.072,-24.32 c -0.143,-0.512 -0.29,-0.729 -0.871,-0.729 l -3.788,0 c -0.364,0 -0.581,0.149 -0.581,0.436 0,0.144 0,0.363 0.073,0.511 L 0,0 Z"/>
|
||||
</g>
|
||||
<g transform="translate(320.9395,25.9619)" id="g48">
|
||||
<path id="path50" d="m 0,0 c 4.441,0 8.301,1.891 10.776,5.02 4.732,5.466 7.572,19.009 7.572,26 0,8.519 -4.661,9.099 -9.611,9.099 l -4.66,0 L -4.369,0 0,0 Z m 7.427,45 c 8.372,0 16.892,-0.293 16.892,-14.055 0,-7.134 -2.186,-17.256 -6.481,-25.486 C 13.687,-2.402 6.844,-4.879 -1.821,-4.879 l -8.667,0 c -0.362,0 -0.581,0.149 -0.581,0.512 L -0.729,44.27 C -0.583,44.852 -0.293,45 0.145,45 l 7.282,0 z"/>
|
||||
</g>
|
||||
<g transform="translate(371.4771,47.5127)" id="g52">
|
||||
<path id="path54" d="m 0,0 c 0,3.061 -1.749,5.027 -5.316,5.027 -8.299,0 -10.63,-9.468 -11.431,-13.037 C -12.743,-8.01 0,-8.01 0,0 m 2.184,-21.916 c 0.074,-0.143 0.146,-0.217 0.146,-0.361 0,-0.875 -6.408,-5.172 -13.471,-5.172 -8.227,0 -11.795,5.24 -11.795,13.324 0,12.381 7.572,23.664 18.422,23.664 6.479,0 9.609,-3.932 9.609,-9.32 0,-12.668 -16.017,-12.668 -22.426,-12.74 0,-0.657 -0.072,-1.241 -0.072,-1.823 0,-5.166 2.039,-8.008 6.771,-8.008 6.481,0 9.392,3.493 10.414,3.493 0.29,0 0.509,-0.215 0.653,-0.432 l 1.749,-2.625 z"/>
|
||||
</g>
|
||||
<g transform="translate(385.9688,46.4932)" id="g56">
|
||||
<path id="path58" d="m 0,0 c 0.291,1.531 0.509,3.131 0.509,4.154 0,1.453 -0.29,2.91 -0.581,4.367 0,0.292 0.363,0.51 0.655,0.583 l 2.622,1.091 c 0.437,0.145 0.728,0.364 1.021,0.364 0.581,0 1.38,-2.182 1.38,-4.444 0,-1.453 -0.218,-2.617 -0.218,-3.273 l 0.147,0 c 2.694,3.785 6.698,7.717 13.177,7.717 3.789,0 6.628,-1.963 6.628,-5.823 0,-1.75 -0.362,-3.423 -0.727,-5.097 l -5.169,-24.321 c -0.148,-0.511 -0.294,-0.728 -0.876,-0.728 l -3.785,0 c -0.365,0 -0.584,0.148 -0.584,0.435 0,0.145 0,0.364 0.072,0.512 l 5.097,24.102 c 0.219,0.949 0.438,1.966 0.438,2.912 0,2.041 -1.094,3.129 -3.277,3.129 C 8.667,5.68 4.37,-4.004 3.351,-8.809 L 0,-24.682 c -0.147,-0.511 -0.291,-0.728 -0.872,-0.728 l -3.788,0 c -0.365,0 -0.584,0.148 -0.584,0.435 0,0.145 0,0.364 0.075,0.512 L 0,0 Z"/>
|
||||
</g>
|
||||
<g transform="translate(421.8706,21.8115)" id="g60">
|
||||
<path id="path62" d="m 0,0 c -0.145,-0.512 -0.291,-0.729 -0.872,-0.729 l -3.788,0 c -0.363,0 -0.583,0.149 -0.583,0.436 0,0.145 0,0.363 0.076,0.512 L 5.388,49.805 c 0.073,0.437 0.219,1.019 0.73,1.164 l 3.642,0.873 c 0.144,0 0.363,0.144 0.653,0.144 0.509,0 0.584,-0.216 0.509,-0.58 L 4.151,19.805 4.297,19.658 21.917,35.314 c 0.146,0.073 0.365,0.293 0.583,0.293 0.148,0 0.438,-0.22 0.584,-0.293 l 2.474,-2.037 c 0.147,-0.15 0.293,-0.293 0.293,-0.437 0,-0.295 -0.146,-0.438 -0.293,-0.512 L 9.466,18.859 20.389,1.383 c 0.072,-0.145 0.219,-0.289 0.219,-0.438 0,-0.216 -0.291,-0.507 -0.509,-0.582 l -3.205,-1.967 c -0.219,-0.144 -0.437,-0.218 -0.582,-0.218 -0.218,0 -0.437,0.218 -0.511,0.367 L 3.932,18.641 0,0 Z"/>
|
||||
</g>
|
||||
<g transform="translate(470.0039,47.5127)" id="g64">
|
||||
<path id="path66" d="m 0,0 c 0,3.061 -1.746,5.027 -5.316,5.027 -8.299,0 -10.629,-9.468 -11.433,-13.037 C -12.743,-8.01 0,-8.01 0,0 m 2.185,-21.916 c 0.073,-0.143 0.145,-0.217 0.145,-0.361 0,-0.875 -6.406,-5.172 -13.469,-5.172 -8.228,0 -11.798,5.24 -11.798,13.324 0,12.381 7.575,23.664 18.422,23.664 6.482,0 9.612,-3.932 9.612,-9.32 0,-12.668 -16.017,-12.668 -22.426,-12.74 0,-0.657 -0.074,-1.241 -0.074,-1.823 0,-5.166 2.041,-8.008 6.77,-8.008 6.485,0 9.396,3.493 10.415,3.493 0.292,0 0.51,-0.215 0.656,-0.432 l 1.747,-2.625 z"/>
|
||||
</g>
|
||||
<g transform="translate(484.498,46.4932)" id="g68">
|
||||
<path id="path70" d="m 0,0 c 0.291,1.531 0.509,3.131 0.509,4.154 0,1.453 -0.29,2.91 -0.581,4.367 0,0.292 0.363,0.51 0.655,0.583 l 2.621,1.091 c 0.438,0.145 0.728,0.364 1.021,0.364 0.582,0 1.38,-2.182 1.38,-4.444 0,-1.453 -0.217,-2.617 -0.217,-3.273 l 0.145,0 c 2.696,3.785 6.7,7.717 13.179,7.717 3.788,0 6.628,-1.963 6.628,-5.823 0,-1.75 -0.363,-3.423 -0.729,-5.097 l -5.169,-24.321 c -0.146,-0.511 -0.294,-0.728 -0.874,-0.728 l -3.786,0 c -0.366,0 -0.584,0.148 -0.584,0.435 0,0.145 0,0.364 0.073,0.512 l 5.098,24.102 c 0.218,0.949 0.436,1.966 0.436,2.912 0,2.041 -1.093,3.129 -3.277,3.129 C 8.667,5.68 4.369,-4.004 3.351,-8.809 L 0,-24.682 c -0.146,-0.511 -0.291,-0.728 -0.872,-0.728 l -3.789,0 c -0.364,0 -0.583,0.148 -0.583,0.435 0,0.145 0,0.364 0.074,0.512 L 0,0 Z"/>
|
||||
</g>
|
||||
<path id="path72" d="m 0,122.181 841.89,0 0,209.473 -841.89,0 0,-209.473 z"/>
|
||||
<g transform="translate(57.2827,204.4829)" id="g74">
|
||||
<path id="path76" d="m 0,0 c -2.759,-1.852 -6.607,-2.191 -11.827,-2.191 l -12.117,0 0,41.984 12.117,0 c 5.22,0 9.018,-0.238 11.827,-2.127 3.386,-2.296 5.401,-6.66 5.401,-12.4 l 0,-12.867 C 5.401,6.658 3.386,2.236 0,0 m -4.02,23.254 c 0,6.09 -2.347,8.438 -8.438,8.438 l -2.184,0 0,-25.788 2.184,0 c 6.025,0 8.438,2.415 8.438,8.506 l 0,8.844 z M 51.456,-3.225 c -10.17,0 -15.049,4.829 -15.049,14.653 l 0,28.365 9.307,0 0,-26.246 c 0,-6.084 0.918,-8.668 5.742,-8.668 4.877,0 5.74,2.636 5.74,8.668 l 0,26.246 9.301,0 0,-28.365 c 0,-9.882 -4.825,-14.653 -15.041,-14.653 m 48.232,1.034 -0.06,41.984 9.307,0 0.053,-41.984 -9.3,0 z m 53.46,35.615 c -2.873,0 -4.648,-1.611 -4.648,-3.853 0,-2.128 1.667,-3.681 5.05,-5.169 4.251,-1.838 7.987,-3.043 10.509,-5.052 2.811,-2.244 4.422,-5.633 4.422,-9.708 0,-7.644 -5.735,-12.915 -14.47,-12.915 -6.605,0 -11.653,2.873 -15.165,8.492 l 7.241,5.117 c 2.413,-3.969 4.772,-5.799 8.158,-5.799 3.216,0 5.281,1.889 5.281,4.412 0,2.296 -1.493,4.024 -4.647,5.346 -4.137,1.719 -7.757,2.934 -10.396,4.987 -2.93,2.31 -4.423,5.517 -4.423,9.417 0,7.412 5.221,12.184 13.609,12.184 6.083,0 10.74,-2.52 13.724,-7.408 l -6.663,-4.776 c -2.242,3.172 -4.71,4.725 -7.582,4.725 m 67.077,-13.509 c 4.477,-1.431 6.713,-4.757 6.713,-10.048 0,-8.212 -4.82,-12.058 -14.7,-12.058 l -14.181,0 0,41.984 13.897,0 c 9.473,0 14.125,-3.398 14.125,-10.687 0,-4.538 -1.775,-7.346 -5.854,-9.191 m -9.189,13.388 -3.676,0 0,-10.399 3.676,0 c 3.79,0 5.624,1.73 5.624,5.223 0,3.621 -1.782,5.176 -5.624,5.176 m 0.346,-16.934 -4.022,0 0,-11.715 4.022,0 c 4.187,0 6.203,1.836 6.203,5.845 0,4.022 -2.016,5.87 -6.203,5.87 m 61.044,-19.594 c -10.173,0 -15.051,4.829 -15.051,14.653 l 0,28.365 9.3,0 0,-26.246 c 0,-6.084 0.925,-8.668 5.751,-8.668 4.874,0 5.741,2.636 5.741,8.668 l 0,26.246 9.297,0 0,-28.365 c 0,-9.882 -4.824,-14.653 -15.038,-14.653 m 68.678,19.239 9.18,-18.205 -10.268,0 -8.158,17.111 -3.104,0 0,-17.111 -9.298,0 0,41.984 10.557,0 c 5.631,0 9.882,-0.174 12.924,-1.787 3.788,-2.004 5.857,-5.742 5.857,-10.613 0,-5.633 -2.702,-9.655 -7.69,-11.379 m -9.769,16.656 -2.581,0 0,-11.024 2.581,0 c 5.631,0 8.151,0.801 8.151,5.508 0,4.717 -2.52,5.516 -8.151,5.516 m 61.037,-19.807 0,7.174 14.303,0 0,-22.746 -4.131,0 -1.329,3.398 c -2.466,-2.766 -5.219,-3.962 -9.066,-3.962 -4.242,0 -7.87,1.421 -10.224,3.906 -3.438,3.549 -3.722,7.97 -3.722,14.462 l 0,7.412 c 0,6.427 0.284,10.917 3.722,14.471 2.415,2.525 6.033,3.905 10.504,3.905 8.511,0 13.845,-4.822 14.246,-12.918 l -9.417,0 c -0.226,3.15 -1.901,4.814 -4.829,4.814 -4.591,0 -4.816,-2.918 -4.816,-8.661 l 0,-10.571 c 0,-5.685 0.225,-8.668 4.816,-8.668 3.396,0 4.829,2.004 4.829,6.366 l 0,1.618 -4.886,0 z" style="fill:white !important;"/>
|
||||
</g>
|
||||
<g transform="translate(91.1489,168.4702)" id="g78">
|
||||
<path id="path80" d="m 0,0 0,-8.094 -29.519,0 0,41.98 28.315,0 0,-8.104 -19.012,0 0,-7.527 12.98,0 0,-8.09 -12.98,0 L -20.216,0 0,0 Z m 39.045,27.509 c -2.87,0 -4.647,-1.61 -4.647,-3.852 0,-2.123 1.662,-3.668 5.052,-5.171 4.251,-1.831 7.985,-3.034 10.509,-5.052 2.809,-2.23 4.421,-5.627 4.421,-9.695 0,-7.644 -5.743,-12.921 -14.474,-12.921 -6.598,0 -11.654,2.861 -15.16,8.495 l 7.239,5.111 c 2.413,-3.958 4.767,-5.802 8.158,-5.802 3.209,0 5.28,1.893 5.28,4.42 0,2.295 -1.497,4.021 -4.651,5.338 -4.139,1.726 -7.759,2.927 -10.391,5.002 -2.928,2.295 -4.429,5.512 -4.429,9.415 0,7.413 5.229,12.171 13.609,12.171 6.091,0 10.739,-2.52 13.731,-7.406 L 46.63,22.797 c -2.243,3.161 -4.713,4.712 -7.585,4.712 m 54.037,0 c -2.872,0 -4.655,-1.61 -4.655,-3.852 0,-2.123 1.674,-3.668 5.058,-5.171 4.249,-1.831 7.985,-3.034 10.514,-5.052 2.81,-2.23 4.414,-5.627 4.414,-9.695 0,-7.644 -5.742,-12.921 -14.464,-12.921 -6.611,0 -11.657,2.861 -15.164,8.495 l 7.235,5.111 c 2.407,-3.958 4.768,-5.802 8.151,-5.802 3.222,0 5.287,1.893 5.287,4.42 0,2.295 -1.493,4.021 -4.653,5.338 -4.138,1.726 -7.751,2.927 -10.395,5.002 -2.926,2.295 -4.416,5.512 -4.416,9.415 0,7.413 5.22,12.171 13.604,12.171 6.09,0 10.736,-2.52 13.721,-7.406 l -6.657,-4.765 c -2.242,3.161 -4.709,4.712 -7.58,4.712 M 165.266,0 l 0,-8.094 -29.513,0 0,41.98 28.304,0 0,-8.104 -19.008,0 0,-7.527 12.987,0 0,-8.09 -12.987,0 0,-10.165 20.217,0 z m 50.588,-8.094 -14.754,28.365 0.17,-28.365 -8.091,0 0,41.98 8.952,0 13.44,-25.506 -0.172,25.506 8.095,0 0,-41.98 -7.64,0 z" style="fill:white !important;"/>
|
||||
</g>
|
||||
<g transform="translate(44.564,269.7212)" id="g82">
|
||||
<path id="path84" d="m 0,0 c -7.519,0 -11.122,3.566 -11.122,10.835 l 0,20.974 6.877,0 0,-19.414 c 0,-4.499 0.673,-6.408 4.245,-6.408 3.616,0 4.249,1.955 4.249,6.408 l 0,19.414 6.876,0 0,-20.974 C 11.125,3.527 7.563,0 0,0 m 36.652,0.756 -10.913,20.985 0.125,-20.985 -5.985,0 0,31.053 6.621,0 9.944,-18.86 -0.132,18.86 5.994,0 0,-31.053 -5.654,0 z m 15.033,0 -0.039,31.053 6.883,0 0.039,-31.053 -6.883,0 z m 29.858,0 -7.262,0 -9.509,31.053 6.878,0 6.282,-21.704 6.242,21.704 6.886,0 -9.517,-31.053 z m 36.735,5.993 0,-5.993 -21.824,0 0,31.053 20.933,0 0,-5.988 -14.049,0 0,-5.562 9.593,0 0,-5.989 -9.593,0 0,-7.521 14.94,0 z m 22.898,7.477 6.795,-13.47 -7.602,0 -6.033,12.664 -2.297,0 0,-12.664 -6.878,0 0,31.053 7.814,0 c 4.166,0 7.307,-0.129 9.561,-1.317 2.797,-1.488 4.327,-4.246 4.327,-7.854 0,-4.165 -1.998,-7.128 -5.687,-8.412 m -7.222,12.316 -1.915,0 0,-8.151 1.915,0 c 4.167,0 6.032,0.591 6.032,4.07 0,3.494 -1.865,4.081 -6.032,4.081 m 28.326,0.555 c -2.123,0 -3.439,-1.193 -3.439,-2.849 0,-1.566 1.234,-2.719 3.744,-3.816 3.133,-1.354 5.897,-2.256 7.767,-3.739 2.08,-1.656 3.27,-4.164 3.27,-7.179 0,-5.654 -4.245,-9.559 -10.702,-9.559 -4.883,0 -8.625,2.126 -11.22,6.29 l 5.353,3.777 c 1.788,-2.932 3.532,-4.286 6.033,-4.286 2.381,0 3.915,1.399 3.915,3.262 0,1.703 -1.103,2.984 -3.445,3.951 -3.058,1.277 -5.738,2.166 -7.683,3.698 -2.166,1.704 -3.274,4.082 -3.274,6.968 0,5.479 3.868,9.004 10.063,9.004 4.503,0 7.943,-1.869 10.153,-5.477 l -4.925,-3.527 c -1.663,2.34 -3.484,3.482 -5.61,3.482 m 18.861,-26.341 -0.044,31.053 6.877,0 0.047,-31.053 -6.88,0 z m 27.44,25.065 0,-25.065 -6.886,0 0,25.065 -7.859,0 0,5.988 22.592,0 0,-5.988 -7.847,0 z m 24.161,13.584 5.222,0 0,-5.599 -5.222,0 0,5.599 z m -7.518,0 5.183,0 0,-5.599 -5.183,0 0,5.599 z m 10.403,-7.596 8.923,-31.053 -6.666,0 -1.664,6.203 -9.34,0 -1.616,-6.203 -6.672,0 8.925,31.053 8.11,0 z m -0.719,-19.538 -3.314,14.02 -3.353,-14.02 6.667,0 z m 26.585,13.55 0,-25.065 -6.877,0 0,25.065 -7.861,0 0,5.988 22.597,0 0,-5.988 -7.859,0 z" style="fill:white !important;"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |
46
assets/ude_signet.svg
Normal file
@@ -0,0 +1,46 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="Ebene_1"
|
||||
data-name="Ebene 1"
|
||||
viewBox="0 0 188.964 175.744"
|
||||
version="1.1"
|
||||
sodipodi:docname="ude_signet.svg"
|
||||
width="188.964"
|
||||
height="175.744"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview4"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<defs
|
||||
id="defs1">
|
||||
<style
|
||||
id="style1">.cls-1{fill:#004c93;}</style>
|
||||
</defs>
|
||||
<title
|
||||
id="title1">signet_ude_rgb</title>
|
||||
<path
|
||||
class="cls-1"
|
||||
d="M 174.102,167.072 H 8.67 V 8.676 h 158.4 v 31.05 a 2.05,2.05 0 0 0 1.33,1.919 l 6.527,2.447 a 0.611,0.611 0 0 0 0.215,0.041 0.6,0.6 0 0 0 0.6,-0.6 V 4.336 A 4.336,4.336 0 0 0 171.406,0 H 4.336 A 4.336,4.336 0 0 0 0,4.336 v 167.072 a 4.337,4.337 0 0 0 4.336,4.336 h 169.766 a 1.639,1.639 0 0 0 1.639,-1.639 v -5.4 a 1.638,1.638 0 0 0 -1.639,-1.633 z"
|
||||
id="path1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 74.282,118.574 c 0,14.137 -4.934,23.625 -22.865,23.625 -17.931,0 -22.866,-9.488 -22.866,-23.625 V 77.585 c 0,-1.707 0.379,-1.992 1.992,-1.992 h 8.823 c 1.614,0 1.994,0.285 1.994,1.992 v 40.989 c 0,6.831 0.474,13.378 10.057,13.378 9.583,0 10.057,-6.547 10.057,-13.378 V 77.585 c 0,-1.707 0.379,-1.992 1.992,-1.992 h 8.824 c 1.613,0 1.992,0.285 1.992,1.992 z"
|
||||
id="path2" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 109.765,75.593 c 18.121,0 27.61,5.883 27.61,32.165 0,27.23 -11.007,32.828 -27.895,32.828 H 94.963 c -1.612,0 -1.992,-0.38 -1.992,-1.993 V 77.585 c 0,-1.707 0.38,-1.992 2.087,-1.992 z m -0.57,54.745 c 10.722,0 14.707,-4.649 14.707,-22.771 0,-16.982 -4.08,-21.727 -14.707,-21.727 h -3.415 v 44.5 z"
|
||||
id="path3" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 188.584,138.593 c 0,1.708 -0.284,1.993 -1.9,1.993 h -31.212 c -1.613,0 -1.993,-0.285 -1.993,-1.993 V 77.585 c 0,-1.707 0.38,-1.992 1.993,-1.992 h 31.12 c 1.9,0 2.372,0.19 2.372,1.044 a 4.188,4.188 0 0 1 -0.285,1.329 l -1.8,6.356 a 1.936,1.936 0 0 1 -2.183,1.518 h -18.409 v 15.655 h 16.131 c 1.707,0 1.992,0.285 1.992,1.993 v 6.262 c 0,1.708 -0.38,1.992 -1.992,1.992 h -16.131 v 18.6 h 20.305 c 1.708,0 1.992,0.286 1.992,1.993 z"
|
||||
id="path4" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
3258
assets/voldep/2022_10_14_eur_ref_co2_adj_hvpi_ex_nrg.csv
Normal file
BIN
assets/voldep/crps_classic.Rdata
Normal file
BIN
assets/voldep/crps_df.Rdata
Normal file
BIN
assets/voldep/energy_classic.Rdata
Normal file
BIN
assets/voldep/energy_df.Rdata
Normal file
BIN
assets/voldep/frame.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
1
assets/voldep/frame.svg
Normal file
|
After Width: | Height: | Size: 23 KiB |