diff --git a/DESCRIPTION b/DESCRIPTION index f770544..19973da 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -5,10 +5,10 @@ Version: 2.1.1 Authors@R: c( person("Jean", "Palate", role = c("aut"), email = "palatejean@gmail.com"), - person("Alain", "Quartier-la-Tente", role = c("aut","cre"), + person("Alain", "Quartier-la-Tente", role = c("aut", "cre"), email = "alain.quartier@yahoo.fr", comment = c(ORCID = "0000-0001-7890-3857")), - person("Tanguy", "Barthelemy", role = c("ctb"), + person("Tanguy", "Barthelemy", role = c("ctb", "art"), email ="tanguy.barthelemy@insee.fr"), person("Anna", "Smyk", role = c("ctb"), email ="anna.smyk@insee.fr") diff --git a/NEWS.md b/NEWS.md index e75b03c..90b57f4 100644 --- a/NEWS.md +++ b/NEWS.md @@ -10,6 +10,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ### Changed * `cross_validation()` function renamed to `cve()`, `cross_validation()` is now deprecated. +* New .jar files added (related to [v2.2.0](https://github.com/jdemetra/jdplus-incubator/releases/tag/v2.2.0)) ### Added diff --git a/R/1_moving_average.R b/R/1_moving_average.R index 7194a19..5a9a2c9 100644 --- a/R/1_moving_average.R +++ b/R/1_moving_average.R @@ -75,7 +75,7 @@ NULL #' @export moving_average <- function(x, lags = -length(x), trailing_zero = FALSE, leading_zero = FALSE){ if (inherits(x, "moving_average")) - return (x) + return(x) x <- as.numeric(x) if (trailing_zero) x <- rm_trailing_zero_or_na(x) @@ -193,7 +193,7 @@ setMethod("[", indices <- seq_along(coefs)[i] coefs[-indices] <- 0 if (all(coefs == 0)) - return (moving_average(0, lags = lower_bound(x) + indices - 1)) + return(moving_average(0, lags = lower_bound(x) + indices - 1)) moving_average(coefs, lags = lower_bound(x), leading_zero = TRUE, trailing_zero = TRUE) diff --git a/R/2_finite_filters.R b/R/2_finite_filters.R index a8428fe..8ffe2cb 100644 --- a/R/2_finite_filters.R +++ b/R/2_finite_filters.R @@ -34,17 +34,17 @@ finite_filters.moving_average <- function(sfilter, rfilters = NULL, lfilters = NULL, first_to_last = FALSE){ - if (is.null(lfilters) & !is.null(rfilters)) { + if (is.null(lfilters) && !is.null(rfilters)) { if (first_to_last) { rfilters <- rev(rfilters) } lfilters <- rev(lapply(rfilters, rev.moving_average)) - } else if (!is.null(lfilters) & is.null(rfilters)) { + } else if (!is.null(lfilters) && is.null(rfilters)) { if (!first_to_last) { lfilters <- rev(lfilters) } rfilters <- rev(lapply(lfilters, rev.moving_average)) - } else if (is.null(lfilters) & is.null(rfilters)) { + } else if (is.null(lfilters) && is.null(rfilters)) { rfilters <- lfilters <- list() } @@ -329,7 +329,7 @@ as.matrix.finite_filters <- function(x, sfilter = TRUE, rfilters = TRUE, lfilter sfilter_s <- rfilters_s <- lfilters_s <- index_s <- index_r <- index_l <- NULL if (!any(sfilter, rfilters, lfilters)) - return (NULL) + return(NULL) if (sfilter) { sfilter_s <- list(x@sfilter) index_s <- length(x@rfilters) diff --git a/R/fst_filters.R b/R/fst_filters.R index a9f85d8..4508ee5 100644 --- a/R/fst_filters.R +++ b/R/fst_filters.R @@ -117,7 +117,7 @@ fst.moving_average<-function(weights, lags, passband=pi/6, ...){ fst.finite_filters<-function(weights, lags, passband=pi/6, sfilter = TRUE, rfilters = TRUE, lfilters = FALSE, ...){ if (!any(sfilter, rfilters, lfilters)) - return (NULL) + return(NULL) sfilter_s <- rfilters_s <- lfilters_s <- index_s <- index_r <- index_l <- NULL @@ -184,13 +184,13 @@ mse.default<-function(aweights, sweights, density=c("uniform", "rw"), passband = spectral <- match.arg(density) rslt<-.jcall("jdplus/filters/base/core/AdvancedFiltersToolkit", "[D", "mseDecomposition", sweights, aweights, spectral, passband) - return (c(accuracy=rslt[1], smoothness=rslt[2], timeliness=rslt[3], residual=rslt[4])) + return(c(accuracy=rslt[1], smoothness=rslt[2], timeliness=rslt[3], residual=rslt[4])) } #' @export mse.finite_filters<-function(aweights, sweights = aweights@sfilter, density=c("uniform", "rw"), passband = pi/6, sfilter = TRUE, rfilters = TRUE, lfilters = FALSE, ...){ if (!any(sfilter, rfilters, lfilters)) - return (NULL) + return(NULL) sfilter_s <- rfilters_s <- lfilters_s <- index_s <- index_r <- index_l <- NULL diff --git a/R/implicit_forecast.R b/R/implicit_forecast.R index 0c7a1ce..2ffb0d3 100644 --- a/R/implicit_forecast.R +++ b/R/implicit_forecast.R @@ -61,7 +61,7 @@ implicit_forecast.default <- function(x, coefs){ } #' @export implicit_forecast.matrix <- function(x, coefs){ - result <- do.call(cbind, lapply(seq_len(ncol(x)), function (i) implicit_forecast(x[,i], coefs = coefs))) + result <- do.call(cbind, lapply(seq_len(ncol(x)), function(i) implicit_forecast(x[,i], coefs = coefs))) colnames(result) <- colnames(x) result } diff --git a/R/kernels.R b/R/kernels.R index 0580420..a561ca6 100644 --- a/R/kernels.R +++ b/R/kernels.R @@ -28,7 +28,7 @@ get_kernel <- function(kernel = c("Henderson","Uniform", "Triangular", jkernel <- .jcall("jdplus/toolkit/base/core/data/analysis/DiscreteKernel", "Ljava/util/function/IntToDoubleFunction;", tolower(kernel), h, sd_gauss) - } else{ + } else { jkernel <- .jcall("jdplus/toolkit/base/core/data/analysis/DiscreteKernel", "Ljava/util/function/IntToDoubleFunction;", tolower(kernel), h) diff --git a/R/plots.R b/R/plots.R index 9b94497..1f5a36d 100644 --- a/R/plots.R +++ b/R/plots.R @@ -239,7 +239,7 @@ rm_leading_zero_or_na <- function(x){ } if (is.null(remove_i)){ x - } else{ + } else { x[-remove_i] } } @@ -254,7 +254,7 @@ rm_trailing_zero_or_na <- function(x){ } if (is.null(remove_i)){ x - } else{ + } else { x[-remove_i] } } @@ -269,7 +269,7 @@ rm_trailing_zero <- function(x){ } if (is.null(remove_i)){ x - } else{ + } else { x[-remove_i] } } @@ -288,10 +288,10 @@ remove_bound_NA <- function(x) { j <- j + 1 } - if (is.null(remove_i_first) & is.null(remove_i_last)){ + if (is.null(remove_i_first) && is.null(remove_i_last)){ # list(data = x, leading = 0, # trailing = 0) - } else{ + } else { x <- x[- c(remove_i_first, remove_i_last)] } diff --git a/README.Rmd b/README.Rmd index 61c6cc1..b6b417a 100644 --- a/README.Rmd +++ b/README.Rmd @@ -6,16 +6,26 @@ output: github_document ```{r, echo = FALSE} knitr::opts_chunk$set( - collapse = TRUE, - comment = "#>", - fig.path = "man/figures/README-", - fig.align="center", - fig.width = 8L + collapse = TRUE, + comment = "#>", + fig.path = "man/figures/README-", + fig.align = "center", + fig.width = 8L ) options(max.print = 1000L) ``` -# rjd3filters +# `rjd3filters` <a href="https://rjdverse.github.io/rjd3filters/"><img src="man/figures/logo.png" align="right" height="150" style="float:right; height:150px;"/></a> + +<!-- badges: start --> +[![CRAN status](https://www.r-pkg.org/badges/version/rjd3filters)](https://CRAN.R-project.org/package=rjd3filters) + +[![R-CMD-check](https://github.com/rjdverse/rjd3filters/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/rjdverse/rjd3filters/actions/workflows/R-CMD-check.yaml) +[![lint](https://github.com/rjdverse/rjd3filters/actions/workflows/lint.yaml/badge.svg)](https://github.com/rjdverse/rjd3filters/actions/workflows/lint.yaml) + +[![GH Pages built](https://github.com/rjdverse/rjd3filters/actions/workflows/pkgdown.yaml/badge.svg)](https://github.com/rjdverse/rjd3filters/actions/workflows/pkgdown.yaml) +<!-- badges: end --> + rjd3filters is an R package on linear filters for real-time trend-cycle estimates. It allows to create symmetric and asymmetric moving averages with: @@ -34,20 +44,32 @@ rjd3filters relies on the [rJava](https://CRAN.R-project.org/package=rJava) pack Running rjd3 packages requires **Java 17 or higher**. How to set up such a configuration in R is explained [here](https://jdemetra-new-documentation.netlify.app/#Rconfig) + +### Latest release + To get the current stable version (from the latest release): -```{r, eval = FALSE} +- From GitHub: + +```{r, echo = TRUE, eval = FALSE} # install.packages("remotes") remotes::install_github("rjdverse/rjd3toolkit@*release") remotes::install_github("rjdverse/rjd3filters@*release") ``` +- From [r-universe](https://rjdverse.r-universe.dev/rjd3filters): + +```{r, echo = TRUE, eval = FALSE} +install.packages("rjd3filters", repos = c("https://rjdverse.r-universe.dev", "https://cloud.r-project.org")) +``` + + +### Development version + To get the current development version from GitHub: -```{r, eval = FALSE} +```{r, echo = TRUE, eval = FALSE} # install.packages("remotes") -# Install development version from GitHub -remotes::install_github("rjdverse/rjd3toolkit") remotes::install_github("rjdverse/rjd3filters") ``` diff --git a/README.md b/README.md index e5da835..073f905 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,19 @@ <!-- README.md is generated from README.Rmd. Please edit that file --> -# rjd3filters +# `rjd3filters` <a href="https://rjdverse.github.io/rjd3filters/"><img src="man/figures/logo.png" align="right" height="150" style="float:right; height:150px;"/></a> + +<!-- badges: start --> + +[![CRAN +status](https://www.r-pkg.org/badges/version/rjd3filters)](https://CRAN.R-project.org/package=rjd3filters) + +[![R-CMD-check](https://github.com/rjdverse/rjd3filters/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/rjdverse/rjd3filters/actions/workflows/R-CMD-check.yaml) +[![lint](https://github.com/rjdverse/rjd3filters/actions/workflows/lint.yaml/badge.svg)](https://github.com/rjdverse/rjd3filters/actions/workflows/lint.yaml) + +[![GH Pages +built](https://github.com/rjdverse/rjd3filters/actions/workflows/pkgdown.yaml/badge.svg)](https://github.com/rjdverse/rjd3filters/actions/workflows/pkgdown.yaml) +<!-- badges: end --> rjd3filters is an R package on linear filters for real-time trend-cycle estimates. It allows to create symmetric and asymmetric moving averages @@ -28,20 +40,30 @@ Running rjd3 packages requires **Java 17 or higher**. How to set up such a configuration in R is explained [here](https://jdemetra-new-documentation.netlify.app/#Rconfig) +### Latest release + To get the current stable version (from the latest release): +- From GitHub: + ``` r # install.packages("remotes") remotes::install_github("rjdverse/rjd3toolkit@*release") remotes::install_github("rjdverse/rjd3filters@*release") ``` +- From [r-universe](https://rjdverse.r-universe.dev/rjd3filters): + +``` r +install.packages("rjd3filters", repos = c("https://rjdverse.r-universe.dev", "https://cloud.r-project.org")) +``` + +### Development version + To get the current development version from GitHub: ``` r # install.packages("remotes") -# Install development version from GitHub -remotes::install_github("rjdverse/rjd3toolkit") remotes::install_github("rjdverse/rjd3filters") ``` diff --git a/inst/java/jdplus-filters-base-api-2.1.0.jar b/inst/java/jdplus-filters-base-api-2.2.0.jar similarity index 76% rename from inst/java/jdplus-filters-base-api-2.1.0.jar rename to inst/java/jdplus-filters-base-api-2.2.0.jar index 977f57b..941a9c3 100644 Binary files a/inst/java/jdplus-filters-base-api-2.1.0.jar and b/inst/java/jdplus-filters-base-api-2.2.0.jar differ diff --git a/inst/java/jdplus-filters-base-core-2.1.0.jar b/inst/java/jdplus-filters-base-core-2.2.0.jar similarity index 86% rename from inst/java/jdplus-filters-base-core-2.1.0.jar rename to inst/java/jdplus-filters-base-core-2.2.0.jar index 0d738ec..1894136 100644 Binary files a/inst/java/jdplus-filters-base-core-2.1.0.jar and b/inst/java/jdplus-filters-base-core-2.2.0.jar differ diff --git a/inst/java/jdplus-filters-base-r-2.1.0.jar b/inst/java/jdplus-filters-base-r-2.2.0.jar similarity index 74% rename from inst/java/jdplus-filters-base-r-2.1.0.jar rename to inst/java/jdplus-filters-base-r-2.2.0.jar index 29b37c6..b87e418 100644 Binary files a/inst/java/jdplus-filters-base-r-2.1.0.jar and b/inst/java/jdplus-filters-base-r-2.2.0.jar differ diff --git a/man/figures/logo.png b/man/figures/logo.png new file mode 100644 index 0000000..c010e7b Binary files /dev/null and b/man/figures/logo.png differ diff --git a/man/figures/logo.svg b/man/figures/logo.svg new file mode 100644 index 0000000..42a61d8 --- /dev/null +++ b/man/figures/logo.svg @@ -0,0 +1,556 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 19.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> +<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" + viewBox="0 0 491 566.9" style="enable-background:new 0 0 491 566.9;" xml:space="preserve"> +<style type="text/css"> + .st0{fill:#EDEDED;} + .st1{fill:#EF4144;} + .st2{fill:#0E393F;} + .st3{fill:#5E5F5F;stroke:#BE1E2D;stroke-miterlimit:10;} + .st4{fill:#931A28;} + .st5{fill:#EF5659;} + .st6{fill:#F7A29C;} + .st7{fill:#E73744;} + .st8{fill:#A21E31;} + .st9{fill:#C52233;} + .st10{fill:#831933;} + .st11{font-family:'NexaBold';} + .st12{font-size:53.024px;} + .st13{font-family:'Helvetica';} + .st14{font-size:18.6254px;} +</style> +<g id="Background"> + <polygon class="st0" points="245.5,547.6 16.8,415.5 16.8,151.4 245.5,19.4 474.2,151.4 474.2,415.5 "/> +</g> +<g id="Graphique"> + <g> + <ellipse class="st1" cx="252.2" cy="132.9" rx="95.5" ry="17"/> + <path class="st4" d="M252.2,152.3c-39.4,0-97.9-5.2-97.9-19.4s58.5-19.4,97.9-19.4s97.9,5.2,97.9,19.4S291.5,152.3,252.2,152.3z + M252.2,118.3c-61.2,0-93.2,9.6-93.2,14.7c0,5.1,32,14.7,93.2,14.7s93.2-9.6,93.2-14.7C345.4,127.8,313.4,118.3,252.2,118.3z"/> + </g> + <g> + <g> + <path class="st0" d="M256.8,128.2c-4.6,4.9-8.9,3.2-13-0.2c0.6,9.3,1.2,18.6,1.8,27.8c0,0.4,0.2,0.8,0.3,1.2c2.4,0,4.8,0,7.2,0 + c0.4-0.2,0.8-0.4,1.2-0.6c0-0.1,0-0.2,0-0.2c-0.7,0-1.3,0.1-2,0.1c0-0.1-0.1-0.2-0.1-0.2c0.4-0.1,0.8-0.3,1.2-0.4 + c0-0.1,0-0.2,0-0.2c-0.4-0.1-0.8-0.1-1.2-0.2c0-0.1,0-0.2,0-0.2c0.7-0.1,1.3-0.2,2-0.2c0-0.1,0-0.2,0-0.3c-0.8,0-1.6-0.1-2.4-0.1 + c0-0.1,0-0.1,0-0.2c0.8-0.1,1.7-0.3,2.5-0.4c0-0.1,0-0.2,0-0.3c-0.3,0-0.7,0-1,0c1.8-0.6,0.8-2,1.1-3.1c-0.7,0-1.2,0-1.7,0 + c0-0.1,0-0.1-0.1-0.2c0.6-0.2,1.3-0.3,1.9-0.5c0-0.1,0-0.2-0.1-0.3c-0.7,0-1.4,0-2.1,0c0,0,0-0.1-0.1-0.1 + c0.7-0.2,1.4-0.4,2.2-0.6c0-0.1,0-0.2-0.1-0.3c-0.3,0-0.7,0-1,0c0-0.1,0-0.2-0.1-0.3c0.3-0.2,0.7-0.3,1.4-0.6 + c-1.1-0.1-1.9-0.1-2.6-0.2c0-0.1,0-0.1,0-0.2c0.7-0.1,1.5-0.2,2.3-0.3c0-0.4,0-0.9,0-1.4c-0.5-0.1-1-0.1-1.8-0.2 + c0.8-0.3,1.4-0.5,1.9-0.7c0-0.1-0.1-0.2-0.1-0.3c-0.6,0-1.1,0-1.7,0c0-0.1,0-0.2,0-0.3c0.5-0.1,1.1-0.2,1.7-0.3 + c0-0.4,0-0.9,0-1.5c-0.4,0-0.7,0.1-1,0.1c0-0.1-0.1-0.2-0.1-0.3c0.4-0.2,0.8-0.3,1.4-0.6c-0.6-0.2-0.9-0.2-1.4-0.4 + c0.5-0.3,0.9-0.4,1.3-0.6c0-0.1,0-0.2,0-0.2c-0.7,0.1-1.5,0.1-2.2,0.2c0-0.1,0-0.2,0-0.2c0.7-0.2,1.4-0.3,2.2-0.5 + c0-0.5,0.1-1,0.1-1.6c-0.6,0.1-1.2,0.2-1.7,0.3c0-0.1-0.1-0.2-0.1-0.2c0.6-0.2,1.2-0.4,1.8-0.6c0-0.1,0-0.2,0-0.2 + c-0.3-0.1-0.7-0.1-1.3-0.2c0.6-0.3,1-0.5,1.7-0.8c-0.8-0.1-1.1-0.1-1.2-0.1c0.3-0.6,0.6-1.2,1-2c-0.9,0-1.4,0.1-2,0.1 + c0-0.1,0-0.1,0-0.2c0.8-0.2,1.5-0.4,2.3-0.7c0-0.1,0-0.3-0.1-0.4c-0.8,0.1-1.5,0.2-2.6,0.4C254.5,131.8,255.7,130.1,256.8,128.2z + "/> + <path class="st0" d="M215.8,154.4c0-0.1-0.1-0.1-0.1-0.2c0.3-0.2,0.6-0.4,1.2-0.8c-0.5-0.1-0.7-0.1-1.1-0.2 + c0.1-0.3,0.2-0.6,0.4-1c-0.3-0.1-0.6-0.1-0.9-0.2c0.2-0.3,0.4-0.6,0.7-1c-0.2,0-0.4,0-0.5,0c-0.4-1.5-0.8-2.9-1.3-4.3 + c-0.3,0.1-0.6,0.1-1.2,0.3c0.5-0.4,0.8-0.6,1.4-1.1c-0.7,0.1-1,0.2-1.3,0.2c0-0.1,0-0.2,0-0.2c0.4-0.4,0.7-0.5,0.1-1.2 + c-0.5-0.6-0.5-1.7-0.7-2.7c-0.2,0.3-0.4,0.5-0.6,0.8c0-1,0-1.9,0-3.2c-0.6,0.6-0.8,0.9-1.1,1.3c-0.1,0-0.1-0.1-0.2-0.1 + c0.3-0.6,0.5-1.2,0.9-1.9c-0.4,0.1-0.6,0.1-0.9,0.2c-0.1-0.1-0.2-0.3-0.4-0.4c0.4-0.1,0.8-0.2,1.5-0.3c-1-0.7-1.4-1.1-2-1.5 + c0,0,0.3-0.3,0.6-0.7c0-0.1-0.1-0.1-0.1-0.2c-0.3,0.1-0.6,0.2-0.9,0.4c-0.1-0.4-0.2-0.7-0.4-1.2c0.3,0.2,0.5,0.4,0.9,0.7 + c-0.3-0.8-0.6-1.4-0.8-2c0.1-0.1,0.2-0.1,0.3-0.2c-0.3,0-0.5-0.1-0.9-0.1c0.3-0.3,0.5-0.5,0.7-0.7c-0.4,0-0.7-0.1-1.3-0.1 + c0.5-0.3,0.8-0.5,1.3-0.9c-0.5,0-0.8,0-1.4,0c1.2-1.1,0.8-1.6-0.4-1.8c0.4-0.8,0.7-1.5,1-2.2c-3.3,1.1-6.6,2.1-9.8,3.2 + c-0.1-0.2-0.1-0.3-0.2-0.5c0.5-0.3,1.1-0.6,1.8-1c-0.8-0.9-1.5-1.7-2.3-2.6c-1,1.9-0.4,3.6,0.4,5.1c4.2,8.1,8.4,16.3,12.5,24.4 + c0.1,0.1,0.1,0.3,0.1,0.4c1.9,0,3.8,0,5.7,0c1.5-0.8,0.2-1.8,0.2-2.8C216.4,154.3,216.1,154.4,215.8,154.4z"/> + <path class="st0" d="M225.6,155.5c0.4-0.4,0.7-0.7,1.1-1.1c-0.8,0.1-1.4,0.1-2.3,0.2c0.9-0.4,1.4-0.6,1.9-0.8 + c0-0.1-0.1-0.2-0.1-0.3c-0.5,0.1-0.9,0.2-1.4,0.3c0-0.1-0.1-0.2-0.1-0.2c0.4-0.2,0.9-0.4,1.3-0.7c0-0.1,0-0.2,0-0.3 + c-0.5,0-0.9,0.1-1.8,0.2c0.8-0.4,1.2-0.6,2-1c-1.2,0.1-2.1,0.1-2.9,0.1c0,0,0-0.1,0-0.1c0.8-0.2,1.7-0.4,2.5-0.6 + c0-0.1,0-0.2-0.1-0.3c-0.6,0-1.2,0.1-2.2,0.2c0.9-0.4,1.4-0.6,1.9-0.8c0-0.1,0-0.1,0-0.2c-0.5,0-1.1,0.1-1.8,0.2 + c0.6-0.7,2.4-0.4,1.4-1.9c-0.3,0-0.7,0-1.1,0.1c0-0.1-0.1-0.2-0.1-0.3c0.4-0.2,0.7-0.3,1.1-0.5c0-0.1,0-0.1,0-0.2 + c-0.4,0-0.8,0-1.2,0.1c0-0.1,0-0.2-0.1-0.2c0.4-0.2,0.8-0.4,1.2-0.5c0-0.1,0-0.2-0.1-0.2c-0.3,0.1-0.6,0.1-0.9,0.2 + c-0.1-0.1-0.1-0.2-0.2-0.3c0.3-0.2,0.5-0.5,0.9-0.8c-0.4,0-0.7,0-1.5-0.1c0.6-0.3,0.9-0.5,1.2-0.7c0-0.1-0.1-0.2-0.1-0.2 + c-0.5,0-1,0-1.8,0c0.7-0.3,1.1-0.5,1.4-0.7c-0.4-0.4-0.8-0.8-1.4-1.4c-0.2,0.1-0.6,0.2-1,0.4c0-0.1-0.1-0.2-0.1-0.3 + c0.7-0.3,1.5-0.6,2.2-0.9c0-0.1,0-0.2-0.1-0.3c-0.7,0.1-1.4,0.2-2.1,0.3c0-0.1,0-0.1-0.1-0.2c0.6-0.3,1.3-0.5,1.9-0.8 + c0-0.1,0-0.2,0-0.3c-0.7,0.1-1.4,0.2-2.1,0.2c0-0.1,0-0.1,0-0.2c0.6-0.2,1.2-0.5,1.9-0.7c0-0.1,0-0.2-0.1-0.3 + c-0.7,0.1-1.4,0.2-2.1,0.3c0-0.1,0-0.1-0.1-0.2c0.7-0.3,1.4-0.6,2.1-0.9c0-0.1-0.1-0.2-0.1-0.3c-0.8,0.2-1.6,0.4-2.4,0.6 + c0-0.1-0.1-0.1-0.1-0.2c0.7-0.3,1.5-0.7,2.7-1.2c-0.7-0.1-1.1-0.1-1.6-0.1c0.4-0.4,0.7-0.6,1.1-0.9c-0.5,0-0.9,0-1.6,0.1 + c0.5-0.4,0.8-0.7,1.2-1c-0.9,0-1.5,0.1-2.4,0.1c0.8-0.3,1.3-0.5,2.3-0.9c-1.1,0-1.7,0-2.8,0c1-0.3,1.7-0.5,2.3-0.7 + c0-0.1,0-0.2-0.1-0.3c-0.7,0.1-1.3,0.1-2,0.2c0-0.1-0.1-0.1-0.1-0.2c0.7-0.2,1.4-0.4,2-0.6c0-0.1,0-0.2,0-0.3 + c-0.7,0.1-1.4,0.1-2.4,0.2c1-0.4,1.6-0.6,2.2-0.9c0-0.1,0-0.2-0.1-0.3c-0.5-0.1-0.9-0.2-1.4-0.3c0.4-0.1,0.7-0.1,1.3-0.2 + c-0.3-0.6-0.5-1.2-0.8-2c0.1-0.2,0.3-0.7,0.5-1.1c-3.2,1-6.2,1.9-9.3,2.8c-0.1-0.2-0.1-0.3-0.2-0.5c0.3-0.3,0.6-0.5,0.9-0.8 + c-0.8-0.9-1.6-1.8-2.4-2.6c-0.1,0.1-0.2,0.1-0.4,0.2c0.3,1.2,0.6,2.4,1,3.6c2.9,8.3,5.9,16.5,8.8,24.8c0.1,0.3,0.1,0.7,0.2,1 + c2.7,0,5.4,0,8.1,0c0-0.3,0-0.6,0-0.9c-0.3,0.1-0.6,0.2-0.9,0.3c0-0.1-0.1-0.1-0.1-0.2c0.3-0.2,0.6-0.5,1.2-0.9 + C226.4,155.4,226.1,155.4,225.6,155.5z"/> + <path class="st0" d="M206.5,151.4c0.1-0.1,0.3-0.1,0.4-0.2c-0.6-0.7-1.9-0.9-1.4-2.4c0.2-0.5-0.8-1.3-1.3-2 + c-0.1,0.1-0.3,0.1-0.4,0.2c0.3-0.2,0.5-0.4,0.8-0.7c0-0.1-0.1-0.1-0.1-0.2c-0.3,0.1-0.6,0.2-1.1,0.3c-0.1-0.7-0.3-1.4-0.4-2.3 + c0,0-0.3,0.1-0.9,0.3c0.4-0.5,0.6-0.8,0.9-1.1c0-0.1-0.1-0.1-0.1-0.2c-0.3,0.1-0.6,0.3-1.2,0.6c0.4-0.7,0.6-1.1,0.9-1.7 + c-0.5,0.2-0.9,0.3-1.6,0.6c0.5-0.6,0.8-1,1.2-1.6c-1.1,0.4-1.7,0.3-1.4-0.9c0.3-1.4-0.7-2.1-2-2.6c0.3-0.3,0.6-0.5,0.8-0.8 + c-1.8-0.4-1.2-2.2-1.9-3.3c-0.7-0.9-1.3-2-1.7-3.1c-0.2-0.5,0.3-1.2,0.5-1.8c0.1-0.3,0.4-0.5,0.8-1.1c-2.8,1.1-5.3,2-7.3,2.8 + c-1.1-1.1-1.9-1.9-2.7-2.6c-1.1,1.9-0.5,3.5,0.6,5.2c3.7,5.7,7.4,11.5,11.2,17.3c0.4,0.6,0.9,1.2,1.3,1.8c0.1,0,0.1-0.1,0.2-0.1 + c-0.3-0.6-0.7-1.3-1-1.9c0.1-0.1,0.3-0.1,0.4-0.2c1.5,2.5,3.1,5,4.6,7.5c1.6,0,3.2,0,4.8,0c0.1-0.2,0.1-0.4,0.3-0.8 + c-0.3,0.1-0.5,0.2-0.7,0.3C208.2,154.8,207.3,153.1,206.5,151.4z"/> + <path class="st0" d="M187.4,127.5c-0.3-0.1-0.6-0.3-0.9-0.2c-2.6,0.7-5.2,1.4-8.3,2.2c0.3-1.3,0.4-2.1,0.6-3.1 + c-2.5,0.5-4.9,0.9-7.5,1.4c1.4,1.8,2.7,3.6,4,5.3c4.5,6.2,9,12.4,13.5,18.6c1.2,1.7,2.4,3.5,3.7,5.3c3.3,0,6.6,0,10,0 + c-5.7-9.1-11.4-18.3-17.1-27.4C186.1,128.9,186.7,128.2,187.4,127.5C187.4,127.5,187.4,127.5,187.4,127.5 + C187.4,127.5,187.4,127.5,187.4,127.5L187.4,127.5z M197.1,156.1c-0.1,0.1-0.2,0.2-0.3,0.2c-0.2-0.2-0.5-0.5-0.7-0.8 + c-3-4.1-5.9-8.1-8.9-12.2c-3.2-4.4-6.4-8.8-9.5-13.3c-0.3-0.5-0.5-1.1-0.7-1.7c0.1,0,0.2,0,0.2-0.1 + C183.9,137.6,190.5,146.9,197.1,156.1z"/> + <path class="st0" d="M242.2,129.4c0.2-0.4,0.5-0.7,0.7-1c-2.1,0.9-4,2.1-6.1,2.6c-2.5,0.6-3.9-1.7-6-3.5c0.2,1.3,0.3,2.1,0.4,3 + c1.4,7.9,2.8,15.9,4.2,23.8c0.2,0.9,0.4,1.8,0.6,2.6c2.1,0,4.2,0,6.3,0c0-0.8,0-1.7,0-2.6c-0.5,0.1-0.9,0.2-1.2,0.2 + c0-0.1,0-0.1-0.1-0.2c0.4-0.2,0.8-0.4,1.1-0.6c-0.1-0.3-0.2-0.7-0.3-1c0.1-0.1,0.2-0.1,0.4-0.2c-0.2-0.1-0.5-0.2-0.9-0.3 + c0.4-0.2,0.7-0.4,1.3-0.9c-0.7,0-0.9,0-1.2,0c0-0.1-0.1-0.2-0.1-0.2c0.3-0.2,0.6-0.3,1.3-0.7c-1,0-1.7,0-2.7,0 + c0.8-0.4,1.1-0.6,1.5-0.8c0-0.1,0-0.2-0.1-0.2c-0.4,0-0.8,0-1.1,0c0.1-1.7,0.2-3.2,0.3-4.7c0-0.7,0-1.7,1.2-1.1 + c0.1,0,0.3-0.3,0.7-0.6c-1.1,0-2,0-3,0c0.4-0.3,0.7-0.5,1-0.7c-0.5-0.2-0.9-0.4-1.3-0.6c0.4-0.1,0.7-0.2,1-0.3c0-0.1,0-0.2,0-0.3 + c-0.5-0.1-0.9-0.3-1.6-0.5c0.9-0.2,1.6-0.3,2.3-0.5c0-0.1,0-0.2,0-0.2c-0.4,0-0.8,0-1.1-0.1c0-0.1,0-0.2-0.1-0.2 + c0.4-0.2,0.7-0.3,1.5-0.6c-0.8-0.1-1.3-0.1-1.7-0.2c0-0.1,0-0.2,0-0.2c0.4-0.1,0.7-0.2,1.1-0.3c0-0.4-0.1-0.9-0.1-1.4 + c-0.4,0-0.7,0-1.5,0c1-0.4,1.7-0.7,2.3-1c0-0.1,0-0.1-0.1-0.2c-0.5,0-1,0.1-1.4,0.1c0-0.1-0.1-0.1-0.1-0.2c0.5-0.3,0.9-0.5,1.6-1 + c-1.2,0-2.1,0-3,0c0,0,0-0.1-0.1-0.1c0.8-0.2,1.7-0.4,2.7-0.7c0-0.9-0.2-1.9,0.1-2.8C241.2,130.6,241.8,130,242.2,129.4z"/> + <path class="st0" d="M266.7,132.6c1.1-1.3,2.2-2.6,3.3-3.8c-0.1-0.2-0.2-0.4-0.3-0.6c-4.1,5.4-8,2.5-11.9-0.2 + c1,6.5,0.3,12.9,0.3,19.3c0,3.2-0.2,6.5-0.2,9.7c2,0,4,0,6,0c0-1,0-2.1,0-3.2c0.4-0.1,0.7-0.2,1.1-0.3c0-0.1,0-0.2,0-0.2 + c-0.3,0-0.7,0-1,0c0-0.1,0-0.2-0.1-0.3c0.3-0.1,0.6-0.3,1.3-0.6c-0.6,0-0.9-0.1-1.5-0.1c0.3-1,0.6-1.9,0.9-3c0.1,0-0.2,0-0.8-0.2 + c0.5-0.3,0.9-0.4,1.3-0.6c-0.5-0.1-0.8-0.1-1.5-0.3c0.7-0.3,1-0.4,1.2-0.5c-0.2-0.3-0.6-0.6-0.5-0.8c0.1-0.4,0.4-0.8,0.6-1.2 + c-0.1,0-0.4,0-0.7-0.1c1.3-0.9,1.3-1.3,0.4-1.8c0.6-0.7,1.5-1.3,1.7-2.1c0.5-1.8,0.1-2.4-0.9-3c0.5-0.1,0.8-0.2,1.1-0.3 + c0-0.1,0-0.2,0-0.3c-0.5-0.1-1.1-0.2-1.8-0.4c0.6-0.1,1.1-0.1,1.6-0.2c0-0.6,0-1.1,0-1.8c-0.3,0.1-0.7,0.2-1,0.3 + c0-0.1-0.1-0.2-0.1-0.3c0.4-0.1,0.7-0.3,1.3-0.4C266.5,134.5,266.6,133.5,266.7,132.6z"/> + <path class="st0" d="M289.9,138.5c0-1,0.8-2.1,1.2-3.1c0.9-2.1,1.9-4.1,2.9-6.2c0.2-0.3,0.2-0.7,0-1.3c-0.7,1.2-1.4,2.4-2.3,3.9 + c-2.9-1-5.9-2.2-8.8-3.2c1.9,3.2,0.2,6.7-0.3,10.3c-0.2,1-0.3,2-0.6,2.9c-0.2,0.7,0.4,2-1.1,2c0,0.2,0,0.5,0,0.7 + c0.1,0,0.1,0,0.1,0c0,0,0-0.1,0-0.1c0.1-0.1,0.2-0.2,0.3-0.4c0.1,0.2,0.3,0.3,0.3,0.3c-0.2,0.6-0.4,1.3-0.7,2.1c0,0,0.1,0,0.1,0 + c-0.4,1.2-1,2.3-1.1,3.5c-0.1,2.2-0.8,4.4-1,6.6c0,0.2-0.4,0.4-0.6,0.5c1.9,0,3.8,0,5.7,0c-0.2-0.3-0.5-0.7-0.8-1.1 + c0.4,0,0.7,0,1.3,0c-0.6-0.4-1-0.7-1.6-1.1c0.7,0.1,1.2,0.2,2.1,0.3c-0.8-0.5-1.2-0.7-1.6-1.1c0.5,0,1,0.1,1.7,0.1 + c-0.3-0.3-0.4-0.5-0.6-0.7c1-0.4,1.7-2.4,1.3-3.5c-0.3-0.7,0-1.2,1.3-1.4c-0.6-0.2-1-0.3-1.5-0.5c0.4-0.1,0.7-0.2,1.3-0.3 + c-0.6-0.3-1-0.5-1.4-0.7c0.2-0.1,0.3-0.2,0.4-0.2c0.8,0.2,1.5-0.5,1.4-1.2c0-0.2,0-0.4,0.1-0.5 + C289.1,143.2,289.9,141,289.9,138.5z"/> + <path class="st0" d="M281.1,146.4L281.1,146.4C281,146.4,281,146.4,281.1,146.4z"/> + <path class="st0" d="M232.3,152.8c0.5-0.6,0.9-1.1,1.3-1.7c-0.4-0.5-1.6-0.6-0.6-1.7c0.3-0.3-0.2-1.3-0.4-2 + c0-0.1-0.2-0.2-0.3-0.2c0.2-0.2,0.3-0.4,0.5-0.5c-1.2-0.4-1.3-0.9-0.4-2.2c-0.4,0.1-0.8,0.1-1.1,0.1c-0.1-0.8-0.2-1.6-0.3-2.4 + c0,0,0.5-0.2,1.1-0.5c-0.3-0.6-0.6-1.3-0.9-1.9c0,0-0.1,0.1-0.1,0.1c0-0.5-0.1-1-0.1-1.5c-0.1,0-0.3,0-0.4-0.1 + c0.3-0.2,0.6-0.4,1-0.8c-0.5,0-0.9-0.1-0.9-0.1c0.1-0.8,0.2-1.6,0.4-2.7c-0.6,0.5-1,0.9-1.4,1.2c-0.1-0.1-0.1-0.1-0.2-0.2 + c0.4-0.5,0.8-1,1.3-1.6c-0.4,0-0.7,0-1.3,0c0.5-0.3,0.8-0.5,1.2-0.9c-0.3,0-0.5-0.1-0.6-0.1c0-0.7,0-1.3,0-1.9 + c0-0.1-0.4-0.1-0.5-0.1c0.3-0.8,0.6-1.7,0.9-2.7c-1.2,0.7-2.3,1.4-3.5,1.9c-1.2,0.5-2.5,0.6-3.9,1c0.7-1.4-0.6-3.2-2.2-3.4 + c0.5,1.9,1.1,3.7,1.6,5.5c2.1,7.9,4.2,15.8,6.3,23.7c1.4,0,2.8,0,4.2,0c0.3-0.3,0.5-0.6,0.8-0.9c-1.1-0.8-1-2,0.1-3 + C233.4,153,232.9,152.9,232.3,152.8z"/> + <path class="st0" d="M300,142.6c0,0-0.2-0.2-0.4-0.5c0.4,0,0.7,0.1,1.1,0.1c-0.2-0.4-0.4-0.7-0.6-1.1c1.4,0.2,1.7-1.2,1.5-1.8 + c-0.2-0.9,0.4-0.9,0.6-1.3c0.6-1.1,0.9-2.4,1.2-3.2c0.8-1.3,1.4-2.3,1.9-3.2c-3.3-1.1-6.5-2.2-9.5-3.2c0.3,0.7,0.9,1.6,1.4,2.6 + c0,0,0.2-0.3,0.5-0.8c0,0.5,0,0.6,0,0.7c-1.3,1.2-0.9,3.1-1.9,4.4c-0.1,0.1,0.3,0.5,0.5,0.8c-0.2,0-0.5,0-1.2,0 + c0.6,0.4,0.8,0.6,1.2,1c-0.5,0-0.8,0-1.1,0c0.2,0.5,0.4,0.9,0.4,1.3c0,0.2-0.5,0.3-0.6,0.4c-0.3,0.9-0.3,1.9-0.8,2.6 + c-0.5,0.7,1,2.3-1.1,2.3c0.4,0.3,0.6,0.4,1.1,0.8c-0.6,0-0.9,0-1.2,0.1c0,0.1-0.1,0.2,0,0.3c0.1,0.3,0.5,0.6,0.4,0.9 + c-0.5,1.7-0.8,3.5-1.7,4.9c-0.6,1-0.3,2.2-1.2,2.9c0.9,1.4-0.5,2.3-0.6,3.5c1.2,0,2.4,0,3.6,0c-0.1-0.1-0.2-0.2-0.3-0.3 + c0.5-0.3,1-0.6,1.8-1c-0.5-0.4-0.9-0.6-1-0.6c0.5-0.3,1.1-0.5,1.4-1c0.2-0.4,0-1,0-1.7c0,0,0.3,0,0.7,0.1 + c-0.1-0.7-0.1-1.3-0.2-1.9c0.5-0.4,1.2-0.8,1.9-1.4c-0.4-0.3-0.6-0.4-0.8-0.6c0.4-1.2,2.8-1.5,1.1-3.6c0.5,0.3,0.7,0.4,1.2,0.7 + c0-0.7-0.1-1.3,0-1.8C299.2,143.5,299.6,143.1,300,142.6z"/> + <path class="st0" d="M278.8,132.6c0,0-0.3-0.3-0.6-0.4c0.3-0.1,0.5-0.2,0.6-0.3c-2.5-1-5-2-7.2-2.9c-1.1,9.1-2.2,18.6-3.4,28 + c1.7,0,3.4,0,5.1,0c-0.6-0.9-0.3-3.4,0.5-4.5c0.1-0.1-0.2-0.5-0.1-0.7c0.2-0.9,0-1.8,0.5-2.6c0.1-0.1-0.3-0.4-0.4-0.7 + c0.3-0.1,0.5-0.2,1-0.4c-0.6-0.2-0.9-0.3-1.2-0.4c0.1-0.1,0.1-0.2,0.2-0.4c0.4,0.3,0.9,0.5,1.6,1c-0.6-0.7-1-1.2-1.3-1.6 + c0,0,0.3,0,0.5,0c0.2,0,0.5,0,0.7,0.1c0.1-0.1,0.2-0.2,0.4-0.4c-0.3-0.1-0.6-0.2-1.2-0.4c0.5-0.1,0.8-0.2,1.3-0.3 + c-0.5-0.2-0.7-0.4-1.3-0.7c0.6,0,1.1,0,1.1-0.1c0.2-0.6,0.3-1.3,0.3-1.9c0.1-0.7-0.2-1.8,0.2-2.1c2-1.6,1-4.1,1.9-5.9 + c0.1-0.3-0.1-0.8-0.2-1.2C278.2,133.6,278.5,133.1,278.8,132.6z"/> + <path class="st0" d="M170.7,128c0.6-0.7,1.1-1.4,2-2.4c-2.6,0.5-4.8,0.9-7.2,1.4c2.3,3,4.5,5.9,6.7,8.8 + c4.3,5.6,8.6,11.2,12.8,16.8c1.1,1.5,2.2,3,3.3,4.6c1,0,2,0,3,0c-3-4.3-5.9-8.6-8.9-12.9C178.6,138.7,174.7,133.4,170.7,128z"/> + <path class="st0" d="M310.3,140.2c0.6-0.4,1.1-0.6,1.8-1c0-0.2,0-0.7,0-1.4c0.4,0.1,0.7,0.1,1.2,0.2c-0.3-0.4-0.4-0.7-0.6-1 + c0.1,0.1,0.2,0.1,0.3,0.2c0.7-1.2,1.5-2.5,2.3-3.8c0,0-0.2-0.3-0.4-0.5c0.6-0.5,1.3-1,2.3-1.8c-3.2-1.2-6.2-2.2-9.1-3.3 + c0,0.1-0.1,0.1-0.1,0.2c0.2,0.1,0.4,0.3,0.5,0.4c2.1,1.9,2.1,1.9,0.8,4.5c-0.5,0.9-0.6,1.9-1,3.1c0,0,0,0-0.1,0 + c-1.4,1.8-1.2,3.9-2.1,5.9c0,0-0.3,0.1-0.8,0.1c0.2,0.4,0.4,0.6,0.5,0.9c-0.1,0-0.2-0.1-0.4-0.1c-0.5,1.1-0.9,2.3-1.4,3.4 + c-0.1,0-0.3-0.1-0.4-0.1c0.1,0.3,0.3,0.5,0.5,0.9c-0.4-0.1-0.6-0.1-1-0.2c0.2,0.4,0.4,0.6,0.5,0.9c-0.3,0.2-1,0.6-0.9,0.7 + c0.9,2.8-1.5,4.6-2.2,6.9c-0.2,0.6-0.4,1.2-0.7,1.7c0.1,0,0.2,0,0.3,0c0.4-1.2,1.2-0.6,2.1-0.5c-0.3-0.3-0.4-0.6-0.7-0.9 + c0.3,0,0.6,0.1,0.9,0.1c-0.1-0.2-0.1-0.3-0.1-0.4c-0.4-0.7-0.1-1.2,0.6-1.4c0.4-0.1,0.8-0.7,1-1.2c0.2-0.3,0.1-0.7,0.2-1.2 + c0.6-0.1,1.8-1.9,2.1-3.2c0.1-0.6,0.3-1.3,0.7-1.7c0.6-0.5,1.1-0.9,0.9-1.9c0-0.2,0.7-0.6,1.5-1.1c-0.1,0-0.4-0.1-1.1-0.3 + c0.9-0.6,1.5-1.1,2.2-1.5C311.3,141.4,311.5,140.9,310.3,140.2z"/> + <path class="st0" d="M308.3,136L308.3,136C308.3,136,308.3,136,308.3,136z"/> + <path class="st0" d="M166.8,130.1c-0.7-1-1.4-2.1-2.2-3.1c0.5-0.6,1-1.1,1.5-1.7c0-0.1-0.1-0.3-0.1-0.4c-1.7,0.4-3.5,0.8-5.4,1.2 + c1.7,2,3.3,3.9,4.8,5.8c6.6,8.2,13.2,16.3,19.7,24.5c0.2,0.2,0.3,0.4,0.4,0.6c0.6,0,1.2,0,1.8,0c-1.2-1.5-2.5-2.9-3.7-4.5 + C178.1,145.1,172.5,137.6,166.8,130.1z"/> + <path class="st0" d="M245.2,123.4c0,0.1,0,0.1,0,0.2c-0.3,0.1-0.7,0.1-1,0.2c-0.4,1.7,0.2,2.9,1.8,3.9c1.8,1.1,3.4,2.1,5.6,1.8 + c1.8-0.2,3.5-2,3.2-3.7c0-0.2-0.4-0.3-0.6-0.4c1.7-0.7-0.3-2.6,1.2-3.7c0.1,1.2,0.1,2.1,0.2,3.1c0.1,0,0.2,0,0.3,0 + c0-1.1,0-2.2,0-3.4c-0.2,0-0.6,0.1-1,0.2c0-0.1,0-0.3-0.1-0.4c0.4-0.1,0.8-0.1,1.4-0.2c0-1.3,0-2.6,0-4.1 + c0.5-0.1,0.9-0.2,1.8-0.4c-0.9-0.2-1.4-0.2-1.9-0.3c0-0.1,0-0.3,0-0.4c0.5-0.1,0.9-0.3,1.4-0.4c0-0.1,0-0.1,0-0.2 + c-0.5,0-1,0-1.9-0.1c0.4-0.9,1-1.5,1-2.2c0-0.6-0.6-1.3-1.3-1.8c0,0.5,0.1,1,0.1,1.5c0.3,0,0.6,0,1.1,0c-0.1,0.2-0.2,0.4-0.3,0.4 + c-1.3,0.3-1.2-0.6-1.2-1.4c0-0.2,0-0.5,0-0.5c1-0.9,1.9-1.7,2.9-2.6c-0.8,0.1-1.3,0.1-1.9,0.2c0-0.2-0.1-0.3-0.1-0.5 + c0.3-0.2,0.6-0.3,0.8-0.5c-0.3-0.4-0.5-0.8-0.9-1.4c0.8-0.2,1.4-0.3,2-0.4c0-0.1,0-0.2,0-0.4c-0.6,0-1.3,0-1.9,0 + c0-0.1,0-0.2,0-0.3c0.7-0.2,1.4-0.4,2.1-0.5c0-0.1,0-0.2-0.1-0.3c-0.7,0-1.3,0-2,0c0-0.1-0.1-0.2-0.1-0.2c0.3-0.2,0.7-0.3,1-0.5 + c-0.2-2.1-0.2-2.1-1.7-2.8c1.1-0.3,1.9-0.5,3-0.9c0,0,0.1-0.5,0.2-1.3c-5.3,2.4-10.4,2.3-15.6,0c0.5,8.4,0.9,16.4,1.3,24.4 + C244.5,123.5,244.9,123.5,245.2,123.4z"/> + <path class="st0" d="M271,125.1c-0.2,1.1,0,1.9,1.2,2.4c1.1,0.4,1.9,1.3,3,1.7c3.4,1.4,3.5,1,4.4-2.3c0.1,0.4,0.2,0.6,0.3,0.8 + c0.8-0.5,0.8-0.5,1.2-4.1c0.3,0.1,0.5,0.2,0.9,0.3c-0.5-0.6-0.9-1.1-1.6-1.9c1.6,0.3,3.2,0,2.9-1.2c-0.2-0.9,1.5-2.7-0.9-2.9 + c0.5,0.1,1.1,0.2,1.6,0.3c-0.3-0.6-0.5-1.1-0.9-1.8c0.5,0,0.8,0,1.5-0.1c-0.7-0.4-1-0.6-1.3-0.8c0-0.1,0.1-0.1,0.1-0.2 + c0.6,0.2,1.1,0.3,1.7,0.5c0-0.1,0.1-0.2,0.1-0.2c-0.6-0.3-1.2-0.7-2.3-1.2c1-0.2,1.5-0.3,2.2-0.4c0.2-1.1,0.4-2.3,0.6-3.4 + c0.2,0,0.3,0.1,0.5,0.1c-0.2-0.2-0.5-0.4-0.8-0.8c0.4,0,0.7-0.1,1.1-0.1c-0.3-0.3-0.6-0.5-1.1-0.9c0.7,0.1,1.1,0.1,1.9,0.2 + c-0.8-0.5-1.3-0.8-1.6-0.9c0.3-0.5,0.7-0.9,0.8-1.4c0.1-0.3-0.3-0.7-0.5-1.1c0.4-0.1,0.9-0.2,1.5-0.2c0-0.1,0-0.2,0-0.3 + c-0.5-0.1-1.1-0.2-1.6-0.3c0.2-0.4,0.4-0.8,0.7-1.5c0.1,0.6,0.1,0.9,0.1,1.2c0.1,0,0.2,0,0.2,0.1c0.2-0.6,0.3-1.1,0.5-1.8 + c-0.3,0.1-0.6,0.2-1.3,0.3c1.1-0.5,1.8-0.9,2.5-1.2c0-0.2,0-0.4-0.1-0.5c-5,1.7-9.7,1.6-14.2-1.6c-0.5,4-1,7.6-1.5,11.3 + C272.3,115.8,271.7,120.4,271,125.1z"/> + <path class="st0" d="M260.2,127.9c1.4,0.6,2.7,1.4,4.1,1.8c1.9,0.5,2.7-0.2,2.8-2.1c0.1-1.3,0.2-2.5,0.3-3.8c0.2,0,0.3,0,0.5,0.1 + c-0.1,1.4-0.3,2.7-0.4,4.1c1.2-2,0.9-4.1,0-6.1c0.2,0,0.4,0,0.6,0c0,0.3,0,0.7,0,1.1c0.2-0.1,0.4-0.2,0.4-0.3 + c0.1-1.1,0.9-2.4-0.4-3.4c-0.1-0.1-0.1-0.5,0-0.5c1.7-1.7,0.7-3.8,0.9-5.7c0-0.2,0-0.5,0-0.7c0-0.1,0.1-0.1,0.3-0.3 + c0.1,0.5,0.2,0.8,0.3,1.4c0.5-0.7,0.8-1.2,1.3-1.9c-2.4-0.5-0.6-2.5-1.6-3.6c0.3,0,0.6-0.1,0.9-0.1c0,1,0,2,0,3.1 + c0.1,0,0.2,0,0.3,0c0.3-2,0.7-4,1-6.1c-0.1,0-0.2-0.1-0.4-0.2c0.5-0.1,0.9-0.1,1.5-0.2c-0.6-0.2-0.9-0.3-1.5-0.5 + c0.4-0.2,0.6-0.3,0.8-0.4c-0.2-0.1-0.4-0.3-0.8-0.6c0.7-0.2,1.2-0.2,1.6-0.3c0-0.1,0-0.1,0-0.2c-0.4,0-0.8,0-1.5,0 + c0.4-0.3,0.7-0.5,1-0.8c-0.4-0.1-0.7-0.1-1.1-0.2c0.8-0.4,1.5-0.7,2.2-1c0-0.2,0-0.4-0.1-0.5c-4.6,1.7-9.2,2.1-13.9-0.8 + c0,3.9,0.1,7.3,0,10.7c-0.1,5.3-0.3,10.5-0.5,15.8C258.8,126.8,259.2,127.5,260.2,127.9z"/> + <path class="st0" d="M271.5,104.9C271.6,104.9,271.5,104.9,271.5,104.9L271.5,104.9z"/> + <polygon class="st0" points="271.5,104.9 271.5,104.9 271.5,104.9 "/> + <path class="st0" d="M226.6,102.2c0-0.4,0-0.7-0.1-1.3c1,1-1.1,2.6,0.9,3.2c-0.2,0.1-0.5,0.2-0.7,0.3c0.2,0.2,0.3,0.4,0.5,0.6 + c0.1,0.1,0.2,0.1,0.3,0.1c-1,1.5,0.5,2.8,0.3,4.2c0,0.1,0,0.2,0,0.3c0.4,0,0.7,0,1.4,0c-0.7,0.3-1,0.5-1.2,0.5 + c0.5,1.9,1,3.8,1.6,5.8c-0.2,0.1-0.5,0.3-0.9,0.4c0,0.1,0,0.1,0.1,0.2c0.3,0,0.6-0.1,0.8-0.1c0.5,1,1,1.9,1.7,3.2 + c-0.1-0.9-0.1-1.3-0.2-1.8c0.1,0,0.2,0,0.3-0.1c0.4,1.8,0.7,3.6,1.1,5.4c0.1,0,0.2,0,0.3,0c0-0.7,0-1.5,0-2.2c0.1,0,0.2,0,0.3,0 + c0.1,0.8,0.2,1.7,0.4,2.6c-0.4,0-0.7,0-1.1,0c0.1,0.7,0.3,1.3,0.4,2c0.1,0,0.2,0,0.2,0c0-0.5,0.1-1,0.1-1.6c0.1,0,0.2,0,0.3,0 + c0.3,1.2,0.5,2.4,0.7,3.3c0.7,0.5,1.5,0.9,1.6,1.3c0.2,1.2,1.1,1.2,1.8,1c0.8-0.3,1.6-0.8,2.1-1.5c0.4-0.5,0.2-1.4,0.3-2.1 + c-0.1,0-0.4-0.1-0.2-0.1c0.1-1.1,0.3-2,0.4-3c0-2.8,0-5.6,0-8.4c-0.6-0.2-1-0.3-1.3-0.4c0-0.1,0-0.1,0-0.2c0.3,0,0.6-0.1,0.9-0.1 + c0-1.8,0-3.6,0-5.6c-0.4,0-0.8,0-1.2,0c0-0.1,0-0.2,0-0.2c0.3-0.1,0.6-0.2,0.9-0.3c-0.1-0.9-0.2-1.9-0.3-2.8 + c0.2,0,0.3-0.1,0.5-0.1c0.1,0.6,0.2,1.2,0.3,1.8c0.5-1.6,0-2.8-1.6-3.5c1.2-0.1,2.2-0.3,3.3-0.4c0-0.1,0-0.2,0-0.2 + c-0.8,0-1.5,0-2,0c0.7-0.9,1.5-1.8,2.4-2.8c0-0.2-0.1-0.3-0.1-0.5c-5.2,3.2-10.5,2.2-16,0.5c0.3,1,0.5,1.7,0.7,2.4 + C226.4,102.2,226.5,102.2,226.6,102.2z"/> + <path class="st0" d="M284.4,127.2c1.3,1.1,3,1.6,4.7,2.3c0.6,0.2,1.3,0.2,2,0.4c0.5-1.4,1-2.8,1.5-4.4c0,0.9,0,1.7,0,2.9 + c0.3-0.7,0.4-1.1,0.6-1.4c0.3-0.5,0.6-1,1-1.4c0.3-0.4,0.7-0.8,1.2-1.2c-0.4-0.5-0.7-1.2,0.9-1.1c-0.4-0.3-0.8-0.5-1.1-0.7 + c0.1-0.1,0.2-0.2,0.3-0.4c0.3,0.2,0.6,0.3,1,0.5c0.1-0.1,0.1-0.2,0.2-0.2c-0.6-0.5-1.1-0.9-1.7-1.4c0,0,0-0.1,0-0.1 + c0.7,0.3,1.3,0.6,2,0.9c0-0.1,0.1-0.1,0.1-0.2c-0.6-0.4-1.1-0.8-2-1.4c0.8,0.2,1.2,0.3,1.6,0.5c0.1-0.9,0.3-1.8,0.4-2.7 + c0.2,0,0.4-0.1,0.6-0.1c-0.2-0.2-0.5-0.4-0.7-0.7c0.5-0.2,1.1-0.4,1.7-0.7c-0.2-0.2-0.6-0.5-1.3-1c0.6,0.1,0.9,0.1,1.5,0.2 + c-0.5-0.5-0.8-0.7-1.1-0.9c0-0.1,0.1-0.1,0.1-0.2c0.4,0.2,0.9,0.4,1.3,0.6c0.1-0.1,0.1-0.2,0.2-0.2c-0.8-0.5-1.6-1-2.4-1.5 + c0-0.1,0-0.1,0.1-0.2c0.8,0.3,1.6,0.6,2.5,1c0.4-1.5,0-2.7-1.4-3.6c0.5,0.2,0.9,0.5,1.6,0.8c0.2-0.6,0.3-1.2,0.5-1.8 + c0,0,0.4,0.1,0.8,0.3c0-0.1,0.1-0.1,0.1-0.2c-0.7-0.5-1.3-1-2-1.4c0,0,0-0.1,0.1-0.1c0.6,0.3,1.3,0.5,1.9,0.8 + c0.1-0.1,0.1-0.2,0.2-0.2c-0.6-0.4-1.2-0.8-2.1-1.4c0.8,0.2,1.2,0.3,1.5,0.4c0.3-0.5,0.6-1,0.9-1.5c0,0-0.2-0.1-0.5-0.2 + c0.4-0.2,0.8-0.4,1.5-0.8c-0.7,0-1,0-1.6,0c0.7-0.3,1.2-0.5,1.6-0.7c0-0.2,0-0.4,0-0.6c-4.8,1.5-9.1,0.9-12.8-2.4 + c-1.7,7.6-3.3,14.8-5,22.1C284.6,125,284,126.8,284.4,127.2z"/> + <path class="st0" d="M301.8,129.2c0.5,0.1,1.5-0.5,2-0.9c0.7-0.7,1.2-1.6,1.9-2.5c0.1,0.1,0.4,0.2,0.6,0.3 + c0.2-0.7,0.5-1.4,0.8-2.1c0.2,0.1,0.5,0.2,1,0.5c-0.4-0.5-0.6-0.9-0.9-1.2c0.1,0,0.2-0.1,0.2-0.1c1,0.7,1.2,0.1,1.3-0.8 + c0-0.4,0.2-0.7,0.3-1.1c0.1,0,0.3,0,0.4,0c-0.3-0.3-0.5-0.7-1-1.3c0.6,0.3,0.8,0.4,1.1,0.5c0.1,0,0.2,0,0.2-0.1 + c0.4-1,0.2-2.1,1.4-2.8c0.4-0.2,0.5-1.3,0.5-2c0-0.9,0-1.6,0.9-2.2c0.3-0.2,0.3-0.9,0.5-1.4c0.5-1.3,0.9-2.6,1.5-3.9 + c0.1-0.3,0.7-0.3,1.1-0.8c-4.4,0.8-8.4,0.5-11.6-3c-2.4,7.7-4.8,15.1-7.2,22.8C298.5,127.9,300.1,128.7,301.8,129.2z"/> + <path class="st0" d="M211.9,104.2c0.5,0.4,1,0.8,1.6,1.3c0-0.3,0.1-0.6,0.1-1.2c0.3,0.7,0.4,1.1,0.5,1.5 + c-0.3,0.1-0.6,0.3-0.9,0.4c0.3,0.1,0.5,0.3,0.9,0.5c-0.2,0.1-0.4,0.3-0.7,0.4c-0.2,0.5,1.7,1.2,0.2,1.4c0.6,1.3,1.1,2.7,1.7,4 + c0.2-0.1,0.3-0.1,0.5-0.2c-0.5-1.5-0.9-3.1-1.4-4.6c1.3,2.1,1.9,4.4,2.7,6.7c0.2,0,0.4-0.1,0.6-0.1c-0.2,0.2-0.4,0.3-0.7,0.6 + c0.3,0.1,0.5,0.1,0.6,0.2c0.2,0,0.4,0.1,0.5,0.1c-0.7-2.1-1.4-4.2-2-6.3c0.1,0,0.3-0.1,0.4-0.1c0.4,1.2,0.8,2.4,1.2,3.6 + c0.2,0.4,0.6,0.7,0.8,1.1c0.5,2.1,1,4.2,1.5,6.3c0.1,0,0.3,0,0.4-0.1c-0.1-1.4-0.3-2.9-0.4-4.3c0.3,1.1,0.6,2.3,1,3.4 + c0.1,0.4,0.5,0.7,0.9,1.1c0,0-0.3,0.2-0.7,0.5c0.6,0.1,0.9,0.2,1.4,0.3c-0.3,0.2-0.6,0.4-0.9,0.6c1.5,0.4,1.4,1.8,1.8,2.9 + c0.1,0.2-0.3,0.6-0.5,1c0.2,0,0.4,0,0.5,0c0.6,1.6,1.2,3.1,1.8,4.6c2.2-0.5,2.2-0.5,2-3.2c-0.2-2.4-0.4-4.7-0.8-7.1 + c-0.3-1.4-0.3-2.9-0.7-4.1c-0.5-1.6-0.4-3.3-1-4.8c-0.2-0.6,0.2-1.5,0-2.1c-0.3-0.7-0.5-1.2-0.3-2c0.1-0.4-0.1-2.2-0.2-2.5 + c-0.2-0.5-0.5-0.8-0.8-1.3c0.4-0.4,0.9-1.1,1.4-1.7c0-0.1-0.1-0.3-0.1-0.4c-4.3,3-9,2.9-13.8,1.7c0,0.2-0.1,0.4-0.1,0.5 + c0.6,0.4,1.1,0.8,1.7,1.3C212.5,103.9,212.2,104.1,211.9,104.2z"/> + <path class="st0" d="M313.2,127.7c0.4,0.1,0.8-0.2,1.1-0.4c0.5-0.1,0.9-0.3,1.4-0.4c-0.1-0.2-0.4-0.5-0.8-1 + c0.5,0.1,0.8,0.2,1.3,0.3c-0.5-0.6-0.9-1.1-1.5-1.7c0.7,0.3,1.1,0.5,1.7,0.8c-0.1-0.9-0.2-1.7-0.3-2.6c0.7,0.4,1.3,0.7,1.9,1.1 + c0.1-0.1,0.1-0.2,0.2-0.4c-0.4-0.3-0.8-0.6-1.2-1c0-0.1,0.1-0.1,0.1-0.2c0.5,0.2,0.9,0.4,1.6,0.8c-0.4-0.9-0.8-1.7-1.2-2.5 + c0.7-0.1,1.5,1.7,2.3,0.1c-0.2-0.3-0.4-0.6-0.7-1.2c0.6,0.2,0.9,0.2,1.1,0.3c0.3-0.6,0.7-1.1,1-1.7c-0.6-0.8-0.1-1.8,0.9-2.4 + c0.9-0.6,1.5-1.7,2.2-2.6c-0.4-0.3-0.7-0.5-0.9-0.6c-0.1-0.1-0.1-0.1-0.2-0.2c0.7-0.4,1.5-0.8,2.2-1.2c0-0.1,0-0.3,0-0.4 + c-3.3,0.1-6.6,0-8.8-2.9c-2.9,6.3-5.7,12.5-8.6,18.9C309.8,127.1,311.5,127.4,313.2,127.7z"/> + <path class="st0" d="M204.4,109c-0.1,0-0.4,0.2-0.9,0.4c0.2,0.1,0.4,0.3,0.5,0.3c0.8-0.4,1,0.1,1.3,0.6c1.6,3.3,3.2,6.5,4.8,9.8 + c0.7,1.5,1.3,3,2.1,4.5c0.6,1.2,1.3,2.4,2,3.7c0.3-0.1,0.8-0.2,1.5-0.4c-0.4-0.3-0.6-0.4-0.9-0.6c0.2-0.1,0.4-0.2,0.6-0.4 + c-0.5-0.3-0.8-0.6-1.2-0.8c1.1-0.8,0.7-1.3-0.5-1.6c0.4-0.1,0.6-0.2,1.1-0.4c-0.6-0.1-0.9-0.2-1.4-0.4c0.4-0.2,0.7-0.3,1-0.5 + c-1.2-4.1-2.3-8.2-3.6-12.5c0,0,0.2-0.2,0.3-0.3c-0.5-0.2-0.5-0.3-0.3-0.8c0.4-0.9-0.5-2.8-1.4-3c0.3-0.2,0.5-0.5,0.8-0.7 + c-0.3-0.2-0.6-0.3-0.7-0.4c0.2-0.2,0.5-0.5,0.6-0.8c0-0.2-0.4-0.4-0.6-0.7c0.2-0.3,0.6-0.8,1-1.3c-0.1-0.1-0.2-0.3-0.3-0.4 + c-3.7,2.6-7.8,3.4-12.2,2.2c0,0.2,0,0.4-0.1,0.6c1.4,0.4,2.9,0.8,3.9,1.1C202.8,107.3,203.6,108.1,204.4,109z"/> + <path class="st0" d="M322.2,126.3c2.3,0,4.8-2.3,5-4.6c0-0.4,0.3-0.8,0.7-1.1c0,0.3,0,0.6,0,0.9c0.1,0,0.3,0.1,0.4,0.1 + c0.2-0.8,0.5-1.6,0.8-2.6c0.5,0,1.4-0.1,0.9-1.4c0-0.1,0.5-0.2,0.7-0.4c0.8-1,1.5-2,2.3-3.1c-2.3-0.6-5.2,0.2-6.5-2.7 + c-2.8,5.1-5.6,10-8.3,15C319.8,126.3,321,126.3,322.2,126.3z"/> + <path class="st0" d="M191.7,108.9c0.3,0.8,0.6,1.5,0.9,2.3c-0.4,0.2-0.8,0.4-1.2,0.5c0,0.1,0,0.2,0.1,0.3 + c0.8-0.2,1.6-0.3,2.4-0.5c0,0,0,0.1,0.1,0.1c-0.3,0.1-0.6,0.3-1.1,0.4c0.5,0.6,0.4,1.9,1.8,1.2c-0.3,0.2-0.6,0.4-0.7,0.4 + c0.6,0.9,1.2,1.8,1.8,2.6c0.3,0.5,0.7,0.9,1.2,1.5c0,0-0.1,0.2-0.4,0.8c0.6-0.2,0.9-0.4,1.4-0.5c1.1,2,2.2,4.1,3.3,6.2 + c0.5,0.9,1,1.9,1.5,2.8c0.1,0.2,0.5,0.3,0.8,0.4c0.1-0.3,0.3-0.6,0.3-0.9c-0.5-1.7-1-3.4-1.6-5.1c-0.9-2.7-1.9-5.4-2.9-8 + c-0.2-0.4-0.5-0.8-0.9-1.2c0.1-0.1,0.2-0.3,0.4-0.5c-1.2-0.5-0.5-1.8-1-2.6c-0.1-0.2-0.3-0.3-0.4-0.5c-0.1-0.7-0.3-1.4-0.4-2.2 + c-0.1,0-0.2,0.1-0.3,0.1c0.2-0.5,0.3-0.9,0.5-1.4c-0.1-0.1-0.2-0.2-0.3-0.3c-3.1,2.9-6.7,3.8-10.7,3 + C187.8,108.9,189.6,109.5,191.7,108.9z"/> + <path class="st0" d="M180.2,112.7c0.1,0,0.2,0,0.3,0c0.1-0.3,0.2-0.6,0.4-1.1c0.3,1.8,0.9,0.1,1.3,0.3c0.2,0.6,0.4,1.2,0.7,1.8 + c-0.3,0.1-0.7,0.2-1,0.3c2.1,0.1,2.3,2,3.1,3.2c1,1.5,1.9,3,2.9,4.8c0.2-0.4,0.3-0.7,0.4-0.9c0.1,0.1,0.2,0.2,0.3,0.2 + c-0.2,0.4-0.4,0.8-0.7,1.3c0.4-0.1,0.8-0.1,1.3-0.2c-0.4,0.5-0.6,0.7-0.9,1.2c0.6-0.1,1-0.2,1.7-0.4c-0.5,0.5-0.7,0.8-1.2,1.3 + c0.6-0.1,0.9-0.2,1.2-0.3c0.4,0.5-0.4,1.3,0.9,1.7c0.6,0.2,1,1.4,1.5,2.1c0.2-0.1,0.4-0.2,0.5-0.3c-1.5-3.4-3.3-6.7-4.6-10.2 + c-1.2-3.2-3.2-6-3.4-9.8c-2.4,2.6-5.4,3.3-8.7,3.2c0,0.1,0,0.3,0,0.4c1.2,0.2,2.5,0.4,3.8,0.6C180.2,112,180.2,112.3,180.2,112.7 + z"/> + <path class="st0" d="M327.2,126.7c0.5-1.1,1.4-1.6,2.5-1.4c1.6,0.2,3.2,0.3,3.7-1.9c0.2,0.4,0.3,0.5,0.5,0.8 + c1.9-2,2.7-4.8,5.1-6.3c-2.2-0.9-4-1.6-5.8-2.3c-2.4,3.7-5,7.6-7.7,11.7C326.2,127.8,326.7,127.6,327.2,126.7z"/> + <path class="st0" d="M174.5,117.4c0.1,0.3,0.7,0.5,1,0.8c1,1,2.4,1.6,2.5,3.5c0.1,0.8,1.5,1.6,2.4,2.3c0.1-0.1,0.2-0.3,0.2-0.4 + c-1.9-4-3.8-8-5.7-11.9c-1.3,2.2-4,1.9-6.3,2.7c0.7,0.1,1.4,0.1,2,0.3C172.3,115.1,174,115.4,174.5,117.4z"/> + <path class="st0" d="M333.4,127.2c-1.5-0.4-3-0.7-4.6-1.1c0,0.1-0.1,0.2-0.1,0.3c0.3,0.2,0.6,0.5,0.9,0.7 + c1.2,0.8,1.2,2.4,0.3,3.5c-0.2,0.3-0.3,0.7-0.4,1.1c-0.1,0.9-0.6,1.5-1.1,2.2c-0.2,0.3-0.2,0.7-0.2,1.1c0.2,0.1,0.4,0.1,0.5,0.2 + c0.9-1.3,1.7-2.6,2.6-3.9c0.2-0.2,0.5-0.3,0.7-0.5c0.4-0.4,0.8-0.7,1-1.2c0.3-0.7,0.8-1.1,1.4-1.2c1.2-0.2,1.4-1,1.5-2.1 + C335.3,127.7,334.4,127.5,333.4,127.2z"/> + <path class="st0" d="M333.6,125.8c0,0.1,0.1,0.2,0.1,0.4c0.5-0.3,0.9-0.5,1.4-0.8c0.6-0.4,1.2-0.9,1.9-1.2c1-0.4,2.1-0.3,2.7-1.7 + c0.3-0.8,1.8-1.1,2.8-1.7c-1.3-0.7-2.4-1.4-3.6-2C337.2,121,335.4,123.4,333.6,125.8z"/> + <path class="st0" d="M324.1,131.9c0.2-0.4,0.4-0.9,0.6-1.3c-0.5-0.2-1-0.5-1.5-0.7c-0.1,0.3-0.1,0.5-0.2,0.8c0,0.1,0,0.3,0,0.4 + c-0.3,0-0.7-0.1-1.2-0.1c0.2,0.5,0.3,0.9,0.5,1.3c0,0.7,0.1,1.4-0.9,1.5c-0.3,0-0.7,0.4-0.7,0.7c-0.2,1-0.3,2-0.5,3 + c-0.4-0.1-0.8-0.4-1.2,0.3c-0.5,1.2-1.2,2.2-1.8,3.3c0.3,0.3,0.6,0.5,0.8,0.7c1.1-1.1,2.1-2.2,3.1-3.3c0.1-0.1-0.1-0.4-0.1-0.6 + c0.5-0.5,1-0.9,1.4-1.4c0.8-1.1,1.5-2.3,2.2-3.5C324.8,132.5,324.7,132.1,324.1,131.9z"/> + <path class="st0" d="M170.1,121.6c0.2,0.2,0.4,0.3,0.7,0.4c0-0.2,0-0.5-0.1-0.7c-0.4-1-0.8-1.9-1.2-2.9c-0.4-1-0.8-1.9-1.2-2.7 + c-1.2,0.6-2.4,1.1-3.9,1.8C167.3,117.5,168.3,120.1,170.1,121.6z"/> + <path class="st0" d="M328.1,127.1c-0.1,0.3-0.3,0.6-0.3,0.8c-0.3,1.1-0.9,1.3-1.9,0.9c-1.7-0.6-3.4-1.2-5.1-1.7 + c-0.5-0.2-1.1-0.1-1.7-0.2c0,0.2-0.1,0.3-0.1,0.5c1.7,0.8,3.4,1.6,5.2,2.3c0.8,0.3,1.4,0.9,2.5,0.7 + C327.7,130,328.7,128.3,328.1,127.1z"/> + <path class="st0" d="M336.3,124.8c-0.1,0.2-0.1,0.4-0.2,0.6c0.8,0.5,1.5,1,2.4,1.6c0,0.1-0.1,0.4-0.3,1.1 + c0.7-0.5,1.1-0.8,1.6-1.2c0,0.3,0,0.5,0,0.7c0.9-0.4,1.8-0.8,2.7-1.3c0-0.1,0-0.2,0-0.3C340.5,125.6,338.4,125.2,336.3,124.8z"/> + <path class="st0" d="M316.7,142.4c-0.8,1.5-1.6,2.8-2.5,4.5c0.8-0.1,1.2-0.2,1.5-0.2c0.3-0.7,0.5-1.2,0.7-2 + c0.1,0-0.2-0.1-0.4-0.2c0.6-0.3,1.2-0.5,1.9-0.8C317.5,143.2,317.2,142.9,316.7,142.4z"/> + <path class="st0" d="M163.7,118.2c-0.8,0.8-1.6,1.6-2.5,2.5c1,0.1,2.1,0.3,3.2,0.5C164.1,120,163.9,119,163.7,118.2z"/> + <path class="st0" d="M315.7,129.7c0.6,0.3,1.1,0.5,1.6,0.7c0.3-1.1,1.6-1.9,0.5-3.3C317.1,128.1,316.5,128.8,315.7,129.7z"/> + <path class="st0" d="M229.5,118c0.6,2,1.3,4.1,1.9,6.1c0.1,0,0.1,0,0.2,0c-0.2-1.4,0.2-3.3-0.6-4.2 + C230.4,119.3,230.3,118.5,229.5,118z"/> + <path class="st0" d="M324.4,139.2c1.6,1.3-1.6,1.2-0.7,2.5c0.6-0.5,1.3-1.1,2-1.6c-0.1-0.4-0.2-1-0.3-1.6 + C325,138.7,324.7,139,324.4,139.2z"/> + <path class="st0" d="M306.7,127.4c-0.7,1-1.3,1.9-1.9,2.8C306.1,130.8,306.9,129.7,306.7,127.4z"/> + <path class="st0" d="M311.4,151.2c0.3,0.2,0.7,0.3,0.7,0.3c0.5-0.7,1-1.4,1.4-1.9c-0.3,0-0.9-0.1-1.3-0.2 + C311.9,150,311.7,150.6,311.4,151.2z"/> + <path class="st0" d="M279.7,131.4c0.6-1,1.3-2.1,1.9-3.1c-0.2-0.1-0.3-0.2-0.5-0.3c-0.6,1-1.3,2-1.9,3.1 + C279.4,131.2,279.6,131.3,279.7,131.4z"/> + </g> + </g> + <g> + <g> + <path class="st2" d="M215.4,151.1L215.4,151.1C215.3,151.1,215.3,151.1,215.4,151.1z"/> + <path class="st2" d="M308.4,136L308.4,136C308.4,136,308.4,136,308.4,136z"/> + <path class="st2" d="M343.2,123.4c-0.2-0.9,0.6-2,1-3.2c-0.4-0.2-0.9-0.6-1.5-0.8c-1.1-0.5-1.8-1.1-2.2-2.3 + c-0.1-0.4-0.8-0.8-1.3-1c-0.8-0.2-1.6-0.1-2.4-0.4c-0.7-0.3-1.5-0.9-1.8-1.5c-0.4-1-0.9-1.4-2-1.5c-0.7,0-1.5-0.2-2.2-0.3 + c-1.2-0.1-2.2-0.6-2.9-1.7c-0.7-1.2-1.7-1.7-3.1-1.5c-2.9,0.4-5.4-0.5-7.5-2.7c-0.4-0.5-1.4-0.8-2-0.7c-4.1,0.8-7.7,0.1-11-2.6 + c-0.4-0.4-1.2-0.4-1.8-0.4c-1.1,0-2.2,0.1-3.3,0.4c-2.1,0.5-4.2,0.2-5.9-1.1c-2.7-1.9-5.5-2.4-8.6-1.5c-2.7,0.8-5.2,0.2-7.5-1.1 + c-2.1-1.2-4.2-1.5-6.5-0.6c-3.2,1.2-6.3,1-9.3-0.4c-1.7-0.8-3.4-1-5.2-0.3c-4.1,1.7-8.1,1.1-12.2,0c-1-0.3-2.4-0.4-3.3,0.1 + c-4.4,2.1-8.9,1.7-13.4,0.5c-1.4-0.4-2.7-0.2-3.9,0.6c-3.2,1.9-6.6,2.3-10.1,1.5c-1.8-0.4-3.6-0.4-5.2,0.9c-3,2.3-6.5,2-10,1.6 + c-0.8-0.1-1.9,0.1-2.5,0.6c-2.6,2.3-5.6,3.1-9,2.3c-1.2-0.3-2.2,0-3.1,1c-1.8,2.1-4.3,2.5-6.9,2.3c-1.3-0.1-2.3,0.3-3,1.5 + c-0.6,1.1-1.7,1.5-2.9,1.6c-0.9,0.1-1.8,0.2-2.7,0.4c-0.4,0.1-1,0.5-1.1,0.8c-0.4,1.6-1.7,2-3.1,2.2c-1.3,0.2-2,0.6-2.4,2 + c-0.3,1-1.6,1.7-2.5,2.5c0.6,0.8,1.8,1.8,1.8,2.7c0,0.9-1.2,1.8-2.1,3c8.2,10.1,16.5,20.5,24.9,30.8c0.6,0,1.2,0,1.8,0 + c-0.1-0.2-0.2-0.4-0.4-0.6c-6.6-8.2-13.1-16.3-19.7-24.5c-1.6-1.9-3.1-3.8-4.8-5.8c1.9-0.4,3.6-0.8,5.4-1.2 + c0,0.1,0.1,0.3,0.1,0.4c-0.5,0.5-1,1.1-1.5,1.7c0.8,1.1,1.4,2.1,2.2,3.1c5.6,7.5,11.2,15,16.9,22.4c1.2,1.5,2.4,3,3.7,4.5 + c0.3,0,0.6,0,0.9,0c-1.1-1.5-2.2-3.1-3.3-4.6c-4.3-5.6-8.5-11.2-12.8-16.8c-2.2-2.9-4.3-5.7-6.7-8.8c2.4-0.5,4.6-0.9,7.2-1.4 + c-0.9,1-1.5,1.7-2,2.4c4,5.5,7.9,10.8,11.7,16.2c3,4.3,5.9,8.6,8.9,12.9c0.4,0,0.8,0,1.2,0c-1.2-1.8-2.4-3.5-3.7-5.3 + c-4.5-6.2-9-12.4-13.5-18.6c-1.3-1.8-2.6-3.5-4-5.3c2.6-0.5,5-0.9,7.5-1.4c-0.2,1-0.4,1.8-0.6,3.1c3.1-0.8,5.7-1.6,8.3-2.2 + c0.2-0.1,0.6,0.2,0.9,0.2v0c-0.6,0.7-1.3,1.4-2,2.1c5.7,9.1,11.4,18.3,17.1,27.4c0.7,0,1.4,0,2.1,0c-1.5-2.5-3.1-5-4.6-7.5 + c-0.1,0.1-0.3,0.1-0.4,0.2c0.3,0.6,0.7,1.3,1,1.9c-0.1,0-0.1,0.1-0.2,0.1c-0.4-0.6-0.9-1.2-1.3-1.8c-3.7-5.8-7.4-11.5-11.2-17.3 + c-1.1-1.7-1.7-3.3-0.6-5.2c0.8,0.8,1.6,1.6,2.7,2.6c2-0.7,4.4-1.7,7.3-2.8c-0.5,0.6-0.7,0.8-0.8,1.1c-0.2,0.6-0.7,1.3-0.5,1.8 + c0.4,1.1,1,2.2,1.7,3.1c0.8,1,0.1,2.9,1.9,3.3c-0.3,0.2-0.5,0.5-0.8,0.8c1.3,0.5,2.3,1.2,2,2.6c-0.3,1.2,0.3,1.3,1.4,0.9 + c-0.4,0.6-0.7,0.9-1.2,1.6c0.7-0.3,1.1-0.4,1.6-0.6c-0.3,0.6-0.5,1-0.9,1.7c0.6-0.3,0.9-0.5,1.2-0.6c0,0.1,0.1,0.1,0.1,0.2 + c-0.2,0.3-0.5,0.6-0.9,1.1c0.6-0.2,0.9-0.3,0.9-0.3c0.1,0.8,0.3,1.6,0.4,2.3c0.4-0.1,0.8-0.2,1.1-0.3c0,0.1,0.1,0.1,0.1,0.2 + c-0.3,0.2-0.5,0.4-0.8,0.7c0.1-0.1,0.3-0.1,0.4-0.2c0.5,0.7,1.4,1.5,1.3,2c-0.5,1.6,0.8,1.7,1.4,2.4c-0.1,0.1-0.3,0.1-0.4,0.2 + c0.8,1.7,1.7,3.4,2.5,5.1c0.2-0.1,0.4-0.2,0.7-0.3c-0.1,0.4-0.2,0.6-0.3,0.8c0.5,0,1,0,1.5,0c0-0.1-0.1-0.3-0.1-0.4 + c-4.2-8.1-8.4-16.3-12.5-24.4c-0.8-1.5-1.4-3.2-0.4-5.1c0.8,0.9,1.5,1.7,2.3,2.6c-0.7,0.4-1.2,0.7-1.8,1c0.1,0.2,0.1,0.3,0.2,0.5 + c3.2-1,6.4-2.1,9.8-3.2c-0.3,0.7-0.6,1.4-1,2.2c1.2,0.2,1.6,0.7,0.4,1.8c0.5,0,0.8,0,1.4,0c-0.5,0.4-0.8,0.6-1.3,0.9 + c0.6,0.1,0.9,0.1,1.3,0.1c-0.2,0.3-0.4,0.5-0.7,0.7c0.4,0.1,0.7,0.1,0.9,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c0.2,0.6,0.5,1.2,0.8,2 + c-0.4-0.3-0.6-0.4-0.9-0.7c0.2,0.5,0.3,0.8,0.4,1.2c0.4-0.2,0.7-0.3,0.9-0.4c0,0.1,0.1,0.1,0.1,0.2c-0.3,0.3-0.6,0.6-0.6,0.7 + c0.6,0.4,1,0.8,2,1.5c-0.8,0.1-1.1,0.2-1.5,0.3c0.1,0.1,0.2,0.3,0.4,0.4c0.3-0.1,0.6-0.1,0.9-0.2c-0.3,0.7-0.6,1.3-0.9,1.9 + c0.1,0,0.1,0.1,0.2,0.1c0.3-0.3,0.6-0.6,1.1-1.3c0,1.3,0,2.2,0,3.2c0.2-0.3,0.4-0.5,0.6-0.8c0.2,1,0.2,2.1,0.7,2.7 + c0.6,0.7,0.3,0.8-0.1,1.2c0,0,0,0.1,0,0.2c0.3,0,0.6-0.1,1.3-0.2c-0.6,0.5-0.9,0.7-1.4,1.1c0.6-0.1,0.9-0.2,1.2-0.3 + c0.4,1.5,0.8,2.8,1.3,4.3c0.1,0,0.3,0,0.5,0c-0.3,0.4-0.5,0.7-0.7,1c0.4,0.1,0.6,0.1,0.9,0.2c-0.1,0.4-0.3,0.7-0.4,1 + c0.3,0,0.6,0.1,1.1,0.2c-0.6,0.4-0.9,0.6-1.2,0.8c0,0.1,0.1,0.1,0.1,0.2c0.3-0.1,0.7-0.2,1.1-0.3c0,1,1.4,2-0.2,2.8 + c0.7,0,1.4,0,2.1,0c-0.1-0.3-0.1-0.7-0.2-1c-2.9-8.3-5.9-16.5-8.8-24.8c-0.4-1.2-0.7-2.4-1-3.6c0.1-0.1,0.2-0.1,0.4-0.2 + c0.8,0.9,1.6,1.7,2.4,2.6c-0.3,0.3-0.6,0.5-0.9,0.8c0.1,0.2,0.1,0.3,0.2,0.5c3.1-0.9,6.1-1.9,9.3-2.8c-0.2,0.4-0.4,0.9-0.5,1.1 + c0.3,0.8,0.5,1.3,0.8,2c-0.6,0.1-0.9,0.2-1.3,0.2c0.5,0.1,1,0.2,1.4,0.3c0,0.1,0,0.2,0.1,0.3c-0.6,0.2-1.2,0.5-2.2,0.9 + c1.1-0.1,1.7-0.2,2.4-0.2c0,0.1,0,0.2,0,0.3c-0.7,0.2-1.4,0.4-2,0.6c0,0.1,0.1,0.1,0.1,0.2c0.7-0.1,1.3-0.1,2-0.2 + c0,0.1,0,0.2,0.1,0.3c-0.6,0.2-1.3,0.4-2.3,0.7c1.1,0,1.8,0,2.8,0c-0.9,0.4-1.5,0.6-2.3,0.9c0.9-0.1,1.5-0.1,2.4-0.1 + c-0.4,0.4-0.7,0.6-1.2,1c0.7,0,1-0.1,1.6-0.1c-0.4,0.3-0.7,0.6-1.1,0.9c0.5,0,0.8,0.1,1.6,0.1c-1.2,0.5-1.9,0.9-2.7,1.2 + c0,0.1,0.1,0.1,0.1,0.2c0.8-0.2,1.6-0.4,2.4-0.6c0,0.1,0.1,0.2,0.1,0.3c-0.7,0.3-1.4,0.6-2.1,0.9c0,0.1,0,0.1,0.1,0.2 + c0.7-0.1,1.4-0.2,2.1-0.3c0,0.1,0,0.2,0.1,0.3c-0.6,0.2-1.2,0.5-1.9,0.7c0,0.1,0,0.1,0,0.2c0.7-0.1,1.4-0.2,2.1-0.2 + c0,0.1,0,0.2,0,0.3c-0.6,0.3-1.3,0.5-1.9,0.8c0,0.1,0,0.1,0.1,0.2c0.7-0.1,1.4-0.2,2.1-0.3c0,0.1,0,0.2,0.1,0.3 + c-0.7,0.3-1.5,0.6-2.2,0.9c0,0.1,0.1,0.2,0.1,0.3c0.4-0.2,0.8-0.3,1-0.4c0.6,0.6,1,1,1.4,1.4c-0.4,0.2-0.8,0.4-1.4,0.7 + c0.8,0,1.3,0,1.8,0c0,0.1,0.1,0.2,0.1,0.2c-0.3,0.2-0.6,0.3-1.2,0.7c0.8,0.1,1.1,0.1,1.5,0.1c-0.4,0.3-0.6,0.6-0.9,0.8 + c0.1,0.1,0.1,0.2,0.2,0.3c0.3-0.1,0.6-0.1,0.9-0.2c0,0.1,0,0.2,0.1,0.2c-0.4,0.2-0.8,0.4-1.2,0.5c0,0.1,0,0.2,0.1,0.2 + c0.4,0,0.8,0,1.2-0.1c0,0.1,0,0.1,0,0.2c-0.4,0.2-0.7,0.3-1.1,0.5c0,0.1,0.1,0.2,0.1,0.3c0.4,0,0.8,0,1.1-0.1 + c1,1.5-0.9,1.2-1.4,1.9c0.7-0.1,1.3-0.1,1.8-0.2c0,0.1,0,0.1,0,0.2c-0.5,0.2-1,0.4-1.9,0.8c1-0.1,1.6-0.1,2.2-0.2 + c0,0.1,0,0.2,0.1,0.3c-0.8,0.2-1.7,0.4-2.5,0.6c0,0,0,0.1,0,0.1c0.9,0,1.7-0.1,2.9-0.1c-0.7,0.4-1.2,0.6-2,1 + c0.9-0.1,1.3-0.1,1.8-0.2c0,0.1,0,0.2,0,0.3c-0.4,0.2-0.9,0.4-1.3,0.7c0,0.1,0.1,0.2,0.1,0.2c0.5-0.1,0.9-0.2,1.4-0.3 + c0,0.1,0.1,0.2,0.1,0.3c-0.5,0.2-1,0.5-1.9,0.8c1-0.1,1.5-0.1,2.3-0.2c-0.4,0.4-0.7,0.7-1.1,1.1c0.5-0.1,0.8-0.1,1.5-0.2 + c-0.6,0.5-0.9,0.7-1.2,0.9c0,0.1,0.1,0.1,0.1,0.2c0.3-0.1,0.6-0.2,0.9-0.3c0,0.4,0,0.7,0,0.9c0.6,0,1.2,0,1.8,0 + c-2.1-7.9-4.2-15.8-6.3-23.7c-0.5-1.8-1-3.6-1.6-5.5c1.6,0.3,2.8,2.1,2.2,3.4c1.4-0.3,2.7-0.5,3.9-1c1.2-0.5,2.3-1.2,3.5-1.9 + c-0.3,1-0.6,1.9-0.9,2.7c0.1,0,0.5,0.1,0.5,0.1c0.1,0.6,0,1.2,0,1.9c0.1,0,0.3,0,0.6,0.1c-0.5,0.3-0.8,0.5-1.2,0.9 + c0.5,0,0.9,0,1.3,0c-0.5,0.6-0.9,1.1-1.3,1.6c0.1,0.1,0.1,0.1,0.2,0.2c0.4-0.3,0.7-0.6,1.4-1.2c-0.2,1.1-0.3,1.9-0.4,2.7 + c0,0,0.3,0,0.9,0.1c-0.5,0.4-0.8,0.6-1,0.8c0.1,0,0.3,0,0.4,0.1c0,0.5,0.1,1,0.1,1.5c0,0,0.1-0.1,0.1-0.1 + c0.3,0.6,0.6,1.2,0.9,1.9c-0.6,0.3-1,0.4-1.1,0.5c0.1,0.9,0.2,1.6,0.3,2.4c0.3,0,0.6-0.1,1.1-0.1c-1,1.2-0.8,1.8,0.4,2.2 + c-0.2,0.2-0.3,0.4-0.5,0.5c0.1,0.1,0.3,0.1,0.3,0.2c0.2,0.7,0.7,1.8,0.4,2c-1,1.1,0.2,1.2,0.6,1.7c-0.4,0.5-0.8,1.1-1.3,1.7 + c0.6,0.1,1.1,0.2,1.5,0.3c-1.1,1-1.1,2.2-0.1,3c-0.3,0.3-0.5,0.6-0.8,0.9c1,0,2,0,3,0c-0.2-0.9-0.4-1.7-0.6-2.6 + c-1.4-7.9-2.8-15.9-4.2-23.8c-0.1-0.8-0.2-1.7-0.4-3c2.1,1.7,3.5,4.1,6,3.5c2.1-0.5,4-1.7,6.1-2.6c-0.2,0.3-0.5,0.6-0.7,1 + c-0.4,0.6-1.1,1.2-1.2,1.9c-0.2,0.9-0.1,1.9-0.1,2.8c-1,0.2-1.8,0.5-2.7,0.7c0,0,0,0.1,0.1,0.1c0.9,0,1.8,0,3,0 + c-0.7,0.4-1.2,0.7-1.6,1c0,0.1,0.1,0.1,0.1,0.2c0.5,0,1-0.1,1.4-0.1c0,0.1,0,0.1,0.1,0.2c-0.7,0.3-1.3,0.6-2.3,1 + c0.8,0,1.2,0,1.5,0c0,0.5,0.1,1,0.1,1.4c-0.4,0.1-0.8,0.2-1.1,0.3c0,0.1,0,0.2,0,0.2c0.4,0,0.9,0.1,1.7,0.2 + c-0.7,0.3-1.1,0.5-1.5,0.6c0,0.1,0,0.2,0.1,0.2c0.4,0,0.8,0,1.1,0.1c0,0.1,0,0.2,0,0.2c-0.7,0.1-1.4,0.3-2.3,0.5 + c0.7,0.2,1.1,0.3,1.6,0.5c0,0.1,0,0.2,0,0.3c-0.3,0.1-0.6,0.2-1,0.3c0.5,0.2,0.9,0.4,1.3,0.6c-0.4,0.3-0.6,0.4-1,0.7 + c1.1,0,1.9,0,3,0c-0.4,0.3-0.6,0.6-0.7,0.6c-1.3-0.6-1.2,0.4-1.2,1.1c-0.1,1.5-0.2,3.1-0.3,4.7c0.4,0,0.7,0,1.1,0 + c0,0.1,0,0.2,0.1,0.2c-0.4,0.2-0.7,0.4-1.5,0.8c1.1,0,1.7,0,2.7,0c-0.7,0.4-1,0.5-1.3,0.7c0,0.1,0.1,0.2,0.1,0.2 + c0.3,0,0.5,0,1.2,0c-0.6,0.4-0.9,0.6-1.3,0.9c0.4,0.1,0.6,0.2,0.9,0.3c-0.1,0.1-0.2,0.1-0.4,0.2c0.1,0.3,0.2,0.7,0.3,1 + c-0.3,0.2-0.7,0.4-1.1,0.6c0,0.1,0,0.1,0.1,0.2c0.3-0.1,0.7-0.1,1.2-0.2c0,1,0,1.8,0,2.6c1.2,0,2.4,0,3.6,0 + c-0.1-0.4-0.2-0.8-0.3-1.2c-0.6-9.3-1.2-18.6-1.8-27.8c4.1,3.3,8.4,5,13,0.2c-1.1,2-2.3,3.6-4.6,4.7c1.1-0.2,1.8-0.3,2.6-0.4 + c0,0.1,0,0.3,0.1,0.4c-0.8,0.2-1.5,0.4-2.3,0.7c0,0.1,0,0.1,0,0.2c0.6,0,1.2-0.1,2-0.1c-0.4,0.8-0.7,1.4-1,2c0.1,0,0.4,0,1.2,0.1 + c-0.8,0.4-1.1,0.5-1.7,0.8c0.6,0.1,0.9,0.1,1.3,0.2c0,0.1,0,0.2,0,0.2c-0.6,0.2-1.2,0.4-1.8,0.6c0,0.1,0.1,0.2,0.1,0.2 + c0.5-0.1,1.1-0.2,1.7-0.3c0,0.6-0.1,1.2-0.1,1.6c-0.8,0.2-1.5,0.4-2.2,0.5c0,0.1,0,0.2,0,0.2c0.7-0.1,1.5-0.1,2.2-0.2 + c0,0.1,0,0.2,0,0.2c-0.4,0.2-0.7,0.4-1.3,0.6c0.5,0.1,0.9,0.2,1.4,0.4c-0.6,0.3-1,0.5-1.4,0.6c0,0.1,0.1,0.2,0.1,0.3 + c0.3,0,0.7-0.1,1-0.1c0,0.6,0,1.1,0,1.5c-0.6,0.1-1.1,0.2-1.7,0.3c0,0.1,0,0.2,0,0.3c0.6,0,1.1,0,1.7,0c0,0.1,0.1,0.2,0.1,0.3 + c-0.6,0.2-1.1,0.4-1.9,0.7c0.8,0.1,1.3,0.1,1.8,0.2c0,0.5,0,1,0,1.4c-0.8,0.1-1.5,0.2-2.3,0.3c0,0.1,0,0.1,0,0.2 + c0.7,0,1.5,0.1,2.6,0.2c-0.7,0.3-1.1,0.5-1.4,0.6c0,0.1,0,0.2,0.1,0.3c0.3,0,0.7,0,1,0c0,0.1,0,0.2,0.1,0.3 + c-0.7,0.2-1.4,0.4-2.2,0.6c0,0,0,0.1,0.1,0.1c0.7,0,1.4,0,2.1,0c0,0.1,0,0.2,0.1,0.3c-0.6,0.2-1.3,0.3-1.9,0.5 + c0,0.1,0,0.1,0.1,0.2c0.5,0,1.1,0,1.7,0c-0.2,1.1,0.7,2.4-1.1,3.1c0.3,0,0.7,0,1,0c0,0.1,0,0.2,0,0.3c-0.8,0.1-1.7,0.3-2.5,0.4 + c0,0.1,0,0.1,0,0.2c0.8,0,1.6,0.1,2.4,0.1c0,0.1,0,0.2,0,0.3c-0.7,0.1-1.3,0.2-2,0.2c0,0.1,0,0.2,0,0.2c0.4,0.1,0.8,0.1,1.2,0.2 + c0,0.1,0,0.2,0,0.2c-0.4,0.1-0.8,0.3-1.2,0.4c0,0.1,0.1,0.2,0.1,0.2c0.7,0,1.3-0.1,2-0.1c0,0.1,0,0.2,0,0.2 + c-0.4,0.2-0.8,0.4-1.2,0.6c1.6,0,3.2,0,4.8,0c0.1-3.2,0.3-6.5,0.2-9.7c0-6.4,0.7-12.8-0.3-19.3c3.8,2.7,7.7,5.5,11.9,0.2 + c0.1,0.2,0.2,0.4,0.3,0.6c-1.1,1.3-2.2,2.5-3.3,3.8c-0.1,0.9-0.2,1.9-0.3,2.8c-0.5,0.2-0.9,0.3-1.3,0.4c0,0.1,0.1,0.2,0.1,0.3 + c0.3-0.1,0.7-0.2,1-0.3c0,0.7,0,1.2,0,1.8c-0.5,0.1-1,0.1-1.6,0.2c0.7,0.2,1.3,0.3,1.8,0.4c0,0.1,0,0.2,0,0.3 + c-0.3,0.1-0.6,0.2-1.1,0.3c1.1,0.6,1.4,1.2,0.9,3c-0.2,0.8-1.2,1.4-1.7,2.1c0.9,0.5,0.9,0.8-0.4,1.8c0.4,0.1,0.7,0.1,0.7,0.1 + c-0.2,0.4-0.5,0.8-0.6,1.2c0,0.2,0.3,0.5,0.5,0.8c-0.2,0.1-0.5,0.2-1.2,0.5c0.8,0.1,1.1,0.2,1.5,0.3c-0.5,0.2-0.8,0.4-1.3,0.6 + c0.6,0.1,0.9,0.2,0.8,0.2c-0.3,1-0.6,1.9-0.9,3c0.6,0,0.9,0.1,1.5,0.1c-0.7,0.3-1,0.4-1.3,0.6c0,0.1,0,0.2,0.1,0.3 + c0.3,0,0.7,0,1,0c0,0.1,0,0.2,0,0.2c-0.3,0.1-0.7,0.2-1.1,0.3c0,1.1,0,2.1,0,3.2c1.4,0,2.8,0,4.2,0c1.1-9.4,2.3-18.9,3.4-28 + c2.2,0.9,4.7,1.9,7.2,2.9c-0.1,0.1-0.4,0.2-0.6,0.3c0.2,0.2,0.6,0.4,0.6,0.4c-0.3,0.5-0.6,1-0.8,1.3c0.1,0.4,0.3,0.9,0.2,1.2 + c-0.9,1.9,0,4.3-1.9,5.9c-0.4,0.3-0.1,1.4-0.2,2.1c-0.1,0.7-0.2,1.3-0.3,1.9c0,0.1-0.5,0-1.1,0.1c0.6,0.3,0.9,0.4,1.3,0.7 + c-0.5,0.1-0.8,0.2-1.3,0.3c0.6,0.2,0.9,0.3,1.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.4c-0.2,0-0.5-0.1-0.7-0.1c-0.3,0-0.5,0-0.5,0 + c0.3,0.4,0.8,0.9,1.3,1.6c-0.7-0.4-1.2-0.7-1.6-1c-0.1,0.1-0.1,0.2-0.2,0.4c0.3,0.1,0.6,0.2,1.2,0.4c-0.5,0.2-0.8,0.3-1,0.4 + c0.2,0.2,0.5,0.6,0.4,0.7c-0.5,0.8-0.3,1.8-0.5,2.6c-0.1,0.2,0.2,0.6,0.1,0.7c-0.7,1.1-1,3.6-0.5,4.5c1.7,0,3.4,0,5.1,0 + c0.2-0.2,0.6-0.3,0.6-0.5c0.2-2.2,0.9-4.3,1-6.6c0.1-1.2,0.7-2.3,1.1-3.5c0,0,0,0-0.1,0c0.3-0.8,0.5-1.5,0.7-2.1 + c0,0-0.1-0.1-0.3-0.3c-0.1,0.1-0.2,0.3-0.3,0.4c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c0-0.3,0-0.5,0-0.7c1.5-0.1,0.9-1.3,1.1-2 + c0.3-0.9,0.4-1.9,0.6-2.9c0.5-3.5,2.2-7,0.3-10.3c2.8,1,5.9,2.1,8.8,3.2c0.9-1.6,1.6-2.7,2.3-3.9c0.2,0.5,0.1,0.9,0,1.3 + c-0.9,2.1-1.9,4.1-2.9,6.2c-0.5,1-1.2,2.1-1.2,3.1c0,2.5-0.8,4.7-2.3,6.7c-0.1,0.1-0.2,0.3-0.1,0.5c0.1,0.8-0.6,1.4-1.4,1.2 + c-0.1,0-0.2,0.1-0.4,0.2c0.4,0.2,0.8,0.4,1.4,0.7c-0.6,0.2-0.9,0.2-1.3,0.3c0.5,0.2,0.9,0.3,1.5,0.5c-1.2,0.2-1.6,0.7-1.3,1.4 + c0.5,1-0.3,3.1-1.3,3.5c0.1,0.2,0.3,0.4,0.6,0.7c-0.7-0.1-1.1-0.1-1.7-0.1c0.5,0.3,0.9,0.6,1.6,1.1c-0.9-0.1-1.4-0.2-2.1-0.3 + c0.6,0.4,1,0.7,1.6,1.1c-0.6,0-0.9,0-1.3,0c0.3,0.4,0.5,0.7,0.8,1.1c1.8,0,3.6,0,5.4,0c0.2-1.2,1.5-2.1,0.6-3.5 + c0.9-0.7,0.7-2,1.2-2.9c0.9-1.5,1.2-3.3,1.7-4.9c0.1-0.2-0.3-0.6-0.4-0.9c0-0.1,0-0.2,0-0.3c0.3,0,0.6,0,1.2-0.1 + c-0.5-0.3-0.7-0.5-1.1-0.8c2.2,0,0.6-1.5,1.1-2.3c0.5-0.7,0.6-1.7,0.8-2.6c0.1-0.1,0.6-0.2,0.6-0.4c0-0.4-0.2-0.8-0.4-1.3 + c0.3,0,0.6,0,1.1,0c-0.4-0.3-0.7-0.5-1.2-1c0.7,0,1,0,1.2,0c-0.2-0.3-0.6-0.7-0.5-0.8c1-1.3,0.6-3.2,1.9-4.4c0.1-0.1,0-0.2,0-0.7 + c-0.3,0.5-0.4,0.8-0.5,0.8c-0.5-1-1-2-1.4-2.6c3,1,6.2,2.1,9.5,3.2c-0.5,0.9-1.2,1.9-1.9,3.2c-0.3,0.8-0.5,2.1-1.2,3.2 + c-0.3,0.4-0.8,0.4-0.6,1.3c0.1,0.6-0.1,1.9-1.5,1.8c0.2,0.3,0.3,0.6,0.6,1.1c-0.4-0.1-0.7-0.1-1.1-0.1c0.3,0.3,0.4,0.6,0.4,0.5 + c-0.4,0.5-0.8,0.8-0.9,1.2c-0.1,0.5,0,1.1,0,1.8c-0.5-0.3-0.7-0.4-1.2-0.7c1.8,2.2-0.7,2.5-1.1,3.6c0.2,0.2,0.4,0.3,0.8,0.6 + c-0.7,0.5-1.4,1-1.9,1.4c0.1,0.7,0.1,1.3,0.2,1.9c-0.4-0.1-0.7-0.1-0.7-0.1c0,0.6,0.2,1.3,0,1.7c-0.3,0.4-0.9,0.7-1.4,1 + c0.1,0.1,0.4,0.3,1,0.6c-0.7,0.4-1.3,0.7-1.8,1c0.1,0.1,0.2,0.2,0.3,0.3c2.2,0,4.4,0,6.6,0c0.2-0.6,0.5-1.1,0.7-1.7 + c0.7-2.3,3.1-4.1,2.2-6.9c0-0.1,0.6-0.5,0.9-0.7c-0.1-0.2-0.3-0.5-0.5-0.9c0.4,0.1,0.7,0.1,1,0.2c-0.2-0.3-0.3-0.6-0.5-0.9 + c0.1,0,0.3,0.1,0.4,0.1c0.5-1.1,0.9-2.3,1.4-3.4c0.1,0,0.2,0.1,0.4,0.1c-0.2-0.3-0.3-0.5-0.5-0.9c0.5-0.1,0.8-0.1,0.8-0.1 + c0.9-2,0.8-4.1,2.1-5.9c0,0,0,0,0.1,0c0.4-1.1,0.5-2.2,1-3.1c1.3-2.6,1.4-2.6-0.8-4.5c-0.2-0.2-0.4-0.3-0.5-0.4 + c0-0.1,0.1-0.1,0.1-0.2c2.9,1,5.8,2.1,9.1,3.3c-1,0.8-1.6,1.3-2.3,1.8c0.2,0.2,0.3,0.5,0.4,0.5c-0.8,1.4-1.6,2.6-2.3,3.8 + c-0.1-0.1-0.2-0.1-0.3-0.2c0.2,0.3,0.3,0.5,0.6,1c-0.5-0.1-0.8-0.2-1.2-0.2c0,0.7,0,1.2,0,1.4c-0.7,0.4-1.1,0.7-1.8,1 + c1.2,0.7,1.1,1.2,0.2,1.7c-0.7,0.4-1.3,0.9-2.2,1.5c0.7,0.2,1,0.3,1.1,0.3c-0.7,0.5-1.5,0.9-1.5,1.1c0.2,1-0.4,1.3-0.9,1.9 + c-0.4,0.4-0.6,1.1-0.7,1.7c-0.2,1.4-1.4,3.1-2.1,3.2c-0.1,0.5,0,0.9-0.2,1.2c-0.3,0.5-0.6,1-1,1.2c-0.7,0.2-1,0.7-0.6,1.4 + c0.1,0.1,0.1,0.2,0.1,0.4c-0.3,0-0.6-0.1-0.9-0.1c0.3,0.3,0.4,0.6,0.7,0.9c-0.9-0.1-1.8-0.7-2.1,0.5c7,0,14.1,0,21.1,0 + c4.4-5.6,8.8-11.2,13.1-16.9c3.6-4.6,7.1-9.3,10.7-13.9C344.4,125.2,343.4,124.4,343.2,123.4z M161.2,120.7 + c0.9-0.9,1.7-1.7,2.5-2.5c0.2,0.8,0.4,1.8,0.7,3C163.2,121,162.2,120.9,161.2,120.7z M170.1,121.6c-1.8-1.5-2.8-4.1-5.7-4.1 + c1.4-0.7,2.7-1.3,3.9-1.8c0.3,0.8,0.8,1.7,1.2,2.7c0.4,1,0.8,1.9,1.2,2.9c0.1,0.2,0.1,0.5,0.1,0.7 + C170.6,121.9,170.3,121.8,170.1,121.6z M180.4,124c-0.8-0.8-2.3-1.5-2.4-2.3c-0.2-1.8-1.5-2.5-2.5-3.5c-0.3-0.3-1-0.5-1-0.8 + c-0.5-2-2.2-2.3-3.8-2.7c-0.7-0.2-1.4-0.2-2-0.3c2.3-0.8,5-0.5,6.3-2.7c1.9,4,3.8,7.9,5.7,11.9 + C180.6,123.8,180.5,123.9,180.4,124z M192.5,128c-0.5-0.7-0.9-1.9-1.5-2.1c-1.2-0.3-0.5-1.1-0.9-1.7c-0.3,0.1-0.6,0.1-1.2,0.3 + c0.5-0.5,0.7-0.8,1.2-1.3c-0.7,0.2-1.1,0.2-1.7,0.4c0.4-0.5,0.6-0.7,0.9-1.2c-0.6,0.1-0.9,0.2-1.3,0.2c0.3-0.5,0.5-0.9,0.7-1.3 + c-0.1-0.1-0.2-0.2-0.3-0.2c-0.1,0.3-0.2,0.5-0.4,0.9c-1.1-1.8-1.9-3.4-2.9-4.8c-0.8-1.2-1-3.1-3.1-3.2c0.3-0.1,0.6-0.2,1-0.3 + c-0.2-0.7-0.5-1.2-0.7-1.8c-0.4-0.2-1,1.5-1.3-0.3c-0.2,0.5-0.3,0.8-0.4,1.1c-0.1,0-0.2,0-0.3,0c0-0.3-0.1-0.6-0.1-0.7 + c-1.3-0.2-2.5-0.4-3.8-0.6c0-0.1,0-0.3,0-0.4c3.3,0.1,6.3-0.6,8.7-3.2c0.2,3.8,2.2,6.6,3.4,9.8c1.3,3.5,3,6.8,4.6,10.2 + C192.9,127.8,192.7,127.9,192.5,128z M203.5,127.4c-0.3-0.1-0.6-0.2-0.8-0.4c-0.5-0.9-1-1.9-1.5-2.8c-1.1-2.1-2.2-4.1-3.3-6.2 + c-0.4,0.2-0.8,0.3-1.4,0.5c0.3-0.5,0.4-0.8,0.4-0.8c-0.5-0.6-0.8-1-1.2-1.5c-0.6-0.8-1.1-1.7-1.8-2.6c0,0,0.4-0.2,0.7-0.4 + c-1.4,0.7-1.3-0.6-1.8-1.2c0.5-0.2,0.8-0.3,1.1-0.4c0,0,0-0.1-0.1-0.1c-0.8,0.2-1.6,0.3-2.4,0.5c0-0.1,0-0.2-0.1-0.3 + c0.4-0.2,0.8-0.3,1.2-0.5c-0.3-0.8-0.6-1.5-0.9-2.3c-2.1,0.6-3.9,0-5.6-1.1c4.1,0.8,7.6-0.2,10.7-3c0.1,0.1,0.2,0.2,0.3,0.3 + c-0.2,0.5-0.3,0.9-0.5,1.4c0.1,0,0.2-0.1,0.3-0.1c0.1,0.8,0.3,1.5,0.4,2.2c0.1,0.1,0.3,0.3,0.4,0.5c0.5,0.8-0.2,2.1,1,2.6 + c-0.2,0.2-0.3,0.4-0.4,0.5c0.3,0.4,0.7,0.8,0.9,1.2c1,2.7,2,5.3,2.9,8c0.6,1.7,1.1,3.4,1.6,5.1 + C203.8,126.8,203.6,127.1,203.5,127.4z M214.2,128.3c-0.7-1.3-1.4-2.5-2-3.7c-0.7-1.5-1.3-3-2.1-4.5c-1.6-3.3-3.2-6.5-4.8-9.8 + c-0.3-0.6-0.5-1.1-1.3-0.6c-0.1,0-0.2-0.1-0.5-0.3c0.5-0.2,0.8-0.4,0.9-0.4c-0.8-0.9-1.6-1.7-2.5-2.7c-1-0.3-2.5-0.7-3.9-1.1 + c0-0.2,0-0.4,0.1-0.6c4.4,1.1,8.4,0.3,12.2-2.2c0.1,0.1,0.2,0.3,0.3,0.4c-0.4,0.5-0.7,1-1,1.3c0.2,0.2,0.7,0.5,0.6,0.7 + c0,0.3-0.4,0.6-0.6,0.8c0.2,0.1,0.5,0.3,0.7,0.4c-0.3,0.2-0.5,0.5-0.8,0.7c0.9,0.2,1.8,2.1,1.4,3c-0.2,0.4-0.1,0.6,0.3,0.8 + c-0.2,0.1-0.3,0.3-0.3,0.3c1.2,4.3,2.4,8.4,3.6,12.5c-0.3,0.1-0.5,0.3-1,0.5c0.5,0.1,0.9,0.2,1.4,0.4c-0.5,0.2-0.8,0.3-1.1,0.4 + c1.2,0.3,1.6,0.8,0.5,1.6c0.4,0.2,0.7,0.5,1.2,0.8c-0.3,0.2-0.5,0.3-0.6,0.4c0.2,0.1,0.4,0.3,0.9,0.6 + C215,128.1,214.5,128.2,214.2,128.3z M225.5,129.5c-0.6-1.5-1.2-3-1.8-4.6c0,0-0.3,0-0.5,0c0.2-0.4,0.5-0.8,0.5-1 + c-0.4-1-0.2-2.4-1.8-2.9c0.3-0.2,0.5-0.3,0.9-0.6c-0.5-0.1-0.8-0.2-1.4-0.3c0.5-0.3,0.7-0.5,0.7-0.5c-0.3-0.4-0.7-0.7-0.9-1.1 + c-0.4-1.1-0.7-2.2-1-3.4c0.1,1.4,0.3,2.9,0.4,4.3c-0.1,0-0.3,0-0.4,0.1c-0.5-2.1-1-4.2-1.5-6.3c-0.3-0.4-0.7-0.7-0.8-1.1 + c-0.5-1.2-0.8-2.4-1.2-3.6c-0.1,0-0.3,0.1-0.4,0.1c0.7,2.1,1.4,4.2,2,6.3c-0.1,0-0.3,0-0.5-0.1c-0.2,0-0.4-0.1-0.6-0.2 + c0.3-0.3,0.5-0.4,0.7-0.6c-0.2,0-0.4,0.1-0.6,0.1c-0.8-2.3-1.4-4.6-2.7-6.7c0.5,1.5,0.9,3.1,1.4,4.6c-0.2,0.1-0.3,0.1-0.5,0.2 + c-0.6-1.3-1.1-2.7-1.7-4c1.5-0.2-0.4-0.9-0.2-1.4c0.2-0.1,0.5-0.3,0.7-0.4c-0.4-0.2-0.6-0.3-0.9-0.5c0.3-0.1,0.6-0.3,0.9-0.4 + c-0.1-0.4-0.3-0.8-0.5-1.5c-0.1,0.6-0.1,0.9-0.1,1.2c-0.6-0.5-1.1-0.9-1.6-1.3c0.3-0.2,0.6-0.3,0.7-0.4c-0.6-0.4-1.2-0.9-1.7-1.3 + c0-0.2,0.1-0.4,0.1-0.5c4.8,1.2,9.5,1.2,13.8-1.7c0,0.1,0.1,0.3,0.1,0.4c-0.5,0.6-1,1.3-1.4,1.7c0.3,0.5,0.7,0.9,0.8,1.3 + c0.1,0.3,0.3,2.1,0.2,2.5c-0.2,0.8,0.1,1.3,0.3,2c0.2,0.6-0.3,1.5,0,2.1c0.6,1.6,0.5,3.2,1,4.8c0.4,1.2,0.4,2.7,0.7,4.1 + c0.4,2.3,0.6,4.7,0.8,7.1C227.7,129,227.7,129,225.5,129.5z M231.4,124.1c-0.6-2-1.3-4.1-1.9-6.1c0.7,0.5,0.9,1.3,1.5,2 + c0.8,0.9,0.5,2.7,0.6,4.2C231.6,124.1,231.5,124.1,231.4,124.1z M241.3,102.6c0,0.1,0,0.2,0,0.2c-1,0.1-2.1,0.2-3.3,0.4 + c1.6,0.7,2.1,1.9,1.6,3.5c-0.1-0.6-0.2-1.2-0.3-1.8c-0.2,0-0.3,0.1-0.5,0.1c0.1,0.9,0.2,1.9,0.3,2.8c-0.3,0.1-0.6,0.2-0.9,0.3 + c0,0.1,0,0.2,0,0.2c0.4,0,0.8,0,1.2,0c0,1.9,0,3.7,0,5.6c-0.3,0-0.6,0.1-0.9,0.1c0,0.1,0,0.1,0,0.2c0.3,0.1,0.7,0.2,1.3,0.4 + c0,2.8,0,5.6,0,8.4c0,1-0.2,1.9-0.4,3c-0.1,0,0.1,0,0.2,0.1c-0.1,0.8,0.1,1.7-0.3,2.1c-0.5,0.7-1.3,1.2-2.1,1.5 + c-0.7,0.3-1.5,0.2-1.8-1c-0.1-0.5-0.9-0.8-1.6-1.3c-0.2-0.9-0.5-2.1-0.7-3.3c-0.1,0-0.2,0-0.3,0c0,0.5-0.1,1-0.1,1.6 + c-0.1,0-0.2,0-0.2,0c-0.1-0.6-0.3-1.3-0.4-2c0.4,0,0.7,0,1.1,0c-0.1-0.9-0.3-1.8-0.4-2.6c-0.1,0-0.2,0-0.3,0c0,0.7,0,1.5,0,2.2 + c-0.1,0-0.2,0-0.3,0c-0.4-1.8-0.7-3.6-1.1-5.4c-0.1,0-0.2,0-0.3,0.1c0,0.5,0.1,0.9,0.2,1.8c-0.7-1.3-1.2-2.3-1.7-3.2 + c-0.2,0-0.5,0.1-0.8,0.1c0-0.1,0-0.1-0.1-0.2c0.3-0.2,0.7-0.3,0.9-0.4c-0.5-2-1-3.8-1.6-5.8c0.2-0.1,0.5-0.2,1.2-0.5 + c-0.7,0-1,0-1.4,0c0-0.1,0-0.2,0-0.3c0.2-1.4-1.3-2.7-0.3-4.2c-0.1,0-0.2,0-0.3-0.1c-0.2-0.2-0.3-0.4-0.5-0.6 + c0.3-0.1,0.5-0.2,0.7-0.3c-2-0.6,0.1-2.2-0.9-3.2c0,0.5,0,0.9,0.1,1.3c-0.1,0-0.2,0-0.3,0c-0.2-0.7-0.4-1.4-0.7-2.4 + c5.5,1.6,10.8,2.7,16-0.5c0,0.2,0.1,0.3,0.1,0.5c-0.8,1-1.6,2-2.4,2.8C239.8,102.6,240.5,102.6,241.3,102.6z M342.5,120.8 + c-1,0.6-2.5,0.9-2.8,1.7c-0.6,1.4-1.7,1.3-2.7,1.7c-0.7,0.2-1.2,0.8-1.9,1.2c-0.5,0.3-0.9,0.5-1.4,0.8c0-0.1-0.1-0.2-0.1-0.4 + c1.8-2.4,3.6-4.8,5.3-7.1C340.1,119.4,341.2,120,342.5,120.8z M339,117.9c-2.4,1.5-3.2,4.2-5.1,6.3c-0.2-0.3-0.3-0.5-0.5-0.8 + c-0.6,2.2-2.1,2.1-3.7,1.9c-1.2-0.2-2.1,0.3-2.5,1.4c-0.4,0.9-1,1.1-1.7,0.6c2.7-4,5.3-8,7.7-11.7C335,116.3,336.8,117,339,117.9 + z M333,114c-0.8,1.1-1.5,2.1-2.3,3.1c-0.2,0.2-0.7,0.4-0.7,0.4c0.4,1.3-0.5,1.4-0.9,1.4c-0.3,1-0.5,1.8-0.8,2.6 + c-0.1,0-0.3-0.1-0.4-0.1c0-0.3,0-0.6,0-0.9c-0.4,0.3-0.7,0.7-0.7,1.1c-0.2,2.3-2.8,4.7-5,4.6c-1.2,0-2.4,0-4,0 + c2.8-5,5.5-9.9,8.3-15C327.8,114.2,330.7,113.4,333,114z M258.2,100.5c-1.1,0.3-2,0.6-3,0.9c1.5,0.7,1.5,0.7,1.7,2.8 + c-0.3,0.2-0.7,0.3-1,0.5c0,0.1,0.1,0.2,0.1,0.2c0.7,0,1.3,0,2,0c0,0.1,0,0.2,0.1,0.3c-0.7,0.2-1.4,0.4-2.1,0.5c0,0.1,0,0.2,0,0.3 + c0.6,0,1.3,0,1.9,0c0,0.1,0,0.2,0,0.4c-0.6,0.1-1.2,0.2-2,0.4c0.3,0.5,0.6,0.9,0.9,1.4c-0.3,0.2-0.6,0.3-0.8,0.5 + c0,0.2,0.1,0.3,0.1,0.5c0.5-0.1,1.1-0.1,1.9-0.2c-1,0.9-1.9,1.7-2.9,2.6c0,0,0,0.2,0,0.5c0,0.8-0.1,1.7,1.2,1.4 + c0.1,0,0.2-0.2,0.3-0.4c-0.4,0-0.7,0-1.1,0c0-0.6-0.1-1-0.1-1.5c0.7,0.5,1.3,1.2,1.3,1.8c0,0.7-0.6,1.4-1,2.2 + c0.9,0,1.4,0.1,1.9,0.1c0,0.1,0,0.1,0,0.2c-0.5,0.1-0.9,0.3-1.4,0.4c0,0.1,0,0.3,0,0.4c0.5,0.1,1,0.2,1.9,0.3 + c-0.9,0.2-1.3,0.3-1.8,0.4c0,1.4,0,2.8,0,4.1c-0.6,0.1-1,0.1-1.4,0.2c0,0.1,0,0.3,0.1,0.4c0.4-0.1,0.8-0.1,1-0.2 + c0,1.2,0,2.3,0,3.4c-0.1,0-0.2,0-0.3,0c-0.1-1-0.1-1.9-0.2-3.1c-1.5,1,0.5,3-1.2,3.7c0.2,0.1,0.6,0.2,0.6,0.4 + c0.3,1.7-1.4,3.6-3.2,3.7c-2.2,0.2-3.8-0.8-5.6-1.8c-1.6-1-2.2-2.2-1.8-3.9c0.4-0.1,0.7-0.2,1-0.2c0-0.1,0-0.1,0-0.2 + c-0.3,0-0.7,0.1-1.2,0.2c-0.4-8.1-0.9-16-1.3-24.4c5.2,2.3,10.4,2.4,15.6,0C258.3,100,258.2,100.5,258.2,100.5z M269.5,113.4 + c-0.1-0.6-0.2-0.9-0.3-1.4c-0.2,0.2-0.3,0.3-0.3,0.3c0,0.2,0,0.5,0,0.7c-0.2,1.9,0.7,4-0.9,5.7c-0.1,0.1-0.1,0.5,0,0.5 + c1.4,1,0.5,2.2,0.4,3.4c0,0.1-0.2,0.1-0.4,0.3c0-0.4,0-0.8,0-1.1c-0.2,0-0.4,0-0.6,0c0.9,2.1,1.2,4.1,0,6.1 + c0.2-1.4,0.3-2.8,0.4-4.1c-0.2,0-0.3,0-0.5-0.1c-0.1,1.3-0.3,2.5-0.3,3.8c-0.1,1.9-0.9,2.6-2.8,2.1c-1.4-0.4-2.7-1.2-4.1-1.8 + c-1-0.4-1.3-1.1-1.3-2.3c0.2-5.3,0.4-10.5,0.5-15.8c0.1-3.4,0-6.8,0-10.7c4.7,2.9,9.3,2.5,13.9,0.8c0,0.2,0,0.4,0.1,0.5 + c-0.7,0.3-1.4,0.6-2.2,1c0.4,0.1,0.7,0.1,1.1,0.2c-0.3,0.3-0.6,0.5-1,0.8c0.7,0,1.1,0,1.5,0c0,0.1,0,0.1,0,0.2 + c-0.4,0.1-0.9,0.2-1.6,0.3c0.4,0.3,0.6,0.4,0.8,0.6c-0.2,0.1-0.4,0.2-0.8,0.4c0.6,0.2,0.9,0.3,1.5,0.5c-0.6,0.1-1,0.1-1.5,0.2 + c0.2,0.1,0.3,0.1,0.4,0.2c-0.4,2.1-0.7,4.1-1,6.1c-0.1,0-0.2,0-0.3,0c0-1,0-2,0-3.1c-0.3,0-0.6,0.1-0.9,0.1 + c0.9,1.1-0.9,3.1,1.6,3.6C270.3,112.2,270,112.7,269.5,113.4z M271.5,104.9C271.5,104.9,271.6,104.9,271.5,104.9L271.5,104.9z + M279.7,131.4c-0.2-0.1-0.3-0.2-0.5-0.3c0.6-1,1.3-2,1.9-3.1c0.2,0.1,0.3,0.2,0.5,0.3C281,129.4,280.4,130.4,279.7,131.4z + M283.3,120.8c0.3,1.2-1.2,1.5-2.9,1.2c0.7,0.8,1.1,1.3,1.6,1.9c-0.3-0.1-0.6-0.2-0.9-0.3c-0.4,3.6-0.4,3.6-1.2,4.1 + c-0.1-0.2-0.1-0.4-0.3-0.8c-0.9,3.3-1,3.7-4.4,2.3c-1.1-0.4-1.9-1.3-3-1.7c-1.2-0.5-1.3-1.3-1.2-2.4c0.7-4.7,1.3-9.3,1.9-14 + c0.5-3.7,1-7.3,1.5-11.3c4.4,3.1,9.2,3.3,14.2,1.6c0,0.2,0,0.4,0.1,0.5c-0.7,0.3-1.4,0.7-2.5,1.2c0.7-0.2,1-0.2,1.3-0.3 + c-0.2,0.7-0.3,1.3-0.5,1.8c-0.1,0-0.2,0-0.2-0.1c0-0.3-0.1-0.7-0.1-1.2c-0.3,0.7-0.5,1.1-0.7,1.5c0.5,0.1,1,0.2,1.6,0.3 + c0,0.1,0,0.2,0,0.3c-0.5,0.1-1.1,0.2-1.5,0.2c0.2,0.4,0.6,0.8,0.5,1.1c-0.1,0.5-0.5,0.9-0.8,1.4c0.2,0.1,0.7,0.4,1.6,0.9 + c-0.8-0.1-1.3-0.2-1.9-0.2c0.5,0.4,0.7,0.6,1.1,0.9c-0.4,0-0.7,0.1-1.1,0.1c0.3,0.3,0.6,0.5,0.8,0.8c-0.2,0-0.3-0.1-0.5-0.1 + c-0.2,1.2-0.4,2.3-0.6,3.4c-0.7,0.1-1.2,0.2-2.2,0.4c1.1,0.6,1.7,0.9,2.3,1.2c0,0.1-0.1,0.2-0.1,0.2c-0.6-0.2-1.1-0.3-1.7-0.5 + c0,0.1-0.1,0.1-0.1,0.2c0.3,0.2,0.7,0.4,1.3,0.8c-0.7,0-1,0-1.5,0.1c0.3,0.7,0.6,1.2,0.9,1.8c-0.5-0.1-1.1-0.2-1.6-0.3 + C284.8,118.1,283,119.9,283.3,120.8z M296.5,122.4c-0.1,0.1-0.1,0.2-0.2,0.2c-0.3-0.2-0.6-0.3-1-0.5c-0.1,0.1-0.2,0.2-0.3,0.4 + c0.4,0.2,0.7,0.5,1.1,0.7c-1.5-0.1-1.3,0.6-0.9,1.1c-0.4,0.5-0.8,0.8-1.2,1.2c-0.4,0.4-0.7,0.9-1,1.4c-0.2,0.3-0.3,0.7-0.6,1.4 + c0-1.2,0-1.9,0-2.9c-0.5,1.6-1,3-1.5,4.4c-0.8-0.1-1.4-0.1-2-0.4c-1.6-0.7-3.4-1.2-4.7-2.3c-0.5-0.4,0.2-2.2,0.5-3.3 + c1.6-7.3,3.3-14.6,5-22.1c3.7,3.3,8,3.9,12.8,2.4c0,0.2,0,0.4,0,0.6c-0.4,0.2-0.9,0.4-1.6,0.7c0.6,0,0.9,0,1.6,0 + c-0.7,0.4-1.1,0.6-1.5,0.8c0.3,0.1,0.5,0.2,0.5,0.2c-0.3,0.5-0.6,1-0.9,1.5c-0.4-0.1-0.8-0.2-1.5-0.4c0.9,0.6,1.5,1,2.1,1.4 + c-0.1,0.1-0.1,0.2-0.2,0.2c-0.6-0.3-1.3-0.5-1.9-0.8c0,0,0,0.1-0.1,0.1c0.7,0.5,1.3,1,2,1.4c0,0.1-0.1,0.1-0.1,0.2 + c-0.4-0.1-0.8-0.3-0.8-0.3c-0.2,0.6-0.4,1.2-0.5,1.8c-0.7-0.4-1.1-0.6-1.6-0.8c1.3,0.9,1.8,2.1,1.4,3.6c-0.9-0.3-1.7-0.7-2.5-1 + c0,0.1,0,0.1-0.1,0.2c0.8,0.5,1.6,1,2.4,1.5c-0.1,0.1-0.1,0.2-0.2,0.2c-0.4-0.2-0.9-0.4-1.3-0.6c0,0.1-0.1,0.1-0.1,0.2 + c0.3,0.2,0.5,0.5,1.1,0.9c-0.7-0.1-0.9-0.1-1.5-0.2c0.7,0.5,1.1,0.8,1.3,1c-0.6,0.2-1.3,0.5-1.7,0.7c0.3,0.3,0.5,0.5,0.7,0.7 + c-0.2,0-0.4,0.1-0.6,0.1c-0.1,0.9-0.3,1.8-0.4,2.7c-0.4-0.1-0.9-0.2-1.6-0.5c0.9,0.6,1.4,1,2,1.4c0,0.1-0.1,0.1-0.1,0.2 + c-0.7-0.3-1.3-0.6-2-0.9c0,0,0,0.1,0,0.1C295.4,121.5,296,122,296.5,122.4z M304.8,130.2c0.6-0.9,1.2-1.7,1.9-2.8 + C306.9,129.7,306.1,130.8,304.8,130.2z M308.1,124.4c-0.5-0.3-0.8-0.4-1-0.5c-0.3,0.8-0.5,1.5-0.8,2.1c-0.2-0.1-0.5-0.2-0.6-0.3 + c-0.7,0.9-1.2,1.8-1.9,2.5c-0.5,0.5-1.4,1.1-2,0.9c-1.7-0.5-3.3-1.3-4.9-1.9c2.4-7.7,4.8-15.1,7.2-22.8c3.1,3.4,7.2,3.7,11.6,3 + c-0.4,0.4-1,0.5-1.1,0.8c-0.6,1.3-1,2.6-1.5,3.9c-0.2,0.5-0.1,1.2-0.5,1.4c-0.9,0.6-0.8,1.3-0.9,2.2c0,0.7-0.1,1.8-0.5,2 + c-1.2,0.7-1,1.9-1.4,2.8c0,0.1-0.2,0.1-0.2,0.1c-0.3-0.1-0.5-0.3-1.1-0.5c0.5,0.6,0.7,1,1,1.3c-0.1,0-0.3,0-0.4,0 + c-0.1,0.4-0.3,0.7-0.3,1.1c-0.1,0.9-0.3,1.5-1.3,0.8c0,0-0.1,0.1-0.2,0.1C307.5,123.6,307.7,123.9,308.1,124.4z M313.2,127.7 + c-1.7-0.3-3.4-0.7-5-1c2.9-6.4,5.7-12.6,8.6-18.9c2.2,2.8,5.5,2.9,8.8,2.9c0,0.1,0,0.3,0,0.4c-0.7,0.4-1.5,0.8-2.2,1.2 + c0.1,0.1,0.1,0.2,0.2,0.2c0.2,0.2,0.5,0.3,0.9,0.6c-0.7,0.9-1.3,2-2.2,2.6c-1,0.7-1.5,1.7-0.9,2.4c-0.4,0.6-0.7,1.1-1,1.7 + c-0.2,0-0.5-0.1-1.1-0.3c0.3,0.6,0.5,0.9,0.7,1.2c-0.9,1.6-1.6-0.2-2.3-0.1c0.4,0.8,0.7,1.5,1.2,2.5c-0.7-0.3-1.2-0.5-1.6-0.8 + c0,0.1-0.1,0.1-0.1,0.2c0.4,0.3,0.8,0.6,1.2,1c-0.1,0.1-0.1,0.2-0.2,0.4c-0.6-0.4-1.2-0.7-1.9-1.1c0.1,0.9,0.2,1.6,0.3,2.6 + c-0.6-0.3-1-0.5-1.7-0.8c0.6,0.7,1,1.1,1.5,1.7c-0.5-0.1-0.8-0.2-1.3-0.3c0.4,0.5,0.7,0.8,0.8,1c-0.5,0.1-1,0.3-1.4,0.4 + C314,127.5,313.6,127.8,313.2,127.7z M315.7,129.7c0.7-0.9,1.4-1.7,2.2-2.6c1.1,1.5-0.2,2.3-0.5,3.3 + C316.8,130.2,316.3,130,315.7,129.7z M312.1,151.5c0,0-0.3-0.2-0.7-0.3c0.3-0.6,0.5-1.2,0.8-1.8c0.4,0.1,0.9,0.1,1.3,0.2 + C313.1,150.2,312.6,150.8,312.1,151.5z M316.4,144.7c-0.3,0.7-0.5,1.3-0.7,2c-0.3,0-0.8,0.1-1.5,0.2c0.9-1.6,1.7-3,2.5-4.5 + c0.5,0.5,0.8,0.8,1.2,1.3c-0.7,0.3-1.3,0.5-1.9,0.8C316.2,144.6,316.5,144.7,316.4,144.7z M321,137.9c0,0.2,0.2,0.5,0.1,0.6 + c-1,1.1-2,2.2-3.1,3.3c-0.2-0.2-0.5-0.5-0.8-0.7c0.6-1.1,1.3-2.2,1.8-3.3c0.3-0.8,0.7-0.4,1.2-0.3c0.1-1,0.3-2,0.5-3 + c0.1-0.3,0.5-0.6,0.7-0.7c1-0.1,1-0.8,0.9-1.5c-0.2-0.4-0.3-0.9-0.5-1.3c0.5,0.1,0.9,0.1,1.2,0.1c0-0.1,0-0.3,0-0.4 + c0-0.3,0.1-0.5,0.2-0.8c0.5,0.2,1,0.5,1.5,0.7c-0.2,0.4-0.4,0.9-0.6,1.3c0.6,0.2,0.7,0.6,0.4,1.1c-0.7,1.2-1.4,2.4-2.2,3.5 + C322,137.1,321.5,137.5,321,137.9z M323.7,141.7c-1-1.2,2.3-1.2,0.7-2.5c0.3-0.2,0.6-0.5,1-0.8c0.1,0.6,0.2,1.2,0.3,1.6 + C325,140.6,324.4,141.2,323.7,141.7z M326.5,130.3c-1,0.3-1.7-0.4-2.5-0.7c-1.8-0.7-3.5-1.5-5.2-2.3c0-0.2,0.1-0.3,0.1-0.5 + c0.6,0.1,1.1,0.1,1.7,0.2c1.7,0.5,3.4,1.1,5.1,1.7c1,0.4,1.6,0.2,1.9-0.9c0.1-0.3,0.2-0.5,0.3-0.8 + C328.7,128.3,327.7,130,326.5,130.3z M334.4,128.5c-0.7,0.1-1.2,0.4-1.4,1.2c-0.2,0.4-0.6,0.8-1,1.2c-0.2,0.2-0.5,0.3-0.7,0.5 + c-0.9,1.3-1.8,2.6-2.6,3.9c-0.2-0.1-0.4-0.1-0.5-0.2c0.1-0.4,0-0.8,0.2-1.1c0.5-0.7,1-1.3,1.1-2.2c0-0.4,0.1-0.8,0.4-1.1 + c1-1,0.9-2.7-0.3-3.5c-0.3-0.2-0.6-0.5-0.9-0.7c0-0.1,0.1-0.2,0.1-0.3c1.5,0.3,3.1,0.6,4.6,1.1c1,0.3,1.9,0.5,2.5-0.8 + C335.9,127.5,335.6,128.3,334.4,128.5z M342.5,126.3c-0.9,0.4-1.8,0.8-2.7,1.3c0-0.1,0-0.3,0-0.7c-0.5,0.4-1,0.7-1.6,1.2 + c0.2-0.6,0.3-1,0.3-1.1c-0.9-0.6-1.7-1.1-2.4-1.6c0.1-0.2,0.1-0.4,0.2-0.6c2.1,0.4,4.2,0.8,6.3,1.2 + C342.6,126.1,342.6,126.2,342.5,126.3z"/> + <path class="st2" d="M210.9,110.7L210.9,110.7C210.9,110.7,210.9,110.7,210.9,110.7z"/> + <path class="st2" d="M177,128.4c0.2,0.6,0.3,1.2,0.7,1.7c3.2,4.4,6.3,8.9,9.5,13.3c3,4.1,5.9,8.1,8.9,12.2 + c0.2,0.3,0.4,0.5,0.7,0.8c0.1-0.1,0.2-0.2,0.3-0.2c-6.6-9.3-13.2-18.5-19.8-27.8C177.2,128.4,177.1,128.4,177,128.4z"/> + </g> + </g> + <g> + <path class="st1" d="M252.2,150c-46.8,0-85.7-6-93.9-13.9c26.8,39.1,53.7,78.2,80.5,117.4c2.1,28.5,4.3,57,6.4,85.5 + c0.5,0.1,1.2,0.2,2,0.1c0,0,1-0.1,1.9-0.6c1.4-0.6,7.2-5.4,14.7-12.2c1.1-24.2,2.2-48.4,3.3-72.6c26.2-39,52.4-78.1,78.7-117.1 + C336.8,144.1,298.3,150,252.2,150z"/> + <path class="st5" d="M156.5,136.7c-0.1,0.1-0.4,1-0.3,2.1c0,0.4,0.1,0.8,0.2,1c17.7,25,74.6,105.5,81.1,107.9c4.4,1.7,6,0.2,6,0.2 + c1.1-1,1.1-2.1,1.1-2.1c0-0.4-0.1-0.7-0.2-0.8c-9.7-31-19.4-61.9-29.1-92.9c-0.1-0.4-0.2-0.9-0.5-1.5c-2.8-5.6-14-2.4-26.9-4.3 + C172.4,144.1,157.3,135.1,156.5,136.7z"/> + <path class="st6" d="M181.5,150.4c-2-0.3-3.5-1.3-5.4-1.8c-0.6,0-1.2,0-1.4-0.7c-0.5-0.1-1-0.1-1.4-0.2c-0.4,1.2-0.1,2.5,0.8,3.3 + c2.2,2,3.3,4.6,4.8,6.9c2.8,4.2,5.5,8.4,8.2,12.6c2.7,4.1,5.4,8.3,8,12.4c3,4.7,6,9.4,9.3,13.9c2.1,2.9,4,6,6.1,9 + c3.1,4.5,6.3,9,9.3,13.6c2.7,4.2,6,8,8.4,12.4c1.1,2,2.6,3.7,4.1,5.5c0.7,0.9,1.7,1.6,2.9,1.9c0.1-2.4-1.3-4.3-2.4-6.3 + c-1.2-2.2-2.6-4.2-3.8-6.4c-0.9-1.7-2.2-3.3-3.1-5c-1.6-3-3.5-6-5.3-9c-2.2-3.7-4.4-7.3-6.6-10.9c-2.2-3.6-4.3-7.2-6.5-10.9 + c-2.5-4.2-5.1-8.4-7.9-12.5c-2.2-3.2-4.1-6.6-6.2-9.9c-2.5-4-5.1-8-7.8-12C184.2,154.4,182.5,152.6,181.5,150.4z"/> + <path class="st7" d="M213.3,148.8c-0.4,0.8,0,1.8,0.3,2.5c22.1,66.6,32.4,97.8,32.4,97.8v0c0,0,2,0.4,2.9-0.3 + c0.3-0.2,0.6-0.7,0.6-1.8c0.2-15.8,1.2-87.8,0.6-94.9c0-0.4-0.1-1-0.5-1.7c-2-3.3-8.6-0.8-18.4-1 + C221.1,149.3,214.5,146.5,213.3,148.8z"/> + <path class="st8" d="M252.1,247c2.4-32.5,4.8-65,7.2-97.5c19.7-1.2,39.3-2.4,59-3.6c-19.7,34.2-39.5,68.3-59.2,102.5 + c-0.1,0.6-0.6,2-1.8,2.7c-0.8,0.4-1.8,0.3-3.9,0c-0.4,0-0.6-0.1-0.8-0.2C251.5,250.2,252,247.6,252.1,247z"/> + <path class="st9" d="M246.2,157.7c0.6,30.2,1.1,60.3,1.7,90.5c-0.1,0.6,0,1,0.1,1.2c0.7,1.5,3.7,1.7,4.5,0.6 + c0.2-0.2,0.2-0.5,0.2-0.6c12.7-33.2,25.5-66.4,38.2-99.6c0.2-0.2,0.4-0.4,0.4-0.6c-0.2-1.5-10.6-0.4-26.8-0.3 + c-11.1,0.1-16.5-0.4-18.4,2.9C245.1,153.7,245.6,156,246.2,157.7z"/> + <path class="st10" d="M258.2,248.1c-0.2,0.2-0.7,1.1-0.5,1.6c0.3,0.5,1.2,0.6,1.7,0.6c5.3,0,8,0,8.6-0.1c0.4-0.1,0.8-0.2,1.3-0.2 + c25.4-37.9,50.9-75.7,76.3-113.6c-4.2,3.6-15,6.9-29.9,9.2c-0.3,0.2-0.5,0.3-0.8,0.5C296.1,180.1,277.1,214.1,258.2,248.1z"/> + </g> + <path class="st4" d="M319.3,142.8c-17.9,3.2-41.8,5-67.2,5s-49.2-1.8-67.2-5c-20.7-3.7-26.1-8-26.1-9.8h-4.5c0,2.2,0,8.9,29.8,14.3 + c18.2,3.2,42.3,5,67.9,5c25.6,0,49.8-1.8,67.9-5c29.8-5.3,29.8-12.1,29.8-14.3h-4.5C345.5,134.7,340,139.1,319.3,142.8z"/> +</g> +<g id="Hexagone"> + <path class="st2" d="M245.5,0L0,141.7v283.5l245.5,141.7L491,425.2V141.7L245.5,0z M474.2,415.5l-228.7,132l-228.7-132V151.4 + l228.7-132l228.7,132V415.5z"/> +</g> +<g id="Text"> + <g> + <text transform="matrix(1 0 0 1 129.5281 400.127)"><tspan x="0" y="0" class="st2 st11 st12">rjd</tspan><tspan x="67.7" y="0" class="st1 st11 st12">3</tspan><tspan x="102.3" y="0" class="st2 st11 st12">filters</tspan></text> + </g> + <g id="github.com_x2F_rjdverse_x2F_rjd3filters"> + <text transform="matrix(0.866 -0.5 0.5 0.866 251.1374 531.5639)" class="st2 st13 st14">github.com/rjdverse/rjd3filters</text> + </g> +</g> +</svg> diff --git a/pkgdown/favicon/apple-touch-icon-120x120.png b/pkgdown/favicon/apple-touch-icon-120x120.png new file mode 100644 index 0000000..8f65a8a Binary files /dev/null and b/pkgdown/favicon/apple-touch-icon-120x120.png differ diff --git a/pkgdown/favicon/apple-touch-icon-152x152.png b/pkgdown/favicon/apple-touch-icon-152x152.png new file mode 100644 index 0000000..4551ede Binary files /dev/null and b/pkgdown/favicon/apple-touch-icon-152x152.png differ diff --git a/pkgdown/favicon/apple-touch-icon-180x180.png b/pkgdown/favicon/apple-touch-icon-180x180.png new file mode 100644 index 0000000..81ad776 Binary files /dev/null and b/pkgdown/favicon/apple-touch-icon-180x180.png differ diff --git a/pkgdown/favicon/apple-touch-icon-60x60.png b/pkgdown/favicon/apple-touch-icon-60x60.png new file mode 100644 index 0000000..9bdb008 Binary files /dev/null and b/pkgdown/favicon/apple-touch-icon-60x60.png differ diff --git a/pkgdown/favicon/apple-touch-icon-76x76.png b/pkgdown/favicon/apple-touch-icon-76x76.png new file mode 100644 index 0000000..5309a5e Binary files /dev/null and b/pkgdown/favicon/apple-touch-icon-76x76.png differ diff --git a/pkgdown/favicon/apple-touch-icon.png b/pkgdown/favicon/apple-touch-icon.png new file mode 100644 index 0000000..0bc0c98 Binary files /dev/null and b/pkgdown/favicon/apple-touch-icon.png differ diff --git a/pkgdown/favicon/favicon-16x16.png b/pkgdown/favicon/favicon-16x16.png new file mode 100644 index 0000000..34c2c33 Binary files /dev/null and b/pkgdown/favicon/favicon-16x16.png differ diff --git a/pkgdown/favicon/favicon-32x32.png b/pkgdown/favicon/favicon-32x32.png new file mode 100644 index 0000000..18ed8b5 Binary files /dev/null and b/pkgdown/favicon/favicon-32x32.png differ diff --git a/pkgdown/favicon/favicon.ico b/pkgdown/favicon/favicon.ico new file mode 100644 index 0000000..ec5e9f4 Binary files /dev/null and b/pkgdown/favicon/favicon.ico differ diff --git a/pom.xml b/pom.xml index 407c3eb..072c340 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ <description>Usage: mvn -Pcopy-jars</description> <properties> - <jdplus-incubator.version>2.1.0</jdplus-incubator.version> + <jdplus-incubator.version>2.2.0</jdplus-incubator.version> </properties> <dependencies>