Commit 0b61aadb4f861996e05c38e8ba0ba05c232e08d8

Authored by Lucas Kanashiro
2 parents 56d341ac fc4a4a43

Merge branch 'doc-update' into 'master'

Doc update

Updating the document: including the new machines.

See merge request !235
@@ -19,6 +19,9 @@ $(build_dir)/%.png: %.png @@ -19,6 +19,9 @@ $(build_dir)/%.png: %.png
19 mkdir -p $(build_dir) 19 mkdir -p $(build_dir)
20 cp $< $@ 20 cp $< $@
21 21
  22 +ssh.png:
  23 + inkscape --export-area-page --export-width=800 --export-width=600 --export-png=$@ $<
  24 +
22 arquitetura.png: 25 arquitetura.png:
23 inkscape --export-area-page --export-width=800 --export-width=600 --export-png=$@ $< 26 inkscape --export-area-page --export-width=800 --export-width=600 --export-png=$@ $<
24 27
docs/arquitetura.png

49.6 KB | W: | H:

93.2 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
docs/arquitetura.rst.in
1 Arquitetura 1 Arquitetura
2 =========== 2 ===========
3 3
4 -A arquitetura do SPB consiste em 5 servidores, representados na figura 4 +A arquitetura do SPB consiste em 7 servidores como representado na figura
5 a seguir. 5 a seguir.
6 6
7 .. image:: arquitetura.png 7 .. image:: arquitetura.png
8 8
9 -Servidores e serviços 9 +Servidores e Serviços
10 --------------------- 10 ---------------------
11 11
12 -Um proxy reverso trata requisições http e as direciona para uma segunda  
13 -máquna, onde são distribuidas para os serviços solicitados. Todos os bancos 12 +Um proxy reverso trata requisições HTTP e as direciona para uma segunda
  13 +máquina, onde são distribuidas para os serviços solicitados. Todos os bancos
14 de dados relevantes estão concentrados em uma única máquina e todos os 14 de dados relevantes estão concentrados em uma única máquina e todos os
15 -emails disparados pelo sistema partem de um mesmo relay. 15 +emails disparados pelo sistema partem de um mesmo *relay*.
16 16
17 -O ambiente é composto por 5 máquinas com funções distintas: 17 +O ambiente é composto por 7 máquinas com funções distintas:
18 18
19 -* integration 19 +* **Reverseproxy**
20 20
21 - * Segundo proxy reverso 21 + * Proxy reverso
22 22
23 - * Repositórios Git  
24 23
25 - * Listas de email 24 +* **Integration**
26 25
27 - * Backend final de email 26 + * Segundo proxy reverso;
28 27
29 -* email 28 + * Repositórios Git;
30 29
31 - * relay de email 30 + * Listas de email;
32 31
33 -* social 32 + * Backend final de email;
34 33
35 - * Máquina dedicada para rede social Noosfero  
36 34
37 -* database 35 +* **Email**
38 36
39 - * Servidor de banco de dados PostgreSQL 37 + * *Relay* de email;
40 38
41 -* reverseproxy  
42 39
43 - * proxy reverso 40 +* **Social**
44 41
45 -Apenas as máquinas reverseproxy e email possuem IP's externos. A primeira para  
46 -receber requisições HTTP/HTTPS (portas 80 e 443) e possibilitar que usuários  
47 -utilizem os repositórios git (porta 22) e a segunda para receber emails (porta  
48 -25) e enviar emails para fora de plataforma. Além disso, todas as máquinas  
49 -aceitam conexões ssh originadas apenas da máquina integration, ou seja, não é  
50 -possível, de acordo com as regras de firewall, realizar conexões ssh nas demais  
51 -máquinas se a conexão não for originada da integration. Conexões na porta 22 da  
52 -máquina reverseproxy são redirecionadas para integration. As máquinas email,  
53 -social e database aceitam conexão SSH vindas da integration na porta 22 e a  
54 -reverseproxy em uma porta alternativa, especificada no arquivo de configuração  
55 -do ambiente, config/$SPB_ENV/config.yaml pelo valor passado a 'alt_ssh_port'. 42 + * Servidor de rede social Noosfero;
56 43
57 -Por exemplo, para se conectar na máquina email é necessário estabelecer conexão  
58 -SSH na porta 22 da reverseproxy, esta conexão será redirecionada para a máquina  
59 -integration e finalmente, partindo desta, pode-se realizar a conexão com a  
60 -máquina email na porta 22. Ainda como exemplo, caso seja necessária uma conexão  
61 -na máquina reverseproxy, deve-se estabelecer conexão na porta 22 da mesma, esta  
62 -conexão será redirecionada para a máquina integration e finalmente, partindo  
63 -desta, pode-se realizar a conexão com a máquina reverse proxy na porta definida  
64 -por 'alt_ssh_port' definida em config/$SPB_ENV/config.yaml. 44 +
  45 +* **Database**
  46 +
  47 + * Servidor de banco de dados PostgreSQL;
  48 +
  49 +
  50 +* **Mezuro**
  51 +
  52 + * Servidor de análise de código Mezuro;
  53 +
  54 +
  55 +* **Monitor**
  56 +
  57 + * Monitoramento de informações dos outros serviços;
  58 +
  59 +
  60 +As máquinas **Reverseproxy**, **Email** e **Monitor** possuem IP's externos.
  61 +**Reverseproxy** recebe requisições HTTP/HTTPS (portas 80 e 443) e possibilita
  62 +que usuários utilizem os repositórios git (porta 22). **Email** recebe emails
  63 +(porta 25) e enviar emails para fora da plataforma. **Monitor** recebe
  64 +requisições HTTP/HTTPS (portas 80 e 443). Os IP's variam de acordo com o ambiente.
  65 +
  66 +Conexões na porta 22 da máquina reverseproxy são redirecionadas para integration.
  67 +Todas as máquinas aceitam conexões **ssh** originadas apenas da máquina integration,
  68 +ou seja, não é possível realizar conexões **ssh** nas demais
  69 +máquinas se a conexão não for originada da integration.
  70 +As máquinas **email**, **social**, **database** e **mezuro** aceitam conexão **ssh**
  71 +vindas da integration na porta 22 e a reverseproxy em uma porta alternativa,
  72 +especificada no arquivo de configuração
  73 +do ambiente, `config/$SPB_ENV/config.yaml` pelo valor `alt_ssh_port`.
  74 +
  75 +.. image:: ssh.png
65 76
66 Note que, como será demonstrado neste manual, existem atalhos definidos no 77 Note que, como será demonstrado neste manual, existem atalhos definidos no
67 -repositório de gestão de configuração para simplificar o acesso por SSH às 78 +repositório de gestão de configuração para simplificar o acesso por **ssh** às
68 máquinas. Internamente, as máquinas integration e social também rodam web 79 máquinas. Internamente, as máquinas integration e social também rodam web
69 servers para servirem suas aplicações. Por fim, as máquinas integration e social 80 servers para servirem suas aplicações. Por fim, as máquinas integration e social
70 conectam-se em database usando a porta 5432 para acesso aos bancos de dados. 81 conectam-se em database usando a porta 5432 para acesso aos bancos de dados.
@@ -74,7 +85,9 @@ Gestão de configuração @@ -74,7 +85,9 @@ Gestão de configuração
74 85
75 O repositório de gestão de configuração se encontra em 86 O repositório de gestão de configuração se encontra em
76 git@portal.softwarepublico.gov.br:softwarepublico/softwarepublico.git e pode 87 git@portal.softwarepublico.gov.br:softwarepublico/softwarepublico.git e pode
77 -ser obtido a partir do comando:: 88 +ser obtido a partir do comando:
  89 +
  90 +::
78 91
79 $ git clone git@portal.softwarepublico.gov.br:softwarepublico/softwarepublico.git 92 $ git clone git@portal.softwarepublico.gov.br:softwarepublico/softwarepublico.git
80 93
@@ -83,13 +96,14 @@ SSH configuradas. Para mais informações sobre essas configurações, veja a :d @@ -83,13 +96,14 @@ SSH configuradas. Para mais informações sobre essas configurações, veja a :d
83 96
84 Este repositório contém scripts que realizam todos os passos necessários 97 Este repositório contém scripts que realizam todos os passos necessários
85 para a instalação, configuração e manutenção do ambiente. Isto é feito 98 para a instalação, configuração e manutenção do ambiente. Isto é feito
86 -através de scripts em linguagem Ruby que utilizam um programa chamado Chef,  
87 -para a automatização de configurações de ambientes. Mais informações em  
88 -https://docs.chef.io. 99 +através de scripts em linguagem Ruby que utilizam o Chef_ para a automatização
  100 +de configurações e deploy de ambientes.
89 101
90 Os scripts mencionados são gerenciados por uma segunda ferramenta, Chake, que 102 Os scripts mencionados são gerenciados por uma segunda ferramenta, Chake, que
91 elimina a necessidade de um servidor Chef dedicado para gerenciar as máquinas 103 elimina a necessidade de um servidor Chef dedicado para gerenciar as máquinas
92 -do ambiente. O Chake conecta-se em cada uma das máquinas descritas via SSH,  
93 -copiando scripts e outros arquivos, contendo as diretrizes necessárias para  
94 -instalar e configurar todo o ambiente. Mais informações em  
95 -https://github.com/terceiro/chake. 104 +do ambiente. O Chake_ conecta-se em cada
  105 +uma das máquinas descritas via **ssh**, copiando scripts e outros arquivos, contendo
  106 +as diretrizes necessárias para instalar e configurar todo o ambiente.
  107 +
  108 +.. _Chef: https://docs.chef.io
  109 +.. _Chake: https://github.com/terceiro/chake
docs/arquitetura.svg
1 -<?xml version="1.0" encoding="UTF-8" standalone="no"?>  
2 -<!-- Created with Inkscape (http://www.inkscape.org/) --> 1 +<?xml version="1.0" standalone="yes"?>
  2 +
  3 +<svg version="1.1" viewBox="0.0 0.0 1520.0 824.6115485564304" fill="none" stroke="none" stroke-linecap="square" stroke-miterlimit="10" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><clipPath id="p.0"><path d="m0 0l1520.0 0l0 824.6116l-1520.0 0l0 -824.6116z" clip-rule="nonzero"></path></clipPath><g clip-path="url(#p.0)"><path fill="#000000" fill-opacity="0.0" d="m0 0l1520.0 0l0 824.6116l-1520.0 0z" fill-rule="nonzero"></path><path fill="#cfe2f3" d="m483.61417 47.186844l0 0c0 -13.620396 11.041534 -24.66191 24.661926 -24.66191l132.15646 0c6.5407715 0 12.813599 2.598301 17.438599 7.2233067c4.625061 4.625004 7.2233276 10.897858 7.2233276 17.438602l0 98.644684c0 13.620392 -11.041504 24.661911 -24.661926 24.661911l-132.15646 0l0 0c-13.620392 0 -24.661926 -11.041519 -24.661926 -24.661911z" fill-rule="nonzero"></path><path stroke="#1155cc" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m483.61417 47.186844l0 0c0 -13.620396 11.041534 -24.66191 24.661926 -24.66191l132.15646 0c6.5407715 0 12.813599 2.598301 17.438599 7.2233067c4.625061 4.625004 7.2233276 10.897858 7.2233276 17.438602l0 98.644684c0 13.620392 -11.041504 24.661911 -24.661926 24.661911l-132.15646 0l0 0c-13.620392 0 -24.661926 -11.041519 -24.661926 -24.661911z" fill-rule="nonzero"></path><path fill="#434343" d="m507.8374 155.25732l1.71875 0.21875q-0.40625 1.5 -1.515625 2.34375q-1.09375 0.828125 -2.8125 0.828125q-2.15625 0 -3.421875 -1.328125q-1.265625 -1.328125 -1.265625 -3.734375q0 -2.484375 1.265625 -3.859375q1.28125 -1.375 3.328125 -1.375q1.984375 0 3.234375 1.34375q1.25 1.34375 1.25 3.796875q0 0.140625 -0.015625 0.4375l-7.34375 0q0.09375 1.625 0.921875 2.484375q0.828125 0.859375 2.0625 0.859375q0.90625 0 1.546875 -0.46875q0.65625 -0.484375 1.046875 -1.546875zm-5.484375 -2.703125l5.5 0q-0.109375 -1.234375 -0.625 -1.859375q-0.796875 -0.96875 -2.078125 -0.96875q-1.140625 0 -1.9375 0.78125q-0.78125 0.765625 -0.859375 2.046875zm9.110077 5.875l0 -9.859375l1.5000305 0l0 1.390625q0.453125 -0.71875 1.21875 -1.15625q0.78125 -0.453125 1.765625 -0.453125q1.09375 0 1.796875 0.453125q0.703125 0.453125 0.984375 1.28125q1.171875 -1.734375 3.046875 -1.734375q1.46875 0 2.25 0.8125q0.796875 0.8125 0.796875 2.5l0 6.765625l-1.671875 0l0 -6.203125q0 -1.0 -0.15625 -1.4375q-0.15625 -0.453125 -0.59375 -0.71875q-0.421875 -0.265625 -1.0 -0.265625q-1.03125 0 -1.71875 0.6875q-0.6875 0.6875 -0.6875 2.21875l0 5.71875l-1.671875 0l0 -6.40625q0 -1.109375 -0.40625 -1.65625q-0.40625 -0.5625 -1.34375 -0.5625q-0.703125 0 -1.3125 0.375q-0.59375 0.359375 -0.859375 1.078125q-0.265625 0.71875 -0.265625 2.0625l0 5.109375l-1.6719055 0zm21.978302 -1.21875q-0.9375 0.796875 -1.796875 1.125q-0.859375 0.3125 -1.84375 0.3125q-1.609375 0 -2.484375 -0.78125q-0.875 -0.796875 -0.875 -2.03125q0 -0.734375 0.328125 -1.328125q0.328125 -0.59375 0.859375 -0.953125q0.53125 -0.359375 1.203125 -0.546875q0.5 -0.140625 1.484375 -0.25q2.03125 -0.25 2.984375 -0.578125q0 -0.34375 0 -0.4375q0 -1.015625 -0.46875 -1.4375q-0.640625 -0.5625 -1.90625 -0.5625q-1.171875 0 -1.734375 0.40625q-0.5625 0.40625 -0.828125 1.46875l-1.640625 -0.234375q0.234375 -1.046875 0.734375 -1.6875q0.515625 -0.640625 1.46875 -0.984375q0.96875 -0.359375 2.25 -0.359375q1.265625 0 2.046875 0.296875q0.78125 0.296875 1.15625 0.75q0.375 0.453125 0.515625 1.140625q0.09375 0.421875 0.09375 1.53125l0 2.234375q0 2.328125 0.09375 2.953125q0.109375 0.609375 0.4375 1.171875l-1.75 0q-0.265625 -0.515625 -0.328125 -1.21875zm-0.140625 -3.71875q-0.90625 0.359375 -2.734375 0.625q-1.03125 0.140625 -1.453125 0.328125q-0.421875 0.1875 -0.65625 0.546875q-0.234375 0.359375 -0.234375 0.796875q0 0.671875 0.5 1.125q0.515625 0.4375 1.484375 0.4375q0.96875 0 1.71875 -0.421875q0.75 -0.4375 1.109375 -1.15625q0.265625 -0.578125 0.265625 -1.671875l0 -0.609375zm4.0944824 -6.75l0 -1.90625l1.671875 0l0 1.90625l-1.671875 0zm0 11.6875l0 -9.859375l1.671875 0l0 9.859375l-1.671875 0zm4.0979614 0l0 -13.59375l1.671875 0l0 13.59375l-1.671875 0z" fill-rule="nonzero"></path><path fill="#cfe2f3" d="m734.5092 55.215717l0 0c0 -13.620399 11.041504 -24.661911 24.661865 -24.661911l132.1565 0c6.5407715 0 12.813599 2.598301 17.438599 7.2233047c4.625 4.6250076 7.2233276 10.8978615 7.2233276 17.438606l0 98.644684c0 13.620392 -11.041504 24.661911 -24.661926 24.661911l-132.1565 0l0 0c-13.620361 0 -24.661865 -11.041519 -24.661865 -24.661911z" fill-rule="nonzero"></path><path stroke="#1155cc" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m734.5092 55.215717l0 0c0 -13.620399 11.041504 -24.661911 24.661865 -24.661911l132.1565 0c6.5407715 0 12.813599 2.598301 17.438599 7.2233047c4.625 4.6250076 7.2233276 10.8978615 7.2233276 17.438606l0 98.644684c0 13.620392 -11.041504 24.661911 -24.661926 24.661911l-132.1565 0l0 0c-13.620361 0 -24.661865 -11.041519 -24.661865 -24.661911z" fill-rule="nonzero"></path><path fill="#434343" d="m751.9668 166.45807l0 -9.859375l1.5 0l0 1.5q0.578125 -1.046875 1.0625 -1.375q0.484375 -0.34375 1.078125 -0.34375q0.84375 0 1.71875 0.546875l-0.578125 1.546875q-0.609375 -0.359375 -1.234375 -0.359375q-0.546875 0 -0.984375 0.328125q-0.421875 0.328125 -0.609375 0.90625q-0.28125 0.890625 -0.28125 1.953125l0 5.15625l-1.671875 0zm12.9782715 -3.171875l1.71875 0.21875q-0.40625 1.5 -1.515625 2.34375q-1.09375 0.828125 -2.8125 0.828125q-2.15625 0 -3.421875 -1.328125q-1.265625 -1.328125 -1.265625 -3.734375q0 -2.484375 1.265625 -3.859375q1.28125 -1.375 3.328125 -1.375q1.984375 0 3.234375 1.34375q1.25 1.34375 1.25 3.796875q0 0.140625 -0.015625 0.4375l-7.34375 0q0.09375 1.625 0.921875 2.484375q0.828125 0.859375 2.0625 0.859375q0.90625 0 1.546875 -0.46875q0.65625 -0.484375 1.046875 -1.546875zm-5.484375 -2.703125l5.5 0q-0.109375 -1.234375 -0.625 -1.859375q-0.796875 -0.96875 -2.078125 -0.96875q-1.140625 0 -1.9375 0.78125q-0.78125 0.765625 -0.859375 2.046875zm11.844482 5.875l-3.75 -9.859375l1.765625 0l2.125 5.90625q0.34375 0.953125 0.625 1.984375q0.21875 -0.78125 0.625 -1.875l2.1875 -6.015625l1.71875 0l-3.734375 9.859375l-1.5625 0zm13.34375 -3.171875l1.71875 0.21875q-0.40625 1.5 -1.515625 2.34375q-1.09375 0.828125 -2.8125 0.828125q-2.15625 0 -3.421875 -1.328125q-1.265625 -1.328125 -1.265625 -3.734375q0 -2.484375 1.265625 -3.859375q1.28125 -1.375 3.328125 -1.375q1.984375 0 3.234375 1.34375q1.25 1.34375 1.25 3.796875q0 0.140625 -0.015625 0.4375l-7.34375 0q0.09375 1.625 0.921875 2.484375q0.828125 0.859375 2.0625 0.859375q0.90625 0 1.546875 -0.46875q0.65625 -0.484375 1.046875 -1.546875zm-5.484375 -2.703125l5.5 0q-0.109375 -1.234375 -0.625 -1.859375q-0.796875 -0.96875 -2.078125 -0.96875q-1.140625 0 -1.9375 0.78125q-0.78125 0.765625 -0.859375 2.046875zm9.094482 5.875l0 -9.859375l1.5 0l0 1.5q0.578125 -1.046875 1.0625 -1.375q0.484375 -0.34375 1.078125 -0.34375q0.84375 0 1.71875 0.546875l-0.578125 1.546875q-0.609375 -0.359375 -1.234375 -0.359375q-0.546875 0 -0.984375 0.328125q-0.421875 0.328125 -0.609375 0.90625q-0.28125 0.890625 -0.28125 1.953125l0 5.15625l-1.671875 0zm5.5563965 -2.9375l1.65625 -0.265625q0.140625 1.0 0.765625 1.53125q0.640625 0.515625 1.78125 0.515625q1.15625 0 1.703125 -0.46875q0.5625 -0.46875 0.5625 -1.09375q0 -0.5625 -0.484375 -0.890625q-0.34375 -0.21875 -1.703125 -0.5625q-1.84375 -0.46875 -2.5625 -0.796875q-0.703125 -0.34375 -1.078125 -0.9375q-0.359375 -0.609375 -0.359375 -1.328125q0 -0.65625 0.296875 -1.21875q0.3125 -0.5625 0.828125 -0.9375q0.390625 -0.28125 1.0625 -0.484375q0.671875 -0.203125 1.4375 -0.203125q1.171875 0 2.046875 0.34375q0.875 0.328125 1.28125 0.90625q0.421875 0.5625 0.578125 1.515625l-1.625 0.21875q-0.109375 -0.75 -0.65625 -1.171875q-0.53125 -0.4375 -1.5 -0.4375q-1.15625 0 -1.640625 0.390625q-0.484375 0.375 -0.484375 0.875q0 0.328125 0.203125 0.59375q0.203125 0.265625 0.640625 0.4375q0.25 0.09375 1.46875 0.4375q1.765625 0.46875 2.46875 0.765625q0.703125 0.296875 1.09375 0.875q0.40625 0.578125 0.40625 1.4375q0 0.828125 -0.484375 1.578125q-0.484375 0.734375 -1.40625 1.140625q-0.921875 0.390625 -2.078125 0.390625q-1.921875 0 -2.9375 -0.796875q-1.0 -0.796875 -1.28125 -2.359375zm16.75 -0.234375l1.71875 0.21875q-0.40625 1.5 -1.515625 2.34375q-1.09375 0.828125 -2.8125 0.828125q-2.15625 0 -3.421875 -1.328125q-1.265625 -1.328125 -1.265625 -3.734375q0 -2.484375 1.265625 -3.859375q1.28125 -1.375 3.328125 -1.375q1.984375 0 3.234375 1.34375q1.25 1.34375 1.25 3.796875q0 0.140625 -0.015625 0.4375l-7.34375 0q0.09375 1.625 0.921875 2.484375q0.828125 0.859375 2.0625 0.859375q0.90625 0 1.546875 -0.46875q0.65625 -0.484375 1.046875 -1.546875zm-5.484375 -2.703125l5.5 0q-0.109375 -1.234375 -0.625 -1.859375q-0.796875 -0.96875 -2.078125 -0.96875q-1.140625 0 -1.9375 0.78125q-0.78125 0.765625 -0.859375 2.046875zm9.110107 9.65625l0 -13.640625l1.53125 0l0 1.28125q0.53125 -0.75 1.203125 -1.125q0.6875 -0.375 1.640625 -0.375q1.265625 0 2.234375 0.65625q0.96875 0.640625 1.453125 1.828125q0.5 1.1875 0.5 2.59375q0 1.515625 -0.546875 2.734375q-0.546875 1.203125 -1.578125 1.84375q-1.03125 0.640625 -2.171875 0.640625q-0.84375 0 -1.515625 -0.34375q-0.65625 -0.359375 -1.078125 -0.890625l0 4.796875l-1.671875 0zm1.515625 -8.65625q0 1.90625 0.765625 2.8125q0.78125 0.90625 1.875 0.90625q1.109375 0 1.890625 -0.9375q0.796875 -0.9375 0.796875 -2.921875q0 -1.875 -0.78125 -2.8125q-0.765625 -0.9375 -1.84375 -0.9375q-1.0625 0 -1.890625 1.0q-0.8125 1.0 -0.8125 2.890625zm8.844482 4.875l0 -9.859375l1.5 0l0 1.5q0.578125 -1.046875 1.0625 -1.375q0.484375 -0.34375 1.078125 -0.34375q0.84375 0 1.71875 0.546875l-0.578125 1.546875q-0.609375 -0.359375 -1.234375 -0.359375q-0.546875 0 -0.984375 0.328125q-0.421875 0.328125 -0.609375 0.90625q-0.28125 0.890625 -0.28125 1.953125l0 5.15625l-1.671875 0zm5.6032715 -4.921875q0 -2.734375 1.53125 -4.0625q1.265625 -1.09375 3.09375 -1.09375q2.03125 0 3.3125 1.34375q1.296875 1.328125 1.296875 3.671875q0 1.90625 -0.578125 3.0q-0.5625 1.078125 -1.65625 1.6875q-1.078125 0.59375 -2.375 0.59375q-2.0625 0 -3.34375 -1.328125q-1.28125 -1.328125 -1.28125 -3.8125zm1.71875 0q0 1.890625 0.828125 2.828125q0.828125 0.9375 2.078125 0.9375q1.25 0 2.0625 -0.9375q0.828125 -0.953125 0.828125 -2.890625q0 -1.828125 -0.828125 -2.765625q-0.828125 -0.9375 -2.0625 -0.9375q-1.25 0 -2.078125 0.9375q-0.828125 0.9375 -0.828125 2.828125zm8.172607 4.921875l3.59375 -5.125l-3.328125 -4.734375l2.09375 0l1.515625 2.3125q0.421875 0.65625 0.671875 1.109375q0.421875 -0.609375 0.765625 -1.09375l1.65625 -2.328125l1.984375 0l-3.390625 4.640625l3.65625 5.21875l-2.046875 0l-2.03125 -3.0625l-0.53125 -0.828125l-2.59375 3.890625l-2.015625 0zm10.359375 3.796875l-0.171875 -1.5625q0.546875 0.140625 0.953125 0.140625q0.546875 0 0.875 -0.1875q0.34375 -0.1875 0.5625 -0.515625q0.15625 -0.25 0.5 -1.25q0.046875 -0.140625 0.15625 -0.40625l-3.734375 -9.875l1.796875 0l2.046875 5.71875q0.40625 1.078125 0.71875 2.28125q0.28125 -1.15625 0.6875 -2.25l2.09375 -5.75l1.671875 0l-3.75 10.03125q-0.59375 1.625 -0.9375 2.234375q-0.4375 0.828125 -1.015625 1.203125q-0.578125 0.390625 -1.375 0.390625q-0.484375 0 -1.078125 -0.203125z" fill-rule="nonzero"></path><path fill="#cfe2f3" d="m155.33595 283.4467l0 0c0 -13.620392 11.041519 -24.661896 24.661911 -24.661896l132.1565 0c6.540741 0 12.813599 2.598297 17.438599 7.223297c4.6250305 4.625 7.2233276 10.897858 7.2233276 17.438599l0 98.644684c0 13.620392 -11.041534 24.661926 -24.661926 24.661926l-132.1565 0l0 0c-13.620392 0 -24.661911 -11.041534 -24.661911 -24.661926z" fill-rule="nonzero"></path><path stroke="#1155cc" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m155.33595 283.4467l0 0c0 -13.620392 11.041519 -24.661896 24.661911 -24.661896l132.1565 0c6.540741 0 12.813599 2.598297 17.438599 7.223297c4.6250305 4.625 7.2233276 10.897858 7.2233276 17.438599l0 98.644684c0 13.620392 -11.041534 24.661926 -24.661926 24.661926l-132.1565 0l0 0c-13.620392 0 -24.661911 -11.041534 -24.661911 -24.661926z" fill-rule="nonzero"></path><path fill="#434343" d="m172.13731 391.75153l1.65625 -0.265625q0.140625 1.0 0.765625 1.53125q0.640625 0.515625 1.78125 0.515625q1.15625 0 1.703125 -0.46875q0.5625 -0.46875 0.5625 -1.09375q0 -0.5625 -0.484375 -0.890625q-0.34375 -0.21875 -1.703125 -0.5625q-1.84375 -0.46875 -2.5625 -0.796875q-0.703125 -0.34375 -1.078125 -0.9375q-0.359375 -0.609375 -0.359375 -1.328125q0 -0.65625 0.296875 -1.21875q0.3125 -0.5625 0.828125 -0.9375q0.390625 -0.28125 1.0625 -0.484375q0.671875 -0.203125 1.4375 -0.203125q1.171875 0 2.046875 0.34375q0.875 0.328125 1.28125 0.90625q0.421875 0.5625 0.578125 1.515625l-1.625 0.21875q-0.109375 -0.75 -0.65625 -1.171875q-0.53125 -0.4375 -1.5 -0.4375q-1.15625 0 -1.640625 0.390625q-0.484375 0.375 -0.484375 0.875q0 0.328125 0.203125 0.59375q0.203125 0.265625 0.640625 0.4375q0.25 0.09375 1.46875 0.4375q1.765625 0.46875 2.46875 0.765625q0.703125 0.296875 1.09375 0.875q0.40625 0.578125 0.40625 1.4375q0 0.828125 -0.484375 1.578125q-0.484375 0.734375 -1.40625 1.140625q-0.921875 0.390625 -2.078125 0.390625q-1.921875 0 -2.9375 -0.796875q-1.0 -0.796875 -1.28125 -2.359375zm9.375 -1.984375q0 -2.734375 1.53125 -4.0625q1.265625 -1.09375 3.09375 -1.09375q2.03125 0 3.3125 1.34375q1.296875 1.328125 1.296875 3.671875q0 1.90625 -0.578125 3.0q-0.5625 1.078125 -1.65625 1.6875q-1.078125 0.59375 -2.375 0.59375q-2.0625 0 -3.34375 -1.328125q-1.28125 -1.328125 -1.28125 -3.8125zm1.71875 0q0 1.890625 0.828125 2.828125q0.828125 0.9375 2.078125 0.9375q1.25 0 2.0625 -0.9375q0.828125 -0.953125 0.828125 -2.890625q0 -1.828125 -0.828125 -2.765625q-0.828125 -0.9375 -2.0625 -0.9375q-1.25 0 -2.078125 0.9375q-0.828125 0.9375 -0.828125 2.828125zm15.719467 1.3125l1.640625 0.21875q-0.265625 1.6875 -1.375 2.65625q-1.109375 0.953125 -2.734375 0.953125q-2.015625 0 -3.25 -1.3125q-1.21875 -1.328125 -1.21875 -3.796875q0 -1.59375 0.515625 -2.78125q0.53125 -1.203125 1.609375 -1.796875q1.09375 -0.609375 2.359375 -0.609375q1.609375 0 2.625 0.8125q1.015625 0.8125 1.3125 2.3125l-1.625 0.25q-0.234375 -1.0 -0.828125 -1.5q-0.59375 -0.5 -1.421875 -0.5q-1.265625 0 -2.0625 0.90625q-0.78125 0.90625 -0.78125 2.859375q0 1.984375 0.765625 2.890625q0.765625 0.890625 1.984375 0.890625q0.984375 0 1.640625 -0.59375q0.65625 -0.609375 0.84375 -1.859375zm2.90625 -8.078125l0 -1.90625l1.671875 0l0 1.90625l-1.671875 0zm0 11.6875l0 -9.859375l1.671875 0l0 9.859375l-1.671875 0zm10.566696 -1.21875q-0.9375 0.796875 -1.796875 1.125q-0.859375 0.3125 -1.84375 0.3125q-1.609375 0 -2.484375 -0.78125q-0.875 -0.796875 -0.875 -2.03125q0 -0.734375 0.328125 -1.328125q0.328125 -0.59375 0.859375 -0.953125q0.53125 -0.359375 1.203125 -0.546875q0.5 -0.140625 1.484375 -0.25q2.03125 -0.25 2.984375 -0.578125q0 -0.34375 0 -0.4375q0 -1.015625 -0.46875 -1.4375q-0.640625 -0.5625 -1.90625 -0.5625q-1.171875 0 -1.734375 0.40625q-0.5625 0.40625 -0.828125 1.46875l-1.640625 -0.234375q0.234375 -1.046875 0.734375 -1.6875q0.515625 -0.640625 1.46875 -0.984375q0.96875 -0.359375 2.25 -0.359375q1.265625 0 2.046875 0.296875q0.78125 0.296875 1.15625 0.75q0.375 0.453125 0.515625 1.140625q0.09375 0.421875 0.09375 1.53125l0 2.234375q0 2.328125 0.09375 2.953125q0.109375 0.609375 0.4375 1.171875l-1.75 0q-0.265625 -0.515625 -0.328125 -1.21875zm-0.140625 -3.71875q-0.90625 0.359375 -2.734375 0.625q-1.03125 0.140625 -1.453125 0.328125q-0.421875 0.1875 -0.65625 0.546875q-0.234375 0.359375 -0.234375 0.796875q0 0.671875 0.5 1.125q0.515625 0.4375 1.484375 0.4375q0.96875 0 1.71875 -0.421875q0.75 -0.4375 1.109375 -1.15625q0.265625 -0.578125 0.265625 -1.671875l0 -0.609375zm4.047592 4.9375l0 -13.59375l1.671875 0l0 13.59375l-1.671875 0z" fill-rule="nonzero"></path><path fill="#cfe2f3" d="m521.12335 305.8895l0 0c0 -28.65561 23.22998 -51.88556 51.88556 -51.88556l409.0478 0c13.760925 0 26.95819 5.4664917 36.68866 15.19693c9.730347 9.730438 15.196899 22.927704 15.196899 36.68863l0 207.53598c0 28.655579 -23.22998 51.88556 -51.88556 51.88556l-409.0478 0c-28.655579 0 -51.88556 -23.22998 -51.88556 -51.88556z" fill-rule="nonzero"></path><path stroke="#1155cc" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m521.12335 305.8895l0 0c0 -28.65561 23.22998 -51.88556 51.88556 -51.88556l409.0478 0c13.760925 0 26.95819 5.4664917 36.68866 15.19693c9.730347 9.730438 15.196899 22.927704 15.196899 36.68863l0 207.53598c0 28.655579 -23.22998 51.88556 -51.88556 51.88556l-409.0478 0c-28.655579 0 -51.88556 -23.22998 -51.88556 -51.88556z" fill-rule="nonzero"></path><path fill="#434343" d="m546.58575 536.88995l0 -1.90625l1.671875 0l0 1.90625l-1.671875 0zm0 11.6875l0 -9.859375l1.671875 0l0 9.859375l-1.671875 0zm4.1292114 0l0 -9.859375l1.5 0l0 1.40625q1.09375 -1.625 3.140625 -1.625q0.890625 0 1.640625 0.328125q0.75 0.3125 1.109375 0.84375q0.375 0.515625 0.53125 1.21875q0.09375 0.46875 0.09375 1.625l0 6.0625l-1.671875 0l0 -6.0q0 -1.015625 -0.203125 -1.515625q-0.1875 -0.515625 -0.6875 -0.8125q-0.5 -0.296875 -1.171875 -0.296875q-1.0625 0 -1.84375 0.671875q-0.765625 0.671875 -0.765625 2.578125l0 5.375l-1.671875 0zm14.031921 -1.5l0.234375 1.484375q-0.703125 0.140625 -1.265625 0.140625q-0.90625 0 -1.40625 -0.28125q-0.5 -0.296875 -0.703125 -0.75q-0.203125 -0.46875 -0.203125 -1.984375l0 -5.65625l-1.234375 0l0 -1.3125l1.234375 0l0 -2.4375l1.65625 -1.0l0 3.4375l1.6875 0l0 1.3125l-1.6875 0l0 5.75q0 0.71875 0.078125 0.921875q0.09375 0.203125 0.296875 0.328125q0.203125 0.125 0.578125 0.125q0.265625 0 0.734375 -0.078125zm8.2771 -1.671875l1.71875 0.21875q-0.40625 1.5 -1.515625 2.34375q-1.09375 0.828125 -2.8125 0.828125q-2.15625 0 -3.421875 -1.328125q-1.265625 -1.328125 -1.265625 -3.734375q0 -2.484375 1.265625 -3.859375q1.28125 -1.375 3.328125 -1.375q1.984375 0 3.234375 1.34375q1.25 1.34375 1.25 3.796875q0 0.140625 -0.015625 0.4375l-7.34375 0q0.09375 1.625 0.921875 2.484375q0.828125 0.859375 2.0625 0.859375q0.90625 0 1.546875 -0.46875q0.65625 -0.484375 1.046875 -1.546875zm-5.484375 -2.703125l5.5 0q-0.109375 -1.234375 -0.625 -1.859375q-0.796875 -0.96875 -2.078125 -0.96875q-1.140625 0 -1.9375 0.78125q-0.78125 0.765625 -0.859375 2.046875zm8.813171 6.6875l1.609375 0.25q0.109375 0.75 0.578125 1.09375q0.609375 0.453125 1.6875 0.453125q1.171875 0 1.796875 -0.46875q0.625 -0.453125 0.859375 -1.28125q0.125 -0.515625 0.109375 -2.15625q-1.09375 1.296875 -2.71875 1.296875q-2.03125 0 -3.15625 -1.46875q-1.109375 -1.46875 -1.109375 -3.515625q0 -1.40625 0.515625 -2.59375q0.515625 -1.203125 1.484375 -1.84375q0.96875 -0.65625 2.265625 -0.65625q1.75 0 2.875 1.40625l0 -1.1875l1.546875 0l0 8.515625q0 2.3125 -0.46875 3.265625q-0.46875 0.96875 -1.484375 1.515625q-1.015625 0.5625 -2.5 0.5625q-1.765625 0 -2.859375 -0.796875q-1.078125 -0.796875 -1.03125 -2.390625zm1.375 -5.921875q0 1.953125 0.765625 2.84375q0.78125 0.890625 1.9375 0.890625q1.140625 0 1.921875 -0.890625q0.78125 -0.890625 0.78125 -2.78125q0 -1.8125 -0.8125 -2.71875q-0.796875 -0.921875 -1.921875 -0.921875q-1.109375 0 -1.890625 0.90625q-0.78125 0.890625 -0.78125 2.671875zm9.281982 5.109375l0 -9.859375l1.5 0l0 1.5q0.578125 -1.046875 1.0625 -1.375q0.484375 -0.34375 1.078125 -0.34375q0.84375 0 1.71875 0.546875l-0.578125 1.546875q-0.609375 -0.359375 -1.234375 -0.359375q-0.546875 0 -0.984375 0.328125q-0.421875 0.328125 -0.609375 0.90625q-0.28125 0.890625 -0.28125 1.953125l0 5.15625l-1.671875 0zm12.6658325 -1.21875q-0.9375 0.796875 -1.796875 1.125q-0.859375 0.3125 -1.84375 0.3125q-1.609375 0 -2.484375 -0.78125q-0.875 -0.796875 -0.875 -2.03125q0 -0.734375 0.328125 -1.328125q0.328125 -0.59375 0.859375 -0.953125q0.53125 -0.359375 1.203125 -0.546875q0.5 -0.140625 1.484375 -0.25q2.03125 -0.25 2.984375 -0.578125q0 -0.34375 0 -0.4375q0 -1.015625 -0.46875 -1.4375q-0.640625 -0.5625 -1.90625 -0.5625q-1.171875 0 -1.734375 0.40625q-0.5625 0.40625 -0.828125 1.46875l-1.640625 -0.234375q0.234375 -1.046875 0.734375 -1.6875q0.515625 -0.640625 1.46875 -0.984375q0.96875 -0.359375 2.25 -0.359375q1.265625 0 2.046875 0.296875q0.78125 0.296875 1.15625 0.75q0.375 0.453125 0.515625 1.140625q0.09375 0.421875 0.09375 1.53125l0 2.234375q0 2.328125 0.09375 2.953125q0.109375 0.609375 0.4375 1.171875l-1.75 0q-0.265625 -0.515625 -0.328125 -1.21875zm-0.140625 -3.71875q-0.90625 0.359375 -2.734375 0.625q-1.03125 0.140625 -1.453125 0.328125q-0.421875 0.1875 -0.65625 0.546875q-0.234375 0.359375 -0.234375 0.796875q0 0.671875 0.5 1.125q0.515625 0.4375 1.484375 0.4375q0.96875 0 1.71875 -0.421875q0.75 -0.4375 1.109375 -1.15625q0.265625 -0.578125 0.265625 -1.671875l0 -0.609375zm7.7350464 3.4375l0.234375 1.484375q-0.703125 0.140625 -1.265625 0.140625q-0.90625 0 -1.40625 -0.28125q-0.5 -0.296875 -0.703125 -0.75q-0.203125 -0.46875 -0.203125 -1.984375l0 -5.65625l-1.234375 0l0 -1.3125l1.234375 0l0 -2.4375l1.65625 -1.0l0 3.4375l1.6875 0l0 1.3125l-1.6875 0l0 5.75q0 0.71875 0.078125 0.921875q0.09375 0.203125 0.296875 0.328125q0.203125 0.125 0.578125 0.125q0.265625 0 0.734375 -0.078125zm1.5427246 -10.1875l0 -1.90625l1.671875 0l0 1.90625l-1.671875 0zm0 11.6875l0 -9.859375l1.671875 0l0 9.859375l-1.671875 0zm3.5041504 -4.921875q0 -2.734375 1.53125 -4.0625q1.265625 -1.09375 3.09375 -1.09375q2.03125 0 3.3125 1.34375q1.296875 1.328125 1.296875 3.671875q0 1.90625 -0.578125 3.0q-0.5625 1.078125 -1.65625 1.6875q-1.078125 0.59375 -2.375 0.59375q-2.0625 0 -3.34375 -1.328125q-1.28125 -1.328125 -1.28125 -3.8125zm1.71875 0q0 1.890625 0.828125 2.828125q0.828125 0.9375 2.078125 0.9375q1.25 0 2.0625 -0.9375q0.828125 -0.953125 0.828125 -2.890625q0 -1.828125 -0.828125 -2.765625q-0.828125 -0.9375 -2.0625 -0.9375q-1.25 0 -2.078125 0.9375q-0.828125 0.9375 -0.828125 2.828125zm9.281982 4.921875l0 -9.859375l1.5 0l0 1.40625q1.09375 -1.625 3.140625 -1.625q0.890625 0 1.640625 0.328125q0.75 0.3125 1.109375 0.84375q0.375 0.515625 0.53125 1.21875q0.09375 0.46875 0.09375 1.625l0 6.0625l-1.671875 0l0 -6.0q0 -1.015625 -0.203125 -1.515625q-0.1875 -0.515625 -0.6875 -0.8125q-0.5 -0.296875 -1.171875 -0.296875q-1.0625 0 -1.84375 0.671875q-0.765625 0.671875 -0.765625 2.578125l0 5.375l-1.671875 0z" fill-rule="nonzero"></path><path fill="#cfe2f3" d="m50.498688 541.19995l0 0c0 -13.620361 11.041512 -24.661865 24.661911 -24.661865l278.3927 0c6.540741 0 12.813599 2.5982666 17.438599 7.2232666c4.625 4.625 7.223297 10.897888 7.223297 17.438599l0 98.644714c0 13.620361 -11.041504 24.661926 -24.661896 24.661926l-278.3927 0c-13.620399 0 -24.661911 -11.041565 -24.661911 -24.661926z" fill-rule="nonzero"></path><path stroke="#1155cc" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m50.498688 541.19995l0 0c0 -13.620361 11.041512 -24.661865 24.661911 -24.661865l278.3927 0c6.540741 0 12.813599 2.5982666 17.438599 7.2232666c4.625 4.625 7.223297 10.897888 7.223297 17.438599l0 98.644714c0 13.620361 -11.041504 24.661926 -24.661896 24.661926l-278.3927 0c-13.620399 0 -24.661911 -11.041565 -24.661911 -24.661926z" fill-rule="nonzero"></path><path fill="#434343" d="m74.36254 652.4423l0 -1.25q-0.9375 1.46875 -2.75 1.46875q-1.171875 0 -2.171875 -0.640625q-0.984375 -0.65625 -1.53125 -1.8125q-0.53125 -1.171875 -0.53125 -2.6875q0 -1.46875 0.484375 -2.671875q0.5 -1.203125 1.46875 -1.84375q0.984375 -0.640625 2.203125 -0.640625q0.890625 0 1.578125 0.375q0.703125 0.375 1.140625 0.984375l0 -4.875l1.65625 0l0 13.59375l-1.546875 0zm-5.28125 -4.921875q0 1.890625 0.796875 2.828125q0.8125 0.9375 1.890625 0.9375q1.09375 0 1.859375 -0.890625q0.765625 -0.890625 0.765625 -2.734375q0 -2.015625 -0.78125 -2.953125q-0.78125 -0.953125 -1.921875 -0.953125q-1.109375 0 -1.859375 0.90625q-0.75 0.90625 -0.75 2.859375zm15.703842 3.703125q-0.9375 0.796875 -1.796875 1.125q-0.859375 0.3125 -1.84375 0.3125q-1.609375 0 -2.484375 -0.78125q-0.875 -0.796875 -0.875 -2.03125q0 -0.734375 0.328125 -1.328125q0.328125 -0.59375 0.859375 -0.953125q0.53125 -0.359375 1.203125 -0.546875q0.5 -0.140625 1.484375 -0.25q2.03125 -0.25 2.984375 -0.578125q0 -0.34375 0 -0.4375q0 -1.015625 -0.46875 -1.4375q-0.640625 -0.5625 -1.90625 -0.5625q-1.171875 0 -1.734375 0.40625q-0.5625 0.40625 -0.828125 1.46875l-1.640625 -0.234375q0.234375 -1.046875 0.734375 -1.6875q0.515625 -0.640625 1.46875 -0.984375q0.96875 -0.359375 2.25 -0.359375q1.265625 0 2.046875 0.296875q0.78125 0.296875 1.15625 0.75q0.375 0.453125 0.515625 1.140625q0.09375 0.421875 0.09375 1.53125l0 2.234375q0 2.328125 0.09375 2.953125q0.109375 0.609375 0.4375 1.171875l-1.75 0q-0.265625 -0.515625 -0.328125 -1.21875zm-0.140625 -3.71875q-0.90625 0.359375 -2.734375 0.625q-1.03125 0.140625 -1.453125 0.328125q-0.421875 0.1875 -0.65625 0.546875q-0.234375 0.359375 -0.234375 0.796875q0 0.671875 0.5 1.125q0.515625 0.4375 1.484375 0.4375q0.96875 0 1.71875 -0.421875q0.75 -0.4375 1.109375 -1.15625q0.265625 -0.578125 0.265625 -1.671875l0 -0.609375zm7.735092 3.4375l0.234375 1.484375q-0.703125 0.140625 -1.265625 0.140625q-0.90625 0 -1.40625 -0.28125q-0.5 -0.296875 -0.703125 -0.75q-0.203125 -0.46875 -0.203125 -1.984375l0 -5.65625l-1.234375 0l0 -1.3125l1.234375 0l0 -2.4375l1.65625 -1.0l0 3.4375l1.6875 0l0 1.3125l-1.6875 0l0 5.75q0 0.71875 0.078125 0.921875q0.09375 0.203125 0.296875 0.328125q0.203125 0.125 0.578125 0.125q0.265625 0 0.734375 -0.078125zm7.964554 0.28125q-0.9375 0.796875 -1.796875 1.125q-0.859375 0.3125 -1.84375 0.3125q-1.609375 0 -2.484375 -0.78125q-0.875 -0.796875 -0.875 -2.03125q0 -0.734375 0.328125 -1.328125q0.328125 -0.59375 0.859375 -0.953125q0.53125 -0.359375 1.203125 -0.546875q0.5 -0.140625 1.484375 -0.25q2.03125 -0.25 2.984375 -0.578125q0 -0.34375 0 -0.4375q0 -1.015625 -0.46875 -1.4375q-0.640625 -0.5625 -1.90625 -0.5625q-1.171875 0 -1.734375 0.40625q-0.5625 0.40625 -0.828125 1.46875l-1.640625 -0.234375q0.234375 -1.046875 0.734375 -1.6875q0.515625 -0.640625 1.46875 -0.984375q0.96875 -0.359375 2.25 -0.359375q1.265625 0 2.046875 0.296875q0.78125 0.296875 1.15625 0.75q0.375 0.453125 0.515625 1.140625q0.09375 0.421875 0.09375 1.53125l0 2.234375q0 2.328125 0.09375 2.953125q0.109375 0.609375 0.4375 1.171875l-1.75 0q-0.265625 -0.515625 -0.328125 -1.21875zm-0.140625 -3.71875q-0.90625 0.359375 -2.734375 0.625q-1.03125 0.140625 -1.453125 0.328125q-0.421875 0.1875 -0.65625 0.546875q-0.234375 0.359375 -0.234375 0.796875q0 0.671875 0.5 1.125q0.515625 0.4375 1.484375 0.4375q0.96875 0 1.71875 -0.421875q0.75 -0.4375 1.109375 -1.15625q0.265625 -0.578125 0.265625 -1.671875l0 -0.609375zm5.625717 4.9375l-1.546875 0l0 -13.59375l1.65625 0l0 4.84375q1.0625 -1.328125 2.703125 -1.328125q0.90625 0 1.71875 0.375q0.8125 0.359375 1.328125 1.03125q0.53125 0.65625 0.828125 1.59375q0.296875 0.9375 0.296875 2.0q0 2.53125 -1.25 3.921875q-1.25 1.375 -3.0 1.375q-1.75 0 -2.734375 -1.453125l0 1.234375zm-0.015625 -5.0q0 1.765625 0.46875 2.5625q0.796875 1.28125 2.140625 1.28125q1.09375 0 1.890625 -0.9375q0.796875 -0.953125 0.796875 -2.84375q0 -1.921875 -0.765625 -2.84375q-0.765625 -0.921875 -1.84375 -0.921875q-1.09375 0 -1.890625 0.953125q-0.796875 0.953125 -0.796875 2.75zm15.281967 3.78125q-0.9375 0.796875 -1.796875 1.125q-0.859375 0.3125 -1.84375 0.3125q-1.609375 0 -2.484375 -0.78125q-0.875 -0.796875 -0.875 -2.03125q0 -0.734375 0.328125 -1.328125q0.328125 -0.59375 0.859375 -0.953125q0.53125 -0.359375 1.203125 -0.546875q0.5 -0.140625 1.484375 -0.25q2.03125 -0.25 2.984375 -0.578125q0 -0.34375 0 -0.4375q0 -1.015625 -0.46875 -1.4375q-0.640625 -0.5625 -1.90625 -0.5625q-1.171875 0 -1.734375 0.40625q-0.5625 0.40625 -0.828125 1.46875l-1.640625 -0.234375q0.234375 -1.046875 0.734375 -1.6875q0.515625 -0.640625 1.46875 -0.984375q0.96875 -0.359375 2.25 -0.359375q1.265625 0 2.046875 0.296875q0.78125 0.296875 1.15625 0.75q0.375 0.453125 0.515625 1.140625q0.09375 0.421875 0.09375 1.53125l0 2.234375q0 2.328125 0.09375 2.953125q0.109375 0.609375 0.4375 1.171875l-1.75 0q-0.265625 -0.515625 -0.328125 -1.21875zm-0.140625 -3.71875q-0.90625 0.359375 -2.734375 0.625q-1.03125 0.140625 -1.453125 0.328125q-0.421875 0.1875 -0.65625 0.546875q-0.234375 0.359375 -0.234375 0.796875q0 0.671875 0.5 1.125q0.515625 0.4375 1.484375 0.4375q0.96875 0 1.71875 -0.421875q0.75 -0.4375 1.109375 -1.15625q0.265625 -0.578125 0.265625 -1.671875l0 -0.609375zm3.4069672 2.0l1.65625 -0.265625q0.140625 1.0 0.765625 1.53125q0.640625 0.515625 1.7812424 0.515625q1.15625 0 1.703125 -0.46875q0.5625 -0.46875 0.5625 -1.09375q0 -0.5625 -0.484375 -0.890625q-0.34375 -0.21875 -1.703125 -0.5625q-1.8437424 -0.46875 -2.5624924 -0.796875q-0.703125 -0.34375 -1.078125 -0.9375q-0.359375 -0.609375 -0.359375 -1.328125q0 -0.65625 0.296875 -1.21875q0.3125 -0.5625 0.828125 -0.9375q0.390625 -0.28125 1.0625 -0.484375q0.671875 -0.203125 1.4374924 -0.203125q1.171875 0 2.046875 0.34375q0.875 0.328125 1.28125 0.90625q0.421875 0.5625 0.578125 1.515625l-1.625 0.21875q-0.109375 -0.75 -0.65625 -1.171875q-0.53125 -0.4375 -1.5 -0.4375q-1.1562424 0 -1.6406174 0.390625q-0.484375 0.375 -0.484375 0.875q0 0.328125 0.203125 0.59375q0.203125 0.265625 0.640625 0.4375q0.25 0.09375 1.4687424 0.4375q1.765625 0.46875 2.46875 0.765625q0.703125 0.296875 1.09375 0.875q0.40625 0.578125 0.40625 1.4375q0 0.828125 -0.484375 1.578125q-0.484375 0.734375 -1.40625 1.140625q-0.921875 0.390625 -2.078125 0.390625q-1.9218674 0 -2.9374924 -0.796875q-1.0 -0.796875 -1.28125 -2.359375zm16.749992 -0.234375l1.71875 0.21875q-0.40625 1.5 -1.515625 2.34375q-1.09375 0.828125 -2.8125 0.828125q-2.15625 0 -3.421875 -1.328125q-1.265625 -1.328125 -1.265625 -3.734375q0 -2.484375 1.265625 -3.859375q1.28125 -1.375 3.328125 -1.375q1.984375 0 3.234375 1.34375q1.25 1.34375 1.25 3.796875q0 0.140625 -0.015625 0.4375l-7.34375 0q0.09375 1.625 0.921875 2.484375q0.828125 0.859375 2.0625 0.859375q0.90625 0 1.546875 -0.46875q0.65625 -0.484375 1.046875 -1.546875zm-5.484375 -2.703125l5.5 0q-0.109375 -1.234375 -0.625 -1.859375q-0.796875 -0.96875 -2.078125 -0.96875q-1.140625 0 -1.9375 0.78125q-0.78125 0.765625 -0.859375 2.046875z" fill-rule="nonzero"></path><path fill="#cfe2f3" d="m44.934383 52.052986l0 0c0 -13.620396 11.041512 -24.66191 24.661907 -24.66191l278.39273 0c6.540741 0 12.813599 2.598301 17.438599 7.2233067c4.625 4.625004 7.223297 10.897858 7.223297 17.438602l0 98.64468c0 13.620407 -11.041504 24.661911 -24.661896 24.661911l-278.39273 0c-13.620396 0 -24.661907 -11.041504 -24.661907 -24.661911z" fill-rule="nonzero"></path><path stroke="#1155cc" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m44.934383 52.052986l0 0c0 -13.620396 11.041512 -24.66191 24.661907 -24.66191l278.39273 0c6.540741 0 12.813599 2.598301 17.438599 7.2233067c4.625 4.625004 7.223297 10.897858 7.223297 17.438602l0 98.64468c0 13.620407 -11.041504 24.661911 -24.661896 24.661911l-278.39273 0c-13.620396 0 -24.661907 -11.041504 -24.661907 -24.661911z" fill-rule="nonzero"></path><path fill="#434343" d="m62.40761 163.29533l0 -9.859375l1.5 0l0 1.390625q0.4531212 -0.71875 1.2187462 -1.15625q0.78125 -0.453125 1.765625 -0.453125q1.09375 0 1.796875 0.453125q0.703125 0.453125 0.984375 1.28125q1.171875 -1.734375 3.046875 -1.734375q1.46875 0 2.25 0.8125q0.796875 0.8125 0.796875 2.5l0 6.765625l-1.671875 0l0 -6.203125q0 -1.0 -0.15625 -1.4375q-0.15625 -0.453125 -0.59375 -0.71875q-0.421875 -0.265625 -1.0 -0.265625q-1.03125 0 -1.71875 0.6875q-0.6875 0.6875 -0.6875 2.21875l0 5.71875l-1.671875 0l0 -6.40625q0 -1.109375 -0.40625 -1.65625q-0.40625 -0.5625 -1.34375 -0.5625q-0.703125 0 -1.3125 0.375q-0.59375 0.359375 -0.859375 1.078125q-0.265625 0.71875 -0.265625 2.0625l0 5.109375l-1.6718712 0zm14.915798 -4.921875q0 -2.734375 1.53125 -4.0625q1.265625 -1.09375 3.09375 -1.09375q2.03125 0 3.3125 1.34375q1.296875 1.328125 1.296875 3.671875q0 1.90625 -0.578125 3.0q-0.5625 1.078125 -1.65625 1.6875q-1.078125 0.59375 -2.375 0.59375q-2.0625 0 -3.34375 -1.328125q-1.28125 -1.328125 -1.28125 -3.8125zm1.71875 0q0 1.890625 0.828125 2.828125q0.828125 0.9375 2.078125 0.9375q1.25 0 2.0625 -0.9375q0.828125 -0.953125 0.828125 -2.890625q0 -1.828125 -0.828125 -2.765625q-0.828125 -0.9375 -2.0625 -0.9375q-1.25 0 -2.078125 0.9375q-0.828125 0.9375 -0.828125 2.828125zm9.281967 4.921875l0 -9.859375l1.5 0l0 1.40625q1.09375 -1.625 3.140625 -1.625q0.890625 0 1.640625 0.328125q0.75 0.3125 1.109375 0.84375q0.375 0.515625 0.53125 1.21875q0.09375 0.46875 0.09375 1.625l0 6.0625l-1.671875 0l0 -6.0q0 -1.015625 -0.203125 -1.515625q-0.1875 -0.515625 -0.6875 -0.8125q-0.5 -0.296875 -1.171875 -0.296875q-1.0625 0 -1.84375 0.671875q-0.765625 0.671875 -0.765625 2.578125l0 5.375l-1.671875 0zm10.391342 -11.6875l0 -1.90625l1.671875 0l0 1.90625l-1.671875 0zm0 11.6875l0 -9.859375l1.671875 0l0 9.859375l-1.671875 0zm7.785446 -1.5l0.234375 1.484375q-0.703125 0.140625 -1.265625 0.140625q-0.90625 0 -1.40625 -0.28125q-0.5 -0.296875 -0.703125 -0.75q-0.203125 -0.46875 -0.203125 -1.984375l0 -5.65625l-1.234375 0l0 -1.3125l1.234375 0l0 -2.4375l1.65625 -1.0l0 3.4375l1.6875 0l0 1.3125l-1.6875 0l0 5.75q0 0.71875 0.078125 0.921875q0.09375 0.203125 0.296875 0.328125q0.203125 0.125 0.578125 0.125q0.265625 0 0.734375 -0.078125zm0.90205383 -3.421875q0 -2.734375 1.53125 -4.0625q1.265625 -1.09375 3.09375 -1.09375q2.03125 0 3.3125 1.34375q1.296875 1.328125 1.296875 3.671875q0 1.90625 -0.578125 3.0q-0.5625 1.078125 -1.65625 1.6875q-1.078125 0.59375 -2.375 0.59375q-2.0625 0 -3.34375 -1.328125q-1.28125 -1.328125 -1.28125 -3.8125zm1.71875 0q0 1.890625 0.828125 2.828125q0.828125 0.9375 2.078125 0.9375q1.25 0 2.0625 -0.9375q0.828125 -0.953125 0.828125 -2.890625q0 -1.828125 -0.828125 -2.765625q-0.828125 -0.9375 -2.0625 -0.9375q-1.25 0 -2.078125 0.9375q-0.828125 0.9375 -0.828125 2.828125zm9.266342 4.921875l0 -9.859375l1.5 0l0 1.5q0.578125 -1.046875 1.0625 -1.375q0.484375 -0.34375 1.078125 -0.34375q0.84375 0 1.71875 0.546875l-0.578125 1.546875q-0.609375 -0.359375 -1.234375 -0.359375q-0.546875 0 -0.984375 0.328125q-0.421875 0.328125 -0.609375 0.90625q-0.28125 0.890625 -0.28125 1.953125l0 5.15625l-1.671875 0z" fill-rule="nonzero"></path><path fill="#cfe2f3" d="m454.58267 643.6173l0 0c0 -13.620422 11.041504 -24.661926 24.661926 -24.661926l305.41635 0c6.5407104 0 12.813599 2.5983276 17.438599 7.2233276c4.625 4.625 7.2232666 10.897827 7.2232666 17.438599l0 98.64465c0 13.620422 -11.041504 24.661926 -24.661865 24.661926l-305.41635 0c-13.620422 0 -24.661926 -11.041504 -24.661926 -24.661926z" fill-rule="nonzero"></path><path stroke="#1155cc" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m454.58267 643.6173l0 0c0 -13.620422 11.041504 -24.661926 24.661926 -24.661926l305.41635 0c6.5407104 0 12.813599 2.5983276 17.438599 7.2233276c4.625 4.625 7.2232666 10.897827 7.2232666 17.438599l0 98.64465c0 13.620422 -11.041504 24.661926 -24.661865 24.661926l-305.41635 0c-13.620422 0 -24.661926 -11.041504 -24.661926 -24.661926z" fill-rule="nonzero"></path><path fill="#434343" d="m472.0559 754.8596l0 -9.859375l1.5 0l0 1.390625q0.453125 -0.71875 1.21875 -1.15625q0.78125 -0.453125 1.765625 -0.453125q1.09375 0 1.796875 0.453125q0.703125 0.453125 0.984375 1.28125q1.171875 -1.734375 3.046875 -1.734375q1.46875 0 2.25 0.8125q0.796875 0.8125 0.796875 2.5l0 6.765625l-1.671875 0l0 -6.203125q0 -1.0 -0.15625 -1.4375q-0.15625 -0.453125 -0.59375 -0.71875q-0.421875 -0.265625 -1.0 -0.265625q-1.03125 0 -1.71875 0.6875q-0.6875 0.6875 -0.6875 2.21875l0 5.71875l-1.671875 0l0 -6.40625q0 -1.109375 -0.40625 -1.65625q-0.40625 -0.5625 -1.34375 -0.5625q-0.703125 0 -1.3125 0.375q-0.59375 0.359375 -0.859375 1.078125q-0.265625 0.71875 -0.265625 2.0625l0 5.109375l-1.671875 0zm22.290802 -3.171875l1.71875 0.21875q-0.40625 1.5 -1.515625 2.34375q-1.09375 0.828125 -2.8125 0.828125q-2.15625 0 -3.421875 -1.328125q-1.265625 -1.328125 -1.265625 -3.734375q0 -2.484375 1.265625 -3.859375q1.28125 -1.375 3.328125 -1.375q1.984375 0 3.234375 1.34375q1.25 1.34375 1.25 3.796875q0 0.140625 -0.015625 0.4375l-7.34375 0q0.09375 1.625 0.921875 2.484375q0.828125 0.859375 2.0625 0.859375q0.90625 0 1.546875 -0.46875q0.65625 -0.484375 1.046875 -1.546875zm-5.484375 -2.703125l5.5 0q-0.109375 -1.234375 -0.625 -1.859375q-0.796875 -0.96875 -2.078125 -0.96875q-1.140625 0 -1.9375 0.78125q-0.78125 0.765625 -0.859375 2.046875zm8.235077 5.875l0 -1.359375l6.265625 -7.1875q-1.0625 0.046875 -1.875 0.046875l-4.015625 0l0 -1.359375l8.046875 0l0 1.109375l-5.34375 6.25l-1.015625 1.140625q1.109375 -0.078125 2.09375 -0.078125l4.5625 0l0 1.4375l-8.71875 0zm16.65625 0l0 -1.453125q-1.140625 1.671875 -3.125 1.671875q-0.859375 0 -1.625 -0.328125q-0.75 -0.34375 -1.125 -0.84375q-0.359375 -0.5 -0.515625 -1.234375q-0.09375 -0.5 -0.09375 -1.5625l0 -6.109375l1.671875 0l0 5.46875q0 1.3125 0.09375 1.765625q0.15625 0.65625 0.671875 1.03125q0.515625 0.375 1.265625 0.375q0.75 0 1.40625 -0.375q0.65625 -0.390625 0.921875 -1.046875q0.28125 -0.671875 0.28125 -1.9375l0 -5.28125l1.671875 0l0 9.859375l-1.5 0zm3.9069824 0l0 -9.859375l1.5 0l0 1.5q0.578125 -1.046875 1.0625 -1.375q0.484375 -0.34375 1.078125 -0.34375q0.84375 0 1.71875 0.546875l-0.578125 1.546875q-0.609375 -0.359375 -1.234375 -0.359375q-0.546875 0 -0.984375 0.328125q-0.421875 0.328125 -0.609375 0.90625q-0.28125 0.890625 -0.28125 1.953125l0 5.15625l-1.671875 0zm5.6032715 -4.921875q0 -2.734375 1.53125 -4.0625q1.265625 -1.09375 3.09375 -1.09375q2.03125 0 3.3125 1.34375q1.296875 1.328125 1.296875 3.671875q0 1.90625 -0.578125 3.0q-0.5625 1.078125 -1.65625 1.6875q-1.078125 0.59375 -2.375 0.59375q-2.0625 0 -3.34375 -1.328125q-1.28125 -1.328125 -1.28125 -3.8125zm1.71875 0q0 1.890625 0.828125 2.828125q0.828125 0.9375 2.078125 0.9375q1.25 0 2.0625 -0.9375q0.828125 -0.953125 0.828125 -2.890625q0 -1.828125 -0.828125 -2.765625q-0.828125 -0.9375 -2.0625 -0.9375q-1.25 0 -2.078125 0.9375q-0.828125 0.9375 -0.828125 2.828125z" fill-rule="nonzero"></path><path fill="#ffd966" d="m505.31235 52.057964l0 0c0 -6.1375847 4.9754944 -11.113083 11.113068 -11.113083l112.576965 0c2.9473877 0 5.774048 1.1708412 7.8581543 3.2549477c2.0841064 2.0841064 3.2549438 4.910763 3.2549438 7.858135l0 44.451c0 6.1375885 -4.975464 11.113083 -11.113098 11.113083l-112.576965 0c-6.1375732 0 -11.113068 -4.9754944 -11.113068 -11.113083z" fill-rule="nonzero"></path><path stroke="#7f6000" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m505.31235 52.057964l0 0c0 -6.1375847 4.9754944 -11.113083 11.113068 -11.113083l112.576965 0c2.9473877 0 5.774048 1.1708412 7.8581543 3.2549477c2.0841064 2.0841064 3.2549438 4.910763 3.2549438 7.858135l0 44.451c0 6.1375885 -4.975464 11.113083 -11.113098 11.113083l-112.576965 0c-6.1375732 0 -11.113068 -4.9754944 -11.113068 -11.113083z" fill-rule="nonzero"></path><path fill="#000000" d="m540.39746 81.20346l0 -13.59375l4.421875 0q2.5 0 3.265625 0.203125q1.15625 0.296875 1.9375 1.328125q0.796875 1.015625 0.796875 2.640625q0 1.25 -0.453125 2.109375q-0.453125 0.859375 -1.15625 1.34375q-0.703125 0.484375 -1.421875 0.640625q-0.984375 0.203125 -2.84375 0.203125l-1.796875 0l0 5.125l-2.75 0zm2.75 -11.296875l0 3.859375l1.5 0q1.625 0 2.171875 -0.21875q0.546875 -0.21875 0.859375 -0.671875q0.3125 -0.453125 0.3125 -1.046875q0 -0.75 -0.4375 -1.234375q-0.4375 -0.484375 -1.09375 -0.59375q-0.5 -0.09375 -1.984375 -0.09375l-1.328125 0zm9.0841675 6.234375q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25zm8.411621 2.109375l2.609375 -0.390625q0.171875 0.75 0.671875 1.15625q0.515625 0.390625 1.4375 0.390625q1.0 0 1.515625 -0.375q0.34375 -0.265625 0.34375 -0.703125q0 -0.296875 -0.1875 -0.484375q-0.1875 -0.1875 -0.875 -0.34375q-3.140625 -0.703125 -4.0 -1.265625q-1.15625 -0.796875 -1.15625 -2.21875q0 -1.28125 1.0 -2.15625q1.015625 -0.875 3.140625 -0.875q2.03125 0 3.0 0.65625q0.984375 0.65625 1.359375 1.953125l-2.453125 0.453125q-0.15625 -0.578125 -0.609375 -0.875q-0.4375 -0.3125 -1.25 -0.3125q-1.03125 0 -1.46875 0.296875q-0.296875 0.203125 -0.296875 0.515625q0 0.28125 0.25 0.484375q0.359375 0.25 2.4375 0.734375q2.078125 0.46875 2.90625 1.15625q0.828125 0.6875 0.828125 1.9375q0 1.359375 -1.140625 2.328125q-1.125 0.96875 -3.34375 0.96875q-2.015625 0 -3.1875 -0.8125q-1.171875 -0.8125 -1.53125 -2.21875zm15.797607 -7.046875l0 2.078125l-1.78125 0l0 3.984375q0 1.203125 0.046875 1.40625q0.0625 0.1875 0.234375 0.328125q0.1875 0.125 0.453125 0.125q0.359375 0 1.046875 -0.25l0.21875 2.015625q-0.90625 0.390625 -2.0625 0.390625q-0.703125 0 -1.265625 -0.234375q-0.5625 -0.234375 -0.828125 -0.609375q-0.265625 -0.375 -0.375 -1.015625q-0.078125 -0.453125 -0.078125 -1.84375l0 -4.296875l-1.203125 0l0 -2.078125l1.203125 0l0 -1.953125l2.609375 -1.515625l0 3.46875l1.78125 0zm1.7438965 9.859375l0 -13.59375l9.3125 0l0 2.296875l-6.578125 0l0 3.21875l5.6875 0l0 2.296875l-5.6875 0l0 5.78125l-2.734375 0zm11.349121 -11.1875l0 -2.40625l2.609375 0l0 2.40625l-2.609375 0zm0 11.1875l0 -9.859375l2.609375 0l0 9.859375l-2.609375 0zm3.9332886 0l3.5625 -5.078125l-3.40625 -4.78125l3.171875 0l1.75 2.71875l1.828125 -2.71875l3.0625 0l-3.328125 4.671875l3.640625 5.1875l-3.203125 0l-2.0 -3.046875l-2.03125 3.046875l-3.046875 0z" fill-rule="nonzero"></path><path fill="#ffd966" d="m757.8478 60.086838l0 0c0 -6.1375885 4.975464 -11.113083 11.113098 -11.113083l112.576965 0c2.9473877 0 5.774048 1.1708374 7.8581543 3.2549438c2.0841064 2.0841103 3.2549438 4.9107666 3.2549438 7.858139l0 44.450996c0 6.1375885 -4.975525 11.113083 -11.113098 11.113083l-112.576965 0c-6.1376343 0 -11.113098 -4.9754944 -11.113098 -11.113083z" fill-rule="nonzero"></path><path stroke="#7f6000" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m757.8478 60.086838l0 0c0 -6.1375885 4.975464 -11.113083 11.113098 -11.113083l112.576965 0c2.9473877 0 5.774048 1.1708374 7.8581543 3.2549438c2.0841064 2.0841103 3.2549438 4.9107666 3.2549438 7.858139l0 44.450996c0 6.1375885 -4.975525 11.113083 -11.113098 11.113083l-112.576965 0c-6.1376343 0 -11.113098 -4.9754944 -11.113098 -11.113083z" fill-rule="nonzero"></path><path fill="#000000" d="m783.13495 78.23233l0 -13.59375l9.3125 0l0 2.296875l-6.578125 0l0 3.21875l5.6875 0l0 2.296875l-5.6875 0l0 5.78125l-2.734375 0zm13.849121 0l-2.609375 0l0 -9.859375l2.421875 0l0 1.40625q0.625 -0.984375 1.109375 -1.296875q0.5 -0.328125 1.140625 -0.328125q0.890625 0 1.71875 0.5l-0.8125 2.265625q-0.65625 -0.421875 -1.21875 -0.421875q-0.546875 0 -0.9375 0.296875q-0.375 0.296875 -0.59375 1.09375q-0.21875 0.78125 -0.21875 3.296875l0 3.046875zm4.166504 -5.0625q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25zm18.286621 4.921875l-2.609375 0l0 -5.03125q0 -1.59375 -0.171875 -2.0625q-0.15625 -0.46875 -0.53125 -0.71875q-0.375 -0.265625 -0.90625 -0.265625q-0.6875 0 -1.234375 0.375q-0.53125 0.359375 -0.734375 0.984375q-0.1875 0.609375 -0.1875 2.25l0 4.46875l-2.609375 0l0 -9.859375l2.421875 0l0 1.453125q1.296875 -1.671875 3.25 -1.671875q0.859375 0 1.578125 0.3125q0.71875 0.3125 1.078125 0.796875q0.359375 0.484375 0.5 1.09375q0.15625 0.609375 0.15625 1.75l0 6.125zm6.942871 -9.859375l0 2.078125l-1.78125 0l0 3.984375q0 1.203125 0.046875 1.40625q0.0625 0.1875 0.234375 0.328125q0.1875 0.125 0.453125 0.125q0.359375 0 1.046875 -0.25l0.21875 2.015625q-0.90625 0.390625 -2.0625 0.390625q-0.703125 0 -1.265625 -0.234375q-0.5625 -0.234375 -0.828125 -0.609375q-0.265625 -0.375 -0.375 -1.015625q-0.078125 -0.453125 -0.078125 -1.84375l0 -4.296875l-1.203125 0l0 -2.078125l1.203125 0l0 -1.953125l2.609375 -1.515625l0 3.46875l1.78125 0zm1.4157715 6.234375l0 -2.609375l5.109375 0l0 2.609375l-5.109375 0zm12.1970825 0.484375l2.609375 0.4375q-0.5 1.4375 -1.59375 2.1875q-1.078125 0.734375 -2.703125 0.734375q-2.5625 0 -3.796875 -1.671875q-0.96875 -1.34375 -0.96875 -3.40625q0 -2.4375 1.265625 -3.828125q1.28125 -1.390625 3.25 -1.390625q2.1875 0 3.453125 1.453125q1.28125 1.453125 1.234375 4.453125l-6.53125 0q0.015625 1.15625 0.625 1.8125q0.609375 0.640625 1.5 0.640625q0.609375 0 1.03125 -0.328125q0.421875 -0.34375 0.625 -1.09375zm0.15625 -2.625q-0.03125 -1.140625 -0.59375 -1.71875q-0.546875 -0.59375 -1.34375 -0.59375q-0.859375 0 -1.40625 0.625q-0.5625 0.609375 -0.546875 1.6875l3.890625 0zm13.485107 5.765625l-2.609375 0l0 -5.03125q0 -1.59375 -0.171875 -2.0625q-0.15625 -0.46875 -0.53125 -0.71875q-0.375 -0.265625 -0.90625 -0.265625q-0.6875 0 -1.234375 0.375q-0.53125 0.359375 -0.734375 0.984375q-0.1875 0.609375 -0.1875 2.25l0 4.46875l-2.609375 0l0 -9.859375l2.421875 0l0 1.453125q1.296875 -1.671875 3.25 -1.671875q0.859375 0 1.578125 0.3125q0.71875 0.3125 1.078125 0.796875q0.359375 0.484375 0.5 1.09375q0.15625 0.609375 0.15625 1.75l0 6.125zm11.47406 0l-2.421875 0l0 -1.453125q-0.609375 0.84375 -1.4375 1.265625q-0.8125 0.40625 -1.640625 0.40625q-1.703125 0 -2.921875 -1.359375q-1.203125 -1.375 -1.203125 -3.828125q0 -2.5 1.171875 -3.796875q1.1875 -1.3125 2.984375 -1.3125q1.65625 0 2.859375 1.375l0 -4.890625l2.609375 0l0 13.59375zm-6.96875 -5.140625q0 1.578125 0.4375 2.28125q0.640625 1.015625 1.765625 1.015625q0.90625 0 1.53125 -0.765625q0.625 -0.765625 0.625 -2.28125q0 -1.703125 -0.609375 -2.4375q-0.609375 -0.75 -1.5625 -0.75q-0.9375 0 -1.5625 0.734375q-0.625 0.734375 -0.625 2.203125z" fill-rule="nonzero"></path><path fill="#000000" d="m802.2857 100.23233l0 -13.59375l2.75 0l0 5.34375l5.375 0l0 -5.34375l2.75 0l0 13.59375l-2.75 0l0 -5.953125l-5.375 0l0 5.953125l-2.75 0zm16.519836 0l0 -11.296875l-4.03125 0l0 -2.296875l10.8125 0l0 2.296875l-4.03125 0l0 11.296875l-2.75 0zm11.395996 0l0 -11.296875l-4.03125 0l0 -2.296875l10.8125 0l0 2.296875l-4.03125 0l0 11.296875l-2.75 0zm8.333496 0l0 -13.59375l4.421875 0q2.5 0 3.265625 0.203125q1.15625 0.296875 1.9375 1.328125q0.796875 1.015625 0.796875 2.640625q0 1.25 -0.453125 2.109375q-0.453125 0.859375 -1.15625 1.34375q-0.703125 0.484375 -1.421875 0.640625q-0.984375 0.203125 -2.84375 0.203125l-1.796875 0l0 5.125l-2.75 0zm2.75 -11.296875l0 3.859375l1.5 0q1.625 0 2.171875 -0.21875q0.546875 -0.21875 0.859375 -0.671875q0.3125 -0.453125 0.3125 -1.046875q0 -0.75 -0.4375 -1.234375q-0.4375 -0.484375 -1.09375 -0.59375q-0.5 -0.09375 -1.984375 -0.09375l-1.328125 0z" fill-rule="nonzero"></path><path fill="#ffd966" d="m65.601135 56.924107l0 0c0 -6.1375847 4.975502 -11.113083 11.113083 -11.113083l95.6006 0c2.9473877 0 5.7740326 1.1708374 7.858139 3.2549477c2.0841064 2.0841064 3.2549438 4.910763 3.2549438 7.858135l0 44.451c0 6.1375885 -4.9754944 11.113083 -11.113083 11.113083l-95.6006 0c-6.137581 0 -11.113083 -4.9754944 -11.113083 -11.113083z" fill-rule="nonzero"></path><path stroke="#7f6000" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m65.601135 56.924107l0 0c0 -6.1375847 4.975502 -11.113083 11.113083 -11.113083l95.6006 0c2.9473877 0 5.7740326 1.1708374 7.858139 3.2549477c2.0841064 2.0841064 3.2549438 4.910763 3.2549438 7.858135l0 44.451c0 6.1375885 -4.9754944 11.113083 -11.113083 11.113083l-95.6006 0c-6.137581 0 -11.113083 -4.9754944 -11.113083 -11.113083z" fill-rule="nonzero"></path><path fill="#000000" d="m98.40225 86.0696l0 -13.59375l4.109375 0l2.46875 9.265625l2.4375 -9.265625l4.125 0l0 13.59375l-2.546875 0l0 -10.703125l-2.703125 10.703125l-2.640625 0l-2.703125 -10.703125l0 10.703125l-2.546875 0zm22.040802 0l0 -1.46875q-0.53125 0.78125 -1.40625 1.234375q-0.875 0.453125 -1.859375 0.453125q-0.984375 0 -1.78125 -0.4375q-0.78125 -0.4375 -1.140625 -1.21875q-0.34375 -0.796875 -0.34375 -2.1875l0 -6.234375l2.609375 0l0 4.53125q0 2.078125 0.140625 2.546875q0.140625 0.46875 0.515625 0.75q0.390625 0.265625 0.96875 0.265625q0.671875 0 1.203125 -0.359375q0.53125 -0.375 0.71875 -0.90625q0.1875 -0.546875 0.1875 -2.671875l0 -4.15625l2.609375 0l0 9.859375l-2.421875 0zm13.880356 0l-2.609375 0l0 -5.03125q0 -1.59375 -0.171875 -2.0625q-0.15625 -0.46875 -0.53125 -0.71875q-0.375 -0.265625 -0.90625 -0.265625q-0.6875 0 -1.234375 0.375q-0.53125 0.359375 -0.734375 0.984375q-0.1875 0.609375 -0.1875 2.25l0 4.46875l-2.609375 0l0 -9.859375l2.421875 0l0 1.453125q1.296875 -1.671875 3.25 -1.671875q0.859375 0 1.578125 0.3125q0.71875 0.3125 1.078125 0.796875q0.359375 0.484375 0.5 1.09375q0.15625 0.609375 0.15625 1.75l0 6.125zm2.4272308 -11.1875l0 -2.40625l2.609375 0l0 2.40625l-2.609375 0zm0 11.1875l0 -9.859375l2.609375 0l0 9.859375l-2.609375 0zm14.152054 0l-2.609375 0l0 -5.03125q0 -1.59375 -0.171875 -2.0625q-0.15625 -0.46875 -0.53125 -0.71875q-0.375 -0.265625 -0.90625 -0.265625q-0.6875 0 -1.234375 0.375q-0.53125 0.359375 -0.734375 0.984375q-0.1875 0.609375 -0.1875 2.25l0 4.46875l-2.609375 0l0 -9.859375l2.421875 0l0 1.453125q1.296875 -1.671875 3.25 -1.671875q0.859375 0 1.578125 0.3125q0.71875 0.3125 1.078125 0.796875q0.359375 0.484375 0.5 1.09375q0.15625 0.609375 0.15625 1.75l0 6.125z" fill-rule="nonzero"></path><path fill="#ffd966" d="m199.07614 56.924107l0 0c0 -6.1375847 4.9755096 -11.113083 11.113083 -11.113083l128.82896 0c2.9473572 0 5.7740173 1.1708374 7.858124 3.2549477c2.0841064 2.0841064 3.2549438 4.910763 3.2549438 7.858135l0 44.451c0 6.1375885 -4.9754944 11.113083 -11.113068 11.113083l-128.82896 0c-6.1375732 0 -11.113083 -4.9754944 -11.113083 -11.113083z" fill-rule="nonzero"></path><path stroke="#7f6000" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m199.07614 56.924107l0 0c0 -6.1375847 4.9755096 -11.113083 11.113083 -11.113083l128.82896 0c2.9473572 0 5.7740173 1.1708374 7.858124 3.2549477c2.0841064 2.0841064 3.2549438 4.910763 3.2549438 7.858135l0 44.451c0 6.1375885 -4.9754944 11.113083 -11.113068 11.113083l-128.82896 0c-6.1375732 0 -11.113083 -4.9754944 -11.113083 -11.113083z" fill-rule="nonzero"></path><path fill="#000000" d="m220.07896 86.0696l0 -13.484375l2.75 0l0 11.1875l6.828125 0l0 2.296875l-9.578125 0zm10.708481 -5.0625q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25zm9.083481 5.578125l2.96875 0.359375q0.078125 0.515625 0.34375 0.703125q0.375 0.28125 1.171875 0.28125q1.03125 0 1.53125 -0.296875q0.34375 -0.203125 0.515625 -0.65625q0.125 -0.328125 0.125 -1.203125l0 -1.4375q-1.171875 1.59375 -2.953125 1.59375q-1.984375 0 -3.140625 -1.671875q-0.90625 -1.328125 -0.90625 -3.3125q0 -2.46875 1.1875 -3.78125q1.1875 -1.3125 2.96875 -1.3125q1.828125 0 3.015625 1.609375l0 -1.390625l2.4375 0l0 8.84375q0 1.75 -0.296875 2.609375q-0.28125 0.859375 -0.796875 1.34375q-0.515625 0.5 -1.390625 0.78125q-0.859375 0.28125 -2.1875 0.28125q-2.515625 0 -3.5625 -0.859375q-1.046875 -0.859375 -1.046875 -2.171875q0 -0.140625 0.015625 -0.3125zm2.328125 -5.78125q0 1.5625 0.609375 2.296875q0.609375 0.71875 1.5 0.71875q0.953125 0 1.609375 -0.734375q0.65625 -0.75 0.65625 -2.21875q0 -1.53125 -0.640625 -2.265625q-0.625 -0.75 -1.578125 -0.75q-0.9375 0 -1.546875 0.734375q-0.609375 0.71875 -0.609375 2.21875zm21.58348 5.125l-2.984375 0l-1.1875 -3.09375l-5.4375 0l-1.125 3.09375l-2.90625 0l5.296875 -13.59375l2.90625 0l5.4375 13.59375zm-5.046875 -5.375l-1.875 -5.046875l-1.84375 5.046875l3.71875 0zm15.207336 5.375l-2.609375 0l0 -5.03125q0 -1.59375 -0.171875 -2.0625q-0.15625 -0.46875 -0.53125 -0.71875q-0.375 -0.265625 -0.90625 -0.265625q-0.6875 0 -1.234375 0.375q-0.53125 0.359375 -0.734375 0.984375q-0.1875 0.609375 -0.1875 2.25l0 4.46875l-2.609375 0l0 -9.859375l2.421875 0l0 1.453125q1.296875 -1.671875 3.25 -1.671875q0.859375 0 1.578125 0.3125q0.71875 0.3125 1.078125 0.796875q0.359375 0.484375 0.5 1.09375q0.15625 0.609375 0.15625 1.75l0 6.125zm4.3803406 -6.84375l-2.359375 -0.4375q0.390625 -1.421875 1.359375 -2.109375q0.984375 -0.6875 2.90625 -0.6875q1.734375 0 2.59375 0.421875q0.859375 0.40625 1.203125 1.046875q0.34375 0.625 0.34375 2.328125l-0.03125 3.046875q0 1.296875 0.125 1.921875q0.125 0.609375 0.46875 1.3125l-2.578125 0q-0.09375 -0.265625 -0.25 -0.765625q-0.0625 -0.234375 -0.09375 -0.3125q-0.65625 0.65625 -1.421875 0.984375q-0.765625 0.3125 -1.625 0.3125q-1.515625 0 -2.40625 -0.8125q-0.875 -0.828125 -0.875 -2.09375q0 -0.84375 0.390625 -1.484375q0.40625 -0.65625 1.125 -1.0q0.71875 -0.359375 2.078125 -0.625q1.828125 -0.328125 2.53125 -0.625l0 -0.265625q0 -0.75 -0.375 -1.0625q-0.359375 -0.328125 -1.390625 -0.328125q-0.703125 0 -1.09375 0.28125q-0.390625 0.265625 -0.625 0.953125zm3.484375 2.109375q-0.5 0.171875 -1.59375 0.40625q-1.078125 0.234375 -1.40625 0.453125q-0.515625 0.359375 -0.515625 0.921875q0 0.546875 0.40625 0.953125q0.40625 0.390625 1.046875 0.390625q0.703125 0 1.34375 -0.46875q0.46875 -0.359375 0.625 -0.859375q0.09375 -0.34375 0.09375 -1.28125l0 -0.515625zm4.9382324 4.734375l0 -13.59375l2.609375 0l0 13.59375l-2.609375 0zm3.9489136 -9.859375l2.78125 0l2.359375 7.0l2.296875 -7.0l2.703125 0l-3.484375 9.484375l-0.625 1.71875q-0.34375 0.859375 -0.65625 1.3125q-0.296875 0.46875 -0.703125 0.75q-0.40625 0.28125 -1.0 0.4375q-0.59375 0.15625 -1.328125 0.15625q-0.75 0 -1.46875 -0.15625l-0.234375 -2.046875q0.609375 0.125 1.09375 0.125q0.921875 0 1.34375 -0.53125q0.4375 -0.53125 0.671875 -1.359375l-3.75 -9.890625zm10.563232 9.859375l0 -2.03125l3.703125 -4.234375q0.90625 -1.046875 1.34375 -1.484375q-0.453125 0.03125 -1.203125 0.046875l-3.484375 0.015625l0 -2.171875l8.15625 0l0 1.859375l-3.765625 4.328125l-1.328125 1.4375q1.078125 -0.0625 1.34375 -0.0625l4.03125 0l0 2.296875l-8.796875 0zm16.078125 -3.140625l2.609375 0.4375q-0.5 1.4375 -1.59375 2.1875q-1.078125 0.734375 -2.703125 0.734375q-2.5625 0 -3.796875 -1.671875q-0.96875 -1.34375 -0.96875 -3.40625q0 -2.4375 1.265625 -3.828125q1.28125 -1.390625 3.25 -1.390625q2.1875 0 3.453125 1.453125q1.28125 1.453125 1.234375 4.453125l-6.53125 0q0.015625 1.15625 0.625 1.8125q0.609375 0.640625 1.5 0.640625q0.609375 0 1.03125 -0.328125q0.421875 -0.34375 0.625 -1.09375zm0.15625 -2.625q-0.03125 -1.140625 -0.59375 -1.71875q-0.546875 -0.59375 -1.34375 -0.59375q-0.859375 0 -1.40625 0.625q-0.5625 0.609375 -0.546875 1.6875l3.890625 0zm7.016327 5.765625l-2.609375 0l0 -9.859375l2.421875 0l0 1.40625q0.625 -0.984375 1.109375 -1.296875q0.5 -0.328125 1.140625 -0.328125q0.890625 0 1.71875 0.5l-0.8125 2.265625q-0.65625 -0.421875 -1.21875 -0.421875q-0.546875 0 -0.9375 0.296875q-0.375 0.296875 -0.59375 1.09375q-0.21875 0.78125 -0.21875 3.296875l0 3.046875z" fill-rule="nonzero"></path><path fill="#ffd966" d="m674.07745 298.93854l0 0c0 -6.1375732 4.975464 -11.113068 11.113037 -11.113068l112.57703 0c2.9473267 0 5.773987 1.1708374 7.8580933 3.2549438c2.0841064 2.0841064 3.2549438 4.9107666 3.2549438 7.858124l0 44.45099c0 6.1376038 -4.975464 11.113098 -11.113037 11.113098l-112.57703 0c-6.1375732 0 -11.113037 -4.9754944 -11.113037 -11.113098z" fill-rule="nonzero"></path><path stroke="#7f6000" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m674.07745 298.93854l0 0c0 -6.1375732 4.975464 -11.113068 11.113037 -11.113068l112.57703 0c2.9473267 0 5.773987 1.1708374 7.8580933 3.2549438c2.0841064 2.0841064 3.2549438 4.9107666 3.2549438 7.858124l0 44.45099c0 6.1376038 -4.975464 11.113098 -11.113037 11.113098l-112.57703 0c-6.1375732 0 -11.113037 -4.9754944 -11.113037 -11.113098z" fill-rule="nonzero"></path><path fill="#000000" d="m725.64514 323.08405l2.671875 0.84375q-0.609375 2.21875 -2.046875 3.3125q-1.421875 1.078125 -3.609375 1.078125q-2.703125 0 -4.453125 -1.84375q-1.734375 -1.859375 -1.734375 -5.078125q0 -3.390625 1.75 -5.265625q1.75 -1.875 4.609375 -1.875q2.5 0 4.046875 1.46875q0.9375 0.875 1.390625 2.5l-2.71875 0.65625q-0.234375 -1.0625 -1.0 -1.671875q-0.765625 -0.609375 -1.859375 -0.609375q-1.515625 0 -2.453125 1.09375q-0.9375 1.078125 -0.9375 3.5q0 2.578125 0.921875 3.6875q0.921875 1.09375 2.40625 1.09375q1.109375 0 1.890625 -0.6875q0.78125 -0.703125 1.125 -2.203125zm4.1604614 -0.0625q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25zm9.317871 4.921875l0 -13.59375l2.609375 0l0 13.59375l-2.609375 0zm7.1364136 -6.84375l-2.359375 -0.4375q0.390625 -1.421875 1.359375 -2.109375q0.984375 -0.6875 2.90625 -0.6875q1.734375 0 2.59375 0.421875q0.859375 0.40625 1.203125 1.046875q0.34375 0.625 0.34375 2.328125l-0.03125 3.046875q0 1.296875 0.125 1.921875q0.125 0.609375 0.46875 1.3125l-2.578125 0q-0.09375 -0.265625 -0.25 -0.765625q-0.0625 -0.234375 -0.09375 -0.3125q-0.65625 0.65625 -1.421875 0.984375q-0.765625 0.3125 -1.625 0.3125q-1.515625 0 -2.40625 -0.8125q-0.875 -0.828125 -0.875 -2.09375q0 -0.84375 0.390625 -1.484375q0.40625 -0.65625 1.125 -1.0q0.71875 -0.359375 2.078125 -0.625q1.828125 -0.328125 2.53125 -0.625l0 -0.265625q0 -0.75 -0.375 -1.0625q-0.359375 -0.328125 -1.390625 -0.328125q-0.703125 0 -1.09375 0.28125q-0.390625 0.265625 -0.625 0.953125zm3.484375 2.109375q-0.5 0.171875 -1.59375 0.40625q-1.078125 0.234375 -1.40625 0.453125q-0.515625 0.359375 -0.515625 0.921875q0 0.546875 0.40625 0.953125q0.40625 0.390625 1.046875 0.390625q0.703125 0 1.34375 -0.46875q0.46875 -0.359375 0.625 -0.859375q0.09375 -0.34375 0.09375 -1.28125l0 -0.515625zm4.8288574 4.734375l0 -13.59375l2.609375 0l0 4.890625q1.203125 -1.375 2.859375 -1.375q1.796875 0 2.96875 1.3125q1.1875 1.296875 1.1875 3.734375q0 2.53125 -1.203125 3.890625q-1.203125 1.359375 -2.921875 1.359375q-0.84375 0 -1.671875 -0.421875q-0.8125 -0.421875 -1.40625 -1.25l0 1.453125l-2.421875 0zm2.59375 -5.140625q0 1.53125 0.484375 2.265625q0.671875 1.03125 1.796875 1.03125q0.859375 0 1.46875 -0.734375q0.609375 -0.734375 0.609375 -2.328125q0 -1.6875 -0.609375 -2.421875q-0.609375 -0.75 -1.578125 -0.75q-0.9375 0 -1.5625 0.734375q-0.609375 0.71875 -0.609375 2.203125z" fill-rule="nonzero"></path><path fill="#ffd966" d="m475.063 651.90704l0 0c0 -6.1375732 4.9754944 -11.113098 11.113098 -11.113098l112.576965 0c2.9473877 0 5.774048 1.1708374 7.8581543 3.2549438c2.0841064 2.0841064 3.2549438 4.9107666 3.2549438 7.8581543l0 44.45099c0 6.1375732 -4.975525 11.113098 -11.113098 11.113098l-112.576965 0c-6.1376038 0 -11.113098 -4.975525 -11.113098 -11.113098z" fill-rule="nonzero"></path><path stroke="#7f6000" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m475.063 651.90704l0 0c0 -6.1375732 4.9754944 -11.113098 11.113098 -11.113098l112.576965 0c2.9473877 0 5.774048 1.1708374 7.8581543 3.2549438c2.0841064 2.0841064 3.2549438 4.9107666 3.2549438 7.8581543l0 44.45099c0 6.1375732 -4.975525 11.113098 -11.113098 11.113098l-112.576965 0c-6.1376038 0 -11.113098 -4.975525 -11.113098 -11.113098z" fill-rule="nonzero"></path><path fill="#000000" d="m511.7527 670.05255l0 -13.59375l2.75 0l0 6.03125l5.546875 -6.03125l3.6875 0l-5.125 5.296875l5.40625 8.296875l-3.5625 0l-3.734375 -6.390625l-2.21875 2.28125l0 4.109375l-2.75 0zm15.363586 -6.84375l-2.359375 -0.4375q0.390625 -1.421875 1.359375 -2.109375q0.984375 -0.6875 2.90625 -0.6875q1.734375 0 2.59375 0.421875q0.859375 0.40625 1.203125 1.046875q0.34375 0.625 0.34375 2.328125l-0.03125 3.046875q0 1.296875 0.125 1.921875q0.125 0.609375 0.46875 1.3125l-2.578125 0q-0.09375 -0.265625 -0.25 -0.765625q-0.0625 -0.234375 -0.09375 -0.3125q-0.65625 0.65625 -1.421875 0.984375q-0.765625 0.3125 -1.625 0.3125q-1.515625 0 -2.40625 -0.8125q-0.875 -0.828125 -0.875 -2.09375q0 -0.84375 0.390625 -1.484375q0.40625 -0.65625 1.125 -1.0q0.71875 -0.359375 2.078125 -0.625q1.828125 -0.328125 2.53125 -0.625l0 -0.265625q0 -0.75 -0.375 -1.0625q-0.359375 -0.328125 -1.390625 -0.328125q-0.703125 0 -1.09375 0.28125q-0.390625 0.265625 -0.625 0.953125zm3.484375 2.109375q-0.5 0.171875 -1.59375 0.40625q-1.078125 0.234375 -1.40625 0.453125q-0.515625 0.359375 -0.515625 0.921875q0 0.546875 0.40625 0.953125q0.40625 0.390625 1.046875 0.390625q0.703125 0 1.34375 -0.46875q0.46875 -0.359375 0.625 -0.859375q0.09375 -0.34375 0.09375 -1.28125l0 -0.515625zm4.9382324 4.734375l0 -13.59375l2.609375 0l0 13.59375l-2.609375 0zm5.1832886 -11.1875l0 -2.40625l2.609375 0l0 2.40625l-2.609375 0zm0 11.1875l0 -9.859375l2.609375 0l0 9.859375l-2.609375 0zm5.0739136 0l0 -13.59375l2.609375 0l0 4.890625q1.203125 -1.375 2.859375 -1.375q1.796875 0 2.96875 1.3125q1.1875 1.296875 1.1875 3.734375q0 2.53125 -1.203125 3.890625q-1.203125 1.359375 -2.921875 1.359375q-0.84375 0 -1.671875 -0.421875q-0.8125 -0.421875 -1.40625 -1.25l0 1.453125l-2.421875 0zm2.59375 -5.140625q0 1.53125 0.484375 2.265625q0.671875 1.03125 1.796875 1.03125q0.859375 0 1.46875 -0.734375q0.609375 -0.734375 0.609375 -2.328125q0 -1.6875 -0.609375 -2.421875q-0.609375 -0.75 -1.578125 -0.75q-0.9375 0 -1.5625 0.734375q-0.609375 0.71875 -0.609375 2.203125zm11.411621 5.140625l-2.609375 0l0 -9.859375l2.421875 0l0 1.40625q0.625 -0.984375 1.109375 -1.296875q0.5 -0.328125 1.140625 -0.328125q0.890625 0 1.71875 0.5l-0.8125 2.265625q-0.65625 -0.421875 -1.21875 -0.421875q-0.546875 0 -0.9375 0.296875q-0.375 0.296875 -0.59375 1.09375q-0.21875 0.78125 -0.21875 3.296875l0 3.046875zm4.166504 -5.0625q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25z" fill-rule="nonzero"></path><path fill="#000000" d="m498.21008 692.05255l0 -13.59375l4.421875 0q2.5 0 3.265625 0.203125q1.15625 0.296875 1.9375 1.328125q0.796875 1.015625 0.796875 2.640625q0 1.25 -0.453125 2.109375q-0.453125 0.859375 -1.15625 1.34375q-0.703125 0.484375 -1.421875 0.640625q-0.984375 0.203125 -2.84375 0.203125l-1.796875 0l0 5.125l-2.75 0zm2.75 -11.296875l0 3.859375l1.5 0q1.625 0 2.171875 -0.21875q0.546875 -0.21875 0.859375 -0.671875q0.3125 -0.453125 0.3125 -1.046875q0 -0.75 -0.4375 -1.234375q-0.4375 -0.484375 -1.09375 -0.59375q-0.5 -0.09375 -1.984375 -0.09375l-1.328125 0zm12.1779785 11.296875l-2.6094055 0l0 -9.859375l2.4219055 0l0 1.40625q0.625 -0.984375 1.109375 -1.296875q0.5 -0.328125 1.140625 -0.328125q0.890625 0 1.71875 0.5l-0.8125 2.265625q-0.65625 -0.421875 -1.21875 -0.421875q-0.546875 0 -0.9375 0.296875q-0.375 0.296875 -0.59375 1.09375q-0.21875 0.78125 -0.21875 3.296875l0 3.046875zm4.166504 -5.0625q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25zm17.911621 -2.015625l-2.5625 0.46875q-0.140625 -0.78125 -0.59375 -1.171875q-0.453125 -0.390625 -1.1875 -0.390625q-0.984375 0 -1.5625 0.671875q-0.578125 0.671875 -0.578125 2.25q0 1.765625 0.578125 2.484375q0.59375 0.71875 1.59375 0.71875q0.75 0 1.21875 -0.421875q0.46875 -0.421875 0.671875 -1.453125l2.546875 0.4375q-0.390625 1.765625 -1.53125 2.671875q-1.125 0.890625 -3.03125 0.890625q-2.15625 0 -3.453125 -1.359375q-1.28125 -1.359375 -1.28125 -3.78125q0 -2.4375 1.296875 -3.796875q1.296875 -1.359375 3.484375 -1.359375q1.796875 0 2.859375 0.78125q1.0625 0.765625 1.53125 2.359375zm7.4851074 3.796875l2.609375 0.4375q-0.5 1.4375 -1.59375 2.1875q-1.078125 0.734375 -2.703125 0.734375q-2.562561 0 -3.796936 -1.671875q-0.96875 -1.34375 -0.96875 -3.40625q0 -2.4375 1.265625 -3.828125q1.28125 -1.390625 3.250061 -1.390625q2.1875 0 3.453125 1.453125q1.28125 1.453125 1.234375 4.453125l-6.531311 0q0.015625 1.15625 0.625 1.8125q0.60943604 0.640625 1.500061 0.640625q0.609375 0 1.03125 -0.328125q0.421875 -0.34375 0.625 -1.09375zm0.15625 -2.625q-0.03125 -1.140625 -0.59375 -1.71875q-0.546875 -0.59375 -1.34375 -0.59375q-0.859375 0 -1.406311 0.625q-0.5625 0.609375 -0.546875 1.6875l3.890686 0zm3.6100464 2.953125l2.609375 -0.390625q0.171875 0.75 0.671875 1.15625q0.515625 0.390625 1.4375 0.390625q1.0 0 1.515625 -0.375q0.34375 -0.265625 0.34375 -0.703125q0 -0.296875 -0.1875 -0.484375q-0.1875 -0.1875 -0.875 -0.34375q-3.140625 -0.703125 -4.0 -1.265625q-1.15625 -0.796875 -1.15625 -2.21875q0 -1.28125 1.0 -2.15625q1.015625 -0.875 3.140625 -0.875q2.03125 0 3.0 0.65625q0.984375 0.65625 1.359375 1.953125l-2.453125 0.453125q-0.15625 -0.578125 -0.609375 -0.875q-0.4375 -0.3125 -1.25 -0.3125q-1.03125 0 -1.46875 0.296875q-0.296875 0.203125 -0.296875 0.515625q0 0.28125 0.25 0.484375q0.359375 0.25 2.4375 0.734375q2.078125 0.46875 2.90625 1.15625q0.828125 0.6875 0.828125 1.9375q0 1.359375 -1.140625 2.328125q-1.125 0.96875 -3.34375 0.96875q-2.015625 0 -3.1875 -0.8125q-1.171875 -0.8125 -1.53125 -2.21875zm10.375732 0l2.609375 -0.390625q0.171875 0.75 0.671875 1.15625q0.515625 0.390625 1.4375 0.390625q1.0 0 1.515625 -0.375q0.34375 -0.265625 0.34375 -0.703125q0 -0.296875 -0.1875 -0.484375q-0.1875 -0.1875 -0.875 -0.34375q-3.140625 -0.703125 -4.0 -1.265625q-1.15625 -0.796875 -1.15625 -2.21875q0 -1.28125 1.0 -2.15625q1.015625 -0.875 3.140625 -0.875q2.03125 0 3.0 0.65625q0.984375 0.65625 1.359375 1.953125l-2.453125 0.453125q-0.15625 -0.578125 -0.609375 -0.875q-0.4375 -0.3125 -1.25 -0.3125q-1.03125 0 -1.46875 0.296875q-0.296875 0.203125 -0.296875 0.515625q0 0.28125 0.25 0.484375q0.359375 0.25 2.4375 0.734375q2.078125 0.46875 2.90625 1.15625q0.828125 0.6875 0.828125 1.9375q0 1.359375 -1.140625 2.328125q-1.125 0.96875 -3.34375 0.96875q-2.015625 0 -3.1875 -0.8125q-1.171875 -0.8125 -1.53125 -2.21875zm10.688232 -2.25q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25zm11.817871 4.921875l-2.609375 0l0 -9.859375l2.421875 0l0 1.40625q0.625 -0.984375 1.109375 -1.296875q0.5 -0.328125 1.140625 -0.328125q0.890625 0 1.71875 0.5l-0.8125 2.265625q-0.65625 -0.421875 -1.21875 -0.421875q-0.546875 0 -0.9375 0.296875q-0.375 0.296875 -0.59375 1.09375q-0.21875 0.78125 -0.21875 3.296875l0 3.046875z" fill-rule="nonzero"></path><path fill="#ffd966" d="m638.8163 651.9084l0 0c0 -6.1376343 4.975464 -11.113098 11.113098 -11.113098l128.82892 0c2.9473877 0 5.774048 1.1708374 7.8581543 3.2549438c2.0841064 2.0841064 3.2549438 4.9107666 3.2549438 7.8581543l0 44.45099c0 6.1375732 -4.975525 11.113037 -11.113098 11.113037l-128.82892 0c-6.1376343 0 -11.113098 -4.975464 -11.113098 -11.113037z" fill-rule="nonzero"></path><path stroke="#7f6000" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m638.8163 651.9084l0 0c0 -6.1376343 4.975464 -11.113098 11.113098 -11.113098l128.82892 0c2.9473877 0 5.774048 1.1708374 7.8581543 3.2549438c2.0841064 2.0841064 3.2549438 4.9107666 3.2549438 7.8581543l0 44.45099c0 6.1375732 -4.975525 11.113037 -11.113098 11.113037l-128.82892 0c-6.1376343 0 -11.113098 -4.975464 -11.113098 -11.113037z" fill-rule="nonzero"></path><path fill="#000000" d="m683.63196 670.05383l0 -13.59375l2.75 0l0 6.03125l5.546875 -6.03125l3.6875 0l-5.125 5.296875l5.40625 8.296875l-3.5625 0l-3.734375 -6.390625l-2.21875 2.28125l0 4.109375l-2.75 0zm15.363586 -6.84375l-2.359375 -0.4375q0.390625 -1.421875 1.359375 -2.109375q0.984375 -0.6875 2.90625 -0.6875q1.734375 0 2.59375 0.421875q0.859375 0.40625 1.203125 1.046875q0.34375 0.625 0.34375 2.328125l-0.03125 3.046875q0 1.296875 0.125 1.921875q0.125 0.609375 0.46875 1.3125l-2.578125 0q-0.09375 -0.265625 -0.25 -0.765625q-0.0625 -0.234375 -0.09375 -0.3125q-0.65625 0.65625 -1.421875 0.984375q-0.765625 0.3125 -1.625 0.3125q-1.515625 0 -2.40625 -0.8125q-0.875 -0.828125 -0.875 -2.09375q0 -0.84375 0.390625 -1.484375q0.40625 -0.65625 1.125 -1.0q0.71875 -0.359375 2.078125 -0.625q1.828125 -0.328125 2.53125 -0.625l0 -0.265625q0 -0.75 -0.375 -1.0625q-0.359375 -0.328125 -1.390625 -0.328125q-0.703125 0 -1.09375 0.28125q-0.390625 0.265625 -0.625 0.953125zm3.484375 2.109375q-0.5 0.171875 -1.59375 0.40625q-1.078125 0.234375 -1.40625 0.453125q-0.515625 0.359375 -0.515625 0.921875q0 0.546875 0.40625 0.953125q0.40625 0.390625 1.046875 0.390625q0.703125 0 1.34375 -0.46875q0.46875 -0.359375 0.625 -0.859375q0.09375 -0.34375 0.09375 -1.28125l0 -0.515625zm4.9382324 4.734375l0 -13.59375l2.609375 0l0 13.59375l-2.609375 0zm5.1832886 -11.1875l0 -2.40625l2.609375 0l0 2.40625l-2.609375 0zm0 11.1875l0 -9.859375l2.609375 0l0 9.859375l-2.609375 0zm5.0739136 0l0 -13.59375l2.609375 0l0 4.890625q1.203125 -1.375 2.859375 -1.375q1.796875 0 2.96875 1.3125q1.1875 1.296875 1.1875 3.734375q0 2.53125 -1.203125 3.890625q-1.203125 1.359375 -2.921875 1.359375q-0.84375 0 -1.671875 -0.421875q-0.8125 -0.421875 -1.40625 -1.25l0 1.453125l-2.421875 0zm2.59375 -5.140625q0 1.53125 0.484375 2.265625q0.671875 1.03125 1.796875 1.03125q0.859375 0 1.46875 -0.734375q0.609375 -0.734375 0.609375 -2.328125q0 -1.6875 -0.609375 -2.421875q-0.609375 -0.75 -1.578125 -0.75q-0.9375 0 -1.5625 0.734375q-0.609375 0.71875 -0.609375 2.203125zm11.411621 5.140625l-2.609375 0l0 -9.859375l2.421875 0l0 1.40625q0.625 -0.984375 1.109375 -1.296875q0.5 -0.328125 1.140625 -0.328125q0.890625 0 1.71875 0.5l-0.8125 2.265625q-0.65625 -0.421875 -1.21875 -0.421875q-0.546875 0 -0.9375 0.296875q-0.375 0.296875 -0.59375 1.09375q-0.21875 0.78125 -0.21875 3.296875l0 3.046875zm4.166504 -5.0625q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25z" fill-rule="nonzero"></path><path fill="#000000" d="m663.28357 687.05383l2.671875 0.84375q-0.609375 2.21875 -2.046875 3.3125q-1.421875 1.078125 -3.609375 1.078125q-2.703125 0 -4.453125 -1.84375q-1.734375 -1.859375 -1.734375 -5.078125q0 -3.390625 1.75 -5.265625q1.75 -1.875 4.609375 -1.875q2.5 0 4.046875 1.46875q0.9375 0.875 1.390625 2.5l-2.71875 0.65625q-0.234375 -1.0625 -1.0 -1.671875q-0.765625 -0.609375 -1.859375 -0.609375q-1.515625 0 -2.453125 1.09375q-0.9375 1.078125 -0.9375 3.5q0 2.578125 0.921875 3.6875q0.921875 1.09375 2.40625 1.09375q1.109375 0 1.890625 -0.6875q0.78125 -0.703125 1.125 -2.203125zm4.1604614 -0.0625q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25zm18.28656 4.921875l-2.609375 0l0 -5.03125q0 -1.59375 -0.171875 -2.0625q-0.15625 -0.46875 -0.53125 -0.71875q-0.375 -0.265625 -0.90625 -0.265625q-0.6875 0 -1.234375 0.375q-0.53125 0.359375 -0.734375 0.984375q-0.1875 0.609375 -0.1875 2.25l0 4.46875l-2.609375 0l0 -9.859375l2.421875 0l0 1.453125q1.296875 -1.671875 3.25 -1.671875q0.859375 0 1.578125 0.3125q0.71875 0.3125 1.078125 0.796875q0.359375 0.484375 0.5 1.09375q0.15625 0.609375 0.15625 1.75l0 6.125zm1.2866211 -9.859375l1.453125 0l0 -0.734375q0 -1.25 0.265625 -1.859375q0.265625 -0.609375 0.96875 -0.984375q0.71875 -0.390625 1.796875 -0.390625q1.109375 0 2.1875 0.328125l-0.359375 1.8125q-0.625 -0.140625 -1.203125 -0.140625q-0.5625 0 -0.8125 0.265625q-0.234375 0.265625 -0.234375 1.015625l0 0.6875l1.9375 0l0 2.0625l-1.9375 0l0 7.796875l-2.609375 0l0 -7.796875l-1.453125 0l0 -2.0625zm7.3533325 -1.328125l0 -2.40625l2.609375 0l0 2.40625l-2.609375 0zm0 11.1875l0 -9.859375l2.609375 0l0 9.859375l-2.609375 0zm4.9489136 0.65625l2.96875 0.359375q0.078125 0.515625 0.34375 0.703125q0.375 0.28125 1.171875 0.28125q1.03125 0 1.53125 -0.296875q0.34375 -0.203125 0.515625 -0.65625q0.125 -0.328125 0.125 -1.203125l0 -1.4375q-1.171875 1.59375 -2.953125 1.59375q-1.984375 0 -3.140625 -1.671875q-0.90625 -1.328125 -0.90625 -3.3125q0 -2.46875 1.1875 -3.78125q1.1875 -1.3125 2.96875 -1.3125q1.828125 0 3.015625 1.609375l0 -1.390625l2.4375 0l0 8.84375q0 1.75 -0.296875 2.609375q-0.28125 0.859375 -0.796875 1.34375q-0.515625 0.5 -1.390625 0.78125q-0.859375 0.28125 -2.1875 0.28125q-2.515625 0 -3.5625 -0.859375q-1.046875 -0.859375 -1.046875 -2.171875q0 -0.140625 0.015625 -0.3125zm2.328125 -5.78125q0 1.5625 0.609375 2.296875q0.609375 0.71875 1.5 0.71875q0.953125 0 1.609375 -0.734375q0.65625 -0.75 0.65625 -2.21875q0 -1.53125 -0.640625 -2.265625q-0.625 -0.75 -1.578125 -0.75q-0.9375 0 -1.546875 0.734375q-0.609375 0.71875 -0.609375 2.21875zm15.786621 5.125l0 -1.46875q-0.53125 0.78125 -1.40625 1.234375q-0.875 0.453125 -1.859375 0.453125q-0.984375 0 -1.78125 -0.4375q-0.78125 -0.4375 -1.140625 -1.21875q-0.34375 -0.796875 -0.34375 -2.1875l0 -6.234375l2.609375 0l0 4.53125q0 2.078125 0.140625 2.546875q0.140625 0.46875 0.515625 0.75q0.390625 0.265625 0.96875 0.265625q0.671875 0 1.203125 -0.359375q0.53125 -0.375 0.71875 -0.90625q0.1875 -0.546875 0.1875 -2.671875l0 -4.15625l2.609375 0l0 9.859375l-2.421875 0zm7.411621 0l-2.609375 0l0 -9.859375l2.421875 0l0 1.40625q0.625 -0.984375 1.109375 -1.296875q0.5 -0.328125 1.140625 -0.328125q0.890625 0 1.71875 0.5l-0.8125 2.265625q-0.65625 -0.421875 -1.21875 -0.421875q-0.546875 0 -0.9375 0.296875q-0.375 0.296875 -0.59375 1.09375q-0.21875 0.78125 -0.21875 3.296875l0 3.046875zm6.713379 -6.84375l-2.359375 -0.4375q0.390625 -1.421875 1.359375 -2.109375q0.984375 -0.6875 2.90625 -0.6875q1.734375 0 2.59375 0.421875q0.859375 0.40625 1.203125 1.046875q0.34375 0.625 0.34375 2.328125l-0.03125 3.046875q0 1.296875 0.125 1.921875q0.125 0.609375 0.46875 1.3125l-2.578125 0q-0.09375 -0.265625 -0.25 -0.765625q-0.0625 -0.234375 -0.09375 -0.3125q-0.65625 0.65625 -1.421875 0.984375q-0.765625 0.3125 -1.625 0.3125q-1.515625 0 -2.40625 -0.8125q-0.875 -0.828125 -0.875 -2.09375q0 -0.84375 0.390625 -1.484375q0.40625 -0.65625 1.125 -1.0q0.71875 -0.359375 2.078125 -0.625q1.828125 -0.328125 2.53125 -0.625l0 -0.265625q0 -0.75 -0.375 -1.0625q-0.359375 -0.328125 -1.390625 -0.328125q-0.703125 0 -1.09375 0.28125q-0.390625 0.265625 -0.625 0.953125zm3.484375 2.109375q-0.5 0.171875 -1.59375 0.40625q-1.078125 0.234375 -1.40625 0.453125q-0.515625 0.359375 -0.515625 0.921875q0 0.546875 0.40625 0.953125q0.40625 0.390625 1.046875 0.390625q0.703125 0 1.34375 -0.46875q0.46875 -0.359375 0.625 -0.859375q0.09375 -0.34375 0.09375 -1.28125l0 -0.515625zm9.453857 -5.125l0 2.078125l-1.78125 0l0 3.984375q0 1.203125 0.046875 1.40625q0.0625 0.1875 0.234375 0.328125q0.1875 0.125 0.453125 0.125q0.359375 0 1.046875 -0.25l0.21875 2.015625q-0.90625 0.390625 -2.0625 0.390625q-0.703125 0 -1.265625 -0.234375q-0.5625 -0.234375 -0.828125 -0.609375q-0.265625 -0.375 -0.375 -1.015625q-0.078125 -0.453125 -0.078125 -1.84375l0 -4.296875l-1.203125 0l0 -2.078125l1.203125 0l0 -1.953125l2.609375 -1.515625l0 3.46875l1.78125 0zm1.6970215 -1.328125l0 -2.40625l2.609375 0l0 2.40625l-2.609375 0zm0 11.1875l0 -9.859375l2.609375 0l0 9.859375l-2.609375 0zm4.5895386 -5.0625q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25zm18.286621 4.921875l-2.609375 0l0 -5.03125q0 -1.59375 -0.171875 -2.0625q-0.15625 -0.46875 -0.53125 -0.71875q-0.375 -0.265625 -0.90625 -0.265625q-0.6875 0 -1.234375 0.375q-0.53125 0.359375 -0.734375 0.984375q-0.1875 0.609375 -0.1875 2.25l0 4.46875l-2.609375 0l0 -9.859375l2.421875 0l0 1.453125q1.296875 -1.671875 3.25 -1.671875q0.859375 0 1.578125 0.3125q0.71875 0.3125 1.078125 0.796875q0.359375 0.484375 0.5 1.09375q0.15625 0.609375 0.15625 1.75l0 6.125z" fill-rule="nonzero"></path><path fill="#ffd966" d="m576.25854 446.05927l0 0c0 -6.1375732 4.975464 -11.113068 11.113098 -11.113068l112.576965 0c2.9473877 0 5.773987 1.1708374 7.8581543 3.2549438c2.0841064 2.0841064 3.2549438 4.9107666 3.2549438 7.858124l0 44.45102c0 6.1375732 -4.975525 11.113068 -11.113098 11.113068l-112.576965 0c-6.1376343 0 -11.113098 -4.9754944 -11.113098 -11.113068z" fill-rule="nonzero"></path><path stroke="#7f6000" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m576.25854 446.05927l0 0c0 -6.1375732 4.975464 -11.113068 11.113098 -11.113068l112.576965 0c2.9473877 0 5.773987 1.1708374 7.8581543 3.2549438c2.0841064 2.0841064 3.2549438 4.9107666 3.2549438 7.858124l0 44.45102c0 6.1375732 -4.975525 11.113068 -11.113098 11.113068l-112.576965 0c-6.1376343 0 -11.113098 -4.9754944 -11.113098 -11.113068z" fill-rule="nonzero"></path><path fill="#000000" d="m624.932 470.20477l0 -2.296875l5.921875 0l0 5.421875q-0.859375 0.828125 -2.5 1.46875q-1.640625 0.640625 -3.3125 0.640625q-2.140625 0 -3.734375 -0.890625q-1.578125 -0.90625 -2.375 -2.5625q-0.796875 -1.671875 -0.796875 -3.625q0 -2.125 0.890625 -3.78125q0.890625 -1.65625 2.609375 -2.53125q1.3125 -0.671875 3.25 -0.671875q2.546875 0 3.96875 1.0625q1.421875 1.0625 1.828125 2.9375l-2.734375 0.5q-0.28125 -1.0 -1.078125 -1.578125q-0.796875 -0.578125 -1.984375 -0.578125q-1.796875 0 -2.859375 1.140625q-1.0625 1.140625 -1.0625 3.390625q0 2.421875 1.078125 3.640625q1.078125 1.203125 2.828125 1.203125q0.859375 0 1.71875 -0.34375q0.875 -0.34375 1.5 -0.828125l0 -1.71875l-3.15625 0zm8.167725 -6.1875l0 -2.40625l2.609375 0l0 2.40625l-2.609375 0zm0 11.1875l0 -9.859375l2.609375 0l0 9.859375l-2.609375 0zm9.698914 -9.859375l0 2.078125l-1.78125 0l0 3.984375q0 1.203125 0.046875 1.40625q0.0625 0.1875 0.234375 0.328125q0.1875 0.125 0.453125 0.125q0.359375 0 1.046875 -0.25l0.21875 2.015625q-0.90625 0.390625 -2.0625 0.390625q-0.703125 0 -1.265625 -0.234375q-0.5625 -0.234375 -0.828125 -0.609375q-0.265625 -0.375 -0.375 -1.015625q-0.078125 -0.453125 -0.078125 -1.84375l0 -4.296875l-1.203125 0l0 -2.078125l1.203125 0l0 -1.953125l2.609375 -1.515625l0 3.46875l1.78125 0zm1.6970215 9.859375l0 -13.59375l2.609375 0l0 13.59375l-2.609375 0zm7.1364136 -6.84375l-2.359375 -0.4375q0.390625 -1.421875 1.359375 -2.109375q0.984375 -0.6875 2.90625 -0.6875q1.734375 0 2.59375 0.421875q0.859375 0.40625 1.203125 1.046875q0.34375 0.625 0.34375 2.328125l-0.03125 3.046875q0 1.296875 0.125 1.921875q0.125 0.609375 0.46875 1.3125l-2.578125 0q-0.09375 -0.265625 -0.25 -0.765625q-0.0625 -0.234375 -0.09375 -0.3125q-0.65625 0.65625 -1.421875 0.984375q-0.765625 0.3125 -1.625 0.3125q-1.515625 0 -2.40625 -0.8125q-0.875 -0.828125 -0.875 -2.09375q0 -0.84375 0.390625 -1.484375q0.40625 -0.65625 1.125 -1.0q0.71875 -0.359375 2.078125 -0.625q1.828125 -0.328125 2.53125 -0.625l0 -0.265625q0 -0.75 -0.375 -1.0625q-0.359375 -0.328125 -1.390625 -0.328125q-0.703125 0 -1.09375 0.28125q-0.390625 0.265625 -0.625 0.953125zm3.484375 2.109375q-0.5 0.171875 -1.59375 0.40625q-1.078125 0.234375 -1.40625 0.453125q-0.515625 0.359375 -0.515625 0.921875q0 0.546875 0.40625 0.953125q0.40625 0.390625 1.046875 0.390625q0.703125 0 1.34375 -0.46875q0.46875 -0.359375 0.625 -0.859375q0.09375 -0.34375 0.09375 -1.28125l0 -0.515625zm4.8288574 4.734375l0 -13.59375l2.609375 0l0 4.890625q1.203125 -1.375 2.859375 -1.375q1.796875 0 2.96875 1.3125q1.1875 1.296875 1.1875 3.734375q0 2.53125 -1.203125 3.890625q-1.203125 1.359375 -2.921875 1.359375q-0.84375 0 -1.671875 -0.421875q-0.8125 -0.421875 -1.40625 -1.25l0 1.453125l-2.421875 0zm2.59375 -5.140625q0 1.53125 0.484375 2.265625q0.671875 1.03125 1.796875 1.03125q0.859375 0 1.46875 -0.734375q0.609375 -0.734375 0.609375 -2.328125q0 -1.6875 -0.609375 -2.421875q-0.609375 -0.75 -1.578125 -0.75q-0.9375 0 -1.5625 0.734375q-0.609375 0.71875 -0.609375 2.203125z" fill-rule="nonzero"></path><path fill="#ffd966" d="m868.8924 355.6997l0 0c0 -6.1376038 4.975464 -11.113098 11.113098 -11.113098l112.576965 0c2.9473877 0 5.774048 1.1708374 7.8581543 3.2549438c2.0841064 2.0841064 3.2549438 4.9107666 3.2549438 7.8581543l0 44.45099c0 6.1375732 -4.975525 11.113098 -11.113098 11.113098l-112.576965 0c-6.1376343 0 -11.113098 -4.975525 -11.113098 -11.113098z" fill-rule="nonzero"></path><path stroke="#7f6000" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m868.8924 355.6997l0 0c0 -6.1376038 4.975464 -11.113098 11.113098 -11.113098l112.576965 0c2.9473877 0 5.774048 1.1708374 7.8581543 3.2549438c2.0841064 2.0841064 3.2549438 4.9107666 3.2549438 7.8581543l0 44.45099c0 6.1375732 -4.975525 11.113098 -11.113098 11.113098l-112.576965 0c-6.1376343 0 -11.113098 -4.975525 -11.113098 -11.113098z" fill-rule="nonzero"></path><path fill="#000000" d="m900.3161 384.84518l0 -13.59375l4.109375 0l2.46875 9.265625l2.4375 -9.265625l4.125 0l0 13.59375l-2.546875 0l0 -10.703125l-2.703125 10.703125l-2.640625 0l-2.703125 -10.703125l0 10.703125l-2.546875 0zm17.509583 -6.84375l-2.359375 -0.4375q0.390625 -1.421875 1.359375 -2.109375q0.984375 -0.6875 2.90625 -0.6875q1.734375 0 2.59375 0.421875q0.859375 0.40625 1.203125 1.046875q0.34375 0.625 0.34375 2.328125l-0.03125 3.046875q0 1.296875 0.125 1.921875q0.125 0.609375 0.46875 1.3125l-2.578125 0q-0.09375 -0.265625 -0.25 -0.765625q-0.0625 -0.234375 -0.09375 -0.3125q-0.65625 0.65625 -1.421875 0.984375q-0.765625 0.3125 -1.625 0.3125q-1.515625 0 -2.40625 -0.8125q-0.875 -0.828125 -0.875 -2.09375q0 -0.84375 0.390625 -1.484375q0.40625 -0.65625 1.125 -1.0q0.71875 -0.359375 2.078125 -0.625q1.828125 -0.328125 2.53125 -0.625l0 -0.265625q0 -0.75 -0.375 -1.0625q-0.359375 -0.328125 -1.390625 -0.328125q-0.703125 0 -1.09375 0.28125q-0.390625 0.265625 -0.625 0.953125zm3.484375 2.109375q-0.5 0.171875 -1.59375 0.40625q-1.078125 0.234375 -1.40625 0.453125q-0.515625 0.359375 -0.515625 0.921875q0 0.546875 0.40625 0.953125q0.40625 0.390625 1.046875 0.390625q0.703125 0 1.34375 -0.46875q0.46875 -0.359375 0.625 -0.859375q0.09375 -0.34375 0.09375 -1.28125l0 -0.515625zm4.9381714 -6.453125l0 -2.40625l2.609375 0l0 2.40625l-2.609375 0zm0 11.1875l0 -9.859375l2.609375 0l0 9.859375l-2.609375 0zm5.1833496 0l0 -13.59375l2.609375 0l0 13.59375l-2.609375 0zm4.9957886 -9.859375l2.40625 0l0 1.359375q1.28125 -1.578125 3.0625 -1.578125q0.953125 0 1.640625 0.390625q0.703125 0.390625 1.140625 1.1875q0.65625 -0.796875 1.40625 -1.1875q0.75 -0.390625 1.609375 -0.390625q1.078125 0 1.828125 0.453125q0.75 0.4375 1.125 1.28125q0.265625 0.640625 0.265625 2.046875l0 6.296875l-2.609375 0l0 -5.625q0 -1.46875 -0.265625 -1.90625q-0.359375 -0.546875 -1.109375 -0.546875q-0.546875 0 -1.03125 0.34375q-0.484375 0.328125 -0.703125 0.96875q-0.203125 0.640625 -0.203125 2.03125l0 4.734375l-2.609375 0l0 -5.40625q0 -1.4375 -0.140625 -1.84375q-0.140625 -0.421875 -0.4375 -0.625q-0.28125 -0.203125 -0.78125 -0.203125q-0.609375 0 -1.09375 0.328125q-0.484375 0.3125 -0.6875 0.9375q-0.203125 0.609375 -0.203125 2.03125l0 4.78125l-2.609375 0l0 -9.859375zm18.729004 3.015625l-2.359375 -0.4375q0.390625 -1.421875 1.359375 -2.109375q0.984375 -0.6875 2.90625 -0.6875q1.734375 0 2.59375 0.421875q0.859375 0.40625 1.203125 1.046875q0.34375 0.625 0.34375 2.328125l-0.03125 3.046875q0 1.296875 0.125 1.921875q0.125 0.609375 0.46875 1.3125l-2.578125 0q-0.09375 -0.265625 -0.25 -0.765625q-0.0625 -0.234375 -0.09375 -0.3125q-0.65625 0.65625 -1.421875 0.984375q-0.765625 0.3125 -1.625 0.3125q-1.515625 0 -2.40625 -0.8125q-0.875 -0.828125 -0.875 -2.09375q0 -0.84375 0.390625 -1.484375q0.40625 -0.65625 1.125 -1.0q0.71875 -0.359375 2.078125 -0.625q1.828125 -0.328125 2.53125 -0.625l0 -0.265625q0 -0.75 -0.375 -1.0625q-0.359375 -0.328125 -1.390625 -0.328125q-0.703125 0 -1.09375 0.28125q-0.390625 0.265625 -0.625 0.953125zm3.484375 2.109375q-0.5 0.171875 -1.59375 0.40625q-1.078125 0.234375 -1.40625 0.453125q-0.515625 0.359375 -0.515625 0.921875q0 0.546875 0.40625 0.953125q0.40625 0.390625 1.046875 0.390625q0.703125 0 1.34375 -0.46875q0.46875 -0.359375 0.625 -0.859375q0.09375 -0.34375 0.09375 -1.28125l0 -0.515625zm13.906982 4.734375l-2.609375 0l0 -5.03125q0 -1.59375 -0.171875 -2.0625q-0.15625 -0.46875 -0.53125 -0.71875q-0.375 -0.265625 -0.90625 -0.265625q-0.6875 0 -1.234375 0.375q-0.53125 0.359375 -0.734375 0.984375q-0.1875 0.609375 -0.1875 2.25l0 4.46875l-2.609375 0l0 -9.859375l2.421875 0l0 1.453125q1.296875 -1.671875 3.25 -1.671875q0.859375 0 1.578125 0.3125q0.71875 0.3125 1.078125 0.796875q0.359375 0.484375 0.5 1.09375q0.15625 0.609375 0.15625 1.75l0 6.125z" fill-rule="nonzero"></path><path fill="#ffd966" d="m868.8924 289.05402l0 0c0 -6.1375732 4.975464 -11.113068 11.113098 -11.113068l112.576965 0c2.9473877 0 5.774048 1.1708374 7.8581543 3.2549438c2.0841064 2.0841064 3.2549438 4.9107666 3.2549438 7.858124l0 44.45102c0 6.1375732 -4.975525 11.113068 -11.113098 11.113068l-112.576965 0c-6.1376343 0 -11.113098 -4.9754944 -11.113098 -11.113068z" fill-rule="nonzero"></path><path stroke="#7f6000" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m868.8924 289.05402l0 0c0 -6.1375732 4.975464 -11.113068 11.113098 -11.113068l112.576965 0c2.9473877 0 5.774048 1.1708374 7.8581543 3.2549438c2.0841064 2.0841064 3.2549438 4.9107666 3.2549438 7.858124l0 44.45102c0 6.1375732 -4.975525 11.113068 -11.113098 11.113068l-112.576965 0c-6.1376343 0 -11.113098 -4.9754944 -11.113098 -11.113068z" fill-rule="nonzero"></path><path fill="#000000" d="m900.3161 307.19952l0 -13.59375l4.109375 0l2.46875 9.265625l2.4375 -9.265625l4.125 0l0 13.59375l-2.546875 0l0 -10.703125l-2.703125 10.703125l-2.640625 0l-2.703125 -10.703125l0 10.703125l-2.546875 0zm17.509583 -6.84375l-2.359375 -0.4375q0.390625 -1.421875 1.359375 -2.109375q0.984375 -0.6875 2.90625 -0.6875q1.734375 0 2.59375 0.421875q0.859375 0.40625 1.203125 1.046875q0.34375 0.625 0.34375 2.328125l-0.03125 3.046875q0 1.296875 0.125 1.921875q0.125 0.609375 0.46875 1.3125l-2.578125 0q-0.09375 -0.265625 -0.25 -0.765625q-0.0625 -0.234375 -0.09375 -0.3125q-0.65625 0.65625 -1.421875 0.984375q-0.765625 0.3125 -1.625 0.3125q-1.515625 0 -2.40625 -0.8125q-0.875 -0.828125 -0.875 -2.09375q0 -0.84375 0.390625 -1.484375q0.40625 -0.65625 1.125 -1.0q0.71875 -0.359375 2.078125 -0.625q1.828125 -0.328125 2.53125 -0.625l0 -0.265625q0 -0.75 -0.375 -1.0625q-0.359375 -0.328125 -1.390625 -0.328125q-0.703125 0 -1.09375 0.28125q-0.390625 0.265625 -0.625 0.953125zm3.484375 2.109375q-0.5 0.171875 -1.59375 0.40625q-1.078125 0.234375 -1.40625 0.453125q-0.515625 0.359375 -0.515625 0.921875q0 0.546875 0.40625 0.953125q0.40625 0.390625 1.046875 0.390625q0.703125 0 1.34375 -0.46875q0.46875 -0.359375 0.625 -0.859375q0.09375 -0.34375 0.09375 -1.28125l0 -0.515625zm4.9381714 -6.453125l0 -2.40625l2.609375 0l0 2.40625l-2.609375 0zm0 11.1875l0 -9.859375l2.609375 0l0 9.859375l-2.609375 0zm5.1833496 0l0 -13.59375l2.609375 0l0 13.59375l-2.609375 0zm4.9957886 -9.859375l2.40625 0l0 1.359375q1.28125 -1.578125 3.0625 -1.578125q0.953125 0 1.640625 0.390625q0.703125 0.390625 1.140625 1.1875q0.65625 -0.796875 1.40625 -1.1875q0.75 -0.390625 1.609375 -0.390625q1.078125 0 1.828125 0.453125q0.75 0.4375 1.125 1.28125q0.265625 0.640625 0.265625 2.046875l0 6.296875l-2.609375 0l0 -5.625q0 -1.46875 -0.265625 -1.90625q-0.359375 -0.546875 -1.109375 -0.546875q-0.546875 0 -1.03125 0.34375q-0.484375 0.328125 -0.703125 0.96875q-0.203125 0.640625 -0.203125 2.03125l0 4.734375l-2.609375 0l0 -5.40625q0 -1.4375 -0.140625 -1.84375q-0.140625 -0.421875 -0.4375 -0.625q-0.28125 -0.203125 -0.78125 -0.203125q-0.609375 0 -1.09375 0.328125q-0.484375 0.3125 -0.6875 0.9375q-0.203125 0.609375 -0.203125 2.03125l0 4.78125l-2.609375 0l0 -9.859375zm18.729004 3.015625l-2.359375 -0.4375q0.390625 -1.421875 1.359375 -2.109375q0.984375 -0.6875 2.90625 -0.6875q1.734375 0 2.59375 0.421875q0.859375 0.40625 1.203125 1.046875q0.34375 0.625 0.34375 2.328125l-0.03125 3.046875q0 1.296875 0.125 1.921875q0.125 0.609375 0.46875 1.3125l-2.578125 0q-0.09375 -0.265625 -0.25 -0.765625q-0.0625 -0.234375 -0.09375 -0.3125q-0.65625 0.65625 -1.421875 0.984375q-0.765625 0.3125 -1.625 0.3125q-1.515625 0 -2.40625 -0.8125q-0.875 -0.828125 -0.875 -2.09375q0 -0.84375 0.390625 -1.484375q0.40625 -0.65625 1.125 -1.0q0.71875 -0.359375 2.078125 -0.625q1.828125 -0.328125 2.53125 -0.625l0 -0.265625q0 -0.75 -0.375 -1.0625q-0.359375 -0.328125 -1.390625 -0.328125q-0.703125 0 -1.09375 0.28125q-0.390625 0.265625 -0.625 0.953125zm3.484375 2.109375q-0.5 0.171875 -1.59375 0.40625q-1.078125 0.234375 -1.40625 0.453125q-0.515625 0.359375 -0.515625 0.921875q0 0.546875 0.40625 0.953125q0.40625 0.390625 1.046875 0.390625q0.703125 0 1.34375 -0.46875q0.46875 -0.359375 0.625 -0.859375q0.09375 -0.34375 0.09375 -1.28125l0 -0.515625zm13.906982 4.734375l-2.609375 0l0 -5.03125q0 -1.59375 -0.171875 -2.0625q-0.15625 -0.46875 -0.53125 -0.71875q-0.375 -0.265625 -0.90625 -0.265625q-0.6875 0 -1.234375 0.375q-0.53125 0.359375 -0.734375 0.984375q-0.1875 0.609375 -0.1875 2.25l0 4.46875l-2.609375 0l0 -9.859375l2.421875 0l0 1.453125q1.296875 -1.671875 3.25 -1.671875q0.859375 0 1.578125 0.3125q0.71875 0.3125 1.078125 0.796875q0.359375 0.484375 0.5 1.09375q0.15625 0.609375 0.15625 1.75l0 6.125z" fill-rule="nonzero"></path><path fill="#000000" d="m934.3847 329.19952l-2.984375 0l-1.1875 -3.09375l-5.4375 0l-1.125 3.09375l-2.90625 0l5.296875 -13.59375l2.90625 0l5.4375 13.59375zm-5.046875 -5.375l-1.875 -5.046875l-1.84375 5.046875l3.71875 0zm6.2541504 5.375l0 -13.59375l4.421875 0q2.5 0 3.265625 0.203125q1.15625 0.296875 1.9375 1.328125q0.796875 1.015625 0.796875 2.640625q0 1.25 -0.453125 2.109375q-0.453125 0.859375 -1.15625 1.34375q-0.703125 0.484375 -1.421875 0.640625q-0.984375 0.203125 -2.84375 0.203125l-1.796875 0l0 5.125l-2.75 0zm2.75 -11.296875l0 3.859375l1.5 0q1.625 0 2.171875 -0.21875q0.546875 -0.21875 0.859375 -0.671875q0.3125 -0.453125 0.3125 -1.046875q0 -0.75 -0.4375 -1.234375q-0.4375 -0.484375 -1.09375 -0.59375q-0.5 -0.09375 -1.984375 -0.09375l-1.328125 0zm9.6154785 11.296875l0 -13.59375l2.75 0l0 13.59375l-2.75 0z" fill-rule="nonzero"></path><path fill="#ffd966" d="m177.03412 284.87424l0 0c0 -6.1375732 4.9754944 -11.113068 11.113083 -11.113068l112.57698 0c2.9473877 0 5.774048 1.1708374 7.8581543 3.2549438c2.0841064 2.0841064 3.2549438 4.9107666 3.2549438 7.858124l0 44.45099c0 6.1376038 -4.9754944 11.113098 -11.113098 11.113098l-112.57698 0c-6.1375885 0 -11.113083 -4.9754944 -11.113083 -11.113098z" fill-rule="nonzero"></path><path stroke="#7f6000" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m177.03412 284.87424l0 0c0 -6.1375732 4.9754944 -11.113068 11.113083 -11.113068l112.57698 0c2.9473877 0 5.774048 1.1708374 7.8581543 3.2549438c2.0841064 2.0841064 3.2549438 4.9107666 3.2549438 7.858124l0 44.45099c0 6.1376038 -4.9754944 11.113098 -11.113098 11.113098l-112.57698 0c-6.1375885 0 -11.113083 -4.9754944 -11.113083 -11.113098z" fill-rule="nonzero"></path><path fill="#000000" d="m204.8993 314.01974l0 -13.59375l2.671875 0l5.578125 9.078125l0 -9.078125l2.546875 0l0 13.59375l-2.765625 0l-5.46875 -8.875l0 8.875l-2.5625 0zm12.832321 -5.0625q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25zm8.724106 -0.140625q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25zm8.411606 2.109375l2.609375 -0.390625q0.171875 0.75 0.671875 1.15625q0.515625 0.390625 1.4375 0.390625q1.0 0 1.515625 -0.375q0.34375 -0.265625 0.34375 -0.703125q0 -0.296875 -0.1875 -0.484375q-0.1875 -0.1875 -0.875 -0.34375q-3.140625 -0.703125 -4.0 -1.265625q-1.15625 -0.796875 -1.15625 -2.21875q0 -1.28125 1.0 -2.15625q1.015625 -0.875 3.140625 -0.875q2.03125 0 3.0 0.65625q0.984375 0.65625 1.359375 1.953125l-2.453125 0.453125q-0.15625 -0.578125 -0.609375 -0.875q-0.4375 -0.3125 -1.25 -0.3125q-1.03125 0 -1.46875 0.296875q-0.296875 0.203125 -0.296875 0.515625q0 0.28125 0.25 0.484375q0.359375 0.25 2.4375 0.734375q2.078125 0.46875 2.90625 1.15625q0.828125 0.6875 0.828125 1.9375q0 1.359375 -1.140625 2.328125q-1.125 0.96875 -3.34375 0.96875q-2.015625 0 -3.1875 -0.8125q-1.171875 -0.8125 -1.53125 -2.21875zm10.141342 -7.046875l1.453125 0l0 -0.734375q0 -1.25 0.265625 -1.859375q0.265625 -0.609375 0.96875 -0.984375q0.71875 -0.390625 1.796875 -0.390625q1.109375 0 2.1874847 0.328125l-0.359375 1.8125q-0.625 -0.140625 -1.2031097 -0.140625q-0.5625 0 -0.8125 0.265625q-0.234375 0.265625 -0.234375 1.015625l0 0.6875l1.9374847 0l0 2.0625l-1.9374847 0l0 7.796875l-2.609375 0l0 -7.796875l-1.453125 0l0 -2.0625zm13.056412 6.71875l2.609375 0.4375q-0.5 1.4375 -1.59375 2.1875q-1.078125 0.734375 -2.703125 0.734375q-2.5625 0 -3.796875 -1.671875q-0.96875 -1.34375 -0.96875 -3.40625q0 -2.4375 1.265625 -3.828125q1.28125 -1.390625 3.25 -1.390625q2.1875 0 3.453125 1.453125q1.28125 1.453125 1.234375 4.453125l-6.53125 0q0.015625 1.15625 0.625 1.8125q0.609375 0.640625 1.5 0.640625q0.609375 0 1.03125 -0.328125q0.421875 -0.34375 0.625 -1.09375zm0.15625 -2.625q-0.03125 -1.140625 -0.59375 -1.71875q-0.546875 -0.59375 -1.34375 -0.59375q-0.859375 0 -1.40625 0.625q-0.5625 0.609375 -0.546875 1.6875l3.890625 0zm7.0163574 5.765625l-2.609375 0l0 -9.859375l2.421875 0l0 1.40625q0.625 -0.984375 1.109375 -1.296875q0.5 -0.328125 1.140625 -0.328125q0.890625 0 1.71875 0.5l-0.8125 2.265625q-0.65625 -0.421875 -1.21875 -0.421875q-0.546875 0 -0.9375 0.296875q-0.375 0.296875 -0.59375 1.09375q-0.21875 0.78125 -0.21875 3.296875l0 3.046875zm4.166504 -5.0625q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25z" fill-rule="nonzero"></path><path fill="#ffd966" d="m72.19685 548.60913l0 0c0 -6.1375732 4.9754944 -11.113098 11.113083 -11.113098l112.57698 0c2.9473724 0 5.7740326 1.1708984 7.858139 3.255005c2.0841064 2.0841064 3.2549438 4.9107056 3.2549438 7.8580933l0 44.45099c0 6.1376343 -4.9754944 11.113098 -11.113083 11.113098l-112.57698 0c-6.1375885 0 -11.113083 -4.975464 -11.113083 -11.113098z" fill-rule="nonzero"></path><path stroke="#7f6000" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m72.19685 548.60913l0 0c0 -6.1375732 4.9754944 -11.113098 11.113083 -11.113098l112.57698 0c2.9473724 0 5.7740326 1.1708984 7.858139 3.255005c2.0841064 2.0841064 3.2549438 4.9107056 3.2549438 7.8580933l0 44.45099c0 6.1376343 -4.9754944 11.113098 -11.113083 11.113098l-112.57698 0c-6.1375885 0 -11.113083 -4.975464 -11.113083 -11.113098z" fill-rule="nonzero"></path><path fill="#000000" d="m87.06798 577.75464l0 -13.59375l4.421875 0q2.5 0 3.265625 0.203125q1.15625 0.296875 1.9375 1.328125q0.796875 1.015625 0.796875 2.640625q0 1.25 -0.453125 2.109375q-0.453125 0.859375 -1.15625 1.34375q-0.703125 0.484375 -1.421875 0.640625q-0.984375 0.203125 -2.84375 0.203125l-1.796875 0l0 5.125l-2.75 0zm2.75 -11.296875l0 3.859375l1.5 0q1.625 0 2.171875 -0.21875q0.546875 -0.21875 0.859375 -0.671875q0.3125 -0.453125 0.3125 -1.046875q0 -0.75 -0.4375 -1.234375q-0.4375 -0.484375 -1.09375 -0.59375q-0.5 -0.09375 -1.984375 -0.09375l-1.328125 0zm9.084198 6.234375q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25zm8.411606 2.109375l2.609375 -0.390625q0.171875 0.75 0.671875 1.15625q0.515625 0.390625 1.4375 0.390625q1.0 0 1.515625 -0.375q0.34375 -0.265625 0.34375 -0.703125q0 -0.296875 -0.1875 -0.484375q-0.1875 -0.1875 -0.875 -0.34375q-3.140625 -0.703125 -4.0 -1.265625q-1.15625 -0.796875 -1.15625 -2.21875q0 -1.28125 1.0 -2.15625q1.015625 -0.875 3.140625 -0.875q2.03125 0 3.0 0.65625q0.984375 0.65625 1.359375 1.953125l-2.453125 0.453125q-0.15625 -0.578125 -0.609375 -0.875q-0.4375 -0.3125 -1.25 -0.3125q-1.03125 0 -1.46875 0.296875q-0.296875 0.203125 -0.296875 0.515625q0 0.28125 0.25 0.484375q0.359375 0.25 2.4375 0.734375q2.078125 0.46875 2.90625 1.15625q0.828125 0.6875 0.828125 1.9375q0 1.359375 -1.140625 2.328125q-1.125 0.96875 -3.34375 0.96875q-2.015625 0 -3.1875 -0.8125q-1.171875 -0.8125 -1.53125 -2.21875zm15.797592 -7.046875l0 2.078125l-1.78125 0l0 3.984375q0 1.203125 0.046875 1.40625q0.0625 0.1875 0.234375 0.328125q0.1875 0.125 0.453125 0.125q0.359375 0 1.046875 -0.25l0.21875 2.015625q-0.90625 0.390625 -2.0625 0.390625q-0.703125 0 -1.265625 -0.234375q-0.5625 -0.234375 -0.828125 -0.609375q-0.265625 -0.375 -0.375 -1.015625q-0.078125 -0.453125 -0.078125 -1.84375l0 -4.296875l-1.203125 0l0 -2.078125l1.203125 0l0 -1.953125l2.609375 -1.515625l0 3.46875l1.78125 0zm1.462677 10.515625l2.96875 0.359375q0.078125 0.515625 0.34375 0.703125q0.375 0.28125 1.171875 0.28125q1.03125 0 1.53125 -0.296875q0.34375 -0.203125 0.515625 -0.65625q0.125 -0.328125 0.125 -1.203125l0 -1.4375q-1.171875 1.59375 -2.953125 1.59375q-1.984375 0 -3.140625 -1.671875q-0.90625 -1.328125 -0.90625 -3.3125q0 -2.46875 1.1875 -3.78125q1.1875 -1.3125 2.96875 -1.3125q1.828125 0 3.015625 1.609375l0 -1.390625l2.4375 0l0 8.84375q0 1.75 -0.296875 2.609375q-0.28125 0.859375 -0.796875 1.34375q-0.515625 0.5 -1.390625 0.78125q-0.859375 0.28125 -2.1875 0.28125q-2.515625 0 -3.5625 -0.859375q-1.046875 -0.859375 -1.046875 -2.171875q0 -0.140625 0.015625 -0.3125zm2.328125 -5.78125q0 1.5625 0.609375 2.296875q0.609375 0.71875 1.5 0.71875q0.953125 0 1.609375 -0.734375q0.65625 -0.75 0.65625 -2.21875q0 -1.53125 -0.640625 -2.265625q-0.625 -0.75 -1.578125 -0.75q-0.9375 0 -1.546875 0.734375q-0.609375 0.71875 -0.609375 2.21875zm11.802231 5.125l-2.609375 0l0 -9.859375l2.421875 0l0 1.40625q0.625 -0.984375 1.109375 -1.296875q0.5 -0.328125 1.140625 -0.328125q0.890625 0 1.71875 0.5l-0.8125 2.265625q-0.65625 -0.421875 -1.21875 -0.421875q-0.546875 0 -0.9375 0.296875q-0.375 0.296875 -0.59375 1.09375q-0.21875 0.78125 -0.21875 3.296875l0 3.046875zm10.463394 -3.140625l2.609375 0.4375q-0.5 1.4375 -1.59375 2.1875q-1.078125 0.734375 -2.703125 0.734375q-2.5625 0 -3.796875 -1.671875q-0.96875 -1.34375 -0.96875 -3.40625q0 -2.4375 1.265625 -3.828125q1.28125 -1.390625 3.25 -1.390625q2.1875 0 3.453125 1.453125q1.28125 1.453125 1.234375 4.453125l-6.53125 0q0.015625 1.15625 0.625 1.8125q0.609375 0.640625 1.5 0.640625q0.609375 0 1.03125 -0.328125q0.421875 -0.34375 0.625 -1.09375zm0.15625 -2.625q-0.03125 -1.140625 -0.59375 -1.71875q-0.546875 -0.59375 -1.34375 -0.59375q-0.859375 0 -1.40625 0.625q-0.5625 0.609375 -0.546875 1.6875l3.890625 0zm3.8444672 1.34375l2.671875 -0.265625q0.234375 1.34375 0.96875 1.984375q0.75 0.625 2.0 0.625q1.328125 0 2.0 -0.5625q0.671875 -0.5625 0.671875 -1.3125q0 -0.484375 -0.28125 -0.8125q-0.28125 -0.34375 -0.984375 -0.59375q-0.484375 -0.171875 -2.203125 -0.59375q-2.203125 -0.546875 -3.09375 -1.34375q-1.265625 -1.125 -1.265625 -2.734375q0 -1.046875 0.59375 -1.953125q0.59375 -0.90625 1.703125 -1.375q1.109375 -0.46875 2.671875 -0.46875q2.5625 0 3.859375 1.125q1.296875 1.109375 1.359375 2.984375l-2.75 0.125q-0.171875 -1.046875 -0.75 -1.5q-0.578125 -0.46875 -1.75 -0.46875q-1.1875 0 -1.875 0.5q-0.4375 0.3125 -0.4375 0.84375q0 0.484375 0.421875 0.828125q0.515625 0.421875 2.515625 0.90625q2.0 0.46875 2.953125 0.984375q0.96875 0.5 1.515625 1.375q0.546875 0.875 0.546875 2.15625q0 1.171875 -0.65625 2.203125q-0.640625 1.015625 -1.828125 1.515625q-1.1875 0.484375 -2.96875 0.484375q-2.578125 0 -3.96875 -1.1875q-1.375 -1.1875 -1.640625 -3.46875zm24.084198 2.703125q1.015625 0.71875 2.203125 1.140625l-1.015625 1.9375q-0.625 -0.1875 -1.21875 -0.5q-0.125 -0.078125 -1.828125 -1.21875q-1.328125 0.59375 -2.953125 0.59375q-3.140625 0 -4.921875 -1.84375q-1.765625 -1.84375 -1.765625 -5.1875q0 -3.328125 1.78125 -5.171875q1.78125 -1.859375 4.828125 -1.859375q3.03125 0 4.796875 1.859375q1.78125 1.84375 1.78125 5.171875q0 1.765625 -0.5 3.09375q-0.375 1.015625 -1.1875 1.984375zm-2.203125 -1.5625q0.53125 -0.609375 0.78125 -1.484375q0.265625 -0.890625 0.265625 -2.03125q0 -2.359375 -1.046875 -3.515625q-1.03125 -1.171875 -2.703125 -1.171875q-1.671875 0 -2.71875 1.171875q-1.046875 1.171875 -1.046875 3.515625q0 2.375 1.046875 3.5625q1.046875 1.1875 2.640625 1.1875q0.59375 0 1.125 -0.203125q-0.84375 -0.546875 -1.703125 -0.84375l0.765625 -1.578125q1.359375 0.46875 2.59375 1.390625zm5.839554 3.28125l0 -13.484375l2.75 0l0 11.1875l6.828125 0l0 2.296875l-9.578125 0z" fill-rule="nonzero"></path><path fill="#ffd966" d="m223.03412 549.8769l0 0c0 -6.1376343 4.9754944 -11.113098 11.113083 -11.113098l112.57698 0c2.9473877 0 5.774048 1.1708374 7.8581543 3.2549438c2.0841064 2.0841064 3.2549438 4.9107666 3.2549438 7.8581543l0 44.45099c0 6.1375732 -4.9754944 11.113037 -11.113098 11.113037l-112.57698 0c-6.1375885 0 -11.113083 -4.975464 -11.113083 -11.113037z" fill-rule="nonzero"></path><path stroke="#7f6000" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m223.03412 549.8769l0 0c0 -6.1376343 4.9754944 -11.113098 11.113083 -11.113098l112.57698 0c2.9473877 0 5.774048 1.1708374 7.8581543 3.2549438c2.0841064 2.0841064 3.2549438 4.9107666 3.2549438 7.8581543l0 44.45099c0 6.1375732 -4.9754944 11.113037 -11.113098 11.113037l-112.57698 0c-6.1375885 0 -11.113083 -4.975464 -11.113083 -11.113037z" fill-rule="nonzero"></path><path fill="#000000" d="m266.4245 579.02234l0 -13.59375l5.78125 0q2.1875 0 3.171875 0.359375q0.984375 0.359375 1.578125 1.296875q0.59375 0.9375 0.59375 2.15625q0 1.53125 -0.90625 2.53125q-0.890625 0.984375 -2.6875 1.25q0.890625 0.515625 1.46875 1.140625q0.578125 0.625 1.5625 2.203125l1.671875 2.65625l-3.296875 0l-1.984375 -2.953125q-1.046875 -1.59375 -1.4375 -2.0q-0.390625 -0.421875 -0.828125 -0.5625q-0.4375 -0.15625 -1.390625 -0.15625l-0.546875 0l0 5.671875l-2.75 0zm2.75 -7.84375l2.03125 0q1.96875 0 2.453125 -0.171875q0.5 -0.171875 0.78125 -0.578125q0.28125 -0.40625 0.28125 -1.015625q0 -0.6875 -0.375 -1.109375q-0.359375 -0.421875 -1.03125 -0.53125q-0.328125 -0.046875 -2.0 -0.046875l-2.140625 0l0 3.453125zm16.394806 4.703125l2.609375 0.4375q-0.5 1.4375 -1.59375 2.1875q-1.078125 0.734375 -2.703125 0.734375q-2.5625 0 -3.796875 -1.671875q-0.96875 -1.34375 -0.96875 -3.40625q0 -2.4375 1.265625 -3.828125q1.28125 -1.390625 3.25 -1.390625q2.1875 0 3.453125 1.453125q1.28125 1.453125 1.234375 4.453125l-6.53125 0q0.015625 1.15625 0.625 1.8125q0.609375 0.640625 1.5 0.640625q0.609375 0 1.03125 -0.328125q0.421875 -0.34375 0.625 -1.09375zm0.15625 -2.625q-0.03125 -1.140625 -0.59375 -1.71875q-0.546875 -0.59375 -1.34375 -0.59375q-0.859375 0 -1.40625 0.625q-0.5625 0.609375 -0.546875 1.6875l3.890625 0zm13.563202 5.765625l-2.421875 0l0 -1.453125q-0.609375 0.84375 -1.4375 1.265625q-0.8125 0.40625 -1.640625 0.40625q-1.703125 0 -2.921875 -1.359375q-1.2030945 -1.375 -1.2030945 -3.828125q0 -2.5 1.1718445 -3.796875q1.1875 -1.3125 2.984375 -1.3125q1.65625 0 2.859375 1.375l0 -4.890625l2.609375 0l0 13.59375zm-6.96875 -5.140625q0 1.578125 0.4375 2.28125q0.640625 1.015625 1.765625 1.015625q0.90625 0 1.53125 -0.765625q0.625 -0.765625 0.625 -2.28125q0 -1.703125 -0.609375 -2.4375q-0.609375 -0.75 -1.5625 -0.75q-0.9375 0 -1.5625 0.734375q-0.625 0.734375 -0.625 2.203125zm9.317871 -6.046875l0 -2.40625l2.609375 0l0 2.40625l-2.609375 0zm0 11.1875l0 -9.859375l2.609375 0l0 9.859375l-2.609375 0zm4.2770386 -2.8125l2.609375 -0.390625q0.171875 0.75 0.671875 1.15625q0.515625 0.390625 1.4375 0.390625q1.0 0 1.515625 -0.375q0.34375 -0.265625 0.34375 -0.703125q0 -0.296875 -0.1875 -0.484375q-0.1875 -0.1875 -0.875 -0.34375q-3.140625 -0.703125 -4.0 -1.265625q-1.15625 -0.796875 -1.15625 -2.21875q0 -1.28125 1.0 -2.15625q1.015625 -0.875 3.140625 -0.875q2.03125 0 3.0 0.65625q0.984375 0.65625 1.359375 1.953125l-2.453125 0.453125q-0.15625 -0.578125 -0.609375 -0.875q-0.4375 -0.3125 -1.25 -0.3125q-1.03125 0 -1.46875 0.296875q-0.296875 0.203125 -0.296875 0.515625q0 0.28125 0.25 0.484375q0.359375 0.25 2.4375 0.734375q2.078125 0.46875 2.90625 1.15625q0.828125 0.6875 0.828125 1.9375q0 1.359375 -1.140625 2.328125q-1.125 0.96875 -3.34375 0.96875q-2.015625 0 -3.1875 -0.8125q-1.171875 -0.8125 -1.53125 -2.21875z" fill-rule="nonzero"></path><path fill="#efefef" d="m1116.4724 344.58792l364.56702 0l0 381.5118l-364.56702 0z" fill-rule="nonzero"></path><path stroke="#666666" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m1116.4724 344.58792l364.56702 0l0 381.5118l-364.56702 0z" fill-rule="nonzero"></path><path fill="#434343" d="m1396.7814 371.50793l0 -13.484375l2.75 0l0 11.1875l6.828125 0l0 2.296875l-9.578125 0zm17.005371 -3.140625l2.609375 0.4375q-0.5 1.4375 -1.59375 2.1875q-1.078125 0.734375 -2.703125 0.734375q-2.5625 0 -3.796875 -1.671875q-0.96875 -1.34375 -0.96875 -3.40625q0 -2.4375 1.265625 -3.828125q1.28125 -1.390625 3.25 -1.390625q2.1875 0 3.453125 1.453125q1.28125 1.453125 1.234375 4.453125l-6.53125 0q0.015625 1.15625 0.625 1.8125q0.609375 0.640625 1.5 0.640625q0.609375 0 1.03125 -0.328125q0.421875 -0.34375 0.625 -1.09375zm0.15625 -2.625q-0.03125 -1.140625 -0.59375 -1.71875q-0.546875 -0.59375 -1.34375 -0.59375q-0.859375 0 -1.40625 0.625q-0.5625 0.609375 -0.546875 1.6875l3.890625 0zm4.2819824 6.421875l2.96875 0.359375q0.078125 0.515625 0.34375 0.703125q0.375 0.28125 1.171875 0.28125q1.03125 0 1.53125 -0.296875q0.34375 -0.203125 0.515625 -0.65625q0.125 -0.328125 0.125 -1.203125l0 -1.4375q-1.171875 1.59375 -2.953125 1.59375q-1.984375 0 -3.140625 -1.671875q-0.90625 -1.328125 -0.90625 -3.3125q0 -2.46875 1.1875 -3.78125q1.1875 -1.3125 2.96875 -1.3125q1.828125 0 3.015625 1.609375l0 -1.390625l2.4375 0l0 8.84375q0 1.75 -0.296875 2.609375q-0.28125 0.859375 -0.796875 1.34375q-0.515625 0.5 -1.390625 0.78125q-0.859375 0.28125 -2.1875 0.28125q-2.515625 0 -3.5625 -0.859375q-1.046875 -0.859375 -1.046875 -2.171875q0 -0.140625 0.015625 -0.3125zm2.328125 -5.78125q0 1.5625 0.609375 2.296875q0.609375 0.71875 1.5 0.71875q0.953125 0 1.609375 -0.734375q0.65625 -0.75 0.65625 -2.21875q0 -1.53125 -0.640625 -2.265625q-0.625 -0.75 -1.578125 -0.75q-0.9375 0 -1.546875 0.734375q-0.609375 0.71875 -0.609375 2.21875zm15.005371 1.984375l2.609375 0.4375q-0.5 1.4375 -1.59375 2.1875q-1.078125 0.734375 -2.703125 0.734375q-2.5625 0 -3.796875 -1.671875q-0.96875 -1.34375 -0.96875 -3.40625q0 -2.4375 1.265625 -3.828125q1.28125 -1.390625 3.25 -1.390625q2.1875 0 3.453125 1.453125q1.28125 1.453125 1.234375 4.453125l-6.53125 0q0.015625 1.15625 0.625 1.8125q0.609375 0.640625 1.5 0.640625q0.609375 0 1.03125 -0.328125q0.421875 -0.34375 0.625 -1.09375zm0.15625 -2.625q-0.03125 -1.140625 -0.59375 -1.71875q-0.546875 -0.59375 -1.34375 -0.59375q-0.859375 0 -1.40625 0.625q-0.5625 0.609375 -0.546875 1.6875l3.890625 0zm13.485107 5.765625l-2.609375 0l0 -5.03125q0 -1.59375 -0.171875 -2.0625q-0.15625 -0.46875 -0.53125 -0.71875q-0.375 -0.265625 -0.90625 -0.265625q-0.6875 0 -1.234375 0.375q-0.53125 0.359375 -0.734375 0.984375q-0.1875 0.609375 -0.1875 2.25l0 4.46875l-2.609375 0l0 -9.859375l2.421875 0l0 1.453125q1.296875 -1.671875 3.25 -1.671875q0.859375 0 1.578125 0.3125q0.71875 0.3125 1.078125 0.796875q0.359375 0.484375 0.5 1.09375q0.15625 0.609375 0.15625 1.75l0 6.125zm11.474121 0l-2.421875 0l0 -1.453125q-0.609375 0.84375 -1.4375 1.265625q-0.8125 0.40625 -1.640625 0.40625q-1.703125 0 -2.921875 -1.359375q-1.203125 -1.375 -1.203125 -3.828125q0 -2.5 1.171875 -3.796875q1.1875 -1.3125 2.984375 -1.3125q1.65625 0 2.859375 1.375l0 -4.890625l2.609375 0l0 13.59375zm-6.96875 -5.140625q0 1.578125 0.4375 2.28125q0.640625 1.015625 1.765625 1.015625q0.90625 0 1.53125 -0.765625q0.625 -0.765625 0.625 -2.28125q0 -1.703125 -0.609375 -2.4375q-0.609375 -0.75 -1.5625 -0.75q-0.9375 0 -1.5625 0.734375q-0.625 0.734375 -0.625 2.203125zm11.270874 -1.703125l-2.359375 -0.4375q0.390625 -1.421875 1.359375 -2.109375q0.984375 -0.6875 2.90625 -0.6875q1.734375 0 2.59375 0.421875q0.859375 0.40625 1.203125 1.046875q0.34375 0.625 0.34375 2.328125l-0.03125 3.046875q0 1.296875 0.125 1.921875q0.125 0.609375 0.46875 1.3125l-2.578125 0q-0.09375 -0.265625 -0.25 -0.765625q-0.0625 -0.234375 -0.09375 -0.3125q-0.65625 0.65625 -1.421875 0.984375q-0.765625 0.3125 -1.625 0.3125q-1.515625 0 -2.40625 -0.8125q-0.875 -0.828125 -0.875 -2.09375q0 -0.84375 0.390625 -1.484375q0.40625 -0.65625 1.125 -1.0q0.71875 -0.359375 2.078125 -0.625q1.828125 -0.328125 2.53125 -0.625l0 -0.265625q0 -0.75 -0.375 -1.0625q-0.359375 -0.328125 -1.390625 -0.328125q-0.703125 0 -1.09375 0.28125q-0.390625 0.265625 -0.625 0.953125zm3.484375 2.109375q-0.5 0.171875 -1.59375 0.40625q-1.078125 0.234375 -1.40625 0.453125q-0.515625 0.359375 -0.515625 0.921875q0 0.546875 0.40625 0.953125q0.40625 0.390625 1.046875 0.390625q0.703125 0 1.34375 -0.46875q0.46875 -0.359375 0.625 -0.859375q0.09375 -0.34375 0.09375 -1.28125l0 -0.515625z" fill-rule="nonzero"></path><path fill="#cfe2f3" d="m1137.9475 669.8768l0 0c0 -3.4123535 2.7662354 -6.178589 6.178589 -6.178589l138.69788 0c1.6386719 0 3.2103271 0.65093994 4.3690186 1.8096313c1.1586914 1.1587524 1.8096924 2.7302856 1.8096924 4.3689575l0 24.713684c0 3.4122925 -2.7663574 6.178589 -6.178711 6.178589l-138.69788 0c-3.4123535 0 -6.178589 -2.7662964 -6.178589 -6.178589z" fill-rule="nonzero"></path><path stroke="#1155cc" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m1137.9475 669.8768l0 0c0 -3.4123535 2.7662354 -6.178589 6.178589 -6.178589l138.69788 0c1.6386719 0 3.2103271 0.65093994 4.3690186 1.8096313c1.1586914 1.1587524 1.8096924 2.7302856 1.8096924 4.3689575l0 24.713684c0 3.4122925 -2.7663574 6.178589 -6.178711 6.178589l-138.69788 0c-3.4123535 0 -6.178589 -2.7662964 -6.178589 -6.178589z" fill-rule="nonzero"></path><path fill="#434343" d="m1149.3353 686.21606l1.65625 -0.265625q0.140625 1.0 0.765625 1.53125q0.640625 0.515625 1.78125 0.515625q1.15625 0 1.703125 -0.46875q0.5625 -0.46875 0.5625 -1.09375q0 -0.5625 -0.484375 -0.890625q-0.34375 -0.21875 -1.703125 -0.5625q-1.84375 -0.46875 -2.5625 -0.796875q-0.703125 -0.34375 -1.078125 -0.9375q-0.359375 -0.609375 -0.359375 -1.328125q0 -0.65625 0.296875 -1.21875q0.3125 -0.5625 0.828125 -0.9375q0.390625 -0.28125 1.0625 -0.484375q0.671875 -0.203125 1.4375 -0.203125q1.171875 0 2.046875 0.34375q0.875 0.328125 1.28125 0.90625q0.421875 0.5625 0.578125 1.515625l-1.625 0.21875q-0.109375 -0.75 -0.65625 -1.171875q-0.53125 -0.4375 -1.5 -0.4375q-1.15625 0 -1.640625 0.390625q-0.484375 0.375 -0.484375 0.875q0 0.328125 0.203125 0.59375q0.203125 0.265625 0.640625 0.4375q0.25 0.09375 1.46875 0.4375q1.765625 0.46875 2.46875 0.765625q0.703125 0.296875 1.09375 0.875q0.40625 0.578125 0.40625 1.4375q0 0.828125 -0.484375 1.578125q-0.484375 0.734375 -1.40625 1.140625q-0.921875 0.390625 -2.078125 0.390625q-1.921875 0 -2.9375 -0.796875q-1.0 -0.796875 -1.28125 -2.359375zm16.75 -0.234375l1.71875 0.21875q-0.40625 1.5 -1.515625 2.34375q-1.09375 0.828125 -2.8125 0.828125q-2.15625 0 -3.421875 -1.328125q-1.265625 -1.328125 -1.265625 -3.734375q0 -2.484375 1.265625 -3.859375q1.28125 -1.375 3.328125 -1.375q1.984375 0 3.234375 1.34375q1.25 1.34375 1.25 3.796875q0 0.140625 -0.015625 0.4375l-7.34375 0q0.09375 1.625 0.921875 2.484375q0.828125 0.859375 2.0625 0.859375q0.90625 0 1.546875 -0.46875q0.65625 -0.484375 1.046875 -1.546875zm-5.484375 -2.703125l5.5 0q-0.109375 -1.234375 -0.625 -1.859375q-0.796875 -0.96875 -2.078125 -0.96875q-1.140625 0 -1.9375 0.78125q-0.78125 0.765625 -0.859375 2.046875zm9.094482 5.875l0 -9.859375l1.5 0l0 1.5q0.578125 -1.046875 1.0625 -1.375q0.484375 -0.34375 1.078125 -0.34375q0.84375 0 1.71875 0.546875l-0.578125 1.546875q-0.609375 -0.359375 -1.234375 -0.359375q-0.546875 0 -0.984375 0.328125q-0.421875 0.328125 -0.609375 0.90625q-0.28125 0.890625 -0.28125 1.953125l0 5.15625l-1.671875 0zm8.9626465 0l-3.75 -9.859375l1.765625 0l2.125 5.90625q0.34375 0.953125 0.625 1.984375q0.21875 -0.78125 0.625 -1.875l2.1875 -6.015625l1.71875 0l-3.734375 9.859375l-1.5625 0zm6.609375 -11.6875l0 -1.90625l1.671875 0l0 1.90625l-1.671875 0zm0 11.6875l0 -9.859375l1.671875 0l0 9.859375l-1.671875 0zm10.519775 0l0 -1.25q-0.9375 1.46875 -2.75 1.46875q-1.171875 0 -2.171875 -0.640625q-0.984375 -0.65625 -1.53125 -1.8125q-0.53125 -1.171875 -0.53125 -2.6875q0 -1.46875 0.484375 -2.671875q0.5 -1.203125 1.46875 -1.84375q0.984375 -0.640625 2.203125 -0.640625q0.890625 0 1.578125 0.375q0.703125 0.375 1.140625 0.984375l0 -4.875l1.65625 0l0 13.59375l-1.546875 0zm-5.28125 -4.921875q0 1.890625 0.796875 2.828125q0.8125 0.9375 1.890625 0.9375q1.09375 0 1.859375 -0.890625q0.765625 -0.890625 0.765625 -2.734375q0 -2.015625 -0.78125 -2.953125q-0.78125 -0.953125 -1.921875 -0.953125q-1.109375 0 -1.859375 0.90625q-0.75 0.90625 -0.75 2.859375zm8.641357 0q0 -2.734375 1.53125 -4.0625q1.265625 -1.09375 3.09375 -1.09375q2.03125 0 3.3125 1.34375q1.296875 1.328125 1.296875 3.671875q0 1.90625 -0.578125 3.0q-0.5625 1.078125 -1.65625 1.6875q-1.078125 0.59375 -2.375 0.59375q-2.0625 0 -3.34375 -1.328125q-1.28125 -1.328125 -1.28125 -3.8125zm1.71875 0q0 1.890625 0.828125 2.828125q0.828125 0.9375 2.078125 0.9375q1.25 0 2.0625 -0.9375q0.828125 -0.953125 0.828125 -2.890625q0 -1.828125 -0.828125 -2.765625q-0.828125 -0.9375 -2.0625 -0.9375q-1.25 0 -2.078125 0.9375q-0.828125 0.9375 -0.828125 2.828125zm9.266357 4.921875l0 -9.859375l1.5 0l0 1.5q0.578125 -1.046875 1.0625 -1.375q0.484375 -0.34375 1.078125 -0.34375q0.84375 0 1.71875 0.546875l-0.578125 1.546875q-0.609375 -0.359375 -1.234375 -0.359375q-0.546875 0 -0.984375 0.328125q-0.421875 0.328125 -0.609375 0.90625q-0.28125 0.890625 -0.28125 1.953125l0 5.15625l-1.671875 0z" fill-rule="nonzero"></path><path fill="#ffd966" d="m1137.9475 610.20483l0 0c0 -3.4123535 2.7662354 -6.178589 6.178589 -6.178589l138.69788 0c1.6386719 0 3.2103271 0.65093994 4.3690186 1.8096924c1.1586914 1.1586914 1.8096924 2.7302246 1.8096924 4.3688965l0 24.713684c0 3.4123535 -2.7663574 6.178589 -6.178711 6.178589l-138.69788 0c-3.4123535 0 -6.178589 -2.7662354 -6.178589 -6.178589z" fill-rule="nonzero"></path><path stroke="#7f6000" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m1137.9475 610.20483l0 0c0 -3.4123535 2.7662354 -6.178589 6.178589 -6.178589l138.69788 0c1.6386719 0 3.2103271 0.65093994 4.3690186 1.8096924c1.1586914 1.1586914 1.8096924 2.7302246 1.8096924 4.3688965l0 24.713684c0 3.4123535 -2.7663574 6.178589 -6.178711 6.178589l-138.69788 0c-3.4123535 0 -6.178589 -2.7662354 -6.178589 -6.178589z" fill-rule="nonzero"></path><path fill="#000000" d="m1181.257 626.6692l2.609375 -0.390625q0.171875 0.75 0.671875 1.15625q0.515625 0.390625 1.4375 0.390625q1.0 0 1.515625 -0.375q0.34375 -0.265625 0.34375 -0.703125q0 -0.296875 -0.1875 -0.484375q-0.1875 -0.1875 -0.875 -0.34375q-3.140625 -0.703125 -4.0 -1.265625q-1.15625 -0.796875 -1.15625 -2.21875q0 -1.28125 1.0 -2.15625q1.015625 -0.875 3.140625 -0.875q2.03125 0 3.0 0.65625q0.984375 0.65625 1.359375 1.953125l-2.453125 0.453125q-0.15625 -0.578125 -0.609375 -0.875q-0.4375 -0.3125 -1.25 -0.3125q-1.03125 0 -1.46875 0.296875q-0.296875 0.203125 -0.296875 0.515625q0 0.28125 0.25 0.484375q0.359375 0.25 2.4375 0.734375q2.078125 0.46875 2.90625 1.15625q0.828125 0.6875 0.828125 1.9375q0 1.359375 -1.140625 2.328125q-1.125 0.96875 -3.34375 0.96875q-2.015625 0 -3.1875 -0.8125q-1.171875 -0.8125 -1.53125 -2.21875zm16.985107 -0.328125l2.609375 0.4375q-0.5 1.4375 -1.59375 2.1875q-1.078125 0.734375 -2.703125 0.734375q-2.5625 0 -3.796875 -1.671875q-0.96875 -1.34375 -0.96875 -3.40625q0 -2.4375 1.265625 -3.828125q1.28125 -1.390625 3.25 -1.390625q2.1875 0 3.453125 1.453125q1.28125 1.453125 1.234375 4.453125l-6.53125 0q0.015625 1.15625 0.625 1.8125q0.609375 0.640625 1.5 0.640625q0.609375 0 1.03125 -0.328125q0.421875 -0.34375 0.625 -1.09375zm0.15625 -2.625q-0.03125 -1.140625 -0.59375 -1.71875q-0.546875 -0.59375 -1.34375 -0.59375q-0.859375 0 -1.40625 0.625q-0.5625 0.609375 -0.546875 1.6875l3.890625 0zm7.0163574 5.765625l-2.609375 0l0 -9.859375l2.421875 0l0 1.40625q0.625 -0.984375 1.109375 -1.296875q0.5 -0.328125 1.140625 -0.328125q0.890625 0 1.71875 0.5l-0.8125 2.265625q-0.65625 -0.421875 -1.21875 -0.421875q-0.546875 0 -0.9375 0.296875q-0.375 0.296875 -0.59375 1.09375q-0.21875 0.78125 -0.21875 3.296875l0 3.046875zm7.479004 0l-3.96875 -9.859375l2.734375 0l1.84375 5.03125l0.546875 1.6875q0.21875 -0.640625 0.265625 -0.84375q0.125 -0.421875 0.28125 -0.84375l1.875 -5.03125l2.671875 0l-3.90625 9.859375l-2.34375 0zm7.6569824 -11.1875l0 -2.40625l2.609375 0l0 2.40625l-2.609375 0zm0 11.1875l0 -9.859375l2.609375 0l0 9.859375l-2.609375 0zm13.7771 -6.9375l-2.5625 0.46875q-0.140625 -0.78125 -0.59375 -1.171875q-0.453125 -0.390625 -1.1875 -0.390625q-0.984375 0 -1.5625 0.671875q-0.578125 0.671875 -0.578125 2.25q0 1.765625 0.578125 2.484375q0.59375 0.71875 1.59375 0.71875q0.75 0 1.21875 -0.421875q0.46875 -0.421875 0.671875 -1.453125l2.546875 0.4375q-0.390625 1.765625 -1.53125 2.671875q-1.125 0.890625 -3.03125 0.890625q-2.15625 0 -3.453125 -1.359375q-1.28125 -1.359375 -1.28125 -3.78125q0 -2.4375 1.296875 -3.796875q1.296875 -1.359375 3.484375 -1.359375q1.796875 0 2.859375 0.78125q1.0625 0.765625 1.53125 2.359375zm-6.59375 10.671875l0 -1.09375q0.953125 0.109375 1.75 0.109375q0.828125 0 1.21875 -0.296875q0.3125 -0.21875 0.3125 -0.578125q0 -0.3125 -0.296875 -0.546875q-0.28125 -0.234375 -0.890625 -0.234375q-0.59375 0 -1.203125 0.1875l0.234375 -0.921875q0.71875 -0.25 1.5625 -0.25q1.15625 0 1.75 0.5q0.609375 0.515625 0.609375 1.25q0 0.828125 -0.671875 1.328125q-0.890625 0.703125 -2.578125 0.703125q-1.1875 0 -1.796875 -0.15625zm7.7818604 -8.796875q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25z" fill-rule="nonzero"></path><path fill="#000000" fill-opacity="0.0" d="m741.479 354.50262c0 20.111053 -24.456665 30.166962 -48.91339 40.222076c-24.456665 10.055115 -48.91339 20.109436 -48.91339 40.218872" fill-rule="nonzero"></path><path stroke="#cc0000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m741.479 354.50262c0 20.111053 -24.456665 30.166962 -48.91339 40.222076c-12.2283325 5.0275574 -24.456665 10.054901 -33.62793 16.33908c-4.5856323 3.1420593 -8.406982 6.5983276 -11.08197 10.52594c-1.3374634 1.9638062 -2.3883667 4.04541 -3.1048584 6.2645264l-0.09643555 0.30880737" fill-rule="evenodd"></path><path fill="#cc0000" stroke="#cc0000" stroke-width="2.0" stroke-linecap="butt" d="m644.6544 428.16306l-1.8961182 -2.5538635l1.3214722 6.441986l3.12854 -5.7842407z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m808.88055 321.16403c15.003052 0 22.506042 -2.4724426 30.006042 -4.9448853c7.5 -2.4724426 14.997009 -4.9448547 29.993958 -4.9448547" fill-rule="nonzero"></path><path stroke="#cc0000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m808.88055 321.16403c15.003052 0 22.505981 -2.4724426 30.005981 -4.9448853c3.75 -1.236206 7.4992676 -2.4724426 12.185669 -3.3995972c2.3432617 -0.46359253 4.9206543 -0.84988403 7.8496094 -1.1203308c0.7322998 -0.067596436 1.4865112 -0.1279602 2.2645264 -0.18048096l0.84277344 -0.051757812" fill-rule="evenodd"></path><path fill="#cc0000" stroke="#cc0000" stroke-width="2.0" stroke-linecap="butt" d="m862.0291 311.46698l-2.1850586 2.311493l6.1138916 -2.421997l-6.2403564 -2.0745544z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m454.58267 692.93964c-19.091797 0 -28.636383 -25.606323 -38.183624 -51.212585c-9.547241 -25.606323 -19.097168 -51.212585 -38.194336 -51.212585" fill-rule="nonzero"></path><path stroke="#0b5394" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m454.58267 692.93964c-19.091827 0 -28.636383 -25.606323 -38.183655 -51.212585c-4.7736206 -12.803162 -9.547882 -25.606323 -15.51593 -35.20868c-2.9840088 -4.8012085 -6.266449 -8.802185 -9.9964905 -11.602844c-0.9324951 -0.7001953 -1.8929443 -1.3253174 -2.883728 -1.8692017c-0.49539185 -0.27197266 -0.99835205 -0.5235596 -1.5091858 -0.7541504c-0.25546265 -0.115234375 -0.5128479 -0.22521973 -0.7721863 -0.32983398c-0.12973022 -0.05230713 -0.2599182 -0.103271484 -0.390625 -0.15289307l-0.37060547 -0.1362915" fill-rule="evenodd"></path><path fill="#0b5394" stroke="#0b5394" stroke-width="2.0" stroke-linecap="butt" d="m384.96024 591.67316l2.597046 -1.8365479l-6.470825 1.1721191l5.7103577 3.2614746z" fill-rule="evenodd"></path><path fill="#ffd966" d="m762.1811 446.05795l0 0c0 -6.1375732 4.975525 -11.113068 11.113098 -11.113068l112.576965 0c2.9473877 0 5.774048 1.1708374 7.8581543 3.2549438c2.0841064 2.0841064 3.2549438 4.9107666 3.2549438 7.858124l0 44.45102c0 6.1375732 -4.975525 11.113068 -11.113098 11.113068l-112.576965 0c-6.1375732 0 -11.113098 -4.9754944 -11.113098 -11.113068z" fill-rule="nonzero"></path><path stroke="#7f6000" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m762.1811 446.05795l0 0c0 -6.1375732 4.975525 -11.113068 11.113098 -11.113068l112.576965 0c2.9473877 0 5.774048 1.1708374 7.8581543 3.2549438c2.0841064 2.0841064 3.2549438 4.9107666 3.2549438 7.858124l0 44.45102c0 6.1375732 -4.975525 11.113068 -11.113098 11.113068l-112.576965 0c-6.1375732 0 -11.113098 -4.9754944 -11.113098 -11.113068z" fill-rule="nonzero"></path><path fill="#000000" d="m791.56366 475.20346l0 -13.59375l4.421875 0q2.5 0 3.265625 0.203125q1.15625 0.296875 1.9375 1.328125q0.796875 1.015625 0.796875 2.640625q0 1.25 -0.453125 2.109375q-0.453125 0.859375 -1.15625 1.34375q-0.703125 0.484375 -1.421875 0.640625q-0.984375 0.203125 -2.84375 0.203125l-1.796875 0l0 5.125l-2.75 0zm2.75 -11.296875l0 3.859375l1.5 0q1.625 0 2.171875 -0.21875q0.546875 -0.21875 0.859375 -0.671875q0.3125 -0.453125 0.3125 -1.046875q0 -0.75 -0.4375 -1.234375q-0.4375 -0.484375 -1.09375 -0.59375q-0.5 -0.09375 -1.984375 -0.09375l-1.328125 0zm12.1779175 11.296875l-2.609375 0l0 -9.859375l2.421875 0l0 1.40625q0.625 -0.984375 1.109375 -1.296875q0.5 -0.328125 1.140625 -0.328125q0.890625 0 1.71875 0.5l-0.8125 2.265625q-0.65625 -0.421875 -1.21875 -0.421875q-0.546875 0 -0.9375 0.296875q-0.375 0.296875 -0.59375 1.09375q-0.21875 0.78125 -0.21875 3.296875l0 3.046875zm10.46344 -3.140625l2.609375 0.4375q-0.5 1.4375 -1.59375 2.1875q-1.078125 0.734375 -2.703125 0.734375q-2.5625 0 -3.796875 -1.671875q-0.96875 -1.34375 -0.96875 -3.40625q0 -2.4375 1.265625 -3.828125q1.28125 -1.390625 3.25 -1.390625q2.1875 0 3.453125 1.453125q1.28125 1.453125 1.234375 4.453125l-6.53125 0q0.015625 1.15625 0.625 1.8125q0.609375 0.640625 1.5 0.640625q0.609375 0 1.03125 -0.328125q0.421875 -0.34375 0.625 -1.09375zm0.15625 -2.625q-0.03125 -1.140625 -0.59375 -1.71875q-0.546875 -0.59375 -1.34375 -0.59375q-0.859375 0 -1.40625 0.625q-0.5625 0.609375 -0.546875 1.6875l3.890625 0zm3.4694214 5.765625l0 -2.03125l3.703125 -4.234375q0.90625 -1.046875 1.34375 -1.484375q-0.453125 0.03125 -1.203125 0.046875l-3.484375 0.015625l0 -2.171875l8.15625 0l0 1.859375l-3.765625 4.328125l-1.328125 1.4375q1.078125 -0.0625 1.34375 -0.0625l4.03125 0l0 2.296875l-8.796875 0zm16.078125 -3.140625l2.609375 0.4375q-0.5 1.4375 -1.59375 2.1875q-1.078125 0.734375 -2.703125 0.734375q-2.5625 0 -3.796875 -1.671875q-0.96875 -1.34375 -0.96875 -3.40625q0 -2.4375 1.265625 -3.828125q1.28125 -1.390625 3.25 -1.390625q2.1875 0 3.453125 1.453125q1.28125 1.453125 1.234375 4.453125l-6.53125 0q0.015625 1.15625 0.625 1.8125q0.609375 0.640625 1.5 0.640625q0.609375 0 1.03125 -0.328125q0.421875 -0.34375 0.625 -1.09375zm0.15625 -2.625q-0.03125 -1.140625 -0.59375 -1.71875q-0.546875 -0.59375 -1.34375 -0.59375q-0.859375 0 -1.40625 0.625q-0.5625 0.609375 -0.546875 1.6875l3.890625 0zm13.485107 5.765625l-2.609375 0l0 -5.03125q0 -1.59375 -0.171875 -2.0625q-0.15625 -0.46875 -0.53125 -0.71875q-0.375 -0.265625 -0.90625 -0.265625q-0.6875 0 -1.234375 0.375q-0.53125 0.359375 -0.734375 0.984375q-0.1875 0.609375 -0.1875 2.25l0 4.46875l-2.609375 0l0 -9.859375l2.421875 0l0 1.453125q1.296875 -1.671875 3.25 -1.671875q0.859375 0 1.578125 0.3125q0.71875 0.3125 1.078125 0.796875q0.359375 0.484375 0.5 1.09375q0.15625 0.609375 0.15625 1.75l0 6.125zm6.942871 -9.859375l0 2.078125l-1.78125 0l0 3.984375q0 1.203125 0.046875 1.40625q0.0625 0.1875 0.234375 0.328125q0.1875 0.125 0.453125 0.125q0.359375 0 1.046875 -0.25l0.21875 2.015625q-0.90625 0.390625 -2.0625 0.390625q-0.703125 0 -1.265625 -0.234375q-0.5625 -0.234375 -0.828125 -0.609375q-0.265625 -0.375 -0.375 -1.015625q-0.078125 -0.453125 -0.078125 -1.84375l0 -4.296875l-1.203125 0l0 -2.078125l1.203125 0l0 -1.953125l2.609375 -1.515625l0 3.46875l1.78125 0zm1.1032715 4.796875q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25z" fill-rule="nonzero"></path><path fill="#000000" fill-opacity="0.0" d="m741.479 354.50262c0 20.110626 22.02362 30.166168 44.04724 40.221283c22.02362 10.055115 44.04724 20.109833 44.04724 40.219666" fill-rule="nonzero"></path><path stroke="#cc0000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m741.479 354.50262c0 20.110657 22.02362 30.166168 44.04724 40.221283c11.011841 5.0275574 22.02362 10.055054 30.28247 16.339325c4.1294556 3.1421509 7.5706177 6.5985107 9.979492 10.526184c1.2044067 1.9638672 2.1506958 4.0455017 2.7959595 6.264679l0.08306885 0.2954712" fill-rule="evenodd"></path><path fill="#cc0000" stroke="#cc0000" stroke-width="2.0" stroke-linecap="butt" d="m828.66724 428.14957l-2.5267944 -1.9320374l3.0464478 5.8279114l1.4123535 -6.4226685z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m246.07611 406.7533c0 27.446045 -7.929123 41.167725 -15.858261 54.89212c-7.929138 13.724426 -15.858276 27.451569 -15.858276 54.903168" fill-rule="nonzero"></path><path stroke="#0b5394" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m246.07611 406.7533c0 27.446045 -7.929123 41.167725 -15.858261 54.89212c-3.964569 6.862213 -7.929138 13.725128 -10.902557 22.303894c-1.4867096 4.2893677 -2.725647 9.007751 -3.5928955 14.369507c-0.43362427 2.6808472 -0.7743225 5.522583 -1.0066223 8.55191c-0.05807495 0.75735474 -0.109375 1.5264282 -0.15367126 2.3076172l-0.026809692 0.51831055" fill-rule="evenodd"></path><path fill="#0b5394" stroke="#0b5394" stroke-width="2.0" stroke-linecap="butt" d="m214.5353 509.69662l-2.1907806 -2.3060608l2.0900269 6.2351685l2.4068298 -6.119873z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m521.12335 409.65747c-153.38583 0 -306.77167 53.433075 -306.77167 106.86615" fill-rule="nonzero"></path><path stroke="#0b5394" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m521.12335 409.65747c-76.6929 0 -153.38583 13.358276 -210.90552 33.39569c-28.759827 10.018677 -52.72638 21.707184 -69.502945 34.23056c-8.388275 6.261688 -14.97908 12.732117 -19.472809 19.306885c-2.2468567 3.2873535 -3.9694366 6.60083 -5.1303253 9.927368c-0.29023743 0.8316345 -0.54533386 1.6640625 -0.7647705 2.4971313c-0.054840088 0.20828247 -0.10746765 0.41656494 -0.15783691 0.62490845l-0.018173218 0.07858276" fill-rule="evenodd"></path><path fill="#0b5394" stroke="#0b5394" stroke-width="2.0" stroke-linecap="butt" d="m215.17097 509.7186l-1.9642029 -2.501892l1.4944153 6.4040833l2.9716644 -5.866394z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m825.2493 178.52231c0 18.87024 -11.929138 28.303482 -23.858276 37.74048c-11.929138 9.437012 -23.858215 18.877792 -23.858215 37.755585" fill-rule="nonzero"></path><path stroke="#cc0000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m825.2493 178.52231c0 18.87024 -11.929138 28.303482 -23.858276 37.740494c-5.9645386 4.7184906 -11.929138 9.4379425 -16.402527 15.337494c-2.2366943 2.9497833 -4.100647 6.194565 -5.4053345 9.881775c-0.3262329 0.9217987 -0.6174927 1.8712616 -0.8708496 2.8506622c-0.12670898 0.48971558 -0.24389648 0.98690796 -0.35125732 1.4918823c-0.053771973 0.25248718 -0.105041504 0.50691223 -0.15374756 0.76330566c-0.024353027 0.1282196 -0.04815674 0.25691223 -0.07116699 0.38612366l-0.037109375 0.21359253" fill-rule="evenodd"></path><path fill="#cc0000" stroke="#cc0000" stroke-width="2.0" stroke-linecap="butt" d="m778.0991 247.18764l-2.055664 -2.4273071l1.730896 6.3442383l2.7520752 -5.97258z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m777.53284 565.31104c0 13.411072 -36.393738 20.11737 -72.787415 26.822083c-36.393738 6.704773 -72.787415 13.407837 -72.787415 26.815674" fill-rule="nonzero"></path><path stroke="#cc0000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m777.53284 565.31104c0 13.411011 -36.393738 20.11737 -72.787415 26.822083c-18.196838 3.352356 -36.393738 6.7043457 -50.04138 10.894165c-6.8237915 2.0949097 -12.510315 4.399353 -16.490845 7.0180054c-0.9951782 0.6546631 -1.883667 1.3289795 -2.6566772 2.0245361c-0.1932373 0.17388916 -0.3793335 0.3491211 -0.5579834 0.52575684l-0.14086914 0.14263916" fill-rule="evenodd"></path><path fill="#cc0000" stroke="#cc0000" stroke-width="2.0" stroke-linecap="butt" d="m634.85767 612.7382l-1.0864258 -2.989502l-0.57629395 6.5508423l4.6522217 -4.647827z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m483.61417 96.509186c-27.740692 0 -41.61133 1.2204742 -55.481415 2.4409485c-13.870087 1.2204666 -27.739594 2.4409409 -55.479218 2.4409409" fill-rule="nonzero"></path><path stroke="#b45f06" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m483.61417 96.509186c-27.740723 0 -41.61133 1.2204742 -55.481415 2.4409485c-6.935028 0.6102295 -13.869965 1.2204666 -22.538544 1.6781464c-4.3342896 0.22883606 -9.10199 0.4195404 -14.519897 0.5530243c-2.7088928 0.06674957 -5.5803833 0.1191864 -8.6414795 0.15493774c-0.7652893 0.00894165 -1.5424194 0.016845703 -2.3318176 0.023658752l-0.5933533 0.004234314" fill-rule="evenodd"></path><path fill="#b45f06" stroke="#b45f06" stroke-width="2.0" stroke-linecap="butt" d="m379.50766 101.364136l2.240326 -2.257988l-6.1706543 2.2734375l6.188324 2.2248611z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m825.2493 178.52231c0 12.5 -154.11023 25.393707 -308.22046 25.0c-154.11023 -0.39369202 -308.22046 -14.074799 -308.22046 -28.149612" fill-rule="nonzero"></path><path stroke="#f1c232" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m825.2493 178.52231c0 12.5 -154.11023 25.393707 -308.22046 25.0c-77.055115 -0.19685364 -154.11023 -3.7155457 -211.90158 -8.944382c-28.89566 -2.6144257 -52.975388 -5.6563873 -69.83119 -8.924408c-8.427902 -1.6340027 -15.049835 -3.3245392 -19.564774 -5.046402c-0.56437683 -0.21524048 -1.0958252 -0.43095398 -1.59375 -0.64712524l-0.16981506 -0.07501221" fill-rule="evenodd"></path><path fill="#f1c232" stroke="#f1c232" stroke-width="2.0" stroke-linecap="butt" d="m213.96776 179.88498l3.173706 -0.21234131l-6.1322174 -2.375122l3.1708527 5.7611694z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m246.08398 258.79266c0 -20.858276 -9.32283 -31.287415 -18.64566 -41.716553c-9.322845 -10.429123 -18.645676 -20.858261 -18.645676 -41.716537" fill-rule="nonzero"></path><path stroke="#f1c232" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m246.08398 258.79266c0 -20.858276 -9.32283 -31.287415 -18.64566 -41.716553c-4.6614227 -5.214569 -9.322845 -10.429123 -12.818909 -16.947342c-1.7480316 -3.2590942 -3.204712 -6.844116 -4.2243958 -10.917999c-0.5098419 -2.0369263 -0.91044617 -4.1960907 -1.1835632 -6.4978485l-0.056396484 -0.5087433" fill-rule="evenodd"></path><path fill="#f1c232" stroke="#f1c232" stroke-width="2.0" stroke-linecap="butt" d="m209.15506 182.20416l2.3649445 2.1271057l-2.572754 -6.0519714l-1.919281 6.28981z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m44.934383 101.37533c-12.499611 0 -34.627094 70.90534 -24.99922 122.28646c9.627872 51.38115 51.0111 83.23805 97.20827 122.28648c46.197174 39.0484 97.20827 85.28833 97.20827 170.57669" fill-rule="nonzero"></path><path stroke="#f1c232" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m39.27579 105.24315l-0.07078171 0.08724213c-0.22483063 0.2836609 -0.45059204 0.5815201 -0.6771202 0.8932419c-0.45306396 0.623436 -0.909214 1.30233 -1.3671875 2.033905c-0.91594696 1.4631424 -1.8391953 3.137024 -2.7596397 4.9995804c-3.6817741 7.4502106 -7.318678 17.91903 -10.264095 29.993523c-5.8908367 24.148972 -9.015739 54.720596 -4.201803 80.41115c9.627872 51.38112 51.0111 83.23805 97.20827 122.28645c46.197174 39.04843 97.20827 85.28836 97.20827 170.57672" fill-rule="evenodd"></path><path fill="#f1c232" stroke="#f1c232" stroke-width="2.0" stroke-linecap="butt" d="m39.27579 105.24315l-0.5876312 3.1260529l3.8324203 -5.3439636l-6.370838 1.6302795z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m521.12335 409.65747c-37.118103 0 -55.677155 -77.07086 -74.236206 -154.14172c-18.559052 -77.07086 -37.118103 -154.14172 -74.23624 -154.14172" fill-rule="nonzero"></path><path stroke="#f1c232" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m521.12335 409.65747c-37.118103 0 -55.677155 -77.07086 -74.236206 -154.14172c-9.279541 -38.53543 -18.559052 -77.07086 -30.158478 -105.97244c-5.799713 -14.45079 -12.179382 -26.49311 -19.429016 -34.922737c-3.6247864 -4.214813 -7.467102 -7.526451 -11.563141 -9.784386c-1.0240479 -0.56448364 -2.0639038 -1.0631104 -3.1201782 -1.4935303c-0.5281677 -0.21520996 -1.0603943 -0.4133606 -1.5968628 -0.59417725c-0.26818848 -0.090408325 -0.53744507 -0.1764679 -0.8077698 -0.25817108c-0.13513184 -0.04084778 -0.27053833 -0.080596924 -0.40625 -0.119262695l-0.35940552 -0.09928131" fill-rule="evenodd"></path><path fill="#f1c232" stroke="#f1c232" stroke-width="2.0" stroke-linecap="butt" d="m379.44604 102.27176l2.5243835 -1.9352036l-6.4208984 1.4204102l5.831726 3.0391693z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m454.58267 692.93964c-20.482758 0 -30.725372 -147.88977 -40.965546 -295.77954c-10.240143 -147.88976 -20.477844 -295.7795 -40.95572 -295.7795" fill-rule="nonzero"></path><path stroke="#f1c232" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m454.58267 692.93964c-20.482758 0 -30.725403 -147.88977 -40.965546 -295.77954c-5.1200867 -73.944885 -10.239532 -147.88976 -16.638702 -203.34842c-3.199585 -27.729324 -6.719116 -50.837097 -10.718628 -67.01254c-1.9996948 -8.087723 -4.119446 -14.44236 -6.379181 -18.77507c-0.2824707 -0.5415878 -0.5671387 -1.0515823 -0.8540039 -1.5294266c-0.14346313 -0.23891449 -0.28744507 -0.46979523 -0.43200684 -0.6925659c-0.072265625 -0.11138153 -0.14468384 -0.2207489 -0.21725464 -0.3280716l-0.10662842 -0.1544342" fill-rule="evenodd"></path><path fill="#f1c232" stroke="#f1c232" stroke-width="2.0" stroke-linecap="butt" d="m378.2707 105.31956l3.1332397 -0.54810333l-6.3497314 -1.7106094l3.764618 5.3919373z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m246.07611 258.7848c0 -22.072647 82.07086 -33.109848 164.14172 -44.14528c82.07089 -11.035431 164.14172 -22.069092 164.14172 -44.1382" fill-rule="nonzero"></path><path stroke="#38761d" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m246.07611 258.7848c0 -22.072647 82.07086 -33.109833 164.14172 -44.14528c41.03546 -5.5177155 82.07089 -11.034973 112.84747 -17.931458c15.388245 -3.4482574 28.211853 -7.241287 37.188354 -11.551605c4.48822 -2.1551514 8.014709 -4.4396057 10.419128 -6.874954c0.3005371 -0.30441284 0.5835571 -0.6111908 0.8487549 -0.9203491c0.06628418 -0.077316284 0.13146973 -0.15475464 0.1954956 -0.23234558l0.18536377 -0.22891235" fill-rule="evenodd"></path><path fill="#38761d" stroke="#38761d" stroke-width="2.0" stroke-linecap="butt" d="m571.9024 176.8999l1.293335 2.9059753l0.11566162 -6.5751038l-4.3150024 4.9624786z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m777.53284 254.00394c0 -20.877777 -50.795288 -31.318542 -101.590576 -41.75554c-50.795288 -10.437012 -101.590576 -20.87027 -101.590576 -41.740524" fill-rule="nonzero"></path><path stroke="#38761d" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m777.53284 254.00394c0 -20.877762 -50.795288 -31.318527 -101.590576 -41.75554c-25.397644 -5.218506 -50.795288 -10.436066 -69.843506 -16.957794c-9.524109 -3.260849 -17.460876 -6.847748 -23.016602 -10.923828c-2.777832 -2.0380402 -4.960449 -4.1983795 -6.4486084 -6.5013885c-0.09301758 -0.14395142 -0.18334961 -0.28845215 -0.27087402 -0.4335022c-0.043762207 -0.072525024 -0.08685303 -0.14520264 -0.12927246 -0.21801758l-0.056762695 -0.099227905" fill-rule="evenodd"></path><path fill="#38761d" stroke="#38761d" stroke-width="2.0" stroke-linecap="butt" d="m576.17664 177.11464l2.7667847 1.5691376l-3.8132324 -5.3576355l-0.5227051 6.555313z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m1137.9475 581.4252l142.11023 0" fill-rule="nonzero"></path><path stroke="#1155cc" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m1137.9475 581.4252l135.2561 0" fill-rule="evenodd"></path><path fill="#1155cc" stroke="#1155cc" stroke-width="2.0" stroke-linecap="butt" d="m1273.2036 581.4252l-2.2492676 2.2492065l6.1795654 -2.2492065l-6.1795654 -2.2491455z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m1137.9475 544.3543l151.05518 0l0 37.07086l-151.05518 0z" fill-rule="nonzero"></path><path fill="#000000" d="m1195.6691 566.89935l1.6875 -0.140625q0.125 1.015625 0.5625 1.671875q0.4375 0.65625 1.359375 1.0625q0.9375 0.40625 2.09375 0.40625q1.03125 0 1.8125 -0.3125q0.796875 -0.3125 1.1875 -0.84375q0.390625 -0.53125 0.390625 -1.15625q0 -0.640625 -0.375 -1.109375q-0.375 -0.484375 -1.234375 -0.8125q-0.546875 -0.21875 -2.421875 -0.65625q-1.875 -0.453125 -2.625 -0.859375q-0.96875 -0.515625 -1.453125 -1.265625q-0.46875 -0.75 -0.46875 -1.6875q0 -1.03125 0.578125 -1.921875q0.59375 -0.90625 1.703125 -1.359375q1.125 -0.46875 2.5 -0.46875q1.515625 0 2.671875 0.484375q1.15625 0.484375 1.765625 1.4375q0.625 0.9375 0.671875 2.140625l-1.71875 0.125q-0.140625 -1.28125 -0.953125 -1.9375q-0.796875 -0.671875 -2.359375 -0.671875q-1.625 0 -2.375 0.609375q-0.75 0.59375 -0.75 1.4375q0 0.734375 0.53125 1.203125q0.515625 0.46875 2.703125 0.96875q2.203125 0.5 3.015625 0.875q1.1875 0.546875 1.75 1.390625q0.578125 0.828125 0.578125 1.921875q0 1.09375 -0.625 2.0625q-0.625 0.953125 -1.796875 1.484375q-1.15625 0.53125 -2.609375 0.53125q-1.84375 0 -3.09375 -0.53125q-1.25 -0.546875 -1.96875 -1.625q-0.703125 -1.078125 -0.734375 -2.453125zm23.349854 2.921875q1.265625 0.859375 2.3125 1.265625l-0.53125 1.25q-1.453125 -0.53125 -2.921875 -1.671875q-1.5 0.84375 -3.328125 0.84375q-1.84375 0 -3.359375 -0.890625q-1.5 -0.890625 -2.3125 -2.5q-0.8125 -1.625 -0.8125 -3.640625q0 -2.015625 0.8125 -3.65625q0.828125 -1.65625 2.328125 -2.515625q1.515625 -0.875 3.375 -0.875q1.890625 0 3.390625 0.90625q1.515625 0.890625 2.3125 2.5q0.796875 1.609375 0.796875 3.625q0 1.6875 -0.515625 3.03125q-0.515625 1.328125 -1.546875 2.328125zm-3.953125 -2.296875q1.5625 0.421875 2.5625 1.296875q1.59375 -1.453125 1.59375 -4.359375q0 -1.65625 -0.5625 -2.875q-0.5625 -1.234375 -1.640625 -1.921875q-1.078125 -0.6875 -2.421875 -0.6875q-2.015625 0 -3.34375 1.390625q-1.328125 1.375 -1.328125 4.109375q0 2.65625 1.3125 4.078125q1.3125 1.40625 3.359375 1.40625q0.953125 0 1.8125 -0.359375q-0.84375 -0.546875 -1.78125 -0.78125l0.4375 -1.296875zm8.089478 3.75l0 -13.59375l1.796875 0l0 11.984375l6.703125 0l0 1.609375l-8.5 0z" fill-rule="nonzero"></path><path fill="#000000" fill-opacity="0.0" d="m1142.5144 521.7533l142.11023 0" fill-rule="nonzero"></path><path stroke="#38761d" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m1142.5144 521.7533l135.2561 0" fill-rule="evenodd"></path><path fill="#38761d" stroke="#38761d" stroke-width="2.0" stroke-linecap="butt" d="m1277.7705 521.7533l-2.2491455 2.2491455l6.1795654 -2.2491455l-6.1795654 -2.2492065z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m1138.042 484.69815l151.05518 0l0 37.070892l-151.05518 0z" fill-rule="nonzero"></path><path fill="#000000" d="m1188.517 507.24316l1.6875 -0.140625q0.125 1.015625 0.5625 1.671875q0.4375 0.65625 1.359375 1.0625q0.9375 0.40625 2.09375 0.40625q1.03125 0 1.8125 -0.3125q0.796875 -0.3125 1.1875 -0.84375q0.390625 -0.53125 0.390625 -1.15625q0 -0.640625 -0.375 -1.109375q-0.375 -0.484375 -1.234375 -0.8125q-0.546875 -0.21875 -2.421875 -0.65625q-1.875 -0.453125 -2.625 -0.859375q-0.96875 -0.515625 -1.453125 -1.265625q-0.46875 -0.75 -0.46875 -1.6875q0 -1.03125 0.578125 -1.921875q0.59375 -0.90625 1.703125 -1.359375q1.125 -0.46875 2.5 -0.46875q1.515625 0 2.671875 0.484375q1.15625 0.484375 1.765625 1.4375q0.625 0.9375 0.671875 2.140625l-1.71875 0.125q-0.140625 -1.28125 -0.953125 -1.9375q-0.796875 -0.671875 -2.359375 -0.671875q-1.625 0 -2.375 0.609375q-0.75 0.59375 -0.75 1.4375q0 0.734375 0.53125 1.203125q0.515625 0.46875 2.703125 0.96875q2.203125 0.5 3.015625 0.875q1.1875 0.546875 1.75 1.390625q0.578125 0.828125 0.578125 1.921875q0 1.09375 -0.625 2.0625q-0.625 0.953125 -1.796875 1.484375q-1.15625 0.53125 -2.609375 0.53125q-1.84375 0 -3.09375 -0.53125q-1.25 -0.546875 -1.96875 -1.625q-0.703125 -1.078125 -0.734375 -2.453125zm12.9904785 4.375l0 -13.59375l2.71875 0l3.21875 9.625q0.4375 1.34375 0.640625 2.015625q0.234375 -0.75 0.734375 -2.1875l3.25 -9.453125l2.421875 0l0 13.59375l-1.734375 0l0 -11.390625l-3.953125 11.390625l-1.625 0l-3.9375 -11.578125l0 11.578125l-1.734375 0zm19.056396 0l0 -12.0l-4.46875 0l0 -1.59375l10.765625 0l0 1.59375l-4.5 0l0 12.0l-1.796875 0zm7.942871 0l0 -13.59375l5.125 0q1.359375 0 2.078125 0.125q1.0 0.171875 1.671875 0.640625q0.671875 0.46875 1.078125 1.3125q0.421875 0.84375 0.421875 1.84375q0 1.734375 -1.109375 2.9375q-1.09375 1.203125 -3.984375 1.203125l-3.484375 0l0 5.53125l-1.796875 0zm1.796875 -7.140625l3.515625 0q1.75 0 2.46875 -0.640625q0.734375 -0.65625 0.734375 -1.828125q0 -0.859375 -0.4375 -1.46875q-0.421875 -0.609375 -1.125 -0.796875q-0.453125 -0.125 -1.671875 -0.125l-3.484375 0l0 4.859375z" fill-rule="nonzero"></path><path fill="#000000" fill-opacity="0.0" d="m1135.5801 462.11285l142.11023 0" fill-rule="nonzero"></path><path stroke="#cc0000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m1135.5801 462.11285l135.2561 0" fill-rule="evenodd"></path><path fill="#cc0000" stroke="#cc0000" stroke-width="2.0" stroke-linecap="butt" d="m1270.836 462.11285l-2.2491455 2.249176l6.1795654 -2.249176l-6.1795654 -2.2491455z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m1131.1077 425.02625l151.05505 0l0 37.07086l-151.05505 0z" fill-rule="nonzero"></path><path fill="#000000" d="m1183.7965 451.94626l0 -13.59375l1.8125 0l0 5.578125l7.0625 0l0 -5.578125l1.796875 0l0 13.59375l-1.796875 0l0 -6.40625l-7.0625 0l0 6.40625l-1.8125 0zm16.879272 0l0 -12.0l-4.46875 0l0 -1.59375l10.765625 0l0 1.59375l-4.5 0l0 12.0l-1.796875 0zm11.395996 0l0 -12.0l-4.46875 0l0 -1.59375l10.765625 0l0 1.59375l-4.5 0l0 12.0l-1.796875 0zm7.942749 0l0 -13.59375l5.125 0q1.359375 0 2.078125 0.125q1.0 0.171875 1.671875 0.640625q0.671875 0.46875 1.078125 1.3125q0.421875 0.84375 0.421875 1.84375q0 1.734375 -1.109375 2.9375q-1.09375 1.203125 -3.984375 1.203125l-3.484375 0l0 5.53125l-1.796875 0zm1.796875 -7.140625l3.515625 0q1.75 0 2.46875 -0.640625q0.734375 -0.65625 0.734375 -1.828125q0 -0.859375 -0.4375 -1.46875q-0.421875 -0.609375 -1.125 -0.796875q-0.453125 -0.125 -1.671875 -0.125l-3.484375 0l0 4.859375z" fill-rule="nonzero"></path><path fill="#000000" fill-opacity="0.0" d="m1139.0577 412.3058l142.11023 0" fill-rule="nonzero"></path><path stroke="#f1c232" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m1139.0577 412.3058l135.2561 0" fill-rule="evenodd"></path><path fill="#f1c232" stroke="#f1c232" stroke-width="2.0" stroke-linecap="butt" d="m1274.3138 412.3058l-2.2491455 2.2491455l6.1794434 -2.2491455l-6.1794434 -2.249176z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m1131.1077 376.18896l151.05505 0l0 37.070892l-151.05505 0z" fill-rule="nonzero"></path><path fill="#000000" d="m1163.453 403.10898l0 -13.59375l1.796875 0l0 11.984375l6.703125 0l0 1.609375l-8.5 0zm9.906982 -6.625q0 -3.390625 1.8125 -5.296875q1.828125 -1.921875 4.703125 -1.921875q1.875 0 3.390625 0.90625q1.515625 0.890625 2.296875 2.5q0.796875 1.609375 0.796875 3.65625q0 2.0625 -0.84375 3.703125q-0.828125 1.625 -2.359375 2.46875q-1.53125 0.84375 -3.296875 0.84375q-1.921875 0 -3.4375 -0.921875q-1.5 -0.9375 -2.28125 -2.53125q-0.78125 -1.609375 -0.78125 -3.40625zm1.859375 0.03125q0 2.453125 1.3125 3.875q1.328125 1.40625 3.3125 1.40625q2.03125 0 3.34375 -1.421875q1.3125 -1.4375 1.3125 -4.0625q0 -1.65625 -0.5625 -2.890625q-0.546875 -1.234375 -1.640625 -1.921875q-1.078125 -0.6875 -2.421875 -0.6875q-1.90625 0 -3.28125 1.3125q-1.375 1.3125 -1.375 4.390625zm19.55835 1.265625l0 -1.609375l5.765625 0l0 5.046875q-1.328125 1.0625 -2.75 1.59375q-1.40625 0.53125 -2.890625 0.53125q-2.0 0 -3.640625 -0.859375q-1.625 -0.859375 -2.46875 -2.484375q-0.828125 -1.625 -0.828125 -3.625q0 -1.984375 0.828125 -3.703125q0.828125 -1.71875 2.390625 -2.546875q1.5625 -0.84375 3.59375 -0.84375q1.46875 0 2.65625 0.484375q1.203125 0.46875 1.875 1.328125q0.671875 0.84375 1.03125 2.21875l-1.625 0.4375q-0.3125 -1.03125 -0.765625 -1.625q-0.453125 -0.59375 -1.296875 -0.953125q-0.84375 -0.359375 -1.875 -0.359375q-1.234375 0 -2.140625 0.375q-0.890625 0.375 -1.453125 1.0q-0.546875 0.609375 -0.84375 1.34375q-0.53125 1.25 -0.53125 2.734375q0 1.8125 0.625 3.046875q0.640625 1.21875 1.828125 1.8125q1.203125 0.59375 2.546875 0.59375q1.171875 0 2.28125 -0.453125q1.109375 -0.453125 1.6875 -0.953125l0 -2.53125l-4.0 0zm6.6832275 5.5625l3.9375 -14.0625l1.34375 0l-3.9375 14.0625l-1.34375 0zm6.9489746 -0.234375l0 -13.59375l1.8125 0l0 13.59375l-1.8125 0zm4.8708496 0l0 -13.59375l1.84375 0l7.140625 10.671875l0 -10.671875l1.71875 0l0 13.59375l-1.84375 0l-7.140625 -10.6875l0 10.6875l-1.71875 0zm13.582275 0l0 -13.59375l9.171875 0l0 1.59375l-7.375 0l0 4.21875l6.375 0l0 1.609375l-6.375 0l0 6.171875l-1.796875 0zm10.755371 -6.625q0 -3.390625 1.8125 -5.296875q1.828125 -1.921875 4.703125 -1.921875q1.875 0 3.390625 0.90625q1.515625 0.890625 2.296875 2.5q0.796875 1.609375 0.796875 3.65625q0 2.0625 -0.84375 3.703125q-0.828125 1.625 -2.359375 2.46875q-1.53125 0.84375 -3.296875 0.84375q-1.921875 0 -3.4375 -0.921875q-1.5 -0.9375 -2.28125 -2.53125q-0.78125 -1.609375 -0.78125 -3.40625zm1.859375 0.03125q0 2.453125 1.3125 3.875q1.328125 1.40625 3.3125 1.40625q2.03125 0 3.34375 -1.421875q1.3125 -1.4375 1.3125 -4.0625q0 -1.65625 -0.5625 -2.890625q-0.546875 -1.234375 -1.640625 -1.921875q-1.078125 -0.6875 -2.421875 -0.6875q-1.90625 0 -3.28125 1.3125q-1.375 1.3125 -1.375 4.390625z" fill-rule="nonzero"></path></g></svg>
3 4
4 -<svg  
5 - xmlns:dc="http://purl.org/dc/elements/1.1/"  
6 - xmlns:cc="http://creativecommons.org/ns#"  
7 - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"  
8 - xmlns:svg="http://www.w3.org/2000/svg"  
9 - xmlns="http://www.w3.org/2000/svg"  
10 - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"  
11 - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"  
12 - width="1052.3622"  
13 - height="744.09448"  
14 - id="svg2"  
15 - version="1.1"  
16 - inkscape:version="0.91 r13725"  
17 - sodipodi:docname="arquitetura.svg">  
18 - <defs  
19 - id="defs4">  
20 - <marker  
21 - inkscape:stockid="Arrow2Lend"  
22 - orient="auto"  
23 - refY="0.0"  
24 - refX="0.0"  
25 - id="Arrow2Lend"  
26 - style="overflow:visible;">  
27 - <path  
28 - id="path4235"  
29 - style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"  
30 - d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "  
31 - transform="scale(1.1) rotate(180) translate(1,0)" />  
32 - </marker>  
33 - <marker  
34 - inkscape:stockid="Arrow1Lend"  
35 - orient="auto"  
36 - refY="0.0"  
37 - refX="0.0"  
38 - id="Arrow1Lend"  
39 - style="overflow:visible;">  
40 - <path  
41 - id="path4217"  
42 - d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "  
43 - style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;"  
44 - transform="scale(0.8) rotate(180) translate(12.5,0)" />  
45 - </marker>  
46 - <marker  
47 - inkscape:stockid="Arrow2Lstart"  
48 - orient="auto"  
49 - refY="0.0"  
50 - refX="0.0"  
51 - id="Arrow2Lstart"  
52 - style="overflow:visible">  
53 - <path  
54 - id="path4232"  
55 - style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"  
56 - d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "  
57 - transform="scale(1.1) translate(1,0)" />  
58 - </marker>  
59 - <marker  
60 - inkscape:stockid="Arrow2Lstart"  
61 - orient="auto"  
62 - refY="0"  
63 - refX="0"  
64 - id="Arrow2Lstart-4"  
65 - style="overflow:visible">  
66 - <path  
67 - inkscape:connector-curvature="0"  
68 - id="path4232-0"  
69 - style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"  
70 - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"  
71 - transform="matrix(1.1,0,0,1.1,1.1,0)" />  
72 - </marker>  
73 - </defs>  
74 - <sodipodi:namedview  
75 - id="base"  
76 - pagecolor="#ffffff"  
77 - bordercolor="#666666"  
78 - borderopacity="1.0"  
79 - inkscape:pageopacity="0.0"  
80 - inkscape:pageshadow="2"  
81 - inkscape:zoom="0.65717461"  
82 - inkscape:cx="526.18109"  
83 - inkscape:cy="372.04724"  
84 - inkscape:document-units="px"  
85 - inkscape:current-layer="layer5"  
86 - showgrid="false"  
87 - inkscape:window-width="1366"  
88 - inkscape:window-height="704"  
89 - inkscape:window-x="0"  
90 - inkscape:window-y="27"  
91 - inkscape:window-maximized="1"  
92 - showguides="true"  
93 - inkscape:guide-bbox="true" />  
94 - <metadata  
95 - id="metadata7">  
96 - <rdf:RDF>  
97 - <cc:Work  
98 - rdf:about="">  
99 - <dc:format>image/svg+xml</dc:format>  
100 - <dc:type  
101 - rdf:resource="http://purl.org/dc/dcmitype/StillImage" />  
102 - <dc:title></dc:title>  
103 - </cc:Work>  
104 - </rdf:RDF>  
105 - </metadata>  
106 - <g  
107 - inkscape:label="Camada 1"  
108 - inkscape:groupmode="layer"  
109 - id="layer1"  
110 - transform="translate(0,-308.2677)"  
111 - style="display:inline">  
112 - <g  
113 - inkscape:groupmode="layer"  
114 - id="layer4"  
115 - inkscape:label="Release 1"  
116 - style="display:inline">  
117 - <text  
118 - xml:space="preserve"  
119 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24.06708527px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"  
120 - x="636.58868"  
121 - y="545.6839"  
122 - id="text5794"  
123 - sodipodi:linespacing="125%"><tspan  
124 - style="font-size:16.46647072px;text-align:start;text-anchor:start"  
125 - id="tspan5796"  
126 - sodipodi:role="line"  
127 - x="636.58868"  
128 - y="545.6839">HTTP</tspan><tspan  
129 - style="font-size:16.46647072px;text-align:start;text-anchor:start"  
130 - id="tspan5798"  
131 - sodipodi:role="line"  
132 - x="636.58868"  
133 - y="566.26697">reverse proxy</tspan></text>  
134 - <g  
135 - id="g4382"  
136 - transform="matrix(0.68610294,0,0,0.68610294,74.428035,348.72454)">  
137 - <g  
138 - transform="translate(-104.51642,-10.919621)"  
139 - id="g4315">  
140 - <rect  
141 - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#babdb6;fill-opacity:0.61568627;fill-rule:nonzero;stroke:#2e3436;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"  
142 - id="rect4317"  
143 - width="583.77264"  
144 - height="217.82957"  
145 - x="45.238449"  
146 - y="795.53394"  
147 - rx="24.959101"  
148 - ry="24.959101" />  
149 - <text  
150 - xml:space="preserve"  
151 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15.92820835px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;letter-spacing:0px;word-spacing:0px;fill:#555753;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
152 - x="62.26289"  
153 - y="991.02106"  
154 - id="text4319"  
155 - sodipodi:linespacing="125%"><tspan  
156 - sodipodi:role="line"  
157 - id="tspan4321"  
158 - x="62.26289"  
159 - y="991.02106"  
160 - style="font-size:22.5px;fill:#555753">database</tspan></text>  
161 - </g>  
162 - <g  
163 - style="display:inline"  
164 - id="g4246"  
165 - transform="matrix(1.0487632,0,0,1.0487632,-116.8071,289.51028)">  
166 - <rect  
167 - transform="translate(0,308.2677)"  
168 - ry="24.959145"  
169 - rx="24.959145"  
170 - y="205.91293"  
171 - x="99.836578"  
172 - height="106.07636"  
173 - width="215.27261"  
174 - id="rect4248"  
175 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#fce94f;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.55984557;marker:none;enable-background:accumulate" />  
176 - <text  
177 - sodipodi:linespacing="125%"  
178 - id="text4250"  
179 - y="575.53479"  
180 - x="143.37675"  
181 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"  
182 - xml:space="preserve"><tspan  
183 - y="575.53479"  
184 - x="143.37675"  
185 - id="tspan4252"  
186 - sodipodi:role="line">PostgreSQL</tspan></text>  
187 - </g>  
188 - <g  
189 - transform="matrix(1.0487632,0,0,1.0487632,154.49779,289.51029)"  
190 - id="g4263"  
191 - style="display:inline">  
192 - <rect  
193 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#fce94f;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.55984557;marker:none;enable-background:accumulate"  
194 - id="rect4265"  
195 - width="215.27261"  
196 - height="106.07636"  
197 - x="99.836578"  
198 - y="205.91293"  
199 - rx="24.959145"  
200 - ry="24.959145"  
201 - transform="translate(0,308.2677)" />  
202 - <text  
203 - xml:space="preserve"  
204 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"  
205 - x="178.57445"  
206 - y="575.53479"  
207 - id="text4267"  
208 - sodipodi:linespacing="125%"><tspan  
209 - sodipodi:role="line"  
210 - id="tspan4269"  
211 - x="178.57445"  
212 - y="575.53479">Redis</tspan></text>  
213 - </g>  
214 - </g>  
215 - <g  
216 - id="g4396"  
217 - transform="matrix(0.68610294,0,0,0.68610294,548.29673,198.97368)">  
218 - <g  
219 - id="g4307"  
220 - transform="translate(-75.535325,-259.85317)">  
221 - <rect  
222 - ry="24.959101"  
223 - rx="24.959101"  
224 - y="819.93018"  
225 - x="45.238449"  
226 - height="509.80542"  
227 - width="719.02667"  
228 - id="rect4309"  
229 - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#babdb6;fill-opacity:0.61568627;fill-rule:nonzero;stroke:#2e3436;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />  
230 - <text  
231 - sodipodi:linespacing="125%"  
232 - id="text4311"  
233 - y="1301.6217"  
234 - x="62.26289"  
235 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15.92820835px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;letter-spacing:0px;word-spacing:0px;fill:#555753;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
236 - xml:space="preserve"><tspan  
237 - style="font-size:22.5px;fill:#555753"  
238 - y="1301.6217"  
239 - x="62.26289"  
240 - id="tspan4313"  
241 - sodipodi:role="line">integration</tspan></text>  
242 - </g>  
243 - <g  
244 - transform="matrix(1.0487632,0,0,1.0487632,-79.431935,352.26197)"  
245 - id="g3018"  
246 - style="display:inline">  
247 - <rect  
248 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#fce94f;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.55984557;marker:none;enable-background:accumulate"  
249 - id="rect3020"  
250 - width="215.27261"  
251 - height="106.07636"  
252 - x="99.836578"  
253 - y="205.91293"  
254 - transform="translate(0,308.2677)"  
255 - rx="24.959145"  
256 - ry="24.959145" />  
257 - <text  
258 - xml:space="preserve"  
259 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"  
260 - x="175.63876"  
261 - y="575.49884"  
262 - id="text3022"  
263 - sodipodi:linespacing="125%"><tspan  
264 - sodipodi:role="line"  
265 - id="tspan3024"  
266 - x="175.63876"  
267 - y="575.49884">Gitlab</tspan></text>  
268 - </g>  
269 - <g  
270 - transform="matrix(1.0487632,0,0,1.0487632,-80.194985,55.784944)"  
271 - id="g3034"  
272 - style="display:inline">  
273 - <rect  
274 - transform="translate(0,308.2677)"  
275 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#fce94f;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.55984557;marker:none;enable-background:accumulate"  
276 - id="rect3036"  
277 - width="215.27261"  
278 - height="106.07636"  
279 - x="99.836578"  
280 - y="205.91293"  
281 - rx="24.959145"  
282 - ry="24.959145" />  
283 - <text  
284 - xml:space="preserve"  
285 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"  
286 - x="169.5842"  
287 - y="575.53479"  
288 - id="text3038"  
289 - sodipodi:linespacing="125%"><tspan  
290 - sodipodi:role="line"  
291 - id="tspan3040"  
292 - x="169.5842"  
293 - y="575.53479">COLAB</tspan></text>  
294 - </g>  
295 - <g  
296 - transform="matrix(1.0487632,0,0,1.0487632,294.5495,195.07943)"  
297 - id="g4271"  
298 - style="display:inline">  
299 - <rect  
300 - transform="translate(0,308.2677)"  
301 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#fce94f;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.55984557;marker:none;enable-background:accumulate"  
302 - id="rect4273"  
303 - width="215.27261"  
304 - height="106.07636"  
305 - x="99.836578"  
306 - y="205.91293"  
307 - rx="24.959145"  
308 - ry="24.959145" />  
309 - <text  
310 - xml:space="preserve"  
311 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"  
312 - x="163.01907"  
313 - y="575.53479"  
314 - id="text4275"  
315 - sodipodi:linespacing="125%"><tspan  
316 - sodipodi:role="line"  
317 - id="tspan4277"  
318 - x="163.01907"  
319 - y="575.53479">Mailman</tspan></text>  
320 - </g>  
321 - <g  
322 - style="display:inline"  
323 - id="g4288"  
324 - transform="matrix(1.0487632,0,0,1.0487632,294.5495,352.26197)">  
325 - <rect  
326 - ry="24.959145"  
327 - rx="24.959145"  
328 - y="205.91293"  
329 - x="99.836578"  
330 - height="106.07636"  
331 - width="215.27261"  
332 - id="rect4290"  
333 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#fce94f;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.55984557;marker:none;enable-background:accumulate"  
334 - transform="translate(0,308.2677)" />  
335 - <text  
336 - sodipodi:linespacing="125%"  
337 - id="text4292"  
338 - y="575.53479"  
339 - x="140.90532"  
340 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"  
341 - xml:space="preserve"><tspan  
342 - y="575.53479"  
343 - x="140.90532"  
344 - id="tspan4294"  
345 - sodipodi:role="line">Mailman-API</tspan></text>  
346 - </g>  
347 - <g  
348 - style="display:inline"  
349 - id="g4285"  
350 - transform="matrix(1.0487632,0,0,1.0487632,294.5495,37.896878)">  
351 - <rect  
352 - ry="24.959145"  
353 - rx="24.959145"  
354 - y="205.91293"  
355 - x="99.836578"  
356 - height="106.07636"  
357 - width="215.27261"  
358 - id="rect4287"  
359 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#fce94f;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.55984557;marker:none;enable-background:accumulate"  
360 - transform="translate(0,308.2677)" />  
361 - <text  
362 - sodipodi:linespacing="125%"  
363 - id="text4289"  
364 - y="558.85791"  
365 - x="206.59938"  
366 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none"  
367 - xml:space="preserve"><tspan  
368 - y="558.85791"  
369 - x="206.59938"  
370 - id="tspan4291"  
371 - sodipodi:role="line">Backend SMTP</tspan><tspan  
372 - y="588.85791"  
373 - x="206.59938"  
374 - sodipodi:role="line"  
375 - id="tspan4293">(Postfix)</tspan></text>  
376 - </g>  
377 - </g>  
378 - <text  
379 - sodipodi:linespacing="125%"  
380 - id="text4553"  
381 - y="737.41364"  
382 - x="696.45135"  
383 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24.06708527px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;display:inline;fill:#000000;fill-opacity:1;stroke:none"  
384 - xml:space="preserve"><tspan  
385 - y="737.41364"  
386 - x="696.45135"  
387 - sodipodi:role="line"  
388 - id="tspan4557"  
389 - style="font-size:16.46647072px;text-align:start;text-anchor:start">HTTP</tspan></text>  
390 - <text  
391 - xml:space="preserve"  
392 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24.06708527px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;display:inline;fill:#000000;fill-opacity:1;stroke:none"  
393 - x="146.28885"  
394 - y="795.13043"  
395 - id="text4561"  
396 - sodipodi:linespacing="125%"><tspan  
397 - style="font-size:16.46647072px"  
398 - id="tspan4565"  
399 - sodipodi:role="line"  
400 - x="146.28885"  
401 - y="795.13043">SQL</tspan></text>  
402 - <text  
403 - sodipodi:linespacing="125%"  
404 - id="text4569"  
405 - y="799.24341"  
406 - x="259.13419"  
407 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24.06708527px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;display:inline;fill:#000000;fill-opacity:1;stroke:none"  
408 - xml:space="preserve"><tspan  
409 - y="799.24341"  
410 - x="259.13419"  
411 - sodipodi:role="line"  
412 - id="tspan4571"  
413 - style="font-size:16.46647072px">SQL</tspan></text>  
414 - <text  
415 - xml:space="preserve"  
416 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24.06708527px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;display:inline;fill:#000000;fill-opacity:1;stroke:none"  
417 - x="372.56818"  
418 - y="845.12378"  
419 - id="text4573"  
420 - sodipodi:linespacing="125%"><tspan  
421 - style="font-size:16.46647072px"  
422 - id="tspan4575"  
423 - sodipodi:role="line"  
424 - x="372.56818"  
425 - y="845.12378">SQL</tspan></text>  
426 - <text  
427 - sodipodi:linespacing="125%"  
428 - id="text4577"  
429 - y="972.34491"  
430 - x="475.99384"  
431 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24.06708527px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"  
432 - xml:space="preserve"><tspan  
433 - y="972.34491"  
434 - x="475.99384"  
435 - sodipodi:role="line"  
436 - id="tspan4579"  
437 - style="font-size:16.46647072px;text-align:start;text-anchor:start">Protocolo</tspan><tspan  
438 - y="992.92798"  
439 - x="475.99384"  
440 - sodipodi:role="line"  
441 - style="font-size:16.46647072px;text-align:start;text-anchor:start"  
442 - id="tspan4581">nativo</tspan></text>  
443 - <text  
444 - sodipodi:linespacing="125%"  
445 - id="text4589"  
446 - y="510.0722"  
447 - x="169.66902"  
448 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24.06708527px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;display:inline;fill:#000000;fill-opacity:1;stroke:none"  
449 - xml:space="preserve"><tspan  
450 - y="510.0722"  
451 - x="169.66902"  
452 - sodipodi:role="line"  
453 - id="tspan4591"  
454 - style="font-size:16.46647072px">SMTP</tspan></text>  
455 - <text  
456 - sodipodi:linespacing="125%"  
457 - id="text4597"  
458 - y="535.26855"  
459 - x="412.2182"  
460 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24.06708527px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;display:inline;fill:#000000;fill-opacity:1;stroke:none"  
461 - xml:space="preserve"><tspan  
462 - y="535.26855"  
463 - x="412.2182"  
464 - sodipodi:role="line"  
465 - id="tspan4599"  
466 - style="font-size:16.46647072px">SMTP</tspan></text>  
467 - <text  
468 - xml:space="preserve"  
469 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24.06708527px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;display:inline;fill:#000000;fill-opacity:1;stroke:none"  
470 - x="752.76587"  
471 - y="512.67297"  
472 - id="text4309"  
473 - sodipodi:linespacing="125%"><tspan  
474 - style="font-size:16.46647072px"  
475 - id="tspan4311"  
476 - sodipodi:role="line"  
477 - x="752.76587"  
478 - y="512.67297">SMTP</tspan></text>  
479 - </g>  
480 - <g  
481 - inkscape:groupmode="layer"  
482 - id="layer5"  
483 - inkscape:label="Release 2"  
484 - style="display:inline">  
485 - <g  
486 - id="g4372"  
487 - transform="matrix(0.68610294,0,0,0.68610294,-317.62288,50.204216)">  
488 - <g  
489 - id="g4323"  
490 - transform="translate(471.10384,-45.23844)"  
491 - style="display:inline">  
492 - <rect  
493 - ry="24.959101"  
494 - rx="24.959101"  
495 - y="819.93018"  
496 - x="45.238449"  
497 - height="193.43336"  
498 - width="491.38315"  
499 - id="rect4325"  
500 - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#babdb6;fill-opacity:0.61568627;fill-rule:nonzero;stroke:#2e3436;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />  
501 - <text  
502 - sodipodi:linespacing="125%"  
503 - id="text4327"  
504 - y="991.02106"  
505 - x="62.26289"  
506 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15.92820835px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;letter-spacing:0px;word-spacing:0px;fill:#555753;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
507 - xml:space="preserve"><tspan  
508 - style="font-size:22.5px;fill:#555753"  
509 - y="991.02106"  
510 - x="62.26289"  
511 - id="tspan4329"  
512 - sodipodi:role="line">social</tspan></text>  
513 - </g>  
514 - <g  
515 - id="g3042"  
516 - transform="matrix(1.0487632,0,0,1.0487632,544.44394,276.5302)"  
517 - style="display:inline">  
518 - <rect  
519 - ry="24.959145"  
520 - rx="24.959145"  
521 - transform="translate(0,308.2677)"  
522 - y="205.91293"  
523 - x="99.836578"  
524 - height="106.07636"  
525 - width="215.27261"  
526 - id="rect3044"  
527 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#fce94f;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.55984557;marker:none;enable-background:accumulate" />  
528 - <text  
529 - sodipodi:linespacing="125%"  
530 - id="text3046"  
531 - y="575.46283"  
532 - x="157.44057"  
533 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"  
534 - xml:space="preserve"><tspan  
535 - y="575.46283"  
536 - x="157.44057"  
537 - id="tspan3048"  
538 - sodipodi:role="line">Noosfero</tspan></text>  
539 - </g>  
540 - </g>  
541 - <g  
542 - id="g4343"  
543 - transform="matrix(0.68610294,0,0,0.68610294,-373.27764,36.270151)">  
544 - <g  
545 - transform="translate(552.22106,-389.98662)"  
546 - id="g4331"  
547 - style="display:inline">  
548 - <rect  
549 - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#babdb6;fill-opacity:0.61568627;fill-rule:nonzero;stroke:#2e3436;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"  
550 - id="rect4333"  
551 - width="491.38315"  
552 - height="193.43336"  
553 - x="45.238449"  
554 - y="819.93018"  
555 - rx="24.959101"  
556 - ry="24.959101" />  
557 - <text  
558 - xml:space="preserve"  
559 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15.92820835px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;letter-spacing:0px;word-spacing:0px;fill:#555753;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
560 - x="62.26289"  
561 - y="991.02106"  
562 - id="text4335"  
563 - sodipodi:linespacing="125%"><tspan  
564 - sodipodi:role="line"  
565 - id="tspan4337"  
566 - x="62.26289"  
567 - y="991.02106"  
568 - style="font-size:22.5px;fill:#555753">email</tspan></text>  
569 - </g>  
570 - <g  
571 - transform="translate(277.45747,43.873309)"  
572 - id="g4240">  
573 - <g  
574 - id="g4232"  
575 - transform="matrix(1.0487632,0,0,1.0487632,348.10369,-112.09129)"  
576 - style="display:inline">  
577 - <rect  
578 - ry="24.959145"  
579 - rx="24.959145"  
580 - transform="translate(0,308.2677)"  
581 - y="205.91293"  
582 - x="99.836578"  
583 - height="106.07636"  
584 - width="215.27261"  
585 - id="rect4234"  
586 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#fce94f;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.55984557;marker:none;enable-background:accumulate" />  
587 - <text  
588 - sodipodi:linespacing="125%"  
589 - id="text4236"  
590 - y="558.78595"  
591 - x="206.96414"  
592 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none"  
593 - xml:space="preserve"><tspan  
594 - y="558.78595"  
595 - x="206.96414"  
596 - id="tspan4238"  
597 - sodipodi:role="line">Frontend SMTP</tspan><tspan  
598 - y="588.78595"  
599 - x="206.96414"  
600 - sodipodi:role="line"  
601 - id="tspan4281">(Postfix)</tspan></text>  
602 - </g>  
603 - </g>  
604 - </g>  
605 - <g  
606 - transform="matrix(0.68610294,0,0,0.68610294,508.5892,355.84561)"  
607 - id="g4449">  
608 - <rect  
609 - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#d3d7cf;fill-opacity:0.61568627;fill-rule:nonzero;stroke:#babdb6;stroke-width:2.91501451;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"  
610 - id="rect4531"  
611 - width="583.70856"  
612 - height="114.50973"  
613 - x="168.2247"  
614 - y="873.91681"  
615 - rx="9.5793791"  
616 - ry="9.5793791" />  
617 - <g  
618 - style="display:inline"  
619 - transform="translate(471.03,-41.911682)"  
620 - id="g4451">  
621 - <rect  
622 - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#babdb6;fill-opacity:0.61568627;fill-rule:nonzero;stroke:#2e3436;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"  
623 - id="rect4453"  
624 - width="213.55743"  
625 - height="65.710571"  
626 - x="45.238449"  
627 - y="947.65295"  
628 - rx="15.452409"  
629 - ry="15.452409" />  
630 - <text  
631 - xml:space="preserve"  
632 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15.92820835px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;letter-spacing:0px;word-spacing:0px;fill:#555753;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
633 - x="62.26289"  
634 - y="991.02106"  
635 - id="text4455"  
636 - sodipodi:linespacing="125%"><tspan  
637 - sodipodi:role="line"  
638 - id="tspan4457"  
639 - x="62.26289"  
640 - y="991.02106"  
641 - style="font-size:22.5px;fill:#555753">servidor</tspan></text>  
642 - </g>  
643 - <g  
644 - style="display:inline"  
645 - transform="matrix(1.0487632,0,0,1.0487632,246.70565,373.10259)"  
646 - id="g4459">  
647 - <rect  
648 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#fce94f;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.55984557;marker:none;enable-background:accumulate"  
649 - id="rect4461"  
650 - width="106.31865"  
651 - height="52.388897"  
652 - x="99.836578"  
653 - y="205.91293"  
654 - transform="translate(0,308.2677)"  
655 - rx="6.5724359"  
656 - ry="6.5724359" />  
657 - <text  
658 - xml:space="preserve"  
659 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"  
660 - x="112.57272"  
661 - y="546.08508"  
662 - id="text4463"  
663 - sodipodi:linespacing="125%"><tspan  
664 - sodipodi:role="line"  
665 - id="tspan4465"  
666 - x="112.57272"  
667 - y="546.08508">Serviço</tspan></text>  
668 - </g>  
669 - <g  
670 - id="g4526"  
671 - transform="translate(-328.24012,154.13979)">  
672 - <path  
673 - sodipodi:nodetypes="cc"  
674 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:url(#Arrow2Lstart-4);enable-background:accumulate"  
675 - d="m 615.18822,805.26531 -99.9181,0.22208"  
676 - id="path4467"  
677 - inkscape:connector-curvature="0" />  
678 - <text  
679 - sodipodi:linespacing="125%"  
680 - id="text4522"  
681 - y="794.6015"  
682 - x="515.53412"  
683 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20.40509987px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
684 - xml:space="preserve"><tspan  
685 - y="794.6015"  
686 - x="515.53412"  
687 - id="tspan4524"  
688 - sodipodi:role="line">conexão</tspan></text>  
689 - </g>  
690 - <text  
691 - xml:space="preserve"  
692 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20.40509987px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;letter-spacing:0px;word-spacing:0px;fill:#555753;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
693 - x="185.50232"  
694 - y="903.02356"  
695 - id="text4533"  
696 - sodipodi:linespacing="125%"><tspan  
697 - sodipodi:role="line"  
698 - id="tspan4535"  
699 - x="185.50232"  
700 - y="903.02356"  
701 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:25.50637627px;font-family:Cantarell;-inkscape-font-specification:'Cantarell Bold';fill:#555753">Legenda</tspan></text>  
702 - </g>  
703 - </g>  
704 - <g  
705 - inkscape:groupmode="layer"  
706 - id="layer6"  
707 - inkscape:label="Release 3"  
708 - style="display:inline">  
709 - <g  
710 - id="g4358"  
711 - transform="matrix(0.68610294,0,0,0.68610294,439.06367,112.26031)">  
712 - <g  
713 - transform="translate(-1.5599465,-500.74283)"  
714 - id="g4302"  
715 - style="display:inline">  
716 - <rect  
717 - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#babdb6;fill-opacity:0.61568627;fill-rule:nonzero;stroke:#2e3436;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"  
718 - id="rect4296"  
719 - width="491.38315"  
720 - height="193.43336"  
721 - x="45.238449"  
722 - y="819.93018"  
723 - rx="24.959101"  
724 - ry="24.959101" />  
725 - <text  
726 - xml:space="preserve"  
727 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15.92820835px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;letter-spacing:0px;word-spacing:0px;fill:#555753;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
728 - x="62.26289"  
729 - y="991.02106"  
730 - id="text4298"  
731 - sodipodi:linespacing="125%"><tspan  
732 - sodipodi:role="line"  
733 - id="tspan4300"  
734 - x="62.26289"  
735 - y="991.02106"  
736 - style="font-size:22.5px;fill:#555753">reverseproxy</tspan></text>  
737 - </g>  
738 - <g  
739 - id="g3987"  
740 - transform="matrix(1.0487632,0,0,1.0487632,71.78015,-178.97419)"  
741 - style="display:inline">  
742 - <rect  
743 - ry="24.959145"  
744 - rx="24.959145"  
745 - y="205.91293"  
746 - x="99.836578"  
747 - height="106.07636"  
748 - width="215.27261"  
749 - id="rect3989"  
750 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#fce94f;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.55984557;marker:none;enable-background:accumulate"  
751 - transform="translate(0,308.2677)" />  
752 - <text  
753 - sodipodi:linespacing="125%"  
754 - id="text3991"  
755 - y="558.43793"  
756 - x="210.99185"  
757 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none"  
758 - xml:space="preserve"><tspan  
759 - y="558.43793"  
760 - x="210.99185"  
761 - id="tspan3993"  
762 - sodipodi:role="line">Frontend HTTP</tspan><tspan  
763 - y="588.43793"  
764 - x="210.99185"  
765 - sodipodi:role="line"  
766 - id="tspan4283">(nginx)</tspan></text>  
767 - </g>  
768 - </g>  
769 - <path  
770 - inkscape:connector-curvature="0"  
771 - id="path5590"  
772 - d="M 634.01413,602.97673 633.5773,438.71446"  
773 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.02915442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:url(#Arrow2Lstart);enable-background:accumulate"  
774 - sodipodi:nodetypes="cc" />  
775 - <g  
776 - id="g4316">  
777 - <text  
778 - sodipodi:linespacing="125%"  
779 - id="text4547"  
780 - y="739.3808"  
781 - x="638.52301"  
782 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24.06708527px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;display:inline;fill:#000000;fill-opacity:1;stroke:none"  
783 - xml:space="preserve"><tspan  
784 - y="739.3808"  
785 - x="638.52301"  
786 - sodipodi:role="line"  
787 - id="tspan4549"  
788 - style="font-size:16.46647072px;text-align:end;text-anchor:end">HTTP</tspan><tspan  
789 - y="759.96387"  
790 - x="638.52301"  
791 - sodipodi:role="line"  
792 - id="tspan4551"  
793 - style="font-size:16.46647072px;text-align:end;text-anchor:end">reverse proxy</tspan></text>  
794 - <path  
795 - inkscape:connector-curvature="0"  
796 - id="path4433"  
797 - d="m 642.85409,806.32255 0.62824,-122.21061"  
798 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.02915442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:url(#Arrow2Lstart);enable-background:accumulate"  
799 - sodipodi:nodetypes="cc" />  
800 - </g>  
801 - <path  
802 - sodipodi:nodetypes="cc"  
803 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.02915442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:url(#Arrow2Lstart);enable-background:accumulate"  
804 - d="M 816.71832,840.58803 719.21565,680.62121"  
805 - id="path4437"  
806 - inkscape:connector-curvature="0" />  
807 - <g  
808 - id="g4303"  
809 - transform="translate(0,46)">  
810 - <text  
811 - xml:space="preserve"  
812 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24.06708527px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;display:inline;fill:#000000;fill-opacity:1;stroke:none"  
813 - x="495.8562"  
814 - y="575.28687"  
815 - id="text4541"  
816 - sodipodi:linespacing="125%"><tspan  
817 - style="font-size:16.46647072px"  
818 - id="tspan4543"  
819 - sodipodi:role="line"  
820 - x="495.8562"  
821 - y="575.28687">HTTP</tspan><tspan  
822 - style="font-size:16.46647072px"  
823 - id="tspan4545"  
824 - sodipodi:role="line"  
825 - x="495.8562"  
826 - y="595.86993">reverse proxy</tspan></text>  
827 - <path  
828 - sodipodi:nodetypes="cc"  
829 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.02915442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:url(#Arrow2Lstart);enable-background:accumulate"  
830 - d="m 286.22597,602.07324 277.80481,0.26005"  
831 - id="path4439"  
832 - inkscape:connector-curvature="0" />  
833 - </g>  
834 - <path  
835 - inkscape:connector-curvature="0"  
836 - id="path4441"  
837 - d="m 411.43516,957.3684 c 239.5321,0 235.15338,-19.33962 235.15338,-68.74859"  
838 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.02915442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:url(#Arrow2Lstart);enable-background:accumulate"  
839 - sodipodi:nodetypes="cc" />  
840 - <path  
841 - sodipodi:nodetypes="cc"  
842 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.02915442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:url(#Arrow2Lstart);enable-background:accumulate"  
843 - d="M 140.32574,909.45951 C 140.62738,798.81253 166.75122,786.0861 168.49802,691.58769"  
844 - id="path4443"  
845 - inkscape:connector-curvature="0" />  
846 - <path  
847 - inkscape:connector-curvature="0"  
848 - id="path4445"  
849 - d="m 159.64964,909.24573 c 0,-138.13764 114.23617,-142.41767 192.2304,-147.21633 75.80951,-4.66425 84.451,-101.79983 209.20206,-99.46482"  
850 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.02915442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:url(#Arrow2Lstart);enable-background:accumulate"  
851 - sodipodi:nodetypes="csc" />  
852 - <path  
853 - sodipodi:nodetypes="csc"  
854 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.02915442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:url(#Arrow2Lstart);enable-background:accumulate"  
855 - d="m 182.76984,908.6751 c 0.48905,-65.56971 87.97282,-56.5857 179.16269,-59.75395 91.18987,-3.16826 29.79633,-1.39802 200.32338,-1.39802"  
856 - id="path4447"  
857 - inkscape:connector-curvature="0" />  
858 - <path  
859 - sodipodi:nodetypes="cc"  
860 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.02915442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:url(#Arrow2Lstart);enable-background:accumulate"  
861 - d="m 176.55601,439.72033 -1.81382,139.75026"  
862 - id="path4583"  
863 - inkscape:connector-curvature="0" />  
864 - <path  
865 - inkscape:connector-curvature="0"  
866 - id="path4585"  
867 - d="m 211.45042,440.3427 c -0.94665,86.52092 18.19737,103.67492 192.78829,103.67492 168.52022,0 190.21948,-3.35068 190.40409,34.09106"  
868 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.02915442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:url(#Arrow2Lstart);enable-background:accumulate"  
869 - sodipodi:nodetypes="csc" />  
870 - <path  
871 - sodipodi:nodetypes="csc"  
872 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.02915442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:url(#Arrow2Lstart);enable-background:accumulate"  
873 - d="m 900.06319,591.51692 c 0,-101.16094 3.63057,-94.86073 -330.55693,-94.86073 -207.3115,0 -329.6883,25.11129 -327.18986,-57.3023"  
874 - id="path4295"  
875 - inkscape:connector-curvature="0" />  
876 - <text  
877 - sodipodi:linespacing="125%"  
878 - id="text4324"  
879 - y="691.12421"  
880 - x="889.75995"  
881 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24.06708527px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;display:inline;fill:#000000;fill-opacity:1;stroke:none"  
882 - xml:space="preserve"><tspan  
883 - y="691.12421"  
884 - x="889.75995"  
885 - sodipodi:role="line"  
886 - style="font-size:16.46647072px;text-align:end;text-anchor:end"  
887 - id="tspan4338">native protocol</tspan></text>  
888 - <path  
889 - inkscape:connector-curvature="0"  
890 - id="path4330"  
891 - d="m 899.45559,700.56678 0.62824,-27.13274"  
892 - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.02915442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:url(#Arrow2Lstart);enable-background:accumulate"  
893 - sodipodi:nodetypes="cc" />  
894 - </g>  
895 - </g>  
896 - <g  
897 - inkscape:groupmode="layer"  
898 - id="layer2"  
899 - inkscape:label="Manutenção"  
900 - style="display:inline" />  
901 -</svg>  
docs/firewall.rst.in
@@ -40,11 +40,16 @@ Destino Origem Serviço Porta @@ -40,11 +40,16 @@ Destino Origem Serviço Porta
40 database integration Redis 6379 40 database integration Redis 6379
41 database integration PostgreSQL 5432 41 database integration PostgreSQL 5432
42 database social PostgreSQL 5432 42 database social PostgreSQL 5432
  43 +database mezuro PostgreSQL 5432
43 social reverseproxy Nginx 80 44 social reverseproxy Nginx 80
44 social reverseproxy Nginx 443 45 social reverseproxy Nginx 443
  46 +mezuro reverseproxy Nginx 80
  47 +mezuro reverseproxy Nginx 443
45 integration reverseproxy Nginx 80 48 integration reverseproxy Nginx 80
46 integration reverseproxy Nginx 443 49 integration reverseproxy Nginx 443
47 email externa Postfix 25 50 email externa Postfix 25
  51 +monitor externa Nginx 80
  52 +monitor externa Nginx 443
48 reverseproxy externa Nginx 80 53 reverseproxy externa Nginx 80
49 reverseproxy externa Nginx 443 54 reverseproxy externa Nginx 443
50 reverseproxy externa OpenSSH (git) 22 55 reverseproxy externa OpenSSH (git) 22
@@ -58,6 +63,8 @@ Comunicação externa @@ -58,6 +63,8 @@ Comunicação externa
58 Destino Serviço Porta 63 Destino Serviço Porta
59 ============ ============= ===== 64 ============ ============= =====
60 email Postfix 25 65 email Postfix 25
  66 +monitor Nginx 80
  67 +monitor Nginx 443
61 reverseproxy Nginx 80 68 reverseproxy Nginx 80
62 reverseproxy Nginx 443 69 reverseproxy Nginx 443
63 reverseproxy OpenSSH (git) 22 70 reverseproxy OpenSSH (git) 22
docs/implantacao.rst.in
@@ -144,6 +144,8 @@ O comando acima deve dar o seguinte resultado:: @@ -144,6 +144,8 @@ O comando acima deve dar o seguinte resultado::
144 email ssh 144 email ssh
145 social ssh 145 social ssh
146 database ssh 146 database ssh
  147 + mezuro ssh
  148 + monitor ssh
147 reverseproxy ssh 149 reverseproxy ssh
148 150
149 Note que todas as vezes que formos chamar ``rake``, será preciso 151 Note que todas as vezes que formos chamar ``rake``, será preciso
@@ -184,6 +186,10 @@ parecido com o seguinte:: @@ -184,6 +186,10 @@ parecido com o seguinte::
184 social: Qui Mai 14 18:59:24 BRT 2015 186 social: Qui Mai 14 18:59:24 BRT 2015
185 database: $ sudo date 187 database: $ sudo date
186 database: Qui Mai 14 18:59:27 BRT 2015 188 database: Qui Mai 14 18:59:27 BRT 2015
  189 + mezuro: $ sudo date
  190 + mezuro: Qui Mai 14 18:59:24 BRT 2015
  191 + monitor: $ sudo date
  192 + monitor: Qui Mai 14 18:59:25 BRT 2015
187 reverseproxy: $ sudo date 193 reverseproxy: $ sudo date
188 reverseproxy: Qui Mai 14 18:59:28 BRT 2015 194 reverseproxy: Qui Mai 14 18:59:28 BRT 2015
189 195
@@ -300,6 +306,8 @@ atualização em ambientes especificos, por meio dos comandos abaixo: @@ -300,6 +306,8 @@ atualização em ambientes especificos, por meio dos comandos abaixo:
300 * Atualizar a integration: rake converge:social SPB_ENV=homologa 306 * Atualizar a integration: rake converge:social SPB_ENV=homologa
301 * Atualizar a email: rake converge:email SPB_ENV=homologa 307 * Atualizar a email: rake converge:email SPB_ENV=homologa
302 * Atualizar a database: rake converge:database SPB_ENV=homolga 308 * Atualizar a database: rake converge:database SPB_ENV=homolga
  309 + * Atualizar a mezuro: rake converge:mezuro SPB_ENV=homolga
  310 + * Atualizar a monitor: rake converge:monitor SPB_ENV=homolga
303 * Atualizar a reverseproxy: rake converge:reverseproxy SPB_ENV=homologa 311 * Atualizar a reverseproxy: rake converge:reverseproxy SPB_ENV=homologa
304 312
305 > Atenção: Estes comandos devem ser executados dentro da pasta 313 > Atenção: Estes comandos devem ser executados dentro da pasta
docs/manutencao.rst.in
@@ -54,8 +54,8 @@ Os seguintes arquivos a seguir contém logs relevantes para o Portal do SPB, de @@ -54,8 +54,8 @@ Os seguintes arquivos a seguir contém logs relevantes para o Portal do SPB, de
54 modo que é interessante monitorá-los, note que os arquivos estão organizados 54 modo que é interessante monitorá-los, note que os arquivos estão organizados
55 por máquinas. 55 por máquinas.
56 56
57 -* social  
58 - 57 +* Social
  58 +
59 * /var/log/nginx/noosfero.access.log 59 * /var/log/nginx/noosfero.access.log
60 60
61 * /var/log/nginx/noosfero.error.log 61 * /var/log/nginx/noosfero.error.log
@@ -64,7 +64,7 @@ por máquinas. @@ -64,7 +64,7 @@ por máquinas.
64 64
65 * /var/log/rsnapshot 65 * /var/log/rsnapshot
66 66
67 -* integration 67 +* Integration
68 68
69 * /var/log/nginx/colab.access.log 69 * /var/log/nginx/colab.access.log
70 70
@@ -97,10 +97,10 @@ por máquinas. @@ -97,10 +97,10 @@ por máquinas.
97 * /var/log/mailman/qrunner 97 * /var/log/mailman/qrunner
98 98
99 * /var/log/mailman/error 99 * /var/log/mailman/error
100 - 100 +
101 * /var/log/rsnapshot 101 * /var/log/rsnapshot
102 102
103 -* database 103 +* Database
104 104
105 * /var/log/redis/redis.log 105 * /var/log/redis/redis.log
106 106
@@ -111,3 +111,30 @@ por máquinas. @@ -111,3 +111,30 @@ por máquinas.
111 * /var/log/nginx/ssl-\*.access.log 111 * /var/log/nginx/ssl-\*.access.log
112 112
113 * /var/log/nginx/ssl-\*.error.log 113 * /var/log/nginx/ssl-\*.error.log
  114 +
  115 +Alterando Limite de Upload das Ferramentas
  116 +------------
  117 +
  118 +Nas ferramentas existe um limite de tamanho para upload dos arquivos.
  119 +Esta configuração é feita nos arquivos da receita de automação e pode
  120 +ser alterada. **Importante**: essa alteração é realizada na receita de
  121 +automação e pode causar efeitos colaterais durante o *converge*.
  122 +
  123 +
  124 +* **Gitlab**: o *template* `cookbooks/gitlab/templates/nginx.conf.erb` carrega as
  125 +configurações do servidor web. A variável `client_max_body_size` define
  126 +o limite de tamanho para uma requisição. O valor é definido com `<valor>m`,
  127 +exemplo `client_max_body_size = 20m`. Coloque `0` para desabilitar a checagem.
  128 +Consulte a documentação [Nginx](http://nginx.org/en/docs/http/ngx_http_core_module.html)
  129 +para mais informação.
  130 +
  131 +* **Noosfero**: o procedimento é o mesmo definido para o **Gitlab**. O *template*
  132 +a ser alterado `cookbooks/noosfero/templates/nginx.conf.erb`. Outro arquivo a
  133 +ser alterado `cookbooks/noosfero/files/noosfero.yml` a variável `max_upload_size`
  134 +é definido em `<valor>MB`, exemplo `max_upload_size: 500MB`.
  135 +
  136 +* **Reverseproxy**: todas as requisições passam pela máquina reverseproxy. Portanto
  137 +o maior limite de todas as aplicações deve ser colocado na configuração
  138 +do Nginx `cookbooks/reverse_proxy/templates/reverse_proxy.conf.erb` na variável
  139 +`client_max_upload_size`. O valor deve ser definido como `<valor>m`. Exemplo
  140 +`client_max_body_size = 500m` sendo 500m o maior limite entre as ferramentas.
docs/ssh.png 0 → 100644

24.3 KB

docs/ssh.svg 0 → 100644
@@ -0,0 +1,4 @@ @@ -0,0 +1,4 @@
  1 +<?xml version="1.0" standalone="yes"?>
  2 +
  3 +<svg version="1.1" viewBox="0.0 0.0 782.1863517060367 586.3412073490814" fill="none" stroke="none" stroke-linecap="square" stroke-miterlimit="10" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><clipPath id="p.0"><path d="m0 0l782.18634 0l0 586.3412l-782.18634 0l0 -586.3412z" clip-rule="nonzero"></path></clipPath><g clip-path="url(#p.0)"><path fill="#000000" fill-opacity="0.0" d="m0 0l782.18634 0l0 586.3412l-782.18634 0z" fill-rule="nonzero"></path><path fill="#cfe2f3" d="m28.54593 344.7391l0 0c0 -6.9841614 5.661772 -12.645935 12.645922 -12.645935l164.37746 0c3.353897 0 6.57045 1.3323364 8.942017 3.7039185c2.3715668 2.3715515 3.7039032 5.5881042 3.7039032 8.942017l0 50.582153c0 6.9841614 -5.6617737 12.645935 -12.64592 12.645935l-164.37746 0l0 0c-6.98415 0 -12.645922 -5.6617737 -12.645922 -12.645935z" fill-rule="nonzero"></path><path stroke="#1155cc" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m28.54593 344.7391l0 0c0 -6.9841614 5.661772 -12.645935 12.645922 -12.645935l164.37746 0c3.353897 0 6.57045 1.3323364 8.942017 3.7039185c2.3715668 2.3715515 3.7039032 5.5881042 3.7039032 8.942017l0 50.582153c0 6.9841614 -5.6617737 12.645935 -12.64592 12.645935l-164.37746 0l0 0c-6.98415 0 -12.645922 -5.6617737 -12.645922 -12.645935z" fill-rule="nonzero"></path><path fill="#434343" d="m96.58928 372.52832l2.671875 -0.265625q0.234375 1.34375 0.96875 1.984375q0.75 0.625 2.0 0.625q1.328125 0 2.0 -0.5625q0.671875 -0.5625 0.671875 -1.3125q0 -0.484375 -0.28125 -0.8125q-0.28125 -0.34375 -0.984375 -0.59375q-0.484375 -0.171875 -2.203125 -0.59375q-2.203125 -0.546875 -3.09375 -1.34375q-1.265625 -1.125 -1.265625 -2.734375q0 -1.046875 0.59375 -1.953125q0.59375 -0.90625 1.703125 -1.375q1.109375 -0.46875 2.671875 -0.46875q2.5625 0 3.859375 1.125q1.296875 1.109375 1.359375 2.984375l-2.75 0.125q-0.171875 -1.046875 -0.75 -1.5q-0.578125 -0.46875 -1.75 -0.46875q-1.1875 0 -1.875 0.5q-0.4375 0.3125 -0.4375 0.84375q0 0.484375 0.421875 0.828125q0.515625 0.421875 2.515625 0.90625q2.0 0.46875 2.953125 0.984375q0.96875 0.5 1.515625 1.375q0.546875 0.875 0.546875 2.15625q0 1.171875 -0.65625 2.203125q-0.640625 1.015625 -1.828125 1.515625q-1.1875 0.484375 -2.96875 0.484375q-2.578125 0 -3.96875 -1.1875q-1.375 -1.1875 -1.640625 -3.46875zm12.521698 -0.640625q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25zm17.911606 -2.015625l-2.5625 0.46875q-0.140625 -0.78125 -0.59375 -1.171875q-0.453125 -0.390625 -1.1875 -0.390625q-0.984375 0 -1.5625 0.671875q-0.578125 0.671875 -0.578125 2.25q0 1.765625 0.578125 2.484375q0.59375 0.71875 1.59375 0.71875q0.75 0 1.21875 -0.421875q0.46875 -0.421875 0.671875 -1.453125l2.546875 0.4375q-0.390625 1.765625 -1.53125 2.671875q-1.125 0.890625 -3.03125 0.890625q-2.15625 0 -3.453125 -1.359375q-1.28125 -1.359375 -1.28125 -3.78125q0 -2.4375 1.296875 -3.796875q1.296875 -1.359375 3.484375 -1.359375q1.796875 0 2.859375 0.78125q1.0625 0.765625 1.53125 2.359375zm1.7819672 -4.25l0 -2.40625l2.609375 0l0 2.40625l-2.609375 0zm0 11.1875l0 -9.859375l2.609375 0l0 9.859375l-2.609375 0zm7.136429 -6.84375l-2.359375 -0.4375q0.390625 -1.421875 1.359375 -2.109375q0.984375 -0.6875 2.90625 -0.6875q1.734375 0 2.59375 0.421875q0.859375 0.40625 1.203125 1.046875q0.34375 0.625 0.34375 2.328125l-0.03125 3.046875q0 1.296875 0.125 1.921875q0.125 0.609375 0.46875 1.3125l-2.578125 0q-0.09375 -0.265625 -0.25 -0.765625q-0.0625 -0.234375 -0.09375 -0.3125q-0.65625 0.65625 -1.421875 0.984375q-0.765625 0.3125 -1.625 0.3125q-1.515625 0 -2.40625 -0.8125q-0.875 -0.828125 -0.875 -2.09375q0 -0.84375 0.390625 -1.484375q0.40625 -0.65625 1.125 -1.0q0.71875 -0.359375 2.078125 -0.625q1.828125 -0.328125 2.53125 -0.625l0 -0.265625q0 -0.75 -0.375 -1.0625q-0.359375 -0.328125 -1.390625 -0.328125q-0.703125 0 -1.09375 0.28125q-0.390625 0.265625 -0.625 0.953125zm3.484375 2.109375q-0.5 0.171875 -1.59375 0.40625q-1.078125 0.234375 -1.40625 0.453125q-0.515625 0.359375 -0.515625 0.921875q0 0.546875 0.40625 0.953125q0.40625 0.390625 1.046875 0.390625q0.703125 0 1.34375 -0.46875q0.46875 -0.359375 0.625 -0.859375q0.09375 -0.34375 0.09375 -1.28125l0 -0.515625zm4.938217 4.734375l0 -13.59375l2.609375 0l0 13.59375l-2.609375 0z" fill-rule="nonzero"></path><path fill="#cfe2f3" d="m296.25723 344.7391l0 0c0 -6.9841614 5.661743 -12.645935 12.645905 -12.645935l164.37744 0c3.3539124 0 6.570465 1.3323364 8.942017 3.7039185c2.371582 2.3715515 3.7039185 5.5881042 3.7039185 8.942017l0 50.582153c0 6.9841614 -5.6617737 12.645935 -12.645935 12.645935l-164.37744 0l0 0c-6.9841614 0 -12.645905 -5.6617737 -12.645905 -12.645935z" fill-rule="nonzero"></path><path stroke="#1155cc" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m296.25723 344.7391l0 0c0 -6.9841614 5.661743 -12.645935 12.645905 -12.645935l164.37744 0c3.3539124 0 6.570465 1.3323364 8.942017 3.7039185c2.371582 2.3715515 3.7039185 5.5881042 3.7039185 8.942017l0 50.582153c0 6.9841614 -5.6617737 12.645935 -12.645935 12.645935l-164.37744 0l0 0c-6.9841614 0 -12.645905 -5.6617737 -12.645905 -12.645935z" fill-rule="nonzero"></path><path fill="#434343" d="m344.19495 376.9502l0 -13.59375l2.75 0l0 13.59375l-2.75 0zm14.214539 0l-2.609375 0l0 -5.03125q0 -1.59375 -0.171875 -2.0625q-0.15625 -0.46875 -0.53125 -0.71875q-0.375 -0.265625 -0.90625 -0.265625q-0.6875 0 -1.234375 0.375q-0.53125 0.359375 -0.734375 0.984375q-0.1875 0.609375 -0.1875 2.25l0 4.46875l-2.609375 0l0 -9.859375l2.421875 0l0 1.453125q1.296875 -1.671875 3.25 -1.671875q0.859375 0 1.578125 0.3125q0.71875 0.3125 1.078125 0.796875q0.359375 0.484375 0.5 1.09375q0.15625 0.609375 0.15625 1.75l0 6.125zm6.942871 -9.859375l0 2.078125l-1.78125 0l0 3.984375q0 1.203125 0.046875 1.40625q0.0625 0.1875 0.234375 0.328125q0.1875 0.125 0.453125 0.125q0.359375 0 1.046875 -0.25l0.21875 2.015625q-0.90625 0.390625 -2.0625 0.390625q-0.703125 0 -1.265625 -0.234375q-0.5625 -0.234375 -0.828125 -0.609375q-0.265625 -0.375 -0.375 -1.015625q-0.078125 -0.453125 -0.078125 -1.84375l0 -4.296875l-1.203125 0l0 -2.078125l1.203125 0l0 -1.953125l2.609375 -1.515625l0 3.46875l1.78125 0zm7.400177 6.71875l2.609375 0.4375q-0.5 1.4375 -1.59375 2.1875q-1.078125 0.734375 -2.703125 0.734375q-2.5625 0 -3.796875 -1.671875q-0.96875 -1.34375 -0.96875 -3.40625q0 -2.4375 1.265625 -3.828125q1.28125 -1.390625 3.25 -1.390625q2.1875 0 3.453125 1.453125q1.28125 1.453125 1.234375 4.453125l-6.53125 0q0.015625 1.15625 0.625 1.8125q0.609375 0.640625 1.5 0.640625q0.609375 0 1.03125 -0.328125q0.421875 -0.34375 0.625 -1.09375zm0.15625 -2.625q-0.03125 -1.140625 -0.59375 -1.71875q-0.546875 -0.59375 -1.34375 -0.59375q-0.859375 0 -1.40625 0.625q-0.5625 0.609375 -0.546875 1.6875l3.890625 0zm4.281952 6.421875l2.96875 0.359375q0.078125 0.515625 0.34375 0.703125q0.375 0.28125 1.171875 0.28125q1.03125 0 1.53125 -0.296875q0.34375 -0.203125 0.515625 -0.65625q0.125 -0.328125 0.125 -1.203125l0 -1.4375q-1.171875 1.59375 -2.953125 1.59375q-1.984375 0 -3.140625 -1.671875q-0.90625 -1.328125 -0.90625 -3.3125q0 -2.46875 1.1875 -3.78125q1.1875 -1.3125 2.96875 -1.3125q1.828125 0 3.015625 1.609375l0 -1.390625l2.4375 0l0 8.84375q0 1.75 -0.296875 2.609375q-0.28125 0.859375 -0.796875 1.34375q-0.515625 0.5 -1.390625 0.78125q-0.859375 0.28125 -2.1875 0.28125q-2.515625 0 -3.5625 -0.859375q-1.046875 -0.859375 -1.046875 -2.171875q0 -0.140625 0.015625 -0.3125zm2.328125 -5.78125q0 1.5625 0.609375 2.296875q0.609375 0.71875 1.5 0.71875q0.953125 0 1.609375 -0.734375q0.65625 -0.75 0.65625 -2.21875q0 -1.53125 -0.640625 -2.265625q-0.625 -0.75 -1.578125 -0.75q-0.9375 0 -1.546875 0.734375q-0.609375 0.71875 -0.609375 2.21875zm11.802246 5.125l-2.609375 0l0 -9.859375l2.421875 0l0 1.40625q0.625 -0.984375 1.109375 -1.296875q0.5 -0.328125 1.140625 -0.328125q0.890625 0 1.71875 0.5l-0.8125 2.265625q-0.65625 -0.421875 -1.21875 -0.421875q-0.546875 0 -0.9375 0.296875q-0.375 0.296875 -0.59375 1.09375q-0.21875 0.78125 -0.21875 3.296875l0 3.046875zm6.713379 -6.84375l-2.359375 -0.4375q0.390625 -1.421875 1.359375 -2.109375q0.984375 -0.6875 2.90625 -0.6875q1.734375 0 2.59375 0.421875q0.859375 0.40625 1.203125 1.046875q0.34375 0.625 0.34375 2.328125l-0.03125 3.046875q0 1.296875 0.125 1.921875q0.125 0.609375 0.46875 1.3125l-2.578125 0q-0.09375 -0.265625 -0.25 -0.765625q-0.0625 -0.234375 -0.09375 -0.3125q-0.65625 0.65625 -1.421875 0.984375q-0.765625 0.3125 -1.625 0.3125q-1.515625 0 -2.40625 -0.8125q-0.875 -0.828125 -0.875 -2.09375q0 -0.84375 0.390625 -1.484375q0.40625 -0.65625 1.125 -1.0q0.71875 -0.359375 2.078125 -0.625q1.828125 -0.328125 2.53125 -0.625l0 -0.265625q0 -0.75 -0.375 -1.0625q-0.359375 -0.328125 -1.390625 -0.328125q-0.703125 0 -1.09375 0.28125q-0.390625 0.265625 -0.625 0.953125zm3.484375 2.109375q-0.5 0.171875 -1.59375 0.40625q-1.078125 0.234375 -1.40625 0.453125q-0.515625 0.359375 -0.515625 0.921875q0 0.546875 0.40625 0.953125q0.40625 0.390625 1.046875 0.390625q0.703125 0 1.34375 -0.46875q0.46875 -0.359375 0.625 -0.859375q0.09375 -0.34375 0.09375 -1.28125l0 -0.515625zm9.453857 -5.125l0 2.078125l-1.78125 0l0 3.984375q0 1.203125 0.046875 1.40625q0.0625 0.1875 0.234375 0.328125q0.1875 0.125 0.453125 0.125q0.359375 0 1.046875 -0.25l0.21875 2.015625q-0.90625 0.390625 -2.0625 0.390625q-0.703125 0 -1.265625 -0.234375q-0.5625 -0.234375 -0.828125 -0.609375q-0.265625 -0.375 -0.375 -1.015625q-0.078125 -0.453125 -0.078125 -1.84375l0 -4.296875l-1.203125 0l0 -2.078125l1.203125 0l0 -1.953125l2.609375 -1.515625l0 3.46875l1.78125 0zm1.697052 -1.328125l0 -2.40625l2.609375 0l0 2.40625l-2.609375 0zm0 11.1875l0 -9.859375l2.609375 0l0 9.859375l-2.609375 0zm4.5895386 -5.0625q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25zm18.286621 4.921875l-2.609375 0l0 -5.03125q0 -1.59375 -0.171875 -2.0625q-0.15625 -0.46875 -0.53125 -0.71875q-0.375 -0.265625 -0.90625 -0.265625q-0.6875 0 -1.234375 0.375q-0.53125 0.359375 -0.734375 0.984375q-0.1875 0.609375 -0.1875 2.25l0 4.46875l-2.609375 0l0 -9.859375l2.421875 0l0 1.453125q1.296875 -1.671875 3.25 -1.671875q0.859375 0 1.578125 0.3125q0.71875 0.3125 1.078125 0.796875q0.359375 0.484375 0.5 1.09375q0.15625 0.609375 0.15625 1.75l0 6.125z" fill-rule="nonzero"></path><path fill="#cfe2f3" d="m296.25723 175.04881l0 0c0 -6.984146 5.661743 -12.64592 12.645905 -12.64592l164.37744 0c3.3539124 0 6.570465 1.3323212 8.942017 3.7039032c2.371582 2.3715668 3.7039185 5.5881042 3.7039185 8.942017l0 50.58217c0 6.984146 -5.6617737 12.64592 -12.645935 12.64592l-164.37744 0l0 0c-6.9841614 0 -12.645905 -5.6617737 -12.645905 -12.64592z" fill-rule="nonzero"></path><path stroke="#1155cc" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m296.25723 175.04881l0 0c0 -6.984146 5.661743 -12.64592 12.645905 -12.64592l164.37744 0c3.3539124 0 6.570465 1.3323212 8.942017 3.7039032c2.371582 2.3715668 3.7039185 5.5881042 3.7039185 8.942017l0 50.58217c0 6.984146 -5.6617737 12.64592 -12.645935 12.64592l-164.37744 0l0 0c-6.9841614 0 -12.645905 -5.6617737 -12.645905 -12.64592z" fill-rule="nonzero"></path><path fill="#434343" d="m330.77475 207.25989l0 -13.59375l5.78125 0q2.1875 0 3.171875 0.359375q0.984375 0.359375 1.578125 1.296875q0.59375 0.9375 0.59375 2.15625q0 1.53125 -0.90625 2.53125q-0.890625 0.984375 -2.6875 1.25q0.890625 0.515625 1.46875 1.140625q0.578125 0.625 1.5625 2.203125l1.671875 2.65625l-3.296875 0l-1.984375 -2.953125q-1.046875 -1.59375 -1.4375 -2.0q-0.390625 -0.421875 -0.828125 -0.5625q-0.4375 -0.15625 -1.390625 -0.15625l-0.546875 0l0 5.671875l-2.75 0zm2.75 -7.84375l2.03125 0q1.96875 0 2.453125 -0.171875q0.5 -0.171875 0.78125 -0.578125q0.28125 -0.40625 0.28125 -1.015625q0 -0.6875 -0.375 -1.109375q-0.359375 -0.421875 -1.03125 -0.53125q-0.328125 -0.046875 -2.0 -0.046875l-2.140625 0l0 3.453125zm16.394836 4.703125l2.609375 0.4375q-0.5 1.4375 -1.59375 2.1875q-1.078125 0.734375 -2.703125 0.734375q-2.5625 0 -3.796875 -1.671875q-0.96875 -1.34375 -0.96875 -3.40625q0 -2.4375 1.265625 -3.828125q1.28125 -1.390625 3.25 -1.390625q2.1875 0 3.453125 1.453125q1.28125 1.453125 1.234375 4.453125l-6.53125 0q0.015625 1.15625 0.625 1.8125q0.609375 0.640625 1.5 0.640625q0.609375 0 1.03125 -0.328125q0.421875 -0.34375 0.625 -1.09375zm0.15625 -2.625q-0.03125 -1.140625 -0.59375 -1.71875q-0.546875 -0.59375 -1.34375 -0.59375q-0.859375 0 -1.40625 0.625q-0.5625 0.609375 -0.546875 1.6875l3.890625 0zm7.235077 5.765625l-3.96875 -9.859375l2.734375 0l1.84375 5.03125l0.546875 1.6875q0.21875 -0.640625 0.265625 -0.84375q0.125 -0.421875 0.28125 -0.84375l1.875 -5.03125l2.671875 0l-3.90625 9.859375l-2.34375 0zm13.360107 -3.140625l2.609375 0.4375q-0.5 1.4375 -1.59375 2.1875q-1.078125 0.734375 -2.703125 0.734375q-2.5625 0 -3.796875 -1.671875q-0.96875 -1.34375 -0.96875 -3.40625q0 -2.4375 1.265625 -3.828125q1.28125 -1.390625 3.25 -1.390625q2.1875 0 3.453125 1.453125q1.28125 1.453125 1.234375 4.453125l-6.53125 0q0.015625 1.15625 0.625 1.8125q0.609375 0.640625 1.5 0.640625q0.609375 0 1.03125 -0.328125q0.421875 -0.34375 0.625 -1.09375zm0.15625 -2.625q-0.03125 -1.140625 -0.59375 -1.71875q-0.546875 -0.59375 -1.34375 -0.59375q-0.859375 0 -1.40625 0.625q-0.5625 0.609375 -0.546875 1.6875l3.890625 0zm7.016327 5.765625l-2.609375 0l0 -9.859375l2.421875 0l0 1.40625q0.625 -0.984375 1.109375 -1.296875q0.5 -0.328125 1.140625 -0.328125q0.890625 0 1.71875 0.5l-0.8125 2.265625q-0.65625 -0.421875 -1.21875 -0.421875q-0.546875 0 -0.9375 0.296875q-0.375 0.296875 -0.59375 1.09375q-0.21875 0.78125 -0.21875 3.296875l0 3.046875zm3.8540344 -2.8125l2.609375 -0.390625q0.171875 0.75 0.671875 1.15625q0.515625 0.390625 1.4375 0.390625q1.0 0 1.515625 -0.375q0.34375 -0.265625 0.34375 -0.703125q0 -0.296875 -0.1875 -0.484375q-0.1875 -0.1875 -0.875 -0.34375q-3.140625 -0.703125 -4.0 -1.265625q-1.15625 -0.796875 -1.15625 -2.21875q0 -1.28125 1.0 -2.15625q1.015625 -0.875 3.140625 -0.875q2.03125 0 3.0 0.65625q0.984375 0.65625 1.359375 1.953125l-2.453125 0.453125q-0.15625 -0.578125 -0.609375 -0.875q-0.4375 -0.3125 -1.25 -0.3125q-1.03125 0 -1.46875 0.296875q-0.296875 0.203125 -0.296875 0.515625q0 0.28125 0.25 0.484375q0.359375 0.25 2.4375 0.734375q2.078125 0.46875 2.90625 1.15625q0.828125 0.6875 0.828125 1.9375q0 1.359375 -1.140625 2.328125q-1.125 0.96875 -3.34375 0.96875q-2.015625 0 -3.1875 -0.8125q-1.171875 -0.8125 -1.53125 -2.21875zm16.985077 -0.328125l2.609375 0.4375q-0.5 1.4375 -1.59375 2.1875q-1.078125 0.734375 -2.703125 0.734375q-2.5625 0 -3.796875 -1.671875q-0.96875 -1.34375 -0.96875 -3.40625q0 -2.4375 1.265625 -3.828125q1.28125 -1.390625 3.25 -1.390625q2.1875 0 3.453125 1.453125q1.28125 1.453125 1.234375 4.453125l-6.53125 0q0.015625 1.15625 0.625 1.8125q0.609375 0.640625 1.5 0.640625q0.609375 0 1.03125 -0.328125q0.421875 -0.34375 0.625 -1.09375zm0.15625 -2.625q-0.03125 -1.140625 -0.59375 -1.71875q-0.546875 -0.59375 -1.34375 -0.59375q-0.859375 0 -1.40625 0.625q-0.5625 0.609375 -0.546875 1.6875l3.890625 0zm4.4538574 -4.09375l2.421875 0l0 1.453125q0.46875 -0.734375 1.28125 -1.203125q0.8125 -0.46875 1.796875 -0.46875q1.703125 0 2.90625 1.34375q1.203125 1.34375 1.203125 3.75q0 2.46875 -1.21875 3.84375q-1.203125 1.359375 -2.921875 1.359375q-0.8125 0 -1.484375 -0.3125q-0.65625 -0.328125 -1.390625 -1.125l0 4.96875l-2.59375 0l0 -13.609375zm2.578125 4.765625q0 1.65625 0.65625 2.453125q0.65625 0.796875 1.59375 0.796875q0.921875 0 1.515625 -0.71875q0.609375 -0.734375 0.609375 -2.40625q0 -1.546875 -0.625 -2.296875q-0.625 -0.75 -1.53125 -0.75q-0.96875 0 -1.59375 0.734375q-0.625 0.734375 -0.625 2.1875zm11.380341 5.09375l-2.609375 0l0 -9.859375l2.421875 0l0 1.40625q0.625 -0.984375 1.109375 -1.296875q0.5 -0.328125 1.140625 -0.328125q0.890625 0 1.71875 0.5l-0.8125 2.265625q-0.65625 -0.421875 -1.21875 -0.421875q-0.546875 0 -0.9375 0.296875q-0.375 0.296875 -0.59375 1.09375q-0.21875 0.78125 -0.21875 3.296875l0 3.046875zm4.1665344 -5.0625q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25zm8.067841 4.921875l3.5625 -5.078125l-3.40625 -4.78125l3.171875 0l1.75 2.71875l1.828125 -2.71875l3.0625 0l-3.328125 4.671875l3.640625 5.1875l-3.203125 0l-2.0 -3.046875l-2.03125 3.046875l-3.046875 0zm10.391357 -9.859375l2.78125 0l2.359375 7.0l2.296875 -7.0l2.703125 0l-3.484375 9.484375l-0.625 1.71875q-0.34375 0.859375 -0.65625 1.3125q-0.296875 0.46875 -0.703125 0.75q-0.40625 0.28125 -1.0 0.4375q-0.59375 0.15625 -1.328125 0.15625q-0.75 0 -1.46875 -0.15625l-0.234375 -2.046875q0.609375 0.125 1.09375 0.125q0.921875 0 1.34375 -0.53125q0.4375 -0.53125 0.671875 -1.359375l-3.75 -9.890625z" fill-rule="nonzero"></path><path fill="#cfe2f3" d="m563.9685 344.7391l0 0c0 -6.9841614 5.661743 -12.645935 12.645935 -12.645935l164.37744 0c3.3538818 0 6.5704346 1.3323364 8.942017 3.7039185c2.371582 2.3715515 3.7039185 5.5881042 3.7039185 8.942017l0 50.582153c0 6.9841614 -5.661804 12.645935 -12.645935 12.645935l-164.37744 0l0 0c-6.984192 0 -12.645935 -5.6617737 -12.645935 -12.645935z" fill-rule="nonzero"></path><path stroke="#1155cc" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m563.9685 344.7391l0 0c0 -6.9841614 5.661743 -12.645935 12.645935 -12.645935l164.37744 0c3.3538818 0 6.5704346 1.3323364 8.942017 3.7039185c2.371582 2.3715515 3.7039185 5.5881042 3.7039185 8.942017l0 50.582153c0 6.9841614 -5.661804 12.645935 -12.645935 12.645935l-164.37744 0l0 0c-6.984192 0 -12.645935 -5.6617737 -12.645935 -12.645935z" fill-rule="nonzero"></path><path fill="#434343" d="m618.69806 363.35645l5.015625 0q1.703125 0 2.59375 0.25q1.1875 0.359375 2.046875 1.265625q0.859375 0.890625 1.296875 2.203125q0.453125 1.296875 0.453125 3.203125q0 1.6875 -0.421875 2.890625q-0.515625 1.484375 -1.453125 2.40625q-0.71875 0.703125 -1.9375 1.09375q-0.90625 0.28125 -2.421875 0.28125l-5.171875 0l0 -13.59375zm2.75 2.296875l0 9.0l2.046875 0q1.140625 0 1.65625 -0.125q0.671875 -0.171875 1.109375 -0.5625q0.4375 -0.40625 0.71875 -1.3125q0.28125 -0.921875 0.28125 -2.5q0 -1.578125 -0.28125 -2.421875q-0.28125 -0.84375 -0.78125 -1.3125q-0.5 -0.46875 -1.265625 -0.640625q-0.578125 -0.125 -2.25 -0.125l-1.234375 0zm12.660461 4.453125l-2.359375 -0.4375q0.390625 -1.421875 1.359375 -2.109375q0.984375 -0.6875 2.90625 -0.6875q1.734375 0 2.59375 0.421875q0.859375 0.40625 1.203125 1.046875q0.34375 0.625 0.34375 2.328125l-0.03125 3.046875q0 1.296875 0.125 1.921875q0.125 0.609375 0.46875 1.3125l-2.578125 0q-0.09375 -0.265625 -0.25 -0.765625q-0.0625 -0.234375 -0.09375 -0.3125q-0.65625 0.65625 -1.421875 0.984375q-0.765625 0.3125 -1.625 0.3125q-1.515625 0 -2.40625 -0.8125q-0.875 -0.828125 -0.875 -2.09375q0 -0.84375 0.390625 -1.484375q0.40625 -0.65625 1.125 -1.0q0.71875 -0.359375 2.078125 -0.625q1.828125 -0.328125 2.53125 -0.625l0 -0.265625q0 -0.75 -0.375 -1.0625q-0.359375 -0.328125 -1.390625 -0.328125q-0.703125 0 -1.09375 0.28125q-0.390625 0.265625 -0.625 0.953125zm3.484375 2.109375q-0.5 0.171875 -1.59375 0.40625q-1.078125 0.234375 -1.40625 0.453125q-0.515625 0.359375 -0.515625 0.921875q0 0.546875 0.40625 0.953125q0.40625 0.390625 1.046875 0.390625q0.703125 0 1.34375 -0.46875q0.46875 -0.359375 0.625 -0.859375q0.09375 -0.34375 0.09375 -1.28125l0 -0.515625zm9.453796 -5.125l0 2.078125l-1.78125 0l0 3.984375q0 1.203125 0.046875 1.40625q0.0625 0.1875 0.234375 0.328125q0.1875 0.125 0.453125 0.125q0.359375 0 1.046875 -0.25l0.21875 2.015625q-0.90625 0.390625 -2.0625 0.390625q-0.703125 0 -1.265625 -0.234375q-0.5625 -0.234375 -0.828125 -0.609375q-0.265625 -0.375 -0.375 -1.015625q-0.078125 -0.453125 -0.078125 -1.84375l0 -4.296875l-1.203125 0l0 -2.078125l1.203125 0l0 -1.953125l2.609375 -1.515625l0 3.46875l1.78125 0zm3.6502075 3.015625l-2.359375 -0.4375q0.390625 -1.421875 1.359375 -2.109375q0.984375 -0.6875 2.90625 -0.6875q1.734375 0 2.59375 0.421875q0.859375 0.40625 1.203125 1.046875q0.34375 0.625 0.34375 2.328125l-0.03125 3.046875q0 1.296875 0.125 1.921875q0.125 0.609375 0.46875 1.3125l-2.578125 0q-0.09375 -0.265625 -0.25 -0.765625q-0.0625 -0.234375 -0.09375 -0.3125q-0.65625 0.65625 -1.421875 0.984375q-0.765625 0.3125 -1.625 0.3125q-1.515625 0 -2.40625 -0.8125q-0.875 -0.828125 -0.875 -2.09375q0 -0.84375 0.390625 -1.484375q0.40625 -0.65625 1.125 -1.0q0.71875 -0.359375 2.078125 -0.625q1.828125 -0.328125 2.53125 -0.625l0 -0.265625q0 -0.75 -0.375 -1.0625q-0.359375 -0.328125 -1.390625 -0.328125q-0.703125 0 -1.09375 0.28125q-0.390625 0.265625 -0.625 0.953125zm3.484375 2.109375q-0.5 0.171875 -1.59375 0.40625q-1.078125 0.234375 -1.40625 0.453125q-0.515625 0.359375 -0.515625 0.921875q0 0.546875 0.40625 0.953125q0.40625 0.390625 1.046875 0.390625q0.703125 0 1.34375 -0.46875q0.46875 -0.359375 0.625 -0.859375q0.09375 -0.34375 0.09375 -1.28125l0 -0.515625zm4.8288574 4.734375l0 -13.59375l2.609375 0l0 4.890625q1.203125 -1.375 2.859375 -1.375q1.796875 0 2.96875 1.3125q1.1875 1.296875 1.1875 3.734375q0 2.53125 -1.203125 3.890625q-1.203125 1.359375 -2.921875 1.359375q-0.84375 0 -1.671875 -0.421875q-0.8125 -0.421875 -1.40625 -1.25l0 1.453125l-2.421875 0zm2.59375 -5.140625q0 1.53125 0.484375 2.265625q0.671875 1.03125 1.796875 1.03125q0.859375 0 1.46875 -0.734375q0.609375 -0.734375 0.609375 -2.328125q0 -1.6875 -0.609375 -2.421875q-0.609375 -0.75 -1.578125 -0.75q-0.9375 0 -1.5625 0.734375q-0.609375 0.71875 -0.609375 2.203125zm10.864685 -1.703125l-2.359375 -0.4375q0.390625 -1.421875 1.359375 -2.109375q0.984375 -0.6875 2.90625 -0.6875q1.734375 0 2.59375 0.421875q0.859375 0.40625 1.203125 1.046875q0.34375 0.625 0.34375 2.328125l-0.03125 3.046875q0 1.296875 0.125 1.921875q0.125 0.609375 0.46875 1.3125l-2.578125 0q-0.09375 -0.265625 -0.25 -0.765625q-0.0625 -0.234375 -0.09375 -0.3125q-0.65625 0.65625 -1.421875 0.984375q-0.765625 0.3125 -1.625 0.3125q-1.515625 0 -2.40625 -0.8125q-0.875 -0.828125 -0.875 -2.09375q0 -0.84375 0.390625 -1.484375q0.40625 -0.65625 1.125 -1.0q0.71875 -0.359375 2.078125 -0.625q1.828125 -0.328125 2.53125 -0.625l0 -0.265625q0 -0.75 -0.375 -1.0625q-0.359375 -0.328125 -1.390625 -0.328125q-0.703125 0 -1.09375 0.28125q-0.390625 0.265625 -0.625 0.953125zm3.484375 2.109375q-0.5 0.171875 -1.59375 0.40625q-1.078125 0.234375 -1.40625 0.453125q-0.515625 0.359375 -0.515625 0.921875q0 0.546875 0.40625 0.953125q0.40625 0.390625 1.046875 0.390625q0.703125 0 1.34375 -0.46875q0.46875 -0.359375 0.625 -0.859375q0.09375 -0.34375 0.09375 -1.28125l0 -0.515625zm4.0319824 1.921875l2.609375 -0.390625q0.171875 0.75 0.671875 1.15625q0.515625 0.390625 1.4375 0.390625q1.0 0 1.515625 -0.375q0.34375 -0.265625 0.34375 -0.703125q0 -0.296875 -0.1875 -0.484375q-0.1875 -0.1875 -0.875 -0.34375q-3.140625 -0.703125 -4.0 -1.265625q-1.15625 -0.796875 -1.15625 -2.21875q0 -1.28125 1.0 -2.15625q1.015625 -0.875 3.140625 -0.875q2.03125 0 3.0 0.65625q0.984375 0.65625 1.359375 1.953125l-2.453125 0.453125q-0.15625 -0.578125 -0.609375 -0.875q-0.4375 -0.3125 -1.25 -0.3125q-1.03125 0 -1.46875 0.296875q-0.296875 0.203125 -0.296875 0.515625q0 0.28125 0.25 0.484375q0.359375 0.25 2.4375 0.734375q2.078125 0.46875 2.90625 1.15625q0.828125 0.6875 0.828125 1.9375q0 1.359375 -1.140625 2.328125q-1.125 0.96875 -3.34375 0.96875q-2.015625 0 -3.1875 -0.8125q-1.171875 -0.8125 -1.53125 -2.21875zm16.985107 -0.328125l2.609375 0.4375q-0.5 1.4375 -1.59375 2.1875q-1.078125 0.734375 -2.703125 0.734375q-2.5625 0 -3.796875 -1.671875q-0.96875 -1.34375 -0.96875 -3.40625q0 -2.4375 1.265625 -3.828125q1.28125 -1.390625 3.25 -1.390625q2.1875 0 3.453125 1.453125q1.28125 1.453125 1.234375 4.453125l-6.53125 0q0.015625 1.15625 0.625 1.8125q0.609375 0.640625 1.5 0.640625q0.609375 0 1.03125 -0.328125q0.421875 -0.34375 0.625 -1.09375zm0.15625 -2.625q-0.03125 -1.140625 -0.59375 -1.71875q-0.546875 -0.59375 -1.34375 -0.59375q-0.859375 0 -1.40625 0.625q-0.5625 0.609375 -0.546875 1.6875l3.890625 0z" fill-rule="nonzero"></path><path fill="#cfe2f3" d="m563.9685 492.99368l0 0c0 -6.984131 5.661743 -12.645905 12.645935 -12.645905l164.37744 0c3.3538818 0 6.5704346 1.3323364 8.942017 3.703888c2.371582 2.371582 3.7039185 5.5881042 3.7039185 8.942017l0 50.582184c0 6.984131 -5.661804 12.645935 -12.645935 12.645935l-164.37744 0l0 0c-6.984192 0 -12.645935 -5.661804 -12.645935 -12.645935z" fill-rule="nonzero"></path><path stroke="#1155cc" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m563.9685 492.99368l0 0c0 -6.984131 5.661743 -12.645905 12.645935 -12.645905l164.37744 0c3.3538818 0 6.5704346 1.3323364 8.942017 3.703888c2.371582 2.371582 3.7039185 5.5881042 3.7039185 8.942017l0 50.582184c0 6.984131 -5.661804 12.645935 -12.645935 12.645935l-164.37744 0l0 0c-6.984192 0 -12.645935 -5.661804 -12.645935 -12.645935z" fill-rule="nonzero"></path><path fill="#434343" d="m625.9544 525.2048l0 -13.59375l4.109375 0l2.46875 9.265625l2.4375 -9.265625l4.125 0l0 13.59375l-2.546875 0l0 -10.703125l-2.703125 10.703125l-2.640625 0l-2.703125 -10.703125l0 10.703125l-2.546875 0zm14.9626465 -5.0625q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25zm18.286621 4.921875l-2.609375 0l0 -5.03125q0 -1.59375 -0.171875 -2.0625q-0.15625 -0.46875 -0.53125 -0.71875q-0.375 -0.265625 -0.90625 -0.265625q-0.6875 0 -1.234375 0.375q-0.53125 0.359375 -0.734375 0.984375q-0.1875 0.609375 -0.1875 2.25l0 4.46875l-2.609375 0l0 -9.859375l2.421875 0l0 1.453125q1.296875 -1.671875 3.25 -1.671875q0.859375 0 1.578125 0.3125q0.71875 0.3125 1.078125 0.796875q0.359375 0.484375 0.5 1.09375q0.15625 0.609375 0.15625 1.75l0 6.125zm2.427246 -11.1875l0 -2.40625l2.609375 0l0 2.40625l-2.609375 0zm0 11.1875l0 -9.859375l2.609375 0l0 9.859375l-2.609375 0zm9.698914 -9.859375l0 2.078125l-1.78125 0l0 3.984375q0 1.203125 0.046875 1.40625q0.0625 0.1875 0.234375 0.328125q0.1875 0.125 0.453125 0.125q0.359375 0 1.046875 -0.25l0.21875 2.015625q-0.90625 0.390625 -2.0625 0.390625q-0.703125 0 -1.265625 -0.234375q-0.5625 -0.234375 -0.828125 -0.609375q-0.265625 -0.375 -0.375 -1.015625q-0.078125 -0.453125 -0.078125 -1.84375l0 -4.296875l-1.203125 0l0 -2.078125l1.203125 0l0 -1.953125l2.609375 -1.515625l0 3.46875l1.78125 0zm1.1033325 4.796875q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25zm11.81781 4.921875l-2.609375 0l0 -9.859375l2.421875 0l0 1.40625q0.625 -0.984375 1.109375 -1.296875q0.5 -0.328125 1.140625 -0.328125q0.890625 0 1.71875 0.5l-0.8125 2.265625q-0.65625 -0.421875 -1.21875 -0.421875q-0.546875 0 -0.9375 0.296875q-0.375 0.296875 -0.59375 1.09375q-0.21875 0.78125 -0.21875 3.296875l0 3.046875z" fill-rule="nonzero"></path><path fill="#cfe2f3" d="m296.25723 492.99368l0 0c0 -6.984131 5.661743 -12.645905 12.645905 -12.645905l164.37744 0c3.3539124 0 6.570465 1.3323364 8.942017 3.703888c2.371582 2.371582 3.7039185 5.5881042 3.7039185 8.942017l0 50.582184c0 6.984131 -5.6617737 12.645935 -12.645935 12.645935l-164.37744 0l0 0c-6.9841614 0 -12.645905 -5.661804 -12.645905 -12.645935z" fill-rule="nonzero"></path><path stroke="#1155cc" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m296.25723 492.99368l0 0c0 -6.984131 5.661743 -12.645905 12.645905 -12.645905l164.37744 0c3.3539124 0 6.570465 1.3323364 8.942017 3.703888c2.371582 2.371582 3.7039185 5.5881042 3.7039185 8.942017l0 50.582184c0 6.984131 -5.6617737 12.645935 -12.645935 12.645935l-164.37744 0l0 0c-6.9841614 0 -12.645905 -5.661804 -12.645905 -12.645935z" fill-rule="nonzero"></path><path fill="#434343" d="m359.78717 525.2048l0 -13.59375l4.109375 0l2.46875 9.265625l2.4375 -9.265625l4.125 0l0 13.59375l-2.546875 0l0 -10.703125l-2.703125 10.703125l-2.640625 0l-2.703125 -10.703125l0 10.703125l-2.546875 0zm21.259552 -3.140625l2.609375 0.4375q-0.5 1.4375 -1.59375 2.1875q-1.078125 0.734375 -2.703125 0.734375q-2.5625 0 -3.796875 -1.671875q-0.96875 -1.34375 -0.96875 -3.40625q0 -2.4375 1.265625 -3.828125q1.28125 -1.390625 3.25 -1.390625q2.1875 0 3.453125 1.453125q1.28125 1.453125 1.234375 4.453125l-6.53125 0q0.015625 1.15625 0.625 1.8125q0.609375 0.640625 1.5 0.640625q0.609375 0 1.03125 -0.328125q0.421875 -0.34375 0.625 -1.09375zm0.15625 -2.625q-0.03125 -1.140625 -0.59375 -1.71875q-0.546875 -0.59375 -1.34375 -0.59375q-0.859375 0 -1.40625 0.625q-0.5625 0.609375 -0.546875 1.6875l3.890625 0zm3.4694824 5.765625l0 -2.03125l3.703125 -4.234375q0.90625 -1.046875 1.34375 -1.484375q-0.453125 0.03125 -1.203125 0.046875l-3.484375 0.015625l0 -2.171875l8.15625 0l0 1.859375l-3.765625 4.328125l-1.328125 1.4375q1.078125 -0.0625 1.34375 -0.0625l4.03125 0l0 2.296875l-8.796875 0zm16.859375 0l0 -1.46875q-0.53125 0.78125 -1.40625 1.234375q-0.875 0.453125 -1.859375 0.453125q-0.984375 0 -1.78125 -0.4375q-0.78125 -0.4375 -1.140625 -1.21875q-0.34375 -0.796875 -0.34375 -2.1875l0 -6.234375l2.609375 0l0 4.53125q0 2.078125 0.140625 2.546875q0.140625 0.46875 0.515625 0.75q0.390625 0.265625 0.96875 0.265625q0.671875 0 1.203125 -0.359375q0.53125 -0.375 0.71875 -0.90625q0.1875 -0.546875 0.1875 -2.671875l0 -4.15625l2.609375 0l0 9.859375l-2.421875 0zm7.4115906 0l-2.609375 0l0 -9.859375l2.421875 0l0 1.40625q0.625 -0.984375 1.109375 -1.296875q0.5 -0.328125 1.140625 -0.328125q0.890625 0 1.71875 0.5l-0.8125 2.265625q-0.65625 -0.421875 -1.21875 -0.421875q-0.546875 0 -0.9375 0.296875q-0.375 0.296875 -0.59375 1.09375q-0.21875 0.78125 -0.21875 3.296875l0 3.046875zm4.1665344 -5.0625q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25z" fill-rule="nonzero"></path><path fill="#cfe2f3" d="m28.54593 492.99368l0 0c0 -6.984131 5.661772 -12.645905 12.645922 -12.645905l164.37746 0c3.353897 0 6.57045 1.3323364 8.942017 3.703888c2.3715668 2.371582 3.7039032 5.5881042 3.7039032 8.942017l0 50.582184c0 6.984131 -5.6617737 12.645935 -12.64592 12.645935l-164.37746 0l0 0c-6.98415 0 -12.645922 -5.661804 -12.645922 -12.645935z" fill-rule="nonzero"></path><path stroke="#1155cc" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m28.54593 492.99368l0 0c0 -6.984131 5.661772 -12.645905 12.645922 -12.645905l164.37746 0c3.353897 0 6.57045 1.3323364 8.942017 3.703888c2.3715668 2.371582 3.7039032 5.5881042 3.7039032 8.942017l0 50.582184c0 6.984131 -5.6617737 12.645935 -12.64592 12.645935l-164.37746 0l0 0c-6.98415 0 -12.645922 -5.661804 -12.645922 -12.645935z" fill-rule="nonzero"></path><path fill="#434343" d="m99.86843 525.2048l0 -13.59375l10.09375 0l0 2.296875l-7.34375 0l0 3.015625l6.828125 0l0 2.28125l-6.828125 0l0 3.703125l7.609375 0l0 2.296875l-10.359375 0zm12.240448 -9.859375l2.40625 0l0 1.359375q1.28125 -1.578125 3.0625 -1.578125q0.953125 0 1.640625 0.390625q0.703125 0.390625 1.140625 1.1875q0.65625 -0.796875 1.40625 -1.1875q0.75 -0.390625 1.609375 -0.390625q1.078125 0 1.828125 0.453125q0.75 0.4375 1.125 1.28125q0.265625 0.640625 0.265625 2.046875l0 6.296875l-2.609375 0l0 -5.625q0 -1.46875 -0.265625 -1.90625q-0.359375 -0.546875 -1.109375 -0.546875q-0.546875 0 -1.03125 0.34375q-0.484375 0.328125 -0.703125 0.96875q-0.203125 0.640625 -0.203125 2.03125l0 4.734375l-2.609375 0l0 -5.40625q0 -1.4375 -0.140625 -1.84375q-0.140625 -0.421875 -0.4375 -0.625q-0.28125 -0.203125 -0.78125 -0.203125q-0.609375 0 -1.09375 0.328125q-0.484375 0.3125 -0.6875 0.9375q-0.203125 0.609375 -0.203125 2.03125l0 4.78125l-2.609375 0l0 -9.859375zm18.729027 3.015625l-2.359375 -0.4375q0.390625 -1.421875 1.359375 -2.109375q0.984375 -0.6875 2.90625 -0.6875q1.734375 0 2.59375 0.421875q0.859375 0.40625 1.203125 1.046875q0.34375 0.625 0.34375 2.328125l-0.03125 3.046875q0 1.296875 0.125 1.921875q0.125 0.609375 0.46875 1.3125l-2.578125 0q-0.09375 -0.265625 -0.25 -0.765625q-0.0625 -0.234375 -0.09375 -0.3125q-0.65625 0.65625 -1.421875 0.984375q-0.765625 0.3125 -1.625 0.3125q-1.515625 0 -2.40625 -0.8125q-0.875 -0.828125 -0.875 -2.09375q0 -0.84375 0.390625 -1.484375q0.40625 -0.65625 1.125 -1.0q0.71875 -0.359375 2.078125 -0.625q1.828125 -0.328125 2.53125 -0.625l0 -0.265625q0 -0.75 -0.375 -1.0625q-0.359375 -0.328125 -1.390625 -0.328125q-0.703125 0 -1.09375 0.28125q-0.390625 0.265625 -0.625 0.953125zm3.484375 2.109375q-0.5 0.171875 -1.59375 0.40625q-1.078125 0.234375 -1.40625 0.453125q-0.515625 0.359375 -0.515625 0.921875q0 0.546875 0.40625 0.953125q0.40625 0.390625 1.046875 0.390625q0.703125 0 1.34375 -0.46875q0.46875 -0.359375 0.625 -0.859375q0.09375 -0.34375 0.09375 -1.28125l0 -0.515625zm4.938217 -6.453125l0 -2.40625l2.609375 0l0 2.40625l-2.609375 0zm0 11.1875l0 -9.859375l2.609375 0l0 9.859375l-2.609375 0zm5.183304 0l0 -13.59375l2.609375 0l0 13.59375l-2.609375 0z" fill-rule="nonzero"></path><path fill="#000000" fill-opacity="0.0" d="m391.09186 30.119423l0 132.28348" fill-rule="nonzero"></path><path stroke="#7f6000" stroke-width="3.0" stroke-linejoin="round" stroke-linecap="butt" d="m391.09186 30.119423l0 114.28347" fill-rule="evenodd"></path><path fill="#7f6000" stroke="#7f6000" stroke-width="3.0" stroke-linecap="butt" d="m386.13666 144.4029l4.9552 13.614288l4.9552 -13.614288z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m296.25723 370.03018l-78.04726 0" fill-rule="nonzero"></path><path stroke="#073763" stroke-width="3.0" stroke-linejoin="round" stroke-linecap="butt" d="m296.25723 370.03018l-60.047256 0" fill-rule="evenodd"></path><path fill="#073763" stroke="#073763" stroke-width="3.0" stroke-linecap="butt" d="m236.20998 365.07498l-13.614288 4.9552l13.614288 4.9552z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m391.09186 407.9672l0 72.37796" fill-rule="nonzero"></path><path stroke="#073763" stroke-width="3.0" stroke-linejoin="round" stroke-linecap="butt" d="m391.09186 407.9672l0 54.37796" fill-rule="evenodd"></path><path fill="#073763" stroke="#073763" stroke-width="3.0" stroke-linecap="butt" d="m386.13666 462.34515l4.9552 13.614288l4.9552 -13.614288z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m391.09186 407.9672l-267.71652 72.37796" fill-rule="nonzero"></path><path stroke="#073763" stroke-width="3.0" stroke-linejoin="round" stroke-linecap="butt" d="m391.09186 407.9672l-250.34035 67.68024" fill-rule="evenodd"></path><path fill="#073763" stroke="#073763" stroke-width="3.0" stroke-linecap="butt" d="m139.45828 470.86398l-11.849243 8.336578l14.435684 1.2303467z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m391.09186 407.9672l267.71655 72.37796" fill-rule="nonzero"></path><path stroke="#073763" stroke-width="3.0" stroke-linejoin="round" stroke-linecap="butt" d="m391.09186 407.9672l250.34033 67.68024" fill-rule="evenodd"></path><path fill="#073763" stroke="#073763" stroke-width="3.0" stroke-linecap="butt" d="m640.139 480.4309l14.43573 -1.2303467l-11.849243 -8.336578z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m485.9265 370.03018l78.04724 0" fill-rule="nonzero"></path><path stroke="#073763" stroke-width="3.0" stroke-linejoin="round" stroke-linecap="butt" d="m485.9265 370.03018l60.04724 0" fill-rule="evenodd"></path><path fill="#073763" stroke="#073763" stroke-width="3.0" stroke-linecap="butt" d="m545.97375 374.98538l13.614319 -4.9552l-13.614319 -4.9552z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m403.58267 75.39239l139.90549 0l0 41.732285l-139.90549 0z" fill-rule="nonzero"></path><path fill="#783f04" d="m455.04288 97.89051l2.671875 -0.265625q0.234375 1.34375 0.96875 1.984375q0.75 0.625 2.0 0.625q1.328125 0 2.0 -0.5625q0.671875 -0.5625 0.671875 -1.3125q0 -0.484375 -0.28125 -0.8125q-0.28125 -0.34375 -0.984375 -0.59375q-0.484375 -0.171875 -2.203125 -0.59375q-2.203125 -0.546875 -3.09375 -1.34375q-1.265625 -1.125 -1.265625 -2.734375q0 -1.046875 0.59375 -1.953125q0.59375 -0.90625 1.703125 -1.375q1.109375 -0.46875 2.671875 -0.46875q2.5625 0 3.859375 1.125q1.296875 1.109375 1.359375 2.984375l-2.75 0.125q-0.171875 -1.046875 -0.75 -1.5q-0.578125 -0.46875 -1.75 -0.46875q-1.1875 0 -1.875 0.5q-0.4375 0.3125 -0.4375 0.84375q0 0.484375 0.421875 0.828125q0.515625 0.421875 2.515625 0.90625q2.0 0.46875 2.953125 0.984375q0.96875 0.5 1.515625 1.375q0.546875 0.875 0.546875 2.15625q0 1.171875 -0.65625 2.203125q-0.640625 1.015625 -1.828125 1.515625q-1.1875 0.484375 -2.96875 0.484375q-2.578125 0 -3.96875 -1.1875q-1.375 -1.1875 -1.640625 -3.46875zm12.443573 0l2.671875 -0.265625q0.234375 1.34375 0.96875 1.984375q0.75 0.625 2.0 0.625q1.328125 0 2.0 -0.5625q0.671875 -0.5625 0.671875 -1.3125q0 -0.484375 -0.28125 -0.8125q-0.28125 -0.34375 -0.984375 -0.59375q-0.484375 -0.171875 -2.203125 -0.59375q-2.203125 -0.546875 -3.09375 -1.34375q-1.265625 -1.125 -1.265625 -2.734375q0 -1.046875 0.59375 -1.953125q0.59375 -0.90625 1.703125 -1.375q1.109375 -0.46875 2.671875 -0.46875q2.5625 0 3.859375 1.125q1.296875 1.109375 1.359375 2.984375l-2.75 0.125q-0.171875 -1.046875 -0.75 -1.5q-0.578125 -0.46875 -1.75 -0.46875q-1.1875 0 -1.875 0.5q-0.4375 0.3125 -0.4375 0.84375q0 0.484375 0.421875 0.828125q0.515625 0.421875 2.515625 0.90625q2.0 0.46875 2.953125 0.984375q0.96875 0.5 1.515625 1.375q0.546875 0.875 0.546875 2.15625q0 1.171875 -0.65625 2.203125q-0.640625 1.015625 -1.828125 1.515625q-1.1875 0.484375 -2.96875 0.484375q-2.578125 0 -3.96875 -1.1875q-1.375 -1.1875 -1.640625 -3.46875zm13.146698 4.421875l0 -13.59375l2.75 0l0 5.34375l5.375 0l0 -5.34375l2.75 0l0 13.59375l-2.75 0l0 -5.953125l-5.375 0l0 5.953125l-2.75 0z" fill-rule="nonzero"></path><path fill="#000000" fill-opacity="0.0" d="m403.58267 251.29527l139.90549 0l0 67.779526l-139.90549 0z" fill-rule="nonzero"></path><path fill="#783f04" d="m455.04288 273.7934l2.671875 -0.265625q0.234375 1.34375 0.96875 1.984375q0.75 0.625 2.0 0.625q1.328125 0 2.0 -0.5625q0.671875 -0.5625 0.671875 -1.3125q0 -0.484375 -0.28125 -0.8125q-0.28125 -0.34375 -0.984375 -0.59375q-0.484375 -0.171875 -2.203125 -0.59375q-2.203125 -0.546875 -3.09375 -1.34375q-1.265625 -1.125 -1.265625 -2.734375q0 -1.046875 0.59375 -1.953125q0.59375 -0.90625 1.703125 -1.375q1.109375 -0.46875 2.671875 -0.46875q2.5625 0 3.859375 1.125q1.296875 1.109375 1.359375 2.984375l-2.75 0.125q-0.171875 -1.046875 -0.75 -1.5q-0.578125 -0.46875 -1.75 -0.46875q-1.1875 0 -1.875 0.5q-0.4375 0.3125 -0.4375 0.84375q0 0.484375 0.421875 0.828125q0.515625 0.421875 2.515625 0.90625q2.0 0.46875 2.953125 0.984375q0.96875 0.5 1.515625 1.375q0.546875 0.875 0.546875 2.15625q0 1.171875 -0.65625 2.203125q-0.640625 1.015625 -1.828125 1.515625q-1.1875 0.484375 -2.96875 0.484375q-2.578125 0 -3.96875 -1.1875q-1.375 -1.1875 -1.640625 -3.46875zm12.443573 0l2.671875 -0.265625q0.234375 1.34375 0.96875 1.984375q0.75 0.625 2.0 0.625q1.328125 0 2.0 -0.5625q0.671875 -0.5625 0.671875 -1.3125q0 -0.484375 -0.28125 -0.8125q-0.28125 -0.34375 -0.984375 -0.59375q-0.484375 -0.171875 -2.203125 -0.59375q-2.203125 -0.546875 -3.09375 -1.34375q-1.265625 -1.125 -1.265625 -2.734375q0 -1.046875 0.59375 -1.953125q0.59375 -0.90625 1.703125 -1.375q1.109375 -0.46875 2.671875 -0.46875q2.5625 0 3.859375 1.125q1.296875 1.109375 1.359375 2.984375l-2.75 0.125q-0.171875 -1.046875 -0.75 -1.5q-0.578125 -0.46875 -1.75 -0.46875q-1.1875 0 -1.875 0.5q-0.4375 0.3125 -0.4375 0.84375q0 0.484375 0.421875 0.828125q0.515625 0.421875 2.515625 0.90625q2.0 0.46875 2.953125 0.984375q0.96875 0.5 1.515625 1.375q0.546875 0.875 0.546875 2.15625q0 1.171875 -0.65625 2.203125q-0.640625 1.015625 -1.828125 1.515625q-1.1875 0.484375 -2.96875 0.484375q-2.578125 0 -3.96875 -1.1875q-1.375 -1.1875 -1.640625 -3.46875zm13.146698 4.421875l0 -13.59375l2.75 0l0 5.34375l5.375 0l0 -5.34375l2.75 0l0 13.59375l-2.75 0l0 -5.953125l-5.375 0l0 5.953125l-2.75 0z" fill-rule="nonzero"></path><path fill="#783f04" d="m425.3266 304.21527l-1.796875 0q-1.40625 -2.140625 -2.15625 -4.453125q-0.734375 -2.3125 -0.734375 -4.46875q0 -2.6875 0.90625 -5.078125q0.796875 -2.078125 2.03125 -3.828125l1.78125 0q-1.28125 2.8125 -1.765625 4.78125q-0.46875 1.96875 -0.46875 4.171875q0 1.53125 0.28125 3.125q0.28125 1.59375 0.78125 3.03125q0.328125 0.953125 1.140625 2.71875zm1.931427 -4.0l0 -13.59375l9.3125 0l0 2.296875l-6.578125 0l0 3.21875l5.6875 0l0 2.296875l-5.6875 0l0 5.78125l-2.734375 0zm10.755341 -5.0625q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25zm11.817871 4.921875l-2.609375 0l0 -9.859375l2.421875 0l0 1.40625q0.625 -0.984375 1.109375 -1.296875q0.5 -0.328125 1.140625 -0.328125q0.890625 0 1.71875 0.5l-0.8125 2.265625q-0.65625 -0.421875 -1.21875 -0.421875q-0.546875 0 -0.9375 0.296875q-0.375 0.296875 -0.59375 1.09375q-0.21875 0.78125 -0.21875 3.296875l0 3.046875zm6.604004 0l-3.125 -9.859375l2.53125 0l1.859375 6.46875l1.6875 -6.46875l2.515625 0l1.640625 6.46875l1.890625 -6.46875l2.5625 0l-3.15625 9.859375l-2.515625 0l-1.6875 -6.34375l-1.671875 6.34375l-2.53125 0zm14.620819 -6.84375l-2.359375 -0.4375q0.390625 -1.421875 1.359375 -2.109375q0.984375 -0.6875 2.90625 -0.6875q1.734375 0 2.59375 0.421875q0.859375 0.40625 1.203125 1.046875q0.34375 0.625 0.34375 2.328125l-0.03125 3.046875q0 1.296875 0.125 1.921875q0.125 0.609375 0.46875 1.3125l-2.578125 0q-0.09375 -0.265625 -0.25 -0.765625q-0.0625 -0.234375 -0.09375 -0.3125q-0.65625 0.65625 -1.421875 0.984375q-0.765625 0.3125 -1.625 0.3125q-1.515625 0 -2.40625 -0.8125q-0.875 -0.828125 -0.875 -2.09375q0 -0.84375 0.390625 -1.484375q0.40625 -0.65625 1.125 -1.0q0.71875 -0.359375 2.078125 -0.625q1.828125 -0.328125 2.53125 -0.625l0 -0.265625q0 -0.75 -0.375 -1.0625q-0.359375 -0.328125 -1.390625 -0.328125q-0.703125 0 -1.09375 0.28125q-0.390625 0.265625 -0.625 0.953125zm3.484375 2.109375q-0.5 0.171875 -1.59375 0.40625q-1.078125 0.234375 -1.40625 0.453125q-0.515625 0.359375 -0.515625 0.921875q0 0.546875 0.40625 0.953125q0.40625 0.390625 1.046875 0.390625q0.703125 0 1.34375 -0.46875q0.46875 -0.359375 0.625 -0.859375q0.09375 -0.34375 0.09375 -1.28125l0 -0.515625zm7.438202 4.734375l-2.609375 0l0 -9.859375l2.421875 0l0 1.40625q0.625 -0.984375 1.109375 -1.296875q0.5 -0.328125 1.140625 -0.328125q0.890625 0 1.71875 0.5l-0.8125 2.265625q-0.65625 -0.421875 -1.21875 -0.421875q-0.546875 0 -0.9375 0.296875q-0.375 0.296875 -0.59375 1.09375q-0.21875 0.78125 -0.21875 3.296875l0 3.046875zm13.807159 0l-2.421875 0l0 -1.453125q-0.609375 0.84375 -1.4375 1.265625q-0.8125 0.40625 -1.640625 0.40625q-1.703125 0 -2.921875 -1.359375q-1.203125 -1.375 -1.203125 -3.828125q0 -2.5 1.171875 -3.796875q1.1875 -1.3125 2.984375 -1.3125q1.65625 0 2.859375 1.375l0 -4.890625l2.609375 0l0 13.59375zm-6.96875 -5.140625q0 1.578125 0.4375 2.28125q0.640625 1.015625 1.765625 1.015625q0.90625 0 1.53125 -0.765625q0.625 -0.765625 0.625 -2.28125q0 -1.703125 -0.609375 -2.4375q-0.609375 -0.75 -1.5625 -0.75q-0.9375 0 -1.5625 0.734375q-0.625 0.734375 -0.625 2.203125zm15.020966 2.0l2.609375 0.4375q-0.5 1.4375 -1.59375 2.1875q-1.078125 0.734375 -2.703125 0.734375q-2.5625 0 -3.796875 -1.671875q-0.96875 -1.34375 -0.96875 -3.40625q0 -2.4375 1.265625 -3.828125q1.28125 -1.390625 3.25 -1.390625q2.1875 0 3.453125 1.453125q1.28125 1.453125 1.234375 4.453125l-6.53125 0q0.015625 1.15625 0.625 1.8125q0.609375 0.640625 1.5 0.640625q0.609375 0 1.03125 -0.328125q0.421875 -0.34375 0.625 -1.09375zm0.15625 -2.625q-0.03125 -1.140625 -0.59375 -1.71875q-0.546875 -0.59375 -1.34375 -0.59375q-0.859375 0 -1.40625 0.625q-0.5625 0.609375 -0.546875 1.6875l3.890625 0zm13.563232 5.765625l-2.421875 0l0 -1.453125q-0.609375 0.84375 -1.4375 1.265625q-0.8125 0.40625 -1.640625 0.40625q-1.703125 0 -2.921875 -1.359375q-1.203125 -1.375 -1.203125 -3.828125q0 -2.5 1.171875 -3.796875q1.1875 -1.3125 2.984375 -1.3125q1.65625 0 2.859375 1.375l0 -4.890625l2.609375 0l0 13.59375zm-6.96875 -5.140625q0 1.578125 0.4375 2.28125q0.640625 1.015625 1.765625 1.015625q0.90625 0 1.53125 -0.765625q0.625 -0.765625 0.625 -2.28125q0 -1.703125 -0.609375 -2.4375q-0.609375 -0.75 -1.5625 -0.75q-0.9375 0 -1.5625 0.734375q-0.625 0.734375 -0.625 2.203125zm8.599121 9.140625q0.765625 -1.65625 1.078125 -2.546875q0.328125 -0.875 0.59375 -2.015625q0.265625 -1.15625 0.390625 -2.1875q0.140625 -1.03125 0.140625 -2.125q0 -2.203125 -0.484375 -4.171875q-0.46875 -1.96875 -1.734375 -4.78125l1.765625 0q1.40625 1.984375 2.171875 4.234375q0.78125 2.234375 0.78125 4.53125q0 1.9375 -0.609375 4.15625q-0.703125 2.484375 -2.296875 4.90625l-1.796875 0z" fill-rule="nonzero"></path><path fill="#000000" fill-opacity="0.0" d="m375.09186 238.2769l0 93.82677" fill-rule="nonzero"></path><path stroke="#5b0f00" stroke-width="3.0" stroke-linejoin="round" stroke-linecap="butt" d="m375.09186 256.27692l0 75.82675" fill-rule="evenodd"></path><path fill="#5b0f00" stroke="#5b0f00" stroke-width="3.0" stroke-linecap="butt" d="m380.04706 256.27692l-4.9552 -13.614304l-4.9552 13.614304z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m407.09186 238.2769l0 93.82677" fill-rule="nonzero"></path><path stroke="#7f6000" stroke-width="3.0" stroke-linejoin="round" stroke-linecap="butt" d="m407.09186 238.2769l0 75.82677" fill-rule="evenodd"></path><path fill="#7f6000" stroke="#7f6000" stroke-width="3.0" stroke-linecap="butt" d="m402.13666 314.10367l4.9552 13.614288l4.9552 -13.614288z" fill-rule="evenodd"></path><path fill="#000000" fill-opacity="0.0" d="m211.91339 251.29527l146.20471 0l0 67.779526l-146.20471 0z" fill-rule="nonzero"></path><path fill="#5b0f00" d="m266.5232 273.7934l2.671875 -0.265625q0.234375 1.34375 0.96875 1.984375q0.75 0.625 2.0 0.625q1.328125 0 2.0 -0.5625q0.671875 -0.5625 0.671875 -1.3125q0 -0.484375 -0.28125 -0.8125q-0.28125 -0.34375 -0.984375 -0.59375q-0.484375 -0.171875 -2.203125 -0.59375q-2.203125 -0.546875 -3.09375 -1.34375q-1.265625 -1.125 -1.265625 -2.734375q0 -1.046875 0.59375 -1.953125q0.59375 -0.90625 1.703125 -1.375q1.109375 -0.46875 2.671875 -0.46875q2.5625 0 3.859375 1.125q1.296875 1.109375 1.359375 2.984375l-2.75 0.125q-0.171875 -1.046875 -0.75 -1.5q-0.578125 -0.46875 -1.75 -0.46875q-1.1875 0 -1.875 0.5q-0.4375 0.3125 -0.4375 0.84375q0 0.484375 0.421875 0.828125q0.515625 0.421875 2.515625 0.90625q2.0 0.46875 2.953125 0.984375q0.96875 0.5 1.515625 1.375q0.546875 0.875 0.546875 2.15625q0 1.171875 -0.65625 2.203125q-0.640625 1.015625 -1.828125 1.515625q-1.1875 0.484375 -2.96875 0.484375q-2.578125 0 -3.96875 -1.1875q-1.375 -1.1875 -1.640625 -3.46875zm12.443573 0l2.671875 -0.265625q0.234375 1.34375 0.96875 1.984375q0.75 0.625 2.0 0.625q1.328125 0 2.0 -0.5625q0.671875 -0.5625 0.671875 -1.3125q0 -0.484375 -0.28125 -0.8125q-0.28125 -0.34375 -0.984375 -0.59375q-0.484375 -0.171875 -2.203125 -0.59375q-2.203125 -0.546875 -3.09375 -1.34375q-1.265625 -1.125 -1.265625 -2.734375q0 -1.046875 0.59375 -1.953125q0.59375 -0.90625 1.703125 -1.375q1.109375 -0.46875 2.671875 -0.46875q2.5625 0 3.859375 1.125q1.296875 1.109375 1.359375 2.984375l-2.75 0.125q-0.171875 -1.046875 -0.75 -1.5q-0.578125 -0.46875 -1.75 -0.46875q-1.1875 0 -1.875 0.5q-0.4375 0.3125 -0.4375 0.84375q0 0.484375 0.421875 0.828125q0.515625 0.421875 2.515625 0.90625q2.0 0.46875 2.953125 0.984375q0.96875 0.5 1.515625 1.375q0.546875 0.875 0.546875 2.15625q0 1.171875 -0.65625 2.203125q-0.640625 1.015625 -1.828125 1.515625q-1.1875 0.484375 -2.96875 0.484375q-2.578125 0 -3.96875 -1.1875q-1.375 -1.1875 -1.640625 -3.46875zm13.146698 4.421875l0 -13.59375l2.75 0l0 5.34375l5.375 0l0 -5.34375l2.75 0l0 13.59375l-2.75 0l0 -5.953125l-5.375 0l0 5.953125l-2.75 0z" fill-rule="nonzero"></path><path fill="#5b0f00" d="m229.02284 304.21527l-1.796875 0q-1.40625 -2.140625 -2.15625 -4.453125q-0.734375 -2.3125 -0.734375 -4.46875q0 -2.6875 0.90625 -5.078125q0.796875 -2.078125 2.03125 -3.828125l1.78125 0q-1.28125 2.8125 -1.765625 4.78125q-0.46875 1.96875 -0.46875 4.171875q0 1.53125 0.28125 3.125q0.28125 1.59375 0.78125 3.03125q0.328125 0.953125 1.140625 2.71875zm3.837677 -10.84375l-2.359375 -0.4375q0.390625 -1.421875 1.359375 -2.109375q0.984375 -0.6875 2.90625 -0.6875q1.734375 0 2.59375 0.421875q0.859375 0.40625 1.203125 1.046875q0.34375 0.625 0.34375 2.328125l-0.03125 3.046875q0 1.296875 0.125 1.921875q0.125 0.609375 0.46875 1.3125l-2.578125 0q-0.09375 -0.265625 -0.25 -0.765625q-0.0625 -0.234375 -0.09375 -0.3125q-0.65625 0.65625 -1.421875 0.984375q-0.765625 0.3125 -1.625 0.3125q-1.515625 0 -2.40625 -0.8125q-0.875 -0.828125 -0.875 -2.09375q0 -0.84375 0.390625 -1.484375q0.40625 -0.65625 1.125 -1.0q0.71875 -0.359375 2.078125 -0.625q1.828125 -0.328125 2.53125 -0.625l0 -0.265625q0 -0.75 -0.375 -1.0625q-0.359375 -0.328125 -1.390625 -0.328125q-0.703125 0 -1.09375 0.28125q-0.390625 0.265625 -0.625 0.953125zm3.484375 2.109375q-0.5 0.171875 -1.59375 0.40625q-1.078125 0.234375 -1.40625 0.453125q-0.515625 0.359375 -0.515625 0.921875q0 0.546875 0.40625 0.953125q0.40625 0.390625 1.046875 0.390625q0.703125 0 1.34375 -0.46875q0.46875 -0.359375 0.625 -0.859375q0.09375 -0.34375 0.09375 -1.28125l0 -0.515625zm4.938217 4.734375l0 -13.59375l2.609375 0l0 13.59375l-2.609375 0zm9.698929 -9.859375l0 2.078125l-1.78125 0l0 3.984375q0 1.203125 0.046875 1.40625q0.0625 0.1875 0.234375 0.328125q0.1875 0.125 0.453125 0.125q0.359375 0 1.046875 -0.25l0.21875 2.015625q-0.90625 0.390625 -2.0625 0.390625q-0.703125 0 -1.265625 -0.234375q-0.5625 -0.234375 -0.828125 -0.609375q-0.265625 -0.375 -0.375 -1.015625q-0.078125 -0.453125 -0.078125 -1.84375l0 -4.296875l-1.203125 0l0 -2.078125l1.203125 0l0 -1.953125l2.609375 -1.515625l0 3.46875l1.78125 0zm0.165802 13.609375l0 -1.6875l10.82814 0l0 1.6875l-10.82814 0zm11.000717 -6.5625l2.609375 -0.390625q0.171875 0.75 0.671875 1.15625q0.515625 0.390625 1.4375 0.390625q1.0 0 1.515625 -0.375q0.34375 -0.265625 0.34375 -0.703125q0 -0.296875 -0.1875 -0.484375q-0.1875 -0.1875 -0.875 -0.34375q-3.140625 -0.703125 -4.0 -1.265625q-1.15625 -0.796875 -1.15625 -2.21875q0 -1.28125 1.0 -2.15625q1.015625 -0.875 3.140625 -0.875q2.03125 0 3.0 0.65625q0.984375 0.65625 1.359375 1.953125l-2.453125 0.453125q-0.15625 -0.578125 -0.609375 -0.875q-0.4375 -0.3125 -1.25 -0.3125q-1.03125 0 -1.46875 0.296875q-0.296875 0.203125 -0.296875 0.515625q0 0.28125 0.25 0.484375q0.359375 0.25 2.4375 0.734375q2.078125 0.46875 2.90625 1.15625q0.828125 0.6875 0.828125 1.9375q0 1.359375 -1.140625 2.328125q-1.125 0.96875 -3.34375 0.96875q-2.015625 0 -3.1875 -0.8125q-1.171875 -0.8125 -1.53125 -2.21875zm10.375732 0l2.609375 -0.390625q0.171875 0.75 0.671875 1.15625q0.515625 0.390625 1.4375 0.390625q1.0 0 1.515625 -0.375q0.34375 -0.265625 0.34375 -0.703125q0 -0.296875 -0.1875 -0.484375q-0.1875 -0.1875 -0.875 -0.34375q-3.140625 -0.703125 -4.0 -1.265625q-1.15625 -0.796875 -1.15625 -2.21875q0 -1.28125 1.0 -2.15625q1.015625 -0.875 3.140625 -0.875q2.03125 0 3.0 0.65625q0.984375 0.65625 1.359375 1.953125l-2.453125 0.453125q-0.15625 -0.578125 -0.609375 -0.875q-0.4375 -0.3125 -1.25 -0.3125q-1.03125 0 -1.46875 0.296875q-0.296875 0.203125 -0.296875 0.515625q0 0.28125 0.25 0.484375q0.359375 0.25 2.4375 0.734375q2.078125 0.46875 2.90625 1.15625q0.828125 0.6875 0.828125 1.9375q0 1.359375 -1.140625 2.328125q-1.125 0.96875 -3.34375 0.96875q-2.015625 0 -3.1875 -0.8125q-1.171875 -0.8125 -1.53125 -2.21875zm13.891327 -10.78125l0 5.0q1.25 -1.484375 3.015625 -1.484375q0.890625 0 1.609375 0.34375q0.734375 0.328125 1.09375 0.84375q0.375 0.515625 0.5 1.15625q0.140625 0.625 0.140625 1.953125l0 5.78125l-2.609375 0l0 -5.203125q0 -1.546875 -0.15625 -1.96875q-0.140625 -0.421875 -0.515625 -0.65625q-0.375 -0.25 -0.9375 -0.25q-0.65625 0 -1.171875 0.3125q-0.5 0.3125 -0.734375 0.953125q-0.234375 0.640625 -0.234375 1.875l0 4.9375l-2.609375 0l0 -13.59375l2.609375 0zm7.255371 17.34375l0 -1.6875l10.828125 0l0 1.6875l-10.828125 0zm11.844452 -13.609375l2.421875 0l0 1.453125q0.46875 -0.734375 1.28125 -1.203125q0.8125 -0.46875 1.796875 -0.46875q1.703125 0 2.90625 1.34375q1.203125 1.34375 1.203125 3.75q0 2.46875 -1.21875 3.84375q-1.203125 1.359375 -2.921875 1.359375q-0.8125 0 -1.484375 -0.3125q-0.65625 -0.328125 -1.390625 -1.125l0 4.96875l-2.59375 0l0 -13.609375zm2.578125 4.765625q0 1.65625 0.65625 2.453125q0.65625 0.796875 1.59375 0.796875q0.921875 0 1.515625 -0.71875q0.609375 -0.734375 0.609375 -2.40625q0 -1.546875 -0.625 -2.296875q-0.625 -0.75 -1.53125 -0.75q-0.96875 0 -1.59375 0.734375q-0.625 0.734375 -0.625 2.1875zm8.286621 0.03125q0 -1.296875 0.640625 -2.515625q0.640625 -1.21875 1.8125 -1.859375q1.171875 -0.640625 2.609375 -0.640625q2.25 0 3.671875 1.453125q1.421875 1.453125 1.421875 3.671875q0 2.234375 -1.4375 3.703125q-1.4375 1.46875 -3.625 1.46875q-1.359375 0 -2.59375 -0.609375q-1.21875 -0.609375 -1.859375 -1.796875q-0.640625 -1.1875 -0.640625 -2.875zm2.671875 0.140625q0 1.46875 0.6875 2.25q0.703125 0.765625 1.71875 0.765625q1.015625 0 1.703125 -0.765625q0.703125 -0.78125 0.703125 -2.265625q0 -1.453125 -0.703125 -2.234375q-0.6875 -0.78125 -1.703125 -0.78125q-1.015625 0 -1.71875 0.78125q-0.6875 0.78125 -0.6875 2.25zm11.817841 4.921875l-2.609375 0l0 -9.859375l2.421875 0l0 1.40625q0.625 -0.984375 1.109375 -1.296875q0.5 -0.328125 1.140625 -0.328125q0.890625 0 1.71875 0.5l-0.8125 2.265625q-0.65625 -0.421875 -1.21875 -0.421875q-0.546875 0 -0.9375 0.296875q-0.375 0.296875 -0.59375 1.09375q-0.21875 0.78125 -0.21875 3.296875l0 3.046875zm9.275909 -9.859375l0 2.078125l-1.78125 0l0 3.984375q0 1.203125 0.046875 1.40625q0.0625 0.1875 0.234375 0.328125q0.1875 0.125 0.453125 0.125q0.359375 0 1.046875 -0.25l0.21875 2.015625q-0.90625 0.390625 -2.0625 0.390625q-0.703125 0 -1.265625 -0.234375q-0.5625 -0.234375 -0.828125 -0.609375q-0.265625 -0.375 -0.375 -1.015625q-0.078125 -0.453125 -0.078125 -1.84375l0 -4.296875l-1.203125 0l0 -2.078125l1.203125 0l0 -1.953125l2.609375 -1.515625l0 3.46875l1.78125 0zm0.978302 13.859375q0.765625 -1.65625 1.078125 -2.546875q0.328125 -0.875 0.59375 -2.015625q0.265625 -1.15625 0.390625 -2.1875q0.140625 -1.03125 0.140625 -2.125q0 -2.203125 -0.484375 -4.171875q-0.46875 -1.96875 -1.734375 -4.78125l1.765625 0q1.40625 1.984375 2.171875 4.234375q0.78125 2.234375 0.78125 4.53125q0 1.9375 -0.609375 4.15625q-0.703125 2.484375 -2.296875 4.90625l-1.796875 0z" fill-rule="nonzero"></path></g></svg>
  4 +