diff --git a/.gitignore b/.gitignore
index d269a84c915444301371bdd184cf7046ef8f979a..b218be33209ab3236c7c741a82098ab138680158 100644
--- a/.gitignore
+++ b/.gitignore
@@ -66,7 +66,7 @@ data/project_*
 .idea/
 
 # ignore this datafile, now too big
-data/initTable.hdf5
+data/initTable*.hdf5
 data/workTable.hdf5
 
 # ignore the data
@@ -78,6 +78,7 @@ data/meta_table.csv
 data/out/
 data/rawGWASfiles/
 projects/project_*
+projects/celery_results
 
 # Ignore MacOS Files
 **/.DS_Store
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index fe1cbe4c0f7a3d5a83dce23c4e13feeb80205a1c..df56f7857e2ca6ebb72698340d3b0cb64e6a3b6e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -23,7 +23,7 @@ test-python:
 #          '3.9',
           '3.10',
 #          '3.11',
-      ]
+        ]
 
 
 test-docker-compose:
diff --git a/ansible/README.md b/ansible/README.md
deleted file mode 100644
index 348d9f519bbbe3e2d264f412d78be9bd684641dc..0000000000000000000000000000000000000000
--- a/ansible/README.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# JASS ansible playbooks
-
-This repository contains the playbooks to manage a JASS instance with ansible
-
-- `system.yaml`: install system requirements
-- `deploy.yaml`: download/update JASS and perform required procedures to migrate and restart
-
-## how to use these ?
-
-```
-ansible-playbook -v -i ./hosts_system system.yaml --ask-become-pass --extra-vars "deploy_user_name=jass repo_api_token=XXXXXX"
-ansible-playbook -v -i ./hosts_deploy deploy.yaml --ask-become-pass --extra-vars "deploy_user_name=jass repo_api_token=XXXXXX"
-```
diff --git a/ansible/celery.service b/ansible/celery.service
deleted file mode 100644
index d62a2a5a20aca73ed6e7e24329c7ce5fa2d2de9c..0000000000000000000000000000000000000000
--- a/ansible/celery.service
+++ /dev/null
@@ -1,21 +0,0 @@
-[Unit]
-Description=Celery Service
-After=network.target
-
-[Service]
-Type=forking
-User=jass
-Group=nginx
-EnvironmentFile=-/etc/default/celeryd
-WorkingDirectory=/var/jass_data
-ExecStart=/bin/sh -c '${CELERY_BIN} multi start ${CELERYD_NODES} \
-  -A ${CELERY_APP} --pidfile=${CELERYD_PID_FILE} \
-  --logfile=${CELERYD_LOG_FILE} --loglevel=${CELERYD_LOG_LEVEL} ${CELERYD_OPTS}'
-ExecStop=/bin/sh -c '${CELERY_BIN} multi stopwait ${CELERYD_NODES} \
-  --pidfile=${CELERYD_PID_FILE}'
-ExecReload=/bin/sh -c '${CELERY_BIN} multi restart ${CELERYD_NODES} \
-  -A ${CELERY_APP} --pidfile=${CELERYD_PID_FILE} \
-  --logfile=${CELERYD_LOG_FILE} --loglevel=${CELERYD_LOG_LEVEL} ${CELERYD_OPTS}'
-
-[Install]
-WantedBy=multi-user.target
diff --git a/ansible/celeryd b/ansible/celeryd
deleted file mode 100644
index 103a46105e0d2f4c302f5bb3787ec1cf24ce447e..0000000000000000000000000000000000000000
--- a/ansible/celeryd
+++ /dev/null
@@ -1,11 +0,0 @@
-CELERYD_NODES="worker"
-CELERY_BIN="celery"
-CELERY_APP="jass"
-CELERYD_CHDIR="/var/jass_data"
-CELERYD_OPTS="--time-limit=3000 --concurrency=1 --max-tasks-per-child=1"
-CELERYD_LOG_FILE="/var/jass_data/celery%N.log"
-CELERYD_PID_FILE="/var/jass_data/celery%N.pid"
-CELERYD_LOG_LEVEL="DEBUG"
-CELERYD_USER="jass"
-CELERYD_GROUP="nginx"
-CELERY_CREATE_DIRS=1
diff --git a/ansible/deploy.yaml b/ansible/deploy.yaml
deleted file mode 100644
index 42ecdfc3df963aa2f562c4beb7509f1f385e573d..0000000000000000000000000000000000000000
--- a/ansible/deploy.yaml
+++ /dev/null
@@ -1,151 +0,0 @@
----
-- hosts: all
-  become: yes
-  gather_facts: yes
-  tasks:
-    # stop uwsgi service
-    - name: stop JASS service
-      systemd: state=stopped name=jass-uwsgi enabled=true
-      ignore_errors: yes
-      when: not docker
-    # stop nginx service
-    - name: stop nginx service
-      systemd: state=stopped name=nginx enabled=true
-      ignore_errors: yes
-      when: not docker
-    # stop celery service
-    - name: stop celery service
-      systemd: state=stopped name=celery enabled=true
-      ignore_errors: yes
-      when: not docker
-    - name: update yum
-      become: true
-      yum: name=* state=latest
-    - name: install yum utils
-      become: true
-      yum: name=yum-utils state=latest
-    - name: install the 'Development tools' package group
-      become: true
-      yum:
-        name: "@Development tools"
-        state: present
-    - name: add repo IUS
-      become: true
-      yum:
-        name: https://repo.ius.io/ius-release-el7.rpm
-        state: present
-    - name: install git
-      become: true
-      yum: name=git state=latest
-    - name: install python
-      become: true
-      yum: name=python36u state=latest
-    - name: install pip
-      become: true
-      yum: name=python36u-pip state=latest
-    - name: install python36u-devel
-      become: true
-      yum: name=python36u-devel state=latest
-    - name: pcre
-      become: true
-      yum: name=pcre state=latest
-    - name: pcre-devel
-      become: true
-      yum: name=pcre-devel state=latest
-    - name: install git
-      yum: name=git state=latest
-      become: true
-    - name: epel-release
-      become: true
-      yum: name=epel-release state=latest
-    - name: nginx
-      become: true
-      yum: name=nginx state=latest
-    - name: zlib-devel # required by Pillow
-      become: true
-      yum: name=zlib-devel state=latest
-    - name: libjpeg-turbo-devel # required by Pillow
-      become: true
-      yum: name=libjpeg-turbo-devel state=latest
-    - pip: 
-        name: wheel
-        executable: pip3.6
-    # install jass on server
-    - name: install jass from gitlab
-      pip: 
-        name: git+https://gitlab.pasteur.fr/statistical-genetics/jass.git
-        state: forcereinstall
-        executable: pip3.6
-      when: not docker
-    - name: download JASS frozen requirements file
-      get_url:
-        url: https://gitlab.pasteur.fr/statistical-genetics/jass/raw/master/requirements.txt
-        dest: /tmp/requirements.txt
-        force: yes
-      when: not docker
-    - pip:
-        requirements: /tmp/requirements.txt
-        state: forcereinstall
-        executable: pip3.6
-      when: not docker
-    # install jass on docker
-    - name: install jass from local
-      pip:
-        editable: true
-        name: file:///code/
-        state: forcereinstall
-        executable: pip3.6
-      when: docker
-    - name: install jass deps from local
-      pip:
-        requirements: /code/ansible/reqs-docker.txt
-        state: forcereinstall
-        executable: pip3.6
-      when: docker
-    # install python web deps
-    - name: install uwsgi
-      pip: 
-        name: uwsgi
-        executable: pip3.6
-      become: true
-    - name: copy nginx config       
-      become: true
-      copy:
-         src: nginx.conf
-         dest: /etc/nginx/nginx.conf
-    - name: copy systemd service file for JASS-web
-      copy: 
-        src: jass-uwsgi.service 
-        dest: /lib/systemd/system/jass-uwsgi.service
-        owner: root
-        group: root
-    - name: copy JASS uwsgi configuration file
-      copy: 
-        src: jass_uwsgi.ini
-        dest: /var/jass_data
-        owner: '{{ deploy_user_name }}'
-        group: nginx
-    - name: copy celeryd configuration file
-      copy: 
-        src: celeryd
-        dest: /etc/default
-        owner: root
-        group: root
-    - name: copy celery systemd service
-      copy: 
-        src: celery.service
-        dest: /lib/systemd/system/celery.service
-        owner: root
-        group: root
-    # start uwsgi service
-    - name: start JASS service if relevant
-      systemd: state=started name=jass-uwsgi enabled=true daemon_reload=true
-      when: not docker
-    # start nginx service
-    - name: start NGINX service if relevant
-      systemd: state=started name=nginx enabled=true daemon_reload=true
-      when: not docker
-    # start celery service
-    - name: start celery service if relevant
-      systemd: state=started name=celery enabled=true daemon_reload=true
-      when: not docker
diff --git a/ansible/hosts_deploy b/ansible/hosts_deploy
deleted file mode 100644
index 17fccc0d26b68a3adc7f77adeb468de8e1e11ef2..0000000000000000000000000000000000000000
--- a/ansible/hosts_deploy
+++ /dev/null
@@ -1 +0,0 @@
-hub17.hosting.pasteur.fr   ansible_user=jass
diff --git a/ansible/hosts_local b/ansible/hosts_local
deleted file mode 100644
index 7ca1165b172468f70058187868698900e49a53ca..0000000000000000000000000000000000000000
--- a/ansible/hosts_local
+++ /dev/null
@@ -1 +0,0 @@
-127.0.0.1 ansible_connection=local
diff --git a/ansible/hosts_system b/ansible/hosts_system
deleted file mode 100644
index df423178173b81ff3b27bd01fd861733261dfbe0..0000000000000000000000000000000000000000
--- a/ansible/hosts_system
+++ /dev/null
@@ -1 +0,0 @@
-jass.pasteur.fr
diff --git a/ansible/jass-uwsgi.service b/ansible/jass-uwsgi.service
deleted file mode 100644
index f576a31e05bdbac2009e195c2553f4f23d843092..0000000000000000000000000000000000000000
--- a/ansible/jass-uwsgi.service
+++ /dev/null
@@ -1,12 +0,0 @@
-[Unit]
-Description=uWSGI instance to serve JASS
-After=network.target
-
-[Service]
-User=jass
-Group=nginx
-WorkingDirectory=/var/jass_data
-ExecStart=/bin/uwsgi --ini jass_uwsgi.ini
-
-[Install]
-WantedBy=multi-user.target
diff --git a/ansible/jass-web.service b/ansible/jass-web.service
deleted file mode 100644
index cf48ebac9c3fb79806f699c42ce7a3072b2a5ce4..0000000000000000000000000000000000000000
--- a/ansible/jass-web.service
+++ /dev/null
@@ -1,12 +0,0 @@
-[Unit]
-Description=JASS Web Server
-After=network.target remote-fs.target nss-lookup.target
-
-[Service]
-Type=oneshot
-RemainAfterExit=yes
-ExecStart=/etc/jass/apachectl start
-ExecStop=/etc/jass/apachectl stop
-
-[Install]
-WantedBy=multi-user.target
diff --git a/ansible/jass_uwsgi.ini b/ansible/jass_uwsgi.ini
deleted file mode 100644
index e845137acb06bea7e364ffdac90729541bb0e47f..0000000000000000000000000000000000000000
--- a/ansible/jass_uwsgi.ini
+++ /dev/null
@@ -1,14 +0,0 @@
-[uwsgi]
-env = JASS_DATA_DIR=/var/jass_data
-module = jass.wsgi
-
-master = true
-processes = 5
-
-socket = jass_web.sock
-chmod-socket = 660
-vacuum = true
-
-die-on-term = true
-
-logto = /var/jass_data/uwsgi_error_log
diff --git a/ansible/nginx.conf b/ansible/nginx.conf
deleted file mode 100644
index 3bed284addc281e90755df865e0a3ed5d5d56230..0000000000000000000000000000000000000000
--- a/ansible/nginx.conf
+++ /dev/null
@@ -1,71 +0,0 @@
-# For more information on configuration, see:
-#   * Official English Documentation: http://nginx.org/en/docs/
-#   * Official Russian Documentation: http://nginx.org/ru/docs/
-
-user nginx;
-worker_processes auto;
-error_log /var/log/nginx/error.log;
-pid /run/nginx.pid;
-
-# Load dynamic modules. See /usr/share/nginx/README.dynamic.
-include /usr/share/nginx/modules/*.conf;
-
-events {
-    worker_connections 1024;
-}
-
-http {
-    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
-                      '$status $body_bytes_sent "$http_referer" '
-                      '"$http_user_agent" "$http_x_forwarded_for"';
-
-    access_log  /var/log/nginx/access.log  main;
-
-    sendfile            on;
-    tcp_nopush          on;
-    tcp_nodelay         on;
-    keepalive_timeout   65;
-    types_hash_max_size 2048;
-
-    include             /etc/nginx/mime.types;
-    default_type        application/octet-stream;
-
-    # Load modular configuration files from the /etc/nginx/conf.d directory.
-    # See http://nginx.org/en/docs/ngx_core_module.html#include
-    # for more information.
-    include /etc/nginx/conf.d/*.conf;
-
-    server {
-        listen       80 default_server;
-        listen       [::]:80 default_server;
-        server_name  _;
-        root         /usr/share/nginx/html;
-
-        # Load configuration files for the default server block.
-        include /etc/nginx/default.d/*.conf;
-
-        location / {
-            include uwsgi_params;
-            uwsgi_pass unix:/var/jass_data/jass_web.sock;
-            uwsgi_read_timeout 3600;
-            uwsgi_max_temp_file_size 10240m;
-
-            proxy_connect_timeout       3600;
-            proxy_send_timeout          3600;
-            proxy_read_timeout          3600;
-            send_timeout                3600;
-
-            proxy_http_version 1.1;
-            proxy_set_header Connection "";
-        }
-
-        error_page 404 /404.html;
-            location = /40x.html {
-        }
-
-        error_page 500 502 503 504 /50x.html;
-            location = /50x.html {
-        }
-    }
-
-}
diff --git a/ansible/params-docker.json b/ansible/params-docker.json
deleted file mode 100644
index c24382061e1e9b10419c698809d75ccc31444ee3..0000000000000000000000000000000000000000
--- a/ansible/params-docker.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
-    "deploy_user_name":"root",
-    "docker":true,
-}
diff --git a/ansible/params-server.json b/ansible/params-server.json
deleted file mode 100644
index 973f9fe758647c3ffeaa713fb05d12284e504259..0000000000000000000000000000000000000000
--- a/ansible/params-server.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-    "deploy_user_name":"jass",
-    "docker":false,
-    "repo_api_token":"$REPO_API_TOKEN"
-}
diff --git a/ansible/reqs-docker.txt b/ansible/reqs-docker.txt
deleted file mode 100644
index 3c8d7e7822cbfc7ed81ac22a62d4c0f271e9c4d1..0000000000000000000000000000000000000000
--- a/ansible/reqs-docker.txt
+++ /dev/null
@@ -1 +0,0 @@
--r ../requirements.txt
diff --git a/ansible/ssh_key.json.j2 b/ansible/ssh_key.json.j2
deleted file mode 100644
index e1d0a32a3e9b64cd091ddc8b776e6e49969f7c02..0000000000000000000000000000000000000000
--- a/ansible/ssh_key.json.j2
+++ /dev/null
@@ -1 +0,0 @@
-{"id": "Statistical-Genetics/jass","title" : "jass_deploy_key","key": "{{ key_value.stdout }}"}
diff --git a/ansible/system.retry b/ansible/system.retry
deleted file mode 100644
index df423178173b81ff3b27bd01fd861733261dfbe0..0000000000000000000000000000000000000000
--- a/ansible/system.retry
+++ /dev/null
@@ -1 +0,0 @@
-jass.pasteur.fr
diff --git a/ansible/system.yaml b/ansible/system.yaml
deleted file mode 100644
index 37b5b6f93ffbcac427343c58693857df952a3634..0000000000000000000000000000000000000000
--- a/ansible/system.yaml
+++ /dev/null
@@ -1,52 +0,0 @@
----
-- hosts: all
-  gather_facts: no
-  tasks:
-    #
-    # User and Group configuration
-    #
-    # application user ({{deploy_user_name}}) is created
-    # in the wheel group, which has to be passwordless sudo
-    # and upload the key as a deploy key to gitlab
-    - name: Make sure we have a 'wheel' group
-      become: true
-      group:
-        name: wheel
-        state: present
-    - name: Allow 'wheel' group to have passwordless sudo
-      become: true
-      lineinfile:
-        dest: /etc/sudoers
-        state: present
-        regexp: '^%wheel'
-        line: '%wheel ALL=(ALL) NOPASSWD: ALL'
-    - name: Create {{ deploy_user_name }} user
-      user: name={{ deploy_user_name }} groups=wheel,nginx append=yes state=present createhome=yes generate_ssh_key=yes ssh_key_bits=2048 ssh_key_file=.ssh/id_rsa
-      become: true
-    - name: Cat deployer's user public key
-      shell: "cat /home/{{ deploy_user_name }}/.ssh/id_rsa.pub"
-      register: key_value
-      become: true
-    - name: Create ssh_key json
-      template: src=ssh_key.json.j2 dest=/home/{{ deploy_user_name }}/ssh_key.json group={{ deploy_user_name }} owner={{ deploy_user_name }} force=yes
-      become: true
-    - name: Cat deployer's user public key
-      shell: "cat /home/{{ deploy_user_name }}/ssh_key.json"
-      become: true
-    - name: Upload deploy keys to gitlab
-      shell: "curl -X POST -H 'Accept: application/json' -H 'Content-type: application/json' -H 'PRIVATE-TOKEN: {{ repo_api_token }}' --data-binary @/home/{{ deploy_user_name }}/ssh_key.json https://gitlab.pasteur.fr/api/v3/projects/251/keys"
-      become: true
-    #
-    # Security configuration
-    #
-    # disable SELinux, and open firewall to incoming http 
-    - name: disable SELinux
-      become: true
-      selinux:
-        state: disabled
-    - name: Open firewall to HTTP traffic
-      firewalld:
-        service: http
-        permanent: true
-        state: enabled
-      become: true
diff --git a/client/.eslintrc.js b/client/.eslintrc.js
index 3b7301d88fdcc8051a3c8af9d8eb0f447dcc5c09..137da5039e9fb64eaaabb3b600368a3566c79d7f 100644
--- a/client/.eslintrc.js
+++ b/client/.eslintrc.js
@@ -18,6 +18,7 @@ module.exports = {
   // add your custom rules here
   rules: {
     "no-unused-vars": "off",
-    'no-console': 'off'
+    'no-console': 'off',
+    'vue/valid-v-slot': 'off'
   }
 }
diff --git a/client/assets/css/global.css b/client/assets/css/global.css
index 234dc57018b4afdbcd7c15b7400cfd9a004b0685..a039ea84e835b06176f7a87676f9f2cb60b29fa0 100644
--- a/client/assets/css/global.css
+++ b/client/assets/css/global.css
@@ -1,195 +1,207 @@
 /* FONT CALLS */
 
 @font-face {
-    font-family: 'BrandonGrotesqueReg';
-    src: local('BrandonGrotesqueReg'),
-      url(~assets/fonts/brandon_reg/brandon_reg-webfont.ttf) format('truetype');
-    font-weight: normal;
-    font-style: normal;
-  }
-
-  @font-face {
-    font-family: 'BrandonGrotesqueBld';
-    src: local('BrandonGrotesqueBld'),
-      url(~assets/fonts/brandon_bld/brandon_bld-webfont-webfont.ttf)
-        format('truetype');
-    font-weight: normal;
-    font-style: normal;
-  }
-
-  @font-face {
-    font-family: 'BrandonGrotesqueBlk';
-    src: local('BrandonGrotesqueBlk'),
-      url(~assets/fonts/brandon_blk/brandon_blk-webfont.ttf)
-        format('truetype');
-    font-weight: normal;
-    font-style: normal;
-  }
-
-
-  @font-face {
-    font-family: 'PlayfairDisplayBld';
-    src: local('PlayfairDisplayBld'),
-      url(~assets/fonts/playfairdisplay/playfairdisplay-bold-webfont.ttf)
-        format('truetype');
-    font-weight: normal;
-    font-style: normal;
-  }
-
-  @font-face {
-    font-family: 'PlayfairDisplayReg';
-    src: local('PlayfairDisplayReg'),
-      url(~assets/fonts/playfairdisplay/playfairdisplay-regular-webfont.ttf)
-        format('truetype');
-    font-weight: normal;
-    font-style: normal;
-  }
-
-  /* FONT DETAILS */
-
-  * {
-    font-family: 'BrandonGrotesqueReg';
-    font-size: 18px;
-  }
-
-  h1 {
-    font-family: 'PlayfairDisplayReg';
-    text-transform: capitalize;
-    font-size: 30px;
-  }
-
-  h2 {
-    font-family: 'PlayfairDisplayBld';
-    font-size: 24px;
-  }
-
-  h3 {
-    text-align: center;
-    font-size: 28px;
-  }
-
-  h4 {
-    font-size: 22px;
-  }
+  font-family: 'BrandonGrotesqueReg';
+  src: local('BrandonGrotesqueReg'),
+    url(~assets/fonts/brandon_reg-webfont.ttf) format('truetype');
+  font-weight: normal;
+  font-style: normal;
+}
+
+@font-face {
+  font-family: 'BrandonGrotesqueBld';
+  src: local('BrandonGrotesqueBld'),
+    url(~assets/fonts/brandon_bld-webfont-webfont.ttf) format('truetype');
+  font-weight: normal;
+  font-style: normal;
+}
+
+@font-face {
+  font-family: 'BrandonGrotesqueBlk';
+  src: local('BrandonGrotesqueBlk'),
+    url(~assets/fonts/brandon_blk-webfont.ttf) format('truetype');
+  font-weight: normal;
+  font-style: normal;
+}
+
+@font-face {
+  font-family: 'PlayfairDisplayBld';
+  src:
+    local('PlayfairDisplayBld'),
+    url(~assets/fonts/playfairdisplay-bold-webfont.ttf) format('truetype');
+  font-weight: normal;
+  font-style: normal;
+}
+
+@font-face {
+  font-family: 'PlayfairDisplayReg';
+  src: local('PlayfairDisplayReg'),
+    url(~assets/fonts/playfairdisplay-regular-webfont.ttf) format('truetype');
+  font-weight: normal;
+  font-style: normal;
+}
+
+/* FONT DETAILS */
+
+* {
+  font-family: 'BrandonGrotesqueReg', sans-serif;
+  font-size: 18px;
+}
+
+h1 {
+  font-family: 'PlayfairDisplayReg', sans-serif;
+  text-transform: capitalize;
+  font-size: 30px;
+}
+
+h2 {
+  font-family: 'PlayfairDisplayBld', sans-serif;
+  font-size: 24px;
+}
+
+h3 {
+  text-align: center;
+  font-size: 28px;
+}
+
+h4 {
+  font-size: 22px;
+}
 
 /* WEBSITE HEADER */
 
 .logo {
-    font-family: 'PlayfairDisplayReg';
-    font-size: 50px;
+  font-family: 'PlayfairDisplayReg', sans-serif;
+  font-size: 50px;
 }
 
 .logo a {
-  color:black;
+  color: black;
   text-decoration: none;
 }
 
-.logo a:hover{
-  color:black;
+.logo a:hover {
+  color: black;
   text-decoration: none;
 }
 
 /* MAIN PAGE */
 .main_title {
-  font-family: 'PlayfairDisplayReg';
+  font-family: 'PlayfairDisplayReg', sans-serif;
   font-size: 50px;
   text-transform: capitalize;
   text-align: center;
   padding: 20px;
 }
 
-.main_intro {
+.main-intro {
   text-align: justify;
-  font-family: 'BrandonGrotesqueReg';
+  font-family: 'BrandonGrotesqueReg', sans-serif;
   font-size: 18px;
   line-height: 1.5;
 }
 
 .card-title {
-  font-family: 'PlayfairDisplayReg';
+  font-family: 'PlayfairDisplayReg', sans-serif;
   font-size: 25px;
 }
 
-button,input,select,textarea {
-	font-size:100%;
-	margin:0;
-	max-width:100%;
-	vertical-align:baseline;
+button,
+input,
+select,
+textarea {
+  font-size: 100%;
+  margin: 0;
+  max-width: 100%;
+  vertical-align: baseline;
 }
 
-button,input {
-	line-height:normal;
+button,
+input {
+  line-height: normal;
 }
 
-button,html input[type="button"],input[type="reset"],input[type="submit"] {
-	-webkit-appearance:button;
-	cursor:pointer;
+button[disabled],
+input[disabled] {
+  cursor: default;
 }
 
-button[disabled],input[disabled] {
-	cursor:default;
+a.button {
+  font-family: 'Montserrat', sans-serif;
+  color: #eee;
+  text-transform: uppercase;
+  font-size: 13px;
+  border: 1px solid #eee;
+  border-radius: 15px;
+  display: inline-block;
+  padding: 2px 15px;
+  -webkit-transition: all .4s ease;
+  -moz-transition: all .4s ease;
+  -ms-transition: all .4s ease;
+  -o-transition: all .4s ease;
+  transition: all .4s ease;
 }
 
-
-button::-moz-focus-inner,input::-moz-focus-inner {
-	border:0;
-	padding:0;
+a.button:hover {
+  color: #30343e;
+  background: #eee;
+  -webkit-transition: all .4s ease;
+  -moz-transition: all .4s ease;
+  -ms-transition: all .4s ease;
+  -o-transition: all .4s ease;
+  transition: all .4s ease;
 }
 
-a.button{
-    font-family: 'Montserrat', sans-serif;
-    color: #eee;
-    text-transform: uppercase;
-    font-size: 13px;
-    border: 1px solid #eee;
-    border-radius: 15px;
-    display: inline-block;
-    padding: 2px 15px;
-    -webkit-transition: all .4s ease;
-    -moz-transition: all .4s ease;
-    -ms-transition: all .4s ease;
-    -o-transition: all .4s ease;
-    transition: all .4s ease;
+a.button.blue {
+  color: #35a9f5;
+  border-color: #35a9f5;
 }
-a.button:hover{
-	color: #30343e;
-	background: #eee;
-    -webkit-transition: all .4s ease;
-    -moz-transition: all .4s ease;
-    -ms-transition: all .4s ease;
-    -o-transition: all .4s ease;
-    transition: all .4s ease;
+
+a.button.blue.active {
+  background: #35a9f5;
+  color: #eee;
 }
-a.button.blue{
-	color: #35a9f5;
-	border-color: #35a9f5;
+
+a.button.blue:hover {
+  color: #30343e;
+  border-color: #30343e;
 }
-a.button.blue.active{
-	background: #35a9f5;
-    color: #eee;
+
+/* Buttons */
+button,
+input[type="submit"],
+input[type="button"],
+input[type="reset"] {
+  background: #fff;
+  cursor: pointer;
+  display: inline-block;
+  font-size: 15px;
+  padding: 6px 20px;
+  margin: 5px 5px 5px 0;
+  color: rgba(59, 127, 224, 1);
+  border: 1px solid rgba(59, 127, 224, 1);
+  border-radius: 30px;
+  -webkit-appearance: button;
+  -webkit-transition: all 400ms ease;
+  -moz-transition: all 400ms ease;
+  -o-transition: all 400ms ease;
+  transition: all 400ms ease;
 }
 
-a.button.blue:hover{
-	color: #30343e;
-	border-color: #30343e;
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+  border: 0;
+  padding: 0;
 }
-/* Buttons */
-button,input[type="submit"],input[type="button"],input[type="reset"] {
-        background: #fff;
-    cursor: pointer;
-    display: inline-block;
-    font-size: 15px;
-    padding: 6px 20px;
-    margin: 5px 5px 5px 0;
-    color: rgba(59, 127, 224, 1);
-    border: 1px solid rgba(59, 127, 224, 1);
-    border-radius: 30px;
-    -webkit-transition: all 400ms ease;
-    -moz-transition: all 400ms ease;
-    -o-transition: all 400ms ease;
-    transition: all 400ms ease;
-}
-button:hover,button:focus,input[type="submit"]:hover,input[type="button"]:hover,input[type="reset"]:hover,input[type="submit"]:focus,input[type="button"]:focus,input[type="reset"]:focus {
+
+button:hover,
+button:focus,
+input[type="submit"]:hover,
+input[type="button"]:hover,
+input[type="reset"]:hover,
+input[type="submit"]:focus,
+input[type="button"]:focus,
+input[type="reset"]:focus {
   opacity: 1;
   color: #FFF;
   background: rgba(59, 127, 224, 1);
@@ -197,10 +209,13 @@ button:hover,button:focus,input[type="submit"]:hover,input[type="button"]:hover,
   -moz-transition: all 400ms ease;
   -o-transition: all 400ms ease;
   transition: all 400ms ease;
-        outline:none;
+  outline: none;
 }
 
-button:active,input[type="submit"]:active,input[type="button"]:active,input[type="reset"]:active {
+button:active,
+input[type="submit"]:active,
+input[type="button"]:active,
+input[type="reset"]:active {
   opacity: 1;
   color: #FFF;
   background: rgba(59, 127, 224, 1);
@@ -210,9 +225,8 @@ button:active,input[type="submit"]:active,input[type="button"]:active,input[type
   transition: all 400ms ease;
 }
 
-
 .v-tab--active {
-  font-family: 'BrandonGrotesqueBlk';
+  font-family: 'BrandonGrotesqueBlk', sans-serif;
 }
 
 .footer-column {
diff --git a/client/assets/fonts/brandon_bld/brandon_bld-webfont-webfont.ttf b/client/assets/fonts/brandon_bld-webfont-webfont.ttf
similarity index 100%
rename from client/assets/fonts/brandon_bld/brandon_bld-webfont-webfont.ttf
rename to client/assets/fonts/brandon_bld-webfont-webfont.ttf
diff --git a/client/assets/fonts/brandon_bld/brandon_bld-webfont-demo.html b/client/assets/fonts/brandon_bld/brandon_bld-webfont-demo.html
deleted file mode 100755
index e307e8c7ef7496c21a2bf701626ee853ec5849a4..0000000000000000000000000000000000000000
--- a/client/assets/fonts/brandon_bld/brandon_bld-webfont-demo.html
+++ /dev/null
@@ -1,613 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-	<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script>
-	<script src="specimen_files/easytabs.js" type="text/javascript" charset="utf-8"></script>
-	<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" />
-	<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
-
-	<style type="text/css">
-					body{
-				font-family: 'webfontregular';
-							}
-		</style>
-
-	<title>  Specimen</title>
-	
-	
-	<script type="text/javascript" charset="utf-8">
-		$(document).ready(function() {
-			$('#container').easyTabs({defaultContent:1});
-		});
-	</script>
-</head>
-
-<body>
-<div id="container">
-	<div id="header">
-		 	</div>
-	<ul class="tabs">
-		<li><a href="#specimen">Specimen</a></li>
-		<li><a href="#layout">Sample Layout</a></li>
-				<li><a href="#glyphs">Glyphs &amp; Languages</a></li>
-		<li><a href="#installing">Installing Webfonts</a></li>
-		
-	</ul>
-	
-	<div id="main_content">
-
-		
-			<div id="specimen">
-		
-				<div class="section">
-					<div class="grid12 firstcol">
-						<div class="huge">AaBb</div>
-					</div>
-				</div>
-		
-				<div class="section">
-					<div class="glyph_range">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>
-				</div>
-				<div class="section">
-					<div class="grid12 firstcol">
-						<table class="sample_table">
-							<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-						</table>
-				
-					</div>
-			
-				</div>
-		
-		
-		
-								<div class="section" id="bodycomparison">
-
-
-										<div id="xheight">
-				<div class="fontbody">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div>
-										<div class="fontbody" style="z-index:1">
-											body<span> </span>
-										</div>
-										<div class="arialbody" style="z-index:1">
-											body<span>Arial</span>
-										</div>
-										<div class="verdanabody" style="z-index:1">
-											body<span>Verdana</span>
-										</div>
-										<div class="georgiabody" style="z-index:1">
-											body<span>Georgia</span>
-										</div>
-
-
-
-								</div>
-		
-		
-				<div class="section psample psample_row1" id="">
-					
-					<div class="grid2 firstcol">
-						<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="white_blend"></div>
-					
-				</div>
-				<div class="section psample psample_row2" id="">
-					<div class="grid3 firstcol">
-						<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid5">
-						<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-
-					<div class="white_blend"></div>
-
-				</div>
-				
-				<div class="section psample psample_row3" id="">
-					<div class="grid5 firstcol">
-						<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="grid7">
-						<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					
-					<div class="white_blend"></div>
-					
-				</div>
-				
-				<div class="section psample psample_row4" id="">
-					<div class="grid12 firstcol">
-						<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="white_blend"></div>
-					
-				</div>
-				
-				
-				
-				<div class="section psample psample_row1 fullreverse">
-					<div class="grid2 firstcol">
-						<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				<div class="section psample psample_row2 fullreverse">
-					<div class="grid3 firstcol">
-						<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid5">
-						<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="black_blend"></div>
-
-				</div>
-				
-				<div class="section psample fullreverse psample_row3" id="">
-					<div class="grid5 firstcol">
-						<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="grid7">
-						<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
-					<div class="grid12 firstcol">
-						<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				
-				
-				
-			</div>
-			
-			<div id="layout">
-				
-				<div class="section">
-					
-					<div class="grid12 firstcol">
-						<h1>Lorem Ipsum Dolor</h1>
-						<h2>Etiam porta sem malesuada magna mollis euismod</h2>
-						
-						<p class="byline">By <a href="#link">Aenean Lacinia</a></p>
-					</div>
-				</div>
-				<div class="section">
-					<div class="grid8 firstcol">
-						<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-						
-						<h3>Pellentesque ornare sem</h3>
-
-						<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
-
-						<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
-
-						<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
-
-						<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
-
-						<h3>Cras mattis consectetur</h3>
-
-						<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
-
-						<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
-					</div>
-					
-					<div class="grid4 sidebar">
-						
-						<div class="box reverse">
-							<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
-						</div>
-						
-						<p class="caption">Maecenas sed diam eget risus varius.</p>
-
-						<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-					
-
-						<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
-
-						<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-					</div>
-				</div>
-				
-			</div>
-
-
-			
-
-
-
-		<div id="glyphs">
-			<div class="section">
-				<div class="grid12 firstcol">
-			
-				<h1>Language Support</h1>
-				<p>The subset of   in this kit supports the following languages:<br />
-			
-					Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Swedish				</p>
-				<h1>Glyph Chart</h1>
-				<p>The subset of   in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p>
-				<div id="glyph_chart">
-			
-																				 <div><p>&amp;#32;</p>&#32;</div>
-																				 <div><p>&amp;#33;</p>&#33;</div>
-																				 <div><p>&amp;#34;</p>&#34;</div>
-																				 <div><p>&amp;#35;</p>&#35;</div>
-																				 <div><p>&amp;#36;</p>&#36;</div>
-																				 <div><p>&amp;#37;</p>&#37;</div>
-																				 <div><p>&amp;#38;</p>&#38;</div>
-																				 <div><p>&amp;#39;</p>&#39;</div>
-																				 <div><p>&amp;#40;</p>&#40;</div>
-																				 <div><p>&amp;#41;</p>&#41;</div>
-																				 <div><p>&amp;#42;</p>&#42;</div>
-																				 <div><p>&amp;#43;</p>&#43;</div>
-																				 <div><p>&amp;#44;</p>&#44;</div>
-																				 <div><p>&amp;#45;</p>&#45;</div>
-																				 <div><p>&amp;#46;</p>&#46;</div>
-																				 <div><p>&amp;#47;</p>&#47;</div>
-																				 <div><p>&amp;#48;</p>&#48;</div>
-																				 <div><p>&amp;#49;</p>&#49;</div>
-																				 <div><p>&amp;#50;</p>&#50;</div>
-																				 <div><p>&amp;#51;</p>&#51;</div>
-																				 <div><p>&amp;#52;</p>&#52;</div>
-																				 <div><p>&amp;#53;</p>&#53;</div>
-																				 <div><p>&amp;#54;</p>&#54;</div>
-																				 <div><p>&amp;#55;</p>&#55;</div>
-																				 <div><p>&amp;#56;</p>&#56;</div>
-																				 <div><p>&amp;#57;</p>&#57;</div>
-																				 <div><p>&amp;#58;</p>&#58;</div>
-																				 <div><p>&amp;#59;</p>&#59;</div>
-																				 <div><p>&amp;#60;</p>&#60;</div>
-																				 <div><p>&amp;#61;</p>&#61;</div>
-																				 <div><p>&amp;#62;</p>&#62;</div>
-																				 <div><p>&amp;#63;</p>&#63;</div>
-																				 <div><p>&amp;#64;</p>&#64;</div>
-																				 <div><p>&amp;#65;</p>&#65;</div>
-																				 <div><p>&amp;#66;</p>&#66;</div>
-																				 <div><p>&amp;#67;</p>&#67;</div>
-																				 <div><p>&amp;#68;</p>&#68;</div>
-																				 <div><p>&amp;#69;</p>&#69;</div>
-																				 <div><p>&amp;#70;</p>&#70;</div>
-																				 <div><p>&amp;#71;</p>&#71;</div>
-																				 <div><p>&amp;#72;</p>&#72;</div>
-																				 <div><p>&amp;#73;</p>&#73;</div>
-																				 <div><p>&amp;#74;</p>&#74;</div>
-																				 <div><p>&amp;#75;</p>&#75;</div>
-																				 <div><p>&amp;#76;</p>&#76;</div>
-																				 <div><p>&amp;#77;</p>&#77;</div>
-																				 <div><p>&amp;#78;</p>&#78;</div>
-																				 <div><p>&amp;#79;</p>&#79;</div>
-																				 <div><p>&amp;#80;</p>&#80;</div>
-																				 <div><p>&amp;#81;</p>&#81;</div>
-																				 <div><p>&amp;#82;</p>&#82;</div>
-																				 <div><p>&amp;#83;</p>&#83;</div>
-																				 <div><p>&amp;#84;</p>&#84;</div>
-																				 <div><p>&amp;#85;</p>&#85;</div>
-																				 <div><p>&amp;#86;</p>&#86;</div>
-																				 <div><p>&amp;#87;</p>&#87;</div>
-																				 <div><p>&amp;#88;</p>&#88;</div>
-																				 <div><p>&amp;#89;</p>&#89;</div>
-																				 <div><p>&amp;#90;</p>&#90;</div>
-																				 <div><p>&amp;#91;</p>&#91;</div>
-																				 <div><p>&amp;#92;</p>&#92;</div>
-																				 <div><p>&amp;#93;</p>&#93;</div>
-																				 <div><p>&amp;#94;</p>&#94;</div>
-																				 <div><p>&amp;#95;</p>&#95;</div>
-																				 <div><p>&amp;#96;</p>&#96;</div>
-																				 <div><p>&amp;#97;</p>&#97;</div>
-																				 <div><p>&amp;#98;</p>&#98;</div>
-																				 <div><p>&amp;#99;</p>&#99;</div>
-																				 <div><p>&amp;#100;</p>&#100;</div>
-																				 <div><p>&amp;#101;</p>&#101;</div>
-																				 <div><p>&amp;#102;</p>&#102;</div>
-																				 <div><p>&amp;#103;</p>&#103;</div>
-																				 <div><p>&amp;#104;</p>&#104;</div>
-																				 <div><p>&amp;#105;</p>&#105;</div>
-																				 <div><p>&amp;#106;</p>&#106;</div>
-																				 <div><p>&amp;#107;</p>&#107;</div>
-																				 <div><p>&amp;#108;</p>&#108;</div>
-																				 <div><p>&amp;#109;</p>&#109;</div>
-																				 <div><p>&amp;#110;</p>&#110;</div>
-																				 <div><p>&amp;#111;</p>&#111;</div>
-																				 <div><p>&amp;#112;</p>&#112;</div>
-																				 <div><p>&amp;#113;</p>&#113;</div>
-																				 <div><p>&amp;#114;</p>&#114;</div>
-																				 <div><p>&amp;#115;</p>&#115;</div>
-																				 <div><p>&amp;#116;</p>&#116;</div>
-																				 <div><p>&amp;#117;</p>&#117;</div>
-																				 <div><p>&amp;#118;</p>&#118;</div>
-																				 <div><p>&amp;#119;</p>&#119;</div>
-																				 <div><p>&amp;#120;</p>&#120;</div>
-																				 <div><p>&amp;#121;</p>&#121;</div>
-																				 <div><p>&amp;#122;</p>&#122;</div>
-																				 <div><p>&amp;#123;</p>&#123;</div>
-																				 <div><p>&amp;#124;</p>&#124;</div>
-																				 <div><p>&amp;#125;</p>&#125;</div>
-																				 <div><p>&amp;#126;</p>&#126;</div>
-																				 <div><p>&amp;#160;</p>&#160;</div>
-																				 <div><p>&amp;#161;</p>&#161;</div>
-																				 <div><p>&amp;#162;</p>&#162;</div>
-																				 <div><p>&amp;#163;</p>&#163;</div>
-																				 <div><p>&amp;#164;</p>&#164;</div>
-																				 <div><p>&amp;#165;</p>&#165;</div>
-																				 <div><p>&amp;#166;</p>&#166;</div>
-																				 <div><p>&amp;#167;</p>&#167;</div>
-																				 <div><p>&amp;#168;</p>&#168;</div>
-																				 <div><p>&amp;#169;</p>&#169;</div>
-																				 <div><p>&amp;#170;</p>&#170;</div>
-																				 <div><p>&amp;#171;</p>&#171;</div>
-																				 <div><p>&amp;#172;</p>&#172;</div>
-																				 <div><p>&amp;#173;</p>&#173;</div>
-																				 <div><p>&amp;#174;</p>&#174;</div>
-																				 <div><p>&amp;#175;</p>&#175;</div>
-																				 <div><p>&amp;#176;</p>&#176;</div>
-																				 <div><p>&amp;#177;</p>&#177;</div>
-																				 <div><p>&amp;#178;</p>&#178;</div>
-																				 <div><p>&amp;#179;</p>&#179;</div>
-																				 <div><p>&amp;#180;</p>&#180;</div>
-																				 <div><p>&amp;#181;</p>&#181;</div>
-																				 <div><p>&amp;#182;</p>&#182;</div>
-																				 <div><p>&amp;#183;</p>&#183;</div>
-																				 <div><p>&amp;#184;</p>&#184;</div>
-																				 <div><p>&amp;#185;</p>&#185;</div>
-																				 <div><p>&amp;#186;</p>&#186;</div>
-																				 <div><p>&amp;#187;</p>&#187;</div>
-																				 <div><p>&amp;#188;</p>&#188;</div>
-																				 <div><p>&amp;#189;</p>&#189;</div>
-																				 <div><p>&amp;#190;</p>&#190;</div>
-																				 <div><p>&amp;#191;</p>&#191;</div>
-																				 <div><p>&amp;#192;</p>&#192;</div>
-																				 <div><p>&amp;#193;</p>&#193;</div>
-																				 <div><p>&amp;#194;</p>&#194;</div>
-																				 <div><p>&amp;#195;</p>&#195;</div>
-																				 <div><p>&amp;#196;</p>&#196;</div>
-																				 <div><p>&amp;#197;</p>&#197;</div>
-																				 <div><p>&amp;#198;</p>&#198;</div>
-																				 <div><p>&amp;#199;</p>&#199;</div>
-																				 <div><p>&amp;#200;</p>&#200;</div>
-																				 <div><p>&amp;#201;</p>&#201;</div>
-																				 <div><p>&amp;#202;</p>&#202;</div>
-																				 <div><p>&amp;#203;</p>&#203;</div>
-																				 <div><p>&amp;#204;</p>&#204;</div>
-																				 <div><p>&amp;#205;</p>&#205;</div>
-																				 <div><p>&amp;#206;</p>&#206;</div>
-																				 <div><p>&amp;#207;</p>&#207;</div>
-																				 <div><p>&amp;#208;</p>&#208;</div>
-																				 <div><p>&amp;#209;</p>&#209;</div>
-																				 <div><p>&amp;#210;</p>&#210;</div>
-																				 <div><p>&amp;#211;</p>&#211;</div>
-																				 <div><p>&amp;#212;</p>&#212;</div>
-																				 <div><p>&amp;#213;</p>&#213;</div>
-																				 <div><p>&amp;#214;</p>&#214;</div>
-																				 <div><p>&amp;#215;</p>&#215;</div>
-																				 <div><p>&amp;#216;</p>&#216;</div>
-																				 <div><p>&amp;#217;</p>&#217;</div>
-																				 <div><p>&amp;#218;</p>&#218;</div>
-																				 <div><p>&amp;#219;</p>&#219;</div>
-																				 <div><p>&amp;#220;</p>&#220;</div>
-																				 <div><p>&amp;#221;</p>&#221;</div>
-																				 <div><p>&amp;#222;</p>&#222;</div>
-																				 <div><p>&amp;#223;</p>&#223;</div>
-																				 <div><p>&amp;#224;</p>&#224;</div>
-																				 <div><p>&amp;#225;</p>&#225;</div>
-																				 <div><p>&amp;#226;</p>&#226;</div>
-																				 <div><p>&amp;#227;</p>&#227;</div>
-																				 <div><p>&amp;#228;</p>&#228;</div>
-																				 <div><p>&amp;#229;</p>&#229;</div>
-																				 <div><p>&amp;#230;</p>&#230;</div>
-																				 <div><p>&amp;#231;</p>&#231;</div>
-																				 <div><p>&amp;#232;</p>&#232;</div>
-																				 <div><p>&amp;#233;</p>&#233;</div>
-																				 <div><p>&amp;#234;</p>&#234;</div>
-																				 <div><p>&amp;#235;</p>&#235;</div>
-																				 <div><p>&amp;#236;</p>&#236;</div>
-																				 <div><p>&amp;#237;</p>&#237;</div>
-																				 <div><p>&amp;#238;</p>&#238;</div>
-																				 <div><p>&amp;#239;</p>&#239;</div>
-																				 <div><p>&amp;#240;</p>&#240;</div>
-																				 <div><p>&amp;#241;</p>&#241;</div>
-																				 <div><p>&amp;#242;</p>&#242;</div>
-																				 <div><p>&amp;#243;</p>&#243;</div>
-																				 <div><p>&amp;#244;</p>&#244;</div>
-																				 <div><p>&amp;#245;</p>&#245;</div>
-																				 <div><p>&amp;#246;</p>&#246;</div>
-																				 <div><p>&amp;#247;</p>&#247;</div>
-																				 <div><p>&amp;#248;</p>&#248;</div>
-																				 <div><p>&amp;#249;</p>&#249;</div>
-																				 <div><p>&amp;#250;</p>&#250;</div>
-																				 <div><p>&amp;#251;</p>&#251;</div>
-																				 <div><p>&amp;#252;</p>&#252;</div>
-																				 <div><p>&amp;#253;</p>&#253;</div>
-																				 <div><p>&amp;#254;</p>&#254;</div>
-																				 <div><p>&amp;#255;</p>&#255;</div>
-																				 <div><p>&amp;#338;</p>&#338;</div>
-																				 <div><p>&amp;#339;</p>&#339;</div>
-																				 <div><p>&amp;#376;</p>&#376;</div>
-																				 <div><p>&amp;#710;</p>&#710;</div>
-																				 <div><p>&amp;#732;</p>&#732;</div>
-																				 <div><p>&amp;#8192;</p>&#8192;</div>
-																				 <div><p>&amp;#8193;</p>&#8193;</div>
-																				 <div><p>&amp;#8194;</p>&#8194;</div>
-																				 <div><p>&amp;#8195;</p>&#8195;</div>
-																				 <div><p>&amp;#8196;</p>&#8196;</div>
-																				 <div><p>&amp;#8197;</p>&#8197;</div>
-																				 <div><p>&amp;#8198;</p>&#8198;</div>
-																				 <div><p>&amp;#8199;</p>&#8199;</div>
-																				 <div><p>&amp;#8200;</p>&#8200;</div>
-																				 <div><p>&amp;#8201;</p>&#8201;</div>
-																				 <div><p>&amp;#8202;</p>&#8202;</div>
-																				 <div><p>&amp;#8208;</p>&#8208;</div>
-																				 <div><p>&amp;#8209;</p>&#8209;</div>
-																				 <div><p>&amp;#8210;</p>&#8210;</div>
-																				 <div><p>&amp;#8211;</p>&#8211;</div>
-																				 <div><p>&amp;#8212;</p>&#8212;</div>
-																				 <div><p>&amp;#8216;</p>&#8216;</div>
-																				 <div><p>&amp;#8217;</p>&#8217;</div>
-																				 <div><p>&amp;#8218;</p>&#8218;</div>
-																				 <div><p>&amp;#8220;</p>&#8220;</div>
-																				 <div><p>&amp;#8221;</p>&#8221;</div>
-																				 <div><p>&amp;#8222;</p>&#8222;</div>
-																				 <div><p>&amp;#8226;</p>&#8226;</div>
-																				 <div><p>&amp;#8230;</p>&#8230;</div>
-																				 <div><p>&amp;#8239;</p>&#8239;</div>
-																				 <div><p>&amp;#8249;</p>&#8249;</div>
-																				 <div><p>&amp;#8250;</p>&#8250;</div>
-																				 <div><p>&amp;#8287;</p>&#8287;</div>
-																				 <div><p>&amp;#8364;</p>&#8364;</div>
-																				 <div><p>&amp;#8482;</p>&#8482;</div>
-																				 <div><p>&amp;#9724;</p>&#9724;</div>
-																				 <div><p>&amp;#64257;</p>&#64257;</div>
-																				 <div><p>&amp;#64258;</p>&#64258;</div>
-																				 <div><p>&amp;#64259;</p>&#64259;</div>
-																				 <div><p>&amp;#64260;</p>&#64260;</div>
-																																																</div>	
-				</div>
-		
-		
-			</div>
-		</div>
-		
-		
-		<div id="specs">
-			
-		</div>
-	
-		<div id="installing">
-			<div class="section">
-				<div class="grid7 firstcol">
-					<h1>Installing Webfonts</h1>
-					
-					<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
-					
-					<h2>1. Upload your webfonts</h2>
-					<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
-					
-					<h2>2. Include the webfont stylesheet</h2>
-					<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p>
-
-
-<code>
-@font-face{ 
-	font-family: 'MyWebFont';
-	src: url('WebFont.eot');
-	src: url('WebFont.eot?#iefix') format('embedded-opentype'),
-	     url('WebFont.woff') format('woff'),
-	     url('WebFont.ttf') format('truetype'),
-	     url('WebFont.svg#webfont') format('svg');
-}
-</code>
-
-	<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
-	<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>
-
-					<h2>3. Modify your own stylesheet</h2>
-					<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
-<code>p { font-family: 'WebFont', Arial, sans-serif; }</code>
-
-<h2>4. Test</h2>
-<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
-				</div>
-				
-				<div class="grid5 sidebar">
-					<div class="box">
-						<h2>Troubleshooting<br />Font-Face Problems</h2>
-						<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
-
-						<h3>Fonts not showing in any browser</h3>
-
-						<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
-
-						<h3>Fonts not loading in iPhone or iPad</h3>
-
-						<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
-
-						<h3>Fonts not loading in Firefox</h3>
-
-						<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
-
-						<h3>Fonts not loading in IE</h3>
-
-						<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
-
-						<h3>Fonts not loading in IE9</h3>
-
-						<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
-					</div>
-				</div>
-			</div>
-			
-		</div>
-	
-	</div>
-	<div id="footer">
-		<p>&copy;2010-2011 Font Squirrel. All rights reserved.</p>
-	</div>
-</div>
-</body>
-</html>
diff --git a/client/assets/fonts/brandon_bld/brandon_bld-webfont-webfont.eot b/client/assets/fonts/brandon_bld/brandon_bld-webfont-webfont.eot
deleted file mode 100755
index 692dfa1e31c1562106e7f1de06e5353ba0986113..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/brandon_bld/brandon_bld-webfont-webfont.eot and /dev/null differ
diff --git a/client/assets/fonts/brandon_bld/brandon_bld-webfont-webfont.svg b/client/assets/fonts/brandon_bld/brandon_bld-webfont-webfont.svg
deleted file mode 100755
index 47349c3dc217304723c4443cc5eb20801343a164..0000000000000000000000000000000000000000
--- a/client/assets/fonts/brandon_bld/brandon_bld-webfont-webfont.svg
+++ /dev/null
@@ -1,4748 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
-<metadata></metadata>
-<defs>
-<font id="webfontregular" horiz-adv-x="1357" >
-<font-face units-per-em="2048" ascent="1434" descent="-614" />
-<missing-glyph horiz-adv-x="452" />
-<glyph unicode="&#xfb01;" horiz-adv-x="1140" d="M63 643v137q0 17 11 28t28 11h70v223q0 185 114 298.5t289 113.5q89 0 173.5 -28t140.5 -60q13 -7 16.5 -23.5t-4.5 -29.5l-70 -129q-18 -37 -55 -19q-116 58 -198 58q-61 0 -105.5 -47t-44.5 -136v-221h551q16 0 27.5 -11t11.5 -28v-741q0 -15 -12 -27t-27 -12h-170 q-17 0 -28 11.5t-11 27.5v565h-342v-565q0 -14 -7 -22.5t-21 -11.5t-24 -4t-26 -1h-139q-15 0 -27 12t-12 27v565h-70q-17 0 -28 11.5t-11 27.5z" />
-<glyph unicode="&#xfb02;" horiz-adv-x="1167" d="M59 643v135q0 17 11 29t28 12h74v223q0 192 115.5 302t287.5 110q50 0 98.5 -12t82 -29t60 -33.5t39.5 -28.5l13 -12l23 58q16 37 49 37h66q15 0 26.5 -12t11.5 -27v-1356q0 -15 -11.5 -27t-26.5 -12h-172q-15 0 -27 12t-12 27v1081q-6 9 -20 22.5t-39.5 33t-62.5 32.5 t-75 13q-71 0 -121.5 -46t-50.5 -135v-221h172q16 0 27.5 -11t11.5 -28v-135q0 -15 -12 -27t-27 -12h-172v-567q0 -15 -12 -27t-27 -12h-178q-15 0 -26 12t-11 27v567h-74q-17 0 -28 11t-11 26z" />
-<glyph horiz-adv-x="0" />
-<glyph horiz-adv-x="682" />
-<glyph unicode=" "  horiz-adv-x="452" />
-<glyph unicode="&#x09;" horiz-adv-x="452" />
-<glyph unicode="&#xa0;" horiz-adv-x="452" />
-<glyph unicode="!" horiz-adv-x="634" d="M150 147q0 69 49 119.5t116 50.5q70 0 120 -50.5t50 -119.5t-50 -118t-120 -49q-68 0 -116.5 49t-48.5 118zM166 1161v234q0 15 12 27t27 12h225q15 0 27 -12t12 -27v-230l-80 -575q-2 -12 -14 -22.5t-25 -10.5h-65q-13 0 -25 10.5t-14 22.5z" />
-<glyph unicode="&#x22;" horiz-adv-x="702" d="M74 1065v330q0 15 12 27t27 12h163q21 0 32 -15.5t5 -36.5l-84 -325q-3 -12 -14 -21.5t-22 -9.5h-80q-15 0 -27 12t-12 27zM424 1065v330q0 15 12 27t27 12h164q21 0 32 -15.5t5 -36.5l-84 -325q-3 -12 -14.5 -21.5t-22.5 -9.5h-80q-15 0 -27 12t-12 27z" />
-<glyph unicode="#" horiz-adv-x="1101" d="M76 424v29q0 17 11 28t28 11h159l48 335h-148q-15 0 -27 12t-12 27v29q0 15 12 27t27 12h162l65 467q2 12 13 22.5t24 10.5h29q18 0 29 -13.5t8 -31.5l-62 -455h324l68 467q2 12 13.5 22.5t24.5 10.5h25q19 0 30.5 -13t8.5 -32l-66 -455h131q17 0 28 -11.5t11 -27.5v-29 q0 -16 -11 -27.5t-28 -11.5h-145l-47 -335h133q16 0 27.5 -11t11.5 -28v-29q0 -15 -12 -27t-27 -12h-149l-45 -352q-2 -14 -13 -23.5t-26 -9.5h-27q-19 0 -30 13t-9 32l45 340h-326l-47 -352q-1 -13 -13 -23t-26 -10h-24q-20 0 -31 13t-8 32l47 340h-145q-17 0 -28 11.5 t-11 27.5zM379 492h326l45 335h-324z" />
-<glyph unicode="$" horiz-adv-x="1075" d="M74.5 174.5q0.5 11.5 9.5 26.5q7 11 17.5 30t18.5 33.5t19 32t21.5 28.5t21.5 19t23 7.5t24 -9.5q16 -12 43 -30t91.5 -50.5t119.5 -46.5q0 67 1 196.5t1 196.5q-68 27 -116.5 51t-107.5 64.5t-95.5 85t-62 110.5t-25.5 144q0 75 25 140.5t73.5 118.5t128.5 87.5 t182 42.5v66q0 17 11.5 27.5t27.5 10.5h27q16 0 27.5 -10.5t11.5 -27.5v-68q82 -6 165.5 -36t121.5 -52.5t69 -44.5q15 -9 19 -30t-6 -38q-6 -8 -14.5 -22t-15.5 -24.5t-16 -24.5t-17 -24t-17.5 -20.5t-17.5 -17t-17 -11t-17 -3.5t-16 6q-2 1 -38.5 23t-87.5 48t-95 40v-369 q64 -27 113 -51.5t111 -67t102 -88.5t68 -113.5t28 -144.5q0 -171 -112.5 -281t-313.5 -122v-213q0 -17 -11.5 -27t-29.5 -10q-64 0 -64 37v213q-77 6 -147 25.5t-118.5 46.5t-76.5 47t-47 38q-11 11 -15.5 17.5t-4 18zM328 1092q0 -61 37 -108t116 -89v330 q-73 -9 -113 -46.5t-40 -86.5zM592 203q67 11 110 52.5t43 100.5q0 116 -153 205v-358z" />
-<glyph unicode="%" horiz-adv-x="1355" d="M45 1178q0 115 80.5 195.5t196.5 80.5q114 0 195 -80.5t81 -195.5t-81 -196t-195 -81q-116 0 -196.5 80.5t-80.5 196.5zM213 55l702 1358q11 21 35 21h103q23 0 34 -18t0 -38l-706 -1358q-3 -7 -13.5 -13.5t-21.5 -6.5h-98q-23 0 -34 17.5t-1 37.5zM221 1178 q0 -41 30 -71t71 -30q40 0 69 30t29 71q0 40 -29 69t-69 29q-41 0 -71 -29t-30 -69zM719 256q0 115 81 195.5t195 80.5q116 0 197.5 -80.5t81.5 -195.5t-81.5 -195.5t-197.5 -80.5q-114 0 -195 80.5t-81 195.5zM895 256q0 -41 29.5 -70.5t70.5 -29.5q40 0 70.5 29.5 t30.5 70.5q0 39 -30.5 68.5t-70.5 29.5q-41 0 -70.5 -29t-29.5 -69z" />
-<glyph unicode="&#x26;" horiz-adv-x="1411" d="M152 365q0 43 8 84t23.5 74.5t33 62.5t41 54t43 43.5t44 36t38.5 26.5t32 19t19 11v4l-43 47q-69 72 -104.5 141.5t-34.5 153.5q0 60 25 118t71.5 106.5t122 78t168.5 29.5q169 0 278 -97t109 -237q0 -59 -21 -114.5t-56.5 -98.5t-65.5 -71.5t-67 -56.5t-40 -31l236 -238 q50 101 73 227q7 35 21 48t47 3l113 -32q9 -2 15.5 -5.5t10.5 -8t7 -8.5t4 -10.5t2 -10.5t0 -11t-1.5 -9.5t-2 -9t-1.5 -7.5q-41 -171 -126 -326l182 -172q16 -16 22 -25.5t1.5 -28t-27.5 -40.5l-84 -86q-44 -40 -90 6l-148 150q-14 -17 -35 -35t-61.5 -44.5t-88 -46 t-117 -34t-144.5 -14.5q-191 0 -311.5 112t-120.5 273zM395 391q0 -84 61.5 -138t153.5 -54q158 0 264 120l-305 324q-1 0 -14.5 -8t-21 -13t-24 -16.5t-27 -22t-25.5 -26t-24.5 -33t-19 -38t-14 -45t-4.5 -50.5zM479 1122q-1 -32 13 -63t30 -50.5t51 -56.5q9 -9 13 -14 l45 -45q1 1 12 7t18 10t21 13t24 17t23.5 20t23.5 23t20.5 26t17 30t10.5 33t4 36q0 61 -48.5 107.5t-125.5 46.5q-69 0 -110.5 -40.5t-41.5 -99.5z" />
-<glyph unicode="'" horiz-adv-x="352" d="M74 1065v330q0 15 12 27t27 12h163q21 0 32 -15.5t5 -36.5l-84 -325q-3 -12 -14 -21.5t-22 -9.5h-80q-15 0 -27 12t-12 27z" />
-<glyph unicode="(" horiz-adv-x="700" d="M88 645q0 185 31 328.5t80 230.5t118 143.5t136 78.5t143 26q17 1 28 -8t11 -23l6 -135q1 -12 -6.5 -23.5t-18.5 -13.5q-146 -39 -211 -189.5t-65 -414.5q0 -265 64.5 -414t211.5 -188q13 -3 20 -14.5t5 -24.5l-6 -133q-3 -33 -39 -33q-53 4 -101.5 16t-101 39t-95.5 67 t-83 103t-67.5 143.5t-43.5 192.5t-16 246z" />
-<glyph unicode=")" horiz-adv-x="702" d="M59 4q-2 13 5 24.5t20 14.5q147 39 211.5 188t64.5 414q0 264 -65 414.5t-211 189.5q-11 2 -18.5 13.5t-6.5 23.5l7 135q0 14 10.5 23t27.5 8q76 -4 143 -26t136 -78.5t118 -143.5t80 -230.5t31 -328.5q0 -134 -16 -246t-43.5 -192.5t-67.5 -143.5t-83 -103t-95.5 -67 t-101 -39t-101.5 -16q-35 0 -38 33z" />
-<glyph unicode="*" horiz-adv-x="716" d="M49 968q3 16 17 25l170 103l-170 102q-13 9 -17 25.5t4 29.5q39 55 39 56q8 11 23.5 14t27.5 -6l148 -103l-4 181q0 15 12 27t27 12h65q15 0 27 -12t12 -27l-4 -181l147 105q12 8 29.5 5t24.5 -15l35 -56q9 -13 6.5 -29.5t-17.5 -25.5l-170 -102l170 -105q14 -9 17.5 -25 t-4.5 -28l-39 -55q-7 -13 -23.5 -17t-28.5 4l-147 103l4 -176q0 -15 -12 -27t-27 -12h-65q-15 0 -27 12t-12 27l4 178l-148 -103q-12 -9 -28.5 -5t-24.5 16l-35 55q-9 14 -6 30z" />
-<glyph unicode="+" horiz-adv-x="1146" d="M131 651v115q0 15 12 27t27 12h307v309q0 15 12 26t27 11h115q15 0 27 -11t12 -26v-309h309q15 0 26 -12t11 -27v-115q0 -15 -11 -27t-26 -12h-309v-305q0 -15 -12 -26t-27 -11h-115q-15 0 -27 11t-12 26v305h-307q-15 0 -27 12t-12 27z" />
-<glyph unicode="," horiz-adv-x="530" d="M74 145q0 70 51.5 120t128.5 50q36 0 70 -14t66 -43.5t51.5 -84t19.5 -126.5q0 -89 -25 -167.5t-64.5 -132t-75 -87.5t-69.5 -55q-28 -19 -51 4l-31 33q-11 12 -8.5 27.5t17.5 27.5q55 48 83 83q80 102 80 216l-5 -2q-4 -1 -11 -3.5t-16 -5t-21 -4t-24 -1.5 q-68 0 -117 49t-49 116z" />
-<glyph unicode="-" horiz-adv-x="755" d="M111 430v137q0 17 11 28t28 11h456q17 0 28 -11t11 -28v-137q0 -15 -11 -26t-28 -11h-456q-17 0 -28 11t-11 26z" />
-<glyph unicode="." horiz-adv-x="481" d="M72 147q0 69 49.5 119.5t118.5 50.5t119.5 -50.5t50.5 -119.5t-50.5 -118t-119.5 -49t-118.5 49t-49.5 118z" />
-<glyph unicode="/" horiz-adv-x="722" d="M59 51l402 1356q3 11 14 19t23 8h147q22 0 32.5 -15t4.5 -37l-399 -1355q-3 -10 -14.5 -18.5t-22.5 -8.5h-150q-21 0 -32 15t-5 36z" />
-<glyph unicode="0" horiz-adv-x="1282" d="M125 696q0 338 135.5 527.5t380.5 189.5t380.5 -189.5t135.5 -527.5t-135.5 -527t-380.5 -189t-380.5 189t-135.5 527zM393 696q0 -228 64.5 -351.5t183.5 -123.5t183.5 123.5t64.5 351.5q0 227 -64.5 351t-183.5 124t-183.5 -124t-64.5 -351z" />
-<glyph unicode="1" horiz-adv-x="731" d="M55 1108q-3 23 11 37l294 248h144q15 0 26 -12t11 -27v-1315q0 -15 -11 -27t-26 -12h-176q-17 0 -28 11.5t-11 27.5v981l-180 -39q-14 -3 -27 5.5t-14 21.5z" />
-<glyph unicode="2" horiz-adv-x="1060" d="M63 39v47q206 250 531 682q104 129 104 227q0 76 -56.5 131.5t-160.5 55.5q-117 0 -229 -121q-12 -12 -27.5 -12t-27.5 12l-99 98q-10 10 -11 25t9 28q7 8 19 21.5t53 48.5t85 61.5t111.5 48t135.5 21.5q212 0 334 -117t122 -290q0 -63 -20 -122.5t-43.5 -98.5 t-73.5 -111q-77 -109 -352 -455h442q15 0 27 -12t12 -27v-141q0 -15 -12 -27t-27 -12h-807q-17 0 -28 11.5t-11 27.5z" />
-<glyph unicode="3" horiz-adv-x="1069" d="M66 187.5q1 14.5 10 25.5l104 100q28 25 53 0q3 -3 16.5 -14.5t39 -28t55 -31.5t68 -25.5t73.5 -10.5q86 0 151.5 55t65.5 137q0 84 -75 143.5t-207 59.5h-115q-17 0 -28 11t-11 30v129q0 41 39 41h115q121 0 187.5 53t66.5 135t-59 135.5t-140 53.5q-122 0 -207 -99 q-11 -12 -26 -13t-29 11l-100 95q-12 11 -11.5 26.5t11.5 26.5q6 7 18 19.5t51.5 43.5t81.5 54.5t106 43t128 19.5q119 0 218 -45.5t158.5 -132t59.5 -197.5q0 -109 -65 -195t-146 -124v-6q40 -17 80 -44.5t79.5 -68.5t64 -99t24.5 -122q0 -175 -130.5 -287t-340.5 -112 q-271 0 -426 182q-9 11 -8 25.5z" />
-<glyph unicode="4" horiz-adv-x="1222" d="M33 336v170l737 897q12 12 31 12h110q16 0 27.5 -11t11.5 -28v-872h164q17 0 28 -11t11 -26v-127q0 -16 -11 -27.5t-28 -11.5h-164l2 -262q0 -15 -12 -27t-27 -12h-170q-15 0 -26.5 12t-11.5 27v258h-633q-17 0 -28 11.5t-11 27.5zM303 510h410v491z" />
-<glyph unicode="5" horiz-adv-x="1081" d="M95.5 187q-0.5 13 17.5 32l102 100q26 23 49 3q8 -8 27 -22.5t55 -37.5t85.5 -39t96.5 -16q102 0 170 71.5t68 170.5t-65.5 164t-182.5 65h-315q-29 0 -46.5 22.5t-17.5 49.5v604q0 16 11 27.5t28 11.5h647q17 0 28 -11.5t11 -27.5v-140q0 -15 -11 -26.5t-28 -11.5h-454 v-273h176q216 0 342.5 -125.5t126.5 -328.5q0 -194 -143 -331.5t-353 -137.5q-77 0 -146.5 17.5t-119 45.5t-82.5 54t-55 53q-21 24 -21.5 37z" />
-<glyph unicode="6" horiz-adv-x="1103" d="M88 545q0 123 29 234.5t75 194.5t109.5 155.5t125.5 121.5t131 89.5t118.5 62t93.5 35.5q45 12 57 -29l47 -121q17 -43 -36 -59q-45 -14 -104 -44t-132 -78.5t-133 -120t-82 -150.5q33 19 101 38t133 19q78 0 151.5 -29t133.5 -82.5t96 -140t36 -192.5q0 -193 -137 -331 t-326 -138q-156 0 -268 78t-165.5 204t-53.5 283zM334 514q0 -54 14.5 -106t42.5 -96.5t75 -71.5t107 -27q96 0 165 71.5t69 168.5q0 99 -69 169t-167 70q-92 0 -154 -55.5t-83 -122.5z" />
-<glyph unicode="7" horiz-adv-x="991" d="M61 1210v144q0 15 12 27t27 12h852q15 0 27 -12t12 -27v-15l-610 -1284q-23 -55 -70 -55h-151q-51 0 -51 39v22l532 1110h-541q-15 0 -27 12t-12 27z" />
-<glyph unicode="8" horiz-adv-x="1161" d="M96 373q0 62 30 123t74 105t80.5 72t63.5 42v6q-35 19 -69 47t-67.5 67.5t-54 92.5t-20.5 110q0 167 127.5 271t317.5 104q195 0 323.5 -103.5t128.5 -271.5q0 -55 -20.5 -107t-54 -91.5t-67 -67.5t-69.5 -49v-8q39 -20 78 -49.5t79.5 -72t65.5 -100.5t25 -120 q0 -171 -133.5 -282t-355.5 -111q-216 0 -349 111.5t-133 281.5zM369 377q0 -82 63.5 -135.5t149.5 -53.5q87 0 150 53t63 136q0 72 -57 133.5t-156 83.5q-99 -22 -156 -83.5t-57 -133.5zM395 1028q0 -149 187 -194q92 21 139 73t47 121q0 73 -55 123.5t-135 50.5 q-74 0 -128.5 -50.5t-54.5 -123.5z" />
-<glyph unicode="9" horiz-adv-x="1103" d="M66 956q0 193 136.5 331t325.5 138q117 0 211.5 -45t154 -122.5t91 -179t31.5 -218.5q0 -123 -29 -234.5t-75 -194.5t-109.5 -155.5t-125.5 -121.5t-131 -89.5t-118.5 -62t-93.5 -35.5q-46 -13 -58 29l-47 121q-17 42 37 59q45 14 104 44t132 78.5t133 120t82 150.5 q-33 -19 -101 -38t-133 -19q-78 0 -151.5 29t-133.5 82.5t-96 140t-36 192.5zM297 952q0 -99 68.5 -169t166.5 -70q92 0 154.5 55.5t83.5 122.5q0 43 -9 85t-28 81t-46.5 69t-68 48t-88.5 18q-96 0 -164.5 -71.5t-68.5 -168.5z" />
-<glyph unicode=":" horiz-adv-x="548" d="M127 127q0 61 42.5 104t104.5 43t105 -43t43 -104t-43 -104t-105 -43t-104.5 43t-42.5 104zM127 692q0 62 43 105t104 43q62 0 105 -43t43 -105q0 -61 -43 -104t-105 -43t-104.5 42.5t-42.5 104.5z" />
-<glyph unicode=";" horiz-adv-x="505" d="M96 692q0 62 43 105t105 43q61 0 104 -43t43 -105t-42.5 -104.5t-104.5 -42.5t-105 43t-43 104zM104 117q0 56 42 96.5t104 40.5q30 0 58 -11.5t54 -35.5t42 -69t16 -105q0 -208 -184 -371q-26 -20 -48 2l-28 31q-22 22 4 45q13 9 31 26.5t45 49.5t45 78.5t18 95.5l-3 -1 l-10 -2.5t-13 -3t-16.5 -2.5t-18.5 -1q-57 0 -97.5 40t-40.5 97z" />
-<glyph unicode="&#x3c;" horiz-adv-x="892" d="M39 465v10q0 9 6 19.5t14 15.5l711 434q20 12 38.5 2t18.5 -35v-143q0 -20 -18 -33l-440 -262l440 -254q18 -13 18 -33v-143q0 -25 -18.5 -35t-38.5 2l-711 420q-8 5 -14 15.5t-6 19.5z" />
-<glyph unicode="=" horiz-adv-x="999" d="M127 299v117q0 16 11 27.5t28 11.5h668q17 0 27.5 -11.5t10.5 -27.5v-117q0 -16 -10.5 -27.5t-27.5 -11.5h-668q-17 0 -28 11.5t-11 27.5zM127 731v115q0 16 11 27.5t28 11.5h668q17 0 27.5 -11.5t10.5 -27.5v-115q0 -16 -10.5 -27.5t-27.5 -11.5h-668q-17 0 -28 11.5 t-11 27.5z" />
-<glyph unicode="&#x3e;" horiz-adv-x="892" d="M66 43v143q0 22 18 33l438 254l-438 262q-18 11 -18 33v143q0 25 18.5 35t38.5 -2l711 -434q8 -5 14 -15.5t6 -19.5v-10q0 -9 -6 -19.5t-14 -15.5l-711 -420q-20 -12 -38.5 -2t-18.5 35z" />
-<glyph unicode="?" horiz-adv-x="919" d="M45.5 1247.5q0.5 15.5 11.5 26.5q6 7 17 19.5t49 43.5t81 54.5t112.5 43t142.5 19.5q164 0 280.5 -98t116.5 -246q0 -58 -23 -110t-57.5 -87.5t-75 -70t-75 -60.5t-57.5 -56t-23 -58v-68q0 -19 -10.5 -31t-30.5 -12h-166q-16 0 -27.5 11t-11.5 28v86q0 54 29.5 103 t71.5 86t83.5 71.5t71 73.5t29.5 78q0 58 -45 97.5t-119 39.5q-43 0 -82 -13.5t-59.5 -29t-45.5 -37t-34 -27.5q-25 -15 -45 2l-97 95q-12 11 -11.5 26.5zM252 147q0 69 49.5 119.5t118.5 50.5t119.5 -50.5t50.5 -119.5t-50.5 -118t-119.5 -49t-118.5 49t-49.5 118z" />
-<glyph unicode="@" horiz-adv-x="2019" d="M66 457q0 216 71 401t197.5 316t308.5 205.5t397 74.5q208 0 378 -65.5t282 -181.5t172.5 -274t60.5 -343q0 -85 -15 -167.5t-50 -163.5t-87 -142t-133 -99t-180 -38q-182 0 -243 159h-17q-35 -69 -104.5 -114t-161.5 -45q-159 0 -265 126t-106 306q0 185 106.5 306.5 t270.5 121.5q134 0 248 -121q4 10 12 35t11 30.5t13 17.5t24 14.5t36 2.5h35q16 0 27.5 -11t11.5 -28v-374q0 -66 10 -111t28.5 -67.5t39.5 -31t49 -8.5q64 0 113 55.5t73.5 143.5t24.5 193q0 142 -42.5 262t-124.5 210t-211.5 140.5t-293.5 50.5q-341 0 -542 -211.5 t-201 -574.5q0 -245 135.5 -436.5t357.5 -284.5q35 -15 23 -49l-49 -129q-14 -35 -45 -23q-284 103 -464.5 354.5t-180.5 567.5zM784 426q-6 -96 48.5 -161.5t130.5 -65.5q62 0 102 33.5t55 80.5t17 109v76q-9 44 -59 89.5t-117 45.5q-74 0 -123.5 -57.5t-53.5 -149.5z" />
-<glyph unicode="A" d="M-4 35q0 9 4 18l637 1379q11 22 35 22h20q24 0 35 -22l631 -1379q4 -9 4 -18q0 -11 -6 -19q-10 -16 -33 -16h-178q-23 0 -36 9.5t-24 31.5l-100 221h-612l-101 -221q-16 -41 -59 -41h-178q-23 0 -33 16q-6 9 -6 19zM473 489h412l-205 451h-6z" />
-<glyph unicode="B" horiz-adv-x="1263" d="M186 39v1356q0 16 11 27.5t28 11.5h469q183 0 307.5 -109t124.5 -270q0 -108 -70 -197t-155 -129q44 -14 88 -41t85.5 -67.5t67 -99.5t25.5 -126q0 -170 -128.5 -282.5t-317.5 -112.5h-496q-17 0 -28 11.5t-11 27.5zM451 242h247q77 0 131 53.5t54 132.5 q0 75 -63.5 126.5t-145.5 51.5h-223v-364zM451 831h219q77 0 126.5 53.5t49.5 131.5q0 77 -49 125.5t-127 48.5h-219v-359z" />
-<glyph unicode="C" horiz-adv-x="1400" d="M82 715q0 151 58.5 288t157 235.5t235.5 157t288 58.5q152 0 270.5 -47t225.5 -143q13 -12 13.5 -29t-11.5 -29l-125 -129q-10 -12 -24.5 -12t-26.5 12q-65 57 -147.5 89t-168.5 32q-128 0 -233.5 -65.5t-164 -174.5t-58.5 -237q0 -127 59 -235.5t165 -173t234 -64.5 q170 0 314 117q12 10 27 9.5t24 -9.5l127 -132q10 -10 10 -25q0 -18 -12 -30q-204 -198 -498 -198q-101 0 -197 26t-177 73t-149 114.5t-115.5 148.5t-74 176.5t-26.5 196.5z" />
-<glyph unicode="D" horiz-adv-x="1511" d="M186 39v1356q0 15 11 27t26 12h486q145 0 278 -57t229.5 -153t153.5 -228t57 -277q0 -146 -57 -279.5t-153.5 -229.5t-229 -153t-278.5 -57h-486q-15 0 -26 12t-11 27zM451 250h233q199 0 330 134t131 335q0 200 -131 333.5t-330 133.5h-233v-936z" />
-<glyph unicode="E" horiz-adv-x="1204" d="M186 39v1356q0 16 11 27.5t28 11.5h834q17 0 28 -11.5t11 -27.5v-168q0 -16 -11 -27.5t-28 -11.5h-606v-336h505q15 0 27 -12t12 -27v-170q0 -17 -11.5 -28t-27.5 -11h-505v-358h606q17 0 28 -11.5t11 -27.5v-168q0 -16 -11 -27.5t-28 -11.5h-834q-17 0 -28 11.5 t-11 27.5z" />
-<glyph unicode="F" horiz-adv-x="1155" d="M186 39v1356q0 16 11 27.5t28 11.5h834q17 0 28 -11.5t11 -27.5v-168q0 -16 -11 -27.5t-28 -11.5h-606v-385h505q15 0 27 -12t12 -27v-168q0 -15 -12 -27t-27 -12h-505v-518q0 -15 -12 -27t-27 -12h-189q-17 0 -28 11.5t-11 27.5z" />
-<glyph unicode="G" horiz-adv-x="1458" d="M84 715q0 151 58 288t156 235.5t234.5 157t286.5 58.5q136 0 265 -49.5t235 -140.5q12 -12 13 -29t-11 -29l-127 -133q-25 -25 -53 0q-134 119 -310 119q-125 0 -231 -65t-166.5 -174.5t-60.5 -235.5q0 -125 61 -233t167.5 -172t232.5 -64q112 0 243 51v174h-164 q-17 0 -28 11t-11 26v162q0 17 11 28t28 11h394q15 0 25.5 -12t10.5 -27v-525q0 -20 -16 -32q-9 -5 -25 -14t-68 -32t-108 -40.5t-140 -32t-167 -14.5q-150 0 -286.5 57.5t-234.5 155t-156 233.5t-58 287z" />
-<glyph unicode="H" horiz-adv-x="1574" d="M186 39v1356q0 15 12 27t27 12h191q17 0 28 -11.5t11 -27.5v-543h667v543q0 16 11 27.5t28 11.5h189q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-189q-17 0 -28 11.5t-11 27.5v565h-667v-565q0 -16 -11 -27.5t-28 -11.5h-191q-15 0 -27 12t-12 27z" />
-<glyph unicode="I" horiz-adv-x="641" d="M186 39v1356q0 15 12 27t27 12h191q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-191q-15 0 -27 12t-12 27z" />
-<glyph unicode="J" horiz-adv-x="856" d="M-41 153q0 14 12 27l107 109q15 13 30 13q16 0 31 -15q61 -66 135 -66q66 0 115 54t49 153v967q0 16 11 27.5t28 11.5h193q17 0 28 -11.5t11 -27.5v-967q0 -208 -122 -328t-308 -120q-191 0 -312 149q-8 12 -8 24z" />
-<glyph unicode="K" horiz-adv-x="1341" d="M186 49v1335q0 21 14.5 35.5t35.5 14.5h180q20 0 34.5 -15t14.5 -35v-553l516 582q17 21 39 21h205q29 0 40.5 -25.5t-8.5 -48.5l-534 -602l573 -686q9 -12 9 -26q0 -10 -4 -20q-11 -26 -41 -26h-224q-28 0 -37 14l-534 660v-625q0 -20 -14.5 -34.5t-34.5 -14.5h-180 q-22 0 -36 14t-14 35z" />
-<glyph unicode="L" horiz-adv-x="1034" d="M186 39v1356q0 16 11 27.5t28 11.5h189q15 0 27 -12t12 -27v-1149h522q17 0 28 -11.5t11 -27.5v-168q0 -16 -11 -27.5t-28 -11.5h-750q-17 0 -28 11.5t-11 27.5z" />
-<glyph unicode="M" horiz-adv-x="1787" d="M91 38q0 4 1 9l244 1376q4 31 37 31h33q24 0 34 -20l451 -967h6l451 967q10 20 34 20h33q33 0 37 -31l242 -1376q1 -6 1 -11q0 -13 -7 -23q-10 -13 -31 -13h-187q-13 0 -24 10t-14 21l-121 776h-6l-359 -805q-7 -22 -35 -22h-37q-23 0 -34 22l-363 805h-6l-119 -776 q-2 -11 -13 -21t-24 -10h-184q-20 0 -31 12q-9 10 -9 26z" />
-<glyph unicode="N" horiz-adv-x="1583" d="M186 39v1378q0 15 12 26t27 11h51l852 -905h2v846q0 16 11 27.5t28 11.5h189q15 0 27 -12t12 -27v-1379q0 -15 -12 -25.5t-27 -10.5h-49l-856 940h-2v-881q0 -16 -11 -27.5t-28 -11.5h-187q-15 0 -27 12t-12 27z" />
-<glyph unicode="O" horiz-adv-x="1638" d="M84 715q0 101 26 197t73 177t114.5 149t148.5 115.5t176.5 74t196.5 26.5q151 0 287.5 -58t235 -157t156.5 -236t58 -288t-58 -287.5t-156.5 -234.5t-235 -155.5t-287.5 -57.5t-287.5 57.5t-234.5 155.5t-155.5 234.5t-57.5 287.5zM350 715q0 -193 138 -331t331 -138 q127 0 235.5 63t172 171t63.5 235t-63.5 236t-172 173t-235.5 64t-235 -64t-171 -173t-63 -236z" />
-<glyph unicode="P" horiz-adv-x="1212" d="M186 39v1356q0 16 11 27.5t28 11.5h482q189 0 323.5 -133.5t134.5 -319.5q0 -125 -61.5 -231t-166.5 -168t-228 -62h-256v-481q0 -15 -12 -27t-27 -12h-189q-17 0 -28 11.5t-11 27.5zM453 770h237q87 0 149 61.5t62 151.5q0 84 -62 141.5t-149 57.5h-237v-412z" />
-<glyph unicode="Q" horiz-adv-x="1640" d="M84 715q0 101 26 197t73 177t114.5 149t148.5 115.5t176.5 74t196.5 26.5q151 0 287.5 -58t235 -157t156.5 -236t58 -288q0 -206 -108.5 -381t-290.5 -275l256 -403q13 -22 2.5 -42t-35.5 -20h-217q-7 0 -18 6.5t-15 14.5l-219 371q-49 -6 -92 -6q-151 0 -287.5 57.5 t-234.5 155.5t-155.5 234.5t-57.5 287.5zM350 715q0 -193 138 -331t331 -138q127 0 235.5 63t172 171t63.5 235t-63.5 236t-172 173t-235.5 64t-235 -64t-171 -173t-63 -236z" />
-<glyph unicode="R" horiz-adv-x="1363" d="M186 39v1356q0 16 11 27.5t28 11.5h586q185 0 315.5 -129t130.5 -312q0 -138 -83 -248t-220 -165l281 -521q11 -20 0.5 -39.5t-35.5 -19.5h-215q-24 0 -33 18l-272 543h-227v-522q0 -15 -12 -27t-27 -12h-189q-17 0 -28 11.5t-11 27.5zM455 780h333q82 0 142.5 61.5 t60.5 147.5q0 81 -60.5 140t-142.5 59h-333v-408z" />
-<glyph unicode="S" horiz-adv-x="1110" d="M93 169q0 10 9 32l74 127q11 20 34 23t36 -9l10 -7q11 -7 24 -15.5t33 -20.5t41 -23t47 -22.5t51 -19.5t52 -13.5t51 -5.5q79 0 132.5 46t53.5 112q0 76 -63.5 133.5t-196.5 111.5q-81 33 -143 69.5t-120.5 89.5t-90 125t-31.5 159q0 71 27 138.5t80.5 125.5t145 93.5 t208.5 35.5q73 0 144.5 -16t125.5 -41.5t86 -44t54 -35.5q15 -9 19 -31t-7 -37l-78 -116q-13 -20 -32.5 -28t-39.5 3q-181 113 -284 113q-82 0 -131 -44.5t-49 -99.5q0 -71 57 -124t184 -105q48 -19 86.5 -37t84.5 -43.5t81 -52t69.5 -62.5t57 -75t36 -88.5t13.5 -104.5 q0 -165 -131 -285t-340 -120q-90 0 -171 18.5t-137.5 47.5t-88 51t-53.5 42q-16 15 -19 25q-1 2 -1 5z" />
-<glyph unicode="T" horiz-adv-x="1026" d="M27 1227v168q0 16 11 27.5t28 11.5h895q17 0 27.5 -11.5t10.5 -27.5v-168q0 -16 -10.5 -27.5t-27.5 -11.5h-314v-1149q0 -15 -12 -27t-27 -12h-190q-15 0 -27 12t-12 27v1149h-313q-17 0 -28 11.5t-11 27.5z" />
-<glyph unicode="U" horiz-adv-x="1472" d="M166 543v852q0 15 12 27t27 12h194q17 0 28 -11.5t11 -27.5v-838q0 -133 83 -222t214 -89t215 89t84 220v840q0 16 11 27.5t28 11.5h195q15 0 27 -12t12 -27v-852q0 -115 -44 -219t-120 -179.5t-182.5 -120t-225.5 -44.5q-158 0 -289 75.5t-205.5 204.5t-74.5 283z" />
-<glyph unicode="V" d="M-4 1398q0 10 6 19q10 17 33 17h209q26 0 35 -23l393 -881h14l393 881q9 23 35 23h209q23 0 33 -17q6 -9 6 -19q0 -9 -4 -18l-635 -1378q-11 -22 -35 -22h-20q-24 0 -35 22l-633 1378q-4 9 -4 18z" />
-<glyph unicode="W" horiz-adv-x="1841" d="M57 1399q1 12 7 21q10 14 32 14h189q12 0 23 -9t14 -20l213 -817h8l325 844q7 22 35 22h37q28 0 35 -22l328 -844h8l209 817q3 11 13.5 20t22.5 9h189q23 0 33 -14q7 -9 6 -21q0 -7 -2 -15l-387 -1376q-3 -12 -14 -20t-23 -8h-33q-28 0 -35 22l-366 928h-11l-362 -928 q-11 -22 -35 -22h-33q-12 0 -23 8t-14 20l-387 1376q-2 8 -2 15z" />
-<glyph unicode="X" horiz-adv-x="1294" d="M54 36q0 10 7 21l426 678l-409 641q-12 20 -1.5 39t36.5 19h237q19 0 33 -19l262 -434h2l266 434q9 19 33 19h238q26 0 36.5 -19t-1.5 -39l-412 -641l426 -678q6 -12 6 -22q-1 -9 -5 -17q-10 -18 -36 -18h-221q-26 0 -35 18l-293 469h-6l-289 -469q-14 -18 -35 -18h-221 q-26 0 -38 18q-5 9 -6 18z" />
-<glyph unicode="Y" horiz-adv-x="1193" d="M-12 1395q0 10 4 19q11 20 35 20h209q18 0 32 -19l328 -471l328 471q14 19 32 19h211q24 0 35 -20q4 -9 4 -19t-6 -21l-473 -682v-653q0 -15 -12 -27t-27 -12h-188q-17 0 -28 11.5t-11 27.5v651l-467 684q-6 11 -6 21z" />
-<glyph unicode="Z" horiz-adv-x="1101" d="M51 39v37l611 1102v8h-512q-15 0 -27 12t-12 27v170q0 15 12 27t27 12h856q15 0 26.5 -12t11.5 -27v-27l-602 -1116v-4h523q17 0 28 -11.5t11 -27.5v-170q0 -16 -11 -27.5t-28 -11.5h-875q-15 0 -27 12t-12 27z" />
-<glyph unicode="[" horiz-adv-x="714" d="M135 -575v1970q0 15 12 27t27 12h463q15 0 27 -12t12 -27v-127q0 -17 -11.5 -28t-27.5 -11h-266v-1639h266q15 0 27 -10.5t12 -25.5v-129q0 -15 -12 -27t-27 -12h-463q-15 0 -27 12t-12 27z" />
-<glyph unicode="\" horiz-adv-x="731" d="M41 1382q-6 22 4.5 37t32.5 15h155q12 0 23 -8t14 -19l402 -1356q6 -21 -5 -36t-32 -15h-158q-11 0 -22.5 8.5t-14.5 18.5z" />
-<glyph unicode="]" horiz-adv-x="714" d="M39 -446q0 15 12 25.5t27 10.5h266v1639h-266q-16 0 -27.5 11t-11.5 28v127q0 15 12 27t27 12h463q15 0 27 -12t12 -27v-1970q0 -15 -12 -27t-27 -12h-463q-15 0 -27 12t-12 27v129z" />
-<glyph unicode="^" horiz-adv-x="1073" d="M74.5 807q-10.5 19 1.5 39l426 596q12 20 35 20h10q23 0 35 -20l415 -596q12 -20 2 -39t-34 -19h-142q-18 0 -32 19l-252 346l-256 -346q-14 -19 -33 -19h-141q-24 0 -34.5 19z" />
-<glyph unicode="_" horiz-adv-x="849" d="M39 -59q0 17 11 28t28 11h694q17 0 28 -11t11 -28v-80q0 -15 -11 -26t-28 -11h-694q-17 0 -28 11t-11 26v80z" />
-<glyph unicode="`" horiz-adv-x="618" d="M109 1294l57 105q7 13 23.5 14.5t29.5 -8.5l336 -199q10 -5 13.5 -16t-1.5 -23l-37 -73q-13 -29 -51 -13l-358 158q-32 16 -12 55z" />
-<glyph unicode="a" horiz-adv-x="874" d="M63 260q0 112 88 185t240 73q36 0 73.5 -5.5t57.5 -10.5l19 -6v6q0 72 -24 103q-25 32 -83 32q-54 0 -122.5 -10t-106.5 -21q-7 -2 -14 -2q-28 0 -33 39l-19 107q-1 7 -1 13q0 28 30 38q12 5 49 13t103.5 17t125.5 9q94 0 157 -23.5t97.5 -72t48 -110.5t13.5 -151v-444 q0 -15 -12 -27t-27 -12h-74q-22 0 -35 29l-24 55q-114 -104 -250 -104q-124 0 -200.5 75.5t-76.5 204.5zM289 260q0 -46 29.5 -76t76.5 -30q45 0 88 28t54 51v113q-56 25 -115 25q-60 0 -96.5 -30.5t-36.5 -80.5z" />
-<glyph unicode="b" horiz-adv-x="1024" d="M123 39v1356q0 15 12 27t27 12h174q15 0 27 -12t12 -27v-592q98 37 182 37q180 0 293 -123.5t113 -306.5q0 -178 -114 -304t-280 -126q-48 0 -93.5 12.5t-75.5 30.5t-53.5 36t-34.5 31l-11 12l-20 -63q-5 -17 -15.5 -28t-23.5 -11h-80q-15 0 -27 12t-12 27zM367 334 q14 -49 56.5 -91t115.5 -42q81 0 133.5 60.5t52.5 148.5q0 87 -57 147.5t-142 60.5q-45 0 -85 -12t-57 -24l-17 -11v-237z" />
-<glyph unicode="c" horiz-adv-x="872" d="M59 410q0 118 61.5 217.5t161.5 156t214 56.5q182 0 303 -146q10 -14 7 -30t-18 -27l-94 -90q-22 -19 -51 6q-58 65 -141 65t-142 -61t-59 -147q0 -88 58 -148.5t141 -60.5q38 0 70 12t48.5 25t38.5 34l7 7q25 25 51 6l88 -76q22 -18 22 -35q0 -11 -8 -22 q-110 -172 -323 -172q-176 0 -305.5 124.5t-129.5 305.5z" />
-<glyph unicode="d" horiz-adv-x="1024" d="M61 410q0 183 113 306.5t293 123.5q84 0 182 -37v592q0 15 12 27t27 12h174q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-80q-13 0 -23.5 11t-15.5 28l-20 63q-4 -5 -11.5 -13t-33.5 -29t-54.5 -37.5t-74.5 -29.5t-94 -13q-166 0 -280 126t-114 304zM299 410 q0 -88 52.5 -148.5t133.5 -60.5q73 0 115.5 42t56.5 91v237q-6 5 -18.5 13t-54 21t-86.5 13q-85 0 -142 -60.5t-57 -147.5z" />
-<glyph unicode="e" horiz-adv-x="911" d="M61 410q0 115 53 213t149.5 157.5t215.5 59.5q160 0 271.5 -108.5t111.5 -272.5q0 -28 -4 -56q-1 -15 -13 -24.5t-26 -9.5h-524q5 -69 59 -124t138 -55q88 0 159 52q35 21 54 0l83 -97q11 -11 11.5 -25.5t-13.5 -27.5q-121 -112 -305 -112q-182 0 -301 125t-119 305z M313 512h310q-5 57 -48.5 98t-101.5 41q-61 0 -106.5 -40t-53.5 -99z" />
-<glyph unicode="f" horiz-adv-x="704" d="M63 643v137q0 17 11 28t28 11h70v221q0 196 107 305t276 109q74 0 141.5 -25.5t100.5 -54.5q9 -8 11 -22q1 -4 1 -8q0 -9 -4 -17l-70 -131q-6 -12 -21 -15t-28 5q-69 41 -121 41q-66 0 -101.5 -49t-35.5 -138v-221h205q17 0 28 -11t11 -28v-137q0 -16 -11 -27.5 t-28 -11.5h-205v-565q0 -15 -12 -27t-27 -12h-178q-15 0 -27 12t-12 27v565h-70q-17 0 -28 11.5t-11 27.5z" />
-<glyph unicode="g" horiz-adv-x="946" d="M37 61q0 45 16 85t38.5 65.5t44.5 44.5t38 27l16 8q-7 8 -17 22.5t-27 64.5t-17 105q0 145 103 251t253 106h373q17 0 28 -11t11 -28v-68q0 -28 -23 -35l-114 -36q3 -3 8.5 -8t20 -24t25 -41t19.5 -58.5t9 -77.5q0 -128 -97.5 -225t-252.5 -97q-45 0 -99 8t-65 8 q-25 0 -50.5 -21.5t-25.5 -55.5q0 -31 23.5 -50.5t58.5 -19.5h262q144 0 241 -78t97 -209q0 -149 -118 -248.5t-331 -99.5q-109 0 -192.5 25t-130.5 66.5t-70.5 89.5t-23.5 100q0 121 122 194v6q-13 4 -29.5 11.5t-39.5 25.5t-40.5 40.5t-30.5 59t-13 78.5zM303 -309 q0 -54 48.5 -87.5t131.5 -33.5q86 0 138.5 35.5t52.5 93.5q0 37 -34.5 68.5t-115.5 31.5q-76 0 -133 -8q-17 -6 -34.5 -15.5t-35.5 -32.5t-18 -52zM348 473q0 -64 41 -105.5t103 -41.5q63 0 102 41t39 106t-39 106.5t-102 41.5q-62 0 -103 -42t-41 -106z" />
-<glyph unicode="h" horiz-adv-x="1064" d="M123 39v1356q0 15 12 27t27 12h174q15 0 27 -12t12 -27v-623q36 27 93.5 47.5t123.5 20.5q76 0 138 -22.5t103.5 -61t70 -91.5t41.5 -111t13 -122v-393q0 -15 -11.5 -27t-26.5 -12h-166q-17 0 -28 11.5t-11 27.5v395q0 84 -44 134t-118 50q-69 0 -116 -40t-62 -105v-434 q0 -39 -43 -39h-170q-15 0 -27 12t-12 27z" />
-<glyph unicode="i" horiz-adv-x="493" d="M104 1251q0 59 41 100.5t99 41.5q60 0 101.5 -41.5t41.5 -100.5t-41.5 -100t-101.5 -41q-58 0 -99 41t-41 100zM123 39v741q0 17 11.5 28t27.5 11h170q16 0 27.5 -11t11.5 -28v-741q0 -15 -12 -27t-27 -12h-170q-15 0 -27 12t-12 27z" />
-<glyph unicode="j" horiz-adv-x="495" d="M-262 -526q0 10 4 18l68 131q6 12 21 15t28 -5q69 -41 121 -41q69 0 106 49t37 138v1001q0 17 11.5 28t27.5 11h172q16 0 27.5 -11t11.5 -28v-1001q0 -197 -106 -305.5t-275 -108.5q-75 0 -143 25.5t-99 54.5q-10 7 -12 22v7zM106 1251q0 59 41 100.5t99 41.5 q60 0 101.5 -41.5t41.5 -100.5t-41.5 -100t-101.5 -41q-58 0 -99 41t-41 100z" />
-<glyph unicode="k" horiz-adv-x="1001" d="M123 39v1356q0 15 12 27t27 12h174q15 0 27 -12t12 -27v-887l282 287q28 24 52 24h186q26 0 34.5 -21t-7.5 -38l-306 -311l365 -392q10 -11 10 -23q-1 -7 -3 -14q-8 -20 -34 -20h-221q-23 0 -35 16l-323 369v-346q0 -15 -12 -27t-27 -12h-174q-15 0 -27 12t-12 27z" />
-<glyph unicode="l" horiz-adv-x="495" d="M123 39v1356q0 15 12 27t27 12h172q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-172q-15 0 -27 12t-12 27z" />
-<glyph unicode="m" horiz-adv-x="1595" d="M123 39v741q0 17 11.5 28t27.5 11h76q27 0 34 -22l29 -78q16 18 38 36t56.5 38.5t81.5 33.5t98 13q162 0 267 -127q17 18 40.5 36.5t60.5 40.5t86.5 36t100.5 14q95 0 166 -33.5t112 -91.5t61 -129.5t20 -155.5v-391q0 -16 -11 -27.5t-28 -11.5h-166q-17 0 -28 11.5 t-11 27.5v405q0 81 -39 127.5t-114 46.5q-33 0 -63 -9t-49 -21.5t-33.5 -25t-20.5 -21.5l-6 -9q2 -40 2 -77v-416q0 -15 -12 -27t-27 -12h-154q-17 0 -28 11.5t-11 27.5v405q0 82 -37.5 128t-113.5 46q-69 0 -111 -38.5t-61 -90.5v-450q0 -15 -12 -27t-27 -12h-166 q-15 0 -27 12t-12 27z" />
-<glyph unicode="n" horiz-adv-x="1062" d="M123 39v741q0 17 11.5 28t27.5 11h78q24 0 34 -24l29 -76q16 17 37.5 34t58 38.5t87.5 35t106 13.5q94 0 166 -33.5t114 -91.5t63 -129t21 -154v-393q0 -15 -11.5 -27t-26.5 -12h-168q-17 0 -28 11.5t-11 27.5v405q0 80 -40.5 127t-113.5 47q-72 0 -123 -40t-69 -89v-450 q0 -22 -11.5 -30.5t-40.5 -8.5h-151q-15 0 -27 12t-12 27z" />
-<glyph unicode="o" horiz-adv-x="958" d="M59 412q0 114 56.5 212.5t153.5 157t210 58.5t210 -58.5t153.5 -157t56.5 -212.5q0 -177 -123.5 -304.5t-296.5 -127.5t-296.5 127.5t-123.5 304.5zM283 412q0 -88 56.5 -149.5t139.5 -61.5q82 0 139.5 61.5t57.5 149.5q0 86 -57.5 146t-139.5 60q-83 0 -139.5 -59.5 t-56.5 -146.5z" />
-<glyph unicode="p" horiz-adv-x="1024" d="M123 -575v1355q0 17 11.5 28t27.5 11h80q25 0 34 -24l27 -68q30 39 102.5 76t161.5 37q167 0 281.5 -126t114.5 -304q0 -180 -119.5 -305t-286.5 -125q-100 0 -182 45v-600q0 -39 -49 -39h-164q-15 0 -27 12t-12 27zM365 248q6 -5 18.5 -13t54 -21t86.5 -13q85 0 142 61 t57 148q0 88 -54 148t-137 60q-69 0 -112 -40.5t-55 -83.5v-246z" />
-<glyph unicode="q" horiz-adv-x="1024" d="M61 410q0 178 114.5 304t281.5 126q89 0 161.5 -37t102.5 -76l27 68q9 24 34 24h80q16 0 27.5 -11t11.5 -28v-1355q0 -15 -12 -27t-27 -12h-164q-49 0 -49 39v600q-82 -45 -182 -45q-167 0 -286.5 125t-119.5 305zM301 406q0 -87 56.5 -146t142.5 -59q45 0 85 11.5 t57 23.5l17 12v246q-12 43 -55 83.5t-112 40.5q-83 0 -137 -62t-54 -150z" />
-<glyph unicode="r" horiz-adv-x="698" d="M123 39v741q0 17 11.5 28t27.5 11h78q26 0 36 -26l29 -80q20 28 45 52.5t77 49.5t110 25q77 0 126 -23q36 -17 36 -41q0 -9 -5 -18l-76 -133q-8 -14 -21.5 -19.5t-25.5 0.5q-36 12 -59 12q-55 0 -93 -27t-52 -56v-496q0 -39 -48 -39h-157q-15 0 -27 12t-12 27z" />
-<glyph unicode="s" horiz-adv-x="745" d="M68 598q0 102 76.5 172t224.5 70q157 0 252 -64q14 -9 19.5 -24.5t-1.5 -30.5l-51 -105q-7 -13 -22 -16t-27 2q-92 43 -170 43q-70 0 -70 -47q0 -28 39 -49q14 -6 74 -31q52 -20 90 -38t75 -43.5t60 -54t37 -67.5t14 -86q0 -105 -88 -177t-238 -72q-92 0 -162.5 22.5 t-109.5 52.5q-24 20 -12 43l55 111q6 15 20 17.5t27 -3.5q93 -49 187 -49q69 0 69 51q0 28 -28 49.5t-109 53.5q-119 46 -175 111.5t-56 158.5z" />
-<glyph unicode="t" horiz-adv-x="706" d="M59 643v137q0 17 11 28t26 11h70v228q0 15 12 26.5t27 11.5l168 2q15 0 26 -11.5t11 -26.5v-230h180q17 0 28 -11t11 -28v-137q0 -16 -11 -27.5t-28 -11.5h-180v-328q0 -39 16.5 -52t46.5 -13q37 0 100 22q35 12 45 -22l41 -129q3 -7 3 -14q0 -8 -4 -15q-6 -14 -21 -20 q-7 -4 -44 -16t-96 -24.5t-104 -12.5q-227 0 -227 264v360h-70q-15 0 -26 12t-11 27z" />
-<glyph unicode="u" horiz-adv-x="1030" d="M109 383v397q0 17 11.5 28t26.5 11h168q16 0 27.5 -11t11.5 -28v-403q0 -82 40 -129t110 -47q61 0 107.5 47t56.5 106v426q0 23 10 31t35 8h155q16 0 27.5 -11t11.5 -28v-741q0 -15 -12 -27t-27 -12h-75q-27 0 -39 31l-25 67q-2 -2 -15.5 -14.5t-20.5 -18.5t-24 -18.5 t-30.5 -20t-35 -17.5t-42.5 -15.5t-49 -9.5t-57 -4q-92 0 -160.5 33t-108 90.5t-58.5 127.5t-19 152z" />
-<glyph unicode="v" horiz-adv-x="856" d="M8 791q0 7 4 13q8 14 31 15h178q26 0 37 -22l166 -381h4l176 381q11 22 49 22h160q23 -1 31 -15q4 -6 4 -13q0 -10 -6 -21l-375 -770q-12 -20 -35 -20h-10q-23 0 -35 20l-373 770q-6 11 -6 21z" />
-<glyph unicode="w" horiz-adv-x="1261" d="M33 789q0 9 6 17q11 14 33 13h147q10 0 22 -7t15 -17l123 -367h2l209 393q10 19 33 19h16q22 0 33 -19l207 -393h2l123 367q5 16 15.5 20t31.5 4h133q22 1 33 -13q7 -8 7 -19q0 -7 -3 -15l-256 -770q-7 -22 -37 -22h-8q-22 0 -33 18l-258 477h-2l-256 -477 q-11 -18 -33 -18h-10q-28 0 -35 22l-256 770q-4 9 -4 17z" />
-<glyph unicode="x" horiz-adv-x="923" d="M40 33q0 13 9 26l266 359l-258 342q-15 20 -5 39.5t36 19.5h170q25 0 40.5 -5t27.5 -23l133 -193h2l135 193q19 28 61 28h185q26 1 33 -19q2 -6 2 -12q0 -14 -11 -28l-258 -340l260 -361q9 -13 9 -26q0 -7 -2 -13q-7 -20 -31 -20h-180q-35 0 -58 33l-145 205h-2 l-156 -222q-12 -16 -33 -16h-196q-25 0 -32 20q-2 6 -2 13z" />
-<glyph unicode="y" horiz-adv-x="948" d="M12 784q0 10 6 18q10 17 33 17h185q23 0 34 -22l207 -463h2l205 463q7 14 17.5 18t31.5 4h164q25 0 35 -17q6 -8 6 -16q0 -10 -6 -20l-627 -1356q-12 -24 -35 -24h-176q-23 0 -34 16.5t-1 38.5l291 616l-334 709q-4 9 -4 18z" />
-<glyph unicode="z" horiz-adv-x="749" d="M61 39v20l291 537v4h-233q-15 0 -26 12t-11 27v141q0 17 11 28t26 11h540q24 1 36 -17q6 -9 5 -18q0 -10 -6 -20l-297 -541v-6h221q17 0 28 -11t11 -28v-139q0 -16 -11 -27.5t-28 -11.5h-518q-15 0 -27 12t-12 27z" />
-<glyph unicode="{" horiz-adv-x="806" d="M39 354v101q0 26 29 34q16 4 46 18.5t63.5 49t33.5 74.5v260q0 94 17.5 172.5t46.5 135t70 101t85.5 72t96 46t97.5 26.5t95 10q38 3 41 -35l8 -129q1 -16 -8 -25.5t-21 -11.5q-126 -27 -200 -119t-74 -243v-215q0 -61 -23 -113.5t-56.5 -84t-55 -47t-35.5 -21.5v-9 q26 -11 50.5 -27.5t54 -46t47.5 -77t18 -105.5v-219q0 -151 74 -241.5t200 -116.5q32 -9 29 -39l-8 -129q-2 -15 -14 -25.5t-27 -9.5q-49 2 -95 10t-97.5 26t-96 45.5t-85.5 72t-70 100.5t-46.5 134.5t-17.5 172.5v252q0 61 -45.5 96t-95.5 43q-12 2 -21.5 12t-9.5 25z" />
-<glyph unicode="|" horiz-adv-x="368" d="M133 -578v2096q0 17 11.5 27.5t27.5 10.5h27q15 0 26 -10.5t11 -27.5v-2096q0 -15 -12 -25.5t-27 -10.5h-25q-15 0 -27 10.5t-12 25.5z" />
-<glyph unicode="}" horiz-adv-x="806" d="M39 -471q-3 30 29 39q126 26 200 116.5t74 241.5v219q0 58 18 105.5t47.5 77t54 46t50.5 27.5v9q-14 6 -35.5 21.5t-55 47t-56.5 84t-23 113.5v215q0 151 -74 243t-200 119q-12 2 -21 11.5t-8 25.5l8 129q3 38 41 35q70 -3 134.5 -18t135 -54.5t121.5 -99.5t84 -160.5 t33 -230.5v-260q0 -40 33.5 -74.5t63.5 -49t46 -18.5q29 -8 29 -34v-101q0 -15 -9.5 -25t-21.5 -12q-50 -8 -95.5 -43t-45.5 -96v-252q0 -94 -17.5 -172.5t-46.5 -134.5t-70 -100.5t-85.5 -72t-96 -45.5t-97.5 -26t-95 -10q-15 -1 -27 9.5t-14 25.5z" />
-<glyph unicode="~" horiz-adv-x="1091" d="M56.5 512q-1.5 14 6.5 25q6 8 17 21.5t45 48.5t68.5 61.5t83.5 48.5t94 22q41 0 83 -15t62 -27.5t62 -41.5q3 -2 15.5 -10.5t17 -11.5t17 -10.5t19 -10.5t18.5 -8.5t21 -7.5t20 -4t21 -2q82 0 152 106q12 15 29 15.5t30 -11.5l86 -90q11 -9 12 -23.5t-8 -25.5 q-6 -8 -16.5 -21.5t-43.5 -48.5t-67 -61.5t-82 -48t-92 -21.5q-16 0 -31 1.5t-30 5.5t-26.5 7t-26.5 10t-23 10.5t-24 13.5t-21 13t-22.5 14.5t-20.5 13.5q-28 20 -41.5 28.5t-40 18.5t-51.5 10q-83 0 -152 -105q-11 -15 -28 -16t-29 12q-57 57 -92 90q-10 11 -11.5 25z" />
-<glyph unicode="&#xa1;" horiz-adv-x="544" d="M104 672q0 69 50 118.5t120 49.5q68 0 117 -49.5t49 -118.5t-49.5 -119.5t-116.5 -50.5q-70 0 -120 50.5t-50 119.5zM121 -346l80 575q2 12 14 22.5t25 10.5h65q13 0 25 -10.5t14 -22.5l80 -571v-233q0 -15 -12 -27t-27 -12h-225q-15 0 -27 12t-12 27v229z" />
-<glyph unicode="&#xa2;" horiz-adv-x="843" d="M39 410q0 118 61 217.5t161 156t214 56.5q24 0 64 -4l22 84q5 15 18.5 22.5t28.5 3.5l25 -6q15 -3 22.5 -16.5t3.5 -30.5l-24 -86q78 -36 143 -113q11 -13 8 -30t-18 -27l-94 -90q-22 -19 -51 6q-16 19 -45 37l-105 -387q33 0 59.5 6t48.5 20.5t31.5 22t30.5 27.5 q25 25 51 6l88 -76q35 -28 15 -57q-110 -172 -324 -172q-23 0 -59 4l-54 -197q-3 -15 -17.5 -22.5t-29.5 -4.5l-22 7q-15 3 -23.5 16.5t-5.5 28.5l53 196q-123 47 -199.5 155.5t-76.5 246.5zM281 410q0 -57 25 -104t69 -75l104 385q-83 -1 -140.5 -61t-57.5 -145z" />
-<glyph unicode="&#xa3;" horiz-adv-x="993" d="M86 635v27q0 15 11 26.5t26 11.5h63q-4 15 -18.5 69.5t-21.5 84t-14 77.5t-7 89q0 198 124 316t310 118q67 0 125 -14.5t105 -43t68 -44t52 -43.5q12 -9 13 -25.5t-9 -28.5l-100 -120q-10 -14 -27 -15.5t-28 8.5q-12 11 -32 26.5t-72.5 42t-92.5 26.5q-74 0 -127 -53.5 t-53 -139.5q0 -60 36 -181.5t42 -148.5h237q17 0 28 -11.5t11 -26.5v-29q0 -15 -11 -26t-28 -11h-217q11 -66 5 -174t-33 -195h401q15 0 26 -11t11 -28v-149q0 -15 -11 -27t-26 -12h-678q-15 0 -27 12t-12 27v37q128 243 76 520h-88q-15 0 -26 12t-11 27z" />
-<glyph unicode="&#xa4;" horiz-adv-x="933" d="M106 439q0 17 11 28l98 98q-25 55 -24.5 115.5t26.5 114.5l-98 98q-11 11 -11 28t11 27l82 80q11 10 28 10t27 -10l96 -96q54 26 115 26t115 -26l96 96q10 10 26.5 10t28.5 -10l80 -82q11 -11 11.5 -26.5t-9.5 -26.5l-96 -96q53 -119 2 -234l96 -96q11 -11 11 -27 t-11 -28l-82 -80q-11 -11 -26.5 -11.5t-26.5 9.5l-98 98q-117 -55 -234 0l-98 -98q-10 -10 -27 -10t-28 10l-80 82q-11 10 -11 27zM360 680q0 -44 30.5 -74.5t74.5 -30.5q45 0 75.5 30.5t30.5 74.5q0 46 -30 76t-76 30q-45 0 -75 -30t-30 -76z" />
-<glyph unicode="&#xa5;" horiz-adv-x="1296" d="M43.5 1414q10.5 20 34.5 20h211q19 0 33 -19l327 -471l328 471q14 19 33 19h209q24 0 34 -20t-2 -40l-473 -682v-96h223q17 0 28 -11.5t11 -27.5v-29q0 -15 -11 -25.5t-28 -10.5h-223v-142h223q17 0 28 -11.5t11 -27.5v-28q0 -15 -11 -26t-28 -11h-223v-207 q0 -15 -12 -27t-27 -12h-188q-17 0 -28 11.5t-11 27.5v207h-227q-15 0 -26 12t-11 27v26q0 15 11 27t26 12h227v142h-227q-15 0 -26 11.5t-11 26.5v27q0 15 11 27t26 12h227v94l-467 684q-12 20 -1.5 40z" />
-<glyph unicode="&#xa6;" horiz-adv-x="645" d="M270 100q0 17 11.5 28t27.5 11h27q15 0 26 -11t11 -28v-678q0 -15 -12 -25.5t-27 -10.5h-25q-15 0 -27 10.5t-12 25.5v678zM270 840v678q0 17 11.5 27.5t27.5 10.5h27q15 0 26 -10.5t11 -27.5v-678q0 -15 -12 -26t-27 -11h-25q-15 0 -27 11t-12 26z" />
-<glyph unicode="&#xa7;" horiz-adv-x="1048" d="M70.5 -317.5q0.5 12.5 11.5 28.5l63 109q29 48 72 16q1 0 33.5 -20.5t70 -41.5t92 -39t99.5 -18q70 0 122 36.5t52 103.5q0 43 -21 80t-59.5 66.5t-77 50.5t-88.5 42q-368 152 -368 418q0 155 147 279q-147 136 -147 290q0 69 25.5 133t76.5 118.5t138.5 87t199.5 32.5 q70 0 138.5 -15.5t121 -40.5t81 -42t50.5 -33q14 -8 19.5 -26.5t-4.5 -36.5l-84 -121q-25 -39 -68 -11q-154 103 -264 103q-82 0 -129 -39.5t-47 -91.5q0 -65 55.5 -116t175.5 -99q69 -27 119.5 -51.5t109.5 -63.5t96.5 -81.5t63 -103t25.5 -130.5q0 -86 -46 -159.5 t-104 -125.5q150 -138 150 -299q0 -75 -32 -144t-89.5 -121.5t-143 -84t-186.5 -31.5q-87 0 -165 18t-131.5 46.5t-82.5 48.5t-49 39q-12 12 -17 20t-4.5 20.5zM317 532q0 -33 13.5 -61t30.5 -47t57 -42.5t67.5 -37t86.5 -40.5q30 -14 46 -21q3 2 8.5 6t20 19t25 32 t19.5 45.5t9 60.5q0 145 -309 240l-6.5 -6.5t-10 -9.5t-12 -13t-13 -17.5t-12 -20.5t-10.5 -25t-7 -29t-3 -33z" />
-<glyph unicode="&#xa8;" horiz-adv-x="847" d="M100 1260q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5t-38.5 -93t-92.5 -39t-91.5 39t-37.5 93zM512 1260q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5t-38.5 -93t-92.5 -39t-91.5 39t-37.5 93z" />
-<glyph unicode="&#xa9;" horiz-adv-x="1646" d="M86 717q0 200 98.5 369.5t267.5 268.5t369 99q150 0 286.5 -58.5t235.5 -157.5t157.5 -235t58.5 -286q0 -120 -37.5 -232t-106 -202.5t-159 -158.5t-203 -105t-232.5 -37q-200 0 -369 98.5t-267.5 267.5t-98.5 369zM246 717q0 -156 77 -288.5t209.5 -210t288.5 -77.5 q157 0 289.5 77.5t209.5 210t77 288.5q0 157 -77 289.5t-209.5 209t-289.5 76.5q-117 0 -223.5 -45.5t-183.5 -122t-122.5 -183.5t-45.5 -224zM457 713q0 161 112 273t271 112q129 0 229 -78q14 -12 15 -28.5t-11 -30.5l-69 -78q-8 -11 -24.5 -11.5t-27.5 7.5 q-45 32 -110 32q-81 0 -135 -56.5t-54 -135.5q0 -82 54 -137.5t135 -55.5q58 0 108 33q12 9 27 8t24 -12l74 -82q11 -12 10.5 -28.5t-12.5 -28.5q-102 -86 -233 -86q-158 0 -270.5 112.5t-112.5 270.5z" />
-<glyph unicode="&#xaa;" horiz-adv-x="636" d="M43 1024q0 84 65 138.5t177 54.5q28 0 55.5 -4.5t41.5 -8.5l13 -4q0 61 -17 86t-69 25q-50 0 -159 -25q-29 -6 -35 31l-13 67q-6 28 19 39q14 7 79 19t128 12q131 0 182 -63.5t51 -200.5v-330q0 -12 -9 -20.5t-20 -8.5h-55q-17 0 -28 21q-2 7 -8.5 21.5t-8.5 21.5 q-25 -23 -44 -37.5t-57.5 -28.5t-82.5 -14q-90 0 -147.5 57.5t-57.5 151.5zM211 1026q0 -34 21.5 -57t56.5 -23q34 0 64.5 22t39.5 50v67q-10 9 -38.5 16t-53.5 7q-38 0 -64 -23.5t-26 -58.5z" />
-<glyph unicode="&#xab;" horiz-adv-x="964" d="M53 397q-17 23 0 49l223 304q14 24 37 24h117q26 0 34.5 -19t-3.5 -44l-139 -285l133 -301q11 -25 2.5 -43.5t-33.5 -18.5h-127q-18 0 -31 17zM463 397q-17 23 0 49l223 304q14 24 37 24h117q26 0 34.5 -19t-4.5 -44l-139 -285l133 -301q11 -25 3 -43.5t-33 -18.5h-127 q-18 0 -31 17z" />
-<glyph unicode="&#xac;" horiz-adv-x="1032" d="M47 653v115q0 15 12 27t27 12h805q16 0 27.5 -12.5t11.5 -26.5v-463q0 -15 -12 -26t-27 -11h-115q-15 0 -27 11t-12 26v309h-651q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xad;" horiz-adv-x="710" d="M88 430v137q0 17 11 28t28 11h457q17 0 28 -11t11 -28v-137q0 -15 -11 -26t-28 -11h-457q-17 0 -28 11t-11 26z" />
-<glyph unicode="&#xae;" horiz-adv-x="1646" d="M86 717q0 200 98.5 369.5t267.5 268.5t369 99q150 0 286.5 -58.5t235.5 -157.5t157.5 -235t58.5 -286q0 -120 -37.5 -232t-106 -202.5t-159 -158.5t-203 -105t-232.5 -37q-200 0 -369 98.5t-267.5 267.5t-98.5 369zM246 717q0 -156 77 -288.5t209.5 -210t288.5 -77.5 q157 0 289.5 77.5t209.5 210t77 288.5q0 157 -77 289.5t-209.5 209t-289.5 76.5q-117 0 -223.5 -45.5t-183.5 -122t-122.5 -183.5t-45.5 -224zM547 383v672q0 16 11 27.5t28 11.5h317q101 0 176.5 -69.5t75.5 -184.5q0 -157 -145 -228l94 -213q9 -22 -2 -38.5t-33 -16.5 h-111q-24 0 -36 29l-91 229h-106v-219q0 -16 -11 -27.5t-28 -11.5h-100q-17 0 -28 11.5t-11 27.5zM719 754h162q36 0 60 24t24 60q0 37 -23.5 60.5t-60.5 23.5h-162v-168z" />
-<glyph unicode="&#xaf;" horiz-adv-x="847" d="M123 1204v70q0 17 11 28t28 11h524q17 0 28 -11t11 -28v-70q0 -15 -11 -26t-28 -11h-524q-17 0 -28 11t-11 26z" />
-<glyph unicode="&#xb0;" horiz-adv-x="634" d="M41 1178q0 116 80.5 196t195.5 80q114 0 195.5 -80.5t81.5 -195.5t-81.5 -196t-195.5 -81q-115 0 -195.5 80.5t-80.5 196.5zM213 1178q0 -41 31.5 -73t72.5 -32q40 0 70.5 32t30.5 73q0 40 -30.5 70t-70.5 30q-41 0 -72.5 -30t-31.5 -70z" />
-<glyph unicode="&#xb1;" horiz-adv-x="1146" d="M131 135v115q0 15 12 27t27 12h807q15 0 26 -12t11 -27v-115q0 -15 -11 -27t-26 -12h-807q-15 0 -27 12t-12 27zM131 782v115q0 15 12 27t27 12h307v303q0 15 12 26t27 11h115q15 0 27 -11t12 -26v-303h307q15 0 26 -12t11 -27v-115q0 -15 -11 -27t-26 -12h-307v-211 q0 -15 -12 -25.5t-27 -10.5h-115q-15 0 -27 10.5t-12 25.5v211h-307q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xb2;" horiz-adv-x="567" d="M55 1051v34l226 258q51 57 51 103q0 31 -23 51.5t-59 20.5q-26 0 -51 -13t-39 -28q-19 -13 -33 6l-45 63q-10 11 -10 21.5t16 21.5q84 70 193 70q97 0 157 -52t60 -137q0 -84 -76 -176l-111 -131h164q8 0 13.5 -5.5t5.5 -12.5v-94q0 -19 -19 -19h-399q-21 0 -21 19z" />
-<glyph unicode="&#xb3;" horiz-adv-x="542" d="M53 1116l45 60q13 19 35 4l5 -4q6 -3 14.5 -7.5t20 -9.5t26.5 -8.5t30 -3.5q40 0 63 17t23 46q0 30 -25 49t-71 19h-59q-31 0 -31 29v63q0 29 31 29h59q38 0 61 17.5t23 45.5t-22 45t-56 17q-43 0 -80 -33q-8 -6 -15 -5.5t-15 11.5l-49 59q-8 8 -8 19.5t10 17.5 q8 7 22 18t61.5 29.5t98.5 18.5q99 0 160 -46.5t61 -123.5q0 -51 -31.5 -88t-72.5 -55v-3q47 -18 84.5 -56.5t37.5 -98.5q0 -82 -68.5 -129t-170.5 -47q-120 0 -195 67q-17 17 -2 37z" />
-<glyph unicode="&#xb4;" horiz-adv-x="618" d="M94 1167q-12 23 12 39l334 199q13 10 30 8.5t24 -14.5l59 -105q18 -40 -12 -55l-359 -158q-38 -15 -53 13z" />
-<glyph unicode="&#xb5;" horiz-adv-x="1073" d="M125 -575v1355q0 17 11.5 28t27.5 11h168q16 0 27.5 -11t11.5 -28v-407q3 -75 42.5 -117.5t106.5 -42.5q61 0 107.5 47.5t56.5 106.5v413q0 23 10 31t35 8h156q16 0 27.5 -11t11.5 -28v-741q0 -15 -12 -27t-27 -12h-76q-27 0 -39 31l-25 67q-2 -2 -15.5 -14.5 t-20.5 -18.5t-24 -18.5t-30.5 -20t-35 -17.5t-42.5 -15.5t-49 -9.5t-57 -4q-53 0 -100 12v-567q0 -15 -12 -27t-27 -12h-168q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xb6;" horiz-adv-x="1435" d="M39 1006q0 176 115.5 302t281.5 126l934 -2q15 0 27 -12t12 -27v-95q0 -17 -11.5 -27.5t-27.5 -10.5h-160v-1835q0 -16 -11 -27.5t-28 -11.5h-110q-15 0 -27 12t-12 27v1835h-279v-1835q0 -15 -11.5 -27t-26.5 -12h-111q-15 0 -27 12t-12 27v1150h-90 q-175 0 -300.5 125.5t-125.5 305.5z" />
-<glyph unicode="&#xb7;" horiz-adv-x="528" d="M80 524q0 78 54 133.5t128 55.5q78 0 133.5 -55.5t55.5 -133.5q0 -74 -55.5 -128t-133.5 -54q-74 0 -128 54t-54 128z" />
-<glyph unicode="&#xb8;" horiz-adv-x="505" d="M62 -431q2 16 16 28l41 34q9 9 22 8t21 -10q21 -24 61 -24q30 0 51 22.5t21 53.5q0 39 -37 66.5t-113 33.5q-34 4 -34 37v182h135v-106q93 -12 145.5 -68t52.5 -143q0 -89 -63 -152t-154 -63q-45 0 -86.5 19.5t-68.5 51.5q-12 14 -10 30z" />
-<glyph unicode="&#xb9;" horiz-adv-x="401" d="M27 1520q0 11 14 22l152 96h104q7 0 12.5 -5t5.5 -13v-569q0 -8 -5.5 -13.5t-12.5 -5.5h-127q-9 0 -14.5 5.5t-5.5 13.5v395l-101 -8q-18 0 -18 18z" />
-<glyph unicode="&#xba;" horiz-adv-x="618" d="M51 1130q0 154 67 239t193 85q125 0 190.5 -85t65.5 -239q0 -153 -66 -238t-190 -85q-126 0 -193 85t-67 238zM221 1130q0 -87 23.5 -133.5t66.5 -46.5q42 0 66 47t24 133q0 87 -24 134t-66 47q-43 0 -66.5 -47t-23.5 -134z" />
-<glyph unicode="&#xbb;" horiz-adv-x="964" d="M88.5 755q8.5 19 34.5 19h117q22 0 36 -24l224 -304q17 -26 0 -49l-213 -317q-13 -17 -31 -17h-127q-25 0 -33.5 18.5t2.5 43.5l133 301l-139 285q-12 25 -3.5 44zM497.5 755q8.5 19 34.5 19h117q23 0 37 -24l223 -304q17 -26 0 -49l-213 -317q-13 -17 -30 -17h-127 q-25 0 -33.5 18.5t2.5 43.5l133 301l-139 285q-13 25 -4.5 44z" />
-<glyph unicode="&#xbc;" horiz-adv-x="1359" d="M43 1315q0 11 14 22l152 97h104q7 0 13 -6t6 -13v-569q0 -8 -6 -13.5t-13 -5.5h-127q-9 0 -14.5 5.5t-5.5 13.5v395l-100 -8q-19 0 -19 18zM182 55l703 1358q11 21 35 21h102q23 0 34.5 -18t0.5 -38l-707 -1358q-3 -7 -13.5 -13.5t-21.5 -6.5h-98q-23 0 -34 17.5t-1 37.5 zM719 133v105l334 362q6 6 16 6h84q7 0 12.5 -5t5.5 -13v-348h82q7 0 13 -5.5t6 -11.5v-88q0 -7 -5.5 -12.5t-13.5 -5.5h-82v-99q0 -8 -5.5 -13t-12.5 -5h-115q-8 0 -14 5.5t-6 12.5v99h-281q-7 0 -12.5 5t-5.5 11zM868 238h152v170z" />
-<glyph unicode="&#xbd;" horiz-adv-x="1353" d="M43 1315q0 11 14 22l152 97h104q7 0 13 -6t6 -13v-569q0 -8 -6 -13.5t-13 -5.5h-127q-9 0 -14.5 5.5t-5.5 13.5v395l-100 -8q-19 0 -19 18zM182 55l703 1358q11 21 35 21h102q23 0 34.5 -18t0.5 -38l-707 -1358q-3 -7 -13.5 -13.5t-21.5 -6.5h-98q-23 0 -34 17.5t-1 37.5 zM801 18v35l225 258q51 57 51 103q0 31 -23 51t-59 20q-26 0 -51 -13t-39 -28q-19 -13 -33 7l-45 63q-10 11 -9.5 21.5t16.5 21.5q84 70 192 70q97 0 157 -52t60 -137q0 -84 -76 -176l-110 -131h164q7 0 12.5 -5.5t5.5 -12.5v-95q0 -18 -18 -18h-400q-20 0 -20 18z" />
-<glyph unicode="&#xbe;" horiz-adv-x="1435" d="M66 911l45 60q13 18 34 4l5 -3q6 -4 15 -9t20.5 -9.5t26.5 -8t30 -3.5q40 0 63 17.5t23 46.5q0 30 -25.5 48.5t-71.5 18.5h-59q-31 0 -31 29v63q0 29 31 29h59q38 0 61 17.5t23 45.5t-21.5 45t-55.5 17q-43 0 -80 -33q-8 -6 -15.5 -5.5t-15.5 11.5l-49 60q-8 8 -8 19.5 t10 17.5q8 7 22 18t61.5 29t98.5 18q99 0 160 -46.5t61 -123.5q0 -51 -31.5 -88t-72.5 -55v-2q47 -18 85 -57t38 -99q0 -82 -68.5 -129t-171.5 -47q-119 0 -194 67q-17 17 -2 37zM258 55l703 1358q11 21 34 21h103q23 0 34.5 -18t0.5 -38l-707 -1358q-3 -7 -13.5 -13.5 t-21.5 -6.5h-98q-23 0 -34 17.5t-1 37.5zM795 133v105l333 362q6 6 17 6h84q7 0 12.5 -5t5.5 -13v-348h82q7 0 13 -5.5t6 -11.5v-88q0 -7 -5.5 -12.5t-13.5 -5.5h-82v-99q0 -8 -5.5 -13t-12.5 -5h-115q-8 0 -14 5.5t-6 12.5v99h-281q-7 0 -12.5 5t-5.5 11zM944 238h152v170z " />
-<glyph unicode="&#xbf;" horiz-adv-x="888" d="M39 -291q0 58 23 110t57.5 87.5t75 70.5t75 60.5t57.5 56t23 58.5v67q0 19 10.5 31t30.5 12h166q16 0 27.5 -11t11.5 -28v-86q0 -54 -29.5 -103t-71 -85.5t-83.5 -71t-71.5 -73.5t-29.5 -78q0 -58 45 -98t119 -40q43 0 82 13.5t59.5 29t45.5 37t34 27.5q25 15 45 -2 l97 -94q12 -11 11.5 -27t-11.5 -27q-6 -7 -17 -19.5t-49 -43.5t-81 -54.5t-112.5 -43t-142.5 -19.5q-164 0 -280.5 98t-116.5 246zM305 672q0 69 50.5 118.5t119.5 49.5t118.5 -49.5t49.5 -118.5t-49.5 -119.5t-118.5 -50.5t-119.5 50.5t-50.5 119.5z" />
-<glyph unicode="&#xc0;" d="M0 53l637 1379q11 22 35 22h20q24 0 35 -22l631 -1379q9 -20 -1.5 -36.5t-33.5 -16.5h-178q-23 0 -36 9.5t-24 31.5l-100 221h-612l-101 -221q-16 -41 -59 -41h-178q-23 0 -33.5 16.5t-1.5 36.5zM447 1752q-4 15 6 34l57 106q7 13 24 13.5t29 -7.5l336 -200 q9 -5 13 -15.5t-1 -23.5l-37 -72q-13 -30 -51 -14l-358 158q-14 6 -18 21zM473 489h412l-205 451h-6z" />
-<glyph unicode="&#xc1;" d="M0 53l637 1379q11 22 35 22h20q24 0 35 -22l631 -1379q9 -20 -1.5 -36.5t-33.5 -16.5h-178q-23 0 -36 9.5t-24 31.5l-100 221h-612l-101 -221q-16 -41 -59 -41h-178q-23 0 -33.5 16.5t-1.5 36.5zM445.5 1682.5q4.5 10.5 13.5 15.5l336 200q37 23 53 -6l57 -106 q10 -19 6 -34t-18 -21l-358 -158q-39 -16 -52 14l-37 72q-5 13 -0.5 23.5zM473 489h412l-205 451h-6z" />
-<glyph unicode="&#xc2;" d="M0 53l637 1379q11 22 35 22h20q24 0 35 -22l631 -1379q9 -20 -1.5 -36.5t-33.5 -16.5h-178q-23 0 -36 9.5t-24 31.5l-100 221h-612l-101 -221q-16 -41 -59 -41h-178q-23 0 -33.5 16.5t-1.5 36.5zM377 1672.5q4 10.5 14 17.5l266 206q20 17 43 0l267 -206q10 -7 14 -17.5 t-2 -21.5l-53 -76q-9 -13 -18.5 -14.5t-28.5 8.5l-199 125l-201 -125q-19 -10 -28.5 -8.5t-18.5 14.5l-53 76q-6 11 -2 21.5zM473 489h412l-205 451h-6z" />
-<glyph unicode="&#xc3;" d="M0 53l637 1379q11 22 35 22h20q24 0 35 -22l631 -1379q9 -20 -1.5 -36.5t-33.5 -16.5h-178q-23 0 -36 9.5t-24 31.5l-100 221h-612l-101 -221q-16 -41 -59 -41h-178q-23 0 -33.5 16.5t-1.5 36.5zM359 1681q-4 15 1 25q12 23 18 33.5t29 41.5t43.5 48.5t54 33t68.5 15.5 q36 0 68 -17.5t52.5 -39t47 -39t52.5 -17.5q24 0 43 19t28.5 39t26 31t35.5 -5l57 -41q26 -20 2 -63l-8 -13q-8 -14 -10.5 -18.5t-12 -19t-16 -21.5t-18 -20t-21 -20.5t-23.5 -17t-27 -14.5t-29.5 -8.5t-33.5 -3.5q-36 0 -70 18t-56 39.5t-48.5 39.5t-48.5 18q-24 0 -43 -19 t-27.5 -39.5t-24.5 -32.5t-36 3l-59 43q-10 7 -14 22zM473 489h412l-205 451h-6z" />
-<glyph unicode="&#xc4;" d="M0 53l637 1379q11 22 35 22h20q24 0 35 -22l631 -1379q9 -20 -1.5 -36.5t-33.5 -16.5h-178q-23 0 -36 9.5t-24 31.5l-100 221h-612l-101 -221q-16 -41 -59 -41h-178q-23 0 -33.5 16.5t-1.5 36.5zM295 1718q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5t-38.5 -92.5 t-92.5 -38.5t-91.5 38.5t-37.5 92.5zM473 489h412l-205 451h-6zM801 1718q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5t-38.5 -92.5t-92.5 -38.5t-91.5 38.5t-37.5 92.5z" />
-<glyph unicode="&#xc5;" d="M0 53l637 1379q11 22 35 22h20q24 0 35 -22l631 -1379q9 -20 -1.5 -36.5t-33.5 -16.5h-178q-23 0 -36 9.5t-24 31.5l-100 221h-612l-101 -221q-16 -41 -59 -41h-178q-23 0 -33.5 16.5t-1.5 36.5zM446 1776q0 97 67.5 164t164.5 67q96 0 163.5 -67.5t67.5 -163.5 t-67.5 -164t-163.5 -68q-97 0 -164.5 67.5t-67.5 164.5zM473 489h412l-205 451h-6zM575 1776q0 -40 31.5 -71.5t71.5 -31.5q39 0 68.5 31.5t29.5 71.5t-29 69t-69 29t-71.5 -29.5t-31.5 -68.5z" />
-<glyph unicode="&#xc6;" horiz-adv-x="1843" d="M-28 16.5q-7 16.5 5 36.5l822 1317q2 3 7.5 11.5t7 11t6.5 9t7 8.5l7 7t8.5 6.5t9 4.5t10.5 3.5t12 1.5t15 1h809q17 0 28 -11.5t11 -27.5v-168q0 -16 -11 -27.5t-28 -11.5h-613v-336h512q15 0 27 -12t12 -27v-170q0 -17 -11.5 -28t-27.5 -11h-512v-358h613 q17 0 28 -11.5t11 -27.5v-168q0 -16 -11 -27.5t-28 -11.5h-836q-17 0 -28 11.5t-11 27.5v223h-430l-145 -231q-21 -31 -51 -31h-195q-23 0 -30 16.5zM537 489h286v463z" />
-<glyph unicode="&#xc7;" horiz-adv-x="1404" d="M84 715q0 151 58.5 288t157 235.5t235.5 157t288 58.5q152 0 270.5 -47t225.5 -143q13 -12 13.5 -29t-11.5 -29l-125 -129q-10 -12 -24.5 -12t-26.5 12q-65 57 -147.5 89t-168.5 32q-128 0 -233.5 -65.5t-164 -174.5t-58.5 -237q0 -127 59 -235.5t165 -173t234 -64.5 q170 0 314 117q12 10 27 9.5t24 -9.5l127 -132q11 -11 10 -27.5t-12 -27.5q-201 -195 -494 -198v-86q93 -12 146 -68t53 -143q0 -89 -63 -152t-154 -63q-45 0 -87 19.5t-69 51.5q-12 14 -10 30t16 28l41 34q9 9 22 8t21 -10q21 -24 62 -24q30 0 51 22.5t21 53.5 q0 39 -37 66.5t-113 33.5q-35 5 -35 37v174q-172 29 -310.5 131t-218 257.5t-79.5 334.5z" />
-<glyph unicode="&#xc8;" horiz-adv-x="1204" d="M186 39v1356q0 16 11 27.5t28 11.5h834q17 0 28 -11.5t11 -27.5v-168q0 -16 -11 -27.5t-28 -11.5h-606v-336h505q15 0 27 -12t12 -27v-170q0 -17 -11.5 -28t-27.5 -11h-505v-358h606q17 0 28 -11.5t11 -27.5v-168q0 -16 -11 -27.5t-28 -11.5h-834q-17 0 -28 11.5 t-11 27.5zM422 1752q-4 15 6 34l57 106q7 13 24.5 13.5t29.5 -7.5l335 -200q9 -5 13.5 -15.5t-0.5 -23.5l-37 -72q-13 -30 -51 -14l-359 158q-14 6 -18 21z" />
-<glyph unicode="&#xc9;" horiz-adv-x="1204" d="M186 39v1356q0 16 11 27.5t28 11.5h834q17 0 28 -11.5t11 -27.5v-168q0 -16 -11 -27.5t-28 -11.5h-606v-336h505q15 0 27 -12t12 -27v-170q0 -17 -11.5 -28t-27.5 -11h-505v-358h606q17 0 28 -11.5t11 -27.5v-168q0 -16 -11 -27.5t-28 -11.5h-834q-17 0 -28 11.5 t-11 27.5zM423 1682.5q4 10.5 13 15.5l336 200q37 23 53 -6l58 -106q10 -19 5.5 -34t-18.5 -21l-358 -158q-38 -16 -51 14l-37 72q-5 13 -1 23.5z" />
-<glyph unicode="&#xca;" horiz-adv-x="1204" d="M186 39v1356q0 16 11 27.5t28 11.5h834q17 0 28 -11.5t11 -27.5v-168q0 -16 -11 -27.5t-28 -11.5h-606v-336h505q15 0 27 -12t12 -27v-170q0 -17 -11.5 -28t-27.5 -11h-505v-358h606q17 0 28 -11.5t11 -27.5v-168q0 -16 -11 -27.5t-28 -11.5h-834q-17 0 -28 11.5 t-11 27.5zM342 1672.5q4 10.5 14 17.5l267 206q20 17 43 0l266 -206q10 -7 14 -17.5t-2 -21.5l-53 -76q-9 -13 -18.5 -14.5t-28.5 8.5l-199 125l-201 -125q-19 -10 -28.5 -8.5t-18.5 14.5l-53 76q-6 11 -2 21.5z" />
-<glyph unicode="&#xcb;" horiz-adv-x="1204" d="M186 39v1356q0 16 11 27.5t28 11.5h834q17 0 28 -11.5t11 -27.5v-168q0 -16 -11 -27.5t-28 -11.5h-606v-336h505q15 0 27 -12t12 -27v-170q0 -17 -11.5 -28t-27.5 -11h-505v-358h606q17 0 28 -11.5t11 -27.5v-168q0 -16 -11 -27.5t-28 -11.5h-834q-17 0 -28 11.5 t-11 27.5zM270 1718q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5t-38.5 -92.5t-92.5 -38.5t-91.5 38.5t-37.5 92.5zM776 1718q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5t-38.5 -92.5t-92.5 -38.5t-91.5 38.5t-37.5 92.5z" />
-<glyph unicode="&#xcc;" horiz-adv-x="641" d="M86 1752q-4 15 6 34l58 106q7 13 24 13.5t29 -7.5l336 -200q9 -5 13 -15.5t-1 -23.5l-37 -72q-13 -30 -51 -14l-359 158q-14 6 -18 21zM186 39v1356q0 15 12 27t27 12h191q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-191q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xcd;" horiz-adv-x="641" d="M87 1682.5q4 10.5 13 15.5l336 200q37 23 53 -6l58 -106q10 -19 6 -34t-18 -21l-359 -158q-38 -16 -51 14l-37 72q-5 13 -1 23.5zM186 39v1356q0 15 12 27t27 12h191q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-191q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xce;" horiz-adv-x="641" d="M14.5 1672.5q4.5 10.5 14.5 17.5l266 206q20 17 43 0l266 -206q10 -7 14 -17.5t-2 -21.5l-53 -76q-9 -13 -18.5 -14.5t-28.5 8.5l-199 125l-200 -125q-19 -10 -28.5 -8.5t-18.5 14.5l-54 76q-6 11 -1.5 21.5zM186 39v1356q0 15 12 27t27 12h191q15 0 27 -12t12 -27v-1356 q0 -15 -12 -27t-27 -12h-191q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xcf;" horiz-adv-x="641" d="M-63 1718q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5t-38.5 -92.5t-92.5 -38.5t-91.5 38.5t-37.5 92.5zM186 39v1356q0 15 12 27t27 12h191q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-191q-15 0 -27 12t-12 27zM442 1718q0 54 37.5 91.5t91.5 37.5 t92.5 -37.5t38.5 -91.5t-38.5 -92.5t-92.5 -38.5t-91.5 38.5t-37.5 92.5z" />
-<glyph unicode="&#xd0;" horiz-adv-x="1521" d="M100 696v27q0 15 11 27t26 12h60v633q0 15 10.5 27t25.5 12h486q145 0 278.5 -57t230 -153t153.5 -228t57 -277q0 -117 -36.5 -227t-103 -198t-155 -154.5t-198 -103t-226.5 -36.5h-486q-15 0 -25.5 12t-10.5 27v618h-60q-15 0 -26 12t-11 27zM461 250h233q199 0 330 134 t131 335q0 200 -131 333.5t-330 133.5h-233v-424h338q17 0 28 -11.5t11 -27.5v-29q0 -15 -11 -26t-28 -11h-338v-407z" />
-<glyph unicode="&#xd1;" horiz-adv-x="1583" d="M186 39v1378q0 15 12 26t27 11h51l852 -905h2v846q0 16 11 27.5t28 11.5h189q15 0 27 -12t12 -27v-1379q0 -15 -12 -25.5t-27 -10.5h-49l-856 940h-2v-881q0 -16 -11 -27.5t-28 -11.5h-187q-15 0 -27 12t-12 27zM471.5 1681q-3.5 15 1.5 25q12 23 18 33.5t29 41.5 t43.5 48.5t54 33t68.5 15.5q36 0 68 -17.5t52 -39t46.5 -39t52.5 -17.5q24 0 43 19t28.5 39t26 31t35.5 -5l58 -41q26 -20 2 -63l-8 -13q-8 -14 -10.5 -18.5t-12 -19t-16 -21.5t-18 -20t-21 -20.5t-23.5 -17t-27 -14.5t-29.5 -8.5t-33.5 -3.5q-36 0 -70 18t-56 39.5 t-48.5 39.5t-48.5 18q-24 0 -43 -19t-27.5 -39.5t-24.5 -32.5t-36 3l-60 43q-10 7 -13.5 22z" />
-<glyph unicode="&#xd2;" horiz-adv-x="1638" d="M84 715q0 101 26 197t73 177t114.5 149t148.5 115.5t176.5 74t196.5 26.5q151 0 287.5 -58t235 -157t156.5 -236t58 -288t-58 -287.5t-156.5 -234.5t-235 -155.5t-287.5 -57.5t-287.5 57.5t-234.5 155.5t-155.5 234.5t-57.5 287.5zM350 715q0 -193 138 -331t331 -138 q127 0 235.5 63t172 171t63.5 235t-63.5 236t-172 173t-235.5 64t-235 -64t-171 -173t-63 -236zM592 1752q-4 15 6 34l57 106q7 13 24.5 13.5t29.5 -7.5l335 -200q9 -5 13.5 -15.5t-0.5 -23.5l-37 -72q-13 -30 -51 -14l-359 158q-14 6 -18 21z" />
-<glyph unicode="&#xd3;" horiz-adv-x="1638" d="M84 715q0 101 26 197t73 177t114.5 149t148.5 115.5t176.5 74t196.5 26.5q151 0 287.5 -58t235 -157t156.5 -236t58 -288t-58 -287.5t-156.5 -234.5t-235 -155.5t-287.5 -57.5t-287.5 57.5t-234.5 155.5t-155.5 234.5t-57.5 287.5zM350 715q0 -193 138 -331t331 -138 q127 0 235.5 63t172 171t63.5 235t-63.5 236t-172 173t-235.5 64t-235 -64t-171 -173t-63 -236zM589 1682.5q4 10.5 13 15.5l336 200q37 23 53 -6l58 -106q10 -19 5.5 -34t-18.5 -21l-358 -158q-38 -16 -51 14l-37 72q-5 13 -1 23.5z" />
-<glyph unicode="&#xd4;" horiz-adv-x="1638" d="M84 715q0 101 26 197t73 177t114.5 149t148.5 115.5t176.5 74t196.5 26.5q151 0 287.5 -58t235 -157t156.5 -236t58 -288t-58 -287.5t-156.5 -234.5t-235 -155.5t-287.5 -57.5t-287.5 57.5t-234.5 155.5t-155.5 234.5t-57.5 287.5zM350 715q0 -193 138 -331t331 -138 q127 0 235.5 63t172 171t63.5 235t-63.5 236t-172 173t-235.5 64t-235 -64t-171 -173t-63 -236zM516 1672.5q4 10.5 14 17.5l267 206q20 17 43 0l266 -206q10 -7 14 -17.5t-2 -21.5l-53 -76q-9 -13 -18.5 -14.5t-28.5 8.5l-199 125l-201 -125q-19 -10 -28.5 -8.5t-18.5 14.5 l-53 76q-6 11 -2 21.5z" />
-<glyph unicode="&#xd5;" horiz-adv-x="1638" d="M84 715q0 101 26 197t73 177t114.5 149t148.5 115.5t176.5 74t196.5 26.5q151 0 287.5 -58t235 -157t156.5 -236t58 -288t-58 -287.5t-156.5 -234.5t-235 -155.5t-287.5 -57.5t-287.5 57.5t-234.5 155.5t-155.5 234.5t-57.5 287.5zM350 715q0 -193 138 -331t331 -138 q127 0 235.5 63t172 171t63.5 235t-63.5 236t-172 173t-235.5 64t-235 -64t-171 -173t-63 -236zM502.5 1681q-3.5 15 1.5 25q12 23 18 33.5t29 41.5t43.5 48.5t54 33t68.5 15.5q36 0 68 -17.5t52 -39t46.5 -39t52.5 -17.5q24 0 43 19t28.5 39t26 31t35.5 -5l57 -41 q26 -20 2 -63q-1 -1 -8 -13.5t-10.5 -18t-12.5 -19t-15 -21.5t-17.5 -20.5t-21 -20t-23 -17t-27 -14.5t-30 -8.5t-33.5 -3.5q-36 0 -70 18t-56 39.5t-48.5 39.5t-48.5 18q-24 0 -43 -19t-28 -39.5t-25 -32.5t-36 3l-59 43q-10 7 -13.5 22z" />
-<glyph unicode="&#xd6;" horiz-adv-x="1638" d="M84 715q0 101 26 197t73 177t114.5 149t148.5 115.5t176.5 74t196.5 26.5q151 0 287.5 -58t235 -157t156.5 -236t58 -288t-58 -287.5t-156.5 -234.5t-235 -155.5t-287.5 -57.5t-287.5 57.5t-234.5 155.5t-155.5 234.5t-57.5 287.5zM350 715q0 -193 138 -331t331 -138 q127 0 235.5 63t172 171t63.5 235t-63.5 236t-172 173t-235.5 64t-235 -64t-171 -173t-63 -236zM436 1718q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5t-38.5 -92.5t-92.5 -38.5t-91.5 38.5t-37.5 92.5zM942 1718q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5 t-38.5 -92.5t-92.5 -38.5t-91.5 38.5t-37.5 92.5z" />
-<glyph unicode="&#xd7;" horiz-adv-x="950" d="M112 467q0 17 11 27l217 217l-217 217q-11 10 -11 27t11 28l80 82q11 11 28 11t27 -11l217 -217l217 219q11 10 26.5 9.5t26.5 -11.5l82 -82q11 -11 11.5 -26.5t-9.5 -26.5l-217 -219l217 -217q10 -12 9.5 -28.5t-11.5 -27.5l-82 -80q-11 -11 -26.5 -11.5t-26.5 9.5 l-217 219l-217 -217q-10 -10 -26 -10t-27 10l-82 82q-11 10 -11 27z" />
-<glyph unicode="&#xd8;" horiz-adv-x="1636" d="M84 715q0 101 26 197t73 177t114.5 149t148.5 115.5t176.5 74t196.5 26.5q135 0 260 -47.5t224 -132.5l139 137q10 11 26 11t27 -11l21 -20q10 -11 10 -26.5t-10 -27.5l-140 -139q85 -99 132.5 -222.5t47.5 -258.5q0 -151 -58 -287.5t-156.5 -235t-235 -156.5t-287.5 -58 q-283 0 -483 178l-133 -133q-11 -10 -26.5 -9.5t-26.5 11.5l-21 20q-11 11 -11.5 26.5t9.5 26.5l133 131q-176 205 -176 484zM350 715q0 -160 103 -291l661 659q-137 105 -295 105q-127 0 -235 -64t-171 -173t-63 -236zM526 348q130 -102 293 -102q193 0 332 139t139 332 q0 168 -104 291z" />
-<glyph unicode="&#xd9;" horiz-adv-x="1476" d="M168 543v852q0 15 12 27t27 12h194q17 0 28 -11.5t11 -27.5v-838q0 -133 83 -222t214 -89t215 89t84 220v840q0 16 11 27.5t28 11.5h195q15 0 27 -12t12 -27v-852q0 -115 -44 -219t-120 -179.5t-182.5 -120t-225.5 -44.5q-158 0 -289 75.5t-205.5 204.5t-74.5 283z M504 1752q-4 15 6 34l57 106q7 13 24.5 13.5t29.5 -7.5l335 -200q9 -5 13.5 -15.5t-0.5 -23.5l-37 -72q-13 -30 -51 -14l-359 158q-14 6 -18 21z" />
-<glyph unicode="&#xda;" horiz-adv-x="1476" d="M168 543v852q0 15 12 27t27 12h194q17 0 28 -11.5t11 -27.5v-838q0 -133 83 -222t214 -89t215 89t84 220v840q0 16 11 27.5t28 11.5h195q15 0 27 -12t12 -27v-852q0 -115 -44 -219t-120 -179.5t-182.5 -120t-225.5 -44.5q-158 0 -289 75.5t-205.5 204.5t-74.5 283z M509 1682.5q4 10.5 13 15.5l336 200q37 23 53 -6l58 -106q10 -19 5.5 -34t-18.5 -21l-358 -158q-38 -16 -51 14l-37 72q-5 13 -1 23.5z" />
-<glyph unicode="&#xdb;" horiz-adv-x="1476" d="M168 543v852q0 15 12 27t27 12h194q17 0 28 -11.5t11 -27.5v-838q0 -133 83 -222t214 -89t215 89t84 220v840q0 16 11 27.5t28 11.5h195q15 0 27 -12t12 -27v-852q0 -115 -44 -219t-120 -179.5t-182.5 -120t-225.5 -44.5q-158 0 -289 75.5t-205.5 204.5t-74.5 283z M436.5 1672.5q4.5 10.5 14.5 17.5l266 206q20 17 43 0l266 -206q10 -7 14 -17.5t-2 -21.5l-53 -76q-9 -13 -18.5 -14.5t-28.5 8.5l-199 125l-200 -125q-19 -10 -28.5 -8.5t-18.5 14.5l-54 76q-6 11 -1.5 21.5z" />
-<glyph unicode="&#xdc;" horiz-adv-x="1476" d="M168 543v852q0 15 12 27t27 12h194q17 0 28 -11.5t11 -27.5v-838q0 -133 83 -222t214 -89t215 89t84 220v840q0 16 11 27.5t28 11.5h195q15 0 27 -12t12 -27v-852q0 -115 -44 -219t-120 -179.5t-182.5 -120t-225.5 -44.5q-158 0 -289 75.5t-205.5 204.5t-74.5 283z M354 1718q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5t-38.5 -92.5t-92.5 -38.5t-91.5 38.5t-37.5 92.5zM860 1718q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5t-38.5 -92.5t-92.5 -38.5t-91.5 38.5t-37.5 92.5z" />
-<glyph unicode="&#xdd;" horiz-adv-x="1193" d="M-7.5 1414q10.5 20 34.5 20h209q18 0 32 -19l328 -471l328 471q14 19 32 19h211q24 0 34.5 -20t-1.5 -40l-473 -682v-653q0 -15 -12 -27t-27 -12h-188q-17 0 -28 11.5t-11 27.5v651l-467 684q-12 20 -1.5 40zM364 1682.5q4 10.5 13 15.5l336 200q37 23 53 -6l57 -106 q10 -19 6 -34t-18 -21l-358 -158q-39 -16 -52 14l-36 72q-5 13 -1 23.5z" />
-<glyph unicode="&#xde;" horiz-adv-x="1210" d="M186 39v1356q0 16 11 27.5t28 11.5h189q15 0 27 -12t12 -27v-221h254q124 1 229.5 -60t167 -166t61.5 -227q0 -125 -61.5 -231t-166.5 -168t-228 -62h-256v-221q0 -15 -12 -27t-27 -12h-189q-17 0 -28 11.5t-11 27.5zM453 510h237q87 0 149 61.5t62 151.5q0 84 -62 141.5 t-149 57.5h-237v-412z" />
-<glyph unicode="&#xdf;" horiz-adv-x="1058" d="M123 39v805q0 300 129.5 455t355.5 155q65 0 125 -19.5t109.5 -57t79.5 -101t30 -143.5q0 -62 -25 -127.5t-55.5 -110.5t-55.5 -94.5t-25 -83.5q0 -24 21.5 -56t52 -68.5t61 -79t52 -100t21.5 -118.5q0 -81 -29 -143.5t-78 -99t-107 -54.5t-121 -18q-18 0 -27.5 0.5 t-26.5 4t-26 12.5t-11 23l-18 138q-2 15 8.5 27.5t26.5 11.5q61 -3 107 24t46 80q0 36 -22 74t-53.5 71.5t-62.5 68.5t-53 78t-22 87q0 47 26 108.5t57 112t57 112t26 109.5q0 49 -32 80t-80 31q-39 0 -74 -20t-66.5 -63t-50 -122.5t-18.5 -187.5v-801q0 -15 -12 -27 t-27 -12h-174q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xe0;" horiz-adv-x="872" d="M63 260q0 112 88 185t240 73q36 0 73.5 -5.5t57.5 -10.5l19 -6q1 77 -24 109t-83 32q-54 0 -122.5 -10t-106.5 -21q-40 -11 -47 37l-19 107q-8 39 29 51q12 5 49 13t103.5 17t125.5 9q94 0 157 -23.5t97.5 -72t48 -110.5t13.5 -151v-444q0 -15 -12 -27t-27 -12h-74 q-22 0 -35 29l-24 55q-114 -104 -250 -104q-124 0 -200.5 75.5t-76.5 204.5zM238 1294l57 105q7 13 23.5 14.5t29.5 -8.5l336 -199q10 -5 13.5 -16t-1.5 -23l-37 -73q-13 -29 -51 -13l-358 158q-32 16 -12 55zM289 260q0 -46 29.5 -76t76.5 -30q45 0 88 28t54 51v113 q-56 25 -115 25q-60 0 -96.5 -30.5t-36.5 -80.5z" />
-<glyph unicode="&#xe1;" horiz-adv-x="872" d="M63 260q0 112 88 185t240 73q36 0 73.5 -5.5t57.5 -10.5l19 -6q1 77 -24 109t-83 32q-54 0 -122.5 -10t-106.5 -21q-40 -11 -47 37l-19 107q-8 39 29 51q12 5 49 13t103.5 17t125.5 9q94 0 157 -23.5t97.5 -72t48 -110.5t13.5 -151v-444q0 -15 -12 -27t-27 -12h-74 q-22 0 -35 29l-24 55q-114 -104 -250 -104q-124 0 -200.5 75.5t-76.5 204.5zM231 1167q-11 23 13 39l334 199q13 10 29.5 8.5t23.5 -14.5l59 -105q18 -40 -12 -55l-359 -158q-38 -15 -53 13zM289 260q0 -46 29.5 -76t76.5 -30q45 0 88 28t54 51v113q-56 25 -115 25 q-60 0 -96.5 -30.5t-36.5 -80.5z" />
-<glyph unicode="&#xe2;" horiz-adv-x="872" d="M63 260q0 112 88 185t240 73q36 0 73.5 -5.5t57.5 -10.5l19 -6q1 77 -24 109t-83 32q-54 0 -122.5 -10t-106.5 -21q-40 -11 -47 37l-19 107q-8 39 29 51q12 5 49 13t103.5 17t125.5 9q94 0 157 -23.5t97.5 -72t48 -110.5t13.5 -151v-444q0 -15 -12 -27t-27 -12h-74 q-22 0 -35 29l-24 55q-114 -104 -250 -104q-124 0 -200.5 75.5t-76.5 204.5zM137.5 1180.5q4.5 10.5 14.5 17.5l266 207q20 17 43 0l266 -207q10 -7 14 -17.5t-2 -21.5l-53 -76q-9 -13 -18.5 -14.5t-28.5 8.5l-199 125l-200 -125q-19 -10 -28.5 -8.5t-18.5 14.5l-54 76 q-6 11 -1.5 21.5zM289 260q0 -46 29.5 -76t76.5 -30q45 0 88 28t54 51v113q-56 25 -115 25q-60 0 -96.5 -30.5t-36.5 -80.5z" />
-<glyph unicode="&#xe3;" horiz-adv-x="872" d="M63 260q0 112 88 185t240 73q36 0 73.5 -5.5t57.5 -10.5l19 -6q1 77 -24 109t-83 32q-54 0 -122.5 -10t-106.5 -21q-40 -11 -47 37l-19 107q-8 39 29 51q12 5 49 13t103.5 17t125.5 9q94 0 157 -23.5t97.5 -72t48 -110.5t13.5 -151v-444q0 -15 -12 -27t-27 -12h-74 q-22 0 -35 29l-24 55q-114 -104 -250 -104q-124 0 -200.5 75.5t-76.5 204.5zM125.5 1216q-3.5 15 1.5 25q12 23 18 33.5t29 41.5t43.5 48.5t54 33t68.5 15.5q36 0 68 -17.5t52 -39t46.5 -39t52.5 -17.5q24 0 43 19t28.5 39t26 31t35.5 -5l58 -41q26 -20 2 -63l-8 -14 q-8 -13 -10.5 -17.5t-12 -19t-16 -21.5t-18 -20t-21 -20.5t-23.5 -17t-27 -14.5t-29.5 -8.5t-33.5 -3.5q-36 0 -70 18t-56 39.5t-48.5 39.5t-48.5 18q-24 0 -43 -19t-27.5 -39.5t-24.5 -32.5t-36 3l-60 43q-10 7 -13.5 22zM289 260q0 -46 29.5 -76t76.5 -30q45 0 88 28 t54 51v113q-56 25 -115 25q-60 0 -96.5 -30.5t-36.5 -80.5z" />
-<glyph unicode="&#xe4;" horiz-adv-x="872" d="M63 260q0 112 88 185t240 73q36 0 73.5 -5.5t57.5 -10.5l19 -6q1 77 -24 109t-83 32q-54 0 -122.5 -10t-106.5 -21q-40 -11 -47 37l-19 107q-8 39 29 51q12 5 49 13t103.5 17t125.5 9q94 0 157 -23.5t97.5 -72t48 -110.5t13.5 -151v-444q0 -15 -12 -27t-27 -12h-74 q-22 0 -35 29l-24 55q-114 -104 -250 -104q-124 0 -200.5 75.5t-76.5 204.5zM113 1260q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5t-38.5 -93t-92.5 -39t-91.5 39t-37.5 93zM289 260q0 -46 29.5 -76t76.5 -30q45 0 88 28t54 51v113q-56 25 -115 25q-60 0 -96.5 -30.5 t-36.5 -80.5zM524 1260q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5t-38.5 -93t-92.5 -39t-91.5 39t-37.5 93z" />
-<glyph unicode="&#xe5;" horiz-adv-x="872" d="M63 260q0 112 88 185t240 73q36 0 73.5 -5.5t57.5 -10.5l19 -6q1 77 -24 109t-83 32q-54 0 -122.5 -10t-106.5 -21q-40 -11 -47 37l-19 107q-8 39 29 51q12 5 49 13t103.5 17t125.5 9q94 0 157 -23.5t97.5 -72t48 -110.5t13.5 -151v-444q0 -15 -12 -27t-27 -12h-74 q-22 0 -35 29l-24 55q-114 -104 -250 -104q-124 0 -200.5 75.5t-76.5 204.5zM219 1223q0 97 67.5 164t164.5 67q96 0 163.5 -67.5t67.5 -163.5q0 -97 -68 -164.5t-163 -67.5q-97 0 -164.5 67.5t-67.5 164.5zM289 260q0 -46 29.5 -76t76.5 -30q45 0 88 28t54 51v113 q-56 25 -115 25q-60 0 -96.5 -30.5t-36.5 -80.5zM348 1223q0 -40 31.5 -71.5t71.5 -31.5q39 0 68.5 31.5t29.5 71.5t-29 69t-69 29t-71.5 -29.5t-31.5 -68.5z" />
-<glyph unicode="&#xe6;" horiz-adv-x="1372" d="M61 260q0 113 86.5 185.5t233.5 72.5q37 0 76 -4t59 -8l21 -4q-3 83 -25.5 116t-87.5 33q-94 0 -223 -33q-15 -2 -29.5 8t-17.5 25l-19 111q-1 14 9 26t24 15q151 37 278 37q182 0 248 -84q108 84 246 84q160 0 271.5 -107.5t111.5 -273.5q0 -20 -1 -31.5t-4.5 -27.5 t-13 -23.5t-24.5 -7.5h-522q8 -70 60.5 -125.5t133.5 -55.5q84 0 162 54q35 23 53 0l82 -97q24 -32 -2 -53q-121 -112 -305 -112q-195 0 -307 133q-37 -47 -113.5 -90t-177.5 -43q-127 0 -205 76t-78 204zM287 266q0 -49 33.5 -79.5t80.5 -30.5q25 0 48.5 9t38.5 21.5 t26.5 25t17.5 21.5l5 9v106q-55 27 -127 27q-51 0 -87 -30.5t-36 -78.5zM776 514h307q-3 58 -46.5 97.5t-102.5 39.5q-61 0 -105.5 -39t-52.5 -98z" />
-<glyph unicode="&#xe7;" horiz-adv-x="876" d="M61 410q0 118 61.5 217.5t161.5 156t214 56.5q182 0 303 -146q11 -13 8 -30t-18 -27l-95 -90q-22 -19 -51 6q-58 65 -141 65t-142 -61t-59 -147q0 -88 58 -148.5t141 -60.5q38 0 70 12t48.5 25t38.5 34l7 7q25 25 51 6l88 -76q35 -28 14 -57q-112 -169 -315 -172v-84 q93 -12 145.5 -68t52.5 -143q0 -89 -63 -152t-154 -63q-45 0 -86.5 19.5t-68.5 51.5q-12 14 -10 30t16 28l41 34q9 9 22 8t21 -10q21 -24 61 -24q30 0 51 22.5t21 53.5q0 39 -37 66.5t-113 33.5q-34 4 -34 37v180q-134 39 -221 151t-87 259z" />
-<glyph unicode="&#xe8;" horiz-adv-x="911" d="M61 410q0 115 53 213t149.5 157.5t215.5 59.5q160 0 271.5 -108.5t111.5 -272.5q0 -28 -4 -56q-1 -15 -13 -24.5t-26 -9.5h-524q5 -69 59 -124t138 -55q88 0 159 52q35 21 54 0l83 -97q11 -11 11.5 -25.5t-13.5 -27.5q-121 -112 -305 -112q-182 0 -301 125t-119 305z M248 1294l57 105q7 13 23.5 14.5t29.5 -8.5l336 -199q10 -5 14 -16t-1 -23l-37 -73q-13 -29 -52 -13l-358 158q-32 16 -12 55zM313 512h310q-5 57 -48.5 98t-101.5 41q-61 0 -106.5 -40t-53.5 -99z" />
-<glyph unicode="&#xe9;" horiz-adv-x="911" d="M61 410q0 115 53 213t149.5 157.5t215.5 59.5q160 0 271.5 -108.5t111.5 -272.5q0 -28 -4 -56q-1 -15 -13 -24.5t-26 -9.5h-524q5 -69 59 -124t138 -55q88 0 159 52q35 21 54 0l83 -97q11 -11 11.5 -25.5t-13.5 -27.5q-121 -112 -305 -112q-182 0 -301 125t-119 305z M240 1167q-12 23 12 39l334 199q13 10 29.5 8.5t23.5 -14.5l59 -105q18 -40 -12 -55l-358 -158q-38 -15 -54 13zM313 512h310q-5 57 -48.5 98t-101.5 41q-61 0 -106.5 -40t-53.5 -99z" />
-<glyph unicode="&#xea;" horiz-adv-x="911" d="M61 410q0 115 53 213t149.5 157.5t215.5 59.5q160 0 271.5 -108.5t111.5 -272.5q0 -28 -4 -56q-1 -15 -13 -24.5t-26 -9.5h-524q5 -69 59 -124t138 -55q88 0 159 52q35 21 54 0l83 -97q11 -11 11.5 -25.5t-13.5 -27.5q-121 -112 -305 -112q-182 0 -301 125t-119 305z M172 1180.5q4 10.5 14 17.5l267 207q20 17 43 0l266 -207q10 -7 14 -17.5t-2 -21.5l-53 -76q-9 -13 -18.5 -14.5t-28.5 8.5l-199 125l-201 -125q-19 -10 -28.5 -8.5t-18.5 14.5l-53 76q-6 11 -2 21.5zM313 512h310q-5 57 -48.5 98t-101.5 41q-61 0 -106.5 -40t-53.5 -99z " />
-<glyph unicode="&#xeb;" horiz-adv-x="911" d="M61 410q0 115 53 213t149.5 157.5t215.5 59.5q160 0 271.5 -108.5t111.5 -272.5q0 -28 -4 -56q-1 -15 -13 -24.5t-26 -9.5h-524q5 -69 59 -124t138 -55q88 0 159 52q35 21 54 0l83 -97q11 -11 11.5 -25.5t-13.5 -27.5q-121 -112 -305 -112q-182 0 -301 125t-119 305z M139 1260q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5t-38.5 -93t-92.5 -39t-91.5 39t-37.5 93zM313 512h310q-5 57 -48.5 98t-101.5 41q-61 0 -106.5 -40t-53.5 -99zM551 1260q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5t-38.5 -93t-92.5 -39t-91.5 39t-37.5 93 z" />
-<glyph unicode="&#xec;" horiz-adv-x="493" d="M11.5 1259.5q-4.5 13.5 4.5 34.5l58 105q7 13 23.5 14.5t29.5 -8.5l336 -199q10 -5 13.5 -16t-1.5 -23l-37 -73q-13 -29 -51 -13l-358 158q-13 7 -17.5 20.5zM123 39v741q0 17 11.5 28t27.5 11h170q16 0 27.5 -11t11.5 -28v-741q0 -15 -12 -27t-27 -12h-170q-15 0 -27 12 t-12 27z" />
-<glyph unicode="&#xed;" horiz-adv-x="493" d="M10 1167q-11 23 13 39l333 199q13 10 30 8.5t24 -14.5l59 -105q18 -40 -12 -55l-359 -158q-38 -15 -53 13zM123 39v741q0 17 11.5 28t27.5 11h170q16 0 27.5 -11t11.5 -28v-741q0 -15 -12 -27t-27 -12h-170q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xee;" horiz-adv-x="493" d="M-59 1180.5q4 10.5 14 17.5l266 207q20 17 43 0l266 -207q10 -7 14.5 -17.5t-1.5 -21.5l-54 -76q-9 -13 -18.5 -14.5t-28.5 8.5l-198 125l-201 -125q-19 -10 -28.5 -8.5t-18.5 14.5l-53 76q-6 11 -2 21.5zM123 39v741q0 17 11.5 28t27.5 11h170q16 0 27.5 -11t11.5 -28 v-741q0 -15 -12 -27t-27 -12h-170q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xef;" horiz-adv-x="493" d="M-90 1260q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5t-38.5 -93t-92.5 -39t-91.5 39t-37.5 93zM123 39v741q0 17 11.5 28t27.5 11h170q16 0 27.5 -11t11.5 -28v-741q0 -15 -12 -27t-27 -12h-170q-15 0 -27 12t-12 27zM322 1260q0 54 37.5 91.5t91.5 37.5 t92.5 -37.5t38.5 -91.5t-38.5 -93t-92.5 -39t-91.5 39t-37.5 93z" />
-<glyph unicode="&#xf0;" horiz-adv-x="1081" d="M59 449q0 85 24 158t64.5 125t94 89t113.5 54.5t122 17.5q65 0 133 -19t101 -38q-42 145 -215 270l-166 -96q-14 -7 -28.5 -3.5t-22.5 15.5l-15 27q-8 12 -4.5 28t16.5 23l119 67q-71 40 -135 62q-54 17 -37 59l47 121q12 42 58 29q161 -66 280 -146l142 82q15 7 30 2.5 t23 -18.5l14 -23q8 -13 4.5 -29.5t-16.5 -23.5l-107 -61q139 -118 225.5 -286t86.5 -390q0 -117 -31.5 -218.5t-91 -179t-154 -122.5t-211.5 -45q-189 0 -326 138t-137 331zM291 453q0 -97 68.5 -168.5t164.5 -71.5q48 0 88.5 18t68 48t46.5 69t28 81t9 85 q-21 67 -83.5 122.5t-154.5 55.5q-98 0 -166.5 -70t-68.5 -169z" />
-<glyph unicode="&#xf1;" horiz-adv-x="1062" d="M123 39v741q0 17 11.5 28t27.5 11h78q24 0 34 -24l29 -76q16 17 37.5 34t58 38.5t87.5 35t106 13.5q94 0 166 -33.5t114 -91.5t63 -129t21 -154v-393q0 -15 -11.5 -27t-26.5 -12h-168q-17 0 -28 11.5t-11 27.5v405q0 80 -40.5 127t-113.5 47q-72 0 -123 -40t-69 -89v-450 q0 -22 -11.5 -30.5t-40.5 -8.5h-151q-15 0 -27 12t-12 27zM230 1216q-4 15 1 25q12 23 18 33.5t29 41.5t43.5 48.5t54 33t68.5 15.5q36 0 68 -17.5t52.5 -39t47 -39t52.5 -17.5q24 0 43 19t28.5 39t26 31t35.5 -5l57 -41q26 -20 2 -63l-8 -14q-8 -13 -10.5 -17.5t-12 -19 t-16 -21.5t-18 -20t-21 -20.5t-23.5 -17t-27 -14.5t-29.5 -8.5t-33.5 -3.5q-36 0 -70 18t-56 39.5t-48.5 39.5t-48.5 18q-24 0 -43 -19t-27.5 -39.5t-24.5 -32.5t-36 3l-59 43q-10 7 -14 22z" />
-<glyph unicode="&#xf2;" horiz-adv-x="958" d="M59 412q0 114 56.5 212.5t153.5 157t210 58.5t210 -58.5t153.5 -157t56.5 -212.5q0 -177 -123.5 -304.5t-296.5 -127.5t-296.5 127.5t-123.5 304.5zM256 1294l57 105q7 13 24 14.5t30 -8.5l335 -199q10 -5 14 -16t-1 -23l-37 -73q-13 -29 -51 -13l-359 158q-32 16 -12 55 zM283 412q0 -88 56.5 -149.5t139.5 -61.5q82 0 139.5 61.5t57.5 149.5q0 86 -57.5 146t-139.5 60q-83 0 -139.5 -59.5t-56.5 -146.5z" />
-<glyph unicode="&#xf3;" horiz-adv-x="958" d="M59 412q0 114 56.5 212.5t153.5 157t210 58.5t210 -58.5t153.5 -157t56.5 -212.5q0 -177 -123.5 -304.5t-296.5 -127.5t-296.5 127.5t-123.5 304.5zM246 1167q-12 23 12 39l334 199q13 10 29.5 8.5t23.5 -14.5l60 -105q8 -21 4 -35t-17 -20l-358 -158q-38 -15 -53 13z M283 412q0 -88 56.5 -149.5t139.5 -61.5q82 0 139.5 61.5t57.5 149.5q0 86 -57.5 146t-139.5 60q-83 0 -139.5 -59.5t-56.5 -146.5z" />
-<glyph unicode="&#xf4;" horiz-adv-x="958" d="M59 412q0 114 56.5 212.5t153.5 157t210 58.5t210 -58.5t153.5 -157t56.5 -212.5q0 -177 -123.5 -304.5t-296.5 -127.5t-296.5 127.5t-123.5 304.5zM174 1180.5q4 10.5 14 17.5l267 207q20 17 43 0l266 -207q10 -7 14 -17.5t-2 -21.5l-53 -76q-9 -13 -18.5 -14.5 t-28.5 8.5l-199 125l-201 -125q-19 -10 -28.5 -8.5t-18.5 14.5l-53 76q-6 11 -2 21.5zM283 412q0 -88 56.5 -149.5t139.5 -61.5q82 0 139.5 61.5t57.5 149.5q0 86 -57.5 146t-139.5 60q-83 0 -139.5 -59.5t-56.5 -146.5z" />
-<glyph unicode="&#xf5;" horiz-adv-x="958" d="M59 412q0 114 56.5 212.5t153.5 157t210 58.5t210 -58.5t153.5 -157t56.5 -212.5q0 -177 -123.5 -304.5t-296.5 -127.5t-296.5 127.5t-123.5 304.5zM158.5 1216q-3.5 15 1.5 25q12 23 18 33.5t29 41.5t43.5 48.5t54 33t68.5 15.5q36 0 68 -17.5t52 -39t46.5 -39 t52.5 -17.5q24 0 43 19t28.5 39t26 31t35.5 -5l57 -41q26 -20 2 -63q-1 -1 -8 -13.5t-10.5 -18t-12.5 -19t-15 -21.5t-17.5 -20.5t-21 -20t-23 -17t-27 -14.5t-30 -8.5t-33.5 -3.5q-36 0 -70 18t-56 39.5t-49 39.5t-49 18q-24 0 -43 -19t-27.5 -39.5t-24.5 -32.5t-36 3 l-59 43q-10 7 -13.5 22zM283 412q0 -88 56.5 -149.5t139.5 -61.5q82 0 139.5 61.5t57.5 149.5q0 86 -57.5 146t-139.5 60q-83 0 -139.5 -59.5t-56.5 -146.5z" />
-<glyph unicode="&#xf6;" horiz-adv-x="958" d="M59 412q0 114 56.5 212.5t153.5 157t210 58.5t210 -58.5t153.5 -157t56.5 -212.5q0 -177 -123.5 -304.5t-296.5 -127.5t-296.5 127.5t-123.5 304.5zM141 1260q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5t-38.5 -93t-92.5 -39t-91.5 39t-37.5 93zM283 412 q0 -88 56.5 -149.5t139.5 -61.5q82 0 139.5 61.5t57.5 149.5q0 86 -57.5 146t-139.5 60q-83 0 -139.5 -59.5t-56.5 -146.5zM553 1260q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5t-38.5 -93t-92.5 -39t-91.5 39t-37.5 93z" />
-<glyph unicode="&#xf7;" horiz-adv-x="1034" d="M76 651v115q0 15 12 27t27 12h807q15 0 25.5 -12t10.5 -27v-115q0 -15 -10.5 -27t-25.5 -12h-807q-15 0 -27 12t-12 27zM371 328q0 58 40.5 98.5t98.5 40.5q59 0 100 -40.5t41 -98.5q0 -59 -41.5 -100.5t-99.5 -41.5t-98.5 41.5t-40.5 100.5zM371 1106q0 58 41.5 99.5 t99.5 41.5t99.5 -41.5t41.5 -99.5q0 -57 -41.5 -99t-99.5 -42t-99.5 42t-41.5 99z" />
-<glyph unicode="&#xf8;" horiz-adv-x="958" d="M61 414q0 114 56.5 212t153.5 156t210 58q141 0 258 -95l54 54q11 12 26.5 11.5t26.5 -11.5l20 -21q12 -11 12 -26t-12 -27l-53 -53q86 -117 86 -258q0 -116 -56 -216t-152.5 -159t-209.5 -59q-144 0 -260 92l-43 -45q-10 -11 -27.5 -10.5t-27.5 12.5l-19 20 q-11 11 -11.5 26.5t9.5 26.5l45 45q-86 117 -86 267zM285 414q0 -57 22 -103l275 277q-44 30 -101 30q-83 0 -139.5 -59t-56.5 -145zM379 229q45 -28 102 -28q81 0 138 62.5t57 150.5q0 48 -23 96z" />
-<glyph unicode="&#xf9;" horiz-adv-x="1030" d="M109 383v397q0 17 11.5 28t26.5 11h168q16 0 27.5 -11t11.5 -28v-403q0 -82 40 -129t110 -47q61 0 107.5 47t56.5 106v426q0 23 10 31t35 8h155q16 0 27.5 -11t11.5 -28v-741q0 -15 -12 -27t-27 -12h-75q-27 0 -39 31l-25 67q-2 -2 -15.5 -14.5t-20.5 -18.5t-24 -18.5 t-30.5 -20t-35 -17.5t-42.5 -15.5t-49 -9.5t-57 -4q-92 0 -160.5 33t-108 90.5t-58.5 127.5t-19 152zM293 1294l57 105q7 13 23.5 14.5t29.5 -8.5l336 -199q10 -5 14 -16t-1 -23l-37 -73q-13 -29 -51 -13l-359 158q-32 16 -12 55z" />
-<glyph unicode="&#xfa;" horiz-adv-x="1030" d="M109 383v397q0 17 11.5 28t26.5 11h168q16 0 27.5 -11t11.5 -28v-403q0 -82 40 -129t110 -47q61 0 107.5 47t56.5 106v426q0 23 10 31t35 8h155q16 0 27.5 -11t11.5 -28v-741q0 -15 -12 -27t-27 -12h-75q-27 0 -39 31l-25 67q-2 -2 -15.5 -14.5t-20.5 -18.5t-24 -18.5 t-30.5 -20t-35 -17.5t-42.5 -15.5t-49 -9.5t-57 -4q-92 0 -160.5 33t-108 90.5t-58.5 127.5t-19 152zM285 1167q-12 23 12 39l334 199q13 10 29.5 8.5t23.5 -14.5l59 -105q18 -40 -12 -55l-358 -158q-38 -15 -54 13z" />
-<glyph unicode="&#xfb;" horiz-adv-x="1030" d="M109 383v397q0 17 11.5 28t26.5 11h168q16 0 27.5 -11t11.5 -28v-403q0 -82 40 -129t110 -47q61 0 107.5 47t56.5 106v426q0 23 10 31t35 8h155q16 0 27.5 -11t11.5 -28v-741q0 -15 -12 -27t-27 -12h-75q-27 0 -39 31l-25 67q-2 -2 -15.5 -14.5t-20.5 -18.5t-24 -18.5 t-30.5 -20t-35 -17.5t-42.5 -15.5t-49 -9.5t-57 -4q-92 0 -160.5 33t-108 90.5t-58.5 127.5t-19 152zM209 1180.5q4 10.5 14 17.5l266 207q20 17 43 0l267 -207q10 -7 14 -17.5t-2 -21.5l-53 -76q-9 -13 -18.5 -14.5t-28.5 8.5l-199 125l-201 -125q-19 -10 -28.5 -8.5 t-18.5 14.5l-53 76q-6 11 -2 21.5z" />
-<glyph unicode="&#xfc;" horiz-adv-x="1030" d="M109 383v397q0 17 11.5 28t26.5 11h168q16 0 27.5 -11t11.5 -28v-403q0 -82 40 -129t110 -47q61 0 107.5 47t56.5 106v426q0 23 10 31t35 8h155q16 0 27.5 -11t11.5 -28v-741q0 -15 -12 -27t-27 -12h-75q-27 0 -39 31l-25 67q-2 -2 -15.5 -14.5t-20.5 -18.5t-24 -18.5 t-30.5 -20t-35 -17.5t-42.5 -15.5t-49 -9.5t-57 -4q-92 0 -160.5 33t-108 90.5t-58.5 127.5t-19 152zM190 1260q0 54 37.5 91.5t91.5 37.5t93 -37.5t39 -91.5t-39 -93t-93 -39t-91.5 39t-37.5 93zM602 1260q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5t-38.5 -93 t-92.5 -39t-91.5 39t-37.5 93z" />
-<glyph unicode="&#xfd;" horiz-adv-x="948" d="M16 766q-9 20 1.5 36.5t33.5 16.5h185q23 0 34 -22l207 -463h2l205 463q7 14 17.5 18t31.5 4h164q25 0 35.5 -16.5t-0.5 -36.5l-627 -1356q-12 -24 -35 -24h-176q-23 0 -34 16.5t-1 38.5l291 616zM248 1167q-12 23 12 39l334 199q13 10 29.5 8.5t23.5 -14.5l60 -105 q8 -21 4 -35t-17 -20l-358 -158q-38 -15 -53 13z" />
-<glyph unicode="&#xfe;" horiz-adv-x="1024" d="M123 -578v1973q0 15 12 27t27 12h174q15 0 27 -12t12 -27v-615q96 58 192 58q167 0 281.5 -125.5t114.5 -302.5q0 -182 -121 -306t-295 -124q-79 0 -172 45v-603q0 -15 -12 -26.5t-27 -11.5h-174q-15 0 -27 11.5t-12 26.5zM375 258q17 -21 57.5 -38t93.5 -17 q86 0 142.5 59.5t56.5 147.5q0 87 -54.5 147.5t-140.5 60.5q-63 0 -105 -26t-50 -51v-283z" />
-<glyph unicode="&#xff;" horiz-adv-x="948" d="M16 766q-9 20 1.5 36.5t33.5 16.5h185q23 0 34 -22l207 -463h2l205 463q7 14 17.5 18t31.5 4h164q25 0 35.5 -16.5t-0.5 -36.5l-627 -1356q-12 -24 -35 -24h-176q-23 0 -34 16.5t-1 38.5l291 616zM141 1260q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5t-38.5 -93 t-92.5 -39t-91.5 39t-37.5 93zM553 1260q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5t-38.5 -93t-92.5 -39t-91.5 39t-37.5 93z" />
-<glyph unicode="&#x152;" horiz-adv-x="1996" d="M84 715q0 101 26 197t73 177t114.5 149t148.5 115.5t176.5 74t196.5 26.5q49 0 99 -5t75 -10l25 -5h833q17 0 28 -11.5t11 -27.5v-168q0 -16 -11 -27.5t-28 -11.5h-606v-336h506q15 0 27 -12t12 -27v-170q0 -17 -11.5 -28t-27.5 -11h-506v-358h606q17 0 28 -11.5 t11 -27.5v-168q0 -16 -11 -27.5t-28 -11.5h-833q-115 -20 -199 -20q-151 0 -287.5 57.5t-234.5 155.5t-155.5 234.5t-57.5 287.5zM350 715q0 -127 63 -236t171 -173t235 -64q94 0 160 26v895q-82 29 -160 29q-127 0 -235 -65t-171 -175t-63 -237z" />
-<glyph unicode="&#x153;" horiz-adv-x="1499" d="M59 414q0 114 56.5 212t153.5 156t210 58q84 0 160 -34.5t133 -94.5q116 129 295 129q159 0 271 -108t112 -273q0 -28 -4 -56q-1 -15 -13 -24.5t-26 -9.5h-522q8 -70 60.5 -125.5t133.5 -55.5q84 0 162 54q35 23 53 0l82 -97q24 -32 -2 -53q-53 -50 -131.5 -81 t-173.5 -31q-178 0 -297 129q-56 -61 -132 -95t-161 -34q-173 0 -296.5 128.5t-123.5 305.5zM283 414q0 -88 56.5 -150.5t139.5 -62.5t140 62.5t57 150.5q0 86 -57 145t-140 59t-139.5 -59t-56.5 -145zM903 512h307q-3 58 -46.5 97.5t-102.5 39.5q-61 0 -105.5 -39 t-52.5 -98z" />
-<glyph unicode="&#x178;" horiz-adv-x="1193" d="M-7.5 1414q10.5 20 34.5 20h209q18 0 32 -19l328 -471l328 471q14 19 32 19h211q24 0 34.5 -20t-1.5 -40l-473 -682v-653q0 -15 -12 -27t-27 -12h-188q-17 0 -28 11.5t-11 27.5v651l-467 684q-12 20 -1.5 40zM213 1718q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5 t-38.5 -92.5t-92.5 -38.5t-91.5 38.5t-37.5 92.5zM719 1718q0 54 37.5 91.5t91.5 37.5t92.5 -37.5t38.5 -91.5t-38.5 -92.5t-92.5 -38.5t-91.5 38.5t-37.5 92.5z" />
-<glyph unicode="&#x2c6;" horiz-adv-x="763" d="M74 1180.5q4 10.5 14 17.5l266 207q20 17 43 0l267 -207q10 -7 14 -17.5t-2 -21.5l-53 -76q-17 -23 -48 -6l-198 125l-201 -125q-19 -10 -28.5 -8.5t-18.5 14.5l-53 76q-6 11 -2 21.5z" />
-<glyph unicode="&#x2dc;" horiz-adv-x="778" d="M70.5 1216q-3.5 15 1.5 25q12 23 18 33.5t29 41.5t43.5 48.5t54 33t68.5 15.5q36 0 68 -17.5t52 -39t46.5 -39t52.5 -17.5q24 0 43 19t28.5 39t26 31t35.5 -5l57 -41q26 -20 2 -63q-1 -1 -8 -13.5t-10.5 -18t-12.5 -19t-15 -21.5t-17.5 -20.5t-21 -20t-23 -17t-27 -14.5 t-30 -8.5t-33.5 -3.5q-36 0 -70 18t-56 39.5t-49 39.5t-49 18q-24 0 -43 -19t-27.5 -39.5t-24.5 -32.5t-36 3l-59 43q-10 7 -13.5 22z" />
-<glyph unicode="&#x2000;" horiz-adv-x="1003" />
-<glyph unicode="&#x2001;" horiz-adv-x="2007" />
-<glyph unicode="&#x2002;" horiz-adv-x="1003" />
-<glyph unicode="&#x2003;" horiz-adv-x="2007" />
-<glyph unicode="&#x2004;" horiz-adv-x="669" />
-<glyph unicode="&#x2005;" horiz-adv-x="501" />
-<glyph unicode="&#x2006;" horiz-adv-x="334" />
-<glyph unicode="&#x2007;" horiz-adv-x="334" />
-<glyph unicode="&#x2008;" horiz-adv-x="250" />
-<glyph unicode="&#x2009;" horiz-adv-x="401" />
-<glyph unicode="&#x200a;" horiz-adv-x="111" />
-<glyph unicode="&#x2010;" horiz-adv-x="755" d="M111 430v137q0 17 11 28t28 11h456q17 0 28 -11t11 -28v-137q0 -15 -11 -26t-28 -11h-456q-17 0 -28 11t-11 26z" />
-<glyph unicode="&#x2011;" horiz-adv-x="755" d="M111 430v137q0 17 11 28t28 11h456q17 0 28 -11t11 -28v-137q0 -15 -11 -26t-28 -11h-456q-17 0 -28 11t-11 26z" />
-<glyph unicode="&#x2012;" horiz-adv-x="755" d="M111 430v137q0 17 11 28t28 11h456q17 0 28 -11t11 -28v-137q0 -15 -11 -26t-28 -11h-456q-17 0 -28 11t-11 26z" />
-<glyph unicode="&#x2013;" horiz-adv-x="1103" d="M109 467v76q0 17 10.5 28t27.5 11h809q17 0 28 -11t11 -28v-76q0 -15 -11 -26t-28 -11h-809q-17 0 -27.5 11t-10.5 26z" />
-<glyph unicode="&#x2014;" horiz-adv-x="1554" d="M109 467v76q0 17 10.5 28t27.5 11h1260q17 0 28 -11t11 -28v-76q0 -15 -11 -26t-28 -11h-1260q-17 0 -27.5 11t-10.5 26z" />
-<glyph unicode="&#x2018;" horiz-adv-x="405" d="M49 1069q0 208 184 371q27 20 46 -2l30 -31q9 -10 7.5 -23t-13.5 -22q-62 -54 -92 -100q-46 -72 -47 -150q1 0 9.5 2.5t23.5 5t30 2.5q56 0 97 -40t41 -97q0 -56 -43 -96.5t-105 -40.5q-66 0 -117 53t-51 168z" />
-<glyph unicode="&#x2019;" horiz-adv-x="401" d="M43 1317q0 58 41.5 97.5t103.5 39.5q67 0 118.5 -52.5t51.5 -166.5q0 -208 -184 -371q-26 -19 -47 2l-29 29q-10 11 -8.5 24.5t12.5 22.5q14 10 31.5 26.5t45 48.5t45.5 78.5t18 96.5l-4 -1q-3 -1 -9 -2.5t-13.5 -3t-17 -2.5t-18.5 -1q-57 0 -97 39t-40 96z" />
-<glyph unicode="&#x201a;" horiz-adv-x="466" d="M76 117q0 56 42.5 96.5t104.5 40.5q30 0 58 -11.5t54 -35.5t42 -69t16 -105q0 -208 -184 -371q-27 -20 -47 2l-31 31q-9 11 -7 23.5t13 21.5q13 9 31 26.5t44.5 49.5t44.5 78.5t19 95.5l-4 -1q-3 -1 -9 -2.5t-13 -3t-17 -2.5t-20 -1q-56 0 -96.5 40t-40.5 97z" />
-<glyph unicode="&#x201c;" horiz-adv-x="802" d="M49 1071q0 208 184 371q27 20 46 -2l30 -29q9 -10 7.5 -24t-13.5 -23q-137 -107 -139 -250q1 0 9.5 2.5t23.5 5t30 2.5q56 0 97 -39.5t41 -95.5q0 -57 -42.5 -97t-105.5 -40q-30 0 -58 11t-53.5 35t-41 68.5t-15.5 104.5zM442 1071q0 207 185 371q27 20 47 -2l31 -29 q9 -11 6.5 -24.5t-13.5 -22.5q-137 -107 -139 -250l3 1l10 2.5t13.5 3t17.5 2.5t20 1q56 0 96.5 -39.5t40.5 -95.5q0 -57 -42.5 -97t-105.5 -40q-67 0 -118.5 52.5t-51.5 166.5z" />
-<glyph unicode="&#x201d;" horiz-adv-x="796" d="M43 1317q0 58 41.5 97.5t103.5 39.5q67 0 118.5 -52.5t51.5 -166.5q0 -208 -184 -371q-26 -19 -47 2l-29 29q-10 11 -8.5 24.5t12.5 22.5q14 10 31.5 26.5t45 48.5t45.5 78.5t18 96.5l-4 -1q-3 -1 -9 -2.5t-13.5 -3t-17 -2.5t-18.5 -1q-57 0 -97 39t-40 96zM436 1317 q0 57 42.5 97t105.5 40q67 0 118.5 -52.5t51.5 -166.5q0 -207 -185 -371q-27 -20 -47 2l-30 29q-9 11 -7 24.5t13 22.5q13 9 31 26t44.5 49t44.5 78.5t19 96.5l-3 -1l-10 -2.5t-13.5 -3t-17.5 -2.5t-20 -1q-56 0 -96.5 39.5t-40.5 95.5z" />
-<glyph unicode="&#x201e;" horiz-adv-x="862" d="M78 117q0 56 41.5 96.5t103.5 40.5q30 0 58 -11.5t54 -35.5t42 -69t16 -105q0 -208 -184 -371q-26 -19 -47 2l-29 31q-22 22 4 45q13 9 31 26.5t45 49.5t45 78.5t18 95.5l-4 -1q-3 -1 -9 -2.5t-13 -3t-16.5 -2.5t-18.5 -1q-57 0 -97 40t-40 97zM471 117q0 56 42.5 96.5 t104.5 40.5q30 0 58 -11.5t54 -35.5t42 -69t16 -105q0 -208 -184 -371q-27 -20 -47 2l-31 31q-9 11 -7 23.5t13 21.5q13 9 31 26.5t45 49.5t45 78.5t19 95.5l-4 -1q-3 -1 -9 -2.5t-13.5 -3t-17.5 -2.5t-20 -1q-56 0 -96.5 40t-40.5 97z" />
-<glyph unicode="&#x2022;" horiz-adv-x="796" d="M129 459q0 112 78.5 192t185.5 80q113 0 193 -80t80 -192q0 -108 -80.5 -186t-192.5 -78q-106 0 -185 78.5t-79 185.5z" />
-<glyph unicode="&#x2026;" horiz-adv-x="1368" d="M96 127q0 61 43 104t103 43q62 0 105.5 -43t43.5 -104q0 -60 -44 -103.5t-105 -43.5q-60 0 -103 43.5t-43 103.5zM541 127q0 61 42.5 104t102.5 43q62 0 106 -43t44 -104q0 -60 -44.5 -103.5t-105.5 -43.5q-60 0 -102.5 43.5t-42.5 103.5zM977 127q0 61 42.5 104 t104.5 43t105 -43t43 -104q0 -60 -43.5 -103.5t-104.5 -43.5t-104 43.5t-43 103.5z" />
-<glyph unicode="&#x202f;" horiz-adv-x="401" />
-<glyph unicode="&#x2039;" horiz-adv-x="555" d="M53 397q-17 23 0 49l223 304q14 24 37 24h117q26 0 34.5 -19t-3.5 -44l-139 -285l133 -301q11 -25 2.5 -43.5t-33.5 -18.5h-127q-18 0 -31 17z" />
-<glyph unicode="&#x203a;" horiz-adv-x="555" d="M88.5 755q8.5 19 34.5 19h117q22 0 36 -24l224 -304q17 -26 0 -49l-213 -317q-13 -17 -31 -17h-127q-25 0 -33.5 18.5t2.5 43.5l133 301l-139 285q-12 25 -3.5 44z" />
-<glyph unicode="&#x205f;" horiz-adv-x="501" />
-<glyph unicode="&#x20ac;" horiz-adv-x="1470" d="M41 551v27q0 15 11 26.5t26 11.5h80q-6 50 -6 99q0 29 2 43h-76q-15 0 -26 12t-11 27v26q0 15 11 27t26 12h88q34 168 137 302.5t257.5 212t330.5 77.5q151 0 269.5 -47t225.5 -143q13 -12 14 -29t-11 -29l-123 -127q-10 -12 -27 -12t-29 12q-131 119 -313 119 q-157 0 -275.5 -94t-160.5 -242h477q17 0 28 -11.5t11 -27.5v-30q0 -15 -11 -26t-28 -11h-498v-35q0 -57 11 -105h405q17 0 28 -11.5t11 -26.5v-29q0 -15 -11 -26t-28 -11h-369q55 -119 165 -191.5t247 -72.5q169 0 313 117q12 10 27.5 9.5t24.5 -9.5l127 -132 q11 -11 10 -27.5t-12 -27.5q-204 -198 -498 -198q-251 0 -447.5 149t-263.5 383h-102q-15 0 -26 12t-11 27z" />
-<glyph unicode="&#x2122;" horiz-adv-x="1476" d="M88 1321v74q0 15 12 27t27 12h420q17 0 28 -11.5t11 -27.5v-74q0 -17 -11 -28t-28 -11h-131v-455q0 -15 -12 -27t-27 -12h-80q-17 0 -28 11.5t-11 27.5v455h-131q-16 0 -27.5 11t-11.5 28zM653 836l107 577q4 31 39 31h8q26 0 35 -23l178 -379l182 379q10 23 35 23h8 q15 0 26 -9.5t13 -21.5l109 -579q3 -19 -8.5 -32.5t-30.5 -13.5h-80q-13 0 -24.5 10.5t-14.5 24.5l-45 256l-131 -278q-8 -19 -33 -19h-12q-24 0 -35 21l-125 276l-49 -258q-1 -12 -14 -22.5t-25 -10.5h-74q-20 0 -31 14.5t-8 33.5z" />
-<glyph unicode="&#x25fc;" horiz-adv-x="820" d="M0 0v820h820v-820h-820z" />
-<glyph unicode="&#xfb03;" horiz-adv-x="1751" d="M63 643v137q0 17 11 28t28 11h70v182q0 181 113 302t317 131q169 0 283 -95q106 115 295 115q89 0 178.5 -29t140.5 -59q13 -7 17.5 -23.5t-3.5 -29.5l-73 -137q-19 -28 -54 -11q-116 58 -196 58q-63 0 -106.5 -46.5t-43.5 -136.5v-221h549q17 0 28 -11t11 -28v-741 q0 -16 -11 -27.5t-28 -11.5h-170q-17 0 -28 11.5t-11 27.5v565h-340v-565q0 -15 -12 -27t-27 -12h-178q-15 0 -27 12t-12 27v565h-356v-565q0 -15 -12 -27t-27 -12h-178q-15 0 -27 12t-12 27v565h-70q-17 0 -28 11.5t-11 27.5zM428 819h356v221q0 44 7 95q-24 27 -71.5 49 t-103.5 22q-82 0 -135 -54.5t-53 -150.5v-182z" />
-<glyph unicode="&#xfb04;" horiz-adv-x="1779" d="M61 643v137q0 17 11 28t28 11h72v182q0 105 34.5 189t94 136.5t136 80t163.5 27.5q167 0 285 -95q106 115 307 115q48 0 95.5 -12t81 -29t60 -33.5t39.5 -28.5l13 -12l22 58q13 37 49 37h66q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-172q-15 0 -27 12t-12 27 v1081q-6 9 -20 22.5t-39.5 33t-62.5 32.5t-75 13q-71 0 -121.5 -46t-50.5 -135v-221h172q16 0 27.5 -11t11.5 -28v-135q0 -15 -12 -27t-27 -12h-172v-567q0 -15 -12 -27t-27 -12h-178q-15 0 -27 12t-12 27v565h-354v-565q0 -15 -12 -27t-27 -12h-178q-15 0 -27 12t-12 27 v565h-72q-17 0 -28 11.5t-11 27.5zM428 819h354v221q0 30 9 95q-24 27 -71.5 49t-105.5 22q-81 0 -133.5 -55t-52.5 -150v-182z" />
-<hkern u1="&#x22;" u2="&#xf0;" k="23" />
-<hkern u1="&#x22;" u2="&#xef;" k="-74" />
-<hkern u1="&#x22;" u2="&#xee;" k="-18" />
-<hkern u1="&#x22;" u2="&#xdf;" k="12" />
-<hkern u1="&#x22;" u2="&#xde;" k="16" />
-<hkern u1="&#x22;" u2="x" k="76" />
-<hkern u1="&#x22;" u2="v" k="59" />
-<hkern u1="&#x22;" u2="q" k="104" />
-<hkern u1="&#x22;" u2="m" k="86" />
-<hkern u1="&#x22;" u2="V" k="-18" />
-<hkern u1="&#x22;" u2="Q" k="27" />
-<hkern u1="&#x22;" u2="P" k="16" />
-<hkern u1="&#x22;" u2="M" k="37" />
-<hkern u1="&#x22;" u2="F" k="16" />
-<hkern u1="&#x22;" u2="B" k="16" />
-<hkern u1="&#x22;" u2="&#x40;" k="47" />
-<hkern u1="&#x22;" u2="&#x38;" k="18" />
-<hkern u1="&#x22;" u2="&#x36;" k="41" />
-<hkern u1="&#x22;" u2="&#x34;" k="72" />
-<hkern u1="&#x22;" u2="&#x30;" k="31" />
-<hkern u1="&#x22;" u2="&#x2f;" k="61" />
-<hkern u1="&#x22;" u2="&#x2e;" k="174" />
-<hkern u1="&#x23;" u2="&#x33;" k="10" />
-<hkern u1="&#x23;" u2="&#x32;" k="12" />
-<hkern u1="&#x27;" u2="&#xf0;" k="23" />
-<hkern u1="&#x27;" u2="&#xef;" k="-74" />
-<hkern u1="&#x27;" u2="&#xee;" k="-18" />
-<hkern u1="&#x27;" u2="&#xdf;" k="12" />
-<hkern u1="&#x27;" u2="&#xde;" k="16" />
-<hkern u1="&#x27;" u2="x" k="76" />
-<hkern u1="&#x27;" u2="v" k="59" />
-<hkern u1="&#x27;" u2="q" k="104" />
-<hkern u1="&#x27;" u2="m" k="86" />
-<hkern u1="&#x27;" u2="V" k="-18" />
-<hkern u1="&#x27;" u2="Q" k="27" />
-<hkern u1="&#x27;" u2="P" k="16" />
-<hkern u1="&#x27;" u2="M" k="37" />
-<hkern u1="&#x27;" u2="F" k="16" />
-<hkern u1="&#x27;" u2="B" k="16" />
-<hkern u1="&#x27;" u2="&#x40;" k="47" />
-<hkern u1="&#x27;" u2="&#x38;" k="18" />
-<hkern u1="&#x27;" u2="&#x36;" k="41" />
-<hkern u1="&#x27;" u2="&#x34;" k="72" />
-<hkern u1="&#x27;" u2="&#x30;" k="31" />
-<hkern u1="&#x27;" u2="&#x2f;" k="61" />
-<hkern u1="&#x27;" u2="&#x2e;" k="174" />
-<hkern u1="&#x28;" g2="uniFB02" k="16" />
-<hkern u1="&#x28;" g2="uniFB01" k="16" />
-<hkern u1="&#x28;" u2="&#x178;" k="-16" />
-<hkern u1="&#x28;" u2="&#x153;" k="31" />
-<hkern u1="&#x28;" u2="&#x152;" k="25" />
-<hkern u1="&#x28;" u2="&#xff;" k="27" />
-<hkern u1="&#x28;" u2="&#xfe;" k="12" />
-<hkern u1="&#x28;" u2="&#xfd;" k="27" />
-<hkern u1="&#x28;" u2="&#xfc;" k="31" />
-<hkern u1="&#x28;" u2="&#xfb;" k="31" />
-<hkern u1="&#x28;" u2="&#xfa;" k="31" />
-<hkern u1="&#x28;" u2="&#xf9;" k="31" />
-<hkern u1="&#x28;" u2="&#xf8;" k="31" />
-<hkern u1="&#x28;" u2="&#xf6;" k="31" />
-<hkern u1="&#x28;" u2="&#xf5;" k="31" />
-<hkern u1="&#x28;" u2="&#xf4;" k="31" />
-<hkern u1="&#x28;" u2="&#xf3;" k="31" />
-<hkern u1="&#x28;" u2="&#xf2;" k="31" />
-<hkern u1="&#x28;" u2="&#xf1;" k="12" />
-<hkern u1="&#x28;" u2="&#xf0;" k="27" />
-<hkern u1="&#x28;" u2="&#xef;" k="-88" />
-<hkern u1="&#x28;" u2="&#xeb;" k="29" />
-<hkern u1="&#x28;" u2="&#xea;" k="29" />
-<hkern u1="&#x28;" u2="&#xe9;" k="29" />
-<hkern u1="&#x28;" u2="&#xe8;" k="29" />
-<hkern u1="&#x28;" u2="&#xe7;" k="31" />
-<hkern u1="&#x28;" u2="&#xe6;" k="14" />
-<hkern u1="&#x28;" u2="&#xe5;" k="14" />
-<hkern u1="&#x28;" u2="&#xe4;" k="14" />
-<hkern u1="&#x28;" u2="&#xe3;" k="14" />
-<hkern u1="&#x28;" u2="&#xe2;" k="14" />
-<hkern u1="&#x28;" u2="&#xe1;" k="14" />
-<hkern u1="&#x28;" u2="&#xe0;" k="14" />
-<hkern u1="&#x28;" u2="&#xdf;" k="10" />
-<hkern u1="&#x28;" u2="&#xdd;" k="-16" />
-<hkern u1="&#x28;" u2="&#xd8;" k="25" />
-<hkern u1="&#x28;" u2="&#xd6;" k="25" />
-<hkern u1="&#x28;" u2="&#xd5;" k="25" />
-<hkern u1="&#x28;" u2="&#xd4;" k="25" />
-<hkern u1="&#x28;" u2="&#xd3;" k="25" />
-<hkern u1="&#x28;" u2="&#xd2;" k="25" />
-<hkern u1="&#x28;" u2="&#xc7;" k="25" />
-<hkern u1="&#x28;" u2="&#xc6;" k="-35" />
-<hkern u1="&#x28;" u2="&#xc5;" k="-20" />
-<hkern u1="&#x28;" u2="&#xc4;" k="-20" />
-<hkern u1="&#x28;" u2="&#xc3;" k="-20" />
-<hkern u1="&#x28;" u2="&#xc2;" k="-20" />
-<hkern u1="&#x28;" u2="&#xc1;" k="-20" />
-<hkern u1="&#x28;" u2="&#xc0;" k="-20" />
-<hkern u1="&#x28;" u2="y" k="27" />
-<hkern u1="&#x28;" u2="w" k="23" />
-<hkern u1="&#x28;" u2="v" k="27" />
-<hkern u1="&#x28;" u2="u" k="31" />
-<hkern u1="&#x28;" u2="t" k="29" />
-<hkern u1="&#x28;" u2="r" k="12" />
-<hkern u1="&#x28;" u2="q" k="29" />
-<hkern u1="&#x28;" u2="p" k="12" />
-<hkern u1="&#x28;" u2="o" k="31" />
-<hkern u1="&#x28;" u2="n" k="12" />
-<hkern u1="&#x28;" u2="m" k="12" />
-<hkern u1="&#x28;" u2="f" k="16" />
-<hkern u1="&#x28;" u2="e" k="29" />
-<hkern u1="&#x28;" u2="d" k="23" />
-<hkern u1="&#x28;" u2="c" k="31" />
-<hkern u1="&#x28;" u2="a" k="14" />
-<hkern u1="&#x28;" u2="Y" k="-16" />
-<hkern u1="&#x28;" u2="Q" k="25" />
-<hkern u1="&#x28;" u2="O" k="25" />
-<hkern u1="&#x28;" u2="G" k="25" />
-<hkern u1="&#x28;" u2="C" k="25" />
-<hkern u1="&#x28;" u2="A" k="-20" />
-<hkern u1="&#x28;" u2="&#x36;" k="23" />
-<hkern u1="&#x28;" u2="&#x34;" k="18" />
-<hkern u1="&#x28;" u2="&#x30;" k="23" />
-<hkern u1="&#x2a;" u2="&#x153;" k="61" />
-<hkern u1="&#x2a;" u2="&#xfe;" k="27" />
-<hkern u1="&#x2a;" u2="&#xfc;" k="25" />
-<hkern u1="&#x2a;" u2="&#xfb;" k="25" />
-<hkern u1="&#x2a;" u2="&#xfa;" k="25" />
-<hkern u1="&#x2a;" u2="&#xf9;" k="25" />
-<hkern u1="&#x2a;" u2="&#xf8;" k="61" />
-<hkern u1="&#x2a;" u2="&#xf6;" k="61" />
-<hkern u1="&#x2a;" u2="&#xf5;" k="61" />
-<hkern u1="&#x2a;" u2="&#xf4;" k="61" />
-<hkern u1="&#x2a;" u2="&#xf3;" k="61" />
-<hkern u1="&#x2a;" u2="&#xf2;" k="61" />
-<hkern u1="&#x2a;" u2="&#xf1;" k="27" />
-<hkern u1="&#x2a;" u2="&#xf0;" k="29" />
-<hkern u1="&#x2a;" u2="&#xef;" k="-90" />
-<hkern u1="&#x2a;" u2="&#xee;" k="-51" />
-<hkern u1="&#x2a;" u2="&#xeb;" k="59" />
-<hkern u1="&#x2a;" u2="&#xea;" k="59" />
-<hkern u1="&#x2a;" u2="&#xe9;" k="59" />
-<hkern u1="&#x2a;" u2="&#xe8;" k="59" />
-<hkern u1="&#x2a;" u2="&#xe7;" k="61" />
-<hkern u1="&#x2a;" u2="&#xe6;" k="43" />
-<hkern u1="&#x2a;" u2="&#xe5;" k="43" />
-<hkern u1="&#x2a;" u2="&#xe4;" k="43" />
-<hkern u1="&#x2a;" u2="&#xe3;" k="43" />
-<hkern u1="&#x2a;" u2="&#xe2;" k="43" />
-<hkern u1="&#x2a;" u2="&#xe1;" k="43" />
-<hkern u1="&#x2a;" u2="&#xe0;" k="43" />
-<hkern u1="&#x2a;" u2="&#xde;" k="10" />
-<hkern u1="&#x2a;" u2="&#xd1;" k="10" />
-<hkern u1="&#x2a;" u2="&#xd0;" k="10" />
-<hkern u1="&#x2a;" u2="&#xcf;" k="10" />
-<hkern u1="&#x2a;" u2="&#xce;" k="10" />
-<hkern u1="&#x2a;" u2="&#xcd;" k="10" />
-<hkern u1="&#x2a;" u2="&#xcc;" k="10" />
-<hkern u1="&#x2a;" u2="&#xcb;" k="10" />
-<hkern u1="&#x2a;" u2="&#xca;" k="10" />
-<hkern u1="&#x2a;" u2="&#xc9;" k="10" />
-<hkern u1="&#x2a;" u2="&#xc8;" k="10" />
-<hkern u1="&#x2a;" u2="&#xc6;" k="82" />
-<hkern u1="&#x2a;" u2="&#xc5;" k="70" />
-<hkern u1="&#x2a;" u2="&#xc4;" k="70" />
-<hkern u1="&#x2a;" u2="&#xc3;" k="70" />
-<hkern u1="&#x2a;" u2="&#xc2;" k="70" />
-<hkern u1="&#x2a;" u2="&#xc1;" k="70" />
-<hkern u1="&#x2a;" u2="&#xc0;" k="70" />
-<hkern u1="&#x2a;" u2="z" k="14" />
-<hkern u1="&#x2a;" u2="x" k="10" />
-<hkern u1="&#x2a;" u2="u" k="25" />
-<hkern u1="&#x2a;" u2="s" k="35" />
-<hkern u1="&#x2a;" u2="r" k="27" />
-<hkern u1="&#x2a;" u2="q" k="57" />
-<hkern u1="&#x2a;" u2="p" k="27" />
-<hkern u1="&#x2a;" u2="o" k="61" />
-<hkern u1="&#x2a;" u2="n" k="27" />
-<hkern u1="&#x2a;" u2="m" k="27" />
-<hkern u1="&#x2a;" u2="g" k="70" />
-<hkern u1="&#x2a;" u2="e" k="59" />
-<hkern u1="&#x2a;" u2="d" k="57" />
-<hkern u1="&#x2a;" u2="c" k="61" />
-<hkern u1="&#x2a;" u2="a" k="43" />
-<hkern u1="&#x2a;" u2="X" k="10" />
-<hkern u1="&#x2a;" u2="R" k="10" />
-<hkern u1="&#x2a;" u2="P" k="10" />
-<hkern u1="&#x2a;" u2="N" k="10" />
-<hkern u1="&#x2a;" u2="M" k="25" />
-<hkern u1="&#x2a;" u2="L" k="10" />
-<hkern u1="&#x2a;" u2="K" k="10" />
-<hkern u1="&#x2a;" u2="J" k="55" />
-<hkern u1="&#x2a;" u2="I" k="10" />
-<hkern u1="&#x2a;" u2="H" k="10" />
-<hkern u1="&#x2a;" u2="F" k="10" />
-<hkern u1="&#x2a;" u2="E" k="10" />
-<hkern u1="&#x2a;" u2="D" k="10" />
-<hkern u1="&#x2a;" u2="B" k="10" />
-<hkern u1="&#x2a;" u2="A" k="70" />
-<hkern u1="&#x2b;" u2="&#x39;" k="12" />
-<hkern u1="&#x2b;" u2="&#x38;" k="31" />
-<hkern u1="&#x2b;" u2="&#x37;" k="80" />
-<hkern u1="&#x2b;" u2="&#x36;" k="10" />
-<hkern u1="&#x2b;" u2="&#x35;" k="25" />
-<hkern u1="&#x2b;" u2="&#x34;" k="18" />
-<hkern u1="&#x2b;" u2="&#x33;" k="63" />
-<hkern u1="&#x2b;" u2="&#x32;" k="82" />
-<hkern u1="&#x2b;" u2="&#x31;" k="45" />
-<hkern u1="&#x2b;" u2="&#x30;" k="14" />
-<hkern u1="&#x2c;" u2="&#x201c;" k="152" />
-<hkern u1="&#x2c;" u2="&#x2018;" k="152" />
-<hkern u1="&#x2c;" u2="&#x39;" k="31" />
-<hkern u1="&#x2c;" u2="&#x38;" k="10" />
-<hkern u1="&#x2c;" u2="&#x36;" k="14" />
-<hkern u1="&#x2c;" u2="&#x31;" k="45" />
-<hkern u1="&#x2c;" u2="&#x30;" k="31" />
-<hkern u1="&#x2c;" u2="&#x27;" k="164" />
-<hkern u1="&#x2c;" u2="&#x22;" k="164" />
-<hkern u1="&#x2d;" u2="&#xde;" k="23" />
-<hkern u1="&#x2d;" u2="x" k="10" />
-<hkern u1="&#x2d;" u2="X" k="43" />
-<hkern u1="&#x2d;" u2="V" k="49" />
-<hkern u1="&#x2d;" u2="P" k="23" />
-<hkern u1="&#x2d;" u2="M" k="14" />
-<hkern u1="&#x2d;" u2="F" k="23" />
-<hkern u1="&#x2d;" u2="B" k="23" />
-<hkern u1="&#x2d;" u2="&#x39;" k="35" />
-<hkern u1="&#x2d;" u2="&#x38;" k="10" />
-<hkern u1="&#x2d;" u2="&#x37;" k="39" />
-<hkern u1="&#x2d;" u2="&#x35;" k="43" />
-<hkern u1="&#x2d;" u2="&#x33;" k="41" />
-<hkern u1="&#x2d;" u2="&#x32;" k="49" />
-<hkern u1="&#x2d;" u2="&#x31;" k="43" />
-<hkern u1="&#x2d;" u2="&#x30;" k="14" />
-<hkern u1="&#x2e;" u2="&#x201c;" k="150" />
-<hkern u1="&#x2e;" u2="&#x2018;" k="150" />
-<hkern u1="&#x2e;" u2="&#x178;" k="68" />
-<hkern u1="&#x2e;" u2="&#x152;" k="33" />
-<hkern u1="&#x2e;" u2="&#xff;" k="31" />
-<hkern u1="&#x2e;" u2="&#xfd;" k="31" />
-<hkern u1="&#x2e;" u2="&#xde;" k="16" />
-<hkern u1="&#x2e;" u2="&#xdd;" k="68" />
-<hkern u1="&#x2e;" u2="&#xdc;" k="35" />
-<hkern u1="&#x2e;" u2="&#xdb;" k="35" />
-<hkern u1="&#x2e;" u2="&#xda;" k="35" />
-<hkern u1="&#x2e;" u2="&#xd9;" k="35" />
-<hkern u1="&#x2e;" u2="&#xd8;" k="33" />
-<hkern u1="&#x2e;" u2="&#xd6;" k="33" />
-<hkern u1="&#x2e;" u2="&#xd5;" k="33" />
-<hkern u1="&#x2e;" u2="&#xd4;" k="33" />
-<hkern u1="&#x2e;" u2="&#xd3;" k="33" />
-<hkern u1="&#x2e;" u2="&#xd2;" k="33" />
-<hkern u1="&#x2e;" u2="&#xd1;" k="14" />
-<hkern u1="&#x2e;" u2="&#xd0;" k="16" />
-<hkern u1="&#x2e;" u2="&#xcf;" k="16" />
-<hkern u1="&#x2e;" u2="&#xce;" k="16" />
-<hkern u1="&#x2e;" u2="&#xcd;" k="16" />
-<hkern u1="&#x2e;" u2="&#xcc;" k="16" />
-<hkern u1="&#x2e;" u2="&#xcb;" k="16" />
-<hkern u1="&#x2e;" u2="&#xca;" k="16" />
-<hkern u1="&#x2e;" u2="&#xc9;" k="16" />
-<hkern u1="&#x2e;" u2="&#xc8;" k="16" />
-<hkern u1="&#x2e;" u2="&#xc7;" k="33" />
-<hkern u1="&#x2e;" u2="y" k="31" />
-<hkern u1="&#x2e;" u2="w" k="20" />
-<hkern u1="&#x2e;" u2="v" k="33" />
-<hkern u1="&#x2e;" u2="Y" k="68" />
-<hkern u1="&#x2e;" u2="W" k="66" />
-<hkern u1="&#x2e;" u2="V" k="76" />
-<hkern u1="&#x2e;" u2="U" k="35" />
-<hkern u1="&#x2e;" u2="T" k="55" />
-<hkern u1="&#x2e;" u2="R" k="16" />
-<hkern u1="&#x2e;" u2="Q" k="33" />
-<hkern u1="&#x2e;" u2="P" k="16" />
-<hkern u1="&#x2e;" u2="O" k="33" />
-<hkern u1="&#x2e;" u2="N" k="14" />
-<hkern u1="&#x2e;" u2="L" k="16" />
-<hkern u1="&#x2e;" u2="K" k="16" />
-<hkern u1="&#x2e;" u2="J" k="-18" />
-<hkern u1="&#x2e;" u2="I" k="16" />
-<hkern u1="&#x2e;" u2="H" k="16" />
-<hkern u1="&#x2e;" u2="G" k="31" />
-<hkern u1="&#x2e;" u2="F" k="16" />
-<hkern u1="&#x2e;" u2="E" k="16" />
-<hkern u1="&#x2e;" u2="D" k="16" />
-<hkern u1="&#x2e;" u2="C" k="33" />
-<hkern u1="&#x2e;" u2="B" k="16" />
-<hkern u1="&#x2e;" u2="&#x39;" k="31" />
-<hkern u1="&#x2e;" u2="&#x36;" k="12" />
-<hkern u1="&#x2e;" u2="&#x31;" k="45" />
-<hkern u1="&#x2e;" u2="&#x30;" k="27" />
-<hkern u1="&#x2e;" u2="&#x27;" k="162" />
-<hkern u1="&#x2e;" u2="&#x22;" k="162" />
-<hkern u1="&#x2f;" g2="uniFB02" k="23" />
-<hkern u1="&#x2f;" g2="uniFB01" k="23" />
-<hkern u1="&#x2f;" u2="&#x178;" k="-43" />
-<hkern u1="&#x2f;" u2="&#x153;" k="51" />
-<hkern u1="&#x2f;" u2="&#x152;" k="10" />
-<hkern u1="&#x2f;" u2="&#xff;" k="14" />
-<hkern u1="&#x2f;" u2="&#xfe;" k="39" />
-<hkern u1="&#x2f;" u2="&#xfd;" k="14" />
-<hkern u1="&#x2f;" u2="&#xfc;" k="33" />
-<hkern u1="&#x2f;" u2="&#xfb;" k="33" />
-<hkern u1="&#x2f;" u2="&#xfa;" k="33" />
-<hkern u1="&#x2f;" u2="&#xf9;" k="33" />
-<hkern u1="&#x2f;" u2="&#xf8;" k="51" />
-<hkern u1="&#x2f;" u2="&#xf6;" k="51" />
-<hkern u1="&#x2f;" u2="&#xf5;" k="51" />
-<hkern u1="&#x2f;" u2="&#xf4;" k="51" />
-<hkern u1="&#x2f;" u2="&#xf3;" k="51" />
-<hkern u1="&#x2f;" u2="&#xf2;" k="51" />
-<hkern u1="&#x2f;" u2="&#xf1;" k="39" />
-<hkern u1="&#x2f;" u2="&#xf0;" k="29" />
-<hkern u1="&#x2f;" u2="&#xef;" k="-90" />
-<hkern u1="&#x2f;" u2="&#xee;" k="-31" />
-<hkern u1="&#x2f;" u2="&#xeb;" k="49" />
-<hkern u1="&#x2f;" u2="&#xea;" k="49" />
-<hkern u1="&#x2f;" u2="&#xe9;" k="49" />
-<hkern u1="&#x2f;" u2="&#xe8;" k="49" />
-<hkern u1="&#x2f;" u2="&#xe7;" k="51" />
-<hkern u1="&#x2f;" u2="&#xe6;" k="49" />
-<hkern u1="&#x2f;" u2="&#xe5;" k="49" />
-<hkern u1="&#x2f;" u2="&#xe4;" k="49" />
-<hkern u1="&#x2f;" u2="&#xe3;" k="49" />
-<hkern u1="&#x2f;" u2="&#xe2;" k="49" />
-<hkern u1="&#x2f;" u2="&#xe1;" k="49" />
-<hkern u1="&#x2f;" u2="&#xe0;" k="49" />
-<hkern u1="&#x2f;" u2="&#xdf;" k="20" />
-<hkern u1="&#x2f;" u2="&#xdd;" k="-43" />
-<hkern u1="&#x2f;" u2="&#xd8;" k="10" />
-<hkern u1="&#x2f;" u2="&#xd6;" k="10" />
-<hkern u1="&#x2f;" u2="&#xd5;" k="10" />
-<hkern u1="&#x2f;" u2="&#xd4;" k="10" />
-<hkern u1="&#x2f;" u2="&#xd3;" k="10" />
-<hkern u1="&#x2f;" u2="&#xd2;" k="10" />
-<hkern u1="&#x2f;" u2="&#xc7;" k="10" />
-<hkern u1="&#x2f;" u2="&#xc6;" k="61" />
-<hkern u1="&#x2f;" u2="&#xc5;" k="53" />
-<hkern u1="&#x2f;" u2="&#xc4;" k="53" />
-<hkern u1="&#x2f;" u2="&#xc3;" k="53" />
-<hkern u1="&#x2f;" u2="&#xc2;" k="53" />
-<hkern u1="&#x2f;" u2="&#xc1;" k="53" />
-<hkern u1="&#x2f;" u2="&#xc0;" k="53" />
-<hkern u1="&#x2f;" u2="z" k="29" />
-<hkern u1="&#x2f;" u2="y" k="14" />
-<hkern u1="&#x2f;" u2="x" k="25" />
-<hkern u1="&#x2f;" u2="w" k="14" />
-<hkern u1="&#x2f;" u2="v" k="12" />
-<hkern u1="&#x2f;" u2="u" k="33" />
-<hkern u1="&#x2f;" u2="t" k="27" />
-<hkern u1="&#x2f;" u2="s" k="41" />
-<hkern u1="&#x2f;" u2="r" k="39" />
-<hkern u1="&#x2f;" u2="q" k="49" />
-<hkern u1="&#x2f;" u2="p" k="39" />
-<hkern u1="&#x2f;" u2="o" k="51" />
-<hkern u1="&#x2f;" u2="n" k="39" />
-<hkern u1="&#x2f;" u2="m" k="39" />
-<hkern u1="&#x2f;" u2="j" k="10" />
-<hkern u1="&#x2f;" u2="g" k="61" />
-<hkern u1="&#x2f;" u2="f" k="23" />
-<hkern u1="&#x2f;" u2="e" k="49" />
-<hkern u1="&#x2f;" u2="d" k="43" />
-<hkern u1="&#x2f;" u2="c" k="51" />
-<hkern u1="&#x2f;" u2="a" k="49" />
-<hkern u1="&#x2f;" u2="Y" k="-43" />
-<hkern u1="&#x2f;" u2="V" k="-35" />
-<hkern u1="&#x2f;" u2="Q" k="10" />
-<hkern u1="&#x2f;" u2="O" k="10" />
-<hkern u1="&#x2f;" u2="M" k="23" />
-<hkern u1="&#x2f;" u2="J" k="27" />
-<hkern u1="&#x2f;" u2="G" k="12" />
-<hkern u1="&#x2f;" u2="C" k="10" />
-<hkern u1="&#x2f;" u2="A" k="53" />
-<hkern u1="&#x2f;" u2="&#x36;" k="18" />
-<hkern u1="&#x2f;" u2="&#x34;" k="31" />
-<hkern u1="&#x2f;" u2="&#x30;" k="16" />
-<hkern u1="&#x30;" u2="&#x7d;" k="31" />
-<hkern u1="&#x30;" u2="]" k="27" />
-<hkern u1="&#x30;" u2="&#x37;" k="12" />
-<hkern u1="&#x30;" u2="&#x33;" k="6" />
-<hkern u1="&#x30;" u2="&#x32;" k="10" />
-<hkern u1="&#x30;" u2="&#x29;" k="23" />
-<hkern u1="&#x31;" u2="&#x7d;" k="10" />
-<hkern u1="&#x31;" u2="]" k="10" />
-<hkern u1="&#x31;" u2="&#x30;" k="6" />
-<hkern u1="&#x32;" u2="&#x7d;" k="10" />
-<hkern u1="&#x32;" u2="&#x34;" k="6" />
-<hkern u1="&#x33;" u2="&#x7d;" k="14" />
-<hkern u1="&#x33;" u2="]" k="12" />
-<hkern u1="&#x34;" u2="&#x7d;" k="25" />
-<hkern u1="&#x34;" u2="]" k="23" />
-<hkern u1="&#x34;" u2="&#x39;" k="12" />
-<hkern u1="&#x34;" u2="&#x37;" k="6" />
-<hkern u1="&#x34;" u2="&#x32;" k="6" />
-<hkern u1="&#x34;" u2="&#x31;" k="12" />
-<hkern u1="&#x34;" u2="&#x29;" k="16" />
-<hkern u1="&#x35;" u2="&#x7d;" k="16" />
-<hkern u1="&#x35;" u2="]" k="14" />
-<hkern u1="&#x35;" u2="&#x31;" k="10" />
-<hkern u1="&#x35;" u2="&#x29;" k="10" />
-<hkern u1="&#x36;" u2="&#x7d;" k="18" />
-<hkern u1="&#x36;" u2="]" k="18" />
-<hkern u1="&#x36;" u2="&#x31;" k="14" />
-<hkern u1="&#x36;" u2="&#x29;" k="10" />
-<hkern u1="&#x37;" u2="&#xa2;" k="59" />
-<hkern u1="&#x37;" u2="&#x7d;" k="-25" />
-<hkern u1="&#x37;" u2="]" k="-29" />
-<hkern u1="&#x37;" u2="&#x37;" k="-12" />
-<hkern u1="&#x37;" u2="&#x36;" k="23" />
-<hkern u1="&#x37;" u2="&#x34;" k="78" />
-<hkern u1="&#x37;" u2="&#x30;" k="8" />
-<hkern u1="&#x38;" u2="&#x7d;" k="14" />
-<hkern u1="&#x38;" u2="]" k="10" />
-<hkern u1="&#x39;" u2="&#x7d;" k="16" />
-<hkern u1="&#x39;" u2="]" k="12" />
-<hkern u1="&#x39;" u2="&#x29;" k="14" />
-<hkern u1="&#x3d;" u2="&#x39;" k="10" />
-<hkern u1="&#x3d;" u2="&#x37;" k="29" />
-<hkern u1="&#x3d;" u2="&#x35;" k="12" />
-<hkern u1="&#x3d;" u2="&#x33;" k="14" />
-<hkern u1="&#x3d;" u2="&#x32;" k="33" />
-<hkern u1="&#x3d;" u2="&#x31;" k="31" />
-<hkern u1="&#x3d;" u2="&#x30;" k="10" />
-<hkern u1="&#x40;" u2="&#x178;" k="37" />
-<hkern u1="&#x40;" u2="&#xdd;" k="37" />
-<hkern u1="&#x40;" u2="Y" k="37" />
-<hkern u1="&#x40;" u2="X" k="16" />
-<hkern u1="&#x40;" u2="W" k="18" />
-<hkern u1="&#x40;" u2="V" k="23" />
-<hkern u1="&#x40;" u2="T" k="25" />
-<hkern u1="&#x40;" u2="&#x27;" k="27" />
-<hkern u1="&#x40;" u2="&#x22;" k="27" />
-<hkern u1="A" u2="&#xf0;" k="20" />
-<hkern u1="A" u2="&#xdf;" k="10" />
-<hkern u1="A" u2="&#x7d;" k="12" />
-<hkern u1="A" u2="v" k="59" />
-<hkern u1="A" u2="q" k="16" />
-<hkern u1="A" u2="m" k="10" />
-<hkern u1="A" u2="b" k="10" />
-<hkern u1="A" u2="]" k="12" />
-<hkern u1="A" u2="\" k="53" />
-<hkern u1="A" u2="V" k="100" />
-<hkern u1="A" u2="Q" k="10" />
-<hkern u1="A" u2="&#x3f;" k="18" />
-<hkern u1="A" u2="&#x2f;" k="-16" />
-<hkern u1="A" u2="&#x2a;" k="70" />
-<hkern u1="A" u2="&#x29;" k="-10" />
-<hkern u1="B" g2="uniFB02" k="45" />
-<hkern u1="B" g2="uniFB01" k="45" />
-<hkern u1="B" u2="&#x201e;" k="14" />
-<hkern u1="B" u2="&#x201d;" k="12" />
-<hkern u1="B" u2="&#x201a;" k="14" />
-<hkern u1="B" u2="&#x2019;" k="12" />
-<hkern u1="B" u2="&#x2014;" k="10" />
-<hkern u1="B" u2="&#x2013;" k="10" />
-<hkern u1="B" u2="&#x178;" k="6" />
-<hkern u1="B" u2="&#x153;" k="20" />
-<hkern u1="B" u2="&#xff;" k="43" />
-<hkern u1="B" u2="&#xfe;" k="35" />
-<hkern u1="B" u2="&#xfd;" k="43" />
-<hkern u1="B" u2="&#xfc;" k="33" />
-<hkern u1="B" u2="&#xfb;" k="33" />
-<hkern u1="B" u2="&#xfa;" k="33" />
-<hkern u1="B" u2="&#xf9;" k="33" />
-<hkern u1="B" u2="&#xf8;" k="20" />
-<hkern u1="B" u2="&#xf6;" k="20" />
-<hkern u1="B" u2="&#xf5;" k="20" />
-<hkern u1="B" u2="&#xf4;" k="20" />
-<hkern u1="B" u2="&#xf3;" k="20" />
-<hkern u1="B" u2="&#xf2;" k="20" />
-<hkern u1="B" u2="&#xf1;" k="35" />
-<hkern u1="B" u2="&#xf0;" k="23" />
-<hkern u1="B" u2="&#xef;" k="8" />
-<hkern u1="B" u2="&#xee;" k="10" />
-<hkern u1="B" u2="&#xed;" k="35" />
-<hkern u1="B" u2="&#xec;" k="35" />
-<hkern u1="B" u2="&#xeb;" k="20" />
-<hkern u1="B" u2="&#xea;" k="20" />
-<hkern u1="B" u2="&#xe9;" k="20" />
-<hkern u1="B" u2="&#xe8;" k="20" />
-<hkern u1="B" u2="&#xe7;" k="20" />
-<hkern u1="B" u2="&#xe6;" k="27" />
-<hkern u1="B" u2="&#xe5;" k="27" />
-<hkern u1="B" u2="&#xe4;" k="27" />
-<hkern u1="B" u2="&#xe3;" k="27" />
-<hkern u1="B" u2="&#xe2;" k="27" />
-<hkern u1="B" u2="&#xe1;" k="27" />
-<hkern u1="B" u2="&#xe0;" k="27" />
-<hkern u1="B" u2="&#xdf;" k="35" />
-<hkern u1="B" u2="&#xdd;" k="6" />
-<hkern u1="B" u2="&#x7d;" k="14" />
-<hkern u1="B" u2="z" k="45" />
-<hkern u1="B" u2="y" k="43" />
-<hkern u1="B" u2="x" k="49" />
-<hkern u1="B" u2="w" k="43" />
-<hkern u1="B" u2="v" k="43" />
-<hkern u1="B" u2="u" k="33" />
-<hkern u1="B" u2="t" k="43" />
-<hkern u1="B" u2="s" k="31" />
-<hkern u1="B" u2="r" k="35" />
-<hkern u1="B" u2="q" k="20" />
-<hkern u1="B" u2="p" k="35" />
-<hkern u1="B" u2="o" k="20" />
-<hkern u1="B" u2="n" k="35" />
-<hkern u1="B" u2="m" k="35" />
-<hkern u1="B" u2="l" k="35" />
-<hkern u1="B" u2="k" k="35" />
-<hkern u1="B" u2="j" k="35" />
-<hkern u1="B" u2="i" k="35" />
-<hkern u1="B" u2="h" k="35" />
-<hkern u1="B" u2="g" k="41" />
-<hkern u1="B" u2="f" k="45" />
-<hkern u1="B" u2="e" k="20" />
-<hkern u1="B" u2="d" k="23" />
-<hkern u1="B" u2="c" k="20" />
-<hkern u1="B" u2="b" k="35" />
-<hkern u1="B" u2="a" k="27" />
-<hkern u1="B" u2="]" k="10" />
-<hkern u1="B" u2="Y" k="6" />
-<hkern u1="B" u2="W" k="6" />
-<hkern u1="B" u2="&#x3a;" k="12" />
-<hkern u1="B" u2="&#x2d;" k="10" />
-<hkern u1="B" u2="&#x2c;" k="10" />
-<hkern u1="B" u2="&#x27;" k="12" />
-<hkern u1="B" u2="&#x22;" k="12" />
-<hkern u1="C" u2="&#xf0;" k="37" />
-<hkern u1="C" u2="&#xef;" k="-72" />
-<hkern u1="C" u2="&#xee;" k="-29" />
-<hkern u1="C" u2="&#xdf;" k="31" />
-<hkern u1="C" u2="x" k="43" />
-<hkern u1="C" u2="v" k="68" />
-<hkern u1="C" u2="q" k="31" />
-<hkern u1="C" u2="m" k="35" />
-<hkern u1="C" u2="b" k="23" />
-<hkern u1="C" u2="Q" k="6" />
-<hkern u1="C" u2="&#x3a;" k="10" />
-<hkern u1="D" u2="&#xf0;" k="25" />
-<hkern u1="D" u2="&#xdf;" k="31" />
-<hkern u1="D" u2="&#x7d;" k="35" />
-<hkern u1="D" u2="x" k="25" />
-<hkern u1="D" u2="q" k="29" />
-<hkern u1="D" u2="m" k="33" />
-<hkern u1="D" u2="b" k="31" />
-<hkern u1="D" u2="]" k="31" />
-<hkern u1="D" u2="\" k="12" />
-<hkern u1="D" u2="X" k="23" />
-<hkern u1="D" u2="V" k="12" />
-<hkern u1="D" u2="&#x3f;" k="20" />
-<hkern u1="D" u2="&#x2f;" k="16" />
-<hkern u1="D" u2="&#x2e;" k="35" />
-<hkern u1="D" u2="&#x2c;" k="35" />
-<hkern u1="D" u2="&#x29;" k="27" />
-<hkern u1="D" u2="&#x21;" k="12" />
-<hkern u1="E" u2="&#xf0;" k="43" />
-<hkern u1="E" u2="&#xef;" k="-35" />
-<hkern u1="E" u2="&#xee;" k="2" />
-<hkern u1="E" u2="&#xdf;" k="37" />
-<hkern u1="E" u2="x" k="27" />
-<hkern u1="E" u2="v" k="51" />
-<hkern u1="E" u2="q" k="41" />
-<hkern u1="E" u2="m" k="37" />
-<hkern u1="E" u2="b" k="29" />
-<hkern u1="F" g2="uniFB02" k="49" />
-<hkern u1="F" g2="uniFB01" k="49" />
-<hkern u1="F" u2="&#x203a;" k="16" />
-<hkern u1="F" u2="&#x2039;" k="20" />
-<hkern u1="F" u2="&#x201e;" k="102" />
-<hkern u1="F" u2="&#x201a;" k="102" />
-<hkern u1="F" u2="&#x2014;" k="25" />
-<hkern u1="F" u2="&#x2013;" k="25" />
-<hkern u1="F" u2="&#x178;" k="-37" />
-<hkern u1="F" u2="&#x153;" k="72" />
-<hkern u1="F" u2="&#xff;" k="39" />
-<hkern u1="F" u2="&#xfe;" k="59" />
-<hkern u1="F" u2="&#xfd;" k="39" />
-<hkern u1="F" u2="&#xfc;" k="61" />
-<hkern u1="F" u2="&#xfb;" k="61" />
-<hkern u1="F" u2="&#xfa;" k="61" />
-<hkern u1="F" u2="&#xf9;" k="61" />
-<hkern u1="F" u2="&#xf8;" k="72" />
-<hkern u1="F" u2="&#xf6;" k="72" />
-<hkern u1="F" u2="&#xf5;" k="72" />
-<hkern u1="F" u2="&#xf4;" k="72" />
-<hkern u1="F" u2="&#xf3;" k="72" />
-<hkern u1="F" u2="&#xf2;" k="72" />
-<hkern u1="F" u2="&#xf1;" k="59" />
-<hkern u1="F" u2="&#xf0;" k="63" />
-<hkern u1="F" u2="&#xef;" k="-84" />
-<hkern u1="F" u2="&#xee;" k="-51" />
-<hkern u1="F" u2="&#xed;" k="18" />
-<hkern u1="F" u2="&#xec;" k="14" />
-<hkern u1="F" u2="&#xeb;" k="72" />
-<hkern u1="F" u2="&#xea;" k="72" />
-<hkern u1="F" u2="&#xe9;" k="72" />
-<hkern u1="F" u2="&#xe8;" k="72" />
-<hkern u1="F" u2="&#xe7;" k="72" />
-<hkern u1="F" u2="&#xe6;" k="74" />
-<hkern u1="F" u2="&#xe5;" k="74" />
-<hkern u1="F" u2="&#xe4;" k="74" />
-<hkern u1="F" u2="&#xe3;" k="74" />
-<hkern u1="F" u2="&#xe2;" k="74" />
-<hkern u1="F" u2="&#xe1;" k="74" />
-<hkern u1="F" u2="&#xe0;" k="74" />
-<hkern u1="F" u2="&#xdf;" k="55" />
-<hkern u1="F" u2="&#xdd;" k="-37" />
-<hkern u1="F" u2="&#xc6;" k="80" />
-<hkern u1="F" u2="&#xc5;" k="51" />
-<hkern u1="F" u2="&#xc4;" k="51" />
-<hkern u1="F" u2="&#xc3;" k="51" />
-<hkern u1="F" u2="&#xc2;" k="51" />
-<hkern u1="F" u2="&#xc1;" k="51" />
-<hkern u1="F" u2="&#xc0;" k="51" />
-<hkern u1="F" u2="&#xbb;" k="16" />
-<hkern u1="F" u2="&#xab;" k="20" />
-<hkern u1="F" u2="z" k="70" />
-<hkern u1="F" u2="y" k="39" />
-<hkern u1="F" u2="x" k="61" />
-<hkern u1="F" u2="w" k="47" />
-<hkern u1="F" u2="v" k="37" />
-<hkern u1="F" u2="u" k="61" />
-<hkern u1="F" u2="t" k="51" />
-<hkern u1="F" u2="s" k="61" />
-<hkern u1="F" u2="r" k="59" />
-<hkern u1="F" u2="q" k="72" />
-<hkern u1="F" u2="p" k="59" />
-<hkern u1="F" u2="o" k="72" />
-<hkern u1="F" u2="n" k="59" />
-<hkern u1="F" u2="m" k="59" />
-<hkern u1="F" u2="l" k="29" />
-<hkern u1="F" u2="k" k="29" />
-<hkern u1="F" u2="j" k="31" />
-<hkern u1="F" u2="i" k="31" />
-<hkern u1="F" u2="h" k="29" />
-<hkern u1="F" u2="g" k="78" />
-<hkern u1="F" u2="f" k="49" />
-<hkern u1="F" u2="e" k="72" />
-<hkern u1="F" u2="d" k="72" />
-<hkern u1="F" u2="c" k="72" />
-<hkern u1="F" u2="b" k="29" />
-<hkern u1="F" u2="a" k="74" />
-<hkern u1="F" u2="Y" k="-37" />
-<hkern u1="F" u2="V" k="-29" />
-<hkern u1="F" u2="M" k="12" />
-<hkern u1="F" u2="J" k="156" />
-<hkern u1="F" u2="A" k="51" />
-<hkern u1="F" u2="&#x3b;" k="18" />
-<hkern u1="F" u2="&#x3a;" k="27" />
-<hkern u1="F" u2="&#x2f;" k="35" />
-<hkern u1="F" u2="&#x2e;" k="100" />
-<hkern u1="F" u2="&#x2d;" k="25" />
-<hkern u1="F" u2="&#x2c;" k="100" />
-<hkern u1="G" u2="&#xf0;" k="16" />
-<hkern u1="G" u2="&#xef;" k="-14" />
-<hkern u1="G" u2="&#xdf;" k="23" />
-<hkern u1="G" u2="x" k="27" />
-<hkern u1="G" u2="v" k="25" />
-<hkern u1="G" u2="q" k="16" />
-<hkern u1="G" u2="m" k="23" />
-<hkern u1="G" u2="b" k="23" />
-<hkern u1="H" u2="&#xf0;" k="39" />
-<hkern u1="H" u2="&#xdf;" k="27" />
-<hkern u1="H" u2="&#x7d;" k="10" />
-<hkern u1="H" u2="x" k="45" />
-<hkern u1="H" u2="v" k="43" />
-<hkern u1="H" u2="q" k="41" />
-<hkern u1="H" u2="m" k="27" />
-<hkern u1="H" u2="b" k="27" />
-<hkern u1="H" u2="&#x3f;" k="10" />
-<hkern u1="H" u2="&#x3b;" k="10" />
-<hkern u1="H" u2="&#x3a;" k="16" />
-<hkern u1="H" u2="&#x2f;" k="12" />
-<hkern u1="H" u2="&#x2e;" k="16" />
-<hkern u1="H" u2="&#x2c;" k="16" />
-<hkern u1="H" u2="&#x2a;" k="10" />
-<hkern u1="H" u2="&#x21;" k="12" />
-<hkern u1="I" u2="&#xf0;" k="39" />
-<hkern u1="I" u2="&#xdf;" k="27" />
-<hkern u1="I" u2="&#x7d;" k="10" />
-<hkern u1="I" u2="x" k="45" />
-<hkern u1="I" u2="v" k="43" />
-<hkern u1="I" u2="q" k="41" />
-<hkern u1="I" u2="m" k="27" />
-<hkern u1="I" u2="b" k="27" />
-<hkern u1="I" u2="&#x3f;" k="10" />
-<hkern u1="I" u2="&#x3b;" k="10" />
-<hkern u1="I" u2="&#x3a;" k="16" />
-<hkern u1="I" u2="&#x2f;" k="12" />
-<hkern u1="I" u2="&#x2e;" k="16" />
-<hkern u1="I" u2="&#x2c;" k="16" />
-<hkern u1="I" u2="&#x2a;" k="10" />
-<hkern u1="I" u2="&#x21;" k="12" />
-<hkern u1="J" u2="&#xf0;" k="20" />
-<hkern u1="J" u2="&#xef;" k="-2" />
-<hkern u1="J" u2="&#xdf;" k="12" />
-<hkern u1="J" u2="x" k="29" />
-<hkern u1="J" u2="v" k="10" />
-<hkern u1="J" u2="q" k="23" />
-<hkern u1="J" u2="m" k="10" />
-<hkern u1="J" u2="b" k="12" />
-<hkern u1="K" u2="&#xf0;" k="72" />
-<hkern u1="K" u2="&#xef;" k="-27" />
-<hkern u1="K" u2="&#xdf;" k="37" />
-<hkern u1="K" u2="&#xde;" k="6" />
-<hkern u1="K" u2="v" k="74" />
-<hkern u1="K" u2="q" k="57" />
-<hkern u1="K" u2="m" k="37" />
-<hkern u1="K" u2="b" k="33" />
-<hkern u1="K" u2="Q" k="41" />
-<hkern u1="K" u2="P" k="6" />
-<hkern u1="K" u2="F" k="6" />
-<hkern u1="K" u2="B" k="6" />
-<hkern u1="K" u2="&#x2a;" k="12" />
-<hkern u1="L" u2="&#xf0;" k="12" />
-<hkern u1="L" u2="&#xdf;" k="10" />
-<hkern u1="L" u2="&#xb7;" k="72" />
-<hkern u1="L" u2="&#x7d;" k="37" />
-<hkern u1="L" u2="v" k="57" />
-<hkern u1="L" u2="m" k="10" />
-<hkern u1="L" u2="b" k="10" />
-<hkern u1="L" u2="]" k="39" />
-<hkern u1="L" u2="\" k="57" />
-<hkern u1="L" u2="X" k="-8" />
-<hkern u1="L" u2="V" k="201" />
-<hkern u1="L" u2="Q" k="14" />
-<hkern u1="L" u2="&#x3f;" k="20" />
-<hkern u1="L" u2="&#x2a;" k="94" />
-<hkern u1="M" g2="uniFB02" k="31" />
-<hkern u1="M" g2="uniFB01" k="31" />
-<hkern u1="M" u2="&#x201d;" k="29" />
-<hkern u1="M" u2="&#x2019;" k="29" />
-<hkern u1="M" u2="&#x2014;" k="14" />
-<hkern u1="M" u2="&#x2013;" k="14" />
-<hkern u1="M" u2="&#x178;" k="31" />
-<hkern u1="M" u2="&#x153;" k="27" />
-<hkern u1="M" u2="&#xff;" k="47" />
-<hkern u1="M" u2="&#xfe;" k="23" />
-<hkern u1="M" u2="&#xfd;" k="47" />
-<hkern u1="M" u2="&#xfc;" k="25" />
-<hkern u1="M" u2="&#xfb;" k="25" />
-<hkern u1="M" u2="&#xfa;" k="25" />
-<hkern u1="M" u2="&#xf9;" k="25" />
-<hkern u1="M" u2="&#xf8;" k="27" />
-<hkern u1="M" u2="&#xf6;" k="27" />
-<hkern u1="M" u2="&#xf5;" k="27" />
-<hkern u1="M" u2="&#xf4;" k="27" />
-<hkern u1="M" u2="&#xf3;" k="27" />
-<hkern u1="M" u2="&#xf2;" k="27" />
-<hkern u1="M" u2="&#xf1;" k="23" />
-<hkern u1="M" u2="&#xf0;" k="29" />
-<hkern u1="M" u2="&#xef;" k="23" />
-<hkern u1="M" u2="&#xee;" k="23" />
-<hkern u1="M" u2="&#xed;" k="23" />
-<hkern u1="M" u2="&#xec;" k="23" />
-<hkern u1="M" u2="&#xeb;" k="27" />
-<hkern u1="M" u2="&#xea;" k="27" />
-<hkern u1="M" u2="&#xe9;" k="27" />
-<hkern u1="M" u2="&#xe8;" k="27" />
-<hkern u1="M" u2="&#xe7;" k="27" />
-<hkern u1="M" u2="&#xe6;" k="20" />
-<hkern u1="M" u2="&#xe5;" k="20" />
-<hkern u1="M" u2="&#xe4;" k="20" />
-<hkern u1="M" u2="&#xe3;" k="20" />
-<hkern u1="M" u2="&#xe2;" k="20" />
-<hkern u1="M" u2="&#xe1;" k="20" />
-<hkern u1="M" u2="&#xe0;" k="20" />
-<hkern u1="M" u2="&#xdf;" k="23" />
-<hkern u1="M" u2="&#xdd;" k="31" />
-<hkern u1="M" u2="&#x7d;" k="16" />
-<hkern u1="M" u2="z" k="18" />
-<hkern u1="M" u2="y" k="47" />
-<hkern u1="M" u2="x" k="18" />
-<hkern u1="M" u2="w" k="37" />
-<hkern u1="M" u2="v" k="49" />
-<hkern u1="M" u2="u" k="25" />
-<hkern u1="M" u2="t" k="33" />
-<hkern u1="M" u2="s" k="20" />
-<hkern u1="M" u2="r" k="23" />
-<hkern u1="M" u2="q" k="27" />
-<hkern u1="M" u2="p" k="23" />
-<hkern u1="M" u2="o" k="27" />
-<hkern u1="M" u2="n" k="23" />
-<hkern u1="M" u2="m" k="23" />
-<hkern u1="M" u2="l" k="23" />
-<hkern u1="M" u2="k" k="23" />
-<hkern u1="M" u2="j" k="23" />
-<hkern u1="M" u2="i" k="23" />
-<hkern u1="M" u2="h" k="23" />
-<hkern u1="M" u2="g" k="16" />
-<hkern u1="M" u2="f" k="31" />
-<hkern u1="M" u2="e" k="27" />
-<hkern u1="M" u2="d" k="27" />
-<hkern u1="M" u2="c" k="27" />
-<hkern u1="M" u2="b" k="23" />
-<hkern u1="M" u2="a" k="20" />
-<hkern u1="M" u2="]" k="14" />
-<hkern u1="M" u2="\" k="25" />
-<hkern u1="M" u2="Y" k="31" />
-<hkern u1="M" u2="W" k="18" />
-<hkern u1="M" u2="V" k="27" />
-<hkern u1="M" u2="T" k="25" />
-<hkern u1="M" u2="&#x3f;" k="18" />
-<hkern u1="M" u2="&#x2d;" k="14" />
-<hkern u1="M" u2="&#x2a;" k="25" />
-<hkern u1="M" u2="&#x27;" k="29" />
-<hkern u1="M" u2="&#x22;" k="29" />
-<hkern u1="N" u2="&#xf0;" k="43" />
-<hkern u1="N" u2="&#xdf;" k="27" />
-<hkern u1="N" u2="x" k="43" />
-<hkern u1="N" u2="v" k="43" />
-<hkern u1="N" u2="q" k="43" />
-<hkern u1="N" u2="m" k="27" />
-<hkern u1="N" u2="b" k="27" />
-<hkern u1="N" u2="&#x3f;" k="10" />
-<hkern u1="N" u2="&#x3b;" k="10" />
-<hkern u1="N" u2="&#x3a;" k="16" />
-<hkern u1="N" u2="&#x2f;" k="10" />
-<hkern u1="N" u2="&#x2e;" k="16" />
-<hkern u1="N" u2="&#x2c;" k="16" />
-<hkern u1="N" u2="&#x2a;" k="12" />
-<hkern u1="N" u2="&#x21;" k="12" />
-<hkern u1="O" u2="&#xf0;" k="23" />
-<hkern u1="O" u2="&#xdf;" k="29" />
-<hkern u1="O" u2="&#x7d;" k="33" />
-<hkern u1="O" u2="x" k="25" />
-<hkern u1="O" u2="q" k="27" />
-<hkern u1="O" u2="m" k="33" />
-<hkern u1="O" u2="b" k="29" />
-<hkern u1="O" u2="]" k="29" />
-<hkern u1="O" u2="\" k="10" />
-<hkern u1="O" u2="X" k="20" />
-<hkern u1="O" u2="V" k="10" />
-<hkern u1="O" u2="&#x3f;" k="18" />
-<hkern u1="O" u2="&#x2f;" k="14" />
-<hkern u1="O" u2="&#x2e;" k="33" />
-<hkern u1="O" u2="&#x2c;" k="33" />
-<hkern u1="O" u2="&#x29;" k="25" />
-<hkern u1="O" u2="&#x21;" k="12" />
-<hkern u1="P" g2="uniFB02" k="27" />
-<hkern u1="P" g2="uniFB01" k="27" />
-<hkern u1="P" u2="&#x2039;" k="39" />
-<hkern u1="P" u2="&#x201e;" k="111" />
-<hkern u1="P" u2="&#x201a;" k="111" />
-<hkern u1="P" u2="&#x2014;" k="35" />
-<hkern u1="P" u2="&#x2013;" k="35" />
-<hkern u1="P" u2="&#x153;" k="70" />
-<hkern u1="P" u2="&#xfe;" k="55" />
-<hkern u1="P" u2="&#xfc;" k="47" />
-<hkern u1="P" u2="&#xfb;" k="47" />
-<hkern u1="P" u2="&#xfa;" k="47" />
-<hkern u1="P" u2="&#xf9;" k="47" />
-<hkern u1="P" u2="&#xf8;" k="70" />
-<hkern u1="P" u2="&#xf6;" k="70" />
-<hkern u1="P" u2="&#xf5;" k="70" />
-<hkern u1="P" u2="&#xf4;" k="70" />
-<hkern u1="P" u2="&#xf3;" k="70" />
-<hkern u1="P" u2="&#xf2;" k="70" />
-<hkern u1="P" u2="&#xf1;" k="55" />
-<hkern u1="P" u2="&#xf0;" k="68" />
-<hkern u1="P" u2="&#xef;" k="-33" />
-<hkern u1="P" u2="&#xee;" k="-35" />
-<hkern u1="P" u2="&#xed;" k="14" />
-<hkern u1="P" u2="&#xec;" k="33" />
-<hkern u1="P" u2="&#xeb;" k="70" />
-<hkern u1="P" u2="&#xea;" k="70" />
-<hkern u1="P" u2="&#xe9;" k="70" />
-<hkern u1="P" u2="&#xe8;" k="70" />
-<hkern u1="P" u2="&#xe7;" k="72" />
-<hkern u1="P" u2="&#xe6;" k="68" />
-<hkern u1="P" u2="&#xe5;" k="68" />
-<hkern u1="P" u2="&#xe4;" k="68" />
-<hkern u1="P" u2="&#xe3;" k="68" />
-<hkern u1="P" u2="&#xe2;" k="68" />
-<hkern u1="P" u2="&#xe1;" k="68" />
-<hkern u1="P" u2="&#xe0;" k="68" />
-<hkern u1="P" u2="&#xdf;" k="31" />
-<hkern u1="P" u2="&#xc6;" k="150" />
-<hkern u1="P" u2="&#xc5;" k="80" />
-<hkern u1="P" u2="&#xc4;" k="80" />
-<hkern u1="P" u2="&#xc3;" k="80" />
-<hkern u1="P" u2="&#xc2;" k="80" />
-<hkern u1="P" u2="&#xc1;" k="80" />
-<hkern u1="P" u2="&#xc0;" k="80" />
-<hkern u1="P" u2="&#xab;" k="39" />
-<hkern u1="P" u2="z" k="35" />
-<hkern u1="P" u2="x" k="25" />
-<hkern u1="P" u2="w" k="14" />
-<hkern u1="P" u2="u" k="47" />
-<hkern u1="P" u2="t" k="23" />
-<hkern u1="P" u2="s" k="57" />
-<hkern u1="P" u2="r" k="55" />
-<hkern u1="P" u2="q" k="68" />
-<hkern u1="P" u2="p" k="55" />
-<hkern u1="P" u2="o" k="70" />
-<hkern u1="P" u2="n" k="55" />
-<hkern u1="P" u2="m" k="55" />
-<hkern u1="P" u2="l" k="25" />
-<hkern u1="P" u2="k" k="25" />
-<hkern u1="P" u2="j" k="33" />
-<hkern u1="P" u2="i" k="33" />
-<hkern u1="P" u2="h" k="25" />
-<hkern u1="P" u2="g" k="125" />
-<hkern u1="P" u2="f" k="27" />
-<hkern u1="P" u2="e" k="70" />
-<hkern u1="P" u2="d" k="70" />
-<hkern u1="P" u2="c" k="72" />
-<hkern u1="P" u2="b" k="25" />
-<hkern u1="P" u2="a" k="68" />
-<hkern u1="P" u2="X" k="10" />
-<hkern u1="P" u2="M" k="16" />
-<hkern u1="P" u2="J" k="141" />
-<hkern u1="P" u2="A" k="80" />
-<hkern u1="P" u2="&#x3b;" k="10" />
-<hkern u1="P" u2="&#x3a;" k="16" />
-<hkern u1="P" u2="&#x2f;" k="35" />
-<hkern u1="P" u2="&#x2e;" k="111" />
-<hkern u1="P" u2="&#x2d;" k="35" />
-<hkern u1="P" u2="&#x2c;" k="113" />
-<hkern u1="Q" g2="uniFB02" k="18" />
-<hkern u1="Q" g2="uniFB01" k="18" />
-<hkern u1="Q" u2="&#x201e;" k="45" />
-<hkern u1="Q" u2="&#x201a;" k="45" />
-<hkern u1="Q" u2="&#x2014;" k="10" />
-<hkern u1="Q" u2="&#x2013;" k="10" />
-<hkern u1="Q" u2="&#x178;" k="25" />
-<hkern u1="Q" u2="&#x153;" k="29" />
-<hkern u1="Q" u2="&#xfe;" k="33" />
-<hkern u1="Q" u2="&#xfc;" k="29" />
-<hkern u1="Q" u2="&#xfb;" k="29" />
-<hkern u1="Q" u2="&#xfa;" k="29" />
-<hkern u1="Q" u2="&#xf9;" k="29" />
-<hkern u1="Q" u2="&#xf8;" k="29" />
-<hkern u1="Q" u2="&#xf6;" k="29" />
-<hkern u1="Q" u2="&#xf5;" k="29" />
-<hkern u1="Q" u2="&#xf4;" k="29" />
-<hkern u1="Q" u2="&#xf3;" k="29" />
-<hkern u1="Q" u2="&#xf2;" k="29" />
-<hkern u1="Q" u2="&#xf1;" k="33" />
-<hkern u1="Q" u2="&#xf0;" k="25" />
-<hkern u1="Q" u2="&#xef;" k="33" />
-<hkern u1="Q" u2="&#xee;" k="33" />
-<hkern u1="Q" u2="&#xed;" k="33" />
-<hkern u1="Q" u2="&#xec;" k="33" />
-<hkern u1="Q" u2="&#xeb;" k="29" />
-<hkern u1="Q" u2="&#xea;" k="29" />
-<hkern u1="Q" u2="&#xe9;" k="29" />
-<hkern u1="Q" u2="&#xe8;" k="29" />
-<hkern u1="Q" u2="&#xe7;" k="29" />
-<hkern u1="Q" u2="&#xe6;" k="37" />
-<hkern u1="Q" u2="&#xe5;" k="37" />
-<hkern u1="Q" u2="&#xe4;" k="37" />
-<hkern u1="Q" u2="&#xe3;" k="37" />
-<hkern u1="Q" u2="&#xe2;" k="37" />
-<hkern u1="Q" u2="&#xe1;" k="37" />
-<hkern u1="Q" u2="&#xe0;" k="37" />
-<hkern u1="Q" u2="&#xdf;" k="31" />
-<hkern u1="Q" u2="&#xdd;" k="25" />
-<hkern u1="Q" u2="&#xc6;" k="18" />
-<hkern u1="Q" u2="&#xc5;" k="10" />
-<hkern u1="Q" u2="&#xc4;" k="10" />
-<hkern u1="Q" u2="&#xc3;" k="10" />
-<hkern u1="Q" u2="&#xc2;" k="10" />
-<hkern u1="Q" u2="&#xc1;" k="10" />
-<hkern u1="Q" u2="&#xc0;" k="10" />
-<hkern u1="Q" u2="&#x7d;" k="33" />
-<hkern u1="Q" u2="z" k="25" />
-<hkern u1="Q" u2="x" k="25" />
-<hkern u1="Q" u2="w" k="12" />
-<hkern u1="Q" u2="u" k="29" />
-<hkern u1="Q" u2="t" k="16" />
-<hkern u1="Q" u2="s" k="23" />
-<hkern u1="Q" u2="r" k="33" />
-<hkern u1="Q" u2="q" k="27" />
-<hkern u1="Q" u2="p" k="33" />
-<hkern u1="Q" u2="o" k="29" />
-<hkern u1="Q" u2="n" k="33" />
-<hkern u1="Q" u2="m" k="33" />
-<hkern u1="Q" u2="l" k="29" />
-<hkern u1="Q" u2="k" k="29" />
-<hkern u1="Q" u2="j" k="-33" />
-<hkern u1="Q" u2="i" k="33" />
-<hkern u1="Q" u2="h" k="29" />
-<hkern u1="Q" u2="g" k="57" />
-<hkern u1="Q" u2="f" k="18" />
-<hkern u1="Q" u2="e" k="29" />
-<hkern u1="Q" u2="d" k="29" />
-<hkern u1="Q" u2="c" k="29" />
-<hkern u1="Q" u2="b" k="29" />
-<hkern u1="Q" u2="a" k="37" />
-<hkern u1="Q" u2="]" k="27" />
-<hkern u1="Q" u2="\" k="12" />
-<hkern u1="Q" u2="Z" k="12" />
-<hkern u1="Q" u2="Y" k="25" />
-<hkern u1="Q" u2="X" k="20" />
-<hkern u1="Q" u2="W" k="10" />
-<hkern u1="Q" u2="V" k="10" />
-<hkern u1="Q" u2="T" k="14" />
-<hkern u1="Q" u2="J" k="37" />
-<hkern u1="Q" u2="A" k="10" />
-<hkern u1="Q" u2="&#x3f;" k="20" />
-<hkern u1="Q" u2="&#x2f;" k="14" />
-<hkern u1="Q" u2="&#x2e;" k="33" />
-<hkern u1="Q" u2="&#x2d;" k="10" />
-<hkern u1="Q" u2="&#x2c;" k="35" />
-<hkern u1="Q" u2="&#x29;" k="25" />
-<hkern u1="Q" u2="&#x27;" k="18" />
-<hkern u1="Q" u2="&#x22;" k="18" />
-<hkern u1="Q" u2="&#x21;" k="12" />
-<hkern u1="R" u2="&#xf0;" k="63" />
-<hkern u1="R" u2="&#xef;" k="-2" />
-<hkern u1="R" u2="&#xee;" k="-2" />
-<hkern u1="R" u2="&#xdf;" k="43" />
-<hkern u1="R" u2="&#x7d;" k="10" />
-<hkern u1="R" u2="x" k="29" />
-<hkern u1="R" u2="v" k="33" />
-<hkern u1="R" u2="q" k="63" />
-<hkern u1="R" u2="m" k="55" />
-<hkern u1="R" u2="b" k="37" />
-<hkern u1="R" u2="&#x3a;" k="12" />
-<hkern u1="R" u2="&#x2e;" k="10" />
-<hkern u1="R" u2="&#x2c;" k="10" />
-<hkern u1="S" u2="&#xf0;" k="12" />
-<hkern u1="S" u2="&#xef;" k="-16" />
-<hkern u1="S" u2="&#xdf;" k="25" />
-<hkern u1="S" u2="x" k="41" />
-<hkern u1="S" u2="v" k="39" />
-<hkern u1="S" u2="q" k="10" />
-<hkern u1="S" u2="m" k="25" />
-<hkern u1="S" u2="b" k="25" />
-<hkern u1="S" u2="&#x2a;" k="10" />
-<hkern u1="T" u2="&#xfe;" k="100" />
-<hkern u1="T" u2="&#xf6;" k="119" />
-<hkern u1="T" u2="&#xf5;" k="133" />
-<hkern u1="T" u2="&#xf0;" k="68" />
-<hkern u1="T" u2="&#xef;" k="-115" />
-<hkern u1="T" u2="&#xee;" k="-80" />
-<hkern u1="T" u2="&#xed;" k="-12" />
-<hkern u1="T" u2="&#xec;" k="-14" />
-<hkern u1="T" u2="&#xeb;" k="117" />
-<hkern u1="T" u2="&#xea;" k="143" />
-<hkern u1="T" u2="&#xe4;" k="90" />
-<hkern u1="T" u2="&#xe3;" k="102" />
-<hkern u1="T" u2="&#xe2;" k="109" />
-<hkern u1="T" u2="&#xdf;" k="59" />
-<hkern u1="T" u2="x" k="72" />
-<hkern u1="T" u2="v" k="68" />
-<hkern u1="T" u2="q" k="156" />
-<hkern u1="T" u2="m" k="121" />
-<hkern u1="T" u2="b" k="23" />
-<hkern u1="T" u2="V" k="-59" />
-<hkern u1="T" u2="Q" k="14" />
-<hkern u1="T" u2="M" k="25" />
-<hkern u1="T" u2="&#x40;" k="31" />
-<hkern u1="T" u2="&#x3b;" k="47" />
-<hkern u1="T" u2="&#x3a;" k="66" />
-<hkern u1="T" u2="&#x2f;" k="49" />
-<hkern u1="T" u2="&#x2e;" k="55" />
-<hkern u1="T" u2="&#x2c;" k="57" />
-<hkern u1="U" u2="&#xf0;" k="49" />
-<hkern u1="U" u2="&#xef;" k="4" />
-<hkern u1="U" u2="&#xee;" k="31" />
-<hkern u1="U" u2="&#xdf;" k="43" />
-<hkern u1="U" u2="x" k="55" />
-<hkern u1="U" u2="v" k="35" />
-<hkern u1="U" u2="q" k="55" />
-<hkern u1="U" u2="m" k="43" />
-<hkern u1="U" u2="b" k="45" />
-<hkern u1="U" u2="X" k="6" />
-<hkern u1="U" u2="&#x3b;" k="14" />
-<hkern u1="U" u2="&#x3a;" k="20" />
-<hkern u1="U" u2="&#x2f;" k="25" />
-<hkern u1="U" u2="&#x2e;" k="35" />
-<hkern u1="U" u2="&#x2c;" k="37" />
-<hkern u1="U" u2="&#x21;" k="14" />
-<hkern u1="V" g2="uniFB02" k="68" />
-<hkern u1="V" g2="uniFB01" k="68" />
-<hkern u1="V" u2="&#x203a;" k="29" />
-<hkern u1="V" u2="&#x2039;" k="72" />
-<hkern u1="V" u2="&#x201e;" k="78" />
-<hkern u1="V" u2="&#x201a;" k="78" />
-<hkern u1="V" u2="&#x2014;" k="49" />
-<hkern u1="V" u2="&#x2013;" k="49" />
-<hkern u1="V" u2="&#x178;" k="-37" />
-<hkern u1="V" u2="&#x153;" k="178" />
-<hkern u1="V" u2="&#x152;" k="10" />
-<hkern u1="V" u2="&#xff;" k="57" />
-<hkern u1="V" u2="&#xfe;" k="43" />
-<hkern u1="V" u2="&#xfd;" k="57" />
-<hkern u1="V" u2="&#xfc;" k="111" />
-<hkern u1="V" u2="&#xfb;" k="111" />
-<hkern u1="V" u2="&#xfa;" k="111" />
-<hkern u1="V" u2="&#xf9;" k="111" />
-<hkern u1="V" u2="&#xf8;" k="178" />
-<hkern u1="V" u2="&#xf6;" k="100" />
-<hkern u1="V" u2="&#xf5;" k="139" />
-<hkern u1="V" u2="&#xf4;" k="178" />
-<hkern u1="V" u2="&#xf3;" k="178" />
-<hkern u1="V" u2="&#xf2;" k="178" />
-<hkern u1="V" u2="&#xf1;" k="143" />
-<hkern u1="V" u2="&#xf0;" k="68" />
-<hkern u1="V" u2="&#xef;" k="-109" />
-<hkern u1="V" u2="&#xee;" k="-29" />
-<hkern u1="V" u2="&#xed;" k="25" />
-<hkern u1="V" u2="&#xec;" k="-4" />
-<hkern u1="V" u2="&#xeb;" k="98" />
-<hkern u1="V" u2="&#xea;" k="176" />
-<hkern u1="V" u2="&#xe9;" k="176" />
-<hkern u1="V" u2="&#xe8;" k="176" />
-<hkern u1="V" u2="&#xe7;" k="180" />
-<hkern u1="V" u2="&#xe6;" k="184" />
-<hkern u1="V" u2="&#xe5;" k="184" />
-<hkern u1="V" u2="&#xe4;" k="92" />
-<hkern u1="V" u2="&#xe3;" k="127" />
-<hkern u1="V" u2="&#xe2;" k="164" />
-<hkern u1="V" u2="&#xe1;" k="184" />
-<hkern u1="V" u2="&#xe0;" k="184" />
-<hkern u1="V" u2="&#xdf;" k="57" />
-<hkern u1="V" u2="&#xdd;" k="-37" />
-<hkern u1="V" u2="&#xd8;" k="10" />
-<hkern u1="V" u2="&#xd6;" k="10" />
-<hkern u1="V" u2="&#xd5;" k="10" />
-<hkern u1="V" u2="&#xd4;" k="10" />
-<hkern u1="V" u2="&#xd3;" k="10" />
-<hkern u1="V" u2="&#xd2;" k="10" />
-<hkern u1="V" u2="&#xc7;" k="10" />
-<hkern u1="V" u2="&#xc6;" k="162" />
-<hkern u1="V" u2="&#xc5;" k="102" />
-<hkern u1="V" u2="&#xc4;" k="102" />
-<hkern u1="V" u2="&#xc3;" k="102" />
-<hkern u1="V" u2="&#xc2;" k="102" />
-<hkern u1="V" u2="&#xc1;" k="102" />
-<hkern u1="V" u2="&#xc0;" k="102" />
-<hkern u1="V" u2="&#xbb;" k="29" />
-<hkern u1="V" u2="&#xab;" k="72" />
-<hkern u1="V" u2="&#x7d;" k="-27" />
-<hkern u1="V" u2="z" k="68" />
-<hkern u1="V" u2="y" k="57" />
-<hkern u1="V" u2="x" k="72" />
-<hkern u1="V" u2="w" k="68" />
-<hkern u1="V" u2="v" k="53" />
-<hkern u1="V" u2="u" k="111" />
-<hkern u1="V" u2="t" k="68" />
-<hkern u1="V" u2="s" k="178" />
-<hkern u1="V" u2="r" k="143" />
-<hkern u1="V" u2="q" k="172" />
-<hkern u1="V" u2="p" k="143" />
-<hkern u1="V" u2="o" k="178" />
-<hkern u1="V" u2="n" k="143" />
-<hkern u1="V" u2="m" k="143" />
-<hkern u1="V" u2="l" k="20" />
-<hkern u1="V" u2="k" k="20" />
-<hkern u1="V" u2="j" k="25" />
-<hkern u1="V" u2="i" k="25" />
-<hkern u1="V" u2="h" k="20" />
-<hkern u1="V" u2="g" k="227" />
-<hkern u1="V" u2="f" k="68" />
-<hkern u1="V" u2="e" k="176" />
-<hkern u1="V" u2="d" k="174" />
-<hkern u1="V" u2="c" k="180" />
-<hkern u1="V" u2="b" k="20" />
-<hkern u1="V" u2="a" k="184" />
-<hkern u1="V" u2="]" k="-33" />
-<hkern u1="V" u2="\" k="-35" />
-<hkern u1="V" u2="Y" k="-37" />
-<hkern u1="V" u2="T" k="-59" />
-<hkern u1="V" u2="Q" k="10" />
-<hkern u1="V" u2="O" k="10" />
-<hkern u1="V" u2="M" k="27" />
-<hkern u1="V" u2="J" k="88" />
-<hkern u1="V" u2="G" k="10" />
-<hkern u1="V" u2="C" k="10" />
-<hkern u1="V" u2="A" k="102" />
-<hkern u1="V" u2="&#x40;" k="29" />
-<hkern u1="V" u2="&#x3b;" k="41" />
-<hkern u1="V" u2="&#x3a;" k="61" />
-<hkern u1="V" u2="&#x2f;" k="61" />
-<hkern u1="V" u2="&#x2e;" k="76" />
-<hkern u1="V" u2="&#x2d;" k="49" />
-<hkern u1="V" u2="&#x2c;" k="78" />
-<hkern u1="W" u2="&#xf0;" k="76" />
-<hkern u1="W" u2="&#xef;" k="-59" />
-<hkern u1="W" u2="&#xee;" k="-2" />
-<hkern u1="W" u2="&#xec;" k="12" />
-<hkern u1="W" u2="&#xdf;" k="57" />
-<hkern u1="W" u2="&#xde;" k="6" />
-<hkern u1="W" u2="x" k="72" />
-<hkern u1="W" u2="v" k="55" />
-<hkern u1="W" u2="q" k="115" />
-<hkern u1="W" u2="m" k="98" />
-<hkern u1="W" u2="b" k="39" />
-<hkern u1="W" u2="Q" k="10" />
-<hkern u1="W" u2="P" k="6" />
-<hkern u1="W" u2="M" k="18" />
-<hkern u1="W" u2="F" k="6" />
-<hkern u1="W" u2="B" k="6" />
-<hkern u1="W" u2="&#x40;" k="20" />
-<hkern u1="W" u2="&#x3b;" k="37" />
-<hkern u1="W" u2="&#x3a;" k="45" />
-<hkern u1="W" u2="&#x2f;" k="51" />
-<hkern u1="W" u2="&#x2e;" k="66" />
-<hkern u1="W" u2="&#x2c;" k="68" />
-<hkern u1="X" g2="uniFB02" k="68" />
-<hkern u1="X" g2="uniFB01" k="68" />
-<hkern u1="X" u2="&#x2039;" k="18" />
-<hkern u1="X" u2="&#x2014;" k="43" />
-<hkern u1="X" u2="&#x2013;" k="43" />
-<hkern u1="X" u2="&#x178;" k="-8" />
-<hkern u1="X" u2="&#x153;" k="59" />
-<hkern u1="X" u2="&#x152;" k="20" />
-<hkern u1="X" u2="&#xff;" k="66" />
-<hkern u1="X" u2="&#xfe;" k="39" />
-<hkern u1="X" u2="&#xfd;" k="66" />
-<hkern u1="X" u2="&#xfc;" k="57" />
-<hkern u1="X" u2="&#xfb;" k="57" />
-<hkern u1="X" u2="&#xfa;" k="57" />
-<hkern u1="X" u2="&#xf9;" k="57" />
-<hkern u1="X" u2="&#xf8;" k="59" />
-<hkern u1="X" u2="&#xf6;" k="59" />
-<hkern u1="X" u2="&#xf5;" k="59" />
-<hkern u1="X" u2="&#xf4;" k="59" />
-<hkern u1="X" u2="&#xf3;" k="59" />
-<hkern u1="X" u2="&#xf2;" k="59" />
-<hkern u1="X" u2="&#xf1;" k="41" />
-<hkern u1="X" u2="&#xf0;" k="68" />
-<hkern u1="X" u2="&#xef;" k="-27" />
-<hkern u1="X" u2="&#xee;" k="33" />
-<hkern u1="X" u2="&#xed;" k="33" />
-<hkern u1="X" u2="&#xec;" k="33" />
-<hkern u1="X" u2="&#xeb;" k="57" />
-<hkern u1="X" u2="&#xea;" k="57" />
-<hkern u1="X" u2="&#xe9;" k="57" />
-<hkern u1="X" u2="&#xe8;" k="57" />
-<hkern u1="X" u2="&#xe7;" k="57" />
-<hkern u1="X" u2="&#xe6;" k="31" />
-<hkern u1="X" u2="&#xe5;" k="31" />
-<hkern u1="X" u2="&#xe4;" k="31" />
-<hkern u1="X" u2="&#xe3;" k="31" />
-<hkern u1="X" u2="&#xe2;" k="31" />
-<hkern u1="X" u2="&#xe1;" k="31" />
-<hkern u1="X" u2="&#xe0;" k="31" />
-<hkern u1="X" u2="&#xdf;" k="39" />
-<hkern u1="X" u2="&#xdd;" k="-8" />
-<hkern u1="X" u2="&#xdc;" k="6" />
-<hkern u1="X" u2="&#xdb;" k="6" />
-<hkern u1="X" u2="&#xda;" k="6" />
-<hkern u1="X" u2="&#xd9;" k="6" />
-<hkern u1="X" u2="&#xd8;" k="20" />
-<hkern u1="X" u2="&#xd6;" k="20" />
-<hkern u1="X" u2="&#xd5;" k="20" />
-<hkern u1="X" u2="&#xd4;" k="20" />
-<hkern u1="X" u2="&#xd3;" k="20" />
-<hkern u1="X" u2="&#xd2;" k="20" />
-<hkern u1="X" u2="&#xc7;" k="18" />
-<hkern u1="X" u2="&#xab;" k="18" />
-<hkern u1="X" u2="z" k="23" />
-<hkern u1="X" u2="y" k="66" />
-<hkern u1="X" u2="x" k="18" />
-<hkern u1="X" u2="w" k="68" />
-<hkern u1="X" u2="v" k="68" />
-<hkern u1="X" u2="u" k="57" />
-<hkern u1="X" u2="t" k="68" />
-<hkern u1="X" u2="s" k="29" />
-<hkern u1="X" u2="r" k="41" />
-<hkern u1="X" u2="q" k="57" />
-<hkern u1="X" u2="p" k="39" />
-<hkern u1="X" u2="o" k="59" />
-<hkern u1="X" u2="n" k="41" />
-<hkern u1="X" u2="m" k="41" />
-<hkern u1="X" u2="l" k="33" />
-<hkern u1="X" u2="k" k="33" />
-<hkern u1="X" u2="j" k="33" />
-<hkern u1="X" u2="i" k="33" />
-<hkern u1="X" u2="h" k="33" />
-<hkern u1="X" u2="g" k="12" />
-<hkern u1="X" u2="f" k="68" />
-<hkern u1="X" u2="e" k="57" />
-<hkern u1="X" u2="d" k="57" />
-<hkern u1="X" u2="c" k="57" />
-<hkern u1="X" u2="b" k="33" />
-<hkern u1="X" u2="a" k="31" />
-<hkern u1="X" u2="Y" k="-8" />
-<hkern u1="X" u2="U" k="6" />
-<hkern u1="X" u2="Q" k="20" />
-<hkern u1="X" u2="O" k="20" />
-<hkern u1="X" u2="J" k="-14" />
-<hkern u1="X" u2="G" k="20" />
-<hkern u1="X" u2="C" k="18" />
-<hkern u1="X" u2="&#x2d;" k="43" />
-<hkern u1="X" u2="&#x2a;" k="10" />
-<hkern u1="Y" u2="&#xfe;" k="45" />
-<hkern u1="Y" u2="&#xfc;" k="150" />
-<hkern u1="Y" u2="&#xf6;" k="102" />
-<hkern u1="Y" u2="&#xf5;" k="156" />
-<hkern u1="Y" u2="&#xf4;" k="219" />
-<hkern u1="Y" u2="&#xf2;" k="215" />
-<hkern u1="Y" u2="&#xf0;" k="68" />
-<hkern u1="Y" u2="&#xef;" k="-109" />
-<hkern u1="Y" u2="&#xee;" k="-2" />
-<hkern u1="Y" u2="&#xec;" k="-8" />
-<hkern u1="Y" u2="&#xeb;" k="100" />
-<hkern u1="Y" u2="&#xea;" k="213" />
-<hkern u1="Y" u2="&#xe8;" k="205" />
-<hkern u1="Y" u2="&#xe4;" k="90" />
-<hkern u1="Y" u2="&#xe3;" k="139" />
-<hkern u1="Y" u2="&#xdf;" k="57" />
-<hkern u1="Y" u2="&#x7d;" k="-37" />
-<hkern u1="Y" u2="x" k="74" />
-<hkern u1="Y" u2="v" k="68" />
-<hkern u1="Y" u2="q" k="236" />
-<hkern u1="Y" u2="m" k="162" />
-<hkern u1="Y" u2="b" k="20" />
-<hkern u1="Y" u2="]" k="-41" />
-<hkern u1="Y" u2="\" k="-43" />
-<hkern u1="Y" u2="X" k="-10" />
-<hkern u1="Y" u2="V" k="-41" />
-<hkern u1="Y" u2="Q" k="27" />
-<hkern u1="Y" u2="M" k="33" />
-<hkern u1="Y" u2="&#x40;" k="47" />
-<hkern u1="Y" u2="&#x3b;" k="53" />
-<hkern u1="Y" u2="&#x3a;" k="72" />
-<hkern u1="Y" u2="&#x2f;" k="68" />
-<hkern u1="Y" u2="&#x2e;" k="68" />
-<hkern u1="Y" u2="&#x2c;" k="70" />
-<hkern u1="Y" u2="&#x29;" k="-16" />
-<hkern u1="Z" u2="&#xf0;" k="53" />
-<hkern u1="Z" u2="&#xef;" k="-53" />
-<hkern u1="Z" u2="&#xee;" k="6" />
-<hkern u1="Z" u2="&#xdf;" k="43" />
-<hkern u1="Z" u2="x" k="31" />
-<hkern u1="Z" u2="v" k="66" />
-<hkern u1="Z" u2="q" k="43" />
-<hkern u1="Z" u2="m" k="43" />
-<hkern u1="Z" u2="b" k="31" />
-<hkern u1="Z" u2="Q" k="12" />
-<hkern u1="Z" u2="&#x3a;" k="10" />
-<hkern u1="[" g2="uniFB02" k="29" />
-<hkern u1="[" g2="uniFB01" k="29" />
-<hkern u1="[" u2="&#x178;" k="-41" />
-<hkern u1="[" u2="&#x153;" k="63" />
-<hkern u1="[" u2="&#x152;" k="29" />
-<hkern u1="[" u2="&#xff;" k="31" />
-<hkern u1="[" u2="&#xfe;" k="45" />
-<hkern u1="[" u2="&#xfd;" k="31" />
-<hkern u1="[" u2="&#xfc;" k="47" />
-<hkern u1="[" u2="&#xfb;" k="47" />
-<hkern u1="[" u2="&#xfa;" k="47" />
-<hkern u1="[" u2="&#xf9;" k="47" />
-<hkern u1="[" u2="&#xf8;" k="63" />
-<hkern u1="[" u2="&#xf6;" k="63" />
-<hkern u1="[" u2="&#xf5;" k="63" />
-<hkern u1="[" u2="&#xf4;" k="63" />
-<hkern u1="[" u2="&#xf3;" k="63" />
-<hkern u1="[" u2="&#xf2;" k="63" />
-<hkern u1="[" u2="&#xf1;" k="49" />
-<hkern u1="[" u2="&#xf0;" k="33" />
-<hkern u1="[" u2="&#xef;" k="-113" />
-<hkern u1="[" u2="&#xee;" k="-39" />
-<hkern u1="[" u2="&#xec;" k="-12" />
-<hkern u1="[" u2="&#xeb;" k="63" />
-<hkern u1="[" u2="&#xea;" k="63" />
-<hkern u1="[" u2="&#xe9;" k="63" />
-<hkern u1="[" u2="&#xe8;" k="63" />
-<hkern u1="[" u2="&#xe7;" k="63" />
-<hkern u1="[" u2="&#xe6;" k="61" />
-<hkern u1="[" u2="&#xe5;" k="61" />
-<hkern u1="[" u2="&#xe4;" k="61" />
-<hkern u1="[" u2="&#xe3;" k="61" />
-<hkern u1="[" u2="&#xe2;" k="61" />
-<hkern u1="[" u2="&#xe1;" k="61" />
-<hkern u1="[" u2="&#xe0;" k="61" />
-<hkern u1="[" u2="&#xdf;" k="27" />
-<hkern u1="[" u2="&#xdd;" k="-41" />
-<hkern u1="[" u2="&#xd8;" k="29" />
-<hkern u1="[" u2="&#xd6;" k="29" />
-<hkern u1="[" u2="&#xd5;" k="29" />
-<hkern u1="[" u2="&#xd4;" k="29" />
-<hkern u1="[" u2="&#xd3;" k="29" />
-<hkern u1="[" u2="&#xd2;" k="29" />
-<hkern u1="[" u2="&#xc7;" k="29" />
-<hkern u1="[" u2="&#xc5;" k="12" />
-<hkern u1="[" u2="&#xc4;" k="12" />
-<hkern u1="[" u2="&#xc3;" k="12" />
-<hkern u1="[" u2="&#xc2;" k="12" />
-<hkern u1="[" u2="&#xc1;" k="12" />
-<hkern u1="[" u2="&#xc0;" k="12" />
-<hkern u1="[" u2="z" k="37" />
-<hkern u1="[" u2="y" k="31" />
-<hkern u1="[" u2="x" k="33" />
-<hkern u1="[" u2="w" k="31" />
-<hkern u1="[" u2="v" k="25" />
-<hkern u1="[" u2="u" k="47" />
-<hkern u1="[" u2="t" k="53" />
-<hkern u1="[" u2="s" k="55" />
-<hkern u1="[" u2="r" k="49" />
-<hkern u1="[" u2="q" k="63" />
-<hkern u1="[" u2="p" k="45" />
-<hkern u1="[" u2="o" k="63" />
-<hkern u1="[" u2="n" k="49" />
-<hkern u1="[" u2="m" k="49" />
-<hkern u1="[" u2="j" k="-276" />
-<hkern u1="[" u2="g" k="33" />
-<hkern u1="[" u2="f" k="29" />
-<hkern u1="[" u2="e" k="63" />
-<hkern u1="[" u2="d" k="59" />
-<hkern u1="[" u2="c" k="63" />
-<hkern u1="[" u2="a" k="61" />
-<hkern u1="[" u2="Y" k="-41" />
-<hkern u1="[" u2="V" k="-33" />
-<hkern u1="[" u2="Q" k="29" />
-<hkern u1="[" u2="O" k="29" />
-<hkern u1="[" u2="M" k="14" />
-<hkern u1="[" u2="J" k="10" />
-<hkern u1="[" u2="G" k="29" />
-<hkern u1="[" u2="C" k="29" />
-<hkern u1="[" u2="A" k="12" />
-<hkern u1="[" u2="&#x38;" k="12" />
-<hkern u1="[" u2="&#x36;" k="41" />
-<hkern u1="[" u2="&#x34;" k="47" />
-<hkern u1="[" u2="&#x30;" k="27" />
-<hkern u1="\" u2="&#x178;" k="66" />
-<hkern u1="\" u2="&#x152;" k="14" />
-<hkern u1="\" u2="&#xff;" k="20" />
-<hkern u1="\" u2="&#xfd;" k="20" />
-<hkern u1="\" u2="&#xfc;" k="10" />
-<hkern u1="\" u2="&#xfb;" k="10" />
-<hkern u1="\" u2="&#xfa;" k="10" />
-<hkern u1="\" u2="&#xf9;" k="10" />
-<hkern u1="\" u2="&#xde;" k="12" />
-<hkern u1="\" u2="&#xdd;" k="66" />
-<hkern u1="\" u2="&#xdc;" k="25" />
-<hkern u1="\" u2="&#xdb;" k="25" />
-<hkern u1="\" u2="&#xda;" k="25" />
-<hkern u1="\" u2="&#xd9;" k="25" />
-<hkern u1="\" u2="&#xd8;" k="14" />
-<hkern u1="\" u2="&#xd6;" k="14" />
-<hkern u1="\" u2="&#xd5;" k="14" />
-<hkern u1="\" u2="&#xd4;" k="14" />
-<hkern u1="\" u2="&#xd3;" k="14" />
-<hkern u1="\" u2="&#xd2;" k="14" />
-<hkern u1="\" u2="&#xd1;" k="12" />
-<hkern u1="\" u2="&#xd0;" k="12" />
-<hkern u1="\" u2="&#xcf;" k="12" />
-<hkern u1="\" u2="&#xce;" k="12" />
-<hkern u1="\" u2="&#xcd;" k="12" />
-<hkern u1="\" u2="&#xcc;" k="12" />
-<hkern u1="\" u2="&#xcb;" k="12" />
-<hkern u1="\" u2="&#xca;" k="12" />
-<hkern u1="\" u2="&#xc9;" k="12" />
-<hkern u1="\" u2="&#xc8;" k="12" />
-<hkern u1="\" u2="&#xc7;" k="14" />
-<hkern u1="\" u2="&#xc6;" k="-41" />
-<hkern u1="\" u2="&#xc5;" k="-14" />
-<hkern u1="\" u2="&#xc4;" k="-14" />
-<hkern u1="\" u2="&#xc3;" k="-14" />
-<hkern u1="\" u2="&#xc2;" k="-14" />
-<hkern u1="\" u2="&#xc1;" k="-14" />
-<hkern u1="\" u2="&#xc0;" k="-14" />
-<hkern u1="\" u2="y" k="20" />
-<hkern u1="\" u2="w" k="18" />
-<hkern u1="\" u2="v" k="20" />
-<hkern u1="\" u2="u" k="10" />
-<hkern u1="\" u2="t" k="10" />
-<hkern u1="\" u2="Y" k="66" />
-<hkern u1="\" u2="W" k="51" />
-<hkern u1="\" u2="V" k="61" />
-<hkern u1="\" u2="U" k="25" />
-<hkern u1="\" u2="T" k="49" />
-<hkern u1="\" u2="R" k="12" />
-<hkern u1="\" u2="Q" k="14" />
-<hkern u1="\" u2="P" k="12" />
-<hkern u1="\" u2="O" k="14" />
-<hkern u1="\" u2="N" k="12" />
-<hkern u1="\" u2="L" k="12" />
-<hkern u1="\" u2="K" k="12" />
-<hkern u1="\" u2="J" k="-31" />
-<hkern u1="\" u2="I" k="12" />
-<hkern u1="\" u2="H" k="12" />
-<hkern u1="\" u2="G" k="14" />
-<hkern u1="\" u2="F" k="12" />
-<hkern u1="\" u2="E" k="12" />
-<hkern u1="\" u2="D" k="12" />
-<hkern u1="\" u2="C" k="14" />
-<hkern u1="\" u2="B" k="12" />
-<hkern u1="\" u2="A" k="-14" />
-<hkern u1="\" u2="&#x39;" k="16" />
-<hkern u1="\" u2="&#x31;" k="29" />
-<hkern u1="\" u2="&#x30;" k="16" />
-<hkern u1="\" u2="&#x27;" k="51" />
-<hkern u1="\" u2="&#x22;" k="51" />
-<hkern u1="a" u2="&#x7d;" k="51" />
-<hkern u1="a" u2="]" k="49" />
-<hkern u1="a" u2="\" k="53" />
-<hkern u1="a" u2="X" k="35" />
-<hkern u1="a" u2="V" k="176" />
-<hkern u1="a" u2="Q" k="37" />
-<hkern u1="a" u2="P" k="29" />
-<hkern u1="a" u2="M" k="25" />
-<hkern u1="a" u2="F" k="29" />
-<hkern u1="a" u2="B" k="29" />
-<hkern u1="a" u2="&#x3f;" k="43" />
-<hkern u1="a" u2="&#x2a;" k="51" />
-<hkern u1="a" u2="&#x29;" k="12" />
-<hkern u1="a" u2="&#x21;" k="16" />
-<hkern u1="b" u2="&#x7d;" k="63" />
-<hkern u1="b" u2="x" k="8" />
-<hkern u1="b" u2="]" k="57" />
-<hkern u1="b" u2="\" k="43" />
-<hkern u1="b" u2="X" k="55" />
-<hkern u1="b" u2="V" k="172" />
-<hkern u1="b" u2="Q" k="27" />
-<hkern u1="b" u2="P" k="41" />
-<hkern u1="b" u2="M" k="27" />
-<hkern u1="b" u2="F" k="41" />
-<hkern u1="b" u2="B" k="41" />
-<hkern u1="b" u2="&#x3f;" k="39" />
-<hkern u1="b" u2="&#x2a;" k="57" />
-<hkern u1="b" u2="&#x29;" k="23" />
-<hkern u1="b" u2="&#x21;" k="14" />
-<hkern u1="c" u2="&#x7d;" k="59" />
-<hkern u1="c" u2="]" k="57" />
-<hkern u1="c" u2="\" k="43" />
-<hkern u1="c" u2="X" k="31" />
-<hkern u1="c" u2="V" k="207" />
-<hkern u1="c" u2="Q" k="27" />
-<hkern u1="c" u2="P" k="45" />
-<hkern u1="c" u2="M" k="18" />
-<hkern u1="c" u2="F" k="45" />
-<hkern u1="c" u2="B" k="45" />
-<hkern u1="c" u2="&#x3f;" k="35" />
-<hkern u1="c" u2="&#x2a;" k="39" />
-<hkern u1="c" u2="&#x29;" k="14" />
-<hkern u1="c" u2="&#x21;" k="10" />
-<hkern u1="d" u2="&#xef;" k="-18" />
-<hkern u1="d" u2="X" k="33" />
-<hkern u1="d" u2="V" k="20" />
-<hkern u1="d" u2="Q" k="29" />
-<hkern u1="d" u2="P" k="27" />
-<hkern u1="d" u2="M" k="23" />
-<hkern u1="d" u2="F" k="27" />
-<hkern u1="d" u2="B" k="27" />
-<hkern u1="d" u2="&#x21;" k="14" />
-<hkern u1="e" u2="&#x7d;" k="66" />
-<hkern u1="e" u2="]" k="59" />
-<hkern u1="e" u2="\" k="45" />
-<hkern u1="e" u2="X" k="47" />
-<hkern u1="e" u2="V" k="199" />
-<hkern u1="e" u2="Q" k="23" />
-<hkern u1="e" u2="P" k="45" />
-<hkern u1="e" u2="M" k="25" />
-<hkern u1="e" u2="F" k="45" />
-<hkern u1="e" u2="B" k="45" />
-<hkern u1="e" u2="&#x3f;" k="43" />
-<hkern u1="e" u2="&#x2a;" k="51" />
-<hkern u1="e" u2="&#x29;" k="18" />
-<hkern u1="e" u2="&#x21;" k="18" />
-<hkern u1="f" u2="&#xef;" k="-233" />
-<hkern u1="f" u2="&#xee;" k="-143" />
-<hkern u1="f" u2="&#xed;" k="-80" />
-<hkern u1="f" u2="&#xec;" k="-127" />
-<hkern u1="f" u2="&#x7d;" k="-115" />
-<hkern u1="f" u2="v" k="-6" />
-<hkern u1="f" u2="]" k="-117" />
-<hkern u1="f" u2="\" k="-115" />
-<hkern u1="f" u2="X" k="-78" />
-<hkern u1="f" u2="V" k="-154" />
-<hkern u1="f" u2="P" k="6" />
-<hkern u1="f" u2="M" k="31" />
-<hkern u1="f" u2="F" k="6" />
-<hkern u1="f" u2="B" k="6" />
-<hkern u1="f" u2="&#x3f;" k="-78" />
-<hkern u1="f" u2="&#x2f;" k="14" />
-<hkern u1="f" u2="&#x2e;" k="14" />
-<hkern u1="f" u2="&#x2c;" k="16" />
-<hkern u1="f" u2="&#x2a;" k="-68" />
-<hkern u1="f" u2="&#x29;" k="-92" />
-<hkern u1="g" u2="&#x7d;" k="37" />
-<hkern u1="g" u2="]" k="27" />
-<hkern u1="g" u2="\" k="18" />
-<hkern u1="g" u2="X" k="68" />
-<hkern u1="g" u2="V" k="68" />
-<hkern u1="g" u2="Q" k="10" />
-<hkern u1="g" u2="P" k="43" />
-<hkern u1="g" u2="M" k="41" />
-<hkern u1="g" u2="F" k="43" />
-<hkern u1="g" u2="B" k="43" />
-<hkern u1="g" u2="&#x3f;" k="29" />
-<hkern u1="g" u2="&#x2f;" k="12" />
-<hkern u1="g" u2="&#x2e;" k="10" />
-<hkern u1="g" u2="&#x2c;" k="10" />
-<hkern u1="g" u2="&#x29;" k="29" />
-<hkern u1="g" u2="&#x21;" k="16" />
-<hkern u1="h" u2="&#x7d;" k="47" />
-<hkern u1="h" u2="v" k="10" />
-<hkern u1="h" u2="]" k="45" />
-<hkern u1="h" u2="\" k="51" />
-<hkern u1="h" u2="X" k="33" />
-<hkern u1="h" u2="V" k="201" />
-<hkern u1="h" u2="Q" k="41" />
-<hkern u1="h" u2="P" k="33" />
-<hkern u1="h" u2="M" k="25" />
-<hkern u1="h" u2="F" k="33" />
-<hkern u1="h" u2="B" k="33" />
-<hkern u1="h" u2="&#x3f;" k="39" />
-<hkern u1="h" u2="&#x2a;" k="57" />
-<hkern u1="h" u2="&#x21;" k="14" />
-<hkern u1="i" u2="&#xef;" k="-35" />
-<hkern u1="i" u2="&#x7d;" k="10" />
-<hkern u1="i" u2="\" k="10" />
-<hkern u1="i" u2="X" k="33" />
-<hkern u1="i" u2="V" k="27" />
-<hkern u1="i" u2="Q" k="33" />
-<hkern u1="i" u2="P" k="27" />
-<hkern u1="i" u2="M" k="23" />
-<hkern u1="i" u2="F" k="27" />
-<hkern u1="i" u2="B" k="27" />
-<hkern u1="i" u2="&#x21;" k="14" />
-<hkern u1="j" u2="&#xef;" k="-35" />
-<hkern u1="j" u2="&#x7d;" k="10" />
-<hkern u1="j" u2="\" k="10" />
-<hkern u1="j" u2="X" k="33" />
-<hkern u1="j" u2="V" k="27" />
-<hkern u1="j" u2="Q" k="33" />
-<hkern u1="j" u2="P" k="27" />
-<hkern u1="j" u2="M" k="23" />
-<hkern u1="j" u2="F" k="27" />
-<hkern u1="j" u2="B" k="27" />
-<hkern u1="j" u2="&#x21;" k="14" />
-<hkern u1="k" u2="&#xf0;" k="16" />
-<hkern u1="k" u2="&#x7d;" k="31" />
-<hkern u1="k" u2="q" k="14" />
-<hkern u1="k" u2="]" k="31" />
-<hkern u1="k" u2="\" k="33" />
-<hkern u1="k" u2="X" k="12" />
-<hkern u1="k" u2="V" k="80" />
-<hkern u1="k" u2="Q" k="37" />
-<hkern u1="k" u2="P" k="45" />
-<hkern u1="k" u2="M" k="16" />
-<hkern u1="k" u2="F" k="45" />
-<hkern u1="k" u2="B" k="45" />
-<hkern u1="k" u2="&#x40;" k="10" />
-<hkern u1="k" u2="&#x3f;" k="31" />
-<hkern u1="k" u2="&#x3a;" k="12" />
-<hkern u1="k" u2="&#x2a;" k="18" />
-<hkern u1="k" u2="&#x21;" k="14" />
-<hkern u1="l" u2="&#xef;" k="-18" />
-<hkern u1="l" u2="X" k="33" />
-<hkern u1="l" u2="V" k="20" />
-<hkern u1="l" u2="Q" k="29" />
-<hkern u1="l" u2="P" k="27" />
-<hkern u1="l" u2="M" k="23" />
-<hkern u1="l" u2="F" k="27" />
-<hkern u1="l" u2="B" k="27" />
-<hkern u1="l" u2="&#x21;" k="14" />
-<hkern u1="m" g2="uniFB02" k="6" />
-<hkern u1="m" g2="uniFB01" k="6" />
-<hkern u1="m" u2="&#x201d;" k="53" />
-<hkern u1="m" u2="&#x2019;" k="53" />
-<hkern u1="m" u2="&#x178;" k="248" />
-<hkern u1="m" u2="&#x152;" k="41" />
-<hkern u1="m" u2="&#xff;" k="10" />
-<hkern u1="m" u2="&#xfd;" k="10" />
-<hkern u1="m" u2="&#xdd;" k="248" />
-<hkern u1="m" u2="&#xdc;" k="53" />
-<hkern u1="m" u2="&#xdb;" k="53" />
-<hkern u1="m" u2="&#xda;" k="53" />
-<hkern u1="m" u2="&#xd9;" k="53" />
-<hkern u1="m" u2="&#xd8;" k="41" />
-<hkern u1="m" u2="&#xd6;" k="41" />
-<hkern u1="m" u2="&#xd5;" k="41" />
-<hkern u1="m" u2="&#xd4;" k="41" />
-<hkern u1="m" u2="&#xd3;" k="41" />
-<hkern u1="m" u2="&#xd2;" k="41" />
-<hkern u1="m" u2="&#xd1;" k="31" />
-<hkern u1="m" u2="&#xd0;" k="33" />
-<hkern u1="m" u2="&#xcf;" k="33" />
-<hkern u1="m" u2="&#xce;" k="33" />
-<hkern u1="m" u2="&#xcd;" k="33" />
-<hkern u1="m" u2="&#xcc;" k="33" />
-<hkern u1="m" u2="&#xcb;" k="33" />
-<hkern u1="m" u2="&#xca;" k="33" />
-<hkern u1="m" u2="&#xc9;" k="33" />
-<hkern u1="m" u2="&#xc8;" k="33" />
-<hkern u1="m" u2="&#xc7;" k="41" />
-<hkern u1="m" u2="&#x7d;" k="51" />
-<hkern u1="m" u2="y" k="10" />
-<hkern u1="m" u2="w" k="10" />
-<hkern u1="m" u2="v" k="10" />
-<hkern u1="m" u2="t" k="6" />
-<hkern u1="m" u2="f" k="6" />
-<hkern u1="m" u2="]" k="49" />
-<hkern u1="m" u2="\" k="55" />
-<hkern u1="m" u2="Z" k="27" />
-<hkern u1="m" u2="Y" k="248" />
-<hkern u1="m" u2="X" k="33" />
-<hkern u1="m" u2="W" k="121" />
-<hkern u1="m" u2="V" k="199" />
-<hkern u1="m" u2="U" k="53" />
-<hkern u1="m" u2="T" k="174" />
-<hkern u1="m" u2="S" k="39" />
-<hkern u1="m" u2="R" k="33" />
-<hkern u1="m" u2="Q" k="41" />
-<hkern u1="m" u2="P" k="33" />
-<hkern u1="m" u2="O" k="41" />
-<hkern u1="m" u2="N" k="31" />
-<hkern u1="m" u2="M" k="27" />
-<hkern u1="m" u2="L" k="33" />
-<hkern u1="m" u2="K" k="33" />
-<hkern u1="m" u2="I" k="33" />
-<hkern u1="m" u2="H" k="33" />
-<hkern u1="m" u2="G" k="41" />
-<hkern u1="m" u2="F" k="33" />
-<hkern u1="m" u2="E" k="33" />
-<hkern u1="m" u2="D" k="33" />
-<hkern u1="m" u2="C" k="41" />
-<hkern u1="m" u2="B" k="33" />
-<hkern u1="m" u2="&#x3f;" k="43" />
-<hkern u1="m" u2="&#x2a;" k="57" />
-<hkern u1="m" u2="&#x29;" k="10" />
-<hkern u1="m" u2="&#x27;" k="94" />
-<hkern u1="m" u2="&#x22;" k="94" />
-<hkern u1="m" u2="&#x21;" k="16" />
-<hkern u1="n" u2="&#x7d;" k="51" />
-<hkern u1="n" u2="v" k="10" />
-<hkern u1="n" u2="]" k="49" />
-<hkern u1="n" u2="\" k="55" />
-<hkern u1="n" u2="X" k="33" />
-<hkern u1="n" u2="V" k="201" />
-<hkern u1="n" u2="Q" k="41" />
-<hkern u1="n" u2="P" k="33" />
-<hkern u1="n" u2="M" k="27" />
-<hkern u1="n" u2="F" k="33" />
-<hkern u1="n" u2="B" k="33" />
-<hkern u1="n" u2="&#x3f;" k="43" />
-<hkern u1="n" u2="&#x2a;" k="59" />
-<hkern u1="n" u2="&#x29;" k="10" />
-<hkern u1="n" u2="&#x21;" k="16" />
-<hkern u1="o" u2="&#x7d;" k="70" />
-<hkern u1="o" u2="x" k="10" />
-<hkern u1="o" u2="]" k="63" />
-<hkern u1="o" u2="\" k="51" />
-<hkern u1="o" u2="X" k="57" />
-<hkern u1="o" u2="V" k="176" />
-<hkern u1="o" u2="Q" k="27" />
-<hkern u1="o" u2="P" k="43" />
-<hkern u1="o" u2="M" k="27" />
-<hkern u1="o" u2="F" k="43" />
-<hkern u1="o" u2="B" k="43" />
-<hkern u1="o" u2="&#x3f;" k="45" />
-<hkern u1="o" u2="&#x2a;" k="61" />
-<hkern u1="o" u2="&#x29;" k="31" />
-<hkern u1="o" u2="&#x21;" k="18" />
-<hkern u1="p" u2="&#x201d;" k="53" />
-<hkern u1="p" u2="&#x2019;" k="53" />
-<hkern u1="p" u2="&#x178;" k="231" />
-<hkern u1="p" u2="&#x152;" k="27" />
-<hkern u1="p" u2="&#xdd;" k="231" />
-<hkern u1="p" u2="&#xdc;" k="53" />
-<hkern u1="p" u2="&#xdb;" k="53" />
-<hkern u1="p" u2="&#xda;" k="53" />
-<hkern u1="p" u2="&#xd9;" k="53" />
-<hkern u1="p" u2="&#xd8;" k="27" />
-<hkern u1="p" u2="&#xd6;" k="27" />
-<hkern u1="p" u2="&#xd5;" k="27" />
-<hkern u1="p" u2="&#xd4;" k="27" />
-<hkern u1="p" u2="&#xd3;" k="27" />
-<hkern u1="p" u2="&#xd2;" k="27" />
-<hkern u1="p" u2="&#xd1;" k="41" />
-<hkern u1="p" u2="&#xd0;" k="41" />
-<hkern u1="p" u2="&#xcf;" k="41" />
-<hkern u1="p" u2="&#xce;" k="41" />
-<hkern u1="p" u2="&#xcd;" k="41" />
-<hkern u1="p" u2="&#xcc;" k="41" />
-<hkern u1="p" u2="&#xcb;" k="41" />
-<hkern u1="p" u2="&#xca;" k="41" />
-<hkern u1="p" u2="&#xc9;" k="41" />
-<hkern u1="p" u2="&#xc8;" k="41" />
-<hkern u1="p" u2="&#xc7;" k="27" />
-<hkern u1="p" u2="&#xc5;" k="16" />
-<hkern u1="p" u2="&#xc4;" k="16" />
-<hkern u1="p" u2="&#xc3;" k="16" />
-<hkern u1="p" u2="&#xc2;" k="16" />
-<hkern u1="p" u2="&#xc1;" k="16" />
-<hkern u1="p" u2="&#xc0;" k="16" />
-<hkern u1="p" u2="&#x7d;" k="70" />
-<hkern u1="p" u2="x" k="8" />
-<hkern u1="p" u2="]" k="63" />
-<hkern u1="p" u2="\" k="49" />
-<hkern u1="p" u2="Z" k="41" />
-<hkern u1="p" u2="Y" k="231" />
-<hkern u1="p" u2="X" k="57" />
-<hkern u1="p" u2="W" k="115" />
-<hkern u1="p" u2="V" k="172" />
-<hkern u1="p" u2="U" k="53" />
-<hkern u1="p" u2="T" k="158" />
-<hkern u1="p" u2="S" k="41" />
-<hkern u1="p" u2="R" k="41" />
-<hkern u1="p" u2="Q" k="27" />
-<hkern u1="p" u2="P" k="41" />
-<hkern u1="p" u2="O" k="27" />
-<hkern u1="p" u2="N" k="41" />
-<hkern u1="p" u2="M" k="27" />
-<hkern u1="p" u2="L" k="41" />
-<hkern u1="p" u2="K" k="41" />
-<hkern u1="p" u2="I" k="41" />
-<hkern u1="p" u2="H" k="41" />
-<hkern u1="p" u2="G" k="27" />
-<hkern u1="p" u2="F" k="41" />
-<hkern u1="p" u2="E" k="41" />
-<hkern u1="p" u2="D" k="41" />
-<hkern u1="p" u2="C" k="27" />
-<hkern u1="p" u2="B" k="41" />
-<hkern u1="p" u2="A" k="16" />
-<hkern u1="p" u2="&#x3f;" k="43" />
-<hkern u1="p" u2="&#x2a;" k="59" />
-<hkern u1="p" u2="&#x29;" k="29" />
-<hkern u1="p" u2="&#x27;" k="92" />
-<hkern u1="p" u2="&#x22;" k="92" />
-<hkern u1="p" u2="&#x21;" k="18" />
-<hkern u1="q" u2="&#x201d;" k="27" />
-<hkern u1="q" u2="&#x2019;" k="27" />
-<hkern u1="q" u2="&#x178;" k="158" />
-<hkern u1="q" u2="&#x152;" k="33" />
-<hkern u1="q" u2="&#xdd;" k="158" />
-<hkern u1="q" u2="&#xdc;" k="43" />
-<hkern u1="q" u2="&#xdb;" k="43" />
-<hkern u1="q" u2="&#xda;" k="43" />
-<hkern u1="q" u2="&#xd9;" k="43" />
-<hkern u1="q" u2="&#xd8;" k="33" />
-<hkern u1="q" u2="&#xd6;" k="33" />
-<hkern u1="q" u2="&#xd5;" k="33" />
-<hkern u1="q" u2="&#xd4;" k="33" />
-<hkern u1="q" u2="&#xd3;" k="33" />
-<hkern u1="q" u2="&#xd2;" k="33" />
-<hkern u1="q" u2="&#xd1;" k="27" />
-<hkern u1="q" u2="&#xd0;" k="27" />
-<hkern u1="q" u2="&#xcf;" k="27" />
-<hkern u1="q" u2="&#xce;" k="27" />
-<hkern u1="q" u2="&#xcd;" k="27" />
-<hkern u1="q" u2="&#xcc;" k="27" />
-<hkern u1="q" u2="&#xcb;" k="27" />
-<hkern u1="q" u2="&#xca;" k="27" />
-<hkern u1="q" u2="&#xc9;" k="27" />
-<hkern u1="q" u2="&#xc8;" k="27" />
-<hkern u1="q" u2="&#xc7;" k="33" />
-<hkern u1="q" u2="&#xc5;" k="10" />
-<hkern u1="q" u2="&#xc4;" k="10" />
-<hkern u1="q" u2="&#xc3;" k="10" />
-<hkern u1="q" u2="&#xc2;" k="10" />
-<hkern u1="q" u2="&#xc1;" k="10" />
-<hkern u1="q" u2="&#xc0;" k="10" />
-<hkern u1="q" u2="&#x7d;" k="45" />
-<hkern u1="q" u2="j" k="-193" />
-<hkern u1="q" u2="]" k="59" />
-<hkern u1="q" u2="\" k="39" />
-<hkern u1="q" u2="Z" k="33" />
-<hkern u1="q" u2="Y" k="158" />
-<hkern u1="q" u2="X" k="39" />
-<hkern u1="q" u2="W" k="98" />
-<hkern u1="q" u2="V" k="143" />
-<hkern u1="q" u2="U" k="43" />
-<hkern u1="q" u2="T" k="121" />
-<hkern u1="q" u2="S" k="43" />
-<hkern u1="q" u2="R" k="27" />
-<hkern u1="q" u2="Q" k="33" />
-<hkern u1="q" u2="P" k="27" />
-<hkern u1="q" u2="O" k="33" />
-<hkern u1="q" u2="N" k="27" />
-<hkern u1="q" u2="M" k="23" />
-<hkern u1="q" u2="L" k="27" />
-<hkern u1="q" u2="K" k="27" />
-<hkern u1="q" u2="I" k="27" />
-<hkern u1="q" u2="H" k="27" />
-<hkern u1="q" u2="G" k="33" />
-<hkern u1="q" u2="F" k="27" />
-<hkern u1="q" u2="E" k="27" />
-<hkern u1="q" u2="D" k="27" />
-<hkern u1="q" u2="C" k="33" />
-<hkern u1="q" u2="B" k="27" />
-<hkern u1="q" u2="A" k="10" />
-<hkern u1="q" u2="&#x3f;" k="39" />
-<hkern u1="q" u2="&#x2a;" k="27" />
-<hkern u1="q" u2="&#x29;" k="12" />
-<hkern u1="q" u2="&#x27;" k="76" />
-<hkern u1="q" u2="&#x22;" k="76" />
-<hkern u1="q" u2="&#x21;" k="16" />
-<hkern u1="r" u2="&#x7d;" k="55" />
-<hkern u1="r" u2="v" k="-39" />
-<hkern u1="r" u2="q" k="6" />
-<hkern u1="r" u2="]" k="61" />
-<hkern u1="r" u2="\" k="20" />
-<hkern u1="r" u2="X" k="143" />
-<hkern u1="r" u2="V" k="68" />
-<hkern u1="r" u2="P" k="43" />
-<hkern u1="r" u2="M" k="53" />
-<hkern u1="r" u2="F" k="43" />
-<hkern u1="r" u2="B" k="43" />
-<hkern u1="r" u2="&#x3f;" k="37" />
-<hkern u1="r" u2="&#x2f;" k="25" />
-<hkern u1="r" u2="&#x2e;" k="47" />
-<hkern u1="r" u2="&#x2c;" k="49" />
-<hkern u1="r" u2="&#x29;" k="39" />
-<hkern u1="r" u2="&#x21;" k="16" />
-<hkern u1="s" u2="&#x7d;" k="57" />
-<hkern u1="s" u2="]" k="55" />
-<hkern u1="s" u2="\" k="45" />
-<hkern u1="s" u2="X" k="31" />
-<hkern u1="s" u2="V" k="178" />
-<hkern u1="s" u2="Q" k="31" />
-<hkern u1="s" u2="P" k="47" />
-<hkern u1="s" u2="M" k="18" />
-<hkern u1="s" u2="F" k="47" />
-<hkern u1="s" u2="B" k="47" />
-<hkern u1="s" u2="&#x3f;" k="35" />
-<hkern u1="s" u2="&#x2a;" k="39" />
-<hkern u1="s" u2="&#x29;" k="12" />
-<hkern u1="s" u2="&#x21;" k="10" />
-<hkern u1="t" u2="&#x7d;" k="57" />
-<hkern u1="t" u2="]" k="55" />
-<hkern u1="t" u2="\" k="35" />
-<hkern u1="t" u2="X" k="25" />
-<hkern u1="t" u2="V" k="68" />
-<hkern u1="t" u2="Q" k="27" />
-<hkern u1="t" u2="P" k="43" />
-<hkern u1="t" u2="M" k="16" />
-<hkern u1="t" u2="F" k="43" />
-<hkern u1="t" u2="B" k="43" />
-<hkern u1="t" u2="&#x3f;" k="35" />
-<hkern u1="t" u2="&#x2a;" k="18" />
-<hkern u1="t" u2="&#x21;" k="10" />
-<hkern u1="u" u2="&#x7d;" k="47" />
-<hkern u1="u" u2="]" k="45" />
-<hkern u1="u" u2="\" k="39" />
-<hkern u1="u" u2="X" k="39" />
-<hkern u1="u" u2="V" k="141" />
-<hkern u1="u" u2="Q" k="33" />
-<hkern u1="u" u2="P" k="27" />
-<hkern u1="u" u2="M" k="23" />
-<hkern u1="u" u2="F" k="27" />
-<hkern u1="u" u2="B" k="27" />
-<hkern u1="u" u2="&#x3f;" k="39" />
-<hkern u1="u" u2="&#x2a;" k="27" />
-<hkern u1="u" u2="&#x29;" k="12" />
-<hkern u1="u" u2="&#x21;" k="18" />
-<hkern u1="v" u2="&#x201e;" k="35" />
-<hkern u1="v" u2="&#x201a;" k="35" />
-<hkern u1="v" u2="&#x178;" k="68" />
-<hkern u1="v" u2="&#xdd;" k="68" />
-<hkern u1="v" u2="&#xdc;" k="33" />
-<hkern u1="v" u2="&#xdb;" k="33" />
-<hkern u1="v" u2="&#xda;" k="33" />
-<hkern u1="v" u2="&#xd9;" k="33" />
-<hkern u1="v" u2="&#xd1;" k="43" />
-<hkern u1="v" u2="&#xd0;" k="43" />
-<hkern u1="v" u2="&#xcf;" k="43" />
-<hkern u1="v" u2="&#xce;" k="43" />
-<hkern u1="v" u2="&#xcd;" k="43" />
-<hkern u1="v" u2="&#xcc;" k="43" />
-<hkern u1="v" u2="&#xcb;" k="43" />
-<hkern u1="v" u2="&#xca;" k="43" />
-<hkern u1="v" u2="&#xc9;" k="43" />
-<hkern u1="v" u2="&#xc8;" k="43" />
-<hkern u1="v" u2="&#xc5;" k="59" />
-<hkern u1="v" u2="&#xc4;" k="59" />
-<hkern u1="v" u2="&#xc3;" k="59" />
-<hkern u1="v" u2="&#xc2;" k="59" />
-<hkern u1="v" u2="&#xc1;" k="59" />
-<hkern u1="v" u2="&#xc0;" k="59" />
-<hkern u1="v" u2="&#x7d;" k="29" />
-<hkern u1="v" u2="g" k="23" />
-<hkern u1="v" u2="]" k="29" />
-<hkern u1="v" u2="\" k="12" />
-<hkern u1="v" u2="Z" k="66" />
-<hkern u1="v" u2="Y" k="68" />
-<hkern u1="v" u2="X" k="68" />
-<hkern u1="v" u2="W" k="55" />
-<hkern u1="v" u2="V" k="53" />
-<hkern u1="v" u2="U" k="33" />
-<hkern u1="v" u2="T" k="68" />
-<hkern u1="v" u2="S" k="41" />
-<hkern u1="v" u2="R" k="43" />
-<hkern u1="v" u2="P" k="43" />
-<hkern u1="v" u2="N" k="43" />
-<hkern u1="v" u2="M" k="49" />
-<hkern u1="v" u2="L" k="43" />
-<hkern u1="v" u2="K" k="43" />
-<hkern u1="v" u2="J" k="78" />
-<hkern u1="v" u2="I" k="43" />
-<hkern u1="v" u2="H" k="43" />
-<hkern u1="v" u2="F" k="43" />
-<hkern u1="v" u2="E" k="43" />
-<hkern u1="v" u2="D" k="43" />
-<hkern u1="v" u2="B" k="43" />
-<hkern u1="v" u2="A" k="59" />
-<hkern u1="v" u2="&#x3f;" k="25" />
-<hkern u1="v" u2="&#x2f;" k="20" />
-<hkern u1="v" u2="&#x2e;" k="33" />
-<hkern u1="v" u2="&#x2c;" k="35" />
-<hkern u1="v" u2="&#x29;" k="27" />
-<hkern u1="v" u2="&#x27;" k="53" />
-<hkern u1="v" u2="&#x22;" k="53" />
-<hkern u1="v" u2="&#x21;" k="16" />
-<hkern u1="w" u2="&#x7d;" k="37" />
-<hkern u1="w" u2="]" k="37" />
-<hkern u1="w" u2="\" k="18" />
-<hkern u1="w" u2="X" k="68" />
-<hkern u1="w" u2="V" k="68" />
-<hkern u1="w" u2="Q" k="12" />
-<hkern u1="w" u2="P" k="49" />
-<hkern u1="w" u2="M" k="37" />
-<hkern u1="w" u2="F" k="49" />
-<hkern u1="w" u2="B" k="49" />
-<hkern u1="w" u2="&#x3f;" k="29" />
-<hkern u1="w" u2="&#x2f;" k="18" />
-<hkern u1="w" u2="&#x2e;" k="18" />
-<hkern u1="w" u2="&#x2c;" k="20" />
-<hkern u1="w" u2="&#x29;" k="27" />
-<hkern u1="w" u2="&#x21;" k="18" />
-<hkern u1="x" u2="&#x2039;" k="16" />
-<hkern u1="x" u2="&#x201d;" k="10" />
-<hkern u1="x" u2="&#x2019;" k="10" />
-<hkern u1="x" u2="&#x2014;" k="10" />
-<hkern u1="x" u2="&#x2013;" k="10" />
-<hkern u1="x" u2="&#x178;" k="74" />
-<hkern u1="x" u2="&#x153;" k="10" />
-<hkern u1="x" u2="&#x152;" k="23" />
-<hkern u1="x" u2="&#xf8;" k="10" />
-<hkern u1="x" u2="&#xf6;" k="10" />
-<hkern u1="x" u2="&#xf5;" k="10" />
-<hkern u1="x" u2="&#xf4;" k="10" />
-<hkern u1="x" u2="&#xf3;" k="10" />
-<hkern u1="x" u2="&#xf2;" k="10" />
-<hkern u1="x" u2="&#xf0;" k="8" />
-<hkern u1="x" u2="&#xeb;" k="8" />
-<hkern u1="x" u2="&#xea;" k="8" />
-<hkern u1="x" u2="&#xe9;" k="8" />
-<hkern u1="x" u2="&#xe8;" k="8" />
-<hkern u1="x" u2="&#xe7;" k="10" />
-<hkern u1="x" u2="&#xdd;" k="74" />
-<hkern u1="x" u2="&#xdc;" k="55" />
-<hkern u1="x" u2="&#xdb;" k="55" />
-<hkern u1="x" u2="&#xda;" k="55" />
-<hkern u1="x" u2="&#xd9;" k="55" />
-<hkern u1="x" u2="&#xd8;" k="23" />
-<hkern u1="x" u2="&#xd6;" k="23" />
-<hkern u1="x" u2="&#xd5;" k="23" />
-<hkern u1="x" u2="&#xd4;" k="23" />
-<hkern u1="x" u2="&#xd3;" k="23" />
-<hkern u1="x" u2="&#xd2;" k="23" />
-<hkern u1="x" u2="&#xd1;" k="43" />
-<hkern u1="x" u2="&#xd0;" k="45" />
-<hkern u1="x" u2="&#xcf;" k="45" />
-<hkern u1="x" u2="&#xce;" k="45" />
-<hkern u1="x" u2="&#xcd;" k="45" />
-<hkern u1="x" u2="&#xcc;" k="45" />
-<hkern u1="x" u2="&#xcb;" k="45" />
-<hkern u1="x" u2="&#xca;" k="45" />
-<hkern u1="x" u2="&#xc9;" k="45" />
-<hkern u1="x" u2="&#xc8;" k="45" />
-<hkern u1="x" u2="&#xc7;" k="23" />
-<hkern u1="x" u2="&#xab;" k="16" />
-<hkern u1="x" u2="&#x7d;" k="35" />
-<hkern u1="x" u2="q" k="8" />
-<hkern u1="x" u2="o" k="10" />
-<hkern u1="x" u2="e" k="8" />
-<hkern u1="x" u2="d" k="8" />
-<hkern u1="x" u2="c" k="10" />
-<hkern u1="x" u2="]" k="35" />
-<hkern u1="x" u2="\" k="25" />
-<hkern u1="x" u2="Z" k="16" />
-<hkern u1="x" u2="Y" k="74" />
-<hkern u1="x" u2="X" k="20" />
-<hkern u1="x" u2="W" k="72" />
-<hkern u1="x" u2="V" k="72" />
-<hkern u1="x" u2="U" k="55" />
-<hkern u1="x" u2="T" k="72" />
-<hkern u1="x" u2="S" k="33" />
-<hkern u1="x" u2="R" k="45" />
-<hkern u1="x" u2="Q" k="23" />
-<hkern u1="x" u2="P" k="45" />
-<hkern u1="x" u2="O" k="23" />
-<hkern u1="x" u2="N" k="43" />
-<hkern u1="x" u2="M" k="18" />
-<hkern u1="x" u2="L" k="45" />
-<hkern u1="x" u2="K" k="45" />
-<hkern u1="x" u2="I" k="45" />
-<hkern u1="x" u2="H" k="45" />
-<hkern u1="x" u2="G" k="25" />
-<hkern u1="x" u2="F" k="45" />
-<hkern u1="x" u2="E" k="45" />
-<hkern u1="x" u2="D" k="45" />
-<hkern u1="x" u2="C" k="23" />
-<hkern u1="x" u2="B" k="45" />
-<hkern u1="x" u2="&#x3f;" k="27" />
-<hkern u1="x" u2="&#x2d;" k="10" />
-<hkern u1="x" u2="&#x2a;" k="10" />
-<hkern u1="x" u2="&#x27;" k="68" />
-<hkern u1="x" u2="&#x22;" k="68" />
-<hkern u1="x" u2="&#x21;" k="12" />
-<hkern u1="y" u2="&#x7d;" k="31" />
-<hkern u1="y" u2="]" k="31" />
-<hkern u1="y" u2="\" k="14" />
-<hkern u1="y" u2="X" k="66" />
-<hkern u1="y" u2="V" k="57" />
-<hkern u1="y" u2="P" k="43" />
-<hkern u1="y" u2="M" k="47" />
-<hkern u1="y" u2="F" k="43" />
-<hkern u1="y" u2="B" k="43" />
-<hkern u1="y" u2="&#x3f;" k="25" />
-<hkern u1="y" u2="&#x2f;" k="20" />
-<hkern u1="y" u2="&#x2e;" k="31" />
-<hkern u1="y" u2="&#x2c;" k="33" />
-<hkern u1="y" u2="&#x29;" k="27" />
-<hkern u1="y" u2="&#x21;" k="16" />
-<hkern u1="z" u2="&#x7d;" k="37" />
-<hkern u1="z" u2="]" k="37" />
-<hkern u1="z" u2="\" k="23" />
-<hkern u1="z" u2="X" k="31" />
-<hkern u1="z" u2="V" k="68" />
-<hkern u1="z" u2="Q" k="20" />
-<hkern u1="z" u2="P" k="47" />
-<hkern u1="z" u2="M" k="23" />
-<hkern u1="z" u2="F" k="47" />
-<hkern u1="z" u2="B" k="47" />
-<hkern u1="z" u2="&#x3f;" k="27" />
-<hkern u1="z" u2="&#x21;" k="12" />
-<hkern u1="&#x7b;" g2="uniFB02" k="31" />
-<hkern u1="&#x7b;" g2="uniFB01" k="31" />
-<hkern u1="&#x7b;" u2="&#x178;" k="-37" />
-<hkern u1="&#x7b;" u2="&#x153;" k="70" />
-<hkern u1="&#x7b;" u2="&#x152;" k="33" />
-<hkern u1="&#x7b;" u2="&#xff;" k="31" />
-<hkern u1="&#x7b;" u2="&#xfe;" k="47" />
-<hkern u1="&#x7b;" u2="&#xfd;" k="31" />
-<hkern u1="&#x7b;" u2="&#xfc;" k="49" />
-<hkern u1="&#x7b;" u2="&#xfb;" k="49" />
-<hkern u1="&#x7b;" u2="&#xfa;" k="49" />
-<hkern u1="&#x7b;" u2="&#xf9;" k="49" />
-<hkern u1="&#x7b;" u2="&#xf8;" k="70" />
-<hkern u1="&#x7b;" u2="&#xf6;" k="70" />
-<hkern u1="&#x7b;" u2="&#xf5;" k="70" />
-<hkern u1="&#x7b;" u2="&#xf4;" k="70" />
-<hkern u1="&#x7b;" u2="&#xf3;" k="70" />
-<hkern u1="&#x7b;" u2="&#xf2;" k="70" />
-<hkern u1="&#x7b;" u2="&#xf1;" k="51" />
-<hkern u1="&#x7b;" u2="&#xf0;" k="35" />
-<hkern u1="&#x7b;" u2="&#xef;" k="-111" />
-<hkern u1="&#x7b;" u2="&#xee;" k="-14" />
-<hkern u1="&#x7b;" u2="&#xed;" k="10" />
-<hkern u1="&#x7b;" u2="&#xec;" k="-12" />
-<hkern u1="&#x7b;" u2="&#xeb;" k="70" />
-<hkern u1="&#x7b;" u2="&#xea;" k="70" />
-<hkern u1="&#x7b;" u2="&#xe9;" k="70" />
-<hkern u1="&#x7b;" u2="&#xe8;" k="70" />
-<hkern u1="&#x7b;" u2="&#xe7;" k="70" />
-<hkern u1="&#x7b;" u2="&#xe6;" k="63" />
-<hkern u1="&#x7b;" u2="&#xe5;" k="63" />
-<hkern u1="&#x7b;" u2="&#xe4;" k="63" />
-<hkern u1="&#x7b;" u2="&#xe3;" k="63" />
-<hkern u1="&#x7b;" u2="&#xe2;" k="63" />
-<hkern u1="&#x7b;" u2="&#xe1;" k="63" />
-<hkern u1="&#x7b;" u2="&#xe0;" k="63" />
-<hkern u1="&#x7b;" u2="&#xdf;" k="29" />
-<hkern u1="&#x7b;" u2="&#xde;" k="10" />
-<hkern u1="&#x7b;" u2="&#xdd;" k="-37" />
-<hkern u1="&#x7b;" u2="&#xd8;" k="33" />
-<hkern u1="&#x7b;" u2="&#xd6;" k="33" />
-<hkern u1="&#x7b;" u2="&#xd5;" k="33" />
-<hkern u1="&#x7b;" u2="&#xd4;" k="33" />
-<hkern u1="&#x7b;" u2="&#xd3;" k="33" />
-<hkern u1="&#x7b;" u2="&#xd2;" k="33" />
-<hkern u1="&#x7b;" u2="&#xd0;" k="10" />
-<hkern u1="&#x7b;" u2="&#xcf;" k="10" />
-<hkern u1="&#x7b;" u2="&#xce;" k="10" />
-<hkern u1="&#x7b;" u2="&#xcd;" k="10" />
-<hkern u1="&#x7b;" u2="&#xcc;" k="10" />
-<hkern u1="&#x7b;" u2="&#xcb;" k="10" />
-<hkern u1="&#x7b;" u2="&#xca;" k="10" />
-<hkern u1="&#x7b;" u2="&#xc9;" k="10" />
-<hkern u1="&#x7b;" u2="&#xc8;" k="10" />
-<hkern u1="&#x7b;" u2="&#xc7;" k="33" />
-<hkern u1="&#x7b;" u2="&#xc5;" k="12" />
-<hkern u1="&#x7b;" u2="&#xc4;" k="12" />
-<hkern u1="&#x7b;" u2="&#xc3;" k="12" />
-<hkern u1="&#x7b;" u2="&#xc2;" k="12" />
-<hkern u1="&#x7b;" u2="&#xc1;" k="12" />
-<hkern u1="&#x7b;" u2="&#xc0;" k="12" />
-<hkern u1="&#x7b;" u2="z" k="39" />
-<hkern u1="&#x7b;" u2="y" k="31" />
-<hkern u1="&#x7b;" u2="x" k="35" />
-<hkern u1="&#x7b;" u2="w" k="33" />
-<hkern u1="&#x7b;" u2="v" k="29" />
-<hkern u1="&#x7b;" u2="u" k="49" />
-<hkern u1="&#x7b;" u2="t" k="53" />
-<hkern u1="&#x7b;" u2="s" k="57" />
-<hkern u1="&#x7b;" u2="r" k="51" />
-<hkern u1="&#x7b;" u2="q" k="70" />
-<hkern u1="&#x7b;" u2="p" k="47" />
-<hkern u1="&#x7b;" u2="o" k="70" />
-<hkern u1="&#x7b;" u2="n" k="51" />
-<hkern u1="&#x7b;" u2="m" k="51" />
-<hkern u1="&#x7b;" u2="j" k="-274" />
-<hkern u1="&#x7b;" u2="i" k="10" />
-<hkern u1="&#x7b;" u2="g" k="33" />
-<hkern u1="&#x7b;" u2="f" k="31" />
-<hkern u1="&#x7b;" u2="e" k="70" />
-<hkern u1="&#x7b;" u2="d" k="66" />
-<hkern u1="&#x7b;" u2="c" k="70" />
-<hkern u1="&#x7b;" u2="a" k="63" />
-<hkern u1="&#x7b;" u2="Y" k="-37" />
-<hkern u1="&#x7b;" u2="V" k="-27" />
-<hkern u1="&#x7b;" u2="R" k="10" />
-<hkern u1="&#x7b;" u2="Q" k="33" />
-<hkern u1="&#x7b;" u2="P" k="10" />
-<hkern u1="&#x7b;" u2="O" k="33" />
-<hkern u1="&#x7b;" u2="M" k="16" />
-<hkern u1="&#x7b;" u2="L" k="10" />
-<hkern u1="&#x7b;" u2="K" k="10" />
-<hkern u1="&#x7b;" u2="J" k="12" />
-<hkern u1="&#x7b;" u2="I" k="10" />
-<hkern u1="&#x7b;" u2="H" k="10" />
-<hkern u1="&#x7b;" u2="G" k="33" />
-<hkern u1="&#x7b;" u2="F" k="10" />
-<hkern u1="&#x7b;" u2="E" k="10" />
-<hkern u1="&#x7b;" u2="D" k="10" />
-<hkern u1="&#x7b;" u2="C" k="33" />
-<hkern u1="&#x7b;" u2="B" k="10" />
-<hkern u1="&#x7b;" u2="A" k="12" />
-<hkern u1="&#x7b;" u2="&#x38;" k="14" />
-<hkern u1="&#x7b;" u2="&#x36;" k="45" />
-<hkern u1="&#x7b;" u2="&#x34;" k="25" />
-<hkern u1="&#x7b;" u2="&#x31;" k="10" />
-<hkern u1="&#x7b;" u2="&#x30;" k="31" />
-<hkern u1="&#xa3;" u2="&#x36;" k="12" />
-<hkern u1="&#xa3;" u2="&#x34;" k="14" />
-<hkern u1="&#xa3;" u2="&#x30;" k="16" />
-<hkern u1="&#xab;" u2="&#xde;" k="10" />
-<hkern u1="&#xab;" u2="V" k="29" />
-<hkern u1="&#xab;" u2="P" k="10" />
-<hkern u1="&#xab;" u2="F" k="10" />
-<hkern u1="&#xab;" u2="B" k="10" />
-<hkern u1="&#xb0;" u2="&#x36;" k="27" />
-<hkern u1="&#xb0;" u2="&#x34;" k="80" />
-<hkern u1="&#xb0;" u2="&#x30;" k="16" />
-<hkern u1="&#xb7;" u2="L" k="18" />
-<hkern u1="&#xb7;" u2="&#x39;" k="10" />
-<hkern u1="&#xb7;" u2="&#x38;" k="14" />
-<hkern u1="&#xb7;" u2="&#x37;" k="57" />
-<hkern u1="&#xb7;" u2="&#x35;" k="16" />
-<hkern u1="&#xb7;" u2="&#x33;" k="41" />
-<hkern u1="&#xb7;" u2="&#x32;" k="72" />
-<hkern u1="&#xb7;" u2="&#x31;" k="45" />
-<hkern u1="&#xbb;" u2="&#xde;" k="12" />
-<hkern u1="&#xbb;" u2="x" k="16" />
-<hkern u1="&#xbb;" u2="X" k="18" />
-<hkern u1="&#xbb;" u2="V" k="72" />
-<hkern u1="&#xbb;" u2="P" k="12" />
-<hkern u1="&#xbb;" u2="F" k="12" />
-<hkern u1="&#xbb;" u2="B" k="12" />
-<hkern u1="&#xc0;" u2="&#xf0;" k="20" />
-<hkern u1="&#xc0;" u2="&#xdf;" k="10" />
-<hkern u1="&#xc0;" u2="&#x7d;" k="12" />
-<hkern u1="&#xc0;" u2="v" k="59" />
-<hkern u1="&#xc0;" u2="q" k="16" />
-<hkern u1="&#xc0;" u2="m" k="10" />
-<hkern u1="&#xc0;" u2="b" k="10" />
-<hkern u1="&#xc0;" u2="]" k="12" />
-<hkern u1="&#xc0;" u2="\" k="53" />
-<hkern u1="&#xc0;" u2="V" k="100" />
-<hkern u1="&#xc0;" u2="Q" k="10" />
-<hkern u1="&#xc0;" u2="&#x3f;" k="18" />
-<hkern u1="&#xc0;" u2="&#x2f;" k="-16" />
-<hkern u1="&#xc0;" u2="&#x2a;" k="70" />
-<hkern u1="&#xc0;" u2="&#x29;" k="-10" />
-<hkern u1="&#xc1;" u2="&#xf0;" k="20" />
-<hkern u1="&#xc1;" u2="&#xdf;" k="10" />
-<hkern u1="&#xc1;" u2="&#x7d;" k="12" />
-<hkern u1="&#xc1;" u2="v" k="59" />
-<hkern u1="&#xc1;" u2="q" k="16" />
-<hkern u1="&#xc1;" u2="m" k="10" />
-<hkern u1="&#xc1;" u2="b" k="10" />
-<hkern u1="&#xc1;" u2="]" k="12" />
-<hkern u1="&#xc1;" u2="\" k="53" />
-<hkern u1="&#xc1;" u2="V" k="100" />
-<hkern u1="&#xc1;" u2="Q" k="10" />
-<hkern u1="&#xc1;" u2="&#x3f;" k="18" />
-<hkern u1="&#xc1;" u2="&#x2f;" k="-16" />
-<hkern u1="&#xc1;" u2="&#x2a;" k="70" />
-<hkern u1="&#xc1;" u2="&#x29;" k="-10" />
-<hkern u1="&#xc2;" u2="&#xf0;" k="20" />
-<hkern u1="&#xc2;" u2="&#xdf;" k="10" />
-<hkern u1="&#xc2;" u2="&#x7d;" k="12" />
-<hkern u1="&#xc2;" u2="v" k="59" />
-<hkern u1="&#xc2;" u2="q" k="16" />
-<hkern u1="&#xc2;" u2="m" k="10" />
-<hkern u1="&#xc2;" u2="b" k="10" />
-<hkern u1="&#xc2;" u2="]" k="12" />
-<hkern u1="&#xc2;" u2="\" k="53" />
-<hkern u1="&#xc2;" u2="V" k="100" />
-<hkern u1="&#xc2;" u2="Q" k="10" />
-<hkern u1="&#xc2;" u2="&#x3f;" k="18" />
-<hkern u1="&#xc2;" u2="&#x2f;" k="-16" />
-<hkern u1="&#xc2;" u2="&#x2a;" k="70" />
-<hkern u1="&#xc2;" u2="&#x29;" k="-10" />
-<hkern u1="&#xc3;" u2="&#xf0;" k="20" />
-<hkern u1="&#xc3;" u2="&#xdf;" k="10" />
-<hkern u1="&#xc3;" u2="&#x7d;" k="12" />
-<hkern u1="&#xc3;" u2="v" k="59" />
-<hkern u1="&#xc3;" u2="q" k="16" />
-<hkern u1="&#xc3;" u2="m" k="10" />
-<hkern u1="&#xc3;" u2="b" k="10" />
-<hkern u1="&#xc3;" u2="]" k="12" />
-<hkern u1="&#xc3;" u2="\" k="53" />
-<hkern u1="&#xc3;" u2="V" k="100" />
-<hkern u1="&#xc3;" u2="Q" k="10" />
-<hkern u1="&#xc3;" u2="&#x3f;" k="18" />
-<hkern u1="&#xc3;" u2="&#x2f;" k="-16" />
-<hkern u1="&#xc3;" u2="&#x2a;" k="70" />
-<hkern u1="&#xc3;" u2="&#x29;" k="-10" />
-<hkern u1="&#xc4;" u2="&#xf0;" k="20" />
-<hkern u1="&#xc4;" u2="&#xdf;" k="10" />
-<hkern u1="&#xc4;" u2="&#x7d;" k="12" />
-<hkern u1="&#xc4;" u2="v" k="59" />
-<hkern u1="&#xc4;" u2="q" k="16" />
-<hkern u1="&#xc4;" u2="m" k="10" />
-<hkern u1="&#xc4;" u2="b" k="10" />
-<hkern u1="&#xc4;" u2="]" k="12" />
-<hkern u1="&#xc4;" u2="\" k="53" />
-<hkern u1="&#xc4;" u2="V" k="100" />
-<hkern u1="&#xc4;" u2="Q" k="10" />
-<hkern u1="&#xc4;" u2="&#x3f;" k="18" />
-<hkern u1="&#xc4;" u2="&#x2f;" k="-16" />
-<hkern u1="&#xc4;" u2="&#x2a;" k="70" />
-<hkern u1="&#xc4;" u2="&#x29;" k="-10" />
-<hkern u1="&#xc5;" u2="&#xf0;" k="20" />
-<hkern u1="&#xc5;" u2="&#xdf;" k="10" />
-<hkern u1="&#xc5;" u2="&#x7d;" k="12" />
-<hkern u1="&#xc5;" u2="v" k="59" />
-<hkern u1="&#xc5;" u2="q" k="16" />
-<hkern u1="&#xc5;" u2="m" k="10" />
-<hkern u1="&#xc5;" u2="b" k="10" />
-<hkern u1="&#xc5;" u2="]" k="12" />
-<hkern u1="&#xc5;" u2="\" k="53" />
-<hkern u1="&#xc5;" u2="V" k="100" />
-<hkern u1="&#xc5;" u2="Q" k="10" />
-<hkern u1="&#xc5;" u2="&#x3f;" k="18" />
-<hkern u1="&#xc5;" u2="&#x2f;" k="-16" />
-<hkern u1="&#xc5;" u2="&#x2a;" k="70" />
-<hkern u1="&#xc5;" u2="&#x29;" k="-10" />
-<hkern u1="&#xc6;" u2="&#xf0;" k="43" />
-<hkern u1="&#xc6;" u2="&#xef;" k="-35" />
-<hkern u1="&#xc6;" u2="&#xee;" k="2" />
-<hkern u1="&#xc6;" u2="&#xdf;" k="37" />
-<hkern u1="&#xc6;" u2="x" k="27" />
-<hkern u1="&#xc6;" u2="v" k="51" />
-<hkern u1="&#xc6;" u2="q" k="41" />
-<hkern u1="&#xc6;" u2="m" k="37" />
-<hkern u1="&#xc6;" u2="b" k="29" />
-<hkern u1="&#xc7;" u2="&#xf0;" k="37" />
-<hkern u1="&#xc7;" u2="&#xef;" k="-72" />
-<hkern u1="&#xc7;" u2="&#xee;" k="-29" />
-<hkern u1="&#xc7;" u2="&#xdf;" k="31" />
-<hkern u1="&#xc7;" u2="x" k="43" />
-<hkern u1="&#xc7;" u2="v" k="68" />
-<hkern u1="&#xc7;" u2="q" k="31" />
-<hkern u1="&#xc7;" u2="m" k="35" />
-<hkern u1="&#xc7;" u2="b" k="23" />
-<hkern u1="&#xc7;" u2="Q" k="6" />
-<hkern u1="&#xc7;" u2="&#x3a;" k="10" />
-<hkern u1="&#xc8;" u2="&#xf0;" k="43" />
-<hkern u1="&#xc8;" u2="&#xef;" k="-35" />
-<hkern u1="&#xc8;" u2="&#xee;" k="2" />
-<hkern u1="&#xc8;" u2="&#xdf;" k="37" />
-<hkern u1="&#xc8;" u2="x" k="27" />
-<hkern u1="&#xc8;" u2="v" k="51" />
-<hkern u1="&#xc8;" u2="q" k="41" />
-<hkern u1="&#xc8;" u2="m" k="37" />
-<hkern u1="&#xc8;" u2="b" k="29" />
-<hkern u1="&#xc9;" u2="&#xf0;" k="43" />
-<hkern u1="&#xc9;" u2="&#xef;" k="-35" />
-<hkern u1="&#xc9;" u2="&#xee;" k="2" />
-<hkern u1="&#xc9;" u2="&#xdf;" k="37" />
-<hkern u1="&#xc9;" u2="x" k="27" />
-<hkern u1="&#xc9;" u2="v" k="51" />
-<hkern u1="&#xc9;" u2="q" k="41" />
-<hkern u1="&#xc9;" u2="m" k="37" />
-<hkern u1="&#xc9;" u2="b" k="29" />
-<hkern u1="&#xca;" u2="&#xf0;" k="43" />
-<hkern u1="&#xca;" u2="&#xef;" k="-35" />
-<hkern u1="&#xca;" u2="&#xee;" k="2" />
-<hkern u1="&#xca;" u2="&#xdf;" k="37" />
-<hkern u1="&#xca;" u2="x" k="27" />
-<hkern u1="&#xca;" u2="v" k="51" />
-<hkern u1="&#xca;" u2="q" k="41" />
-<hkern u1="&#xca;" u2="m" k="37" />
-<hkern u1="&#xca;" u2="b" k="29" />
-<hkern u1="&#xcb;" u2="&#xf0;" k="43" />
-<hkern u1="&#xcb;" u2="&#xef;" k="-35" />
-<hkern u1="&#xcb;" u2="&#xee;" k="2" />
-<hkern u1="&#xcb;" u2="&#xdf;" k="37" />
-<hkern u1="&#xcb;" u2="x" k="27" />
-<hkern u1="&#xcb;" u2="v" k="51" />
-<hkern u1="&#xcb;" u2="q" k="41" />
-<hkern u1="&#xcb;" u2="m" k="37" />
-<hkern u1="&#xcb;" u2="b" k="29" />
-<hkern u1="&#xcc;" u2="&#xf0;" k="39" />
-<hkern u1="&#xcc;" u2="&#xdf;" k="27" />
-<hkern u1="&#xcc;" u2="&#x7d;" k="10" />
-<hkern u1="&#xcc;" u2="x" k="45" />
-<hkern u1="&#xcc;" u2="v" k="43" />
-<hkern u1="&#xcc;" u2="q" k="41" />
-<hkern u1="&#xcc;" u2="m" k="27" />
-<hkern u1="&#xcc;" u2="b" k="27" />
-<hkern u1="&#xcc;" u2="&#x3f;" k="10" />
-<hkern u1="&#xcc;" u2="&#x3b;" k="10" />
-<hkern u1="&#xcc;" u2="&#x3a;" k="16" />
-<hkern u1="&#xcc;" u2="&#x2f;" k="12" />
-<hkern u1="&#xcc;" u2="&#x2e;" k="16" />
-<hkern u1="&#xcc;" u2="&#x2c;" k="16" />
-<hkern u1="&#xcc;" u2="&#x2a;" k="10" />
-<hkern u1="&#xcc;" u2="&#x21;" k="12" />
-<hkern u1="&#xcd;" u2="&#xf0;" k="39" />
-<hkern u1="&#xcd;" u2="&#xdf;" k="27" />
-<hkern u1="&#xcd;" u2="&#x7d;" k="10" />
-<hkern u1="&#xcd;" u2="x" k="45" />
-<hkern u1="&#xcd;" u2="v" k="43" />
-<hkern u1="&#xcd;" u2="q" k="41" />
-<hkern u1="&#xcd;" u2="m" k="27" />
-<hkern u1="&#xcd;" u2="b" k="27" />
-<hkern u1="&#xcd;" u2="&#x3f;" k="10" />
-<hkern u1="&#xcd;" u2="&#x3b;" k="10" />
-<hkern u1="&#xcd;" u2="&#x3a;" k="16" />
-<hkern u1="&#xcd;" u2="&#x2f;" k="12" />
-<hkern u1="&#xcd;" u2="&#x2e;" k="16" />
-<hkern u1="&#xcd;" u2="&#x2c;" k="16" />
-<hkern u1="&#xcd;" u2="&#x2a;" k="10" />
-<hkern u1="&#xcd;" u2="&#x21;" k="12" />
-<hkern u1="&#xce;" u2="&#xf0;" k="39" />
-<hkern u1="&#xce;" u2="&#xdf;" k="27" />
-<hkern u1="&#xce;" u2="&#x7d;" k="10" />
-<hkern u1="&#xce;" u2="x" k="45" />
-<hkern u1="&#xce;" u2="v" k="43" />
-<hkern u1="&#xce;" u2="q" k="41" />
-<hkern u1="&#xce;" u2="m" k="27" />
-<hkern u1="&#xce;" u2="b" k="27" />
-<hkern u1="&#xce;" u2="&#x3f;" k="10" />
-<hkern u1="&#xce;" u2="&#x3b;" k="10" />
-<hkern u1="&#xce;" u2="&#x3a;" k="16" />
-<hkern u1="&#xce;" u2="&#x2f;" k="12" />
-<hkern u1="&#xce;" u2="&#x2e;" k="16" />
-<hkern u1="&#xce;" u2="&#x2c;" k="16" />
-<hkern u1="&#xce;" u2="&#x2a;" k="10" />
-<hkern u1="&#xce;" u2="&#x21;" k="12" />
-<hkern u1="&#xcf;" u2="&#xf0;" k="39" />
-<hkern u1="&#xcf;" u2="&#xdf;" k="27" />
-<hkern u1="&#xcf;" u2="&#x7d;" k="10" />
-<hkern u1="&#xcf;" u2="x" k="45" />
-<hkern u1="&#xcf;" u2="v" k="43" />
-<hkern u1="&#xcf;" u2="q" k="41" />
-<hkern u1="&#xcf;" u2="m" k="27" />
-<hkern u1="&#xcf;" u2="b" k="27" />
-<hkern u1="&#xcf;" u2="&#x3f;" k="10" />
-<hkern u1="&#xcf;" u2="&#x3b;" k="10" />
-<hkern u1="&#xcf;" u2="&#x3a;" k="16" />
-<hkern u1="&#xcf;" u2="&#x2f;" k="12" />
-<hkern u1="&#xcf;" u2="&#x2e;" k="16" />
-<hkern u1="&#xcf;" u2="&#x2c;" k="16" />
-<hkern u1="&#xcf;" u2="&#x2a;" k="10" />
-<hkern u1="&#xcf;" u2="&#x21;" k="12" />
-<hkern u1="&#xd0;" u2="&#xf0;" k="25" />
-<hkern u1="&#xd0;" u2="&#xdf;" k="31" />
-<hkern u1="&#xd0;" u2="&#x7d;" k="35" />
-<hkern u1="&#xd0;" u2="x" k="25" />
-<hkern u1="&#xd0;" u2="q" k="29" />
-<hkern u1="&#xd0;" u2="m" k="33" />
-<hkern u1="&#xd0;" u2="b" k="31" />
-<hkern u1="&#xd0;" u2="]" k="31" />
-<hkern u1="&#xd0;" u2="\" k="12" />
-<hkern u1="&#xd0;" u2="X" k="23" />
-<hkern u1="&#xd0;" u2="V" k="12" />
-<hkern u1="&#xd0;" u2="&#x3f;" k="20" />
-<hkern u1="&#xd0;" u2="&#x2f;" k="16" />
-<hkern u1="&#xd0;" u2="&#x2e;" k="35" />
-<hkern u1="&#xd0;" u2="&#x2c;" k="35" />
-<hkern u1="&#xd0;" u2="&#x29;" k="27" />
-<hkern u1="&#xd0;" u2="&#x21;" k="12" />
-<hkern u1="&#xd1;" u2="&#xf0;" k="43" />
-<hkern u1="&#xd1;" u2="&#xdf;" k="27" />
-<hkern u1="&#xd1;" u2="x" k="43" />
-<hkern u1="&#xd1;" u2="v" k="43" />
-<hkern u1="&#xd1;" u2="q" k="43" />
-<hkern u1="&#xd1;" u2="m" k="27" />
-<hkern u1="&#xd1;" u2="b" k="27" />
-<hkern u1="&#xd1;" u2="&#x3f;" k="10" />
-<hkern u1="&#xd1;" u2="&#x3b;" k="10" />
-<hkern u1="&#xd1;" u2="&#x3a;" k="16" />
-<hkern u1="&#xd1;" u2="&#x2f;" k="10" />
-<hkern u1="&#xd1;" u2="&#x2e;" k="16" />
-<hkern u1="&#xd1;" u2="&#x2c;" k="16" />
-<hkern u1="&#xd1;" u2="&#x2a;" k="12" />
-<hkern u1="&#xd1;" u2="&#x21;" k="12" />
-<hkern u1="&#xd2;" u2="&#xf0;" k="23" />
-<hkern u1="&#xd2;" u2="&#xdf;" k="29" />
-<hkern u1="&#xd2;" u2="&#x7d;" k="33" />
-<hkern u1="&#xd2;" u2="x" k="25" />
-<hkern u1="&#xd2;" u2="q" k="27" />
-<hkern u1="&#xd2;" u2="m" k="33" />
-<hkern u1="&#xd2;" u2="b" k="29" />
-<hkern u1="&#xd2;" u2="]" k="29" />
-<hkern u1="&#xd2;" u2="\" k="10" />
-<hkern u1="&#xd2;" u2="X" k="20" />
-<hkern u1="&#xd2;" u2="V" k="10" />
-<hkern u1="&#xd2;" u2="&#x3f;" k="18" />
-<hkern u1="&#xd2;" u2="&#x2f;" k="14" />
-<hkern u1="&#xd2;" u2="&#x2e;" k="33" />
-<hkern u1="&#xd2;" u2="&#x2c;" k="33" />
-<hkern u1="&#xd2;" u2="&#x29;" k="25" />
-<hkern u1="&#xd2;" u2="&#x21;" k="12" />
-<hkern u1="&#xd3;" u2="&#xf0;" k="23" />
-<hkern u1="&#xd3;" u2="&#xdf;" k="29" />
-<hkern u1="&#xd3;" u2="&#x7d;" k="33" />
-<hkern u1="&#xd3;" u2="x" k="25" />
-<hkern u1="&#xd3;" u2="q" k="27" />
-<hkern u1="&#xd3;" u2="m" k="33" />
-<hkern u1="&#xd3;" u2="b" k="29" />
-<hkern u1="&#xd3;" u2="]" k="29" />
-<hkern u1="&#xd3;" u2="\" k="10" />
-<hkern u1="&#xd3;" u2="X" k="20" />
-<hkern u1="&#xd3;" u2="V" k="10" />
-<hkern u1="&#xd3;" u2="&#x3f;" k="18" />
-<hkern u1="&#xd3;" u2="&#x2f;" k="14" />
-<hkern u1="&#xd3;" u2="&#x2e;" k="33" />
-<hkern u1="&#xd3;" u2="&#x2c;" k="33" />
-<hkern u1="&#xd3;" u2="&#x29;" k="25" />
-<hkern u1="&#xd3;" u2="&#x21;" k="12" />
-<hkern u1="&#xd4;" u2="&#xf0;" k="23" />
-<hkern u1="&#xd4;" u2="&#xdf;" k="29" />
-<hkern u1="&#xd4;" u2="&#x7d;" k="33" />
-<hkern u1="&#xd4;" u2="x" k="25" />
-<hkern u1="&#xd4;" u2="q" k="27" />
-<hkern u1="&#xd4;" u2="m" k="33" />
-<hkern u1="&#xd4;" u2="b" k="29" />
-<hkern u1="&#xd4;" u2="]" k="29" />
-<hkern u1="&#xd4;" u2="\" k="10" />
-<hkern u1="&#xd4;" u2="X" k="20" />
-<hkern u1="&#xd4;" u2="V" k="10" />
-<hkern u1="&#xd4;" u2="&#x3f;" k="18" />
-<hkern u1="&#xd4;" u2="&#x2f;" k="14" />
-<hkern u1="&#xd4;" u2="&#x2e;" k="33" />
-<hkern u1="&#xd4;" u2="&#x2c;" k="33" />
-<hkern u1="&#xd4;" u2="&#x29;" k="25" />
-<hkern u1="&#xd4;" u2="&#x21;" k="12" />
-<hkern u1="&#xd5;" u2="&#xf0;" k="23" />
-<hkern u1="&#xd5;" u2="&#xdf;" k="29" />
-<hkern u1="&#xd5;" u2="&#x7d;" k="33" />
-<hkern u1="&#xd5;" u2="x" k="25" />
-<hkern u1="&#xd5;" u2="q" k="27" />
-<hkern u1="&#xd5;" u2="m" k="33" />
-<hkern u1="&#xd5;" u2="b" k="29" />
-<hkern u1="&#xd5;" u2="]" k="29" />
-<hkern u1="&#xd5;" u2="\" k="10" />
-<hkern u1="&#xd5;" u2="X" k="20" />
-<hkern u1="&#xd5;" u2="V" k="10" />
-<hkern u1="&#xd5;" u2="&#x3f;" k="18" />
-<hkern u1="&#xd5;" u2="&#x2f;" k="14" />
-<hkern u1="&#xd5;" u2="&#x2e;" k="33" />
-<hkern u1="&#xd5;" u2="&#x2c;" k="33" />
-<hkern u1="&#xd5;" u2="&#x29;" k="25" />
-<hkern u1="&#xd5;" u2="&#x21;" k="12" />
-<hkern u1="&#xd6;" u2="&#xf0;" k="23" />
-<hkern u1="&#xd6;" u2="&#xdf;" k="29" />
-<hkern u1="&#xd6;" u2="&#x7d;" k="33" />
-<hkern u1="&#xd6;" u2="x" k="25" />
-<hkern u1="&#xd6;" u2="q" k="27" />
-<hkern u1="&#xd6;" u2="m" k="33" />
-<hkern u1="&#xd6;" u2="b" k="29" />
-<hkern u1="&#xd6;" u2="]" k="29" />
-<hkern u1="&#xd6;" u2="\" k="10" />
-<hkern u1="&#xd6;" u2="X" k="20" />
-<hkern u1="&#xd6;" u2="V" k="10" />
-<hkern u1="&#xd6;" u2="&#x3f;" k="18" />
-<hkern u1="&#xd6;" u2="&#x2f;" k="14" />
-<hkern u1="&#xd6;" u2="&#x2e;" k="33" />
-<hkern u1="&#xd6;" u2="&#x2c;" k="33" />
-<hkern u1="&#xd6;" u2="&#x29;" k="25" />
-<hkern u1="&#xd6;" u2="&#x21;" k="12" />
-<hkern u1="&#xd8;" u2="&#xf0;" k="23" />
-<hkern u1="&#xd8;" u2="&#xdf;" k="29" />
-<hkern u1="&#xd8;" u2="&#x7d;" k="33" />
-<hkern u1="&#xd8;" u2="x" k="25" />
-<hkern u1="&#xd8;" u2="q" k="27" />
-<hkern u1="&#xd8;" u2="m" k="33" />
-<hkern u1="&#xd8;" u2="b" k="29" />
-<hkern u1="&#xd8;" u2="]" k="29" />
-<hkern u1="&#xd8;" u2="\" k="10" />
-<hkern u1="&#xd8;" u2="X" k="20" />
-<hkern u1="&#xd8;" u2="V" k="10" />
-<hkern u1="&#xd8;" u2="&#x3f;" k="18" />
-<hkern u1="&#xd8;" u2="&#x2f;" k="14" />
-<hkern u1="&#xd8;" u2="&#x2e;" k="33" />
-<hkern u1="&#xd8;" u2="&#x2c;" k="33" />
-<hkern u1="&#xd8;" u2="&#x29;" k="25" />
-<hkern u1="&#xd8;" u2="&#x21;" k="12" />
-<hkern u1="&#xd9;" u2="&#xf0;" k="49" />
-<hkern u1="&#xd9;" u2="&#xef;" k="4" />
-<hkern u1="&#xd9;" u2="&#xee;" k="31" />
-<hkern u1="&#xd9;" u2="&#xdf;" k="43" />
-<hkern u1="&#xd9;" u2="x" k="55" />
-<hkern u1="&#xd9;" u2="v" k="35" />
-<hkern u1="&#xd9;" u2="q" k="55" />
-<hkern u1="&#xd9;" u2="m" k="43" />
-<hkern u1="&#xd9;" u2="b" k="45" />
-<hkern u1="&#xd9;" u2="X" k="6" />
-<hkern u1="&#xd9;" u2="&#x3b;" k="14" />
-<hkern u1="&#xd9;" u2="&#x3a;" k="20" />
-<hkern u1="&#xd9;" u2="&#x2f;" k="25" />
-<hkern u1="&#xd9;" u2="&#x2e;" k="35" />
-<hkern u1="&#xd9;" u2="&#x2c;" k="37" />
-<hkern u1="&#xd9;" u2="&#x21;" k="14" />
-<hkern u1="&#xda;" u2="&#xf0;" k="49" />
-<hkern u1="&#xda;" u2="&#xef;" k="4" />
-<hkern u1="&#xda;" u2="&#xee;" k="31" />
-<hkern u1="&#xda;" u2="&#xdf;" k="43" />
-<hkern u1="&#xda;" u2="x" k="55" />
-<hkern u1="&#xda;" u2="v" k="35" />
-<hkern u1="&#xda;" u2="q" k="55" />
-<hkern u1="&#xda;" u2="m" k="43" />
-<hkern u1="&#xda;" u2="b" k="45" />
-<hkern u1="&#xda;" u2="X" k="6" />
-<hkern u1="&#xda;" u2="&#x3b;" k="14" />
-<hkern u1="&#xda;" u2="&#x3a;" k="20" />
-<hkern u1="&#xda;" u2="&#x2f;" k="25" />
-<hkern u1="&#xda;" u2="&#x2e;" k="35" />
-<hkern u1="&#xda;" u2="&#x2c;" k="37" />
-<hkern u1="&#xda;" u2="&#x21;" k="14" />
-<hkern u1="&#xdb;" u2="&#xf0;" k="49" />
-<hkern u1="&#xdb;" u2="&#xef;" k="4" />
-<hkern u1="&#xdb;" u2="&#xee;" k="31" />
-<hkern u1="&#xdb;" u2="&#xdf;" k="43" />
-<hkern u1="&#xdb;" u2="x" k="55" />
-<hkern u1="&#xdb;" u2="v" k="35" />
-<hkern u1="&#xdb;" u2="q" k="55" />
-<hkern u1="&#xdb;" u2="m" k="43" />
-<hkern u1="&#xdb;" u2="b" k="45" />
-<hkern u1="&#xdb;" u2="X" k="6" />
-<hkern u1="&#xdb;" u2="&#x3b;" k="14" />
-<hkern u1="&#xdb;" u2="&#x3a;" k="20" />
-<hkern u1="&#xdb;" u2="&#x2f;" k="25" />
-<hkern u1="&#xdb;" u2="&#x2e;" k="35" />
-<hkern u1="&#xdb;" u2="&#x2c;" k="37" />
-<hkern u1="&#xdb;" u2="&#x21;" k="14" />
-<hkern u1="&#xdc;" u2="&#xf0;" k="49" />
-<hkern u1="&#xdc;" u2="&#xef;" k="4" />
-<hkern u1="&#xdc;" u2="&#xee;" k="31" />
-<hkern u1="&#xdc;" u2="&#xdf;" k="43" />
-<hkern u1="&#xdc;" u2="x" k="55" />
-<hkern u1="&#xdc;" u2="v" k="35" />
-<hkern u1="&#xdc;" u2="q" k="55" />
-<hkern u1="&#xdc;" u2="m" k="43" />
-<hkern u1="&#xdc;" u2="b" k="45" />
-<hkern u1="&#xdc;" u2="X" k="6" />
-<hkern u1="&#xdc;" u2="&#x3b;" k="14" />
-<hkern u1="&#xdc;" u2="&#x3a;" k="20" />
-<hkern u1="&#xdc;" u2="&#x2f;" k="25" />
-<hkern u1="&#xdc;" u2="&#x2e;" k="35" />
-<hkern u1="&#xdc;" u2="&#x2c;" k="37" />
-<hkern u1="&#xdc;" u2="&#x21;" k="14" />
-<hkern u1="&#xdd;" u2="&#xfe;" k="45" />
-<hkern u1="&#xdd;" u2="&#xfc;" k="150" />
-<hkern u1="&#xdd;" u2="&#xf6;" k="102" />
-<hkern u1="&#xdd;" u2="&#xf5;" k="156" />
-<hkern u1="&#xdd;" u2="&#xf4;" k="219" />
-<hkern u1="&#xdd;" u2="&#xf2;" k="215" />
-<hkern u1="&#xdd;" u2="&#xf0;" k="68" />
-<hkern u1="&#xdd;" u2="&#xef;" k="-109" />
-<hkern u1="&#xdd;" u2="&#xee;" k="-2" />
-<hkern u1="&#xdd;" u2="&#xec;" k="-8" />
-<hkern u1="&#xdd;" u2="&#xeb;" k="100" />
-<hkern u1="&#xdd;" u2="&#xea;" k="213" />
-<hkern u1="&#xdd;" u2="&#xe8;" k="205" />
-<hkern u1="&#xdd;" u2="&#xe4;" k="90" />
-<hkern u1="&#xdd;" u2="&#xe3;" k="139" />
-<hkern u1="&#xdd;" u2="&#xdf;" k="57" />
-<hkern u1="&#xdd;" u2="&#x7d;" k="-37" />
-<hkern u1="&#xdd;" u2="x" k="74" />
-<hkern u1="&#xdd;" u2="v" k="68" />
-<hkern u1="&#xdd;" u2="q" k="236" />
-<hkern u1="&#xdd;" u2="m" k="162" />
-<hkern u1="&#xdd;" u2="b" k="20" />
-<hkern u1="&#xdd;" u2="]" k="-41" />
-<hkern u1="&#xdd;" u2="\" k="-43" />
-<hkern u1="&#xdd;" u2="X" k="-10" />
-<hkern u1="&#xdd;" u2="V" k="-41" />
-<hkern u1="&#xdd;" u2="Q" k="27" />
-<hkern u1="&#xdd;" u2="M" k="33" />
-<hkern u1="&#xdd;" u2="&#x40;" k="47" />
-<hkern u1="&#xdd;" u2="&#x3b;" k="53" />
-<hkern u1="&#xdd;" u2="&#x3a;" k="72" />
-<hkern u1="&#xdd;" u2="&#x2f;" k="68" />
-<hkern u1="&#xdd;" u2="&#x2e;" k="68" />
-<hkern u1="&#xdd;" u2="&#x2c;" k="70" />
-<hkern u1="&#xdd;" u2="&#x29;" k="-16" />
-<hkern u1="&#xde;" u2="&#x201e;" k="57" />
-<hkern u1="&#xde;" u2="&#x201a;" k="57" />
-<hkern u1="&#xde;" u2="&#x178;" k="39" />
-<hkern u1="&#xde;" u2="&#x153;" k="20" />
-<hkern u1="&#xde;" u2="&#xfe;" k="23" />
-<hkern u1="&#xde;" u2="&#xfc;" k="18" />
-<hkern u1="&#xde;" u2="&#xfb;" k="18" />
-<hkern u1="&#xde;" u2="&#xfa;" k="18" />
-<hkern u1="&#xde;" u2="&#xf9;" k="18" />
-<hkern u1="&#xde;" u2="&#xf8;" k="20" />
-<hkern u1="&#xde;" u2="&#xf6;" k="20" />
-<hkern u1="&#xde;" u2="&#xf5;" k="20" />
-<hkern u1="&#xde;" u2="&#xf4;" k="20" />
-<hkern u1="&#xde;" u2="&#xf3;" k="20" />
-<hkern u1="&#xde;" u2="&#xf2;" k="20" />
-<hkern u1="&#xde;" u2="&#xf1;" k="23" />
-<hkern u1="&#xde;" u2="&#xef;" k="23" />
-<hkern u1="&#xde;" u2="&#xee;" k="23" />
-<hkern u1="&#xde;" u2="&#xed;" k="23" />
-<hkern u1="&#xde;" u2="&#xec;" k="23" />
-<hkern u1="&#xde;" u2="&#xeb;" k="20" />
-<hkern u1="&#xde;" u2="&#xea;" k="20" />
-<hkern u1="&#xde;" u2="&#xe9;" k="20" />
-<hkern u1="&#xde;" u2="&#xe8;" k="20" />
-<hkern u1="&#xde;" u2="&#xe7;" k="20" />
-<hkern u1="&#xde;" u2="&#xe6;" k="31" />
-<hkern u1="&#xde;" u2="&#xe5;" k="31" />
-<hkern u1="&#xde;" u2="&#xe4;" k="31" />
-<hkern u1="&#xde;" u2="&#xe3;" k="31" />
-<hkern u1="&#xde;" u2="&#xe2;" k="31" />
-<hkern u1="&#xde;" u2="&#xe1;" k="31" />
-<hkern u1="&#xde;" u2="&#xe0;" k="31" />
-<hkern u1="&#xde;" u2="&#xdd;" k="39" />
-<hkern u1="&#xde;" u2="&#xc6;" k="31" />
-<hkern u1="&#xde;" u2="&#xc5;" k="12" />
-<hkern u1="&#xde;" u2="&#xc4;" k="12" />
-<hkern u1="&#xde;" u2="&#xc3;" k="12" />
-<hkern u1="&#xde;" u2="&#xc2;" k="12" />
-<hkern u1="&#xde;" u2="&#xc1;" k="12" />
-<hkern u1="&#xde;" u2="&#xc0;" k="12" />
-<hkern u1="&#xde;" u2="&#x7d;" k="45" />
-<hkern u1="&#xde;" u2="z" k="12" />
-<hkern u1="&#xde;" u2="x" k="8" />
-<hkern u1="&#xde;" u2="u" k="18" />
-<hkern u1="&#xde;" u2="s" k="12" />
-<hkern u1="&#xde;" u2="r" k="23" />
-<hkern u1="&#xde;" u2="q" k="18" />
-<hkern u1="&#xde;" u2="p" k="23" />
-<hkern u1="&#xde;" u2="o" k="20" />
-<hkern u1="&#xde;" u2="n" k="23" />
-<hkern u1="&#xde;" u2="m" k="23" />
-<hkern u1="&#xde;" u2="l" k="18" />
-<hkern u1="&#xde;" u2="k" k="18" />
-<hkern u1="&#xde;" u2="j" k="23" />
-<hkern u1="&#xde;" u2="i" k="23" />
-<hkern u1="&#xde;" u2="h" k="18" />
-<hkern u1="&#xde;" u2="g" k="47" />
-<hkern u1="&#xde;" u2="e" k="20" />
-<hkern u1="&#xde;" u2="d" k="18" />
-<hkern u1="&#xde;" u2="c" k="20" />
-<hkern u1="&#xde;" u2="b" k="18" />
-<hkern u1="&#xde;" u2="a" k="31" />
-<hkern u1="&#xde;" u2="]" k="37" />
-<hkern u1="&#xde;" u2="\" k="10" />
-<hkern u1="&#xde;" u2="Z" k="25" />
-<hkern u1="&#xde;" u2="Y" k="39" />
-<hkern u1="&#xde;" u2="X" k="33" />
-<hkern u1="&#xde;" u2="W" k="6" />
-<hkern u1="&#xde;" u2="V" k="12" />
-<hkern u1="&#xde;" u2="T" k="29" />
-<hkern u1="&#xde;" u2="J" k="84" />
-<hkern u1="&#xde;" u2="A" k="12" />
-<hkern u1="&#xde;" u2="&#x3f;" k="27" />
-<hkern u1="&#xde;" u2="&#x2f;" k="12" />
-<hkern u1="&#xde;" u2="&#x2e;" k="45" />
-<hkern u1="&#xde;" u2="&#x2c;" k="49" />
-<hkern u1="&#xde;" u2="&#x29;" k="35" />
-<hkern u1="&#xde;" u2="&#x27;" k="16" />
-<hkern u1="&#xde;" u2="&#x22;" k="16" />
-<hkern u1="&#xde;" u2="&#x21;" k="10" />
-<hkern u1="&#xdf;" g2="uniFB02" k="8" />
-<hkern u1="&#xdf;" g2="uniFB01" k="8" />
-<hkern u1="&#xdf;" u2="&#xff;" k="16" />
-<hkern u1="&#xdf;" u2="&#xfd;" k="16" />
-<hkern u1="&#xdf;" u2="&#x7d;" k="12" />
-<hkern u1="&#xdf;" u2="y" k="16" />
-<hkern u1="&#xdf;" u2="x" k="6" />
-<hkern u1="&#xdf;" u2="w" k="12" />
-<hkern u1="&#xdf;" u2="v" k="18" />
-<hkern u1="&#xdf;" u2="t" k="8" />
-<hkern u1="&#xdf;" u2="f" k="8" />
-<hkern u1="&#xdf;" u2="]" k="10" />
-<hkern u1="&#xdf;" u2="\" k="10" />
-<hkern u1="&#xdf;" u2="&#x21;" k="10" />
-<hkern u1="&#xe0;" u2="&#x7d;" k="51" />
-<hkern u1="&#xe0;" u2="]" k="49" />
-<hkern u1="&#xe0;" u2="\" k="53" />
-<hkern u1="&#xe0;" u2="X" k="35" />
-<hkern u1="&#xe0;" u2="V" k="176" />
-<hkern u1="&#xe0;" u2="Q" k="37" />
-<hkern u1="&#xe0;" u2="P" k="29" />
-<hkern u1="&#xe0;" u2="M" k="25" />
-<hkern u1="&#xe0;" u2="F" k="29" />
-<hkern u1="&#xe0;" u2="B" k="29" />
-<hkern u1="&#xe0;" u2="&#x3f;" k="43" />
-<hkern u1="&#xe0;" u2="&#x2a;" k="51" />
-<hkern u1="&#xe0;" u2="&#x29;" k="12" />
-<hkern u1="&#xe0;" u2="&#x21;" k="16" />
-<hkern u1="&#xe1;" u2="&#x7d;" k="51" />
-<hkern u1="&#xe1;" u2="]" k="49" />
-<hkern u1="&#xe1;" u2="\" k="53" />
-<hkern u1="&#xe1;" u2="X" k="35" />
-<hkern u1="&#xe1;" u2="V" k="176" />
-<hkern u1="&#xe1;" u2="Q" k="37" />
-<hkern u1="&#xe1;" u2="P" k="29" />
-<hkern u1="&#xe1;" u2="M" k="25" />
-<hkern u1="&#xe1;" u2="F" k="29" />
-<hkern u1="&#xe1;" u2="B" k="29" />
-<hkern u1="&#xe1;" u2="&#x3f;" k="43" />
-<hkern u1="&#xe1;" u2="&#x2a;" k="51" />
-<hkern u1="&#xe1;" u2="&#x29;" k="12" />
-<hkern u1="&#xe1;" u2="&#x21;" k="16" />
-<hkern u1="&#xe2;" u2="&#x7d;" k="51" />
-<hkern u1="&#xe2;" u2="]" k="49" />
-<hkern u1="&#xe2;" u2="\" k="53" />
-<hkern u1="&#xe2;" u2="X" k="35" />
-<hkern u1="&#xe2;" u2="V" k="176" />
-<hkern u1="&#xe2;" u2="Q" k="37" />
-<hkern u1="&#xe2;" u2="P" k="29" />
-<hkern u1="&#xe2;" u2="M" k="25" />
-<hkern u1="&#xe2;" u2="F" k="29" />
-<hkern u1="&#xe2;" u2="B" k="29" />
-<hkern u1="&#xe2;" u2="&#x3f;" k="43" />
-<hkern u1="&#xe2;" u2="&#x2a;" k="51" />
-<hkern u1="&#xe2;" u2="&#x29;" k="12" />
-<hkern u1="&#xe2;" u2="&#x21;" k="16" />
-<hkern u1="&#xe3;" u2="&#x7d;" k="51" />
-<hkern u1="&#xe3;" u2="]" k="49" />
-<hkern u1="&#xe3;" u2="\" k="53" />
-<hkern u1="&#xe3;" u2="X" k="35" />
-<hkern u1="&#xe3;" u2="V" k="176" />
-<hkern u1="&#xe3;" u2="Q" k="37" />
-<hkern u1="&#xe3;" u2="P" k="29" />
-<hkern u1="&#xe3;" u2="M" k="25" />
-<hkern u1="&#xe3;" u2="F" k="29" />
-<hkern u1="&#xe3;" u2="B" k="29" />
-<hkern u1="&#xe3;" u2="&#x3f;" k="43" />
-<hkern u1="&#xe3;" u2="&#x2a;" k="51" />
-<hkern u1="&#xe3;" u2="&#x29;" k="12" />
-<hkern u1="&#xe3;" u2="&#x21;" k="16" />
-<hkern u1="&#xe4;" u2="&#x7d;" k="51" />
-<hkern u1="&#xe4;" u2="]" k="49" />
-<hkern u1="&#xe4;" u2="\" k="53" />
-<hkern u1="&#xe4;" u2="X" k="35" />
-<hkern u1="&#xe4;" u2="V" k="176" />
-<hkern u1="&#xe4;" u2="Q" k="37" />
-<hkern u1="&#xe4;" u2="P" k="29" />
-<hkern u1="&#xe4;" u2="M" k="25" />
-<hkern u1="&#xe4;" u2="F" k="29" />
-<hkern u1="&#xe4;" u2="B" k="29" />
-<hkern u1="&#xe4;" u2="&#x3f;" k="43" />
-<hkern u1="&#xe4;" u2="&#x2a;" k="51" />
-<hkern u1="&#xe4;" u2="&#x29;" k="12" />
-<hkern u1="&#xe4;" u2="&#x21;" k="16" />
-<hkern u1="&#xe5;" u2="&#x7d;" k="51" />
-<hkern u1="&#xe5;" u2="]" k="49" />
-<hkern u1="&#xe5;" u2="\" k="53" />
-<hkern u1="&#xe5;" u2="X" k="35" />
-<hkern u1="&#xe5;" u2="V" k="176" />
-<hkern u1="&#xe5;" u2="Q" k="37" />
-<hkern u1="&#xe5;" u2="P" k="29" />
-<hkern u1="&#xe5;" u2="M" k="25" />
-<hkern u1="&#xe5;" u2="F" k="29" />
-<hkern u1="&#xe5;" u2="B" k="29" />
-<hkern u1="&#xe5;" u2="&#x3f;" k="43" />
-<hkern u1="&#xe5;" u2="&#x2a;" k="51" />
-<hkern u1="&#xe5;" u2="&#x29;" k="12" />
-<hkern u1="&#xe5;" u2="&#x21;" k="16" />
-<hkern u1="&#xe6;" u2="&#x7d;" k="66" />
-<hkern u1="&#xe6;" u2="]" k="59" />
-<hkern u1="&#xe6;" u2="\" k="45" />
-<hkern u1="&#xe6;" u2="X" k="47" />
-<hkern u1="&#xe6;" u2="V" k="199" />
-<hkern u1="&#xe6;" u2="Q" k="23" />
-<hkern u1="&#xe6;" u2="P" k="45" />
-<hkern u1="&#xe6;" u2="M" k="25" />
-<hkern u1="&#xe6;" u2="F" k="45" />
-<hkern u1="&#xe6;" u2="B" k="45" />
-<hkern u1="&#xe6;" u2="&#x3f;" k="43" />
-<hkern u1="&#xe6;" u2="&#x2a;" k="51" />
-<hkern u1="&#xe6;" u2="&#x29;" k="18" />
-<hkern u1="&#xe6;" u2="&#x21;" k="18" />
-<hkern u1="&#xe7;" u2="&#x7d;" k="59" />
-<hkern u1="&#xe7;" u2="j" k="-72" />
-<hkern u1="&#xe7;" u2="]" k="57" />
-<hkern u1="&#xe7;" u2="\" k="43" />
-<hkern u1="&#xe7;" u2="X" k="31" />
-<hkern u1="&#xe7;" u2="V" k="207" />
-<hkern u1="&#xe7;" u2="Q" k="27" />
-<hkern u1="&#xe7;" u2="P" k="45" />
-<hkern u1="&#xe7;" u2="M" k="18" />
-<hkern u1="&#xe7;" u2="F" k="45" />
-<hkern u1="&#xe7;" u2="B" k="45" />
-<hkern u1="&#xe7;" u2="&#x3f;" k="35" />
-<hkern u1="&#xe7;" u2="&#x2a;" k="39" />
-<hkern u1="&#xe7;" u2="&#x29;" k="14" />
-<hkern u1="&#xe7;" u2="&#x21;" k="10" />
-<hkern u1="&#xe8;" u2="&#x7d;" k="66" />
-<hkern u1="&#xe8;" u2="]" k="59" />
-<hkern u1="&#xe8;" u2="\" k="45" />
-<hkern u1="&#xe8;" u2="X" k="47" />
-<hkern u1="&#xe8;" u2="V" k="199" />
-<hkern u1="&#xe8;" u2="Q" k="23" />
-<hkern u1="&#xe8;" u2="P" k="45" />
-<hkern u1="&#xe8;" u2="M" k="25" />
-<hkern u1="&#xe8;" u2="F" k="45" />
-<hkern u1="&#xe8;" u2="B" k="45" />
-<hkern u1="&#xe8;" u2="&#x3f;" k="43" />
-<hkern u1="&#xe8;" u2="&#x2a;" k="51" />
-<hkern u1="&#xe8;" u2="&#x29;" k="18" />
-<hkern u1="&#xe8;" u2="&#x21;" k="18" />
-<hkern u1="&#xe9;" u2="&#x7d;" k="66" />
-<hkern u1="&#xe9;" u2="]" k="59" />
-<hkern u1="&#xe9;" u2="\" k="45" />
-<hkern u1="&#xe9;" u2="X" k="47" />
-<hkern u1="&#xe9;" u2="V" k="199" />
-<hkern u1="&#xe9;" u2="Q" k="23" />
-<hkern u1="&#xe9;" u2="P" k="45" />
-<hkern u1="&#xe9;" u2="M" k="25" />
-<hkern u1="&#xe9;" u2="F" k="45" />
-<hkern u1="&#xe9;" u2="B" k="45" />
-<hkern u1="&#xe9;" u2="&#x3f;" k="43" />
-<hkern u1="&#xe9;" u2="&#x2a;" k="51" />
-<hkern u1="&#xe9;" u2="&#x29;" k="18" />
-<hkern u1="&#xe9;" u2="&#x21;" k="18" />
-<hkern u1="&#xea;" u2="&#x7d;" k="66" />
-<hkern u1="&#xea;" u2="]" k="59" />
-<hkern u1="&#xea;" u2="\" k="45" />
-<hkern u1="&#xea;" u2="X" k="47" />
-<hkern u1="&#xea;" u2="V" k="199" />
-<hkern u1="&#xea;" u2="Q" k="23" />
-<hkern u1="&#xea;" u2="P" k="45" />
-<hkern u1="&#xea;" u2="M" k="25" />
-<hkern u1="&#xea;" u2="F" k="45" />
-<hkern u1="&#xea;" u2="B" k="45" />
-<hkern u1="&#xea;" u2="&#x3f;" k="43" />
-<hkern u1="&#xea;" u2="&#x2a;" k="51" />
-<hkern u1="&#xea;" u2="&#x29;" k="18" />
-<hkern u1="&#xea;" u2="&#x21;" k="18" />
-<hkern u1="&#xeb;" u2="&#x7d;" k="66" />
-<hkern u1="&#xeb;" u2="]" k="59" />
-<hkern u1="&#xeb;" u2="\" k="45" />
-<hkern u1="&#xeb;" u2="X" k="47" />
-<hkern u1="&#xeb;" u2="V" k="199" />
-<hkern u1="&#xeb;" u2="Q" k="23" />
-<hkern u1="&#xeb;" u2="P" k="45" />
-<hkern u1="&#xeb;" u2="M" k="25" />
-<hkern u1="&#xeb;" u2="F" k="45" />
-<hkern u1="&#xeb;" u2="B" k="45" />
-<hkern u1="&#xeb;" u2="&#x3f;" k="43" />
-<hkern u1="&#xeb;" u2="&#x2a;" k="51" />
-<hkern u1="&#xeb;" u2="&#x29;" k="18" />
-<hkern u1="&#xeb;" u2="&#x21;" k="18" />
-<hkern u1="&#xec;" u2="&#xef;" k="-35" />
-<hkern u1="&#xec;" u2="&#x7d;" k="10" />
-<hkern u1="&#xec;" u2="\" k="10" />
-<hkern u1="&#xec;" u2="X" k="33" />
-<hkern u1="&#xec;" u2="V" k="27" />
-<hkern u1="&#xec;" u2="Q" k="33" />
-<hkern u1="&#xec;" u2="P" k="27" />
-<hkern u1="&#xec;" u2="M" k="23" />
-<hkern u1="&#xec;" u2="F" k="27" />
-<hkern u1="&#xec;" u2="B" k="27" />
-<hkern u1="&#xec;" u2="&#x21;" k="14" />
-<hkern u1="&#xed;" u2="&#xef;" k="-35" />
-<hkern u1="&#xed;" u2="&#x7d;" k="-2" />
-<hkern u1="&#xed;" u2="\" k="10" />
-<hkern u1="&#xed;" u2="X" k="33" />
-<hkern u1="&#xed;" u2="V" k="27" />
-<hkern u1="&#xed;" u2="Q" k="33" />
-<hkern u1="&#xed;" u2="P" k="27" />
-<hkern u1="&#xed;" u2="M" k="23" />
-<hkern u1="&#xed;" u2="F" k="27" />
-<hkern u1="&#xed;" u2="B" k="27" />
-<hkern u1="&#xed;" u2="&#x21;" k="14" />
-<hkern u1="&#xee;" u2="&#x201d;" k="-12" />
-<hkern u1="&#xee;" u2="&#x2019;" k="-12" />
-<hkern u1="&#xee;" u2="&#xef;" k="-35" />
-<hkern u1="&#xee;" u2="&#x7d;" k="10" />
-<hkern u1="&#xee;" u2="]" k="-41" />
-<hkern u1="&#xee;" u2="\" k="-25" />
-<hkern u1="&#xee;" u2="X" k="33" />
-<hkern u1="&#xee;" u2="V" k="27" />
-<hkern u1="&#xee;" u2="Q" k="33" />
-<hkern u1="&#xee;" u2="P" k="27" />
-<hkern u1="&#xee;" u2="M" k="23" />
-<hkern u1="&#xee;" u2="F" k="27" />
-<hkern u1="&#xee;" u2="B" k="27" />
-<hkern u1="&#xee;" u2="&#x3f;" k="-41" />
-<hkern u1="&#xee;" u2="&#x2a;" k="-47" />
-<hkern u1="&#xee;" u2="&#x27;" k="-31" />
-<hkern u1="&#xee;" u2="&#x22;" k="-31" />
-<hkern u1="&#xee;" u2="&#x21;" k="14" />
-<hkern u1="&#xef;" u2="&#x201d;" k="-90" />
-<hkern u1="&#xef;" u2="&#x2019;" k="-90" />
-<hkern u1="&#xef;" u2="&#xef;" k="-35" />
-<hkern u1="&#xef;" u2="&#xee;" k="-35" />
-<hkern u1="&#xef;" u2="&#xed;" k="-35" />
-<hkern u1="&#xef;" u2="&#xec;" k="-35" />
-<hkern u1="&#xef;" u2="&#x7d;" k="-111" />
-<hkern u1="&#xef;" u2="j" k="-33" />
-<hkern u1="&#xef;" u2="i" k="-35" />
-<hkern u1="&#xef;" u2="]" k="-109" />
-<hkern u1="&#xef;" u2="\" k="-88" />
-<hkern u1="&#xef;" u2="X" k="33" />
-<hkern u1="&#xef;" u2="V" k="27" />
-<hkern u1="&#xef;" u2="Q" k="33" />
-<hkern u1="&#xef;" u2="P" k="27" />
-<hkern u1="&#xef;" u2="M" k="23" />
-<hkern u1="&#xef;" u2="F" k="27" />
-<hkern u1="&#xef;" u2="B" k="27" />
-<hkern u1="&#xef;" u2="&#x3f;" k="-100" />
-<hkern u1="&#xef;" u2="&#x2a;" k="-88" />
-<hkern u1="&#xef;" u2="&#x29;" k="-86" />
-<hkern u1="&#xef;" u2="&#x27;" k="-63" />
-<hkern u1="&#xef;" u2="&#x22;" k="-63" />
-<hkern u1="&#xef;" u2="&#x21;" k="14" />
-<hkern u1="&#xf0;" u2="&#x201d;" k="10" />
-<hkern u1="&#xf0;" u2="&#x2019;" k="10" />
-<hkern u1="&#xf0;" u2="&#x7d;" k="43" />
-<hkern u1="&#xf0;" u2="g" k="6" />
-<hkern u1="&#xf0;" u2="]" k="41" />
-<hkern u1="&#xf0;" u2="\" k="27" />
-<hkern u1="&#xf0;" u2="&#x3f;" k="35" />
-<hkern u1="&#xf0;" u2="&#x29;" k="33" />
-<hkern u1="&#xf0;" u2="&#x27;" k="14" />
-<hkern u1="&#xf0;" u2="&#x22;" k="14" />
-<hkern u1="&#xf0;" u2="&#x21;" k="16" />
-<hkern u1="&#xf1;" u2="&#x7d;" k="51" />
-<hkern u1="&#xf1;" u2="v" k="10" />
-<hkern u1="&#xf1;" u2="]" k="49" />
-<hkern u1="&#xf1;" u2="\" k="55" />
-<hkern u1="&#xf1;" u2="X" k="33" />
-<hkern u1="&#xf1;" u2="V" k="201" />
-<hkern u1="&#xf1;" u2="Q" k="41" />
-<hkern u1="&#xf1;" u2="P" k="33" />
-<hkern u1="&#xf1;" u2="M" k="27" />
-<hkern u1="&#xf1;" u2="F" k="33" />
-<hkern u1="&#xf1;" u2="B" k="33" />
-<hkern u1="&#xf1;" u2="&#x3f;" k="43" />
-<hkern u1="&#xf1;" u2="&#x2a;" k="59" />
-<hkern u1="&#xf1;" u2="&#x29;" k="10" />
-<hkern u1="&#xf1;" u2="&#x21;" k="16" />
-<hkern u1="&#xf2;" u2="&#x7d;" k="70" />
-<hkern u1="&#xf2;" u2="x" k="10" />
-<hkern u1="&#xf2;" u2="]" k="63" />
-<hkern u1="&#xf2;" u2="\" k="51" />
-<hkern u1="&#xf2;" u2="X" k="57" />
-<hkern u1="&#xf2;" u2="V" k="176" />
-<hkern u1="&#xf2;" u2="Q" k="27" />
-<hkern u1="&#xf2;" u2="P" k="43" />
-<hkern u1="&#xf2;" u2="M" k="27" />
-<hkern u1="&#xf2;" u2="F" k="43" />
-<hkern u1="&#xf2;" u2="B" k="43" />
-<hkern u1="&#xf2;" u2="&#x3f;" k="45" />
-<hkern u1="&#xf2;" u2="&#x2a;" k="61" />
-<hkern u1="&#xf2;" u2="&#x29;" k="31" />
-<hkern u1="&#xf2;" u2="&#x21;" k="18" />
-<hkern u1="&#xf3;" u2="&#x7d;" k="70" />
-<hkern u1="&#xf3;" u2="x" k="10" />
-<hkern u1="&#xf3;" u2="]" k="63" />
-<hkern u1="&#xf3;" u2="\" k="51" />
-<hkern u1="&#xf3;" u2="X" k="57" />
-<hkern u1="&#xf3;" u2="V" k="176" />
-<hkern u1="&#xf3;" u2="Q" k="27" />
-<hkern u1="&#xf3;" u2="P" k="43" />
-<hkern u1="&#xf3;" u2="M" k="27" />
-<hkern u1="&#xf3;" u2="F" k="43" />
-<hkern u1="&#xf3;" u2="B" k="43" />
-<hkern u1="&#xf3;" u2="&#x3f;" k="45" />
-<hkern u1="&#xf3;" u2="&#x2a;" k="61" />
-<hkern u1="&#xf3;" u2="&#x29;" k="31" />
-<hkern u1="&#xf3;" u2="&#x21;" k="18" />
-<hkern u1="&#xf4;" u2="&#x7d;" k="70" />
-<hkern u1="&#xf4;" u2="x" k="10" />
-<hkern u1="&#xf4;" u2="]" k="63" />
-<hkern u1="&#xf4;" u2="\" k="51" />
-<hkern u1="&#xf4;" u2="X" k="57" />
-<hkern u1="&#xf4;" u2="V" k="176" />
-<hkern u1="&#xf4;" u2="Q" k="27" />
-<hkern u1="&#xf4;" u2="P" k="43" />
-<hkern u1="&#xf4;" u2="M" k="27" />
-<hkern u1="&#xf4;" u2="F" k="43" />
-<hkern u1="&#xf4;" u2="B" k="43" />
-<hkern u1="&#xf4;" u2="&#x3f;" k="45" />
-<hkern u1="&#xf4;" u2="&#x2a;" k="61" />
-<hkern u1="&#xf4;" u2="&#x29;" k="31" />
-<hkern u1="&#xf4;" u2="&#x21;" k="18" />
-<hkern u1="&#xf5;" u2="&#x7d;" k="70" />
-<hkern u1="&#xf5;" u2="x" k="10" />
-<hkern u1="&#xf5;" u2="]" k="63" />
-<hkern u1="&#xf5;" u2="\" k="51" />
-<hkern u1="&#xf5;" u2="X" k="57" />
-<hkern u1="&#xf5;" u2="V" k="176" />
-<hkern u1="&#xf5;" u2="Q" k="27" />
-<hkern u1="&#xf5;" u2="P" k="43" />
-<hkern u1="&#xf5;" u2="M" k="27" />
-<hkern u1="&#xf5;" u2="F" k="43" />
-<hkern u1="&#xf5;" u2="B" k="43" />
-<hkern u1="&#xf5;" u2="&#x3f;" k="45" />
-<hkern u1="&#xf5;" u2="&#x2a;" k="61" />
-<hkern u1="&#xf5;" u2="&#x29;" k="31" />
-<hkern u1="&#xf5;" u2="&#x21;" k="18" />
-<hkern u1="&#xf6;" u2="&#x7d;" k="70" />
-<hkern u1="&#xf6;" u2="x" k="10" />
-<hkern u1="&#xf6;" u2="]" k="63" />
-<hkern u1="&#xf6;" u2="\" k="51" />
-<hkern u1="&#xf6;" u2="X" k="57" />
-<hkern u1="&#xf6;" u2="V" k="176" />
-<hkern u1="&#xf6;" u2="Q" k="27" />
-<hkern u1="&#xf6;" u2="P" k="43" />
-<hkern u1="&#xf6;" u2="M" k="27" />
-<hkern u1="&#xf6;" u2="F" k="43" />
-<hkern u1="&#xf6;" u2="B" k="43" />
-<hkern u1="&#xf6;" u2="&#x3f;" k="45" />
-<hkern u1="&#xf6;" u2="&#x2a;" k="61" />
-<hkern u1="&#xf6;" u2="&#x29;" k="31" />
-<hkern u1="&#xf6;" u2="&#x21;" k="18" />
-<hkern u1="&#xf8;" u2="&#x7d;" k="70" />
-<hkern u1="&#xf8;" u2="x" k="10" />
-<hkern u1="&#xf8;" u2="]" k="63" />
-<hkern u1="&#xf8;" u2="\" k="51" />
-<hkern u1="&#xf8;" u2="X" k="57" />
-<hkern u1="&#xf8;" u2="V" k="176" />
-<hkern u1="&#xf8;" u2="Q" k="27" />
-<hkern u1="&#xf8;" u2="P" k="43" />
-<hkern u1="&#xf8;" u2="M" k="27" />
-<hkern u1="&#xf8;" u2="F" k="43" />
-<hkern u1="&#xf8;" u2="B" k="43" />
-<hkern u1="&#xf8;" u2="&#x3f;" k="45" />
-<hkern u1="&#xf8;" u2="&#x2a;" k="61" />
-<hkern u1="&#xf8;" u2="&#x29;" k="31" />
-<hkern u1="&#xf8;" u2="&#x21;" k="18" />
-<hkern u1="&#xf9;" u2="&#x7d;" k="47" />
-<hkern u1="&#xf9;" u2="]" k="45" />
-<hkern u1="&#xf9;" u2="\" k="39" />
-<hkern u1="&#xf9;" u2="X" k="39" />
-<hkern u1="&#xf9;" u2="V" k="141" />
-<hkern u1="&#xf9;" u2="Q" k="33" />
-<hkern u1="&#xf9;" u2="P" k="27" />
-<hkern u1="&#xf9;" u2="M" k="23" />
-<hkern u1="&#xf9;" u2="F" k="27" />
-<hkern u1="&#xf9;" u2="B" k="27" />
-<hkern u1="&#xf9;" u2="&#x3f;" k="39" />
-<hkern u1="&#xf9;" u2="&#x2a;" k="27" />
-<hkern u1="&#xf9;" u2="&#x29;" k="12" />
-<hkern u1="&#xf9;" u2="&#x21;" k="18" />
-<hkern u1="&#xfa;" u2="&#x7d;" k="47" />
-<hkern u1="&#xfa;" u2="]" k="45" />
-<hkern u1="&#xfa;" u2="\" k="39" />
-<hkern u1="&#xfa;" u2="X" k="39" />
-<hkern u1="&#xfa;" u2="V" k="141" />
-<hkern u1="&#xfa;" u2="Q" k="33" />
-<hkern u1="&#xfa;" u2="P" k="27" />
-<hkern u1="&#xfa;" u2="M" k="23" />
-<hkern u1="&#xfa;" u2="F" k="27" />
-<hkern u1="&#xfa;" u2="B" k="27" />
-<hkern u1="&#xfa;" u2="&#x3f;" k="39" />
-<hkern u1="&#xfa;" u2="&#x2a;" k="27" />
-<hkern u1="&#xfa;" u2="&#x29;" k="12" />
-<hkern u1="&#xfa;" u2="&#x21;" k="18" />
-<hkern u1="&#xfb;" u2="&#x7d;" k="47" />
-<hkern u1="&#xfb;" u2="]" k="45" />
-<hkern u1="&#xfb;" u2="\" k="39" />
-<hkern u1="&#xfb;" u2="X" k="39" />
-<hkern u1="&#xfb;" u2="V" k="141" />
-<hkern u1="&#xfb;" u2="Q" k="33" />
-<hkern u1="&#xfb;" u2="P" k="27" />
-<hkern u1="&#xfb;" u2="M" k="23" />
-<hkern u1="&#xfb;" u2="F" k="27" />
-<hkern u1="&#xfb;" u2="B" k="27" />
-<hkern u1="&#xfb;" u2="&#x3f;" k="39" />
-<hkern u1="&#xfb;" u2="&#x2a;" k="27" />
-<hkern u1="&#xfb;" u2="&#x29;" k="12" />
-<hkern u1="&#xfb;" u2="&#x21;" k="18" />
-<hkern u1="&#xfc;" u2="&#x7d;" k="47" />
-<hkern u1="&#xfc;" u2="]" k="45" />
-<hkern u1="&#xfc;" u2="\" k="39" />
-<hkern u1="&#xfc;" u2="X" k="39" />
-<hkern u1="&#xfc;" u2="V" k="141" />
-<hkern u1="&#xfc;" u2="Q" k="33" />
-<hkern u1="&#xfc;" u2="P" k="27" />
-<hkern u1="&#xfc;" u2="M" k="23" />
-<hkern u1="&#xfc;" u2="F" k="27" />
-<hkern u1="&#xfc;" u2="B" k="27" />
-<hkern u1="&#xfc;" u2="&#x3f;" k="39" />
-<hkern u1="&#xfc;" u2="&#x2a;" k="27" />
-<hkern u1="&#xfc;" u2="&#x29;" k="12" />
-<hkern u1="&#xfc;" u2="&#x21;" k="18" />
-<hkern u1="&#xfd;" u2="&#x7d;" k="31" />
-<hkern u1="&#xfd;" u2="]" k="31" />
-<hkern u1="&#xfd;" u2="\" k="14" />
-<hkern u1="&#xfd;" u2="X" k="66" />
-<hkern u1="&#xfd;" u2="V" k="57" />
-<hkern u1="&#xfd;" u2="P" k="43" />
-<hkern u1="&#xfd;" u2="M" k="47" />
-<hkern u1="&#xfd;" u2="F" k="43" />
-<hkern u1="&#xfd;" u2="B" k="43" />
-<hkern u1="&#xfd;" u2="&#x3f;" k="25" />
-<hkern u1="&#xfd;" u2="&#x2f;" k="20" />
-<hkern u1="&#xfd;" u2="&#x2e;" k="31" />
-<hkern u1="&#xfd;" u2="&#x2c;" k="33" />
-<hkern u1="&#xfd;" u2="&#x29;" k="27" />
-<hkern u1="&#xfd;" u2="&#x21;" k="16" />
-<hkern u1="&#xfe;" u2="&#x7d;" k="63" />
-<hkern u1="&#xfe;" u2="x" k="8" />
-<hkern u1="&#xfe;" u2="]" k="57" />
-<hkern u1="&#xfe;" u2="\" k="43" />
-<hkern u1="&#xfe;" u2="X" k="55" />
-<hkern u1="&#xfe;" u2="V" k="172" />
-<hkern u1="&#xfe;" u2="Q" k="27" />
-<hkern u1="&#xfe;" u2="P" k="41" />
-<hkern u1="&#xfe;" u2="M" k="27" />
-<hkern u1="&#xfe;" u2="F" k="41" />
-<hkern u1="&#xfe;" u2="B" k="41" />
-<hkern u1="&#xfe;" u2="&#x3f;" k="39" />
-<hkern u1="&#xfe;" u2="&#x2a;" k="57" />
-<hkern u1="&#xfe;" u2="&#x29;" k="23" />
-<hkern u1="&#xfe;" u2="&#x21;" k="14" />
-<hkern u1="&#xff;" u2="&#x7d;" k="31" />
-<hkern u1="&#xff;" u2="]" k="31" />
-<hkern u1="&#xff;" u2="\" k="14" />
-<hkern u1="&#xff;" u2="X" k="66" />
-<hkern u1="&#xff;" u2="V" k="57" />
-<hkern u1="&#xff;" u2="P" k="43" />
-<hkern u1="&#xff;" u2="M" k="47" />
-<hkern u1="&#xff;" u2="F" k="43" />
-<hkern u1="&#xff;" u2="B" k="43" />
-<hkern u1="&#xff;" u2="&#x3f;" k="25" />
-<hkern u1="&#xff;" u2="&#x2f;" k="20" />
-<hkern u1="&#xff;" u2="&#x2e;" k="31" />
-<hkern u1="&#xff;" u2="&#x2c;" k="33" />
-<hkern u1="&#xff;" u2="&#x29;" k="27" />
-<hkern u1="&#xff;" u2="&#x21;" k="16" />
-<hkern u1="&#x152;" u2="&#xf0;" k="43" />
-<hkern u1="&#x152;" u2="&#xef;" k="-35" />
-<hkern u1="&#x152;" u2="&#xee;" k="2" />
-<hkern u1="&#x152;" u2="&#xdf;" k="37" />
-<hkern u1="&#x152;" u2="x" k="27" />
-<hkern u1="&#x152;" u2="v" k="51" />
-<hkern u1="&#x152;" u2="q" k="41" />
-<hkern u1="&#x152;" u2="m" k="37" />
-<hkern u1="&#x152;" u2="b" k="29" />
-<hkern u1="&#x153;" u2="&#x7d;" k="66" />
-<hkern u1="&#x153;" u2="]" k="59" />
-<hkern u1="&#x153;" u2="\" k="45" />
-<hkern u1="&#x153;" u2="X" k="47" />
-<hkern u1="&#x153;" u2="V" k="199" />
-<hkern u1="&#x153;" u2="Q" k="23" />
-<hkern u1="&#x153;" u2="P" k="45" />
-<hkern u1="&#x153;" u2="M" k="25" />
-<hkern u1="&#x153;" u2="F" k="45" />
-<hkern u1="&#x153;" u2="B" k="45" />
-<hkern u1="&#x153;" u2="&#x3f;" k="43" />
-<hkern u1="&#x153;" u2="&#x2a;" k="51" />
-<hkern u1="&#x153;" u2="&#x29;" k="18" />
-<hkern u1="&#x153;" u2="&#x21;" k="18" />
-<hkern u1="&#x178;" u2="&#xfe;" k="45" />
-<hkern u1="&#x178;" u2="&#xfc;" k="150" />
-<hkern u1="&#x178;" u2="&#xf6;" k="102" />
-<hkern u1="&#x178;" u2="&#xf5;" k="156" />
-<hkern u1="&#x178;" u2="&#xf4;" k="219" />
-<hkern u1="&#x178;" u2="&#xf2;" k="215" />
-<hkern u1="&#x178;" u2="&#xf0;" k="68" />
-<hkern u1="&#x178;" u2="&#xef;" k="-109" />
-<hkern u1="&#x178;" u2="&#xee;" k="-2" />
-<hkern u1="&#x178;" u2="&#xec;" k="-8" />
-<hkern u1="&#x178;" u2="&#xeb;" k="100" />
-<hkern u1="&#x178;" u2="&#xea;" k="213" />
-<hkern u1="&#x178;" u2="&#xe8;" k="205" />
-<hkern u1="&#x178;" u2="&#xe4;" k="90" />
-<hkern u1="&#x178;" u2="&#xe3;" k="139" />
-<hkern u1="&#x178;" u2="&#xdf;" k="57" />
-<hkern u1="&#x178;" u2="&#x7d;" k="-37" />
-<hkern u1="&#x178;" u2="x" k="74" />
-<hkern u1="&#x178;" u2="v" k="68" />
-<hkern u1="&#x178;" u2="q" k="236" />
-<hkern u1="&#x178;" u2="m" k="162" />
-<hkern u1="&#x178;" u2="b" k="20" />
-<hkern u1="&#x178;" u2="]" k="-41" />
-<hkern u1="&#x178;" u2="\" k="-43" />
-<hkern u1="&#x178;" u2="X" k="-10" />
-<hkern u1="&#x178;" u2="V" k="-41" />
-<hkern u1="&#x178;" u2="Q" k="27" />
-<hkern u1="&#x178;" u2="M" k="33" />
-<hkern u1="&#x178;" u2="&#x40;" k="47" />
-<hkern u1="&#x178;" u2="&#x3b;" k="53" />
-<hkern u1="&#x178;" u2="&#x3a;" k="72" />
-<hkern u1="&#x178;" u2="&#x2f;" k="68" />
-<hkern u1="&#x178;" u2="&#x2e;" k="68" />
-<hkern u1="&#x178;" u2="&#x2c;" k="70" />
-<hkern u1="&#x178;" u2="&#x29;" k="-16" />
-<hkern u1="&#x2013;" u2="&#xde;" k="23" />
-<hkern u1="&#x2013;" u2="x" k="10" />
-<hkern u1="&#x2013;" u2="X" k="43" />
-<hkern u1="&#x2013;" u2="V" k="49" />
-<hkern u1="&#x2013;" u2="P" k="23" />
-<hkern u1="&#x2013;" u2="M" k="14" />
-<hkern u1="&#x2013;" u2="F" k="23" />
-<hkern u1="&#x2013;" u2="B" k="23" />
-<hkern u1="&#x2013;" u2="&#x39;" k="35" />
-<hkern u1="&#x2013;" u2="&#x38;" k="10" />
-<hkern u1="&#x2013;" u2="&#x37;" k="39" />
-<hkern u1="&#x2013;" u2="&#x35;" k="43" />
-<hkern u1="&#x2013;" u2="&#x33;" k="41" />
-<hkern u1="&#x2013;" u2="&#x32;" k="49" />
-<hkern u1="&#x2013;" u2="&#x31;" k="43" />
-<hkern u1="&#x2013;" u2="&#x30;" k="14" />
-<hkern u1="&#x2014;" u2="&#xde;" k="23" />
-<hkern u1="&#x2014;" u2="x" k="10" />
-<hkern u1="&#x2014;" u2="X" k="43" />
-<hkern u1="&#x2014;" u2="V" k="49" />
-<hkern u1="&#x2014;" u2="P" k="23" />
-<hkern u1="&#x2014;" u2="M" k="14" />
-<hkern u1="&#x2014;" u2="F" k="23" />
-<hkern u1="&#x2014;" u2="B" k="23" />
-<hkern u1="&#x2014;" u2="&#x39;" k="35" />
-<hkern u1="&#x2014;" u2="&#x38;" k="10" />
-<hkern u1="&#x2014;" u2="&#x37;" k="39" />
-<hkern u1="&#x2014;" u2="&#x35;" k="43" />
-<hkern u1="&#x2014;" u2="&#x33;" k="41" />
-<hkern u1="&#x2014;" u2="&#x32;" k="49" />
-<hkern u1="&#x2014;" u2="&#x31;" k="43" />
-<hkern u1="&#x2014;" u2="&#x30;" k="14" />
-<hkern u1="&#x2018;" u2="&#xf0;" k="27" />
-<hkern u1="&#x2018;" u2="&#xef;" k="-12" />
-<hkern u1="&#x2018;" u2="&#xde;" k="12" />
-<hkern u1="&#x2018;" u2="q" k="47" />
-<hkern u1="&#x2018;" u2="m" k="18" />
-<hkern u1="&#x2018;" u2="P" k="12" />
-<hkern u1="&#x2018;" u2="M" k="23" />
-<hkern u1="&#x2018;" u2="F" k="12" />
-<hkern u1="&#x2018;" u2="B" k="12" />
-<hkern u1="&#x2018;" u2="&#x2e;" k="141" />
-<hkern u1="&#x201a;" u2="&#xde;" k="18" />
-<hkern u1="&#x201a;" u2="v" k="41" />
-<hkern u1="&#x201a;" u2="V" k="82" />
-<hkern u1="&#x201a;" u2="Q" k="49" />
-<hkern u1="&#x201a;" u2="P" k="18" />
-<hkern u1="&#x201a;" u2="F" k="18" />
-<hkern u1="&#x201a;" u2="B" k="18" />
-<hkern u1="&#x201c;" u2="&#xf0;" k="27" />
-<hkern u1="&#x201c;" u2="&#xef;" k="-12" />
-<hkern u1="&#x201c;" u2="&#xde;" k="12" />
-<hkern u1="&#x201c;" u2="q" k="47" />
-<hkern u1="&#x201c;" u2="m" k="18" />
-<hkern u1="&#x201c;" u2="P" k="12" />
-<hkern u1="&#x201c;" u2="M" k="23" />
-<hkern u1="&#x201c;" u2="F" k="12" />
-<hkern u1="&#x201c;" u2="B" k="12" />
-<hkern u1="&#x201c;" u2="&#x2e;" k="141" />
-<hkern u1="&#x201e;" u2="&#xde;" k="18" />
-<hkern u1="&#x201e;" u2="v" k="41" />
-<hkern u1="&#x201e;" u2="V" k="82" />
-<hkern u1="&#x201e;" u2="Q" k="49" />
-<hkern u1="&#x201e;" u2="P" k="18" />
-<hkern u1="&#x201e;" u2="F" k="18" />
-<hkern u1="&#x201e;" u2="B" k="18" />
-<hkern u1="&#x2039;" u2="&#xde;" k="10" />
-<hkern u1="&#x2039;" u2="V" k="29" />
-<hkern u1="&#x2039;" u2="P" k="10" />
-<hkern u1="&#x2039;" u2="F" k="10" />
-<hkern u1="&#x2039;" u2="B" k="10" />
-<hkern u1="&#x203a;" u2="&#xde;" k="12" />
-<hkern u1="&#x203a;" u2="x" k="16" />
-<hkern u1="&#x203a;" u2="X" k="18" />
-<hkern u1="&#x203a;" u2="V" k="72" />
-<hkern u1="&#x203a;" u2="P" k="12" />
-<hkern u1="&#x203a;" u2="F" k="12" />
-<hkern u1="&#x203a;" u2="B" k="12" />
-<hkern g1="uniFB01" u2="&#xef;" k="-35" />
-<hkern g1="uniFB01" u2="&#x7d;" k="10" />
-<hkern g1="uniFB01" u2="\" k="10" />
-<hkern g1="uniFB01" u2="X" k="33" />
-<hkern g1="uniFB01" u2="V" k="27" />
-<hkern g1="uniFB01" u2="Q" k="33" />
-<hkern g1="uniFB01" u2="P" k="27" />
-<hkern g1="uniFB01" u2="M" k="23" />
-<hkern g1="uniFB01" u2="F" k="27" />
-<hkern g1="uniFB01" u2="B" k="27" />
-<hkern g1="uniFB01" u2="&#x21;" k="14" />
-<hkern g1="uniFB02" u2="&#xef;" k="-18" />
-<hkern g1="uniFB02" u2="X" k="33" />
-<hkern g1="uniFB02" u2="V" k="20" />
-<hkern g1="uniFB02" u2="Q" k="29" />
-<hkern g1="uniFB02" u2="P" k="27" />
-<hkern g1="uniFB02" u2="M" k="23" />
-<hkern g1="uniFB02" u2="F" k="27" />
-<hkern g1="uniFB02" u2="B" k="27" />
-<hkern g1="uniFB02" u2="&#x21;" k="14" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="j" 	k="8" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="n,ntilde" 	k="10" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteright,quotedblright" 	k="45" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="16" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="l" 	k="10" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="d" 	k="16" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="J" 	k="-51" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="t" 	k="31" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="10" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="y,yacute,ydieresis" 	k="57" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="76" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="k" 	k="10" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quotedbl,quotesingle" 	k="51" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="c,ccedilla" 	k="16" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="106" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="p,thorn" 	k="8" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="C,Ccedilla" 	k="10" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="hyphen,endash,emdash" 	k="16" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="14" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="f,uniFB01,uniFB02" 	k="25" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="25" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="r" 	k="10" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="w" 	k="49" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="20" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="G" 	k="10" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="W" 	k="61" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="h" 	k="10" />
-<hkern g1="C,Ccedilla" 	g2="j" 	k="23" />
-<hkern g1="C,Ccedilla" 	g2="n,ntilde" 	k="35" />
-<hkern g1="C,Ccedilla" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="31" />
-<hkern g1="C,Ccedilla" 	g2="l" 	k="23" />
-<hkern g1="C,Ccedilla" 	g2="d" 	k="31" />
-<hkern g1="C,Ccedilla" 	g2="J" 	k="-55" />
-<hkern g1="C,Ccedilla" 	g2="t" 	k="63" />
-<hkern g1="C,Ccedilla" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="6" />
-<hkern g1="C,Ccedilla" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="23" />
-<hkern g1="C,Ccedilla" 	g2="y,yacute,ydieresis" 	k="68" />
-<hkern g1="C,Ccedilla" 	g2="k" 	k="23" />
-<hkern g1="C,Ccedilla" 	g2="c,ccedilla" 	k="31" />
-<hkern g1="C,Ccedilla" 	g2="p,thorn" 	k="35" />
-<hkern g1="C,Ccedilla" 	g2="C,Ccedilla" 	k="6" />
-<hkern g1="C,Ccedilla" 	g2="hyphen,endash,emdash" 	k="39" />
-<hkern g1="C,Ccedilla" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="31" />
-<hkern g1="C,Ccedilla" 	g2="f,uniFB01,uniFB02" 	k="55" />
-<hkern g1="C,Ccedilla" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="43" />
-<hkern g1="C,Ccedilla" 	g2="r" 	k="35" />
-<hkern g1="C,Ccedilla" 	g2="w" 	k="68" />
-<hkern g1="C,Ccedilla" 	g2="G" 	k="6" />
-<hkern g1="C,Ccedilla" 	g2="h" 	k="23" />
-<hkern g1="C,Ccedilla" 	g2="s" 	k="41" />
-<hkern g1="C,Ccedilla" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="18" />
-<hkern g1="C,Ccedilla" 	g2="g" 	k="25" />
-<hkern g1="C,Ccedilla" 	g2="z" 	k="41" />
-<hkern g1="D,Eth" 	g2="j" 	k="33" />
-<hkern g1="D,Eth" 	g2="n,ntilde" 	k="33" />
-<hkern g1="D,Eth" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="29" />
-<hkern g1="D,Eth" 	g2="l" 	k="31" />
-<hkern g1="D,Eth" 	g2="d" 	k="29" />
-<hkern g1="D,Eth" 	g2="J" 	k="43" />
-<hkern g1="D,Eth" 	g2="t" 	k="16" />
-<hkern g1="D,Eth" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="33" />
-<hkern g1="D,Eth" 	g2="T" 	k="16" />
-<hkern g1="D,Eth" 	g2="k" 	k="31" />
-<hkern g1="D,Eth" 	g2="quotedbl,quotesingle" 	k="18" />
-<hkern g1="D,Eth" 	g2="c,ccedilla" 	k="29" />
-<hkern g1="D,Eth" 	g2="Y,Yacute,Ydieresis" 	k="27" />
-<hkern g1="D,Eth" 	g2="p,thorn" 	k="33" />
-<hkern g1="D,Eth" 	g2="hyphen,endash,emdash" 	k="10" />
-<hkern g1="D,Eth" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="29" />
-<hkern g1="D,Eth" 	g2="f,uniFB01,uniFB02" 	k="18" />
-<hkern g1="D,Eth" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="29" />
-<hkern g1="D,Eth" 	g2="r" 	k="33" />
-<hkern g1="D,Eth" 	g2="w" 	k="12" />
-<hkern g1="D,Eth" 	g2="W" 	k="10" />
-<hkern g1="D,Eth" 	g2="h" 	k="31" />
-<hkern g1="D,Eth" 	g2="s" 	k="25" />
-<hkern g1="D,Eth" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="39" />
-<hkern g1="D,Eth" 	g2="g" 	k="59" />
-<hkern g1="D,Eth" 	g2="z" 	k="25" />
-<hkern g1="D,Eth" 	g2="quotesinglbase,quotedblbase" 	k="45" />
-<hkern g1="D,Eth" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="12" />
-<hkern g1="D,Eth" 	g2="Z" 	k="14" />
-<hkern g1="D,Eth" 	g2="AE" 	k="20" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="j" 	k="29" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="n,ntilde" 	k="37" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="41" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="l" 	k="29" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="d" 	k="39" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="J" 	k="-14" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="t" 	k="49" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="29" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="y,yacute,ydieresis" 	k="53" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="k" 	k="29" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="c,ccedilla" 	k="41" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="p,thorn" 	k="37" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="C,Ccedilla" 	k="6" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="hyphen,endash,emdash" 	k="41" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="41" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="f,uniFB01,uniFB02" 	k="49" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="47" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="r" 	k="37" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="w" 	k="55" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="G" 	k="6" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="h" 	k="29" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="s" 	k="33" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="27" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="g" 	k="23" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="z" 	k="29" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="guillemotleft,guilsinglleft" 	k="12" />
-<hkern g1="G" 	g2="j" 	k="20" />
-<hkern g1="G" 	g2="n,ntilde" 	k="23" />
-<hkern g1="G" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="16" />
-<hkern g1="G" 	g2="l" 	k="23" />
-<hkern g1="G" 	g2="d" 	k="16" />
-<hkern g1="G" 	g2="t" 	k="23" />
-<hkern g1="G" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
-<hkern g1="G" 	g2="y,yacute,ydieresis" 	k="23" />
-<hkern g1="G" 	g2="k" 	k="23" />
-<hkern g1="G" 	g2="c,ccedilla" 	k="16" />
-<hkern g1="G" 	g2="p,thorn" 	k="23" />
-<hkern g1="G" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="16" />
-<hkern g1="G" 	g2="f,uniFB01,uniFB02" 	k="25" />
-<hkern g1="G" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="25" />
-<hkern g1="G" 	g2="r" 	k="23" />
-<hkern g1="G" 	g2="w" 	k="27" />
-<hkern g1="G" 	g2="h" 	k="23" />
-<hkern g1="G" 	g2="s" 	k="16" />
-<hkern g1="G" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="18" />
-<hkern g1="G" 	g2="g" 	k="23" />
-<hkern g1="G" 	g2="z" 	k="20" />
-<hkern g1="H" 	g2="j" 	k="27" />
-<hkern g1="H" 	g2="n,ntilde" 	k="27" />
-<hkern g1="H" 	g2="quoteright,quotedblright" 	k="12" />
-<hkern g1="H" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="43" />
-<hkern g1="H" 	g2="l" 	k="27" />
-<hkern g1="H" 	g2="d" 	k="41" />
-<hkern g1="H" 	g2="t" 	k="45" />
-<hkern g1="H" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="27" />
-<hkern g1="H" 	g2="y,yacute,ydieresis" 	k="43" />
-<hkern g1="H" 	g2="k" 	k="27" />
-<hkern g1="H" 	g2="quotedbl,quotesingle" 	k="16" />
-<hkern g1="H" 	g2="c,ccedilla" 	k="43" />
-<hkern g1="H" 	g2="p,thorn" 	k="27" />
-<hkern g1="H" 	g2="hyphen,endash,emdash" 	k="23" />
-<hkern g1="H" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="41" />
-<hkern g1="H" 	g2="f,uniFB01,uniFB02" 	k="43" />
-<hkern g1="H" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="31" />
-<hkern g1="H" 	g2="r" 	k="27" />
-<hkern g1="H" 	g2="w" 	k="49" />
-<hkern g1="H" 	g2="W" 	k="6" />
-<hkern g1="H" 	g2="h" 	k="27" />
-<hkern g1="H" 	g2="s" 	k="47" />
-<hkern g1="H" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="49" />
-<hkern g1="H" 	g2="g" 	k="47" />
-<hkern g1="H" 	g2="z" 	k="49" />
-<hkern g1="H" 	g2="quotesinglbase,quotedblbase" 	k="18" />
-<hkern g1="H" 	g2="guillemotleft,guilsinglleft" 	k="12" />
-<hkern g1="H" 	g2="guillemotright,guilsinglright" 	k="10" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="j" 	k="27" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="n,ntilde" 	k="27" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="quoteright,quotedblright" 	k="12" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="43" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="l" 	k="27" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="d" 	k="41" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="t" 	k="45" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="27" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="y,yacute,ydieresis" 	k="43" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="k" 	k="27" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="quotedbl,quotesingle" 	k="16" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="c,ccedilla" 	k="43" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="p,thorn" 	k="27" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="hyphen,endash,emdash" 	k="23" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="41" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="f,uniFB01,uniFB02" 	k="43" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="31" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="r" 	k="27" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="w" 	k="49" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="W" 	k="6" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="h" 	k="27" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="s" 	k="47" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="49" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="g" 	k="47" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="z" 	k="49" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="quotesinglbase,quotedblbase" 	k="18" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="guillemotleft,guilsinglleft" 	k="12" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="guillemotright,guilsinglright" 	k="10" />
-<hkern g1="J" 	g2="j" 	k="12" />
-<hkern g1="J" 	g2="n,ntilde" 	k="10" />
-<hkern g1="J" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="25" />
-<hkern g1="J" 	g2="l" 	k="12" />
-<hkern g1="J" 	g2="d" 	k="25" />
-<hkern g1="J" 	g2="t" 	k="25" />
-<hkern g1="J" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="12" />
-<hkern g1="J" 	g2="y,yacute,ydieresis" 	k="10" />
-<hkern g1="J" 	g2="k" 	k="12" />
-<hkern g1="J" 	g2="c,ccedilla" 	k="25" />
-<hkern g1="J" 	g2="p,thorn" 	k="10" />
-<hkern g1="J" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="25" />
-<hkern g1="J" 	g2="f,uniFB01,uniFB02" 	k="27" />
-<hkern g1="J" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="18" />
-<hkern g1="J" 	g2="r" 	k="10" />
-<hkern g1="J" 	g2="w" 	k="18" />
-<hkern g1="J" 	g2="h" 	k="12" />
-<hkern g1="J" 	g2="s" 	k="27" />
-<hkern g1="J" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="29" />
-<hkern g1="J" 	g2="g" 	k="27" />
-<hkern g1="J" 	g2="z" 	k="29" />
-<hkern g1="K" 	g2="j" 	k="31" />
-<hkern g1="K" 	g2="n,ntilde" 	k="37" />
-<hkern g1="K" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="59" />
-<hkern g1="K" 	g2="l" 	k="33" />
-<hkern g1="K" 	g2="d" 	k="57" />
-<hkern g1="K" 	g2="J" 	k="-27" />
-<hkern g1="K" 	g2="t" 	k="74" />
-<hkern g1="K" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
-<hkern g1="K" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="31" />
-<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="74" />
-<hkern g1="K" 	g2="k" 	k="33" />
-<hkern g1="K" 	g2="c,ccedilla" 	k="59" />
-<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="-8" />
-<hkern g1="K" 	g2="p,thorn" 	k="35" />
-<hkern g1="K" 	g2="C,Ccedilla" 	k="41" />
-<hkern g1="K" 	g2="hyphen,endash,emdash" 	k="47" />
-<hkern g1="K" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="57" />
-<hkern g1="K" 	g2="f,uniFB01,uniFB02" 	k="63" />
-<hkern g1="K" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="63" />
-<hkern g1="K" 	g2="r" 	k="37" />
-<hkern g1="K" 	g2="w" 	k="72" />
-<hkern g1="K" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="16" />
-<hkern g1="K" 	g2="G" 	k="43" />
-<hkern g1="K" 	g2="h" 	k="33" />
-<hkern g1="K" 	g2="s" 	k="27" />
-<hkern g1="K" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="31" />
-<hkern g1="K" 	g2="z" 	k="18" />
-<hkern g1="K" 	g2="guillemotleft,guilsinglleft" 	k="16" />
-<hkern g1="K" 	g2="D,Eth" 	k="6" />
-<hkern g1="K" 	g2="K" 	k="8" />
-<hkern g1="K" 	g2="H" 	k="6" />
-<hkern g1="K" 	g2="R" 	k="6" />
-<hkern g1="K" 	g2="L" 	k="6" />
-<hkern g1="K" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="6" />
-<hkern g1="K" 	g2="N,Ntilde" 	k="6" />
-<hkern g1="K" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="6" />
-<hkern g1="L" 	g2="j" 	k="8" />
-<hkern g1="L" 	g2="n,ntilde" 	k="10" />
-<hkern g1="L" 	g2="quoteright,quotedblright" 	k="72" />
-<hkern g1="L" 	g2="l" 	k="10" />
-<hkern g1="L" 	g2="J" 	k="-100" />
-<hkern g1="L" 	g2="t" 	k="31" />
-<hkern g1="L" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="14" />
-<hkern g1="L" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="10" />
-<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="55" />
-<hkern g1="L" 	g2="T" 	k="82" />
-<hkern g1="L" 	g2="k" 	k="10" />
-<hkern g1="L" 	g2="quotedbl,quotesingle" 	k="68" />
-<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="100" />
-<hkern g1="L" 	g2="p,thorn" 	k="8" />
-<hkern g1="L" 	g2="C,Ccedilla" 	k="14" />
-<hkern g1="L" 	g2="hyphen,endash,emdash" 	k="51" />
-<hkern g1="L" 	g2="f,uniFB01,uniFB02" 	k="29" />
-<hkern g1="L" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="18" />
-<hkern g1="L" 	g2="r" 	k="10" />
-<hkern g1="L" 	g2="w" 	k="45" />
-<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="20" />
-<hkern g1="L" 	g2="G" 	k="16" />
-<hkern g1="L" 	g2="W" 	k="84" />
-<hkern g1="L" 	g2="h" 	k="10" />
-<hkern g1="L" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-66" />
-<hkern g1="L" 	g2="Z" 	k="-10" />
-<hkern g1="L" 	g2="AE" 	k="-90" />
-<hkern g1="N,Ntilde" 	g2="j" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="n,ntilde" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="quoteright,quotedblright" 	k="12" />
-<hkern g1="N,Ntilde" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="45" />
-<hkern g1="N,Ntilde" 	g2="l" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="d" 	k="43" />
-<hkern g1="N,Ntilde" 	g2="t" 	k="45" />
-<hkern g1="N,Ntilde" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="y,yacute,ydieresis" 	k="43" />
-<hkern g1="N,Ntilde" 	g2="k" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="quotedbl,quotesingle" 	k="16" />
-<hkern g1="N,Ntilde" 	g2="c,ccedilla" 	k="45" />
-<hkern g1="N,Ntilde" 	g2="p,thorn" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="hyphen,endash,emdash" 	k="23" />
-<hkern g1="N,Ntilde" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="43" />
-<hkern g1="N,Ntilde" 	g2="f,uniFB01,uniFB02" 	k="43" />
-<hkern g1="N,Ntilde" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="33" />
-<hkern g1="N,Ntilde" 	g2="r" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="w" 	k="51" />
-<hkern g1="N,Ntilde" 	g2="W" 	k="6" />
-<hkern g1="N,Ntilde" 	g2="h" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="s" 	k="47" />
-<hkern g1="N,Ntilde" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="51" />
-<hkern g1="N,Ntilde" 	g2="g" 	k="47" />
-<hkern g1="N,Ntilde" 	g2="z" 	k="49" />
-<hkern g1="N,Ntilde" 	g2="quotesinglbase,quotedblbase" 	k="18" />
-<hkern g1="N,Ntilde" 	g2="guillemotleft,guilsinglleft" 	k="12" />
-<hkern g1="N,Ntilde" 	g2="guillemotright,guilsinglright" 	k="10" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="j" 	k="33" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="n,ntilde" 	k="33" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="27" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="l" 	k="29" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="d" 	k="27" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="J" 	k="33" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="t" 	k="16" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="33" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="T" 	k="14" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="k" 	k="29" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="quotedbl,quotesingle" 	k="18" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="c,ccedilla" 	k="27" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="Y,Yacute,Ydieresis" 	k="25" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="p,thorn" 	k="33" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="27" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="f,uniFB01,uniFB02" 	k="18" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="27" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="r" 	k="33" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="w" 	k="12" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="W" 	k="10" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="h" 	k="29" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="s" 	k="23" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="37" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="g" 	k="57" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="z" 	k="25" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="quotesinglbase,quotedblbase" 	k="43" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="10" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="Z" 	k="12" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="AE" 	k="18" />
-<hkern g1="R" 	g2="j" 	k="47" />
-<hkern g1="R" 	g2="n,ntilde" 	k="55" />
-<hkern g1="R" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="63" />
-<hkern g1="R" 	g2="l" 	k="37" />
-<hkern g1="R" 	g2="d" 	k="63" />
-<hkern g1="R" 	g2="t" 	k="47" />
-<hkern g1="R" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="47" />
-<hkern g1="R" 	g2="y,yacute,ydieresis" 	k="35" />
-<hkern g1="R" 	g2="k" 	k="37" />
-<hkern g1="R" 	g2="c,ccedilla" 	k="63" />
-<hkern g1="R" 	g2="p,thorn" 	k="55" />
-<hkern g1="R" 	g2="hyphen,endash,emdash" 	k="47" />
-<hkern g1="R" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="63" />
-<hkern g1="R" 	g2="f,uniFB01,uniFB02" 	k="49" />
-<hkern g1="R" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="55" />
-<hkern g1="R" 	g2="r" 	k="55" />
-<hkern g1="R" 	g2="w" 	k="41" />
-<hkern g1="R" 	g2="h" 	k="37" />
-<hkern g1="R" 	g2="s" 	k="47" />
-<hkern g1="R" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="51" />
-<hkern g1="R" 	g2="g" 	k="39" />
-<hkern g1="R" 	g2="z" 	k="35" />
-<hkern g1="R" 	g2="quotesinglbase,quotedblbase" 	k="10" />
-<hkern g1="R" 	g2="guillemotleft,guilsinglleft" 	k="25" />
-<hkern g1="S" 	g2="j" 	k="23" />
-<hkern g1="S" 	g2="n,ntilde" 	k="25" />
-<hkern g1="S" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="12" />
-<hkern g1="S" 	g2="l" 	k="25" />
-<hkern g1="S" 	g2="d" 	k="12" />
-<hkern g1="S" 	g2="t" 	k="31" />
-<hkern g1="S" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="23" />
-<hkern g1="S" 	g2="y,yacute,ydieresis" 	k="37" />
-<hkern g1="S" 	g2="k" 	k="25" />
-<hkern g1="S" 	g2="c,ccedilla" 	k="10" />
-<hkern g1="S" 	g2="p,thorn" 	k="25" />
-<hkern g1="S" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="12" />
-<hkern g1="S" 	g2="f,uniFB01,uniFB02" 	k="35" />
-<hkern g1="S" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="23" />
-<hkern g1="S" 	g2="r" 	k="25" />
-<hkern g1="S" 	g2="w" 	k="35" />
-<hkern g1="S" 	g2="h" 	k="25" />
-<hkern g1="S" 	g2="s" 	k="20" />
-<hkern g1="S" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="16" />
-<hkern g1="S" 	g2="g" 	k="29" />
-<hkern g1="S" 	g2="z" 	k="33" />
-<hkern g1="T" 	g2="j" 	k="23" />
-<hkern g1="T" 	g2="n,ntilde" 	k="121" />
-<hkern g1="T" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="156" />
-<hkern g1="T" 	g2="l" 	k="23" />
-<hkern g1="T" 	g2="d" 	k="156" />
-<hkern g1="T" 	g2="J" 	k="109" />
-<hkern g1="T" 	g2="t" 	k="68" />
-<hkern g1="T" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="14" />
-<hkern g1="T" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="23" />
-<hkern g1="T" 	g2="y,yacute,ydieresis" 	k="68" />
-<hkern g1="T" 	g2="T" 	k="-27" />
-<hkern g1="T" 	g2="k" 	k="23" />
-<hkern g1="T" 	g2="c,ccedilla" 	k="158" />
-<hkern g1="T" 	g2="Y,Yacute,Ydieresis" 	k="-68" />
-<hkern g1="T" 	g2="p,thorn" 	k="121" />
-<hkern g1="T" 	g2="C,Ccedilla" 	k="14" />
-<hkern g1="T" 	g2="hyphen,endash,emdash" 	k="49" />
-<hkern g1="T" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="158" />
-<hkern g1="T" 	g2="f,uniFB01,uniFB02" 	k="68" />
-<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="127" />
-<hkern g1="T" 	g2="r" 	k="121" />
-<hkern g1="T" 	g2="w" 	k="80" />
-<hkern g1="T" 	g2="G" 	k="14" />
-<hkern g1="T" 	g2="h" 	k="23" />
-<hkern g1="T" 	g2="s" 	k="150" />
-<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="147" />
-<hkern g1="T" 	g2="g" 	k="162" />
-<hkern g1="T" 	g2="z" 	k="127" />
-<hkern g1="T" 	g2="quotesinglbase,quotedblbase" 	k="55" />
-<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="78" />
-<hkern g1="T" 	g2="AE" 	k="80" />
-<hkern g1="T" 	g2="guillemotleft,guilsinglleft" 	k="68" />
-<hkern g1="T" 	g2="guillemotright,guilsinglright" 	k="37" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="j" 	k="45" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="n,ntilde" 	k="43" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="55" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="l" 	k="45" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="d" 	k="55" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="47" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="t" 	k="47" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="45" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="y,yacute,ydieresis" 	k="35" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="k" 	k="45" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="quotedbl,quotesingle" 	k="12" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="c,ccedilla" 	k="55" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="p,thorn" 	k="43" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="hyphen,endash,emdash" 	k="23" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="55" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="f,uniFB01,uniFB02" 	k="53" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="43" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="r" 	k="43" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="w" 	k="43" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="h" 	k="45" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="s" 	k="55" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="53" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="g" 	k="66" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="z" 	k="55" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="quotesinglbase,quotedblbase" 	k="47" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="AE" 	k="27" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="guillemotleft,guilsinglleft" 	k="12" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="guillemotright,guilsinglright" 	k="12" />
-<hkern g1="W" 	g2="j" 	k="43" />
-<hkern g1="W" 	g2="n,ntilde" 	k="98" />
-<hkern g1="W" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="117" />
-<hkern g1="W" 	g2="l" 	k="39" />
-<hkern g1="W" 	g2="d" 	k="115" />
-<hkern g1="W" 	g2="J" 	k="66" />
-<hkern g1="W" 	g2="t" 	k="68" />
-<hkern g1="W" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
-<hkern g1="W" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="43" />
-<hkern g1="W" 	g2="y,yacute,ydieresis" 	k="61" />
-<hkern g1="W" 	g2="k" 	k="39" />
-<hkern g1="W" 	g2="c,ccedilla" 	k="119" />
-<hkern g1="W" 	g2="Y,Yacute,Ydieresis" 	k="-14" />
-<hkern g1="W" 	g2="p,thorn" 	k="98" />
-<hkern g1="W" 	g2="C,Ccedilla" 	k="8" />
-<hkern g1="W" 	g2="hyphen,endash,emdash" 	k="45" />
-<hkern g1="W" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="117" />
-<hkern g1="W" 	g2="f,uniFB01,uniFB02" 	k="68" />
-<hkern g1="W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="109" />
-<hkern g1="W" 	g2="r" 	k="98" />
-<hkern g1="W" 	g2="w" 	k="68" />
-<hkern g1="W" 	g2="G" 	k="10" />
-<hkern g1="W" 	g2="h" 	k="39" />
-<hkern g1="W" 	g2="s" 	k="121" />
-<hkern g1="W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="127" />
-<hkern g1="W" 	g2="g" 	k="137" />
-<hkern g1="W" 	g2="z" 	k="66" />
-<hkern g1="W" 	g2="quotesinglbase,quotedblbase" 	k="68" />
-<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="61" />
-<hkern g1="W" 	g2="AE" 	k="84" />
-<hkern g1="W" 	g2="guillemotleft,guilsinglleft" 	k="47" />
-<hkern g1="W" 	g2="guillemotright,guilsinglright" 	k="29" />
-<hkern g1="W" 	g2="D,Eth" 	k="6" />
-<hkern g1="W" 	g2="K" 	k="6" />
-<hkern g1="W" 	g2="H" 	k="6" />
-<hkern g1="W" 	g2="R" 	k="6" />
-<hkern g1="W" 	g2="L" 	k="6" />
-<hkern g1="W" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="6" />
-<hkern g1="W" 	g2="N,Ntilde" 	k="6" />
-<hkern g1="W" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="6" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="j" 	k="27" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="n,ntilde" 	k="162" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="quoteright,quotedblright" 	k="-14" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="238" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="l" 	k="20" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="d" 	k="238" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="88" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="68" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="27" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="27" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="68" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="T" 	k="-68" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="k" 	k="20" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="c,ccedilla" 	k="238" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="-43" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="p,thorn" 	k="162" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="C,Ccedilla" 	k="27" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,endash,emdash" 	k="63" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="238" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="f,uniFB01,uniFB02" 	k="66" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="166" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="r" 	k="162" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="70" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="G" 	k="27" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="W" 	k="-14" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="h" 	k="20" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="195" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="188" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="244" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="127" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="quotesinglbase,quotedblbase" 	k="68" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="113" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="AE" 	k="156" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="78" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotright,guilsinglright" 	k="41" />
-<hkern g1="Z" 	g2="j" 	k="31" />
-<hkern g1="Z" 	g2="n,ntilde" 	k="43" />
-<hkern g1="Z" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="45" />
-<hkern g1="Z" 	g2="l" 	k="31" />
-<hkern g1="Z" 	g2="d" 	k="43" />
-<hkern g1="Z" 	g2="J" 	k="-16" />
-<hkern g1="Z" 	g2="t" 	k="66" />
-<hkern g1="Z" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
-<hkern g1="Z" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="31" />
-<hkern g1="Z" 	g2="y,yacute,ydieresis" 	k="66" />
-<hkern g1="Z" 	g2="k" 	k="31" />
-<hkern g1="Z" 	g2="c,ccedilla" 	k="45" />
-<hkern g1="Z" 	g2="Y,Yacute,Ydieresis" 	k="-14" />
-<hkern g1="Z" 	g2="p,thorn" 	k="43" />
-<hkern g1="Z" 	g2="C,Ccedilla" 	k="12" />
-<hkern g1="Z" 	g2="hyphen,endash,emdash" 	k="68" />
-<hkern g1="Z" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="43" />
-<hkern g1="Z" 	g2="f,uniFB01,uniFB02" 	k="66" />
-<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="57" />
-<hkern g1="Z" 	g2="r" 	k="43" />
-<hkern g1="Z" 	g2="w" 	k="66" />
-<hkern g1="Z" 	g2="G" 	k="12" />
-<hkern g1="Z" 	g2="h" 	k="31" />
-<hkern g1="Z" 	g2="s" 	k="39" />
-<hkern g1="Z" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="27" />
-<hkern g1="Z" 	g2="g" 	k="23" />
-<hkern g1="Z" 	g2="z" 	k="33" />
-<hkern g1="Z" 	g2="AE" 	k="-10" />
-<hkern g1="Z" 	g2="guillemotleft,guilsinglleft" 	k="12" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="quoteright,quotedblright" 	k="47" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="37" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="T" 	k="156" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="quotedbl,quotesingle" 	k="88" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="Y,Yacute,Ydieresis" 	k="223" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="C,Ccedilla" 	k="37" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="w" 	k="6" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="49" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="G" 	k="37" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="W" 	k="111" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="Z" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="D,Eth" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="K" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="H" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="R" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="L" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="N,Ntilde" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="S" 	k="41" />
-<hkern g1="b,thorn" 	g2="quoteright,quotedblright" 	k="51" />
-<hkern g1="b,thorn" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="27" />
-<hkern g1="b,thorn" 	g2="T" 	k="156" />
-<hkern g1="b,thorn" 	g2="quotedbl,quotesingle" 	k="78" />
-<hkern g1="b,thorn" 	g2="Y,Yacute,Ydieresis" 	k="231" />
-<hkern g1="b,thorn" 	g2="C,Ccedilla" 	k="27" />
-<hkern g1="b,thorn" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="53" />
-<hkern g1="b,thorn" 	g2="G" 	k="27" />
-<hkern g1="b,thorn" 	g2="W" 	k="115" />
-<hkern g1="b,thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="16" />
-<hkern g1="b,thorn" 	g2="Z" 	k="41" />
-<hkern g1="b,thorn" 	g2="D,Eth" 	k="41" />
-<hkern g1="b,thorn" 	g2="K" 	k="41" />
-<hkern g1="b,thorn" 	g2="H" 	k="41" />
-<hkern g1="b,thorn" 	g2="R" 	k="41" />
-<hkern g1="b,thorn" 	g2="L" 	k="41" />
-<hkern g1="b,thorn" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="41" />
-<hkern g1="b,thorn" 	g2="N,Ntilde" 	k="41" />
-<hkern g1="b,thorn" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="41" />
-<hkern g1="b,thorn" 	g2="S" 	k="41" />
-<hkern g1="c,ccedilla" 	g2="quoteright,quotedblright" 	k="41" />
-<hkern g1="c,ccedilla" 	g2="J" 	k="-37" />
-<hkern g1="c,ccedilla" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="27" />
-<hkern g1="c,ccedilla" 	g2="T" 	k="190" />
-<hkern g1="c,ccedilla" 	g2="quotedbl,quotesingle" 	k="84" />
-<hkern g1="c,ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="227" />
-<hkern g1="c,ccedilla" 	g2="C,Ccedilla" 	k="27" />
-<hkern g1="c,ccedilla" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="55" />
-<hkern g1="c,ccedilla" 	g2="G" 	k="27" />
-<hkern g1="c,ccedilla" 	g2="W" 	k="119" />
-<hkern g1="c,ccedilla" 	g2="Z" 	k="23" />
-<hkern g1="c,ccedilla" 	g2="D,Eth" 	k="45" />
-<hkern g1="c,ccedilla" 	g2="K" 	k="45" />
-<hkern g1="c,ccedilla" 	g2="H" 	k="45" />
-<hkern g1="c,ccedilla" 	g2="R" 	k="45" />
-<hkern g1="c,ccedilla" 	g2="L" 	k="45" />
-<hkern g1="c,ccedilla" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="45" />
-<hkern g1="c,ccedilla" 	g2="N,Ntilde" 	k="45" />
-<hkern g1="c,ccedilla" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="45" />
-<hkern g1="c,ccedilla" 	g2="S" 	k="29" />
-<hkern g1="d" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="29" />
-<hkern g1="d" 	g2="T" 	k="23" />
-<hkern g1="d" 	g2="Y,Yacute,Ydieresis" 	k="20" />
-<hkern g1="d" 	g2="C,Ccedilla" 	k="29" />
-<hkern g1="d" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="45" />
-<hkern g1="d" 	g2="G" 	k="29" />
-<hkern g1="d" 	g2="W" 	k="39" />
-<hkern g1="d" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="10" />
-<hkern g1="d" 	g2="Z" 	k="27" />
-<hkern g1="d" 	g2="D,Eth" 	k="27" />
-<hkern g1="d" 	g2="K" 	k="27" />
-<hkern g1="d" 	g2="H" 	k="27" />
-<hkern g1="d" 	g2="R" 	k="27" />
-<hkern g1="d" 	g2="L" 	k="27" />
-<hkern g1="d" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="27" />
-<hkern g1="d" 	g2="N,Ntilde" 	k="27" />
-<hkern g1="d" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="27" />
-<hkern g1="d" 	g2="S" 	k="29" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteright,quotedblright" 	k="49" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="23" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="T" 	k="162" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quotedbl,quotesingle" 	k="88" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="221" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="C,Ccedilla" 	k="20" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="47" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="G" 	k="23" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="W" 	k="141" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="10" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Z" 	k="35" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="D,Eth" 	k="45" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="K" 	k="45" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="H" 	k="45" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="R" 	k="45" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="L" 	k="45" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="45" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="N,Ntilde" 	k="45" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="45" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="S" 	k="49" />
-<hkern g1="f" 	g2="j" 	k="-35" />
-<hkern g1="f" 	g2="quoteright,quotedblright" 	k="-109" />
-<hkern g1="f" 	g2="J" 	k="63" />
-<hkern g1="f" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-37" />
-<hkern g1="f" 	g2="T" 	k="-127" />
-<hkern g1="f" 	g2="quotedbl,quotesingle" 	k="-80" />
-<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-162" />
-<hkern g1="f" 	g2="G" 	k="6" />
-<hkern g1="f" 	g2="W" 	k="-92" />
-<hkern g1="f" 	g2="g" 	k="12" />
-<hkern g1="f" 	g2="quotesinglbase,quotedblbase" 	k="12" />
-<hkern g1="f" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="63" />
-<hkern g1="f" 	g2="Z" 	k="-45" />
-<hkern g1="f" 	g2="D,Eth" 	k="6" />
-<hkern g1="f" 	g2="K" 	k="6" />
-<hkern g1="f" 	g2="H" 	k="6" />
-<hkern g1="f" 	g2="R" 	k="6" />
-<hkern g1="f" 	g2="L" 	k="6" />
-<hkern g1="f" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="6" />
-<hkern g1="f" 	g2="N,Ntilde" 	k="6" />
-<hkern g1="f" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="6" />
-<hkern g1="g" 	g2="j" 	k="-236" />
-<hkern g1="g" 	g2="J" 	k="33" />
-<hkern g1="g" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
-<hkern g1="g" 	g2="T" 	k="68" />
-<hkern g1="g" 	g2="quotedbl,quotesingle" 	k="57" />
-<hkern g1="g" 	g2="Y,Yacute,Ydieresis" 	k="70" />
-<hkern g1="g" 	g2="C,Ccedilla" 	k="8" />
-<hkern g1="g" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="39" />
-<hkern g1="g" 	g2="G" 	k="10" />
-<hkern g1="g" 	g2="W" 	k="68" />
-<hkern g1="g" 	g2="g" 	k="12" />
-<hkern g1="g" 	g2="quotesinglbase,quotedblbase" 	k="16" />
-<hkern g1="g" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="43" />
-<hkern g1="g" 	g2="Z" 	k="66" />
-<hkern g1="g" 	g2="D,Eth" 	k="43" />
-<hkern g1="g" 	g2="K" 	k="43" />
-<hkern g1="g" 	g2="H" 	k="43" />
-<hkern g1="g" 	g2="R" 	k="43" />
-<hkern g1="g" 	g2="L" 	k="43" />
-<hkern g1="g" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="43" />
-<hkern g1="g" 	g2="N,Ntilde" 	k="43" />
-<hkern g1="g" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="43" />
-<hkern g1="g" 	g2="S" 	k="41" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="T" 	k="37" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="quotedbl,quotesingle" 	k="78" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="Y,Yacute,Ydieresis" 	k="41" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="14" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="W" 	k="29" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="D,Eth" 	k="10" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="K" 	k="10" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="H" 	k="10" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="R" 	k="10" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="L" 	k="10" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="10" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="N,Ntilde" 	k="10" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="10" />
-<hkern g1="guillemotright,guilsinglright" 	g2="T" 	k="68" />
-<hkern g1="guillemotright,guilsinglright" 	g2="quotedbl,quotesingle" 	k="102" />
-<hkern g1="guillemotright,guilsinglright" 	g2="Y,Yacute,Ydieresis" 	k="78" />
-<hkern g1="guillemotright,guilsinglright" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="12" />
-<hkern g1="guillemotright,guilsinglright" 	g2="W" 	k="47" />
-<hkern g1="guillemotright,guilsinglright" 	g2="Z" 	k="10" />
-<hkern g1="guillemotright,guilsinglright" 	g2="D,Eth" 	k="12" />
-<hkern g1="guillemotright,guilsinglright" 	g2="K" 	k="12" />
-<hkern g1="guillemotright,guilsinglright" 	g2="H" 	k="12" />
-<hkern g1="guillemotright,guilsinglright" 	g2="R" 	k="12" />
-<hkern g1="guillemotright,guilsinglright" 	g2="L" 	k="12" />
-<hkern g1="guillemotright,guilsinglright" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="12" />
-<hkern g1="guillemotright,guilsinglright" 	g2="N,Ntilde" 	k="12" />
-<hkern g1="guillemotright,guilsinglright" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="12" />
-<hkern g1="guillemotright,guilsinglright" 	g2="S" 	k="12" />
-<hkern g1="h" 	g2="quoteright,quotedblright" 	k="53" />
-<hkern g1="h" 	g2="t" 	k="6" />
-<hkern g1="h" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
-<hkern g1="h" 	g2="y,yacute,ydieresis" 	k="10" />
-<hkern g1="h" 	g2="T" 	k="174" />
-<hkern g1="h" 	g2="quotedbl,quotesingle" 	k="82" />
-<hkern g1="h" 	g2="Y,Yacute,Ydieresis" 	k="248" />
-<hkern g1="h" 	g2="C,Ccedilla" 	k="41" />
-<hkern g1="h" 	g2="f,uniFB01,uniFB02" 	k="6" />
-<hkern g1="h" 	g2="w" 	k="10" />
-<hkern g1="h" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="53" />
-<hkern g1="h" 	g2="G" 	k="41" />
-<hkern g1="h" 	g2="W" 	k="121" />
-<hkern g1="h" 	g2="Z" 	k="27" />
-<hkern g1="h" 	g2="D,Eth" 	k="33" />
-<hkern g1="h" 	g2="K" 	k="33" />
-<hkern g1="h" 	g2="H" 	k="33" />
-<hkern g1="h" 	g2="R" 	k="33" />
-<hkern g1="h" 	g2="L" 	k="33" />
-<hkern g1="h" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="33" />
-<hkern g1="h" 	g2="N,Ntilde" 	k="33" />
-<hkern g1="h" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="33" />
-<hkern g1="h" 	g2="S" 	k="39" />
-<hkern g1="hyphen,endash,emdash" 	g2="J" 	k="14" />
-<hkern g1="hyphen,endash,emdash" 	g2="T" 	k="49" />
-<hkern g1="hyphen,endash,emdash" 	g2="quotedbl,quotesingle" 	k="96" />
-<hkern g1="hyphen,endash,emdash" 	g2="Y,Yacute,Ydieresis" 	k="63" />
-<hkern g1="hyphen,endash,emdash" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="23" />
-<hkern g1="hyphen,endash,emdash" 	g2="G" 	k="10" />
-<hkern g1="hyphen,endash,emdash" 	g2="W" 	k="45" />
-<hkern g1="hyphen,endash,emdash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="16" />
-<hkern g1="hyphen,endash,emdash" 	g2="Z" 	k="33" />
-<hkern g1="hyphen,endash,emdash" 	g2="AE" 	k="14" />
-<hkern g1="hyphen,endash,emdash" 	g2="D,Eth" 	k="23" />
-<hkern g1="hyphen,endash,emdash" 	g2="K" 	k="23" />
-<hkern g1="hyphen,endash,emdash" 	g2="H" 	k="23" />
-<hkern g1="hyphen,endash,emdash" 	g2="R" 	k="23" />
-<hkern g1="hyphen,endash,emdash" 	g2="L" 	k="23" />
-<hkern g1="hyphen,endash,emdash" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="23" />
-<hkern g1="hyphen,endash,emdash" 	g2="N,Ntilde" 	k="23" />
-<hkern g1="hyphen,endash,emdash" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="23" />
-<hkern g1="hyphen,endash,emdash" 	g2="S" 	k="41" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="33" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="T" 	k="23" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="Y,Yacute,Ydieresis" 	k="27" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="C,Ccedilla" 	k="33" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="45" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="G" 	k="33" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="W" 	k="43" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="10" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="Z" 	k="27" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="D,Eth" 	k="27" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="K" 	k="27" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="H" 	k="27" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="R" 	k="27" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="L" 	k="27" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="27" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="N,Ntilde" 	k="27" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="27" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="S" 	k="33" />
-<hkern g1="j" 	g2="j" 	k="-117" />
-<hkern g1="j" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="33" />
-<hkern g1="j" 	g2="T" 	k="25" />
-<hkern g1="j" 	g2="Y,Yacute,Ydieresis" 	k="27" />
-<hkern g1="j" 	g2="C,Ccedilla" 	k="33" />
-<hkern g1="j" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="45" />
-<hkern g1="j" 	g2="G" 	k="33" />
-<hkern g1="j" 	g2="W" 	k="43" />
-<hkern g1="j" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="10" />
-<hkern g1="j" 	g2="Z" 	k="27" />
-<hkern g1="j" 	g2="D,Eth" 	k="27" />
-<hkern g1="j" 	g2="K" 	k="27" />
-<hkern g1="j" 	g2="H" 	k="27" />
-<hkern g1="j" 	g2="R" 	k="27" />
-<hkern g1="j" 	g2="L" 	k="27" />
-<hkern g1="j" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="27" />
-<hkern g1="j" 	g2="N,Ntilde" 	k="27" />
-<hkern g1="j" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="27" />
-<hkern g1="j" 	g2="S" 	k="33" />
-<hkern g1="k" 	g2="quoteright,quotedblright" 	k="20" />
-<hkern g1="k" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="16" />
-<hkern g1="k" 	g2="d" 	k="14" />
-<hkern g1="k" 	g2="J" 	k="-10" />
-<hkern g1="k" 	g2="t" 	k="12" />
-<hkern g1="k" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="37" />
-<hkern g1="k" 	g2="T" 	k="80" />
-<hkern g1="k" 	g2="quotedbl,quotesingle" 	k="76" />
-<hkern g1="k" 	g2="c,ccedilla" 	k="16" />
-<hkern g1="k" 	g2="Y,Yacute,Ydieresis" 	k="84" />
-<hkern g1="k" 	g2="C,Ccedilla" 	k="37" />
-<hkern g1="k" 	g2="hyphen,endash,emdash" 	k="23" />
-<hkern g1="k" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="16" />
-<hkern g1="k" 	g2="f,uniFB01,uniFB02" 	k="12" />
-<hkern g1="k" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="12" />
-<hkern g1="k" 	g2="w" 	k="10" />
-<hkern g1="k" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="68" />
-<hkern g1="k" 	g2="G" 	k="37" />
-<hkern g1="k" 	g2="W" 	k="80" />
-<hkern g1="k" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="8" />
-<hkern g1="k" 	g2="Z" 	k="10" />
-<hkern g1="k" 	g2="guillemotleft,guilsinglleft" 	k="25" />
-<hkern g1="k" 	g2="D,Eth" 	k="45" />
-<hkern g1="k" 	g2="K" 	k="45" />
-<hkern g1="k" 	g2="H" 	k="45" />
-<hkern g1="k" 	g2="R" 	k="45" />
-<hkern g1="k" 	g2="L" 	k="45" />
-<hkern g1="k" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="45" />
-<hkern g1="k" 	g2="N,Ntilde" 	k="45" />
-<hkern g1="k" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="45" />
-<hkern g1="k" 	g2="S" 	k="35" />
-<hkern g1="l,uniFB02" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="29" />
-<hkern g1="l,uniFB02" 	g2="T" 	k="23" />
-<hkern g1="l,uniFB02" 	g2="Y,Yacute,Ydieresis" 	k="20" />
-<hkern g1="l,uniFB02" 	g2="C,Ccedilla" 	k="29" />
-<hkern g1="l,uniFB02" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="45" />
-<hkern g1="l,uniFB02" 	g2="G" 	k="29" />
-<hkern g1="l,uniFB02" 	g2="W" 	k="39" />
-<hkern g1="l,uniFB02" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="10" />
-<hkern g1="l,uniFB02" 	g2="Z" 	k="27" />
-<hkern g1="l,uniFB02" 	g2="D,Eth" 	k="27" />
-<hkern g1="l,uniFB02" 	g2="K" 	k="27" />
-<hkern g1="l,uniFB02" 	g2="H" 	k="27" />
-<hkern g1="l,uniFB02" 	g2="R" 	k="27" />
-<hkern g1="l,uniFB02" 	g2="L" 	k="27" />
-<hkern g1="l,uniFB02" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="27" />
-<hkern g1="l,uniFB02" 	g2="N,Ntilde" 	k="27" />
-<hkern g1="l,uniFB02" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="27" />
-<hkern g1="l,uniFB02" 	g2="S" 	k="29" />
-<hkern g1="n,ntilde" 	g2="quoteright,quotedblright" 	k="53" />
-<hkern g1="n,ntilde" 	g2="t" 	k="6" />
-<hkern g1="n,ntilde" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
-<hkern g1="n,ntilde" 	g2="y,yacute,ydieresis" 	k="10" />
-<hkern g1="n,ntilde" 	g2="T" 	k="174" />
-<hkern g1="n,ntilde" 	g2="quotedbl,quotesingle" 	k="94" />
-<hkern g1="n,ntilde" 	g2="Y,Yacute,Ydieresis" 	k="248" />
-<hkern g1="n,ntilde" 	g2="C,Ccedilla" 	k="41" />
-<hkern g1="n,ntilde" 	g2="f,uniFB01,uniFB02" 	k="8" />
-<hkern g1="n,ntilde" 	g2="w" 	k="10" />
-<hkern g1="n,ntilde" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="53" />
-<hkern g1="n,ntilde" 	g2="G" 	k="41" />
-<hkern g1="n,ntilde" 	g2="W" 	k="123" />
-<hkern g1="n,ntilde" 	g2="Z" 	k="27" />
-<hkern g1="n,ntilde" 	g2="D,Eth" 	k="33" />
-<hkern g1="n,ntilde" 	g2="K" 	k="33" />
-<hkern g1="n,ntilde" 	g2="H" 	k="33" />
-<hkern g1="n,ntilde" 	g2="R" 	k="33" />
-<hkern g1="n,ntilde" 	g2="L" 	k="33" />
-<hkern g1="n,ntilde" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="33" />
-<hkern g1="n,ntilde" 	g2="N,Ntilde" 	k="33" />
-<hkern g1="n,ntilde" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="33" />
-<hkern g1="n,ntilde" 	g2="S" 	k="39" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="quoteright,quotedblright" 	k="55" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="27" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="T" 	k="156" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="quotedbl,quotesingle" 	k="94" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="Y,Yacute,Ydieresis" 	k="231" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="C,Ccedilla" 	k="27" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="53" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="G" 	k="29" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="W" 	k="117" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="16" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="Z" 	k="43" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="D,Eth" 	k="43" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="K" 	k="43" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="H" 	k="43" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="R" 	k="43" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="L" 	k="43" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="43" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="N,Ntilde" 	k="43" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="43" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="S" 	k="43" />
-<hkern g1="quoteleft,quotedblleft" 	g2="n,ntilde" 	k="18" />
-<hkern g1="quoteleft,quotedblleft" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="51" />
-<hkern g1="quoteleft,quotedblleft" 	g2="d" 	k="45" />
-<hkern g1="quoteleft,quotedblleft" 	g2="J" 	k="27" />
-<hkern g1="quoteleft,quotedblleft" 	g2="c,ccedilla" 	k="53" />
-<hkern g1="quoteleft,quotedblleft" 	g2="p,thorn" 	k="18" />
-<hkern g1="quoteleft,quotedblleft" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="49" />
-<hkern g1="quoteleft,quotedblleft" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="14" />
-<hkern g1="quoteleft,quotedblleft" 	g2="r" 	k="18" />
-<hkern g1="quoteleft,quotedblleft" 	g2="s" 	k="31" />
-<hkern g1="quoteleft,quotedblleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="27" />
-<hkern g1="quoteleft,quotedblleft" 	g2="g" 	k="53" />
-<hkern g1="quoteleft,quotedblleft" 	g2="z" 	k="10" />
-<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="39" />
-<hkern g1="quoteleft,quotedblleft" 	g2="Z" 	k="10" />
-<hkern g1="quoteleft,quotedblleft" 	g2="AE" 	k="53" />
-<hkern g1="quoteleft,quotedblleft" 	g2="D,Eth" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="K" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="H" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="R" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="L" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="N,Ntilde" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="12" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="t" 	k="10" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="49" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="y,yacute,ydieresis" 	k="37" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="T" 	k="59" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="quotedbl,quotesingle" 	k="170" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="Y,Yacute,Ydieresis" 	k="70" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="C,Ccedilla" 	k="49" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="w" 	k="25" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="51" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="G" 	k="49" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="W" 	k="72" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="D,Eth" 	k="18" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="K" 	k="18" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="H" 	k="18" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="R" 	k="18" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="L" 	k="18" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="18" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="N,Ntilde" 	k="18" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="18" />
-<hkern g1="quotedbl,quotesingle" 	g2="n,ntilde" 	k="86" />
-<hkern g1="quotedbl,quotesingle" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="109" />
-<hkern g1="quotedbl,quotesingle" 	g2="d" 	k="84" />
-<hkern g1="quotedbl,quotesingle" 	g2="J" 	k="35" />
-<hkern g1="quotedbl,quotesingle" 	g2="t" 	k="23" />
-<hkern g1="quotedbl,quotesingle" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="27" />
-<hkern g1="quotedbl,quotesingle" 	g2="y,yacute,ydieresis" 	k="61" />
-<hkern g1="quotedbl,quotesingle" 	g2="c,ccedilla" 	k="109" />
-<hkern g1="quotedbl,quotesingle" 	g2="Y,Yacute,Ydieresis" 	k="-27" />
-<hkern g1="quotedbl,quotesingle" 	g2="p,thorn" 	k="86" />
-<hkern g1="quotedbl,quotesingle" 	g2="C,Ccedilla" 	k="27" />
-<hkern g1="quotedbl,quotesingle" 	g2="hyphen,endash,emdash" 	k="102" />
-<hkern g1="quotedbl,quotesingle" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="106" />
-<hkern g1="quotedbl,quotesingle" 	g2="f,uniFB01,uniFB02" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="84" />
-<hkern g1="quotedbl,quotesingle" 	g2="r" 	k="86" />
-<hkern g1="quotedbl,quotesingle" 	g2="w" 	k="68" />
-<hkern g1="quotedbl,quotesingle" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="12" />
-<hkern g1="quotedbl,quotesingle" 	g2="G" 	k="27" />
-<hkern g1="quotedbl,quotesingle" 	g2="s" 	k="96" />
-<hkern g1="quotedbl,quotesingle" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="92" />
-<hkern g1="quotedbl,quotesingle" 	g2="g" 	k="111" />
-<hkern g1="quotedbl,quotesingle" 	g2="z" 	k="80" />
-<hkern g1="quotedbl,quotesingle" 	g2="quotesinglbase,quotedblbase" 	k="182" />
-<hkern g1="quotedbl,quotesingle" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="66" />
-<hkern g1="quotedbl,quotesingle" 	g2="AE" 	k="80" />
-<hkern g1="quotedbl,quotesingle" 	g2="guillemotleft,guilsinglleft" 	k="115" />
-<hkern g1="quotedbl,quotesingle" 	g2="guillemotright,guilsinglright" 	k="84" />
-<hkern g1="quotedbl,quotesingle" 	g2="D,Eth" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="K" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="H" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="R" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="L" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="N,Ntilde" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="16" />
-<hkern g1="r" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="6" />
-<hkern g1="r" 	g2="d" 	k="6" />
-<hkern g1="r" 	g2="J" 	k="92" />
-<hkern g1="r" 	g2="y,yacute,ydieresis" 	k="-35" />
-<hkern g1="r" 	g2="T" 	k="121" />
-<hkern g1="r" 	g2="quotedbl,quotesingle" 	k="57" />
-<hkern g1="r" 	g2="c,ccedilla" 	k="8" />
-<hkern g1="r" 	g2="Y,Yacute,Ydieresis" 	k="96" />
-<hkern g1="r" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="6" />
-<hkern g1="r" 	g2="w" 	k="-12" />
-<hkern g1="r" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="35" />
-<hkern g1="r" 	g2="W" 	k="68" />
-<hkern g1="r" 	g2="g" 	k="29" />
-<hkern g1="r" 	g2="quotesinglbase,quotedblbase" 	k="43" />
-<hkern g1="r" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="68" />
-<hkern g1="r" 	g2="Z" 	k="123" />
-<hkern g1="r" 	g2="guillemotleft,guilsinglleft" 	k="14" />
-<hkern g1="r" 	g2="D,Eth" 	k="43" />
-<hkern g1="r" 	g2="K" 	k="43" />
-<hkern g1="r" 	g2="H" 	k="43" />
-<hkern g1="r" 	g2="R" 	k="43" />
-<hkern g1="r" 	g2="L" 	k="43" />
-<hkern g1="r" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="43" />
-<hkern g1="r" 	g2="N,Ntilde" 	k="43" />
-<hkern g1="r" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="43" />
-<hkern g1="r" 	g2="S" 	k="47" />
-<hkern g1="s" 	g2="quoteright,quotedblright" 	k="31" />
-<hkern g1="s" 	g2="J" 	k="-10" />
-<hkern g1="s" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="31" />
-<hkern g1="s" 	g2="T" 	k="141" />
-<hkern g1="s" 	g2="quotedbl,quotesingle" 	k="80" />
-<hkern g1="s" 	g2="Y,Yacute,Ydieresis" 	k="178" />
-<hkern g1="s" 	g2="C,Ccedilla" 	k="31" />
-<hkern g1="s" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="55" />
-<hkern g1="s" 	g2="G" 	k="33" />
-<hkern g1="s" 	g2="W" 	k="123" />
-<hkern g1="s" 	g2="Z" 	k="23" />
-<hkern g1="s" 	g2="D,Eth" 	k="47" />
-<hkern g1="s" 	g2="K" 	k="47" />
-<hkern g1="s" 	g2="H" 	k="47" />
-<hkern g1="s" 	g2="R" 	k="47" />
-<hkern g1="s" 	g2="L" 	k="47" />
-<hkern g1="s" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="47" />
-<hkern g1="s" 	g2="N,Ntilde" 	k="47" />
-<hkern g1="s" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="47" />
-<hkern g1="s" 	g2="S" 	k="25" />
-<hkern g1="t" 	g2="quoteright,quotedblright" 	k="18" />
-<hkern g1="t" 	g2="J" 	k="-20" />
-<hkern g1="t" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="27" />
-<hkern g1="t" 	g2="T" 	k="96" />
-<hkern g1="t" 	g2="quotedbl,quotesingle" 	k="29" />
-<hkern g1="t" 	g2="Y,Yacute,Ydieresis" 	k="92" />
-<hkern g1="t" 	g2="C,Ccedilla" 	k="25" />
-<hkern g1="t" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="55" />
-<hkern g1="t" 	g2="G" 	k="27" />
-<hkern g1="t" 	g2="W" 	k="66" />
-<hkern g1="t" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-8" />
-<hkern g1="t" 	g2="Z" 	k="18" />
-<hkern g1="t" 	g2="D,Eth" 	k="43" />
-<hkern g1="t" 	g2="K" 	k="43" />
-<hkern g1="t" 	g2="H" 	k="43" />
-<hkern g1="t" 	g2="R" 	k="43" />
-<hkern g1="t" 	g2="L" 	k="43" />
-<hkern g1="t" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="43" />
-<hkern g1="t" 	g2="N,Ntilde" 	k="43" />
-<hkern g1="t" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="43" />
-<hkern g1="t" 	g2="S" 	k="39" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="quoteright,quotedblright" 	k="29" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="33" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="T" 	k="121" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="quotedbl,quotesingle" 	k="76" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="Y,Yacute,Ydieresis" 	k="158" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="C,Ccedilla" 	k="33" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="43" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="G" 	k="33" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="W" 	k="98" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="10" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="Z" 	k="33" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="D,Eth" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="K" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="H" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="R" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="L" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="N,Ntilde" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="S" 	k="43" />
-<hkern g1="w" 	g2="J" 	k="39" />
-<hkern g1="w" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
-<hkern g1="w" 	g2="T" 	k="80" />
-<hkern g1="w" 	g2="quotedbl,quotesingle" 	k="61" />
-<hkern g1="w" 	g2="Y,Yacute,Ydieresis" 	k="70" />
-<hkern g1="w" 	g2="C,Ccedilla" 	k="12" />
-<hkern g1="w" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="45" />
-<hkern g1="w" 	g2="G" 	k="14" />
-<hkern g1="w" 	g2="W" 	k="68" />
-<hkern g1="w" 	g2="g" 	k="18" />
-<hkern g1="w" 	g2="quotesinglbase,quotedblbase" 	k="23" />
-<hkern g1="w" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="49" />
-<hkern g1="w" 	g2="Z" 	k="66" />
-<hkern g1="w" 	g2="D,Eth" 	k="49" />
-<hkern g1="w" 	g2="K" 	k="49" />
-<hkern g1="w" 	g2="H" 	k="49" />
-<hkern g1="w" 	g2="R" 	k="49" />
-<hkern g1="w" 	g2="L" 	k="49" />
-<hkern g1="w" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="49" />
-<hkern g1="w" 	g2="N,Ntilde" 	k="49" />
-<hkern g1="w" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="49" />
-<hkern g1="w" 	g2="S" 	k="47" />
-<hkern g1="y,yacute,ydieresis" 	g2="J" 	k="74" />
-<hkern g1="y,yacute,ydieresis" 	g2="T" 	k="68" />
-<hkern g1="y,yacute,ydieresis" 	g2="quotedbl,quotesingle" 	k="55" />
-<hkern g1="y,yacute,ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="68" />
-<hkern g1="y,yacute,ydieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="35" />
-<hkern g1="y,yacute,ydieresis" 	g2="W" 	k="61" />
-<hkern g1="y,yacute,ydieresis" 	g2="g" 	k="20" />
-<hkern g1="y,yacute,ydieresis" 	g2="quotesinglbase,quotedblbase" 	k="31" />
-<hkern g1="y,yacute,ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="57" />
-<hkern g1="y,yacute,ydieresis" 	g2="Z" 	k="66" />
-<hkern g1="y,yacute,ydieresis" 	g2="D,Eth" 	k="43" />
-<hkern g1="y,yacute,ydieresis" 	g2="K" 	k="43" />
-<hkern g1="y,yacute,ydieresis" 	g2="H" 	k="43" />
-<hkern g1="y,yacute,ydieresis" 	g2="R" 	k="43" />
-<hkern g1="y,yacute,ydieresis" 	g2="L" 	k="43" />
-<hkern g1="y,yacute,ydieresis" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="43" />
-<hkern g1="y,yacute,ydieresis" 	g2="N,Ntilde" 	k="43" />
-<hkern g1="y,yacute,ydieresis" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="43" />
-<hkern g1="y,yacute,ydieresis" 	g2="S" 	k="43" />
-<hkern g1="z" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
-<hkern g1="z" 	g2="T" 	k="86" />
-<hkern g1="z" 	g2="quotedbl,quotesingle" 	k="66" />
-<hkern g1="z" 	g2="Y,Yacute,Ydieresis" 	k="74" />
-<hkern g1="z" 	g2="C,Ccedilla" 	k="20" />
-<hkern g1="z" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="53" />
-<hkern g1="z" 	g2="G" 	k="20" />
-<hkern g1="z" 	g2="W" 	k="68" />
-<hkern g1="z" 	g2="Z" 	k="25" />
-<hkern g1="z" 	g2="guillemotleft,guilsinglleft" 	k="10" />
-<hkern g1="z" 	g2="D,Eth" 	k="47" />
-<hkern g1="z" 	g2="K" 	k="47" />
-<hkern g1="z" 	g2="H" 	k="47" />
-<hkern g1="z" 	g2="R" 	k="47" />
-<hkern g1="z" 	g2="L" 	k="47" />
-<hkern g1="z" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="47" />
-<hkern g1="z" 	g2="N,Ntilde" 	k="45" />
-<hkern g1="z" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="47" />
-<hkern g1="z" 	g2="S" 	k="33" />
-</font>
-</defs></svg> 
\ No newline at end of file
diff --git a/client/assets/fonts/brandon_bld/brandon_bld-webfont-webfont.woff b/client/assets/fonts/brandon_bld/brandon_bld-webfont-webfont.woff
deleted file mode 100755
index d2dda86b671717d3f32150d71476d81318036863..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/brandon_bld/brandon_bld-webfont-webfont.woff and /dev/null differ
diff --git a/client/assets/fonts/brandon_bld/brandon_bld-webfont-webfont.woff2 b/client/assets/fonts/brandon_bld/brandon_bld-webfont-webfont.woff2
deleted file mode 100755
index acf330f4eae55c34d0022fc45c503c40dbf54dd6..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/brandon_bld/brandon_bld-webfont-webfont.woff2 and /dev/null differ
diff --git a/client/assets/fonts/brandon_bld/generator_config.txt b/client/assets/fonts/brandon_bld/generator_config.txt
deleted file mode 100755
index 05c92572e0362b7633408f5de273e37136259dfe..0000000000000000000000000000000000000000
--- a/client/assets/fonts/brandon_bld/generator_config.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-# Font Squirrel Font-face Generator Configuration File
-# Upload this file to the generator to recreate the settings
-# you used to create these fonts.
-
-{"mode":"expert","formats":["ttf","woff","woff2","eot","svg"],"tt_instructor":"default","fix_gasp":"xy","fix_vertical_metrics":"Y","metrics_ascent":"","metrics_descent":"","metrics_linegap":"","add_spaces":"Y","add_hyphens":"Y","fallback":"none","fallback_custom":"100","options_subset":"basic","subset_custom":"","subset_custom_range":"","subset_ot_features_list":"","css_stylesheet":"stylesheet.css","filename_suffix":"-webfont","emsquare":"2048","spacing_adjustment":"0"}
\ No newline at end of file
diff --git a/client/assets/fonts/brandon_bld/specimen_files/grid_12-825-55-15.css b/client/assets/fonts/brandon_bld/specimen_files/grid_12-825-55-15.css
deleted file mode 100755
index 3d6aef783a908415e66bb296d4e4bbb7366f0bcb..0000000000000000000000000000000000000000
--- a/client/assets/fonts/brandon_bld/specimen_files/grid_12-825-55-15.css
+++ /dev/null
@@ -1,129 +0,0 @@
-/*Notes about grid:
-Columns:      12
-Grid Width:   825px
-Column Width: 55px
-Gutter Width: 15px
--------------------------------*/
- 
- 
- 
-.section 		{margin-bottom: 18px;
-}
-.section:after	{content: ".";display: block;height: 0;clear: both;visibility: hidden;}
-.section 		{*zoom: 1;}
- 
-.section .firstcolumn,
-.section .firstcol {margin-left: 0;}
- 
- 
-/* Border on left hand side of a column. */
-.border {
-  padding-left: 7px;
-  margin-left: 7px;
-  border-left: 1px solid #eee;
-}
- 
-/* Border with more whitespace, spans one column. */
-.colborder {
-    padding-left: 42px;
-  margin-left: 42px;
-  border-left: 1px solid #eee;
-}
- 
-
- 
-/* The Grid Classes */
-.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12
-{margin-left: 15px;float: left;display: inline; overflow: hidden;}
- 
- 
-.width1, .grid1, .span-1 {width: 55px;}
-.width1_2cols,.grid1_2cols {width: 20px;}
-.width1_3cols,.grid1_3cols  {width: 8px;}
-.width1_4cols,.grid1_4cols  {width: 2px;}
-.input_width1 {width: 49px;}
- 
-.width2, .grid2, .span-2 {width: 125px;}
-.width2_3cols,.grid2_3cols  {width: 31px;}
-.width2_4cols,.grid2_4cols  {width: 20px;}
-.input_width2 {width: 119px;}
- 
-.width3, .grid3, .span-3 {width: 195px;}
-.width3_2cols,.grid3_2cols {width: 90px;}
-.width3_4cols,.grid3_4cols  {width: 37px;}
-.input_width3 {width: 189px;}
- 
-.width4, .grid4, .span-4 {width: 265px;}
-.width4_3cols,.grid4_3cols  {width: 78px;}
-.input_width4 {width: 259px;}
- 
-.width5, .grid5, .span-5 {width: 335px;}
-.width5_2cols,.grid5_2cols {width: 160px;}
-.width5_3cols,.grid5_3cols  {width: 101px;}
-.width5_4cols,.grid5_4cols  {width: 72px;}
-.input_width5 {width: 329px;}
- 
-.width6, .grid6, .span-6 {width: 405px;}
-.width6_4cols,.grid6_4cols  {width: 90px;}
-.input_width6 {width: 399px;}
- 
-.width7, .grid7, .span-7 {width: 475px;}
-.width7_2cols,.grid7_2cols {width: 230px;}
-.width7_3cols,.grid7_3cols  {width: 148px;}
-.width7_4cols,.grid7_4cols  {width: 107px;}
-.input_width7 {width: 469px;}
- 
-.width8, .grid8, .span-8 {width: 545px;}
-.width8_3cols,.grid8_3cols  {width: 171px;}
-.input_width8 {width: 539px;}
- 
-.width9, .grid9, .span-9 {width: 615px;}
-.width9_2cols,.grid9_2cols {width: 300px;}
-.width9_4cols,.grid9_4cols  {width: 142px;}
-.input_width9 {width: 609px;}
- 
-.width10, .grid10, .span-10 {width: 685px;}
-.width10_3cols,.grid10_3cols  {width: 218px;}
-.width10_4cols,.grid10_4cols  {width: 160px;}
-.input_width10 {width: 679px;}
- 
-.width11, .grid11, .span-11 {width: 755px;}
-.width11_2cols,.grid11_2cols {width: 370px;}
-.width11_3cols,.grid11_3cols  {width: 241px;}
-.width11_4cols,.grid11_4cols  {width: 177px;}
-.input_width11 {width: 749px;}
- 
-.width12, .grid12, .span-12 {width: 825px;}
-.input_width12 {width: 819px;}
- 
-/* Subdivided grid spaces */
-.emptycols_left1, .prepend-1 {padding-left: 70px;}
-.emptycols_right1, .append-1 {padding-right: 70px;}
-.emptycols_left2, .prepend-2 {padding-left: 140px;}
-.emptycols_right2, .append-2 {padding-right: 140px;}
-.emptycols_left3, .prepend-3 {padding-left: 210px;}
-.emptycols_right3, .append-3 {padding-right: 210px;}
-.emptycols_left4, .prepend-4 {padding-left: 280px;}
-.emptycols_right4, .append-4 {padding-right: 280px;}
-.emptycols_left5, .prepend-5 {padding-left: 350px;}
-.emptycols_right5, .append-5 {padding-right: 350px;}
-.emptycols_left6, .prepend-6 {padding-left: 420px;}
-.emptycols_right6, .append-6 {padding-right: 420px;}
-.emptycols_left7, .prepend-7 {padding-left: 490px;}
-.emptycols_right7, .append-7 {padding-right: 490px;}
-.emptycols_left8, .prepend-8 {padding-left: 560px;}
-.emptycols_right8, .append-8 {padding-right: 560px;}
-.emptycols_left9, .prepend-9 {padding-left: 630px;}
-.emptycols_right9, .append-9 {padding-right: 630px;}
-.emptycols_left10, .prepend-10 {padding-left: 700px;}
-.emptycols_right10, .append-10 {padding-right: 700px;}
-.emptycols_left11, .prepend-11 {padding-left: 770px;}
-.emptycols_right11, .append-11 {padding-right: 770px;}
-.pull-1 {margin-left: -70px;}
-.push-1 {margin-right: -70px;margin-left: 18px;float: right;}
-.pull-2 {margin-left: -140px;}
-.push-2 {margin-right: -140px;margin-left: 18px;float: right;}
-.pull-3 {margin-left: -210px;}
-.push-3 {margin-right: -210px;margin-left: 18px;float: right;}
-.pull-4 {margin-left: -280px;}
-.push-4 {margin-right: -280px;margin-left: 18px;float: right;}
\ No newline at end of file
diff --git a/client/assets/fonts/brandon_bld/specimen_files/specimen_stylesheet.css b/client/assets/fonts/brandon_bld/specimen_files/specimen_stylesheet.css
deleted file mode 100755
index aecc43c32ce0ee6e9e448361a7ed21808c8af690..0000000000000000000000000000000000000000
--- a/client/assets/fonts/brandon_bld/specimen_files/specimen_stylesheet.css
+++ /dev/null
@@ -1,396 +0,0 @@
-@import url('grid_12-825-55-15.css');
-
-/*  
-	CSS Reset by Eric Meyer - Released under Public Domain
-    http://meyerweb.com/eric/tools/css/reset/
-*/
-html, body, div, span, applet, object, iframe,
-h1, h2, h3, h4, h5, h6, p, blockquote, pre,
-a, abbr, acronym, address, big, cite, code,
-del, dfn, em, font, img, ins, kbd, q, s, samp,
-small, strike, strong, sub, sup, tt, var,
-b, u, i, center, dl, dt, dd, ol, ul, li,
-fieldset, form, label, legend, table, 
-caption, tbody, tfoot, thead, tr, th, td 
-                  {margin: 0;padding: 0;border: 0;outline: 0;
-                  font-size: 100%;vertical-align: baseline;
-                  background: transparent;}
-body              {line-height: 1;}
-ol, ul            {list-style: none;}
-blockquote, q     {quotes: none;}
-blockquote:before, blockquote:after,
-q:before, q:after {content: '';	content: none;}
-:focus            {outline: 0;}
-ins               {text-decoration: none;}
-del               {text-decoration: line-through;}
-table             {border-collapse: collapse;border-spacing: 0;}
-
-
-
-
-body {
-	color: #000;
-	background-color: #dcdcdc;
-}
-
-a {
-	text-decoration: none;
-	color: #1883ba;
-}
-
-h1{
-	font-size: 32px;
-	font-weight: normal;
-	font-style: normal;
-	margin-bottom: 18px;
-}
-
-h2{
-	font-size: 18px;
-}
-
-#container {
-	width: 865px;
-	margin: 0px auto;
-}
-
-
-#header {
-	padding: 20px;
-	font-size: 36px;
-	background-color: #000;
-	color: #fff;
-}
-
-#header span {
-	color: #666;
-}
-#main_content {
-	background-color: #fff;
-	padding: 60px 20px 20px;
-}
-
-
-#footer p {
-	margin: 0;
-	padding-top: 10px;
-	padding-bottom: 50px;
-	color: #333;
-	font: 10px Arial, sans-serif;
-}
-
-.tabs {
-	width: 100%;
-	height: 31px;
-	background-color: #444;
-}
-.tabs li {
-	float:  left;
-	margin: 0;
-	overflow: hidden;
-	background-color: #444;
-}
-.tabs li a {
-	display: block;
-	color: #fff;
-	text-decoration: none;
-	font: bold 11px/11px 'Arial';
-	text-transform: uppercase;
-	padding: 10px 15px;
-	border-right: 1px solid #fff;
-}
-
-.tabs li a:hover {
-		background-color: #00b3ff;
-
-}
-
-.tabs li.active a {
-	color:  #000;
-	background-color: #fff;
-}
-
-
-
-div.huge {
-	
-	font-size: 300px;
-	line-height: 1em;
-	padding: 0;
-	letter-spacing: -.02em;
-	overflow: hidden;
-}
-div.glyph_range {
-	font-size: 72px;
-	line-height: 1.1em;
-}
-
-.size10{ font-size: 10px; }
-.size11{ font-size: 11px; }
-.size12{ font-size: 12px; }
-.size13{ font-size: 13px; }
-.size14{ font-size: 14px; }
-.size16{ font-size: 16px; }
-.size18{ font-size: 18px; }
-.size20{ font-size: 20px; }
-.size24{ font-size: 24px; }
-.size30{ font-size: 30px; }
-.size36{ font-size: 36px; }
-.size48{ font-size: 48px; }
-.size60{ font-size: 60px; }
-.size72{ font-size: 72px; }
-.size90{ font-size: 90px; }
-
-
-.psample_row1 {	height: 120px;}
-.psample_row1 {	height: 120px;}
-.psample_row2 {	height: 160px;}
-.psample_row3 {	height: 160px;}
-.psample_row4 {	height: 160px;}
-
-.psample {
-	overflow: hidden;
-	position: relative;
-}
-.psample p {
-	line-height: 1.3em;
-	display: block;
-	overflow: hidden;
-	margin: 0;
-}
-
-.psample span {
-	margin-right: .5em;
-}
-
-.white_blend {
-	width: 100%;
-	height: 61px;
-	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==);
-	position: absolute;
-	bottom: 0;
-}
-.black_blend {
-	width: 100%;
-	height: 61px;
-	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC);
-	position: absolute;
-	bottom: 0;
-}
-.fullreverse {
-	background:  #000 !important;
-	color:  #fff !important;
-	margin-left: -20px;
-	padding-left: 20px;
-	margin-right: -20px;
-	padding-right: 20px;
-	padding: 20px;
-	margin-bottom:0;
-}
-
-
-.sample_table td {
-	padding-top: 3px;
-	padding-bottom:5px;
-	padding-left: 5px;
-	vertical-align: middle;
-	line-height: 1.2em;
-}
-
-.sample_table td:first-child {
-	background-color: #eee;
-	text-align: right;
-	padding-right: 5px;
-	padding-left: 0;
-	padding: 5px;
-	font: 11px/12px "Courier New", Courier, mono;
-}
-
-code {
-	white-space: pre;
-	background-color: #eee;
-	display: block;
-	padding: 10px;
-	margin-bottom: 18px;
-	overflow: auto;
-}
-
-
-.bottom,.last 	{margin-bottom:0 !important; padding-bottom:0 !important;}
-
-.box  { 
-  padding: 18px; 
-  margin-bottom: 18px; 
-  background: #eee; 
-}
-
-.reverse,.reversed { background:  #000 !important;color:  #fff !important; border: none !important;}
-
-#bodycomparison {
-	position: relative;
-	overflow: hidden;
-	font-size: 72px;
-	height: 90px;
-	white-space: nowrap;
-}
-
-#bodycomparison div{
-	font-size: 72px;
-	line-height: 90px;
-	display: inline;
-	margin: 0 15px 0 0;
-	padding: 0;
-}
-
-#bodycomparison div span{
-	font: 10px Arial;
-	position: absolute;
-	left: 0;
-}
-#xheight {
-	float: none;
-	position: absolute;
-	color: #d9f3ff;
-	font-size: 72px;
-	line-height: 90px;
-}
-
-.fontbody {
- position: relative;
-}
-.arialbody{
-	font-family: Arial;
-	position: relative;
-}
-.verdanabody{
-	font-family: Verdana;
-	position: relative;
-}
-.georgiabody{
-	font-family: Georgia;
-	position: relative;
-}
-
-/* @group Layout page
- */
-
-#layout h1 {
-	font-size: 36px;
-	line-height: 42px;
-	font-weight: normal;
-	font-style: normal;
-}
-
-#layout h2 {
-	font-size: 24px;
-	line-height: 23px;
-	font-weight: normal;
-	font-style: normal;
-}
-
-#layout h3 {
-	font-size: 22px;
-	line-height: 1.4em;
-	margin-top: 1em;
-	font-weight: normal;
-	font-style: normal;
-}
-
-
-#layout p.byline {
-	font-size: 12px;
-	margin-top: 18px;
-	line-height: 12px;
-	margin-bottom: 0;
-}
-#layout p {
-	font-size: 14px;
-	line-height: 21px;
-	margin-bottom: .5em;
-}
-
-#layout p.large{
-	font-size: 18px;
-	line-height: 26px;
-}
-
-#layout .sidebar p{
-	font-size: 12px;
-	line-height: 1.4em;
-}
-
-#layout p.caption {
-	font-size: 10px;
-	margin-top: -16px;
-	margin-bottom: 18px;
-}
-
-/* @end */
-
-/* @group Glyphs */
-
-#glyph_chart div{
-	background-color: #d9f3ff;
-	color: black;
-	float: left;
-	font-size: 36px;
-	height: 1.2em;
-	line-height: 1.2em;
-	margin-bottom: 1px;
-	margin-right: 1px;
-	text-align: center;
-	width: 1.2em;
-	position: relative;
-	padding: .6em .2em .2em;
-}
-
-#glyph_chart div p {
-	position: absolute;
-	left: 0;
-	top: 0;
-	display: block;
-	text-align: center;
-	font: bold 9px Arial, sans-serif;
-	background-color: #3a768f;
-	width: 100%;
-	color: #fff;
-	padding: 2px 0;
-}
-
-
-#glyphs h1 {
-	font-family: Arial, sans-serif;
-}
-/* @end */
-
-/* @group Installing */
-
-#installing {
-	font: 13px Arial, sans-serif;
-}
-
-#installing p,
-#glyphs p{
-	line-height: 1.2em;
-	margin-bottom: 18px;
-	font: 13px Arial, sans-serif;
-}
-
-
-
-#installing h3{
-	font-size: 15px;
-	margin-top: 18px;
-}
-
-/* @end */
-
-#rendering h1 {
-	font-family: Arial, sans-serif;
-}
-.render_table td {
-	font: 11px "Courier New", Courier, mono;
-	vertical-align: middle;
-}
-
-
diff --git a/client/assets/fonts/brandon_bld/stylesheet.css b/client/assets/fonts/brandon_bld/stylesheet.css
deleted file mode 100755
index dae82a836b313f6c7d9c4aceb0cb22c40004ce64..0000000000000000000000000000000000000000
--- a/client/assets/fonts/brandon_bld/stylesheet.css
+++ /dev/null
@@ -1,16 +0,0 @@
-/* Generated by Font Squirrel (https://www.fontsquirrel.com) on January 16, 2017 */
-
-
-
-@font-face {
-    font-family: 'webfontregular';
-    src: url('brandon_bld-webfont-webfont.eot');
-    src: url('brandon_bld-webfont-webfont.eot?#iefix') format('embedded-opentype'),
-         url('brandon_bld-webfont-webfont.woff2') format('woff2'),
-         url('brandon_bld-webfont-webfont.woff') format('woff'),
-         url('brandon_bld-webfont-webfont.ttf') format('truetype'),
-         url('brandon_bld-webfont-webfont.svg#webfontregular') format('svg');
-    font-weight: normal;
-    font-style: normal;
-
-}
\ No newline at end of file
diff --git a/client/assets/fonts/brandon_blk/brandon_blk-webfont.ttf b/client/assets/fonts/brandon_blk-webfont.ttf
similarity index 100%
rename from client/assets/fonts/brandon_blk/brandon_blk-webfont.ttf
rename to client/assets/fonts/brandon_blk-webfont.ttf
diff --git a/client/assets/fonts/brandon_blk/brandon_blk-demo.html b/client/assets/fonts/brandon_blk/brandon_blk-demo.html
deleted file mode 100755
index 0ffffe2ee17566e0b91d1fb9371b703ca0a09ecd..0000000000000000000000000000000000000000
--- a/client/assets/fonts/brandon_blk/brandon_blk-demo.html
+++ /dev/null
@@ -1,613 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-	<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script>
-	<script src="specimen_files/easytabs.js" type="text/javascript" charset="utf-8"></script>
-	<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" />
-	<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
-
-	<style type="text/css">
-					body{
-				font-family: 'brandon_grotesqueblack';
-							}
-		</style>
-
-	<title>Brandon Grotesque Black Specimen</title>
-	
-	
-	<script type="text/javascript" charset="utf-8">
-		$(document).ready(function() {
-			$('#container').easyTabs({defaultContent:1});
-		});
-	</script>
-</head>
-
-<body>
-<div id="container">
-	<div id="header">
-		Brandon Grotesque Black	</div>
-	<ul class="tabs">
-		<li><a href="#specimen">Specimen</a></li>
-		<li><a href="#layout">Sample Layout</a></li>
-				<li><a href="#glyphs">Glyphs &amp; Languages</a></li>
-		<li><a href="#installing">Installing Webfonts</a></li>
-		
-	</ul>
-	
-	<div id="main_content">
-
-		
-			<div id="specimen">
-		
-				<div class="section">
-					<div class="grid12 firstcol">
-						<div class="huge">AaBb</div>
-					</div>
-				</div>
-		
-				<div class="section">
-					<div class="glyph_range">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>
-				</div>
-				<div class="section">
-					<div class="grid12 firstcol">
-						<table class="sample_table">
-							<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-						</table>
-				
-					</div>
-			
-				</div>
-		
-		
-		
-								<div class="section" id="bodycomparison">
-
-
-										<div id="xheight">
-				<div class="fontbody">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div>
-										<div class="fontbody" style="z-index:1">
-											body<span>Brandon Grotesque Black</span>
-										</div>
-										<div class="arialbody" style="z-index:1">
-											body<span>Arial</span>
-										</div>
-										<div class="verdanabody" style="z-index:1">
-											body<span>Verdana</span>
-										</div>
-										<div class="georgiabody" style="z-index:1">
-											body<span>Georgia</span>
-										</div>
-
-
-
-								</div>
-		
-		
-				<div class="section psample psample_row1" id="">
-					
-					<div class="grid2 firstcol">
-						<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="white_blend"></div>
-					
-				</div>
-				<div class="section psample psample_row2" id="">
-					<div class="grid3 firstcol">
-						<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid5">
-						<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-
-					<div class="white_blend"></div>
-
-				</div>
-				
-				<div class="section psample psample_row3" id="">
-					<div class="grid5 firstcol">
-						<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="grid7">
-						<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					
-					<div class="white_blend"></div>
-					
-				</div>
-				
-				<div class="section psample psample_row4" id="">
-					<div class="grid12 firstcol">
-						<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="white_blend"></div>
-					
-				</div>
-				
-				
-				
-				<div class="section psample psample_row1 fullreverse">
-					<div class="grid2 firstcol">
-						<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				<div class="section psample psample_row2 fullreverse">
-					<div class="grid3 firstcol">
-						<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid5">
-						<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="black_blend"></div>
-
-				</div>
-				
-				<div class="section psample fullreverse psample_row3" id="">
-					<div class="grid5 firstcol">
-						<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="grid7">
-						<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
-					<div class="grid12 firstcol">
-						<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				
-				
-				
-			</div>
-			
-			<div id="layout">
-				
-				<div class="section">
-					
-					<div class="grid12 firstcol">
-						<h1>Lorem Ipsum Dolor</h1>
-						<h2>Etiam porta sem malesuada magna mollis euismod</h2>
-						
-						<p class="byline">By <a href="#link">Aenean Lacinia</a></p>
-					</div>
-				</div>
-				<div class="section">
-					<div class="grid8 firstcol">
-						<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-						
-						<h3>Pellentesque ornare sem</h3>
-
-						<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
-
-						<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
-
-						<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
-
-						<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
-
-						<h3>Cras mattis consectetur</h3>
-
-						<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
-
-						<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
-					</div>
-					
-					<div class="grid4 sidebar">
-						
-						<div class="box reverse">
-							<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
-						</div>
-						
-						<p class="caption">Maecenas sed diam eget risus varius.</p>
-
-						<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-					
-
-						<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
-
-						<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-					</div>
-				</div>
-				
-			</div>
-
-
-			
-
-
-
-		<div id="glyphs">
-			<div class="section">
-				<div class="grid12 firstcol">
-			
-				<h1>Language Support</h1>
-				<p>The subset of Brandon Grotesque Black in this kit supports the following languages:<br />
-			
-					Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Swedish				</p>
-				<h1>Glyph Chart</h1>
-				<p>The subset of Brandon Grotesque Black in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p>
-				<div id="glyph_chart">
-			
-																				 <div><p>&amp;#32;</p>&#32;</div>
-																				 <div><p>&amp;#33;</p>&#33;</div>
-																				 <div><p>&amp;#34;</p>&#34;</div>
-																				 <div><p>&amp;#35;</p>&#35;</div>
-																				 <div><p>&amp;#36;</p>&#36;</div>
-																				 <div><p>&amp;#37;</p>&#37;</div>
-																				 <div><p>&amp;#38;</p>&#38;</div>
-																				 <div><p>&amp;#39;</p>&#39;</div>
-																				 <div><p>&amp;#40;</p>&#40;</div>
-																				 <div><p>&amp;#41;</p>&#41;</div>
-																				 <div><p>&amp;#42;</p>&#42;</div>
-																				 <div><p>&amp;#43;</p>&#43;</div>
-																				 <div><p>&amp;#44;</p>&#44;</div>
-																				 <div><p>&amp;#45;</p>&#45;</div>
-																				 <div><p>&amp;#46;</p>&#46;</div>
-																				 <div><p>&amp;#47;</p>&#47;</div>
-																				 <div><p>&amp;#48;</p>&#48;</div>
-																				 <div><p>&amp;#49;</p>&#49;</div>
-																				 <div><p>&amp;#50;</p>&#50;</div>
-																				 <div><p>&amp;#51;</p>&#51;</div>
-																				 <div><p>&amp;#52;</p>&#52;</div>
-																				 <div><p>&amp;#53;</p>&#53;</div>
-																				 <div><p>&amp;#54;</p>&#54;</div>
-																				 <div><p>&amp;#55;</p>&#55;</div>
-																				 <div><p>&amp;#56;</p>&#56;</div>
-																				 <div><p>&amp;#57;</p>&#57;</div>
-																				 <div><p>&amp;#58;</p>&#58;</div>
-																				 <div><p>&amp;#59;</p>&#59;</div>
-																				 <div><p>&amp;#60;</p>&#60;</div>
-																				 <div><p>&amp;#61;</p>&#61;</div>
-																				 <div><p>&amp;#62;</p>&#62;</div>
-																				 <div><p>&amp;#63;</p>&#63;</div>
-																				 <div><p>&amp;#64;</p>&#64;</div>
-																				 <div><p>&amp;#65;</p>&#65;</div>
-																				 <div><p>&amp;#66;</p>&#66;</div>
-																				 <div><p>&amp;#67;</p>&#67;</div>
-																				 <div><p>&amp;#68;</p>&#68;</div>
-																				 <div><p>&amp;#69;</p>&#69;</div>
-																				 <div><p>&amp;#70;</p>&#70;</div>
-																				 <div><p>&amp;#71;</p>&#71;</div>
-																				 <div><p>&amp;#72;</p>&#72;</div>
-																				 <div><p>&amp;#73;</p>&#73;</div>
-																				 <div><p>&amp;#74;</p>&#74;</div>
-																				 <div><p>&amp;#75;</p>&#75;</div>
-																				 <div><p>&amp;#76;</p>&#76;</div>
-																				 <div><p>&amp;#77;</p>&#77;</div>
-																				 <div><p>&amp;#78;</p>&#78;</div>
-																				 <div><p>&amp;#79;</p>&#79;</div>
-																				 <div><p>&amp;#80;</p>&#80;</div>
-																				 <div><p>&amp;#81;</p>&#81;</div>
-																				 <div><p>&amp;#82;</p>&#82;</div>
-																				 <div><p>&amp;#83;</p>&#83;</div>
-																				 <div><p>&amp;#84;</p>&#84;</div>
-																				 <div><p>&amp;#85;</p>&#85;</div>
-																				 <div><p>&amp;#86;</p>&#86;</div>
-																				 <div><p>&amp;#87;</p>&#87;</div>
-																				 <div><p>&amp;#88;</p>&#88;</div>
-																				 <div><p>&amp;#89;</p>&#89;</div>
-																				 <div><p>&amp;#90;</p>&#90;</div>
-																				 <div><p>&amp;#91;</p>&#91;</div>
-																				 <div><p>&amp;#92;</p>&#92;</div>
-																				 <div><p>&amp;#93;</p>&#93;</div>
-																				 <div><p>&amp;#94;</p>&#94;</div>
-																				 <div><p>&amp;#95;</p>&#95;</div>
-																				 <div><p>&amp;#96;</p>&#96;</div>
-																				 <div><p>&amp;#97;</p>&#97;</div>
-																				 <div><p>&amp;#98;</p>&#98;</div>
-																				 <div><p>&amp;#99;</p>&#99;</div>
-																				 <div><p>&amp;#100;</p>&#100;</div>
-																				 <div><p>&amp;#101;</p>&#101;</div>
-																				 <div><p>&amp;#102;</p>&#102;</div>
-																				 <div><p>&amp;#103;</p>&#103;</div>
-																				 <div><p>&amp;#104;</p>&#104;</div>
-																				 <div><p>&amp;#105;</p>&#105;</div>
-																				 <div><p>&amp;#106;</p>&#106;</div>
-																				 <div><p>&amp;#107;</p>&#107;</div>
-																				 <div><p>&amp;#108;</p>&#108;</div>
-																				 <div><p>&amp;#109;</p>&#109;</div>
-																				 <div><p>&amp;#110;</p>&#110;</div>
-																				 <div><p>&amp;#111;</p>&#111;</div>
-																				 <div><p>&amp;#112;</p>&#112;</div>
-																				 <div><p>&amp;#113;</p>&#113;</div>
-																				 <div><p>&amp;#114;</p>&#114;</div>
-																				 <div><p>&amp;#115;</p>&#115;</div>
-																				 <div><p>&amp;#116;</p>&#116;</div>
-																				 <div><p>&amp;#117;</p>&#117;</div>
-																				 <div><p>&amp;#118;</p>&#118;</div>
-																				 <div><p>&amp;#119;</p>&#119;</div>
-																				 <div><p>&amp;#120;</p>&#120;</div>
-																				 <div><p>&amp;#121;</p>&#121;</div>
-																				 <div><p>&amp;#122;</p>&#122;</div>
-																				 <div><p>&amp;#123;</p>&#123;</div>
-																				 <div><p>&amp;#124;</p>&#124;</div>
-																				 <div><p>&amp;#125;</p>&#125;</div>
-																				 <div><p>&amp;#126;</p>&#126;</div>
-																				 <div><p>&amp;#160;</p>&#160;</div>
-																				 <div><p>&amp;#161;</p>&#161;</div>
-																				 <div><p>&amp;#162;</p>&#162;</div>
-																				 <div><p>&amp;#163;</p>&#163;</div>
-																				 <div><p>&amp;#164;</p>&#164;</div>
-																				 <div><p>&amp;#165;</p>&#165;</div>
-																				 <div><p>&amp;#166;</p>&#166;</div>
-																				 <div><p>&amp;#167;</p>&#167;</div>
-																				 <div><p>&amp;#168;</p>&#168;</div>
-																				 <div><p>&amp;#169;</p>&#169;</div>
-																				 <div><p>&amp;#170;</p>&#170;</div>
-																				 <div><p>&amp;#171;</p>&#171;</div>
-																				 <div><p>&amp;#172;</p>&#172;</div>
-																				 <div><p>&amp;#173;</p>&#173;</div>
-																				 <div><p>&amp;#174;</p>&#174;</div>
-																				 <div><p>&amp;#175;</p>&#175;</div>
-																				 <div><p>&amp;#176;</p>&#176;</div>
-																				 <div><p>&amp;#177;</p>&#177;</div>
-																				 <div><p>&amp;#178;</p>&#178;</div>
-																				 <div><p>&amp;#179;</p>&#179;</div>
-																				 <div><p>&amp;#180;</p>&#180;</div>
-																				 <div><p>&amp;#181;</p>&#181;</div>
-																				 <div><p>&amp;#182;</p>&#182;</div>
-																				 <div><p>&amp;#183;</p>&#183;</div>
-																				 <div><p>&amp;#184;</p>&#184;</div>
-																				 <div><p>&amp;#185;</p>&#185;</div>
-																				 <div><p>&amp;#186;</p>&#186;</div>
-																				 <div><p>&amp;#187;</p>&#187;</div>
-																				 <div><p>&amp;#188;</p>&#188;</div>
-																				 <div><p>&amp;#189;</p>&#189;</div>
-																				 <div><p>&amp;#190;</p>&#190;</div>
-																				 <div><p>&amp;#191;</p>&#191;</div>
-																				 <div><p>&amp;#192;</p>&#192;</div>
-																				 <div><p>&amp;#193;</p>&#193;</div>
-																				 <div><p>&amp;#194;</p>&#194;</div>
-																				 <div><p>&amp;#195;</p>&#195;</div>
-																				 <div><p>&amp;#196;</p>&#196;</div>
-																				 <div><p>&amp;#197;</p>&#197;</div>
-																				 <div><p>&amp;#198;</p>&#198;</div>
-																				 <div><p>&amp;#199;</p>&#199;</div>
-																				 <div><p>&amp;#200;</p>&#200;</div>
-																				 <div><p>&amp;#201;</p>&#201;</div>
-																				 <div><p>&amp;#202;</p>&#202;</div>
-																				 <div><p>&amp;#203;</p>&#203;</div>
-																				 <div><p>&amp;#204;</p>&#204;</div>
-																				 <div><p>&amp;#205;</p>&#205;</div>
-																				 <div><p>&amp;#206;</p>&#206;</div>
-																				 <div><p>&amp;#207;</p>&#207;</div>
-																				 <div><p>&amp;#208;</p>&#208;</div>
-																				 <div><p>&amp;#209;</p>&#209;</div>
-																				 <div><p>&amp;#210;</p>&#210;</div>
-																				 <div><p>&amp;#211;</p>&#211;</div>
-																				 <div><p>&amp;#212;</p>&#212;</div>
-																				 <div><p>&amp;#213;</p>&#213;</div>
-																				 <div><p>&amp;#214;</p>&#214;</div>
-																				 <div><p>&amp;#215;</p>&#215;</div>
-																				 <div><p>&amp;#216;</p>&#216;</div>
-																				 <div><p>&amp;#217;</p>&#217;</div>
-																				 <div><p>&amp;#218;</p>&#218;</div>
-																				 <div><p>&amp;#219;</p>&#219;</div>
-																				 <div><p>&amp;#220;</p>&#220;</div>
-																				 <div><p>&amp;#221;</p>&#221;</div>
-																				 <div><p>&amp;#222;</p>&#222;</div>
-																				 <div><p>&amp;#223;</p>&#223;</div>
-																				 <div><p>&amp;#224;</p>&#224;</div>
-																				 <div><p>&amp;#225;</p>&#225;</div>
-																				 <div><p>&amp;#226;</p>&#226;</div>
-																				 <div><p>&amp;#227;</p>&#227;</div>
-																				 <div><p>&amp;#228;</p>&#228;</div>
-																				 <div><p>&amp;#229;</p>&#229;</div>
-																				 <div><p>&amp;#230;</p>&#230;</div>
-																				 <div><p>&amp;#231;</p>&#231;</div>
-																				 <div><p>&amp;#232;</p>&#232;</div>
-																				 <div><p>&amp;#233;</p>&#233;</div>
-																				 <div><p>&amp;#234;</p>&#234;</div>
-																				 <div><p>&amp;#235;</p>&#235;</div>
-																				 <div><p>&amp;#236;</p>&#236;</div>
-																				 <div><p>&amp;#237;</p>&#237;</div>
-																				 <div><p>&amp;#238;</p>&#238;</div>
-																				 <div><p>&amp;#239;</p>&#239;</div>
-																				 <div><p>&amp;#240;</p>&#240;</div>
-																				 <div><p>&amp;#241;</p>&#241;</div>
-																				 <div><p>&amp;#242;</p>&#242;</div>
-																				 <div><p>&amp;#243;</p>&#243;</div>
-																				 <div><p>&amp;#244;</p>&#244;</div>
-																				 <div><p>&amp;#245;</p>&#245;</div>
-																				 <div><p>&amp;#246;</p>&#246;</div>
-																				 <div><p>&amp;#247;</p>&#247;</div>
-																				 <div><p>&amp;#248;</p>&#248;</div>
-																				 <div><p>&amp;#249;</p>&#249;</div>
-																				 <div><p>&amp;#250;</p>&#250;</div>
-																				 <div><p>&amp;#251;</p>&#251;</div>
-																				 <div><p>&amp;#252;</p>&#252;</div>
-																				 <div><p>&amp;#253;</p>&#253;</div>
-																				 <div><p>&amp;#254;</p>&#254;</div>
-																				 <div><p>&amp;#255;</p>&#255;</div>
-																				 <div><p>&amp;#338;</p>&#338;</div>
-																				 <div><p>&amp;#339;</p>&#339;</div>
-																				 <div><p>&amp;#376;</p>&#376;</div>
-																				 <div><p>&amp;#710;</p>&#710;</div>
-																				 <div><p>&amp;#732;</p>&#732;</div>
-																				 <div><p>&amp;#8192;</p>&#8192;</div>
-																				 <div><p>&amp;#8193;</p>&#8193;</div>
-																				 <div><p>&amp;#8194;</p>&#8194;</div>
-																				 <div><p>&amp;#8195;</p>&#8195;</div>
-																				 <div><p>&amp;#8196;</p>&#8196;</div>
-																				 <div><p>&amp;#8197;</p>&#8197;</div>
-																				 <div><p>&amp;#8198;</p>&#8198;</div>
-																				 <div><p>&amp;#8199;</p>&#8199;</div>
-																				 <div><p>&amp;#8200;</p>&#8200;</div>
-																				 <div><p>&amp;#8201;</p>&#8201;</div>
-																				 <div><p>&amp;#8202;</p>&#8202;</div>
-																				 <div><p>&amp;#8208;</p>&#8208;</div>
-																				 <div><p>&amp;#8209;</p>&#8209;</div>
-																				 <div><p>&amp;#8210;</p>&#8210;</div>
-																				 <div><p>&amp;#8211;</p>&#8211;</div>
-																				 <div><p>&amp;#8212;</p>&#8212;</div>
-																				 <div><p>&amp;#8216;</p>&#8216;</div>
-																				 <div><p>&amp;#8217;</p>&#8217;</div>
-																				 <div><p>&amp;#8218;</p>&#8218;</div>
-																				 <div><p>&amp;#8220;</p>&#8220;</div>
-																				 <div><p>&amp;#8221;</p>&#8221;</div>
-																				 <div><p>&amp;#8222;</p>&#8222;</div>
-																				 <div><p>&amp;#8226;</p>&#8226;</div>
-																				 <div><p>&amp;#8230;</p>&#8230;</div>
-																				 <div><p>&amp;#8239;</p>&#8239;</div>
-																				 <div><p>&amp;#8249;</p>&#8249;</div>
-																				 <div><p>&amp;#8250;</p>&#8250;</div>
-																				 <div><p>&amp;#8287;</p>&#8287;</div>
-																				 <div><p>&amp;#8364;</p>&#8364;</div>
-																				 <div><p>&amp;#8482;</p>&#8482;</div>
-																				 <div><p>&amp;#9724;</p>&#9724;</div>
-																				 <div><p>&amp;#64257;</p>&#64257;</div>
-																				 <div><p>&amp;#64258;</p>&#64258;</div>
-																				 <div><p>&amp;#64259;</p>&#64259;</div>
-																				 <div><p>&amp;#64260;</p>&#64260;</div>
-																																																</div>	
-				</div>
-		
-		
-			</div>
-		</div>
-		
-		
-		<div id="specs">
-			
-		</div>
-	
-		<div id="installing">
-			<div class="section">
-				<div class="grid7 firstcol">
-					<h1>Installing Webfonts</h1>
-					
-					<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
-					
-					<h2>1. Upload your webfonts</h2>
-					<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
-					
-					<h2>2. Include the webfont stylesheet</h2>
-					<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p>
-
-
-<code>
-@font-face{ 
-	font-family: 'MyWebFont';
-	src: url('WebFont.eot');
-	src: url('WebFont.eot?#iefix') format('embedded-opentype'),
-	     url('WebFont.woff') format('woff'),
-	     url('WebFont.ttf') format('truetype'),
-	     url('WebFont.svg#webfont') format('svg');
-}
-</code>
-
-	<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
-	<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>
-
-					<h2>3. Modify your own stylesheet</h2>
-					<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
-<code>p { font-family: 'WebFont', Arial, sans-serif; }</code>
-
-<h2>4. Test</h2>
-<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
-				</div>
-				
-				<div class="grid5 sidebar">
-					<div class="box">
-						<h2>Troubleshooting<br />Font-Face Problems</h2>
-						<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
-
-						<h3>Fonts not showing in any browser</h3>
-
-						<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
-
-						<h3>Fonts not loading in iPhone or iPad</h3>
-
-						<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
-
-						<h3>Fonts not loading in Firefox</h3>
-
-						<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
-
-						<h3>Fonts not loading in IE</h3>
-
-						<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
-
-						<h3>Fonts not loading in IE9</h3>
-
-						<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
-					</div>
-				</div>
-			</div>
-			
-		</div>
-	
-	</div>
-	<div id="footer">
-		<p>&copy;2010-2011 Font Squirrel. All rights reserved.</p>
-	</div>
-</div>
-</body>
-</html>
diff --git a/client/assets/fonts/brandon_blk/brandon_blk-webfont.eot b/client/assets/fonts/brandon_blk/brandon_blk-webfont.eot
deleted file mode 100755
index 4faf50eb4421302276d3915c8bbce2990ce70c8c..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/brandon_blk/brandon_blk-webfont.eot and /dev/null differ
diff --git a/client/assets/fonts/brandon_blk/brandon_blk-webfont.svg b/client/assets/fonts/brandon_blk/brandon_blk-webfont.svg
deleted file mode 100755
index 60495948cf66ec1ba9c7757ad688aa4e39b80044..0000000000000000000000000000000000000000
--- a/client/assets/fonts/brandon_blk/brandon_blk-webfont.svg
+++ /dev/null
@@ -1,4916 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
-<metadata></metadata>
-<defs>
-<font id="brandon_grotesqueblack" horiz-adv-x="1044" >
-<font-face units-per-em="2048" ascent="1434" descent="-614" />
-<missing-glyph horiz-adv-x="452" />
-<glyph unicode="&#xfb01;" horiz-adv-x="1169" d="M72 598v182q0 17 11 28t28 11h43v191q0 193 123.5 318.5t314.5 125.5q87 0 173.5 -26.5t143.5 -57.5q15 -7 20 -23.5t-3 -31.5l-88 -168q-12 -24 -25 -30t-33 3q-110 51 -184 51q-54 0 -91.5 -41.5t-37.5 -121.5v-189h553q17 0 28 -11t11 -28v-741q0 -16 -11 -27.5 t-28 -11.5h-223q-17 0 -28 11.5t-11 27.5v520h-291v-520q0 -12 -5.5 -20t-12 -12t-19 -6t-20 -2t-22.5 0.5t-19 0.5h-176q-15 0 -27 12t-12 27v520h-43q-17 0 -28 11.5t-11 27.5z" />
-<glyph unicode="&#xfb02;" horiz-adv-x="1212" d="M70 598v182q0 17 11 28t28 11h47v191q0 204 125.5 324t312.5 120q52 0 102.5 -12.5t85.5 -30t63 -35.5t42 -30l14 -13l27 62q17 39 53 39h82q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-227q-15 0 -27 12t-12 27v1048q-17 24 -66.5 54t-105.5 30q-68 0 -113 -41.5 t-45 -121.5v-189h137q16 0 27.5 -11t11.5 -28v-182q0 -15 -12 -27t-27 -12h-137v-520q0 -15 -12 -27t-27 -12h-235q-15 0 -26 12t-11 27v520h-47q-17 0 -28 11.5t-11 27.5z" />
-<glyph horiz-adv-x="0" />
-<glyph horiz-adv-x="682" />
-<glyph unicode=" "  horiz-adv-x="452" />
-<glyph unicode="&#x09;" horiz-adv-x="452" />
-<glyph unicode="&#xa0;" horiz-adv-x="452" />
-<glyph unicode="!" horiz-adv-x="643" d="M127 172q0 80 57 138.5t135 58.5q79 0 138 -58.5t59 -138.5q0 -78 -58.5 -135t-138.5 -57q-78 0 -135 57t-57 135zM139 1161v234q0 15 12 27t27 12h287q15 0 27 -12t12 -27v-230l-101 -575q-2 -12 -13.5 -22.5t-24.5 -10.5h-86q-13 0 -25 10.5t-14 22.5z" />
-<glyph unicode="&#x22;" horiz-adv-x="749" d="M63 1065v330q0 15 12 27t27 12h213q21 0 32 -15.5t5 -36.5l-98 -325q-3 -12 -14.5 -21.5t-22.5 -9.5h-115q-15 0 -27 12t-12 27zM434 1065v330q0 15 12 27t27 12h213q21 0 32 -15.5t5 -36.5l-98 -325q-3 -12 -14.5 -21.5t-22.5 -9.5h-115q-15 0 -27 12t-12 27z" />
-<glyph unicode="#" horiz-adv-x="1095" d="M68 418v35q0 17 10.5 28t27.5 11h160l49 329h-149q-15 0 -27 12t-12 27v35q0 15 12 27t27 12h164l65 467q2 12 13 22.5t24 10.5h35q18 0 29 -13.5t8 -31.5l-62 -455h330l64 467q2 12 13.5 22.5t24.5 10.5h33q19 0 30.5 -13t8.5 -32l-61 -455h123q17 0 28 -11.5t11 -27.5 v-35q0 -16 -11 -27.5t-28 -11.5h-140l-47 -329h127q16 0 27.5 -11t11.5 -28v-35q0 -15 -12 -27t-27 -12h-143l-47 -346q-2 -14 -13 -23.5t-26 -9.5h-33q-19 0 -30 13t-9 32l47 334h-332l-45 -346q-1 -13 -12.5 -23t-25.5 -10h-33q-20 0 -31 13t-8 32l45 334h-146 q-17 0 -27.5 11.5t-10.5 27.5zM379 492h332l45 329h-328z" />
-<glyph unicode="$" horiz-adv-x="1077" d="M61 1047q0 160 110 272.5t308 132.5v66q0 17 11.5 27.5t27.5 10.5h35q16 0 27.5 -10.5t11.5 -27.5v-68q204 -18 381 -150q17 -9 18.5 -32.5t-6.5 -32.5l-119 -172q-11 -16 -27.5 -19t-27.5 7q-3 1 -38.5 23.5t-87 51t-93.5 45.5v-288q434 -171 434 -480 q0 -106 -52.5 -197t-153 -151.5t-232.5 -72.5v-213q0 -15 -12 -26t-27 -11h-35q-15 0 -27 11t-12 26v213q-79 6 -148.5 24.5t-117.5 43.5t-77.5 46t-49.5 41q-17 17 -19.5 25.5t9.5 32.5l88 155q14 25 35 33t43 -6q133 -89 237 -123l2 332q-59 24 -112 52t-110.5 71t-99 91 t-68 112.5t-26.5 134.5zM358 1092q0 -92 113 -160v266q-49 -6 -81 -36.5t-32 -69.5zM594 236q48 12 78 46t30 80q0 100 -108 173v-299z" />
-<glyph unicode="%" horiz-adv-x="1349" d="M37 1180q0 115 80 194.5t196 79.5q115 0 196 -79.5t81 -194.5t-81.5 -196t-195.5 -81q-115 0 -195.5 80.5t-80.5 196.5zM188 55l703 1358q12 21 35 21h155q23 0 34.5 -18t0.5 -38l-706 -1358q-5 -6 -16.5 -13t-18.5 -7h-152q-23 0 -34 17.5t-1 37.5zM242 1180 q0 -29 21 -50.5t50 -21.5q28 0 49 21.5t21 50.5q0 28 -21 48.5t-49 20.5q-29 0 -50 -20.5t-21 -48.5zM723 256q0 115 81 195.5t195 80.5q116 0 197.5 -80.5t81.5 -195.5q0 -114 -82 -195t-197 -81q-114 0 -195 81t-81 195zM930 256q0 -28 20.5 -49t48.5 -21q29 0 50.5 21 t21.5 49q0 29 -21.5 50.5t-50.5 21.5q-28 0 -48.5 -21.5t-20.5 -50.5z" />
-<glyph unicode="&#x26;" horiz-adv-x="1431" d="M143 369q0 60 15.5 115.5t40.5 95.5t55 74.5t59.5 57t54.5 38.5t40 23l16 7v6l-41 43q-66 70 -100.5 139.5t-34.5 153.5q0 60 26 118t73.5 106.5t125.5 78t172 29.5q174 0 292 -99.5t118 -242.5q0 -63 -23 -122t-56 -99t-66 -70.5t-56 -49t-23 -21.5l185 -189 q40 64 67 158q4 15 7.5 24.5t10 19t14 13.5t20 4t28.5 -6l150 -53q10 -4 17.5 -9t12 -10t6 -13t2 -13t-1.5 -14t-2.5 -12.5t-4 -12.5t-3.5 -10q-22 -63 -54 -126t-53 -97l-22 -33l174 -162q17 -16 23 -25t1.5 -27t-28.5 -42l-114 -117q-45 -41 -92 6l-134 133l-17 -17 t-51.5 -38t-88 -47.5t-125.5 -37.5t-164 -17q-194 0 -322.5 113.5t-128.5 275.5zM436 410q0 -74 55.5 -124t137.5 -50q45 0 84 10.5t63 26t42 31t25 26.5l7 10l-268 285q-6 -2 -16 -6.5t-35 -21.5t-44 -39.5t-35 -62t-16 -85.5zM520 1124q0 -10 1 -19t5 -19t6.5 -17 t9.5 -17.5t10.5 -16t13.5 -17t14.5 -16t17 -18.5t16.5 -19l45 -45q5 2 14.5 7t32.5 21.5t40.5 35t32 48.5t14.5 62q0 54 -43.5 92.5t-108.5 38.5q-55 0 -88 -29.5t-33 -71.5z" />
-<glyph unicode="'" horiz-adv-x="374" d="M63 1065v330q0 15 12 27t27 12h211q21 0 32 -15.5t5 -36.5l-98 -325q-3 -12 -14.5 -21.5t-22.5 -9.5h-113q-15 0 -27 12t-12 27z" />
-<glyph unicode="(" horiz-adv-x="704" d="M76 645q0 778 520 805q17 1 29 -10.5t12 -26.5l8 -174q0 -11 -8.5 -23.5t-18.5 -15.5q-125 -39 -180 -177t-55 -378q0 -241 55 -379t180 -178q10 -4 18.5 -16t8.5 -23l-8 -172q-3 -39 -41 -39q-54 4 -102.5 15t-102.5 36.5t-98 63.5t-85.5 100.5t-69.5 143.5t-45 195.5 t-17 252.5z" />
-<glyph unicode=")" horiz-adv-x="704" d="M59 51q0 10 9 22t18 15q125 40 180.5 178t55.5 379q0 240 -55.5 378t-180.5 177q-10 3 -18.5 15.5t-8.5 23.5l9 174q0 15 12 26.5t29 10.5q520 -27 520 -805q0 -138 -17 -252.5t-45 -195.5t-69.5 -143.5t-85.5 -100.5t-98 -63.5t-102.5 -36.5t-102.5 -15q-17 0 -29 11 t-12 26z" />
-<glyph unicode="*" horiz-adv-x="745" d="M36 941q2 17 17 26l176 104l-176 107q-13 9 -16.5 25.5t4.5 29.5q14 22 49 72q9 11 24 14t27 -6l152 -105l-4 187q0 15 12 27t27 12h84q15 0 27 -12t12 -27l-5 -187l154 105q12 8 29 5t24 -15l45 -70q10 -13 7 -30.5t-17 -26.5l-176 -105l176 -106q14 -9 17 -25.5 t-5 -28.5l-51 -71q-7 -12 -23 -15.5t-28 4.5l-152 103l5 -182q0 -15 -12 -27t-27 -12h-84q-15 0 -27 12t-12 27l4 184l-152 -105q-12 -9 -28.5 -5t-24.5 16l-45 71q-9 13 -7 30z" />
-<glyph unicode="+" horiz-adv-x="1089" d="M96 637v143q0 15 12 27t27 12h299v301q0 15 12 26t27 11h143q15 0 27 -11t12 -26v-301h301q15 0 26 -12t11 -27v-143q0 -15 -11 -27t-26 -12h-301v-299q0 -15 -12 -26t-27 -11h-143q-15 0 -27 11t-12 26v299h-299q-15 0 -27 12t-12 27z" />
-<glyph unicode="," horiz-adv-x="567" d="M57 170q0 80 60.5 137.5t152.5 57.5q40 0 80.5 -16.5t77.5 -51t60.5 -97.5t23.5 -145q0 -41 -5.5 -81t-13.5 -72t-23 -65.5t-27 -57t-32.5 -51t-32 -42.5t-33.5 -37t-30 -29.5t-28 -25t-21 -18.5q-13 -11 -28.5 -12t-28.5 12l-43 49q-12 13 -11.5 29.5t15.5 28.5 q182 146 184 319q-45 -22 -106 -22q-77 0 -134 56t-57 134z" />
-<glyph unicode="-" horiz-adv-x="735" d="M94 401v187q0 17 11 28t28 11h469q17 0 28 -11t11 -28v-187q0 -15 -11 -25.5t-28 -10.5h-469q-17 0 -28 10.5t-11 25.5z" />
-<glyph unicode="." horiz-adv-x="499" d="M55 172q0 80 57.5 138.5t135.5 58.5q79 0 137.5 -58.5t58.5 -138.5q0 -78 -58 -135t-138 -57q-78 0 -135.5 57t-57.5 135z" />
-<glyph unicode="/" horiz-adv-x="761" d="M49 51l402 1356q3 11 13.5 19t22.5 8h201q22 0 32.5 -15t4.5 -37l-399 -1355q-3 -10 -14.5 -18.5t-22.5 -8.5h-203q-21 0 -32 15t-5 36z" />
-<glyph unicode="0" horiz-adv-x="1277" d="M115 696q0 338 137.5 527.5t386.5 189.5t386.5 -189.5t137.5 -527.5t-137 -527t-387 -189t-387 189t-137 527zM444 696q0 -202 50.5 -311t144.5 -109t144.5 109t50.5 311q0 201 -50.5 310.5t-144.5 109.5t-144.5 -109.5t-50.5 -310.5z" />
-<glyph unicode="1" horiz-adv-x="765" d="M51 999v129q0 19 12 31l299 234h189q15 0 26 -12t11 -27v-1315q0 -15 -11 -27t-26 -12h-227q-17 0 -28 11.5t-11 27.5v922h-197q-15 0 -26 11.5t-11 26.5z" />
-<glyph unicode="2" horiz-adv-x="1052" d="M47 39v41q110 144 285.5 385t257.5 366q53 80 53 156q0 62 -48.5 105t-131.5 43q-57 0 -109.5 -31.5t-89.5 -71.5q-12 -12 -28.5 -12t-28.5 12l-125 127q-11 9 -11.5 25t9.5 28q7 8 19.5 21.5t54 48.5t86 61.5t113 48t136.5 21.5q213 0 339 -119t126 -295 q0 -52 -11.5 -99t-24.5 -77t-44 -90q-30 -52 -85.5 -132.5t-138.5 -194.5t-105 -144h360q15 0 27 -12t12 -27v-184q0 -15 -12 -27t-27 -12h-819q-17 0 -28 11.5t-11 27.5z" />
-<glyph unicode="3" horiz-adv-x="1058" d="M53 187.5q1 14.5 10 25.5l130 129q24 24 51 4q14 -11 38 -26.5t83.5 -41.5t103.5 -26q68 0 123 49t55 115q0 70 -66.5 118t-177.5 48h-114q-15 0 -27 12t-12 27v170q0 17 11.5 27.5t27.5 10.5h114q104 0 162 44.5t58 113.5q0 65 -48.5 109.5t-115.5 44.5q-105 0 -178 -82 q-10 -12 -27 -12.5t-29 10.5l-125 123q-12 11 -11.5 26.5t11.5 26.5l19.5 19.5t54 43.5t84.5 54.5t107.5 43t126.5 19.5q184 0 313 -104t129 -271q0 -108 -65 -193.5t-146 -123.5v-6q39 -17 80 -47.5t79.5 -73.5t63.5 -102t25 -121q0 -169 -133.5 -280t-343.5 -111 q-90 0 -168.5 20t-130.5 51.5t-82.5 58t-51.5 52.5q-9 11 -8 25.5z" />
-<glyph unicode="4" horiz-adv-x="1228" d="M29 328v217l714 858q12 12 31 12h148q16 0 27.5 -11t11.5 -28l2 -839h161q17 0 28 -11t11 -26v-170q0 -16 -11 -27.5t-28 -11.5h-161l2 -252q0 -15 -12 -27t-27 -12h-219q-15 0 -27 12t-12 27v250h-600q-17 0 -28 11.5t-11 27.5zM350 543h326v381z" />
-<glyph unicode="5" horiz-adv-x="1079" d="M84.5 187q-0.5 13 17.5 32l129 127q9 9 23.5 11t26.5 -5q16 -11 43 -27.5t91.5 -43.5t108.5 -27q84 0 139.5 55.5t55.5 139.5q0 86 -57 142t-154 56h-315q-29 0 -46.5 22.5t-17.5 49.5v635q0 16 11 27.5t28 11.5h659q17 0 28 -11.5t11 -27.5v-180q0 -16 -11 -27.5 t-28 -11.5h-421v-220h145q210 0 338.5 -131t128.5 -335q0 -194 -146.5 -331.5t-359.5 -137.5q-98 0 -187.5 31.5t-138.5 66.5t-80 72q-21 24 -21.5 37z" />
-<glyph unicode="6" horiz-adv-x="1101" d="M76 537q0 124 29.5 236.5t76 196t110.5 157t127 123.5t132 90.5t119 62t94 35.5q46 15 63 -33l60 -158q14 -44 -39 -59q-368 -119 -412 -336q40 17 97 29t98 12q75 0 145.5 -27.5t130 -80t95.5 -140t36 -196.5q0 -193 -138.5 -331t-330.5 -138q-116 0 -210 42t-155.5 117 t-94.5 176.5t-33 221.5zM369 459q0 -80 57.5 -138.5t138.5 -58.5t139 58.5t58 138.5q0 82 -57.5 140t-139.5 58t-139 -58t-57 -140z" />
-<glyph unicode="7" horiz-adv-x="1011" d="M74 1169v185q0 15 12 27t27 12h864q15 0 27 -12t12 -27v-15l-613 -1280q-17 -35 -37 -47t-47 -12h-202q-17 0 -29 11t-12 28v22l512 1069h-475q-15 0 -27 12t-12 27z" />
-<glyph unicode="8" horiz-adv-x="1161" d="M82 371q0 51 23 103t53.5 89.5t69.5 72.5t62.5 52t41.5 27v6q-34 19 -67.5 46.5t-67.5 67t-55 93t-21 110.5q0 168 131 271.5t323 103.5q199 0 332 -103.5t133 -271.5q0 -55 -21 -106.5t-55.5 -91.5t-66.5 -67t-68 -50v-8q41 -23 79 -52t79.5 -72t66.5 -100.5t25 -119.5 q0 -170 -138.5 -280.5t-365.5 -110.5q-220 0 -356.5 111t-136.5 280zM414 385q0 -65 51 -109.5t117 -44.5q64 0 115 45t51 109q0 59 -43.5 110t-124.5 78q-78 -27 -122 -78.5t-44 -109.5zM436 1026q0 -115 144 -170q70 26 107.5 71t37.5 99q0 53 -43.5 93t-101.5 40 q-57 0 -100.5 -40t-43.5 -93z" />
-<glyph unicode="9" horiz-adv-x="1099" d="M61 956q0 193 138.5 331t330.5 138q155 0 268 -73t169.5 -198t56.5 -286q0 -124 -28.5 -236.5t-74.5 -196t-109 -157t-126 -123.5t-131.5 -90.5t-120.5 -62.5t-98 -35q-48 -12 -64 33l-59 158q-14 44 39 59q368 119 412 336q-40 -17 -97 -29t-98 -12q-59 0 -116.5 16.5 t-110.5 52.5t-93 87.5t-64 125.5t-24 162zM338 946q0 -82 57.5 -140t139.5 -58t139 58t57 140q0 80 -57.5 138.5t-138.5 58.5t-139 -58.5t-58 -138.5z" />
-<glyph unicode=":" horiz-adv-x="532" d="M104 141q0 68 47.5 116t114.5 48q68 0 116 -48.5t48 -115.5t-48 -114t-116 -47t-115 47t-47 114zM104 676q0 68 47.5 116t114.5 48q68 0 116 -48t48 -116q0 -67 -48 -114.5t-116 -47.5t-115 47t-47 115z" />
-<glyph unicode=";" horiz-adv-x="485" d="M57 676q0 68 47.5 116t114.5 48t115.5 -48t48.5 -116q0 -67 -48 -114.5t-116 -47.5q-67 0 -114.5 47t-47.5 115zM68 125q0 61 46 104t115 43q32 0 62.5 -12.5t59.5 -38.5t47 -74.5t18 -111.5q0 -51 -10 -98t-30 -85t-37 -65.5t-45 -55t-37.5 -36.5t-31.5 -27 q-25 -18 -45 4l-30 31q-10 13 -9 25t11 20q11 8 24 18.5t36 35t40 50.5t30.5 64.5t14.5 77.5q-35 -14 -82 -14q-61 0 -104 42t-43 103z" />
-<glyph unicode="&#x3c;" horiz-adv-x="890" d="M35 465v10q0 9 6 19.5t14 15.5l717 434q20 12 38.5 2t18.5 -35v-178q0 -6 -5 -15.5t-11 -12.5l-391 -232l391 -223q6 -3 11 -13t5 -16v-178q0 -25 -18.5 -35t-38.5 2l-717 420q-8 5 -14 15.5t-6 19.5z" />
-<glyph unicode="=" horiz-adv-x="989" d="M109 285v145q0 16 10.5 27.5t27.5 11.5h695q17 0 28 -11.5t11 -27.5v-145q0 -16 -11 -27.5t-28 -11.5h-695q-17 0 -27.5 11.5t-10.5 27.5zM109 717v143q0 16 10.5 27.5t27.5 11.5h695q17 0 28 -11.5t11 -27.5v-143q0 -16 -11 -27.5t-28 -11.5h-695q-17 0 -27.5 11.5 t-10.5 27.5z" />
-<glyph unicode="&#x3e;" horiz-adv-x="890" d="M61 43v178q0 6 5.5 16t11.5 13l391 223l-391 232q-6 3 -11.5 12.5t-5.5 15.5v178q0 24 19 34.5t39 -1.5l717 -434q8 -5 14 -15.5t6 -19.5v-10q0 -9 -6 -19.5t-14 -15.5l-717 -420q-20 -12 -39 -1.5t-19 34.5z" />
-<glyph unicode="?" horiz-adv-x="927" d="M35.5 1247.5q0.5 15.5 11.5 26.5q6 7 18 19.5t52.5 43.5t85 54.5t115.5 43t145 19.5q108 0 204 -45.5t155 -129t59 -183.5q0 -63 -23 -115.5t-57 -85.5t-74 -67.5t-74 -63.5t-57 -73t-23 -95q0 -17 -11.5 -28t-26.5 -11h-220q-16 0 -27.5 11t-11.5 28v86q0 40 21 78.5 t52.5 67t68 59t68 56t52.5 57t21 61.5q0 48 -44 84.5t-109 36.5q-39 0 -74.5 -13t-55 -29.5t-41 -31.5t-33 -18.5t-30.5 8.5l-125 123q-12 11 -11.5 26.5zM231 172q0 80 57.5 138.5t135.5 58.5q80 0 138.5 -58.5t58.5 -138.5q0 -78 -58.5 -135t-138.5 -57q-78 0 -135.5 57 t-57.5 135z" />
-<glyph unicode="@" horiz-adv-x="2027" d="M53 457q0 216 73 401t203 316t314.5 205.5t400.5 74.5q212 0 385 -65.5t287.5 -181.5t176 -274t61.5 -343q0 -84 -16 -167t-53.5 -164t-92 -142.5t-138.5 -99t-186 -37.5q-177 0 -245 159h-17q-36 -69 -107.5 -114t-164.5 -45q-115 0 -202.5 61.5t-131 158t-43.5 208.5 q0 177 110.5 304.5t274.5 127.5q135 0 252 -127q4 8 13 32.5t14.5 37t17 24.5t25.5 12h84q15 0 26.5 -11t11.5 -28v-344q0 -63 10 -105.5t28 -61.5t36 -26t41 -7q43 0 77.5 31t54.5 81.5t30 108t10 116.5q0 134 -40.5 247t-118 197t-200.5 131.5t-280 47.5 q-325 0 -517.5 -199.5t-192.5 -539.5q0 -227 130 -411.5t341 -270.5q14 -6 21 -20t3 -27l-61 -168q-6 -16 -19.5 -23.5t-27.5 -1.5q-140 47 -261 138t-209 210.5t-138 268.5t-50 305zM811 416q0 -81 43.5 -127.5t106.5 -46.5q62 0 103.5 51.5t41.5 124.5q0 77 -42.5 126.5 t-109.5 49.5q-64 0 -103.5 -51t-39.5 -127z" />
-<glyph unicode="A" horiz-adv-x="1355" d="M-8 53l641 1379q11 22 35 22h20q24 0 35 -22l641 -1379q9 -20 -1.5 -36.5t-33.5 -16.5h-227q-28 0 -43.5 11t-28.5 40l-74 162h-557l-73 -164q-20 -49 -74 -49h-225q-23 0 -33.5 16.5t-1.5 36.5zM522 492h312l-156 337h-2z" />
-<glyph unicode="B" horiz-adv-x="1253" d="M176 39v1356q0 16 11 27.5t28 11.5h477q183 0 312 -110.5t129 -270.5q0 -56 -23 -109t-60.5 -94t-76 -70.5t-78.5 -50.5q47 -20 89.5 -46t87 -66t71 -97.5t26.5 -124.5q0 -112 -60.5 -203t-162.5 -141.5t-223 -50.5h-508q-17 0 -28 11.5t-11 27.5zM496 293h186 q60 0 103.5 43.5t43.5 105.5q0 59 -52 101.5t-115 42.5h-166v-293zM496 852h159q59 0 101.5 43t42.5 104q0 60 -42 100t-102 40h-159v-287z" />
-<glyph unicode="C" horiz-adv-x="1378" d="M72 715q0 151 58.5 288t157 235.5t235.5 157t288 58.5t270.5 -46.5t225.5 -143.5q13 -12 13.5 -29t-11.5 -29l-160 -166q-11 -10 -26 -10t-25 10q-117 105 -277 105q-171 0 -286 -124t-115 -298q0 -172 116 -294t287 -122q73 0 146.5 26t128.5 73q10 9 27 8t26 -11 l160 -170q10 -11 9.5 -27.5t-11.5 -27.5q-204 -198 -498 -198q-101 0 -197 26t-177 73t-149 114.5t-115.5 148.5t-74 176.5t-26.5 196.5z" />
-<glyph unicode="D" horiz-adv-x="1505" d="M176 39v1356q0 15 11 27t26 12h500q145 0 278.5 -57t230 -153t153.5 -228t57 -277q0 -117 -36.5 -227t-103 -198t-155 -154.5t-198 -103t-226.5 -36.5h-500q-15 0 -26 12t-11 27zM496 303h196q172 0 286 120t114 296q0 175 -114 294.5t-286 119.5h-196v-830z" />
-<glyph unicode="E" horiz-adv-x="1200" d="M176 39v1356q0 16 11 27.5t28 11.5h848q17 0 28 -11.5t11 -27.5v-224q0 -15 -11 -26.5t-28 -11.5h-567v-254h467q15 0 26.5 -12t11.5 -27v-224q0 -17 -11 -27.5t-27 -10.5h-467v-277h567q17 0 28 -11.5t11 -27.5v-223q0 -16 -11 -27.5t-28 -11.5h-848q-17 0 -28 11.5 t-11 27.5z" />
-<glyph unicode="F" horiz-adv-x="1153" d="M176 39v1356q0 16 11 27.5t28 11.5h848q17 0 28 -11.5t11 -27.5v-224q0 -15 -11 -26.5t-28 -11.5h-567v-295h467q15 0 26.5 -12t11.5 -27v-224q0 -15 -11.5 -26.5t-26.5 -11.5h-467v-498q0 -15 -12 -27t-27 -12h-242q-17 0 -28 11.5t-11 27.5z" />
-<glyph unicode="G" horiz-adv-x="1437" d="M74 715q0 151 58 287.5t156 235t234.5 156.5t286.5 58q130 0 263 -51t237 -141q14 -11 15 -27.5t-11 -28.5l-162 -172q-27 -23 -55 -2q-106 98 -269 98q-167 0 -285 -122t-118 -291q0 -168 119 -288t286 -120q102 0 183 33v119h-129q-17 0 -28 11t-11 26v202q0 17 11 28 t28 11h411q15 0 26 -12t11 -27l2 -551q0 -20 -16 -32q-9 -5 -25 -14t-68 -32t-108 -40.5t-140 -32t-167 -14.5q-150 0 -286.5 57.5t-234.5 155t-156 233.5t-58 287z" />
-<glyph unicode="H" horiz-adv-x="1581" d="M176 39v1356q0 15 12 27t27 12h244q17 0 28 -11.5t11 -27.5v-516h585v516q0 16 11 27.5t28 11.5h244q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-244q-17 0 -28 11.5t-11 27.5v539h-585v-539q0 -16 -11 -27.5t-28 -11.5h-244q-15 0 -27 12t-12 27z" />
-<glyph unicode="I" horiz-adv-x="675" d="M176 39v1356q0 15 12 27t27 12h246q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-246q-15 0 -27 12t-12 27z" />
-<glyph unicode="J" horiz-adv-x="868" d="M-29 129q-17 27 4 51l140 137q12 11 27.5 11.5t27.5 -11.5q22 -22 44 -32.5t60 -10.5q47 0 84 42t37 114v965q0 16 11 27.5t28 11.5h250q17 0 28 -11.5t11 -27.5v-967q0 -138 -60.5 -241.5t-159 -155t-220.5 -51.5q-191 0 -312 149z" />
-<glyph unicode="K" horiz-adv-x="1378" d="M176 49v1335q0 21 14 35.5t35 14.5h240q20 0 34.5 -15t14.5 -35v-538l455 567q17 21 39 21h258q29 0 41.5 -26.5t-4.5 -49.5l-480 -600l523 -680q17 -23 3.5 -49.5t-42.5 -26.5h-283q-10 0 -22 4.5t-15 9.5l-473 643v-610q0 -20 -14.5 -34.5t-34.5 -14.5h-240 q-21 0 -35 14t-14 35z" />
-<glyph unicode="L" horiz-adv-x="1046" d="M176 39v1356q0 16 11 27.5t28 11.5h244q15 0 27 -12t12 -27v-1094h487q17 0 28 -11.5t11 -27.5v-223q0 -16 -11 -27.5t-28 -11.5h-770q-17 0 -28 11.5t-11 27.5z" />
-<glyph unicode="M" horiz-adv-x="1798" d="M86 45l231 1376q1 13 13 23t24 10h33q8 0 19.5 -6t15.5 -14l475 -885h4l475 885q4 8 15.5 14t19.5 6h33q12 0 24 -10t13 -23l231 -1376q3 -20 -8.5 -32.5t-30.5 -12.5h-241q-13 0 -25 10.5t-14 22.5l-93 633h-4l-344 -664q-4 -9 -15 -15.5t-19 -6.5h-37q-9 0 -20 6.5 t-15 15.5l-346 664h-4l-90 -633q-2 -13 -13.5 -23t-25.5 -10h-242q-19 0 -30.5 12.5t-8.5 32.5z" />
-<glyph unicode="N" horiz-adv-x="1583" d="M174 1417q0 15 12 26t27 11h51l817 -786h2v727q0 16 11 27.5t28 11.5h246q15 0 27 -12t12 -27v-1379q0 -15 -12 -25.5t-27 -10.5h-33q-16 0 -26 10l-809 813h-2v-764q0 -16 -11 -27.5t-28 -11.5h-244q-15 0 -27 12t-12 27z" />
-<glyph unicode="O" horiz-adv-x="1615" d="M72 715q0 101 26 197t73 177t114.5 149t148.5 115.5t176.5 74t196.5 26.5q151 0 287.5 -58t235 -157t156.5 -236t58 -288t-58 -287.5t-156.5 -234.5t-235 -155.5t-287.5 -57.5t-287.5 57.5t-234.5 155.5t-155.5 234.5t-57.5 287.5zM399 715q0 -167 120.5 -287.5 t287.5 -120.5q169 0 289.5 120.5t120.5 287.5q0 169 -120.5 290t-289.5 121q-167 0 -287.5 -121t-120.5 -290z" />
-<glyph unicode="P" horiz-adv-x="1206" d="M176 39v1356q0 16 11 27.5t28 11.5h494q189 0 323.5 -133.5t134.5 -319.5q0 -125 -61.5 -231t-166.5 -168t-228 -62h-215v-481q0 -15 -12 -27t-27 -12h-242q-17 0 -28 11.5t-11 27.5zM496 819h194q67 0 114.5 47t47.5 115q0 64 -47.5 108t-114.5 44h-194v-314z" />
-<glyph unicode="Q" horiz-adv-x="1622" d="M72 715q0 101 26 197t73 177t114.5 149t148.5 115.5t176.5 74t196.5 26.5q151 0 287.5 -58t235 -157t156.5 -236t58 -288q0 -196 -103.5 -368t-275.5 -277l265 -414q12 -22 1.5 -42t-34.5 -20h-277q-20 0 -33 21l-217 367q-25 -2 -63 -2q-151 0 -287.5 57.5t-234.5 155.5 t-155.5 234.5t-57.5 287.5zM399 715q0 -167 120.5 -287.5t287.5 -120.5q169 0 289.5 120.5t120.5 287.5q0 169 -120.5 290t-289.5 121q-167 0 -287.5 -121t-120.5 -290z" />
-<glyph unicode="R" horiz-adv-x="1372" d="M176 39v1356q0 16 11 27.5t28 11.5h612q121 0 224 -59.5t163 -161.5t60 -222q0 -138 -83 -247t-220 -164l280 -521q11 -20 1 -39.5t-35 -19.5h-273q-24 0 -33 18l-272 543h-141v-522q0 -15 -12 -27t-27 -12h-244q-17 0 -28 11.5t-11 27.5zM498 821h303q63 0 109 49.5 t46 114.5q0 64 -46 110t-109 46h-303v-320z" />
-<glyph unicode="S" horiz-adv-x="1122" d="M84 1047q0 78 30.5 149.5t87.5 129.5t149 93t206 35q229 0 438 -154q17 -9 19 -32.5t-6 -32.5l-105 -158q-11 -18 -33 -27t-36 1q-1 1 -24.5 16.5t-51.5 31.5t-64 34t-77 29.5t-76 11.5q-54 0 -91.5 -31.5t-37.5 -73.5q0 -58 51.5 -104t171.5 -95q58 -23 105.5 -46 t108 -65t101.5 -89t70 -117t29 -150t-34 -155.5t-94.5 -135t-153.5 -96t-202 -36.5q-93 0 -175.5 17t-139 44.5t-90.5 50.5t-56 45q-16 16 -18.5 25.5t8.5 32.5l96 170q11 18 36 19.5t34 -7.5l15 -9q15 -10 34 -22t48.5 -27t59.5 -27t66 -20t68 -8q62 0 101.5 34.5 t39.5 88.5q0 124 -211 207q-58 23 -109.5 50t-106 68.5t-93 88.5t-63.5 111t-25 135z" />
-<glyph unicode="T" d="M29 1171v224q0 16 11 27.5t28 11.5h909q17 0 28 -11.5t11 -27.5v-224q0 -15 -11 -26.5t-28 -11.5h-293v-1094q0 -15 -12 -27t-27 -12h-246q-15 0 -27 12t-12 27v1094h-292q-17 0 -28 11.5t-11 26.5z" />
-<glyph unicode="U" horiz-adv-x="1476" d="M156 549v846q0 15 12 27t27 12h251q17 0 28 -11.5t11 -27.5v-830q0 -108 72 -183t180 -75q109 0 182.5 75t73.5 183v830q0 16 11 27.5t28 11.5h252q15 0 27 -12t12 -27v-846q0 -153 -78.5 -284t-213.5 -208t-294 -77q-158 0 -292 77t-211.5 208t-77.5 284z" />
-<glyph unicode="V" horiz-adv-x="1355" d="M-8 1380q-9 20 1.5 37t33.5 17h272q11 0 21.5 -7.5t13.5 -15.5l338 -747h12l338 747q3 8 13.5 15.5t21.5 7.5h272q23 0 33.5 -17t1.5 -37l-643 -1378q-11 -22 -35 -22h-20q-24 0 -35 22z" />
-<glyph unicode="W" horiz-adv-x="1835" d="M49 1384q-6 22 4.5 36t32.5 14h240q12 0 22.5 -9t13.5 -20l177 -694h8l317 721q11 22 35 22h37q28 0 35 -22l317 -721h8l177 694q3 11 13.5 20t22.5 9h240q22 0 32.5 -14t4.5 -36l-387 -1376q-3 -12 -14 -20t-23 -8h-33q-24 0 -35 22l-374 838h-7l-372 -838 q-11 -22 -35 -22h-33q-12 0 -23 8t-14 20z" />
-<glyph unicode="X" horiz-adv-x="1341" d="M46.5 18.5q-11.5 18.5 2.5 38.5l430 678l-413 641q-13 20 -2.5 39t36.5 19h299q19 0 33 -19l236 -381h2l239 381q3 7 13 13t20 6h299q26 0 37.5 -19t-2.5 -39l-416 -641l430 -678q13 -22 2.5 -39.5t-35.5 -17.5h-284q-24 0 -35 18l-268 414h-4l-263 -414q-14 -18 -34 -18 h-285q-26 0 -37.5 18.5z" />
-<glyph unicode="Y" horiz-adv-x="1208" d="M-14 1414q10 20 34 20h267q18 0 32 -19l285 -420l285 420q14 19 33 19h266q24 0 34.5 -20t-1.5 -40l-459 -682v-653q0 -15 -12 -27t-27 -12h-244q-17 0 -28 11.5t-11 27.5v651l-452 684q-12 20 -2 40z" />
-<glyph unicode="Z" horiz-adv-x="1110" d="M47 39v37l545 1052v5h-447q-15 0 -27 11.5t-12 26.5v224q0 15 12 27t27 12h871q15 0 27 -12t12 -27v-27l-527 -1063v-4h447q17 0 28 -11.5t11 -27.5v-223q0 -16 -11 -27.5t-28 -11.5h-889q-15 0 -27 12t-12 27z" />
-<glyph unicode="[" horiz-adv-x="739" d="M123 -578v1973q0 15 12 27t27 12h504q15 0 27 -12t12 -27v-164q0 -17 -11.5 -28t-27.5 -11h-260v-1567h260q15 0 27 -11t12 -26v-166q0 -15 -12 -26.5t-27 -11.5h-504q-15 0 -27 11.5t-12 26.5z" />
-<glyph unicode="\" horiz-adv-x="761" d="M37 1382q-6 22 4.5 37t32.5 15h200q12 0 23 -8t14 -19l402 -1356q6 -21 -5 -36t-32 -15h-203q-11 0 -22.5 8.5t-14.5 18.5z" />
-<glyph unicode="]" horiz-adv-x="739" d="M35 -412q0 15 12 26t27 11h260v1567h-260q-16 0 -27.5 11t-11.5 28v164q0 15 12 27t27 12h504q15 0 26.5 -12t11.5 -27v-1973q0 -15 -11.5 -26.5t-26.5 -11.5h-504q-15 0 -27 11.5t-12 26.5v166z" />
-<glyph unicode="^" horiz-adv-x="1073" d="M68 792.5q-10 18.5 2 38.5l432 611q5 8 15.5 14t19.5 6h10q9 0 19.5 -6t15.5 -14l422 -611q12 -20 2 -38.5t-35 -18.5h-178q-6 0 -16 5.5t-13 11.5l-225 305l-230 -305q-3 -6 -12.5 -11.5t-15.5 -5.5h-179q-24 0 -34 18.5z" />
-<glyph unicode="_" horiz-adv-x="882" d="M35 -59q0 17 11 28t28 11h735q17 0 28 -11t11 -28v-105q0 -15 -11 -26t-28 -11h-735q-17 0 -28 11t-11 26v105z" />
-<glyph unicode="`" horiz-adv-x="618" d="M90 1278l70 121q7 12 26 12.5t27 -6.5l348 -213q23 -18 12 -39l-43 -86q-20 -39 -55 -18l-373 168q-33 21 -12 61z" />
-<glyph unicode="a" horiz-adv-x="878" d="M55 250q0 121 82 197.5t219 76.5q41 0 80.5 -8t58.5 -16l19 -8q0 66 -21 93t-90 27q-41 0 -102.5 -9t-101.5 -21q-8 -2 -15 -2q-29 0 -34 45l-19 129q-1 7 -1 12q0 32 32 43q21 7 110 19t162 12q188 0 267 -82t79 -266v-453q0 -15 -12 -27t-27 -12h-90q-25 0 -37 27 l-28 55q-31 -28 -57.5 -47t-78.5 -37t-112 -18q-123 0 -203 75t-80 195zM322 270q0 -37 25.5 -63.5t62.5 -26.5t63.5 26.5t26.5 63.5q-2 36 -28 61t-62 25q-37 0 -62.5 -25.5t-25.5 -60.5z" />
-<glyph unicode="b" d="M111 39v1356q0 15 12 27t27 12h227q15 0 27 -12t12 -27v-594q23 13 73 26t97 13q84 0 156.5 -27t129 -79t89 -135.5t32.5 -188.5q0 -117 -52.5 -215.5t-146 -156.5t-206.5 -58q-50 0 -97 13.5t-78 32t-54.5 37.5t-34.5 33l-11 13l-24 -68q-14 -41 -43 -41h-96 q-15 0 -27 12t-12 27zM383 412q0 -71 47 -119.5t117 -48.5t118 48.5t48 119.5q0 69 -48 116t-118 47t-117 -47t-47 -116z" />
-<glyph unicode="c" horiz-adv-x="860" d="M47 410q0 118 61.5 217.5t163 156t217.5 56.5q185 0 308 -148q10 -14 6.5 -29t-17.5 -28l-122 -117q-8 -7 -23 -5.5t-23 9.5q-50 53 -118 53q-67 0 -115.5 -48.5t-48.5 -116.5q0 -69 46.5 -117.5t113.5 -48.5q49 0 78.5 16t60.5 47q25 25 45 8l123 -106q21 -19 21 -37 q0 -10 -7 -20q-114 -172 -330 -172q-178 0 -309 124.5t-131 305.5z" />
-<glyph unicode="d" d="M51 410q0 105 32.5 188.5t89.5 135.5t129.5 79t156.5 27q47 0 97 -13t73 -26v594q0 15 12 27t27 12h227q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-96q-29 0 -43 41l-25 68q-4 -5 -11.5 -14t-33.5 -31t-55 -39t-76.5 -31t-97.5 -14q-172 0 -289 125.5t-117 304.5 zM332 412q0 -71 48 -119.5t118 -48.5t117 48.5t47 119.5q0 69 -47 116t-117 47t-118 -47t-48 -116z" />
-<glyph unicode="e" horiz-adv-x="899" d="M49 410q0 176 122.5 303t301.5 127q160 0 274.5 -109.5t114.5 -275.5q0 -28 -4 -56q-1 -15 -13 -24.5t-26 -9.5h-491q6 -50 45.5 -93t111.5 -43q36 0 76.5 15t67.5 35q13 11 27.5 11t23.5 -11l102 -123q10 -13 10.5 -29t-12.5 -31q-116 -116 -303 -116 q-181 0 -304.5 125.5t-123.5 304.5zM354 524h219q-3 39 -35.5 68t-72.5 29q-41 0 -73 -28.5t-38 -68.5z" />
-<glyph unicode="f" horiz-adv-x="729" d="M72 598v182q0 17 11 28t28 11h43v189q0 210 115.5 328t299.5 118q74 0 147.5 -25t102.5 -53q9 -8 11.5 -22t-3.5 -25l-86 -170q-5 -11 -20 -15.5t-27 1.5q-64 33 -106 33q-62 0 -91.5 -45.5t-29.5 -124.5v-189h188q17 0 28 -11t11 -28v-182q0 -16 -11 -27.5t-28 -11.5 h-188v-520q0 -15 -12 -27t-27 -12h-235q-15 0 -27 12t-12 27v520h-43q-17 0 -28 11.5t-11 27.5z" />
-<glyph unicode="g" horiz-adv-x="952" d="M23 74q0 45 17 85t40.5 64.5t47.5 42.5t41 26l17 7q-7 7 -16.5 20.5t-26 61.5t-16.5 104q0 144 106 249.5t254 105.5h387q17 0 28 -11t11 -28v-84q0 -24 -22 -35l-119 -43q3 -3 8.5 -8t19 -23.5t23.5 -39.5t18.5 -55.5t8.5 -72.5q0 -120 -99.5 -214.5t-254.5 -94.5h-148 q-32 0 -49.5 -15t-17.5 -40q0 -27 19.5 -41.5t45.5 -14.5h246q149 0 250.5 -83t101.5 -216q0 -158 -115 -257t-346 -99q-114 0 -200 25t-134 66.5t-71 89t-23 98.5q0 43 15.5 80t39.5 60.5t40 36t30 19.5v6q-15 5 -36.5 17.5t-51 38t-49.5 71t-20 101.5zM336 -299 q0 -44 37.5 -70t109.5 -26q73 0 110.5 26.5t37.5 69.5q0 37 -35.5 61.5t-112.5 24.5q-61 0 -104 -22t-43 -64zM387 467q0 -46 31.5 -76.5t77.5 -30.5q47 0 77.5 30.5t30.5 76.5t-30.5 76t-77.5 30q-46 0 -77.5 -30.5t-31.5 -75.5z" />
-<glyph unicode="h" horiz-adv-x="1085" d="M111 39v1356q0 15 12 27t27 12h227q15 0 27 -12t12 -27v-602q92 47 190 47q94 0 169.5 -35t123 -95t73 -137t25.5 -163v-371q0 -15 -12 -27t-27 -12h-217q-17 0 -28 11.5t-11 27.5v375q0 69 -41.5 115t-107.5 46q-58 0 -97.5 -37.5t-39.5 -123.5v-375q0 -21 -9.5 -30 t-35.5 -9h-221q-15 0 -27 12t-12 27z" />
-<glyph unicode="i" horiz-adv-x="524" d="M98 1229q0 68 47.5 116t114.5 48q68 0 116 -48.5t48 -115.5t-48 -114.5t-116 -47.5t-115 47.5t-47 114.5zM111 39v741q0 17 11.5 28t27.5 11h225q16 0 27.5 -11t11.5 -28v-741q0 -15 -12 -27t-27 -12h-225q-15 0 -27 12t-12 27z" />
-<glyph unicode="j" horiz-adv-x="526" d="M-261.5 -535q-2.5 14 3.5 25l86 170q5 11 20 15.5t27 -1.5q62 -32 107 -32q66 0 97.5 45.5t31.5 124.5v968q0 17 11.5 28t27.5 11h227q16 0 27.5 -11t11.5 -28v-968q0 -210 -116 -328.5t-300 -118.5q-74 0 -147.5 25t-102.5 53q-9 8 -11.5 22zM100 1229q0 68 47.5 116 t114.5 48q68 0 116 -48.5t48 -115.5t-48 -114.5t-116 -47.5t-115 47.5t-47 114.5z" />
-<glyph unicode="k" horiz-adv-x="1046" d="M111 39v1356q0 15 12 27t27 12h227q15 0 27 -12t12 -27v-887l248 287q24 24 51 24h229q27 0 37.5 -20.5t-6.5 -42.5l-270 -314l327 -381q17 -20 6.5 -40.5t-37.5 -20.5h-276q-6 0 -16.5 5t-14.5 11l-278 357v-334q0 -15 -12 -27t-27 -12h-227q-15 0 -27 12t-12 27z" />
-<glyph unicode="l" horiz-adv-x="524" d="M111 39v1356q0 15 12 27t27 12h225q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-225q-15 0 -27 12t-12 27z" />
-<glyph unicode="m" horiz-adv-x="1609" d="M111 39v741q0 17 11 28t28 11h94q24 0 35 -22l34 -84q122 127 277 127q84 0 147.5 -30.5t120.5 -94.5q125 125 283 125q93 0 166 -34t119 -93.5t70 -136.5t24 -166v-371q0 -16 -11 -27.5t-28 -11.5h-217q-17 0 -28 11.5t-11 27.5v383q0 66 -35.5 109.5t-102.5 43.5 q-55 0 -96 -40t-41 -99v-397q0 -16 -11 -27.5t-28 -11.5h-196q-17 0 -28 11.5t-11 27.5v383q0 67 -32 110t-97 43q-62 0 -103 -40t-41 -103v-393q0 -15 -11.5 -27t-26.5 -12h-215q-17 0 -28 11.5t-11 27.5z" />
-<glyph unicode="n" horiz-adv-x="1081" d="M111 39v741q0 17 11.5 28t27.5 11h96q10 0 21.5 -7t15.5 -17l32 -82q117 127 289 127q183 0 286 -122.5t103 -305.5v-373q0 -15 -12 -27t-27 -12h-219q-17 0 -28 11.5t-11 27.5v383q0 65 -36.5 109t-102.5 44q-63 0 -109.5 -40.5t-46.5 -102.5v-393q0 -39 -36 -39h-215 q-15 0 -27 12t-12 27z" />
-<glyph unicode="o" horiz-adv-x="946" d="M47 412q0 174 126 301t300 127t300 -127t126 -301q0 -177 -125.5 -304.5t-300.5 -127.5t-300.5 127.5t-125.5 304.5zM311 412q0 -69 47.5 -118.5t114.5 -49.5t114.5 49.5t47.5 118.5q0 68 -47.5 115.5t-114.5 47.5t-114.5 -47.5t-47.5 -115.5z" />
-<glyph unicode="p" d="M111 -575v1355q0 15 12 27t27 12h96q29 0 43 -41l24 -67q4 5 11.5 14t33.5 31t55.5 39t77 31t97.5 14q113 0 206.5 -58t146 -156.5t52.5 -215.5q0 -105 -32.5 -188.5t-89 -135.5t-129 -79t-156.5 -27q-48 0 -97.5 12.5t-72.5 25.5v-593q0 -15 -12 -27t-27 -12h-227 q-15 0 -27 12t-12 27zM383 408q0 -69 47 -116.5t117 -47.5t118 47.5t48 116.5q0 71 -48 119t-118 48t-117 -48t-47 -119z" />
-<glyph unicode="q" d="M51 410q0 179 117 304.5t289 125.5q50 0 97 -13.5t77.5 -32t54 -37.5t34.5 -33l11 -13l25 67q14 41 43 41h96q15 0 27 -12t12 -27v-1355q0 -15 -12 -27t-27 -12h-227q-15 0 -27 12t-12 27v593q-23 -13 -72.5 -25.5t-97.5 -12.5q-84 0 -156.5 27t-129.5 79t-89.5 135.5 t-32.5 188.5zM332 408q0 -69 48 -116.5t118 -47.5t117 47.5t47 116.5q0 71 -47 119t-117 48t-118 -48t-48 -119z" />
-<glyph unicode="r" horiz-adv-x="706" d="M111 39v741q0 17 11.5 28t27.5 11h96q25 0 37 -24l36 -90q38 55 95 95t129 40q56 0 99 -12t61 -32.5t4 -43.5l-101 -164q-17 -29 -45 -19q-28 11 -49 11q-47 0 -78 -32.5t-31 -84.5v-424q0 -39 -45 -39h-208q-15 0 -27 12t-12 27z" />
-<glyph unicode="s" horiz-adv-x="759" d="M59 592q0 109 81 178.5t239 69.5q89 0 160.5 -19t111.5 -45q37 -25 21 -51l-76 -139q-5 -9 -18 -13t-25 0q-94 48 -174 48q-45 0 -45 -29q0 -33 92 -66q69 -24 115 -46.5t86.5 -55.5t60 -78.5t19.5 -105.5q0 -113 -90.5 -186.5t-256.5 -73.5q-95 0 -169.5 20t-108.5 47 q-26 22 -14 43l71 141q5 10 18.5 16.5t24.5 0.5q97 -53 185 -53q16 0 27.5 9t11.5 27q0 44 -117 86q-230 79 -230 275z" />
-<glyph unicode="t" horiz-adv-x="704" d="M53 598v182q0 17 11 28t26 11h53v228q0 15 12 26.5t27 11.5h219q15 0 26 -11.5t11 -26.5v-228h152q17 0 28 -11t11 -28v-182q0 -16 -11 -27.5t-28 -11.5h-152v-256q0 -49 56 -49q13 0 27 2.5t31 6.5t21 5q36 7 45 -26l46 -170q3 -14 -4.5 -28.5t-22.5 -18.5 q-146 -45 -248 -45q-118 0 -182 73t-64 211v295h-53q-15 0 -26 12t-11 27z" />
-<glyph unicode="u" d="M92 410v370q0 17 11.5 28t27.5 11h219q16 0 27.5 -11t11.5 -28v-379q0 -66 35 -111.5t96 -45.5q57 0 90 44t33 101v391q0 39 43 39h209q16 0 27.5 -11t11.5 -28v-741q0 -15 -12 -27t-27 -12h-96q-27 0 -39 29l-31 75q-58 -55 -88 -75q-78 -49 -188 -49q-89 0 -159 34 t-113.5 93.5t-66 136.5t-22.5 166z" />
-<glyph unicode="v" horiz-adv-x="872" d="M8 764q-10 20 1 37.5t34 17.5h229q26 0 37 -22l121 -279h6l129 279q2 5 5 8.5t5 5.5t6 4t5.5 2.5t7.5 1t7.5 0.5h9h10.5h206q23 0 34 -17.5t1 -37.5l-389 -764q-5 -8 -15.5 -14t-19.5 -6h-10q-9 0 -19.5 6t-15.5 14z" />
-<glyph unicode="w" horiz-adv-x="1267" d="M20 768q-7 20 4 35.5t33 15.5h195q10 0 22 -7t15 -17l106 -281h2l195 309q11 17 33 17h20q23 0 31 -17l196 -309h2l105 281q11 24 41 24h190q22 0 33 -15.5t4 -35.5l-272 -764q-3 -10 -14.5 -17t-22.5 -7h-8q-8 0 -19 5t-14 11l-264 410h-2l-260 -410q-12 -16 -33 -16 h-10q-10 0 -22 7t-13 17z" />
-<glyph unicode="x" horiz-adv-x="960" d="M34.5 20.5q-9.5 20.5 4.5 40.5l266 357l-258 340q-15 20 -5 40.5t36 20.5h252q24 0 32 -16l115 -168h6l117 168q8 16 33 16h252q26 0 35.5 -20.5t-5.5 -40.5l-258 -338l261 -359q14 -20 4 -40.5t-35 -20.5h-248q-17 0 -31 18l-125 177h-6q-20 -28 -66.5 -91t-64.5 -88 q-12 -16 -33 -16h-243q-26 0 -35.5 20.5z" />
-<glyph unicode="y" horiz-adv-x="952" d="M12 766q-9 20 1.5 36.5t33.5 16.5h234q23 0 34 -22l158 -381h4l162 381q3 9 13 15.5t22 6.5h231q23 0 34 -16.5t1 -36.5l-627 -1356q-12 -24 -34 -24h-230q-23 0 -34 16.5t-1 38.5l305 643z" />
-<glyph unicode="z" horiz-adv-x="755" d="M57 39v20l240 492v4h-182q-15 0 -26 12t-11 27v186q0 17 11 28t26 11h555q23 0 34 -16.5t1 -38.5l-259 -498v-4h183q17 0 28 -11t11 -28v-184q0 -16 -11 -27.5t-28 -11.5h-533q-15 0 -27 12t-12 27z" />
-<glyph unicode="{" horiz-adv-x="804" d="M35 342v119q0 12 8.5 23t17.5 14q6 2 16 5.5t35 16.5t44 27t35 36t16 46v227q0 102 17.5 186.5t46.5 143.5t71 105.5t86.5 75t97 47.5t98 27t95.5 11q17 1 28 -8.5t13 -26.5q2 -32 5 -88t5 -86q0 -12 -9 -24t-20 -15q-225 -58 -225 -348v-186q0 -45 -18 -89t-43.5 -74 t-51 -53t-43.5 -34l-18 -12v-9q25 -11 50.5 -28.5t55.5 -46.5t49 -73.5t19 -96.5v-193q0 -290 225 -348q11 -3 20 -15t9 -24q-3 -124 -10 -174q-2 -15 -14 -25.5t-27 -9.5q-50 3 -95.5 11t-98 27t-97 47.5t-86.5 75t-71 105.5t-46.5 143.5t-17.5 186.5v213q0 102 -141 131 q-12 1 -21.5 13t-9.5 24z" />
-<glyph unicode="|" horiz-adv-x="356" d="M123 -578v2096q0 17 11.5 27.5t27.5 10.5h35q15 0 25.5 -10.5t10.5 -27.5v-2096q0 -15 -11.5 -25.5t-26.5 -10.5h-33q-15 0 -27 10.5t-12 25.5z" />
-<glyph unicode="}" horiz-adv-x="804" d="M35 -426q0 12 8.5 24t19.5 15q226 58 226 348v193q0 52 19 96.5t49 73.5t55.5 46.5t50.5 28.5v9q-7 4 -19 11.5t-42 33.5t-52.5 54.5t-41.5 73t-19 89.5v186q0 290 -226 348q-11 3 -19.5 15t-8.5 24q2 30 5 86t5 88q2 17 13 26.5t28 8.5q50 -3 95.5 -11t98 -27t97 -47.5 t86.5 -75t71 -105.5t46.5 -143.5t17.5 -186.5v-227q0 -24 15 -46t36 -36.5t42.5 -26t36.5 -16.5l15 -6q10 -3 18.5 -14.5t8.5 -22.5v-119q0 -12 -9.5 -24t-21.5 -13q-141 -29 -141 -131v-213q0 -102 -17.5 -186.5t-46.5 -143.5t-71 -105.5t-86.5 -75t-97 -47.5t-98 -27 t-95.5 -11q-15 -1 -27 9.5t-14 25.5q-7 50 -10 174z" />
-<glyph unicode="~" horiz-adv-x="1077" d="M43 530q6 8 16.5 22.5t45.5 50.5t70.5 63.5t88.5 50t103 22.5q24 0 49 -5.5t39.5 -10.5t41.5 -20t33.5 -19.5t36.5 -24.5l16.5 -11t18 -11.5t17 -10t18.5 -10t18 -8t20.5 -7t19.5 -3.5t22 -2q60 0 131 100q12 15 29 15.5t30 -13.5l119 -125q9 -11 11 -25.5t-7 -25.5 q-6 -8 -16 -22t-43.5 -50t-68.5 -63t-86.5 -49.5t-100.5 -22.5q-17 0 -32 1.5t-31 5.5t-26.5 6.5t-26.5 10t-23 10.5t-24.5 14t-21.5 13t-23.5 15t-21.5 15q-76 49 -123 49q-66 0 -131 -99q-12 -15 -29.5 -16t-29.5 12l-125 129q-23 27 -4 49z" />
-<glyph unicode="&#xa1;" horiz-adv-x="577" d="M94 647q0 78 58.5 135.5t138.5 57.5q78 0 135 -57.5t57 -135.5q0 -80 -57 -138t-135 -58q-80 0 -138.5 58.5t-58.5 137.5zM106 -346l101 575q2 12 14 22.5t25 10.5h86q13 0 25 -10.5t14 -22.5l100 -571v-233q0 -15 -12 -27t-27 -12h-287q-15 0 -27 12t-12 27v229z" />
-<glyph unicode="&#xa2;" horiz-adv-x="845" d="M35 410q0 118 61.5 217.5t163 156t217.5 56.5q22 0 62 -4l22 84q5 15 18.5 22.5t28.5 3.5l35 -10q15 -3 23 -16.5t4 -30.5l-23 -86q70 -34 137 -111q11 -13 8 -30t-18 -27l-123 -117q-8 -7 -22.5 -5.5t-22.5 9.5q-13 13 -28 25l-82 -301q43 1 70.5 16.5t56.5 44.5 q8 8 21.5 11.5t23.5 -3.5l123 -106q33 -30 14 -57q-114 -172 -330 -172q-19 0 -51 4l-53 -201q-3 -15 -17 -22.5t-30 -4.5l-33 11q-15 3 -23.5 16.5t-5.5 28.5l53 196q-124 47 -202 155.5t-78 246.5zM324 410q0 -84 63 -134l80 297q-60 -8 -101.5 -54t-41.5 -109z" />
-<glyph unicode="&#xa3;" horiz-adv-x="980" d="M72 631v35q0 15 11 27t26 12h63q-3 12 -12 46t-12.5 47.5t-10.5 42.5t-10 46t-7 40.5t-5.5 44t-1.5 40.5q0 208 118 325t320 117q190 0 354 -145q12 -9 13 -25.5t-9 -28.5l-129 -155q-9 -11 -25 -12.5t-28 6.5q-11 9 -28.5 22.5t-62.5 35.5t-79 22q-58 0 -95.5 -38.5 t-37.5 -105.5q0 -42 35.5 -152.5t48.5 -172.5h188q17 0 28 -11.5t11 -27.5v-37q0 -15 -11 -26t-28 -11h-170q15 -174 -18 -318h346q15 0 26 -10.5t11 -27.5v-197q0 -15 -11 -27t-26 -12h-692q-15 0 -27 12t-12 27v37q49 92 70.5 186t20.5 170t-17 160h-88q-15 0 -26 12 t-11 27z" />
-<glyph unicode="&#xa4;" horiz-adv-x="915" d="M84 896q0 18 10 28l103 100q11 10 27 10t26 -10l104 -104q99 44 207 4l105 104q10 11 27.5 10.5t27.5 -12.5l100 -100q11 -11 11.5 -27t-9.5 -27l-104 -104q42 -105 -2 -211l104 -104q10 -11 9.5 -27t-11.5 -27l-100 -100q-11 -11 -26.5 -11.5t-26.5 9.5l-109 109 q-103 -37 -199 2l-106 -107q-10 -11 -27 -11t-28 11l-101 102q-10 11 -10 28t10 28l107 106q-39 94 -2 195l-107 108q-10 10 -10 28zM376 664.5q0 -35.5 25 -60.5t60 -24.5t61 26.5q23 23 23 58.5t-23 60.5q-26 25 -61 25t-60 -25t-25 -60.5z" />
-<glyph unicode="&#xa5;" horiz-adv-x="1314" d="M39.5 1414q10.5 20 34.5 20h266q19 0 33 -19l284 -420l285 420q14 19 33 19h266q24 0 34.5 -20t-1.5 -40l-459 -682v-92h203q17 0 28 -11.5t11 -27.5v-37q0 -15 -11 -26t-28 -11h-203v-133h203q17 0 28 -11.5t11 -27.5v-36q0 -15 -11 -26t-28 -11h-203v-203 q0 -15 -12 -27t-27 -12h-244q-17 0 -27.5 11.5t-10.5 27.5v203h-207q-15 0 -26 12t-11 27v34q0 15 11 27t26 12h207v133h-207q-15 0 -26 12t-11 27v35q0 15 11 27t26 12h207v90l-453 684q-12 20 -1.5 40z" />
-<glyph unicode="&#xa6;" horiz-adv-x="602" d="M246 100q0 17 11.5 28t27.5 11h34q15 0 26 -11t11 -28v-678q0 -15 -12 -25.5t-27 -10.5h-32q-15 0 -27 10.5t-12 25.5v678zM246 840v678q0 17 11.5 27.5t27.5 10.5h34q15 0 26 -10.5t11 -27.5v-678q0 -15 -12 -26t-27 -11h-32q-15 0 -27 11t-12 26z" />
-<glyph unicode="&#xa7;" horiz-adv-x="1032" d="M61 494q0 172 140 288q-140 126 -140 287q0 75 28 143t81.5 122.5t140 87t193.5 32.5q209 0 411 -145q16 -8 19 -29t-6 -31l-109 -159q-25 -38 -67 -9q-46 33 -123.5 70t-139.5 37q-53 0 -87.5 -27.5t-34.5 -66.5q0 -56 47.5 -100t160.5 -89q55 -21 100 -43t102.5 -61.5 t96.5 -83.5t66 -109.5t27 -140.5q0 -162 -136 -285q136 -129 136 -293q0 -74 -32 -145t-89 -127.5t-144 -90.5t-190 -34q-88 0 -165.5 16.5t-129.5 42.5t-81.5 45.5t-49.5 38.5q-18 18 -19.5 32t11.5 38l74 137q28 51 77 23q1 -1 25 -14.5t50 -26.5t60 -28t69.5 -24.5 t64.5 -9.5q58 0 95.5 31t37.5 84q0 66 -51.5 110t-145.5 81q-373 151 -373 426zM352 520q0 -36 16 -65.5t51.5 -54t71.5 -42.5t97 -43q6 5 15.5 16t25.5 48.5t16 81.5q0 30 -12 55t-28.5 43t-52 38.5t-62.5 33t-80 35.5l-9 -9q-49 -55 -49 -137z" />
-<glyph unicode="&#xa8;" horiz-adv-x="847" d="M70 1241q0 60 41.5 101.5t101.5 41.5t102.5 -41.5t42.5 -101.5t-42.5 -102.5t-102.5 -42.5t-101.5 42.5t-41.5 102.5zM489 1241q0 60 42 101.5t102 41.5t102.5 -41.5t42.5 -101.5t-42.5 -102.5t-102.5 -42.5t-102 42.5t-42 102.5z" />
-<glyph unicode="&#xa9;" horiz-adv-x="1615" d="M72 717q0 200 98.5 369.5t267.5 268.5t369 99t369.5 -99t268.5 -268.5t99 -369.5t-99 -369.5t-268.5 -268.5t-369.5 -99t-369 99t-267.5 268.5t-98.5 369.5zM250 717q0 -113 44 -216.5t119 -178.5t178 -119.5t216 -44.5q114 0 217 44.5t177.5 119.5t118.5 178.5t44 216.5 q0 152 -74.5 280t-202.5 202.5t-280 74.5q-113 0 -216 -44t-178 -118.5t-119 -177.5t-44 -217zM442 713q0 161 112 273t271 112q136 0 236 -78q14 -12 15 -28.5t-11 -30.5l-98 -99q-9 -9 -23.5 -11t-25.5 5q-39 27 -93 27q-68 0 -113.5 -48.5t-45.5 -115.5q0 -70 45 -117 t114 -47q51 0 90 27q11 7 26 4.5t24 -11.5l102 -102q11 -12 10.5 -28.5t-12.5 -28.5q-102 -86 -240 -86q-158 0 -270.5 112.5t-112.5 270.5z" />
-<glyph unicode="&#xaa;" horiz-adv-x="647" d="M35 1024q0 82 66 136t178 54q27 0 53 -3.5t38 -6.5l13 -4q2 44 -18 66t-66 22q-64 0 -152 -18q-33 -6 -36 33l-15 86q-5 34 23 43q17 5 83.5 13.5t121.5 8.5q139 0 198.5 -61.5t59.5 -198.5v-340q0 -10 -9 -19.5t-20 -9.5h-68q-17 0 -28 21l-21 43q-24 -23 -43.5 -37 t-58 -27.5t-84.5 -13.5q-96 0 -155.5 58t-59.5 155zM240 1024q0 -28 18 -48t47 -20q28 0 47 20t19 48q0 27 -19.5 46.5t-46.5 19.5q-28 0 -46.5 -19.5t-18.5 -46.5z" />
-<glyph unicode="&#xab;" horiz-adv-x="1026" d="M43 397q-17 23 0 49l223 304q14 24 37 24h162q26 0 34.5 -19t-3.5 -44l-134 -285l127 -301q11 -25 3 -43.5t-33 -18.5h-172q-6 0 -16.5 5.5t-14.5 11.5zM489 397q-17 23 0 49l224 304q14 24 37 24h161q26 0 34.5 -19t-3.5 -44l-133 -285l127 -301q11 -25 2.5 -43.5 t-33.5 -18.5h-172q-6 0 -16.5 5.5t-14.5 11.5z" />
-<glyph unicode="&#xac;" horiz-adv-x="1124" d="M66 639v143q0 15 11.5 27t26.5 12h820q16 0 27.5 -12.5t11.5 -26.5v-483q0 -15 -12 -26t-27 -11h-144q-15 0 -27 11t-12 26v301h-637q-15 0 -26.5 12t-11.5 27z" />
-<glyph unicode="&#xad;" horiz-adv-x="1024" />
-<glyph unicode="&#xae;" horiz-adv-x="1615" d="M72 717q0 200 98.5 369.5t267.5 268.5t369 99t369.5 -99t268.5 -268.5t99 -369.5t-99 -369.5t-268.5 -268.5t-369.5 -99t-369 99t-267.5 268.5t-98.5 369.5zM250 717q0 -113 44 -216.5t119 -178.5t178 -119.5t216 -44.5q114 0 217 44.5t177.5 119.5t118.5 178.5t44 216.5 q0 152 -74.5 280t-202.5 202.5t-280 74.5q-113 0 -216 -44t-178 -118.5t-119 -177.5t-44 -217zM524 383v672q0 16 11 27.5t28 11.5h332q100 0 176 -74.5t76 -192.5q0 -150 -137 -229l82 -199q9 -20 -2 -37.5t-33 -17.5h-139q-12 0 -23 9t-14 20l-76 217h-80v-207 q0 -16 -11 -27.5t-28 -11.5h-123q-17 0 -28 11.5t-11 27.5zM719 756h141q26 0 46 20t20 47q0 29 -19.5 48.5t-46.5 19.5h-141v-135z" />
-<glyph unicode="&#xaf;" horiz-adv-x="847" d="M123 1190v84q0 17 11 28t28 11h524q17 0 28 -11t11 -28v-84q0 -15 -11 -26t-28 -11h-524q-17 0 -28 11t-11 26z" />
-<glyph unicode="&#xb0;" horiz-adv-x="614" d="M31 1178q0 116 80.5 196t195.5 80q114 0 195.5 -80.5t81.5 -195.5t-81.5 -196t-195.5 -81q-115 0 -195.5 80.5t-80.5 196.5zM236 1178q0 -29 21 -50.5t50 -21.5q28 0 49 21.5t21 50.5q0 28 -21 48.5t-49 20.5q-29 0 -50 -20.5t-21 -48.5z" />
-<glyph unicode="&#xb1;" horiz-adv-x="1140" d="M123 762v143q0 15 12 27t27 12h299v301q0 15 12 26t27 11h143q15 0 27 -11t12 -26v-301h301q15 0 26 -12t11 -27v-143q0 -15 -11 -27t-26 -12h-301v-197q0 -15 -12 -26t-27 -11h-143q-15 0 -27 11t-12 26v197h-299q-15 0 -27 12t-12 27zM143 119v143q0 15 12 27t27 12 h766q15 0 26 -12t11 -27v-143q0 -15 -11 -27t-26 -12h-766q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xb2;" horiz-adv-x="546" d="M41 1051v36l209 252q41 52 41 97q0 29 -18.5 44t-45.5 15q-40 0 -71 -31q-23 -16 -37 9l-45 73q-14 25 -12 33q2 10 20 23q23 18 74 37.5t116 19.5q91 0 152 -53t61 -140q0 -86 -61 -172l-82 -108h119q8 0 14 -6t6 -13v-116q0 -7 -6 -13t-14 -6h-400q-9 0 -14.5 5.5 t-5.5 13.5z" />
-<glyph unicode="&#xb3;" horiz-adv-x="524" d="M47 1116l47 70q16 22 41 8q29 -23 74 -23q67 0 67 50q0 23 -17 37t-50 14h-68q-14 2 -20 8t-6 25v69q0 35 37 35h57q24 0 40.5 13t16.5 36q0 20 -16 32.5t-43 12.5q-33 0 -62 -22q-8 -7 -16 -6.5t-18 14.5l-54 72q-18 23 2 43q7 6 21 15t60.5 24.5t97.5 15.5 q103 0 164 -46t61 -124q0 -89 -105 -143q48 -19 85.5 -56.5t37.5 -101.5q0 -84 -70.5 -130t-172.5 -46q-106 0 -185 59q-24 18 -6 45z" />
-<glyph unicode="&#xb4;" horiz-adv-x="618" d="M66 1153q-10 21 12 39l348 213q8 7 27 6.5t26 -12.5l70 -121q21 -40 -12 -61l-373 -168q-35 -21 -55 18z" />
-<glyph unicode="&#xb5;" horiz-adv-x="1062" d="M111 -575v1355q0 17 11.5 28t27.5 11h219q16 0 27.5 -11t11.5 -28v-383q3 -60 38 -98.5t93 -38.5q57 0 90 40.5t33 96.5v383q0 39 43 39h208q16 0 27.5 -11t11.5 -28v-741q0 -15 -12 -27t-27 -12h-96q-27 0 -39 29l-30 75q-58 -56 -90 -76q-78 -48 -187 -48q-33 0 -63 6 v-561q0 -15 -12 -27t-27 -12h-219q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xb6;" horiz-adv-x="1441" d="M35 1006q0 176 115.5 302t281.5 126l946 -2q15 0 27 -12t12 -27v-123q0 -17 -11.5 -28t-27.5 -11h-125v-1806q0 -16 -11 -27.5t-28 -11.5h-145q-15 0 -27 12t-12 27v1806h-258v-1806q0 -15 -12 -27t-27 -12h-143q-15 0 -27 12t-12 27v1150h-90q-175 0 -300.5 125.5 t-125.5 305.5z" />
-<glyph unicode="&#xb7;" horiz-adv-x="565" d="M63 520q0 92 64 157.5t152 65.5q92 0 157.5 -65.5t65.5 -157.5q0 -88 -65.5 -151.5t-157.5 -63.5q-88 0 -152 63.5t-64 151.5z" />
-<glyph unicode="&#xb8;" horiz-adv-x="505" d="M70 -461q-26 29 8 60l47 41q9 9 22 6.5t21 -11.5q13 -18 49 -18q24 0 43 20.5t19 45.5q0 79 -140 86q-35 5 -35 36v195h150v-106q92 -12 140 -68t48 -141q0 -90 -63.5 -153.5t-153.5 -63.5q-45 0 -86.5 19.5t-68.5 51.5z" />
-<glyph unicode="&#xb9;" horiz-adv-x="417" d="M23 1450v78q0 12 16 22l156 88h129q8 0 13 -5t5 -13v-569q0 -8 -5.5 -13.5t-12.5 -5.5h-154q-9 0 -14.5 5.5t-5.5 13.5v376h-111q-16 0 -16 23z" />
-<glyph unicode="&#xba;" horiz-adv-x="618" d="M41 1130q0 153 70 238.5t198 85.5t198.5 -85.5t70.5 -238.5q0 -152 -70.5 -237.5t-198.5 -85.5t-198 85.5t-70 237.5zM246 1130q0 -159 63 -159q64 0 64 159q0 160 -64 160q-63 0 -63 -160z" />
-<glyph unicode="&#xbb;" horiz-adv-x="1026" d="M78.5 755q8.5 19 34.5 19h161q23 0 37 -24l224 -304q17 -26 0 -49l-213 -317q-4 -6 -14.5 -11.5t-16.5 -5.5h-172q-25 0 -33.5 18.5t2.5 43.5l127 301l-133 285q-12 25 -3.5 44zM524.5 755q8.5 19 34.5 19h162q23 0 37 -24l223 -304q17 -26 0 -49l-213 -317 q-4 -6 -14.5 -11.5t-16.5 -5.5h-172q-25 0 -33 18.5t3 43.5l127 301l-134 285q-12 25 -3.5 44z" />
-<glyph unicode="&#xbc;" horiz-adv-x="1286" d="M39 1245v78q0 13 16 23l156 88h129q7 0 12.5 -5.5t5.5 -13.5v-569q0 -8 -5.5 -13.5t-12.5 -5.5h-154q-9 0 -14.5 5.5t-5.5 13.5v377h-111q-16 0 -16 22zM147 55l705 1358q10 21 35 21h114q23 0 34.5 -18t0.5 -38l-706 -1358q-10 -20 -35 -20h-113q-23 0 -34 17.5t-1 37.5 zM645 131v127l326 342q3 6 14 6h105q8 0 13 -5t5 -13v-334h80q7 0 12.5 -5t5.5 -11v-105q0 -7 -5 -12.5t-13 -5.5h-80v-97q0 -8 -5 -13t-13 -5h-140q-8 0 -14 5.5t-6 12.5v97h-266q-7 0 -13 5t-6 11zM827 250h105v133z" />
-<glyph unicode="&#xbd;" horiz-adv-x="1300" d="M39 1245v78q0 13 16 23l156 88h129q7 0 12.5 -5.5t5.5 -13.5v-569q0 -8 -5.5 -13.5t-12.5 -5.5h-154q-9 0 -14.5 5.5t-5.5 13.5v377h-111q-16 0 -16 22zM147 55l705 1358q10 21 35 21h114q23 0 34.5 -18t0.5 -38l-706 -1358q-10 -20 -35 -20h-113q-23 0 -34 17.5t-1 37.5 zM756 18v37l209 252q41 52 41 96q0 29 -18.5 44.5t-45.5 15.5q-41 0 -72 -31q-23 -15 -36 8l-46 74q-13 17 -12.5 28t21.5 27q13 10 34.5 21.5t66 24t89.5 12.5q91 0 152 -53t61 -140q0 -86 -61 -172l-82 -108h119q8 0 14 -6t6 -13v-117q0 -7 -6 -12.5t-14 -5.5h-400 q-20 0 -20 18z" />
-<glyph unicode="&#xbe;" horiz-adv-x="1341" d="M59 911l47 70q16 22 41 8q29 -22 74 -22q68 0 68 49q0 23 -17.5 37t-50.5 14h-67q-14 2 -20.5 8t-6.5 25v69q0 35 37 35h57q24 0 41 13.5t17 35.5q0 20 -16 32.5t-44 12.5q-32 0 -61 -22q-8 -7 -16.5 -6.5t-18.5 14.5l-53 72q-18 23 2 43q7 6 20.5 15t60 24.5t97.5 15.5 q103 0 164 -46t61 -124q0 -90 -104 -143q48 -19 85.5 -56.5t37.5 -101.5q0 -83 -71 -129.5t-173 -46.5q-105 0 -184 59q-25 18 -7 45zM203 55l704 1358q11 21 35 21h115q23 0 34.5 -18t0.5 -38l-707 -1358q-10 -20 -35 -20h-112q-23 0 -34 17.5t-1 37.5zM700 131v127 l326 342q3 6 14 6h105q7 0 12.5 -5t5.5 -13v-334h80q7 0 13 -5t6 -11v-105q0 -7 -5.5 -12.5t-13.5 -5.5h-80v-97q0 -8 -5.5 -13t-12.5 -5h-139q-8 0 -14.5 5.5t-6.5 12.5v97h-266q-7 0 -13 5t-6 11zM883 250h104v133z" />
-<glyph unicode="&#xbf;" horiz-adv-x="913" d="M35 -276q0 55 17 101t44 78t59.5 60.5t65.5 55.5t60 55t44 66t17 83q0 17 11.5 28t27.5 11h219q16 0 27.5 -11t11.5 -28v-86q0 -40 -21 -78.5t-52.5 -67t-68 -59t-68 -56t-52.5 -57t-21 -61.5q0 -48 44.5 -84t109.5 -36q39 0 74 13t55 29t41 31t32.5 18.5t30.5 -8.5 l125 -122q12 -11 11.5 -27t-11.5 -27q-6 -7 -18 -19.5t-52 -43.5t-85 -54.5t-115.5 -43t-144.5 -19.5q-108 0 -204 46t-155 129.5t-59 183.5zM295 647q0 78 58.5 135.5t138.5 57.5q78 0 135 -57.5t57 -135.5q0 -80 -57 -138t-135 -58q-80 0 -138.5 58.5t-58.5 137.5z" />
-<glyph unicode="&#xc0;" horiz-adv-x="1355" d="M-8 53l641 1379q11 22 35 22h20q24 0 35 -22l641 -1379q9 -20 -1.5 -36.5t-33.5 -16.5h-227q-28 0 -43.5 11t-28.5 40l-74 162h-557l-73 -164q-20 -49 -74 -49h-225q-23 0 -33.5 16.5t-1.5 36.5zM438 1790l70 121q7 12 26 12.5t27 -6.5l348 -213q23 -19 13 -39l-43 -86 q-20 -39 -56 -18l-372 168q-34 21 -13 61zM522 492h312l-156 337h-2z" />
-<glyph unicode="&#xc1;" horiz-adv-x="1355" d="M-8 53l641 1379q11 22 35 22h20q24 0 35 -22l641 -1379q9 -20 -1.5 -36.5t-33.5 -16.5h-227q-28 0 -43.5 11t-28.5 40l-74 162h-557l-73 -164q-20 -49 -74 -49h-225q-23 0 -33.5 16.5t-1.5 36.5zM434 1665q-10 21 12 39l349 213q8 7 27 6.5t26 -12.5l70 -121 q21 -40 -13 -61l-373 -168q-35 -21 -55 18zM522 492h312l-156 337h-2z" />
-<glyph unicode="&#xc2;" horiz-adv-x="1355" d="M-8 53l641 1379q11 22 35 22h20q24 0 35 -22l641 -1379q9 -20 -1.5 -36.5t-33.5 -16.5h-227q-28 0 -43.5 11t-28.5 40l-74 162h-557l-73 -164q-20 -49 -74 -49h-225q-23 0 -33.5 16.5t-1.5 36.5zM362 1665q-13 18 13 39l276 213q23 17 49 0l283 -213q23 -18 12 -39 l-69 -94q-7 -10 -20 -13t-23 3l-203 118l-205 -118q-28 -15 -45 8zM522 492h312l-156 337h-2z" />
-<glyph unicode="&#xc3;" horiz-adv-x="1355" d="M-8 53l641 1379q11 22 35 22h20q24 0 35 -22l641 -1379q9 -20 -1.5 -36.5t-33.5 -16.5h-227q-28 0 -43.5 11t-28.5 40l-74 162h-557l-73 -164q-20 -49 -74 -49h-225q-23 0 -33.5 16.5t-1.5 36.5zM353 1687q-4 15 1 25q10 19 28 43t46.5 55.5t67 52.5t77.5 21q41 0 80 -24 t74 -48t68 -24q39 0 77 63q8 13 22 15t30 -11l69 -53q27 -20 2 -59q-9 -16 -18.5 -30.5t-30.5 -40t-42 -43.5t-51.5 -32t-61.5 -14q-36 0 -70 15.5t-56.5 33.5t-49.5 33.5t-50 15.5q-17 0 -31.5 -11.5t-32 -35t-18.5 -24.5q-19 -19 -45 -2l-71 57q-10 7 -14 22zM522 492h312 l-156 337h-2z" />
-<glyph unicode="&#xc4;" horiz-adv-x="1355" d="M-8 53l641 1379q11 22 35 22h20q24 0 35 -22l641 -1379q9 -20 -1.5 -36.5t-33.5 -16.5h-227q-28 0 -43.5 11t-28.5 40l-74 162h-557l-73 -164q-20 -49 -74 -49h-225q-23 0 -33.5 16.5t-1.5 36.5zM262 1718q0 60 42 102t102 42t102.5 -42t42.5 -102t-42.5 -102.5 t-102.5 -42.5t-102 42.5t-42 102.5zM522 492h312l-156 337h-2zM805 1718q0 60 41.5 102t101.5 42t103 -42t43 -102t-43 -102.5t-103 -42.5t-101.5 42.5t-41.5 102.5z" />
-<glyph unicode="&#xc5;" horiz-adv-x="1355" d="M-8 53l641 1379q11 22 35 22h20q24 0 35 -22l641 -1379q9 -20 -1.5 -36.5t-33.5 -16.5h-227q-28 0 -43.5 11t-28.5 40l-74 162h-557l-73 -164q-20 -49 -74 -49h-225q-23 0 -33.5 16.5t-1.5 36.5zM442 1776q0 98 69 166.5t167 68.5q97 0 166 -68.5t69 -166.5t-69 -167 t-166 -69q-98 0 -167 69t-69 167zM522 492h312l-156 337h-2zM588 1776q0 -35 27.5 -62.5t62.5 -27.5t61.5 27.5t26.5 62.5t-26.5 61.5t-61.5 26.5t-62.5 -26.5t-27.5 -61.5z" />
-<glyph unicode="&#xc6;" horiz-adv-x="1839" d="M-36 16.5q-7 16.5 5 36.5l822 1317q2 3 7.5 11.5t7 11t6.5 9t7 8.5l7 7t8.5 6.5t9 4.5t10.5 3.5t12 1.5t15 1h821q17 0 28 -11.5t11 -27.5v-224q0 -15 -11 -26.5t-28 -11.5h-567v-254h467q15 0 26.5 -12t11.5 -27v-224q0 -17 -11 -27.5t-27 -10.5h-467v-277h567 q17 0 28 -11.5t11 -27.5v-223q0 -16 -11 -27.5t-28 -11.5h-848q-17 0 -28 11.5t-11 27.5v174h-377l-108 -178q-20 -35 -60 -35h-276q-23 0 -30 16.5zM590 492h225v362z" />
-<glyph unicode="&#xc7;" horiz-adv-x="1382" d="M74 715q0 151 58.5 288t157 235.5t235.5 157t288 58.5t270.5 -46.5t225.5 -143.5q13 -12 13.5 -29t-11.5 -29l-160 -166q-11 -10 -26 -10t-25 10q-117 105 -277 105q-171 0 -286 -124t-115 -298q0 -172 116 -294t287 -122q73 0 146.5 26t128.5 73q10 9 27 8t26 -11 l160 -170q10 -11 9.5 -27.5t-11.5 -27.5q-194 -191 -484 -198v-86q92 -12 140.5 -68t48.5 -141q0 -90 -63.5 -153.5t-153.5 -63.5q-45 0 -87 19.5t-69 51.5q-26 29 8 60l47 41q9 9 22 6.5t21 -11.5q13 -18 50 -18q24 0 42.5 20.5t18.5 45.5q0 79 -139 86q-35 5 -35 36v187 q-260 46 -432 249t-172 474z" />
-<glyph unicode="&#xc8;" horiz-adv-x="1200" d="M176 39v1356q0 16 11 27.5t28 11.5h848q17 0 28 -11.5t11 -27.5v-224q0 -15 -11 -26.5t-28 -11.5h-567v-254h467q15 0 26.5 -12t11.5 -27v-224q0 -17 -11 -27.5t-27 -10.5h-467v-277h567q17 0 28 -11.5t11 -27.5v-223q0 -16 -11 -27.5t-28 -11.5h-848q-17 0 -28 11.5 t-11 27.5zM410 1790l69 121q7 12 26 12.5t27 -6.5l349 -213q23 -18 12 -39l-43 -86q-20 -39 -55 -18l-373 168q-33 21 -12 61z" />
-<glyph unicode="&#xc9;" horiz-adv-x="1200" d="M176 39v1356q0 16 11 27.5t28 11.5h848q17 0 28 -11.5t11 -27.5v-224q0 -15 -11 -26.5t-28 -11.5h-567v-254h467q15 0 26.5 -12t11.5 -27v-224q0 -17 -11 -27.5t-27 -10.5h-467v-277h567q17 0 28 -11.5t11 -27.5v-223q0 -16 -11 -27.5t-28 -11.5h-848q-17 0 -28 11.5 t-11 27.5zM406 1665q-10 21 12 39l348 213q8 7 27 6.5t26 -12.5l70 -121q21 -40 -12 -61l-373 -168q-35 -21 -55 18z" />
-<glyph unicode="&#xca;" horiz-adv-x="1200" d="M176 39v1356q0 16 11 27.5t28 11.5h848q17 0 28 -11.5t11 -27.5v-224q0 -15 -11 -26.5t-28 -11.5h-567v-254h467q15 0 26.5 -12t11.5 -27v-224q0 -17 -11 -27.5t-27 -10.5h-467v-277h567q17 0 28 -11.5t11 -27.5v-223q0 -16 -11 -27.5t-28 -11.5h-848q-17 0 -28 11.5 t-11 27.5zM334 1665q-13 19 12 39l277 213q23 17 49 0l282 -213q23 -19 13 -39l-70 -94q-7 -10 -20 -13t-23 3l-203 118l-205 -118q-28 -15 -45 8z" />
-<glyph unicode="&#xcb;" horiz-adv-x="1200" d="M176 39v1356q0 16 11 27.5t28 11.5h848q17 0 28 -11.5t11 -27.5v-224q0 -15 -11 -26.5t-28 -11.5h-567v-254h467q15 0 26.5 -12t11.5 -27v-224q0 -17 -11 -27.5t-27 -10.5h-467v-277h567q17 0 28 -11.5t11 -27.5v-223q0 -16 -11 -27.5t-28 -11.5h-848q-17 0 -28 11.5 t-11 27.5zM227 1718q0 60 42 102t102 42t102.5 -42t42.5 -102t-42.5 -102.5t-102.5 -42.5t-102 42.5t-42 102.5zM770 1718q0 60 41.5 102t101.5 42t103 -42t43 -102t-43 -102.5t-103 -42.5t-101.5 42.5t-41.5 102.5z" />
-<glyph unicode="&#xcc;" horiz-adv-x="675" d="M98 1790l70 121q7 12 26 12.5t27 -6.5l348 -213q23 -19 13 -39l-43 -86q-20 -39 -56 -18l-372 168q-34 21 -13 61zM176 39v1356q0 15 12 27t27 12h246q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-246q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xcd;" horiz-adv-x="675" d="M94 1665q-10 21 12 39l349 213q8 7 27 6.5t26 -12.5l70 -121q21 -40 -13 -61l-372 -168q-36 -21 -56 18zM176 39v1356q0 15 12 27t27 12h246q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-246q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xce;" horiz-adv-x="675" d="M23 1665q-13 19 12 39l276 213q23 17 49 0l283 -213q23 -18 12 -39l-69 -94q-7 -10 -20 -13t-23 3l-203 118l-205 -118q-28 -15 -45 8zM176 39v1356q0 15 12 27t27 12h246q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-246q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xcf;" horiz-adv-x="675" d="M-78 1718q0 60 42 102t102 42t102.5 -42t42.5 -102t-42.5 -102.5t-102.5 -42.5t-102 42.5t-42 102.5zM176 39v1356q0 15 12 27t27 12h246q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-246q-15 0 -27 12t-12 27zM465 1718q0 60 41.5 102t101.5 42t103 -42t43 -102 t-43 -102.5t-103 -42.5t-101.5 42.5t-41.5 102.5z" />
-<glyph unicode="&#xd0;" horiz-adv-x="1515" d="M90 692v35q0 15 11 27t26 12h59v629q0 15 11 27t26 12h500q145 0 278.5 -57t230 -153t153.5 -228t57 -277q0 -117 -36.5 -227t-103 -198t-155 -154.5t-198 -103t-226.5 -36.5h-500q-15 0 -26 12t-11 27v614h-59q-15 0 -26 12t-11 27zM506 303h196q172 0 286 120t114 296 q0 175 -114 294.5t-286 119.5h-196v-367h291q17 0 28 -11.5t11 -27.5v-37q0 -15 -11 -26t-28 -11h-291v-350z" />
-<glyph unicode="&#xd1;" horiz-adv-x="1583" d="M174 1417q0 15 12 26t27 11h51l817 -786h2v727q0 16 11 27.5t28 11.5h246q15 0 27 -12t12 -27v-1379q0 -15 -12 -25.5t-27 -10.5h-33q-16 0 -26 10l-809 813h-2v-764q0 -16 -11 -27.5t-28 -11.5h-244q-15 0 -27 12t-12 27zM469.5 1687q-3.5 15 1.5 25q10 19 28 43 t46.5 55.5t67 52.5t77.5 21q41 0 79.5 -24t73.5 -48t68 -24q40 0 78 63q8 13 21.5 15t29.5 -11l70 -53q27 -20 2 -59q-12 -21 -26.5 -41t-41.5 -50.5t-63 -49.5t-74 -19q-36 0 -70 15.5t-56 33.5t-49 33.5t-50 15.5q-17 0 -31.5 -11.5t-32 -35t-18.5 -24.5q-19 -19 -45 -2 l-72 57q-10 7 -13.5 22z" />
-<glyph unicode="&#xd2;" horiz-adv-x="1615" d="M72 715q0 101 26 197t73 177t114.5 149t148.5 115.5t176.5 74t196.5 26.5q151 0 287.5 -58t235 -157t156.5 -236t58 -288t-58 -287.5t-156.5 -234.5t-235 -155.5t-287.5 -57.5t-287.5 57.5t-234.5 155.5t-155.5 234.5t-57.5 287.5zM399 715q0 -167 120.5 -287.5 t287.5 -120.5q169 0 289.5 120.5t120.5 287.5q0 169 -120.5 290t-289.5 121q-167 0 -287.5 -121t-120.5 -290zM567 1790l70 121q7 12 26 12.5t27 -6.5l348 -213q23 -19 13 -39l-43 -86q-20 -39 -56 -18l-372 168q-34 21 -13 61z" />
-<glyph unicode="&#xd3;" horiz-adv-x="1615" d="M72 715q0 101 26 197t73 177t114.5 149t148.5 115.5t176.5 74t196.5 26.5q151 0 287.5 -58t235 -157t156.5 -236t58 -288t-58 -287.5t-156.5 -234.5t-235 -155.5t-287.5 -57.5t-287.5 57.5t-234.5 155.5t-155.5 234.5t-57.5 287.5zM399 715q0 -167 120.5 -287.5 t287.5 -120.5q169 0 289.5 120.5t120.5 287.5q0 169 -120.5 290t-289.5 121q-167 0 -287.5 -121t-120.5 -290zM563 1665q-11 21 12 39l349 213q8 7 27 6.5t26 -12.5l70 -121q21 -40 -13 -61l-372 -168q-36 -21 -56 18z" />
-<glyph unicode="&#xd4;" horiz-adv-x="1615" d="M72 715q0 101 26 197t73 177t114.5 149t148.5 115.5t176.5 74t196.5 26.5q151 0 287.5 -58t235 -157t156.5 -236t58 -288t-58 -287.5t-156.5 -234.5t-235 -155.5t-287.5 -57.5t-287.5 57.5t-234.5 155.5t-155.5 234.5t-57.5 287.5zM399 715q0 -167 120.5 -287.5 t287.5 -120.5q169 0 289.5 120.5t120.5 287.5q0 169 -120.5 290t-289.5 121q-167 0 -287.5 -121t-120.5 -290zM492 1665q-13 19 12 39l276 213q23 17 49 0l283 -213q22 -18 12 -39l-69 -94q-7 -10 -20 -13t-23 3l-203 118l-205 -118q-28 -15 -45 8z" />
-<glyph unicode="&#xd5;" horiz-adv-x="1615" d="M72 715q0 101 26 197t73 177t114.5 149t148.5 115.5t176.5 74t196.5 26.5q151 0 287.5 -58t235 -157t156.5 -236t58 -288t-58 -287.5t-156.5 -234.5t-235 -155.5t-287.5 -57.5t-287.5 57.5t-234.5 155.5t-155.5 234.5t-57.5 287.5zM399 715q0 -167 120.5 -287.5 t287.5 -120.5q169 0 289.5 120.5t120.5 287.5q0 169 -120.5 290t-289.5 121q-167 0 -287.5 -121t-120.5 -290zM482 1687q-4 15 1 25q10 19 28 43t46.5 55.5t67 52.5t77.5 21q41 0 80 -24t74 -48t68 -24q39 0 77 63q8 13 22 15t30 -11l69 -53q27 -20 2 -59 q-9 -16 -18.5 -30.5t-30.5 -40t-42 -43.5t-51.5 -32t-61.5 -14q-45 0 -86.5 24.5t-76.5 49t-63 24.5q-17 0 -31.5 -11.5t-32 -35t-18.5 -24.5q-19 -19 -45 -2l-71 57q-10 7 -14 22z" />
-<glyph unicode="&#xd6;" horiz-adv-x="1615" d="M72 715q0 101 26 197t73 177t114.5 149t148.5 115.5t176.5 74t196.5 26.5q151 0 287.5 -58t235 -157t156.5 -236t58 -288t-58 -287.5t-156.5 -234.5t-235 -155.5t-287.5 -57.5t-287.5 57.5t-234.5 155.5t-155.5 234.5t-57.5 287.5zM391 1718q0 60 42 102t102 42 t102.5 -42t42.5 -102t-42.5 -102.5t-102.5 -42.5t-102 42.5t-42 102.5zM399 715q0 -167 120.5 -287.5t287.5 -120.5q169 0 289.5 120.5t120.5 287.5q0 169 -120.5 290t-289.5 121q-167 0 -287.5 -121t-120.5 -290zM934 1718q0 60 41.5 102t101.5 42t103 -42t43 -102 t-43 -102.5t-103 -42.5t-101.5 42.5t-41.5 102.5z" />
-<glyph unicode="&#xd7;" horiz-adv-x="940" d="M92 473q0 17 10 27l211 211l-211 213q-10 10 -10 26t10 27l101 102q11 11 28 11t27 -11l211 -211l213 213q11 10 26.5 9.5t26.5 -11.5l103 -102q11 -11 11.5 -26.5t-9.5 -26.5l-213 -213l213 -213q10 -11 9.5 -27t-11.5 -27l-103 -100q-11 -11 -26.5 -11.5t-26.5 9.5 l-213 213l-211 -211q-10 -10 -26 -10t-27 10l-103 102q-10 10 -10 27z" />
-<glyph unicode="&#xd8;" horiz-adv-x="1628" d="M78 715q0 101 26 197t73 177t114.5 149t148.5 115.5t176.5 74t196.5 26.5q274 0 481 -178l144 141q11 12 26.5 11.5t26.5 -11.5l25 -24q12 -11 12 -26.5t-12 -27.5l-144 -143q178 -207 178 -481q0 -151 -58 -287.5t-156.5 -234.5t-235 -155.5t-287.5 -57.5 q-138 0 -261 46t-220 130l-137 -136q-11 -10 -27 -9t-27 12l-24 24q-11 11 -11.5 26.5t9.5 26.5l137 136q-174 206 -174 479zM406 715q0 -136 81 -244l574 571q-115 84 -248 84q-167 0 -287 -121t-120 -290zM567 391q108 -84 246 -84q169 0 289.5 120.5t120.5 287.5 q0 140 -84 248z" />
-<glyph unicode="&#xd9;" horiz-adv-x="1478" d="M156 549v846q0 15 12 27t27 12h251q17 0 28 -11.5t11 -27.5v-830q0 -108 72 -183t180 -75q109 0 182.5 75t73.5 183v830q0 16 11 27.5t28 11.5h252q15 0 27 -12t12 -27v-846q0 -153 -78.5 -284t-213.5 -208t-294 -77q-158 0 -292 77t-211.5 208t-77.5 284zM500 1790 l69 121q7 12 26.5 12.5t27.5 -6.5l348 -213q23 -18 12 -39l-43 -86q-20 -39 -55 -18l-373 168q-33 21 -12 61z" />
-<glyph unicode="&#xda;" horiz-adv-x="1478" d="M156 549v846q0 15 12 27t27 12h251q17 0 28 -11.5t11 -27.5v-830q0 -108 72 -183t180 -75q109 0 182.5 75t73.5 183v830q0 16 11 27.5t28 11.5h252q15 0 27 -12t12 -27v-846q0 -153 -78.5 -284t-213.5 -208t-294 -77q-158 0 -292 77t-211.5 208t-77.5 284zM496 1665 q-10 21 12 39l348 213q8 7 27 6.5t26 -12.5l70 -121q21 -40 -12 -61l-373 -168q-35 -21 -55 18z" />
-<glyph unicode="&#xdb;" horiz-adv-x="1478" d="M156 549v846q0 15 12 27t27 12h251q17 0 28 -11.5t11 -27.5v-830q0 -108 72 -183t180 -75q109 0 182.5 75t73.5 183v830q0 16 11 27.5t28 11.5h252q15 0 27 -12t12 -27v-846q0 -153 -78.5 -284t-213.5 -208t-294 -77q-158 0 -292 77t-211.5 208t-77.5 284zM422 1665 q-13 19 12 39l277 213q23 17 49 0l282 -213q23 -19 13 -39l-70 -94q-7 -10 -20 -13t-23 3l-203 118l-204 -118q-29 -15 -46 8z" />
-<glyph unicode="&#xdc;" horiz-adv-x="1478" d="M156 549v846q0 15 12 27t27 12h251q17 0 28 -11.5t11 -27.5v-830q0 -108 72 -183t180 -75q109 0 182.5 75t73.5 183v830q0 16 11 27.5t28 11.5h252q15 0 27 -12t12 -27v-846q0 -153 -78.5 -284t-213.5 -208t-294 -77q-158 0 -292 77t-211.5 208t-77.5 284zM322 1718 q0 60 41.5 102t101.5 42t102.5 -42t42.5 -102t-42.5 -102.5t-102.5 -42.5t-101.5 42.5t-41.5 102.5zM864 1718q0 60 42 102t102 42t102.5 -42t42.5 -102t-42.5 -102.5t-102.5 -42.5t-102 42.5t-42 102.5z" />
-<glyph unicode="&#xdd;" horiz-adv-x="1208" d="M-14 1414q10 20 34 20h267q18 0 32 -19l285 -420l285 420q14 19 33 19h266q24 0 34.5 -20t-1.5 -40l-459 -682v-653q0 -15 -12 -27t-27 -12h-244q-17 0 -28 11.5t-11 27.5v651l-452 684q-12 20 -2 40zM360 1665q-10 20 13 39l348 213q8 7 27 6.5t26 -12.5l70 -121 q21 -40 -13 -61l-372 -168q-36 -21 -56 18z" />
-<glyph unicode="&#xde;" horiz-adv-x="1200" d="M176 39v1356q0 16 11 27.5t28 11.5h242q15 0 27 -12t12 -27v-221h213q189 0 323.5 -133.5t134.5 -319.5q0 -125 -61.5 -231t-166.5 -168t-228 -62h-215v-221q0 -15 -12 -27t-27 -12h-242q-17 0 -28 11.5t-11 27.5zM496 559h194q67 0 114.5 47t47.5 115q0 64 -47.5 107.5 t-114.5 43.5h-194v-313z" />
-<glyph unicode="&#xdf;" horiz-adv-x="1105" d="M111 39v807q0 299 139.5 453.5t372.5 154.5q63 0 123 -20t110 -59t80.5 -103.5t30.5 -145.5q0 -60 -23.5 -123.5t-52.5 -107.5t-52.5 -94t-23.5 -86q0 -37 82 -111q166 -145 166 -303q0 -312 -397 -321q-14 0 -26 8.5t-15 21.5l-39 172q-3 16 6 30t26 17q50 8 82.5 35.5 t32.5 71.5q0 57 -92 119q-62 46 -98.5 94.5t-36.5 114.5q0 49 23.5 110.5t52 111.5t52 113.5t23.5 114.5q0 30 -17.5 51t-49.5 21q-18 0 -38 -7.5t-44.5 -31t-44 -59.5t-32.5 -100.5t-13 -147.5v-801q0 -15 -12 -27t-27 -12h-229q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xe0;" horiz-adv-x="878" d="M55 250q0 121 82 197.5t219 76.5q41 0 80.5 -8t58.5 -16l19 -8q0 66 -21 93t-90 27q-41 0 -102.5 -9t-101.5 -21q-42 -13 -49 43l-19 129q-7 42 31 55q21 7 110 19t162 12q188 0 267 -82t79 -266v-453q0 -15 -12 -27t-27 -12h-90q-25 0 -37 27l-28 55q-31 -28 -57.5 -47 t-78.5 -37t-112 -18q-123 0 -203 75t-80 195zM229 1278l70 121q7 12 26 12.5t27 -6.5l348 -213q23 -19 13 -39l-43 -86q-20 -39 -56 -18l-372 168q-34 21 -13 61zM322 270q0 -37 25.5 -63.5t62.5 -26.5t63.5 26.5t26.5 63.5q-2 36 -28 61t-62 25q-37 0 -62.5 -25.5 t-25.5 -60.5z" />
-<glyph unicode="&#xe1;" horiz-adv-x="878" d="M55 250q0 121 82 197.5t219 76.5q41 0 80.5 -8t58.5 -16l19 -8q0 66 -21 93t-90 27q-41 0 -102.5 -9t-101.5 -21q-42 -13 -49 43l-19 129q-7 42 31 55q21 7 110 19t162 12q188 0 267 -82t79 -266v-453q0 -15 -12 -27t-27 -12h-90q-25 0 -37 27l-28 55q-31 -28 -57.5 -47 t-78.5 -37t-112 -18q-123 0 -203 75t-80 195zM205 1153q-10 21 12 39l348 213q8 7 27 6.5t26 -12.5l70 -121q21 -40 -12 -61l-373 -168q-35 -21 -55 18zM322 270q0 -37 25.5 -63.5t62.5 -26.5t63.5 26.5t26.5 63.5q-2 36 -28 61t-62 25q-37 0 -62.5 -25.5t-25.5 -60.5z" />
-<glyph unicode="&#xe2;" horiz-adv-x="878" d="M55 250q0 121 82 197.5t219 76.5q41 0 80.5 -8t58.5 -16l19 -8q0 66 -21 93t-90 27q-41 0 -102.5 -9t-101.5 -21q-42 -13 -49 43l-19 129q-7 42 31 55q21 7 110 19t162 12q188 0 267 -82t79 -266v-453q0 -15 -12 -27t-27 -12h-90q-25 0 -37 27l-28 55q-31 -28 -57.5 -47 t-78.5 -37t-112 -18q-123 0 -203 75t-80 195zM133 1153q-13 19 12 39l277 213q23 17 49 0l283 -213q22 -18 12 -39l-70 -94q-7 -10 -20 -13t-23 3l-202 118l-205 -118q-28 -15 -45 8zM322 270q0 -37 25.5 -63.5t62.5 -26.5t63.5 26.5t26.5 63.5q-2 36 -28 61t-62 25 q-37 0 -62.5 -25.5t-25.5 -60.5z" />
-<glyph unicode="&#xe3;" horiz-adv-x="878" d="M55 250q0 121 82 197.5t219 76.5q41 0 80.5 -8t58.5 -16l19 -8q0 66 -21 93t-90 27q-41 0 -102.5 -9t-101.5 -21q-42 -13 -49 43l-19 129q-7 42 31 55q21 7 110 19t162 12q188 0 267 -82t79 -266v-453q0 -15 -12 -27t-27 -12h-90q-25 0 -37 27l-28 55q-31 -28 -57.5 -47 t-78.5 -37t-112 -18q-123 0 -203 75t-80 195zM109.5 1216q-3.5 15 1.5 25q10 19 28 43t46.5 55.5t67 52.5t77.5 21q41 0 79.5 -24t73.5 -48t68 -24q40 0 78 63q8 13 21.5 15t29.5 -11l70 -53q27 -20 2 -59q-12 -21 -26.5 -41t-41.5 -50.5t-63 -49.5t-74 -19q-36 0 -70 15.5 t-56 33.5t-49 33.5t-50 15.5q-17 0 -31.5 -11.5t-32 -35t-18.5 -24.5q-19 -19 -45 -2l-72 57q-10 7 -13.5 22zM322 270q0 -37 25.5 -63.5t62.5 -26.5t63.5 26.5t26.5 63.5q-2 36 -28 61t-62 25q-37 0 -62.5 -25.5t-25.5 -60.5z" />
-<glyph unicode="&#xe4;" horiz-adv-x="878" d="M55 250q0 121 82 197.5t219 76.5q41 0 80.5 -8t58.5 -16l19 -8q0 66 -21 93t-90 27q-41 0 -102.5 -9t-101.5 -21q-42 -13 -49 43l-19 129q-7 42 31 55q21 7 110 19t162 12q188 0 267 -82t79 -266v-453q0 -15 -12 -27t-27 -12h-90q-25 0 -37 27l-28 55q-31 -28 -57.5 -47 t-78.5 -37t-112 -18q-123 0 -203 75t-80 195zM94 1241q0 60 42 101.5t102 41.5t102.5 -41.5t42.5 -101.5t-42.5 -102.5t-102.5 -42.5t-102 42.5t-42 102.5zM322 270q0 -37 25.5 -63.5t62.5 -26.5t63.5 26.5t26.5 63.5q-2 36 -28 61t-62 25q-37 0 -62.5 -25.5t-25.5 -60.5z M514 1241q0 60 41.5 101.5t101.5 41.5t103 -41.5t43 -101.5t-43 -102.5t-103 -42.5t-101.5 42.5t-41.5 102.5z" />
-<glyph unicode="&#xe5;" horiz-adv-x="878" d="M55 250q0 121 82 197.5t219 76.5q41 0 80.5 -8t58.5 -16l19 -8q0 66 -21 93t-90 27q-41 0 -102.5 -9t-101.5 -21q-42 -13 -49 43l-19 129q-7 42 31 55q21 7 110 19t162 12q188 0 267 -82t79 -266v-453q0 -15 -12 -27t-27 -12h-90q-25 0 -37 27l-28 55q-31 -28 -57.5 -47 t-78.5 -37t-112 -18q-123 0 -203 75t-80 195zM213 1219q0 98 69 166.5t167 68.5q97 0 166 -68.5t69 -166.5t-69 -167t-166 -69q-98 0 -167 69t-69 167zM322 270q0 -37 25.5 -63.5t62.5 -26.5t63.5 26.5t26.5 63.5q-2 36 -28 61t-62 25q-37 0 -62.5 -25.5t-25.5 -60.5z M358 1219q0 -35 28 -63t63 -28t61.5 27.5t26.5 63.5q0 35 -26.5 61.5t-61.5 26.5q-36 0 -63.5 -26.5t-27.5 -61.5z" />
-<glyph unicode="&#xe6;" horiz-adv-x="1353" d="M53 252q0 118 81.5 195t223.5 77q36 0 75 -8t60 -16l21 -8q2 69 -23 97.5t-88 28.5q-77 0 -204 -24q-15 -2 -29.5 8t-17.5 25l-23 141q-1 15 9 27t24 14q161 31 272 31q180 0 258 -72q109 72 236 72q160 0 274.5 -109.5t114.5 -275.5q0 -19 -1 -30.5t-4.5 -27.5t-13 -24 t-24.5 -8h-492q6 -51 46 -94.5t112 -43.5q74 0 139 49q12 8 26.5 9t24.5 -9l107 -120q11 -11 11.5 -28t-9.5 -28q-120 -120 -307 -120q-91 0 -171 35t-136 98q-13 -16 -34 -34.5t-57 -43t-88 -40t-108 -15.5q-129 0 -207 75t-78 197zM322 270q0 -37 25.5 -63.5t62.5 -26.5 t63.5 26.5t26.5 63.5q-2 36 -28 61t-62 25q-37 0 -62.5 -25.5t-25.5 -60.5zM809 524h219q-3 39 -35.5 68t-72.5 29q-41 0 -73 -28.5t-38 -68.5z" />
-<glyph unicode="&#xe7;" horiz-adv-x="862" d="M49 410q0 118 62 217.5t163.5 156t217.5 56.5q184 0 307 -148q10 -14 6.5 -29t-17.5 -28l-122 -117q-8 -7 -22.5 -5.5t-22.5 9.5q-50 53 -119 53q-67 0 -115.5 -48.5t-48.5 -116.5q0 -69 46.5 -117.5t113.5 -48.5q49 0 78.5 16t60.5 47q25 25 45 8l123 -106 q33 -30 14 -57q-114 -169 -321 -172v-89q92 -12 140 -67.5t48 -140.5q0 -90 -63.5 -154t-153.5 -64q-44 0 -86.5 20t-69.5 52q-12 14 -9 30t18 30l47 41q9 9 22 6.5t21 -11.5q13 -18 49 -18q24 0 42.5 20.5t18.5 45.5q0 79 -139 86q-35 5 -35 36v199q-131 44 -215 154.5 t-84 253.5z" />
-<glyph unicode="&#xe8;" horiz-adv-x="899" d="M49 410q0 176 122.5 303t301.5 127q160 0 274.5 -109.5t114.5 -275.5q0 -28 -4 -56q-1 -15 -13 -24.5t-26 -9.5h-491q6 -50 45.5 -93t111.5 -43q36 0 76.5 15t67.5 35q13 11 27.5 11t23.5 -11l102 -123q10 -13 10.5 -29t-12.5 -31q-116 -116 -303 -116 q-181 0 -304.5 125.5t-123.5 304.5zM258 1278l70 121q7 12 26 12.5t27 -6.5l348 -213q23 -18 12 -39l-43 -86q-20 -39 -55 -18l-373 168q-33 21 -12 61zM354 524h219q-3 39 -35.5 68t-72.5 29q-41 0 -73 -28.5t-38 -68.5z" />
-<glyph unicode="&#xe9;" horiz-adv-x="899" d="M49 410q0 176 122.5 303t301.5 127q160 0 274.5 -109.5t114.5 -275.5q0 -28 -4 -56q-1 -15 -13 -24.5t-26 -9.5h-491q6 -50 45.5 -93t111.5 -43q36 0 76.5 15t67.5 35q13 11 27.5 11t23.5 -11l102 -123q10 -13 10.5 -29t-12.5 -31q-116 -116 -303 -116 q-181 0 -304.5 125.5t-123.5 304.5zM233 1153q-10 20 13 39l348 213q8 7 27 6.5t26 -12.5l70 -121q21 -40 -12 -61l-373 -168q-36 -21 -56 18zM354 524h219q-3 39 -35.5 68t-72.5 29q-41 0 -73 -28.5t-38 -68.5z" />
-<glyph unicode="&#xea;" horiz-adv-x="899" d="M49 410q0 176 122.5 303t301.5 127q160 0 274.5 -109.5t114.5 -275.5q0 -28 -4 -56q-1 -15 -13 -24.5t-26 -9.5h-491q6 -50 45.5 -93t111.5 -43q36 0 76.5 15t67.5 35q13 11 27.5 11t23.5 -11l102 -123q10 -13 10.5 -29t-12.5 -31q-116 -116 -303 -116 q-181 0 -304.5 125.5t-123.5 304.5zM162 1153q-13 19 12 39l277 213q23 17 49 0l282 -213q23 -19 13 -39l-70 -94q-7 -10 -20 -13t-23 3l-203 118l-205 -118q-28 -15 -45 8zM354 524h219q-3 39 -35.5 68t-72.5 29q-41 0 -73 -28.5t-38 -68.5z" />
-<glyph unicode="&#xeb;" horiz-adv-x="899" d="M49 410q0 176 122.5 303t301.5 127q160 0 274.5 -109.5t114.5 -275.5q0 -28 -4 -56q-1 -15 -13 -24.5t-26 -9.5h-491q6 -50 45.5 -93t111.5 -43q36 0 76.5 15t67.5 35q13 11 27.5 11t23.5 -11l102 -123q10 -13 10.5 -29t-12.5 -31q-116 -116 -303 -116 q-181 0 -304.5 125.5t-123.5 304.5zM123 1241q0 60 41.5 101.5t101.5 41.5t103 -41.5t43 -101.5t-43 -102.5t-103 -42.5t-101.5 42.5t-41.5 102.5zM354 524h219q-3 39 -35.5 68t-72.5 29q-41 0 -73 -28.5t-38 -68.5zM543 1241q0 60 41.5 101.5t101.5 41.5t102.5 -41.5 t42.5 -101.5t-42.5 -102.5t-102.5 -42.5t-101.5 42.5t-41.5 102.5z" />
-<glyph unicode="&#xec;" horiz-adv-x="524" d="M23 1278l69 121q7 12 26 12.5t27 -6.5l349 -213q22 -18 12 -39l-43 -86q-20 -39 -55 -18l-373 168q-33 21 -12 61zM111 39v739q0 17 11.5 28t27.5 11h225q16 0 27.5 -11t11.5 -28v-739q0 -15 -12 -27t-27 -12h-225q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xed;" horiz-adv-x="524" d="M18 1153q-10 20 13 39l348 213q8 7 27 6.5t26 -12.5l70 -121q21 -40 -13 -61l-372 -168q-36 -21 -56 18zM111 39v739q0 17 11.5 28t27.5 11h225q16 0 27.5 -11t11.5 -28v-739q0 -15 -12 -27t-27 -12h-225q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xee;" horiz-adv-x="524" d="M-53 1153q-13 19 12 39l277 213q23 17 49 0l282 -213q23 -19 13 -39l-70 -94q-7 -10 -20 -13t-23 3l-203 118l-205 -118q-28 -15 -45 8zM111 39v739q0 17 11.5 28t27.5 11h225q16 0 27.5 -11t11.5 -28v-739q0 -15 -12 -27t-27 -12h-225q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xef;" horiz-adv-x="524" d="M-92 1241q0 60 41.5 101.5t101.5 41.5t103 -41.5t43 -101.5t-43 -102.5t-103 -42.5t-101.5 42.5t-41.5 102.5zM111 39v739q0 17 11.5 28t27.5 11h225q16 0 27.5 -11t11.5 -28v-739q0 -15 -12 -27t-27 -12h-225q-15 0 -27 12t-12 27zM328 1241q0 60 41.5 101.5t101.5 41.5 t102.5 -41.5t42.5 -101.5t-42.5 -102.5t-102.5 -42.5t-101.5 42.5t-41.5 102.5z" />
-<glyph unicode="&#xf0;" horiz-adv-x="1071" d="M49 449q0 108 36.5 195t95.5 140t130.5 81t145.5 28q43 0 98.5 -12t95.5 -29q-30 137 -182 233l-158 -90q-15 -9 -29 -5t-22 18l-18 30q-8 13 -4.5 30t16.5 24l96 55q-56 32 -125 49q-39 11 -24 51l59 158q17 47 78 27q37 -12 111 -50.5t151 -91.5l145 86q14 7 29 2.5 t23 -18.5l18 -29q8 -13 4.5 -29.5t-16.5 -23.5l-107 -61q316 -272 316 -680q0 -161 -56.5 -286t-169.5 -198t-268 -73q-192 0 -330.5 138t-138.5 331zM326 459q0 -80 57.5 -138.5t138.5 -58.5t139 58.5t58 138.5q0 82 -57.5 140t-139.5 58t-139 -58t-57 -140z" />
-<glyph unicode="&#xf1;" horiz-adv-x="1081" d="M111 39v741q0 17 11.5 28t27.5 11h96q10 0 21.5 -7t15.5 -17l32 -82q117 127 289 127q183 0 286 -122.5t103 -305.5v-373q0 -15 -12 -27t-27 -12h-219q-17 0 -28 11.5t-11 27.5v383q0 65 -36.5 109t-102.5 44q-63 0 -109.5 -40.5t-46.5 -102.5v-393q0 -39 -36 -39h-215 q-15 0 -27 12t-12 27zM226 1216q-4 15 1 25q10 19 28 43t46.5 55.5t67 52.5t77.5 21q41 0 80 -24t74 -48t68 -24q39 0 77 63q8 13 22 15t30 -11l69 -53q27 -20 2 -59q-9 -16 -18.5 -30.5t-30.5 -40t-42 -43.5t-51.5 -32t-61.5 -14q-45 0 -86.5 24.5t-76.5 49t-63 24.5 q-17 0 -31.5 -11.5t-32 -35t-18.5 -24.5q-19 -19 -45 -2l-71 57q-10 7 -14 22z" />
-<glyph unicode="&#xf2;" horiz-adv-x="946" d="M47 412q0 174 126 301t300 127t300 -127t126 -301q0 -177 -125.5 -304.5t-300.5 -127.5t-300.5 127.5t-125.5 304.5zM233 1278l70 121q7 12 26 12.5t27 -6.5l349 -213q23 -18 12 -39l-43 -86q-20 -39 -56 -18l-372 168q-34 21 -13 61zM311 412q0 -69 47.5 -118.5 t114.5 -49.5t114.5 49.5t47.5 118.5q0 68 -47.5 115.5t-114.5 47.5t-114.5 -47.5t-47.5 -115.5z" />
-<glyph unicode="&#xf3;" horiz-adv-x="946" d="M47 412q0 174 126 301t300 127t300 -127t126 -301q0 -177 -125.5 -304.5t-300.5 -127.5t-300.5 127.5t-125.5 304.5zM225 1153q-10 20 13 39l348 213q8 7 27 6.5t26 -12.5l70 -121q21 -40 -13 -61l-372 -168q-36 -21 -56 18zM311 412q0 -69 47.5 -118.5t114.5 -49.5 t114.5 49.5t47.5 118.5q0 68 -47.5 115.5t-114.5 47.5t-114.5 -47.5t-47.5 -115.5z" />
-<glyph unicode="&#xf4;" horiz-adv-x="946" d="M47 412q0 174 126 301t300 127t300 -127t126 -301q0 -177 -125.5 -304.5t-300.5 -127.5t-300.5 127.5t-125.5 304.5zM158 1153q-13 19 12 39l276 213q24 18 50 0l282 -213q23 -19 13 -39l-70 -94q-7 -10 -20 -13t-23 3l-203 118l-205 -118q-28 -15 -45 8zM311 412 q0 -69 47.5 -118.5t114.5 -49.5t114.5 49.5t47.5 118.5q0 68 -47.5 115.5t-114.5 47.5t-114.5 -47.5t-47.5 -115.5z" />
-<glyph unicode="&#xf5;" horiz-adv-x="946" d="M47 412q0 174 126 301t300 127t300 -127t126 -301q0 -177 -125.5 -304.5t-300.5 -127.5t-300.5 127.5t-125.5 304.5zM148.5 1216q-3.5 15 1.5 25q10 19 28 43t46.5 55.5t67 52.5t77.5 21q41 0 79.5 -24t73.5 -48t68 -24q40 0 78 63q8 13 21.5 15t29.5 -11l69 -53 q28 -21 3 -59q-12 -21 -26.5 -41t-41.5 -50.5t-63 -49.5t-74 -19q-45 0 -86.5 24.5t-76.5 49t-63 24.5q-17 0 -31.5 -11.5t-31 -34.5t-18.5 -25q-20 -20 -46 -2l-71 57q-10 7 -13.5 22zM311 412q0 -69 47.5 -118.5t114.5 -49.5t114.5 49.5t47.5 118.5q0 68 -47.5 115.5 t-114.5 47.5t-114.5 -47.5t-47.5 -115.5z" />
-<glyph unicode="&#xf6;" horiz-adv-x="946" d="M47 412q0 174 126 301t300 127t300 -127t126 -301q0 -177 -125.5 -304.5t-300.5 -127.5t-300.5 127.5t-125.5 304.5zM119 1241q0 60 41.5 101.5t101.5 41.5t103 -41.5t43 -101.5t-43 -102.5t-103 -42.5t-101.5 42.5t-41.5 102.5zM311 412q0 -69 47.5 -118.5t114.5 -49.5 t114.5 49.5t47.5 118.5q0 68 -47.5 115.5t-114.5 47.5t-114.5 -47.5t-47.5 -115.5zM539 1241q0 60 41.5 101.5t101.5 41.5t102.5 -41.5t42.5 -101.5t-42.5 -102.5t-102.5 -42.5t-101.5 42.5t-41.5 102.5z" />
-<glyph unicode="&#xf7;" horiz-adv-x="1011" d="M57 637v143q0 15 12 27t27 12h822q15 0 25.5 -12t10.5 -27v-143q0 -15 -10.5 -27t-25.5 -12h-822q-15 0 -27 12t-12 27zM346 315q0 63 44.5 107.5t107.5 44.5t108 -44.5t45 -107.5t-45 -108t-108 -45t-107.5 45t-44.5 108zM348 1118q0 63 44.5 107.5t107.5 44.5 t108 -44.5t45 -107.5t-45 -108t-108 -45t-107.5 45t-44.5 108z" />
-<glyph unicode="&#xf8;" horiz-adv-x="954" d="M51 414q0 174 126 300t300 126q140 0 258 -90l58 57q11 12 26.5 11.5t26.5 -11.5l24 -25q12 -10 12 -25.5t-12 -27.5l-57 -57q90 -118 90 -258q0 -116 -57.5 -216t-156 -159t-212.5 -59q-143 0 -258 88l-51 -52q-11 -10 -26.5 -9.5t-26.5 11.5l-25 25q-11 11 -11.5 26.5 t9.5 26.5l51 51q-88 115 -88 267zM315 414q0 -40 15 -70l217 217q-28 14 -70 14q-68 0 -115 -47t-47 -114zM408 258q28 -14 69 -14q67 0 114.5 50.5t47.5 119.5q0 32 -14 67z" />
-<glyph unicode="&#xf9;" d="M92 410v370q0 17 11.5 28t27.5 11h219q16 0 27.5 -11t11.5 -28v-379q0 -66 35 -111.5t96 -45.5q57 0 90 44t33 101v391q0 39 43 39h209q16 0 27.5 -11t11.5 -28v-741q0 -15 -12 -27t-27 -12h-96q-27 0 -39 29l-31 75q-58 -55 -88 -75q-78 -49 -188 -49q-89 0 -159 34 t-113.5 93.5t-66 136.5t-22.5 166zM299 1278l70 121q7 12 26 12.5t27 -6.5l348 -213q22 -18 12 -39l-43 -86q-20 -39 -55 -18l-373 168q-33 21 -12 61z" />
-<glyph unicode="&#xfa;" d="M92 410v370q0 17 11.5 28t27.5 11h219q16 0 27.5 -11t11.5 -28v-379q0 -66 35 -111.5t96 -45.5q57 0 90 44t33 101v391q0 39 43 39h209q16 0 27.5 -11t11.5 -28v-741q0 -15 -12 -27t-27 -12h-96q-27 0 -39 29l-31 75q-58 -55 -88 -75q-78 -49 -188 -49q-89 0 -159 34 t-113.5 93.5t-66 136.5t-22.5 166zM274 1153q-10 20 13 39l348 213q8 7 27 6.5t26 -12.5l70 -121q21 -40 -13 -61l-372 -168q-36 -21 -56 18z" />
-<glyph unicode="&#xfb;" d="M92 410v370q0 17 11.5 28t27.5 11h219q16 0 27.5 -11t11.5 -28v-379q0 -66 35 -111.5t96 -45.5q57 0 90 44t33 101v391q0 39 43 39h209q16 0 27.5 -11t11.5 -28v-741q0 -15 -12 -27t-27 -12h-96q-27 0 -39 29l-31 75q-58 -55 -88 -75q-78 -49 -188 -49q-89 0 -159 34 t-113.5 93.5t-66 136.5t-22.5 166zM203 1153q-13 19 12 39l277 213q23 17 49 0l282 -213q23 -19 13 -39l-70 -94q-7 -10 -20 -13t-23 3l-203 118l-205 -118q-28 -15 -45 8z" />
-<glyph unicode="&#xfc;" d="M92 410v370q0 17 11.5 28t27.5 11h219q16 0 27.5 -11t11.5 -28v-379q0 -66 35 -111.5t96 -45.5q57 0 90 44t33 101v391q0 39 43 39h209q16 0 27.5 -11t11.5 -28v-741q0 -15 -12 -27t-27 -12h-96q-27 0 -39 29l-31 75q-58 -55 -88 -75q-78 -49 -188 -49q-89 0 -159 34 t-113.5 93.5t-66 136.5t-22.5 166zM164 1241q0 60 41.5 101.5t101.5 41.5t103 -41.5t43 -101.5t-43 -102.5t-103 -42.5t-101.5 42.5t-41.5 102.5zM584 1241q0 60 41.5 101.5t101.5 41.5t102.5 -41.5t42.5 -101.5t-42.5 -102.5t-102.5 -42.5t-101.5 42.5t-41.5 102.5z" />
-<glyph unicode="&#xfd;" horiz-adv-x="952" d="M12 766q-9 20 1.5 36.5t33.5 16.5h234q23 0 34 -22l158 -381h4l162 381q3 9 13 15.5t22 6.5h231q23 0 34 -16.5t1 -36.5l-627 -1356q-12 -24 -34 -24h-230q-23 0 -34 16.5t-1 38.5l305 643zM229 1153q-10 20 13 39l348 213q8 7 27 6.5t26 -12.5l70 -121q21 -40 -13 -61 l-372 -168q-36 -21 -56 18z" />
-<glyph unicode="&#xfe;" d="M111 -578v1973q0 15 12 27t27 12h227q15 0 27 -12t12 -27v-607q29 21 79 36.5t99 15.5q172 0 285.5 -119t113.5 -311q0 -181 -126 -305.5t-302 -124.5q-81 0 -149 32v-590q0 -15 -12 -26.5t-27 -11.5h-227q-15 0 -27 11.5t-12 26.5zM383 410q0 -70 46 -117t116 -47 q69 0 116.5 47.5t47.5 116.5q0 68 -47.5 114.5t-116.5 46.5q-68 0 -115 -47t-47 -114z" />
-<glyph unicode="&#xff;" horiz-adv-x="952" d="M12 766q-9 20 1.5 36.5t33.5 16.5h234q23 0 34 -22l158 -381h4l162 381q3 9 13 15.5t22 6.5h231q23 0 34 -16.5t1 -36.5l-627 -1356q-12 -24 -34 -24h-230q-23 0 -34 16.5t-1 38.5l305 643zM121 1241q0 60 41.5 101.5t101.5 41.5t103 -41.5t43 -101.5t-43 -102.5 t-103 -42.5t-101.5 42.5t-41.5 102.5zM541 1241q0 60 41.5 101.5t101.5 41.5t102.5 -41.5t42.5 -101.5t-42.5 -102.5t-102.5 -42.5t-101.5 42.5t-41.5 102.5z" />
-<glyph unicode="&#x152;" horiz-adv-x="2002" d="M72 715q0 101 26 197t73 177t114.5 149t148.5 115.5t176.5 74t196.5 26.5q47 0 100 -5t82 -10l29 -5h848q17 0 28 -11.5t11 -27.5v-224q0 -15 -11 -26.5t-28 -11.5h-568v-254h467q15 0 27 -12t12 -27v-224q0 -17 -11.5 -27.5t-27.5 -10.5h-467v-277h568q17 0 28 -11.5 t11 -27.5v-223q0 -16 -11 -27.5t-28 -11.5h-848q-109 -20 -211 -20q-151 0 -287.5 57.5t-234.5 155.5t-155.5 234.5t-57.5 287.5zM399 715q0 -110 55 -205.5t149.5 -152t203.5 -56.5q102 0 172 33v764q-68 32 -172 32q-167 0 -287.5 -123t-120.5 -292z" />
-<glyph unicode="&#x153;" horiz-adv-x="1454" d="M49 414q0 174 126 300t300 126q149 0 275 -107q120 107 278 107q160 0 274.5 -109.5t114.5 -275.5q0 -28 -4 -56q-1 -15 -13 -24.5t-26 -9.5h-491q6 -51 45.5 -94.5t111.5 -43.5q75 0 140 49q12 8 26.5 9t24.5 -9q14 -16 48 -56t58 -64q11 -11 11.5 -28t-9.5 -28 q-120 -120 -307 -120q-162 0 -282 104q-117 -104 -275 -104q-114 0 -212.5 59t-156 159t-57.5 216zM313 414q0 -69 47.5 -119.5t114.5 -50.5t114.5 50.5t47.5 119.5q0 67 -47 114t-115 47t-115 -47t-47 -114zM909 524h219q-3 39 -35.5 68t-72.5 29q-41 0 -73 -28.5 t-38 -68.5z" />
-<glyph unicode="&#x178;" horiz-adv-x="1208" d="M-14 1414q10 20 34 20h267q18 0 32 -19l285 -420l285 420q14 19 33 19h266q24 0 34.5 -20t-1.5 -40l-459 -682v-653q0 -15 -12 -27t-27 -12h-244q-17 0 -28 11.5t-11 27.5v651l-452 684q-12 20 -2 40zM188 1718q0 60 42 102t102 42t102.5 -42t42.5 -102t-42.5 -102.5 t-102.5 -42.5t-102 42.5t-42 102.5zM731 1718q0 60 41.5 102t101.5 42t103 -42t43 -102t-43 -102.5t-103 -42.5t-101.5 42.5t-41.5 102.5z" />
-<glyph unicode="&#x2c6;" horiz-adv-x="763" d="M66 1153q-13 19 12 39l276 213q23 17 49 0l283 -213q23 -18 12 -39l-69 -94q-7 -10 -20 -13t-23 3l-203 118l-205 -118q-28 -15 -45 8z" />
-<glyph unicode="&#x2dc;" horiz-adv-x="778" d="M64.5 1216q-3.5 15 1.5 25q10 19 28 43t46.5 55.5t67 52.5t77.5 21q41 0 79.5 -24t73.5 -48t68 -24q40 0 78 63q8 13 21.5 15t29.5 -11l70 -53q27 -20 2 -59q-12 -21 -26.5 -41t-41.5 -50.5t-63 -49.5t-74 -19q-45 0 -86.5 24.5t-76.5 49t-63 24.5q-17 0 -31.5 -11.5 t-31 -34.5t-18.5 -25q-19 -19 -45 -2l-72 57q-10 7 -13.5 22z" />
-<glyph unicode="&#x2000;" horiz-adv-x="1005" />
-<glyph unicode="&#x2001;" horiz-adv-x="2011" />
-<glyph unicode="&#x2002;" horiz-adv-x="1005" />
-<glyph unicode="&#x2003;" horiz-adv-x="2011" />
-<glyph unicode="&#x2004;" horiz-adv-x="670" />
-<glyph unicode="&#x2005;" horiz-adv-x="502" />
-<glyph unicode="&#x2006;" horiz-adv-x="335" />
-<glyph unicode="&#x2007;" horiz-adv-x="335" />
-<glyph unicode="&#x2008;" horiz-adv-x="251" />
-<glyph unicode="&#x2009;" horiz-adv-x="402" />
-<glyph unicode="&#x200a;" horiz-adv-x="111" />
-<glyph unicode="&#x2010;" horiz-adv-x="735" d="M94 401v187q0 17 11 28t28 11h469q17 0 28 -11t11 -28v-187q0 -15 -11 -25.5t-28 -10.5h-469q-17 0 -28 10.5t-11 25.5z" />
-<glyph unicode="&#x2011;" horiz-adv-x="735" d="M94 401v187q0 17 11 28t28 11h469q17 0 28 -11t11 -28v-187q0 -15 -11 -25.5t-28 -10.5h-469q-17 0 -28 10.5t-11 25.5z" />
-<glyph unicode="&#x2012;" horiz-adv-x="735" d="M94 401v187q0 17 11 28t28 11h469q17 0 28 -11t11 -28v-187q0 -15 -11 -25.5t-28 -10.5h-469q-17 0 -28 10.5t-11 25.5z" />
-<glyph unicode="&#x2013;" horiz-adv-x="1095" d="M90 453v104q0 17 11 28t28 11h838q17 0 28 -11t11 -28v-104q0 -15 -11 -26t-28 -11h-838q-17 0 -28 11t-11 26z" />
-<glyph unicode="&#x2014;" horiz-adv-x="1546" d="M90 453v104q0 17 11 28t28 11h1288q17 0 28 -11t11 -28v-104q0 -15 -11 -26t-28 -11h-1288q-17 0 -28 11t-11 26z" />
-<glyph unicode="&#x2018;" horiz-adv-x="417" d="M39 1073q0 61 16.5 118t35.5 92.5t52 73t47 50t39 33.5q25 18 45 -4l31 -31q10 -13 9 -25t-11 -20q-11 -8 -24 -18.5t-36 -35t-40 -50.5t-30.5 -64.5t-14.5 -77.5q35 14 82 14q61 0 104 -42t43 -103t-46.5 -104t-115.5 -43q-32 0 -62.5 12.5t-59.5 38.5t-46.5 74.5 t-17.5 111.5z" />
-<glyph unicode="&#x2019;" horiz-adv-x="409" d="M27 1307q0 61 46 104t115 43q32 0 62.5 -12.5t59.5 -38.5t47 -74.5t18 -111.5q0 -51 -10 -98t-30 -85t-37 -65.5t-45 -55t-37.5 -36.5t-31.5 -27q-25 -18 -45 4l-30 31q-10 13 -9 25t11 20q11 8 24 18.5t36 35t40 50.5t30.5 64.5t14.5 77.5q-35 -15 -82 -15 q-60 0 -103.5 42.5t-43.5 103.5z" />
-<glyph unicode="&#x201a;" horiz-adv-x="466" d="M61 125q0 61 46.5 104t115.5 43q32 0 62.5 -12.5t59.5 -38.5t47 -74.5t18 -111.5q0 -51 -10 -98t-30 -85t-37 -65.5t-45 -55t-37.5 -36.5t-31.5 -27q-25 -18 -45 4l-31 31q-10 13 -9 25t11 20q15 11 33 27t46.5 48t47 77.5t19.5 93.5q-35 -14 -82 -14q-61 0 -104.5 42 t-43.5 103z" />
-<glyph unicode="&#x201c;" horiz-adv-x="825" d="M39 1075q0 61 16.5 118t35.5 92.5t52 73t47 50t39 33.5q25 18 45 -4l31 -31q10 -13 9 -25t-11 -20q-11 -8 -24 -18.5t-36 -35t-40 -50.5t-30.5 -64.5t-14.5 -77.5q35 14 82 14q61 0 104 -42t43 -103t-46.5 -104t-115.5 -43q-32 0 -62.5 12.5t-59.5 38.5t-46.5 74.5 t-17.5 111.5zM446 1075q0 51 10 98t30 85t37 65.5t45 55t37.5 36.5t31.5 27q25 18 45 -4l31 -31q10 -13 9 -25t-11 -20q-15 -11 -33 -27t-46.5 -48t-47 -77.5t-19.5 -93.5q35 14 82 14q61 0 104.5 -42t43.5 -103t-46.5 -104t-115.5 -43q-32 0 -62.5 12.5t-59.5 38.5 t-47 74.5t-18 111.5z" />
-<glyph unicode="&#x201d;" horiz-adv-x="817" d="M27 1307q0 61 46 104t115 43q32 0 62.5 -12.5t59.5 -38.5t47 -74.5t18 -111.5q0 -51 -10 -98t-30 -85t-37 -65.5t-45 -55t-37.5 -36.5t-31.5 -27q-25 -18 -45 4l-30 31q-10 13 -9 25t11 20q11 8 24 18.5t36 35t40 50.5t30.5 64.5t14.5 77.5q-35 -15 -82 -15 q-60 0 -103.5 42.5t-43.5 103.5zM434 1307q0 61 46.5 104t115.5 43q32 0 62.5 -12.5t59.5 -38.5t46.5 -74.5t17.5 -111.5q0 -61 -16.5 -118t-35.5 -92.5t-52 -73t-47 -50t-39 -33.5q-25 -18 -45 4l-31 31q-10 13 -9 25t11 20q15 11 33 27t46.5 48t47 77.5t19.5 93.5 q-35 -15 -82 -15q-61 0 -104.5 42.5t-43.5 103.5z" />
-<glyph unicode="&#x201e;" horiz-adv-x="876" d="M61 125q0 61 46.5 104t115.5 43q32 0 62.5 -12.5t59.5 -38.5t47 -74.5t18 -111.5q0 -51 -10 -98t-30 -85t-37 -65.5t-45 -55t-37.5 -36.5t-31.5 -27q-25 -18 -45 4l-31 31q-10 13 -9 25t11 20q15 11 33 27t46.5 48t47 77.5t19.5 93.5q-35 -14 -82 -14q-61 0 -104.5 42 t-43.5 103zM469 125q0 61 46.5 104t115.5 43q32 0 62.5 -12.5t59.5 -38.5t46.5 -74.5t17.5 -111.5q0 -61 -16.5 -118t-35.5 -92.5t-52 -73t-47 -50t-39 -33.5q-25 -18 -45 4l-31 31q-10 13 -9 25t11 20q11 8 24 18.5t36 35t40 50.5t30.5 64.5t14.5 77.5q-35 -14 -82 -14 q-61 0 -104 42t-43 103z" />
-<glyph unicode="&#x2022;" horiz-adv-x="831" d="M123 459q0 121 86 209t203 88q122 0 209.5 -88t87.5 -209q0 -117 -88 -203t-209 -86q-117 0 -203 86t-86 203z" />
-<glyph unicode="&#x2026;" horiz-adv-x="1413" d="M82 143q0 67 47 114.5t115 47.5t116 -47.5t48 -114.5t-48 -115t-116 -48q-67 0 -114.5 47.5t-47.5 115.5zM551 143q0 67 47.5 114.5t114.5 47.5q68 0 116 -47.5t48 -114.5t-48 -115t-116 -48q-67 0 -114.5 47.5t-47.5 115.5zM1006 143q0 68 47 115t114 47q68 0 116 -47.5 t48 -114.5t-48 -115t-116 -48q-67 0 -114 47.5t-47 115.5z" />
-<glyph unicode="&#x202f;" horiz-adv-x="402" />
-<glyph unicode="&#x2039;" horiz-adv-x="579" d="M43 397q-17 23 0 49l223 304q14 24 37 24h162q26 0 34.5 -19t-3.5 -44l-134 -285l127 -301q11 -25 3 -43.5t-33 -18.5h-172q-6 0 -16.5 5.5t-14.5 11.5z" />
-<glyph unicode="&#x203a;" horiz-adv-x="579" d="M78.5 755q8.5 19 34.5 19h161q23 0 37 -24l224 -304q17 -26 0 -49l-213 -317q-4 -6 -14.5 -11.5t-16.5 -5.5h-172q-25 0 -33.5 18.5t2.5 43.5l127 301l-133 285q-12 25 -3.5 44z" />
-<glyph unicode="&#x205f;" horiz-adv-x="502" />
-<glyph unicode="&#x20ac;" horiz-adv-x="1458" d="M41 547v35q0 15 11 27t26 12h78q-4 31 -4 94v39h-74q-15 0 -26 12t-11 27v34q0 15 11 27t26 12h88q53 254 256 421t469 167q151 0 270 -46.5t225 -143.5q13 -12 14 -29t-11 -29l-160 -166q-11 -10 -26 -10t-25 10q-117 105 -277 105q-133 0 -235 -77.5t-144 -201.5h430 q17 0 28 -11.5t11 -27.5v-39q0 -15 -11 -25.5t-28 -10.5h-452v-29q0 -53 12 -102h358q17 0 28 -11.5t11 -27.5v-37q0 -15 -11 -26t-28 -11h-315q54 -93 145 -147t203 -54q73 0 146.5 26t128.5 73q10 9 27 8t26 -11l160 -170q10 -11 9.5 -27.5t-11.5 -27.5 q-204 -198 -498 -198q-251 0 -447.5 148t-263.5 380h-102q-15 0 -26 12t-11 27z" />
-<glyph unicode="&#x2122;" horiz-adv-x="1476" d="M82 1294v101q0 15 12 27t27 12h432q17 0 28 -11.5t11 -27.5v-101q0 -17 -11 -28t-28 -11h-123v-442q0 -15 -12 -27t-27 -12h-108q-17 0 -28 11.5t-11 27.5v442h-123q-16 0 -27.5 11t-11.5 28zM639 821l106 592q2 13 12.5 22t26.5 9h9q21 0 34 -23l187 -352l188 352 q12 23 35 23h8q14 0 26 -9.5t13 -21.5l109 -594q3 -19 -8.5 -32t-30.5 -13h-107q-14 0 -26 11t-13 24l-34 215l-121 -238q-11 -18 -33 -18h-12q-25 0 -35 20l-117 236l-37 -217q-1 -12 -14 -22.5t-25 -10.5h-102q-20 0 -31 14t-8 33z" />
-<glyph unicode="&#x25fc;" horiz-adv-x="819" d="M0 0v819h819v-819h-819z" />
-<glyph unicode="&#xfb03;" horiz-adv-x="1806" d="M72 598v182q0 17 11 28t28 11h43v158q0 206 129 331.5t327 125.5q55 0 105 -10.5t83 -25t57.5 -29.5t36.5 -25l11 -11q59 61 134 91t182 30q90 0 180.5 -27t146.5 -57q15 -8 20.5 -24t-3.5 -31l-95 -180q-8 -12 -22.5 -16.5t-28.5 1.5q-110 51 -184 51q-54 0 -91.5 -41.5 t-37.5 -121.5v-189h553q17 0 28 -11t11 -28v-741q0 -16 -11 -27.5t-28 -11.5h-223q-17 0 -28 11.5t-11 27.5v520h-291v-520q0 -15 -12 -27t-27 -12h-236q-15 0 -26.5 12t-11.5 27v520h-324v-520q0 -15 -12 -27t-27 -12h-235q-15 0 -27 12t-12 27v520h-43q-17 0 -28 11.5 t-11 27.5zM467 819h324v189q0 27 4 77q-63 72 -162 72q-74 0 -120 -51.5t-46 -128.5v-158z" />
-<glyph unicode="&#xfb04;" horiz-adv-x="1849" d="M72 598v182q0 17 11 28t28 11h43v158q0 144 63 249.5t165 156.5t228 51q175 0 293 -101q118 121 332 121q49 0 98.5 -12.5t84.5 -30t63.5 -35.5t42.5 -30l14 -13l27 62q14 39 53 39h82q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-227q-15 0 -27 12t-12 27v1048 q-17 24 -66.5 54t-105.5 30q-68 0 -113 -41.5t-45 -121.5v-191h137q16 0 27.5 -11t11.5 -28v-182q0 -15 -12 -27t-27 -12h-137v-518q0 -15 -12 -27t-27 -12h-236q-15 0 -26.5 12t-11.5 27v520h-324v-520q0 -15 -12 -27t-27 -12h-235q-15 0 -27 12t-12 27v520h-43 q-17 0 -28 11.5t-11 27.5zM467 819h324v189q0 27 4 77q-63 72 -162 72q-74 0 -120 -51.5t-46 -128.5v-158z" />
-<hkern u1="&#x22;" u2="&#xf0;" k="23" />
-<hkern u1="&#x22;" u2="&#xef;" k="-84" />
-<hkern u1="&#x22;" u2="&#xee;" k="-20" />
-<hkern u1="&#x22;" u2="&#xdf;" k="16" />
-<hkern u1="&#x22;" u2="&#xde;" k="16" />
-<hkern u1="&#x22;" u2="x" k="74" />
-<hkern u1="&#x22;" u2="v" k="61" />
-<hkern u1="&#x22;" u2="q" k="106" />
-<hkern u1="&#x22;" u2="m" k="86" />
-<hkern u1="&#x22;" u2="V" k="-37" />
-<hkern u1="&#x22;" u2="Q" k="31" />
-<hkern u1="&#x22;" u2="P" k="16" />
-<hkern u1="&#x22;" u2="M" k="39" />
-<hkern u1="&#x22;" u2="F" k="16" />
-<hkern u1="&#x22;" u2="B" k="16" />
-<hkern u1="&#x22;" u2="&#x40;" k="51" />
-<hkern u1="&#x22;" u2="&#x39;" k="10" />
-<hkern u1="&#x22;" u2="&#x38;" k="18" />
-<hkern u1="&#x22;" u2="&#x36;" k="45" />
-<hkern u1="&#x22;" u2="&#x34;" k="72" />
-<hkern u1="&#x22;" u2="&#x30;" k="33" />
-<hkern u1="&#x22;" u2="&#x2f;" k="61" />
-<hkern u1="&#x22;" u2="&#x2e;" k="170" />
-<hkern u1="&#x23;" u2="&#x33;" k="10" />
-<hkern u1="&#x27;" u2="&#xf0;" k="23" />
-<hkern u1="&#x27;" u2="&#xef;" k="-86" />
-<hkern u1="&#x27;" u2="&#xee;" k="-23" />
-<hkern u1="&#x27;" u2="&#xdf;" k="16" />
-<hkern u1="&#x27;" u2="&#xde;" k="16" />
-<hkern u1="&#x27;" u2="x" k="74" />
-<hkern u1="&#x27;" u2="v" k="61" />
-<hkern u1="&#x27;" u2="q" k="106" />
-<hkern u1="&#x27;" u2="m" k="86" />
-<hkern u1="&#x27;" u2="V" k="-37" />
-<hkern u1="&#x27;" u2="Q" k="31" />
-<hkern u1="&#x27;" u2="P" k="16" />
-<hkern u1="&#x27;" u2="M" k="39" />
-<hkern u1="&#x27;" u2="F" k="16" />
-<hkern u1="&#x27;" u2="B" k="16" />
-<hkern u1="&#x27;" u2="&#x40;" k="51" />
-<hkern u1="&#x27;" u2="&#x39;" k="10" />
-<hkern u1="&#x27;" u2="&#x38;" k="18" />
-<hkern u1="&#x27;" u2="&#x36;" k="45" />
-<hkern u1="&#x27;" u2="&#x34;" k="72" />
-<hkern u1="&#x27;" u2="&#x30;" k="33" />
-<hkern u1="&#x27;" u2="&#x2f;" k="61" />
-<hkern u1="&#x27;" u2="&#x2e;" k="170" />
-<hkern u1="&#x28;" g2="uniFB02" k="16" />
-<hkern u1="&#x28;" g2="uniFB01" k="16" />
-<hkern u1="&#x28;" u2="&#x178;" k="-18" />
-<hkern u1="&#x28;" u2="&#x153;" k="27" />
-<hkern u1="&#x28;" u2="&#x152;" k="20" />
-<hkern u1="&#x28;" u2="&#xff;" k="25" />
-<hkern u1="&#x28;" u2="&#xfe;" k="12" />
-<hkern u1="&#x28;" u2="&#xfd;" k="25" />
-<hkern u1="&#x28;" u2="&#xfc;" k="27" />
-<hkern u1="&#x28;" u2="&#xfb;" k="27" />
-<hkern u1="&#x28;" u2="&#xfa;" k="27" />
-<hkern u1="&#x28;" u2="&#xf9;" k="27" />
-<hkern u1="&#x28;" u2="&#xf8;" k="27" />
-<hkern u1="&#x28;" u2="&#xf6;" k="27" />
-<hkern u1="&#x28;" u2="&#xf5;" k="27" />
-<hkern u1="&#x28;" u2="&#xf4;" k="27" />
-<hkern u1="&#x28;" u2="&#xf3;" k="27" />
-<hkern u1="&#x28;" u2="&#xf2;" k="27" />
-<hkern u1="&#x28;" u2="&#xf1;" k="12" />
-<hkern u1="&#x28;" u2="&#xeb;" k="27" />
-<hkern u1="&#x28;" u2="&#xea;" k="27" />
-<hkern u1="&#x28;" u2="&#xe9;" k="27" />
-<hkern u1="&#x28;" u2="&#xe8;" k="27" />
-<hkern u1="&#x28;" u2="&#xe7;" k="27" />
-<hkern u1="&#x28;" u2="&#xe6;" k="12" />
-<hkern u1="&#x28;" u2="&#xe5;" k="12" />
-<hkern u1="&#x28;" u2="&#xe4;" k="12" />
-<hkern u1="&#x28;" u2="&#xe3;" k="12" />
-<hkern u1="&#x28;" u2="&#xe2;" k="12" />
-<hkern u1="&#x28;" u2="&#xe1;" k="12" />
-<hkern u1="&#x28;" u2="&#xe0;" k="12" />
-<hkern u1="&#x28;" u2="&#xdd;" k="-18" />
-<hkern u1="&#x28;" u2="&#xd8;" k="20" />
-<hkern u1="&#x28;" u2="&#xd6;" k="20" />
-<hkern u1="&#x28;" u2="&#xd5;" k="20" />
-<hkern u1="&#x28;" u2="&#xd4;" k="20" />
-<hkern u1="&#x28;" u2="&#xd3;" k="20" />
-<hkern u1="&#x28;" u2="&#xd2;" k="20" />
-<hkern u1="&#x28;" u2="&#xc7;" k="20" />
-<hkern u1="&#x28;" u2="&#xc6;" k="-43" />
-<hkern u1="&#x28;" u2="&#xc5;" k="-18" />
-<hkern u1="&#x28;" u2="&#xc4;" k="-18" />
-<hkern u1="&#x28;" u2="&#xc3;" k="-18" />
-<hkern u1="&#x28;" u2="&#xc2;" k="-18" />
-<hkern u1="&#x28;" u2="&#xc1;" k="-18" />
-<hkern u1="&#x28;" u2="&#xc0;" k="-18" />
-<hkern u1="&#x28;" u2="y" k="25" />
-<hkern u1="&#x28;" u2="w" k="25" />
-<hkern u1="&#x28;" u2="u" k="27" />
-<hkern u1="&#x28;" u2="t" k="25" />
-<hkern u1="&#x28;" u2="r" k="12" />
-<hkern u1="&#x28;" u2="p" k="12" />
-<hkern u1="&#x28;" u2="o" k="27" />
-<hkern u1="&#x28;" u2="n" k="12" />
-<hkern u1="&#x28;" u2="f" k="16" />
-<hkern u1="&#x28;" u2="e" k="27" />
-<hkern u1="&#x28;" u2="d" k="20" />
-<hkern u1="&#x28;" u2="c" k="27" />
-<hkern u1="&#x28;" u2="a" k="12" />
-<hkern u1="&#x28;" u2="Y" k="-18" />
-<hkern u1="&#x28;" u2="O" k="20" />
-<hkern u1="&#x28;" u2="G" k="20" />
-<hkern u1="&#x28;" u2="C" k="20" />
-<hkern u1="&#x28;" u2="A" k="-18" />
-<hkern u1="&#x28;" u2="&#xf0;" k="25" />
-<hkern u1="&#x28;" u2="&#xef;" k="-90" />
-<hkern u1="&#x28;" u2="&#xee;" k="-39" />
-<hkern u1="&#x28;" u2="&#xdf;" k="10" />
-<hkern u1="&#x28;" u2="v" k="27" />
-<hkern u1="&#x28;" u2="q" k="23" />
-<hkern u1="&#x28;" u2="m" k="12" />
-<hkern u1="&#x28;" u2="V" k="-10" />
-<hkern u1="&#x28;" u2="Q" k="20" />
-<hkern u1="&#x28;" u2="&#x36;" k="18" />
-<hkern u1="&#x28;" u2="&#x34;" k="16" />
-<hkern u1="&#x28;" u2="&#x30;" k="20" />
-<hkern u1="&#x2a;" u2="&#x153;" k="53" />
-<hkern u1="&#x2a;" u2="&#xfe;" k="18" />
-<hkern u1="&#x2a;" u2="&#xfc;" k="14" />
-<hkern u1="&#x2a;" u2="&#xfb;" k="14" />
-<hkern u1="&#x2a;" u2="&#xfa;" k="14" />
-<hkern u1="&#x2a;" u2="&#xf9;" k="14" />
-<hkern u1="&#x2a;" u2="&#xf8;" k="53" />
-<hkern u1="&#x2a;" u2="&#xf6;" k="53" />
-<hkern u1="&#x2a;" u2="&#xf5;" k="53" />
-<hkern u1="&#x2a;" u2="&#xf4;" k="53" />
-<hkern u1="&#x2a;" u2="&#xf3;" k="53" />
-<hkern u1="&#x2a;" u2="&#xf2;" k="53" />
-<hkern u1="&#x2a;" u2="&#xf1;" k="18" />
-<hkern u1="&#x2a;" u2="&#xeb;" k="53" />
-<hkern u1="&#x2a;" u2="&#xea;" k="53" />
-<hkern u1="&#x2a;" u2="&#xe9;" k="53" />
-<hkern u1="&#x2a;" u2="&#xe8;" k="53" />
-<hkern u1="&#x2a;" u2="&#xe7;" k="55" />
-<hkern u1="&#x2a;" u2="&#xe6;" k="29" />
-<hkern u1="&#x2a;" u2="&#xe5;" k="29" />
-<hkern u1="&#x2a;" u2="&#xe4;" k="29" />
-<hkern u1="&#x2a;" u2="&#xe3;" k="29" />
-<hkern u1="&#x2a;" u2="&#xe2;" k="29" />
-<hkern u1="&#x2a;" u2="&#xe1;" k="29" />
-<hkern u1="&#x2a;" u2="&#xe0;" k="29" />
-<hkern u1="&#x2a;" u2="&#xd1;" k="10" />
-<hkern u1="&#x2a;" u2="&#xd0;" k="10" />
-<hkern u1="&#x2a;" u2="&#xcf;" k="10" />
-<hkern u1="&#x2a;" u2="&#xce;" k="10" />
-<hkern u1="&#x2a;" u2="&#xcd;" k="10" />
-<hkern u1="&#x2a;" u2="&#xcc;" k="10" />
-<hkern u1="&#x2a;" u2="&#xcb;" k="10" />
-<hkern u1="&#x2a;" u2="&#xca;" k="10" />
-<hkern u1="&#x2a;" u2="&#xc9;" k="10" />
-<hkern u1="&#x2a;" u2="&#xc8;" k="10" />
-<hkern u1="&#x2a;" u2="&#xc6;" k="80" />
-<hkern u1="&#x2a;" u2="&#xc5;" k="68" />
-<hkern u1="&#x2a;" u2="&#xc4;" k="68" />
-<hkern u1="&#x2a;" u2="&#xc3;" k="68" />
-<hkern u1="&#x2a;" u2="&#xc2;" k="68" />
-<hkern u1="&#x2a;" u2="&#xc1;" k="68" />
-<hkern u1="&#x2a;" u2="&#xc0;" k="68" />
-<hkern u1="&#x2a;" u2="z" k="10" />
-<hkern u1="&#x2a;" u2="u" k="14" />
-<hkern u1="&#x2a;" u2="s" k="29" />
-<hkern u1="&#x2a;" u2="r" k="18" />
-<hkern u1="&#x2a;" u2="p" k="18" />
-<hkern u1="&#x2a;" u2="o" k="53" />
-<hkern u1="&#x2a;" u2="n" k="18" />
-<hkern u1="&#x2a;" u2="g" k="63" />
-<hkern u1="&#x2a;" u2="e" k="53" />
-<hkern u1="&#x2a;" u2="d" k="47" />
-<hkern u1="&#x2a;" u2="c" k="55" />
-<hkern u1="&#x2a;" u2="a" k="29" />
-<hkern u1="&#x2a;" u2="R" k="10" />
-<hkern u1="&#x2a;" u2="N" k="10" />
-<hkern u1="&#x2a;" u2="L" k="10" />
-<hkern u1="&#x2a;" u2="K" k="10" />
-<hkern u1="&#x2a;" u2="J" k="57" />
-<hkern u1="&#x2a;" u2="I" k="10" />
-<hkern u1="&#x2a;" u2="H" k="10" />
-<hkern u1="&#x2a;" u2="E" k="10" />
-<hkern u1="&#x2a;" u2="D" k="10" />
-<hkern u1="&#x2a;" u2="A" k="68" />
-<hkern u1="&#x2a;" u2="&#xf0;" k="25" />
-<hkern u1="&#x2a;" u2="&#xef;" k="-100" />
-<hkern u1="&#x2a;" u2="&#xee;" k="-63" />
-<hkern u1="&#x2a;" u2="&#xde;" k="10" />
-<hkern u1="&#x2a;" u2="q" k="51" />
-<hkern u1="&#x2a;" u2="m" k="18" />
-<hkern u1="&#x2a;" u2="X" k="12" />
-<hkern u1="&#x2a;" u2="P" k="10" />
-<hkern u1="&#x2a;" u2="M" k="20" />
-<hkern u1="&#x2a;" u2="F" k="10" />
-<hkern u1="&#x2a;" u2="B" k="10" />
-<hkern u1="&#x2b;" u2="&#x38;" k="23" />
-<hkern u1="&#x2b;" u2="&#x37;" k="70" />
-<hkern u1="&#x2b;" u2="&#x35;" k="16" />
-<hkern u1="&#x2b;" u2="&#x33;" k="49" />
-<hkern u1="&#x2b;" u2="&#x32;" k="72" />
-<hkern u1="&#x2b;" u2="&#x31;" k="39" />
-<hkern u1="&#x2c;" u2="&#x201c;" k="150" />
-<hkern u1="&#x2c;" u2="&#x2018;" k="150" />
-<hkern u1="&#x2c;" u2="&#x27;" k="158" />
-<hkern u1="&#x2c;" u2="&#x22;" k="158" />
-<hkern u1="&#x2c;" u2="&#x39;" k="57" />
-<hkern u1="&#x2c;" u2="&#x38;" k="14" />
-<hkern u1="&#x2c;" u2="&#x36;" k="23" />
-<hkern u1="&#x2c;" u2="&#x31;" k="92" />
-<hkern u1="&#x2c;" u2="&#x30;" k="55" />
-<hkern u1="&#x2d;" u2="&#xde;" k="39" />
-<hkern u1="&#x2d;" u2="x" k="10" />
-<hkern u1="&#x2d;" u2="X" k="78" />
-<hkern u1="&#x2d;" u2="V" k="94" />
-<hkern u1="&#x2d;" u2="Q" k="12" />
-<hkern u1="&#x2d;" u2="P" k="39" />
-<hkern u1="&#x2d;" u2="M" k="25" />
-<hkern u1="&#x2d;" u2="F" k="39" />
-<hkern u1="&#x2d;" u2="B" k="39" />
-<hkern u1="&#x2d;" u2="&#x39;" k="59" />
-<hkern u1="&#x2d;" u2="&#x38;" k="14" />
-<hkern u1="&#x2d;" u2="&#x37;" k="70" />
-<hkern u1="&#x2d;" u2="&#x35;" k="53" />
-<hkern u1="&#x2d;" u2="&#x33;" k="63" />
-<hkern u1="&#x2d;" u2="&#x32;" k="82" />
-<hkern u1="&#x2d;" u2="&#x31;" k="78" />
-<hkern u1="&#x2d;" u2="&#x30;" k="25" />
-<hkern u1="&#x2e;" u2="&#x201c;" k="147" />
-<hkern u1="&#x2e;" u2="&#x2018;" k="147" />
-<hkern u1="&#x2e;" u2="&#x178;" k="143" />
-<hkern u1="&#x2e;" u2="&#x152;" k="51" />
-<hkern u1="&#x2e;" u2="&#xff;" k="31" />
-<hkern u1="&#x2e;" u2="&#xfd;" k="31" />
-<hkern u1="&#x2e;" u2="&#xdd;" k="143" />
-<hkern u1="&#x2e;" u2="&#xdc;" k="61" />
-<hkern u1="&#x2e;" u2="&#xdb;" k="61" />
-<hkern u1="&#x2e;" u2="&#xda;" k="61" />
-<hkern u1="&#x2e;" u2="&#xd9;" k="61" />
-<hkern u1="&#x2e;" u2="&#xd8;" k="51" />
-<hkern u1="&#x2e;" u2="&#xd6;" k="51" />
-<hkern u1="&#x2e;" u2="&#xd5;" k="51" />
-<hkern u1="&#x2e;" u2="&#xd4;" k="51" />
-<hkern u1="&#x2e;" u2="&#xd3;" k="51" />
-<hkern u1="&#x2e;" u2="&#xd2;" k="51" />
-<hkern u1="&#x2e;" u2="&#xd1;" k="29" />
-<hkern u1="&#x2e;" u2="&#xd0;" k="29" />
-<hkern u1="&#x2e;" u2="&#xcf;" k="29" />
-<hkern u1="&#x2e;" u2="&#xce;" k="29" />
-<hkern u1="&#x2e;" u2="&#xcd;" k="29" />
-<hkern u1="&#x2e;" u2="&#xcc;" k="29" />
-<hkern u1="&#x2e;" u2="&#xcb;" k="29" />
-<hkern u1="&#x2e;" u2="&#xca;" k="29" />
-<hkern u1="&#x2e;" u2="&#xc9;" k="29" />
-<hkern u1="&#x2e;" u2="&#xc8;" k="29" />
-<hkern u1="&#x2e;" u2="&#xc7;" k="51" />
-<hkern u1="&#x2e;" u2="y" k="31" />
-<hkern u1="&#x2e;" u2="w" k="20" />
-<hkern u1="&#x2e;" u2="Y" k="143" />
-<hkern u1="&#x2e;" u2="W" k="139" />
-<hkern u1="&#x2e;" u2="U" k="61" />
-<hkern u1="&#x2e;" u2="T" k="125" />
-<hkern u1="&#x2e;" u2="R" k="29" />
-<hkern u1="&#x2e;" u2="O" k="51" />
-<hkern u1="&#x2e;" u2="N" k="29" />
-<hkern u1="&#x2e;" u2="L" k="29" />
-<hkern u1="&#x2e;" u2="K" k="29" />
-<hkern u1="&#x2e;" u2="J" k="-29" />
-<hkern u1="&#x2e;" u2="I" k="29" />
-<hkern u1="&#x2e;" u2="H" k="29" />
-<hkern u1="&#x2e;" u2="G" k="51" />
-<hkern u1="&#x2e;" u2="E" k="29" />
-<hkern u1="&#x2e;" u2="D" k="29" />
-<hkern u1="&#x2e;" u2="C" k="51" />
-<hkern u1="&#x2e;" u2="&#x27;" k="154" />
-<hkern u1="&#x2e;" u2="&#x22;" k="154" />
-<hkern u1="&#x2e;" u2="&#xde;" k="29" />
-<hkern u1="&#x2e;" u2="v" k="41" />
-<hkern u1="&#x2e;" u2="V" k="162" />
-<hkern u1="&#x2e;" u2="Q" k="51" />
-<hkern u1="&#x2e;" u2="P" k="29" />
-<hkern u1="&#x2e;" u2="F" k="29" />
-<hkern u1="&#x2e;" u2="B" k="29" />
-<hkern u1="&#x2e;" u2="&#x39;" k="53" />
-<hkern u1="&#x2e;" u2="&#x38;" k="10" />
-<hkern u1="&#x2e;" u2="&#x36;" k="16" />
-<hkern u1="&#x2e;" u2="&#x31;" k="90" />
-<hkern u1="&#x2e;" u2="&#x30;" k="45" />
-<hkern u1="&#x2f;" g2="uniFB02" k="27" />
-<hkern u1="&#x2f;" g2="uniFB01" k="27" />
-<hkern u1="&#x2f;" u2="&#x178;" k="-49" />
-<hkern u1="&#x2f;" u2="&#x153;" k="53" />
-<hkern u1="&#x2f;" u2="&#x152;" k="14" />
-<hkern u1="&#x2f;" u2="&#xff;" k="16" />
-<hkern u1="&#x2f;" u2="&#xfe;" k="41" />
-<hkern u1="&#x2f;" u2="&#xfd;" k="16" />
-<hkern u1="&#x2f;" u2="&#xfc;" k="33" />
-<hkern u1="&#x2f;" u2="&#xfb;" k="33" />
-<hkern u1="&#x2f;" u2="&#xfa;" k="33" />
-<hkern u1="&#x2f;" u2="&#xf9;" k="33" />
-<hkern u1="&#x2f;" u2="&#xf8;" k="53" />
-<hkern u1="&#x2f;" u2="&#xf6;" k="53" />
-<hkern u1="&#x2f;" u2="&#xf5;" k="53" />
-<hkern u1="&#x2f;" u2="&#xf4;" k="53" />
-<hkern u1="&#x2f;" u2="&#xf3;" k="53" />
-<hkern u1="&#x2f;" u2="&#xf2;" k="53" />
-<hkern u1="&#x2f;" u2="&#xf1;" k="41" />
-<hkern u1="&#x2f;" u2="&#xed;" k="12" />
-<hkern u1="&#x2f;" u2="&#xec;" k="12" />
-<hkern u1="&#x2f;" u2="&#xeb;" k="53" />
-<hkern u1="&#x2f;" u2="&#xea;" k="53" />
-<hkern u1="&#x2f;" u2="&#xe9;" k="53" />
-<hkern u1="&#x2f;" u2="&#xe8;" k="53" />
-<hkern u1="&#x2f;" u2="&#xe7;" k="53" />
-<hkern u1="&#x2f;" u2="&#xe6;" k="53" />
-<hkern u1="&#x2f;" u2="&#xe5;" k="53" />
-<hkern u1="&#x2f;" u2="&#xe4;" k="53" />
-<hkern u1="&#x2f;" u2="&#xe3;" k="53" />
-<hkern u1="&#x2f;" u2="&#xe2;" k="53" />
-<hkern u1="&#x2f;" u2="&#xe1;" k="53" />
-<hkern u1="&#x2f;" u2="&#xe0;" k="53" />
-<hkern u1="&#x2f;" u2="&#xdd;" k="-49" />
-<hkern u1="&#x2f;" u2="&#xd8;" k="14" />
-<hkern u1="&#x2f;" u2="&#xd6;" k="14" />
-<hkern u1="&#x2f;" u2="&#xd5;" k="14" />
-<hkern u1="&#x2f;" u2="&#xd4;" k="14" />
-<hkern u1="&#x2f;" u2="&#xd3;" k="14" />
-<hkern u1="&#x2f;" u2="&#xd2;" k="14" />
-<hkern u1="&#x2f;" u2="&#xd1;" k="10" />
-<hkern u1="&#x2f;" u2="&#xd0;" k="10" />
-<hkern u1="&#x2f;" u2="&#xcf;" k="10" />
-<hkern u1="&#x2f;" u2="&#xce;" k="10" />
-<hkern u1="&#x2f;" u2="&#xcd;" k="10" />
-<hkern u1="&#x2f;" u2="&#xcc;" k="10" />
-<hkern u1="&#x2f;" u2="&#xcb;" k="10" />
-<hkern u1="&#x2f;" u2="&#xca;" k="10" />
-<hkern u1="&#x2f;" u2="&#xc9;" k="10" />
-<hkern u1="&#x2f;" u2="&#xc8;" k="10" />
-<hkern u1="&#x2f;" u2="&#xc7;" k="14" />
-<hkern u1="&#x2f;" u2="&#xc6;" k="68" />
-<hkern u1="&#x2f;" u2="&#xc5;" k="61" />
-<hkern u1="&#x2f;" u2="&#xc4;" k="61" />
-<hkern u1="&#x2f;" u2="&#xc3;" k="61" />
-<hkern u1="&#x2f;" u2="&#xc2;" k="61" />
-<hkern u1="&#x2f;" u2="&#xc1;" k="61" />
-<hkern u1="&#x2f;" u2="&#xc0;" k="61" />
-<hkern u1="&#x2f;" u2="z" k="33" />
-<hkern u1="&#x2f;" u2="y" k="16" />
-<hkern u1="&#x2f;" u2="w" k="14" />
-<hkern u1="&#x2f;" u2="u" k="33" />
-<hkern u1="&#x2f;" u2="t" k="29" />
-<hkern u1="&#x2f;" u2="s" k="47" />
-<hkern u1="&#x2f;" u2="r" k="41" />
-<hkern u1="&#x2f;" u2="p" k="41" />
-<hkern u1="&#x2f;" u2="o" k="53" />
-<hkern u1="&#x2f;" u2="n" k="41" />
-<hkern u1="&#x2f;" u2="j" k="12" />
-<hkern u1="&#x2f;" u2="i" k="12" />
-<hkern u1="&#x2f;" u2="g" k="63" />
-<hkern u1="&#x2f;" u2="f" k="27" />
-<hkern u1="&#x2f;" u2="e" k="53" />
-<hkern u1="&#x2f;" u2="d" k="47" />
-<hkern u1="&#x2f;" u2="c" k="53" />
-<hkern u1="&#x2f;" u2="a" k="53" />
-<hkern u1="&#x2f;" u2="Y" k="-49" />
-<hkern u1="&#x2f;" u2="R" k="10" />
-<hkern u1="&#x2f;" u2="O" k="14" />
-<hkern u1="&#x2f;" u2="N" k="10" />
-<hkern u1="&#x2f;" u2="L" k="10" />
-<hkern u1="&#x2f;" u2="K" k="10" />
-<hkern u1="&#x2f;" u2="J" k="37" />
-<hkern u1="&#x2f;" u2="I" k="10" />
-<hkern u1="&#x2f;" u2="H" k="10" />
-<hkern u1="&#x2f;" u2="G" k="14" />
-<hkern u1="&#x2f;" u2="E" k="10" />
-<hkern u1="&#x2f;" u2="D" k="10" />
-<hkern u1="&#x2f;" u2="C" k="14" />
-<hkern u1="&#x2f;" u2="A" k="61" />
-<hkern u1="&#x2f;" u2="&#xf0;" k="31" />
-<hkern u1="&#x2f;" u2="&#xef;" k="-90" />
-<hkern u1="&#x2f;" u2="&#xee;" k="-27" />
-<hkern u1="&#x2f;" u2="&#xdf;" k="25" />
-<hkern u1="&#x2f;" u2="&#xde;" k="10" />
-<hkern u1="&#x2f;" u2="x" k="27" />
-<hkern u1="&#x2f;" u2="v" k="14" />
-<hkern u1="&#x2f;" u2="q" k="53" />
-<hkern u1="&#x2f;" u2="m" k="41" />
-<hkern u1="&#x2f;" u2="V" k="-43" />
-<hkern u1="&#x2f;" u2="Q" k="14" />
-<hkern u1="&#x2f;" u2="P" k="10" />
-<hkern u1="&#x2f;" u2="M" k="25" />
-<hkern u1="&#x2f;" u2="F" k="10" />
-<hkern u1="&#x2f;" u2="B" k="10" />
-<hkern u1="&#x2f;" u2="&#x38;" k="10" />
-<hkern u1="&#x2f;" u2="&#x36;" k="23" />
-<hkern u1="&#x2f;" u2="&#x34;" k="33" />
-<hkern u1="&#x2f;" u2="&#x30;" k="18" />
-<hkern u1="&#x30;" u2="&#x7d;" k="25" />
-<hkern u1="&#x30;" u2="]" k="27" />
-<hkern u1="&#x30;" u2="&#x37;" k="10" />
-<hkern u1="&#x30;" u2="&#x33;" k="6" />
-<hkern u1="&#x30;" u2="&#x32;" k="10" />
-<hkern u1="&#x30;" u2="&#x29;" k="20" />
-<hkern u1="&#x31;" u2="&#x7d;" k="10" />
-<hkern u1="&#x31;" u2="]" k="10" />
-<hkern u1="&#x31;" u2="&#x30;" k="6" />
-<hkern u1="&#x33;" u2="&#x7d;" k="10" />
-<hkern u1="&#x33;" u2="]" k="10" />
-<hkern u1="&#x34;" u2="&#x7d;" k="23" />
-<hkern u1="&#x34;" u2="]" k="23" />
-<hkern u1="&#x34;" u2="&#x39;" k="10" />
-<hkern u1="&#x34;" u2="&#x32;" k="6" />
-<hkern u1="&#x34;" u2="&#x31;" k="14" />
-<hkern u1="&#x34;" u2="&#x29;" k="16" />
-<hkern u1="&#x35;" u2="&#x7d;" k="14" />
-<hkern u1="&#x35;" u2="]" k="16" />
-<hkern u1="&#x35;" u2="&#x31;" k="10" />
-<hkern u1="&#x35;" u2="&#x29;" k="10" />
-<hkern u1="&#x36;" u2="&#x7d;" k="18" />
-<hkern u1="&#x36;" u2="]" k="18" />
-<hkern u1="&#x36;" u2="&#x31;" k="12" />
-<hkern u1="&#x36;" u2="&#x29;" k="10" />
-<hkern u1="&#x37;" u2="&#xa2;" k="66" />
-<hkern u1="&#x37;" u2="&#x7d;" k="-29" />
-<hkern u1="&#x37;" u2="]" k="-35" />
-<hkern u1="&#x37;" u2="&#x37;" k="-6" />
-<hkern u1="&#x37;" u2="&#x36;" k="31" />
-<hkern u1="&#x37;" u2="&#x34;" k="78" />
-<hkern u1="&#x37;" u2="&#x30;" k="12" />
-<hkern u1="&#x38;" u2="&#x7d;" k="10" />
-<hkern u1="&#x38;" u2="]" k="10" />
-<hkern u1="&#x39;" u2="&#x7d;" k="10" />
-<hkern u1="&#x39;" u2="]" k="10" />
-<hkern u1="&#x39;" u2="&#x29;" k="12" />
-<hkern u1="&#x3d;" u2="&#x39;" k="16" />
-<hkern u1="&#x3d;" u2="&#x38;" k="12" />
-<hkern u1="&#x3d;" u2="&#x37;" k="55" />
-<hkern u1="&#x3d;" u2="&#x35;" k="20" />
-<hkern u1="&#x3d;" u2="&#x33;" k="23" />
-<hkern u1="&#x3d;" u2="&#x32;" k="53" />
-<hkern u1="&#x3d;" u2="&#x31;" k="47" />
-<hkern u1="&#x3d;" u2="&#x30;" k="18" />
-<hkern u1="&#x40;" u2="&#x178;" k="39" />
-<hkern u1="&#x40;" u2="&#xdd;" k="39" />
-<hkern u1="&#x40;" u2="g" k="10" />
-<hkern u1="&#x40;" u2="Z" k="10" />
-<hkern u1="&#x40;" u2="Y" k="39" />
-<hkern u1="&#x40;" u2="W" k="18" />
-<hkern u1="&#x40;" u2="T" k="18" />
-<hkern u1="&#x40;" u2="&#x27;" k="27" />
-<hkern u1="&#x40;" u2="&#x22;" k="27" />
-<hkern u1="&#x40;" u2="X" k="18" />
-<hkern u1="&#x40;" u2="V" k="25" />
-<hkern u1="A" u2="&#xfe;" k="12" />
-<hkern u1="A" u2="&#xf0;" k="27" />
-<hkern u1="A" u2="&#xdf;" k="12" />
-<hkern u1="A" u2="v" k="66" />
-<hkern u1="A" u2="q" k="18" />
-<hkern u1="A" u2="m" k="12" />
-<hkern u1="A" u2="b" k="12" />
-<hkern u1="A" u2="]" k="12" />
-<hkern u1="A" u2="\" k="61" />
-<hkern u1="A" u2="V" k="115" />
-<hkern u1="A" u2="Q" k="12" />
-<hkern u1="A" u2="&#x3f;" k="18" />
-<hkern u1="A" u2="&#x2f;" k="-31" />
-<hkern u1="A" u2="&#x2a;" k="68" />
-<hkern u1="A" u2="&#x29;" k="-18" />
-<hkern u1="B" g2="uniFB02" k="51" />
-<hkern u1="B" g2="uniFB01" k="51" />
-<hkern u1="B" u2="&#x201e;" k="25" />
-<hkern u1="B" u2="&#x201d;" k="12" />
-<hkern u1="B" u2="&#x201a;" k="25" />
-<hkern u1="B" u2="&#x2019;" k="12" />
-<hkern u1="B" u2="&#x2014;" k="14" />
-<hkern u1="B" u2="&#x2013;" k="14" />
-<hkern u1="B" u2="&#x178;" k="6" />
-<hkern u1="B" u2="&#x153;" k="25" />
-<hkern u1="B" u2="&#xff;" k="51" />
-<hkern u1="B" u2="&#xfd;" k="51" />
-<hkern u1="B" u2="&#xfc;" k="37" />
-<hkern u1="B" u2="&#xfb;" k="37" />
-<hkern u1="B" u2="&#xfa;" k="37" />
-<hkern u1="B" u2="&#xf9;" k="37" />
-<hkern u1="B" u2="&#xf8;" k="25" />
-<hkern u1="B" u2="&#xf6;" k="25" />
-<hkern u1="B" u2="&#xf5;" k="25" />
-<hkern u1="B" u2="&#xf4;" k="25" />
-<hkern u1="B" u2="&#xf3;" k="25" />
-<hkern u1="B" u2="&#xf2;" k="25" />
-<hkern u1="B" u2="&#xf1;" k="41" />
-<hkern u1="B" u2="&#xed;" k="39" />
-<hkern u1="B" u2="&#xec;" k="39" />
-<hkern u1="B" u2="&#xeb;" k="25" />
-<hkern u1="B" u2="&#xea;" k="25" />
-<hkern u1="B" u2="&#xe9;" k="25" />
-<hkern u1="B" u2="&#xe8;" k="25" />
-<hkern u1="B" u2="&#xe7;" k="25" />
-<hkern u1="B" u2="&#xe6;" k="31" />
-<hkern u1="B" u2="&#xe5;" k="31" />
-<hkern u1="B" u2="&#xe4;" k="31" />
-<hkern u1="B" u2="&#xe3;" k="31" />
-<hkern u1="B" u2="&#xe2;" k="31" />
-<hkern u1="B" u2="&#xe1;" k="31" />
-<hkern u1="B" u2="&#xe0;" k="31" />
-<hkern u1="B" u2="&#xdd;" k="6" />
-<hkern u1="B" u2="z" k="51" />
-<hkern u1="B" u2="y" k="51" />
-<hkern u1="B" u2="w" k="47" />
-<hkern u1="B" u2="u" k="37" />
-<hkern u1="B" u2="t" k="43" />
-<hkern u1="B" u2="s" k="35" />
-<hkern u1="B" u2="r" k="41" />
-<hkern u1="B" u2="p" k="41" />
-<hkern u1="B" u2="o" k="25" />
-<hkern u1="B" u2="n" k="41" />
-<hkern u1="B" u2="l" k="39" />
-<hkern u1="B" u2="k" k="39" />
-<hkern u1="B" u2="j" k="41" />
-<hkern u1="B" u2="i" k="39" />
-<hkern u1="B" u2="h" k="39" />
-<hkern u1="B" u2="g" k="43" />
-<hkern u1="B" u2="f" k="51" />
-<hkern u1="B" u2="e" k="25" />
-<hkern u1="B" u2="d" k="25" />
-<hkern u1="B" u2="c" k="25" />
-<hkern u1="B" u2="a" k="31" />
-<hkern u1="B" u2="Y" k="6" />
-<hkern u1="B" u2="W" k="6" />
-<hkern u1="B" u2="&#x2d;" k="14" />
-<hkern u1="B" u2="&#x27;" k="12" />
-<hkern u1="B" u2="&#x22;" k="12" />
-<hkern u1="B" u2="&#xfe;" k="39" />
-<hkern u1="B" u2="&#xf0;" k="25" />
-<hkern u1="B" u2="&#xef;" k="-2" />
-<hkern u1="B" u2="&#xee;" k="8" />
-<hkern u1="B" u2="&#xdf;" k="41" />
-<hkern u1="B" u2="&#x7d;" k="10" />
-<hkern u1="B" u2="x" k="57" />
-<hkern u1="B" u2="v" k="53" />
-<hkern u1="B" u2="q" k="25" />
-<hkern u1="B" u2="m" k="41" />
-<hkern u1="B" u2="b" k="39" />
-<hkern u1="B" u2="]" k="10" />
-<hkern u1="B" u2="\" k="10" />
-<hkern u1="B" u2="&#x3a;" k="10" />
-<hkern u1="B" u2="&#x2e;" k="12" />
-<hkern u1="B" u2="&#x2c;" k="14" />
-<hkern u1="C" u2="&#xfe;" k="27" />
-<hkern u1="C" u2="&#xf0;" k="41" />
-<hkern u1="C" u2="&#xef;" k="-80" />
-<hkern u1="C" u2="&#xee;" k="-27" />
-<hkern u1="C" u2="&#xec;" k="14" />
-<hkern u1="C" u2="&#xdf;" k="39" />
-<hkern u1="C" u2="x" k="49" />
-<hkern u1="C" u2="v" k="68" />
-<hkern u1="C" u2="q" k="33" />
-<hkern u1="C" u2="m" k="41" />
-<hkern u1="C" u2="b" k="27" />
-<hkern u1="C" u2="Q" k="6" />
-<hkern u1="D" u2="&#xfe;" k="35" />
-<hkern u1="D" u2="&#xf0;" k="27" />
-<hkern u1="D" u2="&#xdf;" k="35" />
-<hkern u1="D" u2="&#x7d;" k="27" />
-<hkern u1="D" u2="x" k="27" />
-<hkern u1="D" u2="v" k="6" />
-<hkern u1="D" u2="q" k="33" />
-<hkern u1="D" u2="m" k="37" />
-<hkern u1="D" u2="b" k="35" />
-<hkern u1="D" u2="]" k="25" />
-<hkern u1="D" u2="\" k="14" />
-<hkern u1="D" u2="X" k="23" />
-<hkern u1="D" u2="V" k="14" />
-<hkern u1="D" u2="&#x3f;" k="20" />
-<hkern u1="D" u2="&#x2f;" k="16" />
-<hkern u1="D" u2="&#x2e;" k="53" />
-<hkern u1="D" u2="&#x2c;" k="57" />
-<hkern u1="D" u2="&#x29;" k="23" />
-<hkern u1="D" u2="&#x21;" k="12" />
-<hkern u1="E" u2="&#xfe;" k="33" />
-<hkern u1="E" u2="&#xf0;" k="43" />
-<hkern u1="E" u2="&#xef;" k="-41" />
-<hkern u1="E" u2="&#xee;" k="-4" />
-<hkern u1="E" u2="&#xdf;" k="41" />
-<hkern u1="E" u2="x" k="31" />
-<hkern u1="E" u2="v" k="59" />
-<hkern u1="E" u2="q" k="39" />
-<hkern u1="E" u2="m" k="43" />
-<hkern u1="E" u2="b" k="31" />
-<hkern u1="F" g2="uniFB02" k="55" />
-<hkern u1="F" g2="uniFB01" k="55" />
-<hkern u1="F" u2="&#x203a;" k="16" />
-<hkern u1="F" u2="&#x2039;" k="20" />
-<hkern u1="F" u2="&#x201e;" k="195" />
-<hkern u1="F" u2="&#x201a;" k="195" />
-<hkern u1="F" u2="&#x2014;" k="39" />
-<hkern u1="F" u2="&#x2013;" k="39" />
-<hkern u1="F" u2="&#x178;" k="-45" />
-<hkern u1="F" u2="&#x153;" k="61" />
-<hkern u1="F" u2="&#xff;" k="39" />
-<hkern u1="F" u2="&#xfd;" k="39" />
-<hkern u1="F" u2="&#xfc;" k="53" />
-<hkern u1="F" u2="&#xfb;" k="53" />
-<hkern u1="F" u2="&#xfa;" k="53" />
-<hkern u1="F" u2="&#xf9;" k="53" />
-<hkern u1="F" u2="&#xf8;" k="61" />
-<hkern u1="F" u2="&#xf6;" k="61" />
-<hkern u1="F" u2="&#xf5;" k="61" />
-<hkern u1="F" u2="&#xf4;" k="61" />
-<hkern u1="F" u2="&#xf3;" k="61" />
-<hkern u1="F" u2="&#xf2;" k="61" />
-<hkern u1="F" u2="&#xf1;" k="53" />
-<hkern u1="F" u2="&#xed;" k="31" />
-<hkern u1="F" u2="&#xec;" k="31" />
-<hkern u1="F" u2="&#xeb;" k="61" />
-<hkern u1="F" u2="&#xea;" k="61" />
-<hkern u1="F" u2="&#xe9;" k="61" />
-<hkern u1="F" u2="&#xe8;" k="61" />
-<hkern u1="F" u2="&#xe7;" k="61" />
-<hkern u1="F" u2="&#xe6;" k="74" />
-<hkern u1="F" u2="&#xe5;" k="74" />
-<hkern u1="F" u2="&#xe4;" k="74" />
-<hkern u1="F" u2="&#xe3;" k="74" />
-<hkern u1="F" u2="&#xe2;" k="74" />
-<hkern u1="F" u2="&#xe1;" k="74" />
-<hkern u1="F" u2="&#xe0;" k="74" />
-<hkern u1="F" u2="&#xdd;" k="-45" />
-<hkern u1="F" u2="&#xc6;" k="80" />
-<hkern u1="F" u2="&#xc5;" k="53" />
-<hkern u1="F" u2="&#xc4;" k="53" />
-<hkern u1="F" u2="&#xc3;" k="53" />
-<hkern u1="F" u2="&#xc2;" k="53" />
-<hkern u1="F" u2="&#xc1;" k="53" />
-<hkern u1="F" u2="&#xc0;" k="53" />
-<hkern u1="F" u2="&#xbb;" k="16" />
-<hkern u1="F" u2="&#xab;" k="20" />
-<hkern u1="F" u2="z" k="61" />
-<hkern u1="F" u2="y" k="39" />
-<hkern u1="F" u2="w" k="43" />
-<hkern u1="F" u2="u" k="53" />
-<hkern u1="F" u2="t" k="53" />
-<hkern u1="F" u2="s" k="61" />
-<hkern u1="F" u2="r" k="53" />
-<hkern u1="F" u2="p" k="53" />
-<hkern u1="F" u2="o" k="61" />
-<hkern u1="F" u2="n" k="53" />
-<hkern u1="F" u2="l" k="29" />
-<hkern u1="F" u2="k" k="29" />
-<hkern u1="F" u2="j" k="31" />
-<hkern u1="F" u2="i" k="31" />
-<hkern u1="F" u2="h" k="29" />
-<hkern u1="F" u2="g" k="96" />
-<hkern u1="F" u2="f" k="55" />
-<hkern u1="F" u2="e" k="61" />
-<hkern u1="F" u2="d" k="61" />
-<hkern u1="F" u2="c" k="61" />
-<hkern u1="F" u2="a" k="74" />
-<hkern u1="F" u2="Y" k="-45" />
-<hkern u1="F" u2="J" k="102" />
-<hkern u1="F" u2="A" k="53" />
-<hkern u1="F" u2="&#x2d;" k="39" />
-<hkern u1="F" u2="&#xfe;" k="29" />
-<hkern u1="F" u2="&#xf0;" k="61" />
-<hkern u1="F" u2="&#xef;" k="-86" />
-<hkern u1="F" u2="&#xee;" k="-53" />
-<hkern u1="F" u2="&#xdf;" k="53" />
-<hkern u1="F" u2="x" k="61" />
-<hkern u1="F" u2="v" k="37" />
-<hkern u1="F" u2="q" k="61" />
-<hkern u1="F" u2="m" k="53" />
-<hkern u1="F" u2="b" k="29" />
-<hkern u1="F" u2="V" k="-41" />
-<hkern u1="F" u2="M" k="10" />
-<hkern u1="F" u2="&#x3b;" k="14" />
-<hkern u1="F" u2="&#x3a;" k="23" />
-<hkern u1="F" u2="&#x2f;" k="37" />
-<hkern u1="F" u2="&#x2e;" k="182" />
-<hkern u1="F" u2="&#x2c;" k="184" />
-<hkern u1="G" u2="&#xfe;" k="27" />
-<hkern u1="G" u2="&#xf0;" k="20" />
-<hkern u1="G" u2="&#xef;" k="-20" />
-<hkern u1="G" u2="&#xee;" k="12" />
-<hkern u1="G" u2="&#xdf;" k="29" />
-<hkern u1="G" u2="x" k="29" />
-<hkern u1="G" u2="v" k="27" />
-<hkern u1="G" u2="q" k="20" />
-<hkern u1="G" u2="m" k="29" />
-<hkern u1="G" u2="b" k="27" />
-<hkern u1="H" u2="&#xfe;" k="27" />
-<hkern u1="H" u2="&#xf0;" k="41" />
-<hkern u1="H" u2="&#xdf;" k="27" />
-<hkern u1="H" u2="x" k="49" />
-<hkern u1="H" u2="v" k="49" />
-<hkern u1="H" u2="q" k="41" />
-<hkern u1="H" u2="m" k="27" />
-<hkern u1="H" u2="b" k="27" />
-<hkern u1="H" u2="\" k="10" />
-<hkern u1="H" u2="&#x3f;" k="10" />
-<hkern u1="H" u2="&#x3a;" k="14" />
-<hkern u1="H" u2="&#x2f;" k="12" />
-<hkern u1="H" u2="&#x2e;" k="29" />
-<hkern u1="H" u2="&#x2c;" k="29" />
-<hkern u1="H" u2="&#x2a;" k="10" />
-<hkern u1="H" u2="&#x21;" k="12" />
-<hkern u1="I" u2="&#xfe;" k="27" />
-<hkern u1="I" u2="&#xf0;" k="41" />
-<hkern u1="I" u2="&#xef;" k="14" />
-<hkern u1="I" u2="&#xdf;" k="27" />
-<hkern u1="I" u2="x" k="49" />
-<hkern u1="I" u2="v" k="49" />
-<hkern u1="I" u2="q" k="41" />
-<hkern u1="I" u2="m" k="27" />
-<hkern u1="I" u2="b" k="27" />
-<hkern u1="I" u2="\" k="10" />
-<hkern u1="I" u2="&#x3f;" k="10" />
-<hkern u1="I" u2="&#x3a;" k="14" />
-<hkern u1="I" u2="&#x2f;" k="12" />
-<hkern u1="I" u2="&#x2e;" k="29" />
-<hkern u1="I" u2="&#x2c;" k="29" />
-<hkern u1="I" u2="&#x2a;" k="10" />
-<hkern u1="I" u2="&#x21;" k="12" />
-<hkern u1="J" u2="&#xfe;" k="20" />
-<hkern u1="J" u2="&#xf0;" k="33" />
-<hkern u1="J" u2="&#xef;" k="-2" />
-<hkern u1="J" u2="&#xdf;" k="23" />
-<hkern u1="J" u2="x" k="37" />
-<hkern u1="J" u2="v" k="27" />
-<hkern u1="J" u2="q" k="33" />
-<hkern u1="J" u2="m" k="20" />
-<hkern u1="J" u2="b" k="20" />
-<hkern u1="J" u2="&#x2e;" k="27" />
-<hkern u1="J" u2="&#x2c;" k="29" />
-<hkern u1="K" u2="&#xfe;" k="33" />
-<hkern u1="K" u2="&#xf0;" k="63" />
-<hkern u1="K" u2="&#xef;" k="-27" />
-<hkern u1="K" u2="&#xdf;" k="35" />
-<hkern u1="K" u2="v" k="88" />
-<hkern u1="K" u2="q" k="49" />
-<hkern u1="K" u2="m" k="35" />
-<hkern u1="K" u2="b" k="33" />
-<hkern u1="K" u2="Q" k="29" />
-<hkern u1="K" u2="&#x2a;" k="14" />
-<hkern u1="L" u2="&#xfe;" k="12" />
-<hkern u1="L" u2="&#xf0;" k="10" />
-<hkern u1="L" u2="&#xdf;" k="14" />
-<hkern u1="L" u2="&#xb7;" k="49" />
-<hkern u1="L" u2="&#x7d;" k="31" />
-<hkern u1="L" u2="v" k="55" />
-<hkern u1="L" u2="m" k="14" />
-<hkern u1="L" u2="b" k="14" />
-<hkern u1="L" u2="]" k="43" />
-<hkern u1="L" u2="\" k="57" />
-<hkern u1="L" u2="X" k="-14" />
-<hkern u1="L" u2="V" k="180" />
-<hkern u1="L" u2="Q" k="8" />
-<hkern u1="L" u2="&#x3f;" k="20" />
-<hkern u1="L" u2="&#x2a;" k="92" />
-<hkern u1="M" g2="uniFB02" k="25" />
-<hkern u1="M" g2="uniFB01" k="25" />
-<hkern u1="M" u2="&#x201d;" k="31" />
-<hkern u1="M" u2="&#x2019;" k="31" />
-<hkern u1="M" u2="&#x2014;" k="25" />
-<hkern u1="M" u2="&#x2013;" k="25" />
-<hkern u1="M" u2="&#x178;" k="29" />
-<hkern u1="M" u2="&#x153;" k="31" />
-<hkern u1="M" u2="&#xff;" k="43" />
-<hkern u1="M" u2="&#xfd;" k="43" />
-<hkern u1="M" u2="&#xfc;" k="23" />
-<hkern u1="M" u2="&#xfb;" k="23" />
-<hkern u1="M" u2="&#xfa;" k="23" />
-<hkern u1="M" u2="&#xf9;" k="23" />
-<hkern u1="M" u2="&#xf8;" k="31" />
-<hkern u1="M" u2="&#xf6;" k="31" />
-<hkern u1="M" u2="&#xf5;" k="31" />
-<hkern u1="M" u2="&#xf4;" k="31" />
-<hkern u1="M" u2="&#xf3;" k="31" />
-<hkern u1="M" u2="&#xf2;" k="31" />
-<hkern u1="M" u2="&#xf1;" k="20" />
-<hkern u1="M" u2="&#xef;" k="20" />
-<hkern u1="M" u2="&#xee;" k="20" />
-<hkern u1="M" u2="&#xed;" k="20" />
-<hkern u1="M" u2="&#xec;" k="20" />
-<hkern u1="M" u2="&#xeb;" k="31" />
-<hkern u1="M" u2="&#xea;" k="31" />
-<hkern u1="M" u2="&#xe9;" k="31" />
-<hkern u1="M" u2="&#xe8;" k="31" />
-<hkern u1="M" u2="&#xe7;" k="31" />
-<hkern u1="M" u2="&#xe6;" k="25" />
-<hkern u1="M" u2="&#xe5;" k="25" />
-<hkern u1="M" u2="&#xe4;" k="25" />
-<hkern u1="M" u2="&#xe3;" k="25" />
-<hkern u1="M" u2="&#xe2;" k="25" />
-<hkern u1="M" u2="&#xe1;" k="25" />
-<hkern u1="M" u2="&#xe0;" k="25" />
-<hkern u1="M" u2="&#xdd;" k="29" />
-<hkern u1="M" u2="z" k="25" />
-<hkern u1="M" u2="y" k="43" />
-<hkern u1="M" u2="w" k="37" />
-<hkern u1="M" u2="u" k="23" />
-<hkern u1="M" u2="t" k="29" />
-<hkern u1="M" u2="s" k="25" />
-<hkern u1="M" u2="r" k="20" />
-<hkern u1="M" u2="p" k="20" />
-<hkern u1="M" u2="o" k="31" />
-<hkern u1="M" u2="n" k="20" />
-<hkern u1="M" u2="l" k="20" />
-<hkern u1="M" u2="k" k="20" />
-<hkern u1="M" u2="j" k="20" />
-<hkern u1="M" u2="i" k="20" />
-<hkern u1="M" u2="h" k="20" />
-<hkern u1="M" u2="g" k="14" />
-<hkern u1="M" u2="f" k="25" />
-<hkern u1="M" u2="e" k="31" />
-<hkern u1="M" u2="d" k="31" />
-<hkern u1="M" u2="c" k="31" />
-<hkern u1="M" u2="a" k="25" />
-<hkern u1="M" u2="Y" k="29" />
-<hkern u1="M" u2="W" k="18" />
-<hkern u1="M" u2="T" k="18" />
-<hkern u1="M" u2="&#x2d;" k="25" />
-<hkern u1="M" u2="&#x27;" k="27" />
-<hkern u1="M" u2="&#x22;" k="27" />
-<hkern u1="M" u2="&#xfe;" k="20" />
-<hkern u1="M" u2="&#xf0;" k="31" />
-<hkern u1="M" u2="&#xdf;" k="20" />
-<hkern u1="M" u2="&#x7d;" k="12" />
-<hkern u1="M" u2="x" k="20" />
-<hkern u1="M" u2="v" k="43" />
-<hkern u1="M" u2="q" k="29" />
-<hkern u1="M" u2="m" k="20" />
-<hkern u1="M" u2="b" k="20" />
-<hkern u1="M" u2="]" k="14" />
-<hkern u1="M" u2="\" k="25" />
-<hkern u1="M" u2="V" k="27" />
-<hkern u1="M" u2="&#x3f;" k="16" />
-<hkern u1="M" u2="&#x2a;" k="20" />
-<hkern u1="N" u2="&#xfe;" k="27" />
-<hkern u1="N" u2="&#xf0;" k="43" />
-<hkern u1="N" u2="&#xdf;" k="25" />
-<hkern u1="N" u2="x" k="49" />
-<hkern u1="N" u2="v" k="49" />
-<hkern u1="N" u2="q" k="43" />
-<hkern u1="N" u2="m" k="25" />
-<hkern u1="N" u2="b" k="27" />
-<hkern u1="N" u2="\" k="10" />
-<hkern u1="N" u2="&#x3f;" k="10" />
-<hkern u1="N" u2="&#x3a;" k="14" />
-<hkern u1="N" u2="&#x2f;" k="12" />
-<hkern u1="N" u2="&#x2e;" k="29" />
-<hkern u1="N" u2="&#x2c;" k="29" />
-<hkern u1="N" u2="&#x2a;" k="12" />
-<hkern u1="N" u2="&#x21;" k="10" />
-<hkern u1="O" u2="&#xfe;" k="33" />
-<hkern u1="O" u2="&#xf0;" k="27" />
-<hkern u1="O" u2="&#xdf;" k="33" />
-<hkern u1="O" u2="&#x7d;" k="25" />
-<hkern u1="O" u2="x" k="27" />
-<hkern u1="O" u2="q" k="31" />
-<hkern u1="O" u2="m" k="35" />
-<hkern u1="O" u2="b" k="33" />
-<hkern u1="O" u2="]" k="23" />
-<hkern u1="O" u2="\" k="14" />
-<hkern u1="O" u2="X" k="20" />
-<hkern u1="O" u2="V" k="12" />
-<hkern u1="O" u2="&#x3f;" k="20" />
-<hkern u1="O" u2="&#x2f;" k="16" />
-<hkern u1="O" u2="&#x2e;" k="51" />
-<hkern u1="O" u2="&#x2c;" k="53" />
-<hkern u1="O" u2="&#x29;" k="20" />
-<hkern u1="O" u2="&#x21;" k="10" />
-<hkern u1="P" g2="uniFB02" k="35" />
-<hkern u1="P" g2="uniFB01" k="35" />
-<hkern u1="P" u2="&#x2039;" k="41" />
-<hkern u1="P" u2="&#x201e;" k="215" />
-<hkern u1="P" u2="&#x201a;" k="215" />
-<hkern u1="P" u2="&#x2014;" k="61" />
-<hkern u1="P" u2="&#x2013;" k="61" />
-<hkern u1="P" u2="&#x153;" k="72" />
-<hkern u1="P" u2="&#xfc;" k="49" />
-<hkern u1="P" u2="&#xfb;" k="49" />
-<hkern u1="P" u2="&#xfa;" k="49" />
-<hkern u1="P" u2="&#xf9;" k="49" />
-<hkern u1="P" u2="&#xf8;" k="72" />
-<hkern u1="P" u2="&#xf6;" k="72" />
-<hkern u1="P" u2="&#xf5;" k="72" />
-<hkern u1="P" u2="&#xf4;" k="72" />
-<hkern u1="P" u2="&#xf3;" k="72" />
-<hkern u1="P" u2="&#xf2;" k="72" />
-<hkern u1="P" u2="&#xf1;" k="53" />
-<hkern u1="P" u2="&#xec;" k="35" />
-<hkern u1="P" u2="&#xeb;" k="72" />
-<hkern u1="P" u2="&#xea;" k="72" />
-<hkern u1="P" u2="&#xe9;" k="72" />
-<hkern u1="P" u2="&#xe8;" k="72" />
-<hkern u1="P" u2="&#xe7;" k="72" />
-<hkern u1="P" u2="&#xe6;" k="61" />
-<hkern u1="P" u2="&#xe5;" k="61" />
-<hkern u1="P" u2="&#xe4;" k="61" />
-<hkern u1="P" u2="&#xe3;" k="61" />
-<hkern u1="P" u2="&#xe2;" k="61" />
-<hkern u1="P" u2="&#xe1;" k="61" />
-<hkern u1="P" u2="&#xe0;" k="61" />
-<hkern u1="P" u2="&#xd1;" k="6" />
-<hkern u1="P" u2="&#xd0;" k="6" />
-<hkern u1="P" u2="&#xcf;" k="6" />
-<hkern u1="P" u2="&#xce;" k="6" />
-<hkern u1="P" u2="&#xcd;" k="6" />
-<hkern u1="P" u2="&#xcc;" k="6" />
-<hkern u1="P" u2="&#xcb;" k="6" />
-<hkern u1="P" u2="&#xca;" k="6" />
-<hkern u1="P" u2="&#xc9;" k="6" />
-<hkern u1="P" u2="&#xc8;" k="6" />
-<hkern u1="P" u2="&#xc6;" k="174" />
-<hkern u1="P" u2="&#xc5;" k="82" />
-<hkern u1="P" u2="&#xc4;" k="82" />
-<hkern u1="P" u2="&#xc3;" k="82" />
-<hkern u1="P" u2="&#xc2;" k="82" />
-<hkern u1="P" u2="&#xc1;" k="82" />
-<hkern u1="P" u2="&#xc0;" k="82" />
-<hkern u1="P" u2="&#xab;" k="41" />
-<hkern u1="P" u2="z" k="43" />
-<hkern u1="P" u2="w" k="12" />
-<hkern u1="P" u2="u" k="49" />
-<hkern u1="P" u2="t" k="29" />
-<hkern u1="P" u2="s" k="61" />
-<hkern u1="P" u2="r" k="53" />
-<hkern u1="P" u2="p" k="53" />
-<hkern u1="P" u2="o" k="72" />
-<hkern u1="P" u2="n" k="53" />
-<hkern u1="P" u2="l" k="29" />
-<hkern u1="P" u2="k" k="29" />
-<hkern u1="P" u2="j" k="37" />
-<hkern u1="P" u2="i" k="35" />
-<hkern u1="P" u2="h" k="29" />
-<hkern u1="P" u2="g" k="152" />
-<hkern u1="P" u2="f" k="35" />
-<hkern u1="P" u2="e" k="72" />
-<hkern u1="P" u2="d" k="66" />
-<hkern u1="P" u2="c" k="72" />
-<hkern u1="P" u2="a" k="61" />
-<hkern u1="P" u2="R" k="6" />
-<hkern u1="P" u2="N" k="6" />
-<hkern u1="P" u2="L" k="6" />
-<hkern u1="P" u2="K" k="6" />
-<hkern u1="P" u2="J" k="90" />
-<hkern u1="P" u2="I" k="6" />
-<hkern u1="P" u2="H" k="6" />
-<hkern u1="P" u2="E" k="6" />
-<hkern u1="P" u2="D" k="6" />
-<hkern u1="P" u2="A" k="82" />
-<hkern u1="P" u2="&#x2d;" k="61" />
-<hkern u1="P" u2="&#xfe;" k="29" />
-<hkern u1="P" u2="&#xf0;" k="61" />
-<hkern u1="P" u2="&#xef;" k="-49" />
-<hkern u1="P" u2="&#xee;" k="-35" />
-<hkern u1="P" u2="&#xed;" k="16" />
-<hkern u1="P" u2="&#xdf;" k="35" />
-<hkern u1="P" u2="&#xde;" k="6" />
-<hkern u1="P" u2="x" k="27" />
-<hkern u1="P" u2="q" k="70" />
-<hkern u1="P" u2="m" k="53" />
-<hkern u1="P" u2="b" k="29" />
-<hkern u1="P" u2="X" k="14" />
-<hkern u1="P" u2="P" k="6" />
-<hkern u1="P" u2="M" k="20" />
-<hkern u1="P" u2="F" k="6" />
-<hkern u1="P" u2="B" k="6" />
-<hkern u1="P" u2="&#x3a;" k="16" />
-<hkern u1="P" u2="&#x2f;" k="37" />
-<hkern u1="P" u2="&#x2e;" k="219" />
-<hkern u1="P" u2="&#x2c;" k="211" />
-<hkern u1="Q" g2="uniFB02" k="27" />
-<hkern u1="Q" g2="uniFB01" k="27" />
-<hkern u1="Q" u2="&#x201e;" k="90" />
-<hkern u1="Q" u2="&#x201d;" k="12" />
-<hkern u1="Q" u2="&#x201a;" k="90" />
-<hkern u1="Q" u2="&#x2019;" k="12" />
-<hkern u1="Q" u2="&#x2014;" k="14" />
-<hkern u1="Q" u2="&#x2013;" k="14" />
-<hkern u1="Q" u2="&#x178;" k="27" />
-<hkern u1="Q" u2="&#x153;" k="35" />
-<hkern u1="Q" u2="&#xff;" k="10" />
-<hkern u1="Q" u2="&#xfd;" k="10" />
-<hkern u1="Q" u2="&#xfc;" k="31" />
-<hkern u1="Q" u2="&#xfb;" k="31" />
-<hkern u1="Q" u2="&#xfa;" k="31" />
-<hkern u1="Q" u2="&#xf9;" k="31" />
-<hkern u1="Q" u2="&#xf8;" k="35" />
-<hkern u1="Q" u2="&#xf6;" k="35" />
-<hkern u1="Q" u2="&#xf5;" k="35" />
-<hkern u1="Q" u2="&#xf4;" k="35" />
-<hkern u1="Q" u2="&#xf3;" k="35" />
-<hkern u1="Q" u2="&#xf2;" k="35" />
-<hkern u1="Q" u2="&#xf1;" k="39" />
-<hkern u1="Q" u2="&#xef;" k="39" />
-<hkern u1="Q" u2="&#xee;" k="39" />
-<hkern u1="Q" u2="&#xed;" k="39" />
-<hkern u1="Q" u2="&#xec;" k="39" />
-<hkern u1="Q" u2="&#xeb;" k="35" />
-<hkern u1="Q" u2="&#xea;" k="35" />
-<hkern u1="Q" u2="&#xe9;" k="35" />
-<hkern u1="Q" u2="&#xe8;" k="35" />
-<hkern u1="Q" u2="&#xe7;" k="35" />
-<hkern u1="Q" u2="&#xe6;" k="47" />
-<hkern u1="Q" u2="&#xe5;" k="47" />
-<hkern u1="Q" u2="&#xe4;" k="47" />
-<hkern u1="Q" u2="&#xe3;" k="47" />
-<hkern u1="Q" u2="&#xe2;" k="47" />
-<hkern u1="Q" u2="&#xe1;" k="47" />
-<hkern u1="Q" u2="&#xe0;" k="47" />
-<hkern u1="Q" u2="&#xdd;" k="27" />
-<hkern u1="Q" u2="&#xc6;" k="23" />
-<hkern u1="Q" u2="&#xc5;" k="14" />
-<hkern u1="Q" u2="&#xc4;" k="14" />
-<hkern u1="Q" u2="&#xc3;" k="14" />
-<hkern u1="Q" u2="&#xc2;" k="14" />
-<hkern u1="Q" u2="&#xc1;" k="14" />
-<hkern u1="Q" u2="&#xc0;" k="14" />
-<hkern u1="Q" u2="z" k="31" />
-<hkern u1="Q" u2="y" k="10" />
-<hkern u1="Q" u2="w" k="14" />
-<hkern u1="Q" u2="u" k="31" />
-<hkern u1="Q" u2="t" k="20" />
-<hkern u1="Q" u2="s" k="29" />
-<hkern u1="Q" u2="r" k="39" />
-<hkern u1="Q" u2="p" k="39" />
-<hkern u1="Q" u2="o" k="35" />
-<hkern u1="Q" u2="n" k="39" />
-<hkern u1="Q" u2="l" k="35" />
-<hkern u1="Q" u2="k" k="35" />
-<hkern u1="Q" u2="j" k="-61" />
-<hkern u1="Q" u2="i" k="39" />
-<hkern u1="Q" u2="h" k="35" />
-<hkern u1="Q" u2="g" k="59" />
-<hkern u1="Q" u2="f" k="27" />
-<hkern u1="Q" u2="e" k="35" />
-<hkern u1="Q" u2="d" k="33" />
-<hkern u1="Q" u2="c" k="35" />
-<hkern u1="Q" u2="a" k="47" />
-<hkern u1="Q" u2="Z" k="12" />
-<hkern u1="Q" u2="Y" k="27" />
-<hkern u1="Q" u2="W" k="12" />
-<hkern u1="Q" u2="T" k="10" />
-<hkern u1="Q" u2="J" k="31" />
-<hkern u1="Q" u2="A" k="14" />
-<hkern u1="Q" u2="&#x2d;" k="14" />
-<hkern u1="Q" u2="&#x27;" k="18" />
-<hkern u1="Q" u2="&#x22;" k="18" />
-<hkern u1="Q" u2="&#xfe;" k="35" />
-<hkern u1="Q" u2="&#xf0;" k="29" />
-<hkern u1="Q" u2="&#xdf;" k="35" />
-<hkern u1="Q" u2="&#x7d;" k="25" />
-<hkern u1="Q" u2="x" k="29" />
-<hkern u1="Q" u2="v" k="10" />
-<hkern u1="Q" u2="q" k="35" />
-<hkern u1="Q" u2="m" k="39" />
-<hkern u1="Q" u2="b" k="35" />
-<hkern u1="Q" u2="]" k="25" />
-<hkern u1="Q" u2="\" k="14" />
-<hkern u1="Q" u2="X" k="23" />
-<hkern u1="Q" u2="V" k="14" />
-<hkern u1="Q" u2="&#x3f;" k="20" />
-<hkern u1="Q" u2="&#x2f;" k="18" />
-<hkern u1="Q" u2="&#x2e;" k="55" />
-<hkern u1="Q" u2="&#x2c;" k="59" />
-<hkern u1="Q" u2="&#x29;" k="23" />
-<hkern u1="Q" u2="&#x21;" k="12" />
-<hkern u1="R" u2="&#xfe;" k="43" />
-<hkern u1="R" u2="&#xf0;" k="72" />
-<hkern u1="R" u2="&#xef;" k="-2" />
-<hkern u1="R" u2="&#xee;" k="8" />
-<hkern u1="R" u2="&#xdf;" k="49" />
-<hkern u1="R" u2="x" k="33" />
-<hkern u1="R" u2="v" k="37" />
-<hkern u1="R" u2="q" k="55" />
-<hkern u1="R" u2="m" k="49" />
-<hkern u1="R" u2="b" k="43" />
-<hkern u1="R" u2="&#x3a;" k="12" />
-<hkern u1="R" u2="&#x2e;" k="20" />
-<hkern u1="R" u2="&#x2c;" k="20" />
-<hkern u1="S" u2="&#xfe;" k="31" />
-<hkern u1="S" u2="&#xf0;" k="18" />
-<hkern u1="S" u2="&#xef;" k="-27" />
-<hkern u1="S" u2="&#xdf;" k="33" />
-<hkern u1="S" u2="x" k="51" />
-<hkern u1="S" u2="v" k="45" />
-<hkern u1="S" u2="q" k="18" />
-<hkern u1="S" u2="m" k="33" />
-<hkern u1="S" u2="b" k="31" />
-<hkern u1="S" u2="&#x2c;" k="10" />
-<hkern u1="T" u2="&#xfe;" k="25" />
-<hkern u1="T" u2="&#xf6;" k="102" />
-<hkern u1="T" u2="&#xf5;" k="129" />
-<hkern u1="T" u2="&#xf4;" k="137" />
-<hkern u1="T" u2="&#xf0;" k="59" />
-<hkern u1="T" u2="&#xef;" k="-109" />
-<hkern u1="T" u2="&#xee;" k="-74" />
-<hkern u1="T" u2="&#xed;" k="-2" />
-<hkern u1="T" u2="&#xec;" k="-2" />
-<hkern u1="T" u2="&#xeb;" k="106" />
-<hkern u1="T" u2="&#xea;" k="139" />
-<hkern u1="T" u2="&#xe4;" k="76" />
-<hkern u1="T" u2="&#xe3;" k="90" />
-<hkern u1="T" u2="&#xe2;" k="111" />
-<hkern u1="T" u2="&#xdf;" k="53" />
-<hkern u1="T" u2="x" k="84" />
-<hkern u1="T" u2="v" k="61" />
-<hkern u1="T" u2="q" k="160" />
-<hkern u1="T" u2="m" k="119" />
-<hkern u1="T" u2="b" k="25" />
-<hkern u1="T" u2="V" k="-63" />
-<hkern u1="T" u2="Q" k="8" />
-<hkern u1="T" u2="M" k="18" />
-<hkern u1="T" u2="&#x40;" k="25" />
-<hkern u1="T" u2="&#x3b;" k="41" />
-<hkern u1="T" u2="&#x3a;" k="61" />
-<hkern u1="T" u2="&#x2f;" k="51" />
-<hkern u1="T" u2="&#x2e;" k="125" />
-<hkern u1="T" u2="&#x2c;" k="113" />
-<hkern u1="U" u2="&#xfe;" k="37" />
-<hkern u1="U" u2="&#xf0;" k="49" />
-<hkern u1="U" u2="&#xef;" k="6" />
-<hkern u1="U" u2="&#xdf;" k="41" />
-<hkern u1="U" u2="x" k="53" />
-<hkern u1="U" u2="v" k="39" />
-<hkern u1="U" u2="q" k="49" />
-<hkern u1="U" u2="m" k="51" />
-<hkern u1="U" u2="b" k="37" />
-<hkern u1="U" u2="X" k="6" />
-<hkern u1="U" u2="&#x3b;" k="10" />
-<hkern u1="U" u2="&#x3a;" k="18" />
-<hkern u1="U" u2="&#x2f;" k="27" />
-<hkern u1="U" u2="&#x2e;" k="61" />
-<hkern u1="U" u2="&#x2c;" k="63" />
-<hkern u1="U" u2="&#x21;" k="12" />
-<hkern u1="V" g2="uniFB02" k="55" />
-<hkern u1="V" g2="uniFB01" k="55" />
-<hkern u1="V" u2="&#x203a;" k="31" />
-<hkern u1="V" u2="&#x2039;" k="72" />
-<hkern u1="V" u2="&#x201e;" k="160" />
-<hkern u1="V" u2="&#x201d;" k="-18" />
-<hkern u1="V" u2="&#x201a;" k="160" />
-<hkern u1="V" u2="&#x2019;" k="-18" />
-<hkern u1="V" u2="&#x2014;" k="94" />
-<hkern u1="V" u2="&#x2013;" k="94" />
-<hkern u1="V" u2="&#x178;" k="-41" />
-<hkern u1="V" u2="&#x153;" k="199" />
-<hkern u1="V" u2="&#x152;" k="12" />
-<hkern u1="V" u2="&#xff;" k="61" />
-<hkern u1="V" u2="&#xfd;" k="61" />
-<hkern u1="V" u2="&#xfc;" k="113" />
-<hkern u1="V" u2="&#xfb;" k="113" />
-<hkern u1="V" u2="&#xfa;" k="113" />
-<hkern u1="V" u2="&#xf9;" k="113" />
-<hkern u1="V" u2="&#xf8;" k="199" />
-<hkern u1="V" u2="&#xf3;" k="199" />
-<hkern u1="V" u2="&#xf2;" k="199" />
-<hkern u1="V" u2="&#xf1;" k="152" />
-<hkern u1="V" u2="&#xed;" k="31" />
-<hkern u1="V" u2="&#xe9;" k="199" />
-<hkern u1="V" u2="&#xe8;" k="199" />
-<hkern u1="V" u2="&#xe7;" k="201" />
-<hkern u1="V" u2="&#xe6;" k="182" />
-<hkern u1="V" u2="&#xe5;" k="182" />
-<hkern u1="V" u2="&#xe1;" k="182" />
-<hkern u1="V" u2="&#xe0;" k="182" />
-<hkern u1="V" u2="&#xdd;" k="-41" />
-<hkern u1="V" u2="&#xd8;" k="12" />
-<hkern u1="V" u2="&#xd6;" k="12" />
-<hkern u1="V" u2="&#xd5;" k="12" />
-<hkern u1="V" u2="&#xd4;" k="12" />
-<hkern u1="V" u2="&#xd3;" k="12" />
-<hkern u1="V" u2="&#xd2;" k="12" />
-<hkern u1="V" u2="&#xc7;" k="12" />
-<hkern u1="V" u2="&#xc6;" k="166" />
-<hkern u1="V" u2="&#xc5;" k="115" />
-<hkern u1="V" u2="&#xc4;" k="115" />
-<hkern u1="V" u2="&#xc3;" k="115" />
-<hkern u1="V" u2="&#xc2;" k="115" />
-<hkern u1="V" u2="&#xc1;" k="115" />
-<hkern u1="V" u2="&#xc0;" k="115" />
-<hkern u1="V" u2="&#xbb;" k="31" />
-<hkern u1="V" u2="&#xab;" k="72" />
-<hkern u1="V" u2="z" k="84" />
-<hkern u1="V" u2="y" k="61" />
-<hkern u1="V" u2="w" k="61" />
-<hkern u1="V" u2="u" k="113" />
-<hkern u1="V" u2="t" k="61" />
-<hkern u1="V" u2="s" k="180" />
-<hkern u1="V" u2="r" k="152" />
-<hkern u1="V" u2="p" k="152" />
-<hkern u1="V" u2="o" k="199" />
-<hkern u1="V" u2="n" k="152" />
-<hkern u1="V" u2="l" k="23" />
-<hkern u1="V" u2="k" k="23" />
-<hkern u1="V" u2="j" k="33" />
-<hkern u1="V" u2="i" k="31" />
-<hkern u1="V" u2="h" k="23" />
-<hkern u1="V" u2="g" k="254" />
-<hkern u1="V" u2="f" k="55" />
-<hkern u1="V" u2="e" k="199" />
-<hkern u1="V" u2="d" k="193" />
-<hkern u1="V" u2="c" k="201" />
-<hkern u1="V" u2="a" k="182" />
-<hkern u1="V" u2="Y" k="-41" />
-<hkern u1="V" u2="T" k="-63" />
-<hkern u1="V" u2="O" k="12" />
-<hkern u1="V" u2="J" k="78" />
-<hkern u1="V" u2="G" k="12" />
-<hkern u1="V" u2="C" k="12" />
-<hkern u1="V" u2="A" k="115" />
-<hkern u1="V" u2="&#x2d;" k="94" />
-<hkern u1="V" u2="&#xfe;" k="23" />
-<hkern u1="V" u2="&#xf6;" k="84" />
-<hkern u1="V" u2="&#xf5;" k="131" />
-<hkern u1="V" u2="&#xf4;" k="168" />
-<hkern u1="V" u2="&#xf0;" k="61" />
-<hkern u1="V" u2="&#xef;" k="-106" />
-<hkern u1="V" u2="&#xee;" k="-23" />
-<hkern u1="V" u2="&#xec;" k="-2" />
-<hkern u1="V" u2="&#xeb;" k="88" />
-<hkern u1="V" u2="&#xea;" k="172" />
-<hkern u1="V" u2="&#xe4;" k="70" />
-<hkern u1="V" u2="&#xe3;" k="102" />
-<hkern u1="V" u2="&#xe2;" k="154" />
-<hkern u1="V" u2="&#xdf;" k="51" />
-<hkern u1="V" u2="&#x7d;" k="-35" />
-<hkern u1="V" u2="x" k="66" />
-<hkern u1="V" u2="v" k="63" />
-<hkern u1="V" u2="q" k="199" />
-<hkern u1="V" u2="m" k="150" />
-<hkern u1="V" u2="b" k="23" />
-<hkern u1="V" u2="]" k="-43" />
-<hkern u1="V" u2="\" k="-43" />
-<hkern u1="V" u2="Q" k="12" />
-<hkern u1="V" u2="M" k="29" />
-<hkern u1="V" u2="&#x40;" k="33" />
-<hkern u1="V" u2="&#x3b;" k="37" />
-<hkern u1="V" u2="&#x3a;" k="59" />
-<hkern u1="V" u2="&#x2f;" k="68" />
-<hkern u1="V" u2="&#x2e;" k="162" />
-<hkern u1="V" u2="&#x2c;" k="154" />
-<hkern u1="V" u2="&#x29;" k="-10" />
-<hkern u1="W" u2="&#xfe;" k="43" />
-<hkern u1="W" u2="&#xf0;" k="109" />
-<hkern u1="W" u2="&#xef;" k="-61" />
-<hkern u1="W" u2="&#xee;" k="-2" />
-<hkern u1="W" u2="&#xec;" k="20" />
-<hkern u1="W" u2="&#xdf;" k="49" />
-<hkern u1="W" u2="&#xde;" k="6" />
-<hkern u1="W" u2="x" k="66" />
-<hkern u1="W" u2="v" k="61" />
-<hkern u1="W" u2="q" k="119" />
-<hkern u1="W" u2="m" k="102" />
-<hkern u1="W" u2="b" k="43" />
-<hkern u1="W" u2="Q" k="10" />
-<hkern u1="W" u2="P" k="6" />
-<hkern u1="W" u2="M" k="18" />
-<hkern u1="W" u2="F" k="6" />
-<hkern u1="W" u2="B" k="6" />
-<hkern u1="W" u2="&#x40;" k="23" />
-<hkern u1="W" u2="&#x3b;" k="31" />
-<hkern u1="W" u2="&#x3a;" k="45" />
-<hkern u1="W" u2="&#x2f;" k="57" />
-<hkern u1="W" u2="&#x2e;" k="137" />
-<hkern u1="W" u2="&#x2c;" k="129" />
-<hkern u1="X" g2="uniFB02" k="57" />
-<hkern u1="X" g2="uniFB01" k="57" />
-<hkern u1="X" u2="&#x2039;" k="18" />
-<hkern u1="X" u2="&#x2014;" k="80" />
-<hkern u1="X" u2="&#x2013;" k="80" />
-<hkern u1="X" u2="&#x178;" k="-14" />
-<hkern u1="X" u2="&#x153;" k="61" />
-<hkern u1="X" u2="&#x152;" k="20" />
-<hkern u1="X" u2="&#xff;" k="61" />
-<hkern u1="X" u2="&#xfd;" k="61" />
-<hkern u1="X" u2="&#xfc;" k="53" />
-<hkern u1="X" u2="&#xfb;" k="53" />
-<hkern u1="X" u2="&#xfa;" k="53" />
-<hkern u1="X" u2="&#xf9;" k="53" />
-<hkern u1="X" u2="&#xf8;" k="61" />
-<hkern u1="X" u2="&#xf6;" k="61" />
-<hkern u1="X" u2="&#xf5;" k="61" />
-<hkern u1="X" u2="&#xf4;" k="61" />
-<hkern u1="X" u2="&#xf3;" k="61" />
-<hkern u1="X" u2="&#xf2;" k="61" />
-<hkern u1="X" u2="&#xf1;" k="43" />
-<hkern u1="X" u2="&#xee;" k="39" />
-<hkern u1="X" u2="&#xed;" k="39" />
-<hkern u1="X" u2="&#xec;" k="39" />
-<hkern u1="X" u2="&#xeb;" k="61" />
-<hkern u1="X" u2="&#xea;" k="61" />
-<hkern u1="X" u2="&#xe9;" k="61" />
-<hkern u1="X" u2="&#xe8;" k="61" />
-<hkern u1="X" u2="&#xe7;" k="61" />
-<hkern u1="X" u2="&#xe6;" k="37" />
-<hkern u1="X" u2="&#xe5;" k="37" />
-<hkern u1="X" u2="&#xe4;" k="37" />
-<hkern u1="X" u2="&#xe3;" k="37" />
-<hkern u1="X" u2="&#xe2;" k="37" />
-<hkern u1="X" u2="&#xe1;" k="37" />
-<hkern u1="X" u2="&#xe0;" k="37" />
-<hkern u1="X" u2="&#xdd;" k="-14" />
-<hkern u1="X" u2="&#xdc;" k="6" />
-<hkern u1="X" u2="&#xdb;" k="6" />
-<hkern u1="X" u2="&#xda;" k="6" />
-<hkern u1="X" u2="&#xd9;" k="6" />
-<hkern u1="X" u2="&#xd8;" k="20" />
-<hkern u1="X" u2="&#xd6;" k="20" />
-<hkern u1="X" u2="&#xd5;" k="20" />
-<hkern u1="X" u2="&#xd4;" k="20" />
-<hkern u1="X" u2="&#xd3;" k="20" />
-<hkern u1="X" u2="&#xd2;" k="20" />
-<hkern u1="X" u2="&#xc7;" k="20" />
-<hkern u1="X" u2="&#xab;" k="18" />
-<hkern u1="X" u2="z" k="25" />
-<hkern u1="X" u2="y" k="61" />
-<hkern u1="X" u2="w" k="59" />
-<hkern u1="X" u2="u" k="53" />
-<hkern u1="X" u2="t" k="61" />
-<hkern u1="X" u2="s" k="29" />
-<hkern u1="X" u2="r" k="43" />
-<hkern u1="X" u2="p" k="41" />
-<hkern u1="X" u2="o" k="61" />
-<hkern u1="X" u2="n" k="43" />
-<hkern u1="X" u2="l" k="37" />
-<hkern u1="X" u2="k" k="37" />
-<hkern u1="X" u2="j" k="37" />
-<hkern u1="X" u2="i" k="39" />
-<hkern u1="X" u2="h" k="37" />
-<hkern u1="X" u2="g" k="8" />
-<hkern u1="X" u2="f" k="57" />
-<hkern u1="X" u2="e" k="61" />
-<hkern u1="X" u2="d" k="61" />
-<hkern u1="X" u2="c" k="61" />
-<hkern u1="X" u2="a" k="37" />
-<hkern u1="X" u2="Y" k="-14" />
-<hkern u1="X" u2="U" k="6" />
-<hkern u1="X" u2="O" k="20" />
-<hkern u1="X" u2="J" k="-10" />
-<hkern u1="X" u2="G" k="23" />
-<hkern u1="X" u2="C" k="20" />
-<hkern u1="X" u2="&#x2d;" k="80" />
-<hkern u1="X" u2="&#xfe;" k="37" />
-<hkern u1="X" u2="&#xf0;" k="61" />
-<hkern u1="X" u2="&#xef;" k="-27" />
-<hkern u1="X" u2="&#xdf;" k="43" />
-<hkern u1="X" u2="x" k="18" />
-<hkern u1="X" u2="v" k="90" />
-<hkern u1="X" u2="q" k="59" />
-<hkern u1="X" u2="m" k="43" />
-<hkern u1="X" u2="b" k="37" />
-<hkern u1="X" u2="Q" k="20" />
-<hkern u1="X" u2="&#x2a;" k="12" />
-<hkern u1="Y" u2="&#xfe;" k="23" />
-<hkern u1="Y" u2="&#xfc;" k="135" />
-<hkern u1="Y" u2="&#xf6;" k="90" />
-<hkern u1="Y" u2="&#xf5;" k="147" />
-<hkern u1="Y" u2="&#xf4;" k="201" />
-<hkern u1="Y" u2="&#xf2;" k="205" />
-<hkern u1="Y" u2="&#xf0;" k="61" />
-<hkern u1="Y" u2="&#xef;" k="-102" />
-<hkern u1="Y" u2="&#xee;" k="-2" />
-<hkern u1="Y" u2="&#xec;" k="-2" />
-<hkern u1="Y" u2="&#xeb;" k="94" />
-<hkern u1="Y" u2="&#xea;" k="205" />
-<hkern u1="Y" u2="&#xe8;" k="227" />
-<hkern u1="Y" u2="&#xe4;" k="72" />
-<hkern u1="Y" u2="&#xe3;" k="117" />
-<hkern u1="Y" u2="&#xdf;" k="53" />
-<hkern u1="Y" u2="&#x7d;" k="-39" />
-<hkern u1="Y" u2="x" k="84" />
-<hkern u1="Y" u2="v" k="66" />
-<hkern u1="Y" u2="q" k="242" />
-<hkern u1="Y" u2="m" k="160" />
-<hkern u1="Y" u2="b" k="23" />
-<hkern u1="Y" u2="]" k="-49" />
-<hkern u1="Y" u2="\" k="-49" />
-<hkern u1="Y" u2="X" k="-14" />
-<hkern u1="Y" u2="V" k="-41" />
-<hkern u1="Y" u2="Q" k="27" />
-<hkern u1="Y" u2="M" k="31" />
-<hkern u1="Y" u2="&#x40;" k="51" />
-<hkern u1="Y" u2="&#x3b;" k="47" />
-<hkern u1="Y" u2="&#x3a;" k="68" />
-<hkern u1="Y" u2="&#x2f;" k="68" />
-<hkern u1="Y" u2="&#x2e;" k="143" />
-<hkern u1="Y" u2="&#x2c;" k="133" />
-<hkern u1="Y" u2="&#x29;" k="-18" />
-<hkern u1="Z" u2="&#xfe;" k="37" />
-<hkern u1="Z" u2="&#xf0;" k="49" />
-<hkern u1="Z" u2="&#xef;" k="-47" />
-<hkern u1="Z" u2="&#xee;" k="12" />
-<hkern u1="Z" u2="&#xdf;" k="47" />
-<hkern u1="Z" u2="x" k="35" />
-<hkern u1="Z" u2="v" k="59" />
-<hkern u1="Z" u2="q" k="41" />
-<hkern u1="Z" u2="m" k="47" />
-<hkern u1="Z" u2="b" k="37" />
-<hkern u1="Z" u2="Q" k="10" />
-<hkern u1="Z" u2="&#x3a;" k="10" />
-<hkern u1="[" g2="uniFB02" k="27" />
-<hkern u1="[" g2="uniFB01" k="27" />
-<hkern u1="[" u2="&#x178;" k="-49" />
-<hkern u1="[" u2="&#x153;" k="63" />
-<hkern u1="[" u2="&#x152;" k="23" />
-<hkern u1="[" u2="&#xfe;" k="45" />
-<hkern u1="[" u2="&#xfc;" k="49" />
-<hkern u1="[" u2="&#xfb;" k="49" />
-<hkern u1="[" u2="&#xfa;" k="49" />
-<hkern u1="[" u2="&#xf9;" k="49" />
-<hkern u1="[" u2="&#xf8;" k="63" />
-<hkern u1="[" u2="&#xf6;" k="63" />
-<hkern u1="[" u2="&#xf5;" k="63" />
-<hkern u1="[" u2="&#xf4;" k="63" />
-<hkern u1="[" u2="&#xf3;" k="63" />
-<hkern u1="[" u2="&#xf2;" k="63" />
-<hkern u1="[" u2="&#xf1;" k="49" />
-<hkern u1="[" u2="&#xeb;" k="63" />
-<hkern u1="[" u2="&#xea;" k="63" />
-<hkern u1="[" u2="&#xe9;" k="63" />
-<hkern u1="[" u2="&#xe8;" k="63" />
-<hkern u1="[" u2="&#xe7;" k="63" />
-<hkern u1="[" u2="&#xe6;" k="57" />
-<hkern u1="[" u2="&#xe5;" k="57" />
-<hkern u1="[" u2="&#xe4;" k="57" />
-<hkern u1="[" u2="&#xe3;" k="57" />
-<hkern u1="[" u2="&#xe2;" k="57" />
-<hkern u1="[" u2="&#xe1;" k="57" />
-<hkern u1="[" u2="&#xe0;" k="57" />
-<hkern u1="[" u2="&#xdd;" k="-49" />
-<hkern u1="[" u2="&#xd8;" k="23" />
-<hkern u1="[" u2="&#xd6;" k="23" />
-<hkern u1="[" u2="&#xd5;" k="23" />
-<hkern u1="[" u2="&#xd4;" k="23" />
-<hkern u1="[" u2="&#xd3;" k="23" />
-<hkern u1="[" u2="&#xd2;" k="23" />
-<hkern u1="[" u2="&#xc7;" k="23" />
-<hkern u1="[" u2="&#xc5;" k="12" />
-<hkern u1="[" u2="&#xc4;" k="12" />
-<hkern u1="[" u2="&#xc3;" k="12" />
-<hkern u1="[" u2="&#xc2;" k="12" />
-<hkern u1="[" u2="&#xc1;" k="12" />
-<hkern u1="[" u2="&#xc0;" k="12" />
-<hkern u1="[" u2="z" k="39" />
-<hkern u1="[" u2="w" k="29" />
-<hkern u1="[" u2="u" k="49" />
-<hkern u1="[" u2="t" k="47" />
-<hkern u1="[" u2="s" k="53" />
-<hkern u1="[" u2="r" k="49" />
-<hkern u1="[" u2="p" k="45" />
-<hkern u1="[" u2="o" k="63" />
-<hkern u1="[" u2="n" k="49" />
-<hkern u1="[" u2="j" k="-276" />
-<hkern u1="[" u2="g" k="31" />
-<hkern u1="[" u2="f" k="27" />
-<hkern u1="[" u2="e" k="63" />
-<hkern u1="[" u2="d" k="59" />
-<hkern u1="[" u2="c" k="63" />
-<hkern u1="[" u2="a" k="57" />
-<hkern u1="[" u2="Y" k="-49" />
-<hkern u1="[" u2="O" k="23" />
-<hkern u1="[" u2="J" k="20" />
-<hkern u1="[" u2="G" k="25" />
-<hkern u1="[" u2="C" k="23" />
-<hkern u1="[" u2="A" k="12" />
-<hkern u1="[" u2="&#xf0;" k="31" />
-<hkern u1="[" u2="&#xef;" k="-117" />
-<hkern u1="[" u2="&#xee;" k="-76" />
-<hkern u1="[" u2="&#xdf;" k="25" />
-<hkern u1="[" u2="x" k="35" />
-<hkern u1="[" u2="v" k="31" />
-<hkern u1="[" u2="q" k="63" />
-<hkern u1="[" u2="m" k="47" />
-<hkern u1="[" u2="V" k="-43" />
-<hkern u1="[" u2="Q" k="23" />
-<hkern u1="[" u2="M" k="14" />
-<hkern u1="[" u2="&#x38;" k="10" />
-<hkern u1="[" u2="&#x36;" k="39" />
-<hkern u1="[" u2="&#x34;" k="49" />
-<hkern u1="[" u2="&#x30;" k="27" />
-<hkern u1="\" u2="&#x178;" k="68" />
-<hkern u1="\" u2="&#x152;" k="16" />
-<hkern u1="\" u2="&#xff;" k="23" />
-<hkern u1="\" u2="&#xfd;" k="23" />
-<hkern u1="\" u2="&#xfc;" k="10" />
-<hkern u1="\" u2="&#xfb;" k="10" />
-<hkern u1="\" u2="&#xfa;" k="10" />
-<hkern u1="\" u2="&#xf9;" k="10" />
-<hkern u1="\" u2="&#xdd;" k="68" />
-<hkern u1="\" u2="&#xdc;" k="27" />
-<hkern u1="\" u2="&#xdb;" k="27" />
-<hkern u1="\" u2="&#xda;" k="27" />
-<hkern u1="\" u2="&#xd9;" k="27" />
-<hkern u1="\" u2="&#xd8;" k="16" />
-<hkern u1="\" u2="&#xd6;" k="16" />
-<hkern u1="\" u2="&#xd5;" k="16" />
-<hkern u1="\" u2="&#xd4;" k="16" />
-<hkern u1="\" u2="&#xd3;" k="16" />
-<hkern u1="\" u2="&#xd2;" k="16" />
-<hkern u1="\" u2="&#xd1;" k="12" />
-<hkern u1="\" u2="&#xd0;" k="12" />
-<hkern u1="\" u2="&#xcf;" k="12" />
-<hkern u1="\" u2="&#xce;" k="12" />
-<hkern u1="\" u2="&#xcd;" k="12" />
-<hkern u1="\" u2="&#xcc;" k="12" />
-<hkern u1="\" u2="&#xcb;" k="12" />
-<hkern u1="\" u2="&#xca;" k="12" />
-<hkern u1="\" u2="&#xc9;" k="12" />
-<hkern u1="\" u2="&#xc8;" k="12" />
-<hkern u1="\" u2="&#xc7;" k="16" />
-<hkern u1="\" u2="&#xc6;" k="-57" />
-<hkern u1="\" u2="&#xc5;" k="-31" />
-<hkern u1="\" u2="&#xc4;" k="-31" />
-<hkern u1="\" u2="&#xc3;" k="-31" />
-<hkern u1="\" u2="&#xc2;" k="-31" />
-<hkern u1="\" u2="&#xc1;" k="-31" />
-<hkern u1="\" u2="&#xc0;" k="-31" />
-<hkern u1="\" u2="y" k="23" />
-<hkern u1="\" u2="w" k="18" />
-<hkern u1="\" u2="u" k="10" />
-<hkern u1="\" u2="t" k="10" />
-<hkern u1="\" u2="Y" k="68" />
-<hkern u1="\" u2="W" k="57" />
-<hkern u1="\" u2="U" k="27" />
-<hkern u1="\" u2="T" k="51" />
-<hkern u1="\" u2="R" k="12" />
-<hkern u1="\" u2="O" k="16" />
-<hkern u1="\" u2="N" k="12" />
-<hkern u1="\" u2="L" k="12" />
-<hkern u1="\" u2="K" k="12" />
-<hkern u1="\" u2="J" k="-37" />
-<hkern u1="\" u2="I" k="12" />
-<hkern u1="\" u2="H" k="12" />
-<hkern u1="\" u2="G" k="16" />
-<hkern u1="\" u2="E" k="12" />
-<hkern u1="\" u2="D" k="12" />
-<hkern u1="\" u2="C" k="16" />
-<hkern u1="\" u2="A" k="-31" />
-<hkern u1="\" u2="&#x27;" k="51" />
-<hkern u1="\" u2="&#x22;" k="51" />
-<hkern u1="\" u2="&#xde;" k="12" />
-<hkern u1="\" u2="v" k="25" />
-<hkern u1="\" u2="V" k="68" />
-<hkern u1="\" u2="Q" k="16" />
-<hkern u1="\" u2="P" k="12" />
-<hkern u1="\" u2="F" k="12" />
-<hkern u1="\" u2="B" k="12" />
-<hkern u1="\" u2="&#x39;" k="18" />
-<hkern u1="\" u2="&#x31;" k="33" />
-<hkern u1="\" u2="&#x30;" k="18" />
-<hkern u1="a" u2="&#x7d;" k="43" />
-<hkern u1="a" u2="v" k="6" />
-<hkern u1="a" u2="]" k="49" />
-<hkern u1="a" u2="\" k="55" />
-<hkern u1="a" u2="X" k="37" />
-<hkern u1="a" u2="V" k="193" />
-<hkern u1="a" u2="Q" k="41" />
-<hkern u1="a" u2="P" k="29" />
-<hkern u1="a" u2="M" k="23" />
-<hkern u1="a" u2="F" k="29" />
-<hkern u1="a" u2="B" k="29" />
-<hkern u1="a" u2="&#x3f;" k="43" />
-<hkern u1="a" u2="&#x2a;" k="45" />
-<hkern u1="a" u2="&#x29;" k="10" />
-<hkern u1="a" u2="&#x21;" k="16" />
-<hkern u1="b" u2="&#x7d;" k="55" />
-<hkern u1="b" u2="x" k="8" />
-<hkern u1="b" u2="]" k="59" />
-<hkern u1="b" u2="\" k="47" />
-<hkern u1="b" u2="X" k="61" />
-<hkern u1="b" u2="V" k="190" />
-<hkern u1="b" u2="Q" k="29" />
-<hkern u1="b" u2="P" k="41" />
-<hkern u1="b" u2="M" k="31" />
-<hkern u1="b" u2="F" k="41" />
-<hkern u1="b" u2="B" k="41" />
-<hkern u1="b" u2="&#x3f;" k="37" />
-<hkern u1="b" u2="&#x2a;" k="47" />
-<hkern u1="b" u2="&#x29;" k="20" />
-<hkern u1="b" u2="&#x21;" k="12" />
-<hkern u1="c" u2="&#x7d;" k="51" />
-<hkern u1="c" u2="]" k="57" />
-<hkern u1="c" u2="\" k="47" />
-<hkern u1="c" u2="X" k="35" />
-<hkern u1="c" u2="V" k="209" />
-<hkern u1="c" u2="Q" k="29" />
-<hkern u1="c" u2="P" k="47" />
-<hkern u1="c" u2="M" k="20" />
-<hkern u1="c" u2="F" k="47" />
-<hkern u1="c" u2="B" k="47" />
-<hkern u1="c" u2="&#x3f;" k="33" />
-<hkern u1="c" u2="&#x2a;" k="31" />
-<hkern u1="c" u2="&#x29;" k="10" />
-<hkern u1="d" u2="&#xef;" k="-29" />
-<hkern u1="d" u2="X" k="37" />
-<hkern u1="d" u2="V" k="23" />
-<hkern u1="d" u2="Q" k="33" />
-<hkern u1="d" u2="P" k="27" />
-<hkern u1="d" u2="M" k="20" />
-<hkern u1="d" u2="F" k="27" />
-<hkern u1="d" u2="B" k="27" />
-<hkern u1="d" u2="&#x21;" k="12" />
-<hkern u1="e" u2="&#x7d;" k="57" />
-<hkern u1="e" u2="x" k="6" />
-<hkern u1="e" u2="]" k="61" />
-<hkern u1="e" u2="\" k="49" />
-<hkern u1="e" u2="X" k="53" />
-<hkern u1="e" u2="V" k="197" />
-<hkern u1="e" u2="Q" k="25" />
-<hkern u1="e" u2="P" k="47" />
-<hkern u1="e" u2="M" k="27" />
-<hkern u1="e" u2="F" k="47" />
-<hkern u1="e" u2="B" k="47" />
-<hkern u1="e" u2="&#x3f;" k="43" />
-<hkern u1="e" u2="&#x2a;" k="41" />
-<hkern u1="e" u2="&#x29;" k="16" />
-<hkern u1="e" u2="&#x21;" k="18" />
-<hkern u1="f" u2="&#xef;" k="-221" />
-<hkern u1="f" u2="&#xee;" k="-131" />
-<hkern u1="f" u2="&#xed;" k="-57" />
-<hkern u1="f" u2="&#xec;" k="-106" />
-<hkern u1="f" u2="&#x7d;" k="-111" />
-<hkern u1="f" u2="v" k="-6" />
-<hkern u1="f" u2="]" k="-117" />
-<hkern u1="f" u2="\" k="-115" />
-<hkern u1="f" u2="X" k="-84" />
-<hkern u1="f" u2="V" k="-156" />
-<hkern u1="f" u2="Q" k="10" />
-<hkern u1="f" u2="P" k="10" />
-<hkern u1="f" u2="M" k="37" />
-<hkern u1="f" u2="F" k="10" />
-<hkern u1="f" u2="B" k="10" />
-<hkern u1="f" u2="&#x3f;" k="-84" />
-<hkern u1="f" u2="&#x2f;" k="14" />
-<hkern u1="f" u2="&#x2e;" k="25" />
-<hkern u1="f" u2="&#x2c;" k="18" />
-<hkern u1="f" u2="&#x2a;" k="-63" />
-<hkern u1="f" u2="&#x29;" k="-86" />
-<hkern u1="f" u2="&#x21;" k="-12" />
-<hkern u1="g" u2="&#x7d;" k="12" />
-<hkern u1="g" u2="v" k="-6" />
-<hkern u1="g" u2="\" k="18" />
-<hkern u1="g" u2="X" k="59" />
-<hkern u1="g" u2="V" k="61" />
-<hkern u1="g" u2="Q" k="12" />
-<hkern u1="g" u2="P" k="49" />
-<hkern u1="g" u2="M" k="43" />
-<hkern u1="g" u2="F" k="49" />
-<hkern u1="g" u2="B" k="49" />
-<hkern u1="g" u2="&#x3f;" k="27" />
-<hkern u1="g" u2="&#x2f;" k="14" />
-<hkern u1="g" u2="&#x2c;" k="10" />
-<hkern u1="g" u2="&#x29;" k="23" />
-<hkern u1="g" u2="&#x21;" k="16" />
-<hkern u1="h" u2="&#x7d;" k="37" />
-<hkern u1="h" u2="v" k="14" />
-<hkern u1="h" u2="]" k="43" />
-<hkern u1="h" u2="\" k="53" />
-<hkern u1="h" u2="X" k="33" />
-<hkern u1="h" u2="V" k="221" />
-<hkern u1="h" u2="Q" k="45" />
-<hkern u1="h" u2="P" k="33" />
-<hkern u1="h" u2="M" k="27" />
-<hkern u1="h" u2="F" k="33" />
-<hkern u1="h" u2="B" k="33" />
-<hkern u1="h" u2="&#x3f;" k="37" />
-<hkern u1="h" u2="&#x2a;" k="53" />
-<hkern u1="h" u2="&#x21;" k="12" />
-<hkern u1="i" u2="&#xef;" k="-39" />
-<hkern u1="i" u2="&#x7d;" k="10" />
-<hkern u1="i" u2="]" k="10" />
-<hkern u1="i" u2="\" k="12" />
-<hkern u1="i" u2="X" k="39" />
-<hkern u1="i" u2="V" k="33" />
-<hkern u1="i" u2="Q" k="35" />
-<hkern u1="i" u2="P" k="27" />
-<hkern u1="i" u2="M" k="20" />
-<hkern u1="i" u2="F" k="27" />
-<hkern u1="i" u2="B" k="27" />
-<hkern u1="i" u2="&#x21;" k="12" />
-<hkern u1="j" u2="&#xef;" k="-39" />
-<hkern u1="j" u2="&#x7d;" k="10" />
-<hkern u1="j" u2="]" k="10" />
-<hkern u1="j" u2="\" k="12" />
-<hkern u1="j" u2="X" k="37" />
-<hkern u1="j" u2="V" k="33" />
-<hkern u1="j" u2="Q" k="35" />
-<hkern u1="j" u2="P" k="27" />
-<hkern u1="j" u2="M" k="20" />
-<hkern u1="j" u2="F" k="27" />
-<hkern u1="j" u2="B" k="27" />
-<hkern u1="j" u2="&#x21;" k="12" />
-<hkern u1="k" u2="&#xf0;" k="14" />
-<hkern u1="k" u2="&#x7d;" k="25" />
-<hkern u1="k" u2="q" k="12" />
-<hkern u1="k" u2="]" k="31" />
-<hkern u1="k" u2="\" k="35" />
-<hkern u1="k" u2="X" k="8" />
-<hkern u1="k" u2="V" k="72" />
-<hkern u1="k" u2="Q" k="37" />
-<hkern u1="k" u2="P" k="51" />
-<hkern u1="k" u2="M" k="16" />
-<hkern u1="k" u2="F" k="51" />
-<hkern u1="k" u2="B" k="51" />
-<hkern u1="k" u2="&#x3f;" k="31" />
-<hkern u1="k" u2="&#x2a;" k="12" />
-<hkern u1="k" u2="&#x21;" k="12" />
-<hkern u1="l" u2="&#xef;" k="-29" />
-<hkern u1="l" u2="X" k="37" />
-<hkern u1="l" u2="V" k="23" />
-<hkern u1="l" u2="Q" k="33" />
-<hkern u1="l" u2="P" k="27" />
-<hkern u1="l" u2="M" k="20" />
-<hkern u1="l" u2="F" k="27" />
-<hkern u1="l" u2="B" k="27" />
-<hkern u1="l" u2="&#x21;" k="12" />
-<hkern u1="m" g2="uniFB02" k="6" />
-<hkern u1="m" g2="uniFB01" k="6" />
-<hkern u1="m" u2="&#x201d;" k="59" />
-<hkern u1="m" u2="&#x2019;" k="59" />
-<hkern u1="m" u2="&#x178;" k="250" />
-<hkern u1="m" u2="&#x152;" k="45" />
-<hkern u1="m" u2="&#xff;" k="12" />
-<hkern u1="m" u2="&#xfd;" k="12" />
-<hkern u1="m" u2="&#xdd;" k="250" />
-<hkern u1="m" u2="&#xdc;" k="57" />
-<hkern u1="m" u2="&#xdb;" k="57" />
-<hkern u1="m" u2="&#xda;" k="57" />
-<hkern u1="m" u2="&#xd9;" k="57" />
-<hkern u1="m" u2="&#xd8;" k="45" />
-<hkern u1="m" u2="&#xd6;" k="45" />
-<hkern u1="m" u2="&#xd5;" k="45" />
-<hkern u1="m" u2="&#xd4;" k="45" />
-<hkern u1="m" u2="&#xd3;" k="45" />
-<hkern u1="m" u2="&#xd2;" k="45" />
-<hkern u1="m" u2="&#xd1;" k="33" />
-<hkern u1="m" u2="&#xd0;" k="33" />
-<hkern u1="m" u2="&#xcf;" k="33" />
-<hkern u1="m" u2="&#xce;" k="33" />
-<hkern u1="m" u2="&#xcd;" k="33" />
-<hkern u1="m" u2="&#xcc;" k="33" />
-<hkern u1="m" u2="&#xcb;" k="33" />
-<hkern u1="m" u2="&#xca;" k="33" />
-<hkern u1="m" u2="&#xc9;" k="33" />
-<hkern u1="m" u2="&#xc8;" k="33" />
-<hkern u1="m" u2="&#xc7;" k="45" />
-<hkern u1="m" u2="y" k="12" />
-<hkern u1="m" u2="w" k="10" />
-<hkern u1="m" u2="t" k="6" />
-<hkern u1="m" u2="f" k="6" />
-<hkern u1="m" u2="Z" k="29" />
-<hkern u1="m" u2="Y" k="250" />
-<hkern u1="m" u2="W" k="133" />
-<hkern u1="m" u2="U" k="57" />
-<hkern u1="m" u2="T" k="174" />
-<hkern u1="m" u2="S" k="43" />
-<hkern u1="m" u2="R" k="33" />
-<hkern u1="m" u2="O" k="45" />
-<hkern u1="m" u2="N" k="33" />
-<hkern u1="m" u2="L" k="33" />
-<hkern u1="m" u2="K" k="33" />
-<hkern u1="m" u2="I" k="33" />
-<hkern u1="m" u2="H" k="33" />
-<hkern u1="m" u2="G" k="45" />
-<hkern u1="m" u2="E" k="33" />
-<hkern u1="m" u2="D" k="33" />
-<hkern u1="m" u2="C" k="45" />
-<hkern u1="m" u2="&#x27;" k="94" />
-<hkern u1="m" u2="&#x22;" k="94" />
-<hkern u1="m" u2="&#x7d;" k="43" />
-<hkern u1="m" u2="v" k="14" />
-<hkern u1="m" u2="]" k="47" />
-<hkern u1="m" u2="\" k="57" />
-<hkern u1="m" u2="X" k="33" />
-<hkern u1="m" u2="V" k="219" />
-<hkern u1="m" u2="Q" k="45" />
-<hkern u1="m" u2="P" k="33" />
-<hkern u1="m" u2="M" k="27" />
-<hkern u1="m" u2="F" k="33" />
-<hkern u1="m" u2="B" k="33" />
-<hkern u1="m" u2="&#x3f;" k="41" />
-<hkern u1="m" u2="&#x2a;" k="53" />
-<hkern u1="m" u2="&#x21;" k="14" />
-<hkern u1="n" u2="&#x7d;" k="41" />
-<hkern u1="n" u2="v" k="14" />
-<hkern u1="n" u2="]" k="47" />
-<hkern u1="n" u2="\" k="57" />
-<hkern u1="n" u2="X" k="33" />
-<hkern u1="n" u2="V" k="221" />
-<hkern u1="n" u2="Q" k="45" />
-<hkern u1="n" u2="P" k="33" />
-<hkern u1="n" u2="M" k="27" />
-<hkern u1="n" u2="F" k="33" />
-<hkern u1="n" u2="B" k="33" />
-<hkern u1="n" u2="&#x3f;" k="41" />
-<hkern u1="n" u2="&#x2a;" k="55" />
-<hkern u1="n" u2="&#x21;" k="14" />
-<hkern u1="o" u2="&#x7d;" k="59" />
-<hkern u1="o" u2="x" k="10" />
-<hkern u1="o" u2="v" k="6" />
-<hkern u1="o" u2="]" k="63" />
-<hkern u1="o" u2="\" k="53" />
-<hkern u1="o" u2="X" k="61" />
-<hkern u1="o" u2="V" k="197" />
-<hkern u1="o" u2="Q" k="31" />
-<hkern u1="o" u2="P" k="43" />
-<hkern u1="o" u2="M" k="31" />
-<hkern u1="o" u2="F" k="43" />
-<hkern u1="o" u2="B" k="43" />
-<hkern u1="o" u2="&#x3f;" k="43" />
-<hkern u1="o" u2="&#x2a;" k="51" />
-<hkern u1="o" u2="&#x29;" k="27" />
-<hkern u1="o" u2="&#x21;" k="16" />
-<hkern u1="p" u2="&#x201d;" k="57" />
-<hkern u1="p" u2="&#x2019;" k="57" />
-<hkern u1="p" u2="&#x178;" k="236" />
-<hkern u1="p" u2="&#x152;" k="31" />
-<hkern u1="p" u2="&#xdd;" k="236" />
-<hkern u1="p" u2="&#xdc;" k="47" />
-<hkern u1="p" u2="&#xdb;" k="47" />
-<hkern u1="p" u2="&#xda;" k="47" />
-<hkern u1="p" u2="&#xd9;" k="47" />
-<hkern u1="p" u2="&#xd8;" k="31" />
-<hkern u1="p" u2="&#xd6;" k="31" />
-<hkern u1="p" u2="&#xd5;" k="31" />
-<hkern u1="p" u2="&#xd4;" k="31" />
-<hkern u1="p" u2="&#xd3;" k="31" />
-<hkern u1="p" u2="&#xd2;" k="31" />
-<hkern u1="p" u2="&#xd1;" k="41" />
-<hkern u1="p" u2="&#xd0;" k="41" />
-<hkern u1="p" u2="&#xcf;" k="41" />
-<hkern u1="p" u2="&#xce;" k="41" />
-<hkern u1="p" u2="&#xcd;" k="41" />
-<hkern u1="p" u2="&#xcc;" k="41" />
-<hkern u1="p" u2="&#xcb;" k="41" />
-<hkern u1="p" u2="&#xca;" k="41" />
-<hkern u1="p" u2="&#xc9;" k="41" />
-<hkern u1="p" u2="&#xc8;" k="41" />
-<hkern u1="p" u2="&#xc7;" k="31" />
-<hkern u1="p" u2="&#xc5;" k="18" />
-<hkern u1="p" u2="&#xc4;" k="18" />
-<hkern u1="p" u2="&#xc3;" k="18" />
-<hkern u1="p" u2="&#xc2;" k="18" />
-<hkern u1="p" u2="&#xc1;" k="18" />
-<hkern u1="p" u2="&#xc0;" k="18" />
-<hkern u1="p" u2="Z" k="45" />
-<hkern u1="p" u2="Y" k="236" />
-<hkern u1="p" u2="W" k="119" />
-<hkern u1="p" u2="U" k="47" />
-<hkern u1="p" u2="T" k="160" />
-<hkern u1="p" u2="S" k="45" />
-<hkern u1="p" u2="R" k="41" />
-<hkern u1="p" u2="O" k="31" />
-<hkern u1="p" u2="N" k="41" />
-<hkern u1="p" u2="L" k="41" />
-<hkern u1="p" u2="K" k="41" />
-<hkern u1="p" u2="I" k="41" />
-<hkern u1="p" u2="H" k="41" />
-<hkern u1="p" u2="G" k="31" />
-<hkern u1="p" u2="E" k="41" />
-<hkern u1="p" u2="D" k="41" />
-<hkern u1="p" u2="C" k="31" />
-<hkern u1="p" u2="A" k="18" />
-<hkern u1="p" u2="&#x27;" k="92" />
-<hkern u1="p" u2="&#x22;" k="92" />
-<hkern u1="p" u2="&#x7d;" k="57" />
-<hkern u1="p" u2="x" k="8" />
-<hkern u1="p" u2="v" k="6" />
-<hkern u1="p" u2="]" k="63" />
-<hkern u1="p" u2="\" k="53" />
-<hkern u1="p" u2="X" k="59" />
-<hkern u1="p" u2="V" k="197" />
-<hkern u1="p" u2="Q" k="31" />
-<hkern u1="p" u2="P" k="41" />
-<hkern u1="p" u2="M" k="29" />
-<hkern u1="p" u2="F" k="41" />
-<hkern u1="p" u2="B" k="41" />
-<hkern u1="p" u2="&#x3f;" k="41" />
-<hkern u1="p" u2="&#x2a;" k="51" />
-<hkern u1="p" u2="&#x29;" k="23" />
-<hkern u1="p" u2="&#x21;" k="14" />
-<hkern u1="q" u2="&#x201d;" k="31" />
-<hkern u1="q" u2="&#x2019;" k="31" />
-<hkern u1="q" u2="&#x178;" k="156" />
-<hkern u1="q" u2="&#x152;" k="35" />
-<hkern u1="q" u2="&#xdd;" k="156" />
-<hkern u1="q" u2="&#xdc;" k="51" />
-<hkern u1="q" u2="&#xdb;" k="51" />
-<hkern u1="q" u2="&#xda;" k="51" />
-<hkern u1="q" u2="&#xd9;" k="51" />
-<hkern u1="q" u2="&#xd8;" k="35" />
-<hkern u1="q" u2="&#xd6;" k="35" />
-<hkern u1="q" u2="&#xd5;" k="35" />
-<hkern u1="q" u2="&#xd4;" k="35" />
-<hkern u1="q" u2="&#xd3;" k="35" />
-<hkern u1="q" u2="&#xd2;" k="35" />
-<hkern u1="q" u2="&#xd1;" k="27" />
-<hkern u1="q" u2="&#xd0;" k="27" />
-<hkern u1="q" u2="&#xcf;" k="27" />
-<hkern u1="q" u2="&#xce;" k="27" />
-<hkern u1="q" u2="&#xcd;" k="27" />
-<hkern u1="q" u2="&#xcc;" k="27" />
-<hkern u1="q" u2="&#xcb;" k="27" />
-<hkern u1="q" u2="&#xca;" k="27" />
-<hkern u1="q" u2="&#xc9;" k="27" />
-<hkern u1="q" u2="&#xc8;" k="27" />
-<hkern u1="q" u2="&#xc7;" k="37" />
-<hkern u1="q" u2="&#xc5;" k="12" />
-<hkern u1="q" u2="&#xc4;" k="12" />
-<hkern u1="q" u2="&#xc3;" k="12" />
-<hkern u1="q" u2="&#xc2;" k="12" />
-<hkern u1="q" u2="&#xc1;" k="12" />
-<hkern u1="q" u2="&#xc0;" k="12" />
-<hkern u1="q" u2="j" k="-199" />
-<hkern u1="q" u2="Z" k="37" />
-<hkern u1="q" u2="Y" k="156" />
-<hkern u1="q" u2="W" k="102" />
-<hkern u1="q" u2="U" k="51" />
-<hkern u1="q" u2="T" k="119" />
-<hkern u1="q" u2="S" k="49" />
-<hkern u1="q" u2="R" k="27" />
-<hkern u1="q" u2="O" k="35" />
-<hkern u1="q" u2="N" k="27" />
-<hkern u1="q" u2="L" k="27" />
-<hkern u1="q" u2="K" k="27" />
-<hkern u1="q" u2="I" k="27" />
-<hkern u1="q" u2="H" k="27" />
-<hkern u1="q" u2="G" k="37" />
-<hkern u1="q" u2="E" k="27" />
-<hkern u1="q" u2="D" k="27" />
-<hkern u1="q" u2="C" k="37" />
-<hkern u1="q" u2="A" k="12" />
-<hkern u1="q" u2="&#x27;" k="74" />
-<hkern u1="q" u2="&#x22;" k="74" />
-<hkern u1="q" u2="&#x7d;" k="39" />
-<hkern u1="q" u2="]" k="61" />
-<hkern u1="q" u2="\" k="41" />
-<hkern u1="q" u2="X" k="41" />
-<hkern u1="q" u2="V" k="150" />
-<hkern u1="q" u2="Q" k="35" />
-<hkern u1="q" u2="P" k="27" />
-<hkern u1="q" u2="M" k="20" />
-<hkern u1="q" u2="F" k="27" />
-<hkern u1="q" u2="B" k="27" />
-<hkern u1="q" u2="&#x3f;" k="39" />
-<hkern u1="q" u2="&#x2a;" k="18" />
-<hkern u1="q" u2="&#x29;" k="12" />
-<hkern u1="q" u2="&#x21;" k="16" />
-<hkern u1="r" u2="&#x7d;" k="39" />
-<hkern u1="r" u2="x" k="-12" />
-<hkern u1="r" u2="v" k="-49" />
-<hkern u1="r" u2="q" k="8" />
-<hkern u1="r" u2="]" k="61" />
-<hkern u1="r" u2="\" k="23" />
-<hkern u1="r" u2="X" k="137" />
-<hkern u1="r" u2="V" k="68" />
-<hkern u1="r" u2="Q" k="6" />
-<hkern u1="r" u2="P" k="47" />
-<hkern u1="r" u2="M" k="41" />
-<hkern u1="r" u2="F" k="47" />
-<hkern u1="r" u2="B" k="47" />
-<hkern u1="r" u2="&#x3f;" k="37" />
-<hkern u1="r" u2="&#x2f;" k="27" />
-<hkern u1="r" u2="&#x2e;" k="51" />
-<hkern u1="r" u2="&#x2c;" k="47" />
-<hkern u1="r" u2="&#x29;" k="41" />
-<hkern u1="r" u2="&#x21;" k="18" />
-<hkern u1="s" u2="&#x7d;" k="51" />
-<hkern u1="s" u2="]" k="55" />
-<hkern u1="s" u2="\" k="47" />
-<hkern u1="s" u2="X" k="37" />
-<hkern u1="s" u2="V" k="178" />
-<hkern u1="s" u2="Q" k="33" />
-<hkern u1="s" u2="P" k="45" />
-<hkern u1="s" u2="M" k="25" />
-<hkern u1="s" u2="F" k="45" />
-<hkern u1="s" u2="B" k="45" />
-<hkern u1="s" u2="&#x3f;" k="35" />
-<hkern u1="s" u2="&#x2a;" k="23" />
-<hkern u1="s" u2="&#x29;" k="12" />
-<hkern u1="s" u2="&#x21;" k="10" />
-<hkern u1="t" u2="&#x7d;" k="41" />
-<hkern u1="t" u2="]" k="59" />
-<hkern u1="t" u2="\" k="41" />
-<hkern u1="t" u2="X" k="29" />
-<hkern u1="t" u2="V" k="68" />
-<hkern u1="t" u2="Q" k="31" />
-<hkern u1="t" u2="P" k="47" />
-<hkern u1="t" u2="M" k="23" />
-<hkern u1="t" u2="F" k="47" />
-<hkern u1="t" u2="B" k="47" />
-<hkern u1="t" u2="&#x3f;" k="37" />
-<hkern u1="t" u2="&#x2a;" k="12" />
-<hkern u1="t" u2="&#x21;" k="10" />
-<hkern u1="u" u2="&#x7d;" k="39" />
-<hkern u1="u" u2="]" k="53" />
-<hkern u1="u" u2="\" k="41" />
-<hkern u1="u" u2="X" k="41" />
-<hkern u1="u" u2="V" k="150" />
-<hkern u1="u" u2="Q" k="35" />
-<hkern u1="u" u2="P" k="27" />
-<hkern u1="u" u2="F" k="27" />
-<hkern u1="u" u2="B" k="27" />
-<hkern u1="u" u2="&#x2a;" k="18" />
-<hkern u1="u" u2="&#x29;" k="12" />
-<hkern u1="u" u2="&#x21;" k="16" />
-<hkern u1="u" u2="M" k="20" />
-<hkern u1="u" u2="&#x3f;" k="39" />
-<hkern u1="v" u2="&#x2039;" k="10" />
-<hkern u1="v" u2="&#x201e;" k="41" />
-<hkern u1="v" u2="&#x201a;" k="41" />
-<hkern u1="v" u2="&#x178;" k="66" />
-<hkern u1="v" u2="&#x153;" k="6" />
-<hkern u1="v" u2="&#x152;" k="6" />
-<hkern u1="v" u2="&#xf8;" k="6" />
-<hkern u1="v" u2="&#xf6;" k="6" />
-<hkern u1="v" u2="&#xf5;" k="6" />
-<hkern u1="v" u2="&#xf4;" k="6" />
-<hkern u1="v" u2="&#xf3;" k="6" />
-<hkern u1="v" u2="&#xf2;" k="6" />
-<hkern u1="v" u2="&#xeb;" k="6" />
-<hkern u1="v" u2="&#xea;" k="6" />
-<hkern u1="v" u2="&#xe9;" k="6" />
-<hkern u1="v" u2="&#xe8;" k="6" />
-<hkern u1="v" u2="&#xe7;" k="6" />
-<hkern u1="v" u2="&#xdd;" k="66" />
-<hkern u1="v" u2="&#xdc;" k="39" />
-<hkern u1="v" u2="&#xdb;" k="39" />
-<hkern u1="v" u2="&#xda;" k="39" />
-<hkern u1="v" u2="&#xd9;" k="39" />
-<hkern u1="v" u2="&#xd8;" k="6" />
-<hkern u1="v" u2="&#xd6;" k="6" />
-<hkern u1="v" u2="&#xd5;" k="6" />
-<hkern u1="v" u2="&#xd4;" k="6" />
-<hkern u1="v" u2="&#xd3;" k="6" />
-<hkern u1="v" u2="&#xd2;" k="6" />
-<hkern u1="v" u2="&#xd1;" k="47" />
-<hkern u1="v" u2="&#xd0;" k="49" />
-<hkern u1="v" u2="&#xcf;" k="49" />
-<hkern u1="v" u2="&#xce;" k="49" />
-<hkern u1="v" u2="&#xcd;" k="49" />
-<hkern u1="v" u2="&#xcc;" k="49" />
-<hkern u1="v" u2="&#xcb;" k="49" />
-<hkern u1="v" u2="&#xca;" k="49" />
-<hkern u1="v" u2="&#xc9;" k="49" />
-<hkern u1="v" u2="&#xc8;" k="49" />
-<hkern u1="v" u2="&#xc7;" k="6" />
-<hkern u1="v" u2="&#xc5;" k="68" />
-<hkern u1="v" u2="&#xc4;" k="68" />
-<hkern u1="v" u2="&#xc3;" k="68" />
-<hkern u1="v" u2="&#xc2;" k="68" />
-<hkern u1="v" u2="&#xc1;" k="68" />
-<hkern u1="v" u2="&#xc0;" k="68" />
-<hkern u1="v" u2="&#xab;" k="10" />
-<hkern u1="v" u2="o" k="6" />
-<hkern u1="v" u2="g" k="37" />
-<hkern u1="v" u2="e" k="6" />
-<hkern u1="v" u2="c" k="6" />
-<hkern u1="v" u2="Z" k="96" />
-<hkern u1="v" u2="Y" k="66" />
-<hkern u1="v" u2="W" k="61" />
-<hkern u1="v" u2="U" k="39" />
-<hkern u1="v" u2="T" k="61" />
-<hkern u1="v" u2="S" k="45" />
-<hkern u1="v" u2="R" k="49" />
-<hkern u1="v" u2="O" k="6" />
-<hkern u1="v" u2="N" k="47" />
-<hkern u1="v" u2="L" k="49" />
-<hkern u1="v" u2="K" k="49" />
-<hkern u1="v" u2="J" k="82" />
-<hkern u1="v" u2="I" k="49" />
-<hkern u1="v" u2="H" k="49" />
-<hkern u1="v" u2="G" k="8" />
-<hkern u1="v" u2="E" k="49" />
-<hkern u1="v" u2="D" k="49" />
-<hkern u1="v" u2="C" k="6" />
-<hkern u1="v" u2="A" k="68" />
-<hkern u1="v" u2="&#x27;" k="55" />
-<hkern u1="v" u2="&#x22;" k="55" />
-<hkern u1="v" u2="&#x7d;" k="25" />
-<hkern u1="v" u2="q" k="6" />
-<hkern u1="v" u2="]" k="31" />
-<hkern u1="v" u2="\" k="14" />
-<hkern u1="v" u2="X" k="94" />
-<hkern u1="v" u2="V" k="61" />
-<hkern u1="v" u2="Q" k="6" />
-<hkern u1="v" u2="P" k="49" />
-<hkern u1="v" u2="M" k="41" />
-<hkern u1="v" u2="F" k="49" />
-<hkern u1="v" u2="B" k="49" />
-<hkern u1="v" u2="&#x3f;" k="25" />
-<hkern u1="v" u2="&#x2f;" k="25" />
-<hkern u1="v" u2="&#x2e;" k="43" />
-<hkern u1="v" u2="&#x2c;" k="39" />
-<hkern u1="v" u2="&#x29;" k="27" />
-<hkern u1="v" u2="&#x21;" k="18" />
-<hkern u1="w" u2="&#x7d;" k="29" />
-<hkern u1="w" u2="]" k="33" />
-<hkern u1="w" u2="\" k="18" />
-<hkern u1="w" u2="X" k="59" />
-<hkern u1="w" u2="V" k="61" />
-<hkern u1="w" u2="Q" k="10" />
-<hkern u1="w" u2="P" k="47" />
-<hkern u1="w" u2="M" k="37" />
-<hkern u1="w" u2="F" k="47" />
-<hkern u1="w" u2="B" k="47" />
-<hkern u1="w" u2="&#x3f;" k="27" />
-<hkern u1="w" u2="&#x2f;" k="18" />
-<hkern u1="w" u2="&#x2e;" k="20" />
-<hkern u1="w" u2="&#x2c;" k="20" />
-<hkern u1="w" u2="&#x29;" k="25" />
-<hkern u1="w" u2="&#x21;" k="18" />
-<hkern u1="x" u2="&#x2039;" k="18" />
-<hkern u1="x" u2="&#x201d;" k="12" />
-<hkern u1="x" u2="&#x2019;" k="12" />
-<hkern u1="x" u2="&#x2014;" k="10" />
-<hkern u1="x" u2="&#x2013;" k="10" />
-<hkern u1="x" u2="&#x178;" k="76" />
-<hkern u1="x" u2="&#x153;" k="10" />
-<hkern u1="x" u2="&#x152;" k="25" />
-<hkern u1="x" u2="&#xfc;" k="6" />
-<hkern u1="x" u2="&#xfb;" k="6" />
-<hkern u1="x" u2="&#xfa;" k="6" />
-<hkern u1="x" u2="&#xf9;" k="6" />
-<hkern u1="x" u2="&#xf8;" k="10" />
-<hkern u1="x" u2="&#xf6;" k="10" />
-<hkern u1="x" u2="&#xf5;" k="10" />
-<hkern u1="x" u2="&#xf4;" k="10" />
-<hkern u1="x" u2="&#xf3;" k="10" />
-<hkern u1="x" u2="&#xf2;" k="10" />
-<hkern u1="x" u2="&#xeb;" k="10" />
-<hkern u1="x" u2="&#xea;" k="10" />
-<hkern u1="x" u2="&#xe9;" k="10" />
-<hkern u1="x" u2="&#xe8;" k="10" />
-<hkern u1="x" u2="&#xe7;" k="12" />
-<hkern u1="x" u2="&#xdd;" k="76" />
-<hkern u1="x" u2="&#xdc;" k="53" />
-<hkern u1="x" u2="&#xdb;" k="53" />
-<hkern u1="x" u2="&#xda;" k="53" />
-<hkern u1="x" u2="&#xd9;" k="53" />
-<hkern u1="x" u2="&#xd8;" k="25" />
-<hkern u1="x" u2="&#xd6;" k="25" />
-<hkern u1="x" u2="&#xd5;" k="25" />
-<hkern u1="x" u2="&#xd4;" k="25" />
-<hkern u1="x" u2="&#xd3;" k="25" />
-<hkern u1="x" u2="&#xd2;" k="25" />
-<hkern u1="x" u2="&#xd1;" k="51" />
-<hkern u1="x" u2="&#xd0;" k="51" />
-<hkern u1="x" u2="&#xcf;" k="51" />
-<hkern u1="x" u2="&#xce;" k="51" />
-<hkern u1="x" u2="&#xcd;" k="51" />
-<hkern u1="x" u2="&#xcc;" k="51" />
-<hkern u1="x" u2="&#xcb;" k="51" />
-<hkern u1="x" u2="&#xca;" k="51" />
-<hkern u1="x" u2="&#xc9;" k="51" />
-<hkern u1="x" u2="&#xc8;" k="51" />
-<hkern u1="x" u2="&#xc7;" k="25" />
-<hkern u1="x" u2="&#xab;" k="18" />
-<hkern u1="x" u2="u" k="6" />
-<hkern u1="x" u2="o" k="10" />
-<hkern u1="x" u2="e" k="10" />
-<hkern u1="x" u2="d" k="10" />
-<hkern u1="x" u2="c" k="12" />
-<hkern u1="x" u2="Z" k="20" />
-<hkern u1="x" u2="Y" k="76" />
-<hkern u1="x" u2="W" k="66" />
-<hkern u1="x" u2="U" k="53" />
-<hkern u1="x" u2="T" k="84" />
-<hkern u1="x" u2="S" k="37" />
-<hkern u1="x" u2="R" k="51" />
-<hkern u1="x" u2="O" k="25" />
-<hkern u1="x" u2="N" k="51" />
-<hkern u1="x" u2="L" k="51" />
-<hkern u1="x" u2="K" k="51" />
-<hkern u1="x" u2="I" k="51" />
-<hkern u1="x" u2="H" k="51" />
-<hkern u1="x" u2="G" k="27" />
-<hkern u1="x" u2="E" k="51" />
-<hkern u1="x" u2="D" k="51" />
-<hkern u1="x" u2="C" k="25" />
-<hkern u1="x" u2="&#x2d;" k="10" />
-<hkern u1="x" u2="&#x27;" k="66" />
-<hkern u1="x" u2="&#x22;" k="66" />
-<hkern u1="x" u2="&#xf0;" k="8" />
-<hkern u1="x" u2="&#x7d;" k="31" />
-<hkern u1="x" u2="q" k="10" />
-<hkern u1="x" u2="]" k="37" />
-<hkern u1="x" u2="\" k="27" />
-<hkern u1="x" u2="X" k="20" />
-<hkern u1="x" u2="V" k="66" />
-<hkern u1="x" u2="Q" k="25" />
-<hkern u1="x" u2="P" k="51" />
-<hkern u1="x" u2="M" k="20" />
-<hkern u1="x" u2="F" k="51" />
-<hkern u1="x" u2="B" k="51" />
-<hkern u1="x" u2="&#x3f;" k="29" />
-<hkern u1="x" u2="&#x21;" k="14" />
-<hkern u1="y" u2="&#x7d;" k="27" />
-<hkern u1="y" u2="]" k="31" />
-<hkern u1="y" u2="\" k="14" />
-<hkern u1="y" u2="X" k="86" />
-<hkern u1="y" u2="V" k="61" />
-<hkern u1="y" u2="Q" k="6" />
-<hkern u1="y" u2="P" k="47" />
-<hkern u1="y" u2="M" k="43" />
-<hkern u1="y" u2="F" k="47" />
-<hkern u1="y" u2="B" k="47" />
-<hkern u1="y" u2="&#x3f;" k="25" />
-<hkern u1="y" u2="&#x2f;" k="23" />
-<hkern u1="y" u2="&#x2e;" k="35" />
-<hkern u1="y" u2="&#x2c;" k="33" />
-<hkern u1="y" u2="&#x29;" k="27" />
-<hkern u1="y" u2="&#x21;" k="18" />
-<hkern u1="z" u2="&#x7d;" k="33" />
-<hkern u1="z" u2="]" k="39" />
-<hkern u1="z" u2="\" k="27" />
-<hkern u1="z" u2="X" k="33" />
-<hkern u1="z" u2="V" k="61" />
-<hkern u1="z" u2="Q" k="25" />
-<hkern u1="z" u2="P" k="47" />
-<hkern u1="z" u2="M" k="29" />
-<hkern u1="z" u2="F" k="47" />
-<hkern u1="z" u2="B" k="47" />
-<hkern u1="z" u2="&#x3f;" k="29" />
-<hkern u1="z" u2="&#x21;" k="12" />
-<hkern u1="&#x7b;" g2="uniFB02" k="27" />
-<hkern u1="&#x7b;" g2="uniFB01" k="27" />
-<hkern u1="&#x7b;" u2="&#x178;" k="-41" />
-<hkern u1="&#x7b;" u2="&#x153;" k="59" />
-<hkern u1="&#x7b;" u2="&#x152;" k="25" />
-<hkern u1="&#x7b;" u2="&#xfe;" k="39" />
-<hkern u1="&#x7b;" u2="&#xfc;" k="45" />
-<hkern u1="&#x7b;" u2="&#xfb;" k="45" />
-<hkern u1="&#x7b;" u2="&#xfa;" k="45" />
-<hkern u1="&#x7b;" u2="&#xf9;" k="45" />
-<hkern u1="&#x7b;" u2="&#xf8;" k="59" />
-<hkern u1="&#x7b;" u2="&#xf6;" k="59" />
-<hkern u1="&#x7b;" u2="&#xf5;" k="59" />
-<hkern u1="&#x7b;" u2="&#xf4;" k="59" />
-<hkern u1="&#x7b;" u2="&#xf3;" k="59" />
-<hkern u1="&#x7b;" u2="&#xf2;" k="59" />
-<hkern u1="&#x7b;" u2="&#xf1;" k="43" />
-<hkern u1="&#x7b;" u2="&#xeb;" k="59" />
-<hkern u1="&#x7b;" u2="&#xea;" k="59" />
-<hkern u1="&#x7b;" u2="&#xe9;" k="59" />
-<hkern u1="&#x7b;" u2="&#xe8;" k="59" />
-<hkern u1="&#x7b;" u2="&#xe7;" k="59" />
-<hkern u1="&#x7b;" u2="&#xe6;" k="53" />
-<hkern u1="&#x7b;" u2="&#xe5;" k="53" />
-<hkern u1="&#x7b;" u2="&#xe4;" k="53" />
-<hkern u1="&#x7b;" u2="&#xe3;" k="53" />
-<hkern u1="&#x7b;" u2="&#xe2;" k="53" />
-<hkern u1="&#x7b;" u2="&#xe1;" k="53" />
-<hkern u1="&#x7b;" u2="&#xe0;" k="53" />
-<hkern u1="&#x7b;" u2="&#xdd;" k="-41" />
-<hkern u1="&#x7b;" u2="&#xd8;" k="25" />
-<hkern u1="&#x7b;" u2="&#xd6;" k="25" />
-<hkern u1="&#x7b;" u2="&#xd5;" k="25" />
-<hkern u1="&#x7b;" u2="&#xd4;" k="25" />
-<hkern u1="&#x7b;" u2="&#xd3;" k="25" />
-<hkern u1="&#x7b;" u2="&#xd2;" k="25" />
-<hkern u1="&#x7b;" u2="&#xc7;" k="25" />
-<hkern u1="&#x7b;" u2="z" k="33" />
-<hkern u1="&#x7b;" u2="w" k="25" />
-<hkern u1="&#x7b;" u2="u" k="45" />
-<hkern u1="&#x7b;" u2="t" k="43" />
-<hkern u1="&#x7b;" u2="s" k="49" />
-<hkern u1="&#x7b;" u2="r" k="43" />
-<hkern u1="&#x7b;" u2="p" k="39" />
-<hkern u1="&#x7b;" u2="o" k="59" />
-<hkern u1="&#x7b;" u2="n" k="43" />
-<hkern u1="&#x7b;" u2="j" k="-272" />
-<hkern u1="&#x7b;" u2="g" k="25" />
-<hkern u1="&#x7b;" u2="f" k="27" />
-<hkern u1="&#x7b;" u2="e" k="59" />
-<hkern u1="&#x7b;" u2="d" k="55" />
-<hkern u1="&#x7b;" u2="c" k="59" />
-<hkern u1="&#x7b;" u2="a" k="53" />
-<hkern u1="&#x7b;" u2="Y" k="-41" />
-<hkern u1="&#x7b;" u2="O" k="25" />
-<hkern u1="&#x7b;" u2="J" k="10" />
-<hkern u1="&#x7b;" u2="G" k="25" />
-<hkern u1="&#x7b;" u2="C" k="25" />
-<hkern u1="&#x7b;" u2="&#xf0;" k="31" />
-<hkern u1="&#x7b;" u2="&#xef;" k="-117" />
-<hkern u1="&#x7b;" u2="&#xee;" k="-68" />
-<hkern u1="&#x7b;" u2="&#xdf;" k="25" />
-<hkern u1="&#x7b;" u2="x" k="29" />
-<hkern u1="&#x7b;" u2="v" k="23" />
-<hkern u1="&#x7b;" u2="q" k="59" />
-<hkern u1="&#x7b;" u2="m" k="43" />
-<hkern u1="&#x7b;" u2="V" k="-35" />
-<hkern u1="&#x7b;" u2="Q" k="25" />
-<hkern u1="&#x7b;" u2="M" k="12" />
-<hkern u1="&#x7b;" u2="&#x38;" k="10" />
-<hkern u1="&#x7b;" u2="&#x36;" k="35" />
-<hkern u1="&#x7b;" u2="&#x34;" k="20" />
-<hkern u1="&#x7b;" u2="&#x30;" k="25" />
-<hkern u1="&#xa3;" u2="&#x36;" k="10" />
-<hkern u1="&#xa3;" u2="&#x30;" k="14" />
-<hkern u1="&#xab;" u2="&#xde;" k="12" />
-<hkern u1="&#xab;" u2="V" k="31" />
-<hkern u1="&#xab;" u2="P" k="12" />
-<hkern u1="&#xab;" u2="F" k="12" />
-<hkern u1="&#xab;" u2="B" k="12" />
-<hkern u1="&#xb0;" u2="&#x36;" k="29" />
-<hkern u1="&#xb0;" u2="&#x34;" k="76" />
-<hkern u1="&#xb0;" u2="&#x30;" k="16" />
-<hkern u1="&#xb7;" u2="L" k="16" />
-<hkern u1="&#xb7;" u2="&#x39;" k="10" />
-<hkern u1="&#xb7;" u2="&#x38;" k="12" />
-<hkern u1="&#xb7;" u2="&#x37;" k="55" />
-<hkern u1="&#xb7;" u2="&#x35;" k="14" />
-<hkern u1="&#xb7;" u2="&#x33;" k="37" />
-<hkern u1="&#xb7;" u2="&#x32;" k="68" />
-<hkern u1="&#xb7;" u2="&#x31;" k="37" />
-<hkern u1="&#xbb;" u2="&#xde;" k="12" />
-<hkern u1="&#xbb;" u2="x" k="18" />
-<hkern u1="&#xbb;" u2="v" k="10" />
-<hkern u1="&#xbb;" u2="X" k="18" />
-<hkern u1="&#xbb;" u2="V" k="72" />
-<hkern u1="&#xbb;" u2="P" k="12" />
-<hkern u1="&#xbb;" u2="F" k="12" />
-<hkern u1="&#xbb;" u2="B" k="12" />
-<hkern u1="&#xc0;" u2="&#xfe;" k="12" />
-<hkern u1="&#xc0;" u2="&#xf0;" k="27" />
-<hkern u1="&#xc0;" u2="&#xdf;" k="12" />
-<hkern u1="&#xc0;" u2="v" k="66" />
-<hkern u1="&#xc0;" u2="q" k="18" />
-<hkern u1="&#xc0;" u2="m" k="12" />
-<hkern u1="&#xc0;" u2="b" k="12" />
-<hkern u1="&#xc0;" u2="]" k="12" />
-<hkern u1="&#xc0;" u2="\" k="61" />
-<hkern u1="&#xc0;" u2="V" k="115" />
-<hkern u1="&#xc0;" u2="Q" k="12" />
-<hkern u1="&#xc0;" u2="&#x3f;" k="18" />
-<hkern u1="&#xc0;" u2="&#x2f;" k="-31" />
-<hkern u1="&#xc0;" u2="&#x2a;" k="68" />
-<hkern u1="&#xc0;" u2="&#x29;" k="-18" />
-<hkern u1="&#xc1;" u2="&#xfe;" k="12" />
-<hkern u1="&#xc1;" u2="&#xf0;" k="27" />
-<hkern u1="&#xc1;" u2="&#xdf;" k="12" />
-<hkern u1="&#xc1;" u2="v" k="66" />
-<hkern u1="&#xc1;" u2="q" k="18" />
-<hkern u1="&#xc1;" u2="m" k="12" />
-<hkern u1="&#xc1;" u2="b" k="12" />
-<hkern u1="&#xc1;" u2="]" k="12" />
-<hkern u1="&#xc1;" u2="\" k="61" />
-<hkern u1="&#xc1;" u2="V" k="115" />
-<hkern u1="&#xc1;" u2="Q" k="12" />
-<hkern u1="&#xc1;" u2="&#x3f;" k="18" />
-<hkern u1="&#xc1;" u2="&#x2f;" k="-31" />
-<hkern u1="&#xc1;" u2="&#x2a;" k="68" />
-<hkern u1="&#xc1;" u2="&#x29;" k="-18" />
-<hkern u1="&#xc2;" u2="&#xfe;" k="12" />
-<hkern u1="&#xc2;" u2="&#xf0;" k="27" />
-<hkern u1="&#xc2;" u2="&#xdf;" k="12" />
-<hkern u1="&#xc2;" u2="v" k="66" />
-<hkern u1="&#xc2;" u2="q" k="18" />
-<hkern u1="&#xc2;" u2="m" k="12" />
-<hkern u1="&#xc2;" u2="b" k="12" />
-<hkern u1="&#xc2;" u2="]" k="12" />
-<hkern u1="&#xc2;" u2="\" k="61" />
-<hkern u1="&#xc2;" u2="V" k="115" />
-<hkern u1="&#xc2;" u2="Q" k="12" />
-<hkern u1="&#xc2;" u2="&#x3f;" k="18" />
-<hkern u1="&#xc2;" u2="&#x2f;" k="-31" />
-<hkern u1="&#xc2;" u2="&#x2a;" k="68" />
-<hkern u1="&#xc2;" u2="&#x29;" k="-18" />
-<hkern u1="&#xc3;" u2="&#xfe;" k="12" />
-<hkern u1="&#xc3;" u2="&#xf0;" k="27" />
-<hkern u1="&#xc3;" u2="&#xdf;" k="12" />
-<hkern u1="&#xc3;" u2="v" k="66" />
-<hkern u1="&#xc3;" u2="q" k="18" />
-<hkern u1="&#xc3;" u2="m" k="12" />
-<hkern u1="&#xc3;" u2="b" k="12" />
-<hkern u1="&#xc3;" u2="]" k="12" />
-<hkern u1="&#xc3;" u2="\" k="61" />
-<hkern u1="&#xc3;" u2="V" k="115" />
-<hkern u1="&#xc3;" u2="Q" k="12" />
-<hkern u1="&#xc3;" u2="&#x3f;" k="18" />
-<hkern u1="&#xc3;" u2="&#x2f;" k="-31" />
-<hkern u1="&#xc3;" u2="&#x2a;" k="68" />
-<hkern u1="&#xc3;" u2="&#x29;" k="-18" />
-<hkern u1="&#xc4;" u2="&#xfe;" k="12" />
-<hkern u1="&#xc4;" u2="&#xf0;" k="27" />
-<hkern u1="&#xc4;" u2="&#xdf;" k="12" />
-<hkern u1="&#xc4;" u2="v" k="66" />
-<hkern u1="&#xc4;" u2="q" k="18" />
-<hkern u1="&#xc4;" u2="m" k="12" />
-<hkern u1="&#xc4;" u2="b" k="12" />
-<hkern u1="&#xc4;" u2="]" k="12" />
-<hkern u1="&#xc4;" u2="\" k="61" />
-<hkern u1="&#xc4;" u2="V" k="115" />
-<hkern u1="&#xc4;" u2="Q" k="12" />
-<hkern u1="&#xc4;" u2="&#x3f;" k="18" />
-<hkern u1="&#xc4;" u2="&#x2f;" k="-31" />
-<hkern u1="&#xc4;" u2="&#x2a;" k="68" />
-<hkern u1="&#xc4;" u2="&#x29;" k="-18" />
-<hkern u1="&#xc5;" u2="&#xfe;" k="12" />
-<hkern u1="&#xc5;" u2="&#xf0;" k="27" />
-<hkern u1="&#xc5;" u2="&#xdf;" k="12" />
-<hkern u1="&#xc5;" u2="v" k="66" />
-<hkern u1="&#xc5;" u2="q" k="18" />
-<hkern u1="&#xc5;" u2="m" k="12" />
-<hkern u1="&#xc5;" u2="b" k="12" />
-<hkern u1="&#xc5;" u2="]" k="12" />
-<hkern u1="&#xc5;" u2="\" k="61" />
-<hkern u1="&#xc5;" u2="V" k="115" />
-<hkern u1="&#xc5;" u2="Q" k="12" />
-<hkern u1="&#xc5;" u2="&#x3f;" k="18" />
-<hkern u1="&#xc5;" u2="&#x2f;" k="-31" />
-<hkern u1="&#xc5;" u2="&#x2a;" k="68" />
-<hkern u1="&#xc5;" u2="&#x29;" k="-18" />
-<hkern u1="&#xc6;" u2="&#xfe;" k="33" />
-<hkern u1="&#xc6;" u2="&#xf0;" k="43" />
-<hkern u1="&#xc6;" u2="&#xef;" k="-41" />
-<hkern u1="&#xc6;" u2="&#xee;" k="-4" />
-<hkern u1="&#xc6;" u2="&#xdf;" k="41" />
-<hkern u1="&#xc6;" u2="x" k="31" />
-<hkern u1="&#xc6;" u2="v" k="59" />
-<hkern u1="&#xc6;" u2="q" k="39" />
-<hkern u1="&#xc6;" u2="m" k="43" />
-<hkern u1="&#xc6;" u2="b" k="31" />
-<hkern u1="&#xc7;" u2="&#xfe;" k="27" />
-<hkern u1="&#xc7;" u2="&#xf0;" k="41" />
-<hkern u1="&#xc7;" u2="&#xef;" k="-80" />
-<hkern u1="&#xc7;" u2="&#xee;" k="-27" />
-<hkern u1="&#xc7;" u2="&#xec;" k="14" />
-<hkern u1="&#xc7;" u2="&#xdf;" k="39" />
-<hkern u1="&#xc7;" u2="x" k="49" />
-<hkern u1="&#xc7;" u2="v" k="68" />
-<hkern u1="&#xc7;" u2="q" k="33" />
-<hkern u1="&#xc7;" u2="m" k="41" />
-<hkern u1="&#xc7;" u2="b" k="27" />
-<hkern u1="&#xc7;" u2="Q" k="6" />
-<hkern u1="&#xc8;" u2="&#xfe;" k="33" />
-<hkern u1="&#xc8;" u2="&#xf0;" k="43" />
-<hkern u1="&#xc8;" u2="&#xef;" k="-41" />
-<hkern u1="&#xc8;" u2="&#xee;" k="-4" />
-<hkern u1="&#xc8;" u2="&#xdf;" k="41" />
-<hkern u1="&#xc8;" u2="x" k="31" />
-<hkern u1="&#xc8;" u2="v" k="59" />
-<hkern u1="&#xc8;" u2="q" k="39" />
-<hkern u1="&#xc8;" u2="m" k="43" />
-<hkern u1="&#xc8;" u2="b" k="31" />
-<hkern u1="&#xc9;" u2="&#xfe;" k="33" />
-<hkern u1="&#xc9;" u2="&#xf0;" k="43" />
-<hkern u1="&#xc9;" u2="&#xef;" k="-41" />
-<hkern u1="&#xc9;" u2="&#xee;" k="-4" />
-<hkern u1="&#xc9;" u2="&#xdf;" k="41" />
-<hkern u1="&#xc9;" u2="x" k="31" />
-<hkern u1="&#xc9;" u2="v" k="59" />
-<hkern u1="&#xc9;" u2="q" k="39" />
-<hkern u1="&#xc9;" u2="m" k="43" />
-<hkern u1="&#xc9;" u2="b" k="31" />
-<hkern u1="&#xca;" u2="&#xfe;" k="33" />
-<hkern u1="&#xca;" u2="&#xf0;" k="43" />
-<hkern u1="&#xca;" u2="&#xef;" k="-41" />
-<hkern u1="&#xca;" u2="&#xee;" k="-4" />
-<hkern u1="&#xca;" u2="&#xdf;" k="41" />
-<hkern u1="&#xca;" u2="x" k="31" />
-<hkern u1="&#xca;" u2="v" k="59" />
-<hkern u1="&#xca;" u2="q" k="39" />
-<hkern u1="&#xca;" u2="m" k="43" />
-<hkern u1="&#xca;" u2="b" k="31" />
-<hkern u1="&#xcb;" u2="&#xfe;" k="33" />
-<hkern u1="&#xcb;" u2="&#xf0;" k="43" />
-<hkern u1="&#xcb;" u2="&#xef;" k="-41" />
-<hkern u1="&#xcb;" u2="&#xee;" k="-4" />
-<hkern u1="&#xcb;" u2="&#xdf;" k="41" />
-<hkern u1="&#xcb;" u2="x" k="31" />
-<hkern u1="&#xcb;" u2="v" k="59" />
-<hkern u1="&#xcb;" u2="q" k="39" />
-<hkern u1="&#xcb;" u2="m" k="43" />
-<hkern u1="&#xcb;" u2="b" k="31" />
-<hkern u1="&#xcc;" u2="&#xfe;" k="27" />
-<hkern u1="&#xcc;" u2="&#xf0;" k="41" />
-<hkern u1="&#xcc;" u2="&#xef;" k="14" />
-<hkern u1="&#xcc;" u2="&#xdf;" k="27" />
-<hkern u1="&#xcc;" u2="x" k="49" />
-<hkern u1="&#xcc;" u2="v" k="49" />
-<hkern u1="&#xcc;" u2="q" k="41" />
-<hkern u1="&#xcc;" u2="m" k="27" />
-<hkern u1="&#xcc;" u2="b" k="27" />
-<hkern u1="&#xcc;" u2="\" k="10" />
-<hkern u1="&#xcc;" u2="&#x3f;" k="10" />
-<hkern u1="&#xcc;" u2="&#x3a;" k="14" />
-<hkern u1="&#xcc;" u2="&#x2f;" k="12" />
-<hkern u1="&#xcc;" u2="&#x2e;" k="29" />
-<hkern u1="&#xcc;" u2="&#x2c;" k="29" />
-<hkern u1="&#xcc;" u2="&#x2a;" k="10" />
-<hkern u1="&#xcc;" u2="&#x21;" k="12" />
-<hkern u1="&#xcd;" u2="&#xfe;" k="27" />
-<hkern u1="&#xcd;" u2="&#xf0;" k="41" />
-<hkern u1="&#xcd;" u2="&#xef;" k="14" />
-<hkern u1="&#xcd;" u2="&#xdf;" k="27" />
-<hkern u1="&#xcd;" u2="x" k="49" />
-<hkern u1="&#xcd;" u2="v" k="49" />
-<hkern u1="&#xcd;" u2="q" k="41" />
-<hkern u1="&#xcd;" u2="m" k="27" />
-<hkern u1="&#xcd;" u2="b" k="27" />
-<hkern u1="&#xcd;" u2="\" k="10" />
-<hkern u1="&#xcd;" u2="&#x3f;" k="10" />
-<hkern u1="&#xcd;" u2="&#x3a;" k="14" />
-<hkern u1="&#xcd;" u2="&#x2f;" k="12" />
-<hkern u1="&#xcd;" u2="&#x2e;" k="29" />
-<hkern u1="&#xcd;" u2="&#x2c;" k="29" />
-<hkern u1="&#xcd;" u2="&#x2a;" k="10" />
-<hkern u1="&#xcd;" u2="&#x21;" k="12" />
-<hkern u1="&#xce;" u2="&#xfe;" k="27" />
-<hkern u1="&#xce;" u2="&#xf0;" k="41" />
-<hkern u1="&#xce;" u2="&#xef;" k="14" />
-<hkern u1="&#xce;" u2="&#xdf;" k="27" />
-<hkern u1="&#xce;" u2="x" k="49" />
-<hkern u1="&#xce;" u2="v" k="49" />
-<hkern u1="&#xce;" u2="q" k="41" />
-<hkern u1="&#xce;" u2="m" k="27" />
-<hkern u1="&#xce;" u2="b" k="27" />
-<hkern u1="&#xce;" u2="\" k="10" />
-<hkern u1="&#xce;" u2="&#x3f;" k="10" />
-<hkern u1="&#xce;" u2="&#x3a;" k="14" />
-<hkern u1="&#xce;" u2="&#x2f;" k="12" />
-<hkern u1="&#xce;" u2="&#x2e;" k="29" />
-<hkern u1="&#xce;" u2="&#x2c;" k="29" />
-<hkern u1="&#xce;" u2="&#x2a;" k="10" />
-<hkern u1="&#xce;" u2="&#x21;" k="12" />
-<hkern u1="&#xcf;" u2="&#xfe;" k="27" />
-<hkern u1="&#xcf;" u2="&#xf0;" k="41" />
-<hkern u1="&#xcf;" u2="&#xef;" k="14" />
-<hkern u1="&#xcf;" u2="&#xdf;" k="27" />
-<hkern u1="&#xcf;" u2="x" k="49" />
-<hkern u1="&#xcf;" u2="v" k="49" />
-<hkern u1="&#xcf;" u2="q" k="41" />
-<hkern u1="&#xcf;" u2="m" k="27" />
-<hkern u1="&#xcf;" u2="b" k="27" />
-<hkern u1="&#xcf;" u2="\" k="10" />
-<hkern u1="&#xcf;" u2="&#x3f;" k="10" />
-<hkern u1="&#xcf;" u2="&#x3a;" k="14" />
-<hkern u1="&#xcf;" u2="&#x2f;" k="12" />
-<hkern u1="&#xcf;" u2="&#x2e;" k="29" />
-<hkern u1="&#xcf;" u2="&#x2c;" k="29" />
-<hkern u1="&#xcf;" u2="&#x2a;" k="10" />
-<hkern u1="&#xcf;" u2="&#x21;" k="12" />
-<hkern u1="&#xd0;" u2="&#xfe;" k="35" />
-<hkern u1="&#xd0;" u2="&#xf0;" k="27" />
-<hkern u1="&#xd0;" u2="&#xdf;" k="35" />
-<hkern u1="&#xd0;" u2="&#x7d;" k="27" />
-<hkern u1="&#xd0;" u2="x" k="27" />
-<hkern u1="&#xd0;" u2="v" k="6" />
-<hkern u1="&#xd0;" u2="q" k="33" />
-<hkern u1="&#xd0;" u2="m" k="37" />
-<hkern u1="&#xd0;" u2="b" k="35" />
-<hkern u1="&#xd0;" u2="]" k="25" />
-<hkern u1="&#xd0;" u2="\" k="14" />
-<hkern u1="&#xd0;" u2="X" k="23" />
-<hkern u1="&#xd0;" u2="V" k="14" />
-<hkern u1="&#xd0;" u2="&#x3f;" k="20" />
-<hkern u1="&#xd0;" u2="&#x2f;" k="16" />
-<hkern u1="&#xd0;" u2="&#x2e;" k="53" />
-<hkern u1="&#xd0;" u2="&#x2c;" k="57" />
-<hkern u1="&#xd0;" u2="&#x29;" k="23" />
-<hkern u1="&#xd0;" u2="&#x21;" k="12" />
-<hkern u1="&#xd1;" u2="&#xfe;" k="27" />
-<hkern u1="&#xd1;" u2="&#xf0;" k="43" />
-<hkern u1="&#xd1;" u2="&#xdf;" k="25" />
-<hkern u1="&#xd1;" u2="x" k="49" />
-<hkern u1="&#xd1;" u2="v" k="49" />
-<hkern u1="&#xd1;" u2="q" k="43" />
-<hkern u1="&#xd1;" u2="m" k="25" />
-<hkern u1="&#xd1;" u2="b" k="27" />
-<hkern u1="&#xd1;" u2="\" k="10" />
-<hkern u1="&#xd1;" u2="&#x3f;" k="10" />
-<hkern u1="&#xd1;" u2="&#x3a;" k="14" />
-<hkern u1="&#xd1;" u2="&#x2f;" k="12" />
-<hkern u1="&#xd1;" u2="&#x2e;" k="29" />
-<hkern u1="&#xd1;" u2="&#x2c;" k="29" />
-<hkern u1="&#xd1;" u2="&#x2a;" k="12" />
-<hkern u1="&#xd1;" u2="&#x21;" k="10" />
-<hkern u1="&#xd2;" u2="&#xfe;" k="33" />
-<hkern u1="&#xd2;" u2="&#xf0;" k="27" />
-<hkern u1="&#xd2;" u2="&#xdf;" k="33" />
-<hkern u1="&#xd2;" u2="&#x7d;" k="25" />
-<hkern u1="&#xd2;" u2="x" k="27" />
-<hkern u1="&#xd2;" u2="q" k="31" />
-<hkern u1="&#xd2;" u2="m" k="35" />
-<hkern u1="&#xd2;" u2="b" k="33" />
-<hkern u1="&#xd2;" u2="]" k="23" />
-<hkern u1="&#xd2;" u2="\" k="14" />
-<hkern u1="&#xd2;" u2="X" k="20" />
-<hkern u1="&#xd2;" u2="V" k="12" />
-<hkern u1="&#xd2;" u2="&#x3f;" k="20" />
-<hkern u1="&#xd2;" u2="&#x2f;" k="16" />
-<hkern u1="&#xd2;" u2="&#x2e;" k="51" />
-<hkern u1="&#xd2;" u2="&#x2c;" k="53" />
-<hkern u1="&#xd2;" u2="&#x29;" k="20" />
-<hkern u1="&#xd2;" u2="&#x21;" k="10" />
-<hkern u1="&#xd3;" u2="&#xfe;" k="33" />
-<hkern u1="&#xd3;" u2="&#xf0;" k="27" />
-<hkern u1="&#xd3;" u2="&#xdf;" k="33" />
-<hkern u1="&#xd3;" u2="&#x7d;" k="25" />
-<hkern u1="&#xd3;" u2="x" k="27" />
-<hkern u1="&#xd3;" u2="q" k="31" />
-<hkern u1="&#xd3;" u2="m" k="35" />
-<hkern u1="&#xd3;" u2="b" k="33" />
-<hkern u1="&#xd3;" u2="]" k="23" />
-<hkern u1="&#xd3;" u2="\" k="14" />
-<hkern u1="&#xd3;" u2="X" k="20" />
-<hkern u1="&#xd3;" u2="V" k="12" />
-<hkern u1="&#xd3;" u2="&#x3f;" k="20" />
-<hkern u1="&#xd3;" u2="&#x2f;" k="16" />
-<hkern u1="&#xd3;" u2="&#x2e;" k="51" />
-<hkern u1="&#xd3;" u2="&#x2c;" k="53" />
-<hkern u1="&#xd3;" u2="&#x29;" k="20" />
-<hkern u1="&#xd3;" u2="&#x21;" k="10" />
-<hkern u1="&#xd4;" u2="&#xfe;" k="33" />
-<hkern u1="&#xd4;" u2="&#xf0;" k="27" />
-<hkern u1="&#xd4;" u2="&#xdf;" k="33" />
-<hkern u1="&#xd4;" u2="&#x7d;" k="25" />
-<hkern u1="&#xd4;" u2="x" k="27" />
-<hkern u1="&#xd4;" u2="q" k="31" />
-<hkern u1="&#xd4;" u2="m" k="35" />
-<hkern u1="&#xd4;" u2="b" k="33" />
-<hkern u1="&#xd4;" u2="]" k="23" />
-<hkern u1="&#xd4;" u2="\" k="14" />
-<hkern u1="&#xd4;" u2="X" k="20" />
-<hkern u1="&#xd4;" u2="V" k="12" />
-<hkern u1="&#xd4;" u2="&#x3f;" k="20" />
-<hkern u1="&#xd4;" u2="&#x2f;" k="16" />
-<hkern u1="&#xd4;" u2="&#x2e;" k="51" />
-<hkern u1="&#xd4;" u2="&#x2c;" k="53" />
-<hkern u1="&#xd4;" u2="&#x29;" k="20" />
-<hkern u1="&#xd4;" u2="&#x21;" k="10" />
-<hkern u1="&#xd5;" u2="&#xfe;" k="33" />
-<hkern u1="&#xd5;" u2="&#xf0;" k="27" />
-<hkern u1="&#xd5;" u2="&#xdf;" k="33" />
-<hkern u1="&#xd5;" u2="&#x7d;" k="25" />
-<hkern u1="&#xd5;" u2="x" k="27" />
-<hkern u1="&#xd5;" u2="q" k="31" />
-<hkern u1="&#xd5;" u2="m" k="35" />
-<hkern u1="&#xd5;" u2="b" k="33" />
-<hkern u1="&#xd5;" u2="]" k="23" />
-<hkern u1="&#xd5;" u2="\" k="14" />
-<hkern u1="&#xd5;" u2="X" k="20" />
-<hkern u1="&#xd5;" u2="V" k="12" />
-<hkern u1="&#xd5;" u2="&#x3f;" k="20" />
-<hkern u1="&#xd5;" u2="&#x2f;" k="16" />
-<hkern u1="&#xd5;" u2="&#x2e;" k="51" />
-<hkern u1="&#xd5;" u2="&#x2c;" k="53" />
-<hkern u1="&#xd5;" u2="&#x29;" k="20" />
-<hkern u1="&#xd5;" u2="&#x21;" k="10" />
-<hkern u1="&#xd6;" u2="&#xfe;" k="33" />
-<hkern u1="&#xd6;" u2="&#xf0;" k="27" />
-<hkern u1="&#xd6;" u2="&#xdf;" k="33" />
-<hkern u1="&#xd6;" u2="&#x7d;" k="25" />
-<hkern u1="&#xd6;" u2="x" k="27" />
-<hkern u1="&#xd6;" u2="q" k="31" />
-<hkern u1="&#xd6;" u2="m" k="35" />
-<hkern u1="&#xd6;" u2="b" k="33" />
-<hkern u1="&#xd6;" u2="]" k="23" />
-<hkern u1="&#xd6;" u2="\" k="14" />
-<hkern u1="&#xd6;" u2="X" k="20" />
-<hkern u1="&#xd6;" u2="V" k="12" />
-<hkern u1="&#xd6;" u2="&#x3f;" k="20" />
-<hkern u1="&#xd6;" u2="&#x2f;" k="16" />
-<hkern u1="&#xd6;" u2="&#x2e;" k="51" />
-<hkern u1="&#xd6;" u2="&#x2c;" k="53" />
-<hkern u1="&#xd6;" u2="&#x29;" k="20" />
-<hkern u1="&#xd6;" u2="&#x21;" k="10" />
-<hkern u1="&#xd8;" u2="Y" k="12" />
-<hkern u1="&#xd8;" u2="&#x178;" k="12" />
-<hkern u1="&#xd8;" u2="&#xfe;" k="33" />
-<hkern u1="&#xd8;" u2="&#xf0;" k="27" />
-<hkern u1="&#xd8;" u2="&#xdf;" k="33" />
-<hkern u1="&#xd8;" u2="&#xdd;" k="12" />
-<hkern u1="&#xd8;" u2="&#x7d;" k="25" />
-<hkern u1="&#xd8;" u2="x" k="27" />
-<hkern u1="&#xd8;" u2="q" k="31" />
-<hkern u1="&#xd8;" u2="m" k="35" />
-<hkern u1="&#xd8;" u2="b" k="33" />
-<hkern u1="&#xd8;" u2="]" k="23" />
-<hkern u1="&#xd8;" u2="\" k="14" />
-<hkern u1="&#xd8;" u2="X" k="20" />
-<hkern u1="&#xd8;" u2="V" k="12" />
-<hkern u1="&#xd8;" u2="&#x3f;" k="20" />
-<hkern u1="&#xd8;" u2="&#x2f;" k="16" />
-<hkern u1="&#xd8;" u2="&#x2e;" k="51" />
-<hkern u1="&#xd8;" u2="&#x2c;" k="53" />
-<hkern u1="&#xd8;" u2="&#x29;" k="20" />
-<hkern u1="&#xd8;" u2="&#x21;" k="10" />
-<hkern u1="&#xd9;" u2="&#xfe;" k="37" />
-<hkern u1="&#xd9;" u2="&#xf0;" k="49" />
-<hkern u1="&#xd9;" u2="&#xef;" k="6" />
-<hkern u1="&#xd9;" u2="&#xdf;" k="41" />
-<hkern u1="&#xd9;" u2="x" k="53" />
-<hkern u1="&#xd9;" u2="v" k="39" />
-<hkern u1="&#xd9;" u2="q" k="49" />
-<hkern u1="&#xd9;" u2="m" k="51" />
-<hkern u1="&#xd9;" u2="b" k="37" />
-<hkern u1="&#xd9;" u2="X" k="6" />
-<hkern u1="&#xd9;" u2="&#x3b;" k="10" />
-<hkern u1="&#xd9;" u2="&#x3a;" k="18" />
-<hkern u1="&#xd9;" u2="&#x2f;" k="27" />
-<hkern u1="&#xd9;" u2="&#x2e;" k="61" />
-<hkern u1="&#xd9;" u2="&#x2c;" k="63" />
-<hkern u1="&#xd9;" u2="&#x21;" k="12" />
-<hkern u1="&#xda;" u2="&#xfe;" k="37" />
-<hkern u1="&#xda;" u2="&#xf0;" k="49" />
-<hkern u1="&#xda;" u2="&#xef;" k="6" />
-<hkern u1="&#xda;" u2="&#xdf;" k="41" />
-<hkern u1="&#xda;" u2="x" k="53" />
-<hkern u1="&#xda;" u2="v" k="39" />
-<hkern u1="&#xda;" u2="q" k="49" />
-<hkern u1="&#xda;" u2="m" k="51" />
-<hkern u1="&#xda;" u2="b" k="37" />
-<hkern u1="&#xda;" u2="X" k="6" />
-<hkern u1="&#xda;" u2="&#x3b;" k="10" />
-<hkern u1="&#xda;" u2="&#x3a;" k="18" />
-<hkern u1="&#xda;" u2="&#x2f;" k="27" />
-<hkern u1="&#xda;" u2="&#x2e;" k="61" />
-<hkern u1="&#xda;" u2="&#x2c;" k="63" />
-<hkern u1="&#xda;" u2="&#x21;" k="12" />
-<hkern u1="&#xdb;" u2="&#xfe;" k="37" />
-<hkern u1="&#xdb;" u2="&#xf0;" k="49" />
-<hkern u1="&#xdb;" u2="&#xef;" k="6" />
-<hkern u1="&#xdb;" u2="&#xdf;" k="41" />
-<hkern u1="&#xdb;" u2="x" k="53" />
-<hkern u1="&#xdb;" u2="v" k="39" />
-<hkern u1="&#xdb;" u2="q" k="49" />
-<hkern u1="&#xdb;" u2="m" k="51" />
-<hkern u1="&#xdb;" u2="b" k="37" />
-<hkern u1="&#xdb;" u2="X" k="6" />
-<hkern u1="&#xdb;" u2="&#x3b;" k="10" />
-<hkern u1="&#xdb;" u2="&#x3a;" k="18" />
-<hkern u1="&#xdb;" u2="&#x2f;" k="27" />
-<hkern u1="&#xdb;" u2="&#x2e;" k="61" />
-<hkern u1="&#xdb;" u2="&#x2c;" k="63" />
-<hkern u1="&#xdb;" u2="&#x21;" k="12" />
-<hkern u1="&#xdc;" u2="&#xfe;" k="37" />
-<hkern u1="&#xdc;" u2="&#xf0;" k="49" />
-<hkern u1="&#xdc;" u2="&#xef;" k="6" />
-<hkern u1="&#xdc;" u2="&#xdf;" k="41" />
-<hkern u1="&#xdc;" u2="x" k="53" />
-<hkern u1="&#xdc;" u2="v" k="39" />
-<hkern u1="&#xdc;" u2="q" k="49" />
-<hkern u1="&#xdc;" u2="m" k="51" />
-<hkern u1="&#xdc;" u2="b" k="37" />
-<hkern u1="&#xdc;" u2="X" k="6" />
-<hkern u1="&#xdc;" u2="&#x3b;" k="10" />
-<hkern u1="&#xdc;" u2="&#x3a;" k="18" />
-<hkern u1="&#xdc;" u2="&#x2f;" k="27" />
-<hkern u1="&#xdc;" u2="&#x2e;" k="61" />
-<hkern u1="&#xdc;" u2="&#x2c;" k="63" />
-<hkern u1="&#xdc;" u2="&#x21;" k="12" />
-<hkern u1="&#xdd;" u2="&#xfe;" k="23" />
-<hkern u1="&#xdd;" u2="&#xfc;" k="135" />
-<hkern u1="&#xdd;" u2="&#xf6;" k="90" />
-<hkern u1="&#xdd;" u2="&#xf5;" k="147" />
-<hkern u1="&#xdd;" u2="&#xf4;" k="201" />
-<hkern u1="&#xdd;" u2="&#xf2;" k="205" />
-<hkern u1="&#xdd;" u2="&#xf0;" k="61" />
-<hkern u1="&#xdd;" u2="&#xef;" k="-102" />
-<hkern u1="&#xdd;" u2="&#xee;" k="-2" />
-<hkern u1="&#xdd;" u2="&#xec;" k="-2" />
-<hkern u1="&#xdd;" u2="&#xeb;" k="94" />
-<hkern u1="&#xdd;" u2="&#xea;" k="205" />
-<hkern u1="&#xdd;" u2="&#xe8;" k="227" />
-<hkern u1="&#xdd;" u2="&#xe4;" k="72" />
-<hkern u1="&#xdd;" u2="&#xe3;" k="117" />
-<hkern u1="&#xdd;" u2="&#xdf;" k="53" />
-<hkern u1="&#xdd;" u2="&#x7d;" k="-39" />
-<hkern u1="&#xdd;" u2="x" k="84" />
-<hkern u1="&#xdd;" u2="v" k="66" />
-<hkern u1="&#xdd;" u2="q" k="242" />
-<hkern u1="&#xdd;" u2="m" k="160" />
-<hkern u1="&#xdd;" u2="b" k="23" />
-<hkern u1="&#xdd;" u2="]" k="-49" />
-<hkern u1="&#xdd;" u2="\" k="-49" />
-<hkern u1="&#xdd;" u2="X" k="-14" />
-<hkern u1="&#xdd;" u2="V" k="-41" />
-<hkern u1="&#xdd;" u2="Q" k="27" />
-<hkern u1="&#xdd;" u2="M" k="31" />
-<hkern u1="&#xdd;" u2="&#x40;" k="51" />
-<hkern u1="&#xdd;" u2="&#x3b;" k="47" />
-<hkern u1="&#xdd;" u2="&#x3a;" k="68" />
-<hkern u1="&#xdd;" u2="&#x2f;" k="68" />
-<hkern u1="&#xdd;" u2="&#x2e;" k="143" />
-<hkern u1="&#xdd;" u2="&#x2c;" k="133" />
-<hkern u1="&#xdd;" u2="&#x29;" k="-18" />
-<hkern u1="&#xde;" g2="uniFB02" k="14" />
-<hkern u1="&#xde;" g2="uniFB01" k="14" />
-<hkern u1="&#xde;" u2="&#x201e;" k="113" />
-<hkern u1="&#xde;" u2="&#x201a;" k="113" />
-<hkern u1="&#xde;" u2="&#x178;" k="37" />
-<hkern u1="&#xde;" u2="&#x153;" k="23" />
-<hkern u1="&#xde;" u2="&#xfe;" k="25" />
-<hkern u1="&#xde;" u2="&#xfc;" k="18" />
-<hkern u1="&#xde;" u2="&#xfb;" k="18" />
-<hkern u1="&#xde;" u2="&#xfa;" k="18" />
-<hkern u1="&#xde;" u2="&#xf9;" k="18" />
-<hkern u1="&#xde;" u2="&#xf8;" k="23" />
-<hkern u1="&#xde;" u2="&#xf6;" k="23" />
-<hkern u1="&#xde;" u2="&#xf5;" k="23" />
-<hkern u1="&#xde;" u2="&#xf4;" k="23" />
-<hkern u1="&#xde;" u2="&#xf3;" k="23" />
-<hkern u1="&#xde;" u2="&#xf2;" k="23" />
-<hkern u1="&#xde;" u2="&#xf1;" k="25" />
-<hkern u1="&#xde;" u2="&#xef;" k="25" />
-<hkern u1="&#xde;" u2="&#xee;" k="25" />
-<hkern u1="&#xde;" u2="&#xed;" k="25" />
-<hkern u1="&#xde;" u2="&#xec;" k="25" />
-<hkern u1="&#xde;" u2="&#xeb;" k="23" />
-<hkern u1="&#xde;" u2="&#xea;" k="23" />
-<hkern u1="&#xde;" u2="&#xe9;" k="23" />
-<hkern u1="&#xde;" u2="&#xe8;" k="23" />
-<hkern u1="&#xde;" u2="&#xe7;" k="23" />
-<hkern u1="&#xde;" u2="&#xe6;" k="33" />
-<hkern u1="&#xde;" u2="&#xe5;" k="33" />
-<hkern u1="&#xde;" u2="&#xe4;" k="33" />
-<hkern u1="&#xde;" u2="&#xe3;" k="33" />
-<hkern u1="&#xde;" u2="&#xe2;" k="33" />
-<hkern u1="&#xde;" u2="&#xe1;" k="33" />
-<hkern u1="&#xde;" u2="&#xe0;" k="33" />
-<hkern u1="&#xde;" u2="&#xdd;" k="37" />
-<hkern u1="&#xde;" u2="&#xc6;" k="33" />
-<hkern u1="&#xde;" u2="&#xc5;" k="14" />
-<hkern u1="&#xde;" u2="&#xc4;" k="14" />
-<hkern u1="&#xde;" u2="&#xc3;" k="14" />
-<hkern u1="&#xde;" u2="&#xc2;" k="14" />
-<hkern u1="&#xde;" u2="&#xc1;" k="14" />
-<hkern u1="&#xde;" u2="&#xc0;" k="14" />
-<hkern u1="&#xde;" u2="z" k="16" />
-<hkern u1="&#xde;" u2="u" k="18" />
-<hkern u1="&#xde;" u2="s" k="14" />
-<hkern u1="&#xde;" u2="r" k="25" />
-<hkern u1="&#xde;" u2="p" k="25" />
-<hkern u1="&#xde;" u2="o" k="23" />
-<hkern u1="&#xde;" u2="n" k="25" />
-<hkern u1="&#xde;" u2="l" k="23" />
-<hkern u1="&#xde;" u2="k" k="23" />
-<hkern u1="&#xde;" u2="j" k="25" />
-<hkern u1="&#xde;" u2="i" k="25" />
-<hkern u1="&#xde;" u2="h" k="23" />
-<hkern u1="&#xde;" u2="g" k="55" />
-<hkern u1="&#xde;" u2="f" k="14" />
-<hkern u1="&#xde;" u2="e" k="23" />
-<hkern u1="&#xde;" u2="d" k="20" />
-<hkern u1="&#xde;" u2="c" k="23" />
-<hkern u1="&#xde;" u2="a" k="33" />
-<hkern u1="&#xde;" u2="Z" k="16" />
-<hkern u1="&#xde;" u2="Y" k="37" />
-<hkern u1="&#xde;" u2="W" k="6" />
-<hkern u1="&#xde;" u2="T" k="14" />
-<hkern u1="&#xde;" u2="J" k="55" />
-<hkern u1="&#xde;" u2="A" k="14" />
-<hkern u1="&#xde;" u2="&#x27;" k="16" />
-<hkern u1="&#xde;" u2="&#x22;" k="16" />
-<hkern u1="&#xde;" u2="&#x7d;" k="31" />
-<hkern u1="&#xde;" u2="x" k="12" />
-<hkern u1="&#xde;" u2="v" k="-6" />
-<hkern u1="&#xde;" u2="q" k="23" />
-<hkern u1="&#xde;" u2="m" k="25" />
-<hkern u1="&#xde;" u2="b" k="23" />
-<hkern u1="&#xde;" u2="]" k="29" />
-<hkern u1="&#xde;" u2="\" k="12" />
-<hkern u1="&#xde;" u2="X" k="35" />
-<hkern u1="&#xde;" u2="V" k="12" />
-<hkern u1="&#xde;" u2="&#x3f;" k="25" />
-<hkern u1="&#xde;" u2="&#x2f;" k="14" />
-<hkern u1="&#xde;" u2="&#x2e;" k="72" />
-<hkern u1="&#xde;" u2="&#x2c;" k="78" />
-<hkern u1="&#xde;" u2="&#x29;" k="29" />
-<hkern u1="&#xde;" u2="&#x21;" k="10" />
-<hkern u1="&#xdf;" g2="uniFB02" k="8" />
-<hkern u1="&#xdf;" g2="uniFB01" k="8" />
-<hkern u1="&#xdf;" u2="&#x201d;" k="12" />
-<hkern u1="&#xdf;" u2="&#x2019;" k="12" />
-<hkern u1="&#xdf;" u2="&#xff;" k="25" />
-<hkern u1="&#xdf;" u2="&#xfd;" k="25" />
-<hkern u1="&#xdf;" u2="y" k="25" />
-<hkern u1="&#xdf;" u2="w" k="14" />
-<hkern u1="&#xdf;" u2="t" k="6" />
-<hkern u1="&#xdf;" u2="f" k="8" />
-<hkern u1="&#xdf;" u2="&#x7d;" k="18" />
-<hkern u1="&#xdf;" u2="x" k="8" />
-<hkern u1="&#xdf;" u2="v" k="29" />
-<hkern u1="&#xdf;" u2="]" k="18" />
-<hkern u1="&#xdf;" u2="\" k="23" />
-<hkern u1="&#xdf;" u2="&#x3f;" k="16" />
-<hkern u1="&#xdf;" u2="&#x2a;" k="10" />
-<hkern u1="&#xdf;" u2="&#x29;" k="10" />
-<hkern u1="&#xe0;" u2="&#x7d;" k="43" />
-<hkern u1="&#xe0;" u2="v" k="6" />
-<hkern u1="&#xe0;" u2="]" k="49" />
-<hkern u1="&#xe0;" u2="\" k="55" />
-<hkern u1="&#xe0;" u2="X" k="37" />
-<hkern u1="&#xe0;" u2="V" k="193" />
-<hkern u1="&#xe0;" u2="Q" k="41" />
-<hkern u1="&#xe0;" u2="P" k="29" />
-<hkern u1="&#xe0;" u2="M" k="23" />
-<hkern u1="&#xe0;" u2="F" k="29" />
-<hkern u1="&#xe0;" u2="B" k="29" />
-<hkern u1="&#xe0;" u2="&#x3f;" k="43" />
-<hkern u1="&#xe0;" u2="&#x2a;" k="45" />
-<hkern u1="&#xe0;" u2="&#x29;" k="10" />
-<hkern u1="&#xe0;" u2="&#x21;" k="16" />
-<hkern u1="&#xe1;" u2="&#x7d;" k="43" />
-<hkern u1="&#xe1;" u2="v" k="6" />
-<hkern u1="&#xe1;" u2="]" k="49" />
-<hkern u1="&#xe1;" u2="\" k="55" />
-<hkern u1="&#xe1;" u2="X" k="37" />
-<hkern u1="&#xe1;" u2="V" k="193" />
-<hkern u1="&#xe1;" u2="Q" k="41" />
-<hkern u1="&#xe1;" u2="P" k="29" />
-<hkern u1="&#xe1;" u2="M" k="23" />
-<hkern u1="&#xe1;" u2="F" k="29" />
-<hkern u1="&#xe1;" u2="B" k="29" />
-<hkern u1="&#xe1;" u2="&#x3f;" k="43" />
-<hkern u1="&#xe1;" u2="&#x2a;" k="45" />
-<hkern u1="&#xe1;" u2="&#x29;" k="10" />
-<hkern u1="&#xe1;" u2="&#x21;" k="16" />
-<hkern u1="&#xe2;" u2="&#x7d;" k="43" />
-<hkern u1="&#xe2;" u2="v" k="6" />
-<hkern u1="&#xe2;" u2="]" k="49" />
-<hkern u1="&#xe2;" u2="\" k="55" />
-<hkern u1="&#xe2;" u2="X" k="37" />
-<hkern u1="&#xe2;" u2="V" k="193" />
-<hkern u1="&#xe2;" u2="Q" k="41" />
-<hkern u1="&#xe2;" u2="P" k="29" />
-<hkern u1="&#xe2;" u2="M" k="23" />
-<hkern u1="&#xe2;" u2="F" k="29" />
-<hkern u1="&#xe2;" u2="B" k="29" />
-<hkern u1="&#xe2;" u2="&#x3f;" k="43" />
-<hkern u1="&#xe2;" u2="&#x2a;" k="45" />
-<hkern u1="&#xe2;" u2="&#x29;" k="10" />
-<hkern u1="&#xe2;" u2="&#x21;" k="16" />
-<hkern u1="&#xe3;" u2="&#x7d;" k="43" />
-<hkern u1="&#xe3;" u2="v" k="6" />
-<hkern u1="&#xe3;" u2="]" k="49" />
-<hkern u1="&#xe3;" u2="\" k="55" />
-<hkern u1="&#xe3;" u2="X" k="37" />
-<hkern u1="&#xe3;" u2="V" k="193" />
-<hkern u1="&#xe3;" u2="Q" k="41" />
-<hkern u1="&#xe3;" u2="P" k="29" />
-<hkern u1="&#xe3;" u2="M" k="23" />
-<hkern u1="&#xe3;" u2="F" k="29" />
-<hkern u1="&#xe3;" u2="B" k="29" />
-<hkern u1="&#xe3;" u2="&#x3f;" k="43" />
-<hkern u1="&#xe3;" u2="&#x2a;" k="45" />
-<hkern u1="&#xe3;" u2="&#x29;" k="10" />
-<hkern u1="&#xe3;" u2="&#x21;" k="16" />
-<hkern u1="&#xe4;" u2="&#x2019;" k="41" />
-<hkern u1="&#xe4;" u2="&#x27;" k="72" />
-<hkern u1="&#xe4;" u2="&#x201d;" k="41" />
-<hkern u1="&#xe4;" u2="&#x7d;" k="43" />
-<hkern u1="&#xe4;" u2="v" k="6" />
-<hkern u1="&#xe4;" u2="]" k="49" />
-<hkern u1="&#xe4;" u2="\" k="55" />
-<hkern u1="&#xe4;" u2="X" k="37" />
-<hkern u1="&#xe4;" u2="V" k="193" />
-<hkern u1="&#xe4;" u2="Q" k="41" />
-<hkern u1="&#xe4;" u2="P" k="29" />
-<hkern u1="&#xe4;" u2="M" k="23" />
-<hkern u1="&#xe4;" u2="F" k="29" />
-<hkern u1="&#xe4;" u2="B" k="29" />
-<hkern u1="&#xe4;" u2="&#x3f;" k="43" />
-<hkern u1="&#xe4;" u2="&#x2a;" k="45" />
-<hkern u1="&#xe4;" u2="&#x29;" k="10" />
-<hkern u1="&#xe4;" u2="&#x22;" k="72" />
-<hkern u1="&#xe4;" u2="&#x21;" k="16" />
-<hkern u1="&#xe5;" u2="&#x7d;" k="43" />
-<hkern u1="&#xe5;" u2="v" k="6" />
-<hkern u1="&#xe5;" u2="]" k="49" />
-<hkern u1="&#xe5;" u2="\" k="55" />
-<hkern u1="&#xe5;" u2="X" k="37" />
-<hkern u1="&#xe5;" u2="V" k="193" />
-<hkern u1="&#xe5;" u2="Q" k="41" />
-<hkern u1="&#xe5;" u2="P" k="29" />
-<hkern u1="&#xe5;" u2="M" k="23" />
-<hkern u1="&#xe5;" u2="F" k="29" />
-<hkern u1="&#xe5;" u2="B" k="29" />
-<hkern u1="&#xe5;" u2="&#x3f;" k="43" />
-<hkern u1="&#xe5;" u2="&#x2a;" k="45" />
-<hkern u1="&#xe5;" u2="&#x29;" k="10" />
-<hkern u1="&#xe5;" u2="&#x21;" k="16" />
-<hkern u1="&#xe6;" u2="&#x7d;" k="57" />
-<hkern u1="&#xe6;" u2="x" k="6" />
-<hkern u1="&#xe6;" u2="]" k="61" />
-<hkern u1="&#xe6;" u2="\" k="49" />
-<hkern u1="&#xe6;" u2="X" k="53" />
-<hkern u1="&#xe6;" u2="V" k="197" />
-<hkern u1="&#xe6;" u2="Q" k="25" />
-<hkern u1="&#xe6;" u2="P" k="47" />
-<hkern u1="&#xe6;" u2="M" k="27" />
-<hkern u1="&#xe6;" u2="F" k="47" />
-<hkern u1="&#xe6;" u2="B" k="47" />
-<hkern u1="&#xe6;" u2="&#x3f;" k="43" />
-<hkern u1="&#xe6;" u2="&#x2a;" k="41" />
-<hkern u1="&#xe6;" u2="&#x29;" k="16" />
-<hkern u1="&#xe6;" u2="&#x21;" k="18" />
-<hkern u1="&#xe7;" u2="j" k="-66" />
-<hkern u1="&#xe7;" u2="&#x7d;" k="51" />
-<hkern u1="&#xe7;" u2="]" k="57" />
-<hkern u1="&#xe7;" u2="\" k="47" />
-<hkern u1="&#xe7;" u2="X" k="35" />
-<hkern u1="&#xe7;" u2="V" k="209" />
-<hkern u1="&#xe7;" u2="Q" k="29" />
-<hkern u1="&#xe7;" u2="P" k="47" />
-<hkern u1="&#xe7;" u2="M" k="20" />
-<hkern u1="&#xe7;" u2="F" k="47" />
-<hkern u1="&#xe7;" u2="B" k="47" />
-<hkern u1="&#xe7;" u2="&#x3f;" k="33" />
-<hkern u1="&#xe7;" u2="&#x2a;" k="31" />
-<hkern u1="&#xe7;" u2="&#x29;" k="10" />
-<hkern u1="&#xe8;" u2="&#x7d;" k="57" />
-<hkern u1="&#xe8;" u2="x" k="6" />
-<hkern u1="&#xe8;" u2="]" k="61" />
-<hkern u1="&#xe8;" u2="\" k="49" />
-<hkern u1="&#xe8;" u2="X" k="53" />
-<hkern u1="&#xe8;" u2="V" k="197" />
-<hkern u1="&#xe8;" u2="Q" k="25" />
-<hkern u1="&#xe8;" u2="P" k="47" />
-<hkern u1="&#xe8;" u2="M" k="27" />
-<hkern u1="&#xe8;" u2="F" k="47" />
-<hkern u1="&#xe8;" u2="B" k="47" />
-<hkern u1="&#xe8;" u2="&#x3f;" k="43" />
-<hkern u1="&#xe8;" u2="&#x2a;" k="41" />
-<hkern u1="&#xe8;" u2="&#x29;" k="16" />
-<hkern u1="&#xe8;" u2="&#x21;" k="18" />
-<hkern u1="&#xe9;" u2="&#x7d;" k="57" />
-<hkern u1="&#xe9;" u2="x" k="6" />
-<hkern u1="&#xe9;" u2="]" k="61" />
-<hkern u1="&#xe9;" u2="\" k="49" />
-<hkern u1="&#xe9;" u2="X" k="53" />
-<hkern u1="&#xe9;" u2="V" k="197" />
-<hkern u1="&#xe9;" u2="Q" k="25" />
-<hkern u1="&#xe9;" u2="P" k="47" />
-<hkern u1="&#xe9;" u2="M" k="27" />
-<hkern u1="&#xe9;" u2="F" k="47" />
-<hkern u1="&#xe9;" u2="B" k="47" />
-<hkern u1="&#xe9;" u2="&#x3f;" k="43" />
-<hkern u1="&#xe9;" u2="&#x2a;" k="41" />
-<hkern u1="&#xe9;" u2="&#x29;" k="16" />
-<hkern u1="&#xe9;" u2="&#x21;" k="18" />
-<hkern u1="&#xea;" u2="&#x7d;" k="57" />
-<hkern u1="&#xea;" u2="x" k="6" />
-<hkern u1="&#xea;" u2="]" k="61" />
-<hkern u1="&#xea;" u2="\" k="49" />
-<hkern u1="&#xea;" u2="X" k="53" />
-<hkern u1="&#xea;" u2="V" k="197" />
-<hkern u1="&#xea;" u2="Q" k="25" />
-<hkern u1="&#xea;" u2="P" k="47" />
-<hkern u1="&#xea;" u2="M" k="27" />
-<hkern u1="&#xea;" u2="F" k="47" />
-<hkern u1="&#xea;" u2="B" k="47" />
-<hkern u1="&#xea;" u2="&#x3f;" k="43" />
-<hkern u1="&#xea;" u2="&#x2a;" k="41" />
-<hkern u1="&#xea;" u2="&#x29;" k="16" />
-<hkern u1="&#xea;" u2="&#x21;" k="18" />
-<hkern u1="&#xeb;" u2="&#x2019;" k="35" />
-<hkern u1="&#xeb;" u2="&#x27;" k="66" />
-<hkern u1="&#xeb;" u2="&#x201d;" k="35" />
-<hkern u1="&#xeb;" u2="&#x7d;" k="37" />
-<hkern u1="&#xeb;" u2="x" k="6" />
-<hkern u1="&#xeb;" u2="]" k="35" />
-<hkern u1="&#xeb;" u2="\" k="49" />
-<hkern u1="&#xeb;" u2="X" k="53" />
-<hkern u1="&#xeb;" u2="V" k="197" />
-<hkern u1="&#xeb;" u2="Q" k="25" />
-<hkern u1="&#xeb;" u2="P" k="47" />
-<hkern u1="&#xeb;" u2="M" k="27" />
-<hkern u1="&#xeb;" u2="F" k="47" />
-<hkern u1="&#xeb;" u2="B" k="47" />
-<hkern u1="&#xeb;" u2="&#x3f;" k="43" />
-<hkern u1="&#xeb;" u2="&#x2a;" k="41" />
-<hkern u1="&#xeb;" u2="&#x29;" k="16" />
-<hkern u1="&#xeb;" u2="&#x22;" k="66" />
-<hkern u1="&#xeb;" u2="&#x21;" k="18" />
-<hkern u1="&#xec;" u2="&#xef;" k="-39" />
-<hkern u1="&#xec;" u2="&#x7d;" k="10" />
-<hkern u1="&#xec;" u2="]" k="-10" />
-<hkern u1="&#xec;" u2="\" k="12" />
-<hkern u1="&#xec;" u2="X" k="39" />
-<hkern u1="&#xec;" u2="V" k="33" />
-<hkern u1="&#xec;" u2="Q" k="35" />
-<hkern u1="&#xec;" u2="P" k="27" />
-<hkern u1="&#xec;" u2="M" k="20" />
-<hkern u1="&#xec;" u2="F" k="27" />
-<hkern u1="&#xec;" u2="B" k="27" />
-<hkern u1="&#xec;" u2="&#x21;" k="12" />
-<hkern u1="&#xed;" u2="&#xef;" k="-39" />
-<hkern u1="&#xed;" u2="&#x7d;" k="-8" />
-<hkern u1="&#xed;" u2="]" k="-8" />
-<hkern u1="&#xed;" u2="\" k="12" />
-<hkern u1="&#xed;" u2="X" k="39" />
-<hkern u1="&#xed;" u2="V" k="33" />
-<hkern u1="&#xed;" u2="Q" k="35" />
-<hkern u1="&#xed;" u2="P" k="27" />
-<hkern u1="&#xed;" u2="M" k="20" />
-<hkern u1="&#xed;" u2="F" k="27" />
-<hkern u1="&#xed;" u2="B" k="27" />
-<hkern u1="&#xed;" u2="&#x21;" k="12" />
-<hkern u1="&#xee;" u2="&#x2019;" k="-31" />
-<hkern u1="&#xee;" u2="&#x27;" k="-41" />
-<hkern u1="&#xee;" u2="&#x201d;" k="-31" />
-<hkern u1="&#xee;" u2="&#xef;" k="-39" />
-<hkern u1="&#xee;" u2="&#x7d;" k="-66" />
-<hkern u1="&#xee;" u2="]" k="-84" />
-<hkern u1="&#xee;" u2="\" k="-29" />
-<hkern u1="&#xee;" u2="X" k="39" />
-<hkern u1="&#xee;" u2="V" k="33" />
-<hkern u1="&#xee;" u2="Q" k="35" />
-<hkern u1="&#xee;" u2="P" k="27" />
-<hkern u1="&#xee;" u2="M" k="20" />
-<hkern u1="&#xee;" u2="F" k="27" />
-<hkern u1="&#xee;" u2="B" k="27" />
-<hkern u1="&#xee;" u2="&#x3f;" k="-49" />
-<hkern u1="&#xee;" u2="&#x2a;" k="-59" />
-<hkern u1="&#xee;" u2="&#x29;" k="-47" />
-<hkern u1="&#xee;" u2="&#x22;" k="-41" />
-<hkern u1="&#xee;" u2="&#x21;" k="12" />
-<hkern u1="&#xef;" u2="&#x2019;" k="-104" />
-<hkern u1="&#xef;" u2="&#xee;" k="-41" />
-<hkern u1="&#xef;" u2="&#xed;" k="-41" />
-<hkern u1="&#xef;" u2="&#xec;" k="-41" />
-<hkern u1="&#xef;" u2="j" k="-39" />
-<hkern u1="&#xef;" u2="i" k="-41" />
-<hkern u1="&#xef;" u2="&#x27;" k="-76" />
-<hkern u1="&#xef;" u2="&#x201d;" k="-104" />
-<hkern u1="&#xef;" u2="&#xef;" k="-39" />
-<hkern u1="&#xef;" u2="&#x7d;" k="-117" />
-<hkern u1="&#xef;" u2="]" k="-119" />
-<hkern u1="&#xef;" u2="\" k="-92" />
-<hkern u1="&#xef;" u2="X" k="39" />
-<hkern u1="&#xef;" u2="V" k="33" />
-<hkern u1="&#xef;" u2="Q" k="35" />
-<hkern u1="&#xef;" u2="P" k="27" />
-<hkern u1="&#xef;" u2="M" k="20" />
-<hkern u1="&#xef;" u2="F" k="27" />
-<hkern u1="&#xef;" u2="B" k="27" />
-<hkern u1="&#xef;" u2="&#x3f;" k="-117" />
-<hkern u1="&#xef;" u2="&#x2a;" k="-98" />
-<hkern u1="&#xef;" u2="&#x29;" k="-90" />
-<hkern u1="&#xef;" u2="&#x22;" k="-76" />
-<hkern u1="&#xef;" u2="&#x21;" k="-18" />
-<hkern u1="&#xf0;" u2="&#x201d;" k="16" />
-<hkern u1="&#xf0;" u2="&#x2019;" k="16" />
-<hkern u1="&#xf0;" u2="g" k="6" />
-<hkern u1="&#xf0;" u2="&#x27;" k="16" />
-<hkern u1="&#xf0;" u2="&#x22;" k="16" />
-<hkern u1="&#xf0;" u2="&#x7d;" k="41" />
-<hkern u1="&#xf0;" u2="]" k="41" />
-<hkern u1="&#xf0;" u2="\" k="33" />
-<hkern u1="&#xf0;" u2="&#x3f;" k="35" />
-<hkern u1="&#xf0;" u2="&#x29;" k="29" />
-<hkern u1="&#xf0;" u2="&#x21;" k="16" />
-<hkern u1="&#xf1;" u2="&#x7d;" k="41" />
-<hkern u1="&#xf1;" u2="v" k="14" />
-<hkern u1="&#xf1;" u2="]" k="47" />
-<hkern u1="&#xf1;" u2="\" k="57" />
-<hkern u1="&#xf1;" u2="X" k="33" />
-<hkern u1="&#xf1;" u2="V" k="221" />
-<hkern u1="&#xf1;" u2="Q" k="45" />
-<hkern u1="&#xf1;" u2="P" k="33" />
-<hkern u1="&#xf1;" u2="M" k="27" />
-<hkern u1="&#xf1;" u2="F" k="33" />
-<hkern u1="&#xf1;" u2="B" k="33" />
-<hkern u1="&#xf1;" u2="&#x3f;" k="41" />
-<hkern u1="&#xf1;" u2="&#x2a;" k="55" />
-<hkern u1="&#xf1;" u2="&#x21;" k="14" />
-<hkern u1="&#xf2;" u2="&#x7d;" k="59" />
-<hkern u1="&#xf2;" u2="x" k="10" />
-<hkern u1="&#xf2;" u2="v" k="6" />
-<hkern u1="&#xf2;" u2="]" k="63" />
-<hkern u1="&#xf2;" u2="\" k="53" />
-<hkern u1="&#xf2;" u2="X" k="61" />
-<hkern u1="&#xf2;" u2="V" k="197" />
-<hkern u1="&#xf2;" u2="Q" k="31" />
-<hkern u1="&#xf2;" u2="P" k="43" />
-<hkern u1="&#xf2;" u2="M" k="31" />
-<hkern u1="&#xf2;" u2="F" k="43" />
-<hkern u1="&#xf2;" u2="B" k="43" />
-<hkern u1="&#xf2;" u2="&#x3f;" k="43" />
-<hkern u1="&#xf2;" u2="&#x2a;" k="51" />
-<hkern u1="&#xf2;" u2="&#x29;" k="27" />
-<hkern u1="&#xf2;" u2="&#x21;" k="16" />
-<hkern u1="&#xf3;" u2="&#x7d;" k="59" />
-<hkern u1="&#xf3;" u2="x" k="10" />
-<hkern u1="&#xf3;" u2="v" k="6" />
-<hkern u1="&#xf3;" u2="]" k="63" />
-<hkern u1="&#xf3;" u2="\" k="53" />
-<hkern u1="&#xf3;" u2="X" k="61" />
-<hkern u1="&#xf3;" u2="V" k="197" />
-<hkern u1="&#xf3;" u2="Q" k="31" />
-<hkern u1="&#xf3;" u2="P" k="43" />
-<hkern u1="&#xf3;" u2="M" k="31" />
-<hkern u1="&#xf3;" u2="F" k="43" />
-<hkern u1="&#xf3;" u2="B" k="43" />
-<hkern u1="&#xf3;" u2="&#x3f;" k="43" />
-<hkern u1="&#xf3;" u2="&#x2a;" k="51" />
-<hkern u1="&#xf3;" u2="&#x29;" k="27" />
-<hkern u1="&#xf3;" u2="&#x21;" k="16" />
-<hkern u1="&#xf4;" u2="&#x7d;" k="59" />
-<hkern u1="&#xf4;" u2="x" k="10" />
-<hkern u1="&#xf4;" u2="v" k="6" />
-<hkern u1="&#xf4;" u2="]" k="63" />
-<hkern u1="&#xf4;" u2="\" k="53" />
-<hkern u1="&#xf4;" u2="X" k="61" />
-<hkern u1="&#xf4;" u2="V" k="197" />
-<hkern u1="&#xf4;" u2="Q" k="31" />
-<hkern u1="&#xf4;" u2="P" k="43" />
-<hkern u1="&#xf4;" u2="M" k="31" />
-<hkern u1="&#xf4;" u2="F" k="43" />
-<hkern u1="&#xf4;" u2="B" k="43" />
-<hkern u1="&#xf4;" u2="&#x3f;" k="43" />
-<hkern u1="&#xf4;" u2="&#x2a;" k="51" />
-<hkern u1="&#xf4;" u2="&#x29;" k="27" />
-<hkern u1="&#xf4;" u2="&#x21;" k="16" />
-<hkern u1="&#xf5;" u2="&#x7d;" k="59" />
-<hkern u1="&#xf5;" u2="x" k="10" />
-<hkern u1="&#xf5;" u2="v" k="6" />
-<hkern u1="&#xf5;" u2="]" k="63" />
-<hkern u1="&#xf5;" u2="\" k="53" />
-<hkern u1="&#xf5;" u2="X" k="61" />
-<hkern u1="&#xf5;" u2="V" k="197" />
-<hkern u1="&#xf5;" u2="Q" k="31" />
-<hkern u1="&#xf5;" u2="P" k="43" />
-<hkern u1="&#xf5;" u2="M" k="31" />
-<hkern u1="&#xf5;" u2="F" k="43" />
-<hkern u1="&#xf5;" u2="B" k="43" />
-<hkern u1="&#xf5;" u2="&#x3f;" k="43" />
-<hkern u1="&#xf5;" u2="&#x2a;" k="51" />
-<hkern u1="&#xf5;" u2="&#x29;" k="27" />
-<hkern u1="&#xf5;" u2="&#x21;" k="16" />
-<hkern u1="&#xf6;" u2="&#x7d;" k="59" />
-<hkern u1="&#xf6;" u2="x" k="10" />
-<hkern u1="&#xf6;" u2="v" k="6" />
-<hkern u1="&#xf6;" u2="]" k="63" />
-<hkern u1="&#xf6;" u2="\" k="53" />
-<hkern u1="&#xf6;" u2="X" k="61" />
-<hkern u1="&#xf6;" u2="V" k="197" />
-<hkern u1="&#xf6;" u2="Q" k="31" />
-<hkern u1="&#xf6;" u2="P" k="43" />
-<hkern u1="&#xf6;" u2="M" k="31" />
-<hkern u1="&#xf6;" u2="F" k="43" />
-<hkern u1="&#xf6;" u2="B" k="43" />
-<hkern u1="&#xf6;" u2="&#x3f;" k="43" />
-<hkern u1="&#xf6;" u2="&#x2a;" k="51" />
-<hkern u1="&#xf6;" u2="&#x29;" k="27" />
-<hkern u1="&#xf6;" u2="&#x21;" k="16" />
-<hkern u1="&#xf8;" u2="&#x7d;" k="59" />
-<hkern u1="&#xf8;" u2="x" k="10" />
-<hkern u1="&#xf8;" u2="v" k="6" />
-<hkern u1="&#xf8;" u2="]" k="63" />
-<hkern u1="&#xf8;" u2="\" k="53" />
-<hkern u1="&#xf8;" u2="X" k="61" />
-<hkern u1="&#xf8;" u2="V" k="197" />
-<hkern u1="&#xf8;" u2="Q" k="31" />
-<hkern u1="&#xf8;" u2="P" k="43" />
-<hkern u1="&#xf8;" u2="M" k="31" />
-<hkern u1="&#xf8;" u2="F" k="43" />
-<hkern u1="&#xf8;" u2="B" k="43" />
-<hkern u1="&#xf8;" u2="&#x3f;" k="43" />
-<hkern u1="&#xf8;" u2="&#x2a;" k="51" />
-<hkern u1="&#xf8;" u2="&#x29;" k="27" />
-<hkern u1="&#xf8;" u2="&#x21;" k="16" />
-<hkern u1="&#xf9;" u2="&#x7d;" k="39" />
-<hkern u1="&#xf9;" u2="]" k="53" />
-<hkern u1="&#xf9;" u2="\" k="41" />
-<hkern u1="&#xf9;" u2="X" k="41" />
-<hkern u1="&#xf9;" u2="V" k="150" />
-<hkern u1="&#xf9;" u2="Q" k="35" />
-<hkern u1="&#xf9;" u2="P" k="27" />
-<hkern u1="&#xf9;" u2="F" k="27" />
-<hkern u1="&#xf9;" u2="B" k="27" />
-<hkern u1="&#xf9;" u2="&#x2a;" k="18" />
-<hkern u1="&#xf9;" u2="&#x29;" k="12" />
-<hkern u1="&#xf9;" u2="&#x21;" k="16" />
-<hkern u1="&#xf9;" u2="M" k="20" />
-<hkern u1="&#xf9;" u2="&#x3f;" k="39" />
-<hkern u1="&#xfa;" u2="&#x7d;" k="39" />
-<hkern u1="&#xfa;" u2="]" k="53" />
-<hkern u1="&#xfa;" u2="\" k="41" />
-<hkern u1="&#xfa;" u2="X" k="41" />
-<hkern u1="&#xfa;" u2="V" k="150" />
-<hkern u1="&#xfa;" u2="Q" k="35" />
-<hkern u1="&#xfa;" u2="P" k="27" />
-<hkern u1="&#xfa;" u2="F" k="27" />
-<hkern u1="&#xfa;" u2="B" k="27" />
-<hkern u1="&#xfa;" u2="&#x2a;" k="18" />
-<hkern u1="&#xfa;" u2="&#x29;" k="12" />
-<hkern u1="&#xfa;" u2="&#x21;" k="16" />
-<hkern u1="&#xfa;" u2="M" k="20" />
-<hkern u1="&#xfa;" u2="&#x3f;" k="39" />
-<hkern u1="&#xfb;" u2="&#x7d;" k="39" />
-<hkern u1="&#xfb;" u2="]" k="53" />
-<hkern u1="&#xfb;" u2="\" k="41" />
-<hkern u1="&#xfb;" u2="X" k="41" />
-<hkern u1="&#xfb;" u2="V" k="150" />
-<hkern u1="&#xfb;" u2="Q" k="35" />
-<hkern u1="&#xfb;" u2="P" k="27" />
-<hkern u1="&#xfb;" u2="F" k="27" />
-<hkern u1="&#xfb;" u2="B" k="27" />
-<hkern u1="&#xfb;" u2="&#x2a;" k="18" />
-<hkern u1="&#xfb;" u2="&#x29;" k="12" />
-<hkern u1="&#xfb;" u2="&#x21;" k="16" />
-<hkern u1="&#xfb;" u2="M" k="20" />
-<hkern u1="&#xfb;" u2="&#x3f;" k="39" />
-<hkern u1="&#xfc;" u2="&#x7d;" k="39" />
-<hkern u1="&#xfc;" u2="]" k="53" />
-<hkern u1="&#xfc;" u2="\" k="41" />
-<hkern u1="&#xfc;" u2="X" k="41" />
-<hkern u1="&#xfc;" u2="V" k="150" />
-<hkern u1="&#xfc;" u2="Q" k="35" />
-<hkern u1="&#xfc;" u2="P" k="27" />
-<hkern u1="&#xfc;" u2="F" k="27" />
-<hkern u1="&#xfc;" u2="B" k="27" />
-<hkern u1="&#xfc;" u2="&#x2a;" k="18" />
-<hkern u1="&#xfc;" u2="&#x29;" k="12" />
-<hkern u1="&#xfc;" u2="&#x21;" k="16" />
-<hkern u1="&#xfc;" u2="M" k="20" />
-<hkern u1="&#xfc;" u2="&#x3f;" k="39" />
-<hkern u1="&#xfd;" u2="&#x7d;" k="27" />
-<hkern u1="&#xfd;" u2="]" k="31" />
-<hkern u1="&#xfd;" u2="\" k="14" />
-<hkern u1="&#xfd;" u2="X" k="86" />
-<hkern u1="&#xfd;" u2="V" k="61" />
-<hkern u1="&#xfd;" u2="Q" k="6" />
-<hkern u1="&#xfd;" u2="P" k="47" />
-<hkern u1="&#xfd;" u2="M" k="43" />
-<hkern u1="&#xfd;" u2="F" k="47" />
-<hkern u1="&#xfd;" u2="B" k="47" />
-<hkern u1="&#xfd;" u2="&#x3f;" k="25" />
-<hkern u1="&#xfd;" u2="&#x2f;" k="23" />
-<hkern u1="&#xfd;" u2="&#x2e;" k="35" />
-<hkern u1="&#xfd;" u2="&#x2c;" k="33" />
-<hkern u1="&#xfd;" u2="&#x29;" k="27" />
-<hkern u1="&#xfd;" u2="&#x21;" k="18" />
-<hkern u1="&#xfe;" u2="&#x201d;" k="55" />
-<hkern u1="&#xfe;" u2="&#x2019;" k="55" />
-<hkern u1="&#xfe;" u2="&#x27;" k="76" />
-<hkern u1="&#xfe;" u2="&#x22;" k="76" />
-<hkern u1="&#xfe;" u2="&#x7d;" k="55" />
-<hkern u1="&#xfe;" u2="x" k="10" />
-<hkern u1="&#xfe;" u2="]" k="59" />
-<hkern u1="&#xfe;" u2="\" k="47" />
-<hkern u1="&#xfe;" u2="X" k="61" />
-<hkern u1="&#xfe;" u2="V" k="190" />
-<hkern u1="&#xfe;" u2="Q" k="29" />
-<hkern u1="&#xfe;" u2="P" k="41" />
-<hkern u1="&#xfe;" u2="M" k="31" />
-<hkern u1="&#xfe;" u2="F" k="41" />
-<hkern u1="&#xfe;" u2="B" k="41" />
-<hkern u1="&#xfe;" u2="&#x3f;" k="37" />
-<hkern u1="&#xfe;" u2="&#x2a;" k="47" />
-<hkern u1="&#xfe;" u2="&#x29;" k="20" />
-<hkern u1="&#xfe;" u2="&#x21;" k="12" />
-<hkern u1="&#xff;" u2="&#x7d;" k="27" />
-<hkern u1="&#xff;" u2="]" k="31" />
-<hkern u1="&#xff;" u2="\" k="14" />
-<hkern u1="&#xff;" u2="X" k="86" />
-<hkern u1="&#xff;" u2="V" k="61" />
-<hkern u1="&#xff;" u2="Q" k="6" />
-<hkern u1="&#xff;" u2="P" k="47" />
-<hkern u1="&#xff;" u2="M" k="43" />
-<hkern u1="&#xff;" u2="F" k="47" />
-<hkern u1="&#xff;" u2="B" k="47" />
-<hkern u1="&#xff;" u2="&#x3f;" k="25" />
-<hkern u1="&#xff;" u2="&#x2f;" k="23" />
-<hkern u1="&#xff;" u2="&#x2e;" k="35" />
-<hkern u1="&#xff;" u2="&#x2c;" k="33" />
-<hkern u1="&#xff;" u2="&#x29;" k="27" />
-<hkern u1="&#xff;" u2="&#x21;" k="18" />
-<hkern u1="&#x152;" u2="&#xfe;" k="33" />
-<hkern u1="&#x152;" u2="&#xf0;" k="43" />
-<hkern u1="&#x152;" u2="&#xef;" k="-41" />
-<hkern u1="&#x152;" u2="&#xee;" k="-4" />
-<hkern u1="&#x152;" u2="&#xdf;" k="41" />
-<hkern u1="&#x152;" u2="x" k="31" />
-<hkern u1="&#x152;" u2="v" k="59" />
-<hkern u1="&#x152;" u2="q" k="39" />
-<hkern u1="&#x152;" u2="m" k="43" />
-<hkern u1="&#x152;" u2="b" k="31" />
-<hkern u1="&#x153;" u2="&#x7d;" k="57" />
-<hkern u1="&#x153;" u2="x" k="6" />
-<hkern u1="&#x153;" u2="]" k="61" />
-<hkern u1="&#x153;" u2="\" k="49" />
-<hkern u1="&#x153;" u2="X" k="53" />
-<hkern u1="&#x153;" u2="V" k="197" />
-<hkern u1="&#x153;" u2="Q" k="25" />
-<hkern u1="&#x153;" u2="P" k="47" />
-<hkern u1="&#x153;" u2="M" k="27" />
-<hkern u1="&#x153;" u2="F" k="47" />
-<hkern u1="&#x153;" u2="B" k="47" />
-<hkern u1="&#x153;" u2="&#x3f;" k="43" />
-<hkern u1="&#x153;" u2="&#x2a;" k="41" />
-<hkern u1="&#x153;" u2="&#x29;" k="16" />
-<hkern u1="&#x153;" u2="&#x21;" k="18" />
-<hkern u1="&#x178;" u2="&#xfe;" k="23" />
-<hkern u1="&#x178;" u2="&#xfc;" k="135" />
-<hkern u1="&#x178;" u2="&#xf6;" k="90" />
-<hkern u1="&#x178;" u2="&#xf5;" k="147" />
-<hkern u1="&#x178;" u2="&#xf4;" k="201" />
-<hkern u1="&#x178;" u2="&#xf2;" k="205" />
-<hkern u1="&#x178;" u2="&#xf0;" k="61" />
-<hkern u1="&#x178;" u2="&#xef;" k="-102" />
-<hkern u1="&#x178;" u2="&#xee;" k="-2" />
-<hkern u1="&#x178;" u2="&#xec;" k="-2" />
-<hkern u1="&#x178;" u2="&#xeb;" k="94" />
-<hkern u1="&#x178;" u2="&#xea;" k="205" />
-<hkern u1="&#x178;" u2="&#xe8;" k="227" />
-<hkern u1="&#x178;" u2="&#xe4;" k="72" />
-<hkern u1="&#x178;" u2="&#xe3;" k="117" />
-<hkern u1="&#x178;" u2="&#xdf;" k="53" />
-<hkern u1="&#x178;" u2="&#x7d;" k="-39" />
-<hkern u1="&#x178;" u2="x" k="84" />
-<hkern u1="&#x178;" u2="v" k="66" />
-<hkern u1="&#x178;" u2="q" k="242" />
-<hkern u1="&#x178;" u2="m" k="160" />
-<hkern u1="&#x178;" u2="b" k="23" />
-<hkern u1="&#x178;" u2="]" k="-49" />
-<hkern u1="&#x178;" u2="\" k="-49" />
-<hkern u1="&#x178;" u2="X" k="-14" />
-<hkern u1="&#x178;" u2="V" k="-41" />
-<hkern u1="&#x178;" u2="Q" k="27" />
-<hkern u1="&#x178;" u2="M" k="31" />
-<hkern u1="&#x178;" u2="&#x40;" k="51" />
-<hkern u1="&#x178;" u2="&#x3b;" k="47" />
-<hkern u1="&#x178;" u2="&#x3a;" k="68" />
-<hkern u1="&#x178;" u2="&#x2f;" k="68" />
-<hkern u1="&#x178;" u2="&#x2e;" k="143" />
-<hkern u1="&#x178;" u2="&#x2c;" k="133" />
-<hkern u1="&#x178;" u2="&#x29;" k="-18" />
-<hkern u1="&#x2013;" u2="&#xde;" k="39" />
-<hkern u1="&#x2013;" u2="x" k="10" />
-<hkern u1="&#x2013;" u2="X" k="78" />
-<hkern u1="&#x2013;" u2="V" k="94" />
-<hkern u1="&#x2013;" u2="Q" k="12" />
-<hkern u1="&#x2013;" u2="P" k="39" />
-<hkern u1="&#x2013;" u2="M" k="25" />
-<hkern u1="&#x2013;" u2="F" k="39" />
-<hkern u1="&#x2013;" u2="B" k="39" />
-<hkern u1="&#x2013;" u2="&#x39;" k="59" />
-<hkern u1="&#x2013;" u2="&#x38;" k="14" />
-<hkern u1="&#x2013;" u2="&#x37;" k="70" />
-<hkern u1="&#x2013;" u2="&#x35;" k="53" />
-<hkern u1="&#x2013;" u2="&#x33;" k="63" />
-<hkern u1="&#x2013;" u2="&#x32;" k="82" />
-<hkern u1="&#x2013;" u2="&#x31;" k="78" />
-<hkern u1="&#x2013;" u2="&#x30;" k="25" />
-<hkern u1="&#x2014;" u2="&#xde;" k="39" />
-<hkern u1="&#x2014;" u2="x" k="10" />
-<hkern u1="&#x2014;" u2="X" k="78" />
-<hkern u1="&#x2014;" u2="V" k="94" />
-<hkern u1="&#x2014;" u2="Q" k="12" />
-<hkern u1="&#x2014;" u2="P" k="39" />
-<hkern u1="&#x2014;" u2="M" k="25" />
-<hkern u1="&#x2014;" u2="F" k="39" />
-<hkern u1="&#x2014;" u2="B" k="39" />
-<hkern u1="&#x2014;" u2="&#x39;" k="59" />
-<hkern u1="&#x2014;" u2="&#x38;" k="14" />
-<hkern u1="&#x2014;" u2="&#x37;" k="70" />
-<hkern u1="&#x2014;" u2="&#x35;" k="53" />
-<hkern u1="&#x2014;" u2="&#x33;" k="63" />
-<hkern u1="&#x2014;" u2="&#x32;" k="82" />
-<hkern u1="&#x2014;" u2="&#x31;" k="78" />
-<hkern u1="&#x2014;" u2="&#x30;" k="25" />
-<hkern u1="&#x2018;" u2="&#xf0;" k="33" />
-<hkern u1="&#x2018;" u2="&#xde;" k="12" />
-<hkern u1="&#x2018;" u2="q" k="53" />
-<hkern u1="&#x2018;" u2="m" k="18" />
-<hkern u1="&#x2018;" u2="X" k="12" />
-<hkern u1="&#x2018;" u2="P" k="12" />
-<hkern u1="&#x2018;" u2="M" k="20" />
-<hkern u1="&#x2018;" u2="F" k="12" />
-<hkern u1="&#x2018;" u2="B" k="12" />
-<hkern u1="&#x2018;" u2="&#x2e;" k="137" />
-<hkern u1="&#x201a;" u2="&#xde;" k="35" />
-<hkern u1="&#x201a;" u2="v" k="47" />
-<hkern u1="&#x201a;" u2="V" k="168" />
-<hkern u1="&#x201a;" u2="Q" k="94" />
-<hkern u1="&#x201a;" u2="P" k="35" />
-<hkern u1="&#x201a;" u2="F" k="35" />
-<hkern u1="&#x201a;" u2="B" k="35" />
-<hkern u1="&#x201c;" u2="&#xf0;" k="33" />
-<hkern u1="&#x201c;" u2="&#xde;" k="12" />
-<hkern u1="&#x201c;" u2="q" k="53" />
-<hkern u1="&#x201c;" u2="m" k="18" />
-<hkern u1="&#x201c;" u2="X" k="12" />
-<hkern u1="&#x201c;" u2="P" k="12" />
-<hkern u1="&#x201c;" u2="M" k="20" />
-<hkern u1="&#x201c;" u2="F" k="12" />
-<hkern u1="&#x201c;" u2="B" k="12" />
-<hkern u1="&#x201c;" u2="&#x2e;" k="137" />
-<hkern u1="&#x201e;" u2="&#xde;" k="35" />
-<hkern u1="&#x201e;" u2="v" k="47" />
-<hkern u1="&#x201e;" u2="V" k="168" />
-<hkern u1="&#x201e;" u2="Q" k="94" />
-<hkern u1="&#x201e;" u2="P" k="35" />
-<hkern u1="&#x201e;" u2="F" k="35" />
-<hkern u1="&#x201e;" u2="B" k="35" />
-<hkern u1="&#x2039;" u2="&#xde;" k="12" />
-<hkern u1="&#x2039;" u2="V" k="31" />
-<hkern u1="&#x2039;" u2="P" k="12" />
-<hkern u1="&#x2039;" u2="F" k="12" />
-<hkern u1="&#x2039;" u2="B" k="12" />
-<hkern u1="&#x203a;" u2="&#xde;" k="12" />
-<hkern u1="&#x203a;" u2="x" k="18" />
-<hkern u1="&#x203a;" u2="v" k="10" />
-<hkern u1="&#x203a;" u2="X" k="18" />
-<hkern u1="&#x203a;" u2="V" k="72" />
-<hkern u1="&#x203a;" u2="P" k="12" />
-<hkern u1="&#x203a;" u2="F" k="12" />
-<hkern u1="&#x203a;" u2="B" k="12" />
-<hkern g1="uniFB01" u2="&#xef;" k="-39" />
-<hkern g1="uniFB01" u2="&#x7d;" k="10" />
-<hkern g1="uniFB01" u2="]" k="10" />
-<hkern g1="uniFB01" u2="\" k="12" />
-<hkern g1="uniFB01" u2="X" k="39" />
-<hkern g1="uniFB01" u2="V" k="33" />
-<hkern g1="uniFB01" u2="Q" k="35" />
-<hkern g1="uniFB01" u2="P" k="27" />
-<hkern g1="uniFB01" u2="M" k="20" />
-<hkern g1="uniFB01" u2="F" k="27" />
-<hkern g1="uniFB01" u2="B" k="27" />
-<hkern g1="uniFB01" u2="&#x21;" k="12" />
-<hkern g1="uniFB02" u2="&#xef;" k="-29" />
-<hkern g1="uniFB02" u2="X" k="37" />
-<hkern g1="uniFB02" u2="V" k="23" />
-<hkern g1="uniFB02" u2="Q" k="33" />
-<hkern g1="uniFB02" u2="P" k="27" />
-<hkern g1="uniFB02" u2="M" k="20" />
-<hkern g1="uniFB02" u2="F" k="27" />
-<hkern g1="uniFB02" u2="B" k="27" />
-<hkern g1="uniFB02" u2="&#x21;" k="12" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="j" 	k="12" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="n,ntilde" 	k="12" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteright,quotedblright" 	k="57" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="23" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="l" 	k="12" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="d" 	k="20" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="J" 	k="-33" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="t" 	k="35" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="12" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="y,yacute,ydieresis" 	k="59" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="74" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="k" 	k="12" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quotedbl,quotesingle" 	k="53" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="c,ccedilla" 	k="20" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="109" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="p,thorn" 	k="12" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="C,Ccedilla" 	k="12" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="hyphen,endash,emdash" 	k="29" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="20" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="f,uniFB01,uniFB02" 	k="27" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="31" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="r" 	k="12" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="w" 	k="53" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="25" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="G" 	k="12" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="W" 	k="66" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="h" 	k="12" />
-<hkern g1="C,Ccedilla" 	g2="j" 	k="29" />
-<hkern g1="C,Ccedilla" 	g2="n,ntilde" 	k="41" />
-<hkern g1="C,Ccedilla" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="35" />
-<hkern g1="C,Ccedilla" 	g2="l" 	k="27" />
-<hkern g1="C,Ccedilla" 	g2="d" 	k="35" />
-<hkern g1="C,Ccedilla" 	g2="J" 	k="-63" />
-<hkern g1="C,Ccedilla" 	g2="t" 	k="63" />
-<hkern g1="C,Ccedilla" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="6" />
-<hkern g1="C,Ccedilla" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="29" />
-<hkern g1="C,Ccedilla" 	g2="y,yacute,ydieresis" 	k="63" />
-<hkern g1="C,Ccedilla" 	g2="k" 	k="27" />
-<hkern g1="C,Ccedilla" 	g2="c,ccedilla" 	k="35" />
-<hkern g1="C,Ccedilla" 	g2="p,thorn" 	k="41" />
-<hkern g1="C,Ccedilla" 	g2="C,Ccedilla" 	k="6" />
-<hkern g1="C,Ccedilla" 	g2="hyphen,endash,emdash" 	k="61" />
-<hkern g1="C,Ccedilla" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="35" />
-<hkern g1="C,Ccedilla" 	g2="f,uniFB01,uniFB02" 	k="57" />
-<hkern g1="C,Ccedilla" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="49" />
-<hkern g1="C,Ccedilla" 	g2="r" 	k="41" />
-<hkern g1="C,Ccedilla" 	g2="w" 	k="61" />
-<hkern g1="C,Ccedilla" 	g2="G" 	k="6" />
-<hkern g1="C,Ccedilla" 	g2="h" 	k="27" />
-<hkern g1="C,Ccedilla" 	g2="s" 	k="45" />
-<hkern g1="C,Ccedilla" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="23" />
-<hkern g1="C,Ccedilla" 	g2="g" 	k="23" />
-<hkern g1="C,Ccedilla" 	g2="z" 	k="47" />
-<hkern g1="D,Eth" 	g2="j" 	k="37" />
-<hkern g1="D,Eth" 	g2="n,ntilde" 	k="37" />
-<hkern g1="D,Eth" 	g2="quoteright,quotedblright" 	k="12" />
-<hkern g1="D,Eth" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="33" />
-<hkern g1="D,Eth" 	g2="l" 	k="35" />
-<hkern g1="D,Eth" 	g2="d" 	k="31" />
-<hkern g1="D,Eth" 	g2="J" 	k="29" />
-<hkern g1="D,Eth" 	g2="t" 	k="20" />
-<hkern g1="D,Eth" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="37" />
-<hkern g1="D,Eth" 	g2="y,yacute,ydieresis" 	k="8" />
-<hkern g1="D,Eth" 	g2="T" 	k="10" />
-<hkern g1="D,Eth" 	g2="k" 	k="35" />
-<hkern g1="D,Eth" 	g2="quotedbl,quotesingle" 	k="18" />
-<hkern g1="D,Eth" 	g2="c,ccedilla" 	k="33" />
-<hkern g1="D,Eth" 	g2="Y,Yacute,Ydieresis" 	k="29" />
-<hkern g1="D,Eth" 	g2="p,thorn" 	k="37" />
-<hkern g1="D,Eth" 	g2="hyphen,endash,emdash" 	k="14" />
-<hkern g1="D,Eth" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="33" />
-<hkern g1="D,Eth" 	g2="f,uniFB01,uniFB02" 	k="27" />
-<hkern g1="D,Eth" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="31" />
-<hkern g1="D,Eth" 	g2="r" 	k="37" />
-<hkern g1="D,Eth" 	g2="w" 	k="12" />
-<hkern g1="D,Eth" 	g2="W" 	k="10" />
-<hkern g1="D,Eth" 	g2="h" 	k="35" />
-<hkern g1="D,Eth" 	g2="s" 	k="27" />
-<hkern g1="D,Eth" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="45" />
-<hkern g1="D,Eth" 	g2="g" 	k="61" />
-<hkern g1="D,Eth" 	g2="z" 	k="29" />
-<hkern g1="D,Eth" 	g2="quotesinglbase,quotedblbase" 	k="90" />
-<hkern g1="D,Eth" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="14" />
-<hkern g1="D,Eth" 	g2="Z" 	k="10" />
-<hkern g1="D,Eth" 	g2="AE" 	k="23" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="j" 	k="35" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="n,ntilde" 	k="43" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="41" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="l" 	k="31" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="d" 	k="39" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="J" 	k="-18" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="t" 	k="53" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="35" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="y,yacute,ydieresis" 	k="59" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="k" 	k="31" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="c,ccedilla" 	k="39" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="p,thorn" 	k="43" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="hyphen,endash,emdash" 	k="47" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="41" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="f,uniFB01,uniFB02" 	k="55" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="49" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="r" 	k="43" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="w" 	k="61" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="h" 	k="31" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="s" 	k="37" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="31" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="g" 	k="25" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="z" 	k="35" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="quotesinglbase,quotedblbase" 	k="10" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="AE" 	k="-18" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="guillemotleft,guilsinglleft" 	k="10" />
-<hkern g1="G" 	g2="j" 	k="27" />
-<hkern g1="G" 	g2="n,ntilde" 	k="29" />
-<hkern g1="G" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="23" />
-<hkern g1="G" 	g2="l" 	k="27" />
-<hkern g1="G" 	g2="d" 	k="20" />
-<hkern g1="G" 	g2="t" 	k="25" />
-<hkern g1="G" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="27" />
-<hkern g1="G" 	g2="y,yacute,ydieresis" 	k="27" />
-<hkern g1="G" 	g2="k" 	k="27" />
-<hkern g1="G" 	g2="c,ccedilla" 	k="20" />
-<hkern g1="G" 	g2="p,thorn" 	k="29" />
-<hkern g1="G" 	g2="hyphen,endash,emdash" 	k="12" />
-<hkern g1="G" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="23" />
-<hkern g1="G" 	g2="f,uniFB01,uniFB02" 	k="31" />
-<hkern g1="G" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="27" />
-<hkern g1="G" 	g2="r" 	k="29" />
-<hkern g1="G" 	g2="w" 	k="27" />
-<hkern g1="G" 	g2="h" 	k="27" />
-<hkern g1="G" 	g2="s" 	k="23" />
-<hkern g1="G" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="25" />
-<hkern g1="G" 	g2="g" 	k="25" />
-<hkern g1="G" 	g2="z" 	k="27" />
-<hkern g1="G" 	g2="quotesinglbase,quotedblbase" 	k="10" />
-<hkern g1="H" 	g2="j" 	k="27" />
-<hkern g1="H" 	g2="n,ntilde" 	k="27" />
-<hkern g1="H" 	g2="quoteright,quotedblright" 	k="12" />
-<hkern g1="H" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="43" />
-<hkern g1="H" 	g2="l" 	k="27" />
-<hkern g1="H" 	g2="d" 	k="41" />
-<hkern g1="H" 	g2="t" 	k="41" />
-<hkern g1="H" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="27" />
-<hkern g1="H" 	g2="y,yacute,ydieresis" 	k="49" />
-<hkern g1="H" 	g2="k" 	k="27" />
-<hkern g1="H" 	g2="quotedbl,quotesingle" 	k="16" />
-<hkern g1="H" 	g2="c,ccedilla" 	k="45" />
-<hkern g1="H" 	g2="p,thorn" 	k="27" />
-<hkern g1="H" 	g2="hyphen,endash,emdash" 	k="39" />
-<hkern g1="H" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="43" />
-<hkern g1="H" 	g2="f,uniFB01,uniFB02" 	k="37" />
-<hkern g1="H" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="33" />
-<hkern g1="H" 	g2="r" 	k="27" />
-<hkern g1="H" 	g2="w" 	k="47" />
-<hkern g1="H" 	g2="W" 	k="6" />
-<hkern g1="H" 	g2="h" 	k="27" />
-<hkern g1="H" 	g2="s" 	k="43" />
-<hkern g1="H" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="47" />
-<hkern g1="H" 	g2="g" 	k="47" />
-<hkern g1="H" 	g2="z" 	k="47" />
-<hkern g1="H" 	g2="quotesinglbase,quotedblbase" 	k="35" />
-<hkern g1="H" 	g2="guillemotleft,guilsinglleft" 	k="12" />
-<hkern g1="H" 	g2="guillemotright,guilsinglright" 	k="12" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="j" 	k="27" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="n,ntilde" 	k="27" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="quoteright,quotedblright" 	k="12" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="43" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="l" 	k="27" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="d" 	k="41" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="t" 	k="41" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="27" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="y,yacute,ydieresis" 	k="49" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="k" 	k="27" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="quotedbl,quotesingle" 	k="16" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="c,ccedilla" 	k="45" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="p,thorn" 	k="27" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="hyphen,endash,emdash" 	k="39" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="43" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="f,uniFB01,uniFB02" 	k="37" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="33" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="r" 	k="27" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="w" 	k="47" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="W" 	k="6" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="h" 	k="27" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="s" 	k="43" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="47" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="g" 	k="47" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="z" 	k="47" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="quotesinglbase,quotedblbase" 	k="35" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="guillemotleft,guilsinglleft" 	k="12" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="guillemotright,guilsinglright" 	k="12" />
-<hkern g1="J" 	g2="j" 	k="23" />
-<hkern g1="J" 	g2="n,ntilde" 	k="20" />
-<hkern g1="J" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="33" />
-<hkern g1="J" 	g2="l" 	k="20" />
-<hkern g1="J" 	g2="d" 	k="33" />
-<hkern g1="J" 	g2="t" 	k="33" />
-<hkern g1="J" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
-<hkern g1="J" 	g2="y,yacute,ydieresis" 	k="29" />
-<hkern g1="J" 	g2="k" 	k="20" />
-<hkern g1="J" 	g2="c,ccedilla" 	k="33" />
-<hkern g1="J" 	g2="p,thorn" 	k="20" />
-<hkern g1="J" 	g2="hyphen,endash,emdash" 	k="20" />
-<hkern g1="J" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="33" />
-<hkern g1="J" 	g2="f,uniFB01,uniFB02" 	k="25" />
-<hkern g1="J" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="23" />
-<hkern g1="J" 	g2="r" 	k="20" />
-<hkern g1="J" 	g2="w" 	k="31" />
-<hkern g1="J" 	g2="h" 	k="20" />
-<hkern g1="J" 	g2="s" 	k="33" />
-<hkern g1="J" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="31" />
-<hkern g1="J" 	g2="g" 	k="41" />
-<hkern g1="J" 	g2="z" 	k="31" />
-<hkern g1="J" 	g2="quotesinglbase,quotedblbase" 	k="45" />
-<hkern g1="K" 	g2="j" 	k="31" />
-<hkern g1="K" 	g2="n,ntilde" 	k="35" />
-<hkern g1="K" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="57" />
-<hkern g1="K" 	g2="l" 	k="33" />
-<hkern g1="K" 	g2="d" 	k="53" />
-<hkern g1="K" 	g2="J" 	k="-20" />
-<hkern g1="K" 	g2="t" 	k="63" />
-<hkern g1="K" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="29" />
-<hkern g1="K" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="31" />
-<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="59" />
-<hkern g1="K" 	g2="k" 	k="33" />
-<hkern g1="K" 	g2="c,ccedilla" 	k="55" />
-<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="-10" />
-<hkern g1="K" 	g2="p,thorn" 	k="33" />
-<hkern g1="K" 	g2="C,Ccedilla" 	k="29" />
-<hkern g1="K" 	g2="hyphen,endash,emdash" 	k="76" />
-<hkern g1="K" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="55" />
-<hkern g1="K" 	g2="f,uniFB01,uniFB02" 	k="55" />
-<hkern g1="K" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="55" />
-<hkern g1="K" 	g2="r" 	k="35" />
-<hkern g1="K" 	g2="w" 	k="59" />
-<hkern g1="K" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="10" />
-<hkern g1="K" 	g2="G" 	k="29" />
-<hkern g1="K" 	g2="h" 	k="33" />
-<hkern g1="K" 	g2="s" 	k="23" />
-<hkern g1="K" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="29" />
-<hkern g1="K" 	g2="z" 	k="20" />
-<hkern g1="K" 	g2="guillemotleft,guilsinglleft" 	k="16" />
-<hkern g1="L" 	g2="j" 	k="12" />
-<hkern g1="L" 	g2="n,ntilde" 	k="14" />
-<hkern g1="L" 	g2="quoteright,quotedblright" 	k="74" />
-<hkern g1="L" 	g2="l" 	k="14" />
-<hkern g1="L" 	g2="J" 	k="-94" />
-<hkern g1="L" 	g2="t" 	k="31" />
-<hkern g1="L" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="8" />
-<hkern g1="L" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="14" />
-<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="49" />
-<hkern g1="L" 	g2="T" 	k="78" />
-<hkern g1="L" 	g2="k" 	k="14" />
-<hkern g1="L" 	g2="quotedbl,quotesingle" 	k="66" />
-<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="98" />
-<hkern g1="L" 	g2="p,thorn" 	k="12" />
-<hkern g1="L" 	g2="C,Ccedilla" 	k="10" />
-<hkern g1="L" 	g2="hyphen,endash,emdash" 	k="18" />
-<hkern g1="L" 	g2="f,uniFB01,uniFB02" 	k="29" />
-<hkern g1="L" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
-<hkern g1="L" 	g2="r" 	k="14" />
-<hkern g1="L" 	g2="w" 	k="41" />
-<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="16" />
-<hkern g1="L" 	g2="G" 	k="10" />
-<hkern g1="L" 	g2="W" 	k="82" />
-<hkern g1="L" 	g2="h" 	k="14" />
-<hkern g1="L" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-68" />
-<hkern g1="L" 	g2="Z" 	k="-10" />
-<hkern g1="L" 	g2="AE" 	k="-94" />
-<hkern g1="N,Ntilde" 	g2="j" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="n,ntilde" 	k="25" />
-<hkern g1="N,Ntilde" 	g2="quoteright,quotedblright" 	k="14" />
-<hkern g1="N,Ntilde" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="47" />
-<hkern g1="N,Ntilde" 	g2="l" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="d" 	k="43" />
-<hkern g1="N,Ntilde" 	g2="t" 	k="43" />
-<hkern g1="N,Ntilde" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="25" />
-<hkern g1="N,Ntilde" 	g2="y,yacute,ydieresis" 	k="47" />
-<hkern g1="N,Ntilde" 	g2="k" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="quotedbl,quotesingle" 	k="16" />
-<hkern g1="N,Ntilde" 	g2="c,ccedilla" 	k="47" />
-<hkern g1="N,Ntilde" 	g2="p,thorn" 	k="25" />
-<hkern g1="N,Ntilde" 	g2="hyphen,endash,emdash" 	k="39" />
-<hkern g1="N,Ntilde" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="45" />
-<hkern g1="N,Ntilde" 	g2="f,uniFB01,uniFB02" 	k="37" />
-<hkern g1="N,Ntilde" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="35" />
-<hkern g1="N,Ntilde" 	g2="r" 	k="25" />
-<hkern g1="N,Ntilde" 	g2="w" 	k="47" />
-<hkern g1="N,Ntilde" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="6" />
-<hkern g1="N,Ntilde" 	g2="W" 	k="6" />
-<hkern g1="N,Ntilde" 	g2="h" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="s" 	k="45" />
-<hkern g1="N,Ntilde" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="49" />
-<hkern g1="N,Ntilde" 	g2="g" 	k="47" />
-<hkern g1="N,Ntilde" 	g2="z" 	k="45" />
-<hkern g1="N,Ntilde" 	g2="quotesinglbase,quotedblbase" 	k="37" />
-<hkern g1="N,Ntilde" 	g2="guillemotleft,guilsinglleft" 	k="12" />
-<hkern g1="N,Ntilde" 	g2="guillemotright,guilsinglright" 	k="12" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="j" 	k="35" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="n,ntilde" 	k="35" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="quoteright,quotedblright" 	k="12" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="31" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="l" 	k="33" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="d" 	k="29" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="J" 	k="25" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="t" 	k="18" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="35" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="y,yacute,ydieresis" 	k="6" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="T" 	k="8" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="k" 	k="33" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="quotedbl,quotesingle" 	k="18" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="c,ccedilla" 	k="31" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="Y,Yacute,Ydieresis" 	k="25" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="p,thorn" 	k="35" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="hyphen,endash,emdash" 	k="12" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="31" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="f,uniFB01,uniFB02" 	k="25" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="29" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="r" 	k="35" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="w" 	k="10" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="W" 	k="10" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="h" 	k="33" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="s" 	k="27" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="43" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="g" 	k="61" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="z" 	k="29" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="quotesinglbase,quotedblbase" 	k="84" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="12" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="Z" 	k="10" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="AE" 	k="20" />
-<hkern g1="R" 	g2="j" 	k="51" />
-<hkern g1="R" 	g2="n,ntilde" 	k="49" />
-<hkern g1="R" 	g2="quoteright,quotedblright" 	k="10" />
-<hkern g1="R" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="74" />
-<hkern g1="R" 	g2="l" 	k="43" />
-<hkern g1="R" 	g2="d" 	k="59" />
-<hkern g1="R" 	g2="t" 	k="51" />
-<hkern g1="R" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="51" />
-<hkern g1="R" 	g2="y,yacute,ydieresis" 	k="39" />
-<hkern g1="R" 	g2="k" 	k="43" />
-<hkern g1="R" 	g2="c,ccedilla" 	k="72" />
-<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="6" />
-<hkern g1="R" 	g2="p,thorn" 	k="49" />
-<hkern g1="R" 	g2="hyphen,endash,emdash" 	k="84" />
-<hkern g1="R" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="74" />
-<hkern g1="R" 	g2="f,uniFB01,uniFB02" 	k="53" />
-<hkern g1="R" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="49" />
-<hkern g1="R" 	g2="r" 	k="49" />
-<hkern g1="R" 	g2="w" 	k="43" />
-<hkern g1="R" 	g2="h" 	k="43" />
-<hkern g1="R" 	g2="s" 	k="53" />
-<hkern g1="R" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="59" />
-<hkern g1="R" 	g2="g" 	k="37" />
-<hkern g1="R" 	g2="z" 	k="43" />
-<hkern g1="R" 	g2="quotesinglbase,quotedblbase" 	k="20" />
-<hkern g1="R" 	g2="guillemotleft,guilsinglleft" 	k="27" />
-<hkern g1="R" 	g2="guillemotright,guilsinglright" 	k="10" />
-<hkern g1="S" 	g2="j" 	k="31" />
-<hkern g1="S" 	g2="n,ntilde" 	k="33" />
-<hkern g1="S" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="18" />
-<hkern g1="S" 	g2="l" 	k="31" />
-<hkern g1="S" 	g2="d" 	k="18" />
-<hkern g1="S" 	g2="t" 	k="33" />
-<hkern g1="S" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="29" />
-<hkern g1="S" 	g2="y,yacute,ydieresis" 	k="43" />
-<hkern g1="S" 	g2="k" 	k="31" />
-<hkern g1="S" 	g2="c,ccedilla" 	k="18" />
-<hkern g1="S" 	g2="p,thorn" 	k="33" />
-<hkern g1="S" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="18" />
-<hkern g1="S" 	g2="f,uniFB01,uniFB02" 	k="39" />
-<hkern g1="S" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="29" />
-<hkern g1="S" 	g2="r" 	k="33" />
-<hkern g1="S" 	g2="w" 	k="39" />
-<hkern g1="S" 	g2="h" 	k="31" />
-<hkern g1="S" 	g2="s" 	k="27" />
-<hkern g1="S" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="25" />
-<hkern g1="S" 	g2="g" 	k="37" />
-<hkern g1="S" 	g2="z" 	k="39" />
-<hkern g1="S" 	g2="quotesinglbase,quotedblbase" 	k="20" />
-<hkern g1="T" 	g2="j" 	k="29" />
-<hkern g1="T" 	g2="n,ntilde" 	k="119" />
-<hkern g1="T" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="160" />
-<hkern g1="T" 	g2="l" 	k="25" />
-<hkern g1="T" 	g2="d" 	k="160" />
-<hkern g1="T" 	g2="J" 	k="72" />
-<hkern g1="T" 	g2="t" 	k="61" />
-<hkern g1="T" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="8" />
-<hkern g1="T" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="29" />
-<hkern g1="T" 	g2="y,yacute,ydieresis" 	k="61" />
-<hkern g1="T" 	g2="T" 	k="-25" />
-<hkern g1="T" 	g2="k" 	k="25" />
-<hkern g1="T" 	g2="c,ccedilla" 	k="160" />
-<hkern g1="T" 	g2="Y,Yacute,Ydieresis" 	k="-70" />
-<hkern g1="T" 	g2="p,thorn" 	k="119" />
-<hkern g1="T" 	g2="C,Ccedilla" 	k="8" />
-<hkern g1="T" 	g2="hyphen,endash,emdash" 	k="92" />
-<hkern g1="T" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="162" />
-<hkern g1="T" 	g2="f,uniFB01,uniFB02" 	k="57" />
-<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="127" />
-<hkern g1="T" 	g2="r" 	k="119" />
-<hkern g1="T" 	g2="w" 	k="80" />
-<hkern g1="T" 	g2="G" 	k="8" />
-<hkern g1="T" 	g2="h" 	k="25" />
-<hkern g1="T" 	g2="s" 	k="135" />
-<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="139" />
-<hkern g1="T" 	g2="g" 	k="162" />
-<hkern g1="T" 	g2="z" 	k="137" />
-<hkern g1="T" 	g2="quotesinglbase,quotedblbase" 	k="113" />
-<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="74" />
-<hkern g1="T" 	g2="AE" 	k="76" />
-<hkern g1="T" 	g2="guillemotleft,guilsinglleft" 	k="66" />
-<hkern g1="T" 	g2="guillemotright,guilsinglright" 	k="37" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="j" 	k="37" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="n,ntilde" 	k="51" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="quoteright,quotedblright" 	k="10" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="49" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="l" 	k="37" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="d" 	k="49" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="35" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="t" 	k="49" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="37" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="y,yacute,ydieresis" 	k="41" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="k" 	k="37" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="quotedbl,quotesingle" 	k="12" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="c,ccedilla" 	k="49" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="p,thorn" 	k="51" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="hyphen,endash,emdash" 	k="37" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="49" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="f,uniFB01,uniFB02" 	k="41" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="39" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="r" 	k="51" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="w" 	k="43" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="6" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="h" 	k="37" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="s" 	k="49" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="45" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="g" 	k="70" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="z" 	k="47" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="quotesinglbase,quotedblbase" 	k="92" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="25" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="AE" 	k="33" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="guillemotleft,guilsinglleft" 	k="12" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="guillemotright,guilsinglright" 	k="14" />
-<hkern g1="W" 	g2="j" 	k="51" />
-<hkern g1="W" 	g2="n,ntilde" 	k="102" />
-<hkern g1="W" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="121" />
-<hkern g1="W" 	g2="l" 	k="43" />
-<hkern g1="W" 	g2="d" 	k="119" />
-<hkern g1="W" 	g2="J" 	k="57" />
-<hkern g1="W" 	g2="t" 	k="59" />
-<hkern g1="W" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
-<hkern g1="W" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="51" />
-<hkern g1="W" 	g2="y,yacute,ydieresis" 	k="61" />
-<hkern g1="W" 	g2="k" 	k="43" />
-<hkern g1="W" 	g2="c,ccedilla" 	k="123" />
-<hkern g1="W" 	g2="Y,Yacute,Ydieresis" 	k="-18" />
-<hkern g1="W" 	g2="p,thorn" 	k="102" />
-<hkern g1="W" 	g2="C,Ccedilla" 	k="10" />
-<hkern g1="W" 	g2="hyphen,endash,emdash" 	k="82" />
-<hkern g1="W" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="121" />
-<hkern g1="W" 	g2="f,uniFB01,uniFB02" 	k="53" />
-<hkern g1="W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="113" />
-<hkern g1="W" 	g2="r" 	k="102" />
-<hkern g1="W" 	g2="w" 	k="61" />
-<hkern g1="W" 	g2="G" 	k="10" />
-<hkern g1="W" 	g2="h" 	k="43" />
-<hkern g1="W" 	g2="s" 	k="119" />
-<hkern g1="W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="125" />
-<hkern g1="W" 	g2="g" 	k="154" />
-<hkern g1="W" 	g2="z" 	k="102" />
-<hkern g1="W" 	g2="quotesinglbase,quotedblbase" 	k="133" />
-<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="66" />
-<hkern g1="W" 	g2="AE" 	k="84" />
-<hkern g1="W" 	g2="guillemotleft,guilsinglleft" 	k="49" />
-<hkern g1="W" 	g2="guillemotright,guilsinglright" 	k="29" />
-<hkern g1="W" 	g2="K" 	k="6" />
-<hkern g1="W" 	g2="H" 	k="6" />
-<hkern g1="W" 	g2="R" 	k="6" />
-<hkern g1="W" 	g2="L" 	k="6" />
-<hkern g1="W" 	g2="D,Eth" 	k="6" />
-<hkern g1="W" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="6" />
-<hkern g1="W" 	g2="N,Ntilde" 	k="6" />
-<hkern g1="W" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="6" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="j" 	k="35" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="n,ntilde" 	k="160" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="quoteright,quotedblright" 	k="-27" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="244" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="l" 	k="23" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="d" 	k="242" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="74" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="61" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="27" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="33" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="66" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="T" 	k="-70" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="k" 	k="23" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="c,ccedilla" 	k="244" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="-43" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="p,thorn" 	k="160" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="C,Ccedilla" 	k="27" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,endash,emdash" 	k="119" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="244" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="f,uniFB01,uniFB02" 	k="66" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="164" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="r" 	k="160" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="68" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="G" 	k="27" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="W" 	k="-18" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="h" 	k="23" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="207" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="180" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="244" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="150" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="quotesinglbase,quotedblbase" 	k="135" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="113" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="AE" 	k="139" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="78" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotright,guilsinglright" 	k="43" />
-<hkern g1="Z" 	g2="j" 	k="39" />
-<hkern g1="Z" 	g2="n,ntilde" 	k="47" />
-<hkern g1="Z" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="43" />
-<hkern g1="Z" 	g2="l" 	k="37" />
-<hkern g1="Z" 	g2="d" 	k="43" />
-<hkern g1="Z" 	g2="J" 	k="-12" />
-<hkern g1="Z" 	g2="t" 	k="61" />
-<hkern g1="Z" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
-<hkern g1="Z" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="37" />
-<hkern g1="Z" 	g2="y,yacute,ydieresis" 	k="61" />
-<hkern g1="Z" 	g2="k" 	k="37" />
-<hkern g1="Z" 	g2="c,ccedilla" 	k="43" />
-<hkern g1="Z" 	g2="Y,Yacute,Ydieresis" 	k="-16" />
-<hkern g1="Z" 	g2="p,thorn" 	k="47" />
-<hkern g1="Z" 	g2="C,Ccedilla" 	k="10" />
-<hkern g1="Z" 	g2="hyphen,endash,emdash" 	k="61" />
-<hkern g1="Z" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="43" />
-<hkern g1="Z" 	g2="f,uniFB01,uniFB02" 	k="55" />
-<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="55" />
-<hkern g1="Z" 	g2="r" 	k="47" />
-<hkern g1="Z" 	g2="w" 	k="61" />
-<hkern g1="Z" 	g2="G" 	k="10" />
-<hkern g1="Z" 	g2="h" 	k="37" />
-<hkern g1="Z" 	g2="s" 	k="43" />
-<hkern g1="Z" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="33" />
-<hkern g1="Z" 	g2="g" 	k="25" />
-<hkern g1="Z" 	g2="z" 	k="41" />
-<hkern g1="Z" 	g2="quotesinglbase,quotedblbase" 	k="10" />
-<hkern g1="Z" 	g2="AE" 	k="-14" />
-<hkern g1="Z" 	g2="guillemotleft,guilsinglleft" 	k="10" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="quoteright,quotedblright" 	k="53" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="y,yacute,ydieresis" 	k="6" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="T" 	k="168" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="quotedbl,quotesingle" 	k="88" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="Y,Yacute,Ydieresis" 	k="231" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="C,Ccedilla" 	k="41" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="w" 	k="6" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="53" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="G" 	k="41" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="W" 	k="123" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="Z" 	k="33" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="K" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="H" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="R" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="L" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="D,Eth" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="N,Ntilde" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="S" 	k="47" />
-<hkern g1="b,thorn" 	g2="quoteright,quotedblright" 	k="53" />
-<hkern g1="b,thorn" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="29" />
-<hkern g1="b,thorn" 	g2="T" 	k="160" />
-<hkern g1="b,thorn" 	g2="quotedbl,quotesingle" 	k="76" />
-<hkern g1="b,thorn" 	g2="Y,Yacute,Ydieresis" 	k="236" />
-<hkern g1="b,thorn" 	g2="C,Ccedilla" 	k="29" />
-<hkern g1="b,thorn" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="47" />
-<hkern g1="b,thorn" 	g2="G" 	k="31" />
-<hkern g1="b,thorn" 	g2="W" 	k="119" />
-<hkern g1="b,thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
-<hkern g1="b,thorn" 	g2="Z" 	k="47" />
-<hkern g1="b,thorn" 	g2="K" 	k="41" />
-<hkern g1="b,thorn" 	g2="H" 	k="41" />
-<hkern g1="b,thorn" 	g2="R" 	k="41" />
-<hkern g1="b,thorn" 	g2="L" 	k="41" />
-<hkern g1="b,thorn" 	g2="D,Eth" 	k="41" />
-<hkern g1="b,thorn" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="41" />
-<hkern g1="b,thorn" 	g2="N,Ntilde" 	k="41" />
-<hkern g1="b,thorn" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="41" />
-<hkern g1="b,thorn" 	g2="S" 	k="47" />
-<hkern g1="c,ccedilla" 	g2="quoteright,quotedblright" 	k="49" />
-<hkern g1="c,ccedilla" 	g2="J" 	k="-39" />
-<hkern g1="c,ccedilla" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="29" />
-<hkern g1="c,ccedilla" 	g2="T" 	k="172" />
-<hkern g1="c,ccedilla" 	g2="quotedbl,quotesingle" 	k="82" />
-<hkern g1="c,ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="209" />
-<hkern g1="c,ccedilla" 	g2="C,Ccedilla" 	k="29" />
-<hkern g1="c,ccedilla" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="47" />
-<hkern g1="c,ccedilla" 	g2="G" 	k="31" />
-<hkern g1="c,ccedilla" 	g2="W" 	k="150" />
-<hkern g1="c,ccedilla" 	g2="Z" 	k="27" />
-<hkern g1="c,ccedilla" 	g2="K" 	k="49" />
-<hkern g1="c,ccedilla" 	g2="H" 	k="47" />
-<hkern g1="c,ccedilla" 	g2="R" 	k="47" />
-<hkern g1="c,ccedilla" 	g2="L" 	k="47" />
-<hkern g1="c,ccedilla" 	g2="D,Eth" 	k="47" />
-<hkern g1="c,ccedilla" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="47" />
-<hkern g1="c,ccedilla" 	g2="N,Ntilde" 	k="47" />
-<hkern g1="c,ccedilla" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="47" />
-<hkern g1="c,ccedilla" 	g2="S" 	k="33" />
-<hkern g1="d" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="33" />
-<hkern g1="d" 	g2="T" 	k="25" />
-<hkern g1="d" 	g2="Y,Yacute,Ydieresis" 	k="23" />
-<hkern g1="d" 	g2="C,Ccedilla" 	k="33" />
-<hkern g1="d" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="37" />
-<hkern g1="d" 	g2="G" 	k="35" />
-<hkern g1="d" 	g2="W" 	k="43" />
-<hkern g1="d" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="12" />
-<hkern g1="d" 	g2="Z" 	k="33" />
-<hkern g1="d" 	g2="K" 	k="27" />
-<hkern g1="d" 	g2="H" 	k="27" />
-<hkern g1="d" 	g2="R" 	k="27" />
-<hkern g1="d" 	g2="L" 	k="27" />
-<hkern g1="d" 	g2="D,Eth" 	k="27" />
-<hkern g1="d" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="27" />
-<hkern g1="d" 	g2="N,Ntilde" 	k="27" />
-<hkern g1="d" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="27" />
-<hkern g1="d" 	g2="S" 	k="33" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteright,quotedblright" 	k="53" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="25" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="T" 	k="150" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quotedbl,quotesingle" 	k="88" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="225" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="C,Ccedilla" 	k="25" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="49" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="G" 	k="25" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="W" 	k="135" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="16" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Z" 	k="41" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="K" 	k="49" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="H" 	k="47" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="R" 	k="47" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="L" 	k="47" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="D,Eth" 	k="47" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="47" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="N,Ntilde" 	k="47" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="47" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="S" 	k="55" />
-<hkern g1="f" 	g2="j" 	k="-25" />
-<hkern g1="f" 	g2="quoteright,quotedblright" 	k="-119" />
-<hkern g1="f" 	g2="J" 	k="63" />
-<hkern g1="f" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
-<hkern g1="f" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-27" />
-<hkern g1="f" 	g2="T" 	k="-121" />
-<hkern g1="f" 	g2="quotedbl,quotesingle" 	k="-86" />
-<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-162" />
-<hkern g1="f" 	g2="C,Ccedilla" 	k="10" />
-<hkern g1="f" 	g2="G" 	k="12" />
-<hkern g1="f" 	g2="W" 	k="-98" />
-<hkern g1="f" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="6" />
-<hkern g1="f" 	g2="g" 	k="14" />
-<hkern g1="f" 	g2="quotesinglbase,quotedblbase" 	k="16" />
-<hkern g1="f" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="61" />
-<hkern g1="f" 	g2="Z" 	k="-43" />
-<hkern g1="f" 	g2="K" 	k="10" />
-<hkern g1="f" 	g2="H" 	k="10" />
-<hkern g1="f" 	g2="R" 	k="10" />
-<hkern g1="f" 	g2="L" 	k="10" />
-<hkern g1="f" 	g2="D,Eth" 	k="10" />
-<hkern g1="f" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="10" />
-<hkern g1="f" 	g2="N,Ntilde" 	k="8" />
-<hkern g1="f" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="10" />
-<hkern g1="g" 	g2="j" 	k="-236" />
-<hkern g1="g" 	g2="J" 	k="43" />
-<hkern g1="g" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
-<hkern g1="g" 	g2="T" 	k="76" />
-<hkern g1="g" 	g2="quotedbl,quotesingle" 	k="55" />
-<hkern g1="g" 	g2="Y,Yacute,Ydieresis" 	k="68" />
-<hkern g1="g" 	g2="C,Ccedilla" 	k="12" />
-<hkern g1="g" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="43" />
-<hkern g1="g" 	g2="G" 	k="12" />
-<hkern g1="g" 	g2="W" 	k="61" />
-<hkern g1="g" 	g2="g" 	k="16" />
-<hkern g1="g" 	g2="quotesinglbase,quotedblbase" 	k="14" />
-<hkern g1="g" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="49" />
-<hkern g1="g" 	g2="Z" 	k="59" />
-<hkern g1="g" 	g2="K" 	k="49" />
-<hkern g1="g" 	g2="H" 	k="49" />
-<hkern g1="g" 	g2="R" 	k="49" />
-<hkern g1="g" 	g2="L" 	k="49" />
-<hkern g1="g" 	g2="D,Eth" 	k="49" />
-<hkern g1="g" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="49" />
-<hkern g1="g" 	g2="N,Ntilde" 	k="49" />
-<hkern g1="g" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="49" />
-<hkern g1="g" 	g2="S" 	k="45" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="T" 	k="37" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="quotedbl,quotesingle" 	k="78" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="Y,Yacute,Ydieresis" 	k="41" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="14" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="W" 	k="29" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="K" 	k="12" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="H" 	k="12" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="R" 	k="12" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="L" 	k="12" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="D,Eth" 	k="12" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="12" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="N,Ntilde" 	k="12" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="12" />
-<hkern g1="guillemotright,guilsinglright" 	g2="T" 	k="66" />
-<hkern g1="guillemotright,guilsinglright" 	g2="quotedbl,quotesingle" 	k="100" />
-<hkern g1="guillemotright,guilsinglright" 	g2="Y,Yacute,Ydieresis" 	k="76" />
-<hkern g1="guillemotright,guilsinglright" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="12" />
-<hkern g1="guillemotright,guilsinglright" 	g2="W" 	k="49" />
-<hkern g1="guillemotright,guilsinglright" 	g2="Z" 	k="12" />
-<hkern g1="guillemotright,guilsinglright" 	g2="K" 	k="12" />
-<hkern g1="guillemotright,guilsinglright" 	g2="H" 	k="12" />
-<hkern g1="guillemotright,guilsinglright" 	g2="R" 	k="12" />
-<hkern g1="guillemotright,guilsinglright" 	g2="L" 	k="12" />
-<hkern g1="guillemotright,guilsinglright" 	g2="D,Eth" 	k="12" />
-<hkern g1="guillemotright,guilsinglright" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="12" />
-<hkern g1="guillemotright,guilsinglright" 	g2="N,Ntilde" 	k="12" />
-<hkern g1="guillemotright,guilsinglright" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="12" />
-<hkern g1="guillemotright,guilsinglright" 	g2="S" 	k="12" />
-<hkern g1="h" 	g2="quoteright,quotedblright" 	k="57" />
-<hkern g1="h" 	g2="t" 	k="6" />
-<hkern g1="h" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="45" />
-<hkern g1="h" 	g2="y,yacute,ydieresis" 	k="12" />
-<hkern g1="h" 	g2="T" 	k="172" />
-<hkern g1="h" 	g2="quotedbl,quotesingle" 	k="82" />
-<hkern g1="h" 	g2="Y,Yacute,Ydieresis" 	k="250" />
-<hkern g1="h" 	g2="C,Ccedilla" 	k="45" />
-<hkern g1="h" 	g2="f,uniFB01,uniFB02" 	k="6" />
-<hkern g1="h" 	g2="w" 	k="10" />
-<hkern g1="h" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="57" />
-<hkern g1="h" 	g2="G" 	k="45" />
-<hkern g1="h" 	g2="W" 	k="133" />
-<hkern g1="h" 	g2="Z" 	k="29" />
-<hkern g1="h" 	g2="K" 	k="33" />
-<hkern g1="h" 	g2="H" 	k="33" />
-<hkern g1="h" 	g2="R" 	k="33" />
-<hkern g1="h" 	g2="L" 	k="33" />
-<hkern g1="h" 	g2="D,Eth" 	k="33" />
-<hkern g1="h" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="33" />
-<hkern g1="h" 	g2="N,Ntilde" 	k="33" />
-<hkern g1="h" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="33" />
-<hkern g1="h" 	g2="S" 	k="43" />
-<hkern g1="hyphen,endash,emdash" 	g2="J" 	k="27" />
-<hkern g1="hyphen,endash,emdash" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
-<hkern g1="hyphen,endash,emdash" 	g2="T" 	k="92" />
-<hkern g1="hyphen,endash,emdash" 	g2="quotedbl,quotesingle" 	k="96" />
-<hkern g1="hyphen,endash,emdash" 	g2="Y,Yacute,Ydieresis" 	k="117" />
-<hkern g1="hyphen,endash,emdash" 	g2="C,Ccedilla" 	k="12" />
-<hkern g1="hyphen,endash,emdash" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="37" />
-<hkern g1="hyphen,endash,emdash" 	g2="G" 	k="12" />
-<hkern g1="hyphen,endash,emdash" 	g2="W" 	k="82" />
-<hkern g1="hyphen,endash,emdash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="29" />
-<hkern g1="hyphen,endash,emdash" 	g2="Z" 	k="61" />
-<hkern g1="hyphen,endash,emdash" 	g2="AE" 	k="27" />
-<hkern g1="hyphen,endash,emdash" 	g2="K" 	k="39" />
-<hkern g1="hyphen,endash,emdash" 	g2="H" 	k="39" />
-<hkern g1="hyphen,endash,emdash" 	g2="R" 	k="39" />
-<hkern g1="hyphen,endash,emdash" 	g2="L" 	k="39" />
-<hkern g1="hyphen,endash,emdash" 	g2="D,Eth" 	k="39" />
-<hkern g1="hyphen,endash,emdash" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="39" />
-<hkern g1="hyphen,endash,emdash" 	g2="N,Ntilde" 	k="39" />
-<hkern g1="hyphen,endash,emdash" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="39" />
-<hkern g1="hyphen,endash,emdash" 	g2="S" 	k="66" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="35" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="T" 	k="29" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="Y,Yacute,Ydieresis" 	k="35" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="C,Ccedilla" 	k="35" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="37" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="G" 	k="37" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="W" 	k="53" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="12" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="Z" 	k="35" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="K" 	k="27" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="H" 	k="27" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="R" 	k="27" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="L" 	k="27" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="D,Eth" 	k="27" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="27" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="N,Ntilde" 	k="27" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="27" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="S" 	k="39" />
-<hkern g1="j" 	g2="j" 	k="-111" />
-<hkern g1="j" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="35" />
-<hkern g1="j" 	g2="T" 	k="29" />
-<hkern g1="j" 	g2="Y,Yacute,Ydieresis" 	k="35" />
-<hkern g1="j" 	g2="C,Ccedilla" 	k="37" />
-<hkern g1="j" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="37" />
-<hkern g1="j" 	g2="G" 	k="37" />
-<hkern g1="j" 	g2="W" 	k="53" />
-<hkern g1="j" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="12" />
-<hkern g1="j" 	g2="Z" 	k="33" />
-<hkern g1="j" 	g2="K" 	k="27" />
-<hkern g1="j" 	g2="H" 	k="27" />
-<hkern g1="j" 	g2="R" 	k="27" />
-<hkern g1="j" 	g2="L" 	k="27" />
-<hkern g1="j" 	g2="D,Eth" 	k="27" />
-<hkern g1="j" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="27" />
-<hkern g1="j" 	g2="N,Ntilde" 	k="27" />
-<hkern g1="j" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="27" />
-<hkern g1="j" 	g2="S" 	k="39" />
-<hkern g1="k" 	g2="quoteright,quotedblright" 	k="20" />
-<hkern g1="k" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="14" />
-<hkern g1="k" 	g2="d" 	k="14" />
-<hkern g1="k" 	g2="J" 	k="-6" />
-<hkern g1="k" 	g2="t" 	k="8" />
-<hkern g1="k" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="37" />
-<hkern g1="k" 	g2="T" 	k="100" />
-<hkern g1="k" 	g2="quotedbl,quotesingle" 	k="74" />
-<hkern g1="k" 	g2="c,ccedilla" 	k="14" />
-<hkern g1="k" 	g2="Y,Yacute,Ydieresis" 	k="109" />
-<hkern g1="k" 	g2="C,Ccedilla" 	k="37" />
-<hkern g1="k" 	g2="hyphen,endash,emdash" 	k="18" />
-<hkern g1="k" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="14" />
-<hkern g1="k" 	g2="f,uniFB01,uniFB02" 	k="8" />
-<hkern g1="k" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="10" />
-<hkern g1="k" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="55" />
-<hkern g1="k" 	g2="G" 	k="39" />
-<hkern g1="k" 	g2="W" 	k="68" />
-<hkern g1="k" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="8" />
-<hkern g1="k" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="6" />
-<hkern g1="k" 	g2="Z" 	k="8" />
-<hkern g1="k" 	g2="guillemotleft,guilsinglleft" 	k="23" />
-<hkern g1="k" 	g2="K" 	k="49" />
-<hkern g1="k" 	g2="H" 	k="51" />
-<hkern g1="k" 	g2="R" 	k="51" />
-<hkern g1="k" 	g2="L" 	k="51" />
-<hkern g1="k" 	g2="D,Eth" 	k="51" />
-<hkern g1="k" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="51" />
-<hkern g1="k" 	g2="N,Ntilde" 	k="49" />
-<hkern g1="k" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="51" />
-<hkern g1="k" 	g2="S" 	k="37" />
-<hkern g1="l,uniFB02" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="33" />
-<hkern g1="l,uniFB02" 	g2="T" 	k="25" />
-<hkern g1="l,uniFB02" 	g2="Y,Yacute,Ydieresis" 	k="23" />
-<hkern g1="l,uniFB02" 	g2="C,Ccedilla" 	k="33" />
-<hkern g1="l,uniFB02" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="37" />
-<hkern g1="l,uniFB02" 	g2="G" 	k="35" />
-<hkern g1="l,uniFB02" 	g2="W" 	k="43" />
-<hkern g1="l,uniFB02" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="12" />
-<hkern g1="l,uniFB02" 	g2="Z" 	k="33" />
-<hkern g1="l,uniFB02" 	g2="K" 	k="27" />
-<hkern g1="l,uniFB02" 	g2="H" 	k="27" />
-<hkern g1="l,uniFB02" 	g2="R" 	k="27" />
-<hkern g1="l,uniFB02" 	g2="L" 	k="27" />
-<hkern g1="l,uniFB02" 	g2="D,Eth" 	k="27" />
-<hkern g1="l,uniFB02" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="27" />
-<hkern g1="l,uniFB02" 	g2="N,Ntilde" 	k="27" />
-<hkern g1="l,uniFB02" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="27" />
-<hkern g1="l,uniFB02" 	g2="S" 	k="33" />
-<hkern g1="n,ntilde" 	g2="quoteright,quotedblright" 	k="59" />
-<hkern g1="n,ntilde" 	g2="t" 	k="6" />
-<hkern g1="n,ntilde" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="45" />
-<hkern g1="n,ntilde" 	g2="y,yacute,ydieresis" 	k="12" />
-<hkern g1="n,ntilde" 	g2="T" 	k="172" />
-<hkern g1="n,ntilde" 	g2="quotedbl,quotesingle" 	k="94" />
-<hkern g1="n,ntilde" 	g2="Y,Yacute,Ydieresis" 	k="250" />
-<hkern g1="n,ntilde" 	g2="C,Ccedilla" 	k="45" />
-<hkern g1="n,ntilde" 	g2="f,uniFB01,uniFB02" 	k="6" />
-<hkern g1="n,ntilde" 	g2="w" 	k="10" />
-<hkern g1="n,ntilde" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="57" />
-<hkern g1="n,ntilde" 	g2="G" 	k="45" />
-<hkern g1="n,ntilde" 	g2="W" 	k="133" />
-<hkern g1="n,ntilde" 	g2="Z" 	k="29" />
-<hkern g1="n,ntilde" 	g2="K" 	k="33" />
-<hkern g1="n,ntilde" 	g2="H" 	k="33" />
-<hkern g1="n,ntilde" 	g2="R" 	k="33" />
-<hkern g1="n,ntilde" 	g2="L" 	k="33" />
-<hkern g1="n,ntilde" 	g2="D,Eth" 	k="33" />
-<hkern g1="n,ntilde" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="33" />
-<hkern g1="n,ntilde" 	g2="N,Ntilde" 	k="33" />
-<hkern g1="n,ntilde" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="33" />
-<hkern g1="n,ntilde" 	g2="S" 	k="43" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="quoteright,quotedblright" 	k="59" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="31" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="T" 	k="160" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="quotedbl,quotesingle" 	k="92" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="Y,Yacute,Ydieresis" 	k="238" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="C,Ccedilla" 	k="31" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="47" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="G" 	k="31" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="W" 	k="121" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="23" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="Z" 	k="49" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="K" 	k="43" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="H" 	k="43" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="R" 	k="43" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="L" 	k="43" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="D,Eth" 	k="43" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="43" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="N,Ntilde" 	k="43" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="43" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="S" 	k="49" />
-<hkern g1="quoteleft,quotedblleft" 	g2="n,ntilde" 	k="18" />
-<hkern g1="quoteleft,quotedblleft" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="55" />
-<hkern g1="quoteleft,quotedblleft" 	g2="d" 	k="49" />
-<hkern g1="quoteleft,quotedblleft" 	g2="J" 	k="39" />
-<hkern g1="quoteleft,quotedblleft" 	g2="c,ccedilla" 	k="55" />
-<hkern g1="quoteleft,quotedblleft" 	g2="p,thorn" 	k="18" />
-<hkern g1="quoteleft,quotedblleft" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="53" />
-<hkern g1="quoteleft,quotedblleft" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="14" />
-<hkern g1="quoteleft,quotedblleft" 	g2="r" 	k="18" />
-<hkern g1="quoteleft,quotedblleft" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="10" />
-<hkern g1="quoteleft,quotedblleft" 	g2="s" 	k="41" />
-<hkern g1="quoteleft,quotedblleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="31" />
-<hkern g1="quoteleft,quotedblleft" 	g2="g" 	k="55" />
-<hkern g1="quoteleft,quotedblleft" 	g2="z" 	k="10" />
-<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="47" />
-<hkern g1="quoteleft,quotedblleft" 	g2="Z" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="AE" 	k="61" />
-<hkern g1="quoteleft,quotedblleft" 	g2="K" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="H" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="R" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="L" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="D,Eth" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="N,Ntilde" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="12" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="J" 	k="-18" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="94" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="y,yacute,ydieresis" 	k="39" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="T" 	k="123" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="quotedbl,quotesingle" 	k="168" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="Y,Yacute,Ydieresis" 	k="139" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="C,Ccedilla" 	k="96" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="w" 	k="29" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="100" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="G" 	k="96" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="W" 	k="141" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="AE" 	k="-31" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="K" 	k="35" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="H" 	k="35" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="R" 	k="35" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="L" 	k="35" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="D,Eth" 	k="35" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="35" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="N,Ntilde" 	k="35" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="35" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="S" 	k="10" />
-<hkern g1="quotedbl,quotesingle" 	g2="n,ntilde" 	k="86" />
-<hkern g1="quotedbl,quotesingle" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="109" />
-<hkern g1="quotedbl,quotesingle" 	g2="d" 	k="84" />
-<hkern g1="quotedbl,quotesingle" 	g2="J" 	k="39" />
-<hkern g1="quotedbl,quotesingle" 	g2="t" 	k="25" />
-<hkern g1="quotedbl,quotesingle" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="31" />
-<hkern g1="quotedbl,quotesingle" 	g2="y,yacute,ydieresis" 	k="61" />
-<hkern g1="quotedbl,quotesingle" 	g2="c,ccedilla" 	k="109" />
-<hkern g1="quotedbl,quotesingle" 	g2="Y,Yacute,Ydieresis" 	k="-45" />
-<hkern g1="quotedbl,quotesingle" 	g2="p,thorn" 	k="86" />
-<hkern g1="quotedbl,quotesingle" 	g2="C,Ccedilla" 	k="31" />
-<hkern g1="quotedbl,quotesingle" 	g2="hyphen,endash,emdash" 	k="104" />
-<hkern g1="quotedbl,quotesingle" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="109" />
-<hkern g1="quotedbl,quotesingle" 	g2="f,uniFB01,uniFB02" 	k="18" />
-<hkern g1="quotedbl,quotesingle" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="82" />
-<hkern g1="quotedbl,quotesingle" 	g2="r" 	k="86" />
-<hkern g1="quotedbl,quotesingle" 	g2="w" 	k="66" />
-<hkern g1="quotedbl,quotesingle" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="12" />
-<hkern g1="quotedbl,quotesingle" 	g2="G" 	k="31" />
-<hkern g1="quotedbl,quotesingle" 	g2="s" 	k="98" />
-<hkern g1="quotedbl,quotesingle" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="92" />
-<hkern g1="quotedbl,quotesingle" 	g2="g" 	k="113" />
-<hkern g1="quotedbl,quotesingle" 	g2="z" 	k="80" />
-<hkern g1="quotedbl,quotesingle" 	g2="quotesinglbase,quotedblbase" 	k="180" />
-<hkern g1="quotedbl,quotesingle" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="70" />
-<hkern g1="quotedbl,quotesingle" 	g2="AE" 	k="82" />
-<hkern g1="quotedbl,quotesingle" 	g2="guillemotleft,guilsinglleft" 	k="115" />
-<hkern g1="quotedbl,quotesingle" 	g2="guillemotright,guilsinglright" 	k="84" />
-<hkern g1="quotedbl,quotesingle" 	g2="K" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="H" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="R" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="L" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="D,Eth" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="N,Ntilde" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="S" 	k="10" />
-<hkern g1="r" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="8" />
-<hkern g1="r" 	g2="d" 	k="6" />
-<hkern g1="r" 	g2="J" 	k="111" />
-<hkern g1="r" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="6" />
-<hkern g1="r" 	g2="y,yacute,ydieresis" 	k="-43" />
-<hkern g1="r" 	g2="T" 	k="121" />
-<hkern g1="r" 	g2="quotedbl,quotesingle" 	k="57" />
-<hkern g1="r" 	g2="c,ccedilla" 	k="10" />
-<hkern g1="r" 	g2="Y,Yacute,Ydieresis" 	k="127" />
-<hkern g1="r" 	g2="C,Ccedilla" 	k="6" />
-<hkern g1="r" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="8" />
-<hkern g1="r" 	g2="w" 	k="-35" />
-<hkern g1="r" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="41" />
-<hkern g1="r" 	g2="G" 	k="8" />
-<hkern g1="r" 	g2="W" 	k="59" />
-<hkern g1="r" 	g2="g" 	k="39" />
-<hkern g1="r" 	g2="quotesinglbase,quotedblbase" 	k="45" />
-<hkern g1="r" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="84" />
-<hkern g1="r" 	g2="Z" 	k="115" />
-<hkern g1="r" 	g2="guillemotleft,guilsinglleft" 	k="16" />
-<hkern g1="r" 	g2="K" 	k="49" />
-<hkern g1="r" 	g2="H" 	k="47" />
-<hkern g1="r" 	g2="R" 	k="47" />
-<hkern g1="r" 	g2="L" 	k="47" />
-<hkern g1="r" 	g2="D,Eth" 	k="47" />
-<hkern g1="r" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="47" />
-<hkern g1="r" 	g2="N,Ntilde" 	k="47" />
-<hkern g1="r" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="47" />
-<hkern g1="r" 	g2="S" 	k="51" />
-<hkern g1="s" 	g2="quoteright,quotedblright" 	k="41" />
-<hkern g1="s" 	g2="J" 	k="-8" />
-<hkern g1="s" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="33" />
-<hkern g1="s" 	g2="T" 	k="135" />
-<hkern g1="s" 	g2="quotedbl,quotesingle" 	k="78" />
-<hkern g1="s" 	g2="Y,Yacute,Ydieresis" 	k="174" />
-<hkern g1="s" 	g2="C,Ccedilla" 	k="33" />
-<hkern g1="s" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="47" />
-<hkern g1="s" 	g2="G" 	k="35" />
-<hkern g1="s" 	g2="W" 	k="123" />
-<hkern g1="s" 	g2="Z" 	k="29" />
-<hkern g1="s" 	g2="K" 	k="45" />
-<hkern g1="s" 	g2="H" 	k="45" />
-<hkern g1="s" 	g2="R" 	k="45" />
-<hkern g1="s" 	g2="L" 	k="45" />
-<hkern g1="s" 	g2="D,Eth" 	k="45" />
-<hkern g1="s" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="45" />
-<hkern g1="s" 	g2="N,Ntilde" 	k="45" />
-<hkern g1="s" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="45" />
-<hkern g1="s" 	g2="S" 	k="33" />
-<hkern g1="t" 	g2="quoteright,quotedblright" 	k="27" />
-<hkern g1="t" 	g2="J" 	k="-12" />
-<hkern g1="t" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="31" />
-<hkern g1="t" 	g2="T" 	k="117" />
-<hkern g1="t" 	g2="quotedbl,quotesingle" 	k="27" />
-<hkern g1="t" 	g2="Y,Yacute,Ydieresis" 	k="115" />
-<hkern g1="t" 	g2="C,Ccedilla" 	k="31" />
-<hkern g1="t" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="47" />
-<hkern g1="t" 	g2="G" 	k="31" />
-<hkern g1="t" 	g2="W" 	k="90" />
-<hkern g1="t" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-12" />
-<hkern g1="t" 	g2="Z" 	k="25" />
-<hkern g1="t" 	g2="K" 	k="47" />
-<hkern g1="t" 	g2="H" 	k="47" />
-<hkern g1="t" 	g2="R" 	k="47" />
-<hkern g1="t" 	g2="L" 	k="47" />
-<hkern g1="t" 	g2="D,Eth" 	k="47" />
-<hkern g1="t" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="47" />
-<hkern g1="t" 	g2="N,Ntilde" 	k="47" />
-<hkern g1="t" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="47" />
-<hkern g1="t" 	g2="S" 	k="45" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="quoteright,quotedblright" 	k="31" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="35" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="T" 	k="119" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="quotedbl,quotesingle" 	k="74" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="Y,Yacute,Ydieresis" 	k="158" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="C,Ccedilla" 	k="35" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="51" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="G" 	k="37" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="W" 	k="102" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="12" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="Z" 	k="37" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="K" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="H" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="R" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="L" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="D,Eth" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="N,Ntilde" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="S" 	k="49" />
-<hkern g1="w" 	g2="J" 	k="53" />
-<hkern g1="w" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
-<hkern g1="w" 	g2="T" 	k="80" />
-<hkern g1="w" 	g2="quotedbl,quotesingle" 	k="57" />
-<hkern g1="w" 	g2="Y,Yacute,Ydieresis" 	k="66" />
-<hkern g1="w" 	g2="C,Ccedilla" 	k="10" />
-<hkern g1="w" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="43" />
-<hkern g1="w" 	g2="G" 	k="12" />
-<hkern g1="w" 	g2="W" 	k="61" />
-<hkern g1="w" 	g2="g" 	k="20" />
-<hkern g1="w" 	g2="quotesinglbase,quotedblbase" 	k="27" />
-<hkern g1="w" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="53" />
-<hkern g1="w" 	g2="Z" 	k="59" />
-<hkern g1="w" 	g2="K" 	k="47" />
-<hkern g1="w" 	g2="H" 	k="47" />
-<hkern g1="w" 	g2="R" 	k="47" />
-<hkern g1="w" 	g2="L" 	k="47" />
-<hkern g1="w" 	g2="D,Eth" 	k="47" />
-<hkern g1="w" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="47" />
-<hkern g1="w" 	g2="N,Ntilde" 	k="47" />
-<hkern g1="w" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="47" />
-<hkern g1="w" 	g2="S" 	k="47" />
-<hkern g1="y,yacute,ydieresis" 	g2="J" 	k="61" />
-<hkern g1="y,yacute,ydieresis" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="6" />
-<hkern g1="y,yacute,ydieresis" 	g2="T" 	k="61" />
-<hkern g1="y,yacute,ydieresis" 	g2="quotedbl,quotesingle" 	k="55" />
-<hkern g1="y,yacute,ydieresis" 	g2="c,ccedilla" 	k="6" />
-<hkern g1="y,yacute,ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="63" />
-<hkern g1="y,yacute,ydieresis" 	g2="C,Ccedilla" 	k="6" />
-<hkern g1="y,yacute,ydieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="41" />
-<hkern g1="y,yacute,ydieresis" 	g2="G" 	k="8" />
-<hkern g1="y,yacute,ydieresis" 	g2="W" 	k="61" />
-<hkern g1="y,yacute,ydieresis" 	g2="g" 	k="31" />
-<hkern g1="y,yacute,ydieresis" 	g2="quotesinglbase,quotedblbase" 	k="37" />
-<hkern g1="y,yacute,ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="59" />
-<hkern g1="y,yacute,ydieresis" 	g2="Z" 	k="90" />
-<hkern g1="y,yacute,ydieresis" 	g2="K" 	k="49" />
-<hkern g1="y,yacute,ydieresis" 	g2="H" 	k="47" />
-<hkern g1="y,yacute,ydieresis" 	g2="R" 	k="47" />
-<hkern g1="y,yacute,ydieresis" 	g2="L" 	k="47" />
-<hkern g1="y,yacute,ydieresis" 	g2="D,Eth" 	k="47" />
-<hkern g1="y,yacute,ydieresis" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="47" />
-<hkern g1="y,yacute,ydieresis" 	g2="N,Ntilde" 	k="47" />
-<hkern g1="y,yacute,ydieresis" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="47" />
-<hkern g1="y,yacute,ydieresis" 	g2="S" 	k="45" />
-<hkern g1="z" 	g2="quoteright,quotedblright" 	k="10" />
-<hkern g1="z" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="25" />
-<hkern g1="z" 	g2="T" 	k="117" />
-<hkern g1="z" 	g2="quotedbl,quotesingle" 	k="66" />
-<hkern g1="z" 	g2="Y,Yacute,Ydieresis" 	k="100" />
-<hkern g1="z" 	g2="C,Ccedilla" 	k="25" />
-<hkern g1="z" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="47" />
-<hkern g1="z" 	g2="G" 	k="27" />
-<hkern g1="z" 	g2="W" 	k="59" />
-<hkern g1="z" 	g2="Z" 	k="31" />
-<hkern g1="z" 	g2="guillemotleft,guilsinglleft" 	k="10" />
-<hkern g1="z" 	g2="K" 	k="47" />
-<hkern g1="z" 	g2="H" 	k="47" />
-<hkern g1="z" 	g2="R" 	k="47" />
-<hkern g1="z" 	g2="L" 	k="47" />
-<hkern g1="z" 	g2="D,Eth" 	k="47" />
-<hkern g1="z" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="47" />
-<hkern g1="z" 	g2="N,Ntilde" 	k="47" />
-<hkern g1="z" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="47" />
-<hkern g1="z" 	g2="S" 	k="37" />
-</font>
-</defs></svg> 
\ No newline at end of file
diff --git a/client/assets/fonts/brandon_blk/brandon_blk-webfont.woff b/client/assets/fonts/brandon_blk/brandon_blk-webfont.woff
deleted file mode 100755
index c152aba7e45890d5e7430fe8ff20be2ea3f98ea2..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/brandon_blk/brandon_blk-webfont.woff and /dev/null differ
diff --git a/client/assets/fonts/brandon_blk/brandon_blk-webfont.woff2 b/client/assets/fonts/brandon_blk/brandon_blk-webfont.woff2
deleted file mode 100755
index 59348a810051fba0b226306630d1d2e47184e95a..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/brandon_blk/brandon_blk-webfont.woff2 and /dev/null differ
diff --git a/client/assets/fonts/brandon_blk/generator_config.txt b/client/assets/fonts/brandon_blk/generator_config.txt
deleted file mode 100755
index e5306393cd888cad9c4b7c70d1b9d019ebe72fef..0000000000000000000000000000000000000000
--- a/client/assets/fonts/brandon_blk/generator_config.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-# Font Squirrel Font-face Generator Configuration File
-# Upload this file to the generator to recreate the settings
-# you used to create these fonts.
-
-{"mode":"expert","formats":["woff","woff2","eot","svg"],"tt_instructor":"default","fix_gasp":"xy","fix_vertical_metrics":"Y","metrics_ascent":"","metrics_descent":"","metrics_linegap":"","add_spaces":"Y","add_hyphens":"Y","fallback":"none","fallback_custom":"100","options_subset":"basic","subset_custom":"","subset_custom_range":"","subset_ot_features_list":"","css_stylesheet":"stylesheet.css","filename_suffix":"-webfont","emsquare":"2048","spacing_adjustment":"0"}
\ No newline at end of file
diff --git a/client/assets/fonts/brandon_blk/specimen_files/grid_12-825-55-15.css b/client/assets/fonts/brandon_blk/specimen_files/grid_12-825-55-15.css
deleted file mode 100755
index 3d6aef783a908415e66bb296d4e4bbb7366f0bcb..0000000000000000000000000000000000000000
--- a/client/assets/fonts/brandon_blk/specimen_files/grid_12-825-55-15.css
+++ /dev/null
@@ -1,129 +0,0 @@
-/*Notes about grid:
-Columns:      12
-Grid Width:   825px
-Column Width: 55px
-Gutter Width: 15px
--------------------------------*/
- 
- 
- 
-.section 		{margin-bottom: 18px;
-}
-.section:after	{content: ".";display: block;height: 0;clear: both;visibility: hidden;}
-.section 		{*zoom: 1;}
- 
-.section .firstcolumn,
-.section .firstcol {margin-left: 0;}
- 
- 
-/* Border on left hand side of a column. */
-.border {
-  padding-left: 7px;
-  margin-left: 7px;
-  border-left: 1px solid #eee;
-}
- 
-/* Border with more whitespace, spans one column. */
-.colborder {
-    padding-left: 42px;
-  margin-left: 42px;
-  border-left: 1px solid #eee;
-}
- 
-
- 
-/* The Grid Classes */
-.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12
-{margin-left: 15px;float: left;display: inline; overflow: hidden;}
- 
- 
-.width1, .grid1, .span-1 {width: 55px;}
-.width1_2cols,.grid1_2cols {width: 20px;}
-.width1_3cols,.grid1_3cols  {width: 8px;}
-.width1_4cols,.grid1_4cols  {width: 2px;}
-.input_width1 {width: 49px;}
- 
-.width2, .grid2, .span-2 {width: 125px;}
-.width2_3cols,.grid2_3cols  {width: 31px;}
-.width2_4cols,.grid2_4cols  {width: 20px;}
-.input_width2 {width: 119px;}
- 
-.width3, .grid3, .span-3 {width: 195px;}
-.width3_2cols,.grid3_2cols {width: 90px;}
-.width3_4cols,.grid3_4cols  {width: 37px;}
-.input_width3 {width: 189px;}
- 
-.width4, .grid4, .span-4 {width: 265px;}
-.width4_3cols,.grid4_3cols  {width: 78px;}
-.input_width4 {width: 259px;}
- 
-.width5, .grid5, .span-5 {width: 335px;}
-.width5_2cols,.grid5_2cols {width: 160px;}
-.width5_3cols,.grid5_3cols  {width: 101px;}
-.width5_4cols,.grid5_4cols  {width: 72px;}
-.input_width5 {width: 329px;}
- 
-.width6, .grid6, .span-6 {width: 405px;}
-.width6_4cols,.grid6_4cols  {width: 90px;}
-.input_width6 {width: 399px;}
- 
-.width7, .grid7, .span-7 {width: 475px;}
-.width7_2cols,.grid7_2cols {width: 230px;}
-.width7_3cols,.grid7_3cols  {width: 148px;}
-.width7_4cols,.grid7_4cols  {width: 107px;}
-.input_width7 {width: 469px;}
- 
-.width8, .grid8, .span-8 {width: 545px;}
-.width8_3cols,.grid8_3cols  {width: 171px;}
-.input_width8 {width: 539px;}
- 
-.width9, .grid9, .span-9 {width: 615px;}
-.width9_2cols,.grid9_2cols {width: 300px;}
-.width9_4cols,.grid9_4cols  {width: 142px;}
-.input_width9 {width: 609px;}
- 
-.width10, .grid10, .span-10 {width: 685px;}
-.width10_3cols,.grid10_3cols  {width: 218px;}
-.width10_4cols,.grid10_4cols  {width: 160px;}
-.input_width10 {width: 679px;}
- 
-.width11, .grid11, .span-11 {width: 755px;}
-.width11_2cols,.grid11_2cols {width: 370px;}
-.width11_3cols,.grid11_3cols  {width: 241px;}
-.width11_4cols,.grid11_4cols  {width: 177px;}
-.input_width11 {width: 749px;}
- 
-.width12, .grid12, .span-12 {width: 825px;}
-.input_width12 {width: 819px;}
- 
-/* Subdivided grid spaces */
-.emptycols_left1, .prepend-1 {padding-left: 70px;}
-.emptycols_right1, .append-1 {padding-right: 70px;}
-.emptycols_left2, .prepend-2 {padding-left: 140px;}
-.emptycols_right2, .append-2 {padding-right: 140px;}
-.emptycols_left3, .prepend-3 {padding-left: 210px;}
-.emptycols_right3, .append-3 {padding-right: 210px;}
-.emptycols_left4, .prepend-4 {padding-left: 280px;}
-.emptycols_right4, .append-4 {padding-right: 280px;}
-.emptycols_left5, .prepend-5 {padding-left: 350px;}
-.emptycols_right5, .append-5 {padding-right: 350px;}
-.emptycols_left6, .prepend-6 {padding-left: 420px;}
-.emptycols_right6, .append-6 {padding-right: 420px;}
-.emptycols_left7, .prepend-7 {padding-left: 490px;}
-.emptycols_right7, .append-7 {padding-right: 490px;}
-.emptycols_left8, .prepend-8 {padding-left: 560px;}
-.emptycols_right8, .append-8 {padding-right: 560px;}
-.emptycols_left9, .prepend-9 {padding-left: 630px;}
-.emptycols_right9, .append-9 {padding-right: 630px;}
-.emptycols_left10, .prepend-10 {padding-left: 700px;}
-.emptycols_right10, .append-10 {padding-right: 700px;}
-.emptycols_left11, .prepend-11 {padding-left: 770px;}
-.emptycols_right11, .append-11 {padding-right: 770px;}
-.pull-1 {margin-left: -70px;}
-.push-1 {margin-right: -70px;margin-left: 18px;float: right;}
-.pull-2 {margin-left: -140px;}
-.push-2 {margin-right: -140px;margin-left: 18px;float: right;}
-.pull-3 {margin-left: -210px;}
-.push-3 {margin-right: -210px;margin-left: 18px;float: right;}
-.pull-4 {margin-left: -280px;}
-.push-4 {margin-right: -280px;margin-left: 18px;float: right;}
\ No newline at end of file
diff --git a/client/assets/fonts/brandon_blk/specimen_files/specimen_stylesheet.css b/client/assets/fonts/brandon_blk/specimen_files/specimen_stylesheet.css
deleted file mode 100755
index aecc43c32ce0ee6e9e448361a7ed21808c8af690..0000000000000000000000000000000000000000
--- a/client/assets/fonts/brandon_blk/specimen_files/specimen_stylesheet.css
+++ /dev/null
@@ -1,396 +0,0 @@
-@import url('grid_12-825-55-15.css');
-
-/*  
-	CSS Reset by Eric Meyer - Released under Public Domain
-    http://meyerweb.com/eric/tools/css/reset/
-*/
-html, body, div, span, applet, object, iframe,
-h1, h2, h3, h4, h5, h6, p, blockquote, pre,
-a, abbr, acronym, address, big, cite, code,
-del, dfn, em, font, img, ins, kbd, q, s, samp,
-small, strike, strong, sub, sup, tt, var,
-b, u, i, center, dl, dt, dd, ol, ul, li,
-fieldset, form, label, legend, table, 
-caption, tbody, tfoot, thead, tr, th, td 
-                  {margin: 0;padding: 0;border: 0;outline: 0;
-                  font-size: 100%;vertical-align: baseline;
-                  background: transparent;}
-body              {line-height: 1;}
-ol, ul            {list-style: none;}
-blockquote, q     {quotes: none;}
-blockquote:before, blockquote:after,
-q:before, q:after {content: '';	content: none;}
-:focus            {outline: 0;}
-ins               {text-decoration: none;}
-del               {text-decoration: line-through;}
-table             {border-collapse: collapse;border-spacing: 0;}
-
-
-
-
-body {
-	color: #000;
-	background-color: #dcdcdc;
-}
-
-a {
-	text-decoration: none;
-	color: #1883ba;
-}
-
-h1{
-	font-size: 32px;
-	font-weight: normal;
-	font-style: normal;
-	margin-bottom: 18px;
-}
-
-h2{
-	font-size: 18px;
-}
-
-#container {
-	width: 865px;
-	margin: 0px auto;
-}
-
-
-#header {
-	padding: 20px;
-	font-size: 36px;
-	background-color: #000;
-	color: #fff;
-}
-
-#header span {
-	color: #666;
-}
-#main_content {
-	background-color: #fff;
-	padding: 60px 20px 20px;
-}
-
-
-#footer p {
-	margin: 0;
-	padding-top: 10px;
-	padding-bottom: 50px;
-	color: #333;
-	font: 10px Arial, sans-serif;
-}
-
-.tabs {
-	width: 100%;
-	height: 31px;
-	background-color: #444;
-}
-.tabs li {
-	float:  left;
-	margin: 0;
-	overflow: hidden;
-	background-color: #444;
-}
-.tabs li a {
-	display: block;
-	color: #fff;
-	text-decoration: none;
-	font: bold 11px/11px 'Arial';
-	text-transform: uppercase;
-	padding: 10px 15px;
-	border-right: 1px solid #fff;
-}
-
-.tabs li a:hover {
-		background-color: #00b3ff;
-
-}
-
-.tabs li.active a {
-	color:  #000;
-	background-color: #fff;
-}
-
-
-
-div.huge {
-	
-	font-size: 300px;
-	line-height: 1em;
-	padding: 0;
-	letter-spacing: -.02em;
-	overflow: hidden;
-}
-div.glyph_range {
-	font-size: 72px;
-	line-height: 1.1em;
-}
-
-.size10{ font-size: 10px; }
-.size11{ font-size: 11px; }
-.size12{ font-size: 12px; }
-.size13{ font-size: 13px; }
-.size14{ font-size: 14px; }
-.size16{ font-size: 16px; }
-.size18{ font-size: 18px; }
-.size20{ font-size: 20px; }
-.size24{ font-size: 24px; }
-.size30{ font-size: 30px; }
-.size36{ font-size: 36px; }
-.size48{ font-size: 48px; }
-.size60{ font-size: 60px; }
-.size72{ font-size: 72px; }
-.size90{ font-size: 90px; }
-
-
-.psample_row1 {	height: 120px;}
-.psample_row1 {	height: 120px;}
-.psample_row2 {	height: 160px;}
-.psample_row3 {	height: 160px;}
-.psample_row4 {	height: 160px;}
-
-.psample {
-	overflow: hidden;
-	position: relative;
-}
-.psample p {
-	line-height: 1.3em;
-	display: block;
-	overflow: hidden;
-	margin: 0;
-}
-
-.psample span {
-	margin-right: .5em;
-}
-
-.white_blend {
-	width: 100%;
-	height: 61px;
-	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==);
-	position: absolute;
-	bottom: 0;
-}
-.black_blend {
-	width: 100%;
-	height: 61px;
-	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC);
-	position: absolute;
-	bottom: 0;
-}
-.fullreverse {
-	background:  #000 !important;
-	color:  #fff !important;
-	margin-left: -20px;
-	padding-left: 20px;
-	margin-right: -20px;
-	padding-right: 20px;
-	padding: 20px;
-	margin-bottom:0;
-}
-
-
-.sample_table td {
-	padding-top: 3px;
-	padding-bottom:5px;
-	padding-left: 5px;
-	vertical-align: middle;
-	line-height: 1.2em;
-}
-
-.sample_table td:first-child {
-	background-color: #eee;
-	text-align: right;
-	padding-right: 5px;
-	padding-left: 0;
-	padding: 5px;
-	font: 11px/12px "Courier New", Courier, mono;
-}
-
-code {
-	white-space: pre;
-	background-color: #eee;
-	display: block;
-	padding: 10px;
-	margin-bottom: 18px;
-	overflow: auto;
-}
-
-
-.bottom,.last 	{margin-bottom:0 !important; padding-bottom:0 !important;}
-
-.box  { 
-  padding: 18px; 
-  margin-bottom: 18px; 
-  background: #eee; 
-}
-
-.reverse,.reversed { background:  #000 !important;color:  #fff !important; border: none !important;}
-
-#bodycomparison {
-	position: relative;
-	overflow: hidden;
-	font-size: 72px;
-	height: 90px;
-	white-space: nowrap;
-}
-
-#bodycomparison div{
-	font-size: 72px;
-	line-height: 90px;
-	display: inline;
-	margin: 0 15px 0 0;
-	padding: 0;
-}
-
-#bodycomparison div span{
-	font: 10px Arial;
-	position: absolute;
-	left: 0;
-}
-#xheight {
-	float: none;
-	position: absolute;
-	color: #d9f3ff;
-	font-size: 72px;
-	line-height: 90px;
-}
-
-.fontbody {
- position: relative;
-}
-.arialbody{
-	font-family: Arial;
-	position: relative;
-}
-.verdanabody{
-	font-family: Verdana;
-	position: relative;
-}
-.georgiabody{
-	font-family: Georgia;
-	position: relative;
-}
-
-/* @group Layout page
- */
-
-#layout h1 {
-	font-size: 36px;
-	line-height: 42px;
-	font-weight: normal;
-	font-style: normal;
-}
-
-#layout h2 {
-	font-size: 24px;
-	line-height: 23px;
-	font-weight: normal;
-	font-style: normal;
-}
-
-#layout h3 {
-	font-size: 22px;
-	line-height: 1.4em;
-	margin-top: 1em;
-	font-weight: normal;
-	font-style: normal;
-}
-
-
-#layout p.byline {
-	font-size: 12px;
-	margin-top: 18px;
-	line-height: 12px;
-	margin-bottom: 0;
-}
-#layout p {
-	font-size: 14px;
-	line-height: 21px;
-	margin-bottom: .5em;
-}
-
-#layout p.large{
-	font-size: 18px;
-	line-height: 26px;
-}
-
-#layout .sidebar p{
-	font-size: 12px;
-	line-height: 1.4em;
-}
-
-#layout p.caption {
-	font-size: 10px;
-	margin-top: -16px;
-	margin-bottom: 18px;
-}
-
-/* @end */
-
-/* @group Glyphs */
-
-#glyph_chart div{
-	background-color: #d9f3ff;
-	color: black;
-	float: left;
-	font-size: 36px;
-	height: 1.2em;
-	line-height: 1.2em;
-	margin-bottom: 1px;
-	margin-right: 1px;
-	text-align: center;
-	width: 1.2em;
-	position: relative;
-	padding: .6em .2em .2em;
-}
-
-#glyph_chart div p {
-	position: absolute;
-	left: 0;
-	top: 0;
-	display: block;
-	text-align: center;
-	font: bold 9px Arial, sans-serif;
-	background-color: #3a768f;
-	width: 100%;
-	color: #fff;
-	padding: 2px 0;
-}
-
-
-#glyphs h1 {
-	font-family: Arial, sans-serif;
-}
-/* @end */
-
-/* @group Installing */
-
-#installing {
-	font: 13px Arial, sans-serif;
-}
-
-#installing p,
-#glyphs p{
-	line-height: 1.2em;
-	margin-bottom: 18px;
-	font: 13px Arial, sans-serif;
-}
-
-
-
-#installing h3{
-	font-size: 15px;
-	margin-top: 18px;
-}
-
-/* @end */
-
-#rendering h1 {
-	font-family: Arial, sans-serif;
-}
-.render_table td {
-	font: 11px "Courier New", Courier, mono;
-	vertical-align: middle;
-}
-
-
diff --git a/client/assets/fonts/brandon_blk/stylesheet.css b/client/assets/fonts/brandon_blk/stylesheet.css
deleted file mode 100755
index 0e4fa04eed36a79a6b08f00526020a3328c01eb4..0000000000000000000000000000000000000000
--- a/client/assets/fonts/brandon_blk/stylesheet.css
+++ /dev/null
@@ -1,15 +0,0 @@
-/* Generated by Font Squirrel (https://www.fontsquirrel.com) on January 12, 2017 */
-
-
-
-@font-face {
-    font-family: 'brandon_grotesqueblack';
-    src: url('brandon_blk-webfont.eot');
-    src: url('brandon_blk-webfont.eot?#iefix') format('embedded-opentype'),
-         url('brandon_blk-webfont.woff2') format('woff2'),
-         url('brandon_blk-webfont.woff') format('woff'),
-         url('brandon_blk-webfont.svg#brandon_grotesqueblack') format('svg');
-    font-weight: normal;
-    font-style: normal;
-
-}
\ No newline at end of file
diff --git a/client/assets/fonts/brandon_reg/brandon_reg-webfont.ttf b/client/assets/fonts/brandon_reg-webfont.ttf
similarity index 100%
rename from client/assets/fonts/brandon_reg/brandon_reg-webfont.ttf
rename to client/assets/fonts/brandon_reg-webfont.ttf
diff --git a/client/assets/fonts/brandon_reg/brandon_reg-demo.html b/client/assets/fonts/brandon_reg/brandon_reg-demo.html
deleted file mode 100755
index e36342389d123c0c9b03012b0d828b532c4a7470..0000000000000000000000000000000000000000
--- a/client/assets/fonts/brandon_reg/brandon_reg-demo.html
+++ /dev/null
@@ -1,613 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-	<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script>
-	<script src="specimen_files/easytabs.js" type="text/javascript" charset="utf-8"></script>
-	<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" />
-	<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
-
-	<style type="text/css">
-					body{
-				font-family: 'brandon_grotesque_regularRg';
-							}
-		</style>
-
-	<title>Brandon Grotesque Regular Specimen</title>
-	
-	
-	<script type="text/javascript" charset="utf-8">
-		$(document).ready(function() {
-			$('#container').easyTabs({defaultContent:1});
-		});
-	</script>
-</head>
-
-<body>
-<div id="container">
-	<div id="header">
-		Brandon Grotesque Regular	</div>
-	<ul class="tabs">
-		<li><a href="#specimen">Specimen</a></li>
-		<li><a href="#layout">Sample Layout</a></li>
-				<li><a href="#glyphs">Glyphs &amp; Languages</a></li>
-		<li><a href="#installing">Installing Webfonts</a></li>
-		
-	</ul>
-	
-	<div id="main_content">
-
-		
-			<div id="specimen">
-		
-				<div class="section">
-					<div class="grid12 firstcol">
-						<div class="huge">AaBb</div>
-					</div>
-				</div>
-		
-				<div class="section">
-					<div class="glyph_range">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>
-				</div>
-				<div class="section">
-					<div class="grid12 firstcol">
-						<table class="sample_table">
-							<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-						</table>
-				
-					</div>
-			
-				</div>
-		
-		
-		
-								<div class="section" id="bodycomparison">
-
-
-										<div id="xheight">
-				<div class="fontbody">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div>
-										<div class="fontbody" style="z-index:1">
-											body<span>Brandon Grotesque Regular</span>
-										</div>
-										<div class="arialbody" style="z-index:1">
-											body<span>Arial</span>
-										</div>
-										<div class="verdanabody" style="z-index:1">
-											body<span>Verdana</span>
-										</div>
-										<div class="georgiabody" style="z-index:1">
-											body<span>Georgia</span>
-										</div>
-
-
-
-								</div>
-		
-		
-				<div class="section psample psample_row1" id="">
-					
-					<div class="grid2 firstcol">
-						<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="white_blend"></div>
-					
-				</div>
-				<div class="section psample psample_row2" id="">
-					<div class="grid3 firstcol">
-						<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid5">
-						<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-
-					<div class="white_blend"></div>
-
-				</div>
-				
-				<div class="section psample psample_row3" id="">
-					<div class="grid5 firstcol">
-						<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="grid7">
-						<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					
-					<div class="white_blend"></div>
-					
-				</div>
-				
-				<div class="section psample psample_row4" id="">
-					<div class="grid12 firstcol">
-						<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="white_blend"></div>
-					
-				</div>
-				
-				
-				
-				<div class="section psample psample_row1 fullreverse">
-					<div class="grid2 firstcol">
-						<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				<div class="section psample psample_row2 fullreverse">
-					<div class="grid3 firstcol">
-						<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid5">
-						<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="black_blend"></div>
-
-				</div>
-				
-				<div class="section psample fullreverse psample_row3" id="">
-					<div class="grid5 firstcol">
-						<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="grid7">
-						<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
-					<div class="grid12 firstcol">
-						<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				
-				
-				
-			</div>
-			
-			<div id="layout">
-				
-				<div class="section">
-					
-					<div class="grid12 firstcol">
-						<h1>Lorem Ipsum Dolor</h1>
-						<h2>Etiam porta sem malesuada magna mollis euismod</h2>
-						
-						<p class="byline">By <a href="#link">Aenean Lacinia</a></p>
-					</div>
-				</div>
-				<div class="section">
-					<div class="grid8 firstcol">
-						<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-						
-						<h3>Pellentesque ornare sem</h3>
-
-						<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
-
-						<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
-
-						<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
-
-						<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
-
-						<h3>Cras mattis consectetur</h3>
-
-						<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
-
-						<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
-					</div>
-					
-					<div class="grid4 sidebar">
-						
-						<div class="box reverse">
-							<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
-						</div>
-						
-						<p class="caption">Maecenas sed diam eget risus varius.</p>
-
-						<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-					
-
-						<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
-
-						<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-					</div>
-				</div>
-				
-			</div>
-
-
-			
-
-
-
-		<div id="glyphs">
-			<div class="section">
-				<div class="grid12 firstcol">
-			
-				<h1>Language Support</h1>
-				<p>The subset of Brandon Grotesque Regular in this kit supports the following languages:<br />
-			
-					Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Swedish				</p>
-				<h1>Glyph Chart</h1>
-				<p>The subset of Brandon Grotesque Regular in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p>
-				<div id="glyph_chart">
-			
-																				 <div><p>&amp;#32;</p>&#32;</div>
-																				 <div><p>&amp;#33;</p>&#33;</div>
-																				 <div><p>&amp;#34;</p>&#34;</div>
-																				 <div><p>&amp;#35;</p>&#35;</div>
-																				 <div><p>&amp;#36;</p>&#36;</div>
-																				 <div><p>&amp;#37;</p>&#37;</div>
-																				 <div><p>&amp;#38;</p>&#38;</div>
-																				 <div><p>&amp;#39;</p>&#39;</div>
-																				 <div><p>&amp;#40;</p>&#40;</div>
-																				 <div><p>&amp;#41;</p>&#41;</div>
-																				 <div><p>&amp;#42;</p>&#42;</div>
-																				 <div><p>&amp;#43;</p>&#43;</div>
-																				 <div><p>&amp;#44;</p>&#44;</div>
-																				 <div><p>&amp;#45;</p>&#45;</div>
-																				 <div><p>&amp;#46;</p>&#46;</div>
-																				 <div><p>&amp;#47;</p>&#47;</div>
-																				 <div><p>&amp;#48;</p>&#48;</div>
-																				 <div><p>&amp;#49;</p>&#49;</div>
-																				 <div><p>&amp;#50;</p>&#50;</div>
-																				 <div><p>&amp;#51;</p>&#51;</div>
-																				 <div><p>&amp;#52;</p>&#52;</div>
-																				 <div><p>&amp;#53;</p>&#53;</div>
-																				 <div><p>&amp;#54;</p>&#54;</div>
-																				 <div><p>&amp;#55;</p>&#55;</div>
-																				 <div><p>&amp;#56;</p>&#56;</div>
-																				 <div><p>&amp;#57;</p>&#57;</div>
-																				 <div><p>&amp;#58;</p>&#58;</div>
-																				 <div><p>&amp;#59;</p>&#59;</div>
-																				 <div><p>&amp;#60;</p>&#60;</div>
-																				 <div><p>&amp;#61;</p>&#61;</div>
-																				 <div><p>&amp;#62;</p>&#62;</div>
-																				 <div><p>&amp;#63;</p>&#63;</div>
-																				 <div><p>&amp;#64;</p>&#64;</div>
-																				 <div><p>&amp;#65;</p>&#65;</div>
-																				 <div><p>&amp;#66;</p>&#66;</div>
-																				 <div><p>&amp;#67;</p>&#67;</div>
-																				 <div><p>&amp;#68;</p>&#68;</div>
-																				 <div><p>&amp;#69;</p>&#69;</div>
-																				 <div><p>&amp;#70;</p>&#70;</div>
-																				 <div><p>&amp;#71;</p>&#71;</div>
-																				 <div><p>&amp;#72;</p>&#72;</div>
-																				 <div><p>&amp;#73;</p>&#73;</div>
-																				 <div><p>&amp;#74;</p>&#74;</div>
-																				 <div><p>&amp;#75;</p>&#75;</div>
-																				 <div><p>&amp;#76;</p>&#76;</div>
-																				 <div><p>&amp;#77;</p>&#77;</div>
-																				 <div><p>&amp;#78;</p>&#78;</div>
-																				 <div><p>&amp;#79;</p>&#79;</div>
-																				 <div><p>&amp;#80;</p>&#80;</div>
-																				 <div><p>&amp;#81;</p>&#81;</div>
-																				 <div><p>&amp;#82;</p>&#82;</div>
-																				 <div><p>&amp;#83;</p>&#83;</div>
-																				 <div><p>&amp;#84;</p>&#84;</div>
-																				 <div><p>&amp;#85;</p>&#85;</div>
-																				 <div><p>&amp;#86;</p>&#86;</div>
-																				 <div><p>&amp;#87;</p>&#87;</div>
-																				 <div><p>&amp;#88;</p>&#88;</div>
-																				 <div><p>&amp;#89;</p>&#89;</div>
-																				 <div><p>&amp;#90;</p>&#90;</div>
-																				 <div><p>&amp;#91;</p>&#91;</div>
-																				 <div><p>&amp;#92;</p>&#92;</div>
-																				 <div><p>&amp;#93;</p>&#93;</div>
-																				 <div><p>&amp;#94;</p>&#94;</div>
-																				 <div><p>&amp;#95;</p>&#95;</div>
-																				 <div><p>&amp;#96;</p>&#96;</div>
-																				 <div><p>&amp;#97;</p>&#97;</div>
-																				 <div><p>&amp;#98;</p>&#98;</div>
-																				 <div><p>&amp;#99;</p>&#99;</div>
-																				 <div><p>&amp;#100;</p>&#100;</div>
-																				 <div><p>&amp;#101;</p>&#101;</div>
-																				 <div><p>&amp;#102;</p>&#102;</div>
-																				 <div><p>&amp;#103;</p>&#103;</div>
-																				 <div><p>&amp;#104;</p>&#104;</div>
-																				 <div><p>&amp;#105;</p>&#105;</div>
-																				 <div><p>&amp;#106;</p>&#106;</div>
-																				 <div><p>&amp;#107;</p>&#107;</div>
-																				 <div><p>&amp;#108;</p>&#108;</div>
-																				 <div><p>&amp;#109;</p>&#109;</div>
-																				 <div><p>&amp;#110;</p>&#110;</div>
-																				 <div><p>&amp;#111;</p>&#111;</div>
-																				 <div><p>&amp;#112;</p>&#112;</div>
-																				 <div><p>&amp;#113;</p>&#113;</div>
-																				 <div><p>&amp;#114;</p>&#114;</div>
-																				 <div><p>&amp;#115;</p>&#115;</div>
-																				 <div><p>&amp;#116;</p>&#116;</div>
-																				 <div><p>&amp;#117;</p>&#117;</div>
-																				 <div><p>&amp;#118;</p>&#118;</div>
-																				 <div><p>&amp;#119;</p>&#119;</div>
-																				 <div><p>&amp;#120;</p>&#120;</div>
-																				 <div><p>&amp;#121;</p>&#121;</div>
-																				 <div><p>&amp;#122;</p>&#122;</div>
-																				 <div><p>&amp;#123;</p>&#123;</div>
-																				 <div><p>&amp;#124;</p>&#124;</div>
-																				 <div><p>&amp;#125;</p>&#125;</div>
-																				 <div><p>&amp;#126;</p>&#126;</div>
-																				 <div><p>&amp;#160;</p>&#160;</div>
-																				 <div><p>&amp;#161;</p>&#161;</div>
-																				 <div><p>&amp;#162;</p>&#162;</div>
-																				 <div><p>&amp;#163;</p>&#163;</div>
-																				 <div><p>&amp;#164;</p>&#164;</div>
-																				 <div><p>&amp;#165;</p>&#165;</div>
-																				 <div><p>&amp;#166;</p>&#166;</div>
-																				 <div><p>&amp;#167;</p>&#167;</div>
-																				 <div><p>&amp;#168;</p>&#168;</div>
-																				 <div><p>&amp;#169;</p>&#169;</div>
-																				 <div><p>&amp;#170;</p>&#170;</div>
-																				 <div><p>&amp;#171;</p>&#171;</div>
-																				 <div><p>&amp;#172;</p>&#172;</div>
-																				 <div><p>&amp;#173;</p>&#173;</div>
-																				 <div><p>&amp;#174;</p>&#174;</div>
-																				 <div><p>&amp;#175;</p>&#175;</div>
-																				 <div><p>&amp;#176;</p>&#176;</div>
-																				 <div><p>&amp;#177;</p>&#177;</div>
-																				 <div><p>&amp;#178;</p>&#178;</div>
-																				 <div><p>&amp;#179;</p>&#179;</div>
-																				 <div><p>&amp;#180;</p>&#180;</div>
-																				 <div><p>&amp;#181;</p>&#181;</div>
-																				 <div><p>&amp;#182;</p>&#182;</div>
-																				 <div><p>&amp;#183;</p>&#183;</div>
-																				 <div><p>&amp;#184;</p>&#184;</div>
-																				 <div><p>&amp;#185;</p>&#185;</div>
-																				 <div><p>&amp;#186;</p>&#186;</div>
-																				 <div><p>&amp;#187;</p>&#187;</div>
-																				 <div><p>&amp;#188;</p>&#188;</div>
-																				 <div><p>&amp;#189;</p>&#189;</div>
-																				 <div><p>&amp;#190;</p>&#190;</div>
-																				 <div><p>&amp;#191;</p>&#191;</div>
-																				 <div><p>&amp;#192;</p>&#192;</div>
-																				 <div><p>&amp;#193;</p>&#193;</div>
-																				 <div><p>&amp;#194;</p>&#194;</div>
-																				 <div><p>&amp;#195;</p>&#195;</div>
-																				 <div><p>&amp;#196;</p>&#196;</div>
-																				 <div><p>&amp;#197;</p>&#197;</div>
-																				 <div><p>&amp;#198;</p>&#198;</div>
-																				 <div><p>&amp;#199;</p>&#199;</div>
-																				 <div><p>&amp;#200;</p>&#200;</div>
-																				 <div><p>&amp;#201;</p>&#201;</div>
-																				 <div><p>&amp;#202;</p>&#202;</div>
-																				 <div><p>&amp;#203;</p>&#203;</div>
-																				 <div><p>&amp;#204;</p>&#204;</div>
-																				 <div><p>&amp;#205;</p>&#205;</div>
-																				 <div><p>&amp;#206;</p>&#206;</div>
-																				 <div><p>&amp;#207;</p>&#207;</div>
-																				 <div><p>&amp;#208;</p>&#208;</div>
-																				 <div><p>&amp;#209;</p>&#209;</div>
-																				 <div><p>&amp;#210;</p>&#210;</div>
-																				 <div><p>&amp;#211;</p>&#211;</div>
-																				 <div><p>&amp;#212;</p>&#212;</div>
-																				 <div><p>&amp;#213;</p>&#213;</div>
-																				 <div><p>&amp;#214;</p>&#214;</div>
-																				 <div><p>&amp;#215;</p>&#215;</div>
-																				 <div><p>&amp;#216;</p>&#216;</div>
-																				 <div><p>&amp;#217;</p>&#217;</div>
-																				 <div><p>&amp;#218;</p>&#218;</div>
-																				 <div><p>&amp;#219;</p>&#219;</div>
-																				 <div><p>&amp;#220;</p>&#220;</div>
-																				 <div><p>&amp;#221;</p>&#221;</div>
-																				 <div><p>&amp;#222;</p>&#222;</div>
-																				 <div><p>&amp;#223;</p>&#223;</div>
-																				 <div><p>&amp;#224;</p>&#224;</div>
-																				 <div><p>&amp;#225;</p>&#225;</div>
-																				 <div><p>&amp;#226;</p>&#226;</div>
-																				 <div><p>&amp;#227;</p>&#227;</div>
-																				 <div><p>&amp;#228;</p>&#228;</div>
-																				 <div><p>&amp;#229;</p>&#229;</div>
-																				 <div><p>&amp;#230;</p>&#230;</div>
-																				 <div><p>&amp;#231;</p>&#231;</div>
-																				 <div><p>&amp;#232;</p>&#232;</div>
-																				 <div><p>&amp;#233;</p>&#233;</div>
-																				 <div><p>&amp;#234;</p>&#234;</div>
-																				 <div><p>&amp;#235;</p>&#235;</div>
-																				 <div><p>&amp;#236;</p>&#236;</div>
-																				 <div><p>&amp;#237;</p>&#237;</div>
-																				 <div><p>&amp;#238;</p>&#238;</div>
-																				 <div><p>&amp;#239;</p>&#239;</div>
-																				 <div><p>&amp;#240;</p>&#240;</div>
-																				 <div><p>&amp;#241;</p>&#241;</div>
-																				 <div><p>&amp;#242;</p>&#242;</div>
-																				 <div><p>&amp;#243;</p>&#243;</div>
-																				 <div><p>&amp;#244;</p>&#244;</div>
-																				 <div><p>&amp;#245;</p>&#245;</div>
-																				 <div><p>&amp;#246;</p>&#246;</div>
-																				 <div><p>&amp;#247;</p>&#247;</div>
-																				 <div><p>&amp;#248;</p>&#248;</div>
-																				 <div><p>&amp;#249;</p>&#249;</div>
-																				 <div><p>&amp;#250;</p>&#250;</div>
-																				 <div><p>&amp;#251;</p>&#251;</div>
-																				 <div><p>&amp;#252;</p>&#252;</div>
-																				 <div><p>&amp;#253;</p>&#253;</div>
-																				 <div><p>&amp;#254;</p>&#254;</div>
-																				 <div><p>&amp;#255;</p>&#255;</div>
-																				 <div><p>&amp;#338;</p>&#338;</div>
-																				 <div><p>&amp;#339;</p>&#339;</div>
-																				 <div><p>&amp;#376;</p>&#376;</div>
-																				 <div><p>&amp;#710;</p>&#710;</div>
-																				 <div><p>&amp;#732;</p>&#732;</div>
-																				 <div><p>&amp;#8192;</p>&#8192;</div>
-																				 <div><p>&amp;#8193;</p>&#8193;</div>
-																				 <div><p>&amp;#8194;</p>&#8194;</div>
-																				 <div><p>&amp;#8195;</p>&#8195;</div>
-																				 <div><p>&amp;#8196;</p>&#8196;</div>
-																				 <div><p>&amp;#8197;</p>&#8197;</div>
-																				 <div><p>&amp;#8198;</p>&#8198;</div>
-																				 <div><p>&amp;#8199;</p>&#8199;</div>
-																				 <div><p>&amp;#8200;</p>&#8200;</div>
-																				 <div><p>&amp;#8201;</p>&#8201;</div>
-																				 <div><p>&amp;#8202;</p>&#8202;</div>
-																				 <div><p>&amp;#8208;</p>&#8208;</div>
-																				 <div><p>&amp;#8209;</p>&#8209;</div>
-																				 <div><p>&amp;#8210;</p>&#8210;</div>
-																				 <div><p>&amp;#8211;</p>&#8211;</div>
-																				 <div><p>&amp;#8212;</p>&#8212;</div>
-																				 <div><p>&amp;#8216;</p>&#8216;</div>
-																				 <div><p>&amp;#8217;</p>&#8217;</div>
-																				 <div><p>&amp;#8218;</p>&#8218;</div>
-																				 <div><p>&amp;#8220;</p>&#8220;</div>
-																				 <div><p>&amp;#8221;</p>&#8221;</div>
-																				 <div><p>&amp;#8222;</p>&#8222;</div>
-																				 <div><p>&amp;#8226;</p>&#8226;</div>
-																				 <div><p>&amp;#8230;</p>&#8230;</div>
-																				 <div><p>&amp;#8239;</p>&#8239;</div>
-																				 <div><p>&amp;#8249;</p>&#8249;</div>
-																				 <div><p>&amp;#8250;</p>&#8250;</div>
-																				 <div><p>&amp;#8287;</p>&#8287;</div>
-																				 <div><p>&amp;#8364;</p>&#8364;</div>
-																				 <div><p>&amp;#8482;</p>&#8482;</div>
-																				 <div><p>&amp;#9724;</p>&#9724;</div>
-																				 <div><p>&amp;#64257;</p>&#64257;</div>
-																				 <div><p>&amp;#64258;</p>&#64258;</div>
-																				 <div><p>&amp;#64259;</p>&#64259;</div>
-																				 <div><p>&amp;#64260;</p>&#64260;</div>
-																																																</div>	
-				</div>
-		
-		
-			</div>
-		</div>
-		
-		
-		<div id="specs">
-			
-		</div>
-	
-		<div id="installing">
-			<div class="section">
-				<div class="grid7 firstcol">
-					<h1>Installing Webfonts</h1>
-					
-					<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
-					
-					<h2>1. Upload your webfonts</h2>
-					<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
-					
-					<h2>2. Include the webfont stylesheet</h2>
-					<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p>
-
-
-<code>
-@font-face{ 
-	font-family: 'MyWebFont';
-	src: url('WebFont.eot');
-	src: url('WebFont.eot?#iefix') format('embedded-opentype'),
-	     url('WebFont.woff') format('woff'),
-	     url('WebFont.ttf') format('truetype'),
-	     url('WebFont.svg#webfont') format('svg');
-}
-</code>
-
-	<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
-	<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>
-
-					<h2>3. Modify your own stylesheet</h2>
-					<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
-<code>p { font-family: 'WebFont', Arial, sans-serif; }</code>
-
-<h2>4. Test</h2>
-<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
-				</div>
-				
-				<div class="grid5 sidebar">
-					<div class="box">
-						<h2>Troubleshooting<br />Font-Face Problems</h2>
-						<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
-
-						<h3>Fonts not showing in any browser</h3>
-
-						<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
-
-						<h3>Fonts not loading in iPhone or iPad</h3>
-
-						<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
-
-						<h3>Fonts not loading in Firefox</h3>
-
-						<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
-
-						<h3>Fonts not loading in IE</h3>
-
-						<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
-
-						<h3>Fonts not loading in IE9</h3>
-
-						<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
-					</div>
-				</div>
-			</div>
-			
-		</div>
-	
-	</div>
-	<div id="footer">
-		<p>&copy;2010-2011 Font Squirrel. All rights reserved.</p>
-	</div>
-</div>
-</body>
-</html>
diff --git a/client/assets/fonts/brandon_reg/brandon_reg-webfont.eot b/client/assets/fonts/brandon_reg/brandon_reg-webfont.eot
deleted file mode 100755
index 4a5eecd4398de5d7c10ef3fe0ded78326ddea4e5..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/brandon_reg/brandon_reg-webfont.eot and /dev/null differ
diff --git a/client/assets/fonts/brandon_reg/brandon_reg-webfont.svg b/client/assets/fonts/brandon_reg/brandon_reg-webfont.svg
deleted file mode 100755
index b189114aaa93150a8c696b9659555e4cc6f39dc4..0000000000000000000000000000000000000000
--- a/client/assets/fonts/brandon_reg/brandon_reg-webfont.svg
+++ /dev/null
@@ -1,4505 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
-<metadata></metadata>
-<defs>
-<font id="brandon_grotesque_regularRg" horiz-adv-x="987" >
-<font-face units-per-em="2048" ascent="1434" descent="-614" />
-<missing-glyph horiz-adv-x="454" />
-<glyph unicode="&#xfb01;" horiz-adv-x="1079" d="M47 735v45q0 17 11 28t28 11h125v287q0 169 96 258.5t238 89.5q91 0 174.5 -32.5t126.5 -63.5q10 -7 12 -22t-4 -25l-33 -56q-14 -23 -53 -2q-1 1 -15.5 8.5t-24.5 12.5t-28.5 14t-35.5 14.5t-37.5 12t-42 9.5t-41.5 3q-79 0 -135 -55.5t-56 -165.5v-287h543q15 0 27 -12 t12 -27v-741q0 -15 -12 -27t-27 -12h-64q-15 0 -26.5 12t-11.5 27v657h-441v-657q0 -15 -12 -27t-27 -12h-63q-15 0 -27 12t-12 27v657h-125q-17 0 -28 11.5t-11 27.5z" />
-<glyph unicode="&#xfb02;" horiz-adv-x="1085" d="M47 735v45q0 17 11 28t28 11h125v287q0 169 95 258.5t237 89.5q48 0 92.5 -10.5t75 -26t53.5 -31t34 -26.5l11 -10l16 51q9 33 39 33h35q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-63q-15 0 -27 12t-12 27v1149q-4 5 -10.5 14t-30.5 31t-50 39t-67.5 31t-85.5 14 q-37 0 -71 -11t-64 -34.5t-48 -66t-18 -99.5v-287h238q17 0 28 -11t11 -28v-45q0 -16 -11 -27.5t-28 -11.5h-238v-657q0 -15 -12 -27t-27 -12h-63q-15 0 -27 12t-12 27v657h-125q-17 0 -28 11.5t-11 27.5z" />
-<glyph horiz-adv-x="0" />
-<glyph horiz-adv-x="682" />
-<glyph unicode=" "  horiz-adv-x="454" />
-<glyph unicode="&#x09;" horiz-adv-x="454" />
-<glyph unicode="&#xa0;" horiz-adv-x="454" />
-<glyph unicode="!" horiz-adv-x="610" d="M188 96q0 49 34.5 83t82.5 34q49 0 83 -33.5t34 -83.5q0 -48 -34 -82t-83 -34q-47 0 -82 34.5t-35 81.5zM215 1161v234q0 15 12 27t27 12h102q15 0 27 -12t12 -27v-230l-39 -575q-2 -12 -14 -22.5t-25 -10.5h-24q-13 0 -25 10.5t-14 22.5z" />
-<glyph unicode="&#x22;" horiz-adv-x="628" d="M100 1065v330q0 15 12 27t27 12h70q21 0 32 -15.5t5 -36.5l-58 -325q-3 -12 -14 -21.5t-22 -9.5h-13q-15 0 -27 12t-12 27zM410 1065v330q0 15 12 27t27 12h69q21 0 32 -15.5t5 -36.5l-57 -325q-3 -12 -14.5 -21.5t-22.5 -9.5h-12q-15 0 -27 12t-12 27z" />
-<glyph unicode="#" horiz-adv-x="1110" d="M86 438v15q0 17 11 28t28 11h158l49 350h-148q-15 0 -27 12t-12 27v14q0 15 12 27t27 12h160l66 467q2 12 12.5 22.5t23.5 10.5h15q18 0 29 -13.5t8 -31.5l-62 -455h309l64 467q2 12 14 22.5t25 10.5h12q19 0 30.5 -13t8.5 -32l-61 -455h143q17 0 28 -11.5t11 -27.5v-14 q0 -16 -9.5 -27.5t-25.5 -11.5h-160l-49 -350h146q16 0 27.5 -11t11.5 -28v-15q0 -15 -10 -27t-25 -12h-164l-53 -366q-2 -14 -13 -23.5t-26 -9.5h-13q-19 0 -30 13t-9 32l54 354h-314l-51 -366q-1 -13 -13 -23t-26 -10h-12q-20 0 -31 13t-8 32l51 354h-143q-17 0 -28 11.5 t-11 27.5zM373 492h313l47 350h-309z" />
-<glyph unicode="$" horiz-adv-x="1073" d="M94.5 190q2.5 11 11.5 25q5 6 18.5 23.5t20.5 24.5t18 15.5t22.5 6.5t23.5 -13q11 -11 30 -26.5t58.5 -43.5t93.5 -50.5t109 -30.5v532q-87 35 -149 68t-114 76t-82 97.5t-40 121.5q-4 23 -4 74q0 41 13 85.5t43.5 91.5t74 85.5t110.5 65.5t148 34v66q0 17 11.5 27.5 t27.5 10.5h14q15 0 26 -10.5t11 -27.5v-66q79 -6 156 -31.5t114 -48.5l37 -22q8 -4 14 -12t8.5 -23.5t-10.5 -34.5q-4 -6 -12 -18.5t-11 -17t-9.5 -13t-10.5 -11t-10.5 -6t-12 -2.5t-13.5 3.5t-17 7.5q-1 0 -17 9.5t-36 20.5t-47 23t-59.5 22.5t-63.5 14.5l-2 -531 q81 -34 138.5 -64.5t110.5 -69.5t85.5 -81.5t51.5 -97.5t19 -121q0 -149 -119 -252t-286 -114v-213q0 -18 -13 -27.5t-32 -9.5q-17 0 -30 10t-13 27v213q-75 6 -144.5 28.5t-119.5 52.5t-75 48t-42 34q-9 8 -12.5 12t-9 13t-3 20zM262 1092q0 -91 59.5 -155t178.5 -118v496 q-62 -6 -110 -30.5t-74.5 -58t-40 -68t-13.5 -66.5zM588 119q102 9 171.5 73.5t69.5 149.5q0 84 -58.5 146.5t-182.5 123.5v-493z" />
-<glyph unicode="%" horiz-adv-x="1382" d="M72 1180q0 116 80 196t196 80q114 0 195.5 -80.5t81.5 -195.5t-81.5 -196t-195.5 -81q-115 0 -195.5 80.5t-80.5 196.5zM188 1180q0 -68 46 -114t114 -46q64 0 110 46.5t46 113.5q0 63 -46.5 109t-109.5 46q-67 0 -113.5 -45.5t-46.5 -109.5zM262 55l703 1358 q12 21 34 21h33q23 0 34.5 -18t0.5 -38l-707 -1358q-10 -20 -34 -20h-29q-23 0 -34 17.5t-1 37.5zM719 254q0 116 80.5 196t195.5 80q114 0 195.5 -80.5t81.5 -195.5t-81.5 -196t-195.5 -81q-115 0 -195.5 80.5t-80.5 196.5zM836 254q0 -68 46 -114t113 -46q64 0 110 46.5 t46 113.5q0 63 -46.5 109.5t-109.5 46.5q-67 0 -113 -46t-46 -110z" />
-<glyph unicode="&#x26;" horiz-adv-x="1363" d="M168 356q0 63 19.5 121t48 99.5t70 80.5t74.5 62t73 47v4l-50 53q-70 74 -108 144t-35 155q0 60 22.5 118t65.5 106.5t114.5 78t160.5 29.5q160 0 253 -91t93 -224q0 -206 -303 -394l338 -337q81 167 81 364q0 31 10.5 39t37.5 8h49q7 0 12.5 -1t9.5 -3.5t7 -4t5 -6 t3 -6.5t1.5 -7t0.5 -6.5v-6.5v-6q0 -118 -32 -238.5t-89 -222.5l196 -196q15 -16 21 -26.5t1.5 -28.5t-24.5 -40l-24 -22q-43 -40 -86 6l-174 180q-181 -204 -447 -204q-124 0 -215.5 52.5t-135.5 136.5t-44 187zM311 354q0 -106 75 -177t183 -71q103 0 193 46.5t158 128.5 l-379 397q-230 -139 -230 -324zM397 1118q-3 -61 30.5 -114t100.5 -119l45 -45q35 21 52 31.5t53 35.5t56.5 46.5t44.5 51t35 62.5t11 68q0 79 -58 138.5t-157 59.5q-98 0 -155.5 -61.5t-57.5 -153.5z" />
-<glyph unicode="'" horiz-adv-x="319" d="M100 1065v330q0 15 12 27t27 12h70q21 0 32 -15.5t5 -36.5l-58 -325q-3 -12 -14 -21.5t-22 -9.5h-13q-15 0 -27 12t-12 27z" />
-<glyph unicode="(" horiz-adv-x="704" d="M119 645q0 146 19.5 267.5t54.5 206.5t80 149t100.5 102t111.5 57.5t117 22.5q34 3 37 -20l4 -56q3 -13 -3 -23t-17 -12q-189 -37 -275 -211t-86 -483t86 -483t275 -211q11 -2 17 -12t3 -23l-4 -55q-3 -24 -37 -21q-61 3 -117 22.5t-111.5 57.5t-100.5 102t-80 149 t-54.5 206.5t-19.5 267.5z" />
-<glyph unicode=")" horiz-adv-x="704" d="M61 -84q-3 13 3.5 23t17.5 12q189 37 274.5 210.5t85.5 483.5t-85.5 483.5t-274.5 210.5q-11 2 -17.5 12t-3.5 23l5 56q3 23 36 20q74 -4 140.5 -30t130.5 -86t110 -148.5t74.5 -227.5t28.5 -313t-28.5 -313t-74.5 -227.5t-110 -148.5t-130.5 -86t-140.5 -30 q-33 -3 -36 21z" />
-<glyph unicode="*" horiz-adv-x="671" d="M73 1264q-3 16 5 28q3 4 8 11.5t8 11.5q8 12 23.5 16.5t27.5 -4.5l142 -100l-4 170q0 15 12 26t27 11h26q15 0 27 -11t12 -26l-4 -168l137 102q14 7 29 3.5t24 -15.5l15 -23q8 -13 5.5 -28.5t-15.5 -24.5l-158 -100l160 -101q13 -9 16.5 -25t-4.5 -28l-14 -22 q-9 -13 -26 -17t-30 4l-139 101l4 -166q0 -15 -12 -27t-27 -12h-26q-15 0 -27 12t-12 27l4 168l-137 -99q-12 -9 -29 -5t-25 18l-14 20q-9 14 -5.5 30.5t15.5 25.5l154 96l-158 96q-12 9 -15 25z" />
-<glyph unicode="+" horiz-adv-x="1026" d="M84 682v57q0 15 12 27t27 12h321v324q0 15 12 26t27 11h58q15 0 27 -11t12 -26v-324h323q15 0 26 -12t11 -27v-57q0 -15 -11 -27t-26 -12h-323v-321q0 -15 -12 -26t-27 -11h-58q-15 0 -27 11t-12 26v321h-321q-15 0 -27 12t-12 27z" />
-<glyph unicode="," horiz-adv-x="477" d="M110 -304q3 15 17 28q127 114 127 258q-8 -2 -25 -2q-47 0 -81.5 34.5t-34.5 81.5q0 49 34 83t82 34q58 0 97 -41.5t39 -142.5q0 -114 -54.5 -217.5t-117.5 -161.5q-28 -26 -50 -4l-28 28q-8 7 -5 22z" />
-<glyph unicode="-" horiz-adv-x="845" d="M170 487v39q0 17 11 28t28 11h428q17 0 28 -11t11 -28v-39q0 -15 -11 -25.5t-28 -10.5h-428q-17 0 -28 10.5t-11 25.5z" />
-<glyph unicode="." horiz-adv-x="462" d="M115 96q0 49 34 83t82 34q49 0 83 -33.5t34 -83.5q0 -48 -34 -82t-83 -34q-47 0 -81.5 34.5t-34.5 81.5z" />
-<glyph unicode="/" horiz-adv-x="655" d="M82 51l401 1356q3 11 14 19t23 8h45q22 0 32.5 -15t4.5 -37l-399 -1355q-3 -10 -14.5 -18.5t-22.5 -8.5h-47q-21 0 -32 15t-5 36z" />
-<glyph unicode="0" horiz-adv-x="1294" d="M150 696q0 338 130 527.5t367 189.5t367.5 -189.5t130.5 -527.5t-130.5 -527t-367.5 -189t-367 189t-130 527zM295 696q0 -281 91.5 -432t260.5 -151t260.5 151t91.5 432q0 279 -92 431.5t-260 152.5t-260 -152.5t-92 -431.5z" />
-<glyph unicode="1" horiz-adv-x="667" d="M72 1069q-19 22 4 45l286 279h56q15 0 26 -12t11 -27v-1315q0 -15 -11 -27t-26 -12h-74q-17 0 -28 11.5t-11 27.5v1100l-147 -115q-27 -20 -47 2z" />
-<glyph unicode="2" horiz-adv-x="1062" d="M86 39v61q84 90 251 271.5t251 271.5q207 226 207 371q0 47 -16 90.5t-48 83t-90 63t-133 23.5q-148 0 -291 -154q-12 -12 -27.5 -12t-27.5 12l-41 39q-10 11 -11 25.5t9 27.5q6 8 17 21.5t49.5 48.5t80.5 61.5t108 48t134 21.5q107 0 192.5 -32t139 -87t82 -125.5 t28.5 -150.5q0 -65 -18.5 -125t-58.5 -120.5t-77.5 -105.5t-101.5 -114q-66 -69 -197 -210t-196 -210h602q15 0 27 -12t12 -27v-55q0 -15 -12 -27t-27 -12h-778q-17 0 -28 11.5t-11 27.5z" />
-<glyph unicode="3" horiz-adv-x="1089" d="M86 187.5q0 14.5 12 23.5l56 47q32 23 55 -10q11 -14 32 -33t59.5 -46t95.5 -45t118 -18q123 0 209 69.5t86 186.5q0 114 -92 191.5t-271 77.5h-114q-39 0 -39 45v49q0 25 9.5 35t33.5 10h113q157 0 241 70.5t84 177.5q0 118 -77.5 189t-190.5 71q-151 0 -268 -133 q-10 -12 -24 -14t-30 10l-49 39q-12 11 -11.5 26.5t11.5 26.5q6 7 17.5 19.5t49 43.5t78 54.5t102.5 43t124 19.5q188 0 305 -102.5t117 -272.5q0 -109 -65.5 -197.5t-145.5 -125.5v-6q40 -17 79.5 -45.5t78.5 -69t63.5 -98t24.5 -119.5q0 -172 -124 -284.5t-331 -112.5 q-71 0 -135.5 15t-105 33.5t-80 48.5t-55 45.5t-36.5 39.5q-10 11 -10 25.5z" />
-<glyph unicode="4" horiz-adv-x="1200" d="M33 354v76l776 973q12 12 31 12h41q16 0 27.5 -11t11.5 -28l2 -936h165q17 0 28 -11t11 -26v-45q0 -16 -11 -27.5t-28 -11.5h-165v-280q0 -15 -12 -27t-27 -12h-70q-15 0 -27 12t-12 27v276h-702q-17 0 -28 11.5t-11 27.5zM205 442h577v713z" />
-<glyph unicode="5" horiz-adv-x="1091" d="M115.5 187q-0.5 13 17.5 32q8 7 23.5 22.5t23.5 22.5q31 27 51 -2q12 -17 32 -37t57 -48.5t94 -47t121 -18.5q94 0 169.5 50.5t113.5 126t38 158.5q0 128 -82 211.5t-239 83.5h-312q-29 0 -46 22.5t-17 49.5v541q0 16 11 27.5t28 11.5h618q17 0 28 -11.5t11 -27.5v-60 q0 -16 -11 -27.5t-28 -11.5h-520v-376h238q229 0 351 -113.5t122 -316.5q0 -195 -136 -332t-340 -137q-253 0 -395 170q-21 24 -21.5 37z" />
-<glyph unicode="6" horiz-adv-x="1112" d="M109 563q0 112 27 215.5t70 182.5t103.5 150t120.5 121t128.5 93.5t120.5 69t103 45.5q30 12 45 -21l23 -49q17 -42 -37 -59q-32 -11 -83.5 -38t-120.5 -75.5t-132 -106t-116.5 -135t-73.5 -155.5q6 4 16 10t42.5 22t67 28t85.5 22t100 10q87 0 166.5 -31.5t140 -88 t97 -141t36.5 -183.5q0 -127 -61.5 -235t-165.5 -171t-225 -63t-214 45t-149.5 125t-85 184t-28.5 229zM252.5 518q3.5 -58 14 -115t38 -109t64.5 -92t93 -63.5t124 -23.5q128 0 217.5 96t89.5 229q0 134 -90 227t-219 93q-53 0 -106 -13.5t-90.5 -33t-67.5 -39.5t-45 -34 l-15 -13q-11 -51 -7.5 -109z" />
-<glyph unicode="7" horiz-adv-x="970" d="M49 1294v60q0 15 12 27t27 12h823q15 0 27 -12t12 -27v-15l-598 -1286q-24 -53 -67 -53h-60q-15 0 -27 12t-12 27v22l572 1194h-670q-15 0 -27 12t-12 27z" />
-<glyph unicode="8" horiz-adv-x="1173" d="M127 375q0 62 24.5 121t64 101.5t80 72.5t79.5 47v6q-81 38 -146 122.5t-65 192.5q0 167 118.5 271t303.5 104q187 0 306.5 -103.5t119.5 -271.5q0 -108 -65 -192.5t-146 -122.5v-6q39 -17 79.5 -47t80 -72.5t64 -101.5t24.5 -121q0 -172 -126 -283.5t-339 -111.5 q-208 0 -332.5 112t-124.5 283zM281 360q0 -115 88.5 -186.5t214.5 -71.5q136 0 223.5 69.5t87.5 188.5q0 101 -83.5 182t-223.5 95q-141 -14 -224 -95t-83 -182zM315 1032q0 -100 68 -165.5t205 -78.5q136 13 204 78.5t68 165.5q0 115 -79 186.5t-201 71.5 q-112 0 -188.5 -72t-76.5 -186z" />
-<glyph unicode="9" horiz-adv-x="1112" d="M74 956q0 127 61.5 235t165.5 171t225 63t214 -45t150 -125t85.5 -184t28.5 -229q0 -112 -27 -215.5t-70 -182.5t-103.5 -150t-120.5 -121t-129 -93.5t-121 -69t-103 -45.5q-30 -12 -45 21l-23 49q-17 42 37 59q32 11 83.5 38t120.5 75.5t132 106t116.5 135t73.5 155.5 q-6 -4 -16 -10t-42.5 -22t-67 -28t-85.5 -22t-100 -10q-87 0 -166.5 31.5t-140 88t-97 141t-36.5 183.5zM219 965q0 -134 90 -227t219 -93q53 0 106 13.5t90.5 33.5t67.5 39.5t45 32.5l15 14q11 51 7.5 109t-14 115t-38 109t-64.5 92t-93 63.5t-124 23.5q-128 0 -217.5 -96 t-89.5 -229z" />
-<glyph unicode=":" horiz-adv-x="524" d="M145 96q0 49 34.5 83t82.5 34q50 0 83.5 -33.5t33.5 -83.5q0 -48 -34 -82t-83 -34q-47 0 -82 34.5t-35 81.5zM145 723q0 49 34.5 83t82.5 34q50 0 83.5 -34t33.5 -83q0 -48 -34 -82.5t-83 -34.5q-47 0 -82 35t-35 82z" />
-<glyph unicode=";" horiz-adv-x="530" d="M140.5 -304q3.5 15 17.5 28q127 114 127 258q-8 -2 -25 -2q-47 0 -82 34.5t-35 81.5q0 49 34.5 83t82.5 34q58 0 96.5 -41.5t38.5 -142.5q0 -114 -54.5 -217.5t-117.5 -161.5q-28 -25 -49 -4l-29 28q-8 7 -4.5 22zM143 723q0 49 34.5 83t82.5 34q50 0 83.5 -34t33.5 -83 q0 -48 -34 -82.5t-83 -34.5q-47 0 -82 35t-35 82z" />
-<glyph unicode="&#x3c;" horiz-adv-x="899" d="M51 465v10q0 9 6.5 19.5t14.5 15.5l696 434q20 12 38.5 2t18.5 -35v-73q0 -25 -22 -39l-535 -328l535 -315q22 -13 22 -39v-74q0 -25 -18.5 -35t-38.5 2l-696 420q-8 5 -14.5 15.5t-6.5 19.5z" />
-<glyph unicode="=" horiz-adv-x="1044" d="M176 326v63q0 16 11 27.5t28 11.5h612q17 0 28 -11.5t11 -27.5v-63q0 -16 -11 -27.5t-28 -11.5h-612q-17 0 -28 11.5t-11 27.5zM176 758v61q0 16 11 27.5t28 11.5h612q17 0 28 -11.5t11 -27.5v-61q0 -16 -11 -27.5t-28 -11.5h-612q-17 0 -28 11.5t-11 27.5z" />
-<glyph unicode="&#x3e;" horiz-adv-x="899" d="M74 43v74q0 28 22 39l535 315l-535 328q-22 15 -22 39v73q0 25 18.5 35t38.5 -2l696 -434q8 -5 14.5 -15.5t6.5 -19.5v-10q0 -9 -6.5 -19.5t-14.5 -15.5l-696 -420q-20 -12 -38.5 -2t-18.5 35z" />
-<glyph unicode="?" horiz-adv-x="944" d="M102 1221q-24 21 0 53q5 7 14.5 19.5t43.5 43.5t73.5 54.5t105.5 43t138 19.5q160 0 258.5 -86t98.5 -227q0 -63 -24 -115.5t-60 -85.5t-78 -66t-78 -58t-60 -60t-24 -74v-84q0 -20 -13 -30.5t-30 -10.5h-55q-16 0 -27.5 11t-11.5 28v86q0 51 17 93t44 70.5t59.5 53 t65.5 48.5t60 50.5t44 64.5t17 85q0 76 -53.5 128t-149.5 52q-27 0 -51.5 -3t-46.5 -10t-39.5 -13t-35.5 -18t-29 -19t-26 -21.5t-20.5 -19.5t-19 -19.5t-14.5 -15.5q-26 -26 -54 -2zM319 96q0 49 34.5 83t82.5 34q50 0 83.5 -33.5t33.5 -83.5q0 -48 -34 -82t-83 -34 q-47 0 -82 34.5t-35 81.5z" />
-<glyph unicode="@" horiz-adv-x="2009" d="M88 457q0 217 67 401t188 316t298 206t389 74q202 0 366 -65.5t272.5 -181.5t167 -274t58.5 -343q0 -85 -13 -167t-45 -164t-79 -142.5t-122.5 -98.5t-168.5 -38q-99 0 -157.5 44t-77.5 115h-17q-35 -69 -102 -114t-156 -45q-157 0 -257.5 119t-100.5 313 q0 200 101.5 314t263.5 114q46 0 87 -11t67 -27t45 -32.5t28 -27.5l8 -11q2 7 5.5 22.5t5 20.5t5 15.5t7.5 13.5t10.5 8t15.5 6.5t21 1.5h20q15 0 27 -12t12 -27v-436q0 -97 18.5 -153t49.5 -76.5t80 -20.5q124 0 208 133.5t84 362.5q0 127 -29.5 239.5t-90.5 206 t-148.5 161t-208 105t-264.5 37.5q-371 0 -590 -237t-219 -645q0 -281 147 -487t394 -312q22 -10 25 -20t-7 -31l-22 -56q-13 -29 -41 -16q-284 120 -454.5 360t-170.5 562zM729 410q0 -138 69.5 -216.5t170.5 -78.5q93 0 147 55t74 137v291q-3 5 -8.5 12.5t-25 27.5 t-42.5 35t-61.5 27.5t-81.5 12.5q-107 0 -174.5 -80t-67.5 -223z" />
-<glyph unicode="A" horiz-adv-x="1357" d="M12 53l623 1379q11 22 35 22h20q24 0 35 -22l618 -1379q9 -21 -1 -37t-33 -16h-82q-26 0 -35 23l-152 337h-727l-149 -337q-9 -23 -35 -23h-82q-23 0 -33.5 16.5t-1.5 36.5zM371 487h614q-50 111 -149.5 336t-149.5 336h-16z" />
-<glyph unicode="B" horiz-adv-x="1280" d="M209 39v1356q0 16 11 27.5t28 11.5h448q186 0 303 -107t117 -270q0 -109 -59 -195t-142 -133q45 -19 85 -46t78 -66.5t60.5 -97t22.5 -124.5q0 -173 -124.5 -284t-321.5 -111h-467q-17 0 -28 11.5t-11 27.5zM358 137h373q112 0 185 74.5t73 185.5q0 107 -85.5 179.5 t-207.5 72.5h-338v-512zM362 791h334q115 0 180.5 72.5t65.5 183.5q0 112 -64.5 178.5t-181.5 66.5h-334v-501z" />
-<glyph unicode="C" horiz-adv-x="1447" d="M104 715q0 202 99 372t269 268.5t372 98.5q149 0 267 -48t228 -142q12 -12 13 -29t-11 -29l-55 -55q-23 -28 -53 2q-81 71 -185 112.5t-206 41.5q-119 0 -225.5 -48t-182 -128t-120 -188.5t-44.5 -225.5q0 -156 74.5 -291t207 -216t290.5 -81q64 0 119 11.5t104.5 36 t83.5 46.5t84 60q26 21 49 6l61 -56q11 -10 10 -27t-12 -28q-204 -198 -497 -198q-202 0 -372 97.5t-269 266.5t-99 371z" />
-<glyph unicode="D" horiz-adv-x="1529" d="M209 39v1356q0 15 11 27t26 12h459q145 0 278 -57t229.5 -153t153.5 -228t57 -277q0 -146 -57 -279.5t-153.5 -229.5t-229 -153t-278.5 -57h-459q-15 0 -26 12t-11 27zM365 141h307q252 0 415.5 162.5t163.5 415.5q0 252 -163.5 413.5t-415.5 161.5h-307v-1153z" />
-<glyph unicode="E" horiz-adv-x="1212" d="M209 39v1356q0 16 11 27.5t28 11.5h807q17 0 28 -11.5t11 -27.5v-60q0 -16 -11 -27.5t-28 -11.5h-688v-499h587q15 0 27 -12t12 -27v-60q0 -17 -11.5 -28t-27.5 -11h-587v-522h688q17 0 28 -11.5t11 -27.5v-59q0 -16 -11 -27.5t-28 -11.5h-807q-17 0 -28 11.5t-11 27.5z " />
-<glyph unicode="F" horiz-adv-x="1165" d="M209 39v1356q0 16 11 27.5t28 11.5h807q17 0 28 -11.5t11 -27.5v-60q0 -16 -11 -27.5t-28 -11.5h-688v-561h587q15 0 27 -12t12 -27v-59q0 -15 -12 -27t-27 -12h-587v-559q0 -15 -12 -27t-27 -12h-80q-17 0 -28 11.5t-11 27.5z" />
-<glyph unicode="G" horiz-adv-x="1499" d="M104 715q0 202 99 372t269 268.5t372 98.5q149 0 267 -48t228 -142q12 -12 13 -29t-11 -29l-57 -57q-14 -15 -24.5 -14t-28.5 16q-81 71 -185 115.5t-204 44.5q-119 0 -225.5 -47.5t-181.5 -127.5t-119 -188t-44 -225q0 -156 74 -292t206 -218t290 -82q100 0 192 21.5 t134 43.5l42 21v287h-235q-17 0 -28 11t-11 26v75q0 17 11 28t28 11h354q15 0 26 -12t11 -27v-469q0 -20 -16 -32q-9 -5 -24.5 -14.5t-67.5 -32.5t-107.5 -41t-139.5 -32.5t-167 -14.5q-202 0 -372 97.5t-269 266.5t-99 371z" />
-<glyph unicode="H" horiz-adv-x="1564" d="M209 39v1356q0 15 12 27t27 12h80q17 0 28 -11.5t11 -27.5v-598h831v598q0 16 11 27.5t28 11.5h80q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-80q-17 0 -28 11.5t-11 27.5v620h-831v-620q0 -16 -11 -27.5t-28 -11.5h-80q-15 0 -27 12t-12 27z" />
-<glyph unicode="I" horiz-adv-x="577" d="M209 39v1356q0 15 12 27t27 12h82q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-82q-15 0 -27 12t-12 27z" />
-<glyph unicode="J" horiz-adv-x="829" d="M-41 131q-17 27 4 51l43 49q16 15 29 17t21 -3.5t20 -19.5q97 -108 198 -108q48 0 91.5 18t79.5 53.5t57.5 96.5t21.5 139v971q0 16 11 27.5t28 11.5h80q17 0 28 -11.5t11 -27.5v-967q0 -210 -114 -329t-298 -119q-188 0 -311 151z" />
-<glyph unicode="K" horiz-adv-x="1265" d="M209 49v1335q0 21 14 35.5t35 14.5h59q20 0 35 -15t15 -35v-579l639 608q17 21 38 21h101q29 0 38.5 -24.5t-14.5 -47.5l-647 -604l678 -695q6 -9 7.5 -23t-10 -27t-32.5 -13h-104q-10 0 -22 4.5t-15 9.5l-657 686v-651q0 -20 -15 -34.5t-35 -14.5h-59q-21 0 -35 14 t-14 35z" />
-<glyph unicode="L" horiz-adv-x="1005" d="M209 39v1356q0 16 11 27.5t28 11.5h80q15 0 27 -12t12 -27v-1258h589q17 0 28 -11.5t11 -27.5v-59q0 -16 -11 -27.5t-28 -11.5h-708q-17 0 -28 11.5t-11 27.5z" />
-<glyph unicode="M" horiz-adv-x="1765" d="M106 49l265 1376q3 12 14 20.5t23 8.5h32q11 0 21.5 -6.5t13.5 -15.5l406 -1129h10l399 1129q3 9 13.5 15.5t21.5 6.5h33q12 0 23 -8.5t14 -20.5l264 -1376q5 -22 -4.5 -35.5t-32.5 -13.5h-82q-12 0 -23 9t-14 20l-182 1054h-8l-377 -1081q-3 -9 -14 -15.5t-21 -6.5h-37 q-10 0 -21 6.5t-14 15.5l-380 1081h-9l-178 -1054q-2 -11 -13.5 -20t-23.5 -9h-82q-23 0 -32.5 13.5t-4.5 35.5z" />
-<glyph unicode="N" horiz-adv-x="1585" d="M209 39v1378q0 15 12 26t27 11h51l924 -1151h4v1092q0 16 11 27.5t28 11.5h71q15 0 27 -12t12 -27v-1379q0 -15 -12 -25.5t-27 -10.5h-37l-940 1173h-2v-1114q0 -16 -11 -27.5t-28 -11.5h-71q-15 0 -27 12t-12 27z" />
-<glyph unicode="O" horiz-adv-x="1681" d="M104 715q0 151 58 288t156 236t234.5 157t287.5 58t287.5 -58t235 -157t156.5 -236t58 -288t-58 -287.5t-156.5 -234.5t-235 -155.5t-287.5 -57.5q-202 0 -371 97.5t-267 266.5t-98 371zM248 715q0 -160 79.5 -296.5t216 -216t296.5 -79.5t297 79.5t217 216t80 296.5 t-80 297.5t-217 218t-297 80.5t-296.5 -80.5t-216 -218t-79.5 -297.5z" />
-<glyph unicode="P" horiz-adv-x="1220" d="M209 39v1356q0 16 11 27.5t28 11.5h452q189 0 324 -133.5t135 -319.5q0 -190 -134.5 -325.5t-322.5 -135.5h-337v-481q0 -15 -12 -27t-27 -12h-78q-17 0 -28 11.5t-11 27.5zM365 672h325q127 0 219 91t92 222q0 123 -92 208t-219 85h-325v-606z" />
-<glyph unicode="Q" horiz-adv-x="1683" d="M104 715q0 151 58 288t156 236t234.5 157t287.5 58t287.5 -58t235 -157t156.5 -236t58 -288q0 -224 -119.5 -405t-316.5 -269l239 -385q14 -22 3.5 -42t-35.5 -20h-103q-21 0 -33 21l-223 377q-67 -12 -149 -12q-202 0 -371 97.5t-267 266.5t-98 371zM248 715 q0 -160 79.5 -296.5t216 -216t296.5 -79.5t297 79.5t217 216t80 296.5t-80 297.5t-217 218t-297 80.5t-296.5 -80.5t-216 -218t-79.5 -297.5z" />
-<glyph unicode="R" horiz-adv-x="1353" d="M209 39v1356q0 16 11 27.5t28 11.5h530q185 0 316 -127.5t131 -309.5q0 -138 -83.5 -250t-219.5 -167l280 -521q11 -20 0.5 -39.5t-35.5 -19.5h-104q-24 0 -33 18l-272 543h-391v-522q0 -15 -12 -27t-27 -12h-80q-17 0 -28 11.5t-11 27.5zM371 696h397q120 0 207.5 87 t87.5 212q0 117 -88 203t-207 86h-397v-588z" />
-<glyph unicode="S" horiz-adv-x="1091" d="M106 182q-1 15 11 33q5 6 15 19.5t15 19.5q22 30 44 30l28 -12q181 -155 346 -155q121 0 198 66t77 159q0 101 -85.5 173.5t-273.5 150.5q-93 41 -152.5 76t-110.5 84.5t-74 114t-23 149.5q0 44 13.5 91t46.5 97t81 88.5t125 63t170 24.5q89 0 176.5 -26t130.5 -52 l43 -26q8 -4 14.5 -12t9 -23.5t-10.5 -34.5q-4 -6 -12.5 -19.5t-12.5 -19.5q-17 -27 -41 -27q-14 0 -31 9l-10 6l-20 12t-27.5 15t-34.5 17t-39.5 16.5t-44 14t-45.5 9.5t-47 4q-77 0 -135 -22.5t-88.5 -58.5t-45 -72.5t-14.5 -71.5q0 -97 69 -164t208 -125 q92 -38 154.5 -68.5t124 -71.5t97 -85t57.5 -102t22 -128q0 -157 -130 -262.5t-313 -105.5q-84 0 -163.5 21t-136 53.5t-85 53t-47.5 37.5q-12 10 -17 16t-6 21z" />
-<glyph unicode="T" horiz-adv-x="978" d="M16 1335v60q0 16 11 27.5t28 11.5h869q17 0 28 -11.5t11 -27.5v-60q0 -16 -11 -27.5t-28 -11.5h-357v-1257q0 -15 -12 -27t-27 -12h-77q-15 0 -27 12t-12 27v1257h-357q-17 0 -28 11.5t-11 27.5z" />
-<glyph unicode="U" horiz-adv-x="1466" d="M190 528v867q0 15 12 27t27 12h78q17 0 28 -11.5t11 -27.5v-854q0 -180 104.5 -298t280.5 -118q178 0 283.5 116.5t105.5 295.5v858q0 16 11 27.5t28 11.5h78q15 0 27 -12t12 -27v-867q0 -236 -152.5 -392t-392.5 -156q-158 0 -282 72t-191.5 196.5t-67.5 279.5z" />
-<glyph unicode="V" horiz-adv-x="1359" d="M14 1380q-9 20 1.5 37t33.5 17h82q26 0 35 -23l510 -1147h8l510 1147q3 8 13.5 15.5t21.5 7.5h82q23 0 33.5 -17t1.5 -37l-623 -1378q-11 -22 -35 -22h-20q-24 0 -35 22z" />
-<glyph unicode="W" horiz-adv-x="1847" d="M76 1384q-6 22 4.5 36t32.5 14h86q12 0 23 -9t14 -20l284 -1061h8l342 1088q7 22 35 22h37q12 0 22 -6.5t13 -15.5l348 -1088h8l279 1061q3 11 14 20t23 9h86q22 0 32.5 -14t4.5 -36l-388 -1376q-3 -12 -13.5 -20t-22.5 -8h-33q-24 0 -35 22l-354 1108h-11l-348 -1108 q-11 -22 -35 -22h-32q-12 0 -23 8t-14 20z" />
-<glyph unicode="X" horiz-adv-x="1193" d="M80.5 18.5q-11.5 18.5 1.5 38.5l416 678l-400 641q-12 20 -1.5 39t36.5 19h111q24 0 35 -19l315 -543h2l319 543q11 19 35 19h111q26 0 36.5 -19t-1.5 -39l-400 -641l414 -678q12 -22 1.5 -39.5t-36.5 -17.5h-94q-26 0 -35 18l-350 580h-2l-346 -580q-11 -18 -35 -18h-94 q-27 0 -38.5 18.5z" />
-<glyph unicode="Y" horiz-adv-x="1157" d="M2.5 1414q10.5 20 34.5 20h96q19 0 33 -19l414 -571l413 571q14 19 33 19h96q24 0 34.5 -20t-1.5 -40l-500 -682v-653q0 -15 -12 -27t-27 -12h-79q-17 0 -28 11.5t-11 27.5v651l-494 684q-12 20 -1.5 40z" />
-<glyph unicode="Z" horiz-adv-x="1093" d="M61 39v37l744 1208v6h-645q-15 0 -27 12t-12 27v66q0 15 12 27t27 12h829q15 0 27 -12t12 -27v-27l-756 -1223v-2h676q17 0 28 -11.5t11 -27.5v-65q0 -16 -11 -27.5t-28 -11.5h-848q-15 0 -27 12t-12 27z" />
-<glyph unicode="[" horiz-adv-x="669" d="M160 -575v1970q0 15 12 27t27 12h381q15 0 26.5 -12t11.5 -27v-52q0 -17 -11 -27.5t-27 -10.5h-281v-1790h281q15 0 26.5 -11t11.5 -26v-53q0 -15 -11.5 -27t-26.5 -12h-381q-15 0 -27 12t-12 27z" />
-<glyph unicode="\" horiz-adv-x="675" d="M53 1382q-6 22 4.5 37t32.5 15h66q12 0 23 -8t14 -19l401 -1356q6 -21 -5 -36t-32 -15h-68q-11 0 -22 8.5t-14 18.5z" />
-<glyph unicode="]" horiz-adv-x="669" d="M51 -522q0 15 12 26t27 11h281v1790h-281q-16 0 -27.5 10.5t-11.5 27.5v52q0 15 12 27t27 12h381q15 0 27 -12t12 -27v-1970q0 -15 -12 -27t-27 -12h-381q-15 0 -27 12t-12 27v53z" />
-<glyph unicode="^" horiz-adv-x="1073" d="M88 833.5q-10 18.5 2 38.5l412 570q5 8 15.5 14t19.5 6h10q9 0 19.5 -6t15.5 -14l401 -570q12 -20 2 -38.5t-35 -18.5h-67q-25 0 -39 23l-305 432l-310 -432q-16 -23 -39 -23h-67q-25 0 -35 18.5z" />
-<glyph unicode="_" horiz-adv-x="792" d="M51 -59q0 17 11 28t28 11h612q17 0 28 -11t11 -28v-33q0 -15 -11 -26t-28 -11h-612q-17 0 -28 11t-11 26v33z" />
-<glyph unicode="`" horiz-adv-x="618" d="M140.5 1299.5q-3.5 13.5 2.5 25.5l37 74q7 12 26 12.5t27 -6.5l308 -172q10 -5 13.5 -16t-1.5 -23l-21 -45q-6 -12 -15.5 -12.5t-31.5 8.5l-329 137q-12 4 -15.5 17.5z" />
-<glyph unicode="a" horiz-adv-x="860" d="M86 248q0 120 87 196t241 76q39 0 82.5 -6.5t67.5 -13.5l24 -6v17q0 109 -24 155q-26 50 -109 49q-127 0 -246 -45q-29 -11 -39 20l-16 51q-10 31 22 45q13 6 44.5 17t101.5 24t139 13q151 0 205.5 -79t54.5 -267v-455q0 -15 -12 -27t-27 -12h-39q-16 0 -23 7.5t-12 23.5 l-16 55q-106 -106 -254 -106q-109 0 -180.5 73.5t-71.5 194.5zM217 248q0 -63 39 -104.5t104 -41.5q71 0 133.5 35.5t92.5 79.5v162q-59 33 -172 33q-89 0 -143 -43t-54 -121z" />
-<glyph unicode="b" d="M147 39v1356q0 15 12 27t27 12h64q15 0 27 -12t12 -27v-609q9 6 27 15t75 24t117 15q180 0 286.5 -121.5t106.5 -306.5q0 -178 -108.5 -305t-264.5 -127q-43 0 -85 11t-71 27t-51.5 32t-33.5 27l-11 11l-12 -55q-3 -14 -12.5 -23.5t-22.5 -9.5h-43q-15 0 -27 12t-12 27z M291 244q3 -5 9 -14.5t27 -32.5t45 -41t62.5 -32.5t79.5 -14.5q109 0 176.5 88t67.5 213q0 128 -70 210t-199 82q-50 0 -99.5 -12t-73.5 -24l-25 -13v-409z" />
-<glyph unicode="c" horiz-adv-x="903" d="M84 408q0 118 59 218t156 157t207 57q180 0 293 -144q10 -14 8 -30t-16 -27l-39 -33q-9 -8 -16 -12t-14 -2t-9.5 3.5t-11 9.5t-9.5 9q-75 86 -188 86q-116 0 -194.5 -83.5t-78.5 -206.5q0 -124 78 -209.5t193 -85.5q26 0 48 3t41.5 11t32 13t29.5 19t23.5 19t23 21.5 l19.5 19.5q21 18 31.5 17.5t29.5 -13.5l23 -16q15 -11 19 -26.5t-5 -30.5q-48 -77 -130.5 -124.5t-182.5 -47.5q-173 0 -296.5 123t-123.5 305z" />
-<glyph unicode="d" d="M86 412q0 185 106.5 306.5t286.5 121.5q60 0 114.5 -13.5t79.5 -26.5l25 -14v609q0 15 12 27t27 12h64q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-43q-13 0 -22.5 9.5t-12.5 23.5l-12 55l-11.5 -11.5t-32.5 -26t-52.5 -33t-70 -26t-85.5 -11.5q-156 0 -264.5 127 t-108.5 305zM229 410q0 -125 67.5 -213t176.5 -88q41 0 79 14t63 33.5t44.5 39.5t28.5 34l8 14v409l-27 13.5t-69 22t-102 13.5q-129 0 -199 -82t-70 -210z" />
-<glyph unicode="e" horiz-adv-x="935" d="M86 410q0 180 110.5 305t290.5 125q161 0 266 -106.5t105 -268.5q0 -27 -4 -55q-1 -15 -12 -25t-25 -10h-590q6 -105 87 -185.5t188 -80.5q104 0 203 61q3 2 10 5.5t9 5t7 4t7.5 2.5h6t6 -1.5t5.5 -4.5t6 -7q6 -8 17.5 -23.5t17.5 -23.5q13 -12 12.5 -24.5t-21.5 -28.5 q-45 -36 -125.5 -65t-175.5 -29q-181 0 -291 124t-110 306zM229 489h488q-5 91 -71.5 158.5t-158.5 67.5q-102 0 -174.5 -65t-83.5 -161z" />
-<glyph unicode="f" horiz-adv-x="655" d="M47 735v45q0 17 11 28t28 11h125v287q0 171 87 259.5t226 88.5q137 0 226 -84q23 -20 8 -47l-33 -53q-18 -30 -53 -2q-80 59 -150 59q-76 0 -123 -54.5t-47 -166.5v-287h238q17 0 28 -11t11 -28v-45q0 -16 -11 -27.5t-28 -11.5h-238v-657q0 -15 -12 -27t-27 -12h-63 q-15 0 -27 12t-12 27v657h-125q-17 0 -28 11.5t-11 27.5z" />
-<glyph unicode="g" horiz-adv-x="940" d="M63 39q0 44 14 84t34.5 66.5t41 46.5t34.5 29l14 9q-7 9 -18 26.5t-29.5 71t-18.5 107.5q0 148 95.5 254.5t250.5 106.5h346q17 0 28 -11t11 -28v-35q0 -12 -6 -23t-16 -12l-111 -22q4 -3 10 -8.5t22 -26t28 -44.5t22 -65t10 -86q0 -144 -95 -246t-249 -102 q-58 0 -106.5 12.5t-68.5 25.5l-19 13l-10 -5t-21.5 -14.5t-27.5 -24.5t-21.5 -34.5t-9.5 -44.5q0 -41 29 -70.5t83 -29.5h295q136 0 221.5 -67t85.5 -195q0 -132 -121.5 -232t-302.5 -100q-99 0 -176.5 25t-123.5 66.5t-69.5 90.5t-23.5 101q0 119 119 190v6 q-54 14 -102 62.5t-48 132.5zM240 -332q0 -73 70 -121.5t175 -48.5q107 0 191 55t84 140q0 15 -5 33t-19 43t-48 41t-84 16h-227l-15 -5t-32.5 -16t-41.5 -29t-33 -45t-15 -63zM268 483q0 -101 60.5 -165t154.5 -64q92 0 148.5 63.5t56.5 165.5t-56.5 166t-148.5 64 q-94 0 -154.5 -64.5t-60.5 -165.5z" />
-<glyph unicode="h" horiz-adv-x="1015" d="M147 39v1356q0 15 12 27t27 12h64q15 0 27 -12t12 -27v-664q4 4 12.5 11.5t36 26.5t57.5 33t76 26t92 12q153 0 235.5 -95t82.5 -274v-432q0 -15 -12 -27t-27 -12h-66q-15 0 -27 12t-12 27v432q0 115 -48 173t-136 58q-44 0 -87 -11.5t-73.5 -28.5t-55 -34t-36.5 -28 l-12 -12v-549q0 -15 -12 -27t-27 -12h-64q-15 0 -27 12t-12 27z" />
-<glyph unicode="i" horiz-adv-x="432" d="M117 1294q0 41 28 70t68 29q41 0 69.5 -29t28.5 -70q0 -40 -28.5 -68t-69.5 -28q-40 0 -68 28t-28 68zM145 39v741q0 15 12 27t27 12h64q15 0 27 -12t12 -27v-741q0 -15 -12 -27t-27 -12h-64q-15 0 -27 12t-12 27z" />
-<glyph unicode="j" horiz-adv-x="436" d="M-258 -504l33 53q18 30 53 2q26 -20 70.5 -39.5t78.5 -19.5q76 0 123 54.5t47 166.5v1067q0 17 11.5 28t27.5 11h64q16 0 27.5 -11t11.5 -28v-1067q0 -171 -87.5 -259.5t-226.5 -88.5q-136 0 -225 84q-23 20 -8 47zM121 1294q0 41 28 70t68 29q41 0 69.5 -29t28.5 -70 q0 -40 -28.5 -68t-69.5 -28q-40 0 -68 28t-28 68z" />
-<glyph unicode="k" horiz-adv-x="917" d="M147 39v1356q0 15 12 27t27 12h64q15 0 27 -12t12 -27v-887l348 287q27 24 49 24h111q24 0 27.5 -21t-9.5 -30l-389 -311l453 -406q14 -11 8.5 -31t-29.5 -20h-113q-19 0 -40 16l-416 396v-373q0 -15 -12 -27t-27 -12h-64q-15 0 -27 12t-12 27z" />
-<glyph unicode="l" horiz-adv-x="436" d="M147 39v1356q0 15 12 27t27 12h64q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-64q-15 0 -27 12t-12 27z" />
-<glyph unicode="m" horiz-adv-x="1560" d="M145 39v741q0 15 12 27t27 12h39q27 0 33 -24l18 -64l11.5 11.5t33.5 26.5t54.5 33t74 26t93.5 12q180 0 262 -133l7 5q6 6 13 12t19.5 15l25 18t30 19.5t35 19t39 17t43 14.5t45.5 9.5t48 3.5q317 0 317 -369v-432q0 -15 -12 -27t-27 -12h-65q-15 0 -27 12t-12 27v432 q0 115 -47 173t-137 58q-128 0 -250 -114q10 -58 10 -117v-432q0 -15 -12 -27t-27 -12h-65q-15 0 -27 12t-12 27v432q0 231 -195 231q-41 0 -79.5 -12t-65.5 -29t-47.5 -34t-30.5 -29l-10 -12v-547q0 -15 -12 -27t-27 -12h-64q-15 0 -27 12t-12 27z" />
-<glyph unicode="n" horiz-adv-x="1013" d="M145 39v741q0 15 12 27t27 12h39q27 0 33 -24l18 -64q5 4 14 11.5t38 26.5t60.5 33t79 26t95.5 12q318 0 318 -369v-432q0 -15 -12 -27t-27 -12h-66q-15 0 -27 12t-12 27v432q0 115 -48 173t-136 58q-43 0 -86 -12t-74 -29t-55 -34t-36 -29l-13 -12v-547q0 -15 -12 -27 t-27 -12h-64q-15 0 -27 12t-12 27z" />
-<glyph unicode="o" d="M86 412q0 174 119.5 301t288.5 127q111 0 205 -58.5t148 -157t54 -212.5q0 -178 -119 -305t-288 -127q-111 0 -205.5 58.5t-148.5 158t-54 215.5zM227 412q0 -125 77.5 -212t189.5 -87t189 87t77 212q0 122 -77 207.5t-189 85.5t-189.5 -85.5t-77.5 -207.5z" />
-<glyph unicode="p" d="M147 -575v1355q0 15 12 27t27 12h43q23 0 33 -26l14 -39q4 3 11 9t30.5 21t49.5 26t66 20.5t81 9.5q165 0 276 -126.5t111 -305.5q0 -181 -112.5 -304.5t-280.5 -123.5q-38 0 -74.5 7t-61.5 16.5t-44.5 19.5t-29.5 17l-9 7v-622q0 -15 -12 -27t-27 -12h-64q-15 0 -27 12 t-12 27zM291 188q10 -8 27 -20t69 -31.5t102 -19.5q117 0 193 84.5t76 208.5q0 126 -70 213.5t-188 87.5q-37 0 -72.5 -10.5t-59 -25.5t-42 -29.5t-26.5 -25.5l-9 -10v-422z" />
-<glyph unicode="q" d="M86 408q0 179 111 305.5t276 126.5q65 0 124.5 -21.5t86.5 -42.5l27 -22l14 37q11 28 39 28h37q15 0 27 -12t12 -27v-1355q0 -15 -12 -27t-27 -12h-64q-15 0 -27 12t-12 27v626q-3 -3 -9.5 -7.5t-28.5 -17t-45.5 -22t-60.5 -17t-75 -7.5q-168 0 -280.5 123.5 t-112.5 304.5zM229 410q0 -124 76 -208.5t193 -84.5q50 0 99.5 16.5t74.5 33.5l24 17v426q-3 4 -9 11t-26.5 24.5t-43 30.5t-58 24t-72.5 11q-118 0 -188 -87.5t-70 -213.5z" />
-<glyph unicode="r" horiz-adv-x="684" d="M145 39v741q0 15 12 27t27 12h39q29 0 35 -28l16 -60q3 4 9 11.5t28.5 26.5t48.5 33t69 26t91 12q27 0 52 -3t50 -9t37 -21t5 -35l-25 -70q-12 -33 -49 -18q-36 16 -80 16t-83 -11.5t-63.5 -28.5t-42.5 -34t-26 -28l-8 -12v-547q0 -15 -12 -27t-27 -12h-64q-15 0 -27 12 t-12 27z" />
-<glyph unicode="s" horiz-adv-x="729" d="M92 627q0 35 14.5 70t43.5 68t81.5 54t120.5 21q72 0 132 -19.5t96 -44.5q14 -9 17.5 -27.5t-5.5 -35.5l-17 -33q-9 -17 -27.5 -21.5t-31.5 3.5q-88 49 -164 49q-62 0 -89 -25t-27 -57q0 -24 10 -43.5t36 -38t44 -28t61 -30.5q45 -22 69.5 -34.5t61.5 -34.5t57 -41 t41 -45t30 -56.5t9 -66.5q0 -93 -80 -162t-202 -69q-149 0 -267 92q-8 6 -11 19t1 24q5 7 16 27.5t13 23.5q8 12 23 14t32 -8q10 -8 27.5 -20t68.5 -32t97 -20q61 0 97 28t36 71q0 50 -38.5 81t-141.5 82q-49 24 -84 45.5t-72.5 54t-57.5 74t-20 91.5z" />
-<glyph unicode="t" horiz-adv-x="700" d="M55 735v45q0 17 11 28t28 11h105v228q0 15 12 26.5t27 11.5l65 5q15 0 26 -12t11 -27v-232h238q17 0 27.5 -11t10.5 -28v-45q0 -16 -10.5 -27.5t-27.5 -11.5h-238v-479q0 -59 15.5 -78.5t52.5 -19.5q62 0 149 45q25 9 32.5 6t16.5 -18l31 -52q10 -19 7 -29.5t-21 -21.5 q-33 -21 -103 -45t-133 -24q-59 0 -98 16.5t-58 49.5t-25.5 69.5t-6.5 89.5v491h-105q-17 0 -28 11.5t-11 27.5z" />
-<glyph unicode="u" horiz-adv-x="993" d="M135 350v430q0 15 12 27t27 12h66q15 0 27 -12t12 -27v-432q0 -115 48 -173t136 -58q44 0 85 12t68.5 29t49 34t31.5 29l10 12v547q0 15 11.5 27t26.5 12h64q15 0 27 -12t12 -27v-741q0 -15 -12 -27t-27 -12h-39q-16 0 -24 9t-13 26l-14 53l-11.5 -11.5t-33 -26 t-54.5 -33t-74 -26t-93 -11.5q-318 0 -318 370z" />
-<glyph unicode="v" horiz-adv-x="841" d="M32 805.5q8 13.5 31 13.5h64q26 0 37 -22l254 -586h2l270 586q11 22 35 22h53q23 0 31.5 -13.5t-0.5 -33.5l-350 -772q-8 -20 -35 -20h-10q-27 0 -35 20l-346 772q-9 20 -1 33.5z" />
-<glyph unicode="w" horiz-adv-x="1236" d="M68 772q-3 11 -3 19q0 28 33 28h64q30 0 37 -22l149 -541h2l232 563q8 21 34 21h11q27 0 35 -21l229 -565h2l147 543q3 9 13 15.5t22 6.5h64q33 0 33 -28q0 -8 -3 -19l-223 -772q-7 -20 -35 -20h-10q-27 0 -35 20l-250 614l-241 -614q-8 -20 -35 -20h-10q-28 0 -35 20z " />
-<glyph unicode="x" horiz-adv-x="854" d="M69 16.5q-7 16.5 7 36.5l268 365l-260 348q-15 20 -7 36.5t34 16.5h86q20 0 32 -16l195 -279h2l203 279q12 16 33 16h86q26 0 33.5 -16.5t-7.5 -36.5l-260 -346l262 -367q14 -20 6 -36.5t-32 -16.5h-76q-18 0 -31 18l-217 301h-2l-213 -303q-12 -16 -33 -16h-76 q-26 0 -33 16.5z" />
-<glyph unicode="y" horiz-adv-x="954" d="M28 806.5q8 12.5 31 12.5h91q23 0 34 -22l303 -627h2l287 627q11 22 35 22h78q23 0 32 -13.5t-1 -33.5l-629 -1362q-12 -24 -35 -24h-76q-24 0 -33.5 14.5t0.5 36.5l263 565l-381 772q-9 20 -1 32.5z" />
-<glyph unicode="z" horiz-adv-x="747" d="M74 39v20l401 625v6h-344q-15 0 -26 12t-11 27v51q0 17 11 28t26 11h514q24 0 35.5 -17.5t-0.5 -37.5l-391 -629v-6h315q17 0 28 -11t11 -28v-51q0 -16 -11 -27.5t-28 -11.5h-491q-15 0 -27 12t-12 27z" />
-<glyph unicode="{" horiz-adv-x="817" d="M51 379v63q0 12 9.5 20.5t21.5 10.5q45 7 93 52.5t48 107.5v330q0 107 32 193.5t83.5 141t119 90.5t134 51t133.5 15q17 0 29 -9t12 -26v-39q0 -14 -7.5 -25t-19.5 -12q-101 -15 -183.5 -61t-136.5 -129.5t-54 -189.5v-273q0 -72 -15.5 -124t-45 -82t-49.5 -42t-52 -26 v-15q32 -14 52 -26t49.5 -42t45 -82t15.5 -124v-272q0 -80 30.5 -148t83.5 -114t119 -76t141 -41q27 -3 27 -35v-41q0 -15 -12.5 -25t-28.5 -10q-67 0 -133.5 14.5t-134 51t-118.5 90.5t-83.5 140.5t-32.5 193.5v329q0 62 -48 107.5t-93 52.5q-12 1 -21.5 12t-9.5 23z" />
-<glyph unicode="|" horiz-adv-x="405" d="M158 -578v2096q0 17 11.5 27.5t27.5 10.5h14q15 0 26 -10.5t11 -27.5v-2096q0 -15 -12 -25.5t-27 -10.5h-12q-15 0 -27 10.5t-12 25.5z" />
-<glyph unicode="}" horiz-adv-x="817" d="M51 -559q0 32 27 35q101 15 184 61t137 129t54 189v272q0 59 12 105t27 72.5t41 48.5t41 29.5t40 18.5v15q-25 11 -40 18.5t-41 29.5t-41 48.5t-27 72.5t-12 105v273q0 80 -31 148t-84 114.5t-119 76.5t-141 41q-12 1 -19.5 12t-7.5 25v39q0 17 12 26t29 9 q67 0 133.5 -15t134 -51t119 -90.5t83.5 -141t32 -193.5v-330q0 -62 48 -107.5t93 -52.5q12 -2 21.5 -10.5t9.5 -20.5v-63q0 -12 -9.5 -23t-21.5 -12q-45 -7 -93 -52.5t-48 -107.5v-329q0 -107 -32.5 -193.5t-83.5 -140.5t-118.5 -90.5t-134 -51t-133.5 -14.5 q-16 0 -28.5 10t-12.5 25v41z" />
-<glyph unicode="~" horiz-adv-x="1138" d="M107 525.5q-1 14.5 8 25.5q4 8 12.5 20.5t36.5 45t57.5 57t75 45t90.5 20.5q44 0 88.5 -16.5t68.5 -31.5t64 -44q100 -69 150 -69q19 0 37 5t34 15.5t28 19.5t25.5 26t19.5 25t17.5 25t12.5 19q11 15 26 17.5t29 -9.5l43 -35q11 -9 12 -23.5t-8 -25.5q-4 -8 -12.5 -20.5 t-36.5 -45t-58 -57t-76.5 -45t-92.5 -20.5q-41 0 -85.5 16.5t-66 30t-61.5 41.5q-1 1 -23.5 17t-31.5 21t-29 16t-37 15t-35 4q-19 0 -36.5 -5t-33.5 -15.5t-27.5 -20t-25 -26t-19.5 -24.5t-17 -25t-13 -19q-11 -15 -26 -17.5t-29 9.5q-7 6 -21.5 17.5t-21.5 17.5 q-11 9 -12 23.5z" />
-<glyph unicode="&#xa1;" horiz-adv-x="468" d="M119 723q0 48 34 82.5t83 34.5q47 0 81.5 -35t34.5 -82q0 -49 -34 -83t-82 -34q-50 0 -83.5 34t-33.5 83zM145 -346l39 575q2 12 14 22.5t25 10.5h25q13 0 25 -10.5t14 -22.5l39 -571v-233q0 -15 -12 -27t-27 -12h-103q-15 0 -27 12t-12 27v229z" />
-<glyph unicode="&#xa2;" horiz-adv-x="874" d="M61 408q0 181 123.5 306.5t298.5 125.5q18 0 54 -4l22 84q5 15 18.5 22.5t28.5 3.5l15 -4q15 -3 22.5 -16.5t3.5 -30.5l-22 -82q87 -38 151 -117q10 -14 8 -30t-16 -27l-39 -33q-8 -7 -14.5 -10t-11 -3.5t-9.5 2t-7.5 4.5t-8 7.5t-8.5 7.5q-33 38 -82 62l-152 -559 q14 -2 43 -2q40 0 72.5 8.5t63 29.5t41.5 30.5t40 37.5q21 18 32 17.5t30 -13.5l22 -16q15 -11 19.5 -26.5t-4.5 -30.5q-48 -77 -130.5 -124.5t-183.5 -47.5q-47 0 -80 8l-53 -199q-3 -15 -17.5 -22.5t-29.5 -4.5l-12 5q-15 3 -23.5 16.5t-5.5 28.5l53 202 q-113 48 -182.5 154t-69.5 240zM209 410q0 -86 38 -156t103 -107l150 551q-11 2 -19 2q-115 0 -193.5 -83.5t-78.5 -206.5z" />
-<glyph unicode="&#xa3;" horiz-adv-x="1032" d="M121 641v14q0 15 11 27t26 12h65q-2 9 -20 70t-31.5 131.5t-13.5 138.5q0 190 122 305t306 115q178 0 342 -145q12 -9 13 -25.5t-9 -28.5l-43 -53q-31 -39 -60 -2q-5 5 -13.5 13t-35.5 28.5t-55 36t-68.5 28.5t-78.5 13q-120 0 -198.5 -79.5t-78.5 -207.5 q0 -70 15.5 -144t33.5 -129.5t19 -64.5h336q17 0 27.5 -11.5t10.5 -27.5v-16q0 -15 -10.5 -26t-27.5 -11h-314q11 -57 12 -137.5t-13 -174.5t-44 -159h512q15 0 26 -11t11 -28v-53q0 -15 -11 -27t-26 -12h-651q-15 0 -27 12t-12 27v37q132 250 80 526h-90q-15 0 -26 12 t-11 27z" />
-<glyph unicode="&#xa4;" horiz-adv-x="974" d="M156 427q0 17 10 28l84 84q-38 66 -38 141t38 141l-84 84q-10 11 -10 28t10 28l41 38q11 11 28 11t27 -11l84 -84q65 40 140.5 41t142.5 -38l86 86q11 10 26.5 9t26.5 -12l41 -40q11 -11 11 -27t-11 -27l-84 -84q40 -64 40 -142t-40 -144l84 -84q11 -11 11 -27t-11 -27 l-41 -41q-11 -11 -26.5 -11.5t-26.5 9.5l-86 86q-66 -38 -142.5 -38t-140.5 40l-84 -84q-10 -10 -27 -10t-28 10l-41 39q-10 11 -10 28zM340 680q0 -62 43 -105t104 -43t104.5 43t43.5 105q0 61 -43 104t-105 43q-61 0 -104 -42.5t-43 -104.5z" />
-<glyph unicode="&#xa5;" horiz-adv-x="1265" d="M55.5 1414q10.5 20 34.5 20h96q19 0 33 -19l414 -571l414 571q14 19 32 19h97q24 0 34 -20t-2 -40l-499 -682v-102h264q17 0 28 -11.5t11 -27.5v-16q0 -15 -11 -26t-28 -11h-264v-154h264q17 0 28 -11.5t11 -27.5v-16q0 -15 -11 -26t-28 -11h-264v-213q0 -15 -12 -27 t-27 -12h-80q-17 0 -28 11.5t-11 27.5v213h-268q-15 0 -26 12t-11 27v14q0 15 11 27t26 12h268v154h-268q-15 0 -26 12t-11 27v14q0 15 11 27t26 12h268v100l-494 684q-12 20 -1.5 40z" />
-<glyph unicode="&#xa6;" horiz-adv-x="745" d="M328 100q0 17 11.5 28t27.5 11h14q15 0 26 -11t11 -28v-678q0 -15 -12 -25.5t-27 -10.5h-12q-15 0 -27 10.5t-12 25.5v678zM328 842v676q0 17 11.5 27.5t27.5 10.5h14q15 0 26 -10.5t11 -27.5v-676q0 -15 -12 -26t-27 -11h-12q-15 0 -27 11t-12 26z" />
-<glyph unicode="&#xa7;" horiz-adv-x="1079" d="M82 -308q-1 15 12 32l41 51q30 38 62 6q12 -12 36 -31t72 -50.5t112 -53t126 -21.5q116 0 195 53t79 152q0 94 -87.5 170t-270.5 154q-175 73 -268 169.5t-93 229.5q0 49 17 94t41 74t48 51.5t41 32.5l17 10q-7 4 -18 12.5t-39 36.5t-50 60t-39.5 82.5t-17.5 103.5 q0 44 13.5 89.5t46.5 91.5t81.5 82t125 58.5t170.5 22.5q89 0 176.5 -26t130.5 -52l43 -26q8 -4 14 -12t9 -23t-9 -33l-31 -47q-24 -35 -67 -12l-11 6q-10 6 -19.5 12t-27.5 15t-35 17t-39.5 16.5t-44 14t-45.5 9.5t-47 4q-79 0 -137 -19.5t-88 -51.5t-43.5 -65.5 t-13.5 -68.5q0 -83 70.5 -148t205.5 -120q93 -39 154.5 -68.5t123.5 -68t97.5 -77.5t57.5 -89.5t22 -110.5q0 -48 -18 -95t-43.5 -79.5t-51 -58t-43.5 -37.5l-18 -13q7 -5 19 -13.5t42 -38.5t52.5 -63.5t41.5 -86.5t19 -109q0 -157 -125 -252.5t-317 -95.5 q-68 0 -135.5 15.5t-113.5 35.5t-89.5 46.5t-62 41t-32.5 27.5q-13 11 -18 17t-6 21zM250 559q0 -41 15.5 -75.5t38 -58.5t68 -51.5t83.5 -46t108.5 -51.5t120.5 -59q5 3 14 8t32 23t40.5 39t32 56.5t14.5 74.5q0 45 -21.5 82.5t-70.5 72.5t-109 64.5t-157 69.5 q-50 20 -86 38q-5 -2 -13.5 -6.5t-29.5 -20.5t-37 -35.5t-29.5 -52.5t-13.5 -71z" />
-<glyph unicode="&#xa8;" horiz-adv-x="847" d="M164 1294q0 41 28 70t68 29q41 0 69.5 -29t28.5 -70q0 -40 -28.5 -68t-69.5 -28q-40 0 -68 28t-28 68zM559 1294q0 41 28 70t68 29q41 0 70 -29t29 -70q0 -40 -29 -68t-70 -28q-40 0 -68 28t-28 68z" />
-<glyph unicode="&#xa9;" horiz-adv-x="1691" d="M111 717q0 200 98.5 369.5t267.5 268.5t369 99t369.5 -99t268.5 -268.5t99 -369.5t-99 -369t-268.5 -267.5t-369.5 -98.5t-369 98.5t-267.5 267.5t-98.5 369zM233 717q0 -124 48.5 -238t130.5 -196t196 -130.5t238 -48.5q125 0 238.5 48.5t195.5 131t130 195.5t48 238 q0 167 -81.5 308t-222.5 222.5t-308 81.5q-125 0 -238 -48t-195.5 -130t-131 -195.5t-48.5 -238.5zM481 713q0 161 112 273t271 112q136 0 236 -78q14 -12 15 -28.5t-11 -30.5l-29 -37q-18 -25 -55 -2q-70 47 -152 47q-104 0 -173.5 -73.5t-69.5 -176.5q0 -106 69 -178 t174 -72q79 0 146 45q39 23 59 -2l33 -39q11 -12 10.5 -28.5t-12.5 -28.5q-102 -86 -240 -86q-158 0 -270.5 112.5t-112.5 270.5z" />
-<glyph unicode="&#xaa;" horiz-adv-x="638" d="M72 1026q0 88 62.5 142.5t174.5 54.5q28 0 58.5 -5.5t47.5 -10.5l17 -5q0 90 -17 124t-75 34q-20 0 -40.5 -2t-35.5 -5t-33 -8t-26.5 -8t-23.5 -8t-17 -6q-10 -3 -19 4.5t-12 18.5l-10 36q-5 21 14 31q7 5 29.5 13.5t74 18t107.5 9.5q30 0 55 -5t43 -11.5t32 -21 t23 -25.5t15 -32.5t9.5 -34.5t5 -40t1.5 -40v-43v-6v-5v-6v-312q0 -12 -7.5 -20t-18.5 -8h-37q-18 0 -25 20l-12 43q-25 -23 -41.5 -36t-55 -28.5t-81.5 -15.5q-79 0 -130.5 55t-51.5 144zM164 1028q0 -44 29 -74t73 -30q48 0 93 24t69 53v115q-54 27 -125 27 q-59 0 -99 -32.5t-40 -82.5z" />
-<glyph unicode="&#xab;" horiz-adv-x="849" d="M84 397q-17 23 0 49l223 304q14 24 37 24h29q26 0 34.5 -19t-4.5 -44l-151 -285l145 -301q13 -25 4.5 -43.5t-34.5 -18.5h-39q-18 0 -31 17zM418 397q-17 23 0 49l223 304q14 24 37 24h29q26 0 34.5 -19t-4.5 -44l-151 -285l145 -301q12 -25 3.5 -43.5t-34.5 -18.5h-38 q-18 0 -31 17z" />
-<glyph unicode="&#xac;" horiz-adv-x="1064" d="M76 682v57q0 15 12 27t27 12h778q16 0 27.5 -12.5t11.5 -26.5v-417q0 -15 -12 -26t-27 -11h-57q-15 0 -27 11t-12 26v321h-682q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xad;" horiz-adv-x="710" d="M102 487v39q0 17 11 28t28 11h428q17 0 28 -11t11 -28v-39q0 -15 -11 -25.5t-28 -10.5h-428q-17 0 -28 10.5t-11 25.5z" />
-<glyph unicode="&#xae;" horiz-adv-x="1693" d="M111 717q0 200 98.5 369.5t267.5 268.5t369 99t369.5 -99t268.5 -268.5t99 -369.5t-99 -369t-268.5 -267.5t-369.5 -98.5t-369 98.5t-267.5 267.5t-98.5 369zM233 717q0 -124 48.5 -238t130.5 -196t196 -130.5t238 -48.5q125 0 238.5 48.5t195.5 131t130 195.5t48 238 q0 167 -81.5 308t-222.5 222.5t-308 81.5q-125 0 -238 -48t-195.5 -130t-131 -195.5t-48.5 -238.5zM590 383v672q0 16 11 27.5t28 11.5h291q103 0 177 -60.5t74 -169.5q0 -54 -17 -97t-44.5 -68t-53 -38.5t-50.5 -19.5l60.5 -121t61.5 -121q10 -19 -1 -37t-33 -18h-70 q-22 0 -37 29l-115 256h-151v-246q0 -16 -11 -27.5t-28 -11.5h-53q-17 0 -28 11.5t-11 27.5zM719 748h201q55 0 88.5 33.5t33.5 82.5q0 53 -33 85t-89 32h-201v-233z" />
-<glyph unicode="&#xaf;" horiz-adv-x="847" d="M123 1231v43q0 17 11 28t28 11h524q17 0 28 -11t11 -28v-43q0 -15 -11 -26t-28 -11h-524q-17 0 -28 11t-11 26z" />
-<glyph unicode="&#xb0;" horiz-adv-x="684" d="M66 1178q0 116 80 196t196 80q114 0 195 -80.5t81 -195.5t-81 -196t-195 -81q-115 0 -195.5 80.5t-80.5 196.5zM174 1178q0 -66 51 -117t117 -51q63 0 113.5 51t50.5 117q0 63 -50.5 113t-113.5 50q-66 0 -117 -50t-51 -113z" />
-<glyph unicode="&#xb1;" horiz-adv-x="1222" d="M182 164v57q0 15 12 27t27 12h780q15 0 26 -12t11 -27v-57q0 -15 -11 -27t-26 -12h-780q-15 0 -27 12t-12 27zM184 825v58q0 15 12 27t27 12h322v303q0 15 12 26t27 11h57q15 0 27 -11t12 -26v-303h324q15 0 25.5 -12t10.5 -27v-58q0 -15 -10.5 -27t-25.5 -12h-324v-239 q0 -15 -12 -26t-27 -11h-57q-15 0 -27 11t-12 26v239h-322q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xb2;" horiz-adv-x="628" d="M92 1051v28l260 273q35 38 50.5 63t15.5 51q0 37 -29.5 67t-87.5 30q-65 0 -127 -62q-12 -12 -24 0l-41 43q-13 13 0 23q3 4 9 10t26 22t41.5 28t54.5 22t67 10q106 0 163.5 -51.5t57.5 -130.5q0 -82 -100 -185l-166 -170h248q18 0 18 -20v-51q0 -19 -18 -19h-397 q-21 0 -21 19z" />
-<glyph unicode="&#xb3;" horiz-adv-x="610" d="M86 1096q-12 12 2 22l43 41q16 9 27 -2l4 -3q5 -4 10 -7t13 -8.5t16.5 -10t19.5 -9t22 -8t24 -5.5t26 -2q49 0 86 26t37 66q0 41 -38 69.5t-112 28.5h-63q-8 0 -14.5 5t-6.5 14v51q0 18 21 18h63q66 0 99.5 26t33.5 65q0 40 -33 66t-77 26q-66 0 -115 -49q-12 -12 -27 0 l-41 36q-6 4 -6 12t6 13q3 3 9 8.5t25.5 20t40.5 25t52.5 19.5t63.5 9q92 0 153.5 -47t61.5 -123q0 -49 -33 -88.5t-73 -54.5v-5q45 -17 84.5 -58t39.5 -95q0 -76 -64.5 -126t-168.5 -50q-134 0 -211 84z" />
-<glyph unicode="&#xb4;" horiz-adv-x="618" d="M148.5 1217q3.5 11 13.5 16l307 172q8 7 27 6.5t26 -12.5l37 -74q6 -12 3 -25.5t-15 -17.5l-330 -137q-22 -9 -31.5 -8.5t-15.5 12.5l-20 45q-5 12 -1.5 23z" />
-<glyph unicode="&#xb5;" horiz-adv-x="1034" d="M150 -575v1355q0 15 11.5 27t26.5 12h66q15 0 27 -12t12 -27v-432q0 -115 48 -173t136 -58q44 0 85 12t68.5 29t49 34t31.5 29l10 12v547q0 15 12 27t27 12h63q15 0 27 -12t12 -27v-741q0 -15 -12 -27t-27 -12h-39q-26 0 -36 35l-15 53l-11.5 -11.5t-33 -26t-54.5 -33 t-74 -26t-93 -11.5q-109 0 -176 40v-595q0 -15 -12 -27t-27 -12h-64q-15 0 -26.5 12t-11.5 27z" />
-<glyph unicode="&#xb6;" horiz-adv-x="1437" d="M51 1008q0 176 116 302t282 126l905 -2q15 0 27 -12t12 -27v-41q0 -17 -11.5 -28t-27.5 -11h-228v-1893q0 -15 -11 -26.5t-28 -11.5h-43q-15 0 -26.5 11.5t-11.5 26.5v1893h-320v-1893q0 -15 -12 -26.5t-27 -11.5h-41q-15 0 -27 11.5t-12 26.5v1156h-90 q-175 0 -300.5 125t-125.5 305z" />
-<glyph unicode="&#xb7;" horiz-adv-x="468" d="M117 535q0 49 34 82.5t82 33.5q50 0 83.5 -33.5t33.5 -82.5q0 -48 -34 -82.5t-83 -34.5q-47 0 -81.5 35t-34.5 82z" />
-<glyph unicode="&#xb8;" horiz-adv-x="505" d="M60.5 -431.5q0.5 15.5 11.5 23.5l28 23q11 8 25 8.5t22 -8.5q34 -37 84 -37q41 0 66 27t25 69q0 33 -15.5 57.5t-44.5 38.5t-53 20.5t-57 12.5q-35 7 -35 41v156h110v-109q97 -12 156 -67.5t59 -142.5q0 -89 -62 -151t-153 -62q-45 0 -86.5 19.5t-68.5 51.5 q-12 14 -11.5 29.5z" />
-<glyph unicode="&#xb9;" horiz-adv-x="389" d="M49 1501q-3 14 6 23l144 114h57q18 0 18 -18v-569q0 -8 -5.5 -13.5t-12.5 -5.5h-72q-9 0 -14.5 5.5t-5.5 13.5v430l-84 -23q-18 -4 -21 8z" />
-<glyph unicode="&#xba;" horiz-adv-x="663" d="M78 1128q0 153 66.5 238.5t187.5 85.5t187.5 -85.5t66.5 -238.5q0 -151 -66.5 -236t-187.5 -85t-187.5 85t-66.5 236zM190 1128q0 -107 37 -165t105 -58t104.5 58t36.5 165t-37 166.5t-104 59.5t-104.5 -59.5t-37.5 -166.5z" />
-<glyph unicode="&#xbb;" horiz-adv-x="849" d="M106.5 755q8.5 19 34.5 19h29q23 0 37 -24l223 -304q17 -26 0 -49l-213 -317q-13 -17 -31 -17h-39q-26 0 -34.5 18.5t4.5 43.5l145 301l-151 285q-13 25 -4.5 44zM440.5 755q8.5 19 34.5 19h29q23 0 37 -24l223 -304q17 -26 0 -49l-213 -317q-13 -17 -31 -17h-39 q-26 0 -34.5 18.5t4.5 43.5l145 301l-152 285q-12 25 -3.5 44z" />
-<glyph unicode="&#xbc;" horiz-adv-x="1296" d="M78 1296q-3 14 6 23l143 115h58q18 0 18 -19v-569q0 -8 -5.5 -13.5t-12.5 -5.5h-72q-9 0 -14.5 5.5t-5.5 13.5v430l-84 -23q-18 -4 -21 9zM184 55l703 1358q12 21 35 21h32q23 0 34.5 -18t0.5 -38l-706 -1358q-10 -20 -35 -20h-29q-23 0 -34 17.5t-1 37.5zM649 139v60 l352 401q6 6 17 6h43q8 0 14 -5.5t6 -12.5v-379h84q7 0 13 -5t6 -11v-54q0 -6 -6 -11t-13 -5h-84v-105q0 -7 -6 -12.5t-14 -5.5h-66q-8 0 -14 5.5t-6 12.5v103h-307q-8 0 -13.5 5.5t-5.5 12.5zM762 211h217v242z" />
-<glyph unicode="&#xbd;" horiz-adv-x="1282" d="M78 1296q-3 14 6 23l143 115h58q18 0 18 -19v-569q0 -8 -5.5 -13.5t-12.5 -5.5h-72q-9 0 -14.5 5.5t-5.5 13.5v430l-84 -23q-18 -4 -21 9zM184 55l703 1358q12 21 35 21h32q23 0 34.5 -18t0.5 -38l-706 -1358q-10 -20 -35 -20h-29q-23 0 -34 17.5t-1 37.5zM711 18v29 l260 272q65 71 65 115q0 37 -29 66.5t-87 29.5q-66 0 -127 -61q-13 -13 -25 0l-41 43q-13 13 0 23q3 4 9 10t26 22t41.5 28t55 22t67.5 10q106 0 163.5 -52t57.5 -131q0 -81 -100 -184l-166 -170h247q19 0 19 -20v-52q0 -18 -19 -18h-397q-20 0 -20 18z" />
-<glyph unicode="&#xbe;" horiz-adv-x="1388" d="M92 891q-12 12 2 22l43 41q16 9 27 -2l4 -4l10 -6t13 -8.5t16.5 -10t19.5 -9t22 -8t24 -5.5t26 -2q49 0 86 26t37 66q0 42 -38 70.5t-112 28.5h-63q-21 0 -21 18v51q0 19 21 19h63q66 0 100 25.5t34 64.5q0 40 -33.5 66t-77.5 26q-66 0 -115 -49q-12 -12 -26 0l-41 37 q-6 4 -6 12t6 12q3 3 9 8.5t25.5 20t40 25t52 19.5t63.5 9q92 0 153.5 -47t61.5 -123q0 -49 -33 -88.5t-73 -54.5v-4q45 -17 85 -58.5t40 -95.5q0 -76 -65 -126t-169 -50q-134 0 -211 84zM276 55l703 1358q12 21 35 21h33q23 0 34 -18t0 -38l-706 -1358q-10 -20 -35 -20h-29 q-23 0 -34 17.5t-1 37.5zM741 139v60l353 401q6 6 16 6h43q8 0 14.5 -5.5t6.5 -12.5v-379h83q7 0 13 -5t6 -11v-54q0 -6 -6 -11t-13 -5h-83v-105q0 -7 -6.5 -12.5t-14.5 -5.5h-66q-8 0 -14 5.5t-6 12.5v103h-307q-8 0 -13.5 5.5t-5.5 12.5zM854 211h217v242z" />
-<glyph unicode="&#xbf;" horiz-adv-x="499" d="M-133 -322q0 54 18 100.5t46.5 79t62.5 60.5t68.5 52.5t63 48.5t46.5 54t18 64v84q0 20 13 30.5t30 10.5h56q16 0 27.5 -11t11.5 -28v-86q0 -51 -17 -93t-44 -70.5t-60 -53t-66 -48.5t-60 -50.5t-44 -64.5t-17 -85q0 -76 53.5 -128t149.5 -52q27 0 51.5 3t46.5 10 t39.5 13t36 18.5t29 18.5t26.5 21t20.5 19.5t19.5 20.5l14 15q26 26 53 2l39 -34q24 -21 0 -54q-5 -7 -14.5 -19.5t-43.5 -43.5t-73.5 -54.5t-105.5 -43t-138 -19.5q-160 0 -258 86t-98 227zM147 723q0 48 34 82.5t83 34.5q47 0 82 -35t35 -82q0 -49 -34.5 -83t-82.5 -34 q-50 0 -83.5 34t-33.5 83z" />
-<glyph unicode="&#xc0;" horiz-adv-x="1357" d="M12 53l623 1379q11 22 35 22h20q24 0 35 -22l618 -1379q9 -21 -1 -37t-33 -16h-82q-26 0 -35 23l-152 337h-727l-149 -337q-9 -23 -35 -23h-82q-23 0 -33.5 16.5t-1.5 36.5zM371 487h614q-50 111 -149.5 336t-149.5 336h-16zM472 1754.5q-3 13.5 3 25.5l37 73q7 12 26 13 t27 -6l307 -172q10 -5 14 -16t-1 -23l-21 -45q-6 -12 -15.5 -13t-31.5 8l-330 138q-12 4 -15 17.5z" />
-<glyph unicode="&#xc1;" horiz-adv-x="1357" d="M12 53l623 1379q11 22 35 22h20q24 0 35 -22l618 -1379q9 -21 -1 -37t-33 -16h-82q-26 0 -35 23l-152 337h-727l-149 -337q-9 -23 -35 -23h-82q-23 0 -33.5 16.5t-1.5 36.5zM371 487h614q-50 111 -149.5 336t-149.5 336h-16zM471.5 1672q3.5 11 13.5 16l308 172q8 7 27 6 t26 -13l37 -73q6 -12 2.5 -25.5t-15.5 -17.5l-329 -138q-22 -9 -31.5 -8t-15.5 13l-21 45q-5 12 -1.5 23z" />
-<glyph unicode="&#xc2;" horiz-adv-x="1357" d="M12 53l623 1379q11 22 35 22h20q24 0 35 -22l618 -1379q9 -21 -1 -37t-33 -16h-82q-26 0 -35 23l-152 337h-727l-149 -337q-9 -23 -35 -23h-82q-23 0 -33.5 16.5t-1.5 36.5zM371 487h614q-50 111 -149.5 336t-149.5 336h-16zM393.5 1645.5q4.5 10.5 14.5 17.5l245 192 q12 9 27 9t27 -9l245 -192q10 -7 14.5 -17.5t-1.5 -21.5q-3 -4 -10.5 -16.5t-12.5 -19t-13.5 -13t-18 -5.5t-21.5 9l-209 143l-209 -139q-30 -19 -47 4l-29 37q-6 11 -1.5 21.5z" />
-<glyph unicode="&#xc3;" horiz-adv-x="1357" d="M12 53l623 1379q11 22 35 22h20q24 0 35 -22l618 -1379q9 -21 -1 -37t-33 -16h-82q-26 0 -35 23l-152 337h-727l-149 -337q-9 -23 -35 -23h-82q-23 0 -33.5 16.5t-1.5 36.5zM371 487h614q-50 111 -149.5 336t-149.5 336h-16zM379 1692q2 4 11 25t16 36.5t23 38t33.5 37 t45 25t59.5 10.5q34 0 64 -15.5t51 -38t39 -45t36.5 -38t35.5 -15.5q62 0 92 105q10 32 47 16l33 -16q6 -3 9.5 -7.5t4.5 -8.5t0.5 -10.5t-1 -9.5t-3 -10t-2.5 -8q-56 -166 -182 -166q-38 0 -74.5 24t-59.5 53t-48.5 53t-43.5 24q-19 0 -34.5 -9t-26.5 -26.5t-16.5 -31.5 t-12.5 -35q-5 -17 -17.5 -23.5t-33.5 2.5l-37 19q-22 11 -8 45z" />
-<glyph unicode="&#xc4;" horiz-adv-x="1357" d="M12 53l623 1379q11 22 35 22h20q24 0 35 -22l618 -1379q9 -21 -1 -37t-33 -16h-82q-26 0 -35 23l-152 337h-727l-149 -337q-9 -23 -35 -23h-82q-23 0 -33.5 16.5t-1.5 36.5zM365 1718q0 41 28 70t68 29q41 0 69.5 -29t28.5 -70q0 -40 -28.5 -68t-69.5 -28q-40 0 -68 28 t-28 68zM371 487h614q-50 111 -149.5 336t-149.5 336h-16zM797 1718q0 41 28 70t68 29q41 0 69.5 -29t28.5 -70q0 -40 -28.5 -68t-69.5 -28q-40 0 -68 28t-28 68z" />
-<glyph unicode="&#xc5;" horiz-adv-x="1357" d="M12 53l623 1379q11 22 35 22h20q24 0 35 -22l618 -1379q9 -21 -1 -37t-33 -16h-82q-26 0 -35 23l-152 337h-727l-149 -337q-9 -23 -35 -23h-82q-23 0 -33.5 16.5t-1.5 36.5zM371 487h614q-50 111 -149.5 336t-149.5 336h-16zM455 1776q0 94 64.5 158.5t158.5 64.5 q93 0 158 -65t65 -158q0 -94 -65.5 -159t-157.5 -65q-94 0 -158.5 65t-64.5 159zM553 1776q0 -50 37.5 -87.5t87.5 -37.5q49 0 85 37.5t36 87.5q0 49 -35.5 84.5t-85.5 35.5t-87.5 -35.5t-37.5 -84.5z" />
-<glyph unicode="&#xc6;" horiz-adv-x="1837" d="M-17.5 16.5q-6.5 16.5 5.5 36.5l821 1317q2 3 7.5 11.5t7 11t6.5 9t7 8.5l7 7t8.5 6.5t9 4.5t10.5 3.5t12 1.5t15 1h780q17 0 28 -11.5t11 -27.5v-60q0 -16 -11 -27.5t-28 -11.5h-700v-499h600q15 0 27 -12t12 -27v-60q0 -17 -11.5 -28t-27.5 -11h-600v-522h700 q17 0 28 -11.5t11 -27.5v-59q0 -16 -11 -27.5t-28 -11.5h-807q-17 0 -27.5 11.5t-10.5 27.5v321h-486l-213 -337q-18 -23 -39 -23h-84q-23 0 -29.5 16.5zM422 487h412v672z" />
-<glyph unicode="&#xc7;" horiz-adv-x="1452" d="M106 715q0 202 99 372t269 268.5t372 98.5q149 0 267 -48t228 -142q12 -12 13 -29t-11 -29l-55 -55q-23 -28 -53 2q-81 71 -185 112.5t-206 41.5q-119 0 -225.5 -48t-182 -128t-120 -188.5t-44.5 -225.5q0 -156 74.5 -291t207 -216t290.5 -81q64 0 119 11.5t104.5 36 t83.5 46.5t84 60q26 21 49 6l62 -56q11 -10 9.5 -27t-12.5 -28q-204 -198 -497 -198v-89q97 -12 156 -67.5t59 -142.5q0 -89 -62 -151t-153 -62q-45 0 -87 19.5t-69 51.5q-12 14 -11.5 29.5t11.5 23.5l29 23q11 8 25 8.5t22 -8.5q34 -37 84 -37q41 0 65.5 27t24.5 69 q0 33 -15.5 57.5t-44.5 38.5t-53 20.5t-57 12.5q-35 7 -35 41v144q-176 25 -320 126.5t-226.5 259.5t-82.5 341z" />
-<glyph unicode="&#xc8;" horiz-adv-x="1212" d="M209 39v1356q0 16 11 27.5t28 11.5h807q17 0 28 -11.5t11 -27.5v-60q0 -16 -11 -27.5t-28 -11.5h-688v-499h587q15 0 27 -12t12 -27v-60q0 -17 -11.5 -28t-27.5 -11h-587v-522h688q17 0 28 -11.5t11 -27.5v-59q0 -16 -11 -27.5t-28 -11.5h-807q-17 0 -28 11.5t-11 27.5z M462 1754.5q-3 13.5 3 25.5l37 73q7 12 26 13t27 -6l307 -172q10 -5 13.5 -16t-1.5 -23l-20 -45q-6 -12 -15.5 -13t-31.5 8l-330 138q-12 4 -15 17.5z" />
-<glyph unicode="&#xc9;" horiz-adv-x="1212" d="M209 39v1356q0 16 11 27.5t28 11.5h807q17 0 28 -11.5t11 -27.5v-60q0 -16 -11 -27.5t-28 -11.5h-688v-499h587q15 0 27 -12t12 -27v-60q0 -17 -11.5 -28t-27.5 -11h-587v-522h688q17 0 28 -11.5t11 -27.5v-59q0 -16 -11 -27.5t-28 -11.5h-807q-17 0 -28 11.5t-11 27.5z M463.5 1672q3.5 11 13.5 16l307 172q8 7 27.5 6t26.5 -13l36 -73q6 -12 3 -25.5t-15 -17.5l-330 -138q-22 -9 -31.5 -8t-15.5 13l-20 45q-5 12 -1.5 23z" />
-<glyph unicode="&#xca;" horiz-adv-x="1212" d="M209 39v1356q0 16 11 27.5t28 11.5h807q17 0 28 -11.5t11 -27.5v-60q0 -16 -11 -27.5t-28 -11.5h-688v-499h587q15 0 27 -12t12 -27v-60q0 -17 -11.5 -28t-27.5 -11h-587v-522h688q17 0 28 -11.5t11 -27.5v-59q0 -16 -11 -27.5t-28 -11.5h-807q-17 0 -28 11.5t-11 27.5z M363 1645.5q4 10.5 14 17.5l246 192q12 9 26 9q15 0 27 -9l246 -192q10 -7 14 -17.5t-2 -21.5q-3 -4 -10.5 -16.5t-12.5 -19t-13.5 -13t-18 -5.5t-21.5 9l-209 143l-209 -139q-30 -19 -47 4l-28 37q-6 11 -2 21.5z" />
-<glyph unicode="&#xcb;" horiz-adv-x="1212" d="M209 39v1356q0 16 11 27.5t28 11.5h807q17 0 28 -11.5t11 -27.5v-60q0 -16 -11 -27.5t-28 -11.5h-688v-499h587q15 0 27 -12t12 -27v-60q0 -17 -11.5 -28t-27.5 -11h-587v-522h688q17 0 28 -11.5t11 -27.5v-59q0 -16 -11 -27.5t-28 -11.5h-807q-17 0 -28 11.5t-11 27.5z M338 1718q0 41 28 70t68 29q41 0 69.5 -29t28.5 -70q0 -40 -28.5 -68t-69.5 -28q-40 0 -68 28t-28 68zM770 1718q0 41 28 70t68 29q41 0 70 -29t29 -70q0 -40 -29 -68t-70 -28q-40 0 -68 28t-28 68z" />
-<glyph unicode="&#xcc;" horiz-adv-x="577" d="M81 1754.5q-3 13.5 3 25.5l37 73q7 12 26 13t27 -6l307 -172q10 -5 14 -16t-1 -23l-21 -45q-6 -12 -15.5 -13t-31.5 8l-330 138q-12 4 -15 17.5zM209 39v1356q0 15 12 27t27 12h82q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-82q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xcd;" horiz-adv-x="577" d="M82.5 1672q3.5 11 13.5 16l307 172q8 7 27.5 6t26.5 -13l37 -73q6 -12 2.5 -25.5t-15.5 -17.5l-329 -138q-38 -16 -48 5l-20 45q-5 12 -1.5 23zM209 39v1356q0 15 12 27t27 12h82q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-82q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xce;" horiz-adv-x="577" d="M2 1645.5q4 10.5 14 17.5l246 192q12 9 27 9q14 0 26 -9l246 -192q10 -7 14 -17.5t-2 -21.5q-3 -5 -10.5 -17t-12.5 -18.5t-13 -13t-17.5 -5.5t-21.5 9l-209 143l-209 -139q-30 -19 -47 4l-29 37q-6 11 -2 21.5zM209 39v1356q0 15 12 27t27 12h82q15 0 27 -12t12 -27 v-1356q0 -15 -12 -27t-27 -12h-82q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xcf;" horiz-adv-x="577" d="M-23 1718q0 41 28.5 70t68.5 29q41 0 69.5 -29t28.5 -70q0 -40 -28.5 -68t-69.5 -28q-40 0 -68.5 28t-28.5 68zM209 39v1356q0 15 12 27t27 12h82q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-82q-15 0 -27 12t-12 27zM410 1718q0 41 28 70t68 29q41 0 69.5 -29 t28.5 -70q0 -40 -28.5 -68t-69.5 -28q-40 0 -68 28t-28 68z" />
-<glyph unicode="&#xd0;" horiz-adv-x="1538" d="M121 702v15q0 15 11 27t26 12h59v639q0 15 11 27t26 12h459q145 0 278.5 -57t230 -153t153.5 -228t57 -277q0 -117 -36.5 -227t-103 -198t-155 -154.5t-198 -103t-226.5 -36.5h-459q-15 0 -26 12t-11 27v625h-59q-15 0 -26 11.5t-11 26.5zM373 141h307q166 0 298.5 73.5 t207 205.5t74.5 299q0 251 -163.5 413t-416.5 162h-307v-538h432q17 0 28 -11.5t11 -27.5v-17q0 -15 -11 -25.5t-28 -10.5h-432v-523z" />
-<glyph unicode="&#xd1;" horiz-adv-x="1585" d="M209 39v1378q0 15 12 26t27 11h51l924 -1151h4v1092q0 16 11 27.5t28 11.5h71q15 0 27 -12t12 -27v-1379q0 -15 -12 -25.5t-27 -10.5h-37l-940 1173h-2v-1114q0 -16 -11 -27.5t-28 -11.5h-71q-15 0 -27 12t-12 27zM516 1692q2 3 11 25t16 37t23.5 37.5t34 36.5t45 25 t59.5 11q42 0 78 -24t57 -52t45.5 -52t44.5 -24q62 0 92 105q10 32 47 16l33 -16q6 -3 9.5 -7.5t4.5 -8.5t0.5 -10.5t-1 -9.5t-3 -10t-2.5 -8q-56 -166 -182 -166q-38 0 -74.5 24t-59.5 53t-48.5 53t-43.5 24q-19 0 -34.5 -9t-26.5 -26.5t-16.5 -31.5t-12.5 -35 q-5 -17 -17.5 -23.5t-33.5 2.5l-37 19q-22 11 -8 45z" />
-<glyph unicode="&#xd2;" horiz-adv-x="1681" d="M104 715q0 151 58 288t156 236t234.5 157t287.5 58t287.5 -58t235 -157t156.5 -236t58 -288t-58 -287.5t-156.5 -234.5t-235 -155.5t-287.5 -57.5q-202 0 -371 97.5t-267 266.5t-98 371zM248 715q0 -160 79.5 -296.5t216 -216t296.5 -79.5t297 79.5t217 216t80 296.5 t-80 297.5t-217 218t-297 80.5t-296.5 -80.5t-216 -218t-79.5 -297.5zM652.5 1754.5q-3.5 13.5 2.5 25.5l37 73q7 12 26 13t27 -6l308 -172q10 -5 13.5 -16t-1.5 -23l-21 -45q-6 -12 -15.5 -13t-31.5 8l-329 138q-12 4 -15.5 17.5z" />
-<glyph unicode="&#xd3;" horiz-adv-x="1681" d="M104 715q0 151 58 288t156 236t234.5 157t287.5 58t287.5 -58t235 -157t156.5 -236t58 -288t-58 -287.5t-156.5 -234.5t-235 -155.5t-287.5 -57.5q-202 0 -371 97.5t-267 266.5t-98 371zM248 715q0 -160 79.5 -296.5t216 -216t296.5 -79.5t297 79.5t217 216t80 296.5 t-80 297.5t-217 218t-297 80.5t-296.5 -80.5t-216 -218t-79.5 -297.5zM654 1672q4 11 14 16l307 172q8 7 27 6t26 -13l37 -73q6 -12 3 -25.5t-15 -17.5l-330 -138q-22 -9 -31.5 -8t-15.5 13l-21 45q-5 12 -1 23z" />
-<glyph unicode="&#xd4;" horiz-adv-x="1681" d="M104 715q0 151 58 288t156 236t234.5 157t287.5 58t287.5 -58t235 -157t156.5 -236t58 -288t-58 -287.5t-156.5 -234.5t-235 -155.5t-287.5 -57.5q-202 0 -371 97.5t-267 266.5t-98 371zM248 715q0 -160 79.5 -296.5t216 -216t296.5 -79.5t297 79.5t217 216t80 296.5 t-80 297.5t-217 218t-297 80.5t-296.5 -80.5t-216 -218t-79.5 -297.5zM553 1645.5q4 10.5 14 17.5l246 192q12 9 27 9q14 0 26 -9l246 -192q10 -7 14 -17.5t-2 -21.5q-3 -5 -10.5 -17t-12.5 -18.5t-13 -13t-17.5 -5.5t-21.5 9l-209 143l-209 -139q-30 -19 -47 4l-29 37 q-6 11 -2 21.5z" />
-<glyph unicode="&#xd5;" horiz-adv-x="1681" d="M104 715q0 151 58 288t156 236t234.5 157t287.5 58t287.5 -58t235 -157t156.5 -236t58 -288t-58 -287.5t-156.5 -234.5t-235 -155.5t-287.5 -57.5q-202 0 -371 97.5t-267 266.5t-98 371zM248 715q0 -160 79.5 -296.5t216 -216t296.5 -79.5t297 79.5t217 216t80 296.5 t-80 297.5t-217 218t-297 80.5t-296.5 -80.5t-216 -218t-79.5 -297.5zM539 1692q2 4 11 25t16 36.5t23 38t33.5 37t45 25t59.5 10.5q42 0 78 -24t57 -52t45.5 -52t44.5 -24q62 0 92 105q10 33 48 16l32 -16q5 -2 8.5 -5.5t5 -8t2 -8t-0.5 -9.5t-1.5 -8.5t-2.5 -8t-2 -6.5 q-9 -27 -21.5 -51.5t-34 -52.5t-54.5 -45t-73 -17q-38 0 -74.5 24t-59 53t-48 53t-43.5 24q-19 0 -34.5 -9t-26.5 -26.5t-16.5 -31.5t-12.5 -35q-5 -17 -17.5 -23.5t-33.5 2.5l-37 19q-22 11 -8 45z" />
-<glyph unicode="&#xd6;" horiz-adv-x="1681" d="M104 715q0 151 58 288t156 236t234.5 157t287.5 58t287.5 -58t235 -157t156.5 -236t58 -288t-58 -287.5t-156.5 -234.5t-235 -155.5t-287.5 -57.5q-202 0 -371 97.5t-267 266.5t-98 371zM248 715q0 -160 79.5 -296.5t216 -216t296.5 -79.5t297 79.5t217 216t80 296.5 t-80 297.5t-217 218t-297 80.5t-296.5 -80.5t-216 -218t-79.5 -297.5zM528 1718q0 41 28.5 70t68.5 29q41 0 69.5 -29t28.5 -70q0 -40 -28.5 -68t-69.5 -28q-40 0 -68.5 28t-28.5 68zM961 1718q0 41 28 70t68 29q41 0 69.5 -29t28.5 -70q0 -40 -28.5 -68t-69.5 -28 q-40 0 -68 28t-28 68z" />
-<glyph unicode="&#xd7;" horiz-adv-x="985" d="M160 456q0 16 10 27l227 228l-227 227q-10 10 -10 27t10 28l39 41q11 10 28 10t27 -10l228 -227l229 229q11 10 26.5 9.5t26.5 -11.5l41 -41q11 -11 11.5 -26.5t-9.5 -26.5l-229 -229l229 -228q10 -12 9.5 -28t-11.5 -27l-41 -39q-11 -11 -26.5 -11.5t-26.5 9.5l-229 229 l-228 -227q-10 -11 -26 -11t-27 11l-41 41q-10 10 -10 26z" />
-<glyph unicode="&#xd8;" horiz-adv-x="1681" d="M104 715q0 151 58 288t156 236t234.5 157t287.5 58q138 0 264.5 -49t226.5 -137l129 129q10 11 26 11t27 -11l11 -11q10 -10 10 -26t-10 -27l-129 -129q86 -100 134 -226t48 -263q0 -151 -58 -287.5t-156.5 -234.5t-235 -155.5t-287.5 -57.5q-139 0 -264.5 47t-223.5 133 l-125 -125q-11 -10 -26.5 -9.5t-26.5 11.5l-8 8q-11 11 -11.5 26.5t9.5 26.5l125 125q-185 211 -185 492zM248 715q0 -219 145 -387l836 837q-169 146 -389 146q-160 0 -296.5 -80.5t-216 -218t-79.5 -297.5zM457 264q78 -67 177 -104t206 -37q160 0 297 79.5t217 216 t80 296.5q0 108 -38 208t-106 177z" />
-<glyph unicode="&#xd9;" horiz-adv-x="1466" d="M190 528v867q0 15 12 27t27 12h78q17 0 28 -11.5t11 -27.5v-854q0 -180 104.5 -298t280.5 -118q178 0 283.5 116.5t105.5 295.5v858q0 16 11 27.5t28 11.5h78q15 0 27 -12t12 -27v-867q0 -236 -152.5 -392t-392.5 -156q-158 0 -282 72t-191.5 196.5t-67.5 279.5z M521.5 1754.5q-3.5 13.5 2.5 25.5l37 73q7 12 26 13t27 -6l308 -172q10 -5 13.5 -16t-1.5 -23l-21 -45q-6 -12 -15.5 -13t-31.5 8l-329 138q-12 4 -15.5 17.5z" />
-<glyph unicode="&#xda;" horiz-adv-x="1466" d="M190 528v867q0 15 12 27t27 12h78q17 0 28 -11.5t11 -27.5v-854q0 -180 104.5 -298t280.5 -118q178 0 283.5 116.5t105.5 295.5v858q0 16 11 27.5t28 11.5h78q15 0 27 -12t12 -27v-867q0 -236 -152.5 -392t-392.5 -156q-158 0 -282 72t-191.5 196.5t-67.5 279.5z M523 1672q4 11 14 16l307 172q8 7 27 6t26 -13l37 -73q6 -12 3 -25.5t-15 -17.5l-330 -138q-22 -9 -31.5 -8t-15.5 13l-21 45q-5 12 -1 23z" />
-<glyph unicode="&#xdb;" horiz-adv-x="1466" d="M190 528v867q0 15 12 27t27 12h78q17 0 28 -11.5t11 -27.5v-854q0 -180 104.5 -298t280.5 -118q178 0 283.5 116.5t105.5 295.5v858q0 16 11 27.5t28 11.5h78q15 0 27 -12t12 -27v-867q0 -236 -152.5 -392t-392.5 -156q-158 0 -282 72t-191.5 196.5t-67.5 279.5z M436.5 1645.5q4.5 10.5 14.5 17.5l245 192q12 9 27 9t27 -9l245 -192q10 -7 14.5 -17.5t-1.5 -21.5q-3 -4 -10.5 -16.5t-12.5 -19t-13.5 -13t-18 -5.5t-21.5 9l-209 143l-209 -139q-30 -19 -47 4l-29 37q-6 11 -1.5 21.5z" />
-<glyph unicode="&#xdc;" horiz-adv-x="1466" d="M190 528v867q0 15 12 27t27 12h78q17 0 28 -11.5t11 -27.5v-854q0 -180 104.5 -298t280.5 -118q178 0 283.5 116.5t105.5 295.5v858q0 16 11 27.5t28 11.5h78q15 0 27 -12t12 -27v-867q0 -236 -152.5 -392t-392.5 -156q-158 0 -282 72t-191.5 196.5t-67.5 279.5z M418 1718q0 41 28 70t68 29q41 0 69.5 -29t28.5 -70q0 -40 -28.5 -68t-69.5 -28q-40 0 -68 28t-28 68zM850 1718q0 41 28 70t68 29q41 0 69.5 -29t28.5 -70q0 -40 -28.5 -68t-69.5 -28q-40 0 -68 28t-28 68z" />
-<glyph unicode="&#xdd;" horiz-adv-x="1157" d="M2.5 1414q10.5 20 34.5 20h96q19 0 33 -19l414 -571l413 571q14 19 33 19h96q24 0 34.5 -20t-1.5 -40l-500 -682v-653q0 -15 -12 -27t-27 -12h-79q-17 0 -28 11.5t-11 27.5v651l-494 684q-12 20 -1.5 40zM373.5 1672q3.5 11 13.5 16l307 172q8 7 27.5 6t26.5 -13l36 -73 q6 -12 3 -25.5t-15 -17.5l-330 -138q-22 -9 -31.5 -8t-15.5 13l-20 45q-5 12 -1.5 23z" />
-<glyph unicode="&#xde;" horiz-adv-x="1222" d="M209 39v1354q0 16 11 28.5t28 12.5h78q15 0 27 -12t12 -27v-219h335q189 1 324 -133t135 -320q0 -190 -134.5 -325.5t-322.5 -135.5h-337v-223q0 -15 -12 -27t-27 -12h-78q-17 0 -28 11.5t-11 27.5zM365 414h325q127 0 219 91t92 222q0 123 -92 208t-219 85h-325v-606z " />
-<glyph unicode="&#xdf;" horiz-adv-x="1107" d="M147 39v803q0 303 110 457.5t321 154.5q68 0 128 -17.5t109.5 -53.5t78 -97t28.5 -141q0 -67 -28.5 -136.5t-63 -116t-63 -94.5t-28.5 -77q0 -22 31 -53.5t74.5 -69t87.5 -82.5t75 -109.5t31 -134.5q0 -75 -28 -132.5t-76.5 -91.5t-107 -51t-124.5 -17q-62 0 -118.5 13.5 t-79.5 24.5q-12 5 -18.5 9.5t-11.5 15t-1 23.5l16 61q9 43 43 25q86 -48 170 -48q85 0 136 47t51 123q0 50 -32 99t-77.5 90t-90.5 80.5t-77 84t-32 87.5q0 42 30.5 101.5t67.5 110.5t67.5 110.5t30.5 101.5q0 88 -61.5 138t-141.5 50q-282 0 -282 -487v-801q0 -15 -12 -27 t-27 -12h-66q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xe0;" horiz-adv-x="858" d="M86 248q0 120 87 196t241 76q39 0 82.5 -6.5t67.5 -13.5l24 -6q2 122 -24 171.5t-109 49.5q-127 0 -246 -45q-29 -11 -39 20l-16 51q-10 31 22 45q13 6 44.5 17t101.5 24t139 13q151 0 205.5 -79t54.5 -267v-455q0 -15 -12 -27t-27 -12h-39q-16 0 -23 7.5t-12 23.5 l-16 55q-106 -106 -254 -106q-109 0 -180.5 73.5t-71.5 194.5zM217 248q0 -63 39 -104.5t104 -41.5q71 0 133.5 35.5t92.5 79.5v162q-59 33 -172 33q-89 0 -143 -43t-54 -121zM247 1299.5q-3 13.5 3 25.5l37 74q7 12 26 12.5t27 -6.5l307 -172q10 -5 13.5 -16t-1.5 -23 l-20 -45q-6 -12 -15.5 -12.5t-31.5 8.5l-330 137q-12 4 -15 17.5z" />
-<glyph unicode="&#xe1;" horiz-adv-x="858" d="M86 248q0 120 87 196t241 76q39 0 82.5 -6.5t67.5 -13.5l24 -6q2 122 -24 171.5t-109 49.5q-127 0 -246 -45q-29 -11 -39 20l-16 51q-10 31 22 45q13 6 44.5 17t101.5 24t139 13q151 0 205.5 -79t54.5 -267v-455q0 -15 -12 -27t-27 -12h-39q-16 0 -23 7.5t-12 23.5 l-16 55q-106 -106 -254 -106q-109 0 -180.5 73.5t-71.5 194.5zM217 248q0 -63 39 -104.5t104 -41.5q71 0 133.5 35.5t92.5 79.5v162q-59 33 -172 33q-89 0 -143 -43t-54 -121zM232 1217q4 11 14 16l307 172q8 7 27 6.5t26 -12.5l37 -74q6 -12 3 -25.5t-15 -17.5l-330 -137 q-22 -9 -31.5 -8.5t-15.5 12.5l-21 45q-5 12 -1 23z" />
-<glyph unicode="&#xe2;" horiz-adv-x="858" d="M86 248q0 120 87 196t241 76q39 0 82.5 -6.5t67.5 -13.5l24 -6q2 122 -24 171.5t-109 49.5q-127 0 -246 -45q-29 -11 -39 20l-16 51q-10 31 22 45q13 6 44.5 17t101.5 24t139 13q151 0 205.5 -79t54.5 -267v-455q0 -15 -12 -27t-27 -12h-39q-16 0 -23 7.5t-12 23.5 l-16 55q-106 -106 -254 -106q-109 0 -180.5 73.5t-71.5 194.5zM137 1174q-14 20 13 38l245 193q11 8 27 8t27 -8l245 -193q27 -18 13 -38q-3 -4 -10.5 -16.5t-12.5 -19t-13.5 -13.5t-18 -6t-21.5 9l-209 144l-209 -139q-30 -19 -47 4zM217 248q0 -63 39 -104.5t104 -41.5 q71 0 133.5 35.5t92.5 79.5v162q-59 33 -172 33q-89 0 -143 -43t-54 -121z" />
-<glyph unicode="&#xe3;" horiz-adv-x="858" d="M86 248q0 120 87 196t241 76q39 0 82.5 -6.5t67.5 -13.5l24 -6q2 122 -24 171.5t-109 49.5q-127 0 -246 -45q-29 -11 -39 20l-16 51q-10 31 22 45q13 6 44.5 17t101.5 24t139 13q151 0 205.5 -79t54.5 -267v-455q0 -15 -12 -27t-27 -12h-39q-16 0 -23 7.5t-12 23.5 l-16 55q-106 -106 -254 -106q-109 0 -180.5 73.5t-71.5 194.5zM123 1241q2 4 11 25t16 36.5t23 38t33.5 37t45 25t59.5 10.5q34 0 64 -15.5t51 -37.5t39 -44.5t36.5 -38t35.5 -15.5q62 0 92 104q10 32 47 16l33 -16q6 -3 9.5 -7.5t4.5 -8.5t0.5 -10t-1 -9.5t-3 -10 t-2.5 -7.5q-56 -166 -182 -166q-38 0 -74.5 24t-59.5 52.5t-48.5 52.5t-43.5 24q-19 0 -34.5 -9t-26.5 -26.5t-16.5 -31.5t-12.5 -35q-5 -17 -17.5 -23t-33.5 3l-37 18q-22 11 -8 45zM217 248q0 -63 39 -104.5t104 -41.5q71 0 133.5 35.5t92.5 79.5v162q-59 33 -172 33 q-89 0 -143 -43t-54 -121z" />
-<glyph unicode="&#xe4;" horiz-adv-x="858" d="M86 248q0 120 87 196t241 76q39 0 82.5 -6.5t67.5 -13.5l24 -6q2 122 -24 171.5t-109 49.5q-127 0 -246 -45q-29 -11 -39 20l-16 51q-10 31 22 45q13 6 44.5 17t101.5 24t139 13q151 0 205.5 -79t54.5 -267v-455q0 -15 -12 -27t-27 -12h-39q-16 0 -23 7.5t-12 23.5 l-16 55q-106 -106 -254 -106q-109 0 -180.5 73.5t-71.5 194.5zM154 1294q0 41 28 70t68 29q41 0 69.5 -29t28.5 -70q0 -40 -28.5 -68t-69.5 -28q-40 0 -68 28t-28 68zM217 248q0 -63 39 -104.5t104 -41.5q71 0 133.5 35.5t92.5 79.5v162q-59 33 -172 33q-89 0 -143 -43 t-54 -121zM549 1294q0 41 28 70t68 29q41 0 69.5 -29t28.5 -70q0 -40 -28.5 -68t-69.5 -28q-40 0 -68 28t-28 68z" />
-<glyph unicode="&#xe5;" horiz-adv-x="858" d="M86 248q0 120 87 196t241 76q39 0 82.5 -6.5t67.5 -13.5l24 -6q2 122 -24 171.5t-109 49.5q-127 0 -246 -45q-29 -11 -39 20l-16 51q-10 31 22 45q13 6 44.5 17t101.5 24t139 13q151 0 205.5 -79t54.5 -267v-455q0 -15 -12 -27t-27 -12h-39q-16 0 -23 7.5t-12 23.5 l-16 55q-106 -106 -254 -106q-109 0 -180.5 73.5t-71.5 194.5zM201 1231q0 94 64.5 158.5t158.5 64.5q93 0 158 -65t65 -158t-65 -158t-158 -65q-94 0 -158.5 64.5t-64.5 158.5zM217 248q0 -63 39 -104.5t104 -41.5q71 0 133.5 35.5t92.5 79.5v162q-59 33 -172 33 q-89 0 -143 -43t-54 -121zM299 1231q0 -49 37.5 -87t87.5 -38q49 0 85 37.5t36 87.5q0 49 -35.5 85t-85.5 36t-87.5 -36t-37.5 -85z" />
-<glyph unicode="&#xe6;" horiz-adv-x="1413" d="M88 254q0 118 81.5 191t221.5 73q48 0 95 -3t70 -6l22 -3q2 122 -20 167.5t-95 45.5q-26 0 -51.5 -2t-49.5 -6t-42.5 -7.5t-39.5 -9.5t-31 -9t-27.5 -9t-18.5 -6q-15 -4 -27.5 4.5t-15.5 23.5l-10 52q-6 31 32 41q15 5 41 13.5t101.5 22t144.5 13.5q99 0 149.5 -28.5 t73.5 -84.5q116 113 275 113q157 0 262.5 -104.5t105.5 -270.5q0 -19 -1 -32t-4.5 -28t-12.5 -22.5t-23 -7.5h-573v-125q37 -64 105.5 -100.5t152.5 -36.5q111 0 203 57q3 2 10 5.5t9 5t7 4t7.5 2.5h6t6 -1.5t5.5 -4.5t6 -7l35 -47q9 -11 11.5 -17t-1 -15.5t-18.5 -20.5 q-48 -37 -127 -65.5t-174 -28.5q-201 0 -310 145q-45 -60 -126 -102.5t-173 -42.5q-120 0 -194 75t-74 199zM217 250q0 -73 48.5 -110.5t117.5 -37.5q60 0 115 31.5t84 73.5v182q-59 19 -170 19q-81 0 -138 -42.5t-57 -115.5zM725 492h471q-4 95 -70.5 158t-160.5 63 q-73 0 -140 -39.5t-100 -98.5v-83z" />
-<glyph unicode="&#xe7;" horiz-adv-x="907" d="M86 408q0 118 59 218t156 157t207 57q180 0 293 -144q10 -14 8 -30t-16 -27l-39 -33q-9 -8 -16 -12t-14 -2t-9.5 3.5t-11 9.5t-9.5 9q-75 86 -188 86q-116 0 -194.5 -83.5t-78.5 -206.5q0 -124 78 -209.5t193 -85.5q26 0 48 3t41.5 11t32 13t29.5 19t23.5 19t23 21.5 l19.5 19.5q21 18 31.5 17.5t29.5 -13.5l23 -16q15 -11 19 -26.5t-5 -30.5q-44 -71 -117.5 -117t-164.5 -53v-91q97 -12 156 -67.5t59 -142.5q0 -89 -62 -151t-153 -62q-45 0 -87 19.5t-69 51.5q-12 14 -11.5 29.5t11.5 23.5l29 23q11 8 25 8.5t22 -8.5q34 -37 84 -37 q41 0 65.5 27t24.5 69q0 33 -15.5 57.5t-44.5 38.5t-53 20.5t-57 12.5q-35 7 -35 41v144q-145 27 -242.5 143.5t-97.5 276.5z" />
-<glyph unicode="&#xe8;" horiz-adv-x="935" d="M86 410q0 180 110.5 305t290.5 125q161 0 266 -106.5t105 -268.5q0 -27 -4 -55q-1 -15 -12 -25t-25 -10h-590q6 -105 87 -185.5t188 -80.5q104 0 203 61q3 2 10 5.5t9 5t7 4t7.5 2.5h6t6 -1.5t5.5 -4.5t6 -7q6 -8 17.5 -23.5t17.5 -23.5q13 -12 12.5 -24.5t-21.5 -28.5 q-45 -36 -125.5 -65t-175.5 -29q-181 0 -291 124t-110 306zM229 489h488q-5 91 -71.5 158.5t-158.5 67.5q-102 0 -174.5 -65t-83.5 -161zM278 1299.5q-3 13.5 3 25.5l36 74q7 12 26.5 12.5t27.5 -6.5l307 -172q10 -5 13.5 -16t-1.5 -23l-20 -45q-6 -12 -15.5 -12.5 t-31.5 8.5l-330 137q-12 4 -15 17.5z" />
-<glyph unicode="&#xe9;" horiz-adv-x="935" d="M86 410q0 180 110.5 305t290.5 125q161 0 266 -106.5t105 -268.5q0 -27 -4 -55q-1 -15 -12 -25t-25 -10h-590q6 -105 87 -185.5t188 -80.5q104 0 203 61q3 2 10 5.5t9 5t7 4t7.5 2.5h6t6 -1.5t5.5 -4.5t6 -7q6 -8 17.5 -23.5t17.5 -23.5q13 -12 12.5 -24.5t-21.5 -28.5 q-45 -36 -125.5 -65t-175.5 -29q-181 0 -291 124t-110 306zM229 489h488q-5 91 -71.5 158.5t-158.5 67.5q-102 0 -174.5 -65t-83.5 -161zM273 1217q4 11 14 16l307 172q8 7 27 6.5t26 -12.5l37 -74q6 -12 3 -25.5t-15 -17.5l-330 -137q-22 -9 -31.5 -8.5t-15.5 12.5l-21 45 q-5 12 -1 23z" />
-<glyph unicode="&#xea;" horiz-adv-x="935" d="M86 410q0 180 110.5 305t290.5 125q161 0 266 -106.5t105 -268.5q0 -27 -4 -55q-1 -15 -12 -25t-25 -10h-590q6 -105 87 -185.5t188 -80.5q104 0 203 61q3 2 10 5.5t9 5t7 4t7.5 2.5h6t6 -1.5t5.5 -4.5t6 -7q6 -8 17.5 -23.5t17.5 -23.5q13 -12 12.5 -24.5t-21.5 -28.5 q-45 -36 -125.5 -65t-175.5 -29q-181 0 -291 124t-110 306zM205 1195q4 10 14 17l246 193q11 8 27 8q15 0 26 -8l246 -193q10 -7 14 -17t-2 -21q-3 -4 -10.5 -16.5t-12.5 -19t-13.5 -13.5t-18 -6t-21.5 9l-208 144l-209 -139q-30 -19 -47 4l-29 37q-6 11 -2 21zM229 489h488 q-5 91 -71.5 158.5t-158.5 67.5q-102 0 -174.5 -65t-83.5 -161z" />
-<glyph unicode="&#xeb;" horiz-adv-x="935" d="M86 410q0 180 110.5 305t290.5 125q161 0 266 -106.5t105 -268.5q0 -27 -4 -55q-1 -15 -12 -25t-25 -10h-590q6 -105 87 -185.5t188 -80.5q104 0 203 61q3 2 10 5.5t9 5t7 4t7.5 2.5h6t6 -1.5t5.5 -4.5t6 -7q6 -8 17.5 -23.5t17.5 -23.5q13 -12 12.5 -24.5t-21.5 -28.5 q-45 -36 -125.5 -65t-175.5 -29q-181 0 -291 124t-110 306zM190 1294q0 41 28.5 70t68.5 29q41 0 69.5 -29t28.5 -70q0 -40 -28.5 -68t-69.5 -28q-40 0 -68.5 28t-28.5 68zM229 489h488q-5 91 -71.5 158.5t-158.5 67.5q-102 0 -174.5 -65t-83.5 -161zM586 1294q0 41 28 70 t68 29q41 0 69.5 -29t28.5 -70q0 -40 -28.5 -68t-69.5 -28q-40 0 -68 28t-28 68z" />
-<glyph unicode="&#xec;" horiz-adv-x="432" d="M9.5 1299.5q-3.5 13.5 2.5 25.5l37 74q7 12 26 12.5t27 -6.5l308 -172q10 -5 13.5 -16t-1.5 -23l-21 -45q-6 -12 -15.5 -12.5t-31.5 8.5l-329 137q-12 4 -15.5 17.5zM145 39v741q0 15 12 27t27 12h64q15 0 27 -12t12 -27v-741q0 -15 -12 -27t-27 -12h-64q-15 0 -27 12 t-12 27z" />
-<glyph unicode="&#xed;" horiz-adv-x="432" d="M11 1217q4 11 14 16l307 172q8 7 27 6.5t26 -12.5l37 -74q6 -12 3 -25.5t-15 -17.5l-330 -137q-22 -9 -31.5 -8.5t-15.5 12.5l-21 45q-5 12 -1 23zM145 39v741q0 15 12 27t27 12h64q15 0 27 -12t12 -27v-741q0 -15 -12 -27t-27 -12h-64q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xee;" horiz-adv-x="432" d="M-66 1174q-14 20 13 38l246 193q11 8 26 8q16 0 27 -8l246 -193q10 -7 14 -17t-2 -21q-3 -4 -10.5 -16.5t-12.5 -19t-13.5 -13.5t-18 -6t-21.5 9l-209 144l-209 -139q-30 -19 -47 4zM145 39v741q0 15 12 27t27 12h64q15 0 27 -12t12 -27v-741q0 -15 -12 -27t-27 -12h-64 q-15 0 -27 12t-12 27z" />
-<glyph unicode="&#xef;" horiz-adv-x="432" d="M-78 1294q0 41 28 70t68 29q41 0 70 -29t29 -70q0 -40 -29 -68t-70 -28q-40 0 -68 28t-28 68zM145 39v741q0 15 12 27t27 12h64q15 0 27 -12t12 -27v-741q0 -15 -12 -27t-27 -12h-64q-15 0 -27 12t-12 27zM317 1294q0 41 28.5 70t68.5 29q41 0 69.5 -29t28.5 -70 q0 -40 -28.5 -68t-69.5 -28q-40 0 -68.5 28t-28.5 68z" />
-<glyph unicode="&#xf0;" horiz-adv-x="1114" d="M84 449q0 99 36.5 183.5t97 141t140 88t166.5 31.5q78 0 156 -23t117 -46l39 -23q-49 185 -263 352l-198 -115q-14 -7 -29.5 -2t-21.5 17l-9 14q-8 12 -4 28t17 23l164 94q-118 75 -203 109q-34 14 -17 49l27 55q11 25 41 15q154 -60 283 -152l143 82q15 9 30 4.5 t23 -18.5l8 -15q8 -12 3.5 -27t-17.5 -24l-111 -63q312 -272 312 -664q0 -125 -28.5 -229t-85 -184t-149.5 -125t-214 -45q-130 0 -234.5 63.5t-161.5 170.5t-57 235zM229 440q0 -133 90 -229t218 -96q68 0 124 23.5t93 63.5t64 92t37.5 109t14 115t-7.5 109q-5 5 -15.5 14 t-43.5 32t-68.5 40.5t-89 32t-106.5 14.5q-129 0 -219.5 -93.5t-90.5 -226.5z" />
-<glyph unicode="&#xf1;" horiz-adv-x="1013" d="M145 39v741q0 15 12 27t27 12h39q27 0 33 -24l18 -64q5 4 14 11.5t38 26.5t60.5 33t79 26t95.5 12q318 0 318 -369v-432q0 -15 -12 -27t-27 -12h-66q-15 0 -27 12t-12 27v432q0 115 -48 173t-136 58q-43 0 -86 -12t-74 -29t-55 -34t-36 -29l-13 -12v-547q0 -15 -12 -27 t-27 -12h-64q-15 0 -27 12t-12 27zM215 1241q2 4 11 25t16 36.5t23 38t33.5 37t45 25t59.5 10.5q34 0 64 -15.5t51 -37.5t39 -44.5t36.5 -38t35.5 -15.5q62 0 92 104q10 32 47 16l33 -16q6 -3 9.5 -7.5t4.5 -8.5t0.5 -10t-1 -9.5t-3 -10t-2.5 -7.5q-56 -166 -182 -166 q-38 0 -74.5 24t-59.5 52.5t-48.5 52.5t-43.5 24q-19 0 -34.5 -9t-26.5 -26.5t-16.5 -31.5t-12.5 -35q-5 -17 -17.5 -23t-33.5 3l-37 18q-22 11 -8 45z" />
-<glyph unicode="&#xf2;" d="M86 412q0 174 119.5 301t288.5 127q111 0 205 -58.5t148 -157t54 -212.5q0 -178 -119 -305t-288 -127q-111 0 -205.5 58.5t-148.5 158t-54 215.5zM227 412q0 -125 77.5 -212t189.5 -87t189 87t77 212q0 122 -77 207.5t-189 85.5t-189.5 -85.5t-77.5 -207.5zM286 1299.5 q-3 13.5 3 25.5l37 74q7 12 26 12.5t27 -6.5l307 -172q10 -5 13.5 -16t-1.5 -23l-20 -45q-6 -12 -15.5 -12.5t-31.5 8.5l-330 137q-12 4 -15 17.5z" />
-<glyph unicode="&#xf3;" d="M86 412q0 174 119.5 301t288.5 127q111 0 205 -58.5t148 -157t54 -212.5q0 -178 -119 -305t-288 -127q-111 0 -205.5 58.5t-148.5 158t-54 215.5zM227 412q0 -125 77.5 -212t189.5 -87t189 87t77 212q0 122 -77 207.5t-189 85.5t-189.5 -85.5t-77.5 -207.5zM287.5 1217 q3.5 11 13.5 16l307 172q8 7 27.5 6.5t26.5 -12.5l36 -74q6 -12 3 -25.5t-15 -17.5l-330 -137q-22 -9 -31.5 -8.5t-15.5 12.5l-20 45q-5 12 -1.5 23z" />
-<glyph unicode="&#xf4;" d="M86 412q0 174 119.5 301t288.5 127q111 0 205 -58.5t148 -157t54 -212.5q0 -178 -119 -305t-288 -127q-111 0 -205.5 58.5t-148.5 158t-54 215.5zM207 1195q4 10 14 17l246 193q11 8 27 8q15 0 26 -8l246 -193q10 -7 14 -17t-2 -21q-3 -4 -10.5 -16.5t-12.5 -19 t-13.5 -13.5t-18 -6t-21.5 9l-208 144l-209 -139q-30 -19 -47 4l-29 37q-6 11 -2 21zM227 412q0 -125 77.5 -212t189.5 -87t189 87t77 212q0 122 -77 207.5t-189 85.5t-189.5 -85.5t-77.5 -207.5z" />
-<glyph unicode="&#xf5;" d="M86 412q0 174 119.5 301t288.5 127q111 0 205 -58.5t148 -157t54 -212.5q0 -178 -119 -305t-288 -127q-111 0 -205.5 58.5t-148.5 158t-54 215.5zM195 1241q2 4 11 25t16 36.5t23 38t33.5 37t45 25t59.5 10.5q42 0 78 -23.5t57 -52t45.5 -52t44.5 -23.5q62 0 92 104 q10 33 48 16l32 -16q6 -3 9.5 -7.5t4.5 -8.5t0.5 -10t-1 -9.5t-3 -10t-2.5 -7.5q-56 -166 -182 -166q-38 0 -74.5 24t-59 52.5t-48 52.5t-43.5 24q-19 0 -34.5 -9t-26.5 -26.5t-16.5 -31.5t-12.5 -35q-5 -17 -17.5 -23t-33.5 3l-37 18q-22 11 -8 45zM227 412 q0 -125 77.5 -212t189.5 -87t189 87t77 212q0 122 -77 207.5t-189 85.5t-189.5 -85.5t-77.5 -207.5z" />
-<glyph unicode="&#xf6;" d="M86 412q0 174 119.5 301t288.5 127q111 0 205 -58.5t148 -157t54 -212.5q0 -178 -119 -305t-288 -127q-111 0 -205.5 58.5t-148.5 158t-54 215.5zM197 1294q0 41 28 70t68 29q41 0 69.5 -29t28.5 -70q0 -40 -28.5 -68t-69.5 -28q-40 0 -68 28t-28 68zM227 412 q0 -125 77.5 -212t189.5 -87t189 87t77 212q0 122 -77 207.5t-189 85.5t-189.5 -85.5t-77.5 -207.5zM592 1294q0 41 28 70t68 29q41 0 69.5 -29t28.5 -70q0 -40 -28.5 -68t-69.5 -28q-40 0 -68 28t-28 68z" />
-<glyph unicode="&#xf7;" horiz-adv-x="1101" d="M123 682v57q0 15 12 27t27 12h780q15 0 26 -12t11 -27v-57q0 -15 -11 -27t-26 -12h-780q-15 0 -27 12t-12 27zM428 350q0 49 34.5 83t82.5 34q49 0 83 -33.5t34 -83.5q0 -48 -34 -82.5t-83 -34.5q-47 0 -82 35t-35 82zM428 1083q0 49 34.5 83t82.5 34q49 0 83 -34t34 -83 q0 -48 -34 -82t-83 -34q-47 0 -82 34.5t-35 81.5z" />
-<glyph unicode="&#xf8;" horiz-adv-x="983" d="M88 414q0 174 118.5 300t287.5 126q148 0 262 -103l43 43q12 12 28.5 12t26.5 -12l10 -10q12 -10 12 -26t-12 -27l-47 -47q82 -116 82 -256q0 -178 -118 -306t-287 -128q-151 0 -263 98l-28 -29q-11 -12 -27.5 -11.5t-28.5 11.5l-8 10q-12 10 -12.5 27t10.5 27l33 32 q-82 119 -82 269zM229 414q0 -97 41 -168l389 395q-70 64 -165 64q-112 0 -188.5 -84.5t-76.5 -206.5zM328 174q70 -61 166 -61q112 0 188 88t76 213q0 87 -41 155z" />
-<glyph unicode="&#xf9;" horiz-adv-x="993" d="M135 350v430q0 15 12 27t27 12h66q15 0 27 -12t12 -27v-432q0 -115 48 -173t136 -58q44 0 85 12t68.5 29t49 34t31.5 29l10 12v547q0 15 11.5 27t26.5 12h64q15 0 27 -12t12 -27v-741q0 -15 -12 -27t-27 -12h-39q-16 0 -24 9t-13 26l-14 53l-11.5 -11.5t-33 -26 t-54.5 -33t-74 -26t-93 -11.5q-318 0 -318 370zM300 1299.5q-3 13.5 3 25.5l37 74q7 12 26 12.5t27 -6.5l307 -172q10 -5 14 -16t-1 -23l-21 -45q-6 -12 -15.5 -12.5t-31.5 8.5l-330 137q-12 4 -15 17.5z" />
-<glyph unicode="&#xfa;" horiz-adv-x="993" d="M135 350v430q0 15 12 27t27 12h66q15 0 27 -12t12 -27v-432q0 -115 48 -173t136 -58q44 0 85 12t68.5 29t49 34t31.5 29l10 12v547q0 15 11.5 27t26.5 12h64q15 0 27 -12t12 -27v-741q0 -15 -12 -27t-27 -12h-39q-16 0 -24 9t-13 26l-14 53l-11.5 -11.5t-33 -26 t-54.5 -33t-74 -26t-93 -11.5q-318 0 -318 370zM299.5 1217q3.5 11 13.5 16l308 172q8 7 27 6.5t26 -12.5l37 -74q6 -12 2.5 -25.5t-15.5 -17.5l-329 -137q-22 -9 -31.5 -8.5t-15.5 12.5l-21 45q-5 12 -1.5 23z" />
-<glyph unicode="&#xfb;" horiz-adv-x="993" d="M135 350v430q0 15 12 27t27 12h66q15 0 27 -12t12 -27v-432q0 -115 48 -173t136 -58q44 0 85 12t68.5 29t49 34t31.5 29l10 12v547q0 15 11.5 27t26.5 12h64q15 0 27 -12t12 -27v-741q0 -15 -12 -27t-27 -12h-39q-16 0 -24 9t-13 26l-14 53l-11.5 -11.5t-33 -26 t-54.5 -33t-74 -26t-93 -11.5q-318 0 -318 370zM217 1195q4 10 14 17l246 193q11 8 27 8q15 0 26 -8l246 -193q10 -7 14 -17t-2 -21q-3 -5 -10.5 -17t-12.5 -18.5t-13 -13.5t-17.5 -6t-21.5 9l-209 144l-209 -139q-30 -19 -47 4l-29 37q-6 11 -2 21z" />
-<glyph unicode="&#xfc;" horiz-adv-x="993" d="M135 350v430q0 15 12 27t27 12h66q15 0 27 -12t12 -27v-432q0 -115 48 -173t136 -58q44 0 85 12t68.5 29t49 34t31.5 29l10 12v547q0 15 11.5 27t26.5 12h64q15 0 27 -12t12 -27v-741q0 -15 -12 -27t-27 -12h-39q-16 0 -24 9t-13 26l-14 53l-11.5 -11.5t-33 -26 t-54.5 -33t-74 -26t-93 -11.5q-318 0 -318 370zM203 1294q0 41 28 70t68 29q41 0 69.5 -29t28.5 -70q0 -40 -28.5 -68t-69.5 -28q-40 0 -68 28t-28 68zM598 1294q0 41 28 70t68 29q41 0 70 -29t29 -70q0 -40 -29 -68t-70 -28q-40 0 -68 28t-28 68z" />
-<glyph unicode="&#xfd;" horiz-adv-x="954" d="M28 806.5q8 12.5 31 12.5h91q23 0 34 -22l303 -627h2l287 627q11 22 35 22h78q23 0 32 -13.5t-1 -33.5l-629 -1362q-12 -24 -35 -24h-76q-24 0 -33.5 14.5t0.5 36.5l263 565l-381 772q-9 20 -1 32.5zM281.5 1217q3.5 11 13.5 16l307 172q8 7 27 6.5t26 -12.5l37 -74 q6 -12 3 -25.5t-15 -17.5l-330 -137q-22 -9 -31.5 -8.5t-15.5 12.5l-20 45q-5 12 -1.5 23z" />
-<glyph unicode="&#xfe;" d="M147 -575v1970q0 15 12 27t27 12h64q15 0 27 -12t12 -27v-633q3 3 9 8.5t27.5 19t45.5 23.5t63 18.5t80 8.5q115 0 204 -59t136 -157t47 -216q0 -181 -112.5 -304.5t-280.5 -123.5q-38 0 -74.5 7t-61.5 16.5t-44.5 19.5t-29.5 17l-9 7v-622q0 -15 -12 -27t-27 -12h-64 q-15 0 -27 12t-12 27zM291 188q10 -8 27 -20t69 -31.5t102 -19.5q117 0 193 84.5t76 208.5q0 129 -66.5 215t-191.5 86q-37 0 -72.5 -10.5t-59 -25.5t-42 -29.5t-26.5 -25.5l-9 -10v-422z" />
-<glyph unicode="&#xff;" horiz-adv-x="954" d="M28 806.5q8 12.5 31 12.5h91q23 0 34 -22l303 -627h2l287 627q11 22 35 22h78q23 0 32 -13.5t-1 -33.5l-629 -1362q-12 -24 -35 -24h-76q-24 0 -33.5 14.5t0.5 36.5l263 565l-381 772q-9 20 -1 32.5zM193 1294q0 41 28 70t68 29q41 0 69.5 -29t28.5 -70q0 -40 -28.5 -68 t-69.5 -28q-40 0 -68 28t-28 68zM588 1294q0 41 28 70t68 29q41 0 69.5 -29t28.5 -70q0 -40 -28.5 -68t-69.5 -28q-40 0 -68 28t-28 68z" />
-<glyph unicode="&#x152;" horiz-adv-x="1980" d="M104 715q0 151 58 288t156 236t234.5 157t287.5 58q41 0 85 -5t67 -10l24 -5h807q17 0 28 -11.5t11 -27.5v-60q0 -16 -11 -27.5t-28 -11.5h-688v-499h587q15 0 27 -12t12 -27v-60q0 -17 -11.5 -28t-27.5 -11h-587v-522h688q17 0 28 -11.5t11 -27.5v-59q0 -16 -11 -27.5 t-28 -11.5h-807q-84 -20 -176 -20q-202 0 -371 97.5t-267 266.5t-98 371zM248 715q0 -160 79.5 -296.5t216 -216t296.5 -79.5q74 0 137 14v1155q-77 17 -137 17q-160 0 -296.5 -80t-216 -217t-79.5 -297z" />
-<glyph unicode="&#x153;" horiz-adv-x="1595" d="M84 414q0 175 118 300.5t287 125.5q99 0 185 -47.5t143 -128.5q55 83 140 129.5t190 46.5q157 0 264 -104.5t107 -270.5q0 -20 -5 -55q-1 -15 -11.5 -25t-24.5 -10h-586q14 -105 92.5 -184.5t177.5 -79.5q107 0 203 59q3 2 10 5.5t9 5t7 4t7.5 2.5h6t6 -1.5t5.5 -4.5 t6 -7q6 -8 17.5 -23.5t17.5 -23.5q9 -11 11.5 -17t-1 -15.5t-18.5 -20.5q-45 -36 -125.5 -65t-175.5 -29q-104 0 -189 47t-141 129q-57 -81 -143 -128.5t-185 -47.5q-169 0 -287 128t-118 306zM225 414q0 -125 76 -213t188 -88t188.5 88t76.5 213q0 122 -76.5 206.5 t-188.5 84.5t-188 -84.5t-76 -206.5zM893 487h485q-4 95 -70.5 158.5t-160.5 63.5q-102 0 -172.5 -63t-81.5 -159z" />
-<glyph unicode="&#x178;" horiz-adv-x="1157" d="M2.5 1414q10.5 20 34.5 20h96q19 0 33 -19l414 -571l413 571q14 19 33 19h96q24 0 34.5 -20t-1.5 -40l-500 -682v-653q0 -15 -12 -27t-27 -12h-79q-17 0 -28 11.5t-11 27.5v651l-494 684q-12 20 -1.5 40zM266 1718q0 41 28 70t68 29q41 0 70 -29t29 -70q0 -40 -29 -68 t-70 -28q-40 0 -68 28t-28 68zM698 1718q0 41 28.5 70t68.5 29q41 0 69.5 -29t28.5 -70q0 -40 -28.5 -68t-69.5 -28q-40 0 -68.5 28t-28.5 68z" />
-<glyph unicode="&#x2c6;" horiz-adv-x="763" d="M92 1195q4 10 14 17l246 193q11 8 27 8t27 -8l245 -193q27 -18 13 -38q-3 -4 -10.5 -16.5t-12.5 -19t-13.5 -13.5t-18 -6t-21.5 9l-209 144l-209 -139q-30 -19 -47 4l-29 37q-6 11 -2 21z" />
-<glyph unicode="&#x2dc;" horiz-adv-x="778" d="M86 1241q2 4 11 25t16 36.5t23 38t33.5 37t45 25t59.5 10.5q34 0 64 -15.5t51 -37.5t39 -44.5t36.5 -38t35.5 -15.5q62 0 92 104q10 32 47 16l33 -16q6 -3 9.5 -7.5t4.5 -8.5t0.5 -10t-1 -9.5t-3 -10t-2.5 -7.5q-56 -166 -182 -166q-38 0 -74.5 24t-59.5 52.5t-48.5 52.5 t-43.5 24q-19 0 -34.5 -9t-26.5 -26.5t-16.5 -31.5t-12.5 -35q-5 -17 -17.5 -23t-33.5 3l-37 18q-22 11 -8 45z" />
-<glyph unicode="&#x2000;" horiz-adv-x="999" />
-<glyph unicode="&#x2001;" horiz-adv-x="1999" />
-<glyph unicode="&#x2002;" horiz-adv-x="999" />
-<glyph unicode="&#x2003;" horiz-adv-x="1999" />
-<glyph unicode="&#x2004;" horiz-adv-x="666" />
-<glyph unicode="&#x2005;" horiz-adv-x="499" />
-<glyph unicode="&#x2006;" horiz-adv-x="333" />
-<glyph unicode="&#x2007;" horiz-adv-x="333" />
-<glyph unicode="&#x2008;" horiz-adv-x="249" />
-<glyph unicode="&#x2009;" horiz-adv-x="399" />
-<glyph unicode="&#x200a;" horiz-adv-x="111" />
-<glyph unicode="&#x2010;" horiz-adv-x="845" d="M170 487v39q0 17 11 28t28 11h428q17 0 28 -11t11 -28v-39q0 -15 -11 -25.5t-28 -10.5h-428q-17 0 -28 10.5t-11 25.5z" />
-<glyph unicode="&#x2011;" horiz-adv-x="845" d="M170 487v39q0 17 11 28t28 11h428q17 0 28 -11t11 -28v-39q0 -15 -11 -25.5t-28 -10.5h-428q-17 0 -28 10.5t-11 25.5z" />
-<glyph unicode="&#x2012;" horiz-adv-x="845" d="M170 487v39q0 17 11 28t28 11h428q17 0 28 -11t11 -28v-39q0 -15 -11 -25.5t-28 -10.5h-428q-17 0 -28 10.5t-11 25.5z" />
-<glyph unicode="&#x2013;" horiz-adv-x="1181" d="M174 494v22q0 17 11 28t28 11h756q17 0 28 -11t11 -28v-22q0 -15 -11 -26t-28 -11h-756q-17 0 -28 11t-11 26z" />
-<glyph unicode="&#x2014;" horiz-adv-x="1632" d="M174 494v22q0 17 11 28t28 11h1206q17 0 28 -11t11 -28v-22q0 -15 -11 -26t-28 -11h-1206q-17 0 -28 11t-11 26z" />
-<glyph unicode="&#x2018;" horiz-adv-x="417" d="M78 1059q0 114 54.5 217.5t117.5 161.5q28 25 49 4l29 -29q8 -7 4.5 -21.5t-17.5 -27.5q-127 -114 -127 -258q8 2 25 2q47 0 82 -35t35 -82q0 -49 -34.5 -83t-82.5 -34q-58 0 -96.5 42t-38.5 143z" />
-<glyph unicode="&#x2019;" horiz-adv-x="413" d="M89 939.5q3 14.5 17 27.5q127 114 127 258q-8 -2 -24 -2q-47 0 -82 34.5t-35 81.5q0 49 34.5 83t82.5 34q58 0 96.5 -41.5t38.5 -142.5q0 -114 -54.5 -217.5t-117.5 -161.5q-28 -25 -49 -4l-29 29q-8 7 -5 21.5z" />
-<glyph unicode="&#x201a;" horiz-adv-x="477" d="M110 -304q3 15 17 28q127 114 127 258q-8 -2 -25 -2q-47 0 -81.5 34.5t-34.5 81.5q0 49 34 83t82 34q58 0 97 -41.5t39 -142.5q0 -114 -54.5 -217.5t-117.5 -161.5q-28 -26 -50 -4l-28 28q-8 7 -5 22z" />
-<glyph unicode="&#x201c;" horiz-adv-x="786" d="M78 1063q0 114 54.5 217.5t117.5 161.5q28 25 49 4l29 -29q8 -7 4.5 -21.5t-17.5 -27.5q-127 -114 -127 -258q8 2 25 2q47 0 82 -35t35 -82q0 -49 -34.5 -82.5t-82.5 -33.5q-58 0 -96.5 41.5t-38.5 142.5zM446 1063q0 114 54.5 217.5t117.5 161.5q28 26 50 4l28 -29 q8 -7 5 -21.5t-17 -27.5q-127 -114 -127 -258q8 2 25 2q47 0 81.5 -35t34.5 -82q0 -49 -34 -82.5t-82 -33.5q-58 0 -97 41.5t-39 142.5z" />
-<glyph unicode="&#x201d;" horiz-adv-x="782" d="M89 939.5q3 14.5 17 27.5q127 114 127 258q-8 -2 -24 -2q-47 0 -82 34.5t-35 81.5q0 49 34.5 83t82.5 34q58 0 96.5 -41.5t38.5 -142.5q0 -114 -54.5 -217.5t-117.5 -161.5q-28 -25 -49 -4l-29 29q-8 7 -5 21.5zM458 939.5q3 14.5 17 27.5q127 114 127 258q-8 -2 -24 -2 q-47 0 -82 34.5t-35 81.5q0 49 34.5 83t82.5 34q58 0 96.5 -41.5t38.5 -142.5q0 -114 -54.5 -217.5t-117.5 -161.5q-28 -25 -49 -4l-29 29q-8 7 -5 21.5z" />
-<glyph unicode="&#x201e;" horiz-adv-x="845" d="M110 -304q3 15 17 28q127 114 127 258q-8 -2 -25 -2q-47 0 -81.5 34.5t-34.5 81.5q0 49 34 83t82 34q58 0 97 -41.5t39 -142.5q0 -114 -54.5 -217.5t-117.5 -161.5q-28 -26 -50 -4l-28 28q-8 7 -5 22zM478.5 -304q3.5 15 17.5 28q127 114 127 258q-8 -2 -25 -2 q-47 0 -82 34.5t-35 81.5q0 49 34.5 83t82.5 34q58 0 96.5 -41.5t38.5 -142.5q0 -114 -54.5 -217.5t-117.5 -161.5q-28 -25 -49 -4l-29 28q-8 7 -4.5 22z" />
-<glyph unicode="&#x2022;" horiz-adv-x="724" d="M143 459q0 92 63.5 157.5t151.5 65.5q92 0 158 -65.5t66 -157.5q0 -88 -66 -151.5t-158 -63.5q-88 0 -151.5 63.5t-63.5 151.5z" />
-<glyph unicode="&#x2026;" horiz-adv-x="1277" d="M123 96q0 49 34.5 83t82.5 34q49 0 82.5 -33.5t33.5 -83.5q0 -48 -33.5 -82t-82.5 -34q-47 0 -82 34.5t-35 81.5zM518 96q0 49 34.5 83t82.5 34q49 0 83 -33.5t34 -83.5q0 -48 -34 -82t-83 -34q-47 0 -82 34.5t-35 81.5zM922 96q0 49 34 83t82 34q50 0 83.5 -33.5 t33.5 -83.5q0 -48 -34 -82t-83 -34q-47 0 -81.5 34.5t-34.5 81.5z" />
-<glyph unicode="&#x202f;" horiz-adv-x="399" />
-<glyph unicode="&#x2039;" horiz-adv-x="516" d="M84 397q-17 23 0 49l223 304q17 24 37 24h29q26 0 34.5 -19t-4.5 -44l-151 -285l145 -301q11 -25 3 -43.5t-33 -18.5h-39q-18 0 -31 17z" />
-<glyph unicode="&#x203a;" horiz-adv-x="516" d="M106.5 755q8.5 19 34.5 19h29q21 0 37 -24l223 -304q17 -26 0 -49l-213 -317q-13 -17 -31 -17h-39q-25 0 -33 18.5t3 43.5l145 301l-151 285q-13 25 -4.5 44z" />
-<glyph unicode="&#x205f;" horiz-adv-x="499" />
-<glyph unicode="&#x20ac;" horiz-adv-x="1497" d="M41 557v14q0 15 11 27t26 12h82q-6 50 -6 105q0 33 2 49h-78q-15 0 -26 12t-11 27v14q0 15 11 27t26 12h88q50 259 254 428.5t473 169.5q149 0 267.5 -48t228.5 -142q12 -12 13 -29t-11 -29l-50 -49q-14 -14 -31.5 -14.5t-35.5 16.5q-76 71 -176.5 109.5t-206.5 38.5 q-203 0 -356.5 -128t-198.5 -323h575q17 0 28 -11.5t11 -27.5v-16q0 -15 -11 -26t-28 -11h-589q-3 -24 -3 -47q0 -55 9 -107h501q17 0 28 -11.5t11 -27.5v-16q0 -15 -11 -26t-28 -11h-477q60 -171 206.5 -280t332.5 -109q63 0 118 12t105.5 37.5t84.5 48t85 60.5q24 20 49 6 l60 -60q11 -10 10 -27t-12 -28q-204 -198 -498 -198q-254 0 -451 150.5t-262 387.5h-102q-15 0 -26 12t-11 27z" />
-<glyph unicode="&#x2122;" horiz-adv-x="1476" d="M102 1372v23q0 15 12 27t27 12h391q17 0 28 -11.5t11 -27.5v-23q0 -17 -11 -28t-28 -11h-143v-479q0 -15 -12 -27t-27 -12h-26q-17 0 -28 11.5t-11 27.5v479h-144q-16 0 -27.5 11t-11.5 28zM639 862l106 551q3 12 14.5 21.5t24.5 9.5h9q9 0 20 -7.5t14 -15.5l166 -434 l168 434q3 8 14.5 15.5t20.5 7.5h8q12 0 24 -9.5t15 -21.5l109 -553q3 -19 -8.5 -32t-30.5 -13h-25q-13 0 -24.5 10.5t-14.5 24.5l-69 338l-148 -361q-3 -7 -13.5 -12.5t-19.5 -5.5h-12q-9 0 -20.5 6t-14.5 14l-143 359l-72 -340q-3 -12 -15 -22.5t-24 -10.5h-20 q-20 0 -31 14t-8 33z" />
-<glyph unicode="&#x25fc;" horiz-adv-x="819" d="M0 0v819h819v-819h-819z" />
-<glyph unicode="&#xfb03;" horiz-adv-x="1640" d="M47 735v45q0 17 11 28t28 11h125v232q1 98 30.5 172.5t82 120t118.5 68t144 22.5q148 0 264 -80q84 100 252 100q91 0 177 -32.5t128 -63.5q10 -7 12 -22t-4 -25l-33 -56q-14 -23 -53 -2q-1 1 -15.5 8.5t-24.5 12.5t-28.5 14t-35.5 14.5t-37.5 12t-42 9.5t-41.5 3 q-80 0 -135.5 -56.5t-55.5 -166.5v-285h543q15 0 27 -12t12 -27v-741q0 -15 -12 -27t-27 -12h-63q-15 0 -27 12t-12 27v657h-441v-657q0 -15 -12 -27t-27 -12h-63q-15 0 -27 12t-12 27v657h-420v-657q0 -15 -12 -27t-27 -12h-63q-15 0 -27 12t-12 27v657h-125 q-17 0 -28 11.5t-11 27.5zM352 819h420v287q0 73 14 125q-25 27 -83 51.5t-119 24.5q-46 0 -85.5 -13.5t-73.5 -42t-53.5 -80t-19.5 -120.5v-232z" />
-<glyph unicode="&#xfb04;" horiz-adv-x="1646" d="M47 735v45q0 17 11 28t28 11h125v232q0 99 30.5 174t83.5 120t119 67t142 22q148 0 264 -80q84 100 258 100q46 0 90.5 -10.5t74 -26t52.5 -31t34 -26.5l11 -10l16 51q9 33 39 33h35q15 0 27 -12t12 -27v-1356q0 -15 -12 -27t-27 -12h-63q-15 0 -27 12t-12 27v1149 q-4 5 -10.5 14t-30.5 31t-50 39t-67.5 31t-85.5 14q-37 0 -71 -11t-64 -34.5t-48 -66t-18 -99.5v-287h238q17 0 28 -11t11 -28v-45q0 -16 -11 -27.5t-28 -11.5h-238v-657q0 -15 -12 -27t-27 -12h-63q-15 0 -27 12t-12 27v657h-420v-657q0 -15 -12 -27t-27 -12h-63 q-15 0 -27 12t-12 27v657h-125q-17 0 -28 11.5t-11 27.5zM352 819h420v287q0 73 14 125q-25 27 -83 51.5t-119 24.5q-46 0 -85.5 -13.5t-73.5 -42t-53.5 -80t-19.5 -120.5v-232z" />
-<hkern u1="&#x22;" u2="&#xf0;" k="23" />
-<hkern u1="&#x22;" u2="&#xef;" k="-47" />
-<hkern u1="&#x22;" u2="&#xee;" k="-18" />
-<hkern u1="&#x22;" u2="&#xde;" k="16" />
-<hkern u1="&#x22;" u2="x" k="74" />
-<hkern u1="&#x22;" u2="v" k="59" />
-<hkern u1="&#x22;" u2="q" k="104" />
-<hkern u1="&#x22;" u2="m" k="86" />
-<hkern u1="&#x22;" u2="Q" k="20" />
-<hkern u1="&#x22;" u2="P" k="16" />
-<hkern u1="&#x22;" u2="M" k="37" />
-<hkern u1="&#x22;" u2="F" k="16" />
-<hkern u1="&#x22;" u2="B" k="16" />
-<hkern u1="&#x22;" u2="&#x40;" k="43" />
-<hkern u1="&#x22;" u2="&#x38;" k="16" />
-<hkern u1="&#x22;" u2="&#x36;" k="37" />
-<hkern u1="&#x22;" u2="&#x34;" k="74" />
-<hkern u1="&#x22;" u2="&#x30;" k="25" />
-<hkern u1="&#x22;" u2="&#x2f;" k="63" />
-<hkern u1="&#x22;" u2="&#x2e;" k="186" />
-<hkern u1="&#x23;" u2="&#x33;" k="14" />
-<hkern u1="&#x23;" u2="&#x32;" k="14" />
-<hkern u1="&#x24;" u2="&#x31;" k="10" />
-<hkern u1="&#x27;" u2="&#xf0;" k="23" />
-<hkern u1="&#x27;" u2="&#xef;" k="-47" />
-<hkern u1="&#x27;" u2="&#xee;" k="-18" />
-<hkern u1="&#x27;" u2="&#xde;" k="16" />
-<hkern u1="&#x27;" u2="x" k="74" />
-<hkern u1="&#x27;" u2="v" k="59" />
-<hkern u1="&#x27;" u2="q" k="104" />
-<hkern u1="&#x27;" u2="m" k="86" />
-<hkern u1="&#x27;" u2="Q" k="20" />
-<hkern u1="&#x27;" u2="P" k="16" />
-<hkern u1="&#x27;" u2="M" k="37" />
-<hkern u1="&#x27;" u2="F" k="16" />
-<hkern u1="&#x27;" u2="B" k="16" />
-<hkern u1="&#x27;" u2="&#x40;" k="43" />
-<hkern u1="&#x27;" u2="&#x38;" k="16" />
-<hkern u1="&#x27;" u2="&#x36;" k="37" />
-<hkern u1="&#x27;" u2="&#x34;" k="74" />
-<hkern u1="&#x27;" u2="&#x30;" k="25" />
-<hkern u1="&#x27;" u2="&#x2f;" k="63" />
-<hkern u1="&#x27;" u2="&#x2e;" k="186" />
-<hkern u1="&#x28;" g2="uniFB02" k="23" />
-<hkern u1="&#x28;" g2="uniFB01" k="23" />
-<hkern u1="&#x28;" u2="&#xf1;" k="23" />
-<hkern u1="&#x28;" u2="&#xe7;" k="45" />
-<hkern u1="&#x28;" u2="n" k="23" />
-<hkern u1="&#x28;" u2="f" k="23" />
-<hkern u1="&#x28;" u2="c" k="45" />
-<hkern u1="&#x28;" u2="&#x178;" k="-12" />
-<hkern u1="&#x28;" u2="&#x153;" k="45" />
-<hkern u1="&#x28;" u2="&#x152;" k="35" />
-<hkern u1="&#x28;" u2="&#xff;" k="31" />
-<hkern u1="&#x28;" u2="&#xfe;" k="18" />
-<hkern u1="&#x28;" u2="&#xfd;" k="31" />
-<hkern u1="&#x28;" u2="&#xfc;" k="39" />
-<hkern u1="&#x28;" u2="&#xfb;" k="39" />
-<hkern u1="&#x28;" u2="&#xfa;" k="39" />
-<hkern u1="&#x28;" u2="&#xf9;" k="39" />
-<hkern u1="&#x28;" u2="&#xf8;" k="45" />
-<hkern u1="&#x28;" u2="&#xf6;" k="45" />
-<hkern u1="&#x28;" u2="&#xf5;" k="45" />
-<hkern u1="&#x28;" u2="&#xf4;" k="45" />
-<hkern u1="&#x28;" u2="&#xf3;" k="45" />
-<hkern u1="&#x28;" u2="&#xf2;" k="45" />
-<hkern u1="&#x28;" u2="&#xeb;" k="43" />
-<hkern u1="&#x28;" u2="&#xea;" k="43" />
-<hkern u1="&#x28;" u2="&#xe9;" k="43" />
-<hkern u1="&#x28;" u2="&#xe8;" k="43" />
-<hkern u1="&#x28;" u2="&#xe6;" k="25" />
-<hkern u1="&#x28;" u2="&#xe5;" k="25" />
-<hkern u1="&#x28;" u2="&#xe4;" k="25" />
-<hkern u1="&#x28;" u2="&#xe3;" k="25" />
-<hkern u1="&#x28;" u2="&#xe2;" k="25" />
-<hkern u1="&#x28;" u2="&#xe1;" k="25" />
-<hkern u1="&#x28;" u2="&#xe0;" k="25" />
-<hkern u1="&#x28;" u2="&#xdd;" k="-12" />
-<hkern u1="&#x28;" u2="&#xd8;" k="35" />
-<hkern u1="&#x28;" u2="&#xd6;" k="35" />
-<hkern u1="&#x28;" u2="&#xd5;" k="35" />
-<hkern u1="&#x28;" u2="&#xd4;" k="35" />
-<hkern u1="&#x28;" u2="&#xd3;" k="35" />
-<hkern u1="&#x28;" u2="&#xd2;" k="35" />
-<hkern u1="&#x28;" u2="&#xc7;" k="35" />
-<hkern u1="&#x28;" u2="y" k="31" />
-<hkern u1="&#x28;" u2="w" k="27" />
-<hkern u1="&#x28;" u2="u" k="39" />
-<hkern u1="&#x28;" u2="t" k="37" />
-<hkern u1="&#x28;" u2="s" k="23" />
-<hkern u1="&#x28;" u2="r" k="23" />
-<hkern u1="&#x28;" u2="p" k="18" />
-<hkern u1="&#x28;" u2="o" k="45" />
-<hkern u1="&#x28;" u2="e" k="43" />
-<hkern u1="&#x28;" u2="d" k="35" />
-<hkern u1="&#x28;" u2="a" k="25" />
-<hkern u1="&#x28;" u2="Y" k="-12" />
-<hkern u1="&#x28;" u2="O" k="35" />
-<hkern u1="&#x28;" u2="G" k="35" />
-<hkern u1="&#x28;" u2="C" k="35" />
-<hkern u1="&#x28;" u2="&#xf0;" k="31" />
-<hkern u1="&#x28;" u2="&#xef;" k="-80" />
-<hkern u1="&#x28;" u2="&#xdf;" k="14" />
-<hkern u1="&#x28;" u2="v" k="27" />
-<hkern u1="&#x28;" u2="q" k="43" />
-<hkern u1="&#x28;" u2="m" k="23" />
-<hkern u1="&#x28;" u2="Q" k="35" />
-<hkern u1="&#x28;" u2="&#x38;" k="14" />
-<hkern u1="&#x28;" u2="&#x36;" k="33" />
-<hkern u1="&#x28;" u2="&#x34;" k="23" />
-<hkern u1="&#x28;" u2="&#x31;" k="14" />
-<hkern u1="&#x28;" u2="&#x30;" k="31" />
-<hkern u1="&#x2a;" u2="&#x153;" k="82" />
-<hkern u1="&#x2a;" u2="&#xfe;" k="49" />
-<hkern u1="&#x2a;" u2="&#xfc;" k="45" />
-<hkern u1="&#x2a;" u2="&#xfb;" k="45" />
-<hkern u1="&#x2a;" u2="&#xfa;" k="45" />
-<hkern u1="&#x2a;" u2="&#xf9;" k="45" />
-<hkern u1="&#x2a;" u2="&#xf8;" k="82" />
-<hkern u1="&#x2a;" u2="&#xf6;" k="82" />
-<hkern u1="&#x2a;" u2="&#xf5;" k="82" />
-<hkern u1="&#x2a;" u2="&#xf4;" k="82" />
-<hkern u1="&#x2a;" u2="&#xf3;" k="82" />
-<hkern u1="&#x2a;" u2="&#xf2;" k="82" />
-<hkern u1="&#x2a;" u2="&#xf1;" k="49" />
-<hkern u1="&#x2a;" u2="&#xeb;" k="80" />
-<hkern u1="&#x2a;" u2="&#xea;" k="80" />
-<hkern u1="&#x2a;" u2="&#xe9;" k="80" />
-<hkern u1="&#x2a;" u2="&#xe8;" k="80" />
-<hkern u1="&#x2a;" u2="&#xe7;" k="82" />
-<hkern u1="&#x2a;" u2="&#xe6;" k="63" />
-<hkern u1="&#x2a;" u2="&#xe5;" k="63" />
-<hkern u1="&#x2a;" u2="&#xe4;" k="63" />
-<hkern u1="&#x2a;" u2="&#xe3;" k="63" />
-<hkern u1="&#x2a;" u2="&#xe2;" k="63" />
-<hkern u1="&#x2a;" u2="&#xe1;" k="63" />
-<hkern u1="&#x2a;" u2="&#xe0;" k="63" />
-<hkern u1="&#x2a;" u2="&#xd1;" k="12" />
-<hkern u1="&#x2a;" u2="&#xd0;" k="12" />
-<hkern u1="&#x2a;" u2="&#xcf;" k="12" />
-<hkern u1="&#x2a;" u2="&#xce;" k="12" />
-<hkern u1="&#x2a;" u2="&#xcd;" k="12" />
-<hkern u1="&#x2a;" u2="&#xcc;" k="12" />
-<hkern u1="&#x2a;" u2="&#xcb;" k="12" />
-<hkern u1="&#x2a;" u2="&#xca;" k="12" />
-<hkern u1="&#x2a;" u2="&#xc9;" k="12" />
-<hkern u1="&#x2a;" u2="&#xc8;" k="12" />
-<hkern u1="&#x2a;" u2="&#xc6;" k="82" />
-<hkern u1="&#x2a;" u2="&#xc5;" k="72" />
-<hkern u1="&#x2a;" u2="&#xc4;" k="72" />
-<hkern u1="&#x2a;" u2="&#xc3;" k="72" />
-<hkern u1="&#x2a;" u2="&#xc2;" k="72" />
-<hkern u1="&#x2a;" u2="&#xc1;" k="72" />
-<hkern u1="&#x2a;" u2="&#xc0;" k="72" />
-<hkern u1="&#x2a;" u2="z" k="31" />
-<hkern u1="&#x2a;" u2="w" k="20" />
-<hkern u1="&#x2a;" u2="u" k="45" />
-<hkern u1="&#x2a;" u2="s" k="59" />
-<hkern u1="&#x2a;" u2="r" k="49" />
-<hkern u1="&#x2a;" u2="p" k="49" />
-<hkern u1="&#x2a;" u2="o" k="82" />
-<hkern u1="&#x2a;" u2="n" k="49" />
-<hkern u1="&#x2a;" u2="g" k="82" />
-<hkern u1="&#x2a;" u2="e" k="80" />
-<hkern u1="&#x2a;" u2="d" k="76" />
-<hkern u1="&#x2a;" u2="c" k="82" />
-<hkern u1="&#x2a;" u2="a" k="63" />
-<hkern u1="&#x2a;" u2="Z" k="10" />
-<hkern u1="&#x2a;" u2="R" k="12" />
-<hkern u1="&#x2a;" u2="N" k="12" />
-<hkern u1="&#x2a;" u2="L" k="12" />
-<hkern u1="&#x2a;" u2="K" k="12" />
-<hkern u1="&#x2a;" u2="J" k="43" />
-<hkern u1="&#x2a;" u2="I" k="12" />
-<hkern u1="&#x2a;" u2="H" k="12" />
-<hkern u1="&#x2a;" u2="E" k="12" />
-<hkern u1="&#x2a;" u2="D" k="12" />
-<hkern u1="&#x2a;" u2="A" k="72" />
-<hkern u1="&#x2a;" u2="&#xf0;" k="41" />
-<hkern u1="&#x2a;" u2="&#xef;" k="-55" />
-<hkern u1="&#x2a;" u2="&#xee;" k="-12" />
-<hkern u1="&#x2a;" u2="&#xde;" k="12" />
-<hkern u1="&#x2a;" u2="x" k="25" />
-<hkern u1="&#x2a;" u2="v" k="10" />
-<hkern u1="&#x2a;" u2="q" k="80" />
-<hkern u1="&#x2a;" u2="m" k="49" />
-<hkern u1="&#x2a;" u2="P" k="12" />
-<hkern u1="&#x2a;" u2="M" k="29" />
-<hkern u1="&#x2a;" u2="F" k="12" />
-<hkern u1="&#x2a;" u2="B" k="12" />
-<hkern u1="&#x2b;" u2="&#x37;" k="39" />
-<hkern u1="&#x2b;" u2="&#x33;" k="20" />
-<hkern u1="&#x2b;" u2="&#x32;" k="39" />
-<hkern u1="&#x2c;" u2="&#x201c;" k="162" />
-<hkern u1="&#x2c;" u2="&#x2018;" k="162" />
-<hkern u1="&#x2c;" u2="&#x27;" k="176" />
-<hkern u1="&#x2c;" u2="&#x22;" k="176" />
-<hkern u1="&#x2c;" u2="&#x39;" k="41" />
-<hkern u1="&#x2c;" u2="&#x38;" k="18" />
-<hkern u1="&#x2c;" u2="&#x37;" k="20" />
-<hkern u1="&#x2c;" u2="&#x36;" k="23" />
-<hkern u1="&#x2c;" u2="&#x35;" k="12" />
-<hkern u1="&#x2c;" u2="&#x34;" k="20" />
-<hkern u1="&#x2c;" u2="&#x31;" k="51" />
-<hkern u1="&#x2c;" u2="&#x30;" k="43" />
-<hkern u1="&#x2d;" u2="&#xde;" k="39" />
-<hkern u1="&#x2d;" u2="X" k="66" />
-<hkern u1="&#x2d;" u2="V" k="68" />
-<hkern u1="&#x2d;" u2="Q" k="23" />
-<hkern u1="&#x2d;" u2="P" k="39" />
-<hkern u1="&#x2d;" u2="M" k="31" />
-<hkern u1="&#x2d;" u2="F" k="39" />
-<hkern u1="&#x2d;" u2="B" k="39" />
-<hkern u1="&#x2d;" u2="&#x39;" k="53" />
-<hkern u1="&#x2d;" u2="&#x38;" k="27" />
-<hkern u1="&#x2d;" u2="&#x37;" k="70" />
-<hkern u1="&#x2d;" u2="&#x36;" k="16" />
-<hkern u1="&#x2d;" u2="&#x35;" k="100" />
-<hkern u1="&#x2d;" u2="&#x34;" k="10" />
-<hkern u1="&#x2d;" u2="&#x33;" k="76" />
-<hkern u1="&#x2d;" u2="&#x32;" k="76" />
-<hkern u1="&#x2d;" u2="&#x31;" k="61" />
-<hkern u1="&#x2d;" u2="&#x30;" k="29" />
-<hkern u1="&#x2e;" u2="&#x201c;" k="162" />
-<hkern u1="&#x2e;" u2="&#x2018;" k="162" />
-<hkern u1="&#x2e;" u2="&#x178;" k="76" />
-<hkern u1="&#x2e;" u2="&#x152;" k="53" />
-<hkern u1="&#x2e;" u2="&#xff;" k="33" />
-<hkern u1="&#x2e;" u2="&#xfd;" k="33" />
-<hkern u1="&#x2e;" u2="&#xdd;" k="76" />
-<hkern u1="&#x2e;" u2="&#xdc;" k="49" />
-<hkern u1="&#x2e;" u2="&#xdb;" k="49" />
-<hkern u1="&#x2e;" u2="&#xda;" k="49" />
-<hkern u1="&#x2e;" u2="&#xd9;" k="49" />
-<hkern u1="&#x2e;" u2="&#xd8;" k="53" />
-<hkern u1="&#x2e;" u2="&#xd6;" k="53" />
-<hkern u1="&#x2e;" u2="&#xd5;" k="53" />
-<hkern u1="&#x2e;" u2="&#xd4;" k="53" />
-<hkern u1="&#x2e;" u2="&#xd3;" k="53" />
-<hkern u1="&#x2e;" u2="&#xd2;" k="53" />
-<hkern u1="&#x2e;" u2="&#xd1;" k="23" />
-<hkern u1="&#x2e;" u2="&#xd0;" k="23" />
-<hkern u1="&#x2e;" u2="&#xcf;" k="23" />
-<hkern u1="&#x2e;" u2="&#xce;" k="23" />
-<hkern u1="&#x2e;" u2="&#xcd;" k="23" />
-<hkern u1="&#x2e;" u2="&#xcc;" k="23" />
-<hkern u1="&#x2e;" u2="&#xcb;" k="23" />
-<hkern u1="&#x2e;" u2="&#xca;" k="23" />
-<hkern u1="&#x2e;" u2="&#xc9;" k="23" />
-<hkern u1="&#x2e;" u2="&#xc8;" k="23" />
-<hkern u1="&#x2e;" u2="&#xc7;" k="53" />
-<hkern u1="&#x2e;" u2="y" k="33" />
-<hkern u1="&#x2e;" u2="w" k="16" />
-<hkern u1="&#x2e;" u2="Y" k="76" />
-<hkern u1="&#x2e;" u2="W" k="74" />
-<hkern u1="&#x2e;" u2="U" k="49" />
-<hkern u1="&#x2e;" u2="T" k="63" />
-<hkern u1="&#x2e;" u2="R" k="23" />
-<hkern u1="&#x2e;" u2="O" k="53" />
-<hkern u1="&#x2e;" u2="N" k="23" />
-<hkern u1="&#x2e;" u2="L" k="23" />
-<hkern u1="&#x2e;" u2="K" k="23" />
-<hkern u1="&#x2e;" u2="I" k="23" />
-<hkern u1="&#x2e;" u2="H" k="23" />
-<hkern u1="&#x2e;" u2="G" k="53" />
-<hkern u1="&#x2e;" u2="E" k="23" />
-<hkern u1="&#x2e;" u2="D" k="23" />
-<hkern u1="&#x2e;" u2="C" k="53" />
-<hkern u1="&#x2e;" u2="&#x27;" k="178" />
-<hkern u1="&#x2e;" u2="&#x22;" k="178" />
-<hkern u1="&#x2e;" u2="&#xde;" k="23" />
-<hkern u1="&#x2e;" u2="v" k="29" />
-<hkern u1="&#x2e;" u2="V" k="84" />
-<hkern u1="&#x2e;" u2="Q" k="53" />
-<hkern u1="&#x2e;" u2="P" k="23" />
-<hkern u1="&#x2e;" u2="F" k="23" />
-<hkern u1="&#x2e;" u2="B" k="23" />
-<hkern u1="&#x2e;" u2="&#x39;" k="41" />
-<hkern u1="&#x2e;" u2="&#x38;" k="18" />
-<hkern u1="&#x2e;" u2="&#x37;" k="23" />
-<hkern u1="&#x2e;" u2="&#x36;" k="23" />
-<hkern u1="&#x2e;" u2="&#x35;" k="10" />
-<hkern u1="&#x2e;" u2="&#x34;" k="20" />
-<hkern u1="&#x2e;" u2="&#x31;" k="51" />
-<hkern u1="&#x2e;" u2="&#x30;" k="41" />
-<hkern u1="&#x2f;" g2="uniFB02" k="12" />
-<hkern u1="&#x2f;" g2="uniFB01" k="12" />
-<hkern u1="&#x2f;" u2="&#x178;" k="-25" />
-<hkern u1="&#x2f;" u2="&#x153;" k="41" />
-<hkern u1="&#x2f;" u2="&#xff;" k="10" />
-<hkern u1="&#x2f;" u2="&#xfe;" k="35" />
-<hkern u1="&#x2f;" u2="&#xfd;" k="10" />
-<hkern u1="&#x2f;" u2="&#xfc;" k="29" />
-<hkern u1="&#x2f;" u2="&#xfb;" k="29" />
-<hkern u1="&#x2f;" u2="&#xfa;" k="29" />
-<hkern u1="&#x2f;" u2="&#xf9;" k="29" />
-<hkern u1="&#x2f;" u2="&#xf8;" k="41" />
-<hkern u1="&#x2f;" u2="&#xf6;" k="41" />
-<hkern u1="&#x2f;" u2="&#xf5;" k="41" />
-<hkern u1="&#x2f;" u2="&#xf4;" k="41" />
-<hkern u1="&#x2f;" u2="&#xf3;" k="41" />
-<hkern u1="&#x2f;" u2="&#xf2;" k="41" />
-<hkern u1="&#x2f;" u2="&#xf1;" k="35" />
-<hkern u1="&#x2f;" u2="&#xeb;" k="41" />
-<hkern u1="&#x2f;" u2="&#xea;" k="41" />
-<hkern u1="&#x2f;" u2="&#xe9;" k="41" />
-<hkern u1="&#x2f;" u2="&#xe8;" k="41" />
-<hkern u1="&#x2f;" u2="&#xe7;" k="41" />
-<hkern u1="&#x2f;" u2="&#xe6;" k="37" />
-<hkern u1="&#x2f;" u2="&#xe5;" k="37" />
-<hkern u1="&#x2f;" u2="&#xe4;" k="37" />
-<hkern u1="&#x2f;" u2="&#xe3;" k="37" />
-<hkern u1="&#x2f;" u2="&#xe2;" k="37" />
-<hkern u1="&#x2f;" u2="&#xe1;" k="37" />
-<hkern u1="&#x2f;" u2="&#xe0;" k="37" />
-<hkern u1="&#x2f;" u2="&#xdd;" k="-25" />
-<hkern u1="&#x2f;" u2="&#xc6;" k="45" />
-<hkern u1="&#x2f;" u2="&#xc5;" k="39" />
-<hkern u1="&#x2f;" u2="&#xc4;" k="39" />
-<hkern u1="&#x2f;" u2="&#xc3;" k="39" />
-<hkern u1="&#x2f;" u2="&#xc2;" k="39" />
-<hkern u1="&#x2f;" u2="&#xc1;" k="39" />
-<hkern u1="&#x2f;" u2="&#xc0;" k="39" />
-<hkern u1="&#x2f;" u2="z" k="23" />
-<hkern u1="&#x2f;" u2="y" k="10" />
-<hkern u1="&#x2f;" u2="w" k="16" />
-<hkern u1="&#x2f;" u2="u" k="29" />
-<hkern u1="&#x2f;" u2="t" k="18" />
-<hkern u1="&#x2f;" u2="s" k="33" />
-<hkern u1="&#x2f;" u2="r" k="35" />
-<hkern u1="&#x2f;" u2="p" k="35" />
-<hkern u1="&#x2f;" u2="o" k="41" />
-<hkern u1="&#x2f;" u2="n" k="35" />
-<hkern u1="&#x2f;" u2="g" k="51" />
-<hkern u1="&#x2f;" u2="f" k="12" />
-<hkern u1="&#x2f;" u2="e" k="41" />
-<hkern u1="&#x2f;" u2="d" k="33" />
-<hkern u1="&#x2f;" u2="c" k="41" />
-<hkern u1="&#x2f;" u2="a" k="37" />
-<hkern u1="&#x2f;" u2="Y" k="-25" />
-<hkern u1="&#x2f;" u2="A" k="39" />
-<hkern u1="&#x2f;" u2="&#xf0;" k="25" />
-<hkern u1="&#x2f;" u2="&#xef;" k="-80" />
-<hkern u1="&#x2f;" u2="&#xee;" k="-35" />
-<hkern u1="&#x2f;" u2="&#xdf;" k="14" />
-<hkern u1="&#x2f;" u2="x" k="20" />
-<hkern u1="&#x2f;" u2="v" k="10" />
-<hkern u1="&#x2f;" u2="q" k="41" />
-<hkern u1="&#x2f;" u2="m" k="35" />
-<hkern u1="&#x2f;" u2="V" k="-12" />
-<hkern u1="&#x2f;" u2="M" k="16" />
-<hkern u1="&#x2f;" u2="&#x36;" k="14" />
-<hkern u1="&#x2f;" u2="&#x34;" k="25" />
-<hkern u1="&#x2f;" u2="&#x30;" k="10" />
-<hkern u1="&#x30;" u2="&#x7d;" k="49" />
-<hkern u1="&#x30;" u2="]" k="31" />
-<hkern u1="&#x30;" u2="&#x37;" k="16" />
-<hkern u1="&#x30;" u2="&#x33;" k="6" />
-<hkern u1="&#x30;" u2="&#x32;" k="8" />
-<hkern u1="&#x30;" u2="&#x29;" k="31" />
-<hkern u1="&#x31;" u2="&#x7d;" k="16" />
-<hkern u1="&#x31;" u2="]" k="10" />
-<hkern u1="&#x31;" u2="&#x30;" k="6" />
-<hkern u1="&#x32;" u2="&#x7d;" k="16" />
-<hkern u1="&#x32;" u2="&#x34;" k="27" />
-<hkern u1="&#x33;" u2="&#x7d;" k="29" />
-<hkern u1="&#x33;" u2="]" k="16" />
-<hkern u1="&#x33;" u2="&#x29;" k="14" />
-<hkern u1="&#x34;" u2="&#x7d;" k="29" />
-<hkern u1="&#x34;" u2="]" k="18" />
-<hkern u1="&#x34;" u2="&#x39;" k="10" />
-<hkern u1="&#x34;" u2="&#x37;" k="6" />
-<hkern u1="&#x34;" u2="&#x31;" k="8" />
-<hkern u1="&#x34;" u2="&#x29;" k="14" />
-<hkern u1="&#x35;" u2="&#x7d;" k="23" />
-<hkern u1="&#x35;" u2="]" k="16" />
-<hkern u1="&#x35;" u2="&#x37;" k="8" />
-<hkern u1="&#x35;" u2="&#x31;" k="14" />
-<hkern u1="&#x35;" u2="&#x29;" k="12" />
-<hkern u1="&#x36;" u2="&#x7d;" k="25" />
-<hkern u1="&#x36;" u2="]" k="18" />
-<hkern u1="&#x36;" u2="&#x37;" k="8" />
-<hkern u1="&#x36;" u2="&#x31;" k="14" />
-<hkern u1="&#x36;" u2="&#x29;" k="14" />
-<hkern u1="&#x37;" u2="&#xa2;" k="51" />
-<hkern u1="&#x37;" u2="&#x7d;" k="-10" />
-<hkern u1="&#x37;" u2="&#x37;" k="-12" />
-<hkern u1="&#x37;" u2="&#x36;" k="23" />
-<hkern u1="&#x37;" u2="&#x34;" k="82" />
-<hkern u1="&#x37;" u2="&#x30;" k="10" />
-<hkern u1="&#x38;" u2="&#x7d;" k="29" />
-<hkern u1="&#x38;" u2="]" k="16" />
-<hkern u1="&#x38;" u2="&#x29;" k="14" />
-<hkern u1="&#x39;" u2="&#x7d;" k="29" />
-<hkern u1="&#x39;" u2="]" k="16" />
-<hkern u1="&#x39;" u2="&#x37;" k="6" />
-<hkern u1="&#x39;" u2="&#x29;" k="20" />
-<hkern u1="&#x3d;" u2="&#x39;" k="16" />
-<hkern u1="&#x3d;" u2="&#x38;" k="16" />
-<hkern u1="&#x3d;" u2="&#x37;" k="49" />
-<hkern u1="&#x3d;" u2="&#x35;" k="23" />
-<hkern u1="&#x3d;" u2="&#x33;" k="27" />
-<hkern u1="&#x3d;" u2="&#x32;" k="49" />
-<hkern u1="&#x3d;" u2="&#x31;" k="45" />
-<hkern u1="&#x3d;" u2="&#x30;" k="16" />
-<hkern u1="&#x40;" u2="&#x178;" k="33" />
-<hkern u1="&#x40;" u2="&#xdd;" k="33" />
-<hkern u1="&#x40;" u2="Z" k="10" />
-<hkern u1="&#x40;" u2="Y" k="33" />
-<hkern u1="&#x40;" u2="W" k="14" />
-<hkern u1="&#x40;" u2="T" k="25" />
-<hkern u1="&#x40;" u2="&#x27;" k="31" />
-<hkern u1="&#x40;" u2="&#x22;" k="31" />
-<hkern u1="&#x40;" u2="X" k="12" />
-<hkern u1="&#x40;" u2="V" k="16" />
-<hkern u1="A" u2="&#xf0;" k="8" />
-<hkern u1="A" u2="&#x7d;" k="20" />
-<hkern u1="A" u2="v" k="41" />
-<hkern u1="A" u2="]" k="12" />
-<hkern u1="A" u2="\" k="39" />
-<hkern u1="A" u2="V" k="80" />
-<hkern u1="A" u2="Q" k="8" />
-<hkern u1="A" u2="&#x2a;" k="72" />
-<hkern u1="B" g2="uniFB02" k="35" />
-<hkern u1="B" g2="uniFB01" k="35" />
-<hkern u1="B" u2="&#x201e;" k="18" />
-<hkern u1="B" u2="&#x201d;" k="10" />
-<hkern u1="B" u2="&#x201a;" k="18" />
-<hkern u1="B" u2="&#x2019;" k="10" />
-<hkern u1="B" u2="&#x2014;" k="23" />
-<hkern u1="B" u2="&#x2013;" k="23" />
-<hkern u1="B" u2="&#x178;" k="6" />
-<hkern u1="B" u2="&#x153;" k="16" />
-<hkern u1="B" u2="&#xff;" k="31" />
-<hkern u1="B" u2="&#xfe;" k="29" />
-<hkern u1="B" u2="&#xfd;" k="31" />
-<hkern u1="B" u2="&#xfc;" k="27" />
-<hkern u1="B" u2="&#xfb;" k="27" />
-<hkern u1="B" u2="&#xfa;" k="27" />
-<hkern u1="B" u2="&#xf9;" k="27" />
-<hkern u1="B" u2="&#xf8;" k="16" />
-<hkern u1="B" u2="&#xf6;" k="16" />
-<hkern u1="B" u2="&#xf5;" k="16" />
-<hkern u1="B" u2="&#xf4;" k="16" />
-<hkern u1="B" u2="&#xf3;" k="16" />
-<hkern u1="B" u2="&#xf2;" k="16" />
-<hkern u1="B" u2="&#xf1;" k="27" />
-<hkern u1="B" u2="&#xef;" k="27" />
-<hkern u1="B" u2="&#xee;" k="27" />
-<hkern u1="B" u2="&#xed;" k="27" />
-<hkern u1="B" u2="&#xec;" k="27" />
-<hkern u1="B" u2="&#xeb;" k="16" />
-<hkern u1="B" u2="&#xea;" k="16" />
-<hkern u1="B" u2="&#xe9;" k="16" />
-<hkern u1="B" u2="&#xe8;" k="16" />
-<hkern u1="B" u2="&#xe7;" k="16" />
-<hkern u1="B" u2="&#xe6;" k="20" />
-<hkern u1="B" u2="&#xe5;" k="20" />
-<hkern u1="B" u2="&#xe4;" k="20" />
-<hkern u1="B" u2="&#xe3;" k="20" />
-<hkern u1="B" u2="&#xe2;" k="20" />
-<hkern u1="B" u2="&#xe1;" k="20" />
-<hkern u1="B" u2="&#xe0;" k="20" />
-<hkern u1="B" u2="&#xdd;" k="6" />
-<hkern u1="B" u2="z" k="35" />
-<hkern u1="B" u2="y" k="31" />
-<hkern u1="B" u2="w" k="33" />
-<hkern u1="B" u2="u" k="27" />
-<hkern u1="B" u2="t" k="35" />
-<hkern u1="B" u2="s" k="27" />
-<hkern u1="B" u2="r" k="27" />
-<hkern u1="B" u2="p" k="29" />
-<hkern u1="B" u2="o" k="16" />
-<hkern u1="B" u2="n" k="27" />
-<hkern u1="B" u2="l" k="27" />
-<hkern u1="B" u2="k" k="27" />
-<hkern u1="B" u2="j" k="27" />
-<hkern u1="B" u2="i" k="27" />
-<hkern u1="B" u2="h" k="27" />
-<hkern u1="B" u2="g" k="29" />
-<hkern u1="B" u2="f" k="35" />
-<hkern u1="B" u2="e" k="16" />
-<hkern u1="B" u2="d" k="16" />
-<hkern u1="B" u2="c" k="16" />
-<hkern u1="B" u2="a" k="20" />
-<hkern u1="B" u2="Y" k="6" />
-<hkern u1="B" u2="W" k="6" />
-<hkern u1="B" u2="&#x2d;" k="23" />
-<hkern u1="B" u2="&#x27;" k="12" />
-<hkern u1="B" u2="&#x22;" k="12" />
-<hkern u1="B" u2="&#xf0;" k="16" />
-<hkern u1="B" u2="&#xdf;" k="27" />
-<hkern u1="B" u2="&#x7d;" k="27" />
-<hkern u1="B" u2="x" k="37" />
-<hkern u1="B" u2="v" k="29" />
-<hkern u1="B" u2="q" k="16" />
-<hkern u1="B" u2="m" k="27" />
-<hkern u1="B" u2="b" k="27" />
-<hkern u1="B" u2="]" k="14" />
-<hkern u1="B" u2="&#x3b;" k="12" />
-<hkern u1="B" u2="&#x3a;" k="12" />
-<hkern u1="B" u2="&#x2e;" k="18" />
-<hkern u1="B" u2="&#x2c;" k="18" />
-<hkern u1="B" u2="&#x29;" k="14" />
-<hkern u1="C" u2="&#xf0;" k="27" />
-<hkern u1="C" u2="&#xef;" k="-37" />
-<hkern u1="C" u2="&#xee;" k="-31" />
-<hkern u1="C" u2="&#xdf;" k="20" />
-<hkern u1="C" u2="x" k="37" />
-<hkern u1="C" u2="v" k="76" />
-<hkern u1="C" u2="q" k="23" />
-<hkern u1="C" u2="m" k="27" />
-<hkern u1="C" u2="b" k="14" />
-<hkern u1="C" u2="Q" k="6" />
-<hkern u1="C" u2="&#x3b;" k="12" />
-<hkern u1="C" u2="&#x3a;" k="12" />
-<hkern u1="D" u2="&#xf0;" k="18" />
-<hkern u1="D" u2="&#xdf;" k="25" />
-<hkern u1="D" u2="&#x7d;" k="57" />
-<hkern u1="D" u2="x" k="18" />
-<hkern u1="D" u2="q" k="23" />
-<hkern u1="D" u2="m" k="27" />
-<hkern u1="D" u2="b" k="25" />
-<hkern u1="D" u2="]" k="33" />
-<hkern u1="D" u2="X" k="18" />
-<hkern u1="D" u2="V" k="10" />
-<hkern u1="D" u2="&#x2f;" k="14" />
-<hkern u1="D" u2="&#x2e;" k="55" />
-<hkern u1="D" u2="&#x2c;" k="55" />
-<hkern u1="D" u2="&#x29;" k="37" />
-<hkern u1="E" u2="&#xf0;" k="39" />
-<hkern u1="E" u2="&#xef;" k="-18" />
-<hkern u1="E" u2="&#xdf;" k="25" />
-<hkern u1="E" u2="x" k="16" />
-<hkern u1="E" u2="v" k="39" />
-<hkern u1="E" u2="q" k="37" />
-<hkern u1="E" u2="m" k="27" />
-<hkern u1="E" u2="b" k="16" />
-<hkern u1="E" u2="Q" k="6" />
-<hkern u1="F" g2="uniFB02" k="49" />
-<hkern u1="F" g2="uniFB01" k="49" />
-<hkern u1="F" u2="&#x203a;" k="14" />
-<hkern u1="F" u2="&#x2039;" k="23" />
-<hkern u1="F" u2="&#x201e;" k="119" />
-<hkern u1="F" u2="&#x201a;" k="119" />
-<hkern u1="F" u2="&#x2014;" k="47" />
-<hkern u1="F" u2="&#x2013;" k="47" />
-<hkern u1="F" u2="&#x178;" k="-14" />
-<hkern u1="F" u2="&#x153;" k="70" />
-<hkern u1="F" u2="&#xff;" k="41" />
-<hkern u1="F" u2="&#xfe;" k="70" />
-<hkern u1="F" u2="&#xfd;" k="41" />
-<hkern u1="F" u2="&#xfc;" k="63" />
-<hkern u1="F" u2="&#xfb;" k="63" />
-<hkern u1="F" u2="&#xfa;" k="63" />
-<hkern u1="F" u2="&#xf9;" k="63" />
-<hkern u1="F" u2="&#xf8;" k="70" />
-<hkern u1="F" u2="&#xf6;" k="70" />
-<hkern u1="F" u2="&#xf5;" k="70" />
-<hkern u1="F" u2="&#xf4;" k="70" />
-<hkern u1="F" u2="&#xf3;" k="70" />
-<hkern u1="F" u2="&#xf2;" k="70" />
-<hkern u1="F" u2="&#xf1;" k="70" />
-<hkern u1="F" u2="&#xee;" k="31" />
-<hkern u1="F" u2="&#xed;" k="31" />
-<hkern u1="F" u2="&#xec;" k="31" />
-<hkern u1="F" u2="&#xeb;" k="68" />
-<hkern u1="F" u2="&#xea;" k="68" />
-<hkern u1="F" u2="&#xe9;" k="68" />
-<hkern u1="F" u2="&#xe8;" k="68" />
-<hkern u1="F" u2="&#xe7;" k="70" />
-<hkern u1="F" u2="&#xe6;" k="88" />
-<hkern u1="F" u2="&#xe5;" k="88" />
-<hkern u1="F" u2="&#xe4;" k="88" />
-<hkern u1="F" u2="&#xe3;" k="88" />
-<hkern u1="F" u2="&#xe2;" k="88" />
-<hkern u1="F" u2="&#xe1;" k="88" />
-<hkern u1="F" u2="&#xe0;" k="88" />
-<hkern u1="F" u2="&#xdd;" k="-14" />
-<hkern u1="F" u2="&#xc6;" k="84" />
-<hkern u1="F" u2="&#xc5;" k="45" />
-<hkern u1="F" u2="&#xc4;" k="45" />
-<hkern u1="F" u2="&#xc3;" k="45" />
-<hkern u1="F" u2="&#xc2;" k="45" />
-<hkern u1="F" u2="&#xc1;" k="45" />
-<hkern u1="F" u2="&#xc0;" k="45" />
-<hkern u1="F" u2="&#xbb;" k="14" />
-<hkern u1="F" u2="&#xab;" k="23" />
-<hkern u1="F" u2="z" k="76" />
-<hkern u1="F" u2="y" k="41" />
-<hkern u1="F" u2="w" k="49" />
-<hkern u1="F" u2="u" k="63" />
-<hkern u1="F" u2="t" k="51" />
-<hkern u1="F" u2="s" k="57" />
-<hkern u1="F" u2="r" k="70" />
-<hkern u1="F" u2="p" k="70" />
-<hkern u1="F" u2="o" k="70" />
-<hkern u1="F" u2="n" k="70" />
-<hkern u1="F" u2="l" k="29" />
-<hkern u1="F" u2="k" k="29" />
-<hkern u1="F" u2="j" k="33" />
-<hkern u1="F" u2="i" k="31" />
-<hkern u1="F" u2="h" k="29" />
-<hkern u1="F" u2="g" k="88" />
-<hkern u1="F" u2="f" k="49" />
-<hkern u1="F" u2="e" k="68" />
-<hkern u1="F" u2="d" k="66" />
-<hkern u1="F" u2="c" k="70" />
-<hkern u1="F" u2="a" k="88" />
-<hkern u1="F" u2="Y" k="-14" />
-<hkern u1="F" u2="J" k="215" />
-<hkern u1="F" u2="A" k="45" />
-<hkern u1="F" u2="&#x2d;" k="47" />
-<hkern u1="F" u2="&#xf0;" k="59" />
-<hkern u1="F" u2="&#xef;" k="-55" />
-<hkern u1="F" u2="&#xdf;" k="47" />
-<hkern u1="F" u2="x" k="68" />
-<hkern u1="F" u2="v" k="39" />
-<hkern u1="F" u2="q" k="68" />
-<hkern u1="F" u2="m" k="70" />
-<hkern u1="F" u2="b" k="29" />
-<hkern u1="F" u2="M" k="12" />
-<hkern u1="F" u2="&#x3b;" k="25" />
-<hkern u1="F" u2="&#x3a;" k="25" />
-<hkern u1="F" u2="&#x2f;" k="33" />
-<hkern u1="F" u2="&#x2e;" k="119" />
-<hkern u1="F" u2="&#x2c;" k="119" />
-<hkern u1="G" u2="&#xf0;" k="12" />
-<hkern u1="G" u2="&#xdf;" k="20" />
-<hkern u1="G" u2="&#x7d;" k="14" />
-<hkern u1="G" u2="x" k="25" />
-<hkern u1="G" u2="v" k="25" />
-<hkern u1="G" u2="q" k="12" />
-<hkern u1="G" u2="m" k="20" />
-<hkern u1="G" u2="b" k="16" />
-<hkern u1="G" u2="&#x2e;" k="10" />
-<hkern u1="G" u2="&#x2c;" k="10" />
-<hkern u1="G" u2="&#x2a;" k="10" />
-<hkern u1="H" u2="&#xf0;" k="37" />
-<hkern u1="H" u2="&#xdf;" k="27" />
-<hkern u1="H" u2="&#x7d;" k="12" />
-<hkern u1="H" u2="x" k="33" />
-<hkern u1="H" u2="v" k="31" />
-<hkern u1="H" u2="q" k="39" />
-<hkern u1="H" u2="m" k="27" />
-<hkern u1="H" u2="b" k="29" />
-<hkern u1="H" u2="&#x3b;" k="14" />
-<hkern u1="H" u2="&#x3a;" k="14" />
-<hkern u1="H" u2="&#x2f;" k="10" />
-<hkern u1="H" u2="&#x2e;" k="23" />
-<hkern u1="H" u2="&#x2c;" k="23" />
-<hkern u1="H" u2="&#x2a;" k="12" />
-<hkern u1="I" u2="&#xf0;" k="37" />
-<hkern u1="I" u2="&#xdf;" k="27" />
-<hkern u1="I" u2="&#x7d;" k="12" />
-<hkern u1="I" u2="x" k="33" />
-<hkern u1="I" u2="v" k="31" />
-<hkern u1="I" u2="q" k="39" />
-<hkern u1="I" u2="m" k="27" />
-<hkern u1="I" u2="b" k="29" />
-<hkern u1="I" u2="&#x3b;" k="14" />
-<hkern u1="I" u2="&#x3a;" k="14" />
-<hkern u1="I" u2="&#x2f;" k="10" />
-<hkern u1="I" u2="&#x2e;" k="23" />
-<hkern u1="I" u2="&#x2c;" k="23" />
-<hkern u1="I" u2="&#x2a;" k="12" />
-<hkern u1="K" u2="&#xf0;" k="74" />
-<hkern u1="K" u2="&#xef;" k="-31" />
-<hkern u1="K" u2="&#xdf;" k="45" />
-<hkern u1="K" u2="&#xde;" k="10" />
-<hkern u1="K" u2="x" k="10" />
-<hkern u1="K" u2="v" k="100" />
-<hkern u1="K" u2="q" k="61" />
-<hkern u1="K" u2="m" k="43" />
-<hkern u1="K" u2="b" k="37" />
-<hkern u1="K" u2="Q" k="74" />
-<hkern u1="K" u2="P" k="10" />
-<hkern u1="K" u2="F" k="10" />
-<hkern u1="K" u2="B" k="10" />
-<hkern u1="L" u2="&#xf0;" k="14" />
-<hkern u1="L" u2="&#xb7;" k="82" />
-<hkern u1="L" u2="&#x7d;" k="59" />
-<hkern u1="L" u2="v" k="41" />
-<hkern u1="L" u2="]" k="31" />
-<hkern u1="L" u2="\" k="47" />
-<hkern u1="L" u2="V" k="154" />
-<hkern u1="L" u2="Q" k="20" />
-<hkern u1="L" u2="&#x3f;" k="12" />
-<hkern u1="L" u2="&#x2a;" k="96" />
-<hkern u1="M" g2="uniFB02" k="29" />
-<hkern u1="M" g2="uniFB01" k="29" />
-<hkern u1="M" u2="&#x201d;" k="25" />
-<hkern u1="M" u2="&#x2019;" k="25" />
-<hkern u1="M" u2="&#x2014;" k="31" />
-<hkern u1="M" u2="&#x2013;" k="31" />
-<hkern u1="M" u2="&#x178;" k="35" />
-<hkern u1="M" u2="&#x153;" k="18" />
-<hkern u1="M" u2="&#xff;" k="35" />
-<hkern u1="M" u2="&#xfe;" k="18" />
-<hkern u1="M" u2="&#xfd;" k="35" />
-<hkern u1="M" u2="&#xfc;" k="23" />
-<hkern u1="M" u2="&#xfb;" k="23" />
-<hkern u1="M" u2="&#xfa;" k="23" />
-<hkern u1="M" u2="&#xf9;" k="23" />
-<hkern u1="M" u2="&#xf8;" k="18" />
-<hkern u1="M" u2="&#xf6;" k="18" />
-<hkern u1="M" u2="&#xf5;" k="18" />
-<hkern u1="M" u2="&#xf4;" k="18" />
-<hkern u1="M" u2="&#xf3;" k="18" />
-<hkern u1="M" u2="&#xf2;" k="18" />
-<hkern u1="M" u2="&#xf1;" k="18" />
-<hkern u1="M" u2="&#xef;" k="18" />
-<hkern u1="M" u2="&#xee;" k="18" />
-<hkern u1="M" u2="&#xed;" k="18" />
-<hkern u1="M" u2="&#xec;" k="18" />
-<hkern u1="M" u2="&#xeb;" k="16" />
-<hkern u1="M" u2="&#xea;" k="16" />
-<hkern u1="M" u2="&#xe9;" k="16" />
-<hkern u1="M" u2="&#xe8;" k="16" />
-<hkern u1="M" u2="&#xe7;" k="18" />
-<hkern u1="M" u2="&#xe6;" k="12" />
-<hkern u1="M" u2="&#xe5;" k="12" />
-<hkern u1="M" u2="&#xe4;" k="12" />
-<hkern u1="M" u2="&#xe3;" k="12" />
-<hkern u1="M" u2="&#xe2;" k="12" />
-<hkern u1="M" u2="&#xe1;" k="12" />
-<hkern u1="M" u2="&#xe0;" k="12" />
-<hkern u1="M" u2="&#xdd;" k="35" />
-<hkern u1="M" u2="z" k="10" />
-<hkern u1="M" u2="y" k="35" />
-<hkern u1="M" u2="w" k="33" />
-<hkern u1="M" u2="u" k="23" />
-<hkern u1="M" u2="t" k="31" />
-<hkern u1="M" u2="s" k="12" />
-<hkern u1="M" u2="r" k="18" />
-<hkern u1="M" u2="p" k="18" />
-<hkern u1="M" u2="o" k="18" />
-<hkern u1="M" u2="n" k="18" />
-<hkern u1="M" u2="l" k="18" />
-<hkern u1="M" u2="k" k="18" />
-<hkern u1="M" u2="j" k="18" />
-<hkern u1="M" u2="i" k="18" />
-<hkern u1="M" u2="h" k="18" />
-<hkern u1="M" u2="g" k="10" />
-<hkern u1="M" u2="f" k="29" />
-<hkern u1="M" u2="e" k="16" />
-<hkern u1="M" u2="d" k="16" />
-<hkern u1="M" u2="c" k="18" />
-<hkern u1="M" u2="a" k="12" />
-<hkern u1="M" u2="Y" k="35" />
-<hkern u1="M" u2="W" k="18" />
-<hkern u1="M" u2="T" k="29" />
-<hkern u1="M" u2="J" k="-6" />
-<hkern u1="M" u2="&#x2d;" k="31" />
-<hkern u1="M" u2="&#x27;" k="31" />
-<hkern u1="M" u2="&#x22;" k="31" />
-<hkern u1="M" u2="&#xf0;" k="18" />
-<hkern u1="M" u2="&#xdf;" k="18" />
-<hkern u1="M" u2="&#x7d;" k="23" />
-<hkern u1="M" u2="x" k="12" />
-<hkern u1="M" u2="v" k="33" />
-<hkern u1="M" u2="q" k="16" />
-<hkern u1="M" u2="m" k="18" />
-<hkern u1="M" u2="b" k="18" />
-<hkern u1="M" u2="]" k="14" />
-<hkern u1="M" u2="\" k="16" />
-<hkern u1="M" u2="V" k="27" />
-<hkern u1="M" u2="&#x2a;" k="29" />
-<hkern u1="N" u2="&#xf0;" k="39" />
-<hkern u1="N" u2="&#xdf;" k="27" />
-<hkern u1="N" u2="&#x7d;" k="12" />
-<hkern u1="N" u2="x" k="33" />
-<hkern u1="N" u2="v" k="31" />
-<hkern u1="N" u2="q" k="39" />
-<hkern u1="N" u2="m" k="27" />
-<hkern u1="N" u2="b" k="29" />
-<hkern u1="N" u2="&#x3b;" k="12" />
-<hkern u1="N" u2="&#x3a;" k="12" />
-<hkern u1="N" u2="&#x2f;" k="10" />
-<hkern u1="N" u2="&#x2e;" k="23" />
-<hkern u1="N" u2="&#x2c;" k="23" />
-<hkern u1="N" u2="&#x2a;" k="12" />
-<hkern u1="O" u2="&#xf0;" k="18" />
-<hkern u1="O" u2="&#xdf;" k="23" />
-<hkern u1="O" u2="&#x7d;" k="55" />
-<hkern u1="O" u2="x" k="18" />
-<hkern u1="O" u2="q" k="20" />
-<hkern u1="O" u2="m" k="25" />
-<hkern u1="O" u2="b" k="23" />
-<hkern u1="O" u2="]" k="29" />
-<hkern u1="O" u2="X" k="16" />
-<hkern u1="O" u2="V" k="8" />
-<hkern u1="O" u2="&#x2f;" k="12" />
-<hkern u1="O" u2="&#x2e;" k="53" />
-<hkern u1="O" u2="&#x2c;" k="53" />
-<hkern u1="O" u2="&#x29;" k="35" />
-<hkern u1="P" g2="uniFB02" k="8" />
-<hkern u1="P" g2="uniFB01" k="8" />
-<hkern u1="P" u2="&#x2039;" k="35" />
-<hkern u1="P" u2="&#x201e;" k="127" />
-<hkern u1="P" u2="&#x201a;" k="127" />
-<hkern u1="P" u2="&#x2014;" k="57" />
-<hkern u1="P" u2="&#x2013;" k="57" />
-<hkern u1="P" u2="&#x153;" k="80" />
-<hkern u1="P" u2="&#xfe;" k="47" />
-<hkern u1="P" u2="&#xfc;" k="41" />
-<hkern u1="P" u2="&#xfb;" k="41" />
-<hkern u1="P" u2="&#xfa;" k="41" />
-<hkern u1="P" u2="&#xf9;" k="41" />
-<hkern u1="P" u2="&#xf8;" k="80" />
-<hkern u1="P" u2="&#xf6;" k="80" />
-<hkern u1="P" u2="&#xf5;" k="80" />
-<hkern u1="P" u2="&#xf4;" k="80" />
-<hkern u1="P" u2="&#xf3;" k="80" />
-<hkern u1="P" u2="&#xf2;" k="80" />
-<hkern u1="P" u2="&#xf1;" k="45" />
-<hkern u1="P" u2="&#xed;" k="29" />
-<hkern u1="P" u2="&#xec;" k="29" />
-<hkern u1="P" u2="&#xeb;" k="80" />
-<hkern u1="P" u2="&#xea;" k="80" />
-<hkern u1="P" u2="&#xe9;" k="80" />
-<hkern u1="P" u2="&#xe8;" k="80" />
-<hkern u1="P" u2="&#xe7;" k="80" />
-<hkern u1="P" u2="&#xe6;" k="55" />
-<hkern u1="P" u2="&#xe5;" k="55" />
-<hkern u1="P" u2="&#xe4;" k="55" />
-<hkern u1="P" u2="&#xe3;" k="55" />
-<hkern u1="P" u2="&#xe2;" k="55" />
-<hkern u1="P" u2="&#xe1;" k="55" />
-<hkern u1="P" u2="&#xe0;" k="55" />
-<hkern u1="P" u2="&#xc6;" k="104" />
-<hkern u1="P" u2="&#xc5;" k="61" />
-<hkern u1="P" u2="&#xc4;" k="61" />
-<hkern u1="P" u2="&#xc3;" k="61" />
-<hkern u1="P" u2="&#xc2;" k="61" />
-<hkern u1="P" u2="&#xc1;" k="61" />
-<hkern u1="P" u2="&#xc0;" k="61" />
-<hkern u1="P" u2="&#xab;" k="35" />
-<hkern u1="P" u2="z" k="25" />
-<hkern u1="P" u2="w" k="14" />
-<hkern u1="P" u2="u" k="41" />
-<hkern u1="P" u2="t" k="10" />
-<hkern u1="P" u2="s" k="45" />
-<hkern u1="P" u2="r" k="45" />
-<hkern u1="P" u2="p" k="47" />
-<hkern u1="P" u2="o" k="80" />
-<hkern u1="P" u2="n" k="45" />
-<hkern u1="P" u2="l" k="18" />
-<hkern u1="P" u2="k" k="18" />
-<hkern u1="P" u2="j" k="29" />
-<hkern u1="P" u2="i" k="29" />
-<hkern u1="P" u2="h" k="18" />
-<hkern u1="P" u2="g" k="82" />
-<hkern u1="P" u2="f" k="8" />
-<hkern u1="P" u2="e" k="80" />
-<hkern u1="P" u2="d" k="80" />
-<hkern u1="P" u2="c" k="80" />
-<hkern u1="P" u2="a" k="55" />
-<hkern u1="P" u2="Z" k="10" />
-<hkern u1="P" u2="J" k="193" />
-<hkern u1="P" u2="A" k="61" />
-<hkern u1="P" u2="&#x2d;" k="57" />
-<hkern u1="P" u2="&#xf0;" k="63" />
-<hkern u1="P" u2="&#xef;" k="-2" />
-<hkern u1="P" u2="&#xee;" k="-27" />
-<hkern u1="P" u2="&#xdf;" k="23" />
-<hkern u1="P" u2="&#x7d;" k="10" />
-<hkern u1="P" u2="x" k="18" />
-<hkern u1="P" u2="q" k="80" />
-<hkern u1="P" u2="m" k="45" />
-<hkern u1="P" u2="b" k="18" />
-<hkern u1="P" u2="X" k="8" />
-<hkern u1="P" u2="M" k="10" />
-<hkern u1="P" u2="&#x3b;" k="12" />
-<hkern u1="P" u2="&#x3a;" k="12" />
-<hkern u1="P" u2="&#x2f;" k="31" />
-<hkern u1="P" u2="&#x2e;" k="127" />
-<hkern u1="P" u2="&#x2c;" k="127" />
-<hkern u1="P" u2="&#x29;" k="10" />
-<hkern u1="Q" u2="&#x201e;" k="53" />
-<hkern u1="Q" u2="&#x201a;" k="53" />
-<hkern u1="Q" u2="&#x2014;" k="23" />
-<hkern u1="Q" u2="&#x2013;" k="23" />
-<hkern u1="Q" u2="&#x178;" k="25" />
-<hkern u1="Q" u2="&#x153;" k="23" />
-<hkern u1="Q" u2="&#xfe;" k="27" />
-<hkern u1="Q" u2="&#xfc;" k="23" />
-<hkern u1="Q" u2="&#xfb;" k="23" />
-<hkern u1="Q" u2="&#xfa;" k="23" />
-<hkern u1="Q" u2="&#xf9;" k="23" />
-<hkern u1="Q" u2="&#xf8;" k="23" />
-<hkern u1="Q" u2="&#xf6;" k="23" />
-<hkern u1="Q" u2="&#xf5;" k="23" />
-<hkern u1="Q" u2="&#xf4;" k="23" />
-<hkern u1="Q" u2="&#xf3;" k="23" />
-<hkern u1="Q" u2="&#xf2;" k="23" />
-<hkern u1="Q" u2="&#xf1;" k="25" />
-<hkern u1="Q" u2="&#xef;" k="25" />
-<hkern u1="Q" u2="&#xee;" k="25" />
-<hkern u1="Q" u2="&#xed;" k="25" />
-<hkern u1="Q" u2="&#xec;" k="25" />
-<hkern u1="Q" u2="&#xeb;" k="20" />
-<hkern u1="Q" u2="&#xea;" k="20" />
-<hkern u1="Q" u2="&#xe9;" k="20" />
-<hkern u1="Q" u2="&#xe8;" k="20" />
-<hkern u1="Q" u2="&#xe7;" k="23" />
-<hkern u1="Q" u2="&#xe6;" k="29" />
-<hkern u1="Q" u2="&#xe5;" k="29" />
-<hkern u1="Q" u2="&#xe4;" k="29" />
-<hkern u1="Q" u2="&#xe3;" k="29" />
-<hkern u1="Q" u2="&#xe2;" k="29" />
-<hkern u1="Q" u2="&#xe1;" k="29" />
-<hkern u1="Q" u2="&#xe0;" k="29" />
-<hkern u1="Q" u2="&#xdd;" k="25" />
-<hkern u1="Q" u2="&#xc6;" k="14" />
-<hkern u1="Q" u2="&#xc5;" k="8" />
-<hkern u1="Q" u2="&#xc4;" k="8" />
-<hkern u1="Q" u2="&#xc3;" k="8" />
-<hkern u1="Q" u2="&#xc2;" k="8" />
-<hkern u1="Q" u2="&#xc1;" k="8" />
-<hkern u1="Q" u2="&#xc0;" k="8" />
-<hkern u1="Q" u2="z" k="20" />
-<hkern u1="Q" u2="w" k="10" />
-<hkern u1="Q" u2="u" k="23" />
-<hkern u1="Q" u2="t" k="8" />
-<hkern u1="Q" u2="s" k="18" />
-<hkern u1="Q" u2="r" k="25" />
-<hkern u1="Q" u2="p" k="27" />
-<hkern u1="Q" u2="o" k="23" />
-<hkern u1="Q" u2="n" k="25" />
-<hkern u1="Q" u2="l" k="23" />
-<hkern u1="Q" u2="k" k="23" />
-<hkern u1="Q" u2="j" k="27" />
-<hkern u1="Q" u2="i" k="25" />
-<hkern u1="Q" u2="h" k="23" />
-<hkern u1="Q" u2="g" k="37" />
-<hkern u1="Q" u2="e" k="20" />
-<hkern u1="Q" u2="d" k="20" />
-<hkern u1="Q" u2="c" k="23" />
-<hkern u1="Q" u2="a" k="29" />
-<hkern u1="Q" u2="Z" k="16" />
-<hkern u1="Q" u2="Y" k="25" />
-<hkern u1="Q" u2="W" k="8" />
-<hkern u1="Q" u2="T" k="25" />
-<hkern u1="Q" u2="J" k="14" />
-<hkern u1="Q" u2="A" k="8" />
-<hkern u1="Q" u2="&#x2d;" k="23" />
-<hkern u1="Q" u2="&#x27;" k="16" />
-<hkern u1="Q" u2="&#x22;" k="16" />
-<hkern u1="Q" u2="&#xf0;" k="18" />
-<hkern u1="Q" u2="&#xdf;" k="23" />
-<hkern u1="Q" u2="&#x7d;" k="53" />
-<hkern u1="Q" u2="x" k="18" />
-<hkern u1="Q" u2="q" k="20" />
-<hkern u1="Q" u2="m" k="25" />
-<hkern u1="Q" u2="b" k="23" />
-<hkern u1="Q" u2="]" k="31" />
-<hkern u1="Q" u2="X" k="16" />
-<hkern u1="Q" u2="V" k="8" />
-<hkern u1="Q" u2="&#x2f;" k="12" />
-<hkern u1="Q" u2="&#x2e;" k="53" />
-<hkern u1="Q" u2="&#x2c;" k="53" />
-<hkern u1="Q" u2="&#x29;" k="35" />
-<hkern u1="R" u2="&#xf0;" k="59" />
-<hkern u1="R" u2="&#xee;" k="-2" />
-<hkern u1="R" u2="&#xdf;" k="33" />
-<hkern u1="R" u2="&#x7d;" k="20" />
-<hkern u1="R" u2="x" k="23" />
-<hkern u1="R" u2="v" k="27" />
-<hkern u1="R" u2="q" k="61" />
-<hkern u1="R" u2="m" k="45" />
-<hkern u1="R" u2="b" k="29" />
-<hkern u1="R" u2="]" k="12" />
-<hkern u1="R" u2="&#x2e;" k="12" />
-<hkern u1="R" u2="&#x2c;" k="12" />
-<hkern u1="S" u2="&#xdf;" k="16" />
-<hkern u1="S" u2="&#x7d;" k="10" />
-<hkern u1="S" u2="x" k="29" />
-<hkern u1="S" u2="v" k="29" />
-<hkern u1="S" u2="m" k="16" />
-<hkern u1="S" u2="b" k="16" />
-<hkern u1="S" u2="&#x2e;" k="10" />
-<hkern u1="S" u2="&#x2c;" k="10" />
-<hkern u1="S" u2="&#x2a;" k="14" />
-<hkern u1="T" u2="&#xfe;" k="109" />
-<hkern u1="T" u2="&#xf0;" k="80" />
-<hkern u1="T" u2="&#xef;" k="-111" />
-<hkern u1="T" u2="&#xee;" k="-2" />
-<hkern u1="T" u2="&#xec;" k="-37" />
-<hkern u1="T" u2="&#xe4;" k="111" />
-<hkern u1="T" u2="&#xe3;" k="109" />
-<hkern u1="T" u2="&#xdf;" k="68" />
-<hkern u1="T" u2="x" k="84" />
-<hkern u1="T" u2="v" k="82" />
-<hkern u1="T" u2="q" k="141" />
-<hkern u1="T" u2="m" k="121" />
-<hkern u1="T" u2="b" k="18" />
-<hkern u1="T" u2="V" k="-55" />
-<hkern u1="T" u2="Q" k="25" />
-<hkern u1="T" u2="M" k="29" />
-<hkern u1="T" u2="&#x40;" k="29" />
-<hkern u1="T" u2="&#x3b;" k="49" />
-<hkern u1="T" u2="&#x3a;" k="49" />
-<hkern u1="T" u2="&#x2f;" k="47" />
-<hkern u1="T" u2="&#x2e;" k="63" />
-<hkern u1="T" u2="&#x2c;" k="63" />
-<hkern u1="U" u2="&#xf0;" k="39" />
-<hkern u1="U" u2="&#xef;" k="27" />
-<hkern u1="U" u2="&#xdf;" k="45" />
-<hkern u1="U" u2="&#x7d;" k="10" />
-<hkern u1="U" u2="x" k="43" />
-<hkern u1="U" u2="v" k="27" />
-<hkern u1="U" u2="q" k="43" />
-<hkern u1="U" u2="m" k="43" />
-<hkern u1="U" u2="b" k="45" />
-<hkern u1="U" u2="X" k="6" />
-<hkern u1="U" u2="&#x3b;" k="18" />
-<hkern u1="U" u2="&#x3a;" k="18" />
-<hkern u1="U" u2="&#x2f;" k="20" />
-<hkern u1="U" u2="&#x2e;" k="51" />
-<hkern u1="U" u2="&#x2c;" k="51" />
-<hkern u1="V" g2="uniFB02" k="53" />
-<hkern u1="V" g2="uniFB01" k="53" />
-<hkern u1="V" u2="&#x203a;" k="25" />
-<hkern u1="V" u2="&#x2039;" k="72" />
-<hkern u1="V" u2="&#x201e;" k="84" />
-<hkern u1="V" u2="&#x201a;" k="84" />
-<hkern u1="V" u2="&#x2014;" k="68" />
-<hkern u1="V" u2="&#x2013;" k="68" />
-<hkern u1="V" u2="&#x178;" k="-33" />
-<hkern u1="V" u2="&#x153;" k="160" />
-<hkern u1="V" u2="&#x152;" k="8" />
-<hkern u1="V" u2="&#xff;" k="43" />
-<hkern u1="V" u2="&#xfd;" k="43" />
-<hkern u1="V" u2="&#xfc;" k="80" />
-<hkern u1="V" u2="&#xfb;" k="80" />
-<hkern u1="V" u2="&#xfa;" k="80" />
-<hkern u1="V" u2="&#xf9;" k="80" />
-<hkern u1="V" u2="&#xf8;" k="160" />
-<hkern u1="V" u2="&#xf5;" k="160" />
-<hkern u1="V" u2="&#xf4;" k="160" />
-<hkern u1="V" u2="&#xf3;" k="160" />
-<hkern u1="V" u2="&#xf2;" k="160" />
-<hkern u1="V" u2="&#xf1;" k="113" />
-<hkern u1="V" u2="&#xed;" k="16" />
-<hkern u1="V" u2="&#xea;" k="158" />
-<hkern u1="V" u2="&#xe9;" k="158" />
-<hkern u1="V" u2="&#xe8;" k="158" />
-<hkern u1="V" u2="&#xe7;" k="162" />
-<hkern u1="V" u2="&#xe6;" k="188" />
-<hkern u1="V" u2="&#xe5;" k="188" />
-<hkern u1="V" u2="&#xe1;" k="188" />
-<hkern u1="V" u2="&#xe0;" k="188" />
-<hkern u1="V" u2="&#xdd;" k="-33" />
-<hkern u1="V" u2="&#xd8;" k="8" />
-<hkern u1="V" u2="&#xd6;" k="8" />
-<hkern u1="V" u2="&#xd5;" k="8" />
-<hkern u1="V" u2="&#xd4;" k="8" />
-<hkern u1="V" u2="&#xd3;" k="8" />
-<hkern u1="V" u2="&#xd2;" k="8" />
-<hkern u1="V" u2="&#xc7;" k="8" />
-<hkern u1="V" u2="&#xc6;" k="137" />
-<hkern u1="V" u2="&#xc5;" k="82" />
-<hkern u1="V" u2="&#xc4;" k="82" />
-<hkern u1="V" u2="&#xc3;" k="82" />
-<hkern u1="V" u2="&#xc2;" k="82" />
-<hkern u1="V" u2="&#xc1;" k="82" />
-<hkern u1="V" u2="&#xc0;" k="82" />
-<hkern u1="V" u2="&#xbb;" k="25" />
-<hkern u1="V" u2="&#xab;" k="72" />
-<hkern u1="V" u2="z" k="80" />
-<hkern u1="V" u2="y" k="43" />
-<hkern u1="V" u2="w" k="66" />
-<hkern u1="V" u2="u" k="80" />
-<hkern u1="V" u2="t" k="51" />
-<hkern u1="V" u2="s" k="174" />
-<hkern u1="V" u2="r" k="113" />
-<hkern u1="V" u2="p" k="115" />
-<hkern u1="V" u2="o" k="160" />
-<hkern u1="V" u2="n" k="113" />
-<hkern u1="V" u2="l" k="18" />
-<hkern u1="V" u2="k" k="18" />
-<hkern u1="V" u2="j" k="16" />
-<hkern u1="V" u2="i" k="16" />
-<hkern u1="V" u2="h" k="18" />
-<hkern u1="V" u2="g" k="168" />
-<hkern u1="V" u2="f" k="53" />
-<hkern u1="V" u2="e" k="158" />
-<hkern u1="V" u2="d" k="156" />
-<hkern u1="V" u2="c" k="162" />
-<hkern u1="V" u2="a" k="188" />
-<hkern u1="V" u2="Y" k="-33" />
-<hkern u1="V" u2="T" k="-55" />
-<hkern u1="V" u2="O" k="8" />
-<hkern u1="V" u2="J" k="117" />
-<hkern u1="V" u2="G" k="8" />
-<hkern u1="V" u2="C" k="8" />
-<hkern u1="V" u2="A" k="82" />
-<hkern u1="V" u2="&#x2d;" k="68" />
-<hkern u1="V" u2="&#xfe;" k="74" />
-<hkern u1="V" u2="&#xf6;" k="141" />
-<hkern u1="V" u2="&#xf0;" k="80" />
-<hkern u1="V" u2="&#xef;" k="-102" />
-<hkern u1="V" u2="&#xee;" k="-37" />
-<hkern u1="V" u2="&#xec;" k="-31" />
-<hkern u1="V" u2="&#xeb;" k="135" />
-<hkern u1="V" u2="&#xe4;" k="127" />
-<hkern u1="V" u2="&#xe3;" k="129" />
-<hkern u1="V" u2="&#xe2;" k="164" />
-<hkern u1="V" u2="&#xdf;" k="53" />
-<hkern u1="V" u2="&#x7d;" k="-12" />
-<hkern u1="V" u2="x" k="72" />
-<hkern u1="V" u2="v" k="45" />
-<hkern u1="V" u2="q" k="158" />
-<hkern u1="V" u2="m" k="113" />
-<hkern u1="V" u2="b" k="18" />
-<hkern u1="V" u2="]" k="-12" />
-<hkern u1="V" u2="\" k="-12" />
-<hkern u1="V" u2="Q" k="8" />
-<hkern u1="V" u2="M" k="29" />
-<hkern u1="V" u2="&#x40;" k="20" />
-<hkern u1="V" u2="&#x3b;" k="41" />
-<hkern u1="V" u2="&#x3a;" k="41" />
-<hkern u1="V" u2="&#x2f;" k="51" />
-<hkern u1="V" u2="&#x2e;" k="84" />
-<hkern u1="V" u2="&#x2c;" k="84" />
-<hkern u1="W" u2="&#xf0;" k="80" />
-<hkern u1="W" u2="&#xef;" k="-47" />
-<hkern u1="W" u2="&#xee;" k="-4" />
-<hkern u1="W" u2="&#xdf;" k="61" />
-<hkern u1="W" u2="&#xde;" k="6" />
-<hkern u1="W" u2="x" k="74" />
-<hkern u1="W" u2="v" k="49" />
-<hkern u1="W" u2="q" k="104" />
-<hkern u1="W" u2="m" k="90" />
-<hkern u1="W" u2="b" k="33" />
-<hkern u1="W" u2="Q" k="8" />
-<hkern u1="W" u2="P" k="6" />
-<hkern u1="W" u2="M" k="18" />
-<hkern u1="W" u2="F" k="6" />
-<hkern u1="W" u2="B" k="6" />
-<hkern u1="W" u2="&#x40;" k="14" />
-<hkern u1="W" u2="&#x3b;" k="39" />
-<hkern u1="W" u2="&#x3a;" k="39" />
-<hkern u1="W" u2="&#x2f;" k="43" />
-<hkern u1="W" u2="&#x2e;" k="74" />
-<hkern u1="W" u2="&#x2c;" k="74" />
-<hkern u1="X" g2="uniFB02" k="66" />
-<hkern u1="X" g2="uniFB01" k="66" />
-<hkern u1="X" u2="&#x2039;" k="16" />
-<hkern u1="X" u2="&#x2014;" k="66" />
-<hkern u1="X" u2="&#x2013;" k="66" />
-<hkern u1="X" u2="&#x153;" k="45" />
-<hkern u1="X" u2="&#x152;" k="16" />
-<hkern u1="X" u2="&#xff;" k="80" />
-<hkern u1="X" u2="&#xfe;" k="35" />
-<hkern u1="X" u2="&#xfd;" k="80" />
-<hkern u1="X" u2="&#xfc;" k="51" />
-<hkern u1="X" u2="&#xfb;" k="51" />
-<hkern u1="X" u2="&#xfa;" k="51" />
-<hkern u1="X" u2="&#xf9;" k="51" />
-<hkern u1="X" u2="&#xf8;" k="45" />
-<hkern u1="X" u2="&#xf6;" k="45" />
-<hkern u1="X" u2="&#xf5;" k="45" />
-<hkern u1="X" u2="&#xf4;" k="45" />
-<hkern u1="X" u2="&#xf3;" k="45" />
-<hkern u1="X" u2="&#xf2;" k="45" />
-<hkern u1="X" u2="&#xf1;" k="35" />
-<hkern u1="X" u2="&#xee;" k="25" />
-<hkern u1="X" u2="&#xed;" k="25" />
-<hkern u1="X" u2="&#xec;" k="25" />
-<hkern u1="X" u2="&#xeb;" k="43" />
-<hkern u1="X" u2="&#xea;" k="43" />
-<hkern u1="X" u2="&#xe9;" k="43" />
-<hkern u1="X" u2="&#xe8;" k="43" />
-<hkern u1="X" u2="&#xe7;" k="45" />
-<hkern u1="X" u2="&#xe6;" k="25" />
-<hkern u1="X" u2="&#xe5;" k="25" />
-<hkern u1="X" u2="&#xe4;" k="25" />
-<hkern u1="X" u2="&#xe3;" k="25" />
-<hkern u1="X" u2="&#xe2;" k="25" />
-<hkern u1="X" u2="&#xe1;" k="25" />
-<hkern u1="X" u2="&#xe0;" k="25" />
-<hkern u1="X" u2="&#xdc;" k="6" />
-<hkern u1="X" u2="&#xdb;" k="6" />
-<hkern u1="X" u2="&#xda;" k="6" />
-<hkern u1="X" u2="&#xd9;" k="6" />
-<hkern u1="X" u2="&#xd8;" k="16" />
-<hkern u1="X" u2="&#xd6;" k="16" />
-<hkern u1="X" u2="&#xd5;" k="16" />
-<hkern u1="X" u2="&#xd4;" k="16" />
-<hkern u1="X" u2="&#xd3;" k="16" />
-<hkern u1="X" u2="&#xd2;" k="16" />
-<hkern u1="X" u2="&#xc7;" k="16" />
-<hkern u1="X" u2="&#xab;" k="16" />
-<hkern u1="X" u2="z" k="16" />
-<hkern u1="X" u2="y" k="80" />
-<hkern u1="X" u2="w" k="80" />
-<hkern u1="X" u2="u" k="51" />
-<hkern u1="X" u2="t" k="66" />
-<hkern u1="X" u2="s" k="25" />
-<hkern u1="X" u2="r" k="35" />
-<hkern u1="X" u2="p" k="35" />
-<hkern u1="X" u2="o" k="45" />
-<hkern u1="X" u2="n" k="35" />
-<hkern u1="X" u2="l" k="29" />
-<hkern u1="X" u2="k" k="29" />
-<hkern u1="X" u2="j" k="25" />
-<hkern u1="X" u2="i" k="25" />
-<hkern u1="X" u2="h" k="29" />
-<hkern u1="X" u2="g" k="14" />
-<hkern u1="X" u2="f" k="66" />
-<hkern u1="X" u2="e" k="43" />
-<hkern u1="X" u2="d" k="43" />
-<hkern u1="X" u2="c" k="45" />
-<hkern u1="X" u2="a" k="25" />
-<hkern u1="X" u2="U" k="6" />
-<hkern u1="X" u2="O" k="16" />
-<hkern u1="X" u2="J" k="-10" />
-<hkern u1="X" u2="G" k="16" />
-<hkern u1="X" u2="C" k="16" />
-<hkern u1="X" u2="&#x2d;" k="66" />
-<hkern u1="X" u2="&#xf0;" k="49" />
-<hkern u1="X" u2="&#xef;" k="-18" />
-<hkern u1="X" u2="&#xdf;" k="35" />
-<hkern u1="X" u2="x" k="16" />
-<hkern u1="X" u2="v" k="80" />
-<hkern u1="X" u2="q" k="43" />
-<hkern u1="X" u2="m" k="35" />
-<hkern u1="X" u2="b" k="29" />
-<hkern u1="X" u2="Q" k="16" />
-<hkern u1="Y" u2="&#xfe;" k="70" />
-<hkern u1="Y" u2="&#xfc;" k="147" />
-<hkern u1="Y" u2="&#xf6;" k="139" />
-<hkern u1="Y" u2="&#xf5;" k="174" />
-<hkern u1="Y" u2="&#xf0;" k="80" />
-<hkern u1="Y" u2="&#xef;" k="-113" />
-<hkern u1="Y" u2="&#xee;" k="-8" />
-<hkern u1="Y" u2="&#xec;" k="-31" />
-<hkern u1="Y" u2="&#xeb;" k="135" />
-<hkern u1="Y" u2="&#xe5;" k="180" />
-<hkern u1="Y" u2="&#xe4;" k="115" />
-<hkern u1="Y" u2="&#xe3;" k="125" />
-<hkern u1="Y" u2="&#xe2;" k="195" />
-<hkern u1="Y" u2="&#xdf;" k="70" />
-<hkern u1="Y" u2="&#x7d;" k="-27" />
-<hkern u1="Y" u2="x" k="84" />
-<hkern u1="Y" u2="v" k="80" />
-<hkern u1="Y" u2="q" k="217" />
-<hkern u1="Y" u2="m" k="164" />
-<hkern u1="Y" u2="b" k="18" />
-<hkern u1="Y" u2="]" k="-27" />
-<hkern u1="Y" u2="\" k="-27" />
-<hkern u1="Y" u2="V" k="-35" />
-<hkern u1="Y" u2="Q" k="25" />
-<hkern u1="Y" u2="M" k="35" />
-<hkern u1="Y" u2="&#x40;" k="39" />
-<hkern u1="Y" u2="&#x3b;" k="55" />
-<hkern u1="Y" u2="&#x3a;" k="55" />
-<hkern u1="Y" u2="&#x2f;" k="59" />
-<hkern u1="Y" u2="&#x2e;" k="76" />
-<hkern u1="Y" u2="&#x2c;" k="76" />
-<hkern u1="Y" u2="&#x29;" k="-14" />
-<hkern u1="Z" u2="&#xf0;" k="63" />
-<hkern u1="Z" u2="&#xef;" k="-55" />
-<hkern u1="Z" u2="&#xee;" k="-2" />
-<hkern u1="Z" u2="&#xec;" k="-2" />
-<hkern u1="Z" u2="&#xdf;" k="37" />
-<hkern u1="Z" u2="x" k="25" />
-<hkern u1="Z" u2="v" k="74" />
-<hkern u1="Z" u2="q" k="53" />
-<hkern u1="Z" u2="m" k="39" />
-<hkern u1="Z" u2="b" k="25" />
-<hkern u1="Z" u2="Q" k="16" />
-<hkern u1="Z" u2="&#x3b;" k="10" />
-<hkern u1="Z" u2="&#x3a;" k="10" />
-<hkern u1="[" g2="uniFB02" k="31" />
-<hkern u1="[" g2="uniFB01" k="31" />
-<hkern u1="[" u2="&#x178;" k="-25" />
-<hkern u1="[" u2="&#x153;" k="63" />
-<hkern u1="[" u2="&#x152;" k="31" />
-<hkern u1="[" u2="&#xff;" k="29" />
-<hkern u1="[" u2="&#xfe;" k="45" />
-<hkern u1="[" u2="&#xfd;" k="29" />
-<hkern u1="[" u2="&#xfc;" k="51" />
-<hkern u1="[" u2="&#xfb;" k="51" />
-<hkern u1="[" u2="&#xfa;" k="51" />
-<hkern u1="[" u2="&#xf9;" k="51" />
-<hkern u1="[" u2="&#xf8;" k="63" />
-<hkern u1="[" u2="&#xf6;" k="63" />
-<hkern u1="[" u2="&#xf5;" k="63" />
-<hkern u1="[" u2="&#xf4;" k="63" />
-<hkern u1="[" u2="&#xf3;" k="63" />
-<hkern u1="[" u2="&#xf2;" k="63" />
-<hkern u1="[" u2="&#xf1;" k="49" />
-<hkern u1="[" u2="&#xeb;" k="63" />
-<hkern u1="[" u2="&#xea;" k="63" />
-<hkern u1="[" u2="&#xe9;" k="63" />
-<hkern u1="[" u2="&#xe8;" k="63" />
-<hkern u1="[" u2="&#xe7;" k="63" />
-<hkern u1="[" u2="&#xe6;" k="61" />
-<hkern u1="[" u2="&#xe5;" k="61" />
-<hkern u1="[" u2="&#xe4;" k="61" />
-<hkern u1="[" u2="&#xe3;" k="61" />
-<hkern u1="[" u2="&#xe2;" k="61" />
-<hkern u1="[" u2="&#xe1;" k="61" />
-<hkern u1="[" u2="&#xe0;" k="61" />
-<hkern u1="[" u2="&#xdd;" k="-25" />
-<hkern u1="[" u2="&#xd8;" k="31" />
-<hkern u1="[" u2="&#xd6;" k="31" />
-<hkern u1="[" u2="&#xd5;" k="31" />
-<hkern u1="[" u2="&#xd4;" k="31" />
-<hkern u1="[" u2="&#xd3;" k="31" />
-<hkern u1="[" u2="&#xd2;" k="31" />
-<hkern u1="[" u2="&#xc7;" k="31" />
-<hkern u1="[" u2="&#xc5;" k="10" />
-<hkern u1="[" u2="&#xc4;" k="10" />
-<hkern u1="[" u2="&#xc3;" k="10" />
-<hkern u1="[" u2="&#xc2;" k="10" />
-<hkern u1="[" u2="&#xc1;" k="10" />
-<hkern u1="[" u2="&#xc0;" k="10" />
-<hkern u1="[" u2="z" k="35" />
-<hkern u1="[" u2="y" k="29" />
-<hkern u1="[" u2="w" k="33" />
-<hkern u1="[" u2="u" k="51" />
-<hkern u1="[" u2="t" k="51" />
-<hkern u1="[" u2="s" k="59" />
-<hkern u1="[" u2="r" k="49" />
-<hkern u1="[" u2="p" k="45" />
-<hkern u1="[" u2="o" k="63" />
-<hkern u1="[" u2="n" k="49" />
-<hkern u1="[" u2="j" k="-272" />
-<hkern u1="[" u2="g" k="33" />
-<hkern u1="[" u2="f" k="31" />
-<hkern u1="[" u2="e" k="63" />
-<hkern u1="[" u2="d" k="57" />
-<hkern u1="[" u2="c" k="63" />
-<hkern u1="[" u2="a" k="61" />
-<hkern u1="[" u2="Y" k="-25" />
-<hkern u1="[" u2="O" k="31" />
-<hkern u1="[" u2="G" k="31" />
-<hkern u1="[" u2="C" k="31" />
-<hkern u1="[" u2="A" k="10" />
-<hkern u1="[" u2="&#xf0;" k="35" />
-<hkern u1="[" u2="&#xef;" k="-96" />
-<hkern u1="[" u2="&#xec;" k="-12" />
-<hkern u1="[" u2="&#xdf;" k="27" />
-<hkern u1="[" u2="x" k="33" />
-<hkern u1="[" u2="v" k="29" />
-<hkern u1="[" u2="q" k="63" />
-<hkern u1="[" u2="m" k="49" />
-<hkern u1="[" u2="V" k="-12" />
-<hkern u1="[" u2="Q" k="31" />
-<hkern u1="[" u2="M" k="14" />
-<hkern u1="[" u2="&#x38;" k="16" />
-<hkern u1="[" u2="&#x36;" k="39" />
-<hkern u1="[" u2="&#x34;" k="43" />
-<hkern u1="[" u2="&#x31;" k="12" />
-<hkern u1="[" u2="&#x30;" k="31" />
-<hkern u1="\" u2="&#x178;" k="59" />
-<hkern u1="\" u2="&#x152;" k="12" />
-<hkern u1="\" u2="&#xff;" k="16" />
-<hkern u1="\" u2="&#xfd;" k="16" />
-<hkern u1="\" u2="&#xdd;" k="59" />
-<hkern u1="\" u2="&#xdc;" k="20" />
-<hkern u1="\" u2="&#xdb;" k="20" />
-<hkern u1="\" u2="&#xda;" k="20" />
-<hkern u1="\" u2="&#xd9;" k="20" />
-<hkern u1="\" u2="&#xd8;" k="12" />
-<hkern u1="\" u2="&#xd6;" k="12" />
-<hkern u1="\" u2="&#xd5;" k="12" />
-<hkern u1="\" u2="&#xd4;" k="12" />
-<hkern u1="\" u2="&#xd3;" k="12" />
-<hkern u1="\" u2="&#xd2;" k="12" />
-<hkern u1="\" u2="&#xd1;" k="10" />
-<hkern u1="\" u2="&#xd0;" k="10" />
-<hkern u1="\" u2="&#xcf;" k="10" />
-<hkern u1="\" u2="&#xce;" k="10" />
-<hkern u1="\" u2="&#xcd;" k="10" />
-<hkern u1="\" u2="&#xcc;" k="10" />
-<hkern u1="\" u2="&#xcb;" k="10" />
-<hkern u1="\" u2="&#xca;" k="10" />
-<hkern u1="\" u2="&#xc9;" k="10" />
-<hkern u1="\" u2="&#xc8;" k="10" />
-<hkern u1="\" u2="&#xc7;" k="12" />
-<hkern u1="\" u2="&#xc6;" k="-12" />
-<hkern u1="\" u2="y" k="16" />
-<hkern u1="\" u2="w" k="12" />
-<hkern u1="\" u2="Y" k="59" />
-<hkern u1="\" u2="W" k="43" />
-<hkern u1="\" u2="U" k="20" />
-<hkern u1="\" u2="T" k="47" />
-<hkern u1="\" u2="R" k="10" />
-<hkern u1="\" u2="O" k="12" />
-<hkern u1="\" u2="N" k="10" />
-<hkern u1="\" u2="L" k="10" />
-<hkern u1="\" u2="K" k="10" />
-<hkern u1="\" u2="J" k="-23" />
-<hkern u1="\" u2="I" k="10" />
-<hkern u1="\" u2="H" k="10" />
-<hkern u1="\" u2="G" k="12" />
-<hkern u1="\" u2="E" k="10" />
-<hkern u1="\" u2="D" k="10" />
-<hkern u1="\" u2="C" k="12" />
-<hkern u1="\" u2="&#x27;" k="53" />
-<hkern u1="\" u2="&#x22;" k="53" />
-<hkern u1="\" u2="&#xde;" k="10" />
-<hkern u1="\" u2="v" k="14" />
-<hkern u1="\" u2="V" k="51" />
-<hkern u1="\" u2="Q" k="12" />
-<hkern u1="\" u2="P" k="10" />
-<hkern u1="\" u2="F" k="10" />
-<hkern u1="\" u2="B" k="10" />
-<hkern u1="\" u2="&#x39;" k="14" />
-<hkern u1="\" u2="&#x37;" k="12" />
-<hkern u1="\" u2="&#x31;" k="25" />
-<hkern u1="\" u2="&#x30;" k="14" />
-<hkern u1="a" u2="&#x7d;" k="61" />
-<hkern u1="a" u2="]" k="49" />
-<hkern u1="a" u2="\" k="43" />
-<hkern u1="a" u2="X" k="31" />
-<hkern u1="a" u2="V" k="141" />
-<hkern u1="a" u2="Q" k="29" />
-<hkern u1="a" u2="P" k="29" />
-<hkern u1="a" u2="M" k="18" />
-<hkern u1="a" u2="F" k="29" />
-<hkern u1="a" u2="B" k="29" />
-<hkern u1="a" u2="&#x3f;" k="51" />
-<hkern u1="a" u2="&#x2a;" k="66" />
-<hkern u1="a" u2="&#x29;" k="20" />
-<hkern u1="a" u2="&#x21;" k="16" />
-<hkern u1="b" u2="&#x7d;" k="82" />
-<hkern u1="b" u2="]" k="55" />
-<hkern u1="b" u2="\" k="33" />
-<hkern u1="b" u2="X" k="43" />
-<hkern u1="b" u2="V" k="156" />
-<hkern u1="b" u2="Q" k="20" />
-<hkern u1="b" u2="P" k="39" />
-<hkern u1="b" u2="M" k="16" />
-<hkern u1="b" u2="F" k="39" />
-<hkern u1="b" u2="B" k="39" />
-<hkern u1="b" u2="&#x3f;" k="47" />
-<hkern u1="b" u2="&#x2a;" k="78" />
-<hkern u1="b" u2="&#x29;" k="33" />
-<hkern u1="b" u2="&#x21;" k="12" />
-<hkern u1="c" u2="&#x7d;" k="80" />
-<hkern u1="c" u2="]" k="61" />
-<hkern u1="c" u2="\" k="35" />
-<hkern u1="c" u2="X" k="29" />
-<hkern u1="c" u2="V" k="147" />
-<hkern u1="c" u2="Q" k="23" />
-<hkern u1="c" u2="P" k="35" />
-<hkern u1="c" u2="M" k="12" />
-<hkern u1="c" u2="F" k="35" />
-<hkern u1="c" u2="B" k="35" />
-<hkern u1="c" u2="&#x3f;" k="49" />
-<hkern u1="c" u2="&#x2a;" k="72" />
-<hkern u1="c" u2="&#x29;" k="29" />
-<hkern u1="c" u2="&#x21;" k="12" />
-<hkern u1="d" u2="&#x7d;" k="12" />
-<hkern u1="d" u2="X" k="27" />
-<hkern u1="d" u2="V" k="18" />
-<hkern u1="d" u2="Q" k="23" />
-<hkern u1="d" u2="P" k="29" />
-<hkern u1="d" u2="M" k="18" />
-<hkern u1="d" u2="F" k="29" />
-<hkern u1="d" u2="B" k="29" />
-<hkern u1="d" u2="&#x3f;" k="12" />
-<hkern u1="d" u2="&#x21;" k="12" />
-<hkern u1="e" u2="&#x7d;" k="84" />
-<hkern u1="e" u2="]" k="59" />
-<hkern u1="e" u2="\" k="37" />
-<hkern u1="e" u2="X" k="35" />
-<hkern u1="e" u2="V" k="195" />
-<hkern u1="e" u2="Q" k="18" />
-<hkern u1="e" u2="P" k="35" />
-<hkern u1="e" u2="M" k="14" />
-<hkern u1="e" u2="F" k="35" />
-<hkern u1="e" u2="B" k="35" />
-<hkern u1="e" u2="&#x3f;" k="53" />
-<hkern u1="e" u2="&#x2a;" k="76" />
-<hkern u1="e" u2="&#x29;" k="29" />
-<hkern u1="e" u2="&#x21;" k="16" />
-<hkern u1="f" u2="&#xef;" k="-244" />
-<hkern u1="f" u2="&#xee;" k="-164" />
-<hkern u1="f" u2="&#xed;" k="-104" />
-<hkern u1="f" u2="&#xec;" k="-160" />
-<hkern u1="f" u2="&#x7d;" k="-117" />
-<hkern u1="f" u2="]" k="-117" />
-<hkern u1="f" u2="\" k="-113" />
-<hkern u1="f" u2="X" k="-66" />
-<hkern u1="f" u2="V" k="-147" />
-<hkern u1="f" u2="M" k="18" />
-<hkern u1="f" u2="&#x3f;" k="-45" />
-<hkern u1="f" u2="&#x2f;" k="10" />
-<hkern u1="f" u2="&#x2e;" k="10" />
-<hkern u1="f" u2="&#x2c;" k="10" />
-<hkern u1="f" u2="&#x2a;" k="-78" />
-<hkern u1="f" u2="&#x29;" k="-113" />
-<hkern u1="g" u2="&#x7d;" k="59" />
-<hkern u1="g" u2="]" k="41" />
-<hkern u1="g" u2="\" k="14" />
-<hkern u1="g" u2="X" k="78" />
-<hkern u1="g" u2="V" k="55" />
-<hkern u1="g" u2="P" k="33" />
-<hkern u1="g" u2="M" k="27" />
-<hkern u1="g" u2="F" k="33" />
-<hkern u1="g" u2="B" k="33" />
-<hkern u1="g" u2="&#x3f;" k="37" />
-<hkern u1="g" u2="&#x2f;" k="10" />
-<hkern u1="g" u2="&#x2e;" k="12" />
-<hkern u1="g" u2="&#x2c;" k="12" />
-<hkern u1="g" u2="&#x2a;" k="12" />
-<hkern u1="g" u2="&#x29;" k="43" />
-<hkern u1="g" u2="&#x21;" k="14" />
-<hkern u1="h" u2="&#x7d;" k="59" />
-<hkern u1="h" u2="]" k="43" />
-<hkern u1="h" u2="\" k="39" />
-<hkern u1="h" u2="X" k="29" />
-<hkern u1="h" u2="V" k="152" />
-<hkern u1="h" u2="Q" k="31" />
-<hkern u1="h" u2="P" k="31" />
-<hkern u1="h" u2="M" k="16" />
-<hkern u1="h" u2="F" k="31" />
-<hkern u1="h" u2="B" k="31" />
-<hkern u1="h" u2="&#x3f;" k="47" />
-<hkern u1="h" u2="&#x2a;" k="74" />
-<hkern u1="h" u2="&#x29;" k="14" />
-<hkern u1="h" u2="&#x21;" k="12" />
-<hkern u1="i" u2="&#xef;" k="-12" />
-<hkern u1="i" u2="&#x7d;" k="12" />
-<hkern u1="i" u2="]" k="10" />
-<hkern u1="i" u2="X" k="27" />
-<hkern u1="i" u2="V" k="16" />
-<hkern u1="i" u2="Q" k="25" />
-<hkern u1="i" u2="P" k="29" />
-<hkern u1="i" u2="M" k="18" />
-<hkern u1="i" u2="F" k="29" />
-<hkern u1="i" u2="B" k="29" />
-<hkern u1="i" u2="&#x3f;" k="12" />
-<hkern u1="i" u2="&#x21;" k="12" />
-<hkern u1="j" u2="&#xef;" k="-14" />
-<hkern u1="j" u2="&#x7d;" k="12" />
-<hkern u1="j" u2="X" k="25" />
-<hkern u1="j" u2="V" k="16" />
-<hkern u1="j" u2="Q" k="27" />
-<hkern u1="j" u2="P" k="29" />
-<hkern u1="j" u2="M" k="18" />
-<hkern u1="j" u2="F" k="29" />
-<hkern u1="j" u2="B" k="29" />
-<hkern u1="j" u2="&#x3f;" k="12" />
-<hkern u1="j" u2="&#x21;" k="12" />
-<hkern u1="k" u2="&#xf0;" k="16" />
-<hkern u1="k" u2="&#x7d;" k="41" />
-<hkern u1="k" u2="q" k="16" />
-<hkern u1="k" u2="]" k="31" />
-<hkern u1="k" u2="\" k="31" />
-<hkern u1="k" u2="X" k="14" />
-<hkern u1="k" u2="V" k="82" />
-<hkern u1="k" u2="Q" k="31" />
-<hkern u1="k" u2="P" k="37" />
-<hkern u1="k" u2="M" k="8" />
-<hkern u1="k" u2="F" k="37" />
-<hkern u1="k" u2="B" k="37" />
-<hkern u1="k" u2="&#x40;" k="10" />
-<hkern u1="k" u2="&#x3f;" k="39" />
-<hkern u1="k" u2="&#x2f;" k="10" />
-<hkern u1="k" u2="&#x2a;" k="33" />
-<hkern u1="k" u2="&#x29;" k="12" />
-<hkern u1="k" u2="&#x21;" k="14" />
-<hkern u1="l" u2="&#x7d;" k="12" />
-<hkern u1="l" u2="X" k="27" />
-<hkern u1="l" u2="V" k="18" />
-<hkern u1="l" u2="Q" k="23" />
-<hkern u1="l" u2="P" k="29" />
-<hkern u1="l" u2="M" k="18" />
-<hkern u1="l" u2="F" k="29" />
-<hkern u1="l" u2="B" k="29" />
-<hkern u1="l" u2="&#x3f;" k="12" />
-<hkern u1="l" u2="&#x21;" k="12" />
-<hkern u1="m" u2="&#x201d;" k="41" />
-<hkern u1="m" u2="&#x2019;" k="41" />
-<hkern u1="m" u2="&#x178;" k="213" />
-<hkern u1="m" u2="&#x152;" k="31" />
-<hkern u1="m" u2="&#xdd;" k="213" />
-<hkern u1="m" u2="&#xdc;" k="47" />
-<hkern u1="m" u2="&#xdb;" k="47" />
-<hkern u1="m" u2="&#xda;" k="47" />
-<hkern u1="m" u2="&#xd9;" k="47" />
-<hkern u1="m" u2="&#xd8;" k="31" />
-<hkern u1="m" u2="&#xd6;" k="31" />
-<hkern u1="m" u2="&#xd5;" k="31" />
-<hkern u1="m" u2="&#xd4;" k="31" />
-<hkern u1="m" u2="&#xd3;" k="31" />
-<hkern u1="m" u2="&#xd2;" k="31" />
-<hkern u1="m" u2="&#xd1;" k="31" />
-<hkern u1="m" u2="&#xd0;" k="31" />
-<hkern u1="m" u2="&#xcf;" k="31" />
-<hkern u1="m" u2="&#xce;" k="31" />
-<hkern u1="m" u2="&#xcd;" k="31" />
-<hkern u1="m" u2="&#xcc;" k="31" />
-<hkern u1="m" u2="&#xcb;" k="31" />
-<hkern u1="m" u2="&#xca;" k="31" />
-<hkern u1="m" u2="&#xc9;" k="31" />
-<hkern u1="m" u2="&#xc8;" k="31" />
-<hkern u1="m" u2="&#xc7;" k="31" />
-<hkern u1="m" u2="w" k="6" />
-<hkern u1="m" u2="Z" k="20" />
-<hkern u1="m" u2="Y" k="213" />
-<hkern u1="m" u2="W" k="94" />
-<hkern u1="m" u2="U" k="47" />
-<hkern u1="m" u2="T" k="160" />
-<hkern u1="m" u2="S" k="31" />
-<hkern u1="m" u2="R" k="31" />
-<hkern u1="m" u2="O" k="31" />
-<hkern u1="m" u2="N" k="31" />
-<hkern u1="m" u2="L" k="31" />
-<hkern u1="m" u2="K" k="31" />
-<hkern u1="m" u2="I" k="31" />
-<hkern u1="m" u2="H" k="31" />
-<hkern u1="m" u2="G" k="31" />
-<hkern u1="m" u2="E" k="31" />
-<hkern u1="m" u2="D" k="31" />
-<hkern u1="m" u2="C" k="31" />
-<hkern u1="m" u2="&#x27;" k="92" />
-<hkern u1="m" u2="&#x22;" k="92" />
-<hkern u1="m" u2="&#x7d;" k="61" />
-<hkern u1="m" u2="]" k="49" />
-<hkern u1="m" u2="\" k="47" />
-<hkern u1="m" u2="X" k="31" />
-<hkern u1="m" u2="V" k="150" />
-<hkern u1="m" u2="Q" k="31" />
-<hkern u1="m" u2="P" k="31" />
-<hkern u1="m" u2="M" k="16" />
-<hkern u1="m" u2="F" k="31" />
-<hkern u1="m" u2="B" k="31" />
-<hkern u1="m" u2="&#x3f;" k="53" />
-<hkern u1="m" u2="&#x2a;" k="76" />
-<hkern u1="m" u2="&#x29;" k="20" />
-<hkern u1="m" u2="&#x21;" k="16" />
-<hkern u1="n" u2="&#x7d;" k="61" />
-<hkern u1="n" u2="]" k="49" />
-<hkern u1="n" u2="\" k="47" />
-<hkern u1="n" u2="X" k="31" />
-<hkern u1="n" u2="V" k="150" />
-<hkern u1="n" u2="Q" k="31" />
-<hkern u1="n" u2="P" k="31" />
-<hkern u1="n" u2="M" k="16" />
-<hkern u1="n" u2="F" k="31" />
-<hkern u1="n" u2="B" k="31" />
-<hkern u1="n" u2="&#x3f;" k="53" />
-<hkern u1="n" u2="&#x2a;" k="76" />
-<hkern u1="n" u2="&#x29;" k="20" />
-<hkern u1="n" u2="&#x21;" k="16" />
-<hkern u1="o" u2="&#x7d;" k="88" />
-<hkern u1="o" u2="x" k="6" />
-<hkern u1="o" u2="]" k="63" />
-<hkern u1="o" u2="\" k="41" />
-<hkern u1="o" u2="X" k="45" />
-<hkern u1="o" u2="V" k="160" />
-<hkern u1="o" u2="Q" k="23" />
-<hkern u1="o" u2="P" k="39" />
-<hkern u1="o" u2="M" k="18" />
-<hkern u1="o" u2="F" k="39" />
-<hkern u1="o" u2="B" k="39" />
-<hkern u1="o" u2="&#x3f;" k="55" />
-<hkern u1="o" u2="&#x2a;" k="84" />
-<hkern u1="o" u2="&#x29;" k="45" />
-<hkern u1="o" u2="&#x21;" k="18" />
-<hkern u1="p" u2="&#x201d;" k="43" />
-<hkern u1="p" u2="&#x2019;" k="43" />
-<hkern u1="p" u2="&#x178;" k="215" />
-<hkern u1="p" u2="&#x152;" k="20" />
-<hkern u1="p" u2="&#xdd;" k="215" />
-<hkern u1="p" u2="&#xdc;" k="43" />
-<hkern u1="p" u2="&#xdb;" k="43" />
-<hkern u1="p" u2="&#xda;" k="43" />
-<hkern u1="p" u2="&#xd9;" k="43" />
-<hkern u1="p" u2="&#xd8;" k="20" />
-<hkern u1="p" u2="&#xd6;" k="20" />
-<hkern u1="p" u2="&#xd5;" k="20" />
-<hkern u1="p" u2="&#xd4;" k="20" />
-<hkern u1="p" u2="&#xd3;" k="20" />
-<hkern u1="p" u2="&#xd2;" k="20" />
-<hkern u1="p" u2="&#xd1;" k="39" />
-<hkern u1="p" u2="&#xd0;" k="39" />
-<hkern u1="p" u2="&#xcf;" k="39" />
-<hkern u1="p" u2="&#xce;" k="39" />
-<hkern u1="p" u2="&#xcd;" k="39" />
-<hkern u1="p" u2="&#xcc;" k="39" />
-<hkern u1="p" u2="&#xcb;" k="39" />
-<hkern u1="p" u2="&#xca;" k="39" />
-<hkern u1="p" u2="&#xc9;" k="39" />
-<hkern u1="p" u2="&#xc8;" k="39" />
-<hkern u1="p" u2="&#xc7;" k="20" />
-<hkern u1="p" u2="Z" k="31" />
-<hkern u1="p" u2="Y" k="215" />
-<hkern u1="p" u2="W" k="104" />
-<hkern u1="p" u2="U" k="43" />
-<hkern u1="p" u2="T" k="141" />
-<hkern u1="p" u2="S" k="31" />
-<hkern u1="p" u2="R" k="39" />
-<hkern u1="p" u2="O" k="20" />
-<hkern u1="p" u2="N" k="39" />
-<hkern u1="p" u2="L" k="39" />
-<hkern u1="p" u2="K" k="39" />
-<hkern u1="p" u2="I" k="39" />
-<hkern u1="p" u2="H" k="39" />
-<hkern u1="p" u2="G" k="20" />
-<hkern u1="p" u2="E" k="39" />
-<hkern u1="p" u2="D" k="39" />
-<hkern u1="p" u2="C" k="20" />
-<hkern u1="p" u2="&#x27;" k="96" />
-<hkern u1="p" u2="&#x22;" k="96" />
-<hkern u1="p" u2="&#x7d;" k="88" />
-<hkern u1="p" u2="x" k="6" />
-<hkern u1="p" u2="]" k="63" />
-<hkern u1="p" u2="\" k="41" />
-<hkern u1="p" u2="X" k="43" />
-<hkern u1="p" u2="V" k="156" />
-<hkern u1="p" u2="Q" k="20" />
-<hkern u1="p" u2="P" k="39" />
-<hkern u1="p" u2="M" k="16" />
-<hkern u1="p" u2="F" k="39" />
-<hkern u1="p" u2="B" k="39" />
-<hkern u1="p" u2="&#x3f;" k="55" />
-<hkern u1="p" u2="&#x2a;" k="82" />
-<hkern u1="p" u2="&#x29;" k="41" />
-<hkern u1="p" u2="&#x21;" k="16" />
-<hkern u1="q" u2="&#x201d;" k="18" />
-<hkern u1="q" u2="&#x2019;" k="18" />
-<hkern u1="q" u2="&#x178;" k="162" />
-<hkern u1="q" u2="&#x152;" k="27" />
-<hkern u1="q" u2="&#xdd;" k="162" />
-<hkern u1="q" u2="&#xdc;" k="43" />
-<hkern u1="q" u2="&#xdb;" k="43" />
-<hkern u1="q" u2="&#xda;" k="43" />
-<hkern u1="q" u2="&#xd9;" k="43" />
-<hkern u1="q" u2="&#xd8;" k="27" />
-<hkern u1="q" u2="&#xd6;" k="27" />
-<hkern u1="q" u2="&#xd5;" k="27" />
-<hkern u1="q" u2="&#xd4;" k="27" />
-<hkern u1="q" u2="&#xd3;" k="27" />
-<hkern u1="q" u2="&#xd2;" k="27" />
-<hkern u1="q" u2="&#xd1;" k="27" />
-<hkern u1="q" u2="&#xd0;" k="27" />
-<hkern u1="q" u2="&#xcf;" k="27" />
-<hkern u1="q" u2="&#xce;" k="27" />
-<hkern u1="q" u2="&#xcd;" k="27" />
-<hkern u1="q" u2="&#xcc;" k="27" />
-<hkern u1="q" u2="&#xcb;" k="27" />
-<hkern u1="q" u2="&#xca;" k="27" />
-<hkern u1="q" u2="&#xc9;" k="27" />
-<hkern u1="q" u2="&#xc8;" k="27" />
-<hkern u1="q" u2="&#xc7;" k="27" />
-<hkern u1="q" u2="j" k="-174" />
-<hkern u1="q" u2="Z" k="23" />
-<hkern u1="q" u2="Y" k="162" />
-<hkern u1="q" u2="W" k="90" />
-<hkern u1="q" u2="U" k="43" />
-<hkern u1="q" u2="T" k="121" />
-<hkern u1="q" u2="S" k="33" />
-<hkern u1="q" u2="R" k="27" />
-<hkern u1="q" u2="O" k="27" />
-<hkern u1="q" u2="N" k="27" />
-<hkern u1="q" u2="L" k="27" />
-<hkern u1="q" u2="K" k="27" />
-<hkern u1="q" u2="I" k="27" />
-<hkern u1="q" u2="H" k="27" />
-<hkern u1="q" u2="G" k="27" />
-<hkern u1="q" u2="E" k="27" />
-<hkern u1="q" u2="D" k="27" />
-<hkern u1="q" u2="C" k="27" />
-<hkern u1="q" u2="&#x27;" k="78" />
-<hkern u1="q" u2="&#x22;" k="78" />
-<hkern u1="q" u2="&#x7d;" k="74" />
-<hkern u1="q" u2="]" k="59" />
-<hkern u1="q" u2="\" k="35" />
-<hkern u1="q" u2="X" k="33" />
-<hkern u1="q" u2="V" k="115" />
-<hkern u1="q" u2="Q" k="27" />
-<hkern u1="q" u2="P" k="27" />
-<hkern u1="q" u2="M" k="18" />
-<hkern u1="q" u2="F" k="27" />
-<hkern u1="q" u2="B" k="27" />
-<hkern u1="q" u2="&#x3f;" k="49" />
-<hkern u1="q" u2="&#x2a;" k="51" />
-<hkern u1="q" u2="&#x29;" k="18" />
-<hkern u1="q" u2="&#x21;" k="16" />
-<hkern u1="r" u2="&#x7d;" k="76" />
-<hkern u1="r" u2="v" k="-12" />
-<hkern u1="r" u2="q" k="6" />
-<hkern u1="r" u2="]" k="61" />
-<hkern u1="r" u2="\" k="12" />
-<hkern u1="r" u2="X" k="80" />
-<hkern u1="r" u2="V" k="51" />
-<hkern u1="r" u2="P" k="33" />
-<hkern u1="r" u2="M" k="41" />
-<hkern u1="r" u2="F" k="33" />
-<hkern u1="r" u2="B" k="33" />
-<hkern u1="r" u2="&#x3f;" k="39" />
-<hkern u1="r" u2="&#x2f;" k="20" />
-<hkern u1="r" u2="&#x2e;" k="53" />
-<hkern u1="r" u2="&#x2c;" k="53" />
-<hkern u1="r" u2="&#x2a;" k="10" />
-<hkern u1="r" u2="&#x29;" k="61" />
-<hkern u1="r" u2="&#x21;" k="12" />
-<hkern u1="s" u2="&#x7d;" k="76" />
-<hkern u1="s" u2="]" k="59" />
-<hkern u1="s" u2="\" k="35" />
-<hkern u1="s" u2="X" k="23" />
-<hkern u1="s" u2="V" k="180" />
-<hkern u1="s" u2="Q" k="27" />
-<hkern u1="s" u2="P" k="35" />
-<hkern u1="s" u2="M" k="10" />
-<hkern u1="s" u2="F" k="35" />
-<hkern u1="s" u2="B" k="35" />
-<hkern u1="s" u2="&#x3f;" k="45" />
-<hkern u1="s" u2="&#x2a;" k="59" />
-<hkern u1="s" u2="&#x29;" k="23" />
-<hkern u1="s" u2="&#x21;" k="10" />
-<hkern u1="t" u2="&#x7d;" k="68" />
-<hkern u1="t" u2="]" k="49" />
-<hkern u1="t" u2="\" k="20" />
-<hkern u1="t" u2="X" k="18" />
-<hkern u1="t" u2="V" k="74" />
-<hkern u1="t" u2="Q" k="16" />
-<hkern u1="t" u2="P" k="29" />
-<hkern u1="t" u2="M" k="8" />
-<hkern u1="t" u2="F" k="29" />
-<hkern u1="t" u2="B" k="29" />
-<hkern u1="t" u2="&#x3f;" k="39" />
-<hkern u1="t" u2="&#x2a;" k="31" />
-<hkern u1="t" u2="&#x29;" k="14" />
-<hkern u1="u" u2="&#x7d;" k="59" />
-<hkern u1="u" u2="]" k="45" />
-<hkern u1="u" u2="\" k="35" />
-<hkern u1="u" u2="X" k="33" />
-<hkern u1="u" u2="V" k="111" />
-<hkern u1="u" u2="Q" k="25" />
-<hkern u1="u" u2="P" k="27" />
-<hkern u1="u" u2="M" k="18" />
-<hkern u1="u" u2="F" k="27" />
-<hkern u1="u" u2="B" k="27" />
-<hkern u1="u" u2="&#x3f;" k="49" />
-<hkern u1="u" u2="&#x2a;" k="49" />
-<hkern u1="u" u2="&#x29;" k="23" />
-<hkern u1="u" u2="&#x21;" k="14" />
-<hkern u1="v" u2="&#x201e;" k="31" />
-<hkern u1="v" u2="&#x201a;" k="31" />
-<hkern u1="v" u2="&#x178;" k="80" />
-<hkern u1="v" u2="&#xdd;" k="80" />
-<hkern u1="v" u2="&#xdc;" k="27" />
-<hkern u1="v" u2="&#xdb;" k="27" />
-<hkern u1="v" u2="&#xda;" k="27" />
-<hkern u1="v" u2="&#xd9;" k="27" />
-<hkern u1="v" u2="&#xd1;" k="31" />
-<hkern u1="v" u2="&#xd0;" k="31" />
-<hkern u1="v" u2="&#xcf;" k="31" />
-<hkern u1="v" u2="&#xce;" k="31" />
-<hkern u1="v" u2="&#xcd;" k="31" />
-<hkern u1="v" u2="&#xcc;" k="31" />
-<hkern u1="v" u2="&#xcb;" k="31" />
-<hkern u1="v" u2="&#xca;" k="31" />
-<hkern u1="v" u2="&#xc9;" k="31" />
-<hkern u1="v" u2="&#xc8;" k="31" />
-<hkern u1="v" u2="&#xc5;" k="41" />
-<hkern u1="v" u2="&#xc4;" k="41" />
-<hkern u1="v" u2="&#xc3;" k="41" />
-<hkern u1="v" u2="&#xc2;" k="41" />
-<hkern u1="v" u2="&#xc1;" k="41" />
-<hkern u1="v" u2="&#xc0;" k="41" />
-<hkern u1="v" u2="g" k="8" />
-<hkern u1="v" u2="Z" k="78" />
-<hkern u1="v" u2="Y" k="80" />
-<hkern u1="v" u2="W" k="49" />
-<hkern u1="v" u2="U" k="27" />
-<hkern u1="v" u2="T" k="82" />
-<hkern u1="v" u2="S" k="35" />
-<hkern u1="v" u2="R" k="31" />
-<hkern u1="v" u2="N" k="31" />
-<hkern u1="v" u2="L" k="31" />
-<hkern u1="v" u2="K" k="31" />
-<hkern u1="v" u2="J" k="35" />
-<hkern u1="v" u2="I" k="31" />
-<hkern u1="v" u2="H" k="31" />
-<hkern u1="v" u2="E" k="31" />
-<hkern u1="v" u2="D" k="31" />
-<hkern u1="v" u2="A" k="41" />
-<hkern u1="v" u2="&#x27;" k="57" />
-<hkern u1="v" u2="&#x22;" k="57" />
-<hkern u1="v" u2="&#x7d;" k="43" />
-<hkern u1="v" u2="]" k="29" />
-<hkern u1="v" u2="\" k="10" />
-<hkern u1="v" u2="X" k="80" />
-<hkern u1="v" u2="V" k="43" />
-<hkern u1="v" u2="P" k="31" />
-<hkern u1="v" u2="M" k="33" />
-<hkern u1="v" u2="F" k="31" />
-<hkern u1="v" u2="B" k="31" />
-<hkern u1="v" u2="&#x3f;" k="31" />
-<hkern u1="v" u2="&#x2f;" k="14" />
-<hkern u1="v" u2="&#x2e;" k="31" />
-<hkern u1="v" u2="&#x2c;" k="31" />
-<hkern u1="v" u2="&#x2a;" k="10" />
-<hkern u1="v" u2="&#x29;" k="29" />
-<hkern u1="v" u2="&#x21;" k="10" />
-<hkern u1="w" u2="&#x7d;" k="51" />
-<hkern u1="w" u2="]" k="37" />
-<hkern u1="w" u2="\" k="16" />
-<hkern u1="w" u2="X" k="78" />
-<hkern u1="w" u2="V" k="63" />
-<hkern u1="w" u2="Q" k="10" />
-<hkern u1="w" u2="P" k="41" />
-<hkern u1="w" u2="M" k="33" />
-<hkern u1="w" u2="F" k="41" />
-<hkern u1="w" u2="B" k="41" />
-<hkern u1="w" u2="&#x3f;" k="39" />
-<hkern u1="w" u2="&#x2f;" k="12" />
-<hkern u1="w" u2="&#x2e;" k="14" />
-<hkern u1="w" u2="&#x2c;" k="14" />
-<hkern u1="w" u2="&#x2a;" k="18" />
-<hkern u1="w" u2="&#x29;" k="31" />
-<hkern u1="w" u2="&#x21;" k="14" />
-<hkern u1="x" u2="&#x2039;" k="12" />
-<hkern u1="x" u2="&#x178;" k="82" />
-<hkern u1="x" u2="&#x153;" k="6" />
-<hkern u1="x" u2="&#x152;" k="16" />
-<hkern u1="x" u2="&#xf8;" k="6" />
-<hkern u1="x" u2="&#xf6;" k="6" />
-<hkern u1="x" u2="&#xf5;" k="6" />
-<hkern u1="x" u2="&#xf4;" k="6" />
-<hkern u1="x" u2="&#xf3;" k="6" />
-<hkern u1="x" u2="&#xf2;" k="6" />
-<hkern u1="x" u2="&#xe7;" k="6" />
-<hkern u1="x" u2="&#xdd;" k="82" />
-<hkern u1="x" u2="&#xdc;" k="41" />
-<hkern u1="x" u2="&#xdb;" k="41" />
-<hkern u1="x" u2="&#xda;" k="41" />
-<hkern u1="x" u2="&#xd9;" k="41" />
-<hkern u1="x" u2="&#xd8;" k="16" />
-<hkern u1="x" u2="&#xd6;" k="16" />
-<hkern u1="x" u2="&#xd5;" k="16" />
-<hkern u1="x" u2="&#xd4;" k="16" />
-<hkern u1="x" u2="&#xd3;" k="16" />
-<hkern u1="x" u2="&#xd2;" k="16" />
-<hkern u1="x" u2="&#xd1;" k="33" />
-<hkern u1="x" u2="&#xd0;" k="33" />
-<hkern u1="x" u2="&#xcf;" k="33" />
-<hkern u1="x" u2="&#xce;" k="33" />
-<hkern u1="x" u2="&#xcd;" k="33" />
-<hkern u1="x" u2="&#xcc;" k="33" />
-<hkern u1="x" u2="&#xcb;" k="33" />
-<hkern u1="x" u2="&#xca;" k="33" />
-<hkern u1="x" u2="&#xc9;" k="33" />
-<hkern u1="x" u2="&#xc8;" k="33" />
-<hkern u1="x" u2="&#xc7;" k="16" />
-<hkern u1="x" u2="&#xab;" k="12" />
-<hkern u1="x" u2="o" k="6" />
-<hkern u1="x" u2="c" k="6" />
-<hkern u1="x" u2="Y" k="82" />
-<hkern u1="x" u2="W" k="72" />
-<hkern u1="x" u2="U" k="41" />
-<hkern u1="x" u2="T" k="84" />
-<hkern u1="x" u2="S" k="25" />
-<hkern u1="x" u2="R" k="33" />
-<hkern u1="x" u2="O" k="16" />
-<hkern u1="x" u2="N" k="33" />
-<hkern u1="x" u2="L" k="33" />
-<hkern u1="x" u2="K" k="33" />
-<hkern u1="x" u2="I" k="33" />
-<hkern u1="x" u2="H" k="33" />
-<hkern u1="x" u2="G" k="16" />
-<hkern u1="x" u2="E" k="33" />
-<hkern u1="x" u2="D" k="33" />
-<hkern u1="x" u2="C" k="16" />
-<hkern u1="x" u2="&#x27;" k="70" />
-<hkern u1="x" u2="&#x22;" k="70" />
-<hkern u1="x" u2="&#x7d;" k="47" />
-<hkern u1="x" u2="]" k="33" />
-<hkern u1="x" u2="\" k="20" />
-<hkern u1="x" u2="X" k="16" />
-<hkern u1="x" u2="V" k="68" />
-<hkern u1="x" u2="Q" k="16" />
-<hkern u1="x" u2="P" k="33" />
-<hkern u1="x" u2="M" k="12" />
-<hkern u1="x" u2="F" k="33" />
-<hkern u1="x" u2="B" k="33" />
-<hkern u1="x" u2="&#x3f;" k="33" />
-<hkern u1="x" u2="&#x2a;" k="23" />
-<hkern u1="y" u2="&#x7d;" k="43" />
-<hkern u1="y" u2="]" k="29" />
-<hkern u1="y" u2="\" k="10" />
-<hkern u1="y" u2="X" k="80" />
-<hkern u1="y" u2="V" k="43" />
-<hkern u1="y" u2="P" k="31" />
-<hkern u1="y" u2="M" k="33" />
-<hkern u1="y" u2="F" k="31" />
-<hkern u1="y" u2="B" k="31" />
-<hkern u1="y" u2="&#x3f;" k="31" />
-<hkern u1="y" u2="&#x2f;" k="14" />
-<hkern u1="y" u2="&#x2e;" k="31" />
-<hkern u1="y" u2="&#x2c;" k="31" />
-<hkern u1="y" u2="&#x2a;" k="10" />
-<hkern u1="y" u2="&#x29;" k="31" />
-<hkern u1="y" u2="&#x21;" k="12" />
-<hkern u1="z" u2="&#x7d;" k="49" />
-<hkern u1="z" u2="]" k="33" />
-<hkern u1="z" u2="\" k="16" />
-<hkern u1="z" u2="X" k="25" />
-<hkern u1="z" u2="V" k="66" />
-<hkern u1="z" u2="Q" k="12" />
-<hkern u1="z" u2="P" k="33" />
-<hkern u1="z" u2="M" k="16" />
-<hkern u1="z" u2="F" k="33" />
-<hkern u1="z" u2="B" k="33" />
-<hkern u1="z" u2="&#x3f;" k="35" />
-<hkern u1="z" u2="&#x2a;" k="23" />
-<hkern u1="z" u2="&#x29;" k="12" />
-<hkern u1="z" u2="&#x21;" k="10" />
-<hkern u1="&#x7b;" g2="uniFB02" k="43" />
-<hkern u1="&#x7b;" g2="uniFB01" k="43" />
-<hkern u1="&#x7b;" u2="&#x178;" k="-25" />
-<hkern u1="&#x7b;" u2="&#x153;" k="90" />
-<hkern u1="&#x7b;" u2="&#x152;" k="55" />
-<hkern u1="&#x7b;" u2="&#xff;" k="43" />
-<hkern u1="&#x7b;" u2="&#xfe;" k="61" />
-<hkern u1="&#x7b;" u2="&#xfc;" k="66" />
-<hkern u1="&#x7b;" u2="&#xfb;" k="66" />
-<hkern u1="&#x7b;" u2="&#xfa;" k="66" />
-<hkern u1="&#x7b;" u2="&#xf9;" k="66" />
-<hkern u1="&#x7b;" u2="&#xf8;" k="90" />
-<hkern u1="&#x7b;" u2="&#xf6;" k="90" />
-<hkern u1="&#x7b;" u2="&#xf5;" k="90" />
-<hkern u1="&#x7b;" u2="&#xf4;" k="90" />
-<hkern u1="&#x7b;" u2="&#xf3;" k="90" />
-<hkern u1="&#x7b;" u2="&#xf2;" k="90" />
-<hkern u1="&#x7b;" u2="&#xf1;" k="63" />
-<hkern u1="&#x7b;" u2="&#xee;" k="12" />
-<hkern u1="&#x7b;" u2="&#xed;" k="12" />
-<hkern u1="&#x7b;" u2="&#xeb;" k="90" />
-<hkern u1="&#x7b;" u2="&#xea;" k="90" />
-<hkern u1="&#x7b;" u2="&#xe9;" k="90" />
-<hkern u1="&#x7b;" u2="&#xe8;" k="90" />
-<hkern u1="&#x7b;" u2="&#xe7;" k="90" />
-<hkern u1="&#x7b;" u2="&#xe6;" k="78" />
-<hkern u1="&#x7b;" u2="&#xe5;" k="78" />
-<hkern u1="&#x7b;" u2="&#xe4;" k="78" />
-<hkern u1="&#x7b;" u2="&#xe3;" k="78" />
-<hkern u1="&#x7b;" u2="&#xe2;" k="78" />
-<hkern u1="&#x7b;" u2="&#xe1;" k="78" />
-<hkern u1="&#x7b;" u2="&#xe0;" k="78" />
-<hkern u1="&#x7b;" u2="&#xdd;" k="-25" />
-<hkern u1="&#x7b;" u2="&#xdc;" k="10" />
-<hkern u1="&#x7b;" u2="&#xdb;" k="10" />
-<hkern u1="&#x7b;" u2="&#xda;" k="10" />
-<hkern u1="&#x7b;" u2="&#xd9;" k="10" />
-<hkern u1="&#x7b;" u2="&#xd8;" k="55" />
-<hkern u1="&#x7b;" u2="&#xd6;" k="55" />
-<hkern u1="&#x7b;" u2="&#xd5;" k="55" />
-<hkern u1="&#x7b;" u2="&#xd4;" k="55" />
-<hkern u1="&#x7b;" u2="&#xd3;" k="55" />
-<hkern u1="&#x7b;" u2="&#xd2;" k="55" />
-<hkern u1="&#x7b;" u2="&#xd1;" k="12" />
-<hkern u1="&#x7b;" u2="&#xd0;" k="12" />
-<hkern u1="&#x7b;" u2="&#xcf;" k="12" />
-<hkern u1="&#x7b;" u2="&#xce;" k="12" />
-<hkern u1="&#x7b;" u2="&#xcd;" k="12" />
-<hkern u1="&#x7b;" u2="&#xcc;" k="12" />
-<hkern u1="&#x7b;" u2="&#xcb;" k="12" />
-<hkern u1="&#x7b;" u2="&#xca;" k="12" />
-<hkern u1="&#x7b;" u2="&#xc9;" k="12" />
-<hkern u1="&#x7b;" u2="&#xc8;" k="12" />
-<hkern u1="&#x7b;" u2="&#xc7;" k="55" />
-<hkern u1="&#x7b;" u2="&#xc6;" k="16" />
-<hkern u1="&#x7b;" u2="&#xc5;" k="20" />
-<hkern u1="&#x7b;" u2="&#xc4;" k="20" />
-<hkern u1="&#x7b;" u2="&#xc3;" k="20" />
-<hkern u1="&#x7b;" u2="&#xc2;" k="20" />
-<hkern u1="&#x7b;" u2="&#xc1;" k="20" />
-<hkern u1="&#x7b;" u2="&#xc0;" k="20" />
-<hkern u1="&#x7b;" u2="z" k="49" />
-<hkern u1="&#x7b;" u2="y" k="43" />
-<hkern u1="&#x7b;" u2="w" k="49" />
-<hkern u1="&#x7b;" u2="u" k="66" />
-<hkern u1="&#x7b;" u2="t" k="70" />
-<hkern u1="&#x7b;" u2="s" k="76" />
-<hkern u1="&#x7b;" u2="r" k="63" />
-<hkern u1="&#x7b;" u2="p" k="61" />
-<hkern u1="&#x7b;" u2="o" k="90" />
-<hkern u1="&#x7b;" u2="n" k="63" />
-<hkern u1="&#x7b;" u2="l" k="12" />
-<hkern u1="&#x7b;" u2="k" k="12" />
-<hkern u1="&#x7b;" u2="j" k="-276" />
-<hkern u1="&#x7b;" u2="i" k="12" />
-<hkern u1="&#x7b;" u2="h" k="12" />
-<hkern u1="&#x7b;" u2="g" k="47" />
-<hkern u1="&#x7b;" u2="f" k="43" />
-<hkern u1="&#x7b;" u2="e" k="90" />
-<hkern u1="&#x7b;" u2="d" k="84" />
-<hkern u1="&#x7b;" u2="c" k="90" />
-<hkern u1="&#x7b;" u2="a" k="78" />
-<hkern u1="&#x7b;" u2="Y" k="-25" />
-<hkern u1="&#x7b;" u2="U" k="10" />
-<hkern u1="&#x7b;" u2="S" k="12" />
-<hkern u1="&#x7b;" u2="R" k="12" />
-<hkern u1="&#x7b;" u2="O" k="55" />
-<hkern u1="&#x7b;" u2="N" k="12" />
-<hkern u1="&#x7b;" u2="L" k="12" />
-<hkern u1="&#x7b;" u2="K" k="12" />
-<hkern u1="&#x7b;" u2="J" k="14" />
-<hkern u1="&#x7b;" u2="I" k="12" />
-<hkern u1="&#x7b;" u2="H" k="12" />
-<hkern u1="&#x7b;" u2="G" k="55" />
-<hkern u1="&#x7b;" u2="E" k="12" />
-<hkern u1="&#x7b;" u2="D" k="12" />
-<hkern u1="&#x7b;" u2="C" k="55" />
-<hkern u1="&#x7b;" u2="A" k="20" />
-<hkern u1="&#x7b;" u2="&#xfd;" k="66" />
-<hkern u1="&#x7b;" u2="&#xf0;" k="45" />
-<hkern u1="&#x7b;" u2="&#xef;" k="-86" />
-<hkern u1="&#x7b;" u2="&#xec;" k="-2" />
-<hkern u1="&#x7b;" u2="&#xdf;" k="37" />
-<hkern u1="&#x7b;" u2="&#xde;" k="12" />
-<hkern u1="&#x7b;" u2="x" k="47" />
-<hkern u1="&#x7b;" u2="v" k="43" />
-<hkern u1="&#x7b;" u2="q" k="90" />
-<hkern u1="&#x7b;" u2="m" k="63" />
-<hkern u1="&#x7b;" u2="b" k="12" />
-<hkern u1="&#x7b;" u2="V" k="-12" />
-<hkern u1="&#x7b;" u2="Q" k="55" />
-<hkern u1="&#x7b;" u2="P" k="12" />
-<hkern u1="&#x7b;" u2="M" k="23" />
-<hkern u1="&#x7b;" u2="F" k="12" />
-<hkern u1="&#x7b;" u2="B" k="12" />
-<hkern u1="&#x7b;" u2="&#x39;" k="16" />
-<hkern u1="&#x7b;" u2="&#x38;" k="31" />
-<hkern u1="&#x7b;" u2="&#x36;" k="72" />
-<hkern u1="&#x7b;" u2="&#x34;" k="35" />
-<hkern u1="&#x7b;" u2="&#x33;" k="14" />
-<hkern u1="&#x7b;" u2="&#x32;" k="12" />
-<hkern u1="&#x7b;" u2="&#x31;" k="27" />
-<hkern u1="&#x7b;" u2="&#x30;" k="49" />
-<hkern u1="&#xa3;" u2="&#x36;" k="14" />
-<hkern u1="&#xa3;" u2="&#x34;" k="33" />
-<hkern u1="&#xa3;" u2="&#x30;" k="14" />
-<hkern u1="&#xab;" u2="V" k="25" />
-<hkern u1="&#xb0;" u2="&#x36;" k="23" />
-<hkern u1="&#xb0;" u2="&#x34;" k="82" />
-<hkern u1="&#xb0;" u2="&#x30;" k="14" />
-<hkern u1="&#xb7;" u2="L" k="23" />
-<hkern u1="&#xb7;" u2="&#x39;" k="14" />
-<hkern u1="&#xb7;" u2="&#x38;" k="25" />
-<hkern u1="&#xb7;" u2="&#x37;" k="72" />
-<hkern u1="&#xb7;" u2="&#x35;" k="31" />
-<hkern u1="&#xb7;" u2="&#x34;" k="10" />
-<hkern u1="&#xb7;" u2="&#x33;" k="53" />
-<hkern u1="&#xb7;" u2="&#x32;" k="84" />
-<hkern u1="&#xb7;" u2="&#x31;" k="51" />
-<hkern u1="&#xb7;" u2="&#x30;" k="12" />
-<hkern u1="&#xbb;" u2="&#xde;" k="10" />
-<hkern u1="&#xbb;" u2="x" k="14" />
-<hkern u1="&#xbb;" u2="X" k="16" />
-<hkern u1="&#xbb;" u2="V" k="72" />
-<hkern u1="&#xbb;" u2="P" k="10" />
-<hkern u1="&#xbb;" u2="F" k="10" />
-<hkern u1="&#xbb;" u2="B" k="10" />
-<hkern u1="&#xc0;" u2="&#xf0;" k="8" />
-<hkern u1="&#xc0;" u2="&#x7d;" k="20" />
-<hkern u1="&#xc0;" u2="v" k="41" />
-<hkern u1="&#xc0;" u2="]" k="12" />
-<hkern u1="&#xc0;" u2="\" k="39" />
-<hkern u1="&#xc0;" u2="V" k="80" />
-<hkern u1="&#xc0;" u2="Q" k="8" />
-<hkern u1="&#xc0;" u2="&#x2a;" k="72" />
-<hkern u1="&#xc1;" u2="&#xf0;" k="8" />
-<hkern u1="&#xc1;" u2="&#x7d;" k="20" />
-<hkern u1="&#xc1;" u2="v" k="41" />
-<hkern u1="&#xc1;" u2="]" k="12" />
-<hkern u1="&#xc1;" u2="\" k="39" />
-<hkern u1="&#xc1;" u2="V" k="80" />
-<hkern u1="&#xc1;" u2="Q" k="8" />
-<hkern u1="&#xc1;" u2="&#x2a;" k="72" />
-<hkern u1="&#xc2;" u2="&#xf0;" k="8" />
-<hkern u1="&#xc2;" u2="&#x7d;" k="20" />
-<hkern u1="&#xc2;" u2="v" k="41" />
-<hkern u1="&#xc2;" u2="]" k="12" />
-<hkern u1="&#xc2;" u2="\" k="39" />
-<hkern u1="&#xc2;" u2="V" k="80" />
-<hkern u1="&#xc2;" u2="Q" k="8" />
-<hkern u1="&#xc2;" u2="&#x2a;" k="72" />
-<hkern u1="&#xc3;" u2="&#xf0;" k="8" />
-<hkern u1="&#xc3;" u2="&#x7d;" k="20" />
-<hkern u1="&#xc3;" u2="v" k="41" />
-<hkern u1="&#xc3;" u2="]" k="12" />
-<hkern u1="&#xc3;" u2="\" k="39" />
-<hkern u1="&#xc3;" u2="V" k="80" />
-<hkern u1="&#xc3;" u2="Q" k="8" />
-<hkern u1="&#xc3;" u2="&#x2a;" k="72" />
-<hkern u1="&#xc4;" u2="&#xf0;" k="8" />
-<hkern u1="&#xc4;" u2="&#x7d;" k="20" />
-<hkern u1="&#xc4;" u2="v" k="41" />
-<hkern u1="&#xc4;" u2="]" k="12" />
-<hkern u1="&#xc4;" u2="\" k="39" />
-<hkern u1="&#xc4;" u2="V" k="80" />
-<hkern u1="&#xc4;" u2="Q" k="8" />
-<hkern u1="&#xc4;" u2="&#x2a;" k="72" />
-<hkern u1="&#xc5;" u2="&#xf0;" k="8" />
-<hkern u1="&#xc5;" u2="&#x7d;" k="20" />
-<hkern u1="&#xc5;" u2="v" k="41" />
-<hkern u1="&#xc5;" u2="]" k="12" />
-<hkern u1="&#xc5;" u2="\" k="39" />
-<hkern u1="&#xc5;" u2="V" k="80" />
-<hkern u1="&#xc5;" u2="Q" k="8" />
-<hkern u1="&#xc5;" u2="&#x2a;" k="72" />
-<hkern u1="&#xc6;" u2="&#xf0;" k="39" />
-<hkern u1="&#xc6;" u2="&#xef;" k="-18" />
-<hkern u1="&#xc6;" u2="&#xdf;" k="25" />
-<hkern u1="&#xc6;" u2="x" k="16" />
-<hkern u1="&#xc6;" u2="v" k="39" />
-<hkern u1="&#xc6;" u2="q" k="37" />
-<hkern u1="&#xc6;" u2="m" k="27" />
-<hkern u1="&#xc6;" u2="b" k="16" />
-<hkern u1="&#xc6;" u2="Q" k="6" />
-<hkern u1="&#xc7;" u2="&#xf0;" k="27" />
-<hkern u1="&#xc7;" u2="&#xef;" k="-37" />
-<hkern u1="&#xc7;" u2="&#xee;" k="-31" />
-<hkern u1="&#xc7;" u2="&#xdf;" k="20" />
-<hkern u1="&#xc7;" u2="x" k="37" />
-<hkern u1="&#xc7;" u2="v" k="76" />
-<hkern u1="&#xc7;" u2="q" k="23" />
-<hkern u1="&#xc7;" u2="m" k="27" />
-<hkern u1="&#xc7;" u2="b" k="14" />
-<hkern u1="&#xc7;" u2="Q" k="6" />
-<hkern u1="&#xc7;" u2="&#x3b;" k="12" />
-<hkern u1="&#xc7;" u2="&#x3a;" k="12" />
-<hkern u1="&#xc8;" u2="&#xf0;" k="39" />
-<hkern u1="&#xc8;" u2="&#xef;" k="-18" />
-<hkern u1="&#xc8;" u2="&#xdf;" k="25" />
-<hkern u1="&#xc8;" u2="x" k="16" />
-<hkern u1="&#xc8;" u2="v" k="39" />
-<hkern u1="&#xc8;" u2="q" k="37" />
-<hkern u1="&#xc8;" u2="m" k="27" />
-<hkern u1="&#xc8;" u2="b" k="16" />
-<hkern u1="&#xc8;" u2="Q" k="6" />
-<hkern u1="&#xc9;" u2="&#xf0;" k="39" />
-<hkern u1="&#xc9;" u2="&#xef;" k="-18" />
-<hkern u1="&#xc9;" u2="&#xdf;" k="25" />
-<hkern u1="&#xc9;" u2="x" k="16" />
-<hkern u1="&#xc9;" u2="v" k="39" />
-<hkern u1="&#xc9;" u2="q" k="37" />
-<hkern u1="&#xc9;" u2="m" k="27" />
-<hkern u1="&#xc9;" u2="b" k="16" />
-<hkern u1="&#xc9;" u2="Q" k="6" />
-<hkern u1="&#xca;" u2="&#xf0;" k="39" />
-<hkern u1="&#xca;" u2="&#xef;" k="-18" />
-<hkern u1="&#xca;" u2="&#xdf;" k="25" />
-<hkern u1="&#xca;" u2="x" k="16" />
-<hkern u1="&#xca;" u2="v" k="39" />
-<hkern u1="&#xca;" u2="q" k="37" />
-<hkern u1="&#xca;" u2="m" k="27" />
-<hkern u1="&#xca;" u2="b" k="16" />
-<hkern u1="&#xca;" u2="Q" k="6" />
-<hkern u1="&#xcb;" u2="&#xf0;" k="39" />
-<hkern u1="&#xcb;" u2="&#xef;" k="-18" />
-<hkern u1="&#xcb;" u2="&#xdf;" k="25" />
-<hkern u1="&#xcb;" u2="x" k="16" />
-<hkern u1="&#xcb;" u2="v" k="39" />
-<hkern u1="&#xcb;" u2="q" k="37" />
-<hkern u1="&#xcb;" u2="m" k="27" />
-<hkern u1="&#xcb;" u2="b" k="16" />
-<hkern u1="&#xcb;" u2="Q" k="6" />
-<hkern u1="&#xcc;" u2="&#xf0;" k="37" />
-<hkern u1="&#xcc;" u2="&#xdf;" k="27" />
-<hkern u1="&#xcc;" u2="&#x7d;" k="12" />
-<hkern u1="&#xcc;" u2="x" k="33" />
-<hkern u1="&#xcc;" u2="v" k="31" />
-<hkern u1="&#xcc;" u2="q" k="39" />
-<hkern u1="&#xcc;" u2="m" k="27" />
-<hkern u1="&#xcc;" u2="b" k="29" />
-<hkern u1="&#xcc;" u2="&#x3b;" k="14" />
-<hkern u1="&#xcc;" u2="&#x3a;" k="14" />
-<hkern u1="&#xcc;" u2="&#x2f;" k="10" />
-<hkern u1="&#xcc;" u2="&#x2e;" k="23" />
-<hkern u1="&#xcc;" u2="&#x2c;" k="23" />
-<hkern u1="&#xcc;" u2="&#x2a;" k="12" />
-<hkern u1="&#xcd;" u2="&#xf0;" k="37" />
-<hkern u1="&#xcd;" u2="&#xdf;" k="27" />
-<hkern u1="&#xcd;" u2="&#x7d;" k="12" />
-<hkern u1="&#xcd;" u2="x" k="33" />
-<hkern u1="&#xcd;" u2="v" k="31" />
-<hkern u1="&#xcd;" u2="q" k="39" />
-<hkern u1="&#xcd;" u2="m" k="27" />
-<hkern u1="&#xcd;" u2="b" k="29" />
-<hkern u1="&#xcd;" u2="&#x3b;" k="14" />
-<hkern u1="&#xcd;" u2="&#x3a;" k="14" />
-<hkern u1="&#xcd;" u2="&#x2f;" k="10" />
-<hkern u1="&#xcd;" u2="&#x2e;" k="23" />
-<hkern u1="&#xcd;" u2="&#x2c;" k="23" />
-<hkern u1="&#xcd;" u2="&#x2a;" k="12" />
-<hkern u1="&#xce;" u2="&#xf0;" k="37" />
-<hkern u1="&#xce;" u2="&#xdf;" k="27" />
-<hkern u1="&#xce;" u2="&#x7d;" k="12" />
-<hkern u1="&#xce;" u2="x" k="33" />
-<hkern u1="&#xce;" u2="v" k="31" />
-<hkern u1="&#xce;" u2="q" k="39" />
-<hkern u1="&#xce;" u2="m" k="27" />
-<hkern u1="&#xce;" u2="b" k="29" />
-<hkern u1="&#xce;" u2="&#x3b;" k="14" />
-<hkern u1="&#xce;" u2="&#x3a;" k="14" />
-<hkern u1="&#xce;" u2="&#x2f;" k="10" />
-<hkern u1="&#xce;" u2="&#x2e;" k="23" />
-<hkern u1="&#xce;" u2="&#x2c;" k="23" />
-<hkern u1="&#xce;" u2="&#x2a;" k="12" />
-<hkern u1="&#xcf;" u2="&#xf0;" k="37" />
-<hkern u1="&#xcf;" u2="&#xdf;" k="27" />
-<hkern u1="&#xcf;" u2="&#x7d;" k="12" />
-<hkern u1="&#xcf;" u2="x" k="33" />
-<hkern u1="&#xcf;" u2="v" k="31" />
-<hkern u1="&#xcf;" u2="q" k="39" />
-<hkern u1="&#xcf;" u2="m" k="27" />
-<hkern u1="&#xcf;" u2="b" k="29" />
-<hkern u1="&#xcf;" u2="&#x3b;" k="14" />
-<hkern u1="&#xcf;" u2="&#x3a;" k="14" />
-<hkern u1="&#xcf;" u2="&#x2f;" k="10" />
-<hkern u1="&#xcf;" u2="&#x2e;" k="23" />
-<hkern u1="&#xcf;" u2="&#x2c;" k="23" />
-<hkern u1="&#xcf;" u2="&#x2a;" k="12" />
-<hkern u1="&#xd0;" u2="&#xf0;" k="18" />
-<hkern u1="&#xd0;" u2="&#xdf;" k="25" />
-<hkern u1="&#xd0;" u2="&#x7d;" k="57" />
-<hkern u1="&#xd0;" u2="x" k="18" />
-<hkern u1="&#xd0;" u2="q" k="23" />
-<hkern u1="&#xd0;" u2="m" k="27" />
-<hkern u1="&#xd0;" u2="b" k="25" />
-<hkern u1="&#xd0;" u2="]" k="33" />
-<hkern u1="&#xd0;" u2="X" k="18" />
-<hkern u1="&#xd0;" u2="V" k="10" />
-<hkern u1="&#xd0;" u2="&#x2f;" k="14" />
-<hkern u1="&#xd0;" u2="&#x2e;" k="55" />
-<hkern u1="&#xd0;" u2="&#x2c;" k="55" />
-<hkern u1="&#xd0;" u2="&#x29;" k="37" />
-<hkern u1="&#xd1;" u2="&#xf0;" k="39" />
-<hkern u1="&#xd1;" u2="&#xdf;" k="27" />
-<hkern u1="&#xd1;" u2="&#x7d;" k="12" />
-<hkern u1="&#xd1;" u2="x" k="33" />
-<hkern u1="&#xd1;" u2="v" k="31" />
-<hkern u1="&#xd1;" u2="q" k="39" />
-<hkern u1="&#xd1;" u2="m" k="27" />
-<hkern u1="&#xd1;" u2="b" k="29" />
-<hkern u1="&#xd1;" u2="&#x3b;" k="12" />
-<hkern u1="&#xd1;" u2="&#x3a;" k="12" />
-<hkern u1="&#xd1;" u2="&#x2f;" k="10" />
-<hkern u1="&#xd1;" u2="&#x2e;" k="23" />
-<hkern u1="&#xd1;" u2="&#x2c;" k="23" />
-<hkern u1="&#xd1;" u2="&#x2a;" k="12" />
-<hkern u1="&#xd2;" u2="&#xf0;" k="18" />
-<hkern u1="&#xd2;" u2="&#xdf;" k="23" />
-<hkern u1="&#xd2;" u2="&#x7d;" k="55" />
-<hkern u1="&#xd2;" u2="x" k="18" />
-<hkern u1="&#xd2;" u2="q" k="20" />
-<hkern u1="&#xd2;" u2="m" k="25" />
-<hkern u1="&#xd2;" u2="b" k="23" />
-<hkern u1="&#xd2;" u2="]" k="29" />
-<hkern u1="&#xd2;" u2="X" k="16" />
-<hkern u1="&#xd2;" u2="V" k="8" />
-<hkern u1="&#xd2;" u2="&#x2f;" k="12" />
-<hkern u1="&#xd2;" u2="&#x2e;" k="53" />
-<hkern u1="&#xd2;" u2="&#x2c;" k="53" />
-<hkern u1="&#xd2;" u2="&#x29;" k="35" />
-<hkern u1="&#xd3;" u2="&#xf0;" k="18" />
-<hkern u1="&#xd3;" u2="&#xdf;" k="23" />
-<hkern u1="&#xd3;" u2="&#x7d;" k="55" />
-<hkern u1="&#xd3;" u2="x" k="18" />
-<hkern u1="&#xd3;" u2="q" k="20" />
-<hkern u1="&#xd3;" u2="m" k="25" />
-<hkern u1="&#xd3;" u2="b" k="23" />
-<hkern u1="&#xd3;" u2="]" k="29" />
-<hkern u1="&#xd3;" u2="X" k="16" />
-<hkern u1="&#xd3;" u2="V" k="8" />
-<hkern u1="&#xd3;" u2="&#x2f;" k="12" />
-<hkern u1="&#xd3;" u2="&#x2e;" k="53" />
-<hkern u1="&#xd3;" u2="&#x2c;" k="53" />
-<hkern u1="&#xd3;" u2="&#x29;" k="35" />
-<hkern u1="&#xd4;" u2="&#xf0;" k="18" />
-<hkern u1="&#xd4;" u2="&#xdf;" k="23" />
-<hkern u1="&#xd4;" u2="&#x7d;" k="55" />
-<hkern u1="&#xd4;" u2="x" k="18" />
-<hkern u1="&#xd4;" u2="q" k="20" />
-<hkern u1="&#xd4;" u2="m" k="25" />
-<hkern u1="&#xd4;" u2="b" k="23" />
-<hkern u1="&#xd4;" u2="]" k="29" />
-<hkern u1="&#xd4;" u2="X" k="16" />
-<hkern u1="&#xd4;" u2="V" k="8" />
-<hkern u1="&#xd4;" u2="&#x2f;" k="12" />
-<hkern u1="&#xd4;" u2="&#x2e;" k="53" />
-<hkern u1="&#xd4;" u2="&#x2c;" k="53" />
-<hkern u1="&#xd4;" u2="&#x29;" k="35" />
-<hkern u1="&#xd5;" u2="&#xf0;" k="18" />
-<hkern u1="&#xd5;" u2="&#xdf;" k="23" />
-<hkern u1="&#xd5;" u2="&#x7d;" k="55" />
-<hkern u1="&#xd5;" u2="x" k="18" />
-<hkern u1="&#xd5;" u2="q" k="20" />
-<hkern u1="&#xd5;" u2="m" k="25" />
-<hkern u1="&#xd5;" u2="b" k="23" />
-<hkern u1="&#xd5;" u2="]" k="29" />
-<hkern u1="&#xd5;" u2="X" k="16" />
-<hkern u1="&#xd5;" u2="V" k="8" />
-<hkern u1="&#xd5;" u2="&#x2f;" k="12" />
-<hkern u1="&#xd5;" u2="&#x2e;" k="53" />
-<hkern u1="&#xd5;" u2="&#x2c;" k="53" />
-<hkern u1="&#xd5;" u2="&#x29;" k="35" />
-<hkern u1="&#xd6;" u2="&#xf0;" k="18" />
-<hkern u1="&#xd6;" u2="&#xdf;" k="23" />
-<hkern u1="&#xd6;" u2="&#x7d;" k="55" />
-<hkern u1="&#xd6;" u2="x" k="18" />
-<hkern u1="&#xd6;" u2="q" k="20" />
-<hkern u1="&#xd6;" u2="m" k="25" />
-<hkern u1="&#xd6;" u2="b" k="23" />
-<hkern u1="&#xd6;" u2="]" k="29" />
-<hkern u1="&#xd6;" u2="X" k="16" />
-<hkern u1="&#xd6;" u2="V" k="8" />
-<hkern u1="&#xd6;" u2="&#x2f;" k="12" />
-<hkern u1="&#xd6;" u2="&#x2e;" k="53" />
-<hkern u1="&#xd6;" u2="&#x2c;" k="53" />
-<hkern u1="&#xd6;" u2="&#x29;" k="35" />
-<hkern u1="&#xd8;" u2="&#xf0;" k="18" />
-<hkern u1="&#xd8;" u2="&#xdf;" k="23" />
-<hkern u1="&#xd8;" u2="&#x7d;" k="55" />
-<hkern u1="&#xd8;" u2="x" k="18" />
-<hkern u1="&#xd8;" u2="q" k="20" />
-<hkern u1="&#xd8;" u2="m" k="25" />
-<hkern u1="&#xd8;" u2="b" k="23" />
-<hkern u1="&#xd8;" u2="]" k="29" />
-<hkern u1="&#xd8;" u2="X" k="16" />
-<hkern u1="&#xd8;" u2="V" k="8" />
-<hkern u1="&#xd8;" u2="&#x2f;" k="12" />
-<hkern u1="&#xd8;" u2="&#x2e;" k="53" />
-<hkern u1="&#xd8;" u2="&#x2c;" k="53" />
-<hkern u1="&#xd8;" u2="&#x29;" k="35" />
-<hkern u1="&#xd9;" u2="&#xf0;" k="39" />
-<hkern u1="&#xd9;" u2="&#xef;" k="27" />
-<hkern u1="&#xd9;" u2="&#xdf;" k="45" />
-<hkern u1="&#xd9;" u2="&#x7d;" k="10" />
-<hkern u1="&#xd9;" u2="x" k="43" />
-<hkern u1="&#xd9;" u2="v" k="27" />
-<hkern u1="&#xd9;" u2="q" k="43" />
-<hkern u1="&#xd9;" u2="m" k="43" />
-<hkern u1="&#xd9;" u2="b" k="45" />
-<hkern u1="&#xd9;" u2="X" k="6" />
-<hkern u1="&#xd9;" u2="&#x3b;" k="18" />
-<hkern u1="&#xd9;" u2="&#x3a;" k="18" />
-<hkern u1="&#xd9;" u2="&#x2f;" k="20" />
-<hkern u1="&#xd9;" u2="&#x2e;" k="51" />
-<hkern u1="&#xd9;" u2="&#x2c;" k="51" />
-<hkern u1="&#xda;" u2="&#xf0;" k="39" />
-<hkern u1="&#xda;" u2="&#xef;" k="27" />
-<hkern u1="&#xda;" u2="&#xdf;" k="45" />
-<hkern u1="&#xda;" u2="&#x7d;" k="10" />
-<hkern u1="&#xda;" u2="x" k="43" />
-<hkern u1="&#xda;" u2="v" k="27" />
-<hkern u1="&#xda;" u2="q" k="43" />
-<hkern u1="&#xda;" u2="m" k="43" />
-<hkern u1="&#xda;" u2="b" k="45" />
-<hkern u1="&#xda;" u2="X" k="6" />
-<hkern u1="&#xda;" u2="&#x3b;" k="18" />
-<hkern u1="&#xda;" u2="&#x3a;" k="18" />
-<hkern u1="&#xda;" u2="&#x2f;" k="20" />
-<hkern u1="&#xda;" u2="&#x2e;" k="51" />
-<hkern u1="&#xda;" u2="&#x2c;" k="51" />
-<hkern u1="&#xdb;" u2="&#xf0;" k="39" />
-<hkern u1="&#xdb;" u2="&#xef;" k="27" />
-<hkern u1="&#xdb;" u2="&#xdf;" k="45" />
-<hkern u1="&#xdb;" u2="&#x7d;" k="10" />
-<hkern u1="&#xdb;" u2="x" k="43" />
-<hkern u1="&#xdb;" u2="v" k="27" />
-<hkern u1="&#xdb;" u2="q" k="43" />
-<hkern u1="&#xdb;" u2="m" k="43" />
-<hkern u1="&#xdb;" u2="b" k="45" />
-<hkern u1="&#xdb;" u2="X" k="6" />
-<hkern u1="&#xdb;" u2="&#x3b;" k="18" />
-<hkern u1="&#xdb;" u2="&#x3a;" k="18" />
-<hkern u1="&#xdb;" u2="&#x2f;" k="20" />
-<hkern u1="&#xdb;" u2="&#x2e;" k="51" />
-<hkern u1="&#xdb;" u2="&#x2c;" k="51" />
-<hkern u1="&#xdc;" u2="&#xf0;" k="39" />
-<hkern u1="&#xdc;" u2="&#xef;" k="27" />
-<hkern u1="&#xdc;" u2="&#xdf;" k="45" />
-<hkern u1="&#xdc;" u2="&#x7d;" k="10" />
-<hkern u1="&#xdc;" u2="x" k="43" />
-<hkern u1="&#xdc;" u2="v" k="27" />
-<hkern u1="&#xdc;" u2="q" k="43" />
-<hkern u1="&#xdc;" u2="m" k="43" />
-<hkern u1="&#xdc;" u2="b" k="45" />
-<hkern u1="&#xdc;" u2="X" k="6" />
-<hkern u1="&#xdc;" u2="&#x3b;" k="18" />
-<hkern u1="&#xdc;" u2="&#x3a;" k="18" />
-<hkern u1="&#xdc;" u2="&#x2f;" k="20" />
-<hkern u1="&#xdc;" u2="&#x2e;" k="51" />
-<hkern u1="&#xdc;" u2="&#x2c;" k="51" />
-<hkern u1="&#xdd;" u2="&#xfe;" k="70" />
-<hkern u1="&#xdd;" u2="&#xfc;" k="147" />
-<hkern u1="&#xdd;" u2="&#xf6;" k="139" />
-<hkern u1="&#xdd;" u2="&#xf5;" k="174" />
-<hkern u1="&#xdd;" u2="&#xf0;" k="80" />
-<hkern u1="&#xdd;" u2="&#xef;" k="-113" />
-<hkern u1="&#xdd;" u2="&#xee;" k="-8" />
-<hkern u1="&#xdd;" u2="&#xec;" k="-31" />
-<hkern u1="&#xdd;" u2="&#xeb;" k="135" />
-<hkern u1="&#xdd;" u2="&#xe5;" k="180" />
-<hkern u1="&#xdd;" u2="&#xe4;" k="115" />
-<hkern u1="&#xdd;" u2="&#xe3;" k="125" />
-<hkern u1="&#xdd;" u2="&#xe2;" k="195" />
-<hkern u1="&#xdd;" u2="&#xdf;" k="70" />
-<hkern u1="&#xdd;" u2="&#x7d;" k="-27" />
-<hkern u1="&#xdd;" u2="x" k="84" />
-<hkern u1="&#xdd;" u2="v" k="80" />
-<hkern u1="&#xdd;" u2="q" k="217" />
-<hkern u1="&#xdd;" u2="m" k="164" />
-<hkern u1="&#xdd;" u2="b" k="18" />
-<hkern u1="&#xdd;" u2="]" k="-27" />
-<hkern u1="&#xdd;" u2="\" k="-27" />
-<hkern u1="&#xdd;" u2="V" k="-35" />
-<hkern u1="&#xdd;" u2="Q" k="25" />
-<hkern u1="&#xdd;" u2="M" k="35" />
-<hkern u1="&#xdd;" u2="&#x40;" k="39" />
-<hkern u1="&#xdd;" u2="&#x3b;" k="55" />
-<hkern u1="&#xdd;" u2="&#x3a;" k="55" />
-<hkern u1="&#xdd;" u2="&#x2f;" k="59" />
-<hkern u1="&#xdd;" u2="&#x2e;" k="76" />
-<hkern u1="&#xdd;" u2="&#x2c;" k="76" />
-<hkern u1="&#xdd;" u2="&#x29;" k="-14" />
-<hkern u1="&#xde;" u2="&#x201e;" k="72" />
-<hkern u1="&#xde;" u2="&#x201a;" k="72" />
-<hkern u1="&#xde;" u2="&#x2014;" k="18" />
-<hkern u1="&#xde;" u2="&#x2013;" k="18" />
-<hkern u1="&#xde;" u2="&#x178;" k="39" />
-<hkern u1="&#xde;" u2="&#x153;" k="14" />
-<hkern u1="&#xde;" u2="&#xfe;" k="16" />
-<hkern u1="&#xde;" u2="&#xfc;" k="14" />
-<hkern u1="&#xde;" u2="&#xfb;" k="14" />
-<hkern u1="&#xde;" u2="&#xfa;" k="14" />
-<hkern u1="&#xde;" u2="&#xf9;" k="14" />
-<hkern u1="&#xde;" u2="&#xf8;" k="14" />
-<hkern u1="&#xde;" u2="&#xf6;" k="14" />
-<hkern u1="&#xde;" u2="&#xf5;" k="14" />
-<hkern u1="&#xde;" u2="&#xf4;" k="14" />
-<hkern u1="&#xde;" u2="&#xf3;" k="14" />
-<hkern u1="&#xde;" u2="&#xf2;" k="14" />
-<hkern u1="&#xde;" u2="&#xf1;" k="16" />
-<hkern u1="&#xde;" u2="&#xef;" k="16" />
-<hkern u1="&#xde;" u2="&#xee;" k="16" />
-<hkern u1="&#xde;" u2="&#xed;" k="16" />
-<hkern u1="&#xde;" u2="&#xec;" k="16" />
-<hkern u1="&#xde;" u2="&#xeb;" k="14" />
-<hkern u1="&#xde;" u2="&#xea;" k="14" />
-<hkern u1="&#xde;" u2="&#xe9;" k="14" />
-<hkern u1="&#xde;" u2="&#xe8;" k="14" />
-<hkern u1="&#xde;" u2="&#xe7;" k="14" />
-<hkern u1="&#xde;" u2="&#xe6;" k="23" />
-<hkern u1="&#xde;" u2="&#xe5;" k="23" />
-<hkern u1="&#xde;" u2="&#xe4;" k="23" />
-<hkern u1="&#xde;" u2="&#xe3;" k="23" />
-<hkern u1="&#xde;" u2="&#xe2;" k="23" />
-<hkern u1="&#xde;" u2="&#xe1;" k="23" />
-<hkern u1="&#xde;" u2="&#xe0;" k="23" />
-<hkern u1="&#xde;" u2="&#xdd;" k="39" />
-<hkern u1="&#xde;" u2="&#xc6;" k="27" />
-<hkern u1="&#xde;" u2="&#xc5;" k="10" />
-<hkern u1="&#xde;" u2="&#xc4;" k="10" />
-<hkern u1="&#xde;" u2="&#xc3;" k="10" />
-<hkern u1="&#xde;" u2="&#xc2;" k="10" />
-<hkern u1="&#xde;" u2="&#xc1;" k="10" />
-<hkern u1="&#xde;" u2="&#xc0;" k="10" />
-<hkern u1="&#xde;" u2="z" k="6" />
-<hkern u1="&#xde;" u2="u" k="14" />
-<hkern u1="&#xde;" u2="s" k="6" />
-<hkern u1="&#xde;" u2="r" k="16" />
-<hkern u1="&#xde;" u2="p" k="16" />
-<hkern u1="&#xde;" u2="o" k="14" />
-<hkern u1="&#xde;" u2="n" k="16" />
-<hkern u1="&#xde;" u2="l" k="14" />
-<hkern u1="&#xde;" u2="k" k="14" />
-<hkern u1="&#xde;" u2="j" k="16" />
-<hkern u1="&#xde;" u2="i" k="16" />
-<hkern u1="&#xde;" u2="h" k="14" />
-<hkern u1="&#xde;" u2="g" k="31" />
-<hkern u1="&#xde;" u2="e" k="14" />
-<hkern u1="&#xde;" u2="d" k="12" />
-<hkern u1="&#xde;" u2="c" k="14" />
-<hkern u1="&#xde;" u2="a" k="23" />
-<hkern u1="&#xde;" u2="Z" k="37" />
-<hkern u1="&#xde;" u2="Y" k="39" />
-<hkern u1="&#xde;" u2="W" k="6" />
-<hkern u1="&#xde;" u2="T" k="39" />
-<hkern u1="&#xde;" u2="J" k="86" />
-<hkern u1="&#xde;" u2="A" k="10" />
-<hkern u1="&#xde;" u2="&#x2d;" k="18" />
-<hkern u1="&#xde;" u2="&#x27;" k="16" />
-<hkern u1="&#xde;" u2="&#x22;" k="16" />
-<hkern u1="&#xde;" u2="&#x7d;" k="76" />
-<hkern u1="&#xde;" u2="q" k="14" />
-<hkern u1="&#xde;" u2="m" k="16" />
-<hkern u1="&#xde;" u2="b" k="14" />
-<hkern u1="&#xde;" u2="]" k="39" />
-<hkern u1="&#xde;" u2="X" k="31" />
-<hkern u1="&#xde;" u2="V" k="8" />
-<hkern u1="&#xde;" u2="&#x3f;" k="10" />
-<hkern u1="&#xde;" u2="&#x2f;" k="12" />
-<hkern u1="&#xde;" u2="&#x2e;" k="72" />
-<hkern u1="&#xde;" u2="&#x2c;" k="72" />
-<hkern u1="&#xde;" u2="&#x29;" k="53" />
-<hkern u1="&#xdf;" g2="uniFB02" k="8" />
-<hkern u1="&#xdf;" g2="uniFB01" k="8" />
-<hkern u1="&#xdf;" u2="&#x201d;" k="10" />
-<hkern u1="&#xdf;" u2="&#x2019;" k="10" />
-<hkern u1="&#xdf;" u2="&#xff;" k="16" />
-<hkern u1="&#xdf;" u2="&#xfd;" k="16" />
-<hkern u1="&#xdf;" u2="y" k="16" />
-<hkern u1="&#xdf;" u2="w" k="8" />
-<hkern u1="&#xdf;" u2="t" k="8" />
-<hkern u1="&#xdf;" u2="f" k="8" />
-<hkern u1="&#xdf;" u2="&#x7d;" k="33" />
-<hkern u1="&#xdf;" u2="v" k="12" />
-<hkern u1="&#xdf;" u2="]" k="23" />
-<hkern u1="&#xdf;" u2="\" k="16" />
-<hkern u1="&#xdf;" u2="&#x3f;" k="20" />
-<hkern u1="&#xdf;" u2="&#x29;" k="14" />
-<hkern u1="&#xdf;" u2="&#x21;" k="10" />
-<hkern u1="&#xe0;" u2="&#x7d;" k="61" />
-<hkern u1="&#xe0;" u2="]" k="49" />
-<hkern u1="&#xe0;" u2="\" k="43" />
-<hkern u1="&#xe0;" u2="X" k="31" />
-<hkern u1="&#xe0;" u2="V" k="141" />
-<hkern u1="&#xe0;" u2="Q" k="29" />
-<hkern u1="&#xe0;" u2="P" k="29" />
-<hkern u1="&#xe0;" u2="M" k="18" />
-<hkern u1="&#xe0;" u2="F" k="29" />
-<hkern u1="&#xe0;" u2="B" k="29" />
-<hkern u1="&#xe0;" u2="&#x3f;" k="51" />
-<hkern u1="&#xe0;" u2="&#x2a;" k="66" />
-<hkern u1="&#xe0;" u2="&#x29;" k="20" />
-<hkern u1="&#xe0;" u2="&#x21;" k="16" />
-<hkern u1="&#xe1;" u2="&#x7d;" k="61" />
-<hkern u1="&#xe1;" u2="]" k="49" />
-<hkern u1="&#xe1;" u2="\" k="43" />
-<hkern u1="&#xe1;" u2="X" k="31" />
-<hkern u1="&#xe1;" u2="V" k="141" />
-<hkern u1="&#xe1;" u2="Q" k="29" />
-<hkern u1="&#xe1;" u2="P" k="29" />
-<hkern u1="&#xe1;" u2="M" k="18" />
-<hkern u1="&#xe1;" u2="F" k="29" />
-<hkern u1="&#xe1;" u2="B" k="29" />
-<hkern u1="&#xe1;" u2="&#x3f;" k="51" />
-<hkern u1="&#xe1;" u2="&#x2a;" k="66" />
-<hkern u1="&#xe1;" u2="&#x29;" k="20" />
-<hkern u1="&#xe1;" u2="&#x21;" k="16" />
-<hkern u1="&#xe2;" u2="&#x7d;" k="61" />
-<hkern u1="&#xe2;" u2="]" k="49" />
-<hkern u1="&#xe2;" u2="\" k="43" />
-<hkern u1="&#xe2;" u2="X" k="31" />
-<hkern u1="&#xe2;" u2="V" k="141" />
-<hkern u1="&#xe2;" u2="Q" k="29" />
-<hkern u1="&#xe2;" u2="P" k="29" />
-<hkern u1="&#xe2;" u2="M" k="18" />
-<hkern u1="&#xe2;" u2="F" k="29" />
-<hkern u1="&#xe2;" u2="B" k="29" />
-<hkern u1="&#xe2;" u2="&#x3f;" k="51" />
-<hkern u1="&#xe2;" u2="&#x2a;" k="66" />
-<hkern u1="&#xe2;" u2="&#x29;" k="20" />
-<hkern u1="&#xe2;" u2="&#x21;" k="16" />
-<hkern u1="&#xe3;" u2="&#x7d;" k="61" />
-<hkern u1="&#xe3;" u2="]" k="49" />
-<hkern u1="&#xe3;" u2="\" k="43" />
-<hkern u1="&#xe3;" u2="X" k="31" />
-<hkern u1="&#xe3;" u2="V" k="141" />
-<hkern u1="&#xe3;" u2="Q" k="29" />
-<hkern u1="&#xe3;" u2="P" k="29" />
-<hkern u1="&#xe3;" u2="M" k="18" />
-<hkern u1="&#xe3;" u2="F" k="29" />
-<hkern u1="&#xe3;" u2="B" k="29" />
-<hkern u1="&#xe3;" u2="&#x3f;" k="51" />
-<hkern u1="&#xe3;" u2="&#x2a;" k="66" />
-<hkern u1="&#xe3;" u2="&#x29;" k="20" />
-<hkern u1="&#xe3;" u2="&#x21;" k="16" />
-<hkern u1="&#xe4;" u2="&#x7d;" k="61" />
-<hkern u1="&#xe4;" u2="]" k="49" />
-<hkern u1="&#xe4;" u2="\" k="43" />
-<hkern u1="&#xe4;" u2="X" k="31" />
-<hkern u1="&#xe4;" u2="V" k="141" />
-<hkern u1="&#xe4;" u2="Q" k="29" />
-<hkern u1="&#xe4;" u2="P" k="29" />
-<hkern u1="&#xe4;" u2="M" k="18" />
-<hkern u1="&#xe4;" u2="F" k="29" />
-<hkern u1="&#xe4;" u2="B" k="29" />
-<hkern u1="&#xe4;" u2="&#x3f;" k="51" />
-<hkern u1="&#xe4;" u2="&#x2a;" k="66" />
-<hkern u1="&#xe4;" u2="&#x29;" k="20" />
-<hkern u1="&#xe4;" u2="&#x21;" k="16" />
-<hkern u1="&#xe5;" u2="&#x7d;" k="61" />
-<hkern u1="&#xe5;" u2="]" k="49" />
-<hkern u1="&#xe5;" u2="\" k="43" />
-<hkern u1="&#xe5;" u2="X" k="31" />
-<hkern u1="&#xe5;" u2="V" k="141" />
-<hkern u1="&#xe5;" u2="Q" k="29" />
-<hkern u1="&#xe5;" u2="P" k="29" />
-<hkern u1="&#xe5;" u2="M" k="18" />
-<hkern u1="&#xe5;" u2="F" k="29" />
-<hkern u1="&#xe5;" u2="B" k="29" />
-<hkern u1="&#xe5;" u2="&#x3f;" k="51" />
-<hkern u1="&#xe5;" u2="&#x2a;" k="66" />
-<hkern u1="&#xe5;" u2="&#x29;" k="20" />
-<hkern u1="&#xe5;" u2="&#x21;" k="16" />
-<hkern u1="&#xe6;" u2="&#x7d;" k="84" />
-<hkern u1="&#xe6;" u2="]" k="59" />
-<hkern u1="&#xe6;" u2="\" k="37" />
-<hkern u1="&#xe6;" u2="X" k="35" />
-<hkern u1="&#xe6;" u2="V" k="195" />
-<hkern u1="&#xe6;" u2="Q" k="18" />
-<hkern u1="&#xe6;" u2="P" k="35" />
-<hkern u1="&#xe6;" u2="M" k="14" />
-<hkern u1="&#xe6;" u2="F" k="35" />
-<hkern u1="&#xe6;" u2="B" k="35" />
-<hkern u1="&#xe6;" u2="&#x3f;" k="53" />
-<hkern u1="&#xe6;" u2="&#x2a;" k="76" />
-<hkern u1="&#xe6;" u2="&#x29;" k="29" />
-<hkern u1="&#xe6;" u2="&#x21;" k="16" />
-<hkern u1="&#xe7;" u2="j" k="-102" />
-<hkern u1="&#xe7;" u2="&#x7d;" k="80" />
-<hkern u1="&#xe7;" u2="]" k="61" />
-<hkern u1="&#xe7;" u2="\" k="35" />
-<hkern u1="&#xe7;" u2="X" k="29" />
-<hkern u1="&#xe7;" u2="V" k="147" />
-<hkern u1="&#xe7;" u2="Q" k="23" />
-<hkern u1="&#xe7;" u2="P" k="35" />
-<hkern u1="&#xe7;" u2="M" k="12" />
-<hkern u1="&#xe7;" u2="F" k="35" />
-<hkern u1="&#xe7;" u2="B" k="35" />
-<hkern u1="&#xe7;" u2="&#x3f;" k="49" />
-<hkern u1="&#xe7;" u2="&#x2a;" k="72" />
-<hkern u1="&#xe7;" u2="&#x29;" k="29" />
-<hkern u1="&#xe7;" u2="&#x21;" k="12" />
-<hkern u1="&#xe8;" u2="&#x7d;" k="84" />
-<hkern u1="&#xe8;" u2="]" k="59" />
-<hkern u1="&#xe8;" u2="\" k="37" />
-<hkern u1="&#xe8;" u2="X" k="35" />
-<hkern u1="&#xe8;" u2="V" k="195" />
-<hkern u1="&#xe8;" u2="Q" k="18" />
-<hkern u1="&#xe8;" u2="P" k="35" />
-<hkern u1="&#xe8;" u2="M" k="14" />
-<hkern u1="&#xe8;" u2="F" k="35" />
-<hkern u1="&#xe8;" u2="B" k="35" />
-<hkern u1="&#xe8;" u2="&#x3f;" k="53" />
-<hkern u1="&#xe8;" u2="&#x2a;" k="76" />
-<hkern u1="&#xe8;" u2="&#x29;" k="29" />
-<hkern u1="&#xe8;" u2="&#x21;" k="16" />
-<hkern u1="&#xe9;" u2="&#x7d;" k="84" />
-<hkern u1="&#xe9;" u2="]" k="59" />
-<hkern u1="&#xe9;" u2="\" k="37" />
-<hkern u1="&#xe9;" u2="X" k="35" />
-<hkern u1="&#xe9;" u2="V" k="195" />
-<hkern u1="&#xe9;" u2="Q" k="18" />
-<hkern u1="&#xe9;" u2="P" k="35" />
-<hkern u1="&#xe9;" u2="M" k="14" />
-<hkern u1="&#xe9;" u2="F" k="35" />
-<hkern u1="&#xe9;" u2="B" k="35" />
-<hkern u1="&#xe9;" u2="&#x3f;" k="53" />
-<hkern u1="&#xe9;" u2="&#x2a;" k="76" />
-<hkern u1="&#xe9;" u2="&#x29;" k="29" />
-<hkern u1="&#xe9;" u2="&#x21;" k="16" />
-<hkern u1="&#xea;" u2="&#x7d;" k="84" />
-<hkern u1="&#xea;" u2="]" k="59" />
-<hkern u1="&#xea;" u2="\" k="37" />
-<hkern u1="&#xea;" u2="X" k="35" />
-<hkern u1="&#xea;" u2="V" k="195" />
-<hkern u1="&#xea;" u2="Q" k="18" />
-<hkern u1="&#xea;" u2="P" k="35" />
-<hkern u1="&#xea;" u2="M" k="14" />
-<hkern u1="&#xea;" u2="F" k="35" />
-<hkern u1="&#xea;" u2="B" k="35" />
-<hkern u1="&#xea;" u2="&#x3f;" k="53" />
-<hkern u1="&#xea;" u2="&#x2a;" k="76" />
-<hkern u1="&#xea;" u2="&#x29;" k="29" />
-<hkern u1="&#xea;" u2="&#x21;" k="16" />
-<hkern u1="&#xeb;" u2="&#x7d;" k="84" />
-<hkern u1="&#xeb;" u2="]" k="59" />
-<hkern u1="&#xeb;" u2="\" k="37" />
-<hkern u1="&#xeb;" u2="X" k="35" />
-<hkern u1="&#xeb;" u2="V" k="195" />
-<hkern u1="&#xeb;" u2="Q" k="18" />
-<hkern u1="&#xeb;" u2="P" k="35" />
-<hkern u1="&#xeb;" u2="M" k="14" />
-<hkern u1="&#xeb;" u2="F" k="35" />
-<hkern u1="&#xeb;" u2="B" k="35" />
-<hkern u1="&#xeb;" u2="&#x3f;" k="53" />
-<hkern u1="&#xeb;" u2="&#x2a;" k="76" />
-<hkern u1="&#xeb;" u2="&#x29;" k="29" />
-<hkern u1="&#xeb;" u2="&#x21;" k="16" />
-<hkern u1="&#xec;" u2="&#xef;" k="-12" />
-<hkern u1="&#xec;" u2="&#x7d;" k="12" />
-<hkern u1="&#xec;" u2="]" k="10" />
-<hkern u1="&#xec;" u2="X" k="27" />
-<hkern u1="&#xec;" u2="V" k="16" />
-<hkern u1="&#xec;" u2="Q" k="25" />
-<hkern u1="&#xec;" u2="P" k="29" />
-<hkern u1="&#xec;" u2="M" k="18" />
-<hkern u1="&#xec;" u2="F" k="29" />
-<hkern u1="&#xec;" u2="B" k="29" />
-<hkern u1="&#xec;" u2="&#x3f;" k="12" />
-<hkern u1="&#xec;" u2="&#x21;" k="12" />
-<hkern u1="&#xed;" u2="&#xef;" k="-12" />
-<hkern u1="&#xed;" u2="&#x7d;" k="-2" />
-<hkern u1="&#xed;" u2="]" k="-16" />
-<hkern u1="&#xed;" u2="X" k="27" />
-<hkern u1="&#xed;" u2="V" k="16" />
-<hkern u1="&#xed;" u2="Q" k="25" />
-<hkern u1="&#xed;" u2="P" k="29" />
-<hkern u1="&#xed;" u2="M" k="18" />
-<hkern u1="&#xed;" u2="F" k="29" />
-<hkern u1="&#xed;" u2="B" k="29" />
-<hkern u1="&#xed;" u2="&#x3f;" k="12" />
-<hkern u1="&#xed;" u2="&#x21;" k="12" />
-<hkern u1="&#xee;" u2="&#x27;" k="-31" />
-<hkern u1="&#xee;" u2="&#xef;" k="-12" />
-<hkern u1="&#xee;" u2="&#x7d;" k="12" />
-<hkern u1="&#xee;" u2="]" k="10" />
-<hkern u1="&#xee;" u2="\" k="-41" />
-<hkern u1="&#xee;" u2="X" k="27" />
-<hkern u1="&#xee;" u2="V" k="16" />
-<hkern u1="&#xee;" u2="Q" k="25" />
-<hkern u1="&#xee;" u2="P" k="29" />
-<hkern u1="&#xee;" u2="M" k="18" />
-<hkern u1="&#xee;" u2="F" k="29" />
-<hkern u1="&#xee;" u2="B" k="29" />
-<hkern u1="&#xee;" u2="&#x3f;" k="-55" />
-<hkern u1="&#xee;" u2="&#x2a;" k="-43" />
-<hkern u1="&#xee;" u2="&#x22;" k="-31" />
-<hkern u1="&#xee;" u2="&#x21;" k="12" />
-<hkern u1="&#xef;" u2="&#x2019;" k="-39" />
-<hkern u1="&#xef;" u2="&#xee;" k="-18" />
-<hkern u1="&#xef;" u2="&#xed;" k="-18" />
-<hkern u1="&#xef;" u2="&#xec;" k="-18" />
-<hkern u1="&#xef;" u2="j" k="-16" />
-<hkern u1="&#xef;" u2="i" k="-18" />
-<hkern u1="&#xef;" u2="&#x27;" k="-37" />
-<hkern u1="&#xef;" u2="&#x201d;" k="-39" />
-<hkern u1="&#xef;" u2="&#xef;" k="-12" />
-<hkern u1="&#xef;" u2="&#x7d;" k="-88" />
-<hkern u1="&#xef;" u2="]" k="-98" />
-<hkern u1="&#xef;" u2="\" k="-84" />
-<hkern u1="&#xef;" u2="X" k="27" />
-<hkern u1="&#xef;" u2="V" k="16" />
-<hkern u1="&#xef;" u2="Q" k="25" />
-<hkern u1="&#xef;" u2="P" k="29" />
-<hkern u1="&#xef;" u2="M" k="18" />
-<hkern u1="&#xef;" u2="F" k="29" />
-<hkern u1="&#xef;" u2="B" k="29" />
-<hkern u1="&#xef;" u2="&#x3f;" k="-63" />
-<hkern u1="&#xef;" u2="&#x2a;" k="-63" />
-<hkern u1="&#xef;" u2="&#x29;" k="-78" />
-<hkern u1="&#xef;" u2="&#x22;" k="-37" />
-<hkern u1="&#xef;" u2="&#x21;" k="12" />
-<hkern u1="&#xf0;" u2="&#x27;" k="16" />
-<hkern u1="&#xf0;" u2="&#x22;" k="16" />
-<hkern u1="&#xf0;" u2="&#x7d;" k="51" />
-<hkern u1="&#xf0;" u2="]" k="39" />
-<hkern u1="&#xf0;" u2="\" k="20" />
-<hkern u1="&#xf0;" u2="&#x3f;" k="39" />
-<hkern u1="&#xf0;" u2="&#x2a;" k="12" />
-<hkern u1="&#xf0;" u2="&#x29;" k="37" />
-<hkern u1="&#xf0;" u2="&#x21;" k="16" />
-<hkern u1="&#xf1;" u2="&#x7d;" k="61" />
-<hkern u1="&#xf1;" u2="]" k="49" />
-<hkern u1="&#xf1;" u2="\" k="47" />
-<hkern u1="&#xf1;" u2="X" k="31" />
-<hkern u1="&#xf1;" u2="V" k="150" />
-<hkern u1="&#xf1;" u2="Q" k="31" />
-<hkern u1="&#xf1;" u2="P" k="31" />
-<hkern u1="&#xf1;" u2="M" k="16" />
-<hkern u1="&#xf1;" u2="F" k="31" />
-<hkern u1="&#xf1;" u2="B" k="31" />
-<hkern u1="&#xf1;" u2="&#x3f;" k="53" />
-<hkern u1="&#xf1;" u2="&#x2a;" k="76" />
-<hkern u1="&#xf1;" u2="&#x29;" k="20" />
-<hkern u1="&#xf1;" u2="&#x21;" k="16" />
-<hkern u1="&#xf2;" u2="&#x7d;" k="88" />
-<hkern u1="&#xf2;" u2="x" k="6" />
-<hkern u1="&#xf2;" u2="]" k="63" />
-<hkern u1="&#xf2;" u2="\" k="41" />
-<hkern u1="&#xf2;" u2="X" k="45" />
-<hkern u1="&#xf2;" u2="V" k="160" />
-<hkern u1="&#xf2;" u2="Q" k="23" />
-<hkern u1="&#xf2;" u2="P" k="39" />
-<hkern u1="&#xf2;" u2="M" k="18" />
-<hkern u1="&#xf2;" u2="F" k="39" />
-<hkern u1="&#xf2;" u2="B" k="39" />
-<hkern u1="&#xf2;" u2="&#x3f;" k="55" />
-<hkern u1="&#xf2;" u2="&#x2a;" k="84" />
-<hkern u1="&#xf2;" u2="&#x29;" k="45" />
-<hkern u1="&#xf2;" u2="&#x21;" k="18" />
-<hkern u1="&#xf3;" u2="&#x7d;" k="88" />
-<hkern u1="&#xf3;" u2="x" k="6" />
-<hkern u1="&#xf3;" u2="]" k="63" />
-<hkern u1="&#xf3;" u2="\" k="41" />
-<hkern u1="&#xf3;" u2="X" k="45" />
-<hkern u1="&#xf3;" u2="V" k="160" />
-<hkern u1="&#xf3;" u2="Q" k="23" />
-<hkern u1="&#xf3;" u2="P" k="39" />
-<hkern u1="&#xf3;" u2="M" k="18" />
-<hkern u1="&#xf3;" u2="F" k="39" />
-<hkern u1="&#xf3;" u2="B" k="39" />
-<hkern u1="&#xf3;" u2="&#x3f;" k="55" />
-<hkern u1="&#xf3;" u2="&#x2a;" k="84" />
-<hkern u1="&#xf3;" u2="&#x29;" k="45" />
-<hkern u1="&#xf3;" u2="&#x21;" k="18" />
-<hkern u1="&#xf4;" u2="&#x7d;" k="88" />
-<hkern u1="&#xf4;" u2="x" k="6" />
-<hkern u1="&#xf4;" u2="]" k="63" />
-<hkern u1="&#xf4;" u2="\" k="41" />
-<hkern u1="&#xf4;" u2="X" k="45" />
-<hkern u1="&#xf4;" u2="V" k="160" />
-<hkern u1="&#xf4;" u2="Q" k="23" />
-<hkern u1="&#xf4;" u2="P" k="39" />
-<hkern u1="&#xf4;" u2="M" k="18" />
-<hkern u1="&#xf4;" u2="F" k="39" />
-<hkern u1="&#xf4;" u2="B" k="39" />
-<hkern u1="&#xf4;" u2="&#x3f;" k="55" />
-<hkern u1="&#xf4;" u2="&#x2a;" k="84" />
-<hkern u1="&#xf4;" u2="&#x29;" k="45" />
-<hkern u1="&#xf4;" u2="&#x21;" k="18" />
-<hkern u1="&#xf5;" u2="&#x7d;" k="88" />
-<hkern u1="&#xf5;" u2="x" k="6" />
-<hkern u1="&#xf5;" u2="]" k="63" />
-<hkern u1="&#xf5;" u2="\" k="41" />
-<hkern u1="&#xf5;" u2="X" k="45" />
-<hkern u1="&#xf5;" u2="V" k="160" />
-<hkern u1="&#xf5;" u2="Q" k="23" />
-<hkern u1="&#xf5;" u2="P" k="39" />
-<hkern u1="&#xf5;" u2="M" k="18" />
-<hkern u1="&#xf5;" u2="F" k="39" />
-<hkern u1="&#xf5;" u2="B" k="39" />
-<hkern u1="&#xf5;" u2="&#x3f;" k="55" />
-<hkern u1="&#xf5;" u2="&#x2a;" k="84" />
-<hkern u1="&#xf5;" u2="&#x29;" k="45" />
-<hkern u1="&#xf5;" u2="&#x21;" k="18" />
-<hkern u1="&#xf6;" u2="&#x7d;" k="88" />
-<hkern u1="&#xf6;" u2="x" k="6" />
-<hkern u1="&#xf6;" u2="]" k="63" />
-<hkern u1="&#xf6;" u2="\" k="41" />
-<hkern u1="&#xf6;" u2="X" k="45" />
-<hkern u1="&#xf6;" u2="V" k="160" />
-<hkern u1="&#xf6;" u2="Q" k="23" />
-<hkern u1="&#xf6;" u2="P" k="39" />
-<hkern u1="&#xf6;" u2="M" k="18" />
-<hkern u1="&#xf6;" u2="F" k="39" />
-<hkern u1="&#xf6;" u2="B" k="39" />
-<hkern u1="&#xf6;" u2="&#x3f;" k="55" />
-<hkern u1="&#xf6;" u2="&#x2a;" k="84" />
-<hkern u1="&#xf6;" u2="&#x29;" k="45" />
-<hkern u1="&#xf6;" u2="&#x21;" k="18" />
-<hkern u1="&#xf8;" u2="&#x7d;" k="88" />
-<hkern u1="&#xf8;" u2="x" k="6" />
-<hkern u1="&#xf8;" u2="]" k="63" />
-<hkern u1="&#xf8;" u2="\" k="41" />
-<hkern u1="&#xf8;" u2="X" k="45" />
-<hkern u1="&#xf8;" u2="V" k="160" />
-<hkern u1="&#xf8;" u2="Q" k="23" />
-<hkern u1="&#xf8;" u2="P" k="39" />
-<hkern u1="&#xf8;" u2="M" k="18" />
-<hkern u1="&#xf8;" u2="F" k="39" />
-<hkern u1="&#xf8;" u2="B" k="39" />
-<hkern u1="&#xf8;" u2="&#x3f;" k="55" />
-<hkern u1="&#xf8;" u2="&#x2a;" k="84" />
-<hkern u1="&#xf8;" u2="&#x29;" k="45" />
-<hkern u1="&#xf8;" u2="&#x21;" k="18" />
-<hkern u1="&#xf9;" u2="&#x7d;" k="59" />
-<hkern u1="&#xf9;" u2="]" k="45" />
-<hkern u1="&#xf9;" u2="\" k="35" />
-<hkern u1="&#xf9;" u2="X" k="33" />
-<hkern u1="&#xf9;" u2="V" k="111" />
-<hkern u1="&#xf9;" u2="Q" k="25" />
-<hkern u1="&#xf9;" u2="P" k="27" />
-<hkern u1="&#xf9;" u2="M" k="18" />
-<hkern u1="&#xf9;" u2="F" k="27" />
-<hkern u1="&#xf9;" u2="B" k="27" />
-<hkern u1="&#xf9;" u2="&#x3f;" k="49" />
-<hkern u1="&#xf9;" u2="&#x2a;" k="49" />
-<hkern u1="&#xf9;" u2="&#x29;" k="23" />
-<hkern u1="&#xf9;" u2="&#x21;" k="14" />
-<hkern u1="&#xfa;" u2="&#x7d;" k="59" />
-<hkern u1="&#xfa;" u2="]" k="45" />
-<hkern u1="&#xfa;" u2="\" k="35" />
-<hkern u1="&#xfa;" u2="X" k="33" />
-<hkern u1="&#xfa;" u2="V" k="111" />
-<hkern u1="&#xfa;" u2="Q" k="25" />
-<hkern u1="&#xfa;" u2="P" k="27" />
-<hkern u1="&#xfa;" u2="M" k="18" />
-<hkern u1="&#xfa;" u2="F" k="27" />
-<hkern u1="&#xfa;" u2="B" k="27" />
-<hkern u1="&#xfa;" u2="&#x3f;" k="49" />
-<hkern u1="&#xfa;" u2="&#x2a;" k="49" />
-<hkern u1="&#xfa;" u2="&#x29;" k="23" />
-<hkern u1="&#xfa;" u2="&#x21;" k="14" />
-<hkern u1="&#xfb;" u2="&#x7d;" k="59" />
-<hkern u1="&#xfb;" u2="]" k="45" />
-<hkern u1="&#xfb;" u2="\" k="35" />
-<hkern u1="&#xfb;" u2="X" k="33" />
-<hkern u1="&#xfb;" u2="V" k="111" />
-<hkern u1="&#xfb;" u2="Q" k="25" />
-<hkern u1="&#xfb;" u2="P" k="27" />
-<hkern u1="&#xfb;" u2="M" k="18" />
-<hkern u1="&#xfb;" u2="F" k="27" />
-<hkern u1="&#xfb;" u2="B" k="27" />
-<hkern u1="&#xfb;" u2="&#x3f;" k="49" />
-<hkern u1="&#xfb;" u2="&#x2a;" k="49" />
-<hkern u1="&#xfb;" u2="&#x29;" k="23" />
-<hkern u1="&#xfb;" u2="&#x21;" k="14" />
-<hkern u1="&#xfc;" u2="&#x7d;" k="59" />
-<hkern u1="&#xfc;" u2="]" k="45" />
-<hkern u1="&#xfc;" u2="\" k="35" />
-<hkern u1="&#xfc;" u2="X" k="33" />
-<hkern u1="&#xfc;" u2="V" k="111" />
-<hkern u1="&#xfc;" u2="Q" k="25" />
-<hkern u1="&#xfc;" u2="P" k="27" />
-<hkern u1="&#xfc;" u2="M" k="18" />
-<hkern u1="&#xfc;" u2="F" k="27" />
-<hkern u1="&#xfc;" u2="B" k="27" />
-<hkern u1="&#xfc;" u2="&#x3f;" k="49" />
-<hkern u1="&#xfc;" u2="&#x2a;" k="49" />
-<hkern u1="&#xfc;" u2="&#x29;" k="23" />
-<hkern u1="&#xfc;" u2="&#x21;" k="14" />
-<hkern u1="&#xfd;" u2="&#x7d;" k="43" />
-<hkern u1="&#xfd;" u2="]" k="29" />
-<hkern u1="&#xfd;" u2="\" k="10" />
-<hkern u1="&#xfd;" u2="X" k="80" />
-<hkern u1="&#xfd;" u2="V" k="43" />
-<hkern u1="&#xfd;" u2="P" k="31" />
-<hkern u1="&#xfd;" u2="M" k="33" />
-<hkern u1="&#xfd;" u2="F" k="31" />
-<hkern u1="&#xfd;" u2="B" k="31" />
-<hkern u1="&#xfd;" u2="&#x3f;" k="31" />
-<hkern u1="&#xfd;" u2="&#x2f;" k="14" />
-<hkern u1="&#xfd;" u2="&#x2e;" k="31" />
-<hkern u1="&#xfd;" u2="&#x2c;" k="31" />
-<hkern u1="&#xfd;" u2="&#x2a;" k="10" />
-<hkern u1="&#xfd;" u2="&#x29;" k="31" />
-<hkern u1="&#xfd;" u2="&#x21;" k="12" />
-<hkern u1="&#xfe;" u2="&#x7d;" k="82" />
-<hkern u1="&#xfe;" u2="]" k="55" />
-<hkern u1="&#xfe;" u2="\" k="33" />
-<hkern u1="&#xfe;" u2="X" k="43" />
-<hkern u1="&#xfe;" u2="V" k="156" />
-<hkern u1="&#xfe;" u2="Q" k="20" />
-<hkern u1="&#xfe;" u2="P" k="39" />
-<hkern u1="&#xfe;" u2="M" k="16" />
-<hkern u1="&#xfe;" u2="F" k="39" />
-<hkern u1="&#xfe;" u2="B" k="39" />
-<hkern u1="&#xfe;" u2="&#x3f;" k="47" />
-<hkern u1="&#xfe;" u2="&#x2a;" k="78" />
-<hkern u1="&#xfe;" u2="&#x29;" k="33" />
-<hkern u1="&#xfe;" u2="&#x21;" k="12" />
-<hkern u1="&#xff;" u2="&#x7d;" k="43" />
-<hkern u1="&#xff;" u2="]" k="29" />
-<hkern u1="&#xff;" u2="\" k="10" />
-<hkern u1="&#xff;" u2="X" k="80" />
-<hkern u1="&#xff;" u2="V" k="43" />
-<hkern u1="&#xff;" u2="P" k="31" />
-<hkern u1="&#xff;" u2="M" k="33" />
-<hkern u1="&#xff;" u2="F" k="31" />
-<hkern u1="&#xff;" u2="B" k="31" />
-<hkern u1="&#xff;" u2="&#x3f;" k="31" />
-<hkern u1="&#xff;" u2="&#x2f;" k="14" />
-<hkern u1="&#xff;" u2="&#x2e;" k="31" />
-<hkern u1="&#xff;" u2="&#x2c;" k="31" />
-<hkern u1="&#xff;" u2="&#x2a;" k="10" />
-<hkern u1="&#xff;" u2="&#x29;" k="31" />
-<hkern u1="&#xff;" u2="&#x21;" k="12" />
-<hkern u1="&#x152;" u2="&#xf0;" k="39" />
-<hkern u1="&#x152;" u2="&#xef;" k="-18" />
-<hkern u1="&#x152;" u2="&#xdf;" k="25" />
-<hkern u1="&#x152;" u2="x" k="16" />
-<hkern u1="&#x152;" u2="v" k="39" />
-<hkern u1="&#x152;" u2="q" k="37" />
-<hkern u1="&#x152;" u2="m" k="27" />
-<hkern u1="&#x152;" u2="b" k="16" />
-<hkern u1="&#x152;" u2="Q" k="6" />
-<hkern u1="&#x153;" u2="&#x7d;" k="84" />
-<hkern u1="&#x153;" u2="]" k="59" />
-<hkern u1="&#x153;" u2="\" k="37" />
-<hkern u1="&#x153;" u2="X" k="35" />
-<hkern u1="&#x153;" u2="V" k="195" />
-<hkern u1="&#x153;" u2="Q" k="18" />
-<hkern u1="&#x153;" u2="P" k="35" />
-<hkern u1="&#x153;" u2="M" k="14" />
-<hkern u1="&#x153;" u2="F" k="35" />
-<hkern u1="&#x153;" u2="B" k="35" />
-<hkern u1="&#x153;" u2="&#x3f;" k="53" />
-<hkern u1="&#x153;" u2="&#x2a;" k="76" />
-<hkern u1="&#x153;" u2="&#x29;" k="29" />
-<hkern u1="&#x153;" u2="&#x21;" k="16" />
-<hkern u1="&#x178;" u2="&#xfe;" k="70" />
-<hkern u1="&#x178;" u2="&#xfc;" k="147" />
-<hkern u1="&#x178;" u2="&#xf6;" k="139" />
-<hkern u1="&#x178;" u2="&#xf5;" k="174" />
-<hkern u1="&#x178;" u2="&#xf0;" k="80" />
-<hkern u1="&#x178;" u2="&#xef;" k="-113" />
-<hkern u1="&#x178;" u2="&#xee;" k="-8" />
-<hkern u1="&#x178;" u2="&#xec;" k="-31" />
-<hkern u1="&#x178;" u2="&#xeb;" k="135" />
-<hkern u1="&#x178;" u2="&#xe5;" k="180" />
-<hkern u1="&#x178;" u2="&#xe4;" k="115" />
-<hkern u1="&#x178;" u2="&#xe3;" k="125" />
-<hkern u1="&#x178;" u2="&#xe2;" k="195" />
-<hkern u1="&#x178;" u2="&#xdf;" k="70" />
-<hkern u1="&#x178;" u2="&#x7d;" k="-27" />
-<hkern u1="&#x178;" u2="x" k="84" />
-<hkern u1="&#x178;" u2="v" k="80" />
-<hkern u1="&#x178;" u2="q" k="217" />
-<hkern u1="&#x178;" u2="m" k="164" />
-<hkern u1="&#x178;" u2="b" k="18" />
-<hkern u1="&#x178;" u2="]" k="-27" />
-<hkern u1="&#x178;" u2="\" k="-27" />
-<hkern u1="&#x178;" u2="V" k="-35" />
-<hkern u1="&#x178;" u2="Q" k="25" />
-<hkern u1="&#x178;" u2="M" k="35" />
-<hkern u1="&#x178;" u2="&#x40;" k="39" />
-<hkern u1="&#x178;" u2="&#x3b;" k="55" />
-<hkern u1="&#x178;" u2="&#x3a;" k="55" />
-<hkern u1="&#x178;" u2="&#x2f;" k="59" />
-<hkern u1="&#x178;" u2="&#x2e;" k="76" />
-<hkern u1="&#x178;" u2="&#x2c;" k="76" />
-<hkern u1="&#x178;" u2="&#x29;" k="-14" />
-<hkern u1="&#x2013;" u2="&#xde;" k="39" />
-<hkern u1="&#x2013;" u2="X" k="66" />
-<hkern u1="&#x2013;" u2="V" k="68" />
-<hkern u1="&#x2013;" u2="Q" k="23" />
-<hkern u1="&#x2013;" u2="P" k="39" />
-<hkern u1="&#x2013;" u2="M" k="31" />
-<hkern u1="&#x2013;" u2="F" k="39" />
-<hkern u1="&#x2013;" u2="B" k="39" />
-<hkern u1="&#x2013;" u2="&#x39;" k="53" />
-<hkern u1="&#x2013;" u2="&#x38;" k="27" />
-<hkern u1="&#x2013;" u2="&#x37;" k="70" />
-<hkern u1="&#x2013;" u2="&#x36;" k="16" />
-<hkern u1="&#x2013;" u2="&#x35;" k="100" />
-<hkern u1="&#x2013;" u2="&#x34;" k="10" />
-<hkern u1="&#x2013;" u2="&#x33;" k="76" />
-<hkern u1="&#x2013;" u2="&#x32;" k="76" />
-<hkern u1="&#x2013;" u2="&#x31;" k="61" />
-<hkern u1="&#x2013;" u2="&#x30;" k="29" />
-<hkern u1="&#x2014;" u2="&#xde;" k="39" />
-<hkern u1="&#x2014;" u2="X" k="66" />
-<hkern u1="&#x2014;" u2="V" k="68" />
-<hkern u1="&#x2014;" u2="Q" k="23" />
-<hkern u1="&#x2014;" u2="P" k="39" />
-<hkern u1="&#x2014;" u2="M" k="31" />
-<hkern u1="&#x2014;" u2="F" k="39" />
-<hkern u1="&#x2014;" u2="B" k="39" />
-<hkern u1="&#x2014;" u2="&#x39;" k="53" />
-<hkern u1="&#x2014;" u2="&#x38;" k="27" />
-<hkern u1="&#x2014;" u2="&#x37;" k="70" />
-<hkern u1="&#x2014;" u2="&#x36;" k="16" />
-<hkern u1="&#x2014;" u2="&#x35;" k="100" />
-<hkern u1="&#x2014;" u2="&#x34;" k="10" />
-<hkern u1="&#x2014;" u2="&#x33;" k="76" />
-<hkern u1="&#x2014;" u2="&#x32;" k="76" />
-<hkern u1="&#x2014;" u2="&#x31;" k="61" />
-<hkern u1="&#x2014;" u2="&#x30;" k="29" />
-<hkern u1="&#x2018;" u2="&#xf0;" k="27" />
-<hkern u1="&#x2018;" u2="&#xef;" k="-25" />
-<hkern u1="&#x2018;" u2="&#xde;" k="12" />
-<hkern u1="&#x2018;" u2="x" k="10" />
-<hkern u1="&#x2018;" u2="q" k="53" />
-<hkern u1="&#x2018;" u2="m" k="23" />
-<hkern u1="&#x2018;" u2="P" k="12" />
-<hkern u1="&#x2018;" u2="M" k="29" />
-<hkern u1="&#x2018;" u2="F" k="12" />
-<hkern u1="&#x2018;" u2="B" k="12" />
-<hkern u1="&#x2018;" u2="&#x2e;" k="160" />
-<hkern u1="&#x201a;" u2="&#xde;" k="20" />
-<hkern u1="&#x201a;" u2="v" k="33" />
-<hkern u1="&#x201a;" u2="V" k="86" />
-<hkern u1="&#x201a;" u2="Q" k="55" />
-<hkern u1="&#x201a;" u2="P" k="20" />
-<hkern u1="&#x201a;" u2="F" k="20" />
-<hkern u1="&#x201a;" u2="B" k="20" />
-<hkern u1="&#x201c;" u2="&#xf0;" k="27" />
-<hkern u1="&#x201c;" u2="&#xef;" k="-27" />
-<hkern u1="&#x201c;" u2="&#xde;" k="12" />
-<hkern u1="&#x201c;" u2="x" k="10" />
-<hkern u1="&#x201c;" u2="q" k="53" />
-<hkern u1="&#x201c;" u2="m" k="23" />
-<hkern u1="&#x201c;" u2="P" k="12" />
-<hkern u1="&#x201c;" u2="M" k="29" />
-<hkern u1="&#x201c;" u2="F" k="12" />
-<hkern u1="&#x201c;" u2="B" k="12" />
-<hkern u1="&#x201c;" u2="&#x2e;" k="160" />
-<hkern u1="&#x201e;" u2="&#xde;" k="20" />
-<hkern u1="&#x201e;" u2="v" k="33" />
-<hkern u1="&#x201e;" u2="V" k="86" />
-<hkern u1="&#x201e;" u2="Q" k="55" />
-<hkern u1="&#x201e;" u2="P" k="20" />
-<hkern u1="&#x201e;" u2="F" k="20" />
-<hkern u1="&#x201e;" u2="B" k="20" />
-<hkern u1="&#x2039;" u2="V" k="25" />
-<hkern u1="&#x203a;" u2="&#xde;" k="10" />
-<hkern u1="&#x203a;" u2="x" k="14" />
-<hkern u1="&#x203a;" u2="X" k="16" />
-<hkern u1="&#x203a;" u2="V" k="72" />
-<hkern u1="&#x203a;" u2="P" k="10" />
-<hkern u1="&#x203a;" u2="F" k="10" />
-<hkern u1="&#x203a;" u2="B" k="10" />
-<hkern g1="uniFB01" u2="&#xef;" k="-12" />
-<hkern g1="uniFB01" u2="&#x7d;" k="12" />
-<hkern g1="uniFB01" u2="]" k="10" />
-<hkern g1="uniFB01" u2="X" k="27" />
-<hkern g1="uniFB01" u2="V" k="16" />
-<hkern g1="uniFB01" u2="Q" k="25" />
-<hkern g1="uniFB01" u2="P" k="29" />
-<hkern g1="uniFB01" u2="M" k="18" />
-<hkern g1="uniFB01" u2="F" k="29" />
-<hkern g1="uniFB01" u2="B" k="29" />
-<hkern g1="uniFB01" u2="&#x3f;" k="12" />
-<hkern g1="uniFB01" u2="&#x21;" k="12" />
-<hkern g1="uniFB02" u2="&#x7d;" k="12" />
-<hkern g1="uniFB02" u2="X" k="27" />
-<hkern g1="uniFB02" u2="V" k="18" />
-<hkern g1="uniFB02" u2="Q" k="23" />
-<hkern g1="uniFB02" u2="P" k="29" />
-<hkern g1="uniFB02" u2="M" k="18" />
-<hkern g1="uniFB02" u2="F" k="29" />
-<hkern g1="uniFB02" u2="B" k="29" />
-<hkern g1="uniFB02" u2="&#x3f;" k="12" />
-<hkern g1="uniFB02" u2="&#x21;" k="12" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteright,quotedblright" 	k="35" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="J" 	k="-80" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="t" 	k="23" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="8" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="y,yacute,ydieresis" 	k="47" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="80" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quotedbl,quotesingle" 	k="49" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="98" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="C,Ccedilla" 	k="8" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="hyphen,endash,emdash" 	k="31" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="f,uniFB01,uniFB02" 	k="23" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="14" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="w" 	k="31" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="14" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="G" 	k="8" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="W" 	k="51" />
-<hkern g1="C,Ccedilla" 	g2="J" 	k="-39" />
-<hkern g1="C,Ccedilla" 	g2="t" 	k="51" />
-<hkern g1="C,Ccedilla" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="6" />
-<hkern g1="C,Ccedilla" 	g2="y,yacute,ydieresis" 	k="80" />
-<hkern g1="C,Ccedilla" 	g2="C,Ccedilla" 	k="6" />
-<hkern g1="C,Ccedilla" 	g2="hyphen,endash,emdash" 	k="94" />
-<hkern g1="C,Ccedilla" 	g2="f,uniFB01,uniFB02" 	k="55" />
-<hkern g1="C,Ccedilla" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="31" />
-<hkern g1="C,Ccedilla" 	g2="w" 	k="66" />
-<hkern g1="C,Ccedilla" 	g2="G" 	k="6" />
-<hkern g1="C,Ccedilla" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="16" />
-<hkern g1="C,Ccedilla" 	g2="d" 	k="23" />
-<hkern g1="C,Ccedilla" 	g2="s" 	k="35" />
-<hkern g1="C,Ccedilla" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="14" />
-<hkern g1="C,Ccedilla" 	g2="r" 	k="27" />
-<hkern g1="C,Ccedilla" 	g2="h" 	k="14" />
-<hkern g1="C,Ccedilla" 	g2="k" 	k="14" />
-<hkern g1="C,Ccedilla" 	g2="g" 	k="20" />
-<hkern g1="C,Ccedilla" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="23" />
-<hkern g1="C,Ccedilla" 	g2="p,thorn" 	k="27" />
-<hkern g1="C,Ccedilla" 	g2="z" 	k="33" />
-<hkern g1="C,Ccedilla" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="25" />
-<hkern g1="C,Ccedilla" 	g2="c,ccedilla" 	k="23" />
-<hkern g1="C,Ccedilla" 	g2="l" 	k="14" />
-<hkern g1="C,Ccedilla" 	g2="j" 	k="16" />
-<hkern g1="C,Ccedilla" 	g2="n,ntilde" 	k="27" />
-<hkern g1="D,Eth" 	g2="J" 	k="23" />
-<hkern g1="D,Eth" 	g2="t" 	k="8" />
-<hkern g1="D,Eth" 	g2="T" 	k="27" />
-<hkern g1="D,Eth" 	g2="quotedbl,quotesingle" 	k="16" />
-<hkern g1="D,Eth" 	g2="Y,Yacute,Ydieresis" 	k="27" />
-<hkern g1="D,Eth" 	g2="hyphen,endash,emdash" 	k="23" />
-<hkern g1="D,Eth" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="23" />
-<hkern g1="D,Eth" 	g2="w" 	k="12" />
-<hkern g1="D,Eth" 	g2="W" 	k="8" />
-<hkern g1="D,Eth" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="27" />
-<hkern g1="D,Eth" 	g2="d" 	k="23" />
-<hkern g1="D,Eth" 	g2="s" 	k="18" />
-<hkern g1="D,Eth" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="29" />
-<hkern g1="D,Eth" 	g2="r" 	k="27" />
-<hkern g1="D,Eth" 	g2="h" 	k="25" />
-<hkern g1="D,Eth" 	g2="k" 	k="25" />
-<hkern g1="D,Eth" 	g2="g" 	k="39" />
-<hkern g1="D,Eth" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="23" />
-<hkern g1="D,Eth" 	g2="p,thorn" 	k="27" />
-<hkern g1="D,Eth" 	g2="z" 	k="20" />
-<hkern g1="D,Eth" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="23" />
-<hkern g1="D,Eth" 	g2="c,ccedilla" 	k="23" />
-<hkern g1="D,Eth" 	g2="l" 	k="25" />
-<hkern g1="D,Eth" 	g2="j" 	k="27" />
-<hkern g1="D,Eth" 	g2="n,ntilde" 	k="27" />
-<hkern g1="D,Eth" 	g2="quotesinglbase,quotedblbase" 	k="55" />
-<hkern g1="D,Eth" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
-<hkern g1="D,Eth" 	g2="Z" 	k="18" />
-<hkern g1="D,Eth" 	g2="AE" 	k="16" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="J" 	k="-23" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="t" 	k="37" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="6" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="y,yacute,ydieresis" 	k="41" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="C,Ccedilla" 	k="6" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="hyphen,endash,emdash" 	k="78" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="f,uniFB01,uniFB02" 	k="41" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="35" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="w" 	k="41" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="G" 	k="6" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="18" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="d" 	k="37" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="s" 	k="25" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="25" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="r" 	k="27" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="h" 	k="16" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="k" 	k="16" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="g" 	k="16" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="37" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="p,thorn" 	k="27" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="z" 	k="18" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="39" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="c,ccedilla" 	k="39" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="l" 	k="16" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="j" 	k="18" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="n,ntilde" 	k="27" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="guillemotleft,guilsinglleft" 	k="16" />
-<hkern g1="G" 	g2="quoteright,quotedblright" 	k="10" />
-<hkern g1="G" 	g2="t" 	k="29" />
-<hkern g1="G" 	g2="y,yacute,ydieresis" 	k="27" />
-<hkern g1="G" 	g2="hyphen,endash,emdash" 	k="25" />
-<hkern g1="G" 	g2="f,uniFB01,uniFB02" 	k="33" />
-<hkern g1="G" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
-<hkern g1="G" 	g2="w" 	k="27" />
-<hkern g1="G" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="16" />
-<hkern g1="G" 	g2="d" 	k="12" />
-<hkern g1="G" 	g2="s" 	k="14" />
-<hkern g1="G" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="16" />
-<hkern g1="G" 	g2="r" 	k="20" />
-<hkern g1="G" 	g2="h" 	k="16" />
-<hkern g1="G" 	g2="k" 	k="16" />
-<hkern g1="G" 	g2="g" 	k="18" />
-<hkern g1="G" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="12" />
-<hkern g1="G" 	g2="p,thorn" 	k="20" />
-<hkern g1="G" 	g2="z" 	k="25" />
-<hkern g1="G" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="14" />
-<hkern g1="G" 	g2="c,ccedilla" 	k="12" />
-<hkern g1="G" 	g2="l" 	k="16" />
-<hkern g1="G" 	g2="j" 	k="16" />
-<hkern g1="G" 	g2="n,ntilde" 	k="20" />
-<hkern g1="G" 	g2="quotesinglbase,quotedblbase" 	k="10" />
-<hkern g1="H" 	g2="quoteright,quotedblright" 	k="12" />
-<hkern g1="H" 	g2="t" 	k="37" />
-<hkern g1="H" 	g2="y,yacute,ydieresis" 	k="31" />
-<hkern g1="H" 	g2="quotedbl,quotesingle" 	k="16" />
-<hkern g1="H" 	g2="hyphen,endash,emdash" 	k="39" />
-<hkern g1="H" 	g2="f,uniFB01,uniFB02" 	k="35" />
-<hkern g1="H" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="31" />
-<hkern g1="H" 	g2="w" 	k="43" />
-<hkern g1="H" 	g2="W" 	k="6" />
-<hkern g1="H" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="29" />
-<hkern g1="H" 	g2="d" 	k="39" />
-<hkern g1="H" 	g2="s" 	k="37" />
-<hkern g1="H" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="39" />
-<hkern g1="H" 	g2="r" 	k="27" />
-<hkern g1="H" 	g2="h" 	k="29" />
-<hkern g1="H" 	g2="k" 	k="29" />
-<hkern g1="H" 	g2="g" 	k="41" />
-<hkern g1="H" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="39" />
-<hkern g1="H" 	g2="p,thorn" 	k="27" />
-<hkern g1="H" 	g2="z" 	k="35" />
-<hkern g1="H" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="39" />
-<hkern g1="H" 	g2="c,ccedilla" 	k="39" />
-<hkern g1="H" 	g2="l" 	k="29" />
-<hkern g1="H" 	g2="j" 	k="29" />
-<hkern g1="H" 	g2="n,ntilde" 	k="27" />
-<hkern g1="H" 	g2="quotesinglbase,quotedblbase" 	k="23" />
-<hkern g1="H" 	g2="guillemotleft,guilsinglleft" 	k="10" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="quoteright,quotedblright" 	k="12" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="t" 	k="37" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="y,yacute,ydieresis" 	k="31" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="quotedbl,quotesingle" 	k="16" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="hyphen,endash,emdash" 	k="39" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="f,uniFB01,uniFB02" 	k="35" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="31" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="w" 	k="43" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="W" 	k="6" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="29" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="d" 	k="39" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="s" 	k="37" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="39" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="r" 	k="27" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="h" 	k="29" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="k" 	k="29" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="g" 	k="41" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="39" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="p,thorn" 	k="27" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="z" 	k="35" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="39" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="c,ccedilla" 	k="39" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="l" 	k="29" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="j" 	k="29" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="n,ntilde" 	k="27" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="quotesinglbase,quotedblbase" 	k="23" />
-<hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" 	g2="guillemotleft,guilsinglleft" 	k="10" />
-<hkern g1="K" 	g2="J" 	k="-31" />
-<hkern g1="K" 	g2="t" 	k="82" />
-<hkern g1="K" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="74" />
-<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="102" />
-<hkern g1="K" 	g2="C,Ccedilla" 	k="76" />
-<hkern g1="K" 	g2="hyphen,endash,emdash" 	k="80" />
-<hkern g1="K" 	g2="f,uniFB01,uniFB02" 	k="88" />
-<hkern g1="K" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="68" />
-<hkern g1="K" 	g2="w" 	k="98" />
-<hkern g1="K" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="27" />
-<hkern g1="K" 	g2="G" 	k="74" />
-<hkern g1="K" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="33" />
-<hkern g1="K" 	g2="d" 	k="61" />
-<hkern g1="K" 	g2="s" 	k="31" />
-<hkern g1="K" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="33" />
-<hkern g1="K" 	g2="r" 	k="43" />
-<hkern g1="K" 	g2="h" 	k="37" />
-<hkern g1="K" 	g2="k" 	k="37" />
-<hkern g1="K" 	g2="g" 	k="6" />
-<hkern g1="K" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="61" />
-<hkern g1="K" 	g2="p,thorn" 	k="43" />
-<hkern g1="K" 	g2="z" 	k="12" />
-<hkern g1="K" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="66" />
-<hkern g1="K" 	g2="c,ccedilla" 	k="66" />
-<hkern g1="K" 	g2="l" 	k="37" />
-<hkern g1="K" 	g2="j" 	k="33" />
-<hkern g1="K" 	g2="n,ntilde" 	k="43" />
-<hkern g1="K" 	g2="guillemotleft,guilsinglleft" 	k="20" />
-<hkern g1="K" 	g2="D,Eth" 	k="8" />
-<hkern g1="K" 	g2="K" 	k="10" />
-<hkern g1="K" 	g2="H" 	k="10" />
-<hkern g1="K" 	g2="R" 	k="10" />
-<hkern g1="K" 	g2="L" 	k="10" />
-<hkern g1="K" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="10" />
-<hkern g1="K" 	g2="N,Ntilde" 	k="8" />
-<hkern g1="K" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="10" />
-<hkern g1="L" 	g2="quoteright,quotedblright" 	k="74" />
-<hkern g1="L" 	g2="J" 	k="-131" />
-<hkern g1="L" 	g2="t" 	k="20" />
-<hkern g1="L" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
-<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="47" />
-<hkern g1="L" 	g2="T" 	k="90" />
-<hkern g1="L" 	g2="quotedbl,quotesingle" 	k="76" />
-<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="109" />
-<hkern g1="L" 	g2="C,Ccedilla" 	k="20" />
-<hkern g1="L" 	g2="hyphen,endash,emdash" 	k="92" />
-<hkern g1="L" 	g2="f,uniFB01,uniFB02" 	k="23" />
-<hkern g1="L" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="12" />
-<hkern g1="L" 	g2="w" 	k="31" />
-<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="31" />
-<hkern g1="L" 	g2="G" 	k="20" />
-<hkern g1="L" 	g2="W" 	k="86" />
-<hkern g1="L" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="6" />
-<hkern g1="L" 	g2="c,ccedilla" 	k="6" />
-<hkern g1="L" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-63" />
-<hkern g1="L" 	g2="Z" 	k="-10" />
-<hkern g1="L" 	g2="AE" 	k="-92" />
-<hkern g1="N,Ntilde" 	g2="quoteright,quotedblright" 	k="12" />
-<hkern g1="N,Ntilde" 	g2="t" 	k="37" />
-<hkern g1="N,Ntilde" 	g2="y,yacute,ydieresis" 	k="33" />
-<hkern g1="N,Ntilde" 	g2="quotedbl,quotesingle" 	k="16" />
-<hkern g1="N,Ntilde" 	g2="hyphen,endash,emdash" 	k="41" />
-<hkern g1="N,Ntilde" 	g2="f,uniFB01,uniFB02" 	k="35" />
-<hkern g1="N,Ntilde" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="31" />
-<hkern g1="N,Ntilde" 	g2="w" 	k="41" />
-<hkern g1="N,Ntilde" 	g2="W" 	k="6" />
-<hkern g1="N,Ntilde" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="29" />
-<hkern g1="N,Ntilde" 	g2="d" 	k="39" />
-<hkern g1="N,Ntilde" 	g2="s" 	k="35" />
-<hkern g1="N,Ntilde" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="39" />
-<hkern g1="N,Ntilde" 	g2="r" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="h" 	k="29" />
-<hkern g1="N,Ntilde" 	g2="k" 	k="29" />
-<hkern g1="N,Ntilde" 	g2="g" 	k="41" />
-<hkern g1="N,Ntilde" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="39" />
-<hkern g1="N,Ntilde" 	g2="p,thorn" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="z" 	k="35" />
-<hkern g1="N,Ntilde" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="39" />
-<hkern g1="N,Ntilde" 	g2="c,ccedilla" 	k="39" />
-<hkern g1="N,Ntilde" 	g2="l" 	k="29" />
-<hkern g1="N,Ntilde" 	g2="j" 	k="29" />
-<hkern g1="N,Ntilde" 	g2="n,ntilde" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="quotesinglbase,quotedblbase" 	k="23" />
-<hkern g1="N,Ntilde" 	g2="guillemotleft,guilsinglleft" 	k="10" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="J" 	k="16" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="t" 	k="8" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="T" 	k="25" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="quotedbl,quotesingle" 	k="16" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="Y,Yacute,Ydieresis" 	k="25" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="hyphen,endash,emdash" 	k="23" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="23" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="w" 	k="10" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="W" 	k="8" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="25" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="d" 	k="20" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="s" 	k="18" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="29" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="r" 	k="25" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="h" 	k="23" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="k" 	k="23" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="g" 	k="37" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="20" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="p,thorn" 	k="27" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="z" 	k="18" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="23" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="c,ccedilla" 	k="23" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="l" 	k="23" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="j" 	k="27" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="n,ntilde" 	k="25" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="quotesinglbase,quotedblbase" 	k="53" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="Z" 	k="16" />
-<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="AE" 	k="14" />
-<hkern g1="R" 	g2="t" 	k="31" />
-<hkern g1="R" 	g2="y,yacute,ydieresis" 	k="27" />
-<hkern g1="R" 	g2="hyphen,endash,emdash" 	k="70" />
-<hkern g1="R" 	g2="f,uniFB01,uniFB02" 	k="29" />
-<hkern g1="R" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="51" />
-<hkern g1="R" 	g2="w" 	k="37" />
-<hkern g1="R" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="37" />
-<hkern g1="R" 	g2="d" 	k="59" />
-<hkern g1="R" 	g2="s" 	k="37" />
-<hkern g1="R" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="39" />
-<hkern g1="R" 	g2="r" 	k="45" />
-<hkern g1="R" 	g2="h" 	k="29" />
-<hkern g1="R" 	g2="k" 	k="29" />
-<hkern g1="R" 	g2="g" 	k="33" />
-<hkern g1="R" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="61" />
-<hkern g1="R" 	g2="p,thorn" 	k="45" />
-<hkern g1="R" 	g2="z" 	k="25" />
-<hkern g1="R" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="63" />
-<hkern g1="R" 	g2="c,ccedilla" 	k="63" />
-<hkern g1="R" 	g2="l" 	k="29" />
-<hkern g1="R" 	g2="j" 	k="37" />
-<hkern g1="R" 	g2="n,ntilde" 	k="45" />
-<hkern g1="R" 	g2="quotesinglbase,quotedblbase" 	k="12" />
-<hkern g1="R" 	g2="guillemotleft,guilsinglleft" 	k="23" />
-<hkern g1="S" 	g2="quoteright,quotedblright" 	k="10" />
-<hkern g1="S" 	g2="J" 	k="-8" />
-<hkern g1="S" 	g2="t" 	k="31" />
-<hkern g1="S" 	g2="y,yacute,ydieresis" 	k="31" />
-<hkern g1="S" 	g2="hyphen,endash,emdash" 	k="18" />
-<hkern g1="S" 	g2="f,uniFB01,uniFB02" 	k="33" />
-<hkern g1="S" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="16" />
-<hkern g1="S" 	g2="w" 	k="27" />
-<hkern g1="S" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="14" />
-<hkern g1="S" 	g2="s" 	k="16" />
-<hkern g1="S" 	g2="r" 	k="16" />
-<hkern g1="S" 	g2="h" 	k="16" />
-<hkern g1="S" 	g2="k" 	k="16" />
-<hkern g1="S" 	g2="g" 	k="14" />
-<hkern g1="S" 	g2="p,thorn" 	k="16" />
-<hkern g1="S" 	g2="z" 	k="27" />
-<hkern g1="S" 	g2="l" 	k="16" />
-<hkern g1="S" 	g2="j" 	k="14" />
-<hkern g1="S" 	g2="n,ntilde" 	k="16" />
-<hkern g1="S" 	g2="quotesinglbase,quotedblbase" 	k="10" />
-<hkern g1="T" 	g2="J" 	k="164" />
-<hkern g1="T" 	g2="t" 	k="82" />
-<hkern g1="T" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="25" />
-<hkern g1="T" 	g2="y,yacute,ydieresis" 	k="82" />
-<hkern g1="T" 	g2="T" 	k="-49" />
-<hkern g1="T" 	g2="Y,Yacute,Ydieresis" 	k="-68" />
-<hkern g1="T" 	g2="C,Ccedilla" 	k="25" />
-<hkern g1="T" 	g2="hyphen,endash,emdash" 	k="70" />
-<hkern g1="T" 	g2="f,uniFB01,uniFB02" 	k="78" />
-<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="125" />
-<hkern g1="T" 	g2="w" 	k="82" />
-<hkern g1="T" 	g2="G" 	k="25" />
-<hkern g1="T" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="16" />
-<hkern g1="T" 	g2="d" 	k="141" />
-<hkern g1="T" 	g2="s" 	k="160" />
-<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="164" />
-<hkern g1="T" 	g2="r" 	k="121" />
-<hkern g1="T" 	g2="h" 	k="18" />
-<hkern g1="T" 	g2="k" 	k="18" />
-<hkern g1="T" 	g2="g" 	k="145" />
-<hkern g1="T" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="141" />
-<hkern g1="T" 	g2="p,thorn" 	k="121" />
-<hkern g1="T" 	g2="z" 	k="82" />
-<hkern g1="T" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="143" />
-<hkern g1="T" 	g2="c,ccedilla" 	k="143" />
-<hkern g1="T" 	g2="l" 	k="18" />
-<hkern g1="T" 	g2="j" 	k="16" />
-<hkern g1="T" 	g2="n,ntilde" 	k="121" />
-<hkern g1="T" 	g2="quotesinglbase,quotedblbase" 	k="63" />
-<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="78" />
-<hkern g1="T" 	g2="AE" 	k="86" />
-<hkern g1="T" 	g2="guillemotleft,guilsinglleft" 	k="70" />
-<hkern g1="T" 	g2="guillemotright,guilsinglright" 	k="33" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="quoteright,quotedblright" 	k="10" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="29" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="t" 	k="35" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="y,yacute,ydieresis" 	k="27" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="quotedbl,quotesingle" 	k="12" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="hyphen,endash,emdash" 	k="39" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="f,uniFB01,uniFB02" 	k="33" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="51" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="w" 	k="37" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="39" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="d" 	k="43" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="s" 	k="45" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="51" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="r" 	k="43" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="h" 	k="45" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="k" 	k="45" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="g" 	k="55" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="43" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="p,thorn" 	k="43" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="z" 	k="45" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="43" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="c,ccedilla" 	k="43" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="l" 	k="45" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="j" 	k="41" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="n,ntilde" 	k="43" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="quotesinglbase,quotedblbase" 	k="51" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="14" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="Z" 	k="6" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="AE" 	k="20" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="guillemotleft,guilsinglleft" 	k="12" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="guillemotright,guilsinglright" 	k="10" />
-<hkern g1="W" 	g2="J" 	k="113" />
-<hkern g1="W" 	g2="t" 	k="61" />
-<hkern g1="W" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="8" />
-<hkern g1="W" 	g2="y,yacute,ydieresis" 	k="47" />
-<hkern g1="W" 	g2="Y,Yacute,Ydieresis" 	k="-6" />
-<hkern g1="W" 	g2="C,Ccedilla" 	k="8" />
-<hkern g1="W" 	g2="hyphen,endash,emdash" 	k="63" />
-<hkern g1="W" 	g2="f,uniFB01,uniFB02" 	k="53" />
-<hkern g1="W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="98" />
-<hkern g1="W" 	g2="w" 	k="70" />
-<hkern g1="W" 	g2="G" 	k="8" />
-<hkern g1="W" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="31" />
-<hkern g1="W" 	g2="d" 	k="104" />
-<hkern g1="W" 	g2="s" 	k="80" />
-<hkern g1="W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="109" />
-<hkern g1="W" 	g2="r" 	k="90" />
-<hkern g1="W" 	g2="h" 	k="33" />
-<hkern g1="W" 	g2="k" 	k="33" />
-<hkern g1="W" 	g2="g" 	k="104" />
-<hkern g1="W" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="104" />
-<hkern g1="W" 	g2="p,thorn" 	k="90" />
-<hkern g1="W" 	g2="z" 	k="80" />
-<hkern g1="W" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="106" />
-<hkern g1="W" 	g2="c,ccedilla" 	k="109" />
-<hkern g1="W" 	g2="l" 	k="33" />
-<hkern g1="W" 	g2="j" 	k="31" />
-<hkern g1="W" 	g2="n,ntilde" 	k="90" />
-<hkern g1="W" 	g2="quotesinglbase,quotedblbase" 	k="74" />
-<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="51" />
-<hkern g1="W" 	g2="AE" 	k="76" />
-<hkern g1="W" 	g2="guillemotleft,guilsinglleft" 	k="45" />
-<hkern g1="W" 	g2="D,Eth" 	k="6" />
-<hkern g1="W" 	g2="K" 	k="6" />
-<hkern g1="W" 	g2="H" 	k="6" />
-<hkern g1="W" 	g2="R" 	k="6" />
-<hkern g1="W" 	g2="L" 	k="6" />
-<hkern g1="W" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="6" />
-<hkern g1="W" 	g2="N,Ntilde" 	k="6" />
-<hkern g1="W" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="6" />
-<hkern g1="W" 	g2="guillemotright,guilsinglright" 	k="25" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="166" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="76" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="25" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="80" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="T" 	k="-72" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="-41" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="C,Ccedilla" 	k="25" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,endash,emdash" 	k="80" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="f,uniFB01,uniFB02" 	k="74" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="168" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="80" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="G" 	k="25" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="W" 	k="-6" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="16" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="d" 	k="215" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="201" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="207" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="r" 	k="164" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="h" 	k="18" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="k" 	k="18" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="225" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="219" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="p,thorn" 	k="164" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="84" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="223" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="c,ccedilla" 	k="225" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="l" 	k="18" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="j" 	k="16" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="n,ntilde" 	k="164" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="quotesinglbase,quotedblbase" 	k="76" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="102" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="AE" 	k="152" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="82" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotright,guilsinglright" 	k="39" />
-<hkern g1="Z" 	g2="J" 	k="-31" />
-<hkern g1="Z" 	g2="t" 	k="63" />
-<hkern g1="Z" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="16" />
-<hkern g1="Z" 	g2="y,yacute,ydieresis" 	k="78" />
-<hkern g1="Z" 	g2="Y,Yacute,Ydieresis" 	k="-8" />
-<hkern g1="Z" 	g2="C,Ccedilla" 	k="18" />
-<hkern g1="Z" 	g2="hyphen,endash,emdash" 	k="96" />
-<hkern g1="Z" 	g2="f,uniFB01,uniFB02" 	k="66" />
-<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="57" />
-<hkern g1="Z" 	g2="w" 	k="78" />
-<hkern g1="Z" 	g2="G" 	k="18" />
-<hkern g1="Z" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
-<hkern g1="Z" 	g2="d" 	k="53" />
-<hkern g1="Z" 	g2="s" 	k="35" />
-<hkern g1="Z" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="27" />
-<hkern g1="Z" 	g2="r" 	k="39" />
-<hkern g1="Z" 	g2="h" 	k="25" />
-<hkern g1="Z" 	g2="k" 	k="25" />
-<hkern g1="Z" 	g2="g" 	k="20" />
-<hkern g1="Z" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="51" />
-<hkern g1="Z" 	g2="p,thorn" 	k="39" />
-<hkern g1="Z" 	g2="z" 	k="23" />
-<hkern g1="Z" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="55" />
-<hkern g1="Z" 	g2="c,ccedilla" 	k="55" />
-<hkern g1="Z" 	g2="l" 	k="25" />
-<hkern g1="Z" 	g2="j" 	k="20" />
-<hkern g1="Z" 	g2="n,ntilde" 	k="39" />
-<hkern g1="Z" 	g2="guillemotleft,guilsinglleft" 	k="25" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="quoteright,quotedblright" 	k="35" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="T" 	k="150" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="quotedbl,quotesingle" 	k="88" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="Y,Yacute,Ydieresis" 	k="184" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="C,Ccedilla" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="45" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="G" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="W" 	k="92" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="Z" 	k="23" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="D,Eth" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="K" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="H" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="R" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="L" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="N,Ntilde" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="S" 	k="31" />
-<hkern g1="b,thorn" 	g2="quoteright,quotedblright" 	k="39" />
-<hkern g1="b,thorn" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
-<hkern g1="b,thorn" 	g2="T" 	k="141" />
-<hkern g1="b,thorn" 	g2="quotedbl,quotesingle" 	k="84" />
-<hkern g1="b,thorn" 	g2="Y,Yacute,Ydieresis" 	k="213" />
-<hkern g1="b,thorn" 	g2="C,Ccedilla" 	k="20" />
-<hkern g1="b,thorn" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="41" />
-<hkern g1="b,thorn" 	g2="G" 	k="20" />
-<hkern g1="b,thorn" 	g2="W" 	k="104" />
-<hkern g1="b,thorn" 	g2="Z" 	k="31" />
-<hkern g1="b,thorn" 	g2="D,Eth" 	k="39" />
-<hkern g1="b,thorn" 	g2="K" 	k="39" />
-<hkern g1="b,thorn" 	g2="H" 	k="39" />
-<hkern g1="b,thorn" 	g2="R" 	k="39" />
-<hkern g1="b,thorn" 	g2="L" 	k="39" />
-<hkern g1="b,thorn" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="39" />
-<hkern g1="b,thorn" 	g2="N,Ntilde" 	k="39" />
-<hkern g1="b,thorn" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="39" />
-<hkern g1="b,thorn" 	g2="S" 	k="31" />
-<hkern g1="c,ccedilla" 	g2="quoteright,quotedblright" 	k="35" />
-<hkern g1="c,ccedilla" 	g2="J" 	k="-25" />
-<hkern g1="c,ccedilla" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="23" />
-<hkern g1="c,ccedilla" 	g2="T" 	k="219" />
-<hkern g1="c,ccedilla" 	g2="quotedbl,quotesingle" 	k="90" />
-<hkern g1="c,ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="252" />
-<hkern g1="c,ccedilla" 	g2="C,Ccedilla" 	k="23" />
-<hkern g1="c,ccedilla" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="47" />
-<hkern g1="c,ccedilla" 	g2="G" 	k="23" />
-<hkern g1="c,ccedilla" 	g2="W" 	k="82" />
-<hkern g1="c,ccedilla" 	g2="Z" 	k="18" />
-<hkern g1="c,ccedilla" 	g2="D,Eth" 	k="35" />
-<hkern g1="c,ccedilla" 	g2="K" 	k="35" />
-<hkern g1="c,ccedilla" 	g2="H" 	k="35" />
-<hkern g1="c,ccedilla" 	g2="R" 	k="35" />
-<hkern g1="c,ccedilla" 	g2="L" 	k="35" />
-<hkern g1="c,ccedilla" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="35" />
-<hkern g1="c,ccedilla" 	g2="N,Ntilde" 	k="35" />
-<hkern g1="c,ccedilla" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="35" />
-<hkern g1="c,ccedilla" 	g2="S" 	k="29" />
-<hkern g1="d" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="23" />
-<hkern g1="d" 	g2="T" 	k="18" />
-<hkern g1="d" 	g2="Y,Yacute,Ydieresis" 	k="18" />
-<hkern g1="d" 	g2="C,Ccedilla" 	k="23" />
-<hkern g1="d" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="45" />
-<hkern g1="d" 	g2="G" 	k="23" />
-<hkern g1="d" 	g2="W" 	k="33" />
-<hkern g1="d" 	g2="Z" 	k="18" />
-<hkern g1="d" 	g2="D,Eth" 	k="29" />
-<hkern g1="d" 	g2="K" 	k="29" />
-<hkern g1="d" 	g2="H" 	k="29" />
-<hkern g1="d" 	g2="R" 	k="29" />
-<hkern g1="d" 	g2="L" 	k="29" />
-<hkern g1="d" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="29" />
-<hkern g1="d" 	g2="N,Ntilde" 	k="29" />
-<hkern g1="d" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="29" />
-<hkern g1="d" 	g2="S" 	k="20" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteright,quotedblright" 	k="37" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="18" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="T" 	k="186" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quotedbl,quotesingle" 	k="92" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="225" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="C,Ccedilla" 	k="18" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="41" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="G" 	k="18" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="W" 	k="80" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Z" 	k="25" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="D,Eth" 	k="37" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="K" 	k="35" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="H" 	k="35" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="R" 	k="35" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="L" 	k="35" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="35" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="N,Ntilde" 	k="35" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="35" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="S" 	k="45" />
-<hkern g1="f" 	g2="quoteright,quotedblright" 	k="-70" />
-<hkern g1="f" 	g2="J" 	k="43" />
-<hkern g1="f" 	g2="T" 	k="-145" />
-<hkern g1="f" 	g2="quotedbl,quotesingle" 	k="-66" />
-<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-162" />
-<hkern g1="f" 	g2="W" 	k="-78" />
-<hkern g1="f" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-49" />
-<hkern g1="f" 	g2="g" 	k="8" />
-<hkern g1="f" 	g2="j" 	k="-47" />
-<hkern g1="f" 	g2="quotesinglbase,quotedblbase" 	k="10" />
-<hkern g1="f" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="47" />
-<hkern g1="f" 	g2="Z" 	k="-43" />
-<hkern g1="g" 	g2="T" 	k="82" />
-<hkern g1="g" 	g2="quotedbl,quotesingle" 	k="59" />
-<hkern g1="g" 	g2="Y,Yacute,Ydieresis" 	k="80" />
-<hkern g1="g" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="29" />
-<hkern g1="g" 	g2="W" 	k="59" />
-<hkern g1="g" 	g2="j" 	k="-225" />
-<hkern g1="g" 	g2="quotesinglbase,quotedblbase" 	k="12" />
-<hkern g1="g" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="27" />
-<hkern g1="g" 	g2="Z" 	k="66" />
-<hkern g1="g" 	g2="D,Eth" 	k="33" />
-<hkern g1="g" 	g2="K" 	k="33" />
-<hkern g1="g" 	g2="H" 	k="33" />
-<hkern g1="g" 	g2="R" 	k="33" />
-<hkern g1="g" 	g2="L" 	k="33" />
-<hkern g1="g" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="33" />
-<hkern g1="g" 	g2="N,Ntilde" 	k="33" />
-<hkern g1="g" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="33" />
-<hkern g1="g" 	g2="S" 	k="35" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="T" 	k="33" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="quotedbl,quotesingle" 	k="80" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="Y,Yacute,Ydieresis" 	k="39" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="10" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="W" 	k="25" />
-<hkern g1="guillemotright,guilsinglright" 	g2="T" 	k="70" />
-<hkern g1="guillemotright,guilsinglright" 	g2="quotedbl,quotesingle" 	k="106" />
-<hkern g1="guillemotright,guilsinglright" 	g2="Y,Yacute,Ydieresis" 	k="82" />
-<hkern g1="guillemotright,guilsinglright" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="10" />
-<hkern g1="guillemotright,guilsinglright" 	g2="W" 	k="45" />
-<hkern g1="guillemotright,guilsinglright" 	g2="z" 	k="12" />
-<hkern g1="guillemotright,guilsinglright" 	g2="Z" 	k="10" />
-<hkern g1="guillemotright,guilsinglright" 	g2="D,Eth" 	k="10" />
-<hkern g1="guillemotright,guilsinglright" 	g2="K" 	k="10" />
-<hkern g1="guillemotright,guilsinglright" 	g2="H" 	k="10" />
-<hkern g1="guillemotright,guilsinglright" 	g2="R" 	k="10" />
-<hkern g1="guillemotright,guilsinglright" 	g2="L" 	k="10" />
-<hkern g1="guillemotright,guilsinglright" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="10" />
-<hkern g1="guillemotright,guilsinglright" 	g2="N,Ntilde" 	k="10" />
-<hkern g1="guillemotright,guilsinglright" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="10" />
-<hkern g1="guillemotright,guilsinglright" 	g2="S" 	k="10" />
-<hkern g1="h" 	g2="quoteright,quotedblright" 	k="39" />
-<hkern g1="h" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="31" />
-<hkern g1="h" 	g2="T" 	k="160" />
-<hkern g1="h" 	g2="quotedbl,quotesingle" 	k="86" />
-<hkern g1="h" 	g2="Y,Yacute,Ydieresis" 	k="215" />
-<hkern g1="h" 	g2="C,Ccedilla" 	k="31" />
-<hkern g1="h" 	g2="w" 	k="6" />
-<hkern g1="h" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="47" />
-<hkern g1="h" 	g2="G" 	k="31" />
-<hkern g1="h" 	g2="W" 	k="94" />
-<hkern g1="h" 	g2="Z" 	k="20" />
-<hkern g1="h" 	g2="D,Eth" 	k="31" />
-<hkern g1="h" 	g2="K" 	k="31" />
-<hkern g1="h" 	g2="H" 	k="31" />
-<hkern g1="h" 	g2="R" 	k="31" />
-<hkern g1="h" 	g2="L" 	k="31" />
-<hkern g1="h" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="31" />
-<hkern g1="h" 	g2="N,Ntilde" 	k="31" />
-<hkern g1="h" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="31" />
-<hkern g1="h" 	g2="S" 	k="31" />
-<hkern g1="hyphen,endash,emdash" 	g2="J" 	k="33" />
-<hkern g1="hyphen,endash,emdash" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="23" />
-<hkern g1="hyphen,endash,emdash" 	g2="T" 	k="70" />
-<hkern g1="hyphen,endash,emdash" 	g2="quotedbl,quotesingle" 	k="72" />
-<hkern g1="hyphen,endash,emdash" 	g2="Y,Yacute,Ydieresis" 	k="80" />
-<hkern g1="hyphen,endash,emdash" 	g2="C,Ccedilla" 	k="23" />
-<hkern g1="hyphen,endash,emdash" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="37" />
-<hkern g1="hyphen,endash,emdash" 	g2="G" 	k="23" />
-<hkern g1="hyphen,endash,emdash" 	g2="W" 	k="63" />
-<hkern g1="hyphen,endash,emdash" 	g2="z" 	k="10" />
-<hkern g1="hyphen,endash,emdash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="29" />
-<hkern g1="hyphen,endash,emdash" 	g2="Z" 	k="55" />
-<hkern g1="hyphen,endash,emdash" 	g2="AE" 	k="27" />
-<hkern g1="hyphen,endash,emdash" 	g2="D,Eth" 	k="39" />
-<hkern g1="hyphen,endash,emdash" 	g2="K" 	k="39" />
-<hkern g1="hyphen,endash,emdash" 	g2="H" 	k="39" />
-<hkern g1="hyphen,endash,emdash" 	g2="R" 	k="39" />
-<hkern g1="hyphen,endash,emdash" 	g2="L" 	k="39" />
-<hkern g1="hyphen,endash,emdash" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="39" />
-<hkern g1="hyphen,endash,emdash" 	g2="N,Ntilde" 	k="39" />
-<hkern g1="hyphen,endash,emdash" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="39" />
-<hkern g1="hyphen,endash,emdash" 	g2="S" 	k="94" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="25" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="T" 	k="16" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="Y,Yacute,Ydieresis" 	k="18" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="C,Ccedilla" 	k="25" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="41" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="G" 	k="25" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="W" 	k="31" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="Z" 	k="18" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="D,Eth" 	k="29" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="K" 	k="29" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="H" 	k="29" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="R" 	k="29" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="L" 	k="29" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="29" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="N,Ntilde" 	k="29" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="29" />
-<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01" 	g2="S" 	k="25" />
-<hkern g1="j" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="27" />
-<hkern g1="j" 	g2="T" 	k="16" />
-<hkern g1="j" 	g2="Y,Yacute,Ydieresis" 	k="16" />
-<hkern g1="j" 	g2="C,Ccedilla" 	k="27" />
-<hkern g1="j" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="41" />
-<hkern g1="j" 	g2="G" 	k="27" />
-<hkern g1="j" 	g2="W" 	k="31" />
-<hkern g1="j" 	g2="j" 	k="-127" />
-<hkern g1="j" 	g2="Z" 	k="16" />
-<hkern g1="j" 	g2="D,Eth" 	k="29" />
-<hkern g1="j" 	g2="K" 	k="29" />
-<hkern g1="j" 	g2="H" 	k="29" />
-<hkern g1="j" 	g2="R" 	k="29" />
-<hkern g1="j" 	g2="L" 	k="29" />
-<hkern g1="j" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="29" />
-<hkern g1="j" 	g2="N,Ntilde" 	k="29" />
-<hkern g1="j" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="29" />
-<hkern g1="j" 	g2="S" 	k="25" />
-<hkern g1="k" 	g2="quoteright,quotedblright" 	k="18" />
-<hkern g1="k" 	g2="J" 	k="-10" />
-<hkern g1="k" 	g2="t" 	k="6" />
-<hkern g1="k" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="31" />
-<hkern g1="k" 	g2="T" 	k="96" />
-<hkern g1="k" 	g2="quotedbl,quotesingle" 	k="80" />
-<hkern g1="k" 	g2="Y,Yacute,Ydieresis" 	k="94" />
-<hkern g1="k" 	g2="C,Ccedilla" 	k="33" />
-<hkern g1="k" 	g2="hyphen,endash,emdash" 	k="31" />
-<hkern g1="k" 	g2="f,uniFB01,uniFB02" 	k="6" />
-<hkern g1="k" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="12" />
-<hkern g1="k" 	g2="w" 	k="14" />
-<hkern g1="k" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="55" />
-<hkern g1="k" 	g2="G" 	k="31" />
-<hkern g1="k" 	g2="W" 	k="84" />
-<hkern g1="k" 	g2="d" 	k="16" />
-<hkern g1="k" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="8" />
-<hkern g1="k" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="16" />
-<hkern g1="k" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="16" />
-<hkern g1="k" 	g2="c,ccedilla" 	k="16" />
-<hkern g1="k" 	g2="Z" 	k="14" />
-<hkern g1="k" 	g2="guillemotleft,guilsinglleft" 	k="25" />
-<hkern g1="k" 	g2="D,Eth" 	k="37" />
-<hkern g1="k" 	g2="K" 	k="37" />
-<hkern g1="k" 	g2="H" 	k="37" />
-<hkern g1="k" 	g2="R" 	k="37" />
-<hkern g1="k" 	g2="L" 	k="37" />
-<hkern g1="k" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="37" />
-<hkern g1="k" 	g2="N,Ntilde" 	k="37" />
-<hkern g1="k" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="37" />
-<hkern g1="k" 	g2="S" 	k="31" />
-<hkern g1="l,uniFB02" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="23" />
-<hkern g1="l,uniFB02" 	g2="T" 	k="18" />
-<hkern g1="l,uniFB02" 	g2="Y,Yacute,Ydieresis" 	k="18" />
-<hkern g1="l,uniFB02" 	g2="C,Ccedilla" 	k="23" />
-<hkern g1="l,uniFB02" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="45" />
-<hkern g1="l,uniFB02" 	g2="G" 	k="23" />
-<hkern g1="l,uniFB02" 	g2="W" 	k="33" />
-<hkern g1="l,uniFB02" 	g2="Z" 	k="18" />
-<hkern g1="l,uniFB02" 	g2="D,Eth" 	k="29" />
-<hkern g1="l,uniFB02" 	g2="K" 	k="29" />
-<hkern g1="l,uniFB02" 	g2="H" 	k="29" />
-<hkern g1="l,uniFB02" 	g2="R" 	k="29" />
-<hkern g1="l,uniFB02" 	g2="L" 	k="29" />
-<hkern g1="l,uniFB02" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="29" />
-<hkern g1="l,uniFB02" 	g2="N,Ntilde" 	k="29" />
-<hkern g1="l,uniFB02" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="29" />
-<hkern g1="l,uniFB02" 	g2="S" 	k="20" />
-<hkern g1="n,ntilde" 	g2="quoteright,quotedblright" 	k="41" />
-<hkern g1="n,ntilde" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="31" />
-<hkern g1="n,ntilde" 	g2="T" 	k="160" />
-<hkern g1="n,ntilde" 	g2="quotedbl,quotesingle" 	k="92" />
-<hkern g1="n,ntilde" 	g2="Y,Yacute,Ydieresis" 	k="213" />
-<hkern g1="n,ntilde" 	g2="C,Ccedilla" 	k="31" />
-<hkern g1="n,ntilde" 	g2="w" 	k="6" />
-<hkern g1="n,ntilde" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="47" />
-<hkern g1="n,ntilde" 	g2="G" 	k="31" />
-<hkern g1="n,ntilde" 	g2="W" 	k="94" />
-<hkern g1="n,ntilde" 	g2="Z" 	k="20" />
-<hkern g1="n,ntilde" 	g2="D,Eth" 	k="31" />
-<hkern g1="n,ntilde" 	g2="K" 	k="31" />
-<hkern g1="n,ntilde" 	g2="H" 	k="31" />
-<hkern g1="n,ntilde" 	g2="R" 	k="31" />
-<hkern g1="n,ntilde" 	g2="L" 	k="31" />
-<hkern g1="n,ntilde" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="31" />
-<hkern g1="n,ntilde" 	g2="N,Ntilde" 	k="31" />
-<hkern g1="n,ntilde" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="31" />
-<hkern g1="n,ntilde" 	g2="S" 	k="31" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="quoteright,quotedblright" 	k="45" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="23" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="T" 	k="143" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="quotedbl,quotesingle" 	k="96" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="Y,Yacute,Ydieresis" 	k="221" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="C,Ccedilla" 	k="23" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="43" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="G" 	k="23" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="W" 	k="106" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="Z" 	k="31" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="D,Eth" 	k="39" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="K" 	k="39" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="H" 	k="39" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="R" 	k="39" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="L" 	k="39" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="39" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="N,Ntilde" 	k="39" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="39" />
-<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="S" 	k="33" />
-<hkern g1="quoteleft,quotedblleft" 	g2="J" 	k="23" />
-<hkern g1="quoteleft,quotedblleft" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
-<hkern g1="quoteleft,quotedblleft" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="10" />
-<hkern g1="quoteleft,quotedblleft" 	g2="d" 	k="47" />
-<hkern g1="quoteleft,quotedblleft" 	g2="s" 	k="35" />
-<hkern g1="quoteleft,quotedblleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="35" />
-<hkern g1="quoteleft,quotedblleft" 	g2="r" 	k="23" />
-<hkern g1="quoteleft,quotedblleft" 	g2="g" 	k="55" />
-<hkern g1="quoteleft,quotedblleft" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="53" />
-<hkern g1="quoteleft,quotedblleft" 	g2="p,thorn" 	k="23" />
-<hkern g1="quoteleft,quotedblleft" 	g2="z" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="55" />
-<hkern g1="quoteleft,quotedblleft" 	g2="c,ccedilla" 	k="57" />
-<hkern g1="quoteleft,quotedblleft" 	g2="n,ntilde" 	k="23" />
-<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="41" />
-<hkern g1="quoteleft,quotedblleft" 	g2="AE" 	k="55" />
-<hkern g1="quoteleft,quotedblleft" 	g2="D,Eth" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="K" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="H" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="R" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="L" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="N,Ntilde" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="12" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="55" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="y,yacute,ydieresis" 	k="37" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="T" 	k="66" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="quotedbl,quotesingle" 	k="176" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="Y,Yacute,Ydieresis" 	k="78" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="C,Ccedilla" 	k="55" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="w" 	k="16" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="51" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="G" 	k="55" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="W" 	k="76" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="D,Eth" 	k="20" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="K" 	k="20" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="H" 	k="20" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="R" 	k="20" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="L" 	k="20" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="20" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="N,Ntilde" 	k="20" />
-<hkern g1="quotesinglbase,quotedblbase" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="20" />
-<hkern g1="quotedbl,quotesingle" 	g2="J" 	k="25" />
-<hkern g1="quotedbl,quotesingle" 	g2="t" 	k="18" />
-<hkern g1="quotedbl,quotesingle" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
-<hkern g1="quotedbl,quotesingle" 	g2="y,yacute,ydieresis" 	k="59" />
-<hkern g1="quotedbl,quotesingle" 	g2="C,Ccedilla" 	k="23" />
-<hkern g1="quotedbl,quotesingle" 	g2="hyphen,endash,emdash" 	k="78" />
-<hkern g1="quotedbl,quotesingle" 	g2="f,uniFB01,uniFB02" 	k="10" />
-<hkern g1="quotedbl,quotesingle" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="84" />
-<hkern g1="quotedbl,quotesingle" 	g2="w" 	k="70" />
-<hkern g1="quotedbl,quotesingle" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="12" />
-<hkern g1="quotedbl,quotesingle" 	g2="G" 	k="23" />
-<hkern g1="quotedbl,quotesingle" 	g2="d" 	k="88" />
-<hkern g1="quotedbl,quotesingle" 	g2="s" 	k="94" />
-<hkern g1="quotedbl,quotesingle" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="92" />
-<hkern g1="quotedbl,quotesingle" 	g2="r" 	k="86" />
-<hkern g1="quotedbl,quotesingle" 	g2="g" 	k="106" />
-<hkern g1="quotedbl,quotesingle" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="104" />
-<hkern g1="quotedbl,quotesingle" 	g2="p,thorn" 	k="86" />
-<hkern g1="quotedbl,quotesingle" 	g2="z" 	k="78" />
-<hkern g1="quotedbl,quotesingle" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="106" />
-<hkern g1="quotedbl,quotesingle" 	g2="c,ccedilla" 	k="106" />
-<hkern g1="quotedbl,quotesingle" 	g2="n,ntilde" 	k="86" />
-<hkern g1="quotedbl,quotesingle" 	g2="quotesinglbase,quotedblbase" 	k="186" />
-<hkern g1="quotedbl,quotesingle" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="59" />
-<hkern g1="quotedbl,quotesingle" 	g2="AE" 	k="76" />
-<hkern g1="quotedbl,quotesingle" 	g2="guillemotleft,guilsinglleft" 	k="115" />
-<hkern g1="quotedbl,quotesingle" 	g2="D,Eth" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="K" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="H" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="R" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="L" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="N,Ntilde" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="guillemotright,guilsinglright" 	k="84" />
-<hkern g1="r" 	g2="J" 	k="141" />
-<hkern g1="r" 	g2="y,yacute,ydieresis" 	k="-14" />
-<hkern g1="r" 	g2="T" 	k="82" />
-<hkern g1="r" 	g2="quotedbl,quotesingle" 	k="57" />
-<hkern g1="r" 	g2="Y,Yacute,Ydieresis" 	k="80" />
-<hkern g1="r" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="27" />
-<hkern g1="r" 	g2="W" 	k="55" />
-<hkern g1="r" 	g2="g" 	k="14" />
-<hkern g1="r" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="6" />
-<hkern g1="r" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="6" />
-<hkern g1="r" 	g2="c,ccedilla" 	k="8" />
-<hkern g1="r" 	g2="quotesinglbase,quotedblbase" 	k="53" />
-<hkern g1="r" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="70" />
-<hkern g1="r" 	g2="Z" 	k="80" />
-<hkern g1="r" 	g2="guillemotleft,guilsinglleft" 	k="12" />
-<hkern g1="r" 	g2="D,Eth" 	k="33" />
-<hkern g1="r" 	g2="K" 	k="33" />
-<hkern g1="r" 	g2="H" 	k="33" />
-<hkern g1="r" 	g2="R" 	k="33" />
-<hkern g1="r" 	g2="L" 	k="33" />
-<hkern g1="r" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="33" />
-<hkern g1="r" 	g2="N,Ntilde" 	k="33" />
-<hkern g1="r" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="33" />
-<hkern g1="r" 	g2="S" 	k="43" />
-<hkern g1="s" 	g2="quoteright,quotedblright" 	k="25" />
-<hkern g1="s" 	g2="J" 	k="-20" />
-<hkern g1="s" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="27" />
-<hkern g1="s" 	g2="T" 	k="158" />
-<hkern g1="s" 	g2="quotedbl,quotesingle" 	k="82" />
-<hkern g1="s" 	g2="Y,Yacute,Ydieresis" 	k="197" />
-<hkern g1="s" 	g2="C,Ccedilla" 	k="27" />
-<hkern g1="s" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="49" />
-<hkern g1="s" 	g2="G" 	k="27" />
-<hkern g1="s" 	g2="W" 	k="90" />
-<hkern g1="s" 	g2="Z" 	k="12" />
-<hkern g1="s" 	g2="D,Eth" 	k="35" />
-<hkern g1="s" 	g2="K" 	k="35" />
-<hkern g1="s" 	g2="H" 	k="35" />
-<hkern g1="s" 	g2="R" 	k="35" />
-<hkern g1="s" 	g2="L" 	k="35" />
-<hkern g1="s" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="35" />
-<hkern g1="s" 	g2="N,Ntilde" 	k="35" />
-<hkern g1="s" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="35" />
-<hkern g1="s" 	g2="S" 	k="16" />
-<hkern g1="t" 	g2="quoteright,quotedblright" 	k="10" />
-<hkern g1="t" 	g2="J" 	k="-27" />
-<hkern g1="t" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="16" />
-<hkern g1="t" 	g2="T" 	k="82" />
-<hkern g1="t" 	g2="quotedbl,quotesingle" 	k="35" />
-<hkern g1="t" 	g2="Y,Yacute,Ydieresis" 	k="82" />
-<hkern g1="t" 	g2="C,Ccedilla" 	k="16" />
-<hkern g1="t" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="39" />
-<hkern g1="t" 	g2="G" 	k="16" />
-<hkern g1="t" 	g2="W" 	k="74" />
-<hkern g1="t" 	g2="Z" 	k="8" />
-<hkern g1="t" 	g2="D,Eth" 	k="29" />
-<hkern g1="t" 	g2="K" 	k="29" />
-<hkern g1="t" 	g2="H" 	k="29" />
-<hkern g1="t" 	g2="R" 	k="29" />
-<hkern g1="t" 	g2="L" 	k="29" />
-<hkern g1="t" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="29" />
-<hkern g1="t" 	g2="N,Ntilde" 	k="29" />
-<hkern g1="t" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="29" />
-<hkern g1="t" 	g2="S" 	k="31" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="quoteright,quotedblright" 	k="18" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="25" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="T" 	k="121" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="quotedbl,quotesingle" 	k="78" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="Y,Yacute,Ydieresis" 	k="160" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="C,Ccedilla" 	k="25" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="43" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="G" 	k="25" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="W" 	k="90" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="Z" 	k="25" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="D,Eth" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="K" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="H" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="R" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="L" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="N,Ntilde" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="27" />
-<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="S" 	k="31" />
-<hkern g1="w" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
-<hkern g1="w" 	g2="T" 	k="82" />
-<hkern g1="w" 	g2="quotedbl,quotesingle" 	k="66" />
-<hkern g1="w" 	g2="Y,Yacute,Ydieresis" 	k="80" />
-<hkern g1="w" 	g2="C,Ccedilla" 	k="10" />
-<hkern g1="w" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="37" />
-<hkern g1="w" 	g2="G" 	k="10" />
-<hkern g1="w" 	g2="W" 	k="70" />
-<hkern g1="w" 	g2="g" 	k="6" />
-<hkern g1="w" 	g2="quotesinglbase,quotedblbase" 	k="14" />
-<hkern g1="w" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="29" />
-<hkern g1="w" 	g2="Z" 	k="66" />
-<hkern g1="w" 	g2="D,Eth" 	k="41" />
-<hkern g1="w" 	g2="K" 	k="41" />
-<hkern g1="w" 	g2="H" 	k="41" />
-<hkern g1="w" 	g2="R" 	k="41" />
-<hkern g1="w" 	g2="L" 	k="41" />
-<hkern g1="w" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="41" />
-<hkern g1="w" 	g2="N,Ntilde" 	k="41" />
-<hkern g1="w" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="41" />
-<hkern g1="w" 	g2="S" 	k="41" />
-<hkern g1="y,yacute,ydieresis" 	g2="J" 	k="37" />
-<hkern g1="y,yacute,ydieresis" 	g2="T" 	k="82" />
-<hkern g1="y,yacute,ydieresis" 	g2="quotedbl,quotesingle" 	k="55" />
-<hkern g1="y,yacute,ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="80" />
-<hkern g1="y,yacute,ydieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="27" />
-<hkern g1="y,yacute,ydieresis" 	g2="W" 	k="49" />
-<hkern g1="y,yacute,ydieresis" 	g2="g" 	k="8" />
-<hkern g1="y,yacute,ydieresis" 	g2="quotesinglbase,quotedblbase" 	k="31" />
-<hkern g1="y,yacute,ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="43" />
-<hkern g1="y,yacute,ydieresis" 	g2="Z" 	k="80" />
-<hkern g1="y,yacute,ydieresis" 	g2="D,Eth" 	k="31" />
-<hkern g1="y,yacute,ydieresis" 	g2="K" 	k="31" />
-<hkern g1="y,yacute,ydieresis" 	g2="H" 	k="31" />
-<hkern g1="y,yacute,ydieresis" 	g2="R" 	k="31" />
-<hkern g1="y,yacute,ydieresis" 	g2="L" 	k="31" />
-<hkern g1="y,yacute,ydieresis" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="31" />
-<hkern g1="y,yacute,ydieresis" 	g2="N,Ntilde" 	k="31" />
-<hkern g1="y,yacute,ydieresis" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="31" />
-<hkern g1="y,yacute,ydieresis" 	g2="S" 	k="37" />
-<hkern g1="z" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
-<hkern g1="z" 	g2="T" 	k="82" />
-<hkern g1="z" 	g2="quotedbl,quotesingle" 	k="68" />
-<hkern g1="z" 	g2="Y,Yacute,Ydieresis" 	k="80" />
-<hkern g1="z" 	g2="C,Ccedilla" 	k="12" />
-<hkern g1="z" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="39" />
-<hkern g1="z" 	g2="G" 	k="12" />
-<hkern g1="z" 	g2="W" 	k="70" />
-<hkern g1="z" 	g2="Z" 	k="16" />
-<hkern g1="z" 	g2="guillemotleft,guilsinglleft" 	k="10" />
-<hkern g1="z" 	g2="D,Eth" 	k="33" />
-<hkern g1="z" 	g2="K" 	k="33" />
-<hkern g1="z" 	g2="H" 	k="33" />
-<hkern g1="z" 	g2="R" 	k="33" />
-<hkern g1="z" 	g2="L" 	k="33" />
-<hkern g1="z" 	g2="E,Egrave,Eacute,Ecircumflex,Edieresis" 	k="33" />
-<hkern g1="z" 	g2="N,Ntilde" 	k="33" />
-<hkern g1="z" 	g2="I,Igrave,Iacute,Icircumflex,Idieresis" 	k="33" />
-<hkern g1="z" 	g2="S" 	k="29" />
-</font>
-</defs></svg> 
\ No newline at end of file
diff --git a/client/assets/fonts/brandon_reg/brandon_reg-webfont.woff b/client/assets/fonts/brandon_reg/brandon_reg-webfont.woff
deleted file mode 100755
index 0e804d7e4e4660632832ae82ccdddf42f990f378..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/brandon_reg/brandon_reg-webfont.woff and /dev/null differ
diff --git a/client/assets/fonts/brandon_reg/brandon_reg-webfont.woff2 b/client/assets/fonts/brandon_reg/brandon_reg-webfont.woff2
deleted file mode 100755
index d0de6282a167a3fda6b7dd7ba8e762be31a7c90f..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/brandon_reg/brandon_reg-webfont.woff2 and /dev/null differ
diff --git a/client/assets/fonts/brandon_reg/generator_config.txt b/client/assets/fonts/brandon_reg/generator_config.txt
deleted file mode 100755
index 05c92572e0362b7633408f5de273e37136259dfe..0000000000000000000000000000000000000000
--- a/client/assets/fonts/brandon_reg/generator_config.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-# Font Squirrel Font-face Generator Configuration File
-# Upload this file to the generator to recreate the settings
-# you used to create these fonts.
-
-{"mode":"expert","formats":["ttf","woff","woff2","eot","svg"],"tt_instructor":"default","fix_gasp":"xy","fix_vertical_metrics":"Y","metrics_ascent":"","metrics_descent":"","metrics_linegap":"","add_spaces":"Y","add_hyphens":"Y","fallback":"none","fallback_custom":"100","options_subset":"basic","subset_custom":"","subset_custom_range":"","subset_ot_features_list":"","css_stylesheet":"stylesheet.css","filename_suffix":"-webfont","emsquare":"2048","spacing_adjustment":"0"}
\ No newline at end of file
diff --git a/client/assets/fonts/brandon_reg/specimen_files/grid_12-825-55-15.css b/client/assets/fonts/brandon_reg/specimen_files/grid_12-825-55-15.css
deleted file mode 100755
index 3d6aef783a908415e66bb296d4e4bbb7366f0bcb..0000000000000000000000000000000000000000
--- a/client/assets/fonts/brandon_reg/specimen_files/grid_12-825-55-15.css
+++ /dev/null
@@ -1,129 +0,0 @@
-/*Notes about grid:
-Columns:      12
-Grid Width:   825px
-Column Width: 55px
-Gutter Width: 15px
--------------------------------*/
- 
- 
- 
-.section 		{margin-bottom: 18px;
-}
-.section:after	{content: ".";display: block;height: 0;clear: both;visibility: hidden;}
-.section 		{*zoom: 1;}
- 
-.section .firstcolumn,
-.section .firstcol {margin-left: 0;}
- 
- 
-/* Border on left hand side of a column. */
-.border {
-  padding-left: 7px;
-  margin-left: 7px;
-  border-left: 1px solid #eee;
-}
- 
-/* Border with more whitespace, spans one column. */
-.colborder {
-    padding-left: 42px;
-  margin-left: 42px;
-  border-left: 1px solid #eee;
-}
- 
-
- 
-/* The Grid Classes */
-.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12
-{margin-left: 15px;float: left;display: inline; overflow: hidden;}
- 
- 
-.width1, .grid1, .span-1 {width: 55px;}
-.width1_2cols,.grid1_2cols {width: 20px;}
-.width1_3cols,.grid1_3cols  {width: 8px;}
-.width1_4cols,.grid1_4cols  {width: 2px;}
-.input_width1 {width: 49px;}
- 
-.width2, .grid2, .span-2 {width: 125px;}
-.width2_3cols,.grid2_3cols  {width: 31px;}
-.width2_4cols,.grid2_4cols  {width: 20px;}
-.input_width2 {width: 119px;}
- 
-.width3, .grid3, .span-3 {width: 195px;}
-.width3_2cols,.grid3_2cols {width: 90px;}
-.width3_4cols,.grid3_4cols  {width: 37px;}
-.input_width3 {width: 189px;}
- 
-.width4, .grid4, .span-4 {width: 265px;}
-.width4_3cols,.grid4_3cols  {width: 78px;}
-.input_width4 {width: 259px;}
- 
-.width5, .grid5, .span-5 {width: 335px;}
-.width5_2cols,.grid5_2cols {width: 160px;}
-.width5_3cols,.grid5_3cols  {width: 101px;}
-.width5_4cols,.grid5_4cols  {width: 72px;}
-.input_width5 {width: 329px;}
- 
-.width6, .grid6, .span-6 {width: 405px;}
-.width6_4cols,.grid6_4cols  {width: 90px;}
-.input_width6 {width: 399px;}
- 
-.width7, .grid7, .span-7 {width: 475px;}
-.width7_2cols,.grid7_2cols {width: 230px;}
-.width7_3cols,.grid7_3cols  {width: 148px;}
-.width7_4cols,.grid7_4cols  {width: 107px;}
-.input_width7 {width: 469px;}
- 
-.width8, .grid8, .span-8 {width: 545px;}
-.width8_3cols,.grid8_3cols  {width: 171px;}
-.input_width8 {width: 539px;}
- 
-.width9, .grid9, .span-9 {width: 615px;}
-.width9_2cols,.grid9_2cols {width: 300px;}
-.width9_4cols,.grid9_4cols  {width: 142px;}
-.input_width9 {width: 609px;}
- 
-.width10, .grid10, .span-10 {width: 685px;}
-.width10_3cols,.grid10_3cols  {width: 218px;}
-.width10_4cols,.grid10_4cols  {width: 160px;}
-.input_width10 {width: 679px;}
- 
-.width11, .grid11, .span-11 {width: 755px;}
-.width11_2cols,.grid11_2cols {width: 370px;}
-.width11_3cols,.grid11_3cols  {width: 241px;}
-.width11_4cols,.grid11_4cols  {width: 177px;}
-.input_width11 {width: 749px;}
- 
-.width12, .grid12, .span-12 {width: 825px;}
-.input_width12 {width: 819px;}
- 
-/* Subdivided grid spaces */
-.emptycols_left1, .prepend-1 {padding-left: 70px;}
-.emptycols_right1, .append-1 {padding-right: 70px;}
-.emptycols_left2, .prepend-2 {padding-left: 140px;}
-.emptycols_right2, .append-2 {padding-right: 140px;}
-.emptycols_left3, .prepend-3 {padding-left: 210px;}
-.emptycols_right3, .append-3 {padding-right: 210px;}
-.emptycols_left4, .prepend-4 {padding-left: 280px;}
-.emptycols_right4, .append-4 {padding-right: 280px;}
-.emptycols_left5, .prepend-5 {padding-left: 350px;}
-.emptycols_right5, .append-5 {padding-right: 350px;}
-.emptycols_left6, .prepend-6 {padding-left: 420px;}
-.emptycols_right6, .append-6 {padding-right: 420px;}
-.emptycols_left7, .prepend-7 {padding-left: 490px;}
-.emptycols_right7, .append-7 {padding-right: 490px;}
-.emptycols_left8, .prepend-8 {padding-left: 560px;}
-.emptycols_right8, .append-8 {padding-right: 560px;}
-.emptycols_left9, .prepend-9 {padding-left: 630px;}
-.emptycols_right9, .append-9 {padding-right: 630px;}
-.emptycols_left10, .prepend-10 {padding-left: 700px;}
-.emptycols_right10, .append-10 {padding-right: 700px;}
-.emptycols_left11, .prepend-11 {padding-left: 770px;}
-.emptycols_right11, .append-11 {padding-right: 770px;}
-.pull-1 {margin-left: -70px;}
-.push-1 {margin-right: -70px;margin-left: 18px;float: right;}
-.pull-2 {margin-left: -140px;}
-.push-2 {margin-right: -140px;margin-left: 18px;float: right;}
-.pull-3 {margin-left: -210px;}
-.push-3 {margin-right: -210px;margin-left: 18px;float: right;}
-.pull-4 {margin-left: -280px;}
-.push-4 {margin-right: -280px;margin-left: 18px;float: right;}
\ No newline at end of file
diff --git a/client/assets/fonts/brandon_reg/specimen_files/specimen_stylesheet.css b/client/assets/fonts/brandon_reg/specimen_files/specimen_stylesheet.css
deleted file mode 100755
index aecc43c32ce0ee6e9e448361a7ed21808c8af690..0000000000000000000000000000000000000000
--- a/client/assets/fonts/brandon_reg/specimen_files/specimen_stylesheet.css
+++ /dev/null
@@ -1,396 +0,0 @@
-@import url('grid_12-825-55-15.css');
-
-/*  
-	CSS Reset by Eric Meyer - Released under Public Domain
-    http://meyerweb.com/eric/tools/css/reset/
-*/
-html, body, div, span, applet, object, iframe,
-h1, h2, h3, h4, h5, h6, p, blockquote, pre,
-a, abbr, acronym, address, big, cite, code,
-del, dfn, em, font, img, ins, kbd, q, s, samp,
-small, strike, strong, sub, sup, tt, var,
-b, u, i, center, dl, dt, dd, ol, ul, li,
-fieldset, form, label, legend, table, 
-caption, tbody, tfoot, thead, tr, th, td 
-                  {margin: 0;padding: 0;border: 0;outline: 0;
-                  font-size: 100%;vertical-align: baseline;
-                  background: transparent;}
-body              {line-height: 1;}
-ol, ul            {list-style: none;}
-blockquote, q     {quotes: none;}
-blockquote:before, blockquote:after,
-q:before, q:after {content: '';	content: none;}
-:focus            {outline: 0;}
-ins               {text-decoration: none;}
-del               {text-decoration: line-through;}
-table             {border-collapse: collapse;border-spacing: 0;}
-
-
-
-
-body {
-	color: #000;
-	background-color: #dcdcdc;
-}
-
-a {
-	text-decoration: none;
-	color: #1883ba;
-}
-
-h1{
-	font-size: 32px;
-	font-weight: normal;
-	font-style: normal;
-	margin-bottom: 18px;
-}
-
-h2{
-	font-size: 18px;
-}
-
-#container {
-	width: 865px;
-	margin: 0px auto;
-}
-
-
-#header {
-	padding: 20px;
-	font-size: 36px;
-	background-color: #000;
-	color: #fff;
-}
-
-#header span {
-	color: #666;
-}
-#main_content {
-	background-color: #fff;
-	padding: 60px 20px 20px;
-}
-
-
-#footer p {
-	margin: 0;
-	padding-top: 10px;
-	padding-bottom: 50px;
-	color: #333;
-	font: 10px Arial, sans-serif;
-}
-
-.tabs {
-	width: 100%;
-	height: 31px;
-	background-color: #444;
-}
-.tabs li {
-	float:  left;
-	margin: 0;
-	overflow: hidden;
-	background-color: #444;
-}
-.tabs li a {
-	display: block;
-	color: #fff;
-	text-decoration: none;
-	font: bold 11px/11px 'Arial';
-	text-transform: uppercase;
-	padding: 10px 15px;
-	border-right: 1px solid #fff;
-}
-
-.tabs li a:hover {
-		background-color: #00b3ff;
-
-}
-
-.tabs li.active a {
-	color:  #000;
-	background-color: #fff;
-}
-
-
-
-div.huge {
-	
-	font-size: 300px;
-	line-height: 1em;
-	padding: 0;
-	letter-spacing: -.02em;
-	overflow: hidden;
-}
-div.glyph_range {
-	font-size: 72px;
-	line-height: 1.1em;
-}
-
-.size10{ font-size: 10px; }
-.size11{ font-size: 11px; }
-.size12{ font-size: 12px; }
-.size13{ font-size: 13px; }
-.size14{ font-size: 14px; }
-.size16{ font-size: 16px; }
-.size18{ font-size: 18px; }
-.size20{ font-size: 20px; }
-.size24{ font-size: 24px; }
-.size30{ font-size: 30px; }
-.size36{ font-size: 36px; }
-.size48{ font-size: 48px; }
-.size60{ font-size: 60px; }
-.size72{ font-size: 72px; }
-.size90{ font-size: 90px; }
-
-
-.psample_row1 {	height: 120px;}
-.psample_row1 {	height: 120px;}
-.psample_row2 {	height: 160px;}
-.psample_row3 {	height: 160px;}
-.psample_row4 {	height: 160px;}
-
-.psample {
-	overflow: hidden;
-	position: relative;
-}
-.psample p {
-	line-height: 1.3em;
-	display: block;
-	overflow: hidden;
-	margin: 0;
-}
-
-.psample span {
-	margin-right: .5em;
-}
-
-.white_blend {
-	width: 100%;
-	height: 61px;
-	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==);
-	position: absolute;
-	bottom: 0;
-}
-.black_blend {
-	width: 100%;
-	height: 61px;
-	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC);
-	position: absolute;
-	bottom: 0;
-}
-.fullreverse {
-	background:  #000 !important;
-	color:  #fff !important;
-	margin-left: -20px;
-	padding-left: 20px;
-	margin-right: -20px;
-	padding-right: 20px;
-	padding: 20px;
-	margin-bottom:0;
-}
-
-
-.sample_table td {
-	padding-top: 3px;
-	padding-bottom:5px;
-	padding-left: 5px;
-	vertical-align: middle;
-	line-height: 1.2em;
-}
-
-.sample_table td:first-child {
-	background-color: #eee;
-	text-align: right;
-	padding-right: 5px;
-	padding-left: 0;
-	padding: 5px;
-	font: 11px/12px "Courier New", Courier, mono;
-}
-
-code {
-	white-space: pre;
-	background-color: #eee;
-	display: block;
-	padding: 10px;
-	margin-bottom: 18px;
-	overflow: auto;
-}
-
-
-.bottom,.last 	{margin-bottom:0 !important; padding-bottom:0 !important;}
-
-.box  { 
-  padding: 18px; 
-  margin-bottom: 18px; 
-  background: #eee; 
-}
-
-.reverse,.reversed { background:  #000 !important;color:  #fff !important; border: none !important;}
-
-#bodycomparison {
-	position: relative;
-	overflow: hidden;
-	font-size: 72px;
-	height: 90px;
-	white-space: nowrap;
-}
-
-#bodycomparison div{
-	font-size: 72px;
-	line-height: 90px;
-	display: inline;
-	margin: 0 15px 0 0;
-	padding: 0;
-}
-
-#bodycomparison div span{
-	font: 10px Arial;
-	position: absolute;
-	left: 0;
-}
-#xheight {
-	float: none;
-	position: absolute;
-	color: #d9f3ff;
-	font-size: 72px;
-	line-height: 90px;
-}
-
-.fontbody {
- position: relative;
-}
-.arialbody{
-	font-family: Arial;
-	position: relative;
-}
-.verdanabody{
-	font-family: Verdana;
-	position: relative;
-}
-.georgiabody{
-	font-family: Georgia;
-	position: relative;
-}
-
-/* @group Layout page
- */
-
-#layout h1 {
-	font-size: 36px;
-	line-height: 42px;
-	font-weight: normal;
-	font-style: normal;
-}
-
-#layout h2 {
-	font-size: 24px;
-	line-height: 23px;
-	font-weight: normal;
-	font-style: normal;
-}
-
-#layout h3 {
-	font-size: 22px;
-	line-height: 1.4em;
-	margin-top: 1em;
-	font-weight: normal;
-	font-style: normal;
-}
-
-
-#layout p.byline {
-	font-size: 12px;
-	margin-top: 18px;
-	line-height: 12px;
-	margin-bottom: 0;
-}
-#layout p {
-	font-size: 14px;
-	line-height: 21px;
-	margin-bottom: .5em;
-}
-
-#layout p.large{
-	font-size: 18px;
-	line-height: 26px;
-}
-
-#layout .sidebar p{
-	font-size: 12px;
-	line-height: 1.4em;
-}
-
-#layout p.caption {
-	font-size: 10px;
-	margin-top: -16px;
-	margin-bottom: 18px;
-}
-
-/* @end */
-
-/* @group Glyphs */
-
-#glyph_chart div{
-	background-color: #d9f3ff;
-	color: black;
-	float: left;
-	font-size: 36px;
-	height: 1.2em;
-	line-height: 1.2em;
-	margin-bottom: 1px;
-	margin-right: 1px;
-	text-align: center;
-	width: 1.2em;
-	position: relative;
-	padding: .6em .2em .2em;
-}
-
-#glyph_chart div p {
-	position: absolute;
-	left: 0;
-	top: 0;
-	display: block;
-	text-align: center;
-	font: bold 9px Arial, sans-serif;
-	background-color: #3a768f;
-	width: 100%;
-	color: #fff;
-	padding: 2px 0;
-}
-
-
-#glyphs h1 {
-	font-family: Arial, sans-serif;
-}
-/* @end */
-
-/* @group Installing */
-
-#installing {
-	font: 13px Arial, sans-serif;
-}
-
-#installing p,
-#glyphs p{
-	line-height: 1.2em;
-	margin-bottom: 18px;
-	font: 13px Arial, sans-serif;
-}
-
-
-
-#installing h3{
-	font-size: 15px;
-	margin-top: 18px;
-}
-
-/* @end */
-
-#rendering h1 {
-	font-family: Arial, sans-serif;
-}
-.render_table td {
-	font: 11px "Courier New", Courier, mono;
-	vertical-align: middle;
-}
-
-
diff --git a/client/assets/fonts/brandon_reg/stylesheet.css b/client/assets/fonts/brandon_reg/stylesheet.css
deleted file mode 100755
index 769c481edb40cf639c100cfa2a31cce71304404d..0000000000000000000000000000000000000000
--- a/client/assets/fonts/brandon_reg/stylesheet.css
+++ /dev/null
@@ -1,16 +0,0 @@
-/* Generated by Font Squirrel (https://www.fontsquirrel.com) on January 13, 2017 */
-
-
-
-@font-face {
-    font-family: 'BrandonGrotesqueReg';
-    src: url('brandon_reg-webfont.eot');
-    src: url('brandon_reg-webfont.eot?#iefix') format('embedded-opentype'),
-         url('brandon_reg-webfont.woff2') format('woff2'),
-         url('brandon_reg-webfont.woff') format('woff'),
-         url('brandon_reg-webfont.ttf') format('truetype'),
-         url('brandon_reg-webfont.svg#brandon_grotesque_regularRg') format('svg');
-    font-weight: normal;
-    font-style: normal;
-
-}
\ No newline at end of file
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-bold-webfont.ttf b/client/assets/fonts/playfairdisplay-bold-webfont.ttf
similarity index 100%
rename from client/assets/fonts/playfairdisplay/playfairdisplay-bold-webfont.ttf
rename to client/assets/fonts/playfairdisplay-bold-webfont.ttf
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-regular-webfont.ttf b/client/assets/fonts/playfairdisplay-regular-webfont.ttf
similarity index 100%
rename from client/assets/fonts/playfairdisplay/playfairdisplay-regular-webfont.ttf
rename to client/assets/fonts/playfairdisplay-regular-webfont.ttf
diff --git a/client/assets/fonts/playfairdisplay/generator_config.txt b/client/assets/fonts/playfairdisplay/generator_config.txt
deleted file mode 100755
index 05c92572e0362b7633408f5de273e37136259dfe..0000000000000000000000000000000000000000
--- a/client/assets/fonts/playfairdisplay/generator_config.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-# Font Squirrel Font-face Generator Configuration File
-# Upload this file to the generator to recreate the settings
-# you used to create these fonts.
-
-{"mode":"expert","formats":["ttf","woff","woff2","eot","svg"],"tt_instructor":"default","fix_gasp":"xy","fix_vertical_metrics":"Y","metrics_ascent":"","metrics_descent":"","metrics_linegap":"","add_spaces":"Y","add_hyphens":"Y","fallback":"none","fallback_custom":"100","options_subset":"basic","subset_custom":"","subset_custom_range":"","subset_ot_features_list":"","css_stylesheet":"stylesheet.css","filename_suffix":"-webfont","emsquare":"2048","spacing_adjustment":"0"}
\ No newline at end of file
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-black-demo.html b/client/assets/fonts/playfairdisplay/playfairdisplay-black-demo.html
deleted file mode 100755
index 4176060b1072a44215c8233e76cd383e487a9736..0000000000000000000000000000000000000000
--- a/client/assets/fonts/playfairdisplay/playfairdisplay-black-demo.html
+++ /dev/null
@@ -1,613 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-	<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script>
-	<script src="specimen_files/easytabs.js" type="text/javascript" charset="utf-8"></script>
-	<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" />
-	<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
-
-	<style type="text/css">
-					body{
-				font-family: 'playfair_displayblack';
-							}
-		</style>
-
-	<title>Playfair Display Black Specimen</title>
-	
-	
-	<script type="text/javascript" charset="utf-8">
-		$(document).ready(function() {
-			$('#container').easyTabs({defaultContent:1});
-		});
-	</script>
-</head>
-
-<body>
-<div id="container">
-	<div id="header">
-		Playfair Display Black	</div>
-	<ul class="tabs">
-		<li><a href="#specimen">Specimen</a></li>
-		<li><a href="#layout">Sample Layout</a></li>
-				<li><a href="#glyphs">Glyphs &amp; Languages</a></li>
-		<li><a href="#installing">Installing Webfonts</a></li>
-		
-	</ul>
-	
-	<div id="main_content">
-
-		
-			<div id="specimen">
-		
-				<div class="section">
-					<div class="grid12 firstcol">
-						<div class="huge">AaBb</div>
-					</div>
-				</div>
-		
-				<div class="section">
-					<div class="glyph_range">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>
-				</div>
-				<div class="section">
-					<div class="grid12 firstcol">
-						<table class="sample_table">
-							<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-						</table>
-				
-					</div>
-			
-				</div>
-		
-		
-		
-								<div class="section" id="bodycomparison">
-
-
-										<div id="xheight">
-				<div class="fontbody">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div>
-										<div class="fontbody" style="z-index:1">
-											body<span>Playfair Display Black</span>
-										</div>
-										<div class="arialbody" style="z-index:1">
-											body<span>Arial</span>
-										</div>
-										<div class="verdanabody" style="z-index:1">
-											body<span>Verdana</span>
-										</div>
-										<div class="georgiabody" style="z-index:1">
-											body<span>Georgia</span>
-										</div>
-
-
-
-								</div>
-		
-		
-				<div class="section psample psample_row1" id="">
-					
-					<div class="grid2 firstcol">
-						<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="white_blend"></div>
-					
-				</div>
-				<div class="section psample psample_row2" id="">
-					<div class="grid3 firstcol">
-						<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid5">
-						<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-
-					<div class="white_blend"></div>
-
-				</div>
-				
-				<div class="section psample psample_row3" id="">
-					<div class="grid5 firstcol">
-						<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="grid7">
-						<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					
-					<div class="white_blend"></div>
-					
-				</div>
-				
-				<div class="section psample psample_row4" id="">
-					<div class="grid12 firstcol">
-						<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="white_blend"></div>
-					
-				</div>
-				
-				
-				
-				<div class="section psample psample_row1 fullreverse">
-					<div class="grid2 firstcol">
-						<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				<div class="section psample psample_row2 fullreverse">
-					<div class="grid3 firstcol">
-						<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid5">
-						<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="black_blend"></div>
-
-				</div>
-				
-				<div class="section psample fullreverse psample_row3" id="">
-					<div class="grid5 firstcol">
-						<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="grid7">
-						<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
-					<div class="grid12 firstcol">
-						<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				
-				
-				
-			</div>
-			
-			<div id="layout">
-				
-				<div class="section">
-					
-					<div class="grid12 firstcol">
-						<h1>Lorem Ipsum Dolor</h1>
-						<h2>Etiam porta sem malesuada magna mollis euismod</h2>
-						
-						<p class="byline">By <a href="#link">Aenean Lacinia</a></p>
-					</div>
-				</div>
-				<div class="section">
-					<div class="grid8 firstcol">
-						<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-						
-						<h3>Pellentesque ornare sem</h3>
-
-						<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
-
-						<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
-
-						<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
-
-						<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
-
-						<h3>Cras mattis consectetur</h3>
-
-						<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
-
-						<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
-					</div>
-					
-					<div class="grid4 sidebar">
-						
-						<div class="box reverse">
-							<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
-						</div>
-						
-						<p class="caption">Maecenas sed diam eget risus varius.</p>
-
-						<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-					
-
-						<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
-
-						<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-					</div>
-				</div>
-				
-			</div>
-
-
-			
-
-
-
-		<div id="glyphs">
-			<div class="section">
-				<div class="grid12 firstcol">
-			
-				<h1>Language Support</h1>
-				<p>The subset of Playfair Display Black in this kit supports the following languages:<br />
-			
-					Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Swedish				</p>
-				<h1>Glyph Chart</h1>
-				<p>The subset of Playfair Display Black in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p>
-				<div id="glyph_chart">
-			
-																				 <div><p>&amp;#13;</p>&#13;</div>
-																				 <div><p>&amp;#32;</p>&#32;</div>
-																				 <div><p>&amp;#33;</p>&#33;</div>
-																				 <div><p>&amp;#34;</p>&#34;</div>
-																				 <div><p>&amp;#35;</p>&#35;</div>
-																				 <div><p>&amp;#36;</p>&#36;</div>
-																				 <div><p>&amp;#37;</p>&#37;</div>
-																				 <div><p>&amp;#38;</p>&#38;</div>
-																				 <div><p>&amp;#39;</p>&#39;</div>
-																				 <div><p>&amp;#40;</p>&#40;</div>
-																				 <div><p>&amp;#41;</p>&#41;</div>
-																				 <div><p>&amp;#42;</p>&#42;</div>
-																				 <div><p>&amp;#43;</p>&#43;</div>
-																				 <div><p>&amp;#44;</p>&#44;</div>
-																				 <div><p>&amp;#45;</p>&#45;</div>
-																				 <div><p>&amp;#46;</p>&#46;</div>
-																				 <div><p>&amp;#47;</p>&#47;</div>
-																				 <div><p>&amp;#48;</p>&#48;</div>
-																				 <div><p>&amp;#49;</p>&#49;</div>
-																				 <div><p>&amp;#50;</p>&#50;</div>
-																				 <div><p>&amp;#51;</p>&#51;</div>
-																				 <div><p>&amp;#52;</p>&#52;</div>
-																				 <div><p>&amp;#53;</p>&#53;</div>
-																				 <div><p>&amp;#54;</p>&#54;</div>
-																				 <div><p>&amp;#55;</p>&#55;</div>
-																				 <div><p>&amp;#56;</p>&#56;</div>
-																				 <div><p>&amp;#57;</p>&#57;</div>
-																				 <div><p>&amp;#58;</p>&#58;</div>
-																				 <div><p>&amp;#59;</p>&#59;</div>
-																				 <div><p>&amp;#60;</p>&#60;</div>
-																				 <div><p>&amp;#61;</p>&#61;</div>
-																				 <div><p>&amp;#62;</p>&#62;</div>
-																				 <div><p>&amp;#63;</p>&#63;</div>
-																				 <div><p>&amp;#64;</p>&#64;</div>
-																				 <div><p>&amp;#65;</p>&#65;</div>
-																				 <div><p>&amp;#66;</p>&#66;</div>
-																				 <div><p>&amp;#67;</p>&#67;</div>
-																				 <div><p>&amp;#68;</p>&#68;</div>
-																				 <div><p>&amp;#69;</p>&#69;</div>
-																				 <div><p>&amp;#70;</p>&#70;</div>
-																				 <div><p>&amp;#71;</p>&#71;</div>
-																				 <div><p>&amp;#72;</p>&#72;</div>
-																				 <div><p>&amp;#73;</p>&#73;</div>
-																				 <div><p>&amp;#74;</p>&#74;</div>
-																				 <div><p>&amp;#75;</p>&#75;</div>
-																				 <div><p>&amp;#76;</p>&#76;</div>
-																				 <div><p>&amp;#77;</p>&#77;</div>
-																				 <div><p>&amp;#78;</p>&#78;</div>
-																				 <div><p>&amp;#79;</p>&#79;</div>
-																				 <div><p>&amp;#80;</p>&#80;</div>
-																				 <div><p>&amp;#81;</p>&#81;</div>
-																				 <div><p>&amp;#82;</p>&#82;</div>
-																				 <div><p>&amp;#83;</p>&#83;</div>
-																				 <div><p>&amp;#84;</p>&#84;</div>
-																				 <div><p>&amp;#85;</p>&#85;</div>
-																				 <div><p>&amp;#86;</p>&#86;</div>
-																				 <div><p>&amp;#87;</p>&#87;</div>
-																				 <div><p>&amp;#88;</p>&#88;</div>
-																				 <div><p>&amp;#89;</p>&#89;</div>
-																				 <div><p>&amp;#90;</p>&#90;</div>
-																				 <div><p>&amp;#91;</p>&#91;</div>
-																				 <div><p>&amp;#92;</p>&#92;</div>
-																				 <div><p>&amp;#93;</p>&#93;</div>
-																				 <div><p>&amp;#94;</p>&#94;</div>
-																				 <div><p>&amp;#95;</p>&#95;</div>
-																				 <div><p>&amp;#96;</p>&#96;</div>
-																				 <div><p>&amp;#97;</p>&#97;</div>
-																				 <div><p>&amp;#98;</p>&#98;</div>
-																				 <div><p>&amp;#99;</p>&#99;</div>
-																				 <div><p>&amp;#100;</p>&#100;</div>
-																				 <div><p>&amp;#101;</p>&#101;</div>
-																				 <div><p>&amp;#102;</p>&#102;</div>
-																				 <div><p>&amp;#103;</p>&#103;</div>
-																				 <div><p>&amp;#104;</p>&#104;</div>
-																				 <div><p>&amp;#105;</p>&#105;</div>
-																				 <div><p>&amp;#106;</p>&#106;</div>
-																				 <div><p>&amp;#107;</p>&#107;</div>
-																				 <div><p>&amp;#108;</p>&#108;</div>
-																				 <div><p>&amp;#109;</p>&#109;</div>
-																				 <div><p>&amp;#110;</p>&#110;</div>
-																				 <div><p>&amp;#111;</p>&#111;</div>
-																				 <div><p>&amp;#112;</p>&#112;</div>
-																				 <div><p>&amp;#113;</p>&#113;</div>
-																				 <div><p>&amp;#114;</p>&#114;</div>
-																				 <div><p>&amp;#115;</p>&#115;</div>
-																				 <div><p>&amp;#116;</p>&#116;</div>
-																				 <div><p>&amp;#117;</p>&#117;</div>
-																				 <div><p>&amp;#118;</p>&#118;</div>
-																				 <div><p>&amp;#119;</p>&#119;</div>
-																				 <div><p>&amp;#120;</p>&#120;</div>
-																				 <div><p>&amp;#121;</p>&#121;</div>
-																				 <div><p>&amp;#122;</p>&#122;</div>
-																				 <div><p>&amp;#123;</p>&#123;</div>
-																				 <div><p>&amp;#124;</p>&#124;</div>
-																				 <div><p>&amp;#125;</p>&#125;</div>
-																				 <div><p>&amp;#126;</p>&#126;</div>
-																				 <div><p>&amp;#160;</p>&#160;</div>
-																				 <div><p>&amp;#161;</p>&#161;</div>
-																				 <div><p>&amp;#162;</p>&#162;</div>
-																				 <div><p>&amp;#163;</p>&#163;</div>
-																				 <div><p>&amp;#164;</p>&#164;</div>
-																				 <div><p>&amp;#165;</p>&#165;</div>
-																				 <div><p>&amp;#166;</p>&#166;</div>
-																				 <div><p>&amp;#167;</p>&#167;</div>
-																				 <div><p>&amp;#168;</p>&#168;</div>
-																				 <div><p>&amp;#169;</p>&#169;</div>
-																				 <div><p>&amp;#170;</p>&#170;</div>
-																				 <div><p>&amp;#171;</p>&#171;</div>
-																				 <div><p>&amp;#172;</p>&#172;</div>
-																				 <div><p>&amp;#173;</p>&#173;</div>
-																				 <div><p>&amp;#174;</p>&#174;</div>
-																				 <div><p>&amp;#175;</p>&#175;</div>
-																				 <div><p>&amp;#176;</p>&#176;</div>
-																				 <div><p>&amp;#177;</p>&#177;</div>
-																				 <div><p>&amp;#178;</p>&#178;</div>
-																				 <div><p>&amp;#179;</p>&#179;</div>
-																				 <div><p>&amp;#180;</p>&#180;</div>
-																				 <div><p>&amp;#182;</p>&#182;</div>
-																				 <div><p>&amp;#183;</p>&#183;</div>
-																				 <div><p>&amp;#184;</p>&#184;</div>
-																				 <div><p>&amp;#185;</p>&#185;</div>
-																				 <div><p>&amp;#186;</p>&#186;</div>
-																				 <div><p>&amp;#187;</p>&#187;</div>
-																				 <div><p>&amp;#188;</p>&#188;</div>
-																				 <div><p>&amp;#189;</p>&#189;</div>
-																				 <div><p>&amp;#190;</p>&#190;</div>
-																				 <div><p>&amp;#191;</p>&#191;</div>
-																				 <div><p>&amp;#192;</p>&#192;</div>
-																				 <div><p>&amp;#193;</p>&#193;</div>
-																				 <div><p>&amp;#194;</p>&#194;</div>
-																				 <div><p>&amp;#195;</p>&#195;</div>
-																				 <div><p>&amp;#196;</p>&#196;</div>
-																				 <div><p>&amp;#197;</p>&#197;</div>
-																				 <div><p>&amp;#198;</p>&#198;</div>
-																				 <div><p>&amp;#199;</p>&#199;</div>
-																				 <div><p>&amp;#200;</p>&#200;</div>
-																				 <div><p>&amp;#201;</p>&#201;</div>
-																				 <div><p>&amp;#202;</p>&#202;</div>
-																				 <div><p>&amp;#203;</p>&#203;</div>
-																				 <div><p>&amp;#204;</p>&#204;</div>
-																				 <div><p>&amp;#205;</p>&#205;</div>
-																				 <div><p>&amp;#206;</p>&#206;</div>
-																				 <div><p>&amp;#207;</p>&#207;</div>
-																				 <div><p>&amp;#208;</p>&#208;</div>
-																				 <div><p>&amp;#209;</p>&#209;</div>
-																				 <div><p>&amp;#210;</p>&#210;</div>
-																				 <div><p>&amp;#211;</p>&#211;</div>
-																				 <div><p>&amp;#212;</p>&#212;</div>
-																				 <div><p>&amp;#213;</p>&#213;</div>
-																				 <div><p>&amp;#214;</p>&#214;</div>
-																				 <div><p>&amp;#215;</p>&#215;</div>
-																				 <div><p>&amp;#216;</p>&#216;</div>
-																				 <div><p>&amp;#217;</p>&#217;</div>
-																				 <div><p>&amp;#218;</p>&#218;</div>
-																				 <div><p>&amp;#219;</p>&#219;</div>
-																				 <div><p>&amp;#220;</p>&#220;</div>
-																				 <div><p>&amp;#221;</p>&#221;</div>
-																				 <div><p>&amp;#222;</p>&#222;</div>
-																				 <div><p>&amp;#223;</p>&#223;</div>
-																				 <div><p>&amp;#224;</p>&#224;</div>
-																				 <div><p>&amp;#225;</p>&#225;</div>
-																				 <div><p>&amp;#226;</p>&#226;</div>
-																				 <div><p>&amp;#227;</p>&#227;</div>
-																				 <div><p>&amp;#228;</p>&#228;</div>
-																				 <div><p>&amp;#229;</p>&#229;</div>
-																				 <div><p>&amp;#230;</p>&#230;</div>
-																				 <div><p>&amp;#231;</p>&#231;</div>
-																				 <div><p>&amp;#232;</p>&#232;</div>
-																				 <div><p>&amp;#233;</p>&#233;</div>
-																				 <div><p>&amp;#234;</p>&#234;</div>
-																				 <div><p>&amp;#235;</p>&#235;</div>
-																				 <div><p>&amp;#236;</p>&#236;</div>
-																				 <div><p>&amp;#237;</p>&#237;</div>
-																				 <div><p>&amp;#238;</p>&#238;</div>
-																				 <div><p>&amp;#239;</p>&#239;</div>
-																				 <div><p>&amp;#240;</p>&#240;</div>
-																				 <div><p>&amp;#241;</p>&#241;</div>
-																				 <div><p>&amp;#242;</p>&#242;</div>
-																				 <div><p>&amp;#243;</p>&#243;</div>
-																				 <div><p>&amp;#244;</p>&#244;</div>
-																				 <div><p>&amp;#245;</p>&#245;</div>
-																				 <div><p>&amp;#246;</p>&#246;</div>
-																				 <div><p>&amp;#247;</p>&#247;</div>
-																				 <div><p>&amp;#248;</p>&#248;</div>
-																				 <div><p>&amp;#249;</p>&#249;</div>
-																				 <div><p>&amp;#250;</p>&#250;</div>
-																				 <div><p>&amp;#251;</p>&#251;</div>
-																				 <div><p>&amp;#252;</p>&#252;</div>
-																				 <div><p>&amp;#253;</p>&#253;</div>
-																				 <div><p>&amp;#254;</p>&#254;</div>
-																				 <div><p>&amp;#255;</p>&#255;</div>
-																				 <div><p>&amp;#338;</p>&#338;</div>
-																				 <div><p>&amp;#339;</p>&#339;</div>
-																				 <div><p>&amp;#376;</p>&#376;</div>
-																				 <div><p>&amp;#710;</p>&#710;</div>
-																				 <div><p>&amp;#732;</p>&#732;</div>
-																				 <div><p>&amp;#8192;</p>&#8192;</div>
-																				 <div><p>&amp;#8193;</p>&#8193;</div>
-																				 <div><p>&amp;#8194;</p>&#8194;</div>
-																				 <div><p>&amp;#8195;</p>&#8195;</div>
-																				 <div><p>&amp;#8196;</p>&#8196;</div>
-																				 <div><p>&amp;#8197;</p>&#8197;</div>
-																				 <div><p>&amp;#8198;</p>&#8198;</div>
-																				 <div><p>&amp;#8199;</p>&#8199;</div>
-																				 <div><p>&amp;#8200;</p>&#8200;</div>
-																				 <div><p>&amp;#8201;</p>&#8201;</div>
-																				 <div><p>&amp;#8202;</p>&#8202;</div>
-																				 <div><p>&amp;#8208;</p>&#8208;</div>
-																				 <div><p>&amp;#8209;</p>&#8209;</div>
-																				 <div><p>&amp;#8210;</p>&#8210;</div>
-																				 <div><p>&amp;#8211;</p>&#8211;</div>
-																				 <div><p>&amp;#8212;</p>&#8212;</div>
-																				 <div><p>&amp;#8216;</p>&#8216;</div>
-																				 <div><p>&amp;#8217;</p>&#8217;</div>
-																				 <div><p>&amp;#8218;</p>&#8218;</div>
-																				 <div><p>&amp;#8220;</p>&#8220;</div>
-																				 <div><p>&amp;#8221;</p>&#8221;</div>
-																				 <div><p>&amp;#8222;</p>&#8222;</div>
-																				 <div><p>&amp;#8226;</p>&#8226;</div>
-																				 <div><p>&amp;#8230;</p>&#8230;</div>
-																				 <div><p>&amp;#8239;</p>&#8239;</div>
-																				 <div><p>&amp;#8249;</p>&#8249;</div>
-																				 <div><p>&amp;#8250;</p>&#8250;</div>
-																				 <div><p>&amp;#8287;</p>&#8287;</div>
-																				 <div><p>&amp;#8364;</p>&#8364;</div>
-																				 <div><p>&amp;#8482;</p>&#8482;</div>
-																				 <div><p>&amp;#9724;</p>&#9724;</div>
-																				 <div><p>&amp;#64257;</p>&#64257;</div>
-																				 <div><p>&amp;#64258;</p>&#64258;</div>
-																				 <div><p>&amp;#64259;</p>&#64259;</div>
-																				 <div><p>&amp;#64260;</p>&#64260;</div>
-																																																</div>	
-				</div>
-		
-		
-			</div>
-		</div>
-		
-		
-		<div id="specs">
-			
-		</div>
-	
-		<div id="installing">
-			<div class="section">
-				<div class="grid7 firstcol">
-					<h1>Installing Webfonts</h1>
-					
-					<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
-					
-					<h2>1. Upload your webfonts</h2>
-					<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
-					
-					<h2>2. Include the webfont stylesheet</h2>
-					<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p>
-
-
-<code>
-@font-face{ 
-	font-family: 'MyWebFont';
-	src: url('WebFont.eot');
-	src: url('WebFont.eot?#iefix') format('embedded-opentype'),
-	     url('WebFont.woff') format('woff'),
-	     url('WebFont.ttf') format('truetype'),
-	     url('WebFont.svg#webfont') format('svg');
-}
-</code>
-
-	<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
-	<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>
-
-					<h2>3. Modify your own stylesheet</h2>
-					<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
-<code>p { font-family: 'WebFont', Arial, sans-serif; }</code>
-
-<h2>4. Test</h2>
-<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
-				</div>
-				
-				<div class="grid5 sidebar">
-					<div class="box">
-						<h2>Troubleshooting<br />Font-Face Problems</h2>
-						<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
-
-						<h3>Fonts not showing in any browser</h3>
-
-						<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
-
-						<h3>Fonts not loading in iPhone or iPad</h3>
-
-						<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
-
-						<h3>Fonts not loading in Firefox</h3>
-
-						<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
-
-						<h3>Fonts not loading in IE</h3>
-
-						<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
-
-						<h3>Fonts not loading in IE9</h3>
-
-						<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
-					</div>
-				</div>
-			</div>
-			
-		</div>
-	
-	</div>
-	<div id="footer">
-		<p>&copy;2010-2011 Font Squirrel. All rights reserved.</p>
-	</div>
-</div>
-</body>
-</html>
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-black-webfont.eot b/client/assets/fonts/playfairdisplay/playfairdisplay-black-webfont.eot
deleted file mode 100755
index 3248351816f49a3d406594929df954fbce353bb4..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-black-webfont.eot and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-black-webfont.svg b/client/assets/fonts/playfairdisplay/playfairdisplay-black-webfont.svg
deleted file mode 100755
index 4cfab0c116bce19a1a84a0fab28122b17eaccbad..0000000000000000000000000000000000000000
--- a/client/assets/fonts/playfairdisplay/playfairdisplay-black-webfont.svg
+++ /dev/null
@@ -1,1326 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
-<metadata></metadata>
-<defs>
-<font id="playfair_displayblack" horiz-adv-x="1694" >
-<font-face units-per-em="2048" ascent="1638" descent="-410" />
-<missing-glyph horiz-adv-x="457" />
-<glyph unicode="&#xfb01;" horiz-adv-x="1376" d="M23 1020v41h143q0 238 172 399q76 73 196.5 107.5t251.5 34.5q98 0 164.5 -10t109.5 -27.5t89 -44.5q38 -23 65 -66t27 -90q0 -174 -233 -174q-115 0 -174.5 44t-59.5 126q0 66 47 112t133 66q-17 9 -51 16t-69 7q-163 0 -244 -148q-30 -54 -42.5 -130.5t-12.5 -221.5 h186q191 0 297 5t207 19v-895q0 -57 13.5 -89t42 -45t79.5 -13v-43q-240 8 -309 8q-70 0 -310 -8v43q43 0 68 13t36 45t11 89v650q0 95 -30 137.5t-105 42.5h-186v-830q0 -83 38 -115t117 -32v-43q-268 8 -330 8q-77 0 -329 -8v43q51 0 79.5 13t42 45t13.5 89v830h-143z" />
-<glyph unicode="&#xfb02;" horiz-adv-x="1384" d="M23 1020v41h143q0 149 41 250.5t119 167.5q75 64 174 93.5t205 29.5q43 0 139.5 -5.5t154.5 -5.5q72 0 226 15v-1416q0 -57 13.5 -89t42 -45t79.5 -13v-43q-240 8 -309 8q-70 0 -310 -8v43q43 0 68 13t36 45t11 89v1231q0 77 -29 109q-27 31 -75 31q-57 0 -92.5 -17 t-67.5 -57q-25 -32 -37 -75.5t-16 -109t-4 -182.5v-59h186v-41h-186v-830q0 -83 38 -115t117 -32v-43q-268 8 -330 8q-77 0 -329 -8v43q51 0 79.5 13t42 45t13.5 89v830h-143z" />
-<glyph horiz-adv-x="0" />
-<glyph horiz-adv-x="682" />
-<glyph unicode="&#xd;" horiz-adv-x="0" />
-<glyph unicode=" "  horiz-adv-x="457" />
-<glyph unicode="&#x09;" horiz-adv-x="457" />
-<glyph unicode="&#xa0;" horiz-adv-x="457" />
-<glyph unicode="!" horiz-adv-x="627" d="M96 1343q0 78 27.5 136.5t77 90.5t112.5 32q57 0 107 -32.5t80 -91.5t30 -135q0 -117 -60 -317t-95 -331.5t-43 -293.5h-37q-7 134 -36 257t-96 345.5t-67 339.5zM111 147q0 87 52 132t151 45q98 0 150.5 -45t52.5 -132q0 -86 -52.5 -131t-150.5 -45q-99 0 -151 44.5 t-52 131.5z" />
-<glyph unicode="&#x22;" horiz-adv-x="854" d="M61 1329q0 49 21.5 87t59.5 58.5t85 20.5q73 0 119.5 -45t46.5 -119q0 -46 -14.5 -84t-60.5 -123t-76 -166h-29q-28 72 -72.5 153.5t-62 123.5t-17.5 94zM460 1329q0 49 21.5 87t59.5 58.5t85 20.5q73 0 119.5 -45t46.5 -119q0 -46 -14.5 -84t-60.5 -123t-76 -166h-29 q-28 72 -72.5 153.5t-62 123.5t-17.5 94z" />
-<glyph unicode="#" horiz-adv-x="1247" d="M70 506l8 41h301l66 342h-300l7 41h301l59 303h41l-59 -303h342l59 303h41l-59 -303h301l-7 -41h-302l-66 -342h301l-8 -41h-301l-58 -299h-41l58 299h-342l-58 -299h-41l58 299h-301zM420 547h342l66 342h-342z" />
-<glyph unicode="$" horiz-adv-x="1245" d="M96 -14q8 139 8 594h48q17 -200 58.5 -316t114.5 -171t191 -68v553l-45 32q-119 79 -194.5 143.5t-123 148.5t-47.5 190q0 113 54.5 194t147 127.5t208.5 59.5v247h41v-243q28 2 57 2q64 0 119 -8v249h41v-256q83 -17 172 -67q29 -16 43 -22.5t27 -6.5q19 0 29 21.5 t16 68.5h47q-10 -147 -10 -500h-47q-19 132 -50.5 223.5t-86.5 151.5t-140 83v-529l72 -47q108 -71 178 -133t112 -143t42 -187q0 -164 -111 -264t-293 -130v-253h-41v247q-54 -6 -112 -6q-33 0 -64 2v-243h-41v247q-65 8 -111 22.5t-76.5 27.5t-41.5 18q-8 3 -30.5 12.5 t-39 14t-29.5 4.5q-18 0 -28 -21t-17 -69h-47zM416 1266q0 -33 5 -56t26.5 -55t68.5 -75v328q-100 -39 -100 -142zM557 22q28 -2 61 -2q65 0 115 9v390q-68 53 -176 130v-527zM557 1045q68 -56 176 -130v509q-36 6 -76 6q-56 0 -100 -10v-375zM774 38q127 37 127 152 q0 34 -7 57t-34 56t-86 82v-347z" />
-<glyph unicode="%" horiz-adv-x="1473" d="M66 1214q0 101 46 179.5t126 122t180 43.5q104 0 183 -40t123 -115t44 -179q0 -102 -45.5 -180t-125 -121t-179.5 -43q-104 0 -183.5 39.5t-124 115t-44.5 178.5zM125 -86l1198 1774l39 -27l-1198 -1774zM297 1217q0 -147 33 -223t92 -76q115 0 115 303q0 148 -32 224.5 t-91 76.5q-117 0 -117 -305zM705 305q0 101 46 179t126 121.5t180 43.5q104 0 183 -40t123 -115t44 -179q0 -101 -45.5 -179.5t-125.5 -121.5t-179 -43q-104 0 -183.5 40t-124 115t-44.5 179zM936 307q0 -146 33 -222.5t92 -76.5q115 0 115 303q0 148 -32 224.5t-91 76.5 q-117 0 -117 -305z" />
-<glyph unicode="&#x26;" horiz-adv-x="1921" d="M68 481q0 142 77.5 239t176.5 147.5t186 70.5q-113 41 -180.5 99.5t-67.5 154.5t68.5 157t171 88t209.5 27q75 0 122 -6.5t91 -21.5q63 -22 109 -66.5t46 -116.5q0 -46 -25 -81t-67.5 -54.5t-93.5 -19.5q-78 0 -127 36.5t-49 106.5q0 58 40 106t105 64q-46 16 -121 16 t-135.5 -31.5t-96.5 -95.5t-36 -157q0 -107 64 -193q66 19 106 19q36 0 54 -16.5t18 -43.5q0 -20 -17 -32.5t-41 -12.5q-52 0 -118 58q-90 -65 -137.5 -141t-47.5 -187q0 -192 159 -280.5t470 -88.5q140 0 274 39t221 117t87 188q0 64 -16 120t-76 100q-63 -14 -138 -25 q-91 -14 -147 -25q-154 -28 -246 -54.5t-139 -64t-47 -92.5q0 -48 35 -86t91 -59t117 -21q14 0 56 5q-58 21 -83.5 62t-25.5 91q0 73 55.5 113.5t143.5 40.5q90 0 140 -42.5t50 -115.5q0 -98 -84.5 -145t-236.5 -47q-99 0 -175.5 31.5t-119.5 94t-43 152.5 q0 186 147.5 286.5t425.5 141.5q30 4 88.5 14.5t89.5 14.5q132 22 216.5 46.5t132 63t47.5 97.5q0 51 -33.5 90t-86 60.5t-108.5 21.5q-23 0 -55 -4q61 -22 94 -65t33 -89q0 -73 -53.5 -112.5t-141.5 -39.5q-90 0 -142 43t-52 115q0 88 69 140.5t207 52.5q104 0 181.5 -35 t120 -102t42.5 -160q0 -154 -98.5 -245.5t-293.5 -139.5q63 -42 100.5 -126.5t37.5 -189.5q0 -153 -97.5 -268.5t-270.5 -178.5t-393 -63q-257 0 -439.5 61.5t-278 176.5t-95.5 272z" />
-<glyph unicode="'" horiz-adv-x="455" d="M61 1329q0 49 21.5 87t59.5 58.5t85 20.5q73 0 119.5 -45t46.5 -119q0 -46 -14.5 -84t-60.5 -123t-76 -166h-29q-28 72 -72.5 153.5t-62 123.5t-17.5 94z" />
-<glyph unicode="(" horiz-adv-x="684" d="M59 639q0 -341 139 -587.5t414 -424.5l31 25q-117 234 -172 467.5t-55 519.5q0 285 56 522.5t171 464.5l-31 25q-275 -178 -414 -424.5t-139 -587.5z" />
-<glyph unicode=")" horiz-adv-x="684" d="M41 -348q117 234 172 467.5t55 519.5q0 285 -56 522.5t-171 464.5l31 25q275 -178 414 -424.5t139 -587.5t-139 -587.5t-414 -424.5z" />
-<glyph unicode="*" horiz-adv-x="969" d="M91 1210q0 33 20 66q34 63 93 63q30 0 60 -18q32 -18 61 -51t76 -97t75 -98q-16 39 -48 114.5t-45.5 117t-13.5 75.5q0 57 34 84t82 27q49 0 82 -27t33 -84q0 -35 -13.5 -75.5t-45 -113t-47.5 -115.5q26 33 75.5 98.5t78 97.5t57.5 49q32 18 59 18q59 0 94 -63 q21 -34 21 -68q0 -55 -58 -88q-31 -18 -73 -26.5t-120 -17.5t-122 -16q41 -6 121.5 -16t123 -19t70.5 -26q59 -33 59 -89q0 -33 -20 -66q-36 -63 -93 -63q-30 0 -60 18q-32 18 -60.5 50.5t-76 96.5t-76.5 100q16 -40 48.5 -116t46 -117.5t13.5 -75.5q0 -57 -33.5 -83.5 t-81.5 -26.5q-50 0 -83 26.5t-33 83.5q0 37 14 79t45.5 114.5t47.5 112.5q-27 -33 -76 -98.5t-78 -98t-58 -49.5q-31 -18 -60 -18q-30 0 -54 18t-39 45q-21 34 -21 68q0 54 58 87q31 18 73.5 26.5t122 17.5t124.5 16q-41 6 -123.5 16t-125 19t-71.5 26q-59 33 -59 90z M484 1061l1 -1l1 1h-2z" />
-<glyph unicode="+" horiz-adv-x="1157" d="M66 696v62h477v483h73v-483h476v-62h-476v-481h-73v481h-477z" />
-<glyph unicode="," horiz-adv-x="569" d="M84 147q0 80 53 128.5t139 48.5q54 0 96 -19.5t66 -56.5q23 -30 37 -82t14 -113q0 -107 -55 -197t-162 -139l-18 37q54 25 96 71t58 97q11 36 11 68q0 20 -5 45q-55 -64 -150 -64q-82 0 -131 46.5t-49 129.5z" />
-<glyph unicode="-" horiz-adv-x="961" d="M111 455v202h739v-202h-739z" />
-<glyph unicode="." horiz-adv-x="578" d="M86 147q0 87 52 132t151 45q98 0 150.5 -45t52.5 -132q0 -86 -52.5 -131t-150.5 -45q-99 0 -151 44.5t-52 131.5z" />
-<glyph unicode="/" horiz-adv-x="750" d="M63 -29l558 1508h67l-557 -1508h-68z" />
-<glyph unicode="0" horiz-adv-x="1382" d="M82 516q0 162 77.5 293t218.5 207t324 76q174 0 310 -68t212 -191.5t76 -283.5q0 -163 -78 -295t-219 -207.5t-323 -75.5q-172 0 -308 67.5t-213 191.5t-77 286zM465 522q0 -176 31 -291.5t83.5 -169t118.5 -53.5q64 0 114 64.5t78 185.5t28 285q0 175 -31.5 290 t-84 168.5t-118.5 53.5q-64 0 -113.5 -64t-77.5 -184.5t-28 -284.5z" />
-<glyph unicode="1" horiz-adv-x="803" d="M74 0v43q89 0 132.5 36.5t43.5 131.5v504q0 98 -15.5 144.5t-51.5 61.5t-109 15v45q197 3 323 26.5t221 77.5v-895q0 -57 11 -89t36 -45t68 -13v-43q-220 8 -282 8q-73 0 -377 -8z" />
-<glyph unicode="2" horiz-adv-x="1133" d="M74 0v43q25 25 169.5 154t234 268.5t89.5 282.5q0 104 -44.5 152t-137.5 48q-87 0 -152.5 -34.5t-121.5 -102.5l-35 25q80 120 205.5 188t322.5 68q112 0 195 -31t127.5 -90.5t44.5 -141.5q0 -118 -93 -202t-260 -181t-221 -145h463q56 0 83 7.5t37.5 24.5t16.5 52h47 q0 -263 9 -395q-46 10 -305 10h-674z" />
-<glyph unicode="3" horiz-adv-x="1049" d="M49 -266q129 5 259.5 60.5t217 160t86.5 246.5q0 79 -25.5 141.5t-73.5 99t-114 41.5q-42 -18 -64.5 -26t-47.5 -8q-21 0 -31 7t-10 25q0 24 20.5 35.5t52.5 11.5q15 0 36.5 -2.5t35.5 -3.5q158 104 158 260q0 89 -48.5 134t-135.5 45q-79 0 -148 -38t-117 -108l-37 21 q71 117 179 186.5t288 69.5q112 0 200 -28.5t138 -82.5t50 -127q0 -77 -56 -146t-166.5 -119.5t-267.5 -72.5q25 2 74 2q147 0 257.5 -38t171 -109t60.5 -168q0 -151 -139.5 -267.5t-358 -180.5t-444.5 -64v43z" />
-<glyph unicode="4" horiz-adv-x="1126" d="M4 49v43l830 1000h32v-783h13q56 0 83 7.5t38 24.5t16 52h47q0 -247 8 -354q-29 6 -205 9v-337h-286v338h-576zM240 309h340v412z" />
-<glyph unicode="5" horiz-adv-x="1001" d="M41 -266q133 1 253 57.5t194.5 162t74.5 245.5q0 127 -55.5 194.5t-163.5 67.5q-60 0 -106 -19t-91 -57l-32 23l82 661q40 -8 110 -8h408q46 0 69 14.5t27 48.5h47q0 -262 8 -374q-44 10 -284 10h-381l-39 -320q57 43 148 69t208 26q140 0 235.5 -43.5t142 -117.5 t46.5 -167q0 -152 -131.5 -268t-340 -179t-429.5 -63v37z" />
-<glyph unicode="6" horiz-adv-x="1210" d="M86 555q0 285 141.5 483.5t346.5 305t411 137.5l8 -41q-136 -43 -234 -105.5t-173 -193.5t-102 -350q76 114 251 114q118 0 215 -54.5t153 -154.5t56 -233q0 -154 -74.5 -265t-200.5 -169t-276 -58q-162 0 -279.5 69t-180 200t-62.5 315zM469 535q0 -185 23.5 -302 t60.5 -169t78 -52q39 0 72 45t53 142t20 245q0 208 -39 305t-104 97q-40 0 -85.5 -34.5t-72.5 -103.5q-6 -81 -6 -173z" />
-<glyph unicode="7" horiz-adv-x="999" d="M43 1071q46 -10 305 -10h660v-43q-25 -53 -132 -241t-170 -365t-63 -367q2 -21 6 -83t4 -85q0 -47 -20 -88t-62 -66.5t-104 -25.5q-93 0 -139.5 59t-46.5 164q0 156 109.5 318t251.5 320.5t178 201.5h-584q-56 0 -83.5 -7.5t-38 -24.5t-16.5 -52h-47q0 278 -8 395z" />
-<glyph unicode="8" horiz-adv-x="1204" d="M76 326q0 234 336 371q-84 75 -140.5 139.5t-92.5 140t-36 160.5q0 115 65.5 192t173 113.5t234.5 36.5q132 0 233 -38t156.5 -104t55.5 -149q0 -93 -72.5 -162.5t-224.5 -137.5q136 -126 202 -193.5t117.5 -156.5t51.5 -184q0 -109 -70.5 -196.5t-194.5 -137t-278 -49.5 q-141 0 -258.5 41.5t-187.5 121.5t-70 192zM379 367q0 -359 223 -359q89 0 131.5 52.5t42.5 136.5q0 88 -45.5 167t-105.5 138.5t-181 165.5q-65 -104 -65 -301zM487 1305q0 -95 64 -185.5t183 -203.5q22 50 31 125.5t9 136.5q0 126 -45 195t-125 69q-58 0 -87.5 -37.5 t-29.5 -99.5z" />
-<glyph unicode="9" horiz-adv-x="1192" d="M47 600q0 154 74.5 265t200.5 169t276 58q162 0 279.5 -69t180 -200t62.5 -315q0 -253 -138 -430.5t-339.5 -273t-400.5 -119.5l-9 41q125 36 217.5 89t164.5 161.5t102 288.5q-77 -107 -246 -107q-118 0 -214.5 54.5t-153 154.5t-56.5 233zM430 618q0 -207 39.5 -304 t103.5 -97q39 0 83.5 32.5t71.5 97.5q9 84 9 181q0 185 -23.5 302t-60.5 169t-78 52q-39 0 -71.5 -45t-53 -142.5t-20.5 -245.5z" />
-<glyph unicode=":" horiz-adv-x="627" d="M111 147q0 87 52 132t151 45q98 0 150.5 -45t52.5 -132q0 -86 -52.5 -131t-150.5 -45q-99 0 -151 44.5t-52 131.5zM111 915q0 87 52 132t151 45q98 0 150.5 -45t52.5 -132q0 -86 -52.5 -131t-150.5 -45q-99 0 -151 44.5t-52 131.5z" />
-<glyph unicode=";" horiz-adv-x="623" d="M109 147q0 80 53 128.5t139 48.5q54 0 96 -19.5t66 -56.5q23 -30 37 -82t14 -113q0 -107 -55 -197t-162 -139l-18 37q54 25 96 71t58 97q11 36 11 68q0 20 -5 45q-55 -64 -150 -64q-82 0 -131 46.5t-49 129.5zM109 915q0 87 52 132t151 45q98 0 150.5 -45t52.5 -132 q0 -86 -52.5 -131t-150.5 -45q-99 0 -151 44.5t-52 131.5z" />
-<glyph unicode="&#x3c;" horiz-adv-x="1225" d="M55 727l998 465l34 -74l-837 -391l837 -391l-34 -74z" />
-<glyph unicode="=" horiz-adv-x="1284" d="M129 553v61h1026v-61h-1026zM129 840v61h1026v-61h-1026z" />
-<glyph unicode="&#x3e;" horiz-adv-x="1225" d="M138 336l34 -74l998 465l-998 465l-34 -74l837 -391z" />
-<glyph unicode="?" horiz-adv-x="1106" d="M59 1333q0 70 34.5 116t96.5 81q129 72 324 72q158 0 278.5 -44.5t187.5 -128t67 -196.5q0 -168 -151 -284t-413 -171v-299h-41v318q97 48 149 108.5t70.5 129.5t18.5 159q0 186 -61 276.5t-166 90.5q-58 0 -100.5 -11t-61.5 -28q67 -25 100 -68.5t33 -112.5 q0 -48 -24.5 -87t-69.5 -62t-103 -23q-49 0 -87.5 22.5t-59.5 60.5t-21 81zM264 147q0 87 52 132t151 45q98 0 150.5 -45t52.5 -132q0 -86 -52.5 -131t-150.5 -45q-99 0 -151 44.5t-52 131.5z" />
-<glyph unicode="@" horiz-adv-x="1819" d="M86 293q0 274 135.5 522.5t368 400.5t506.5 152q191 0 339.5 -59.5t234 -185.5t85.5 -318q0 -218 -94.5 -390t-238 -267t-281.5 -95q-172 0 -172 147q0 28 6 60q-97 -207 -281 -207q-111 0 -182.5 68t-71.5 211q0 140 67.5 292t181 253.5t243.5 101.5q68 0 109.5 -36.5 t56.5 -93.5l20 101q193 0 309 29l-155 -731q-11 -55 -11 -80q0 -43 26 -43q14 0 34 10q95 45 184.5 137t149 229t59.5 306q0 182 -82 299t-220.5 171t-313.5 54q-252 0 -476 -142.5t-359.5 -381t-135.5 -510.5q0 -204 80.5 -336t223 -193t331.5 -61q237 0 422 111l14 -27 q-79 -56 -192.5 -88.5t-245.5 -32.5q-202 0 -353 66.5t-236 206t-85 350.5zM762 328q0 -86 17 -119t52 -33q53 0 95 58.5t84 181.5l71 352q1 46 -17.5 84.5t-53.5 38.5q-51 0 -110 -83t-98.5 -214t-39.5 -266z" />
-<glyph unicode="A" horiz-adv-x="1417" d="M-43 0v41q50 8 95.5 63t92.5 177l455 1169q44 -4 108 -4t107 4l496 -1278q26 -66 58 -97.5t63 -33.5v-41q-148 6 -373 6q-234 0 -344 -6v41q77 3 110.5 19t33.5 56q0 31 -25 97l-122 336h-413l-35 -92q-66 -172 -66 -267q0 -84 46.5 -115t138.5 -34v-41q-153 6 -268 6 q-97 0 -158 -6zM315 590h383l-186 512z" />
-<glyph unicode="B" horiz-adv-x="1442" d="M57 0v41q66 3 95.5 16t40 48t10.5 112v1016q0 77 -11 112t-40.5 48t-94.5 16v41q117 -6 353 -6q84 0 187 2t142 2q182 0 306.5 -40.5t186.5 -113t62 -168.5q0 -76 -52.5 -152t-159.5 -133.5t-261 -76.5v-4q200 -10 330.5 -63.5t190 -132t59.5 -167.5 q0 -200 -160.5 -298.5t-454.5 -98.5q-43 0 -152 3t-220 3q-240 0 -357 -6zM618 217q0 -74 10.5 -109t38 -48t85.5 -13q219 0 219 359q0 161 -77.5 245t-246.5 84h-29v-518zM618 770h56q111 0 154.5 90.5t43.5 243.5q0 155 -33 230t-110 75q-47 0 -70.5 -14.5t-32 -51.5 t-8.5 -110v-463z" />
-<glyph unicode="C" horiz-adv-x="1468" d="M74 713q0 226 98.5 400t274 270t401.5 96q122 0 208.5 -35t168.5 -98q23 -18 40 -18q42 0 52 122h47q-8 -145 -8 -512h-47q-10 109 -28.5 182.5t-56.5 132t-104 101.5q-94 61 -190 61q-147 0 -232.5 -103.5t-119 -258.5t-33.5 -332t33.5 -332t119 -258.5t232.5 -103.5 q96 0 190 61q66 41 104 101t56.5 140.5t28.5 202.5h47q0 -381 8 -532h-47q-5 64 -16.5 92.5t-33.5 28.5q-16 0 -42 -17q-61 -43 -112.5 -70.5t-117.5 -45t-149 -17.5q-232 0 -406 88t-270 255.5t-96 398.5z" />
-<glyph unicode="D" horiz-adv-x="1661" d="M57 0v41q66 3 95.5 16t40 48t10.5 112v1016q0 77 -11 112t-40.5 48t-94.5 16v41q149 -7 280 -7l73 1q300 6 329 6q425 0 635.5 -181t210.5 -528q0 -223 -103 -390.5t-297.5 -259t-463.5 -91.5q-30 0 -143 3t-164 3q-240 0 -357 -6zM618 213q0 -74 12 -110.5t44.5 -51 t97.5 -14.5q203 0 293 175t90 521q0 347 -93 513.5t-292 166.5q-64 0 -96 -14.5t-44 -51.5t-12 -110v-1024z" />
-<glyph unicode="E" horiz-adv-x="1331" d="M57 0v41q66 3 95.5 16t40 48t10.5 112v1016q0 77 -11 112t-40.5 48t-94.5 16v41q238 -6 717 -6q301 0 428 6q-14 -192 -14 -344q0 -95 6 -148h-47q-36 238 -136.5 341.5t-240.5 103.5h-27q-56 0 -81 -9t-34.5 -35.5t-9.5 -84.5v-524h21q73 0 131.5 41t96.5 103t51 126h47 q-8 -120 -8 -199l1 -92q0 -88 13 -291h-47q-13 77 -51.5 138.5t-98.5 97t-135 35.5h-21v-533q0 -59 9.5 -85t34.5 -35t81 -9h68q74 0 148.5 47t136 155.5t92.5 282.5h47q-6 -73 -6 -188q0 -209 14 -344q-139 6 -469 6q-479 0 -717 -6z" />
-<glyph unicode="F" horiz-adv-x="1245" d="M57 0v41q66 3 95.5 16t40 48t10.5 112v1016q0 77 -11 112t-40.5 48t-94.5 16v41q238 -6 717 -6q301 0 428 6q-14 -192 -14 -344q0 -95 6 -148h-47q-50 237 -151 341t-226 104h-27q-56 0 -81 -9t-34.5 -35.5t-9.5 -84.5v-524h21q73 0 131.5 41t96.5 103t51 126h47 q-8 -120 -8 -199l1 -92q0 -88 13 -291h-47q-13 77 -51.5 138.5t-98.5 97t-135 35.5h-21v-471q0 -86 17.5 -125.5t64 -52.5t146.5 -13v-47q-276 6 -422 6q-34 0 -367 -6z" />
-<glyph unicode="G" horiz-adv-x="1548" d="M74 713q0 226 101 400t281.5 270t411.5 96q132 0 225.5 -35t172.5 -98q20 -19 41 -19t33 29.5t18 93.5h47q-8 -145 -8 -512h-47q-10 107 -29 181t-57 132t-103 103q-42 29 -99 45t-112 16q-147 0 -238 -103.5t-129 -261t-38 -329.5q0 -357 87.5 -533t241.5 -176 q64 0 101 25q43 30 43 102v205q0 103 -16 150.5t-58 65.5t-133 22v41q129 -7 391 -7q218 0 316 7v-41q-38 -4 -54.5 -16.5t-23 -47.5t-6.5 -112v-406h-41q-2 43 -18.5 80t-45.5 37q-43 0 -139 -47q-204 -99 -346 -99q-254 0 -426 87.5t-258 253.5t-86 401z" />
-<glyph unicode="H" horiz-adv-x="1698" d="M57 0v41q66 3 95.5 16t40 48t10.5 112v1016q0 77 -11 112t-40.5 48t-94.5 16v41q117 -6 365 -6q222 0 342 6v-41q-66 -3 -95.5 -16t-40 -48t-10.5 -112v-483h461v483q0 77 -10.5 112t-40 48t-94.5 16v41q126 -6 362 -6q234 0 344 6v-41q-66 -3 -95 -16t-39.5 -48 t-10.5 -112v-1016q0 -77 11 -112t40 -48t94 -16v-41q-109 6 -344 6q-236 0 -362 -6v41q66 3 95 16t39.5 47.5t10.5 112.5v492h-461v-492q0 -77 11 -112t40.5 -48t94.5 -16v-41q-120 6 -342 6q-248 0 -365 -6z" />
-<glyph unicode="I" horiz-adv-x="821" d="M57 0v41q66 3 95.5 16t40 48t10.5 112v1016q0 77 -11 112t-40.5 48t-94.5 16v41q117 -6 365 -6q222 0 342 6v-41q-66 -3 -95.5 -16t-40 -48t-10.5 -112v-1016q0 -77 11 -112t40.5 -48t94.5 -16v-41q-120 6 -342 6q-248 0 -365 -6z" />
-<glyph unicode="J" horiz-adv-x="799" d="M-334 -193q0 72 55 115t146 43q86 0 135 -38.5t49 -112.5q0 -48 -29.5 -90t-89.5 -64q13 -2 37 -2q65 0 112 36.5t69 92.5q21 58 30 120t11 141.5t2 248.5v936q0 77 -11 112t-40.5 48t-94.5 16v41q111 -6 344 -6q237 0 363 6v-41q-66 -3 -95.5 -16t-40 -48t-10.5 -112 v-750l1 -168q0 -252 -36 -366q-31 -96 -109.5 -171.5t-198 -119t-267.5 -43.5q-150 0 -229 39q-103 51 -103 153z" />
-<glyph unicode="K" horiz-adv-x="1544" d="M57 0v41q66 3 95.5 16t40 48t10.5 112v1016q0 77 -11 112t-40.5 48t-94.5 16v41q117 -6 365 -6q222 0 342 6v-41q-66 -3 -95.5 -16t-40 -48t-10.5 -112v-462q83 6 160 61t191 182l69 78q91 102 91 184q0 60 -47 96t-121 39v39q171 -6 346 -6q123 0 206 6v-39 q-178 -48 -335 -225l-201 -228l475 -792q28 -46 55 -74t70 -51v-41q-173 6 -369 6q-151 0 -293 -6v41q65 3 91.5 11.5t26.5 27.5q0 16 -21 53l-297 502q-30 50 -49 68t-48 23v-509q0 -77 11 -112t40.5 -48t94.5 -16v-41q-120 6 -342 6q-248 0 -365 -6z" />
-<glyph unicode="L" horiz-adv-x="1282" d="M57 0v41q66 3 95.5 16t40 48t10.5 112v1016q0 77 -11 112t-40.5 48t-94.5 16v41q117 -6 365 -6q236 0 362 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-1057q0 -58 8 -84.5t29 -35.5t68 -9h68q71 0 155.5 72t151.5 189.5t90 244.5h47q-6 -73 -6 -188q0 -222 14 -365 q-139 6 -469 6q-479 0 -717 -6z" />
-<glyph unicode="M" horiz-adv-x="1976" d="M61 0v41q64 14 94.5 44t41 91.5t10.5 183.5v873q0 77 -11 112t-40.5 48t-94.5 16v41q62 -6 170 -6q247 0 424 6l387 -870l336 864h178q237 0 363 6v-41q-66 -3 -95 -16t-39.5 -47.5t-10.5 -112.5v-1016q0 -77 10.5 -112t40 -48t94.5 -16v-41q-126 6 -363 6 q-247 0 -364 -6v41q74 3 107.5 16t46 48t12.5 112v1049l-494 -1264h-33l-577 1315v-916q0 -151 12 -217t54 -97.5t141 -45.5v-41q-82 6 -230 6q-108 0 -170 -6z" />
-<glyph unicode="N" horiz-adv-x="1499" d="M61 0v41q64 14 94.5 44t41 91.5t10.5 183.5v873q0 77 -11 112t-40.5 48t-94.5 16v41q62 -6 170 -6q113 0 189 6l837 -885v484q0 151 -12 217t-53.5 97.5t-140.5 45.5v41q83 -6 229 -6q109 0 170 6v-41q-64 -14 -94 -44t-40.5 -91.5t-10.5 -183.5v-1090q-30 3 -67 3 q-36 0 -77 -3l-907 991v-590q0 -151 12 -217t54 -97.5t141 -45.5v-41q-82 6 -230 6q-108 0 -170 -6z" />
-<glyph unicode="O" d="M74 713q0 226 98.5 400t274 270t401.5 96q232 0 406 -88t270 -255.5t96 -398.5q0 -226 -98.5 -400t-274.5 -270t-401 -96q-232 0 -406 88t-270 255.5t-96 398.5zM504 721q0 -212 47 -374.5t127 -250.5t176 -88q101 0 177 91.5t117.5 255t41.5 374.5q0 212 -47 374.5 t-127 250.5t-176 88q-101 0 -177 -91.5t-117.5 -255t-41.5 -374.5z" />
-<glyph unicode="P" horiz-adv-x="1389" d="M57 0v41q66 3 95.5 16t40 48t10.5 112v1016q0 77 -11 112t-40.5 48t-94.5 16v41q117 -6 353 -6q84 0 187 2t142 2q203 0 341.5 -50.5t207 -141.5t68.5 -212q0 -113 -61 -216.5t-209 -172.5t-392 -69h-76v-348q0 -86 17.5 -125.5t64 -52.5t146.5 -13v-47q-276 6 -422 6 q-34 0 -367 -6zM618 627h56q144 0 198 106.5t54 288.5q0 199 -45.5 293t-151.5 94q-47 0 -70.5 -14.5t-32 -51.5t-8.5 -110v-606z" />
-<glyph unicode="Q" d="M74 713q0 226 98.5 400t274 270t401.5 96q232 0 406 -88t270 -255.5t96 -398.5q0 -221 -94.5 -393t-264.5 -269.5t-388 -103.5q-48 -6 -86 -18t-105.5 -39t-118.5 -41q300 -8 375 -8q212 0 352 29q115 24 180.5 63.5t116.5 116.5l39 -11q-11 -135 -48.5 -231.5 t-100.5 -144.5q-46 -35 -114 -53.5t-142 -18.5q-125 0 -244.5 39t-254.5 99t-181 79q-40 14 -49 14q-92 -51 -173 -51q-43 0 -69.5 15.5t-26.5 46.5q0 30 28.5 46.5t84.5 16.5q72 0 156 -37q41 10 75 23t87.5 36t85.5 34q-202 20 -352 113t-232 252t-82 372zM504 721 q0 -212 47 -374.5t127 -250.5t176 -88q101 0 177 91.5t117.5 255t41.5 374.5q0 212 -47 374.5t-127 250.5t-176 88q-101 0 -177 -91.5t-117.5 -255t-41.5 -374.5z" />
-<glyph unicode="R" horiz-adv-x="1477" d="M57 0v41q66 3 95.5 16t40 48t10.5 112v1016q0 77 -11 112t-40.5 48t-94.5 16v41q117 -6 353 -6q84 0 187 2t142 2q312 0 464.5 -87.5t152.5 -268.5q0 -154 -115 -262.5t-386 -134.5q209 -12 316.5 -76.5t131.5 -190.5l43 -213q15 -75 35.5 -104t56.5 -29q37 0 63 27 l27 -27q-61 -61 -135 -86t-172 -25q-141 0 -219.5 50.5t-96.5 171.5l-31 204q-21 144 -56 217.5t-107 73.5h-93v-471q0 -77 11 -112t40.5 -48t94.5 -16v-41q-120 6 -342 6q-248 0 -365 -6zM618 729h56q100 0 155.5 44t76 118t20.5 178q0 168 -46 254t-151 86 q-47 0 -70.5 -14.5t-32 -51.5t-8.5 -110v-504z" />
-<glyph unicode="S" horiz-adv-x="1255" d="M100 -14q9 156 9 594h47q13 -243 101 -395t271 -152q114 0 180 53t66 147q0 81 -36.5 145.5t-98.5 118t-164 121.5q-124 83 -196.5 144t-120 142.5t-47.5 187.5q0 128 69.5 215.5t184.5 129.5t253 42q118 0 191 -22t141 -60q29 -16 43 -22.5t27 -6.5q19 0 29 21.5 t16 68.5h47q-10 -147 -10 -500h-47q-8 117 -53.5 224t-123.5 174t-180 67q-93 0 -151 -50t-58 -140q0 -74 34.5 -127t95 -100t231.5 -166q113 -79 180 -138.5t109.5 -139.5t42.5 -185q0 -133 -75 -224.5t-201 -136.5t-281 -45q-126 0 -208.5 20.5t-154.5 55.5q-46 29 -69 29 q-19 0 -29 -21t-17 -69h-47z" />
-<glyph unicode="T" horiz-adv-x="1432" d="M47 1450q195 -6 670 -6q473 0 667 6q-14 -227 -14 -406q0 -94 6 -147h-47q-67 269 -173.5 387.5t-229.5 118.5h-2v-1172q0 -86 17.5 -125t63.5 -52t146 -13v-41q-288 6 -449 6q-145 0 -421 -6v41q100 0 146 13t63.5 52t17.5 125v1172h-2q-125 0 -230.5 -117.5 t-173.5 -388.5h-47q6 53 6 147q0 179 -14 406z" />
-<glyph unicode="U" horiz-adv-x="1419" d="M27 1409v41q115 -6 360 -6q241 0 367 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-836q0 -133 28 -210.5t84 -110.5t144 -33q195 0 276.5 137.5t81.5 392.5v476q0 151 -12 217t-54 97.5t-141 45.5v41q84 -6 230 -6q108 0 170 6v-41q-64 -14 -94.5 -44t-41 -91.5 t-10.5 -183.5v-494q0 -297 -84 -434q-114 -191 -440 -191q-247 0 -385 99q-68 49 -104.5 121t-50 167t-13.5 232v643q0 78 -10.5 112.5t-39.5 47.5t-95 16z" />
-<glyph unicode="V" horiz-adv-x="1419" d="M-33 1409v41q149 -6 373 -6q233 0 344 6v-41q-76 -3 -110 -18t-34 -57q0 -35 25 -97l355 -873l198 558q67 191 67 304q0 177 -167 183v41q153 -6 268 -6q97 0 158 6v-41q-55 -26 -109 -96t-96 -191l-399 -1122q-66 4 -109 4q-42 0 -106 -4l-537 1278q-27 66 -59 97.5 t-62 33.5z" />
-<glyph unicode="W" horiz-adv-x="2068" d="M-31 1409v41q149 -6 363 -6q187 0 272 6v-41q-54 -11 -54 -82q0 -46 17 -90l298 -835l179 486l-139 425q-16 50 -41 71.5t-63 24.5v41q138 -6 354 -6q213 0 318 6v-41q-75 -2 -107.5 -18t-32.5 -60q0 -34 21 -94l270 -821l158 506q54 177 54 286q0 103 -45.5 150.5 t-131.5 50.5v41q153 -6 268 -6q97 0 158 6v-41q-121 -59 -191 -287l-344 -1122q-64 4 -108 4q-41 0 -107 -4l-266 813l-289 -813q-64 4 -108 4q-41 0 -107 -4l-475 1278q-24 65 -57 97t-64 34z" />
-<glyph unicode="X" horiz-adv-x="1493" d="M-12 1409v43q284 -8 370 -8q78 0 330 8v-43q-67 0 -97.5 -7.5t-30.5 -27.5q0 -14 15 -35l297 -422l117 144q103 119 103 215q0 57 -37.5 92t-106.5 41v41q117 -6 273 -6q131 0 198 6v-41q-66 -24 -139 -88t-137 -143l-244 -299l518 -734q31 -43 48 -62.5t34.5 -28.5 t44.5 -11v-43q-268 8 -350 8q-88 0 -356 -8v43q66 0 96.5 7.5t30.5 27.5q0 14 -15 35l-341 488l-126 -157q-105 -129 -105 -240q0 -70 45.5 -113.5t125.5 -49.5v-41q-117 6 -354 6q-131 0 -199 -6v41q160 67 340 291l246 308l-467 667q-31 43 -48 62.5t-34.5 28.5t-44.5 11z " />
-<glyph unicode="Y" horiz-adv-x="1319" d="M-18 1409v43q126 -12 282 -12q177 0 451 12v-43q-83 0 -124 -8t-41 -39q0 -13 9 -31l292 -562l93 185q97 194 97 305q0 145 -164 152v41q153 -6 268 -6q96 0 158 6v-41q-106 -52 -218 -272l-190 -377v-545q0 -77 11 -112t40 -48t94 -16v-41q-118 6 -352 6q-243 0 -354 -6 v41q66 3 95 16t39.5 47.5t10.5 112.5v377l-379 700q-33 60 -63.5 87.5t-54.5 27.5z" />
-<glyph unicode="Z" horiz-adv-x="1243" d="M76 0v41l620 1362h-102q-96 0 -192 -41.5t-170.5 -141t-96.5 -262.5h-47q6 53 6 148q0 152 -14 344q127 -6 428 -6q442 0 641 6v-41l-621 -1362h86q84 0 192.5 48.5t196.5 157.5t107 279h47q-6 -73 -6 -188q0 -209 14 -344q-151 6 -510 6q-399 0 -579 -6z" />
-<glyph unicode="[" horiz-adv-x="696" d="M160 -371v1952h452v-39h-84v-1874h84v-39h-452z" />
-<glyph unicode="\" horiz-adv-x="750" d="M62 1479l557 -1508h68l-558 1508h-67z" />
-<glyph unicode="]" horiz-adv-x="696" d="M84 -332v-39h452v1952h-452v-39h84v-1874h-84z" />
-<glyph unicode="^" horiz-adv-x="1073" d="M94 647q124 74 237 191t187 243h37q71 -124 184.5 -241t239.5 -193l-16 -29q-135 22 -262.5 55.5t-204.5 67.5q-65 -34 -170 -67.5t-215 -55.5z" />
-<glyph unicode="_" horiz-adv-x="1268" d="M107 -144h1054v-227h-1054v227z" />
-<glyph unicode="`" horiz-adv-x="457" d="M-1 1586q0 58 42 93q37 34 88 34q32 0 63 -14t50 -36q25 -28 38.5 -60.5t45.5 -137.5t90 -220l-23 -18q-64 54 -115.5 90t-131.5 85.5t-113 90.5q-34 40 -34 93z" />
-<glyph unicode="a" horiz-adv-x="1087" d="M45 221q0 105 63 175t197 114q109 39 161.5 61.5t88 54t35.5 74.5v183q0 65 -32.5 116.5t-119.5 51.5q-26 0 -55.5 -10t-52.5 -25q137 -51 137 -185q0 -48 -24.5 -87t-69.5 -62t-103 -23q-50 0 -88 23.5t-59 64.5t-21 91q0 62 34.5 109.5t92.5 78.5q129 66 328 66 q117 0 198 -22.5t136 -80.5q40 -42 53.5 -106.5t13.5 -180.5v-548q0 -49 7 -68.5t24 -19.5q16 0 29.5 7.5t34.5 22.5l20 -35q-48 -40 -112 -57.5t-154 -17.5q-108 0 -158.5 43.5t-52.5 111.5q-43 -71 -121 -113t-172 -42q-121 0 -189.5 64t-68.5 171zM410 295 q0 -145 104 -145q43 0 76 34v432q-15 -25 -80 -90q-100 -97 -100 -231z" />
-<glyph unicode="b" horiz-adv-x="1231" d="M14 1536v43q64 -6 127 -6q215 0 357 29v-664q93 154 311 154q104 0 184 -57t126 -172.5t46 -284.5q0 -325 -131.5 -466t-345.5 -141q-69 0 -114.5 5.5t-86.5 23.5q-70 26 -147 26q-62 0 -115.5 -16t-81.5 -43l-28 21q14 43 14 112v1256q0 95 -26 137.5t-89 42.5zM498 36 q45 -24 96 -24q188 0 188 518q0 253 -36.5 354t-100.5 101q-38 0 -72 -19t-54.5 -52.5t-20.5 -75.5v-802z" />
-<glyph unicode="c" horiz-adv-x="1030" d="M61 530q0 190 68 316t186.5 186t272.5 60q84 0 154.5 -17.5t115.5 -44.5q57 -33 90 -88.5t33 -124.5q0 -56 -25.5 -101.5t-70.5 -71.5t-101 -26q-88 0 -138 51t-50 134q0 74 48.5 129.5t119.5 75.5q-33 24 -82 24q-132 0 -185 -140.5t-53 -332.5q0 -197 74.5 -280.5 t181.5 -83.5q149 0 248 137l35 -13q-28 -90 -83.5 -169t-142.5 -129t-202 -50q-224 0 -359 133.5t-135 425.5z" />
-<glyph unicode="d" horiz-adv-x="1247" d="M63 539q0 181 56 305t158 186t241 62q134 0 213 -52v316q0 95 -26 137.5t-89 42.5v43q64 -6 127 -6q215 0 357 29v-1377q0 -95 25.5 -137.5t88.5 -42.5v-43q-64 6 -127 6q-212 0 -356 -28v145q-42 -80 -101 -117t-149 -37q-122 0 -216 60t-148 187t-54 321zM446 532 q0 -252 37 -353t101 -101q38 0 71.5 19t54.5 52.5t21 75.5v772q-45 27 -96 27q-95 0 -142 -121.5t-47 -370.5z" />
-<glyph unicode="e" horiz-adv-x="1030" d="M63 530q0 190 68 316t186.5 186t272.5 60q387 0 387 -459h-529q-2 -24 -2 -74q0 -197 68.5 -280.5t167.5 -83.5q149 0 248 137l35 -13q-29 -91 -84 -169.5t-142 -128.5t-202 -50q-215 0 -344.5 133.5t-129.5 425.5zM441 672h237v23q0 147 -24 245q-26 104 -79 104 q-56 0 -90 -88t-44 -284z" />
-<glyph unicode="f" horiz-adv-x="748" d="M33 1020v41h123q0 122 14 201.5t45 134.5t86 102q51 44 133.5 73.5t171.5 29.5q147 0 246 -76q32 -26 54 -70t22 -100q0 -42 -22 -80.5t-61 -62t-87 -23.5q-85 0 -135 45t-50 125q0 61 36 110.5t106 71.5q-15 19 -56 19q-62 0 -96 -39q-19 -25 -29 -67.5t-10 -119.5v-274 h219v-41h-219v-809q0 -95 43.5 -131.5t132.5 -36.5v-43q-300 8 -376 8q-63 0 -283 -8v43q43 0 68 13t36 45t11 89v830h-123z" />
-<glyph unicode="g" horiz-adv-x="1147" d="M41 -215q0 56 40.5 74.5t150 30.5t146.5 57h-67q-52 0 -107.5 17.5t-96.5 65t-41 130.5q0 68 25.5 119t82.5 95.5t157 91.5q-118 36 -183.5 110.5t-65.5 187.5q0 109 61.5 182.5t169.5 109.5t250 36q65 0 123 -8q-2 21 -2 42q0 122 57.5 196.5t173.5 74.5 q76 0 126.5 -36.5t50.5 -100.5q0 -38 -22.5 -68.5t-60.5 -48t-85 -17.5q-70 0 -112.5 26.5t-70.5 80.5q-14 -41 -14 -107q0 -24 3 -48q147 -28 230.5 -107t83.5 -207q0 -109 -61.5 -182.5t-169.5 -109.5t-250 -36q-107 0 -194 20q-43 -28 -61.5 -50t-18.5 -52q0 -67 73 -67 h465q135 0 218 -56.5t83 -183.5q0 -109 -68 -208t-204.5 -161.5t-333.5 -62.5q-177 0 -284.5 24.5t-152 62.5t-44.5 83zM393 -186q0 -78 47 -121t138 -43q79 0 139 29t93.5 81.5t33.5 120.5q0 33 -21.5 49.5t-72.5 16.5h-331q-14 -30 -20 -68.5t-6 -64.5zM459 764 q0 -158 26.5 -224.5t77.5 -66.5q52 0 78.5 66.5t26.5 224.5t-26.5 224.5t-78.5 66.5q-51 0 -77.5 -67t-26.5 -224z" />
-<glyph unicode="h" horiz-adv-x="1274" d="M37 0v43q43 0 68 13t36 45t11 89v1166q0 95 -26 137.5t-89 42.5v43q64 -6 127 -6q215 0 356 29v-664q93 154 326 154q163 0 231 -82q31 -37 45.5 -99.5t14.5 -165.5v-555q0 -57 11 -89t35.5 -45t67.5 -13v-43q-220 8 -286 8q-71 0 -291 -8v43q36 0 56 13t29 45t9 89v666 q0 66 -24 97.5t-76 31.5q-38 0 -72 -19t-55 -52.5t-21 -75.5v-648q0 -57 9 -89t29 -45t56 -13v-43q-204 8 -270 8q-71 0 -307 -8z" />
-<glyph unicode="i" horiz-adv-x="676" d="M43 0v43q43 0 68 13t36 45t11 89v650q0 95 -26 137.5t-89 42.5v43q65 -6 127 -6q213 0 356 28v-895q0 -57 11 -89t36 -45t68 -13v-43q-220 8 -291 8t-307 -8zM107 1425q0 87 57 132t166 45q107 0 165 -45t58 -132q0 -86 -58 -131t-165 -45q-109 0 -166 44.5t-57 131.5z " />
-<glyph unicode="j" horiz-adv-x="649" d="M-344 -193q0 72 55 115t146 43q86 0 135 -38.5t49 -112.5q0 -48 -29.5 -90t-89.5 -64q38 -4 55 -4q44 0 81 17t57 48q18 30 26 80t9.5 124.5t1.5 238.5v676q0 95 -26 137.5t-89 42.5v43q64 -6 127 -6q213 0 356 28v-921q0 -122 -14 -203.5t-45.5 -138.5t-85.5 -105 q-118 -102 -387 -102q-137 0 -228 41q-49 22 -76.5 62t-27.5 89zM106 1425q0 87 57.5 132t166.5 45q107 0 165 -45t58 -132q0 -86 -58 -131t-165 -45q-109 0 -166.5 45t-57.5 131z" />
-<glyph unicode="k" horiz-adv-x="1247" d="M37 0v43q43 0 68 13t36 45t11 89v1166q0 95 -26 137.5t-89 42.5v43q64 -6 127 -6q215 0 356 29v-1024q60 2 88 30l158 148q72 68 72 133q0 53 -46.5 90t-117.5 43v41q117 -6 246 -6q200 0 280 6v-41q-143 -39 -303 -201l-53 -52l325 -619q5 -9 19.5 -35.5t29.5 -44.5 t33 -27v-43q-188 8 -247 8q-69 0 -289 -8v43q59 0 59 38q0 13 -8 32l-180 381q-22 42 -66 45v-349q0 -57 11 -89t36 -45t68 -13v-43q-220 8 -291 8t-307 -8z" />
-<glyph unicode="l" horiz-adv-x="672" d="M37 0v43q43 0 68 13t36 45t11 89v1166q0 95 -26 137.5t-89 42.5v43q64 -6 127 -6q215 0 356 29v-1412q0 -57 11 -89t36 -45t68 -13v-43q-220 8 -291 8t-307 -8z" />
-<glyph unicode="m" horiz-adv-x="1876" d="M43 0v43q43 0 68 13t36 45t11 89v650q0 95 -26 137.5t-89 42.5v43q64 -6 127 -6q213 0 356 28v-147q88 154 305 154q164 0 232 -82q31 -37 44 -96q53 98 138 138t203 40q163 0 231 -82q31 -37 45.5 -99.5t14.5 -165.5v-555q0 -57 11 -89t35.5 -45t67.5 -13v-43 q-220 8 -286 8q-63 0 -271 -8v43q29 0 44.5 13t22.5 44.5t7 89.5v666q0 66 -24 97.5t-76 31.5q-35 0 -68 -21t-55.5 -55.5t-27.5 -74.5q3 -39 3 -89v-555q0 -58 9 -89.5t29 -44.5t57 -13v-43q-208 8 -267 8q-66 0 -270 -8v43q27 0 43 13t23.5 45t7.5 89v666q0 66 -19 97.5 t-61 31.5q-38 0 -72 -19t-55 -52.5t-21 -75.5v-648q0 -58 7 -89.5t23 -44.5t44 -13v-43q-188 8 -250 8q-71 0 -307 -8z" />
-<glyph unicode="n" horiz-adv-x="1280" d="M43 0v43q43 0 68 13t36 45t11 89v650q0 95 -26 137.5t-89 42.5v43q65 -6 127 -6q213 0 356 28v-147q93 154 326 154q163 0 231 -82q31 -37 45.5 -99.5t14.5 -165.5v-555q0 -57 11 -89t35.5 -45t67.5 -13v-43q-220 8 -286 8q-71 0 -291 -8v43q36 0 56 13t29 44.5t9 89.5 v666q0 66 -24 97.5t-76 31.5q-38 0 -72 -19t-55 -52.5t-21 -75.5v-648q0 -57 9 -89t29.5 -45t56.5 -13v-43q-208 8 -271 8q-71 0 -307 -8z" />
-<glyph unicode="o" horiz-adv-x="1180" d="M63 530q0 297 137.5 429.5t389.5 132.5t389 -132.5t137 -429.5q0 -296 -137 -427.5t-389 -131.5q-253 0 -390 131.5t-137 427.5zM446 530q0 -262 39.5 -390t104.5 -128t104 128t39 390q0 263 -39 392t-104 129t-104.5 -129t-39.5 -392z" />
-<glyph unicode="p" horiz-adv-x="1253" d="M37 -328q43 0 68 13t36 45t11 90v1018q0 95 -26 137.5t-89 42.5v43q64 -6 127 -6q213 0 356 28v-145q95 154 311 154q104 0 184.5 -57t126.5 -172.5t46 -284.5q0 -325 -131.5 -466t-345.5 -141q-122 0 -191 39v-170q0 -95 43.5 -131.5t132.5 -36.5v-43q-32 1 -147.5 5 t-229.5 4q-83 0 -171 -4t-111 -5v43zM520 50q28 -17 72 -17q112 0 162.5 122.5t50.5 374.5q0 253 -37 354t-100 101q-38 0 -72 -19t-55 -52.5t-21 -75.5v-788z" />
-<glyph unicode="q" horiz-adv-x="1229" d="M63 539q0 181 56 305t158 186t241 62q75 0 129 -6.5t102 -27.5q64 -22 136 -22q63 0 117.5 16.5t82.5 43.5l29 -21q-14 -43 -14 -112v-1143q0 -58 11 -90t35.5 -45t67.5 -13v-43q-23 1 -111 5t-171 4q-113 0 -228.5 -4t-148.5 -5v43q89 0 132.5 36.5t43.5 131.5v285 q-42 -80 -101 -117t-149 -37q-122 0 -216 60t-148 187t-54 321zM446 532q0 -252 37 -353t101 -101q38 0 71.5 19t54.5 52.5t21 75.5v803q-43 23 -96 23q-189 0 -189 -519z" />
-<glyph unicode="r" horiz-adv-x="985" d="M43 0v43q43 0 68 13t36 45t11 89v650q0 95 -26 137.5t-89 42.5v43q65 -6 127 -6q213 0 356 28v-147q80 154 265 154q100 0 144 -61.5t44 -145.5q0 -92 -51.5 -146.5t-136.5 -54.5q-89 0 -136 39.5t-47 107.5q0 122 105 191q-37 0 -66 -14q-52 -22 -86.5 -72.5 t-34.5 -110.5v-614q0 -65 18 -101.5t56 -51.5t102 -15v-43q-252 8 -331 8q-76 0 -328 -8z" />
-<glyph unicode="s" horiz-adv-x="967" d="M80 -14q8 117 8 409h41q13 -110 48.5 -194t92 -131t129.5 -47q52 0 85.5 28.5t33.5 83.5q0 57 -23.5 102.5t-57.5 81t-109 103.5q-87 80 -131.5 127t-76.5 109.5t-32 138.5q0 88 53 155t141 103.5t191 36.5q81 0 150.5 -17.5t107.5 -38.5q21 -12 37 -12q41 0 51 66h41 q-8 -107 -8 -369h-41q-16 134 -76.5 227.5t-175.5 93.5q-52 0 -86.5 -31t-34.5 -83q0 -69 46 -121.5t108.5 -101t91.5 -72.5q76 -63 121 -109t72.5 -104.5t27.5 -132.5q0 -91 -55.5 -163.5t-150 -112.5t-207.5 -40q-128 0 -211 52q-66 34 -103 34q-39 0 -57 -71h-41z" />
-<glyph unicode="t" horiz-adv-x="717" d="M-8 1020v41h155v244q111 0 200 21.5t169 68.5v-334h201v-41h-201v-848q0 -40 14 -57t48 -17q25 0 55 14.5t55 45.5l31 -25q-94 -162 -291 -162q-141 0 -211 70q-42 42 -56 106t-14 179v694h-155z" />
-<glyph unicode="u" horiz-adv-x="1274" d="M23 1020v43q64 -6 127 -6q212 0 356 28v-878q0 -66 24 -97.5t76 -31.5q38 0 72 19t55 52.5t21 75.5v615q0 95 -26 137.5t-89 42.5v43q64 -6 127 -6q213 0 356 28v-862q0 -95 26 -137.5t89 -42.5v-43q-64 6 -127 6q-215 0 -356 -29v148q-93 -154 -326 -154q-163 0 -231 82 q-31 37 -45.5 99t-14.5 165v523q0 95 -25.5 137.5t-88.5 42.5z" />
-<glyph unicode="v" horiz-adv-x="1065" d="M-29 1020v43q164 -12 365 -12q102 0 266 12v-43q-49 0 -73.5 -3.5t-37 -20t-4.5 -54.5l223 -620l95 282q39 116 39 210q0 96 -41.5 148.5t-108.5 57.5v43q77 -8 215 -8q117 0 158 8v-43q-42 -16 -77.5 -61t-67.5 -138l-277 -821q-53 5 -99 5q-45 0 -100 -5l-356 905 q-45 115 -119 115z" />
-<glyph unicode="w" horiz-adv-x="1634" d="M-23 1020v43q164 -12 365 -12q102 0 266 12v-43q-63 0 -90.5 -9.5t-27.5 -40.5q0 -13 4 -28l170 -567l176 686h2q43 -4 98 -4q41 0 119 4l233 -749l88 292q33 110 33 197q0 103 -45.5 157.5t-120.5 61.5v43q77 -8 236 -8q117 0 157 8v-43q-44 -16 -79.5 -60.5 t-65.5 -138.5l-256 -821q-53 5 -99 5q-45 0 -100 -5l-244 708l-186 -708q-53 5 -99 5q-44 0 -99 -5l-316 905q-26 72 -56.5 93.5t-62.5 21.5z" />
-<glyph unicode="x" horiz-adv-x="1120" d="M-2 1020v43q236 -8 309 -8q54 0 242 8v-43q-29 0 -45.5 -10t-16.5 -27q0 -16 11 -33l178 -269l35 42q76 92 76 174q0 53 -34 86.5t-96 38.5v41q126 -6 273 -6q82 0 137 6v-41q-85 -38 -193 -168l-177 -205l335 -504q5 -7 24.5 -34t41 -45.5t41.5 -22.5v-43q-208 8 -269 8 q-62 0 -282 -8v43q29 0 45.5 10t16.5 27t-11 33l-201 303l-18 -23q-77 -99 -77 -191q0 -67 40 -111.5t106 -49.5v-41q-124 6 -333 6q-82 0 -138 -6v41q51 25 95.5 64.5t97.5 103.5l206 238l-313 471q-32 50 -54.5 73t-51.5 29z" />
-<glyph unicode="y" horiz-adv-x="1083" d="M-41 1020v43q163 -12 334 -12q133 0 297 12v-43q-61 0 -92 -8t-31 -38q0 -15 8 -32l253 -600l85 262q39 116 39 210q0 96 -41.5 148.5t-108.5 57.5v43q77 -8 216 -8q116 0 157 8v-43q-42 -16 -77.5 -61t-67.5 -138l-256 -762l-86 -247q-38 -107 -90 -148 q-63 -49 -191 -49q-63 0 -127 19.5t-107.5 62.5t-43.5 110q0 72 54.5 115t145.5 43q87 0 136 -38.5t49 -112.5q0 -49 -34 -93t-99 -65q20 -4 69 -4q141 0 195 164l11 33l-478 1056q-31 70 -60.5 92.5t-58.5 22.5z" />
-<glyph unicode="z" horiz-adv-x="967" d="M53 -10l459 1040h-41q-133 0 -229.5 -91t-112.5 -300h-41q0 307 -8 430q169 -8 401 -8q206 0 434 10l-458 -1040h28q85 0 161 37t129.5 124t64.5 230h41q0 -307 8 -430q-169 8 -402 8q-206 0 -434 -10z" />
-<glyph unicode="{" horiz-adv-x="723" d="M23 594v37h10q64 4 96.5 48t45.5 147t13 302q0 182 50 284t160.5 146t301.5 44v-39q-63 -2 -91.5 -31t-40 -118t-11.5 -286q0 -174 -64.5 -280t-168 -158t-244.5 -78q141 -26 244.5 -78t168 -158.5t64.5 -279.5q0 -204 11.5 -294.5t40 -118.5t91.5 -29v-39 q-193 0 -302.5 42.5t-159.5 146t-50 292.5q0 198 -13 301t-45.5 147.5t-96.5 49.5h-10z" />
-<glyph unicode="|" horiz-adv-x="561" d="M158 -399v2156h245v-2156h-245z" />
-<glyph unicode="}" horiz-adv-x="723" d="M23 -346v-39q193 0 302.5 42.5t159.5 146t50 292.5q0 198 13 301t45.5 147.5t96.5 49.5h10v37h-10q-64 4 -96.5 48t-45.5 147t-13 302q0 182 -50 284t-160.5 146t-301.5 44v-39q63 -2 91.5 -31t40 -118t11.5 -286q0 -174 64.5 -280t168 -158t244.5 -78 q-141 -26 -244.5 -78t-168 -158.5t-64.5 -279.5q0 -204 -11.5 -294.5t-40 -118.5t-91.5 -29z" />
-<glyph unicode="~" horiz-adv-x="1395" d="M102 444q10 114 57.5 201.5t119.5 135.5t155 48q79 0 147 -25.5t207 -99t248 -73.5q164 0 226 160l36 -7q-10 -114 -57 -201.5t-119 -135.5t-155 -48q-79 0 -147 25.5t-207 99.5t-248 74q-164 0 -226 -160z" />
-<glyph unicode="&#xa1;" horiz-adv-x="604" d="M84 -139q0 78 59.5 249t95 289t44.5 252h36q8 -114 38 -223.5t95.5 -297t65.5 -269.5q0 -79 -27.5 -134.5t-76.5 -83.5t-111 -28q-65 0 -114.5 29t-77 84.5t-27.5 132.5zM100 915q0 87 52 132t151 45q98 0 150.5 -45t52.5 -132q0 -86 -52.5 -131t-150.5 -45 q-99 0 -151 44.5t-52 131.5z" />
-<glyph unicode="&#xa2;" horiz-adv-x="1055" d="M63 530q0 178 59.5 299.5t164.5 185t243 75.5v360h45v-358h15q84 0 154.5 -17.5t115.5 -44.5q57 -33 90 -88.5t33 -124.5q0 -56 -25.5 -101.5t-70.5 -71.5t-101 -26q-88 0 -138 51t-50 134q0 74 48.5 129.5t119.5 75.5q-33 24 -82 24q-62 0 -109 -36v-766q55 -35 127 -35 q149 0 248 137l35 -13q-27 -88 -80.5 -165t-136.5 -128t-193 -55v-342h-45v342q-212 8 -339.5 142t-127.5 417zM446 559q0 -199 84 -291v679q-84 -122 -84 -388z" />
-<glyph unicode="&#xa3;" horiz-adv-x="1432" d="M63 12q0 34 44.5 62t130.5 45q22 53 29 111t7 160v138v80h-157v41h157v164h-157v41h157v45q0 608 557 608q158 0 246 -45q59 -31 93 -78.5t34 -109.5q0 -50 -22.5 -90.5t-63.5 -64t-94 -23.5q-84 0 -134 45.5t-50 118.5q0 66 35 115.5t98 72.5q-48 20 -117 20 q-82 0 -126.5 -48t-62.5 -158t-18 -310v-98h215v-41h-215v-94q0 -36 -4 -70h219v-41h-227q-21 -95 -73 -171t-135.5 -170.5t-117.5 -135.5q121 110 216 151.5t180 41.5q60 0 105.5 -7t129 -26t154.5 -19q60 0 97.5 33.5t37.5 83.5q0 55 -35 88.5t-98 46.5l8 33 q69 -12 128.5 -47t96.5 -93.5t37 -135.5q0 -149 -92 -229.5t-275 -80.5q-86 0 -163 18t-180 52t-152 45q-9 2 -40 9t-60 7q-57 0 -113 -20q-38 -56 -83.5 -83.5t-90.5 -27.5q-56 0 -56 41z" />
-<glyph unicode="&#xa4;" horiz-adv-x="1370" d="M100 281l140 139q-39 92 -39 194q0 101 39 193l-140 141l252 252l140 -141q93 41 192 41q92 0 195 -41l141 141l252 -252l-142 -141q39 -92 39 -193q0 -102 -41 -192l144 -141l-252 -252l-143 141q-94 -39 -193 -39q-101 0 -190 39l-142 -141zM496 614q0 -58 26 -108 t70 -79.5t96 -29.5t95.5 29.5t69.5 79.5t26 108q0 59 -26 109.5t-70 80.5t-95 30q-52 0 -96 -30t-70 -80.5t-26 -109.5z" />
-<glyph unicode="&#xa5;" horiz-adv-x="1430" d="M50 1409v43q126 -12 282 -12q177 0 451 12v-43q-83 0 -124 -8t-41 -39q0 -13 9 -31l292 -562l93 185q97 194 97 305q0 145 -164 152v41q153 -6 268 -6q97 0 158 6v-41q-106 -52 -218 -272l-190 -377v-133h235v-41h-235v-164h235v-41h-235v-166q0 -77 11 -112t40 -48 t94 -16v-41q-118 6 -352 6q-243 0 -354 -6v41q66 3 95 16t39.5 47.5t10.5 112.5v166h-236v41h236v164h-236v41h217l-360 665q-33 60 -63.5 87.5t-54.5 27.5z" />
-<glyph unicode="&#xa6;" horiz-adv-x="569" d="M162 -399v1067h246v-1067h-246zM162 786v971h246v-971h-246z" />
-<glyph unicode="&#xa7;" horiz-adv-x="1290" d="M66 623q0 101 62 181.5t204 151.5q-82 72 -119 139.5t-37 149.5q0 108 68.5 188.5t190 124.5t278.5 44q174 0 280 -54q60 -32 90.5 -76t30.5 -116q0 -44 -22.5 -82t-64 -61t-93.5 -23q-84 0 -134 45.5t-50 118.5q0 59 31.5 108.5t82.5 71.5q-11 9 -50.5 19t-82.5 10 q-106 0 -156.5 -50t-50.5 -127q0 -95 47 -147.5t136.5 -110.5t136.5 -90q146 -98 221.5 -158t118.5 -129t43 -157q0 -101 -62 -181.5t-204 -151.5q81 -72 118 -140t37 -150q0 -108 -68.5 -188.5t-190 -124t-277.5 -43.5q-173 0 -281 53q-60 32 -90.5 76t-30.5 117 q0 44 22.5 82t64 61t93.5 23q84 0 134.5 -45.5t50.5 -118.5q0 -60 -32 -109.5t-83 -70.5q10 -10 50 -19.5t83 -9.5q107 0 157 50t50 126q0 97 -47 149t-136.5 110t-135.5 89q-147 98 -222 158t-118 129t-43 158zM360 799q0 -57 30 -103.5t102.5 -102.5t224.5 -155 q118 -77 189 -132q26 43 26 112q0 57 -30 103t-103 102.5t-224 154.5q-118 78 -189 133q-26 -43 -26 -112z" />
-<glyph unicode="&#xa8;" horiz-adv-x="799" d="M-23 1403q0 46 24 87.5t65.5 66t89.5 24.5q46 0 87 -25t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24q-49 0 -90 24t-65 65t-24 89zM465 1403q0 46 24 87.5t65 66t89 24.5q46 0 87 -25t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24q-48 0 -89 24t-65 65t-24 89 z" />
-<glyph unicode="&#xa9;" horiz-adv-x="1786" d="M78 786q0 222 109.5 409.5t296.5 297t409 109.5q221 0 408.5 -109.5t297 -297t109.5 -409.5q0 -221 -109.5 -408.5t-297 -297t-408.5 -109.5q-222 0 -409 109.5t-296.5 297t-109.5 408.5zM160 786q0 -203 98.5 -375t266.5 -273t368 -101q199 0 367.5 101t267 273 t98.5 375q0 204 -98.5 376t-267 273t-367.5 101q-200 0 -368 -101t-266.5 -273t-98.5 -376zM420 786q0 190 68 316t186 186t272 60q83 0 153 -18t118 -44q56 -35 89 -90t33 -123q0 -55 -25.5 -100.5t-70 -72t-100.5 -26.5q-89 0 -139 51t-50 134q0 74 48.5 129.5t119.5 75.5 q-19 13 -50.5 21.5t-65.5 8.5t-62 -8q-46 -14 -76.5 -61.5t-47.5 -146.5t-17 -263q0 -159 37 -254t94 -133.5t125 -38.5q149 0 248 199l34 -13q-28 -90 -83.5 -169t-142.5 -129t-202 -50q-223 0 -358 133.5t-135 425.5z" />
-<glyph unicode="&#xaa;" horiz-adv-x="1014" d="M78 899q0 56 30 94t93 67t174 60q69 20 116.5 49.5t47.5 65.5v37q0 89 -30 128.5t-89 39.5q-52 0 -84 -23q50 -14 76 -52t26 -79q0 -64 -50 -100.5t-120 -36.5q-72 0 -115.5 36.5t-43.5 96.5q0 50 32.5 88.5t85.5 61.5q59 25 127 36t160 11q125 0 202 -27t113.5 -84 t36.5 -149v-353q0 -20 7 -28.5t24 -8.5q25 0 43 15l23 -31q-110 -76 -267 -76q-83 0 -118.5 24.5t-38.5 72.5q-50 -49 -115.5 -73t-134.5 -24q-97 0 -154 40.5t-57 121.5zM420 940q0 -40 16.5 -65t40.5 -25q36 0 62 20v306q-10 -25 -62 -82q-57 -63 -57 -154z" />
-<glyph unicode="&#xab;" horiz-adv-x="1257" d="M45 510v41q165 110 312.5 241.5t314.5 303.5l28 -9q-19 -85 -60.5 -195.5t-92 -209.5t-94.5 -152q44 -52 94.5 -150.5t92 -209t60.5 -195.5l-28 -8q-165 170 -313 301t-314 242zM569 510v41q140 91 265.5 200.5t279.5 262.5l29 -8q-20 -110 -78.5 -257.5t-108.5 -218.5 q50 -70 108.5 -216.5t78.5 -256.5l-29 -8q-151 149 -277.5 259t-267.5 202z" />
-<glyph unicode="&#xac;" horiz-adv-x="1294" d="M139 696v62h1026v-420h-73v358h-953z" />
-<glyph unicode="&#xad;" horiz-adv-x="961" />
-<glyph unicode="&#xae;" horiz-adv-x="1343" d="M100 1030q0 155 77 286.5t208.5 208.5t286.5 77t286 -77t208 -208.5t77 -286.5t-77 -286t-208 -208t-286 -77t-286.5 77t-208.5 208t-77 286zM186 1030q0 -136 65 -252.5t176.5 -185t244.5 -68.5q132 0 243.5 68.5t176.5 185t65 252.5q0 137 -65 253t-176 184.5 t-244 68.5t-244.5 -68.5t-176.5 -184.5t-65 -253zM377 721v31q21 2 30.5 7.5t13 20.5t3.5 47v449q0 33 -3.5 48.5t-13 21.5t-30.5 8v30q33 -2 147 -2q69 0 112.5 1t63.5 1q138 0 198 -40.5t60 -120.5q0 -51 -49.5 -97.5t-167.5 -65.5q69 -6 109 -20t58.5 -37.5t25.5 -62.5 l35 -145q5 -35 26 -35q12 0 23 8l12 -23q-41 -34 -119 -34q-144 0 -159 92l-27 147q-6 33 -14 50t-26 27t-54 14v-214q0 -32 3.5 -47t13 -20.5t30.5 -7.5v-31q-29 0 -66 1t-80 1q-51 0 -90.5 -1t-64.5 -1zM631 1077h8q56 0 86.5 36t30.5 104q0 66 -22.5 101.5t-65.5 35.5 q-21 0 -29 -11t-8 -40v-226z" />
-<glyph unicode="&#xaf;" horiz-adv-x="741" d="M10 1407v51h721v-51h-721z" />
-<glyph unicode="&#xb0;" horiz-adv-x="608" d="M55 1434q0 73 34 129t91 86t123 30q67 0 124.5 -30t91.5 -86t34 -129q0 -75 -34 -131t-91.5 -86.5t-124.5 -30.5q-66 0 -123 30.5t-91 87t-34 130.5zM106 1432q0 -68 29 -116t74 -71.5t94 -23.5t94.5 23.5t75 71.5t29.5 116q0 66 -29.5 114.5t-75.5 73.5t-94 25 t-93.5 -25t-74.5 -73.5t-29 -114.5z" />
-<glyph unicode="&#xb1;" horiz-adv-x="1161" d="M66 0v62h1026v-62h-1026zM70 696v62h477v483h73v-483h476v-62h-476v-481h-73v481h-477z" />
-<glyph unicode="&#xb2;" horiz-adv-x="735" d="M43 897v41q24 21 124.5 98t158 154t57.5 164q0 47 -30.5 74.5t-86.5 27.5q-107 0 -170 -90l-30 16q100 164 309 164q106 0 172.5 -38.5t66.5 -112.5q0 -71 -53.5 -120t-151 -107t-137.5 -85h281q31 0 49 7.5t27.5 21.5t19.5 41l35 -6q-29 -167 -31 -256q-24 6 -78 6h-532 z" />
-<glyph unicode="&#xb3;" horiz-adv-x="684" d="M39 713v35q173 25 270 98t97 188q0 62 -29 104t-80 46l-26 -13t-27.5 -12t-22.5 -4q-31 0 -31 25q0 19 23.5 24.5t67.5 3.5q50 26 72 68.5t22 81.5q0 47 -32.5 77.5t-90.5 30.5q-52 0 -97 -26.5t-73 -71.5l-31 16q90 164 303 164q71 0 128 -17.5t90.5 -50.5t33.5 -79 q0 -72 -71 -122.5t-201 -72.5q10 1 31 1q74 0 135.5 -23.5t97 -66.5t35.5 -99q0 -140 -174 -213.5t-420 -91.5z" />
-<glyph unicode="&#xb4;" horiz-adv-x="457" d="M41 1245q58 115 86.5 210.5t42.5 134t45 73.5q19 23 49 36t62 13q51 0 90 -33q42 -33 42 -92q0 -54 -34 -94q-34 -41 -98.5 -81t-123.5 -79t-139 -106z" />
-<glyph unicode="&#xb6;" horiz-adv-x="1618" d="M63 737q0 209 100.5 371t289.5 253t446 91q88 0 239.5 -3.5t218.5 -3.5q105 0 179 5v-39q-57 -3 -86.5 -18.5t-40 -43.5t-10.5 -77v-1426q0 -78 10.5 -112.5t39.5 -47.5t95 -16v-41q-144 6 -424 6q-233 0 -344 -6v41q87 3 130.5 21.5t60 58.5t16.5 117v106 q-481 0 -700.5 206t-219.5 558zM246 719q0 -8 89.5 -19.5t235 -20.5t308.5 -9q4 -147 24.5 -278t45.5 -212.5t36 -81.5v1245q-11 0 -36 -84t-45.5 -215.5t-24.5 -273.5q-161 0 -305.5 -10t-236 -22.5t-91.5 -18.5z" />
-<glyph unicode="&#xb7;" horiz-adv-x="590" d="M92 593q0 87 52 132t151 45q98 0 150.5 -45t52.5 -132q0 -86 -52.5 -131t-150.5 -45q-99 0 -151 44.5t-52 131.5z" />
-<glyph unicode="&#xb8;" horiz-adv-x="467" d="M-25 -358l13 36q45 -10 98 -10q50 0 88.5 20t38.5 58q0 51 -57 51q-43 0 -68 -14l62 217h55l-35 -123q72 31 162 31q74 0 112.5 -33t38.5 -86q0 -86 -88.5 -130t-234.5 -44q-114 0 -185 27z" />
-<glyph unicode="&#xb9;" horiz-adv-x="608" d="M53 1436v43q142 2 231 15.5t167 47.5v-504q0 -40 13.5 -61.5t42.5 -30t81 -8.5v-43q-102 4 -260 4t-260 -4v43q76 0 113.5 21.5t37.5 78.5v265q0 59 -14.5 87t-48 37t-103.5 9z" />
-<glyph unicode="&#xba;" horiz-adv-x="979" d="M66 1108q0 119 53 202.5t148 126t222 42.5t222.5 -42.5t148.5 -126t53 -202.5t-53 -202.5t-148.5 -126t-222.5 -42.5t-222 42.5t-148 126t-53 202.5zM408 1108q0 -334 81 -334q82 0 82 334t-82 334q-81 0 -81 -334z" />
-<glyph unicode="&#xbb;" horiz-adv-x="1257" d="M115 57q13 71 44.5 165t70.5 178t71 130q-32 46 -71 131t-70.5 179t-44.5 166l28 8q154 -153 279.5 -262.5t265.5 -200.5v-41q-141 -92 -267.5 -202t-277.5 -259zM557 -25q19 85 61 195.5t92.5 209t94.5 150.5q-44 53 -94.5 152t-92.5 209.5t-61 195.5l29 9 q164 -170 312.5 -302t313.5 -243v-41q-166 -111 -315 -243.5t-311 -299.5z" />
-<glyph unicode="&#xbc;" horiz-adv-x="1475" d="M84 1436v43q142 2 231 15.5t167 47.5v-504q0 -40 13.5 -61.5t42.5 -30t81 -8.5v-43q-102 4 -260 4t-260 -4v43q76 0 113.5 21.5t37.5 78.5v265q0 59 -14.5 87t-48 37t-103.5 9zM180 -86l1198 1774l39 -27l-1198 -1774zM592 37v43l531 571h43v-473h37q31 0 48.5 7.5t27 21 t20.5 41.5l35 -6q-21 -59 -29 -211q-25 6 -78 6h-61v-240h-170v240h-404zM728 178h268v289z" />
-<glyph unicode="&#xbd;" horiz-adv-x="1503" d="M78 1436v43q142 2 231 15.5t167 47.5v-504q0 -40 13.5 -61.5t42.5 -30t81 -8.5v-43q-102 4 -260 4t-260 -4v43q76 0 113.5 21.5t37.5 78.5v265q0 59 -14.5 87t-48 37t-103.5 9zM148 -86l1198 1774l39 -27l-1198 -1774zM799 2v41q24 21 124.5 98t158 154t57.5 164 q0 47 -30.5 74.5t-86.5 27.5q-107 0 -170 -90l-30 16q100 164 309 164q106 0 172.5 -38.5t66.5 -112.5q0 -71 -53.5 -120t-151 -107t-137.5 -85h281q31 0 49 7.5t27.5 21.5t19.5 41l35 -6q-29 -167 -31 -256q-24 6 -78 6h-532z" />
-<glyph unicode="&#xbe;" horiz-adv-x="1552" d="M80 713v35q173 25 270 98t97 188q0 62 -29 104t-80 46l-26 -13t-27.5 -12t-22.5 -4q-31 0 -31 25q0 19 23.5 24.5t67.5 3.5q50 26 72 68.5t22 81.5q0 47 -32.5 77.5t-90.5 30.5q-52 0 -97 -26.5t-73 -71.5l-31 16q90 164 303 164q71 0 128 -17.5t90.5 -50.5t33.5 -79 q0 -72 -71 -122.5t-201 -72.5q10 1 31 1q74 0 135.5 -23.5t97 -66.5t35.5 -99q0 -140 -174 -213.5t-420 -91.5zM258 -86l1198 1774l39 -27l-1198 -1774zM684 37v43l531 571h43v-473h37q31 0 48.5 7.5t27 21t20.5 41.5l35 -6q-21 -59 -29 -211q-25 6 -78 6h-61v-240h-170v240 h-404zM820 178h268v289z" />
-<glyph unicode="&#xbf;" horiz-adv-x="1098" d="M55 -16q0 154 151.5 260t411.5 153v269h41v-287q-96 -48 -148 -108.5t-70.5 -130t-18.5 -158.5q0 -166 61 -246t166 -80q120 0 162 39q-67 25 -100 68.5t-33 111.5q0 48 24.5 87t69 62t102.5 23q50 0 88 -22.5t59 -60.5t21 -81q0 -70 -34.5 -116t-96.5 -80 q-57 -32 -139.5 -52t-183.5 -20q-159 0 -279.5 44.5t-187 128t-66.5 196.5zM436 917q0 87 52 132t151 45q98 0 150.5 -45t52.5 -132q0 -86 -52.5 -131t-150.5 -45q-99 0 -151 44.5t-52 131.5z" />
-<glyph unicode="&#xc0;" horiz-adv-x="1417" d="M-43 0v41q50 8 95.5 63t92.5 177l455 1169q44 -4 108 -4t107 4l496 -1278q26 -66 58 -97.5t63 -33.5v-41q-148 6 -373 6q-234 0 -344 -6v41q77 3 110.5 19t33.5 56q0 31 -25 97l-122 336h-413l-35 -92q-66 -172 -66 -267q0 -84 46.5 -115t138.5 -34v-41q-153 6 -268 6 q-97 0 -158 -6zM315 590h383l-186 512zM320 1806q0 27 12 54q19 38 54 57.5t76 19.5q33 0 63 -14q34 -16 59.5 -40.5t95.5 -109t168 -167.5l-14 -25q-80 25 -141 37.5t-154.5 27.5t-140.5 40q-36 18 -57 50.5t-21 69.5z" />
-<glyph unicode="&#xc1;" horiz-adv-x="1417" d="M-43 0v41q50 8 95.5 63t92.5 177l455 1169q44 -4 108 -4t107 4l496 -1278q26 -66 58 -97.5t63 -33.5v-41q-148 6 -373 6q-234 0 -344 -6v41q77 3 110.5 19t33.5 56q0 31 -25 97l-122 336h-413l-35 -92q-66 -172 -66 -267q0 -84 46.5 -115t138.5 -34v-41q-153 6 -268 6 q-97 0 -158 -6zM315 590h383l-186 512zM545 1606q98 83 162 160t91.5 107t70.5 50q28 14 63 14q40 0 75 -19.5t54 -57.5q12 -27 12 -54q0 -37 -20.5 -70t-56.5 -50q-47 -25 -123 -37t-145.5 -24.5t-168.5 -43.5z" />
-<glyph unicode="&#xc2;" horiz-adv-x="1417" d="M-43 0v41q50 8 95.5 63t92.5 177l455 1169q44 -4 108 -4t107 4l496 -1278q26 -66 58 -97.5t63 -33.5v-41q-148 6 -373 6q-234 0 -344 -6v41q77 3 110.5 19t33.5 56q0 31 -25 97l-122 336h-413l-35 -92q-66 -172 -66 -267q0 -84 46.5 -115t138.5 -34v-41q-153 6 -268 6 q-97 0 -158 -6zM248 1606q130 62 248.5 156.5t196.5 195.5h37q73 -98 192 -193.5t252 -158.5l-10 -31q-140 22 -276.5 56.5t-217.5 68.5q-68 -34 -182 -68.5t-229 -56.5zM315 590h383l-186 512z" />
-<glyph unicode="&#xc3;" horiz-adv-x="1417" d="M-43 0v41q50 8 95.5 63t92.5 177l455 1169q44 -4 108 -4t107 4l496 -1278q26 -66 58 -97.5t63 -33.5v-41q-148 6 -373 6q-234 0 -344 -6v41q77 3 110.5 19t33.5 56q0 31 -25 97l-122 336h-413l-35 -92q-66 -172 -66 -267q0 -84 46.5 -115t138.5 -34v-41q-153 6 -268 6 q-97 0 -158 -6zM216 1608q39 159 120.5 236t184.5 77q77 0 131 -18.5t146 -67.5t176 -49q115 0 198 108l29 -14q-39 -159 -120 -236t-183 -77q-78 0 -132.5 19t-147 68.5t-175.5 49.5q-114 0 -199 -111zM315 590h383l-186 512z" />
-<glyph unicode="&#xc4;" horiz-adv-x="1417" d="M-43 0v41q50 8 95.5 63t92.5 177l455 1169q44 -4 108 -4t107 4l496 -1278q26 -66 58 -97.5t63 -33.5v-41q-148 6 -373 6q-234 0 -344 -6v41q77 3 110.5 19t33.5 56q0 31 -25 97l-122 336h-413l-35 -92q-66 -172 -66 -267q0 -84 46.5 -115t138.5 -34v-41q-153 6 -268 6 q-97 0 -158 -6zM269 1739q0 46 24 87.5t65 66t89 24.5q46 0 87 -25t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24q-48 0 -89 24t-65 64.5t-24 89.5zM315 590h383l-186 512zM797 1739q0 46 24 87.5t65 66t89 24.5q46 0 87 -25t66 -66t25 -87q0 -48 -24.5 -89t-66 -65 t-87.5 -24q-48 0 -89 24t-65 64.5t-24 89.5z" />
-<glyph unicode="&#xc5;" horiz-adv-x="1417" d="M-43 0v41q50 8 95.5 63t92.5 177l455 1169q44 -4 108 -4t107 4l496 -1278q26 -66 58 -97.5t63 -33.5v-41q-148 6 -373 6q-234 0 -344 -6v41q77 3 110.5 19t33.5 56q0 31 -25 97l-122 336h-413l-35 -92q-66 -172 -66 -267q0 -84 46.5 -115t138.5 -34v-41q-153 6 -268 6 q-97 0 -158 -6zM315 590h383l-186 512zM474 1729q0 61 32.5 108t87 72.5t117.5 25.5q64 0 119 -25.5t88 -72.5t33 -108q0 -63 -33 -110.5t-88 -73t-119 -25.5q-63 0 -117.5 25.5t-87 73t-32.5 110.5zM531 1726q0 -52 26 -89t67.5 -55.5t86.5 -18.5q46 0 88 18.5t68.5 55.5 t26.5 89q0 51 -26.5 88.5t-69 57.5t-87.5 20q-44 0 -86 -20t-68 -57.5t-26 -88.5z" />
-<glyph unicode="&#xc6;" horiz-adv-x="1868" d="M-35 0v41q34 2 67 31.5t74 99.5l682 1180q-13 31 -42 42.5t-91 14.5v41l187 -3l78 134h49l-78 -135q165 -2 420 -2q301 0 428 6q-15 -181 -15 -303q0 -99 7 -148h-48q-30 215 -109 309.5t-185 94.5h-27q-64 0 -93.5 -12t-40.5 -46.5t-11 -111.5v-483h81q65 0 104.5 40 t57 88t35.5 121h47q-7 -94 -7 -179l1 -91q0 -96 12 -270h-47q-13 73 -34 126.5t-62 88.5t-107 35h-81v-492q0 -77 11 -111.5t40.5 -46.5t93.5 -12h68q57 0 118.5 44t110 143.5t65.5 257.5h48q-7 -70 -7 -189q0 -184 15 -303q-140 6 -469 6q-437 0 -656 -6v41q66 3 95.5 16 t40 48t10.5 112v492h-332l-285 -496q-36 -65 -36 -100q0 -36 34 -52.5t107 -19.5v-41q-62 6 -187 6q-88 0 -137 -6zM492 750h309v483q0 31 -1 53z" />
-<glyph unicode="&#xc7;" horiz-adv-x="1468" d="M74 713q0 226 98.5 400t274 270t401.5 96q122 0 208.5 -35t168.5 -98q23 -18 40 -18q42 0 52 122h47q-8 -145 -8 -512h-47q-10 109 -28.5 182.5t-56.5 132t-104 101.5q-94 61 -190 61q-147 0 -232.5 -103.5t-119 -258.5t-33.5 -332t33.5 -332t119 -258.5t232.5 -103.5 q96 0 190 61q66 41 104 101t56.5 140.5t28.5 202.5h47q0 -381 8 -532h-47q-5 64 -16.5 92.5t-33.5 28.5q-16 0 -42 -17q-61 -43 -112.5 -70.5t-117.5 -45t-149 -17.5q-232 0 -406 88t-270 255.5t-96 398.5zM608 -358l13 36q55 -10 119 -10q76 0 132 20t56 58q0 51 -98 51 q-43 0 -68 -14l66 227h55l-39 -133q81 31 182 31q84 0 128 -33t44 -86q0 -86 -105 -130t-280 -44q-126 0 -205 27z" />
-<glyph unicode="&#xc8;" horiz-adv-x="1331" d="M57 0v41q66 3 95.5 16t40 48t10.5 112v1016q0 77 -11 112t-40.5 48t-94.5 16v41q238 -6 717 -6q301 0 428 6q-14 -192 -14 -344q0 -95 6 -148h-47q-36 238 -136.5 341.5t-240.5 103.5h-27q-56 0 -81 -9t-34.5 -35.5t-9.5 -84.5v-524h21q73 0 131.5 41t96.5 103t51 126h47 q-8 -120 -8 -199l1 -92q0 -88 13 -291h-47q-13 77 -51.5 138.5t-98.5 97t-135 35.5h-21v-533q0 -59 9.5 -85t34.5 -35t81 -9h68q74 0 148.5 47t136 155.5t92.5 282.5h47q-6 -73 -6 -188q0 -209 14 -344q-139 6 -469 6q-479 0 -717 -6zM264 1806q0 27 12 54q19 38 54 57.5 t76 19.5q33 0 63 -14q34 -16 59.5 -40.5t95.5 -109t168 -167.5l-14 -25q-80 25 -141 37.5t-154.5 27.5t-140.5 40q-36 18 -57 50.5t-21 69.5z" />
-<glyph unicode="&#xc9;" horiz-adv-x="1331" d="M57 0v41q66 3 95.5 16t40 48t10.5 112v1016q0 77 -11 112t-40.5 48t-94.5 16v41q238 -6 717 -6q301 0 428 6q-14 -192 -14 -344q0 -95 6 -148h-47q-36 238 -136.5 341.5t-240.5 103.5h-27q-56 0 -81 -9t-34.5 -35.5t-9.5 -84.5v-524h21q73 0 131.5 41t96.5 103t51 126h47 q-8 -120 -8 -199l1 -92q0 -88 13 -291h-47q-13 77 -51.5 138.5t-98.5 97t-135 35.5h-21v-533q0 -59 9.5 -85t34.5 -35t81 -9h68q74 0 148.5 47t136 155.5t92.5 282.5h47q-6 -73 -6 -188q0 -209 14 -344q-139 6 -469 6q-479 0 -717 -6zM489 1606q98 83 162 160t91.5 107 t70.5 50q28 14 63 14q40 0 75 -19.5t54 -57.5q12 -27 12 -54q0 -37 -20.5 -70t-56.5 -50q-47 -25 -123 -37t-145.5 -24.5t-168.5 -43.5z" />
-<glyph unicode="&#xca;" horiz-adv-x="1331" d="M57 0v41q66 3 95.5 16t40 48t10.5 112v1016q0 77 -11 112t-40.5 48t-94.5 16v41q238 -6 717 -6q301 0 428 6q-14 -192 -14 -344q0 -95 6 -148h-47q-36 238 -136.5 341.5t-240.5 103.5h-27q-56 0 -81 -9t-34.5 -35.5t-9.5 -84.5v-524h21q73 0 131.5 41t96.5 103t51 126h47 q-8 -120 -8 -199l1 -92q0 -88 13 -291h-47q-13 77 -51.5 138.5t-98.5 97t-135 35.5h-21v-533q0 -59 9.5 -85t34.5 -35t81 -9h68q74 0 148.5 47t136 155.5t92.5 282.5h47q-6 -73 -6 -188q0 -209 14 -344q-139 6 -469 6q-479 0 -717 -6zM192 1606q130 62 248.5 156.5 t196.5 195.5h37q73 -98 192 -193.5t252 -158.5l-10 -31q-140 22 -276.5 56.5t-217.5 68.5q-68 -34 -182 -68.5t-229 -56.5z" />
-<glyph unicode="&#xcb;" horiz-adv-x="1331" d="M57 0v41q66 3 95.5 16t40 48t10.5 112v1016q0 77 -11 112t-40.5 48t-94.5 16v41q238 -6 717 -6q301 0 428 6q-14 -192 -14 -344q0 -95 6 -148h-47q-36 238 -136.5 341.5t-240.5 103.5h-27q-56 0 -81 -9t-34.5 -35.5t-9.5 -84.5v-524h21q73 0 131.5 41t96.5 103t51 126h47 q-8 -120 -8 -199l1 -92q0 -88 13 -291h-47q-13 77 -51.5 138.5t-98.5 97t-135 35.5h-21v-533q0 -59 9.5 -85t34.5 -35t81 -9h68q74 0 148.5 47t136 155.5t92.5 282.5h47q-6 -73 -6 -188q0 -209 14 -344q-139 6 -469 6q-479 0 -717 -6zM213 1739q0 46 24 87.5t65 66t89 24.5 q46 0 87 -25t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24q-48 0 -89 24t-65 64.5t-24 89.5zM741 1739q0 46 24 87.5t65 66t89 24.5q46 0 87 -25t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24q-48 0 -89 24t-65 64.5t-24 89.5z" />
-<glyph unicode="&#xcc;" horiz-adv-x="821" d="M31 1806q0 27 12 54q19 38 54 57.5t76 19.5q33 0 63 -14q34 -16 59.5 -40.5t95.5 -109t168 -167.5l-14 -25q-80 25 -141 37.5t-154.5 27.5t-140.5 40q-36 18 -57 50.5t-21 69.5zM57 0v41q66 3 95.5 16t40 48t10.5 112v1016q0 77 -11 112t-40.5 48t-94.5 16v41 q117 -6 365 -6q222 0 342 6v-41q-66 -3 -95.5 -16t-40 -48t-10.5 -112v-1016q0 -77 11 -112t40.5 -48t94.5 -16v-41q-120 6 -342 6q-248 0 -365 -6z" />
-<glyph unicode="&#xcd;" horiz-adv-x="821" d="M57 0v41q66 3 95.5 16t40 48t10.5 112v1016q0 77 -11 112t-40.5 48t-94.5 16v41q117 -6 365 -6q222 0 342 6v-41q-66 -3 -95.5 -16t-40 -48t-10.5 -112v-1016q0 -77 11 -112t40.5 -48t94.5 -16v-41q-120 6 -342 6q-248 0 -365 -6zM256 1606q98 83 162 160t91.5 107 t70.5 50q28 14 63 14q40 0 75 -19.5t54 -57.5q12 -27 12 -54q0 -37 -20.5 -70t-56.5 -50q-47 -25 -123 -37t-145.5 -24.5t-168.5 -43.5z" />
-<glyph unicode="&#xce;" horiz-adv-x="821" d="M-41 1606q130 62 248.5 156.5t196.5 195.5h37q73 -98 192 -193.5t252 -158.5l-10 -31q-140 22 -276.5 56.5t-217.5 68.5q-68 -34 -182 -68.5t-229 -56.5zM57 0v41q66 3 95.5 16t40 48t10.5 112v1016q0 77 -11 112t-40.5 48t-94.5 16v41q117 -6 365 -6q222 0 342 6v-41 q-66 -3 -95.5 -16t-40 -48t-10.5 -112v-1016q0 -77 11 -112t40.5 -48t94.5 -16v-41q-120 6 -342 6q-248 0 -365 -6z" />
-<glyph unicode="&#xcf;" horiz-adv-x="821" d="M-20 1739q0 46 24 87.5t65 66t89 24.5q46 0 87 -25t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24q-48 0 -89 24t-65 64.5t-24 89.5zM57 0v41q66 3 95.5 16t40 48t10.5 112v1016q0 77 -11 112t-40.5 48t-94.5 16v41q117 -6 365 -6q222 0 342 6v-41q-66 -3 -95.5 -16 t-40 -48t-10.5 -112v-1016q0 -77 11 -112t40.5 -48t94.5 -16v-41q-120 6 -342 6q-248 0 -365 -6zM508 1739q0 46 24 87.5t65 66t89 24.5q46 0 87 -25t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24q-48 0 -89 24t-65 64.5t-24 89.5z" />
-<glyph unicode="&#xd0;" horiz-adv-x="1661" d="M57 0v41q66 3 95.5 16t40 48t10.5 112v492h-146v41h146v483q0 77 -11 112t-40.5 48t-94.5 16v41q149 -7 280 -7l73 1q300 6 329 6q425 0 635.5 -181t210.5 -528q0 -223 -103 -390.5t-297.5 -259t-463.5 -91.5q-30 0 -143 3t-164 3q-240 0 -357 -6zM618 213 q0 -74 12 -110.5t44.5 -51t97.5 -14.5q203 0 293 175t90 521q0 347 -93 513.5t-292 166.5q-64 0 -96 -14.5t-44 -51.5t-12 -110v-487h234v-41h-234v-496z" />
-<glyph unicode="&#xd1;" horiz-adv-x="1499" d="M61 0v41q64 14 94.5 44t41 91.5t10.5 183.5v873q0 77 -11 112t-40.5 48t-94.5 16v41q62 -6 170 -6q113 0 189 6l837 -885v484q0 151 -12 217t-53.5 97.5t-140.5 45.5v41q83 -6 229 -6q109 0 170 6v-41q-64 -14 -94 -44t-40.5 -91.5t-10.5 -183.5v-1090q-30 3 -67 3 q-36 0 -77 -3l-907 991v-590q0 -151 12 -217t54 -97.5t141 -45.5v-41q-82 6 -230 6q-108 0 -170 -6zM287 1608q39 159 120.5 236t184.5 77q77 0 131 -18.5t146 -67.5t176 -49q115 0 198 108l29 -14q-39 -159 -120 -236t-183 -77q-78 0 -132.5 19t-147 68.5t-175.5 49.5 q-114 0 -199 -111z" />
-<glyph unicode="&#xd2;" d="M74 713q0 226 98.5 400t274 270t401.5 96q232 0 406 -88t270 -255.5t96 -398.5q0 -226 -98.5 -400t-274.5 -270t-401 -96q-232 0 -406 88t-270 255.5t-96 398.5zM453 1806q0 27 12 54q19 38 54 57.5t76 19.5q33 0 63 -14q34 -16 59.5 -40.5t95.5 -109t168 -167.5l-14 -25 q-80 25 -141 37.5t-154.5 27.5t-140.5 40q-36 18 -57 50.5t-21 69.5zM504 721q0 -212 47 -374.5t127 -250.5t176 -88q101 0 177 91.5t117.5 255t41.5 374.5q0 212 -47 374.5t-127 250.5t-176 88q-101 0 -177 -91.5t-117.5 -255t-41.5 -374.5z" />
-<glyph unicode="&#xd3;" d="M74 713q0 226 98.5 400t274 270t401.5 96q232 0 406 -88t270 -255.5t96 -398.5q0 -226 -98.5 -400t-274.5 -270t-401 -96q-232 0 -406 88t-270 255.5t-96 398.5zM504 721q0 -212 47 -374.5t127 -250.5t176 -88q101 0 177 91.5t117.5 255t41.5 374.5q0 212 -47 374.5 t-127 250.5t-176 88q-101 0 -177 -91.5t-117.5 -255t-41.5 -374.5zM678 1606q98 83 162 160t91.5 107t70.5 50q28 14 63 14q40 0 75 -19.5t54 -57.5q12 -27 12 -54q0 -37 -20.5 -70t-56.5 -50q-47 -25 -123 -37t-145.5 -24.5t-168.5 -43.5z" />
-<glyph unicode="&#xd4;" d="M74 713q0 226 98.5 400t274 270t401.5 96q232 0 406 -88t270 -255.5t96 -398.5q0 -226 -98.5 -400t-274.5 -270t-401 -96q-232 0 -406 88t-270 255.5t-96 398.5zM381 1606q130 62 248.5 156.5t196.5 195.5h37q73 -98 192 -193.5t252 -158.5l-10 -31q-140 22 -276.5 56.5 t-217.5 68.5q-68 -34 -182 -68.5t-229 -56.5zM504 721q0 -212 47 -374.5t127 -250.5t176 -88q101 0 177 91.5t117.5 255t41.5 374.5q0 212 -47 374.5t-127 250.5t-176 88q-101 0 -177 -91.5t-117.5 -255t-41.5 -374.5z" />
-<glyph unicode="&#xd5;" d="M74 713q0 226 98.5 400t274 270t401.5 96q232 0 406 -88t270 -255.5t96 -398.5q0 -226 -98.5 -400t-274.5 -270t-401 -96q-232 0 -406 88t-270 255.5t-96 398.5zM349 1608q39 159 120.5 236t184.5 77q77 0 131 -18.5t146 -67.5t176 -49q115 0 198 108l29 -14 q-39 -159 -120 -236t-183 -77q-78 0 -132.5 19t-147 68.5t-175.5 49.5q-114 0 -199 -111zM504 721q0 -212 47 -374.5t127 -250.5t176 -88q101 0 177 91.5t117.5 255t41.5 374.5q0 212 -47 374.5t-127 250.5t-176 88q-101 0 -177 -91.5t-117.5 -255t-41.5 -374.5z" />
-<glyph unicode="&#xd6;" d="M74 713q0 226 98.5 400t274 270t401.5 96q232 0 406 -88t270 -255.5t96 -398.5q0 -226 -98.5 -400t-274.5 -270t-401 -96q-232 0 -406 88t-270 255.5t-96 398.5zM402 1739q0 46 24 87.5t65 66t89 24.5q46 0 87 -25t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24 q-48 0 -89 24t-65 64.5t-24 89.5zM504 721q0 -212 47 -374.5t127 -250.5t176 -88q101 0 177 91.5t117.5 255t41.5 374.5q0 212 -47 374.5t-127 250.5t-176 88q-101 0 -177 -91.5t-117.5 -255t-41.5 -374.5zM930 1739q0 46 24 87.5t65 66t89 24.5q46 0 87 -25t66 -66t25 -87 q0 -48 -24.5 -89t-66 -65t-87.5 -24q-48 0 -89 24t-65 64.5t-24 89.5z" />
-<glyph unicode="&#xd7;" horiz-adv-x="987" d="M92 1085l45 45l359 -358l354 354l45 -45l-354 -352l354 -354l-45 -45l-354 354l-357 -356l-45 45l357 354z" />
-<glyph unicode="&#xd8;" d="M74 713q0 226 98.5 400t274 270t401.5 96q224 0 395 -83l141 208l39 -27l-137 -204q160 -91 247 -253.5t87 -382.5q0 -226 -98.5 -400t-274.5 -270t-401 -96q-246 0 -427 99l-173 -240l-43 29l172 238q-145 94 -223 251t-78 365zM504 721q0 -224 53 -396l550 882 q-49 113 -118 174t-149 61q-101 0 -177 -91.5t-117.5 -255t-41.5 -374.5zM578 264q49 -122 121 -189t155 -67q101 0 177 91.5t117.5 255t41.5 374.5q0 242 -62 422z" />
-<glyph unicode="&#xd9;" horiz-adv-x="1419" d="M27 1409v41q115 -6 360 -6q241 0 367 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-836q0 -133 28 -210.5t84 -110.5t144 -33q195 0 276.5 137.5t81.5 392.5v476q0 151 -12 217t-54 97.5t-141 45.5v41q84 -6 230 -6q108 0 170 6v-41q-64 -14 -94.5 -44t-41 -91.5 t-10.5 -183.5v-494q0 -297 -84 -434q-114 -191 -440 -191q-247 0 -385 99q-68 49 -104.5 121t-50 167t-13.5 232v643q0 78 -10.5 112.5t-39.5 47.5t-95 16zM348 1806q0 27 12 54q19 38 54 57.5t76 19.5q33 0 63 -14q34 -16 59.5 -40.5t95.5 -109t168 -167.5l-14 -25 q-80 25 -141 37.5t-154.5 27.5t-140.5 40q-36 18 -57 50.5t-21 69.5z" />
-<glyph unicode="&#xda;" horiz-adv-x="1419" d="M27 1409v41q115 -6 360 -6q241 0 367 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-836q0 -133 28 -210.5t84 -110.5t144 -33q195 0 276.5 137.5t81.5 392.5v476q0 151 -12 217t-54 97.5t-141 45.5v41q84 -6 230 -6q108 0 170 6v-41q-64 -14 -94.5 -44t-41 -91.5 t-10.5 -183.5v-494q0 -297 -84 -434q-114 -191 -440 -191q-247 0 -385 99q-68 49 -104.5 121t-50 167t-13.5 232v643q0 78 -10.5 112.5t-39.5 47.5t-95 16zM573 1606q98 83 162 160t91.5 107t70.5 50q28 14 63 14q40 0 75 -19.5t54 -57.5q12 -27 12 -54q0 -37 -20.5 -70 t-56.5 -50q-47 -25 -123 -37t-145.5 -24.5t-168.5 -43.5z" />
-<glyph unicode="&#xdb;" horiz-adv-x="1419" d="M27 1409v41q115 -6 360 -6q241 0 367 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-836q0 -133 28 -210.5t84 -110.5t144 -33q195 0 276.5 137.5t81.5 392.5v476q0 151 -12 217t-54 97.5t-141 45.5v41q84 -6 230 -6q108 0 170 6v-41q-64 -14 -94.5 -44t-41 -91.5 t-10.5 -183.5v-494q0 -297 -84 -434q-114 -191 -440 -191q-247 0 -385 99q-68 49 -104.5 121t-50 167t-13.5 232v643q0 78 -10.5 112.5t-39.5 47.5t-95 16zM276 1606q130 62 248.5 156.5t196.5 195.5h37q73 -98 192 -193.5t252 -158.5l-10 -31q-140 22 -276.5 56.5 t-217.5 68.5q-68 -34 -182 -68.5t-229 -56.5z" />
-<glyph unicode="&#xdc;" horiz-adv-x="1419" d="M27 1409v41q115 -6 360 -6q241 0 367 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-836q0 -133 28 -210.5t84 -110.5t144 -33q195 0 276.5 137.5t81.5 392.5v476q0 151 -12 217t-54 97.5t-141 45.5v41q84 -6 230 -6q108 0 170 6v-41q-64 -14 -94.5 -44t-41 -91.5 t-10.5 -183.5v-494q0 -297 -84 -434q-114 -191 -440 -191q-247 0 -385 99q-68 49 -104.5 121t-50 167t-13.5 232v643q0 78 -10.5 112.5t-39.5 47.5t-95 16zM297 1739q0 46 24 87.5t65 66t89 24.5q46 0 87 -25t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24q-48 0 -89 24 t-65 64.5t-24 89.5zM825 1739q0 46 24 87.5t65 66t89 24.5q46 0 87 -25t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24q-48 0 -89 24t-65 64.5t-24 89.5z" />
-<glyph unicode="&#xdd;" horiz-adv-x="1319" d="M-18 1409v43q126 -12 282 -12q177 0 451 12v-43q-83 0 -124 -8t-41 -39q0 -13 9 -31l292 -562l93 185q97 194 97 305q0 145 -164 152v41q153 -6 268 -6q96 0 158 6v-41q-106 -52 -218 -272l-190 -377v-545q0 -77 11 -112t40 -48t94 -16v-41q-118 6 -352 6q-243 0 -354 -6 v41q66 3 95 16t39.5 47.5t10.5 112.5v377l-379 700q-33 60 -63.5 87.5t-54.5 27.5zM547 1606q98 83 162 160t91.5 107t70.5 50q28 14 63 14q40 0 75 -19.5t54 -57.5q12 -27 12 -54q0 -37 -20.5 -70t-56.5 -50q-47 -25 -123 -37t-145.5 -24.5t-168.5 -43.5z" />
-<glyph unicode="&#xde;" horiz-adv-x="1327" d="M57 0v41q66 3 95.5 16t40 48t10.5 112v1016q0 77 -11 112t-40.5 48t-94.5 16v41q117 -6 365 -6q222 0 342 6v-41q-66 -3 -95.5 -16t-40 -48t-10.5 -112v-60l66 1q313 0 464.5 -95t151.5 -295q0 -211 -149.5 -342t-511.5 -131h-21v-94q0 -77 11 -112t40.5 -48t94.5 -16 v-41q-120 6 -342 6q-248 0 -365 -6zM618 352q144 0 198 110t54 300t-54.5 281.5t-182.5 91.5h-15v-783z" />
-<glyph unicode="&#xdf;" horiz-adv-x="1444" d="M37 0v43q43 0 68 13t36 45t11 89v859q0 271 146 412t429 141q150 0 258 -41t163.5 -111.5t55.5 -157.5q0 -98 -64 -180.5t-175 -140t-252 -84.5q231 -26 387.5 -98.5t233.5 -178.5t77 -235q0 -128 -70.5 -219.5t-187 -138t-252.5 -46.5q-315 0 -315 234q0 89 46 143.5 t126 54.5q74 0 119 -46.5t45 -120.5q0 -75 -45.5 -131.5t-108.5 -84.5q24 -12 59 -12q102 0 149.5 95t47.5 247q0 174 -55.5 278.5t-126 150.5t-164.5 81q-46 -22 -70 -22q-17 0 -29 8.5t-12 23.5q0 17 12 27t33 10q33 0 66 -14q69 45 107.5 96.5t54.5 116.5t16 156 q0 309 -170 309q-77 0 -112 -46t-44.5 -140.5t-9.5 -292.5v-1115q-129 26 -284 29q-16 1 -44 1q-51 0 -155 -7z" />
-<glyph unicode="&#xe0;" horiz-adv-x="1087" d="M45 221q0 105 63 175t197 114q109 39 161.5 61.5t88 54t35.5 74.5v183q0 65 -32.5 116.5t-119.5 51.5q-26 0 -55.5 -10t-52.5 -25q137 -51 137 -185q0 -48 -24.5 -87t-69.5 -62t-103 -23q-50 0 -88 23.5t-59 64.5t-21 91q0 62 34.5 109.5t92.5 78.5q129 66 328 66 q117 0 198 -22.5t136 -80.5q40 -42 53.5 -106.5t13.5 -180.5v-548q0 -49 7 -68.5t24 -19.5q16 0 29.5 7.5t34.5 22.5l20 -35q-48 -40 -112 -57.5t-154 -17.5q-108 0 -158.5 43.5t-52.5 111.5q-43 -71 -121 -113t-172 -42q-121 0 -189.5 64t-68.5 171zM249 1586q0 58 42 93 q37 34 88 34q32 0 63 -14t50 -36q25 -28 38.5 -60.5t45.5 -137.5t90 -220l-23 -18q-64 54 -115.5 90t-131.5 85.5t-113 90.5q-34 40 -34 93zM410 295q0 -145 104 -145q43 0 76 34v432q-15 -25 -80 -90q-100 -97 -100 -231z" />
-<glyph unicode="&#xe1;" horiz-adv-x="1087" d="M45 221q0 105 63 175t197 114q109 39 161.5 61.5t88 54t35.5 74.5v183q0 65 -32.5 116.5t-119.5 51.5q-26 0 -55.5 -10t-52.5 -25q137 -51 137 -185q0 -48 -24.5 -87t-69.5 -62t-103 -23q-50 0 -88 23.5t-59 64.5t-21 91q0 62 34.5 109.5t92.5 78.5q129 66 328 66 q117 0 198 -22.5t136 -80.5q40 -42 53.5 -106.5t13.5 -180.5v-548q0 -49 7 -68.5t24 -19.5q16 0 29.5 7.5t34.5 22.5l20 -35q-48 -40 -112 -57.5t-154 -17.5q-108 0 -158.5 43.5t-52.5 111.5q-43 -71 -121 -113t-172 -42q-121 0 -189.5 64t-68.5 171zM404 1245 q58 115 86.5 210.5t42.5 134t45 73.5q19 23 49 36t62 13q51 0 90 -33q42 -33 42 -92q0 -54 -34 -94q-34 -41 -98.5 -81t-123.5 -79t-139 -106zM410 295q0 -145 104 -145q43 0 76 34v432q-15 -25 -80 -90q-100 -97 -100 -231z" />
-<glyph unicode="&#xe2;" horiz-adv-x="1087" d="M45 221q0 105 63 175t197 114q109 39 161.5 61.5t88 54t35.5 74.5v183q0 65 -32.5 116.5t-119.5 51.5q-26 0 -55.5 -10t-52.5 -25q137 -51 137 -185q0 -48 -24.5 -87t-69.5 -62t-103 -23q-50 0 -88 23.5t-59 64.5t-21 91q0 62 34.5 109.5t92.5 78.5q129 66 328 66 q117 0 198 -22.5t136 -80.5q40 -42 53.5 -106.5t13.5 -180.5v-548q0 -49 7 -68.5t24 -19.5q16 0 29.5 7.5t34.5 22.5l20 -35q-48 -40 -112 -57.5t-154 -17.5q-108 0 -158.5 43.5t-52.5 111.5q-43 -71 -121 -113t-172 -42q-121 0 -189.5 64t-68.5 171zM149 1270 q112 73 213 189.5t170 244.5h37q65 -125 167 -242t216 -192l-16 -29q-122 22 -238.5 55.5t-187.5 67.5q-59 -34 -153 -67.5t-191 -55.5zM410 295q0 -145 104 -145q43 0 76 34v432q-15 -25 -80 -90q-100 -97 -100 -231z" />
-<glyph unicode="&#xe3;" horiz-adv-x="1087" d="M45 221q0 105 63 175t197 114q109 39 161.5 61.5t88 54t35.5 74.5v183q0 65 -32.5 116.5t-119.5 51.5q-26 0 -55.5 -10t-52.5 -25q137 -51 137 -185q0 -48 -24.5 -87t-69.5 -62t-103 -23q-50 0 -88 23.5t-59 64.5t-21 91q0 62 34.5 109.5t92.5 78.5q129 66 328 66 q117 0 198 -22.5t136 -80.5q40 -42 53.5 -106.5t13.5 -180.5v-548q0 -49 7 -68.5t24 -19.5q16 0 29.5 7.5t34.5 22.5l20 -35q-48 -40 -112 -57.5t-154 -17.5q-108 0 -158.5 43.5t-52.5 111.5q-43 -71 -121 -113t-172 -42q-121 0 -189.5 64t-68.5 171zM112 1300 q34 170 104 252t160 82q63 0 107.5 -18.5t120.5 -67.5t143 -49q92 0 158 109l28 -15q-34 -169 -103.5 -251t-158.5 -82q-63 0 -108 19t-121 68.5t-143 49.5q-91 0 -158 -111zM410 295q0 -145 104 -145q43 0 76 34v432q-15 -25 -80 -90q-100 -97 -100 -231z" />
-<glyph unicode="&#xe4;" horiz-adv-x="1087" d="M45 221q0 105 63 175t197 114q109 39 161.5 61.5t88 54t35.5 74.5v183q0 65 -32.5 116.5t-119.5 51.5q-26 0 -55.5 -10t-52.5 -25q137 -51 137 -185q0 -48 -24.5 -87t-69.5 -62t-103 -23q-50 0 -88 23.5t-59 64.5t-21 91q0 62 34.5 109.5t92.5 78.5q129 66 328 66 q117 0 198 -22.5t136 -80.5q40 -42 53.5 -106.5t13.5 -180.5v-548q0 -49 7 -68.5t24 -19.5q16 0 29.5 7.5t34.5 22.5l20 -35q-48 -40 -112 -57.5t-154 -17.5q-108 0 -158.5 43.5t-52.5 111.5q-43 -71 -121 -113t-172 -42q-121 0 -189.5 64t-68.5 171zM131 1403q0 46 24 87.5 t65.5 66t89.5 24.5q46 0 87 -25t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24q-49 0 -90 24t-65 65t-24 89zM410 295q0 -145 104 -145q43 0 76 34v432q-15 -25 -80 -90q-100 -97 -100 -231zM619 1403q0 46 24 87.5t65 66t89 24.5q46 0 87 -25t66 -66t25 -87 q0 -48 -24.5 -89t-66 -65t-87.5 -24q-48 0 -89 24t-65 65t-24 89z" />
-<glyph unicode="&#xe5;" horiz-adv-x="1087" d="M45 221q0 105 63 175t197 114q109 39 161.5 61.5t88 54t35.5 74.5v183q0 65 -32.5 116.5t-119.5 51.5q-26 0 -55.5 -10t-52.5 -25q137 -51 137 -185q0 -48 -24.5 -87t-69.5 -62t-103 -23q-50 0 -88 23.5t-59 64.5t-21 91q0 62 34.5 109.5t92.5 78.5q129 66 328 66 q117 0 198 -22.5t136 -80.5q40 -42 53.5 -106.5t13.5 -180.5v-548q0 -49 7 -68.5t24 -19.5q16 0 29.5 7.5t34.5 22.5l20 -35q-48 -40 -112 -57.5t-154 -17.5q-108 0 -158.5 43.5t-52.5 111.5q-43 -71 -121 -113t-172 -42q-121 0 -189.5 64t-68.5 171zM314 1434 q0 61 32.5 108t87 72.5t117.5 25.5q64 0 119 -25.5t88 -72.5t33 -108q0 -62 -33 -110t-88 -73.5t-119 -25.5q-63 0 -117.5 25.5t-87 73.5t-32.5 110zM371 1432q0 -53 26 -90t67.5 -55.5t86.5 -18.5q46 0 88 18.5t68.5 55.5t26.5 90q0 51 -26.5 88.5t-69 57t-87.5 19.5 q-44 0 -85.5 -19.5t-68 -57t-26.5 -88.5zM410 295q0 -145 104 -145q43 0 76 34v432q-15 -25 -80 -90q-100 -97 -100 -231z" />
-<glyph unicode="&#xe6;" horiz-adv-x="1497" d="M51 221q0 104 62.5 173.5t197.5 115.5q95 35 146.5 59t84.5 56t33 75v183q0 66 -32 117t-119 51q-55 0 -109 -35q138 -52 138 -185q0 -48 -24.5 -87t-69.5 -62t-103 -23q-50 0 -88 23.5t-59 64.5t-21 91q0 62 34 109.5t93 78.5q126 66 279 66q99 0 162 -21.5t114 -74.5 q126 96 307 96q178 0 272.5 -110t94.5 -349h-489q-1 -24 -1 -74q0 -197 62.5 -280.5t152.5 -83.5q138 0 228 137l35 -13q-27 -91 -80 -169.5t-136 -128.5t-192 -50q-125 0 -222.5 50t-156.5 156q-59 -94 -138 -142.5t-198 -48.5q-121 0 -189.5 64t-68.5 171zM416 309 q0 -127 104 -127q65 0 107 33q-56 127 -56 315q0 43 4 84v2q-18 -43 -59 -90q-48 -56 -74 -105t-26 -112zM948 672h197q2 163 -18.5 267.5t-63.5 104.5q-49 0 -78 -87.5t-37 -284.5z" />
-<glyph unicode="&#xe7;" horiz-adv-x="1030" d="M61 530q0 190 68 316t186.5 186t272.5 60q84 0 154.5 -17.5t115.5 -44.5q57 -33 90 -88.5t33 -124.5q0 -56 -25.5 -101.5t-70.5 -71.5t-101 -26q-88 0 -138 51t-50 134q0 74 48.5 129.5t119.5 75.5q-33 24 -82 24q-132 0 -185 -140.5t-53 -332.5q0 -197 74.5 -280.5 t181.5 -83.5q149 0 248 137l35 -13q-28 -90 -83.5 -169t-142.5 -129t-202 -50q-224 0 -359 133.5t-135 425.5zM302 -358l13 36q45 -10 98 -10q50 0 88.5 20t38.5 58q0 51 -57 51q-43 0 -68 -14l62 217h55l-35 -123q72 31 162 31q74 0 112.5 -33t38.5 -86q0 -86 -88.5 -130 t-234.5 -44q-114 0 -185 27z" />
-<glyph unicode="&#xe8;" horiz-adv-x="1030" d="M63 530q0 190 68 316t186.5 186t272.5 60q387 0 387 -459h-529q-2 -24 -2 -74q0 -197 68.5 -280.5t167.5 -83.5q149 0 248 137l35 -13q-29 -91 -84 -169.5t-142 -128.5t-202 -50q-215 0 -344.5 133.5t-129.5 425.5zM269 1586q0 58 42 93q37 34 88 34q32 0 63 -14t50 -36 q25 -28 38.5 -60.5t45.5 -137.5t90 -220l-23 -18q-64 54 -115.5 90t-131.5 85.5t-113 90.5q-34 40 -34 93zM441 672h237q2 163 -23.5 267.5t-79.5 104.5q-56 0 -90 -88t-44 -284z" />
-<glyph unicode="&#xe9;" horiz-adv-x="1030" d="M63 530q0 190 68 316t186.5 186t272.5 60q387 0 387 -459h-529q-2 -24 -2 -74q0 -197 68.5 -280.5t167.5 -83.5q149 0 248 137l35 -13q-29 -91 -84 -169.5t-142 -128.5t-202 -50q-215 0 -344.5 133.5t-129.5 425.5zM424 1245q58 115 86.5 210.5t42.5 134t45 73.5 q19 23 49 36t62 13q51 0 90 -33q42 -33 42 -92q0 -54 -34 -94q-34 -41 -98.5 -81t-123.5 -79t-139 -106zM441 672h237q2 163 -23.5 267.5t-79.5 104.5q-56 0 -90 -88t-44 -284z" />
-<glyph unicode="&#xea;" horiz-adv-x="1030" d="M63 530q0 190 68 316t186.5 186t272.5 60q387 0 387 -459h-529q-2 -24 -2 -74q0 -197 68.5 -280.5t167.5 -83.5q149 0 248 137l35 -13q-29 -91 -84 -169.5t-142 -128.5t-202 -50q-215 0 -344.5 133.5t-129.5 425.5zM169 1270q112 73 213 189.5t170 244.5h37 q65 -125 167 -242t216 -192l-16 -29q-122 22 -238.5 55.5t-187.5 67.5q-59 -34 -153 -67.5t-191 -55.5zM441 672h237q2 163 -23.5 267.5t-79.5 104.5q-56 0 -90 -88t-44 -284z" />
-<glyph unicode="&#xeb;" horiz-adv-x="1030" d="M63 530q0 190 68 316t186.5 186t272.5 60q387 0 387 -459h-529q-2 -24 -2 -74q0 -197 68.5 -280.5t167.5 -83.5q149 0 248 137l35 -13q-29 -91 -84 -169.5t-142 -128.5t-202 -50q-215 0 -344.5 133.5t-129.5 425.5zM151 1403q0 46 24 87.5t65.5 66t89.5 24.5q46 0 87 -25 t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24q-49 0 -90 24t-65 65t-24 89zM441 672h237q2 163 -23.5 267.5t-79.5 104.5q-56 0 -90 -88t-44 -284zM639 1403q0 46 24 87.5t65 66t89 24.5q46 0 87 -25t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24q-48 0 -89 24 t-65 65t-24 89z" />
-<glyph unicode="&#xec;" horiz-adv-x="676" d="M42 1586q0 58 42 93q37 34 88 34q32 0 63 -14t50 -36q25 -28 38.5 -60.5t45.5 -137.5t90 -220l-23 -18q-64 54 -115.5 90t-131.5 85.5t-113 90.5q-34 40 -34 93zM43 0v43q43 0 68 13t36 45t11 89v650q0 95 -26 137.5t-89 42.5v43q65 -6 127 -6q213 0 356 28v-895 q0 -57 11 -89t36 -45t68 -13v-43q-220 8 -291 8t-307 -8z" />
-<glyph unicode="&#xed;" horiz-adv-x="676" d="M43 0v43q43 0 68 13t36 45t11 89v650q0 95 -26 137.5t-89 42.5v43q65 -6 127 -6q213 0 356 28v-895q0 -57 11 -89t36 -45t68 -13v-43q-220 8 -291 8t-307 -8zM197 1245q58 115 86.5 210.5t42.5 134t45 73.5q19 23 49 36t62 13q51 0 90 -33q42 -33 42 -92q0 -54 -34 -94 q-34 -41 -98.5 -81t-123.5 -79t-139 -106z" />
-<glyph unicode="&#xee;" horiz-adv-x="676" d="M-58 1270q112 73 213 189.5t170 244.5h37q65 -125 167 -242t216 -192l-16 -29q-122 22 -238.5 55.5t-187.5 67.5q-59 -34 -153 -67.5t-191 -55.5zM43 0v43q43 0 68 13t36 45t11 89v650q0 95 -26 137.5t-89 42.5v43q65 -6 127 -6q213 0 356 28v-895q0 -57 11 -89t36 -45 t68 -13v-43q-220 8 -291 8t-307 -8z" />
-<glyph unicode="&#xef;" horiz-adv-x="676" d="M-76 1403q0 46 24 87.5t65.5 66t89.5 24.5q46 0 87 -25t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24q-49 0 -90 24t-65 65t-24 89zM43 0v43q43 0 68 13t36 45t11 89v650q0 95 -26 137.5t-89 42.5v43q65 -6 127 -6q213 0 356 28v-895q0 -57 11 -89t36 -45t68 -13 v-43q-220 8 -291 8t-307 -8zM412 1403q0 46 24 87.5t65 66t89 24.5q46 0 87 -25t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24q-48 0 -89 24t-65 65t-24 89z" />
-<glyph unicode="&#xf0;" horiz-adv-x="1178" d="M66 509q0 210 64.5 340t171.5 186.5t241 56.5q82 0 144 -27q-44 163 -137 280l-304 -149l-19 37l296 144q-102 113 -261 190l17 35q200 -62 363 -167l296 144l18 -37l-275 -133q202 -141 316.5 -339t114.5 -443q0 -333 -137 -496.5t-383 -163.5q-251 0 -388.5 126.5 t-137.5 415.5zM449 532q0 -263 39 -393.5t104 -130.5q143 0 143 602q0 256 -39 420q-30 10 -59 10q-96 0 -142 -124t-46 -384z" />
-<glyph unicode="&#xf1;" horiz-adv-x="1280" d="M43 0v43q43 0 68 13t36 45t11 89v650q0 95 -26 137.5t-89 42.5v43q65 -6 127 -6q213 0 356 28v-147q93 154 326 154q163 0 231 -82q31 -37 45.5 -99.5t14.5 -165.5v-555q0 -57 11 -89t35.5 -45t67.5 -13v-43q-220 8 -286 8q-71 0 -291 -8v43q36 0 56 13t29 44.5t9 89.5 v666q0 66 -24 97.5t-76 31.5q-38 0 -72 -19t-55 -52.5t-21 -75.5v-648q0 -57 9 -89t29.5 -45t56.5 -13v-43q-208 8 -271 8q-71 0 -307 -8zM212 1300q34 170 104 252t160 82q63 0 107.5 -18.5t120.5 -67.5t143 -49q92 0 158 109l28 -15q-34 -169 -103.5 -251t-158.5 -82 q-63 0 -108 19t-121 68.5t-143 49.5q-91 0 -158 -111z" />
-<glyph unicode="&#xf2;" horiz-adv-x="1180" d="M63 530q0 297 137.5 429.5t389.5 132.5t389 -132.5t137 -429.5q0 -296 -137 -427.5t-389 -131.5q-253 0 -390 131.5t-137 427.5zM288 1586q0 58 42 93q37 34 88 34q32 0 63 -14t50 -36q25 -28 38.5 -60.5t45.5 -137.5t90 -220l-23 -18q-64 54 -115.5 90t-131.5 85.5 t-113 90.5q-34 40 -34 93zM446 530q0 -262 39.5 -390t104.5 -128t104 128t39 390q0 263 -39 392t-104 129t-104.5 -129t-39.5 -392z" />
-<glyph unicode="&#xf3;" horiz-adv-x="1180" d="M63 530q0 297 137.5 429.5t389.5 132.5t389 -132.5t137 -429.5q0 -296 -137 -427.5t-389 -131.5q-253 0 -390 131.5t-137 427.5zM443 1245q58 115 86.5 210.5t42.5 134t45 73.5q19 23 49 36t62 13q51 0 90 -33q42 -33 42 -92q0 -54 -34 -94q-34 -41 -98.5 -81t-123.5 -79 t-139 -106zM446 530q0 -262 39.5 -390t104.5 -128t104 128t39 390q0 263 -39 392t-104 129t-104.5 -129t-39.5 -392z" />
-<glyph unicode="&#xf4;" horiz-adv-x="1180" d="M63 530q0 297 137.5 429.5t389.5 132.5t389 -132.5t137 -429.5q0 -296 -137 -427.5t-389 -131.5q-253 0 -390 131.5t-137 427.5zM188 1270q112 73 213 189.5t170 244.5h37q65 -125 167 -242t216 -192l-16 -29q-122 22 -238.5 55.5t-187.5 67.5q-59 -34 -153 -67.5 t-191 -55.5zM446 530q0 -262 39.5 -390t104.5 -128t104 128t39 390q0 263 -39 392t-104 129t-104.5 -129t-39.5 -392z" />
-<glyph unicode="&#xf5;" horiz-adv-x="1180" d="M63 530q0 297 137.5 429.5t389.5 132.5t389 -132.5t137 -429.5q0 -296 -137 -427.5t-389 -131.5q-253 0 -390 131.5t-137 427.5zM151 1300q34 170 104 252t160 82q63 0 107.5 -18.5t120.5 -67.5t143 -49q92 0 158 109l28 -15q-34 -169 -103.5 -251t-158.5 -82 q-63 0 -108 19t-121 68.5t-143 49.5q-91 0 -158 -111zM446 530q0 -262 39.5 -390t104.5 -128t104 128t39 390q0 263 -39 392t-104 129t-104.5 -129t-39.5 -392z" />
-<glyph unicode="&#xf6;" horiz-adv-x="1180" d="M63 530q0 297 137.5 429.5t389.5 132.5t389 -132.5t137 -429.5q0 -296 -137 -427.5t-389 -131.5q-253 0 -390 131.5t-137 427.5zM170 1403q0 46 24 87.5t65.5 66t89.5 24.5q46 0 87 -25t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24q-49 0 -90 24t-65 65t-24 89z M446 530q0 -262 39.5 -390t104.5 -128t104 128t39 390q0 263 -39 392t-104 129t-104.5 -129t-39.5 -392zM658 1403q0 46 24 87.5t65 66t89 24.5q46 0 87 -25t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24q-48 0 -89 24t-65 65t-24 89z" />
-<glyph unicode="&#xf7;" horiz-adv-x="1276" d="M131 696v62h1026v-62h-1026zM528 432q0 46 33.5 79.5t79.5 33.5q48 0 81.5 -33t33.5 -80t-33.5 -81t-81.5 -34q-46 0 -79.5 34t-33.5 81zM528 1022q0 46 33.5 79.5t79.5 33.5q48 0 81.5 -33.5t33.5 -79.5q0 -48 -33.5 -80.5t-81.5 -32.5q-46 0 -79.5 33t-33.5 80z" />
-<glyph unicode="&#xf8;" horiz-adv-x="1180" d="M63 530q0 297 137.5 429.5t389.5 132.5q187 0 306 -69l132 189l39 -26l-131 -190q180 -135 180 -466q0 -296 -137 -427.5t-389 -131.5q-183 0 -301 65l-129 -186l-39 27l127 185q-185 133 -185 468zM446 530q0 -111 8 -200l264 472q-17 126 -50 187.5t-78 61.5 q-65 0 -104.5 -129t-39.5 -392zM463 247q17 -119 50 -177t77 -58q65 0 104 128t39 390q0 105 -7 190z" />
-<glyph unicode="&#xf9;" horiz-adv-x="1274" d="M23 1020v43q64 -6 127 -6q212 0 356 28v-878q0 -66 24 -97.5t76 -31.5q38 0 72 19t55 52.5t21 75.5v615q0 95 -26 137.5t-89 42.5v43q64 -6 127 -6q213 0 356 28v-862q0 -95 26 -137.5t89 -42.5v-43q-64 6 -127 6q-215 0 -356 -29v148q-93 -154 -326 -154q-163 0 -231 82 q-31 37 -45.5 99t-14.5 165v523q0 95 -25.5 137.5t-88.5 42.5zM302 1586q0 58 42 93q37 34 88 34q32 0 63 -14t50 -36q25 -28 38.5 -60.5t45.5 -137.5t90 -220l-23 -18q-64 54 -115.5 90t-131.5 85.5t-113 90.5q-34 40 -34 93z" />
-<glyph unicode="&#xfa;" horiz-adv-x="1274" d="M23 1020v43q64 -6 127 -6q212 0 356 28v-878q0 -66 24 -97.5t76 -31.5q38 0 72 19t55 52.5t21 75.5v615q0 95 -26 137.5t-89 42.5v43q64 -6 127 -6q213 0 356 28v-862q0 -95 26 -137.5t89 -42.5v-43q-64 6 -127 6q-215 0 -356 -29v148q-93 -154 -326 -154q-163 0 -231 82 q-31 37 -45.5 99t-14.5 165v523q0 95 -25.5 137.5t-88.5 42.5zM457 1245q58 115 86.5 210.5t42.5 134t45 73.5q19 23 49 36t62 13q51 0 90 -33q42 -33 42 -92q0 -54 -34 -94q-34 -41 -98.5 -81t-123.5 -79t-139 -106z" />
-<glyph unicode="&#xfb;" horiz-adv-x="1274" d="M23 1020v43q64 -6 127 -6q212 0 356 28v-878q0 -66 24 -97.5t76 -31.5q38 0 72 19t55 52.5t21 75.5v615q0 95 -26 137.5t-89 42.5v43q64 -6 127 -6q213 0 356 28v-862q0 -95 26 -137.5t89 -42.5v-43q-64 6 -127 6q-215 0 -356 -29v148q-93 -154 -326 -154q-163 0 -231 82 q-31 37 -45.5 99t-14.5 165v523q0 95 -25.5 137.5t-88.5 42.5zM202 1270q112 73 213 189.5t170 244.5h37q65 -125 167 -242t216 -192l-16 -29q-122 22 -238.5 55.5t-187.5 67.5q-59 -34 -153 -67.5t-191 -55.5z" />
-<glyph unicode="&#xfc;" horiz-adv-x="1274" d="M23 1020v43q64 -6 127 -6q212 0 356 28v-878q0 -66 24 -97.5t76 -31.5q38 0 72 19t55 52.5t21 75.5v615q0 95 -26 137.5t-89 42.5v43q64 -6 127 -6q213 0 356 28v-862q0 -95 26 -137.5t89 -42.5v-43q-64 6 -127 6q-215 0 -356 -29v148q-93 -154 -326 -154q-163 0 -231 82 q-31 37 -45.5 99t-14.5 165v523q0 95 -25.5 137.5t-88.5 42.5zM184 1403q0 46 24 87.5t65.5 66t89.5 24.5q46 0 87 -25t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24q-49 0 -90 24t-65 65t-24 89zM672 1403q0 46 24 87.5t65 66t89 24.5q46 0 87 -25t66 -66t25 -87 q0 -48 -24.5 -89t-66 -65t-87.5 -24q-48 0 -89 24t-65 65t-24 89z" />
-<glyph unicode="&#xfd;" horiz-adv-x="1083" d="M-41 1020v43q163 -12 334 -12q133 0 297 12v-43q-61 0 -92 -8t-31 -38q0 -15 8 -32l253 -600l85 262q39 116 39 210q0 96 -41.5 148.5t-108.5 57.5v43q77 -8 216 -8q116 0 157 8v-43q-42 -16 -77.5 -61t-67.5 -138l-256 -762l-86 -247q-38 -107 -90 -148 q-63 -49 -191 -49q-63 0 -127 19.5t-107.5 62.5t-43.5 110q0 72 54.5 115t145.5 43q87 0 136 -38.5t49 -112.5q0 -49 -34 -93t-99 -65q20 -4 69 -4q141 0 195 164l11 33l-478 1056q-31 70 -60.5 92.5t-58.5 22.5zM385 1245q58 115 86.5 210.5t42.5 134t45 73.5q19 23 49 36 t62 13q51 0 90 -33q42 -33 42 -92q0 -54 -34 -94q-34 -41 -98.5 -81t-123.5 -79t-139 -106z" />
-<glyph unicode="&#xfe;" horiz-adv-x="1231" d="M14 -328q43 0 68 13t36 45t11 90v1536q0 95 -26 137.5t-89 42.5v43q64 -6 127 -6q215 0 357 29v-664q93 154 311 154q104 0 184 -57t126 -172.5t46 -284.5q0 -325 -131.5 -466t-345.5 -141q-121 0 -190 39v-170q0 -95 43.5 -131.5t132.5 -36.5v-43q-33 1 -148.5 5 t-228.5 4q-83 0 -171 -4t-112 -5v43zM498 50q28 -17 71 -17q112 0 162.5 122t50.5 375t-36.5 354t-100.5 101q-38 0 -72 -19t-54.5 -52.5t-20.5 -75.5v-788z" />
-<glyph unicode="&#xff;" horiz-adv-x="1083" d="M-41 1020v43q163 -12 334 -12q133 0 297 12v-43q-61 0 -92 -8t-31 -38q0 -15 8 -32l253 -600l85 262q39 116 39 210q0 96 -41.5 148.5t-108.5 57.5v43q77 -8 216 -8q116 0 157 8v-43q-42 -16 -77.5 -61t-67.5 -138l-256 -762l-86 -247q-38 -107 -90 -148 q-63 -49 -191 -49q-63 0 -127 19.5t-107.5 62.5t-43.5 110q0 72 54.5 115t145.5 43q87 0 136 -38.5t49 -112.5q0 -49 -34 -93t-99 -65q20 -4 69 -4q141 0 195 164l11 33l-478 1056q-31 70 -60.5 92.5t-58.5 22.5zM112 1403q0 46 24 87.5t65.5 66t89.5 24.5q46 0 87 -25 t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24q-49 0 -90 24t-65 65t-24 89zM600 1403q0 46 24 87.5t65 66t89 24.5q46 0 87 -25t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24q-48 0 -89 24t-65 65t-24 89z" />
-<glyph unicode="&#x152;" horiz-adv-x="2130" d="M74 713q0 226 96 400t267 270t390 96q87 0 179 -33q164 -1 311.5 -1.5t255.5 -0.5q301 0 428 6q-14 -169 -14 -303q0 -95 6 -148h-47q-30 215 -109.5 309.5t-185.5 94.5h-27q-64 0 -93.5 -12t-40.5 -46.5t-11 -111.5v-483h82q65 0 104 40t56.5 88t35.5 121h47 q-7 -94 -7 -179l1 -91q0 -96 12 -270h-47q-13 73 -33.5 126.5t-61.5 88.5t-107 35h-82v-492q0 -77 11 -111.5t40.5 -46.5t93.5 -12h68q57 0 118.5 44t110.5 143.5t66 257.5h47q-6 -75 -6 -189q0 -184 14 -303q-139 6 -469 6q-108 0 -256 -0.5t-311 -1.5q-95 -33 -181 -33 q-225 0 -394.5 88t-263 255.5t-93.5 398.5zM504 721q0 -213 44 -375t119 -250t167 -88q51 0 104 18.5t89 56t36 93.5v1077q0 73 -40 115t-95.5 58t-108.5 16q-95 0 -166 -91.5t-110 -255t-39 -374.5z" />
-<glyph unicode="&#x153;" horiz-adv-x="1638" d="M63 530q0 297 132 429.5t374 132.5q216 0 321 -143q113 143 308 143q187 0 287 -110t100 -349h-488q-1 -24 -1 -74q0 -197 68.5 -280.5t166.5 -83.5q126 0 207 137l35 -13q-26 -90 -76 -169t-129 -129t-182 -50q-194 0 -300 135q-105 -135 -317 -135q-242 0 -374 131.5 t-132 427.5zM446 530q0 -261 34 -389.5t89 -128.5q65 0 104.5 127.5t39.5 386.5q0 266 -39.5 395.5t-104.5 129.5q-55 0 -89 -129.5t-34 -391.5zM1090 672h196q2 163 -23 267.5t-79 104.5q-82 0 -94 -372z" />
-<glyph unicode="&#x178;" horiz-adv-x="1319" d="M-18 1409v43q126 -12 282 -12q177 0 451 12v-43q-83 0 -124 -8t-41 -39q0 -13 9 -31l292 -562l93 185q97 194 97 305q0 145 -164 152v41q153 -6 268 -6q96 0 158 6v-41q-106 -52 -218 -272l-190 -377v-545q0 -77 11 -112t40 -48t94 -16v-41q-118 6 -352 6q-243 0 -354 -6 v41q66 3 95 16t39.5 47.5t10.5 112.5v377l-379 700q-33 60 -63.5 87.5t-54.5 27.5zM271 1739q0 46 24 87.5t65 66t89 24.5q46 0 87 -25t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24q-48 0 -89 24t-65 64.5t-24 89.5zM799 1739q0 46 24 87.5t65 66t89 24.5q46 0 87 -25 t66 -66t25 -87q0 -48 -24.5 -89t-66 -65t-87.5 -24q-48 0 -89 24t-65 64.5t-24 89.5z" />
-<glyph unicode="&#x2c6;" horiz-adv-x="823" d="M10 1270q112 73 213 189.5t170 244.5h37q65 -125 167 -242t216 -192l-16 -29q-122 22 -238.5 55.5t-187.5 67.5q-59 -34 -153 -67.5t-191 -55.5z" />
-<glyph unicode="&#x2dc;" horiz-adv-x="842" d="M10 1300q34 170 104 252t160 82q63 0 107.5 -18.5t120.5 -67.5t143 -49q92 0 158 109l28 -15q-34 -169 -103.5 -251t-158.5 -82q-63 0 -108 19t-121 68.5t-143 49.5q-91 0 -158 -111z" />
-<glyph unicode="&#x2000;" horiz-adv-x="979" />
-<glyph unicode="&#x2001;" horiz-adv-x="1958" />
-<glyph unicode="&#x2002;" horiz-adv-x="979" />
-<glyph unicode="&#x2003;" horiz-adv-x="1958" />
-<glyph unicode="&#x2004;" horiz-adv-x="652" />
-<glyph unicode="&#x2005;" horiz-adv-x="489" />
-<glyph unicode="&#x2006;" horiz-adv-x="326" />
-<glyph unicode="&#x2007;" horiz-adv-x="326" />
-<glyph unicode="&#x2008;" horiz-adv-x="244" />
-<glyph unicode="&#x2009;" horiz-adv-x="391" />
-<glyph unicode="&#x200a;" horiz-adv-x="108" />
-<glyph unicode="&#x2010;" horiz-adv-x="961" d="M111 455v202h739v-202h-739z" />
-<glyph unicode="&#x2011;" horiz-adv-x="961" d="M111 455v202h739v-202h-739z" />
-<glyph unicode="&#x2012;" horiz-adv-x="961" d="M111 455v202h739v-202h-739z" />
-<glyph unicode="&#x2013;" horiz-adv-x="1276" d="M111 414v284h1054v-284h-1054z" />
-<glyph unicode="&#x2014;" horiz-adv-x="1878" d="M111 414v284h1656v-284h-1656z" />
-<glyph unicode="&#x2018;" horiz-adv-x="543" d="M76 1161q0 107 55 197t162 139l18 -37q-54 -25 -96 -71t-58 -97q-11 -36 -11 -68q0 -20 5 -45q55 64 150 64q82 0 131 -46.5t49 -129.5q0 -80 -53 -128.5t-139 -48.5q-54 0 -96 19.5t-66 56.5q-23 30 -37 82t-14 113z" />
-<glyph unicode="&#x2019;" horiz-adv-x="528" d="M53 1302q0 80 53 128.5t139 48.5q54 0 96 -19.5t66 -56.5q23 -30 37 -82t14 -113q0 -107 -55 -197t-162 -139l-18 37q54 25 96 71t58 97q11 36 11 68q0 20 -5 45q-55 -64 -150 -64q-82 0 -131 46.5t-49 129.5z" />
-<glyph unicode="&#x201a;" horiz-adv-x="569" d="M84 147q0 80 53 128.5t139 48.5q54 0 96 -19.5t66 -56.5q23 -30 37 -82t14 -113q0 -107 -55 -197t-162 -139l-18 37q54 25 96 71t58 97q11 36 11 68q0 20 -5 45q-55 -64 -150 -64q-82 0 -131 46.5t-49 129.5z" />
-<glyph unicode="&#x201c;" horiz-adv-x="1014" d="M75 1159q0 107 55.5 197t162.5 139l18 -37q-54 -25 -96 -71t-58 -97q-11 -36 -11 -68q0 -20 5 -45q55 64 150 64q82 0 131 -46.5t49 -129.5q0 -80 -53 -128.5t-140 -48.5q-53 0 -95 19.5t-66 56.5q-23 31 -37.5 82.5t-14.5 112.5zM547 1159q0 107 55 197t162 139l18 -37 q-54 -25 -96 -71t-58 -97q-11 -36 -11 -68q0 -20 5 -45q55 64 150 64q82 0 131 -46.5t49 -129.5q0 -80 -53 -128.5t-139 -48.5q-54 0 -96 19.5t-66 56.5q-23 30 -37 82t-14 113z" />
-<glyph unicode="&#x201d;" horiz-adv-x="999" d="M53 1302q0 80 53 128.5t139 48.5q54 0 96 -19.5t66 -56.5q23 -30 37 -82t14 -113q0 -107 -55 -197t-162 -139l-18 37q54 25 96 71t58 97q11 36 11 68q0 20 -5 45q-55 -64 -150 -64q-82 0 -131 46.5t-49 129.5zM524 1302q0 80 53 128.5t140 48.5q53 0 95 -19.5t66 -56.5 q23 -31 37.5 -82.5t14.5 -112.5q0 -107 -55.5 -197t-162.5 -139l-18 37q54 25 96 71t58 97q11 36 11 68q0 20 -5 45q-55 -64 -150 -64q-82 0 -131 46.5t-49 129.5z" />
-<glyph unicode="&#x201e;" horiz-adv-x="1040" d="M84 147q0 80 53 128.5t139 48.5q54 0 96 -19.5t66 -56.5q23 -30 37 -82t14 -113q0 -107 -55 -197t-162 -139l-18 37q54 25 96 71t58 97q11 36 11 68q0 20 -5 45q-55 -64 -150 -64q-82 0 -131 46.5t-49 129.5zM555 147q0 80 53 128.5t140 48.5q53 0 95 -19.5t66 -56.5 q23 -31 37.5 -82.5t14.5 -112.5q0 -107 -55.5 -197t-162.5 -139l-18 37q54 25 96 71t58 97q11 36 11 68q0 20 -5 45q-55 -64 -150 -64q-82 0 -131 46.5t-49 129.5z" />
-<glyph unicode="&#x2022;" horiz-adv-x="1055" d="M147 551q0 104 50.5 191.5t137.5 138.5t191 51t191.5 -51t138.5 -138.5t51 -191.5t-51 -191t-138.5 -137.5t-191.5 -50.5t-191 50.5t-137.5 137.5t-50.5 191z" />
-<glyph unicode="&#x2026;" horiz-adv-x="1724" d="M86 147q0 87 52 132t151 45q98 0 150.5 -45t52.5 -132q0 -86 -52.5 -131t-150.5 -45q-99 0 -151 44.5t-52 131.5zM661 147q0 87 52 132t151 45q98 0 150.5 -45t52.5 -132q0 -86 -52.5 -131t-150.5 -45q-99 0 -151 44.5t-52 131.5zM1235 147q0 87 52 132t151 45 q98 0 150.5 -45t52.5 -132q0 -86 -52.5 -131t-150.5 -45q-99 0 -151 44.5t-52 131.5z" />
-<glyph unicode="&#x202f;" horiz-adv-x="391" />
-<glyph unicode="&#x2039;" horiz-adv-x="788" d="M45 510v41q165 110 312.5 241.5t314.5 303.5l28 -9q-19 -85 -60.5 -195.5t-92 -209.5t-94.5 -152q44 -52 94.5 -150.5t92 -209t60.5 -195.5l-28 -8q-165 170 -313 301t-314 242z" />
-<glyph unicode="&#x203a;" horiz-adv-x="791" d="M90 -25q19 85 61 195.5t92.5 209t94.5 150.5q-44 53 -94.5 152t-92.5 209.5t-61 195.5l29 9q164 -170 312.5 -302t313.5 -243v-41q-166 -111 -315 -243.5t-311 -299.5z" />
-<glyph unicode="&#x205f;" horiz-adv-x="489" />
-<glyph unicode="&#x20ac;" horiz-adv-x="1384" d="M61 608v41h150q-2 31 -2 64q0 51 5 100h-153v41h158q26 187 117.5 328.5t229.5 219t302 77.5q109 0 184.5 -14t135.5 -48q104 -60 104 -151q0 -72 -54.5 -115t-145.5 -43q-87 0 -136 39t-49 113q0 47 35 94t94 69q-54 17 -133 17q-131 0 -208.5 -154t-93.5 -432h419 l-23 -41h-397q-2 -45 -2 -92l1 -72h306l-24 -41h-281q11 -297 83.5 -447.5t219.5 -150.5q79 0 133 17q-60 21 -94.5 68.5t-34.5 94.5q0 74 49 113t136 39q91 0 145.5 -43t54.5 -115q0 -49 -27.5 -89.5t-76.5 -61.5q-135 -62 -320 -62q-187 0 -328 75t-225 218t-102 344h-152 z" />
-<glyph unicode="&#x2122;" horiz-adv-x="2253" d="M123 1450q121 -6 414 -6q290 0 411 6q-14 -112 -14 -201q0 -67 6 -106h-47q-15 92 -43.5 150.5t-62 84t-66.5 25.5h-49v-612q0 -60 10.5 -86t39 -36t95.5 -14v-41q-129 7 -280 7q-176 0 -283 -7v41q67 4 95.5 14t39 36t10.5 86v612h-49q-33 0 -66.5 -25.5t-62 -84 t-43.5 -150.5h-47q6 36 6 106q0 89 -14 201zM1024 614v41q48 4 68.5 12t28 30t7.5 73v524q0 51 -7.5 73.5t-28 30.5t-68.5 11v41q83 -6 252 -6q72 0 139 6l182 -453l170 447h158q143 0 219 6v-41q-48 -3 -68.5 -11t-28 -30.5t-7.5 -73.5v-524q0 -51 7.5 -73t28 -30t68.5 -12 v-41q-110 7 -239 7q-135 0 -222 -7v41q38 4 54.5 12t23 30.5t6.5 72.5v545l-268 -711h-33l-290 715v-549q0 -50 6.5 -72.5t23 -30.5t54.5 -12v-41q-51 7 -107 7q-75 0 -129 -7z" />
-<glyph unicode="&#x25fc;" horiz-adv-x="1065" d="M0 0v1065h1065v-1065h-1065z" />
-<glyph unicode="&#xfb03;" horiz-adv-x="2087" d="M23 1020v41h143q0 106 41 199t117 157q132 123 389 123q102 0 176.5 -25.5t138.5 -73.5l21 19q81 72 205 107t272 35q117 0 193.5 -21.5t144.5 -62.5q38 -23 63 -64.5t25 -89.5q0 -174 -234 -174q-114 0 -173.5 44t-59.5 126q0 66 46.5 112t133.5 66q-17 9 -51.5 16 t-69.5 7q-109 0 -190 -72q-49 -45 -72 -99t-30 -127t-7 -202h187q190 0 296 5t207 19v-895q0 -57 13.5 -89t42.5 -45t80 -13v-43q-240 8 -310 8q-73 0 -309 -8v43q43 0 68 13t36 45t11 89v650q0 95 -30 137.5t-105 42.5h-187v-830q0 -83 38.5 -115t117.5 -32v-43 q-272 8 -330 8q-74 0 -330 -8v43q51 0 80 13t42.5 45t13.5 89v830h-322v-830q0 -57 11 -89t36 -45t68 -13v-43q-240 8 -308 8q-79 0 -331 -8v43q51 0 79.5 13t42 45t13.5 89v830h-143zM555 1061h322q0 210 122 349q-105 81 -249 81q-100 0 -147.5 -64.5t-47.5 -209.5v-156z " />
-<glyph unicode="&#xfb04;" horiz-adv-x="2095" d="M23 1020v41h143q0 106 41 199t117 157q132 123 389 123q172 0 297 -86q12 13 26 25q76 64 175 93.5t204 29.5q43 0 140 -5.5t155 -5.5q73 0 225 15v-1416q0 -57 13.5 -89t42.5 -45t80 -13v-43q-240 8 -310 8q-73 0 -309 -8v43q43 0 68 13t36 45t11 89v1231q0 75 -29 109 q-27 31 -76 31q-57 0 -92.5 -17t-66.5 -57q-25 -32 -37 -75t-16.5 -107.5t-4.5 -174.5v-69h187v-41h-187v-830q0 -83 38.5 -115t117.5 -32v-43q-272 8 -330 8q-74 0 -330 -8v43q51 0 80 13t42.5 45t13.5 89v830h-322v-830q0 -57 11 -89t36 -45t68 -13v-43q-240 8 -308 8 q-79 0 -331 -8v43q51 0 79.5 13t42 45t13.5 89v830h-143zM555 1061h322q0 231 105 362q-100 68 -232 68q-100 0 -147.5 -64.5t-47.5 -209.5v-156z" />
-<hkern u1="&#x20;" u2="&#xb2;" k="25" />
-<hkern u1="&#x20;" u2="x" k="20" />
-<hkern u1="&#x20;" u2="X" k="31" />
-<hkern u1="&#x20;" u2="V" k="84" />
-<hkern u1="&#x20;" u2="&#x34;" k="49" />
-<hkern u1="&#x20;" u2="&#x33;" k="27" />
-<hkern u1="&#x20;" u2="&#x32;" k="27" />
-<hkern u1="&#x22;" u2="&#xef;" k="-92" />
-<hkern u1="&#x23;" u2="&#x34;" k="61" />
-<hkern u1="&#x27;" u2="&#xef;" k="-92" />
-<hkern u1="&#x28;" u2="&#xef;" k="-39" />
-<hkern u1="&#x28;" u2="&#xcf;" k="-20" />
-<hkern u1="&#x28;" u2="&#x7b;" k="41" />
-<hkern u1="&#x28;" u2="&#x39;" k="49" />
-<hkern u1="&#x28;" u2="&#x38;" k="37" />
-<hkern u1="&#x28;" u2="&#x37;" k="43" />
-<hkern u1="&#x28;" u2="&#x36;" k="57" />
-<hkern u1="&#x28;" u2="&#x34;" k="33" />
-<hkern u1="&#x28;" u2="&#x32;" k="33" />
-<hkern u1="&#x28;" u2="&#x31;" k="27" />
-<hkern u1="&#x28;" u2="&#x30;" k="68" />
-<hkern u1="&#x28;" u2="&#x28;" k="45" />
-<hkern u1="&#x29;" u2="&#x7d;" k="29" />
-<hkern u1="&#x29;" u2="&#x29;" k="45" />
-<hkern u1="&#x2b;" u2="&#x38;" k="27" />
-<hkern u1="&#x2b;" u2="&#x34;" k="55" />
-<hkern u1="&#x2c;" u2="J" k="-252" />
-<hkern u1="&#x2f;" u2="&#x39;" k="49" />
-<hkern u1="&#x2f;" u2="&#x36;" k="45" />
-<hkern u1="&#x2f;" u2="&#x35;" k="61" />
-<hkern u1="&#x2f;" u2="&#x34;" k="162" />
-<hkern u1="&#x2f;" u2="&#x33;" k="49" />
-<hkern u1="&#x2f;" u2="&#x32;" k="41" />
-<hkern u1="&#x2f;" u2="&#x31;" k="20" />
-<hkern u1="&#x2f;" u2="&#x30;" k="66" />
-<hkern u1="&#x2f;" u2="&#x2f;" k="174" />
-<hkern u1="&#x30;" u2="&#xb0;" k="88" />
-<hkern u1="&#x30;" u2="&#x7d;" k="59" />
-<hkern u1="&#x30;" u2="\" k="61" />
-<hkern u1="&#x30;" u2="&#x34;" k="29" />
-<hkern u1="&#x30;" u2="&#x29;" k="70" />
-<hkern u1="&#x31;" u2="&#x7d;" k="20" />
-<hkern u1="&#x31;" u2="\" k="47" />
-<hkern u1="&#x31;" u2="&#x35;" k="23" />
-<hkern u1="&#x31;" u2="&#x29;" k="33" />
-<hkern u1="&#x32;" u2="&#xf7;" k="20" />
-<hkern u1="&#x32;" u2="&#xb0;" k="59" />
-<hkern u1="&#x32;" u2="&#x7d;" k="20" />
-<hkern u1="&#x32;" u2="\" k="63" />
-<hkern u1="&#x32;" u2="&#x29;" k="35" />
-<hkern u1="&#x32;" u2="&#x20;" k="35" />
-<hkern u1="&#x33;" u2="&#xf7;" k="25" />
-<hkern u1="&#x33;" u2="&#xb7;" k="20" />
-<hkern u1="&#x33;" u2="&#xb0;" k="66" />
-<hkern u1="&#x33;" u2="&#x7d;" k="23" />
-<hkern u1="&#x33;" u2="\" k="59" />
-<hkern u1="&#x33;" u2="&#x29;" k="45" />
-<hkern u1="&#x33;" u2="&#x20;" k="20" />
-<hkern u1="&#x34;" u2="&#xf7;" k="51" />
-<hkern u1="&#x34;" u2="&#xb0;" k="59" />
-<hkern u1="&#x34;" u2="\" k="78" />
-<hkern u1="&#x34;" u2="&#x37;" k="23" />
-<hkern u1="&#x34;" u2="&#x33;" k="35" />
-<hkern u1="&#x34;" u2="&#x29;" k="35" />
-<hkern u1="&#x34;" u2="&#x20;" k="37" />
-<hkern u1="&#x35;" u2="&#xf7;" k="29" />
-<hkern u1="&#x35;" u2="\" k="25" />
-<hkern u1="&#x35;" u2="&#x29;" k="37" />
-<hkern u1="&#x35;" u2="&#x20;" k="35" />
-<hkern u1="&#x36;" u2="&#x7d;" k="23" />
-<hkern u1="&#x36;" u2="&#x29;" k="31" />
-<hkern u1="&#x37;" u2="&#xb7;" k="23" />
-<hkern u1="&#x37;" u2="&#x34;" k="133" />
-<hkern u1="&#x37;" u2="&#x2f;" k="31" />
-<hkern u1="&#x37;" u2="&#x29;" k="33" />
-<hkern u1="&#x37;" u2="&#x20;" k="57" />
-<hkern u1="&#x38;" u2="&#xf7;" k="31" />
-<hkern u1="&#x38;" u2="&#x7d;" k="20" />
-<hkern u1="&#x38;" u2="&#x33;" k="25" />
-<hkern u1="&#x38;" u2="&#x29;" k="35" />
-<hkern u1="&#x39;" u2="&#xb0;" k="92" />
-<hkern u1="&#x39;" u2="&#x7d;" k="53" />
-<hkern u1="&#x39;" u2="\" k="61" />
-<hkern u1="&#x39;" u2="&#x29;" k="63" />
-<hkern u1="&#x3d;" u2="&#x34;" k="86" />
-<hkern u1="&#x40;" u2="X" k="53" />
-<hkern u1="&#x40;" u2="V" k="39" />
-<hkern u1="B" u2="&#x7d;" k="27" />
-<hkern u1="B" u2="x" k="33" />
-<hkern u1="B" u2="X" k="61" />
-<hkern u1="B" u2="V" k="53" />
-<hkern u1="B" u2="&#x29;" k="39" />
-<hkern u1="F" u2="&#x40;" k="59" />
-<hkern u1="F" u2="&#x2f;" k="72" />
-<hkern u1="F" u2="&#x26;" k="29" />
-<hkern u1="F" u2="&#x20;" k="51" />
-<hkern u1="J" u2="&#xdf;" k="37" />
-<hkern u1="K" u2="&#xff;" k="106" />
-<hkern u1="P" u2="&#x7d;" k="25" />
-<hkern u1="P" u2="X" k="61" />
-<hkern u1="P" u2="V" k="31" />
-<hkern u1="P" u2="&#x40;" k="59" />
-<hkern u1="P" u2="&#x2f;" k="86" />
-<hkern u1="P" u2="&#x29;" k="43" />
-<hkern u1="P" u2="&#x26;" k="35" />
-<hkern u1="P" u2="&#x20;" k="59" />
-<hkern u1="Q" u2="&#xc6;" k="70" />
-<hkern u1="Q" u2="&#xc5;" k="41" />
-<hkern u1="Q" u2="&#xc4;" k="41" />
-<hkern u1="Q" u2="&#xc3;" k="41" />
-<hkern u1="Q" u2="&#xc2;" k="41" />
-<hkern u1="Q" u2="&#xc1;" k="41" />
-<hkern u1="Q" u2="&#xc0;" k="41" />
-<hkern u1="Q" u2="J" k="-293" />
-<hkern u1="Q" u2="A" k="41" />
-<hkern u1="U" u2="&#xdf;" k="43" />
-<hkern u1="X" u2="&#xbb;" k="-2" />
-<hkern u1="X" u2="&#xba;" k="27" />
-<hkern u1="X" u2="&#xae;" k="57" />
-<hkern u1="X" u2="&#xaa;" k="20" />
-<hkern u1="X" u2="&#xa9;" k="59" />
-<hkern u1="X" u2="&#x2a;" k="37" />
-<hkern u1="X" u2="&#x20;" k="39" />
-<hkern u1="[" u2="&#xef;" k="-18" />
-<hkern u1="[" u2="V" k="27" />
-<hkern u1="\" u2="V" k="127" />
-<hkern u1="\" u2="&#x33;" k="55" />
-<hkern u1="q" u2="&#x7d;" k="-23" />
-<hkern u1="q" u2="\" k="27" />
-<hkern u1="q" u2="V" k="102" />
-<hkern u1="q" u2="&#x3f;" k="23" />
-<hkern u1="x" u2="V" k="92" />
-<hkern u1="x" u2="&#x20;" k="25" />
-<hkern u1="&#x7b;" u2="&#xef;" k="-61" />
-<hkern u1="&#x7b;" u2="&#x7b;" k="39" />
-<hkern u1="&#x7b;" u2="b" k="-23" />
-<hkern u1="&#x7b;" u2="V" k="27" />
-<hkern u1="&#x7b;" u2="&#x39;" k="39" />
-<hkern u1="&#x7b;" u2="&#x37;" k="20" />
-<hkern u1="&#x7b;" u2="&#x36;" k="47" />
-<hkern u1="&#x7b;" u2="&#x32;" k="20" />
-<hkern u1="&#x7b;" u2="&#x30;" k="57" />
-<hkern u1="&#x7b;" u2="&#x28;" k="29" />
-<hkern u1="&#x7d;" u2="&#x7d;" k="39" />
-<hkern u1="&#x7d;" u2="&#x29;" k="41" />
-<hkern u1="&#xa1;" u2="V" k="80" />
-<hkern u1="&#xa3;" u2="&#x33;" k="37" />
-<hkern u1="&#xb0;" u2="&#x39;" k="86" />
-<hkern u1="&#xb0;" u2="&#x36;" k="78" />
-<hkern u1="&#xb0;" u2="&#x35;" k="37" />
-<hkern u1="&#xb0;" u2="&#x34;" k="231" />
-<hkern u1="&#xb0;" u2="&#x33;" k="74" />
-<hkern u1="&#xb0;" u2="&#x32;" k="55" />
-<hkern u1="&#xb0;" u2="&#x30;" k="96" />
-<hkern u1="&#xb7;" u2="&#x34;" k="78" />
-<hkern u1="&#xb7;" u2="&#x33;" k="33" />
-<hkern u1="&#xb7;" u2="&#x32;" k="29" />
-<hkern u1="&#xb7;" u2="&#x31;" k="31" />
-<hkern u1="&#xb9;" u2="&#xb3;" k="33" />
-<hkern u1="&#xc7;" u2="j" k="-78" />
-<hkern u1="&#xcf;" u2="&#x29;" k="-29" />
-<hkern u1="&#xd7;" u2="&#x34;" k="61" />
-<hkern u1="&#xd7;" u2="&#x33;" k="43" />
-<hkern u1="&#xd7;" u2="&#x32;" k="27" />
-<hkern u1="&#xd9;" u2="&#xdf;" k="43" />
-<hkern u1="&#xda;" u2="&#xdf;" k="43" />
-<hkern u1="&#xdb;" u2="&#xdf;" k="43" />
-<hkern u1="&#xdc;" u2="&#xdf;" k="43" />
-<hkern u1="&#xde;" u2="&#x7d;" k="35" />
-<hkern u1="&#xde;" u2="x" k="12" />
-<hkern u1="&#xde;" u2="X" k="147" />
-<hkern u1="&#xde;" u2="V" k="53" />
-<hkern u1="&#xde;" u2="&#x3f;" k="47" />
-<hkern u1="&#xde;" u2="&#x2f;" k="23" />
-<hkern u1="&#xde;" u2="&#x29;" k="51" />
-<hkern u1="&#xde;" u2="&#x20;" k="27" />
-<hkern u1="&#xdf;" u2="&#x2122;" k="29" />
-<hkern u1="&#xdf;" u2="&#xba;" k="47" />
-<hkern u1="&#xdf;" u2="&#xae;" k="55" />
-<hkern u1="&#xdf;" u2="&#xaa;" k="43" />
-<hkern u1="&#xdf;" u2="&#x7d;" k="33" />
-<hkern u1="&#xdf;" u2="x" k="68" />
-<hkern u1="&#xdf;" u2="\" k="47" />
-<hkern u1="&#xdf;" u2="X" k="41" />
-<hkern u1="&#xdf;" u2="V" k="115" />
-<hkern u1="&#xdf;" u2="&#x3f;" k="31" />
-<hkern u1="&#xdf;" u2="&#x2a;" k="45" />
-<hkern u1="&#xdf;" u2="&#x29;" k="49" />
-<hkern u1="&#xdf;" u2="&#x20;" k="39" />
-<hkern u1="&#xef;" u2="&#x2122;" k="-59" />
-<hkern u1="&#xef;" u2="&#x201d;" k="-55" />
-<hkern u1="&#xef;" u2="&#x2019;" k="-55" />
-<hkern u1="&#xef;" u2="&#x7d;" k="-20" />
-<hkern u1="&#xef;" u2="&#x3f;" k="-59" />
-<hkern u1="&#xef;" u2="&#x2a;" k="-41" />
-<hkern u1="&#xef;" u2="&#x27;" k="-53" />
-<hkern u1="&#xef;" u2="&#x22;" k="-53" />
-<hkern u1="&#xf0;" u2="&#x2122;" k="16" />
-<hkern u1="&#xf0;" u2="&#x7d;" k="39" />
-<hkern u1="&#xf0;" u2="x" k="29" />
-<hkern u1="&#xf0;" u2="\" k="41" />
-<hkern u1="&#xf0;" u2="X" k="80" />
-<hkern u1="&#xf0;" u2="V" k="106" />
-<hkern u1="&#xf0;" u2="&#x3f;" k="29" />
-<hkern u1="&#xf0;" u2="&#x29;" k="47" />
-<hkern u1="&#xf7;" u2="&#x38;" k="35" />
-<hkern u1="&#xf7;" u2="&#x34;" k="125" />
-<hkern u1="&#xf7;" u2="&#x33;" k="20" />
-<hkern u1="&#xf7;" u2="&#x31;" k="20" />
-<hkern u1="&#x201a;" u2="J" k="-252" />
-<hkern u1="&#x201e;" u2="J" k="-252" />
-<hkern u1="&#x20ac;" u2="&#x33;" k="39" />
-<hkern g1="T" 	g2="space" 	k="47" />
-<hkern g1="T" 	g2="f,uniFB01,uniFB02" 	k="43" />
-<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="61" />
-<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="133" />
-<hkern g1="T" 	g2="g" 	k="86" />
-<hkern g1="T" 	g2="ampersand" 	k="29" />
-<hkern g1="T" 	g2="hyphen,uni00AD,endash,emdash" 	k="53" />
-<hkern g1="T" 	g2="guillemotleft,guilsinglleft" 	k="61" />
-<hkern g1="T" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="82" />
-<hkern g1="T" 	g2="AE" 	k="170" />
-<hkern g1="T" 	g2="s" 	k="25" />
-<hkern g1="T" 	g2="at" 	k="49" />
-<hkern g1="T" 	g2="germandbls,thorn" 	k="12" />
-<hkern g1="T" 	g2="slash" 	k="57" />
-<hkern g1="T" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="94" />
-<hkern g1="T" 	g2="h,k,l" 	k="12" />
-<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="70" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="f,uniFB01,uniFB02" 	k="20" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="29" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="72" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="g" 	k="51" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="hyphen,uni00AD,endash,emdash" 	k="16" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="43" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="AE" 	k="98" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="s" 	k="49" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="at" 	k="20" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="germandbls,thorn" 	k="27" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="slash" 	k="31" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="41" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="h,k,l" 	k="27" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="49" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="b" 	k="12" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="y,yacute,ydieresis" 	k="25" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="39" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="v,w" 	k="27" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="m,n,r,ntilde" 	k="39" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="p" 	k="35" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="z" 	k="41" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="t" 	k="14" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="x" 	k="18" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
-<hkern g1="W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="82" />
-<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="164" />
-<hkern g1="W" 	g2="g" 	k="184" />
-<hkern g1="W" 	g2="guillemotleft,guilsinglleft" 	k="102" />
-<hkern g1="W" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="143" />
-<hkern g1="W" 	g2="AE" 	k="307" />
-<hkern g1="W" 	g2="s" 	k="143" />
-<hkern g1="W" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="123" />
-<hkern g1="W" 	g2="h,k,l" 	k="61" />
-<hkern g1="W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="164" />
-<hkern g1="W" 	g2="y,yacute,ydieresis" 	k="82" />
-<hkern g1="W" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="61" />
-<hkern g1="W" 	g2="m,n,r,ntilde" 	k="102" />
-<hkern g1="V" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="102" />
-<hkern g1="V" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="164" />
-<hkern g1="V" 	g2="g" 	k="164" />
-<hkern g1="V" 	g2="guillemotleft,guilsinglleft" 	k="143" />
-<hkern g1="V" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="143" />
-<hkern g1="V" 	g2="AE" 	k="328" />
-<hkern g1="V" 	g2="s" 	k="164" />
-<hkern g1="V" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="123" />
-<hkern g1="V" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="164" />
-<hkern g1="V" 	g2="y,yacute,ydieresis" 	k="143" />
-<hkern g1="V" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="61" />
-<hkern g1="V" 	g2="m,n,r,ntilde" 	k="102" />
-<hkern g1="V" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="61" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="184" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="123" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="205" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="143" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="184" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="AE" 	k="287" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="184" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="123" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="164" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="b" 	k="61" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,r,ntilde" 	k="184" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="p" 	k="184" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="123" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="102" />
-<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="14" />
-<hkern g1="Z" 	g2="y,yacute,ydieresis" 	k="49" />
-<hkern g1="Z" 	g2="v,w" 	k="49" />
-<hkern g1="Z" 	g2="p" 	k="16" />
-<hkern g1="Z" 	g2="z" 	k="10" />
-<hkern g1="Z" 	g2="t" 	k="16" />
-<hkern g1="Z" 	g2="W" 	k="14" />
-<hkern g1="Z" 	g2="j" 	k="10" />
-<hkern g1="Z" 	g2="Y,Yacute,Ydieresis" 	k="18" />
-<hkern g1="Z" 	g2="V" 	k="16" />
-<hkern g1="X" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="25" />
-<hkern g1="X" 	g2="hyphen,uni00AD,endash,emdash" 	k="63" />
-<hkern g1="X" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="51" />
-<hkern g1="X" 	g2="y,yacute,ydieresis" 	k="127" />
-<hkern g1="X" 	g2="v,w" 	k="117" />
-<hkern g1="X" 	g2="t" 	k="29" />
-<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="76" />
-<hkern g1="X" 	g2="guillemotright,guilsinglright" 	k="-14" />
-<hkern g1="eth" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="51" />
-<hkern g1="eth" 	g2="AE" 	k="59" />
-<hkern g1="eth" 	g2="y,yacute,ydieresis" 	k="29" />
-<hkern g1="eth" 	g2="v,w" 	k="31" />
-<hkern g1="eth" 	g2="quotedbl,quotesingle" 	k="35" />
-<hkern g1="eth" 	g2="quoteright,quotedblright" 	k="35" />
-<hkern g1="eth" 	g2="quoteleft,quotedblleft" 	k="16" />
-<hkern g1="eth" 	g2="W" 	k="106" />
-<hkern g1="eth" 	g2="Y,Yacute,Ydieresis" 	k="133" />
-<hkern g1="eth" 	g2="J" 	k="35" />
-<hkern g1="eth" 	g2="S" 	k="12" />
-<hkern g1="eth" 	g2="T" 	k="23" />
-<hkern g1="eth" 	g2="Z" 	k="27" />
-<hkern g1="eth" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="35" />
-<hkern g1="eth" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="39" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="y,yacute,ydieresis" 	k="23" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="v,w" 	k="27" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="parenright" 	k="45" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="braceright" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="asterisk" 	k="16" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="question" 	k="45" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="quotedbl,quotesingle" 	k="53" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="quoteright,quotedblright" 	k="57" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="registered" 	k="37" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="trademark" 	k="39" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="backslash" 	k="74" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="ordmasculine" 	k="25" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="quoteleft,quotedblleft" 	k="135" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="W" 	k="123" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="Y,Yacute,Ydieresis" 	k="133" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="V" 	k="139" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="J" 	k="33" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="T" 	k="37" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="41" />
-<hkern g1="p,thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="47" />
-<hkern g1="p,thorn" 	g2="AE" 	k="51" />
-<hkern g1="p,thorn" 	g2="y,yacute,ydieresis" 	k="35" />
-<hkern g1="p,thorn" 	g2="v,w" 	k="29" />
-<hkern g1="p,thorn" 	g2="x" 	k="43" />
-<hkern g1="p,thorn" 	g2="parenright" 	k="63" />
-<hkern g1="p,thorn" 	g2="braceright" 	k="51" />
-<hkern g1="p,thorn" 	g2="question" 	k="53" />
-<hkern g1="p,thorn" 	g2="quotedbl,quotesingle" 	k="55" />
-<hkern g1="p,thorn" 	g2="quoteright,quotedblright" 	k="55" />
-<hkern g1="p,thorn" 	g2="trademark" 	k="29" />
-<hkern g1="p,thorn" 	g2="backslash" 	k="57" />
-<hkern g1="p,thorn" 	g2="ordmasculine" 	k="18" />
-<hkern g1="p,thorn" 	g2="quoteleft,quotedblleft" 	k="33" />
-<hkern g1="p,thorn" 	g2="W" 	k="127" />
-<hkern g1="p,thorn" 	g2="Y,Yacute,Ydieresis" 	k="137" />
-<hkern g1="p,thorn" 	g2="V" 	k="143" />
-<hkern g1="p,thorn" 	g2="J" 	k="37" />
-<hkern g1="p,thorn" 	g2="S" 	k="10" />
-<hkern g1="p,thorn" 	g2="T" 	k="31" />
-<hkern g1="p,thorn" 	g2="Z" 	k="31" />
-<hkern g1="p,thorn" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="37" />
-<hkern g1="p,thorn" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="39" />
-<hkern g1="p,thorn" 	g2="exclam" 	k="23" />
-<hkern g1="p,thorn" 	g2="X" 	k="84" />
-<hkern g1="c,ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="39" />
-<hkern g1="c,ccedilla" 	g2="AE" 	k="33" />
-<hkern g1="c,ccedilla" 	g2="y,yacute,ydieresis" 	k="14" />
-<hkern g1="c,ccedilla" 	g2="v,w" 	k="12" />
-<hkern g1="c,ccedilla" 	g2="x" 	k="8" />
-<hkern g1="c,ccedilla" 	g2="parenright" 	k="55" />
-<hkern g1="c,ccedilla" 	g2="braceright" 	k="41" />
-<hkern g1="c,ccedilla" 	g2="question" 	k="27" />
-<hkern g1="c,ccedilla" 	g2="quotedbl,quotesingle" 	k="25" />
-<hkern g1="c,ccedilla" 	g2="quoteright,quotedblright" 	k="31" />
-<hkern g1="c,ccedilla" 	g2="trademark" 	k="18" />
-<hkern g1="c,ccedilla" 	g2="backslash" 	k="41" />
-<hkern g1="c,ccedilla" 	g2="W" 	k="96" />
-<hkern g1="c,ccedilla" 	g2="j" 	k="-223" />
-<hkern g1="c,ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="127" />
-<hkern g1="c,ccedilla" 	g2="V" 	k="98" />
-<hkern g1="c,ccedilla" 	g2="J" 	k="27" />
-<hkern g1="c,ccedilla" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="16" />
-<hkern g1="c,ccedilla" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="25" />
-<hkern g1="c,ccedilla" 	g2="X" 	k="47" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="47" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="AE" 	k="41" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="y,yacute,ydieresis" 	k="27" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="v,w" 	k="29" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="m,n,r,ntilde" 	k="20" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="x" 	k="33" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="parenright" 	k="59" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="braceright" 	k="47" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="question" 	k="39" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quotedbl,quotesingle" 	k="35" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteright,quotedblright" 	k="37" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="trademark" 	k="18" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="backslash" 	k="47" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="W" 	k="106" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="158" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="V" 	k="125" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="J" 	k="35" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="T" 	k="18" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Z" 	k="18" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="27" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="33" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="X" 	k="63" />
-<hkern g1="f" 	g2="hyphen,uni00AD,endash,emdash" 	k="39" />
-<hkern g1="f" 	g2="guillemotleft,guilsinglleft" 	k="31" />
-<hkern g1="f" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="39" />
-<hkern g1="f" 	g2="parenright" 	k="-100" />
-<hkern g1="f" 	g2="braceright" 	k="-113" />
-<hkern g1="f" 	g2="asterisk" 	k="-102" />
-<hkern g1="f" 	g2="ordfeminine" 	k="-121" />
-<hkern g1="f" 	g2="question" 	k="-182" />
-<hkern g1="f" 	g2="quotedbl,quotesingle" 	k="-176" />
-<hkern g1="f" 	g2="quoteright,quotedblright" 	k="-180" />
-<hkern g1="f" 	g2="registered" 	k="-72" />
-<hkern g1="f" 	g2="trademark" 	k="-170" />
-<hkern g1="f" 	g2="backslash" 	k="-152" />
-<hkern g1="f" 	g2="ordmasculine" 	k="-123" />
-<hkern g1="f" 	g2="quoteleft,quotedblleft" 	k="-127" />
-<hkern g1="f" 	g2="W" 	k="-260" />
-<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-250" />
-<hkern g1="f" 	g2="V" 	k="-262" />
-<hkern g1="f" 	g2="J" 	k="-182" />
-<hkern g1="f" 	g2="S" 	k="-61" />
-<hkern g1="f" 	g2="T" 	k="-184" />
-<hkern g1="f" 	g2="Z" 	k="-147" />
-<hkern g1="f" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-172" />
-<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-203" />
-<hkern g1="f" 	g2="exclam" 	k="-141" />
-<hkern g1="f" 	g2="X" 	k="-242" />
-<hkern g1="f" 	g2="bar" 	k="-80" />
-<hkern g1="f" 	g2="bracketright" 	k="-70" />
-<hkern g1="g" 	g2="y,yacute,ydieresis" 	k="33" />
-<hkern g1="g" 	g2="v,w" 	k="33" />
-<hkern g1="g" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="16" />
-<hkern g1="g" 	g2="question" 	k="-25" />
-<hkern g1="g" 	g2="W" 	k="35" />
-<hkern g1="g" 	g2="Y,Yacute,Ydieresis" 	k="37" />
-<hkern g1="g" 	g2="V" 	k="35" />
-<hkern g1="g" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="12" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="y,yacute,ydieresis" 	k="12" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="v,w" 	k="12" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="23" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="parenright" 	k="-51" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="braceright" 	k="-80" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="question" 	k="-31" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="quoteright,quotedblright" 	k="-45" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="W" 	k="29" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="Y,Yacute,Ydieresis" 	k="27" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="V" 	k="27" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="J" 	k="18" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="T" 	k="10" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="18" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="exclam" 	k="-27" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="bracketright" 	k="-16" />
-<hkern g1="j" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="23" />
-<hkern g1="j" 	g2="AE" 	k="23" />
-<hkern g1="j" 	g2="y,yacute,ydieresis" 	k="20" />
-<hkern g1="j" 	g2="v,w" 	k="16" />
-<hkern g1="j" 	g2="parenright" 	k="35" />
-<hkern g1="j" 	g2="braceright" 	k="29" />
-<hkern g1="j" 	g2="ordfeminine" 	k="-31" />
-<hkern g1="j" 	g2="question" 	k="35" />
-<hkern g1="j" 	g2="quotedbl,quotesingle" 	k="31" />
-<hkern g1="j" 	g2="quoteright,quotedblright" 	k="35" />
-<hkern g1="j" 	g2="trademark" 	k="20" />
-<hkern g1="j" 	g2="backslash" 	k="49" />
-<hkern g1="j" 	g2="ordmasculine" 	k="-49" />
-<hkern g1="j" 	g2="W" 	k="10" />
-<hkern g1="j" 	g2="Y,Yacute,Ydieresis" 	k="18" />
-<hkern g1="j" 	g2="exclam" 	k="-41" />
-<hkern g1="k" 	g2="hyphen,uni00AD,endash,emdash" 	k="49" />
-<hkern g1="k" 	g2="guillemotleft,guilsinglleft" 	k="45" />
-<hkern g1="k" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="41" />
-<hkern g1="k" 	g2="germandbls,thorn" 	k="41" />
-<hkern g1="k" 	g2="h,k,l" 	k="41" />
-<hkern g1="k" 	g2="b" 	k="41" />
-<hkern g1="k" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="39" />
-<hkern g1="k" 	g2="quoteright,quotedblright" 	k="23" />
-<hkern g1="k" 	g2="trademark" 	k="16" />
-<hkern g1="k" 	g2="W" 	k="76" />
-<hkern g1="k" 	g2="Y,Yacute,Ydieresis" 	k="70" />
-<hkern g1="k" 	g2="V" 	k="88" />
-<hkern g1="k" 	g2="J" 	k="20" />
-<hkern g1="k" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="35" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="61" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="W" 	k="164" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="123" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="V" 	k="184" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="164" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="41" />
-<hkern g1="l,uniFB02" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="20" />
-<hkern g1="C,Ccedilla" 	g2="W" 	k="10" />
-<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="14" />
-<hkern g1="C,Ccedilla" 	g2="V" 	k="10" />
-<hkern g1="h,m,n,ntilde" 	g2="y,yacute,ydieresis" 	k="25" />
-<hkern g1="h,m,n,ntilde" 	g2="v,w" 	k="27" />
-<hkern g1="h,m,n,ntilde" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="16" />
-<hkern g1="h,m,n,ntilde" 	g2="parenright" 	k="35" />
-<hkern g1="h,m,n,ntilde" 	g2="braceright" 	k="23" />
-<hkern g1="h,m,n,ntilde" 	g2="asterisk" 	k="16" />
-<hkern g1="h,m,n,ntilde" 	g2="question" 	k="45" />
-<hkern g1="h,m,n,ntilde" 	g2="quotedbl,quotesingle" 	k="49" />
-<hkern g1="h,m,n,ntilde" 	g2="quoteright,quotedblright" 	k="53" />
-<hkern g1="h,m,n,ntilde" 	g2="registered" 	k="35" />
-<hkern g1="h,m,n,ntilde" 	g2="trademark" 	k="37" />
-<hkern g1="h,m,n,ntilde" 	g2="backslash" 	k="72" />
-<hkern g1="h,m,n,ntilde" 	g2="ordmasculine" 	k="20" />
-<hkern g1="h,m,n,ntilde" 	g2="quoteleft,quotedblleft" 	k="29" />
-<hkern g1="h,m,n,ntilde" 	g2="W" 	k="125" />
-<hkern g1="h,m,n,ntilde" 	g2="Y,Yacute,Ydieresis" 	k="137" />
-<hkern g1="h,m,n,ntilde" 	g2="V" 	k="143" />
-<hkern g1="h,m,n,ntilde" 	g2="J" 	k="37" />
-<hkern g1="h,m,n,ntilde" 	g2="T" 	k="41" />
-<hkern g1="h,m,n,ntilde" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="43" />
-<hkern g1="D,Eth" 	g2="f,uniFB01,uniFB02" 	k="27" />
-<hkern g1="D,Eth" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="72" />
-<hkern g1="D,Eth" 	g2="g" 	k="12" />
-<hkern g1="D,Eth" 	g2="AE" 	k="111" />
-<hkern g1="D,Eth" 	g2="s" 	k="12" />
-<hkern g1="D,Eth" 	g2="germandbls,thorn" 	k="23" />
-<hkern g1="D,Eth" 	g2="slash" 	k="23" />
-<hkern g1="D,Eth" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="43" />
-<hkern g1="D,Eth" 	g2="h,k,l" 	k="23" />
-<hkern g1="D,Eth" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="16" />
-<hkern g1="D,Eth" 	g2="b" 	k="10" />
-<hkern g1="D,Eth" 	g2="y,yacute,ydieresis" 	k="18" />
-<hkern g1="D,Eth" 	g2="v,w" 	k="16" />
-<hkern g1="D,Eth" 	g2="x" 	k="25" />
-<hkern g1="D,Eth" 	g2="parenright" 	k="57" />
-<hkern g1="D,Eth" 	g2="braceright" 	k="45" />
-<hkern g1="D,Eth" 	g2="question" 	k="31" />
-<hkern g1="D,Eth" 	g2="W" 	k="51" />
-<hkern g1="D,Eth" 	g2="Y,Yacute,Ydieresis" 	k="70" />
-<hkern g1="D,Eth" 	g2="V" 	k="57" />
-<hkern g1="D,Eth" 	g2="J" 	k="14" />
-<hkern g1="D,Eth" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="18" />
-<hkern g1="D,Eth" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="12" />
-<hkern g1="D,Eth" 	g2="X" 	k="80" />
-<hkern g1="B" 	g2="f,uniFB01,uniFB02" 	k="12" />
-<hkern g1="B" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="39" />
-<hkern g1="B" 	g2="AE" 	k="49" />
-<hkern g1="B" 	g2="germandbls,thorn" 	k="12" />
-<hkern g1="B" 	g2="h,k,l" 	k="12" />
-<hkern g1="B" 	g2="y,yacute,ydieresis" 	k="35" />
-<hkern g1="B" 	g2="v,w" 	k="33" />
-<hkern g1="B" 	g2="z" 	k="12" />
-<hkern g1="B" 	g2="W" 	k="47" />
-<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="53" />
-<hkern g1="B" 	g2="T" 	k="12" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="45" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="AE" 	k="47" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="h,k,l" 	k="20" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="y,yacute,ydieresis" 	k="33" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="v,w" 	k="33" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="x" 	k="43" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="parenright" 	k="66" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="braceright" 	k="53" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="question" 	k="53" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="quotedbl,quotesingle" 	k="53" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="quoteright,quotedblright" 	k="51" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="trademark" 	k="20" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="backslash" 	k="61" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="ordmasculine" 	k="18" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="quoteleft,quotedblleft" 	k="135" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="W" 	k="131" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="Y,Yacute,Ydieresis" 	k="141" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="V" 	k="147" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="J" 	k="41" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="S" 	k="10" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="T" 	k="41" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="Z" 	k="33" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="41" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="41" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="X" 	k="86" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="10" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="y,yacute,ydieresis" 	k="14" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="v,w" 	k="18" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="W" 	k="29" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="Y,Yacute,Ydieresis" 	k="31" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="V" 	k="29" />
-<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="25" />
-<hkern g1="G" 	g2="AE" 	k="18" />
-<hkern g1="G" 	g2="y,yacute,ydieresis" 	k="23" />
-<hkern g1="G" 	g2="v,w" 	k="20" />
-<hkern g1="G" 	g2="W" 	k="31" />
-<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="33" />
-<hkern g1="G" 	g2="V" 	k="31" />
-<hkern g1="r" 	g2="space" 	k="43" />
-<hkern g1="r" 	g2="f,uniFB01,uniFB02" 	k="10" />
-<hkern g1="r" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="111" />
-<hkern g1="r" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="20" />
-<hkern g1="r" 	g2="AE" 	k="131" />
-<hkern g1="r" 	g2="slash" 	k="41" />
-<hkern g1="r" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="82" />
-<hkern g1="r" 	g2="h,k,l" 	k="61" />
-<hkern g1="r" 	g2="b" 	k="41" />
-<hkern g1="r" 	g2="parenright" 	k="55" />
-<hkern g1="r" 	g2="braceright" 	k="33" />
-<hkern g1="r" 	g2="W" 	k="70" />
-<hkern g1="r" 	g2="Y,Yacute,Ydieresis" 	k="102" />
-<hkern g1="r" 	g2="V" 	k="80" />
-<hkern g1="r" 	g2="J" 	k="37" />
-<hkern g1="r" 	g2="S" 	k="14" />
-<hkern g1="r" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="39" />
-<hkern g1="r" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="27" />
-<hkern g1="r" 	g2="X" 	k="86" />
-<hkern g1="F" 	g2="f,uniFB01,uniFB02" 	k="57" />
-<hkern g1="F" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="123" />
-<hkern g1="F" 	g2="g" 	k="39" />
-<hkern g1="F" 	g2="hyphen,uni00AD,endash,emdash" 	k="47" />
-<hkern g1="F" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="51" />
-<hkern g1="F" 	g2="AE" 	k="274" />
-<hkern g1="F" 	g2="s" 	k="35" />
-<hkern g1="F" 	g2="germandbls,thorn" 	k="18" />
-<hkern g1="F" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="111" />
-<hkern g1="F" 	g2="h,k,l" 	k="18" />
-<hkern g1="F" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="39" />
-<hkern g1="F" 	g2="z" 	k="12" />
-<hkern g1="F" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
-<hkern g1="s" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="37" />
-<hkern g1="s" 	g2="AE" 	k="27" />
-<hkern g1="s" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
-<hkern g1="s" 	g2="parenright" 	k="51" />
-<hkern g1="s" 	g2="braceright" 	k="31" />
-<hkern g1="s" 	g2="backslash" 	k="27" />
-<hkern g1="s" 	g2="W" 	k="106" />
-<hkern g1="s" 	g2="Y,Yacute,Ydieresis" 	k="106" />
-<hkern g1="s" 	g2="V" 	k="109" />
-<hkern g1="s" 	g2="J" 	k="39" />
-<hkern g1="s" 	g2="T" 	k="16" />
-<hkern g1="s" 	g2="Z" 	k="12" />
-<hkern g1="s" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="27" />
-<hkern g1="s" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="39" />
-<hkern g1="s" 	g2="X" 	k="33" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="27" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="g" 	k="16" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="hyphen,uni00AD,endash,emdash" 	k="25" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="41" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="s" 	k="12" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="14" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="y,yacute,ydieresis" 	k="35" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="v,w" 	k="37" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="p" 	k="27" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="z" 	k="10" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="t" 	k="18" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="16" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="parenright" 	k="-72" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="j" 	k="10" />
-<hkern g1="q" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="23" />
-<hkern g1="q" 	g2="AE" 	k="20" />
-<hkern g1="q" 	g2="W" 	k="92" />
-<hkern g1="q" 	g2="Y,Yacute,Ydieresis" 	k="117" />
-<hkern g1="q" 	g2="J" 	k="-303" />
-<hkern g1="q" 	g2="T" 	k="12" />
-<hkern g1="q" 	g2="Z" 	k="12" />
-<hkern g1="q" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="23" />
-<hkern g1="q" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="25" />
-<hkern g1="t" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="12" />
-<hkern g1="t" 	g2="t" 	k="41" />
-<hkern g1="J" 	g2="f,uniFB01,uniFB02" 	k="20" />
-<hkern g1="J" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="31" />
-<hkern g1="J" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="37" />
-<hkern g1="J" 	g2="g" 	k="41" />
-<hkern g1="J" 	g2="hyphen,uni00AD,endash,emdash" 	k="18" />
-<hkern g1="J" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="41" />
-<hkern g1="J" 	g2="AE" 	k="37" />
-<hkern g1="J" 	g2="s" 	k="41" />
-<hkern g1="J" 	g2="germandbls,thorn" 	k="25" />
-<hkern g1="J" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="20" />
-<hkern g1="J" 	g2="h,k,l" 	k="25" />
-<hkern g1="J" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="37" />
-<hkern g1="J" 	g2="b" 	k="12" />
-<hkern g1="J" 	g2="y,yacute,ydieresis" 	k="31" />
-<hkern g1="J" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="10" />
-<hkern g1="J" 	g2="v,w" 	k="31" />
-<hkern g1="J" 	g2="m,n,r,ntilde" 	k="33" />
-<hkern g1="J" 	g2="p" 	k="35" />
-<hkern g1="J" 	g2="z" 	k="37" />
-<hkern g1="J" 	g2="t" 	k="18" />
-<hkern g1="J" 	g2="x" 	k="14" />
-<hkern g1="J" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
-<hkern g1="J" 	g2="parenright" 	k="-82" />
-<hkern g1="J" 	g2="braceright" 	k="-106" />
-<hkern g1="J" 	g2="bracketright" 	k="-39" />
-<hkern g1="K" 	g2="space" 	k="33" />
-<hkern g1="K" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="33" />
-<hkern g1="K" 	g2="hyphen,uni00AD,endash,emdash" 	k="61" />
-<hkern g1="K" 	g2="guillemotleft,guilsinglleft" 	k="25" />
-<hkern g1="K" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="55" />
-<hkern g1="K" 	g2="slash" 	k="-31" />
-<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="125" />
-<hkern g1="K" 	g2="v,w" 	k="117" />
-<hkern g1="K" 	g2="t" 	k="31" />
-<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="72" />
-<hkern g1="K" 	g2="asterisk" 	k="23" />
-<hkern g1="K" 	g2="registered" 	k="35" />
-<hkern g1="K" 	g2="copyright" 	k="51" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="space" 	k="61" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="f,uniFB01,uniFB02" 	k="37" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="123" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="g" 	k="31" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="ampersand" 	k="27" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="hyphen,uni00AD,endash,emdash" 	k="47" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="47" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="39" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="AE" 	k="156" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="s" 	k="31" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="at" 	k="55" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="germandbls,thorn" 	k="23" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="slash" 	k="68" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="h,k,l" 	k="63" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="31" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="18" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="parenright" 	k="57" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="braceright" 	k="25" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="W" 	k="57" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="68" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="V" 	k="63" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="J" 	k="41" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="S" 	k="16" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="45" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="35" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="X" 	k="78" />
-<hkern g1="L" 	g2="space" 	k="49" />
-<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="102" />
-<hkern g1="L" 	g2="v,w" 	k="98" />
-<hkern g1="L" 	g2="t" 	k="12" />
-<hkern g1="L" 	g2="parenright" 	k="20" />
-<hkern g1="L" 	g2="asterisk" 	k="111" />
-<hkern g1="L" 	g2="ordfeminine" 	k="127" />
-<hkern g1="L" 	g2="question" 	k="41" />
-<hkern g1="L" 	g2="quotedbl,quotesingle" 	k="154" />
-<hkern g1="L" 	g2="quoteright,quotedblright" 	k="152" />
-<hkern g1="L" 	g2="registered" 	k="90" />
-<hkern g1="L" 	g2="trademark" 	k="51" />
-<hkern g1="L" 	g2="backslash" 	k="86" />
-<hkern g1="L" 	g2="ordmasculine" 	k="145" />
-<hkern g1="L" 	g2="quoteleft,quotedblleft" 	k="156" />
-<hkern g1="L" 	g2="W" 	k="205" />
-<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="158" />
-<hkern g1="L" 	g2="V" 	k="172" />
-<hkern g1="L" 	g2="J" 	k="10" />
-<hkern g1="L" 	g2="T" 	k="133" />
-<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="18" />
-<hkern g1="L" 	g2="periodcentered" 	k="86" />
-<hkern g1="N,Ntilde" 	g2="f,uniFB01,uniFB02" 	k="20" />
-<hkern g1="N,Ntilde" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="33" />
-<hkern g1="N,Ntilde" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="35" />
-<hkern g1="N,Ntilde" 	g2="g" 	k="41" />
-<hkern g1="N,Ntilde" 	g2="hyphen,uni00AD,endash,emdash" 	k="18" />
-<hkern g1="N,Ntilde" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="43" />
-<hkern g1="N,Ntilde" 	g2="AE" 	k="35" />
-<hkern g1="N,Ntilde" 	g2="s" 	k="41" />
-<hkern g1="N,Ntilde" 	g2="germandbls,thorn" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="20" />
-<hkern g1="N,Ntilde" 	g2="h,k,l" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="39" />
-<hkern g1="N,Ntilde" 	g2="b" 	k="14" />
-<hkern g1="N,Ntilde" 	g2="y,yacute,ydieresis" 	k="33" />
-<hkern g1="N,Ntilde" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="10" />
-<hkern g1="N,Ntilde" 	g2="v,w" 	k="33" />
-<hkern g1="N,Ntilde" 	g2="m,n,r,ntilde" 	k="33" />
-<hkern g1="N,Ntilde" 	g2="p" 	k="35" />
-<hkern g1="N,Ntilde" 	g2="z" 	k="39" />
-<hkern g1="N,Ntilde" 	g2="t" 	k="18" />
-<hkern g1="N,Ntilde" 	g2="x" 	k="14" />
-<hkern g1="N,Ntilde" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="14" />
-<hkern g1="N,Ntilde" 	g2="j" 	k="12" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="f,uniFB01,uniFB02" 	k="25" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="63" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="g" 	k="10" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="AE" 	k="100" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="s" 	k="10" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="germandbls,thorn" 	k="23" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="39" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="h,k,l" 	k="23" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="14" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="y,yacute,ydieresis" 	k="20" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="v,w" 	k="16" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="x" 	k="25" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="parenright" 	k="55" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="braceright" 	k="43" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="question" 	k="29" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="W" 	k="49" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="Y,Yacute,Ydieresis" 	k="66" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="V" 	k="55" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="J" 	k="14" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="16" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="10" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="X" 	k="72" />
-<hkern g1="z" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="12" />
-<hkern g1="z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
-<hkern g1="z" 	g2="parenright" 	k="37" />
-<hkern g1="z" 	g2="W" 	k="88" />
-<hkern g1="z" 	g2="Y,Yacute,Ydieresis" 	k="98" />
-<hkern g1="z" 	g2="V" 	k="100" />
-<hkern g1="z" 	g2="J" 	k="33" />
-<hkern g1="z" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="12" />
-<hkern g1="z" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="37" />
-<hkern g1="x" 	g2="hyphen,uni00AD,endash,emdash" 	k="63" />
-<hkern g1="x" 	g2="guillemotleft,guilsinglleft" 	k="63" />
-<hkern g1="x" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="45" />
-<hkern g1="x" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="51" />
-<hkern g1="x" 	g2="W" 	k="84" />
-<hkern g1="x" 	g2="Y,Yacute,Ydieresis" 	k="76" />
-<hkern g1="x" 	g2="J" 	k="16" />
-<hkern g1="x" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="39" />
-<hkern g1="germandbls" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="33" />
-<hkern g1="germandbls" 	g2="AE" 	k="27" />
-<hkern g1="germandbls" 	g2="y,yacute,ydieresis" 	k="82" />
-<hkern g1="germandbls" 	g2="v,w" 	k="78" />
-<hkern g1="germandbls" 	g2="z" 	k="10" />
-<hkern g1="germandbls" 	g2="t" 	k="10" />
-<hkern g1="germandbls" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
-<hkern g1="germandbls" 	g2="quotedbl,quotesingle" 	k="45" />
-<hkern g1="germandbls" 	g2="quoteright,quotedblright" 	k="43" />
-<hkern g1="germandbls" 	g2="quoteleft,quotedblleft" 	k="49" />
-<hkern g1="germandbls" 	g2="W" 	k="111" />
-<hkern g1="germandbls" 	g2="Y,Yacute,Ydieresis" 	k="127" />
-<hkern g1="germandbls" 	g2="J" 	k="41" />
-<hkern g1="germandbls" 	g2="T" 	k="86" />
-<hkern g1="germandbls" 	g2="Z" 	k="33" />
-<hkern g1="germandbls" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="27" />
-<hkern g1="germandbls" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="41" />
-<hkern g1="R" 	g2="space" 	k="20" />
-<hkern g1="R" 	g2="y,yacute,ydieresis" 	k="27" />
-<hkern g1="R" 	g2="v,w" 	k="29" />
-<hkern g1="R" 	g2="W" 	k="66" />
-<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="63" />
-<hkern g1="R" 	g2="V" 	k="49" />
-<hkern g1="P" 	g2="f,uniFB01,uniFB02" 	k="49" />
-<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="137" />
-<hkern g1="P" 	g2="g" 	k="27" />
-<hkern g1="P" 	g2="hyphen,uni00AD,endash,emdash" 	k="43" />
-<hkern g1="P" 	g2="guillemotleft,guilsinglleft" 	k="25" />
-<hkern g1="P" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="39" />
-<hkern g1="P" 	g2="AE" 	k="231" />
-<hkern g1="P" 	g2="s" 	k="25" />
-<hkern g1="P" 	g2="germandbls,thorn" 	k="23" />
-<hkern g1="P" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="160" />
-<hkern g1="P" 	g2="h,k,l" 	k="23" />
-<hkern g1="P" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="31" />
-<hkern g1="P" 	g2="W" 	k="29" />
-<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="37" />
-<hkern g1="P" 	g2="J" 	k="12" />
-<hkern g1="P" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="16" />
-<hkern g1="S" 	g2="f,uniFB01,uniFB02" 	k="16" />
-<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="37" />
-<hkern g1="S" 	g2="g" 	k="12" />
-<hkern g1="S" 	g2="AE" 	k="37" />
-<hkern g1="S" 	g2="s" 	k="10" />
-<hkern g1="S" 	g2="germandbls,thorn" 	k="18" />
-<hkern g1="S" 	g2="h,k,l" 	k="18" />
-<hkern g1="S" 	g2="b" 	k="10" />
-<hkern g1="S" 	g2="y,yacute,ydieresis" 	k="16" />
-<hkern g1="S" 	g2="v,w" 	k="18" />
-<hkern g1="S" 	g2="z" 	k="16" />
-<hkern g1="S" 	g2="parenright" 	k="25" />
-<hkern g1="S" 	g2="W" 	k="29" />
-<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="31" />
-<hkern g1="S" 	g2="V" 	k="29" />
-<hkern g1="Thorn" 	g2="f,uniFB01,uniFB02" 	k="10" />
-<hkern g1="Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="76" />
-<hkern g1="Thorn" 	g2="AE" 	k="133" />
-<hkern g1="Thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="55" />
-<hkern g1="Thorn" 	g2="v,w" 	k="12" />
-<hkern g1="Thorn" 	g2="W" 	k="47" />
-<hkern g1="Thorn" 	g2="Y,Yacute,Ydieresis" 	k="70" />
-<hkern g1="Thorn" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="12" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="quoteright,quotedblright" 	k="266" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="y,yacute,ydieresis" 	k="104" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="T" 	k="176" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="v,w" 	k="94" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="Y,Yacute,Ydieresis" 	k="137" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="five" 	k="47" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="nine" 	k="27" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="V" 	k="219" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="seven" 	k="68" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="three" 	k="109" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="37" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="j" 	k="-266" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="quotedbl,quotesingle" 	k="279" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="J" 	k="18" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="W" 	k="207" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="quoteleft,quotedblleft" 	k="258" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="33" />
-<hkern g1="two" 	g2="quotedbl,quotesingle" 	k="43" />
-<hkern g1="space" 	g2="quoteright,quotedblright" 	k="35" />
-<hkern g1="space" 	g2="y,yacute,ydieresis" 	k="63" />
-<hkern g1="space" 	g2="T" 	k="47" />
-<hkern g1="space" 	g2="v,w" 	k="61" />
-<hkern g1="space" 	g2="Y,Yacute,Ydieresis" 	k="80" />
-<hkern g1="space" 	g2="quotedbl,quotesingle" 	k="43" />
-<hkern g1="space" 	g2="W" 	k="82" />
-<hkern g1="space" 	g2="t" 	k="23" />
-<hkern g1="space" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="86" />
-<hkern g1="space" 	g2="AE" 	k="92" />
-<hkern g1="ampersand" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="102" />
-<hkern g1="ampersand" 	g2="AE" 	k="141" />
-<hkern g1="ampersand" 	g2="f,uniFB01,uniFB02" 	k="27" />
-<hkern g1="ampersand" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="25" />
-<hkern g1="braceleft" 	g2="v,w" 	k="20" />
-<hkern g1="braceleft" 	g2="Y,Yacute,Ydieresis" 	k="31" />
-<hkern g1="braceleft" 	g2="j" 	k="-285" />
-<hkern g1="braceleft" 	g2="J" 	k="-285" />
-<hkern g1="braceleft" 	g2="W" 	k="27" />
-<hkern g1="braceleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="45" />
-<hkern g1="braceleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="29" />
-<hkern g1="braceleft" 	g2="AE" 	k="25" />
-<hkern g1="braceleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="53" />
-<hkern g1="braceleft" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-125" />
-<hkern g1="braceleft" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="25" />
-<hkern g1="braceleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-92" />
-<hkern g1="braceleft" 	g2="z" 	k="20" />
-<hkern g1="braceleft" 	g2="s" 	k="31" />
-<hkern g1="braceleft" 	g2="germandbls,thorn" 	k="-20" />
-<hkern g1="braceleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="29" />
-<hkern g1="four" 	g2="quotedbl,quotesingle" 	k="57" />
-<hkern g1="quoteright,quotedblright" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="266" />
-<hkern g1="quoteright,quotedblright" 	g2="hyphen,uni00AD,endash,emdash" 	k="37" />
-<hkern g1="quoteright,quotedblright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="125" />
-<hkern g1="quoteright,quotedblright" 	g2="AE" 	k="180" />
-<hkern g1="quoteright,quotedblright" 	g2="f,uniFB01,uniFB02" 	k="37" />
-<hkern g1="quoteright,quotedblright" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="37" />
-<hkern g1="quoteright,quotedblright" 	g2="s" 	k="20" />
-<hkern g1="quoteright,quotedblright" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="23" />
-<hkern g1="quoteright,quotedblright" 	g2="ampersand" 	k="37" />
-<hkern g1="quoteright,quotedblright" 	g2="space" 	k="35" />
-<hkern g1="quoteright,quotedblright" 	g2="guillemotleft,guilsinglleft" 	k="39" />
-<hkern g1="quoteright,quotedblright" 	g2="at" 	k="76" />
-<hkern g1="quoteright,quotedblright" 	g2="slash" 	k="84" />
-<hkern g1="quoteright,quotedblright" 	g2="g" 	k="35" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="quoteright,quotedblright" 	k="41" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="y,yacute,ydieresis" 	k="45" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="T" 	k="53" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="v,w" 	k="45" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="Y,Yacute,Ydieresis" 	k="139" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="V" 	k="100" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="three" 	k="37" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="16" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="quotedbl,quotesingle" 	k="55" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="J" 	k="18" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="W" 	k="90" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="57" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="AE" 	k="70" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="f,uniFB01,uniFB02" 	k="16" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="16" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="25" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="one" 	k="29" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="X" 	k="92" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="four" 	k="63" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="Z" 	k="39" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="m,n,r,ntilde" 	k="16" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="two" 	k="33" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="x" 	k="57" />
-<hkern g1="bar" 	g2="j" 	k="-246" />
-<hkern g1="bar" 	g2="J" 	k="-244" />
-<hkern g1="at" 	g2="Y,Yacute,Ydieresis" 	k="41" />
-<hkern g1="at" 	g2="W" 	k="35" />
-<hkern g1="at" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="57" />
-<hkern g1="at" 	g2="AE" 	k="92" />
-<hkern g1="colon,semicolon" 	g2="Y,Yacute,Ydieresis" 	k="66" />
-<hkern g1="colon,semicolon" 	g2="V" 	k="61" />
-<hkern g1="colon,semicolon" 	g2="W" 	k="55" />
-<hkern g1="nine" 	g2="quotedbl,quotesingle" 	k="57" />
-<hkern g1="guillemotright,guilsinglright" 	g2="quoteright,quotedblright" 	k="53" />
-<hkern g1="guillemotright,guilsinglright" 	g2="y,yacute,ydieresis" 	k="45" />
-<hkern g1="guillemotright,guilsinglright" 	g2="T" 	k="143" />
-<hkern g1="guillemotright,guilsinglright" 	g2="v,w" 	k="43" />
-<hkern g1="guillemotright,guilsinglright" 	g2="Y,Yacute,Ydieresis" 	k="172" />
-<hkern g1="guillemotright,guilsinglright" 	g2="V" 	k="113" />
-<hkern g1="guillemotright,guilsinglright" 	g2="quotedbl,quotesingle" 	k="55" />
-<hkern g1="guillemotright,guilsinglright" 	g2="W" 	k="121" />
-<hkern g1="guillemotright,guilsinglright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="35" />
-<hkern g1="guillemotright,guilsinglright" 	g2="AE" 	k="41" />
-<hkern g1="guillemotright,guilsinglright" 	g2="X" 	k="45" />
-<hkern g1="guillemotright,guilsinglright" 	g2="x" 	k="66" />
-<hkern g1="quoteleft,quotedblleft" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="250" />
-<hkern g1="quoteleft,quotedblleft" 	g2="y,yacute,ydieresis" 	k="-39" />
-<hkern g1="quoteleft,quotedblleft" 	g2="v,w" 	k="-25" />
-<hkern g1="quoteleft,quotedblleft" 	g2="Y,Yacute,Ydieresis" 	k="29" />
-<hkern g1="quoteleft,quotedblleft" 	g2="V" 	k="23" />
-<hkern g1="quoteleft,quotedblleft" 	g2="W" 	k="20" />
-<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="197" />
-<hkern g1="quoteleft,quotedblleft" 	g2="AE" 	k="172" />
-<hkern g1="quoteleft,quotedblleft" 	g2="f,uniFB01,uniFB02" 	k="27" />
-<hkern g1="quoteleft,quotedblleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="20" />
-<hkern g1="quoteleft,quotedblleft" 	g2="g" 	k="16" />
-<hkern g1="quoteleft,quotedblleft" 	g2="X" 	k="18" />
-<hkern g1="three" 	g2="quotedbl,quotesingle" 	k="45" />
-<hkern g1="periodcentered" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="31" />
-<hkern g1="periodcentered" 	g2="h,k,l" 	k="88" />
-<hkern g1="seven" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="76" />
-<hkern g1="seven" 	g2="hyphen,uni00AD,endash,emdash" 	k="25" />
-<hkern g1="slash" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
-<hkern g1="slash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="127" />
-<hkern g1="slash" 	g2="AE" 	k="164" />
-<hkern g1="slash" 	g2="f,uniFB01,uniFB02" 	k="59" />
-<hkern g1="slash" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="61" />
-<hkern g1="slash" 	g2="z" 	k="20" />
-<hkern g1="slash" 	g2="s" 	k="53" />
-<hkern g1="slash" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="55" />
-<hkern g1="slash" 	g2="g" 	k="57" />
-<hkern g1="asterisk" 	g2="Y,Yacute,Ydieresis" 	k="29" />
-<hkern g1="asterisk" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="100" />
-<hkern g1="asterisk" 	g2="AE" 	k="156" />
-<hkern g1="asterisk" 	g2="f,uniFB01,uniFB02" 	k="23" />
-<hkern g1="six" 	g2="quotedbl,quotesingle" 	k="29" />
-<hkern g1="exclamdown" 	g2="Y,Yacute,Ydieresis" 	k="70" />
-<hkern g1="exclamdown" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="29" />
-<hkern g1="exclamdown" 	g2="j" 	k="-313" />
-<hkern g1="exclamdown" 	g2="J" 	k="-305" />
-<hkern g1="exclamdown" 	g2="W" 	k="72" />
-<hkern g1="backslash" 	g2="quoteright,quotedblright" 	k="90" />
-<hkern g1="backslash" 	g2="y,yacute,ydieresis" 	k="66" />
-<hkern g1="backslash" 	g2="T" 	k="57" />
-<hkern g1="backslash" 	g2="v,w" 	k="63" />
-<hkern g1="backslash" 	g2="Y,Yacute,Ydieresis" 	k="100" />
-<hkern g1="backslash" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="33" />
-<hkern g1="backslash" 	g2="quotedbl,quotesingle" 	k="94" />
-<hkern g1="backslash" 	g2="W" 	k="117" />
-<hkern g1="parenleft" 	g2="v,w" 	k="45" />
-<hkern g1="parenleft" 	g2="j" 	k="-307" />
-<hkern g1="parenleft" 	g2="J" 	k="-305" />
-<hkern g1="parenleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="57" />
-<hkern g1="parenleft" 	g2="t" 	k="33" />
-<hkern g1="parenleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="29" />
-<hkern g1="parenleft" 	g2="AE" 	k="27" />
-<hkern g1="parenleft" 	g2="f,uniFB01,uniFB02" 	k="20" />
-<hkern g1="parenleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="66" />
-<hkern g1="parenleft" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="51" />
-<hkern g1="parenleft" 	g2="z" 	k="35" />
-<hkern g1="parenleft" 	g2="s" 	k="45" />
-<hkern g1="parenleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="49" />
-<hkern g1="parenleft" 	g2="m,n,r,ntilde" 	k="29" />
-<hkern g1="parenleft" 	g2="S" 	k="25" />
-<hkern g1="zero" 	g2="quotedbl,quotesingle" 	k="49" />
-<hkern g1="bracketleft" 	g2="Y,Yacute,Ydieresis" 	k="27" />
-<hkern g1="bracketleft" 	g2="j" 	k="-242" />
-<hkern g1="bracketleft" 	g2="J" 	k="-242" />
-<hkern g1="bracketleft" 	g2="W" 	k="27" />
-<hkern g1="bracketleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
-<hkern g1="bracketleft" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-61" />
-<hkern g1="bracketleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-25" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="Y,Yacute,Ydieresis" 	k="43" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="V" 	k="47" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="W" 	k="43" />
-<hkern g1="quotedbl,quotesingle" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="279" />
-<hkern g1="quotedbl,quotesingle" 	g2="hyphen,uni00AD,endash,emdash" 	k="55" />
-<hkern g1="quotedbl,quotesingle" 	g2="five" 	k="41" />
-<hkern g1="quotedbl,quotesingle" 	g2="nine" 	k="47" />
-<hkern g1="quotedbl,quotesingle" 	g2="three" 	k="37" />
-<hkern g1="quotedbl,quotesingle" 	g2="W" 	k="-27" />
-<hkern g1="quotedbl,quotesingle" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="18" />
-<hkern g1="quotedbl,quotesingle" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="135" />
-<hkern g1="quotedbl,quotesingle" 	g2="AE" 	k="186" />
-<hkern g1="quotedbl,quotesingle" 	g2="f,uniFB01,uniFB02" 	k="47" />
-<hkern g1="quotedbl,quotesingle" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="53" />
-<hkern g1="quotedbl,quotesingle" 	g2="s" 	k="39" />
-<hkern g1="quotedbl,quotesingle" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="39" />
-<hkern g1="quotedbl,quotesingle" 	g2="ampersand" 	k="39" />
-<hkern g1="quotedbl,quotesingle" 	g2="space" 	k="41" />
-<hkern g1="quotedbl,quotesingle" 	g2="guillemotleft,guilsinglleft" 	k="55" />
-<hkern g1="quotedbl,quotesingle" 	g2="at" 	k="94" />
-<hkern g1="quotedbl,quotesingle" 	g2="slash" 	k="94" />
-<hkern g1="quotedbl,quotesingle" 	g2="g" 	k="51" />
-<hkern g1="quotedbl,quotesingle" 	g2="four" 	k="197" />
-<hkern g1="quotedbl,quotesingle" 	g2="two" 	k="23" />
-<hkern g1="quotedbl,quotesingle" 	g2="six" 	k="43" />
-<hkern g1="quotedbl,quotesingle" 	g2="zero" 	k="53" />
-</font>
-</defs></svg> 
\ No newline at end of file
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-black-webfont.ttf b/client/assets/fonts/playfairdisplay/playfairdisplay-black-webfont.ttf
deleted file mode 100755
index c8bc1f2a17a9ffc86e05fc5e147f8b7204f26cf6..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-black-webfont.ttf and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-black-webfont.woff b/client/assets/fonts/playfairdisplay/playfairdisplay-black-webfont.woff
deleted file mode 100755
index 2da4f30d6bd2786c25709fba70a2b09cc468560c..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-black-webfont.woff and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-black-webfont.woff2 b/client/assets/fonts/playfairdisplay/playfairdisplay-black-webfont.woff2
deleted file mode 100755
index f9f4170c61b332d470a285beefea7531caf7abf6..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-black-webfont.woff2 and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-blackitalic-demo.html b/client/assets/fonts/playfairdisplay/playfairdisplay-blackitalic-demo.html
deleted file mode 100755
index d9a860d92398629a52ba117b6722827f41bf5e61..0000000000000000000000000000000000000000
--- a/client/assets/fonts/playfairdisplay/playfairdisplay-blackitalic-demo.html
+++ /dev/null
@@ -1,613 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-	<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script>
-	<script src="specimen_files/easytabs.js" type="text/javascript" charset="utf-8"></script>
-	<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" />
-	<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
-
-	<style type="text/css">
-					body{
-				font-family: 'playfair_displayblack_italic';
-							}
-		</style>
-
-	<title>Playfair Display Black Italic Specimen</title>
-	
-	
-	<script type="text/javascript" charset="utf-8">
-		$(document).ready(function() {
-			$('#container').easyTabs({defaultContent:1});
-		});
-	</script>
-</head>
-
-<body>
-<div id="container">
-	<div id="header">
-		Playfair Display Black Italic	</div>
-	<ul class="tabs">
-		<li><a href="#specimen">Specimen</a></li>
-		<li><a href="#layout">Sample Layout</a></li>
-				<li><a href="#glyphs">Glyphs &amp; Languages</a></li>
-		<li><a href="#installing">Installing Webfonts</a></li>
-		
-	</ul>
-	
-	<div id="main_content">
-
-		
-			<div id="specimen">
-		
-				<div class="section">
-					<div class="grid12 firstcol">
-						<div class="huge">AaBb</div>
-					</div>
-				</div>
-		
-				<div class="section">
-					<div class="glyph_range">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>
-				</div>
-				<div class="section">
-					<div class="grid12 firstcol">
-						<table class="sample_table">
-							<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-						</table>
-				
-					</div>
-			
-				</div>
-		
-		
-		
-								<div class="section" id="bodycomparison">
-
-
-										<div id="xheight">
-				<div class="fontbody">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div>
-										<div class="fontbody" style="z-index:1">
-											body<span>Playfair Display Black Italic</span>
-										</div>
-										<div class="arialbody" style="z-index:1">
-											body<span>Arial</span>
-										</div>
-										<div class="verdanabody" style="z-index:1">
-											body<span>Verdana</span>
-										</div>
-										<div class="georgiabody" style="z-index:1">
-											body<span>Georgia</span>
-										</div>
-
-
-
-								</div>
-		
-		
-				<div class="section psample psample_row1" id="">
-					
-					<div class="grid2 firstcol">
-						<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="white_blend"></div>
-					
-				</div>
-				<div class="section psample psample_row2" id="">
-					<div class="grid3 firstcol">
-						<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid5">
-						<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-
-					<div class="white_blend"></div>
-
-				</div>
-				
-				<div class="section psample psample_row3" id="">
-					<div class="grid5 firstcol">
-						<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="grid7">
-						<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					
-					<div class="white_blend"></div>
-					
-				</div>
-				
-				<div class="section psample psample_row4" id="">
-					<div class="grid12 firstcol">
-						<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="white_blend"></div>
-					
-				</div>
-				
-				
-				
-				<div class="section psample psample_row1 fullreverse">
-					<div class="grid2 firstcol">
-						<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				<div class="section psample psample_row2 fullreverse">
-					<div class="grid3 firstcol">
-						<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid5">
-						<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="black_blend"></div>
-
-				</div>
-				
-				<div class="section psample fullreverse psample_row3" id="">
-					<div class="grid5 firstcol">
-						<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="grid7">
-						<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
-					<div class="grid12 firstcol">
-						<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				
-				
-				
-			</div>
-			
-			<div id="layout">
-				
-				<div class="section">
-					
-					<div class="grid12 firstcol">
-						<h1>Lorem Ipsum Dolor</h1>
-						<h2>Etiam porta sem malesuada magna mollis euismod</h2>
-						
-						<p class="byline">By <a href="#link">Aenean Lacinia</a></p>
-					</div>
-				</div>
-				<div class="section">
-					<div class="grid8 firstcol">
-						<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-						
-						<h3>Pellentesque ornare sem</h3>
-
-						<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
-
-						<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
-
-						<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
-
-						<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
-
-						<h3>Cras mattis consectetur</h3>
-
-						<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
-
-						<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
-					</div>
-					
-					<div class="grid4 sidebar">
-						
-						<div class="box reverse">
-							<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
-						</div>
-						
-						<p class="caption">Maecenas sed diam eget risus varius.</p>
-
-						<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-					
-
-						<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
-
-						<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-					</div>
-				</div>
-				
-			</div>
-
-
-			
-
-
-
-		<div id="glyphs">
-			<div class="section">
-				<div class="grid12 firstcol">
-			
-				<h1>Language Support</h1>
-				<p>The subset of Playfair Display Black Italic in this kit supports the following languages:<br />
-			
-					Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Swedish				</p>
-				<h1>Glyph Chart</h1>
-				<p>The subset of Playfair Display Black Italic in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p>
-				<div id="glyph_chart">
-			
-																				 <div><p>&amp;#13;</p>&#13;</div>
-																				 <div><p>&amp;#32;</p>&#32;</div>
-																				 <div><p>&amp;#33;</p>&#33;</div>
-																				 <div><p>&amp;#34;</p>&#34;</div>
-																				 <div><p>&amp;#35;</p>&#35;</div>
-																				 <div><p>&amp;#36;</p>&#36;</div>
-																				 <div><p>&amp;#37;</p>&#37;</div>
-																				 <div><p>&amp;#38;</p>&#38;</div>
-																				 <div><p>&amp;#39;</p>&#39;</div>
-																				 <div><p>&amp;#40;</p>&#40;</div>
-																				 <div><p>&amp;#41;</p>&#41;</div>
-																				 <div><p>&amp;#42;</p>&#42;</div>
-																				 <div><p>&amp;#43;</p>&#43;</div>
-																				 <div><p>&amp;#44;</p>&#44;</div>
-																				 <div><p>&amp;#45;</p>&#45;</div>
-																				 <div><p>&amp;#46;</p>&#46;</div>
-																				 <div><p>&amp;#47;</p>&#47;</div>
-																				 <div><p>&amp;#48;</p>&#48;</div>
-																				 <div><p>&amp;#49;</p>&#49;</div>
-																				 <div><p>&amp;#50;</p>&#50;</div>
-																				 <div><p>&amp;#51;</p>&#51;</div>
-																				 <div><p>&amp;#52;</p>&#52;</div>
-																				 <div><p>&amp;#53;</p>&#53;</div>
-																				 <div><p>&amp;#54;</p>&#54;</div>
-																				 <div><p>&amp;#55;</p>&#55;</div>
-																				 <div><p>&amp;#56;</p>&#56;</div>
-																				 <div><p>&amp;#57;</p>&#57;</div>
-																				 <div><p>&amp;#58;</p>&#58;</div>
-																				 <div><p>&amp;#59;</p>&#59;</div>
-																				 <div><p>&amp;#60;</p>&#60;</div>
-																				 <div><p>&amp;#61;</p>&#61;</div>
-																				 <div><p>&amp;#62;</p>&#62;</div>
-																				 <div><p>&amp;#63;</p>&#63;</div>
-																				 <div><p>&amp;#64;</p>&#64;</div>
-																				 <div><p>&amp;#65;</p>&#65;</div>
-																				 <div><p>&amp;#66;</p>&#66;</div>
-																				 <div><p>&amp;#67;</p>&#67;</div>
-																				 <div><p>&amp;#68;</p>&#68;</div>
-																				 <div><p>&amp;#69;</p>&#69;</div>
-																				 <div><p>&amp;#70;</p>&#70;</div>
-																				 <div><p>&amp;#71;</p>&#71;</div>
-																				 <div><p>&amp;#72;</p>&#72;</div>
-																				 <div><p>&amp;#73;</p>&#73;</div>
-																				 <div><p>&amp;#74;</p>&#74;</div>
-																				 <div><p>&amp;#75;</p>&#75;</div>
-																				 <div><p>&amp;#76;</p>&#76;</div>
-																				 <div><p>&amp;#77;</p>&#77;</div>
-																				 <div><p>&amp;#78;</p>&#78;</div>
-																				 <div><p>&amp;#79;</p>&#79;</div>
-																				 <div><p>&amp;#80;</p>&#80;</div>
-																				 <div><p>&amp;#81;</p>&#81;</div>
-																				 <div><p>&amp;#82;</p>&#82;</div>
-																				 <div><p>&amp;#83;</p>&#83;</div>
-																				 <div><p>&amp;#84;</p>&#84;</div>
-																				 <div><p>&amp;#85;</p>&#85;</div>
-																				 <div><p>&amp;#86;</p>&#86;</div>
-																				 <div><p>&amp;#87;</p>&#87;</div>
-																				 <div><p>&amp;#88;</p>&#88;</div>
-																				 <div><p>&amp;#89;</p>&#89;</div>
-																				 <div><p>&amp;#90;</p>&#90;</div>
-																				 <div><p>&amp;#91;</p>&#91;</div>
-																				 <div><p>&amp;#92;</p>&#92;</div>
-																				 <div><p>&amp;#93;</p>&#93;</div>
-																				 <div><p>&amp;#94;</p>&#94;</div>
-																				 <div><p>&amp;#95;</p>&#95;</div>
-																				 <div><p>&amp;#96;</p>&#96;</div>
-																				 <div><p>&amp;#97;</p>&#97;</div>
-																				 <div><p>&amp;#98;</p>&#98;</div>
-																				 <div><p>&amp;#99;</p>&#99;</div>
-																				 <div><p>&amp;#100;</p>&#100;</div>
-																				 <div><p>&amp;#101;</p>&#101;</div>
-																				 <div><p>&amp;#102;</p>&#102;</div>
-																				 <div><p>&amp;#103;</p>&#103;</div>
-																				 <div><p>&amp;#104;</p>&#104;</div>
-																				 <div><p>&amp;#105;</p>&#105;</div>
-																				 <div><p>&amp;#106;</p>&#106;</div>
-																				 <div><p>&amp;#107;</p>&#107;</div>
-																				 <div><p>&amp;#108;</p>&#108;</div>
-																				 <div><p>&amp;#109;</p>&#109;</div>
-																				 <div><p>&amp;#110;</p>&#110;</div>
-																				 <div><p>&amp;#111;</p>&#111;</div>
-																				 <div><p>&amp;#112;</p>&#112;</div>
-																				 <div><p>&amp;#113;</p>&#113;</div>
-																				 <div><p>&amp;#114;</p>&#114;</div>
-																				 <div><p>&amp;#115;</p>&#115;</div>
-																				 <div><p>&amp;#116;</p>&#116;</div>
-																				 <div><p>&amp;#117;</p>&#117;</div>
-																				 <div><p>&amp;#118;</p>&#118;</div>
-																				 <div><p>&amp;#119;</p>&#119;</div>
-																				 <div><p>&amp;#120;</p>&#120;</div>
-																				 <div><p>&amp;#121;</p>&#121;</div>
-																				 <div><p>&amp;#122;</p>&#122;</div>
-																				 <div><p>&amp;#123;</p>&#123;</div>
-																				 <div><p>&amp;#124;</p>&#124;</div>
-																				 <div><p>&amp;#125;</p>&#125;</div>
-																				 <div><p>&amp;#126;</p>&#126;</div>
-																				 <div><p>&amp;#160;</p>&#160;</div>
-																				 <div><p>&amp;#161;</p>&#161;</div>
-																				 <div><p>&amp;#162;</p>&#162;</div>
-																				 <div><p>&amp;#163;</p>&#163;</div>
-																				 <div><p>&amp;#164;</p>&#164;</div>
-																				 <div><p>&amp;#165;</p>&#165;</div>
-																				 <div><p>&amp;#166;</p>&#166;</div>
-																				 <div><p>&amp;#167;</p>&#167;</div>
-																				 <div><p>&amp;#168;</p>&#168;</div>
-																				 <div><p>&amp;#169;</p>&#169;</div>
-																				 <div><p>&amp;#170;</p>&#170;</div>
-																				 <div><p>&amp;#171;</p>&#171;</div>
-																				 <div><p>&amp;#172;</p>&#172;</div>
-																				 <div><p>&amp;#173;</p>&#173;</div>
-																				 <div><p>&amp;#174;</p>&#174;</div>
-																				 <div><p>&amp;#175;</p>&#175;</div>
-																				 <div><p>&amp;#176;</p>&#176;</div>
-																				 <div><p>&amp;#177;</p>&#177;</div>
-																				 <div><p>&amp;#178;</p>&#178;</div>
-																				 <div><p>&amp;#179;</p>&#179;</div>
-																				 <div><p>&amp;#180;</p>&#180;</div>
-																				 <div><p>&amp;#182;</p>&#182;</div>
-																				 <div><p>&amp;#183;</p>&#183;</div>
-																				 <div><p>&amp;#184;</p>&#184;</div>
-																				 <div><p>&amp;#185;</p>&#185;</div>
-																				 <div><p>&amp;#186;</p>&#186;</div>
-																				 <div><p>&amp;#187;</p>&#187;</div>
-																				 <div><p>&amp;#188;</p>&#188;</div>
-																				 <div><p>&amp;#189;</p>&#189;</div>
-																				 <div><p>&amp;#190;</p>&#190;</div>
-																				 <div><p>&amp;#191;</p>&#191;</div>
-																				 <div><p>&amp;#192;</p>&#192;</div>
-																				 <div><p>&amp;#193;</p>&#193;</div>
-																				 <div><p>&amp;#194;</p>&#194;</div>
-																				 <div><p>&amp;#195;</p>&#195;</div>
-																				 <div><p>&amp;#196;</p>&#196;</div>
-																				 <div><p>&amp;#197;</p>&#197;</div>
-																				 <div><p>&amp;#198;</p>&#198;</div>
-																				 <div><p>&amp;#199;</p>&#199;</div>
-																				 <div><p>&amp;#200;</p>&#200;</div>
-																				 <div><p>&amp;#201;</p>&#201;</div>
-																				 <div><p>&amp;#202;</p>&#202;</div>
-																				 <div><p>&amp;#203;</p>&#203;</div>
-																				 <div><p>&amp;#204;</p>&#204;</div>
-																				 <div><p>&amp;#205;</p>&#205;</div>
-																				 <div><p>&amp;#206;</p>&#206;</div>
-																				 <div><p>&amp;#207;</p>&#207;</div>
-																				 <div><p>&amp;#208;</p>&#208;</div>
-																				 <div><p>&amp;#209;</p>&#209;</div>
-																				 <div><p>&amp;#210;</p>&#210;</div>
-																				 <div><p>&amp;#211;</p>&#211;</div>
-																				 <div><p>&amp;#212;</p>&#212;</div>
-																				 <div><p>&amp;#213;</p>&#213;</div>
-																				 <div><p>&amp;#214;</p>&#214;</div>
-																				 <div><p>&amp;#215;</p>&#215;</div>
-																				 <div><p>&amp;#216;</p>&#216;</div>
-																				 <div><p>&amp;#217;</p>&#217;</div>
-																				 <div><p>&amp;#218;</p>&#218;</div>
-																				 <div><p>&amp;#219;</p>&#219;</div>
-																				 <div><p>&amp;#220;</p>&#220;</div>
-																				 <div><p>&amp;#221;</p>&#221;</div>
-																				 <div><p>&amp;#222;</p>&#222;</div>
-																				 <div><p>&amp;#223;</p>&#223;</div>
-																				 <div><p>&amp;#224;</p>&#224;</div>
-																				 <div><p>&amp;#225;</p>&#225;</div>
-																				 <div><p>&amp;#226;</p>&#226;</div>
-																				 <div><p>&amp;#227;</p>&#227;</div>
-																				 <div><p>&amp;#228;</p>&#228;</div>
-																				 <div><p>&amp;#229;</p>&#229;</div>
-																				 <div><p>&amp;#230;</p>&#230;</div>
-																				 <div><p>&amp;#231;</p>&#231;</div>
-																				 <div><p>&amp;#232;</p>&#232;</div>
-																				 <div><p>&amp;#233;</p>&#233;</div>
-																				 <div><p>&amp;#234;</p>&#234;</div>
-																				 <div><p>&amp;#235;</p>&#235;</div>
-																				 <div><p>&amp;#236;</p>&#236;</div>
-																				 <div><p>&amp;#237;</p>&#237;</div>
-																				 <div><p>&amp;#238;</p>&#238;</div>
-																				 <div><p>&amp;#239;</p>&#239;</div>
-																				 <div><p>&amp;#240;</p>&#240;</div>
-																				 <div><p>&amp;#241;</p>&#241;</div>
-																				 <div><p>&amp;#242;</p>&#242;</div>
-																				 <div><p>&amp;#243;</p>&#243;</div>
-																				 <div><p>&amp;#244;</p>&#244;</div>
-																				 <div><p>&amp;#245;</p>&#245;</div>
-																				 <div><p>&amp;#246;</p>&#246;</div>
-																				 <div><p>&amp;#247;</p>&#247;</div>
-																				 <div><p>&amp;#248;</p>&#248;</div>
-																				 <div><p>&amp;#249;</p>&#249;</div>
-																				 <div><p>&amp;#250;</p>&#250;</div>
-																				 <div><p>&amp;#251;</p>&#251;</div>
-																				 <div><p>&amp;#252;</p>&#252;</div>
-																				 <div><p>&amp;#253;</p>&#253;</div>
-																				 <div><p>&amp;#254;</p>&#254;</div>
-																				 <div><p>&amp;#255;</p>&#255;</div>
-																				 <div><p>&amp;#338;</p>&#338;</div>
-																				 <div><p>&amp;#339;</p>&#339;</div>
-																				 <div><p>&amp;#376;</p>&#376;</div>
-																				 <div><p>&amp;#710;</p>&#710;</div>
-																				 <div><p>&amp;#732;</p>&#732;</div>
-																				 <div><p>&amp;#8192;</p>&#8192;</div>
-																				 <div><p>&amp;#8193;</p>&#8193;</div>
-																				 <div><p>&amp;#8194;</p>&#8194;</div>
-																				 <div><p>&amp;#8195;</p>&#8195;</div>
-																				 <div><p>&amp;#8196;</p>&#8196;</div>
-																				 <div><p>&amp;#8197;</p>&#8197;</div>
-																				 <div><p>&amp;#8198;</p>&#8198;</div>
-																				 <div><p>&amp;#8199;</p>&#8199;</div>
-																				 <div><p>&amp;#8200;</p>&#8200;</div>
-																				 <div><p>&amp;#8201;</p>&#8201;</div>
-																				 <div><p>&amp;#8202;</p>&#8202;</div>
-																				 <div><p>&amp;#8208;</p>&#8208;</div>
-																				 <div><p>&amp;#8209;</p>&#8209;</div>
-																				 <div><p>&amp;#8210;</p>&#8210;</div>
-																				 <div><p>&amp;#8211;</p>&#8211;</div>
-																				 <div><p>&amp;#8212;</p>&#8212;</div>
-																				 <div><p>&amp;#8216;</p>&#8216;</div>
-																				 <div><p>&amp;#8217;</p>&#8217;</div>
-																				 <div><p>&amp;#8218;</p>&#8218;</div>
-																				 <div><p>&amp;#8220;</p>&#8220;</div>
-																				 <div><p>&amp;#8221;</p>&#8221;</div>
-																				 <div><p>&amp;#8222;</p>&#8222;</div>
-																				 <div><p>&amp;#8226;</p>&#8226;</div>
-																				 <div><p>&amp;#8230;</p>&#8230;</div>
-																				 <div><p>&amp;#8239;</p>&#8239;</div>
-																				 <div><p>&amp;#8249;</p>&#8249;</div>
-																				 <div><p>&amp;#8250;</p>&#8250;</div>
-																				 <div><p>&amp;#8287;</p>&#8287;</div>
-																				 <div><p>&amp;#8364;</p>&#8364;</div>
-																				 <div><p>&amp;#8482;</p>&#8482;</div>
-																				 <div><p>&amp;#9724;</p>&#9724;</div>
-																				 <div><p>&amp;#64257;</p>&#64257;</div>
-																				 <div><p>&amp;#64258;</p>&#64258;</div>
-																				 <div><p>&amp;#64259;</p>&#64259;</div>
-																				 <div><p>&amp;#64260;</p>&#64260;</div>
-																																																</div>	
-				</div>
-		
-		
-			</div>
-		</div>
-		
-		
-		<div id="specs">
-			
-		</div>
-	
-		<div id="installing">
-			<div class="section">
-				<div class="grid7 firstcol">
-					<h1>Installing Webfonts</h1>
-					
-					<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
-					
-					<h2>1. Upload your webfonts</h2>
-					<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
-					
-					<h2>2. Include the webfont stylesheet</h2>
-					<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p>
-
-
-<code>
-@font-face{ 
-	font-family: 'MyWebFont';
-	src: url('WebFont.eot');
-	src: url('WebFont.eot?#iefix') format('embedded-opentype'),
-	     url('WebFont.woff') format('woff'),
-	     url('WebFont.ttf') format('truetype'),
-	     url('WebFont.svg#webfont') format('svg');
-}
-</code>
-
-	<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
-	<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>
-
-					<h2>3. Modify your own stylesheet</h2>
-					<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
-<code>p { font-family: 'WebFont', Arial, sans-serif; }</code>
-
-<h2>4. Test</h2>
-<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
-				</div>
-				
-				<div class="grid5 sidebar">
-					<div class="box">
-						<h2>Troubleshooting<br />Font-Face Problems</h2>
-						<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
-
-						<h3>Fonts not showing in any browser</h3>
-
-						<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
-
-						<h3>Fonts not loading in iPhone or iPad</h3>
-
-						<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
-
-						<h3>Fonts not loading in Firefox</h3>
-
-						<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
-
-						<h3>Fonts not loading in IE</h3>
-
-						<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
-
-						<h3>Fonts not loading in IE9</h3>
-
-						<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
-					</div>
-				</div>
-			</div>
-			
-		</div>
-	
-	</div>
-	<div id="footer">
-		<p>&copy;2010-2011 Font Squirrel. All rights reserved.</p>
-	</div>
-</div>
-</body>
-</html>
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-blackitalic-webfont.eot b/client/assets/fonts/playfairdisplay/playfairdisplay-blackitalic-webfont.eot
deleted file mode 100755
index 4b29dc66c595d48d960ce970ceef2c026dc8c859..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-blackitalic-webfont.eot and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-blackitalic-webfont.svg b/client/assets/fonts/playfairdisplay/playfairdisplay-blackitalic-webfont.svg
deleted file mode 100755
index a9d3ea75d4a72eedf7af4eef88846e4f0e6a0d6f..0000000000000000000000000000000000000000
--- a/client/assets/fonts/playfairdisplay/playfairdisplay-blackitalic-webfont.svg
+++ /dev/null
@@ -1,588 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
-<metadata></metadata>
-<defs>
-<font id="playfair_displayblack_italic" horiz-adv-x="1192" >
-<font-face units-per-em="2048" ascent="1638" descent="-410" />
-<missing-glyph horiz-adv-x="526" />
-<glyph unicode="&#xfb01;" horiz-adv-x="1268" d="M-119 -385l378 1405h-163l13 41h161q47 160 122 266t186 168q108 60 231.5 83.5t292.5 23.5q109 0 170 -30q78 -34 78 -110q0 -63 -33.5 -111.5t-91 -75t-127.5 -26.5q-89 0 -134.5 34.5t-45.5 100.5q0 128 102 178q-106 -12 -174 -57q-61 -39 -102.5 -110t-73.5 -185 l-40 -149h236q213 3 371 31l-264 -918q-9 -27 -9 -50q0 -36 33 -36q61 0 109 129l43 115h39l-51 -150q-41 -115 -126 -163t-177 -48q-100 0 -151.5 53t-51.5 151q0 65 24 149l199 696h-235l-367 -1376q-203 -3 -371 -29z" />
-<glyph unicode="&#xfb02;" horiz-adv-x="1286" d="M-119 -385l378 1405h-163l13 41h161q39 136 94 229t134 150q139 100 370 104q163 1 293 22t256 62l-432 -1454q-6 -22 -6 -38q0 -25 11.5 -36.5t27.5 -11.5q20 0 47.5 25.5t56.5 103.5l43 115h39l-51 -150q-41 -119 -121 -165t-170 -46q-102 0 -159 53t-57 155 q0 63 24 145l313 1042q10 37 10 57q0 39 -29 57.5t-97 20.5q-58 -2 -93 -28q-43 -37 -69 -134l-74 -278h162l-13 -41h-160l-368 -1376q-203 -3 -371 -29z" />
-<glyph horiz-adv-x="0" />
-<glyph horiz-adv-x="682" />
-<glyph unicode="&#xd;" horiz-adv-x="0" />
-<glyph unicode=" "  horiz-adv-x="526" />
-<glyph unicode="&#x09;" horiz-adv-x="526" />
-<glyph unicode="&#xa0;" horiz-adv-x="526" />
-<glyph unicode="!" horiz-adv-x="713" d="M74 106q0 63 30 112.5t82 77.5t117 28q79 0 120.5 -35.5t41.5 -104.5q0 -54 -31 -103t-84 -79.5t-116 -30.5q-79 0 -119.5 34.5t-40.5 100.5zM279 408q30 130 30 293q0 68 -7 207.5t-7 213.5q0 117 27.5 226t93 181.5t172.5 72.5q82 0 127 -47.5t45 -141.5 q0 -104 -49 -213.5t-195.5 -360t-200.5 -438.5z" />
-<glyph unicode="&#x22;" horiz-adv-x="930" d="M276 1278q0 57 26.5 107t75 80t109.5 30q59 0 95.5 -31t38.5 -86q0 -60 -35 -120t-108.5 -155t-100.5 -145h-29q-11 73 -31.5 139t-30.5 104.5t-10 76.5zM682 1278q0 57 26.5 107t75 80t109.5 30q59 0 95.5 -31t38.5 -86q0 -60 -35 -120t-108.5 -155t-100.5 -145h-29 q-11 73 -31.5 139t-30.5 104.5t-10 76.5z" />
-<glyph unicode="#" horiz-adv-x="1262" d="M53 506l19 41h300l159 342h-300l17 41h302l140 303h49l-140 -303h334l140 303h49l-140 -303h292l-17 -41h-294l-159 -342h294l-21 -41h-292l-138 -299h-49l138 299h-334l-138 -299h-49l138 299h-300zM421 547h334l159 342h-334z" />
-<glyph unicode="$" horiz-adv-x="1329" d="M10 322q0 69 22 124t63 87t95 32q79 0 127 -55t48 -145q0 -79 -31.5 -150t-75.5 -139q50 -31 122 -46l152 547q-88 82 -147 148t-98 141.5t-39 155.5q0 166 81 268t202.5 145.5t251.5 43.5l67 241h45l-67 -242q68 -1 124 -10l70 252h45l-72 -260q97 -21 189 -76 q153 -91 153 -256q0 -69 -22 -124t-63 -87t-95 -32q-78 0 -126 55t-48 145q0 79 31.5 150t75.5 139q-44 27 -108 42l-139 -501q123 -106 189 -170.5t116 -147.5t50 -171q0 -167 -96 -267.5t-235 -142.5t-286 -45l-67 -241h-45l67 241q-68 1 -125 9l-69 -250h-45l71 257 q-107 21 -204 79q-154 91 -154 256zM424 24q45 -6 98 -6h27l120 431q-33 33 -101 95zM595 21q115 12 161.5 62.5t46.5 135.5q0 83 -99 193zM598 1245q0 -75 74 -165l97 348q-76 -12 -123.5 -59t-47.5 -124zM707 1042q37 -40 100 -95l133 477q-55 8 -121 8h-4z" />
-<glyph unicode="%" horiz-adv-x="1671" d="M28 -86l1706 1774l31 -27l-1706 -1774zM229 1151q0 98 64 193t175.5 155t246.5 60t212 -67.5t77 -186.5q0 -98 -63.5 -193t-174.5 -155t-246 -60q-136 0 -213.5 66.5t-77.5 187.5zM489 1051q0 -60 12 -93.5t34 -33.5q63 0 110.5 80t72.5 194t25 209q0 59 -11.5 92 t-33.5 33q-63 0 -110.5 -80t-73 -193.5t-25.5 -207.5zM758 225q0 98 64 193t175.5 155t245.5 60q135 0 212 -67t77 -187q0 -98 -63.5 -193t-174.5 -155t-245 -60q-137 0 -214 66.5t-77 187.5zM1018 125q0 -60 11.5 -93.5t33.5 -33.5q63 0 110.5 80t73 194t25.5 209 q0 58 -12 91.5t-33 33.5q-63 0 -110.5 -80t-73 -193.5t-25.5 -207.5z" />
-<glyph unicode="&#x26;" horiz-adv-x="1831" d="M47 432q0 139 75 254.5t216 196.5t334 116q-105 28 -155 81.5t-50 121.5q0 76 56 129.5t146.5 80t192.5 26.5q133 0 197.5 -42.5t64.5 -113.5q0 -44 -22.5 -74.5t-56.5 -45.5t-68 -15l-2 37q43 0 72.5 27t29.5 65q0 36 -30 58t-82 22q-67 0 -129.5 -35.5t-102 -100.5 t-39.5 -147q0 -31 6 -61q75 12 129 12q74 0 74 -43q0 -22 -18.5 -32.5t-44.5 -10.5q-49 0 -142 45q-58 -26 -106.5 -92t-76.5 -156.5t-28 -187.5q0 -189 110 -286t321 -97q136 0 258.5 40t201 125.5t78.5 215.5q0 88 -38 151q-128 -39 -236 -71.5t-197 -59.5 q-92 -27 -134 -64.5t-42 -90.5q0 -54 36.5 -76.5t90.5 -22.5q80 0 137 41t80 90l35 -14q-16 -38 -51 -74.5t-88.5 -61t-120.5 -24.5q-68 0 -127.5 26.5t-97 84t-37.5 143.5q0 130 92 226.5t278 152.5q122 37 258 77.5t285 86.5q93 28 142.5 48t90.5 60.5t41 104.5 q0 51 -27 89t-73 57.5t-102 19.5q-33 0 -56 -8q119 -46 119 -148q0 -52 -31 -90.5t-80.5 -59t-103.5 -20.5q-53 0 -95.5 20.5t-66.5 57t-24 82.5q0 61 38.5 104.5t104.5 67.5q70 29 178 29q293 0 293 -299q0 -129 -54.5 -217.5t-157 -147.5t-263.5 -108q47 -77 47 -177 q0 -133 -86 -262t-262.5 -213t-431.5 -84q-192 0 -344 51t-240 155t-88 255z" />
-<glyph unicode="'" horiz-adv-x="524" d="M276 1278q0 57 26.5 107t75 80t109.5 30q59 0 95.5 -31t38.5 -86q0 -60 -35 -120t-108.5 -155t-100.5 -145h-29q-11 73 -31.5 139t-30.5 104.5t-10 76.5z" />
-<glyph unicode="(" horiz-adv-x="860" d="M70 457q0 222 130 443.5t358.5 414.5t521.5 336l20 -27q-213 -161 -359.5 -341t-227.5 -408t-81 -512q0 -197 34.5 -358t109.5 -351l-37 -27q-154 128 -255 249t-157.5 264t-56.5 317z" />
-<glyph unicode=")" horiz-adv-x="862" d="M-219 -346q213 161 359.5 341t227.5 408t81 512q0 197 -34.5 358t-109.5 351l37 27q154 -128 255 -249t157.5 -264t56.5 -317q0 -222 -130 -443.5t-358.5 -414.5t-521.5 -336z" />
-<glyph unicode="*" horiz-adv-x="977" d="M173 885q0 73 83 114q36 18 81 26.5t126.5 17.5t128.5 16q-40 6 -120 16t-120.5 19t-64.5 26q-39 25 -39 67q0 43 39 89q50 63 108 63q30 0 56 -18q27 -18 47.5 -51t52.5 -97t51 -100q-5 41 -15 95t-16 92.5t-6 67.5q0 28 6 54q15 57 55 84t89 27q40 0 66 -19t26 -58 q0 -18 -4 -34q-9 -34 -32.5 -73.5t-72 -112t-76.5 -116.5q35 33 99.5 97.5t101 96.5t68.5 49q38 18 65 18q30 0 50 -17.5t28 -45.5q8 -21 8 -42q0 -73 -84 -114q-35 -18 -79.5 -26.5t-124.5 -17.5t-126 -16q39 -6 117.5 -16t118.5 -19t64 -26q39 -25 39 -66t-39 -89 q-50 -63 -108 -63q-30 0 -56 18t-46.5 50.5t-52.5 95.5t-51 97q6 -38 15.5 -90.5t15 -91t5.5 -67.5q0 -31 -7 -56q-14 -57 -54 -83.5t-87 -26.5q-42 0 -68.5 18t-26.5 57q0 13 5 35q9 36 33 77t73.5 114t76.5 115q-37 -35 -102 -100t-101 -97t-68 -49q-37 -18 -65 -18 q-30 0 -50.5 18t-28.5 45q-7 18 -7 41z" />
-<glyph unicode="+" horiz-adv-x="1165" d="M94 696l19 62h477l137 483h74l-137 -483h475l-19 -62h-475l-137 -481h-74l137 481h-477z" />
-<glyph unicode="," horiz-adv-x="635" d="M-2 106q0 63 30 112.5t82 77.5t117 28q166 0 166 -168q0 -144 -82 -260.5t-225 -178.5l-10 37q90 38 154.5 113t70.5 168q-61 -64 -143 -64q-77 0 -118.5 34.5t-41.5 100.5z" />
-<glyph unicode="-" horiz-adv-x="1038" d="M109 455l55 202h739l-55 -202h-739z" />
-<glyph unicode="." horiz-adv-x="618" d="M-2 106q0 63 30 112.5t82 77.5t117 28q79 0 120.5 -35.5t41.5 -104.5q0 -54 -31 -103t-84 -79.5t-116 -30.5q-79 0 -119.5 34.5t-40.5 100.5z" />
-<glyph unicode="/" horiz-adv-x="934" d="M-96 -29l1122 1508h68l-1123 -1508h-67z" />
-<glyph unicode="0" horiz-adv-x="1350" d="M39 352q0 183 106.5 354.5t285.5 278.5t384 107q140 0 243 -46.5t158.5 -132.5t55.5 -202q0 -183 -107 -354.5t-286.5 -278.5t-382.5 -107q-139 0 -242 46.5t-159 132.5t-56 202zM412 297q0 -144 31.5 -216.5t80.5 -72.5q112 0 197.5 114.5t131.5 291t46 352.5 q0 145 -31.5 217t-81.5 72q-112 0 -197.5 -114t-131 -290t-45.5 -354z" />
-<glyph unicode="1" horiz-adv-x="801" d="M82 0l254 850q-68 -21 -250 -59l6 43q153 33 269.5 74t197.5 82.5t170 94.5h41l-326 -1085h-362z" />
-<glyph unicode="2" horiz-adv-x="1139" d="M-55 0l10 43q24 20 228 173.5t350.5 328t146.5 323.5q0 80 -42 119t-114 39q-83 0 -165 -45.5t-134.5 -117.5t-52.5 -146q0 -50 27.5 -74.5t89.5 -24.5q55 0 97 20t93 64l25 -28q-54 -51 -113.5 -75t-114.5 -24q-63 0 -108 31t-45 109q0 92 69 179t194.5 142.5 t285.5 55.5q111 0 192.5 -28t125.5 -79t44 -117q0 -120 -122.5 -215.5t-309 -194.5t-240.5 -136q41 0 113 -18.5t119 -29t104 -10.5q88 0 143.5 25.5t55.5 72.5q0 54 -66 91l21 26q62 -35 88.5 -78t26.5 -104q0 -80 -38.5 -150.5t-120 -114.5t-202.5 -44q-69 0 -156 19 t-151.5 31t-136.5 12q-63 0 -107.5 -11.5t-109.5 -38.5z" />
-<glyph unicode="3" horiz-adv-x="1104" d="M-186 -309l10 37q171 11 342.5 79.5t286 192.5t114.5 293q0 82 -24 132t-68 54q-48 -19 -72 -27t-47 -8q-36 0 -36 21q0 2 2 10q8 38 97 38q26 0 40 -1q100 46 160.5 124.5t60.5 184.5q0 87 -54 136t-153 49q-73 0 -140.5 -33t-109 -86.5t-41.5 -108.5q0 -50 28 -74 t91 -24q69 0 127 31l23 -31q-80 -43 -164 -43q-63 0 -108.5 31t-45.5 108q0 75 68 148.5t185.5 120.5t256.5 47q114 0 199 -26t130.5 -73t45.5 -108q0 -92 -76 -167.5t-191.5 -127t-238.5 -78.5q198 -3 314 -65.5t116 -198.5q0 -158 -181.5 -284t-447 -198t-499.5 -75z" />
-<glyph unicode="4" horiz-adv-x="1124" d="M-127 111l12 43l1041 938h53l-252 -938h262l-12 -43h-262l-107 -400h-362l108 400h-481zM-54 154h420l135 500z" />
-<glyph unicode="5" horiz-adv-x="983" d="M-190 -303l10 37q144 0 293.5 68t248.5 192.5t99 286.5q0 95 -41 143.5t-135 48.5q-88 0 -185 -55l-20 10l268 633q41 2 78 -4t118.5 -26.5t145.5 -20.5q72 0 120 20t83 72l25 -15q-56 -154 -137.5 -240.5t-184.5 -86.5q-30 0 -63 9.5t-106.5 36t-114.5 26.5 q-13 0 -19 -1l-164 -370q133 74 336 74q375 0 375 -250q0 -173 -166 -305t-407 -205t-457 -78z" />
-<glyph unicode="6" horiz-adv-x="1214" d="M45 354q0 275 180.5 520.5t440.5 407t481 197.5l12 -41q-182 -54 -353 -216t-280.5 -418t-109.5 -573q0 -86 8.5 -133.5t26 -66.5t45.5 -19q72 0 134.5 100t100 243t37.5 257q0 88 -22.5 126t-57.5 38q-42 0 -83 -46t-66 -140l-35 10q41 157 124 227t206 70q90 0 160 -35 t110.5 -105.5t40.5 -170.5q0 -158 -97 -300t-261 -228.5t-355 -86.5q-387 0 -387 383z" />
-<glyph unicode="7" horiz-adv-x="1053" d="M78 762q0 81 35.5 151.5t112.5 115t194 44.5q90 0 198.5 -29.5t176 -45t160.5 -15.5q56 0 98.5 16.5t74.5 61.5h60q-230 -254 -335 -386t-176.5 -280t-127.5 -370q-22 -90 -26 -118t-7 -44q-14 -73 -70.5 -119.5t-150.5 -46.5q-161 0 -161 147q0 41 13 90q50 183 224 373 t403.5 394t295.5 269q-56 -36 -168 -111t-175.5 -102.5t-134.5 -27.5q-45 0 -80 9t-98.5 34t-114.5 25q-58 0 -94.5 -27t-36.5 -84q0 -71 59 -117.5t164 -70.5l-10 -35q-303 62 -303 299z" />
-<glyph unicode="8" horiz-adv-x="1219" d="M-23 242q0 147 154 272t383 211q-68 63 -108 108.5t-67.5 104t-27.5 129.5q0 120 79.5 214t211.5 146t283 52q167 0 272 -56.5t105 -165.5q0 -211 -453 -413q22 -19 102 -88t122 -144.5t42 -160.5q0 -134 -93.5 -244t-247.5 -173t-326 -63q-121 0 -218.5 29t-155 90 t-57.5 152zM342 207q0 -96 28 -147.5t93 -51.5q66 0 129 49t102 128.5t39 166.5q0 74 -26 135t-66.5 109t-102.5 106q-87 -83 -141.5 -215.5t-54.5 -279.5zM633 1155q0 -85 38.5 -151.5t108.5 -132.5q59 76 95 184t36 223q0 164 -86 164q-47 0 -91.5 -42t-72.5 -108.5 t-28 -136.5z" />
-<glyph unicode="9" d="M25 477q0 158 96.5 300t260.5 228.5t355 86.5q387 0 387 -383q0 -266 -177.5 -505.5t-433 -397.5t-470.5 -191l-12 41q176 51 343 210.5t273.5 409t106.5 555.5q0 86 -9 134t-26 67t-45 19q-72 0 -135 -100t-100.5 -242.5t-37.5 -257.5q0 -88 22.5 -126t57.5 -38 q42 0 83 46t67 140l35 -10q-42 -157 -125 -227t-205 -70q-90 0 -160 35t-110.5 105.5t-40.5 170.5z" />
-<glyph unicode=":" horiz-adv-x="682" d="M25 106q0 63 30 112.5t82 77.5t117 28q79 0 120.5 -35.5t41.5 -104.5q0 -54 -31 -103t-84 -79.5t-116 -30.5q-79 0 -119.5 34.5t-40.5 100.5zM229 874q0 63 30 112.5t82 77.5t117 28q79 0 120.5 -35.5t41.5 -104.5q0 -54 -31 -103t-84 -79.5t-116 -30.5 q-79 0 -119.5 34.5t-40.5 100.5z" />
-<glyph unicode=";" horiz-adv-x="692" d="M12 106q0 63 30 112.5t82 77.5t117 28q166 0 166 -168q0 -144 -82 -260.5t-225 -178.5l-10 37q90 38 154.5 113t70.5 168q-61 -64 -143 -64q-77 0 -118.5 34.5t-41.5 100.5zM246 874q0 63 30 112.5t82 77.5t117 28q79 0 120.5 -35.5t41.5 -104.5q0 -54 -31 -103 t-84 -79.5t-116 -30.5q-79 0 -119.5 34.5t-40.5 100.5z" />
-<glyph unicode="&#x3c;" horiz-adv-x="1204" d="M94 727l1131 465l20 -59l-997 -414l678 -357l-33 -65z" />
-<glyph unicode="=" horiz-adv-x="1313" d="M121 553l18 61h1026l-18 -61h-1026zM203 840l18 61h1026l-18 -61h-1026z" />
-<glyph unicode="&#x3e;" horiz-adv-x="1210" d="M92 377l942 393l-758 406l33 59l879 -473l-1075 -445z" />
-<glyph unicode="?" horiz-adv-x="1061" d="M154 633q0 73 38.5 136t94 113t168.5 142q23 18 125 100.5t141 143t39 121.5q0 74 -41.5 117.5t-118.5 43.5q-93 0 -151 -37q50 3 97 -16.5t76 -57.5t29 -85q0 -49 -25 -91t-68.5 -67t-96.5 -25q-47 0 -90 21t-70 60.5t-27 93.5q0 96 70.5 153t172.5 80t208 23 q118 0 221 -29.5t166.5 -89t63.5 -144.5q0 -58 -40.5 -117t-121.5 -128.5t-223 -171.5q-140 -100 -208.5 -161t-94 -106.5t-25.5 -101.5q0 -55 35 -90t100 -35q74 0 131 29q-53 17 -90 59.5t-37 106.5q0 47 22 84.5t61.5 59t90.5 21.5q40 0 75 -19t56 -52.5t21 -73.5 q0 -92 -65 -150.5t-159.5 -84t-187.5 -25.5q-103 0 -184.5 27.5t-129.5 83.5t-48 139zM231 106q0 63 30 112.5t82 77.5t117 28q79 0 120.5 -35.5t41.5 -104.5q0 -54 -31 -103t-84 -79.5t-116 -30.5q-79 0 -119.5 34.5t-40.5 100.5z" />
-<glyph unicode="@" horiz-adv-x="1788" d="M55 338q0 233 118 451.5t346.5 357.5t541.5 139q203 0 351 -62.5t229 -187t81 -305.5q0 -213 -103.5 -367t-254 -232.5t-285.5 -78.5q-171 0 -171 146q0 16 2 40q-98 -186 -283 -186q-108 0 -178 59.5t-70 192.5q0 138 76 297.5t203.5 268t273.5 108.5q79 0 114.5 -35.5 t38.5 -104.5l33 111q193 0 309 29l-217 -731q-13 -45 -13 -74q0 -45 38 -45q60 0 167.5 69t192 204.5t84.5 326.5q0 174 -77 290t-215.5 173t-325.5 57q-297 0 -516 -133.5t-333 -343t-114 -430.5q0 -206 98 -340t258 -195t351 -61q146 0 284.5 34.5t251.5 98.5l13 -26 q-102 -65 -243 -103.5t-304 -38.5q-200 0 -370 62t-276 202.5t-106 362.5zM700 299q0 -65 15.5 -94t52.5 -29q55 0 99.5 57t86.5 175l103 339q4 27 4 49q0 95 -62 95q-52 0 -123.5 -90t-123.5 -227.5t-52 -274.5z" />
-<glyph unicode="A" horiz-adv-x="1370" d="M-197 0l9 41q40 11 74 36.5t73.5 73t101.5 134.5l836 1175q33 -4 79 -4t75 4l82 -1288q5 -67 34 -98t66 -33l-8 -41q-120 6 -346 6q-238 0 -349 -6l9 41q66 3 103 15.5t55.5 43t18.5 87.5q0 17 -1 26l-18 336h-402l-199 -281q-48 -70 -48 -117q0 -96 188 -110l-9 -41 q-211 6 -290 6q-70 0 -134 -6zM324 590h371l-25 489z" />
-<glyph unicode="B" horiz-adv-x="1454" d="M-98 0l8 41q74 3 110.5 16t58.5 48t42 112l270 1016q18 67 18 99q0 40 -30 57.5t-109 19.5l11 41q126 -6 356 -6q83 0 166.5 2t138.5 2q496 0 496 -277q0 -110 -75.5 -202t-220 -148.5t-343.5 -62.5h16q159 0 276 -37q123 -39 187.5 -109t64.5 -161q0 -142 -85.5 -243.5 t-246.5 -154.5t-384 -53q-46 0 -145.5 3t-217.5 3q-233 0 -362 -6zM521 124q0 -77 81 -77q86 0 156.5 64.5t110.5 167.5t40 213q0 107 -45.5 175t-150.5 68h-39l-137 -518q-16 -60 -16 -93zM683 770h30q103 0 176 66t110 172.5t37 226.5q0 83 -24 128.5t-90 45.5 q-30 0 -48 -12t-31.5 -42.5t-29.5 -90.5z" />
-<glyph unicode="C" horiz-adv-x="1450" d="M76 496q0 246 135.5 473t373.5 368.5t529 141.5q112 0 181 -35.5t122 -97.5q15 -18 30 -18q38 0 83 122h43q-68 -177 -131 -471h-45q20 118 20 177q0 90 -35 149q-38 65 -92 90.5t-133 25.5q-161 0 -301.5 -133.5t-224.5 -355.5t-84 -475q0 -207 70.5 -307.5 t197.5 -100.5q69 0 141.5 31.5t124.5 87.5q54 58 94 129t91 195h45q-97 -355 -121 -492h-45q6 44 6 70q0 52 -26 52q-16 0 -42 -18q-192 -133 -409 -133q-305 0 -451.5 136t-146.5 389z" />
-<glyph unicode="D" horiz-adv-x="1642" d="M-88 0l6 41q70 3 105.5 16t57.5 48.5t42 111.5l268 1016q13 49 13 80q0 44 -29.5 68t-102.5 28l7 41q163 -7 318 -7l75 1q171 6 303 6q307 0 476 -130t169 -384q0 -222 -106.5 -436.5t-339.5 -357t-590 -142.5q-43 0 -133 3t-191 3q-225 0 -348 -6zM514 91q0 -30 19 -42 t67 -12q180 0 316.5 149.5t209 376t72.5 447.5q0 403 -260 403q-46 0 -65.5 -12t-30 -40.5t-35.5 -123.5l-268 -1024q-25 -93 -25 -122z" />
-<glyph unicode="E" horiz-adv-x="1305" d="M-98 0l8 41q74 3 110.5 16t58.5 48t42 112l270 1016q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l11 41q235 -6 710 -6q295 0 424 6q-50 -129 -78 -242q-11 -46 -26 -127h-45v8q0 113 -26 182q-28 71 -82.5 101.5t-139.5 30.5h-6q-71 0 -106.5 -12t-57 -46.5 t-41.5 -111.5l-128 -483h36q64 0 123 31.5t103 84t67 113.5h45q-26 -79 -43.5 -148.5t-26.5 -101.5q-27 -102 -53 -250h-45q0 54 -19 106.5t-63.5 88t-116.5 35.5h-18l-131 -492q-18 -70 -18 -100q0 -29 13.5 -44t41.5 -20.5t79 -5.5h27q100 0 175.5 34.5t140.5 113 t132 215.5h46q-14 -36 -44 -148q-32 -117 -53 -262q-139 6 -463 6q-475 0 -712 -6z" />
-<glyph unicode="F" horiz-adv-x="1235" d="M-98 0l8 41q74 3 110.5 16t58.5 48t42 112l270 1016q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l11 41q235 -6 710 -6q295 0 424 6q-41 -108 -78 -242q-36 -130 -47 -188h-45q3 39 3 73q0 166 -66 238t-185 72h-6q-64 0 -96 -12t-51 -46.5t-37 -111.5l-128 -483h56 q92 0 169 61.5t124 167.5h45q-38 -115 -69 -250q-25 -99 -64 -311h-45q0 141 -49 216t-139 75h-39l-131 -492q-15 -57 -15 -91t17 -51.5t53.5 -24.5t105.5 -9l-8 -41q-138 6 -407 6q-258 0 -381 -6z" />
-<glyph unicode="G" horiz-adv-x="1559" d="M61 440q0 237 134.5 479.5t373 401t533.5 158.5q84 0 145 -17t104 -45t87 -71q19 -19 35 -19q39 0 81 123h45q-67 -180 -131 -471h-45q11 83 11 154q0 48 -6 81.5t-23 67.5q-39 77 -119 118.5t-196 41.5q-186 0 -325.5 -178t-213.5 -430.5t-74 -460.5q0 -183 62.5 -272 t189.5 -89q68 0 107 29q28 20 42 52.5t35 111.5l48 180q18 68 18 106q0 36 -17 54.5t-52.5 26t-102.5 10.5l10 41q129 -7 389 -7q234 0 338 7l-10 -41q-49 -4 -73 -16.5t-41 -46.5t-38 -113l-108 -406h-41v6q0 57 -19 84q-20 27 -61 27q-38 0 -79.5 -15.5t-85.5 -37 t-70 -33.5q-129 -60 -263 -60q-184 0 -317.5 55t-205 160.5t-71.5 253.5z" />
-<glyph unicode="H" horiz-adv-x="1733" d="M-96 0l10 41q71 3 107 16t58 48.5t42 111.5l270 1016q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l11 41q118 -6 383 -6q220 0 364 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-128 -483h452l129 483q17 65 17 98q0 31 -14 47t-42.5 22.5t-81.5 8.5l10 41 q123 -6 360 -6q261 0 387 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-18 -70 -18 -100t13.5 -45.5t42.5 -22t83 -8.5l-8 -41q-123 6 -385 6q-237 0 -363 -6l8 41q74 3 111 16t58.5 48t41.5 112l131 492h-452l-131 -492q-18 -70 -18 -100t13.5 -45.5 t42.5 -22t82 -8.5l-8 -41q-126 6 -362 6q-257 0 -383 -6z" />
-<glyph unicode="I" horiz-adv-x="864" d="M-96 0l10 41q71 3 107 16t58 48.5t42 111.5l270 1016q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l11 41q113 -6 362 -6q232 0 385 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-18 -70 -18 -100t13.5 -45.5t42.5 -22t82 -8.5l-8 -41q-132 6 -383 6 q-242 0 -362 -6z" />
-<glyph unicode="J" horiz-adv-x="1464" d="M31 -203q0 80 55.5 129t157.5 49q90 0 148.5 -38.5t58.5 -110.5q0 -116 -134 -172q21 -4 48 -4q60 0 100.5 39.5t72.5 120t74 231.5l142 496q26 92 61 172h-280l6 41h293q63 128 151 227t194 177.5t265 176.5q-111 -31 -228.5 -96t-188.5 -94t-179 -29q-58 0 -111 14 t-145 47t-141 33q-52 0 -84.5 -25.5t-32.5 -78.5q0 -147 282 -164l-4 -37q-206 13 -325 96.5t-119 229.5q0 132 82.5 209t243.5 77q144 0 270.5 -66t203 -99t201.5 -33q80 0 173 17.5t163 53.5q79 120 128 120q14 0 28 -11q13 -11 13 -25q0 -50 -150 -106 q-104 -95 -174 -244t-132 -370h205l-6 -41h-210l-21 -80l-127 -496q-60 -234 -225.5 -376t-464.5 -142q-154 0 -246 43t-92 139z" />
-<glyph unicode="K" horiz-adv-x="1604" d="M-96 0l10 41q71 3 107 16t58 48.5t42 111.5l270 1016q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l11 41q119 -6 383 -6q220 0 364 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-18 -70 -18 -100t13.5 -45.5t42.5 -22t82 -8.5l-8 -41q-126 6 -362 6 q-257 0 -383 -6zM721 742q0 4 2 14q5 21 18 31t40 10q37 0 115 -21q120 18 173.5 109t103 277t105.5 249q60 68 162 68q69 0 124 -28.5t86 -80.5t31 -121q0 -61 -27.5 -117.5t-80 -92t-123.5 -35.5q-46 0 -85.5 19t-64 57.5t-24.5 93.5q0 81 57 153t154 107q-20 10 -53 10 q-43 0 -72 -14.5t-53 -43.5q-49 -59 -98 -229t-96 -265.5t-152 -126.5q133 -9 211 -42t111.5 -88t33.5 -136q0 -40 -8 -93l-33 -205q-1 -4 -1 -11q0 -20 13 -32.5t33 -12.5q56 0 88 99l35 104h41l-53 -158q-37 -110 -115 -164.5t-176 -54.5q-89 0 -152 28t-95.5 78 t-32.5 116q0 21 5 51l58 323q8 50 8 78q0 62 -38 90q-90 -23 -128 -23q-47 0 -47 30z" />
-<glyph unicode="L" horiz-adv-x="1264" d="M-98 0l8 41q74 3 110.5 16t58.5 48t42 112l270 1016q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l11 41q119 -6 387 -6q214 0 358 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-18 -70 -18 -100q0 -29 13.5 -44t41.5 -20.5t79 -5.5h37 q75 0 158.5 38.5t162.5 124.5t134 220h45q-21 -54 -49 -168q-32 -108 -54 -262q-139 6 -462 6q-484 0 -721 -6z" />
-<glyph unicode="M" horiz-adv-x="1944" d="M-96 0l8 41q96 4 148 69.5t79 170.5l254 952q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l11 41q112 -6 346 -6q109 0 188 6l119 -934l592 928h201q225 0 378 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-17 -65 -17 -98q0 -31 13.5 -47t42.5 -22.5 t82 -8.5l-8 -41q-151 6 -377 6q-252 0 -369 -6l8 41q75 3 111.5 16t58 48t41.5 112l297 1104l-850 -1331h-45l-182 1196l-238 -905q-15 -55 -15 -98q0 -137 181 -142l-8 -41q-73 6 -244 6q-126 0 -194 -6z" />
-<glyph unicode="N" horiz-adv-x="1763" d="M-174 68q0 64 30.5 113t82.5 75.5t116 26.5q84 0 133.5 -40.5t49.5 -111.5q0 -60 -28 -109t-76.5 -80.5t-108.5 -41.5q15 -17 51 -17q103 0 176 115q77 120 158.5 430t177.5 801v4q12 57 12 91t-14.5 51.5t-47.5 24.5t-96 9l11 41q64 -6 182 -6q95 0 166 6l447 -870 q157 649 284 833q90 131 221 131q71 0 125.5 -29t84.5 -79t30 -111q0 -64 -30.5 -113t-83 -75.5t-116.5 -26.5q-84 0 -133 40t-49 112q0 60 27.5 109t76 80.5t109.5 41.5q-16 16 -51 16q-50 0 -94.5 -30.5t-79.5 -81.5q-91 -136 -189 -477t-223 -930h-45l-536 975 q-173 -831 -291 -988q-45 -60 -95.5 -94.5t-123.5 -34.5q-71 0 -125.5 29t-84.5 79t-30 112z" />
-<glyph unicode="O" horiz-adv-x="1657" d="M70 463q0 232 124.5 469t348.5 392t504 155q188 0 324 -58t209 -169t73 -267q0 -231 -125.5 -467.5t-350 -391.5t-503.5 -155q-188 0 -324 58t-208 168.5t-72 265.5zM512 436q0 -131 23 -228t64 -148.5t93 -51.5q129 0 249 147.5t193.5 381.5t73.5 477q0 131 -23 228 t-63.5 148.5t-93.5 51.5q-129 0 -249 -147.5t-193.5 -381.5t-73.5 -477z" />
-<glyph unicode="P" horiz-adv-x="1391" d="M-98 0l8 41q74 3 110.5 16t58.5 48t42 112l270 1016q14 78 14 94q0 41 -29 59.5t-106 22.5l11 41q119 -6 374 -6q49 0 148.5 2t150.5 2q270 0 400.5 -76t130.5 -233q0 -155 -107 -279.5t-301 -198t-445 -79.5l-97 -365q-14 -50 -14 -82q0 -45 30.5 -67.5t103.5 -26.5 l-8 -41q-141 6 -356 6q-266 0 -389 -6zM643 624q143 10 235 99.5t133.5 216.5t41.5 254q0 106 -38 160.5t-120 54.5q-33 0 -44.5 -19t-23.5 -69t-22 -88z" />
-<glyph unicode="Q" horiz-adv-x="1772" d="M-70 6q0 74 40.5 134t112 94t159.5 34q78 0 159.5 -27t158 -69.5t177.5 -107.5q177 96 307.5 236t202.5 321.5t72 394.5q0 205 -72 315.5t-209 110.5q-131 0 -232.5 -96t-157.5 -246.5t-56 -306.5q0 -73 16 -122.5t58.5 -77.5t119.5 -28q78 0 146.5 28t118 77t75.5 112 q22 51 25 109q-21 -75 -79 -109t-122 -34q-54 0 -95 24.5t-63 68t-22 97.5q0 65 31 118t83.5 83t114.5 30q93 0 146 -66t53 -177q0 -128 -69.5 -225t-194 -150t-283.5 -53q-141 0 -253 42.5t-176 125.5t-64 200q0 169 129.5 310t343.5 222t456 81q192 0 344.5 -51.5 t239 -144.5t86.5 -214q0 -156 -142 -345t-368.5 -369t-474.5 -313q118 -76 196 -121t165 -76t170 -31q104 0 160.5 44.5t80.5 104.5q-70 -67 -174 -67q-55 0 -100.5 21t-72 62t-26.5 99q0 60 29 106.5t81 72.5t118 26q95 0 154 -53t59 -154q0 -112 -74.5 -219t-211.5 -174.5 t-316 -67.5q-134 0 -242.5 38t-188.5 92t-176 136q-152 -49 -260 -49q-99 0 -156 42.5t-57 131.5zM-23 -18q0 -52 47 -83.5t132 -31.5q81 0 214 42q-90 75 -154.5 112.5t-135.5 37.5q-51 0 -77 -20t-26 -57z" />
-<glyph unicode="R" horiz-adv-x="1520" d="M-98 0l8 41q74 3 110.5 16t58.5 48t42 112l268 1016q18 72 18 96q0 39 -30 57t-107 23l11 41q119 -6 348 -6q81 0 168.5 2t144.5 2q189 0 308 -28t177 -90t58 -165q0 -124 -79.5 -220t-225.5 -155t-343 -76q135 -9 227.5 -31t148 -71.5t55.5 -135.5q0 -25 -4 -48 l-35 -213q-5 -30 -5 -48q0 -79 66 -79q42 0 72.5 32.5t54.5 98.5l10 29h48l-9 -27q-40 -130 -125.5 -190t-232.5 -60q-148 0 -221.5 56t-73.5 159q0 28 4 52l39 233q6 36 6 69q0 74 -44.5 114t-153.5 45l-127 -482q-20 -76 -20 -100q0 -38 30 -55t108 -21l-8 -41 q-141 6 -364 6q-258 0 -381 -6zM674 735q98 5 189.5 58.5t150.5 158.5t59 256q0 201 -143 201q-43 0 -66.5 -22.5t-40.5 -83.5z" />
-<glyph unicode="S" horiz-adv-x="1247" d="M-72 -14q68 162 140 491h41q-19 -53 -19 -141q0 -157 87 -237.5t247 -80.5q133 0 186.5 50t53.5 139q0 116 -52.5 211t-206 288t-153.5 357q0 135 82.5 229t207 140.5t249.5 46.5q87 0 156.5 -16t103.5 -31t102 -48q11 -5 34.5 -16.5t33.5 -11.5q16 0 31.5 25.5 t35.5 82.5h41q-78 -190 -121 -417h-41q13 55 13 112q0 124 -78.5 194t-216.5 70q-97 0 -159 -48t-62 -150q0 -135 150 -309t228 -282t78 -249q0 -139 -95 -232.5t-233 -137.5t-268 -44q-104 0 -170.5 10t-114 29t-112.5 56q-54 30 -70 30q-19 0 -31.5 -9t-24.5 -31.5 t-32 -69.5h-41z" />
-<glyph unicode="T" horiz-adv-x="1423" d="M160 1161q0 65 34.5 126.5t114.5 101.5q101 49 275 49q90 0 182 -5t272.5 -18.5t274.5 -13.5q105 0 184 15q-36 33 -59 83t-23 111q0 62 26 108t72 71.5t105 25.5t105 -25t71 -65.5t25 -86.5q0 -150 -172 -223q-135 -55 -355 -55l-59 1l-297 -1123q-15 -54 -15 -89 q0 -54 38.5 -78t130.5 -30l-9 -41q-144 6 -428 6q-272 0 -401 -6l8 41q88 3 136.5 21t76 58t47.5 118l307 1152q-149 11 -233 11q-161 0 -234 -35q81 -11 132 -63.5t51 -135.5q0 -58 -26.5 -104.5t-72 -73t-100.5 -26.5q-57 0 -99 27t-63.5 72.5t-21.5 98.5z" />
-<glyph unicode="U" horiz-adv-x="1438" d="M144 349q0 98 38 241l170 643q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l13 41q120 -6 387 -6q214 0 358 6l-12 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-180 -678q-51 -191 -51 -309q0 -203 145 -203q215 0 338.5 139.5t189.5 390.5l125 476q45 170 45 232 q0 41 -15.5 66t-49.5 39t-94 23l12 41q80 -6 227 -6q108 0 172 6l-12 -41q-67 -14 -105 -44t-65 -91.5t-59 -183.5l-127 -494q-75 -285 -201 -434q-75 -88 -185 -139.5t-235 -51.5q-179 0 -292.5 52.5t-162.5 142.5q-42 78 -42 183z" />
-<glyph unicode="V" horiz-adv-x="1393" d="M184 1409l11 41q116 -6 344 -6q236 0 356 6l-10 -41q-62 -3 -97 -13.5t-52 -37.5t-17 -78q0 -27 2 -43l93 -856l521 801q46 70 46 119q0 95 -185 108l10 41q58 -6 291 -6q90 0 154 6l-11 -41q-53 -16 -92 -40t-81 -71.5t-97 -132.5l-764 -1175q-37 3 -76 3q-38 0 -77 -3 l-162 1288q-8 66 -39.5 97.5t-67.5 33.5z" />
-<glyph unicode="W" horiz-adv-x="2120" d="M176 1409l10 41q117 -6 344 -6q194 0 295 6l-10 -41q-39 -3 -60.5 -14t-32 -38t-10.5 -78q0 -27 1 -42l90 -831l338 547l-41 325q-7 66 -32.5 97.5t-53.5 33.5l10 41q111 -6 324 -6q236 0 356 6l-10 -41q-62 -3 -97 -13.5t-52 -37.5t-17 -78q0 -27 2 -43l88 -810l432 755 q42 74 42 122q0 51 -46 75t-135 30l10 41q59 -6 291 -6q89 0 153 6l-10 -41q-57 -17 -96.5 -39t-82 -70t-91.5 -135l-670 -1175h-153l-113 902l-551 -902h-154l-161 1288q-9 67 -40 98t-67 33z" />
-<glyph unicode="X" horiz-adv-x="1575" d="M-92 209q0 71 29.5 124.5t80.5 83t113 29.5q77 0 122.5 -45.5t45.5 -126.5q0 -60 -27 -112.5t-75.5 -88.5t-110.5 -50q15 -17 53 -17q58 0 140 51q76 55 175.5 181t192.5 300l-88 707q-6 44 -25.5 63t-56.5 19q-83 0 -125 -121l-35 -104h-41l54 158q43 116 126.5 167.5 t207.5 51.5q107 0 174 -34t103.5 -104t49.5 -182l26 -213q68 146 148.5 269.5t151.5 189.5q92 74 186 74q66 0 116 -31.5t77.5 -85.5t27.5 -121q0 -71 -29.5 -124.5t-80.5 -83t-113 -29.5q-77 0 -122.5 45.5t-45.5 126.5q0 60 27 112.5t75.5 88.5t110.5 50q-15 17 -53 17 q-63 0 -135 -51q-70 -59 -159 -193t-174 -323l81 -662q12 -78 86 -78q84 0 121 107l35 104h41l-54 -158q-43 -117 -118 -168t-189 -51q-120 0 -192 36.5t-108 105.5t-50 178l-23 183q-73 -135 -161.5 -251.5t-171.5 -183.5q-94 -68 -193 -68q-66 0 -116 31.5t-77.5 85.5 t-27.5 121z" />
-<glyph unicode="Y" horiz-adv-x="1589" d="M150 1102l43 131q43 132 134.5 189t211.5 57q152 0 234 -80t120.5 -227.5t69.5 -415.5q128 395 303 600q105 123 243 123q71 0 125.5 -29t84.5 -79t30 -111q0 -64 -30.5 -113.5t-82.5 -76t-116 -26.5q-84 0 -133.5 40.5t-49.5 111.5q0 60 28 109t76.5 80.5t108.5 41.5 q-15 17 -51 17q-33 0 -63.5 -11t-67.5 -38q-53 -39 -126.5 -146t-148.5 -272.5t-130 -367.5l-99 -392q-11 -46 -11 -73q0 -41 19 -62.5t55.5 -29.5t98.5 -11l-10 -41q-129 6 -418 6q-251 0 -371 -6l11 41q74 3 111 16t59 48.5t41 111.5l105 419q-18 167 -50 318.5t-78.5 250 t-103.5 98.5q-36 0 -57 -27t-36 -70l-34 -104h-45z" />
-<glyph unicode="Z" horiz-adv-x="1356" d="M-61 17q0 28 38 62.5t115 63.5l576 566h-332l14 41h359l539 529q-214 -202 -425 -202q-82 0 -144.5 12.5t-145.5 37t-125 24.5q-60 0 -60 -47q0 -67 150 -96l-11 -39q-127 19 -213 77t-86 160q0 79 40.5 141t115 97t174.5 35q87 0 153.5 -20t200 -79t258.5 -59 q70 0 160 31q37 54 78 86.5t73 32.5q16 0 29 -11q12 -11 12 -27q0 -29 -38 -63t-115 -63l-567 -557h311l-16 -41h-336l-553 -543q218 207 432 207q82 0 144.5 -12.5t146 -37t125.5 -24.5q59 0 59 47q0 67 -149 96l8 39q127 -19 213 -77t86 -160q0 -79 -40.5 -141t-115 -97 t-174.5 -35q-86 0 -153 20t-200.5 79t-258.5 59q-70 0 -160 -31q-36 -53 -78 -86t-73 -33q-16 0 -29 11q-12 10 -12 27z" />
-<glyph unicode="[" horiz-adv-x="827" d="M-43 -371l485 1952h553l-8 -39h-166l-469 -1874h166l-8 -39h-553z" />
-<glyph unicode="\" horiz-adv-x="1004" d="M268 1479h64l467 -1508h-68z" />
-<glyph unicode="]" horiz-adv-x="829" d="M-166 -371l8 39h166l469 1874h-166l8 39h553l-485 -1952h-553z" />
-<glyph unicode="^" horiz-adv-x="1071" d="M115 647q159 69 300 186.5t228 247.5h37q21 -134 99 -249t208 -183l-12 -31q-236 28 -463 123q-149 -73 -389 -123z" />
-<glyph unicode="_" horiz-adv-x="1366" d="M-119 -371l86 227h1055l-86 -227h-1055z" />
-<glyph unicode="`" horiz-adv-x="457" d="M84 1622q0 33 14.5 61t42.5 46q31 20 70 20t74 -19t53 -49q21 -32 30 -66.5t24 -143.5t54 -230l-24 -14q-55 62 -100.5 105t-117 105t-98.5 107q-22 38 -22 78z" />
-<glyph unicode="a" d="M-14 227q0 193 103 395.5t258 336t296 133.5q116 0 128 -118l26 87q203 3 370 31l-276 -918q-9 -27 -9 -50q0 -36 33 -36q61 0 109 129l43 115h39l-51 -150q-74 -211 -293 -211q-126 0 -178 72q-34 48 -34 126q0 23 1 36q-49 -127 -127 -180.5t-184 -53.5 q-127 0 -190.5 65.5t-63.5 190.5zM371 219q0 -60 10 -84t37 -24q40 0 81 57.5t91 205.5l160 530q2 20 2 30q0 57 -39 57q-58 0 -140.5 -118.5t-142 -298.5t-59.5 -355z" />
-<glyph unicode="b" horiz-adv-x="1178" d="M-66 -18q23 43 46 120l376 1264q10 37 10 57q0 41 -32 59.5t-107 18.5l15 43q162 1 292.5 22t256.5 62l-220 -742q60 107 127 156.5t152 49.5q140 0 210 -86t70 -248q0 -169 -81 -353.5t-232 -309t-348 -124.5q-97 0 -161 44q-42 11 -82 11q-102 0 -261 -59zM323 48 q27 -9 54 -9q88 0 175 128t142.5 317t55.5 354q0 67 -12 91.5t-38 24.5q-38 0 -81 -51t-84 -139z" />
-<glyph unicode="c" horiz-adv-x="991" d="M4 295q0 182 94.5 368t266.5 307.5t391 121.5q82 0 142.5 -29t92 -77.5t31.5 -106.5q0 -65 -33 -127.5t-88.5 -102t-118.5 -39.5q-37 0 -68.5 16.5t-51 49t-19.5 78.5q0 64 29 120t76.5 95.5t103.5 56.5q-28 25 -70 25q-99 0 -190.5 -109.5t-148 -282.5t-56.5 -352 q0 -106 43.5 -157.5t120.5 -51.5q65 0 125 37t121 127l41 -16q-177 -275 -469 -275q-107 0 -189.5 35.5t-129 108t-46.5 180.5z" />
-<glyph unicode="d" horiz-adv-x="1235" d="M-2 270q0 162 83.5 356t241.5 330t369 136q99 0 125 -51l86 325q10 37 10 57q0 41 -32 59.5t-107 18.5l14 43q308 3 555 84l-401 -1454q-10 -29 -10 -48q0 -38 35 -38q60 0 108 129l43 115h39l-51 -150q-72 -211 -293 -211q-130 0 -184 78q-30 44 -30 115q0 43 10 91 q-65 -146 -145.5 -215t-201.5 -69q-74 0 -133.5 31.5t-95 98.5t-35.5 169zM381 215q0 -62 10.5 -89.5t38.5 -27.5q29 0 70 44.5t88.5 142.5t93.5 247l62 234l1 4v-1l59 225q-8 26 -22 38t-43 12q-63 0 -149 -121.5t-147.5 -313.5t-61.5 -394z" />
-<glyph unicode="e" horiz-adv-x="1016" d="M-6 260q0 201 103.5 394t283 315.5t395.5 122.5q115 0 184.5 -46t69.5 -135q0 -117 -93 -215t-240 -167t-313 -107q-7 -55 -7 -105q0 -112 43 -155t127 -43q51 0 131.5 35t155.5 108l32 -16q-78 -117 -211 -196t-307 -79q-98 0 -178.5 33.5t-128 98.5t-47.5 157zM390 459 q106 59 188 139q186 184 186 403q0 52 -33 52q-57 0 -128 -88.5t-130 -227t-83 -278.5z" />
-<glyph unicode="f" horiz-adv-x="727" d="M-119 -385l376 1397h-161l13 41h159q89 333 258 458q122 91 310 91q99 0 171.5 -28t111 -80t38.5 -122q0 -49 -28 -96.5t-78.5 -78t-114.5 -30.5q-76 0 -120 36.5t-44 103.5q0 79 48.5 144t133.5 97q-29 13 -53 13q-62 0 -100 -33q-58 -49 -99 -203l-73 -272h207l-13 -41 h-205l-366 -1368q-203 -3 -371 -29z" />
-<glyph unicode="g" horiz-adv-x="997" d="M-219 -223q0 73 67.5 105.5t197 60.5t180.5 48l-81 25q-57 19 -94 55t-37 87q0 57 50.5 104.5t132.5 87.5t217 94q-153 3 -245.5 61.5t-92.5 174.5q0 100 70 194.5t199 155t298 60.5q48 0 91 -5q48 103 91 172t93 109q58 47 129 47q69 0 110 -36.5t41 -104.5 q0 -53 -25.5 -102.5t-70 -80t-96.5 -30.5q-56 0 -89.5 33t-33.5 84q0 41 25 84.5t73 82.5q-10 5 -17 5q-19 0 -34 -17q-33 -30 -78.5 -102t-78.5 -150q104 -20 163 -75.5t59 -147.5q0 -94 -60.5 -183t-172.5 -150.5t-259 -75.5q-169 -60 -169 -109q0 -16 17 -26.5t55 -24.5 l186 -70q233 -87 233 -240q0 -122 -102.5 -203.5t-250.5 -120t-284 -38.5q-127 0 -218.5 20t-140 56.5t-48.5 85.5zM145 -291q0 -32 17 -45.5t51 -13.5q72 0 149.5 23.5t129 66.5t51.5 98q0 27 -16 43.5t-37 24.5t-66 22l-167 53q-59 -80 -85.5 -151t-26.5 -121zM418 602 q0 -69 11.5 -95t39.5 -26q50 0 91 64.5t64.5 167.5t24.5 213q0 65 -10.5 96t-42.5 31q-45 0 -86.5 -64t-66.5 -168t-25 -219z" />
-<glyph unicode="h" horiz-adv-x="1212" d="M-49 0l405 1366q10 37 10 57q0 41 -32 59.5t-107 18.5l15 43q162 1 292.5 22t256.5 62l-265 -904q67 145 132 225t132 111.5t152 31.5q201 0 201 -170q0 -59 -27 -140l-203 -608q-10 -30 -10 -48q0 -38 35 -38q61 0 109 129l43 115h38l-51 -150q-72 -211 -293 -211 q-111 0 -163 52t-52 143q0 73 29 158l176 530q18 52 18 80q0 31 -22 31q-46 0 -114.5 -106t-143.5 -280t-138 -370l-57 -195l-2 -8v2l-2 -8h-362z" />
-<glyph unicode="i" horiz-adv-x="688" d="M42 165q0 68 30 159l188 565q11 29 11 51q0 35 -29 35q-32 0 -59 -29t-54 -100l-47 -125h-39l57 160q77 211 306 211q110 0 161.5 -53t51.5 -136q0 -49 -17 -98l-213 -631q-10 -30 -10 -50q0 -36 35 -36q60 0 108 129l43 115h39l-51 -150q-72 -211 -293 -211 q-104 0 -161 49t-57 145zM346 1384q0 107 69 162.5t181 55.5q89 0 135.5 -35.5t46.5 -104.5q0 -63 -33 -111.5t-90.5 -75t-128.5 -26.5q-88 0 -134 34.5t-46 100.5z" />
-<glyph unicode="j" horiz-adv-x="651" d="M-479 -238q0 47 24 85t65.5 59.5t90.5 21.5q46 0 81.5 -19.5t55 -51t19.5 -66.5q0 -40 -24 -80t-69 -65q79 9 125 58t78 163l287 1022q9 35 9 53q0 33 -30 33q-61 0 -110 -129l-47 -125h-39l57 160q41 110 124.5 160.5t184.5 50.5q108 0 155 -50.5t47 -132.5 q0 -47 -15 -104l-156 -569q-38 -140 -73.5 -229t-76.5 -148.5t-98 -106.5q-165 -137 -405 -137q-260 0 -260 147zM338 1384q0 107 68.5 162.5t181.5 55.5q89 0 135.5 -35.5t46.5 -104.5q0 -63 -33.5 -111.5t-91 -75t-127.5 -26.5q-89 0 -134.5 34.5t-45.5 100.5z" />
-<glyph unicode="k" horiz-adv-x="1182" d="M-49 0l405 1366q10 37 10 57q0 41 -32 59.5t-107 18.5l15 43q162 1 292.5 22t256.5 62l-297 -1012q91 21 133.5 83t84 184t87.5 161q29 24 64.5 36t66.5 12q76 0 129 -31.5t79.5 -85t26.5 -117.5q0 -65 -27.5 -111.5t-74.5 -71t-105 -24.5q-77 0 -121 40.5t-44 101.5 q0 78 52 138.5t130 94.5q-7 12 -22 19.5t-29 7.5q-54 0 -95 -33q-39 -33 -79 -147.5t-80 -182.5t-128 -92q375 -2 375 -232q0 -38 -8 -73l-24 -119q-6 -29 -6 -47q0 -39 30 -39q61 0 109 129l43 115h39l-51 -150q-79 -211 -328 -211q-198 0 -198 181q0 39 9 84l35 145 q15 51 15 87q0 45 -24 71t-76 38l-169 -577h-362z" />
-<glyph unicode="l" horiz-adv-x="647" d="M7 179q0 63 24 145l313 1042q10 37 10 57q0 41 -32 59.5t-107 18.5l14 43q163 1 293 22t256 62l-432 -1454q-6 -22 -6 -38q0 -25 11.5 -36.5t27.5 -11.5q20 0 47.5 25.5t56.5 103.5l43 115h39l-51 -150q-41 -119 -121 -165t-170 -46q-102 0 -159 53t-57 155z" />
-<glyph unicode="m" horiz-adv-x="1817" d="M6 0l250 889q9 33 9 51q0 35 -32 35q-59 0 -108 -129l-47 -125h-39l57 160q40 109 117.5 160t177.5 51q106 0 153 -51.5t47 -135.5q0 -46 -13 -100l-23 -90q58 134 122.5 217t142 121.5t175.5 38.5q180 0 180 -163q0 -63 -24 -147l-11 -37q62 133 129 209.5t138 107 t156 30.5q184 0 184 -161q0 -64 -29 -149l-202 -608q-10 -30 -10 -49q0 -37 34 -37q61 0 109 129l43 115h39l-52 -150q-72 -211 -293 -211q-137 0 -190 86q-27 46 -27 108q0 69 31 159l176 530q15 44 15 66q0 24 -17 24q-40 0 -95 -61.5t-125 -208t-144 -384.5l-84 -290 h-365l246 854q16 55 16 70q0 20 -20 20q-73 0 -163.5 -165t-188.5 -462l-82 -317h-363z" />
-<glyph unicode="n" horiz-adv-x="1268" d="M6 0l250 889q12 45 12 59q0 27 -30 27q-32 0 -59 -29t-54 -100l-47 -125h-39l57 160q38 108 107 159.5t174 51.5q115 0 165.5 -54t50.5 -139q0 -44 -13 -94l-56 -213q80 200 153.5 308.5t148.5 150t171 41.5q201 0 201 -170q0 -59 -27 -140l-202 -608q-10 -30 -10 -49 q0 -37 34 -37q61 0 109 129l43 115h39l-51 -150q-74 -211 -293 -211q-132 0 -185 74q-34 46 -34 115q0 65 32 164l176 530q18 52 18 80q0 31 -22 31q-53 0 -137.5 -143.5t-171 -367t-145.5 -448.5l1 4l-3 -10h-363z" />
-<glyph unicode="o" horiz-adv-x="1141" d="M12 319q0 174 80 353t241 299.5t392 120.5q178 0 271.5 -90t93.5 -259q0 -173 -80 -352t-241.5 -299.5t-391.5 -120.5q-178 0 -271.5 90t-93.5 258zM352 127q0 -63 9.5 -89t29.5 -26q55 0 142 148t152 363.5t65 408.5q0 71 -9.5 95t-25.5 24q-58 0 -145.5 -154 t-152.5 -372t-65 -398z" />
-<glyph unicode="p" horiz-adv-x="1239" d="M-215 -371l12 43q50 0 80 11.5t48 38.5t32 77l365 1317q-54 -125 -124 -225.5t-169 -208.5l-23 27q88 99 145 174t115.5 184.5t116.5 267.5q201 18 383 78l-156 -554q61 120 134 176.5t163 56.5q141 0 211 -86t70 -248q0 -169 -76 -353.5t-217.5 -309t-327.5 -124.5 q-115 0 -195 42l-42 -150q-16 -59 -16 -90q0 -58 40 -78.5t129 -22.5l-12 -43q-31 1 -140.5 5t-215.5 4q-97 0 -201 -4t-129 -5zM382 47q26 -8 52 -8q89 0 176 115.5t142 291.5t55 342q0 70 -6 106t-16.5 48t-26.5 12q-45 0 -96.5 -69.5t-96.5 -185.5z" />
-<glyph unicode="q" horiz-adv-x="1190" d="M4 305q0 164 89 349.5t241.5 311.5t331.5 126q51 0 96.5 -14.5t74.5 -36.5q31 -8 72 -8q108 0 262 59l31 -15q-26 -54 -45 -121l-303 -1132q-9 -35 -9 -59q0 -45 32 -66.5t102 -26.5l-12 -43q-28 1 -136 5t-210 4q-103 0 -213 -4t-138 -5l13 43q66 2 107 19.5t64.5 50 t37.5 84.5l125 461q-72 -166 -150.5 -241t-181.5 -75q-141 0 -211 86t-70 248zM385 225q0 -56 11.5 -76t37.5 -20q43 0 91.5 60.5t93 163t73.5 222.5l-9 -46l132 485q-29 10 -57 10q-87 0 -174 -135t-143 -326t-56 -338z" />
-<glyph unicode="r" horiz-adv-x="1022" d="M6 0l250 889q9 33 9 53q0 33 -27 33q-32 0 -59 -29t-54 -100l-47 -125h-39l57 160q77 211 305 211q101 0 145.5 -54.5t44.5 -140.5q0 -12 -2 -38q40 87 83.5 138t94 73t116.5 22q62 0 106.5 -26t68 -71.5t23.5 -101.5q0 -68 -30 -127t-82.5 -94t-118.5 -35 q-75 0 -114.5 39t-39.5 115q0 59 30.5 113t82 91.5t111.5 48.5q-21 7 -29 7q-66 0 -118.5 -26.5t-117.5 -130.5t-135 -319l-151 -575h-363z" />
-<glyph unicode="s" horiz-adv-x="913" d="M-43 233q0 78 38 130.5t101 52.5q60 0 96.5 -49.5t36.5 -130.5q0 -40 -9.5 -78.5t-23 -72t-24.5 -56.5q31 -15 72 -15q64 0 105.5 42.5t41.5 113.5q0 64 -30.5 137.5t-88.5 167.5q-48 78 -69.5 117t-37 88t-15.5 102q0 89 45.5 159t137 110.5t224.5 40.5q151 0 251.5 -54 t100.5 -182q0 -44 -17 -86t-49.5 -69t-78.5 -27q-61 0 -96 47.5t-35 124.5q0 60 20 112.5t45 79.5q-18 9 -51 9q-72 0 -108.5 -42t-36.5 -122q0 -50 22 -99t53 -99.5t46 -76.5q68 -116 95 -188t27 -141q0 -86 -47 -156t-139.5 -111t-222.5 -41q-165 0 -272 61t-107 201z" />
-<glyph unicode="t" horiz-adv-x="748" d="M60 193q0 60 20 131l198 688h-188l10 41h190l89 311q218 3 373 29l-100 -340h204l-6 -41h-210l-245 -838q-6 -22 -6 -39q0 -47 43 -47q40 0 81.5 44.5t66.5 111.5l32 88h39l-39 -113q-40 -118 -124 -183t-201 -65q-114 0 -170.5 60t-56.5 162z" />
-<glyph unicode="u" horiz-adv-x="1264" d="M33 142q0 58 26 139l199 608q10 30 10 49q0 37 -35 37q-60 0 -108 -129l-43 -115h-39l51 150q74 211 293 211q103 0 159.5 -48.5t56.5 -144.5q0 -71 -30 -160l-176 -530q-17 -54 -17 -80q0 -31 21 -31q50 0 127 125t159 324.5t144 411.5l27 104q226 3 371 29l-258 -918 q-13 -42 -13 -59q0 -27 31 -27q32 0 59 29t54 100l47 125h39l-58 -160q-39 -109 -116 -160t-176 -51q-136 0 -183 80q-24 41 -24 99q0 49 16 108l46 176q-78 -187 -150 -287.5t-146.5 -138t-171.5 -37.5q-93 0 -142.5 43.5t-49.5 127.5z" />
-<glyph unicode="v" horiz-adv-x="1063" d="M25 225q0 185 157 375.5t441 403.5q-62 -3 -104.5 -30.5t-108.5 -94t-119 -66.5q-15 0 -28 4t-38 15.5t-43 11.5q-25 0 -39.5 -18t-27.5 -60l-15 -43h-39l45 149q63 222 193 222q35 0 75 -19.5t70 -30t80 -10.5q72 0 133 31l21 39l43 -21q-88 -142 -158 -305.5 t-109.5 -311.5t-39.5 -247q0 -72 21 -105.5t73 -33.5q102 0 189.5 73.5t151.5 193.5t99 259q-105 48 -170 132t-65 186q0 78 41.5 123t117.5 45q156 0 156 -201q0 -205 -75.5 -418.5t-229 -357.5t-373.5 -144q-175 0 -250 72.5t-75 181.5z" />
-<glyph unicode="w" horiz-adv-x="1384" d="M-10 233q0 118 85 230t204 209t431 332q-74 -2 -126.5 -31t-130 -94.5t-131.5 -65.5q-19 0 -33 4.5t-38 15.5t-42 11q-25 0 -39 -17.5t-29 -60.5l-14 -43h-39l45 149q35 119 85 164t112 45q36 0 83.5 -15t84.5 -23.5t96 -8.5q82 0 151 31l21 39l43 -21 q-125 -144 -222.5 -305.5t-152.5 -310.5t-55 -258q0 -64 21.5 -96.5t74.5 -32.5q52 0 100 27q-30 60 -30 145q0 122 57 234t139 180.5t152 68.5q84 0 84 -129q0 -216 -139 -390q50 -75 151 -75q82 0 140 67t89 177.5t35 241.5q-93 43 -158.5 84t-112 102.5t-46.5 144.5 q0 32 15 62.5t46.5 51t79.5 20.5q83 0 132 -72.5t68 -171t19 -189.5q0 -174 -54.5 -332t-159 -257t-246.5 -99q-75 0 -139 25t-103 80q-122 -105 -315 -105q-91 0 -156.5 34t-99 93.5t-33.5 134.5zM799 365q0 -63 19 -111q53 77 82.5 165.5t29.5 174.5q0 96 -33 96 q-24 0 -47 -47t-37 -122t-14 -156z" />
-<glyph unicode="x" horiz-adv-x="1210" d="M-94 135q0 59 25.5 102.5t68 67t94.5 23.5q151 0 213 -199q65 88 117 223l-62 531q-7 48 -25 64t-48 16q-19 0 -35.5 -10.5t-36 -44t-41.5 -99.5l-26 -76h-39l51 150q39 122 121.5 165.5t191.5 43.5q80 0 133 -20.5t85 -72.5t42 -145l6 -53q45 98 95 166q91 125 237 125 q85 0 138 -46.5t53 -127.5q0 -53 -23.5 -94.5t-65.5 -65t-96 -23.5q-72 0 -131 47t-86 152q-62 -84 -112 -211l61 -543q9 -51 26 -72.5t44 -21.5q29 0 56 35.5t60 132.5l27 76h39l-51 -150q-39 -122 -120 -165.5t-183 -43.5q-116 0 -184.5 47.5t-80.5 161.5l-10 90 q-48 -105 -100 -174q-97 -125 -240 -125q-87 0 -137.5 44.5t-50.5 119.5z" />
-<glyph unicode="y" horiz-adv-x="989" d="M-270 -250q0 41 20 75t57 54.5t87 20.5q147 0 251 -181q127 57 239 154l-167 1014q-10 53 -17.5 70.5t-25.5 17.5q-14 0 -24.5 -10t-23.5 -36.5t-34 -82.5l-43 -115h-39l51 150q41 118 105.5 164.5t159.5 46.5q103 0 162 -54t79 -190l90 -656q138 209 213 422 q-97 54 -155 135.5t-58 174.5q0 77 42 122.5t118 45.5q156 0 156 -199q0 -119 -54.5 -276t-147 -318t-202.5 -291q-129 -153 -269.5 -248.5t-279.5 -128.5q-69 -16 -120 -16q-82 0 -126 35.5t-44 99.5z" />
-<glyph unicode="z" horiz-adv-x="975" d="M-125 0l1043 944q-74 -26 -179 -103.5t-162.5 -114t-111.5 -36.5q-35 0 -58 10t-56.5 33t-59.5 23q-25 0 -39 -15t-14 -36q0 -34 19.5 -54t70.5 -43l-13 -30q-227 50 -227 221q0 72 38 136.5t112.5 105t179.5 40.5q64 0 111.5 -15t138.5 -58t178 -43q63 0 105 21t83 75 h64l-1018 -924q60 22 148 86.5t138 95.5t99 31q36 0 59 -9.5t56.5 -32.5t62.5 -23q25 0 38 16.5t13 34.5q0 71 -90 96l12 31q119 -28 173.5 -83.5t54.5 -148.5q0 -74 -31 -133t-92.5 -93t-149.5 -34q-63 0 -111.5 16t-145.5 62.5t-189 46.5q-59 0 -102 -21t-84 -75h-64z" />
-<glyph unicode="{" horiz-adv-x="815" d="M59 586l6 37h11q66 5 110.5 49.5t83.5 148.5t86 300q47 195 128 299t203.5 143t317.5 39l-10 -39q-72 -1 -110 -28.5t-73 -117t-87 -296.5q-46 -183 -121.5 -286t-188.5 -153.5t-294 -76.5q142 -28 223 -62.5t119 -90t38 -144.5q0 -83 -34 -219q-63 -253 -60 -332 q0 -41 12.5 -63t37.5 -30.5t67 -9.5l-10 -39q-236 -3 -338 44t-113 145t35 285q68 275 68 376q-1 62 -24.5 90t-72.5 31h-10z" />
-<glyph unicode="|" horiz-adv-x="825" d="M309 -399v2156h246v-2156h-246z" />
-<glyph unicode="}" horiz-adv-x="813" d="M-188 -385l10 39q72 1 110 28.5t73 117t87 296.5q46 183 121.5 286t188.5 153.5t294 76.5q-142 28 -223 62.5t-119 90t-38 144.5q0 83 34 219q63 253 60 332q0 41 -12.5 63t-37.5 30.5t-67 9.5l10 39q236 3 338 -44t113 -145t-35 -285q-68 -275 -68 -376q1 -62 24.5 -90 t72.5 -31h10l-6 -37h-11q-66 -5 -110.5 -49.5t-83.5 -148.5t-86 -300q-47 -195 -128 -299t-203.5 -143t-317.5 -39z" />
-<glyph unicode="~" horiz-adv-x="1317" d="M74 455q43 116 113 202.5t159.5 133.5t188.5 47q70 0 125 -21t160.5 -80t195.5 -59q135 0 211 119l28 -11q-43 -116 -113 -202.5t-159 -133.5t-188 -47q-71 0 -126 21t-160.5 80t-195.5 59q-135 0 -211 -119z" />
-<glyph unicode="&#xa1;" horiz-adv-x="672" d="M-98 -238q0 75 42 162t181.5 317.5t189.5 411.5l37 -6q-29 -111 -29 -250q0 -82 9 -186.5t14.5 -175.5t5.5 -144q0 -133 -70 -204.5t-204 -71.5q-81 0 -128.5 36t-47.5 111zM238 874q0 63 30 112.5t82 77.5t117 28q79 0 120.5 -35.5t41.5 -104.5q0 -54 -31 -103 t-84 -79.5t-116 -30.5q-79 0 -119.5 34.5t-40.5 100.5z" />
-<glyph unicode="&#xa2;" horiz-adv-x="1038" d="M12 295q0 168 81 340.5t229 296.5t340 153l98 365h45l-97 -360q28 2 56 2q82 0 142.5 -29t92 -77.5t31.5 -106.5q0 -65 -33 -127.5t-88.5 -102t-118.5 -39.5q-37 0 -68.5 16.5t-51 49t-19.5 78.5q0 64 29 120t76.5 95.5t103.5 56.5q-28 25 -70 25q-50 0 -100 -30 l-239 -885q41 -38 108 -38q65 0 125 37t121 127l41 -16q-167 -260 -439 -274l-92 -343h-45l92 342q-159 4 -254.5 85.5t-95.5 238.5zM395 307q0 -76 24 -126l214 796q-67 -64 -121.5 -171t-85.5 -238t-31 -261z" />
-<glyph unicode="&#xa3;" horiz-adv-x="1442" d="M-63 -8q0 26 21.5 56.5t67 56.5t113.5 36q43 84 77 169.5t69 217.5l21 80h-200l13 41h198l43 164h-198l12 41h197l12 45q72 277 256.5 442.5t484.5 165.5q77 0 136 -29t91.5 -79t32.5 -111q0 -76 -29 -134t-80 -90t-114 -32q-85 0 -133.5 42.5t-48.5 123.5q0 64 25.5 118 t71.5 90t106 48q-25 23 -67 23q-85 0 -139.5 -56t-88.5 -186l-100 -381h278l-12 -41h-277q-29 -92 -75 -164h309l-13 -41h-325q-63 -80 -180 -164.5t-185.5 -143.5t-126.5 -161q229 234 459 234q82 0 144.5 -12.5t146 -37t125.5 -24.5q59 0 59 47q0 67 -149 96l8 39 q127 -19 213 -77t86 -160q0 -79 -40.5 -141t-115 -97t-174.5 -35q-86 0 -153 20t-200.5 79t-258.5 59q-97 0 -164 -23q-33 -68 -88 -101.5t-115 -33.5q-14 0 -20 4.5t-6 16.5z" />
-<glyph unicode="&#xa4;" horiz-adv-x="1468" d="M154 283l139 139q-39 85 -39 192q0 97 39 191l-139 139l252 252l137 -137q93 41 194 41q98 0 193 -41l139 139l252 -252l-139 -139q41 -93 41 -193q0 -101 -41 -194l139 -139l-252 -252l-141 141q-94 -39 -191 -39q-107 0 -192 39l-139 -139zM551 614q0 -67 25.5 -115.5 t68.5 -73t96 -24.5t96.5 24.5t69 73t25.5 115.5q0 68 -25.5 116.5t-69 73.5t-96.5 25t-96 -25t-68.5 -73.5t-25.5 -116.5z" />
-<glyph unicode="&#xa5;" horiz-adv-x="1690" d="M199 1102l43 131q43 132 134.5 189t211.5 57q152 0 234 -80t120.5 -227.5t69.5 -415.5q128 395 303 600q105 123 243 123q71 0 125.5 -29t84.5 -79t30 -111q0 -64 -30.5 -113.5t-82.5 -76t-116 -26.5q-84 0 -133.5 40.5t-49.5 111.5q0 60 28 109t76.5 80.5t108.5 41.5 q-15 17 -51 17q-33 0 -63.5 -11t-67.5 -38q-53 -39 -126.5 -146t-148.5 -272.5t-130 -367.5v-1h264l-10 -41h-265l-31 -123h261l-10 -41h-261l-47 -186q-11 -46 -11 -73q0 -41 19 -62.5t55.5 -29.5t98.5 -11l-10 -41q-129 6 -418 6q-251 0 -371 -6l11 41q74 3 111 16 t59 48.5t41 111.5l47 186h-287l10 41h287l31 123h-283l10 41h283l7 28q-29 269 -89 468t-143 199q-36 0 -57 -27t-36 -70l-34 -104h-45z" />
-<glyph unicode="&#xa6;" horiz-adv-x="831" d="M313 -399v1067h246v-1067h-246zM313 786v971h246v-971h-246z" />
-<glyph unicode="&#xa7;" horiz-adv-x="1272" d="M-25 -201q0 59 30.5 111.5t83 84.5t116.5 32q69 0 108 -33.5t39 -87.5q0 -73 -46 -132t-118 -91q10 -10 46 -19.5t79 -9.5q71 0 131 30t95.5 86t35.5 130q0 64 -36.5 109t-98 95.5t-88.5 73.5q-118 100 -167 146t-82 101.5t-33 121.5q0 139 93.5 236.5t247.5 170.5 q-49 55 -72.5 106t-23.5 107q0 141 97 239.5t244 147t294 48.5q128 0 239 -39.5t111 -147.5q0 -59 -31 -111t-84 -83t-116 -31q-71 0 -109 35.5t-38 93.5q0 66 47.5 125t115.5 90q-9 9 -45 19t-79 10q-71 0 -131 -30.5t-96 -86.5t-36 -129q0 -65 36 -109.5t98 -95.5t90 -74 q117 -98 166.5 -144.5t82.5 -102t33 -121.5q0 -139 -93.5 -236.5t-247.5 -170.5q95 -107 95 -214q0 -141 -97 -239.5t-243.5 -146.5t-293.5 -48q-132 0 -240.5 37.5t-108.5 146.5zM393 756q0 -43 25 -85t83.5 -96.5t164.5 -136.5q98 -77 155 -132q37 42 53 112q7 25 7 50 q0 42 -26 83.5t-83 93t-164 133.5q-98 77 -154 131q-61 -72 -61 -153z" />
-<glyph unicode="&#xa8;" horiz-adv-x="799" d="M-23 1380q0 68 28 113t74 66.5t101 21.5q79 0 116.5 -42.5t37.5 -117.5q0 -67 -29 -111t-76 -64.5t-100 -20.5q-78 0 -115 41t-37 114zM465 1380q0 100 58.5 150.5t144.5 50.5q78 0 115.5 -42.5t37.5 -117.5q0 -67 -29 -111t-75.5 -64.5t-100.5 -20.5q-78 0 -114.5 41 t-36.5 114z" />
-<glyph unicode="&#xa9;" horiz-adv-x="1847" d="M158 786q0 222 109.5 409.5t296.5 297t409 109.5q221 0 408.5 -109.5t297 -297t109.5 -409.5q0 -221 -109.5 -408.5t-297 -297t-408.5 -109.5q-222 0 -409 109.5t-296.5 297t-109.5 408.5zM240 786q0 -203 98.5 -375t266.5 -273t368 -101q199 0 367.5 101t267 273 t98.5 375q0 204 -98.5 376t-267 273t-367.5 101q-200 0 -368 -101t-266.5 -273t-98.5 -376zM500 786q0 190 68 316t186 186t272 60q97 0 186.5 -28.5t148 -90t58.5 -156.5q0 -55 -25.5 -100.5t-70 -72t-100.5 -26.5q-89 0 -139 51t-50 134q0 74 48.5 129.5t119.5 75.5 q-19 13 -51 21.5t-66 8.5q-72 0 -115.5 -41t-65 -145t-21.5 -293q0 -159 37 -254t94 -133.5t125 -38.5q148 0 247 199l35 -13q-28 -90 -83.5 -169t-142.5 -129t-202 -50q-223 0 -358 133.5t-135 425.5z" />
-<glyph unicode="&#xaa;" horiz-adv-x="1196" d="M207 944q0 127 80 252t207.5 204t259.5 79q40 0 64.5 -14t28.5 -57l15 52q199 0 348 19l-168 -531q-9 -32 -9 -47q0 -37 38 -37q55 0 78 64l18 51h39l-20 -57q-67 -185 -279 -185q-190 0 -190 161q0 17 1 26q-55 -105 -127 -146t-161 -41q-223 0 -223 207zM561 973 q0 -111 45 -111q30 0 65 45t67 120l93 325q-1 40 -15 59t-34 19q-42 0 -94.5 -70t-89.5 -177t-37 -210z" />
-<glyph unicode="&#xab;" horiz-adv-x="1294" d="M31 510l10 41q188 110 363 239.5t382 301.5h37q-40 -86 -108.5 -198t-143.5 -211.5t-131 -152.5q32 -52 61 -152t46 -211t16 -196h-37q-119 164 -237 295.5t-258 243.5zM553 510l10 41q162 92 311.5 201t333.5 258h37q-43 -108 -138 -258t-163 -222q22 -45 42.5 -130.5 t31.5 -180t8 -166.5h-37q-118 150 -217.5 257.5t-218.5 199.5z" />
-<glyph unicode="&#xac;" horiz-adv-x="1303" d="M164 696l18 62h1026l-121 -420h-73l102 358h-952z" />
-<glyph unicode="&#xad;" horiz-adv-x="1038" />
-<glyph unicode="&#xae;" horiz-adv-x="1384" d="M236 1030q0 155 77 286.5t208 208.5t286 77t286 -77t208 -208.5t77 -286.5t-77 -286t-208 -208t-286 -77t-286 77t-208 208t-77 286zM322 1030q0 -136 65 -252.5t176.5 -185t243.5 -68.5t243.5 68.5t176.5 185t65 252.5q0 137 -65 253t-176 184.5t-244 68.5t-244 -68.5 t-176 -184.5t-65 -253zM512 721v31q21 2 30.5 7.5t13 20.5t3.5 47v449q0 33 -3.5 48.5t-13 21.5t-30.5 8v30q33 -2 147 -2q68 0 112 1t65 1q138 0 198 -40.5t60 -120.5q0 -51 -50 -97.5t-168 -65.5q69 -6 109 -20t58.5 -37.5t25.5 -62.5l35 -145q5 -35 26 -35q12 0 23 8 l12 -23q-41 -34 -118 -34q-145 0 -160 92l-27 147q-6 33 -14 50t-26 27t-54 14v-214q0 -32 3.5 -47t13 -20.5t30.5 -7.5v-31q-29 0 -65.5 1t-79.5 1q-52 0 -91.5 -1t-64.5 -1zM766 1077h8q56 0 86.5 36t30.5 104q0 66 -22.5 101.5t-65.5 35.5q-21 0 -29 -11t-8 -40v-226z " />
-<glyph unicode="&#xaf;" horiz-adv-x="741" d="M195 1407l12 51h721l-13 -51h-720z" />
-<glyph unicode="&#xb0;" horiz-adv-x="680" d="M287 1434q0 73 34 129t90.5 86t123.5 30t124 -30t91 -86t34 -129q0 -75 -34 -131t-91 -86.5t-124 -30.5t-123.5 30.5t-90.5 86.5t-34 131zM336 1434q0 -65 29.5 -112t75 -71t94.5 -24q48 0 94.5 24t76 71t29.5 112q0 63 -30 109.5t-76 70.5t-94 24t-94 -24t-75.5 -70.5 t-29.5 -109.5z" />
-<glyph unicode="&#xb1;" horiz-adv-x="1241" d="M-67 0l18 62h1026l-18 -62h-1026zM141 696l19 62h477l137 483h74l-137 -483h475l-19 -62h-475l-137 -481h-74l137 481h-477z" />
-<glyph unicode="&#xb2;" horiz-adv-x="750" d="M147 895l9 37q27 20 142.5 100t200.5 174t85 174q0 82 -95 82q-101 0 -194 -94l-29 23q62 66 153.5 109.5t209.5 43.5q90 0 144 -28.5t54 -85.5q0 -73 -74.5 -134.5t-184.5 -125t-142 -85.5q34 0 90 -11.5t93 -18t65 -6.5q76 0 76 53q0 20 -9 37l35 14q41 -61 41 -123 q0 -64 -48.5 -103.5t-143.5 -39.5q-32 0 -64.5 4t-112 17t-141.5 16q-49 2 -79.5 -3.5t-80.5 -25.5z" />
-<glyph unicode="&#xb3;" horiz-adv-x="713" d="M70 713v37q113 9 219.5 49.5t174.5 108.5t68 157q0 91 -71 106q-39 -20 -66 -20q-15 0 -26 6.5t-11 20.5q0 37 91 34q67 31 108 78t41 96q0 40 -22 59t-60 19q-102 0 -211 -98l-29 25q59 60 155 106.5t204 46.5q93 0 149 -28t56 -82q0 -55 -58 -103t-143 -82t-166 -49 q305 -3 305 -151q0 -96 -111 -169t-275.5 -115t-321.5 -52z" />
-<glyph unicode="&#xb4;" horiz-adv-x="457" d="M260 1247q60 95 113 202.5t80.5 156.5t68.5 90q26 26 61 42t70 16q55 0 95 -40q34 -34 34 -77q0 -61 -67 -130q-32 -32 -74 -59t-154.5 -91.5t-205.5 -129.5z" />
-<glyph unicode="&#xb6;" horiz-adv-x="1544" d="M86 469q0 268 128.5 493.5t349.5 357.5t487 132q80 0 214 -3t195 -3q168 0 246 4l-10 -39q-65 -3 -103 -18.5t-58.5 -44t-33.5 -76.5l-297 -1139q-65 -247 -226 -382.5t-464 -135.5q-153 0 -245.5 43t-92.5 139q0 80 56 129t157 49q91 0 149 -38.5t58 -110.5 q0 -116 -133 -172q20 -4 47 -4q56 0 93.5 32.5t67.5 100.5t66 190q-339 0 -495 131t-156 365zM303 719q-1 -8 73.5 -19.5t198 -20.5t263.5 -9q-35 -166 -51.5 -311t-16.5 -222q0 -39 4 -39q52 193 191.5 716.5t142.5 528.5q-8 0 -49.5 -83.5t-95.5 -215t-99 -274.5 q-139 0 -267 -10t-210.5 -22.5t-83.5 -18.5z" />
-<glyph unicode="&#xb7;" horiz-adv-x="635" d="M111 518q0 63 30 112.5t82 77.5t117 28q79 0 120.5 -35.5t41.5 -104.5q0 -54 -31 -103t-84 -79.5t-116 -30.5q-79 0 -119.5 34.5t-40.5 100.5z" />
-<glyph unicode="&#xb8;" horiz-adv-x="467" d="M-154 -348l13 33q60 -21 125 -21q59 0 113.5 18t54.5 68q0 22 -16 34.5t-42 12.5q-35 0 -63 -14l172 217h59l-102 -137q74 24 127 24q65 0 106 -22t41 -66q0 -64 -56 -105t-145 -60t-190 -19q-110 0 -197 37z" />
-<glyph unicode="&#xb9;" horiz-adv-x="569" d="M213 1298l10 39q110 28 192.5 61.5t135.5 64.5t125 79h39l-207 -647h-244l150 457q-131 -40 -201 -54z" />
-<glyph unicode="&#xba;" horiz-adv-x="1116" d="M213 1014q0 95 68.5 204.5t199.5 185t310 75.5q177 0 277.5 -69.5t100.5 -207.5q0 -95 -68 -204t-199 -184t-310 -75q-178 0 -278.5 69t-100.5 206zM545 895q0 -119 57 -119q53 0 108.5 85t91.5 213.5t36 248.5q0 119 -58 119q-52 0 -107.5 -85.5t-91.5 -214t-36 -247.5z " />
-<glyph unicode="&#xbb;" horiz-adv-x="1292" d="M12 53q44 108 137.5 257t159.5 220q-21 46 -41 132t-31 181.5t-8 166.5h37q120 -153 218.5 -260.5t217.5 -198.5l-10 -41q-163 -93 -315 -203t-328 -254h-37zM432 -29q40 85 108.5 196.5t142.5 211t130 151.5q-31 53 -59.5 153.5t-45.5 212.5t-16 196h37 q121 -167 239 -298.5t259 -242.5l-10 -41q-191 -110 -366 -238.5t-382 -300.5h-37z" />
-<glyph unicode="&#xbc;" horiz-adv-x="1452" d="M-232 -86l1706 1774l31 -27l-1706 -1774zM213 1298l10 39q110 28 192.5 61.5t135.5 64.5t125 79h39l-207 -647h-244l150 457q-131 -40 -201 -54zM247 -16l10 36l738 629h38l-151 -520h102l-45 -145h-99l-46 -158h-189l46 158h-404zM440 129h253l83 284z" />
-<glyph unicode="&#xbd;" horiz-adv-x="1292" d="M-232 -86l1706 1774l31 -27l-1706 -1774zM213 1298l10 39q110 28 192.5 61.5t135.5 64.5t125 79h39l-207 -647h-244l150 457q-131 -40 -201 -54zM470 0l9 37q27 20 142.5 100t200.5 174t85 174q0 82 -95 82q-101 0 -194 -94l-29 23q62 66 153.5 109.5t209.5 43.5 q90 0 144 -28.5t54 -85.5q0 -73 -74.5 -134.5t-184.5 -125t-142 -85.5q34 0 90 -11.5t93 -18t65 -6.5q76 0 76 53q0 20 -9 37l35 14q41 -61 41 -123q0 -64 -48.5 -103.5t-143.5 -39.5q-32 0 -64.5 4t-112 17t-141.5 16q-49 2 -79.5 -3.5t-80.5 -25.5z" />
-<glyph unicode="&#xbe;" horiz-adv-x="1595" d="M-27 -86l1706 1774l31 -27l-1706 -1774zM70 713v37q113 9 219.5 49.5t174.5 108.5t68 157q0 91 -71 106q-39 -20 -66 -20q-15 0 -26 6.5t-11 20.5q0 37 91 34q67 31 108 78t41 96q0 40 -22 59t-60 19q-102 0 -211 -98l-29 25q59 60 155 106.5t204 46.5q93 0 149 -28 t56 -82q0 -55 -58 -103t-143 -82t-166 -49q305 -3 305 -151q0 -96 -111 -169t-275.5 -115t-321.5 -52zM452 -16l10 36l738 629h38l-151 -520h102l-45 -145h-99l-46 -158h-189l46 158h-404zM645 129h253l83 284z" />
-<glyph unicode="&#xbf;" horiz-adv-x="1057" d="M-94 -137q0 59 33 108t93 96t181 128q98 66 150 107.5t80 85.5t28 97q0 117 -131 117q-67 0 -117 -20q33 -2 63.5 -19.5t50 -48t19.5 -68.5q0 -40 -22.5 -72t-61.5 -50.5t-88 -18.5q-64 0 -103.5 33t-39.5 94q0 80 66 128.5t161.5 68.5t192.5 20q114 0 206 -26t145.5 -76 t53.5 -119q0 -61 -41 -117t-99.5 -101.5t-150.5 -107.5q-108 -72 -162 -114t-83 -85t-29 -96q0 -70 46.5 -105.5t121.5 -35.5q80 0 129 19q-71 8 -119.5 52t-48.5 107q0 45 25.5 82t68 57.5t92.5 20.5q70 0 120 -40t50 -116q0 -87 -67.5 -139t-167.5 -73t-209 -21 q-132 0 -230.5 29.5t-152 85.5t-53.5 133zM440 874q0 63 30 112.5t82 77.5t117 28q79 0 120.5 -35.5t41.5 -104.5q0 -54 -31 -103t-84 -79.5t-116 -30.5q-79 0 -119.5 34.5t-40.5 100.5z" />
-<glyph unicode="&#xc0;" horiz-adv-x="1370" d="M-197 0l9 41q40 11 74 36.5t73.5 73t101.5 134.5l836 1175q33 -4 79 -4t75 4l82 -1288q5 -67 34 -98t66 -33l-8 -41q-120 6 -346 6q-238 0 -349 -6l9 41q66 3 103 15.5t55.5 43t18.5 87.5q0 17 -1 26l-18 336h-402l-199 -281q-48 -70 -48 -117q0 -96 188 -110l-9 -41 q-211 6 -290 6q-70 0 -134 -6zM324 590h371l-25 489zM575 1808q0 28 13 54q18 37 53.5 56.5t75.5 19.5q35 0 64 -15q35 -16 60.5 -40.5t95.5 -109t167 -167.5l-14 -25q-79 24 -140 37t-154.5 28t-139.5 40q-37 19 -59 51.5t-22 70.5z" />
-<glyph unicode="&#xc1;" horiz-adv-x="1370" d="M-197 0l9 41q40 11 74 36.5t73.5 73t101.5 134.5l836 1175q33 -4 79 -4t75 4l82 -1288q5 -67 34 -98t66 -33l-8 -41q-120 6 -346 6q-238 0 -349 -6l9 41q66 3 103 15.5t55.5 43t18.5 87.5q0 17 -1 26l-18 336h-402l-199 -281q-48 -70 -48 -117q0 -96 188 -110l-9 -41 q-211 6 -290 6q-70 0 -134 -6zM324 590h371l-25 489zM842 1606q84 74 166 162t122.5 127t92.5 67q43 24 94 24q88 0 127 -71q15 -29 15 -55q0 -75 -107 -136q-39 -21 -87 -35t-174 -43.5t-235 -64.5z" />
-<glyph unicode="&#xc2;" horiz-adv-x="1370" d="M-197 0l9 41q40 11 74 36.5t73.5 73t101.5 134.5l836 1175q33 -4 79 -4t75 4l82 -1288q5 -67 34 -98t66 -33l-8 -41q-120 6 -346 6q-238 0 -349 -6l9 41q66 3 103 15.5t55.5 43t18.5 87.5q0 17 -1 26l-18 336h-402l-199 -281q-48 -70 -48 -117q0 -96 188 -110l-9 -41 q-211 6 -290 6q-70 0 -134 -6zM324 590h371l-25 489zM504 1606q182 57 343.5 152t260.5 200h37q41 -126 104.5 -207t180.5 -145l-8 -29q-150 24 -251.5 49.5t-195.5 61.5q-200 -68 -460 -111z" />
-<glyph unicode="&#xc3;" horiz-adv-x="1370" d="M-197 0l9 41q40 11 74 36.5t73.5 73t101.5 134.5l836 1175q33 -4 79 -4t75 4l82 -1288q5 -67 34 -98t66 -33l-8 -41q-120 6 -346 6q-238 0 -349 -6l9 41q66 3 103 15.5t55.5 43t18.5 87.5q0 17 -1 26l-18 336h-402l-199 -281q-48 -70 -48 -117q0 -96 188 -110l-9 -41 q-211 6 -290 6q-70 0 -134 -6zM324 590h371l-25 489zM527 1608q63 168 167.5 251t221.5 83q77 0 128 -21.5t131 -75t153 -53.5q48 0 88.5 28t79.5 91l37 -10q-62 -169 -167 -251.5t-222 -82.5q-77 0 -128.5 21t-131 74.5t-152.5 53.5q-49 0 -89 -28t-79 -91z" />
-<glyph unicode="&#xc4;" horiz-adv-x="1370" d="M-197 0l9 41q40 11 74 36.5t73.5 73t101.5 134.5l836 1175q33 -4 79 -4t75 4l82 -1288q5 -67 34 -98t66 -33l-8 -41q-120 6 -346 6q-238 0 -349 -6l9 41q66 3 103 15.5t55.5 43t18.5 87.5q0 17 -1 26l-18 336h-402l-199 -281q-48 -70 -48 -117q0 -96 188 -110l-9 -41 q-211 6 -290 6q-70 0 -134 -6zM324 590h371l-25 489zM551 1716q0 68 28 113t74 66.5t101 21.5q78 0 116 -43t38 -117q0 -67 -29 -111t-76 -64.5t-100 -20.5q-78 0 -115 41t-37 114zM1080 1716q0 68 28 113t73.5 66.5t100.5 21.5q78 0 116 -43t38 -117q0 -67 -29 -111 t-75.5 -64.5t-100.5 -20.5q-78 0 -114.5 41t-36.5 114z" />
-<glyph unicode="&#xc5;" horiz-adv-x="1370" d="M-197 0l9 41q40 11 74 36.5t73.5 73t101.5 134.5l836 1175q33 -4 79 -4t75 4l82 -1288q5 -67 34 -98t66 -33l-8 -41q-120 6 -346 6q-238 0 -349 -6l9 41q66 3 103 15.5t55.5 43t18.5 87.5q0 17 -1 26l-18 336h-402l-199 -281q-48 -70 -48 -117q0 -96 188 -110l-9 -41 q-211 6 -290 6q-70 0 -134 -6zM324 590h371l-25 489zM775 1704q0 64 35 117t95.5 83.5t133.5 30.5q61 0 110.5 -22.5t78 -64t28.5 -95.5q0 -63 -38 -116.5t-100.5 -85t-133.5 -31.5q-60 0 -107.5 22t-74.5 64t-27 98zM830 1704q0 -44 23 -76t61 -48.5t80 -16.5q53 0 101 25 t78 68t30 93q0 46 -25 78.5t-64 48.5t-81 16q-54 0 -101 -26.5t-74.5 -70t-27.5 -91.5z" />
-<glyph unicode="&#xc6;" horiz-adv-x="1864" d="M-184 0v41q63 3 176 131l974 1179q-6 32 -36.5 43.5t-100.5 14.5l11 41l204 -4l113 137h53l-113 -137q177 -2 453 -2q295 0 424 6q-26 -71 -48.5 -146t-29.5 -96q-18 -61 -26 -127h-45q15 86 15 145q0 96 -42.5 136.5t-138.5 40.5h-88q-71 0 -106.5 -12t-57 -46.5 t-41.5 -111.5l-128 -483h118q58 0 96.5 30.5t62 76t52.5 122.5h45q-26 -79 -43.5 -148.5t-26.5 -101.5q-25 -92 -53 -250h-45q0 20 5 63t5 63q0 46 -22.5 73t-83.5 31h-121l-131 -492q-18 -70 -18 -100q0 -29 13.5 -44t41.5 -20.5t79 -5.5h109q99 0 162.5 34t109.5 111 t95 218h45q-17 -42 -43 -148q-32 -108 -54 -262q-139 6 -462 6q-476 0 -713 -6l8 41q74 3 110.5 16t58.5 48t42 112l131 492h-323l-427 -516q-58 -68 -58 -97q0 -45 126 -55v-41q-55 6 -176 6q-89 0 -137 -6zM521 750h301l128 483q7 29 12 50z" />
-<glyph unicode="&#xc7;" horiz-adv-x="1450" d="M76 496q0 246 135.5 473t373.5 368.5t529 141.5q112 0 181 -35.5t122 -97.5q15 -18 30 -18q38 0 83 122h43q-68 -177 -131 -471h-45q20 118 20 177q0 90 -35 149q-38 65 -92 90.5t-133 25.5q-161 0 -301.5 -133.5t-224.5 -355.5t-84 -475q0 -207 70.5 -307.5 t197.5 -100.5q69 0 141.5 31.5t124.5 87.5q54 58 94 129t91 195h45q-97 -355 -121 -492h-45q6 44 6 70q0 52 -26 52q-16 0 -42 -18q-192 -133 -409 -133q-305 0 -451.5 136t-146.5 389zM340 -348l12 33q23 -6 74.5 -13.5t91.5 -7.5q168 0 168 86q0 47 -57 47q-32 0 -64 -14 l100 231h56l-58 -131q62 25 127 25q73 0 115.5 -27t42.5 -82q0 -64 -53 -105t-137.5 -60t-180.5 -19q-69 0 -132.5 11.5t-104.5 25.5z" />
-<glyph unicode="&#xc8;" horiz-adv-x="1305" d="M-98 0l8 41q74 3 110.5 16t58.5 48t42 112l270 1016q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l11 41q235 -6 710 -6q295 0 424 6q-50 -129 -78 -242q-11 -46 -26 -127h-45q1 119 -26.5 190t-82 101.5t-139.5 30.5h-6q-71 0 -106.5 -12t-57 -46.5t-41.5 -111.5 l-128 -483h36q64 0 123 31.5t103 84t67 113.5h45q-26 -79 -43.5 -148.5t-26.5 -101.5q-27 -102 -53 -250h-45q0 54 -19 106.5t-63.5 88t-116.5 35.5h-18l-131 -492q-18 -70 -18 -100q0 -29 13.5 -44t41.5 -20.5t79 -5.5h27q100 0 175.5 34.5t140.5 113t132 215.5h46 q-14 -36 -44 -148q-32 -117 -53 -262q-139 6 -463 6q-475 0 -712 -6zM485 1808q0 28 13 54q18 37 53.5 56.5t75.5 19.5q35 0 64 -15q35 -16 60.5 -40.5t95.5 -109t167 -167.5l-14 -25q-79 24 -140 37t-154.5 28t-139.5 40q-37 19 -59 51.5t-22 70.5z" />
-<glyph unicode="&#xc9;" horiz-adv-x="1305" d="M-98 0l8 41q74 3 110.5 16t58.5 48t42 112l270 1016q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l11 41q235 -6 710 -6q295 0 424 6q-50 -129 -78 -242q-11 -46 -26 -127h-45q1 119 -26.5 190t-82 101.5t-139.5 30.5h-6q-71 0 -106.5 -12t-57 -46.5t-41.5 -111.5 l-128 -483h36q64 0 123 31.5t103 84t67 113.5h45q-26 -79 -43.5 -148.5t-26.5 -101.5q-27 -102 -53 -250h-45q0 54 -19 106.5t-63.5 88t-116.5 35.5h-18l-131 -492q-18 -70 -18 -100q0 -29 13.5 -44t41.5 -20.5t79 -5.5h27q100 0 175.5 34.5t140.5 113t132 215.5h46 q-14 -36 -44 -148q-32 -117 -53 -262q-139 6 -463 6q-475 0 -712 -6zM752 1606q84 74 166 162t122.5 127t92.5 67q43 24 94 24q88 0 127 -71q15 -29 15 -55q0 -75 -107 -136q-39 -21 -87 -35t-174 -43.5t-235 -64.5z" />
-<glyph unicode="&#xca;" horiz-adv-x="1305" d="M-98 0l8 41q74 3 110.5 16t58.5 48t42 112l270 1016q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l11 41q235 -6 710 -6q295 0 424 6q-50 -129 -78 -242q-11 -46 -26 -127h-45q1 119 -26.5 190t-82 101.5t-139.5 30.5h-6q-71 0 -106.5 -12t-57 -46.5t-41.5 -111.5 l-128 -483h36q64 0 123 31.5t103 84t67 113.5h45q-26 -79 -43.5 -148.5t-26.5 -101.5q-27 -102 -53 -250h-45q0 54 -19 106.5t-63.5 88t-116.5 35.5h-18l-131 -492q-18 -70 -18 -100q0 -29 13.5 -44t41.5 -20.5t79 -5.5h27q100 0 175.5 34.5t140.5 113t132 215.5h46 q-14 -36 -44 -148q-32 -117 -53 -262q-139 6 -463 6q-475 0 -712 -6zM414 1606q182 57 343.5 152t260.5 200h37q41 -126 104.5 -207t180.5 -145l-8 -29q-150 24 -251.5 49.5t-195.5 61.5q-200 -68 -460 -111z" />
-<glyph unicode="&#xcb;" horiz-adv-x="1305" d="M-98 0l8 41q74 3 110.5 16t58.5 48t42 112l270 1016q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l11 41q235 -6 710 -6q295 0 424 6q-50 -129 -78 -242q-11 -46 -26 -127h-45q1 119 -26.5 190t-82 101.5t-139.5 30.5h-6q-71 0 -106.5 -12t-57 -46.5t-41.5 -111.5 l-128 -483h36q64 0 123 31.5t103 84t67 113.5h45q-26 -79 -43.5 -148.5t-26.5 -101.5q-27 -102 -53 -250h-45q0 54 -19 106.5t-63.5 88t-116.5 35.5h-18l-131 -492q-18 -70 -18 -100q0 -29 13.5 -44t41.5 -20.5t79 -5.5h27q100 0 175.5 34.5t140.5 113t132 215.5h46 q-14 -36 -44 -148q-32 -117 -53 -262q-139 6 -463 6q-475 0 -712 -6zM461 1716q0 68 28 113t74 66.5t101 21.5q78 0 116 -43t38 -117q0 -67 -29 -111t-76 -64.5t-100 -20.5q-78 0 -115 41t-37 114zM990 1716q0 68 28 113t73.5 66.5t100.5 21.5q78 0 116 -43t38 -117 q0 -67 -29 -111t-75.5 -64.5t-100.5 -20.5q-78 0 -114.5 41t-36.5 114z" />
-<glyph unicode="&#xcc;" horiz-adv-x="864" d="M-96 0l10 41q71 3 107 16t58 48.5t42 111.5l270 1016q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l11 41q113 -6 362 -6q232 0 385 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-18 -70 -18 -100t13.5 -45.5t42.5 -22t82 -8.5l-8 -41q-132 6 -383 6 q-242 0 -362 -6zM313 1808q0 28 13 54q18 37 53.5 56.5t75.5 19.5q35 0 64 -15q35 -16 60.5 -40.5t95.5 -109t167 -167.5l-14 -25q-79 24 -140 37t-154.5 28t-139.5 40q-37 19 -59 51.5t-22 70.5z" />
-<glyph unicode="&#xcd;" horiz-adv-x="864" d="M-96 0l10 41q71 3 107 16t58 48.5t42 111.5l270 1016q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l11 41q113 -6 362 -6q232 0 385 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-18 -70 -18 -100t13.5 -45.5t42.5 -22t82 -8.5l-8 -41q-132 6 -383 6 q-242 0 -362 -6zM580 1606q84 74 166 162t122.5 127t92.5 67q43 24 94 24q88 0 127 -71q15 -29 15 -55q0 -75 -107 -136q-39 -21 -87 -35t-174 -43.5t-235 -64.5z" />
-<glyph unicode="&#xce;" horiz-adv-x="864" d="M-96 0l10 41q71 3 107 16t58 48.5t42 111.5l270 1016q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l11 41q113 -6 362 -6q232 0 385 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-18 -70 -18 -100t13.5 -45.5t42.5 -22t82 -8.5l-8 -41q-132 6 -383 6 q-242 0 -362 -6zM242 1606q182 57 343.5 152t260.5 200h37q41 -126 104.5 -207t180.5 -145l-8 -29q-150 24 -251.5 49.5t-195.5 61.5q-200 -68 -460 -111z" />
-<glyph unicode="&#xcf;" horiz-adv-x="864" d="M-96 0l10 41q71 3 107 16t58 48.5t42 111.5l270 1016q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l11 41q113 -6 362 -6q232 0 385 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-18 -70 -18 -100t13.5 -45.5t42.5 -22t82 -8.5l-8 -41q-132 6 -383 6 q-242 0 -362 -6zM289 1716q0 68 28 113t74 66.5t101 21.5q78 0 116 -43t38 -117q0 -67 -29 -111t-76 -64.5t-100 -20.5q-78 0 -115 41t-37 114zM818 1716q0 68 28 113t73.5 66.5t100.5 21.5q78 0 116 -43t38 -117q0 -67 -29 -111t-75.5 -64.5t-100.5 -20.5q-78 0 -114.5 41 t-36.5 114z" />
-<glyph unicode="&#xd0;" horiz-adv-x="1642" d="M-88 0l6 41q70 3 105.5 16t57.5 48.5t42 111.5l268 1016q13 49 13 80q0 44 -29.5 68t-102.5 28l7 41q163 -7 318 -7l75 1q171 6 303 6q307 0 476 -130t169 -384q0 -222 -106.5 -436.5t-339.5 -357t-590 -142.5q-43 0 -133 3t-191 3q-225 0 -348 -6zM112 706l13 52h884 l-12 -52h-885zM514 91q0 -30 19 -42t67 -12q180 0 316.5 149.5t209 376t72.5 447.5q0 403 -260 403q-46 0 -65.5 -12t-30 -40.5t-35.5 -123.5l-268 -1024q-25 -93 -25 -122z" />
-<glyph unicode="&#xd1;" horiz-adv-x="1763" d="M-174 68q0 64 30.5 113t82.5 75.5t116 26.5q84 0 133.5 -40.5t49.5 -111.5q0 -60 -28 -109t-76.5 -80.5t-108.5 -41.5q15 -17 51 -17q103 0 176 115q77 120 158.5 430t177.5 801v4q12 57 12 91t-14.5 51.5t-47.5 24.5t-96 9l11 41q64 -6 182 -6q95 0 166 6l447 -870 q157 649 284 833q90 131 221 131q71 0 125.5 -29t84.5 -79t30 -111q0 -64 -30.5 -113t-83 -75.5t-116.5 -26.5q-84 0 -133 40t-49 112q0 60 27.5 109t76 80.5t109.5 41.5q-16 16 -51 16q-50 0 -94.5 -30.5t-79.5 -81.5q-91 -136 -189 -477t-223 -930h-45l-536 975 q-173 -831 -291 -988q-45 -60 -95.5 -94.5t-123.5 -34.5q-71 0 -125.5 29t-84.5 79t-30 112zM711 1608q63 168 167.5 251t221.5 83q77 0 128 -21.5t131 -75t153 -53.5q48 0 88.5 28t79.5 91l37 -10q-62 -169 -167 -251.5t-222 -82.5q-77 0 -128.5 21t-131 74.5t-152.5 53.5 q-49 0 -89 -28t-79 -91z" />
-<glyph unicode="&#xd2;" horiz-adv-x="1657" d="M70 463q0 232 124.5 469t348.5 392t504 155q188 0 324 -58t209 -169t73 -267q0 -231 -125.5 -467.5t-350 -391.5t-503.5 -155q-188 0 -324 58t-208 168.5t-72 265.5zM512 436q0 -131 23 -228t64 -148.5t93 -51.5q129 0 249 147.5t193.5 381.5t73.5 477q0 131 -23 228 t-63.5 148.5t-93.5 51.5q-129 0 -249 -147.5t-193.5 -381.5t-73.5 -477zM704 1808q0 28 13 54q18 37 53.5 56.5t75.5 19.5q35 0 64 -15q35 -16 60.5 -40.5t95.5 -109t167 -167.5l-14 -25q-79 24 -140 37t-154.5 28t-139.5 40q-37 19 -59 51.5t-22 70.5z" />
-<glyph unicode="&#xd3;" horiz-adv-x="1657" d="M70 463q0 232 124.5 469t348.5 392t504 155q188 0 324 -58t209 -169t73 -267q0 -231 -125.5 -467.5t-350 -391.5t-503.5 -155q-188 0 -324 58t-208 168.5t-72 265.5zM512 436q0 -131 23 -228t64 -148.5t93 -51.5q129 0 249 147.5t193.5 381.5t73.5 477q0 131 -23 228 t-63.5 148.5t-93.5 51.5q-129 0 -249 -147.5t-193.5 -381.5t-73.5 -477zM971 1606q84 74 166 162t122.5 127t92.5 67q43 24 94 24q88 0 127 -71q15 -29 15 -55q0 -75 -107 -136q-39 -21 -87 -35t-174 -43.5t-235 -64.5z" />
-<glyph unicode="&#xd4;" horiz-adv-x="1657" d="M70 463q0 232 124.5 469t348.5 392t504 155q188 0 324 -58t209 -169t73 -267q0 -231 -125.5 -467.5t-350 -391.5t-503.5 -155q-188 0 -324 58t-208 168.5t-72 265.5zM512 436q0 -131 23 -228t64 -148.5t93 -51.5q129 0 249 147.5t193.5 381.5t73.5 477q0 131 -23 228 t-63.5 148.5t-93.5 51.5q-129 0 -249 -147.5t-193.5 -381.5t-73.5 -477zM633 1606q182 57 343.5 152t260.5 200h37q41 -126 104.5 -207t180.5 -145l-8 -29q-150 24 -251.5 49.5t-195.5 61.5q-200 -68 -460 -111z" />
-<glyph unicode="&#xd5;" horiz-adv-x="1657" d="M70 463q0 232 124.5 469t348.5 392t504 155q188 0 324 -58t209 -169t73 -267q0 -231 -125.5 -467.5t-350 -391.5t-503.5 -155q-188 0 -324 58t-208 168.5t-72 265.5zM512 436q0 -131 23 -228t64 -148.5t93 -51.5q129 0 249 147.5t193.5 381.5t73.5 477q0 131 -23 228 t-63.5 148.5t-93.5 51.5q-129 0 -249 -147.5t-193.5 -381.5t-73.5 -477zM656 1608q63 168 167.5 251t221.5 83q77 0 128 -21.5t131 -75t153 -53.5q48 0 88.5 28t79.5 91l37 -10q-62 -169 -167 -251.5t-222 -82.5q-77 0 -128.5 21t-131 74.5t-152.5 53.5q-49 0 -89 -28 t-79 -91z" />
-<glyph unicode="&#xd6;" horiz-adv-x="1657" d="M70 463q0 232 124.5 469t348.5 392t504 155q188 0 324 -58t209 -169t73 -267q0 -231 -125.5 -467.5t-350 -391.5t-503.5 -155q-188 0 -324 58t-208 168.5t-72 265.5zM512 436q0 -131 23 -228t64 -148.5t93 -51.5q129 0 249 147.5t193.5 381.5t73.5 477q0 131 -23 228 t-63.5 148.5t-93.5 51.5q-129 0 -249 -147.5t-193.5 -381.5t-73.5 -477zM680 1716q0 68 28 113t74 66.5t101 21.5q78 0 116 -43t38 -117q0 -67 -29 -111t-76 -64.5t-100 -20.5q-78 0 -115 41t-37 114zM1209 1716q0 68 28 113t73.5 66.5t100.5 21.5q78 0 116 -43t38 -117 q0 -67 -29 -111t-75.5 -64.5t-100.5 -20.5q-78 0 -114.5 41t-36.5 114z" />
-<glyph unicode="&#xd7;" horiz-adv-x="993" d="M27 373l456 354l-256 358l54 37l251 -358l465 362l33 -45l-465 -360l256 -354l-51 -37l-254 354l-459 -356z" />
-<glyph unicode="&#xd8;" horiz-adv-x="1657" d="M18 -121l215 219q-163 129 -163 365q0 232 124.5 469t348.5 392t504 155q246 0 400 -98l193 202l31 -27l-189 -199q171 -131 171 -372q0 -231 -125.5 -467.5t-350 -391.5t-503.5 -155q-250 0 -405 101l-216 -222zM512 436q0 -58 5 -110l685 816q-15 142 -61.5 221 t-112.5 79q-129 0 -249 -147.5t-193.5 -381.5t-73.5 -477zM524 267q18 -123 63 -191t105 -68q129 0 249 147.5t193.5 381.5t73.5 477q0 35 -2 68z" />
-<glyph unicode="&#xd9;" horiz-adv-x="1438" d="M144 349q0 98 38 241l170 643q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l13 41q120 -6 387 -6q214 0 358 6l-12 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-180 -678q-51 -191 -51 -309q0 -203 145 -203q215 0 338.5 139.5t189.5 390.5l125 476q45 170 45 232 q0 41 -15.5 66t-49.5 39t-94 23l12 41q80 -6 227 -6q108 0 172 6l-12 -41q-67 -14 -105 -44t-65 -91.5t-59 -183.5l-127 -494q-75 -285 -201 -434q-75 -88 -185 -139.5t-235 -51.5q-179 0 -292.5 52.5t-162.5 142.5q-42 78 -42 183zM622 1808q0 28 13 54q18 37 53.5 56.5 t75.5 19.5q35 0 64 -15q35 -16 60.5 -40.5t95.5 -109t167 -167.5l-14 -25q-79 24 -140 37t-154.5 28t-139.5 40q-37 19 -59 51.5t-22 70.5z" />
-<glyph unicode="&#xda;" horiz-adv-x="1438" d="M144 349q0 98 38 241l170 643q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l13 41q120 -6 387 -6q214 0 358 6l-12 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-180 -678q-51 -191 -51 -309q0 -203 145 -203q215 0 338.5 139.5t189.5 390.5l125 476q45 170 45 232 q0 41 -15.5 66t-49.5 39t-94 23l12 41q80 -6 227 -6q108 0 172 6l-12 -41q-67 -14 -105 -44t-65 -91.5t-59 -183.5l-127 -494q-75 -285 -201 -434q-75 -88 -185 -139.5t-235 -51.5q-179 0 -292.5 52.5t-162.5 142.5q-42 78 -42 183zM889 1606q84 74 166 162t122.5 127 t92.5 67q43 24 94 24q88 0 127 -71q15 -29 15 -55q0 -75 -107 -136q-39 -21 -87 -35t-174 -43.5t-235 -64.5z" />
-<glyph unicode="&#xdb;" horiz-adv-x="1438" d="M144 349q0 98 38 241l170 643q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l13 41q120 -6 387 -6q214 0 358 6l-12 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-180 -678q-51 -191 -51 -309q0 -203 145 -203q215 0 338.5 139.5t189.5 390.5l125 476q45 170 45 232 q0 41 -15.5 66t-49.5 39t-94 23l12 41q80 -6 227 -6q108 0 172 6l-12 -41q-67 -14 -105 -44t-65 -91.5t-59 -183.5l-127 -494q-75 -285 -201 -434q-75 -88 -185 -139.5t-235 -51.5q-179 0 -292.5 52.5t-162.5 142.5q-42 78 -42 183zM551 1606q182 57 343.5 152t260.5 200h37 q41 -126 104.5 -207t180.5 -145l-8 -29q-150 24 -251.5 49.5t-195.5 61.5q-200 -68 -460 -111z" />
-<glyph unicode="&#xdc;" horiz-adv-x="1438" d="M144 349q0 98 38 241l170 643q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l13 41q120 -6 387 -6q214 0 358 6l-12 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-180 -678q-51 -191 -51 -309q0 -203 145 -203q215 0 338.5 139.5t189.5 390.5l125 476q45 170 45 232 q0 41 -15.5 66t-49.5 39t-94 23l12 41q80 -6 227 -6q108 0 172 6l-12 -41q-67 -14 -105 -44t-65 -91.5t-59 -183.5l-127 -494q-75 -285 -201 -434q-75 -88 -185 -139.5t-235 -51.5q-179 0 -292.5 52.5t-162.5 142.5q-42 78 -42 183zM598 1716q0 68 28 113t74 66.5t101 21.5 q78 0 116 -43t38 -117q0 -67 -29 -111t-76 -64.5t-100 -20.5q-78 0 -115 41t-37 114zM1127 1716q0 68 28 113t73.5 66.5t100.5 21.5q78 0 116 -43t38 -117q0 -67 -29 -111t-75.5 -64.5t-100.5 -20.5q-78 0 -114.5 41t-36.5 114z" />
-<glyph unicode="&#xdd;" horiz-adv-x="1589" d="M150 1102l43 131q43 132 134.5 189t211.5 57q152 0 234 -80t120.5 -227.5t69.5 -415.5q128 395 303 600q105 123 243 123q71 0 125.5 -29t84.5 -79t30 -111q0 -64 -30.5 -113.5t-82.5 -76t-116 -26.5q-84 0 -133.5 40.5t-49.5 111.5q0 60 28 109t76.5 80.5t108.5 41.5 q-15 17 -51 17q-33 0 -63.5 -11t-67.5 -38q-53 -39 -126.5 -146t-148.5 -272.5t-130 -367.5l-99 -392q-11 -46 -11 -73q0 -41 19 -62.5t55.5 -29.5t98.5 -11l-10 -41q-129 6 -418 6q-251 0 -371 -6l11 41q74 3 111 16t59 48.5t41 111.5l105 419q-18 167 -50 318.5t-78.5 250 t-103.5 98.5q-36 0 -57 -27t-36 -70l-34 -104h-45zM868 1606q84 74 166 162t122.5 127t92.5 67q43 24 94 24q88 0 127 -71q15 -29 15 -55q0 -75 -107 -136q-39 -21 -87 -35t-174 -43.5t-235 -64.5z" />
-<glyph unicode="&#xde;" horiz-adv-x="1430" d="M-96 0l10 41q71 3 107 16t58 48.5t42 111.5l270 1016q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l11 41q113 -6 362 -6q232 0 385 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-26 -98q77 2 126 2q177 0 295.5 -38t177 -107.5t58.5 -164.5q0 -158 -112 -284.5 t-313.5 -199t-461.5 -73.5l-14 -53q-18 -70 -18 -100t13.5 -45.5t42.5 -22t82 -8.5l-8 -41q-132 6 -383 6q-242 0 -362 -6zM562 311h1q142 0 242 78.5t150.5 204t50.5 266.5q0 68 -23.5 122t-68.5 85t-107 31h-36z" />
-<glyph unicode="&#xdf;" horiz-adv-x="1327" d="M-135 -385l381 1440q50 193 130.5 312t208 177t318.5 58q155 0 256 -28.5t147 -74t46 -98.5q0 -71 -51 -120t-178.5 -130t-202.5 -139q-56 -44 -83 -72t-33.5 -43.5t-6.5 -32.5q0 -56 46 -107.5t102 -97t77 -63.5q13 -11 80.5 -67t96 -109t28.5 -113q0 -111 -66 -187 t-173.5 -112.5t-233.5 -36.5q-96 0 -163.5 32.5t-101.5 88.5t-34 127q0 49 18 92t51 69t76 26q41 0 73 -25.5t50 -70.5t18 -101q0 -53 -19 -107.5t-52 -85.5q12 -4 28 -4q31 0 56.5 24.5t40 68.5t14.5 98q0 55 -9.5 100.5t-22 89t-17.5 60.5q-7 23 -26 84t-30.5 113.5 t-11.5 92.5q0 69 28.5 113.5t77 92.5t76.5 77q123 127 123 363q0 94 -39 138t-98 44q-65 0 -110 -67t-80 -201l-437 -1659q-212 -3 -368 -29z" />
-<glyph unicode="&#xe0;" d="M-14 227q0 193 103 395.5t258 336t296 133.5q116 0 128 -118l26 87q203 3 370 31l-276 -918q-9 -27 -9 -50q0 -36 33 -36q61 0 109 129l43 115h39l-51 -150q-74 -211 -293 -211q-126 0 -178 72q-34 48 -34 126q0 23 1 36q-49 -127 -127 -180.5t-184 -53.5 q-127 0 -190.5 65.5t-63.5 190.5zM371 219q0 -60 10 -84t37 -24q40 0 81 57.5t91 205.5l160 530q2 20 2 30q0 57 -39 57q-58 0 -140.5 -118.5t-142 -298.5t-59.5 -355zM455 1622q0 33 14.5 61t42.5 46q31 20 70 20t74 -19t53 -49q21 -32 30 -66.5t24 -143.5t54 -230l-24 -14 q-55 62 -100.5 105t-117 105t-98.5 107q-22 38 -22 78z" />
-<glyph unicode="&#xe1;" d="M-14 227q0 193 103 395.5t258 336t296 133.5q116 0 128 -118l26 87q203 3 370 31l-276 -918q-9 -27 -9 -50q0 -36 33 -36q61 0 109 129l43 115h39l-51 -150q-74 -211 -293 -211q-126 0 -178 72q-34 48 -34 126q0 23 1 36q-49 -127 -127 -180.5t-184 -53.5 q-127 0 -190.5 65.5t-63.5 190.5zM371 219q0 -60 10 -84t37 -24q40 0 81 57.5t91 205.5l160 530q2 20 2 30q0 57 -39 57q-58 0 -140.5 -118.5t-142 -298.5t-59.5 -355zM672 1247q60 95 113 202.5t80.5 156.5t68.5 90q26 26 61 42t70 16q55 0 95 -40q34 -34 34 -77 q0 -61 -67 -130q-32 -32 -74 -59t-154.5 -91.5t-205.5 -129.5z" />
-<glyph unicode="&#xe2;" d="M-14 227q0 193 103 395.5t258 336t296 133.5q116 0 128 -118l26 87q203 3 370 31l-276 -918q-9 -27 -9 -50q0 -36 33 -36q61 0 109 129l43 115h39l-51 -150q-74 -211 -293 -211q-126 0 -178 72q-34 48 -34 126q0 23 1 36q-49 -127 -127 -180.5t-184 -53.5 q-127 0 -190.5 65.5t-63.5 190.5zM369 1270q158 69 297 186t226 248h36q33 -156 88.5 -257t155.5 -177l-8 -29q-242 43 -406 111q-154 -65 -378 -111zM371 219q0 -60 10 -84t37 -24q40 0 81 57.5t91 205.5l160 530q2 20 2 30q0 57 -39 57q-58 0 -140.5 -118.5t-142 -298.5 t-59.5 -355z" />
-<glyph unicode="&#xe3;" d="M-14 227q0 193 103 395.5t258 336t296 133.5q116 0 128 -118l26 87q203 3 370 31l-276 -918q-9 -27 -9 -50q0 -36 33 -36q61 0 109 129l43 115h39l-51 -150q-74 -211 -293 -211q-126 0 -178 72q-34 48 -34 126q0 23 1 36q-49 -127 -127 -180.5t-184 -53.5 q-127 0 -190.5 65.5t-63.5 190.5zM371 219q0 -60 10 -84t37 -24q40 0 81 57.5t91 205.5l160 530q2 20 2 30q0 57 -39 57q-58 0 -140.5 -118.5t-142 -298.5t-59.5 -355zM416 1300q57 169 150.5 251.5t197.5 82.5q59 0 98 -21.5t98 -74.5t113 -53q42 0 77.5 28t70.5 91l37 -11 q-57 -168 -151 -250.5t-198 -82.5q-59 0 -97.5 21.5t-98 74.5t-113.5 53q-42 0 -77 -28t-70 -91z" />
-<glyph unicode="&#xe4;" d="M-14 227q0 193 103 395.5t258 336t296 133.5q116 0 128 -118l26 87q203 3 370 31l-276 -918q-9 -27 -9 -50q0 -36 33 -36q61 0 109 129l43 115h39l-51 -150q-74 -211 -293 -211q-126 0 -178 72q-34 48 -34 126q0 23 1 36q-49 -127 -127 -180.5t-184 -53.5 q-127 0 -190.5 65.5t-63.5 190.5zM371 219q0 -60 10 -84t37 -24q40 0 81 57.5t91 205.5l160 530q2 20 2 30q0 57 -39 57q-58 0 -140.5 -118.5t-142 -298.5t-59.5 -355zM414 1380q0 68 28 113t74 66.5t101 21.5q79 0 116.5 -42.5t37.5 -117.5q0 -67 -29 -111t-76 -64.5 t-100 -20.5q-78 0 -115 41t-37 114zM902 1380q0 100 58.5 150.5t144.5 50.5q78 0 115.5 -42.5t37.5 -117.5q0 -67 -29 -111t-75.5 -64.5t-100.5 -20.5q-78 0 -114.5 41t-36.5 114z" />
-<glyph unicode="&#xe5;" d="M-14 227q0 193 103 395.5t258 336t296 133.5q116 0 128 -118l26 87q203 3 370 31l-276 -918q-9 -27 -9 -50q0 -36 33 -36q61 0 109 129l43 115h39l-51 -150q-74 -211 -293 -211q-126 0 -178 72q-34 48 -34 126q0 23 1 36q-49 -127 -127 -180.5t-184 -53.5 q-127 0 -190.5 65.5t-63.5 190.5zM371 219q0 -60 10 -84t37 -24q40 0 81 57.5t91 205.5l160 530q2 20 2 30q0 57 -39 57q-58 0 -140.5 -118.5t-142 -298.5t-59.5 -355zM607 1409q0 64 35 117t95.5 83.5t133.5 30.5q61 0 110.5 -22.5t78 -64t28.5 -95.5q0 -63 -38 -116.5 t-100.5 -85t-133.5 -31.5q-60 0 -107.5 22t-74.5 64t-27 98zM662 1409q0 -44 23 -76t61 -48.5t80 -16.5q53 0 101 25t78 68t30 93q0 46 -25 78.5t-64 48.5t-81 16q-54 0 -101 -26.5t-74.5 -70t-27.5 -91.5z" />
-<glyph unicode="&#xe6;" horiz-adv-x="1608" d="M-25 227q0 185 130 378t331.5 319.5t401.5 126.5q113 0 154 -68q176 109 376 109q114 0 184 -46t70 -135q0 -117 -93 -215t-240 -167t-313 -107q-7 -55 -7 -105q0 -112 43 -155t127 -43q51 0 131.5 35t154.5 108l33 -16q-78 -117 -211 -196t-307 -79q-115 0 -204 45 t-127 129q-71 -85 -171 -129.5t-209 -44.5q-127 0 -190.5 65.5t-63.5 190.5zM360 240q0 -65 30 -97t71 -32q37 0 68 14.5t68 52.5q-11 38 -11 82q0 131 46 263.5t131 246.5t198 192q-26 29 -72 29q-111 0 -235.5 -109t-209 -283t-84.5 -359zM981 457q123 59 184 114 q92 83 141.5 193.5t49.5 236.5q0 52 -33 52q-57 0 -128.5 -89t-130.5 -228t-83 -279z" />
-<glyph unicode="&#xe7;" horiz-adv-x="991" d="M-12 -348l13 33q60 -21 125 -21q59 0 113.5 18t54.5 68q0 22 -16 34.5t-42 12.5q-35 0 -63 -14l172 217h59l-102 -137q74 24 127 24q65 0 106 -22t41 -66q0 -64 -56 -105t-145 -60t-190 -19q-110 0 -197 37zM4 295q0 182 94.5 368t266.5 307.5t391 121.5q82 0 142.5 -29 t92 -77.5t31.5 -106.5q0 -65 -33 -127.5t-88.5 -102t-118.5 -39.5q-37 0 -68.5 16.5t-51 49t-19.5 78.5q0 64 29 120t76.5 95.5t103.5 56.5q-28 25 -70 25q-99 0 -190.5 -109.5t-148 -282.5t-56.5 -352q0 -106 43.5 -157.5t120.5 -51.5q65 0 125 37t121 127l41 -16 q-177 -275 -469 -275q-107 0 -189.5 35.5t-129 108t-46.5 180.5z" />
-<glyph unicode="&#xe8;" horiz-adv-x="1016" d="M-6 260q0 201 103.5 394t283 315.5t395.5 122.5q115 0 184.5 -46t69.5 -135q0 -117 -93 -215t-240 -167t-313 -107q-7 -55 -7 -105q0 -112 43 -155t127 -43q51 0 131.5 35t155.5 108l32 -16q-78 -117 -211 -196t-307 -79q-98 0 -178.5 33.5t-128 98.5t-47.5 157zM390 459 q106 59 188 139q186 184 186 403q0 52 -33 52q-57 0 -128 -88.5t-130 -227t-83 -278.5zM412 1622q0 33 14.5 61t42.5 46q31 20 70 20t74 -19t53 -49q21 -32 30 -66.5t24 -143.5t54 -230l-24 -14q-55 62 -100.5 105t-117 105t-98.5 107q-22 38 -22 78z" />
-<glyph unicode="&#xe9;" horiz-adv-x="1016" d="M-6 260q0 201 103.5 394t283 315.5t395.5 122.5q115 0 184.5 -46t69.5 -135q0 -117 -93 -215t-240 -167t-313 -107q-7 -55 -7 -105q0 -112 43 -155t127 -43q51 0 131.5 35t155.5 108l32 -16q-78 -117 -211 -196t-307 -79q-98 0 -178.5 33.5t-128 98.5t-47.5 157zM390 459 q106 59 188 139q186 184 186 403q0 52 -33 52q-57 0 -128 -88.5t-130 -227t-83 -278.5zM629 1247q60 95 113 202.5t80.5 156.5t68.5 90q26 26 61 42t70 16q55 0 95 -40q34 -34 34 -77q0 -61 -67 -130q-32 -32 -74 -59t-154.5 -91.5t-205.5 -129.5z" />
-<glyph unicode="&#xea;" horiz-adv-x="1016" d="M-6 260q0 201 103.5 394t283 315.5t395.5 122.5q115 0 184.5 -46t69.5 -135q0 -117 -93 -215t-240 -167t-313 -107q-7 -55 -7 -105q0 -112 43 -155t127 -43q51 0 131.5 35t155.5 108l32 -16q-78 -117 -211 -196t-307 -79q-98 0 -178.5 33.5t-128 98.5t-47.5 157z M326 1270q158 69 297 186t226 248h36q33 -156 88.5 -257t155.5 -177l-8 -29q-242 43 -406 111q-154 -65 -378 -111zM390 459q106 59 188 139q186 184 186 403q0 52 -33 52q-57 0 -128 -88.5t-130 -227t-83 -278.5z" />
-<glyph unicode="&#xeb;" horiz-adv-x="1016" d="M-6 260q0 201 103.5 394t283 315.5t395.5 122.5q115 0 184.5 -46t69.5 -135q0 -117 -93 -215t-240 -167t-313 -107q-7 -55 -7 -105q0 -112 43 -155t127 -43q51 0 131.5 35t155.5 108l32 -16q-78 -117 -211 -196t-307 -79q-98 0 -178.5 33.5t-128 98.5t-47.5 157z M371 1380q0 68 28 113t74 66.5t101 21.5q79 0 116.5 -42.5t37.5 -117.5q0 -67 -29 -111t-76 -64.5t-100 -20.5q-78 0 -115 41t-37 114zM390 459q106 59 188 139q186 184 186 403q0 52 -33 52q-57 0 -128 -88.5t-130 -227t-83 -278.5zM859 1380q0 100 58.5 150.5t144.5 50.5 q78 0 115.5 -42.5t37.5 -117.5q0 -67 -29 -111t-75.5 -64.5t-100.5 -20.5q-78 0 -114.5 41t-36.5 114z" />
-<glyph unicode="&#xec;" horiz-adv-x="686" d="M40 165q0 68 30 159l188 565q11 29 11 51q0 35 -29 35q-32 0 -59 -29t-54 -100l-47 -125h-39l57 160q77 211 305 211q110 0 162 -53t52 -136q0 -49 -17 -98l-213 -631q-10 -30 -10 -50q0 -36 35 -36q60 0 108 129l43 115h39l-51 -150q-72 -211 -293 -211q-104 0 -161 49 t-57 145zM129 1622q0 33 14.5 61t42.5 46q31 20 70 20t74 -19t53 -49q21 -32 30 -66.5t24 -143.5t54 -230l-24 -14q-55 62 -100.5 105t-117 105t-98.5 107q-22 38 -22 78z" />
-<glyph unicode="&#xed;" horiz-adv-x="686" d="M40 165q0 68 30 159l188 565q11 29 11 51q0 35 -29 35q-32 0 -59 -29t-54 -100l-47 -125h-39l57 160q77 211 305 211q110 0 162 -53t52 -136q0 -49 -17 -98l-213 -631q-10 -30 -10 -50q0 -36 35 -36q60 0 108 129l43 115h39l-51 -150q-72 -211 -293 -211q-104 0 -161 49 t-57 145zM346 1247q60 95 113 202.5t80.5 156.5t68.5 90q26 26 61 42t70 16q55 0 95 -40q34 -34 34 -77q0 -61 -67 -130q-32 -32 -74 -59t-154.5 -91.5t-205.5 -129.5z" />
-<glyph unicode="&#xee;" horiz-adv-x="686" d="M40 165q0 68 30 159l188 565q11 29 11 51q0 35 -29 35q-32 0 -59 -29t-54 -100l-47 -125h-39l57 160q77 211 305 211q110 0 162 -53t52 -136q0 -49 -17 -98l-213 -631q-10 -30 -10 -50q0 -36 35 -36q60 0 108 129l43 115h39l-51 -150q-72 -211 -293 -211q-104 0 -161 49 t-57 145zM43 1270q158 69 297 186t226 248h36q33 -156 88.5 -257t155.5 -177l-8 -29q-242 43 -406 111q-154 -65 -378 -111z" />
-<glyph unicode="&#xef;" horiz-adv-x="686" d="M40 165q0 68 30 159l188 565q11 29 11 51q0 35 -29 35q-32 0 -59 -29t-54 -100l-47 -125h-39l57 160q77 211 305 211q110 0 162 -53t52 -136q0 -49 -17 -98l-213 -631q-10 -30 -10 -50q0 -36 35 -36q60 0 108 129l43 115h39l-51 -150q-72 -211 -293 -211q-104 0 -161 49 t-57 145zM88 1380q0 68 28 113t74 66.5t101 21.5q79 0 116.5 -42.5t37.5 -117.5q0 -67 -29 -111t-76 -64.5t-100 -20.5q-78 0 -115 41t-37 114zM576 1380q0 100 58.5 150.5t144.5 50.5q78 0 115.5 -42.5t37.5 -117.5q0 -67 -29 -111t-75.5 -64.5t-100.5 -20.5 q-78 0 -114.5 41t-36.5 114z" />
-<glyph unicode="&#xf0;" horiz-adv-x="1139" d="M12 322q0 164 77.5 342t220.5 297.5t327 119.5q33 0 56 -4q-22 136 -77 241l-331 -147l-13 37l325 144q-75 127 -208 215l25 35q192 -60 344 -178l299 132l12 -36l-278 -122q141 -120 220 -275.5t79 -327.5q0 -206 -83 -395.5t-245 -309t-385 -119.5q-166 0 -265.5 82.5 t-99.5 268.5zM393 137q0 -55 3.5 -81t11.5 -35t24 -9q70 0 134.5 135t103.5 335.5t39 379.5q0 93 -10 174q-17 4 -31 4q-87 0 -149.5 -144.5t-94 -355t-31.5 -403.5z" />
-<glyph unicode="&#xf1;" horiz-adv-x="1268" d="M6 0l250 889q12 45 12 59q0 27 -30 27q-32 0 -59 -29t-54 -100l-47 -125h-39l57 160q38 108 107 159.5t174 51.5q115 0 165.5 -54t50.5 -139q0 -44 -13 -94l-56 -213q80 200 153.5 308.5t148.5 150t171 41.5q201 0 201 -170q0 -59 -27 -140l-202 -608q-10 -30 -10 -49 q0 -37 34 -37q61 0 109 129l43 115h39l-51 -150q-74 -211 -293 -211q-132 0 -185 74q-34 46 -34 115q0 65 32 164l176 530q18 52 18 80q0 31 -22 31q-53 0 -137.5 -143.5t-171 -367t-145.5 -448.5l1 4l-3 -10h-363zM387 1300q57 169 150.5 251.5t197.5 82.5q59 0 98 -21.5 t98 -74.5t113 -53q42 0 77.5 28t70.5 91l37 -11q-57 -168 -151 -250.5t-198 -82.5q-59 0 -97.5 21.5t-98 74.5t-113.5 53q-42 0 -77 -28t-70 -91z" />
-<glyph unicode="&#xf2;" horiz-adv-x="1141" d="M12 319q0 174 80 353t241 299.5t392 120.5q178 0 271.5 -90t93.5 -259q0 -173 -80 -352t-241.5 -299.5t-391.5 -120.5q-178 0 -271.5 90t-93.5 258zM352 127q0 -63 9.5 -89t29.5 -26q55 0 142 148t152 363.5t65 408.5q0 71 -9.5 95t-25.5 24q-58 0 -145.5 -154 t-152.5 -372t-65 -398zM426 1622q0 33 14.5 61t42.5 46q31 20 70 20t74 -19t53 -49q21 -32 30 -66.5t24 -143.5t54 -230l-24 -14q-55 62 -100.5 105t-117 105t-98.5 107q-22 38 -22 78z" />
-<glyph unicode="&#xf3;" horiz-adv-x="1141" d="M12 319q0 174 80 353t241 299.5t392 120.5q178 0 271.5 -90t93.5 -259q0 -173 -80 -352t-241.5 -299.5t-391.5 -120.5q-178 0 -271.5 90t-93.5 258zM352 127q0 -63 9.5 -89t29.5 -26q55 0 142 148t152 363.5t65 408.5q0 71 -9.5 95t-25.5 24q-58 0 -145.5 -154 t-152.5 -372t-65 -398zM643 1247q60 95 113 202.5t80.5 156.5t68.5 90q26 26 61 42t70 16q55 0 95 -40q34 -34 34 -77q0 -61 -67 -130q-32 -32 -74 -59t-154.5 -91.5t-205.5 -129.5z" />
-<glyph unicode="&#xf4;" horiz-adv-x="1141" d="M12 319q0 174 80 353t241 299.5t392 120.5q178 0 271.5 -90t93.5 -259q0 -173 -80 -352t-241.5 -299.5t-391.5 -120.5q-178 0 -271.5 90t-93.5 258zM340 1270q158 69 297 186t226 248h36q33 -156 88.5 -257t155.5 -177l-8 -29q-242 43 -406 111q-154 -65 -378 -111z M352 127q0 -63 9.5 -89t29.5 -26q55 0 142 148t152 363.5t65 408.5q0 71 -9.5 95t-25.5 24q-58 0 -145.5 -154t-152.5 -372t-65 -398z" />
-<glyph unicode="&#xf5;" horiz-adv-x="1141" d="M12 319q0 174 80 353t241 299.5t392 120.5q178 0 271.5 -90t93.5 -259q0 -173 -80 -352t-241.5 -299.5t-391.5 -120.5q-178 0 -271.5 90t-93.5 258zM352 127q0 -63 9.5 -89t29.5 -26q55 0 142 148t152 363.5t65 408.5q0 71 -9.5 95t-25.5 24q-58 0 -145.5 -154 t-152.5 -372t-65 -398zM387 1300q57 169 150.5 251.5t197.5 82.5q59 0 98 -21.5t98 -74.5t113 -53q42 0 77.5 28t70.5 91l37 -11q-57 -168 -151 -250.5t-198 -82.5q-59 0 -97.5 21.5t-98 74.5t-113.5 53q-42 0 -77 -28t-70 -91z" />
-<glyph unicode="&#xf6;" horiz-adv-x="1141" d="M12 319q0 174 80 353t241 299.5t392 120.5q178 0 271.5 -90t93.5 -259q0 -173 -80 -352t-241.5 -299.5t-391.5 -120.5q-178 0 -271.5 90t-93.5 258zM352 127q0 -63 9.5 -89t29.5 -26q55 0 142 148t152 363.5t65 408.5q0 71 -9.5 95t-25.5 24q-58 0 -145.5 -154 t-152.5 -372t-65 -398zM385 1380q0 68 28 113t74 66.5t101 21.5q79 0 116.5 -42.5t37.5 -117.5q0 -67 -29 -111t-76 -64.5t-100 -20.5q-78 0 -115 41t-37 114zM873 1380q0 100 58.5 150.5t144.5 50.5q78 0 115.5 -42.5t37.5 -117.5q0 -67 -29 -111t-75.5 -64.5t-100.5 -20.5 q-78 0 -114.5 41t-36.5 114z" />
-<glyph unicode="&#xf7;" horiz-adv-x="1274" d="M148 696l18 62h1026l-18 -62h-1026zM515 401q0 13 5 31q14 47 57 80t89 33q39 0 63 -23t24 -59q0 -13 -5 -31q-14 -48 -57 -81.5t-91 -33.5q-38 0 -61.5 24t-23.5 60zM685 990q0 14 5 32q14 46 57 79.5t89 33.5q39 0 63 -23.5t24 -59.5q0 -13 -5 -30q-14 -48 -57 -80.5 t-91 -32.5q-38 0 -61.5 22.5t-23.5 58.5z" />
-<glyph unicode="&#xf8;" horiz-adv-x="1139" d="M12 319q0 174 80 353t241 299.5t392 120.5q62 0 114 -11l103 164l35 -16l-101 -158q105 -33 159.5 -116.5t54.5 -211.5q0 -173 -80 -352t-241.5 -299.5t-391.5 -120.5q-71 0 -129 15l-109 -170l-33 18l104 163q-97 36 -147.5 117.5t-50.5 204.5zM352 127q0 -63 9.5 -89 t29.5 -26q54 0 138 140.5t149 348t71 397.5zM355 208l394 760q-4 83 -34 83q-54 0 -134.5 -134.5t-145.5 -332.5t-80 -376z" />
-<glyph unicode="&#xf9;" horiz-adv-x="1264" d="M33 142q0 58 26 139l199 608q10 30 10 49q0 37 -35 37q-60 0 -108 -129l-43 -115h-39l51 150q74 211 293 211q103 0 159.5 -48.5t56.5 -144.5q0 -71 -30 -160l-176 -530q-17 -54 -17 -80q0 -31 21 -31q50 0 127 125t159 324.5t144 411.5l27 104q226 3 371 29l-258 -918 q-13 -42 -13 -59q0 -27 31 -27q32 0 59 29t54 100l47 125h39l-58 -160q-39 -109 -116 -160t-176 -51q-136 0 -183 80q-24 41 -24 99q0 49 16 108l46 176q-78 -187 -150 -287.5t-146.5 -138t-171.5 -37.5q-93 0 -142.5 43.5t-49.5 127.5zM412 1622q0 33 14.5 61t42.5 46 q31 20 70 20t74 -19t53 -49q21 -32 30 -66.5t24 -143.5t54 -230l-24 -14q-55 62 -100.5 105t-117 105t-98.5 107q-22 38 -22 78z" />
-<glyph unicode="&#xfa;" horiz-adv-x="1264" d="M33 142q0 58 26 139l199 608q10 30 10 49q0 37 -35 37q-60 0 -108 -129l-43 -115h-39l51 150q74 211 293 211q103 0 159.5 -48.5t56.5 -144.5q0 -71 -30 -160l-176 -530q-17 -54 -17 -80q0 -31 21 -31q50 0 127 125t159 324.5t144 411.5l27 104q226 3 371 29l-258 -918 q-13 -42 -13 -59q0 -27 31 -27q32 0 59 29t54 100l47 125h39l-58 -160q-39 -109 -116 -160t-176 -51q-136 0 -183 80q-24 41 -24 99q0 49 16 108l46 176q-78 -187 -150 -287.5t-146.5 -138t-171.5 -37.5q-93 0 -142.5 43.5t-49.5 127.5zM629 1247q60 95 113 202.5 t80.5 156.5t68.5 90q26 26 61 42t70 16q55 0 95 -40q34 -34 34 -77q0 -61 -67 -130q-32 -32 -74 -59t-154.5 -91.5t-205.5 -129.5z" />
-<glyph unicode="&#xfb;" horiz-adv-x="1264" d="M33 142q0 58 26 139l199 608q10 30 10 49q0 37 -35 37q-60 0 -108 -129l-43 -115h-39l51 150q74 211 293 211q103 0 159.5 -48.5t56.5 -144.5q0 -71 -30 -160l-176 -530q-17 -54 -17 -80q0 -31 21 -31q50 0 127 125t159 324.5t144 411.5l27 104q226 3 371 29l-258 -918 q-13 -42 -13 -59q0 -27 31 -27q32 0 59 29t54 100l47 125h39l-58 -160q-39 -109 -116 -160t-176 -51q-136 0 -183 80q-24 41 -24 99q0 49 16 108l46 176q-78 -187 -150 -287.5t-146.5 -138t-171.5 -37.5q-93 0 -142.5 43.5t-49.5 127.5zM326 1270q158 69 297 186t226 248h36 q33 -156 88.5 -257t155.5 -177l-8 -29q-242 43 -406 111q-154 -65 -378 -111z" />
-<glyph unicode="&#xfc;" horiz-adv-x="1264" d="M33 142q0 58 26 139l199 608q10 30 10 49q0 37 -35 37q-60 0 -108 -129l-43 -115h-39l51 150q74 211 293 211q103 0 159.5 -48.5t56.5 -144.5q0 -71 -30 -160l-176 -530q-17 -54 -17 -80q0 -31 21 -31q50 0 127 125t159 324.5t144 411.5l27 104q226 3 371 29l-258 -918 q-13 -42 -13 -59q0 -27 31 -27q32 0 59 29t54 100l47 125h39l-58 -160q-39 -109 -116 -160t-176 -51q-136 0 -183 80q-24 41 -24 99q0 49 16 108l46 176q-78 -187 -150 -287.5t-146.5 -138t-171.5 -37.5q-93 0 -142.5 43.5t-49.5 127.5zM371 1380q0 68 28 113t74 66.5 t101 21.5q79 0 116.5 -42.5t37.5 -117.5q0 -67 -29 -111t-76 -64.5t-100 -20.5q-78 0 -115 41t-37 114zM859 1380q0 100 58.5 150.5t144.5 50.5q78 0 115.5 -42.5t37.5 -117.5q0 -67 -29 -111t-75.5 -64.5t-100.5 -20.5q-78 0 -114.5 41t-36.5 114z" />
-<glyph unicode="&#xfd;" horiz-adv-x="989" d="M-270 -250q0 41 20 75t57 54.5t87 20.5q147 0 251 -181q127 57 239 154l-167 1014q-10 53 -17.5 70.5t-25.5 17.5q-14 0 -24.5 -10t-23.5 -36.5t-34 -82.5l-43 -115h-39l51 150q41 118 105.5 164.5t159.5 46.5q103 0 162 -54t79 -190l90 -656q138 209 213 422 q-97 54 -155 135.5t-58 174.5q0 77 42 122.5t118 45.5q156 0 156 -199q0 -119 -54.5 -276t-147 -318t-202.5 -291q-129 -153 -269.5 -248.5t-279.5 -128.5q-69 -16 -120 -16q-82 0 -126 35.5t-44 99.5zM547 1247q60 95 113 202.5t80.5 156.5t68.5 90q26 26 61 42t70 16 q55 0 95 -40q34 -34 34 -77q0 -61 -67 -130q-32 -32 -74 -59t-154.5 -91.5t-205.5 -129.5z" />
-<glyph unicode="&#xfe;" horiz-adv-x="1241" d="M-213 -371l12 43q50 0 80 11.5t48 38.5t32 77l365 1312q-54 -123 -124 -222t-169 -207l-23 27q88 98 144.5 172.5t115 182.5t116.5 262l62 224q202 18 383 78l-216 -767q61 119 133.5 175t162.5 56q141 0 211 -86t70 -248q0 -169 -76 -353.5t-217.5 -309t-327.5 -124.5 q-115 0 -195 42l-42 -150q-16 -59 -16 -90q0 -58 40 -78.5t129 -22.5l-12 -43q-31 1 -140.5 5t-215.5 4q-97 0 -201 -4t-129 -5zM384 47q26 -8 52 -8q89 0 176 115.5t142 291.5t55 342q0 70 -6 106t-16.5 48t-26.5 12q-45 0 -96 -69t-96 -183z" />
-<glyph unicode="&#xff;" horiz-adv-x="989" d="M-270 -250q0 41 20 75t57 54.5t87 20.5q147 0 251 -181q127 57 239 154l-167 1014q-10 53 -17.5 70.5t-25.5 17.5q-14 0 -24.5 -10t-23.5 -36.5t-34 -82.5l-43 -115h-39l51 150q41 118 105.5 164.5t159.5 46.5q103 0 162 -54t79 -190l90 -656q138 209 213 422 q-97 54 -155 135.5t-58 174.5q0 77 42 122.5t118 45.5q156 0 156 -199q0 -119 -54.5 -276t-147 -318t-202.5 -291q-129 -153 -269.5 -248.5t-279.5 -128.5q-69 -16 -120 -16q-82 0 -126 35.5t-44 99.5zM289 1380q0 68 28 113t74 66.5t101 21.5q79 0 116.5 -42.5t37.5 -117.5 q0 -67 -29 -111t-76 -64.5t-100 -20.5q-78 0 -115 41t-37 114zM777 1380q0 100 58.5 150.5t144.5 50.5q78 0 115.5 -42.5t37.5 -117.5q0 -67 -29 -111t-75.5 -64.5t-100.5 -20.5q-78 0 -114.5 41t-36.5 114z" />
-<glyph unicode="&#x152;" horiz-adv-x="2089" d="M70 463q0 232 124.5 469t348.5 392t504 155q87 0 180 -35q59 -1 199 -1l350 1q295 0 424 6q-53 -138 -78 -242q-12 -47 -27 -127h-45q15 86 15 145q0 96 -42.5 136.5t-138.5 40.5h-88q-71 0 -106.5 -12t-57 -46.5t-41.5 -111.5l-128 -483h118q58 0 96.5 30.5t62 76 t52.5 122.5h45q-26 -79 -43.5 -148.5t-26.5 -101.5q-21 -78 -53 -250h-45q0 20 5 63t5 63q0 46 -22.5 73t-83.5 31h-121l-131 -492q-17 -66 -17 -99q0 -30 13.5 -45t41.5 -20.5t79 -5.5h108q99 0 162.5 34t110 111t94.5 218h45q-19 -50 -43 -148q-35 -127 -53 -262 q-140 6 -463 6q-340 0 -506 -2q-115 -33 -219 -33q-188 0 -324 58t-208 168.5t-72 265.5zM512 436q0 -202 55.5 -315t157.5 -113q60 0 99 23.5t55 81.5l297 1120q17 61 17 107q0 56 -32.5 79t-105.5 23q-142 0 -267.5 -147t-200.5 -380.5t-75 -478.5z" />
-<glyph unicode="&#x153;" horiz-adv-x="1669" d="M0 319q0 168 98 349t275 302.5t401 121.5q79 0 140 -37.5t84 -109.5q197 147 432 147q114 0 183.5 -46t69.5 -135q0 -117 -93 -215t-240 -167t-313 -107q-7 -55 -7 -105q0 -112 43 -155t127 -43q51 0 131.5 35t155.5 108l33 -16q-79 -117 -212.5 -196t-306.5 -79 q-110 0 -197 41.5t-127 119.5q-56 -77 -141 -119t-182 -42q-170 0 -262 90.5t-92 257.5zM381 305q0 -190 133 -190q88 0 149 48q-16 45 -16 97q0 121 39.5 243.5t112.5 230.5t171 189q-38 68 -136 68q-104 0 -210 -98t-174.5 -257t-68.5 -331zM1042 456q132 64 209 144 q78 80 122 184t44 217q0 52 -33 52q-57 0 -128.5 -89t-130.5 -228.5t-83 -279.5z" />
-<glyph unicode="&#x178;" horiz-adv-x="1589" d="M150 1102l43 131q43 132 134.5 189t211.5 57q152 0 234 -80t120.5 -227.5t69.5 -415.5q128 395 303 600q105 123 243 123q71 0 125.5 -29t84.5 -79t30 -111q0 -64 -30.5 -113.5t-82.5 -76t-116 -26.5q-84 0 -133.5 40.5t-49.5 111.5q0 60 28 109t76.5 80.5t108.5 41.5 q-15 17 -51 17q-33 0 -63.5 -11t-67.5 -38q-53 -39 -126.5 -146t-148.5 -272.5t-130 -367.5l-99 -392q-11 -46 -11 -73q0 -41 19 -62.5t55.5 -29.5t98.5 -11l-10 -41q-129 6 -418 6q-251 0 -371 -6l11 41q74 3 111 16t59 48.5t41 111.5l105 419q-18 167 -50 318.5t-78.5 250 t-103.5 98.5q-36 0 -57 -27t-36 -70l-34 -104h-45zM577 1716q0 68 28 113t74 66.5t101 21.5q78 0 116 -43t38 -117q0 -67 -29 -111t-76 -64.5t-100 -20.5q-78 0 -115 41t-37 114zM1106 1716q0 68 28 113t73.5 66.5t100.5 21.5q78 0 116 -43t38 -117q0 -67 -29 -111 t-75.5 -64.5t-100.5 -20.5q-78 0 -114.5 41t-36.5 114z" />
-<glyph unicode="&#x2c6;" horiz-adv-x="823" d="M55 1270q158 69 297 186t226 248h36q33 -156 88.5 -257t155.5 -177l-8 -29q-242 43 -406 111q-154 -65 -378 -111z" />
-<glyph unicode="&#x2dc;" horiz-adv-x="842" d="M162 1300q57 169 150.5 251.5t197.5 82.5q59 0 98 -21.5t98 -74.5t113 -53q42 0 77.5 28t70.5 91l37 -11q-57 -168 -151 -250.5t-198 -82.5q-59 0 -97.5 21.5t-98 74.5t-113.5 53q-42 0 -77 -28t-70 -91z" />
-<glyph unicode="&#x2000;" horiz-adv-x="993" />
-<glyph unicode="&#x2001;" horiz-adv-x="1986" />
-<glyph unicode="&#x2002;" horiz-adv-x="993" />
-<glyph unicode="&#x2003;" horiz-adv-x="1986" />
-<glyph unicode="&#x2004;" horiz-adv-x="662" />
-<glyph unicode="&#x2005;" horiz-adv-x="496" />
-<glyph unicode="&#x2006;" horiz-adv-x="331" />
-<glyph unicode="&#x2007;" horiz-adv-x="331" />
-<glyph unicode="&#x2008;" horiz-adv-x="248" />
-<glyph unicode="&#x2009;" horiz-adv-x="397" />
-<glyph unicode="&#x200a;" horiz-adv-x="110" />
-<glyph unicode="&#x2010;" horiz-adv-x="1038" d="M109 455l55 202h739l-55 -202h-739z" />
-<glyph unicode="&#x2011;" horiz-adv-x="1038" d="M109 455l55 202h739l-55 -202h-739z" />
-<glyph unicode="&#x2012;" horiz-adv-x="1038" d="M109 455l55 202h739l-55 -202h-739z" />
-<glyph unicode="&#x2013;" horiz-adv-x="1362" d="M96 414l86 284h1055l-86 -284h-1055z" />
-<glyph unicode="&#x2014;" horiz-adv-x="1962" d="M92 414l86 284h1655l-86 -284h-1655z" />
-<glyph unicode="&#x2018;" horiz-adv-x="608" d="M246 1061q0 144 82 260.5t225 178.5l10 -37q-90 -38 -154.5 -113t-70.5 -168q61 64 143 64q77 0 118.5 -34.5t41.5 -100.5q0 -63 -30 -112.5t-82 -77.5t-117 -28q-166 0 -166 168z" />
-<glyph unicode="&#x2019;" horiz-adv-x="590" d="M274 1327q0 63 30 112.5t82 77.5t117 28q166 0 166 -168q0 -144 -82 -260.5t-225 -178.5l-10 37q90 38 154.5 113t70.5 168q-61 -64 -143 -64q-77 0 -118.5 34.5t-41.5 100.5z" />
-<glyph unicode="&#x201a;" horiz-adv-x="635" d="M-2 106q0 63 30 112.5t82 77.5t117 28q166 0 166 -168q0 -144 -82 -260.5t-225 -178.5l-10 37q90 38 154.5 113t70.5 168q-61 -64 -143 -64q-77 0 -118.5 34.5t-41.5 100.5z" />
-<glyph unicode="&#x201c;" horiz-adv-x="1055" d="M245 1063q0 144 83 261.5t225 177.5l10 -37q-90 -38 -154.5 -113t-70.5 -168q59 64 143 64q77 0 118.5 -34.5t41.5 -100.5q0 -62 -30 -112t-82.5 -78t-117.5 -28q-166 0 -166 168zM690 1063q0 144 82.5 261.5t224.5 177.5l10 -37q-90 -38 -154.5 -113t-70.5 -168 q61 64 143 64q77 0 118.5 -34.5t41.5 -100.5q0 -63 -30 -112.5t-82 -77.5t-117 -28q-166 0 -166 168z" />
-<glyph unicode="&#x201d;" horiz-adv-x="1034" d="M277 1333q0 63 30 112.5t82 77.5t117 28q166 0 166 -168q0 -144 -82.5 -261.5t-224.5 -177.5l-10 37q90 38 154.5 113t70.5 168q-61 -64 -143 -64q-77 0 -118.5 34.5t-41.5 100.5zM721 1333q0 62 30 112t82.5 78t117.5 28q166 0 166 -168q0 -144 -83 -261.5t-225 -177.5 l-10 37q90 38 154.5 113t70.5 168q-59 -64 -143 -64q-77 0 -118.5 34.5t-41.5 100.5z" />
-<glyph unicode="&#x201e;" horiz-adv-x="1079" d="M-2 106q0 63 30 112.5t82 77.5t117 28q166 0 166 -168q0 -144 -82.5 -261.5t-224.5 -177.5l-10 37q90 38 154.5 113t70.5 168q-61 -64 -143 -64q-77 0 -118.5 34.5t-41.5 100.5zM442 106q0 62 30 112t82.5 78t117.5 28q166 0 166 -168q0 -144 -83 -261.5t-225 -177.5 l-10 37q90 38 154.5 113t70.5 168q-59 -64 -143 -64q-77 0 -118.5 34.5t-41.5 100.5z" />
-<glyph unicode="&#x2022;" horiz-adv-x="862" d="M113 479q0 9 2 31q9 80 54.5 147t116 106.5t150.5 39.5q74 0 134.5 -34t95 -93.5t34.5 -131.5q0 -12 -2 -34q-8 -80 -53.5 -146.5t-116.5 -105.5t-151 -39q-74 0 -134.5 34t-95 93.5t-34.5 132.5z" />
-<glyph unicode="&#x2026;" horiz-adv-x="1767" d="M-2 106q0 63 30 112.5t82 77.5t117 28q79 0 120.5 -35.5t41.5 -104.5q0 -54 -31 -103t-84 -79.5t-116 -30.5q-79 0 -119.5 34.5t-40.5 100.5zM573 106q0 63 30 112.5t82 77.5t117 28q79 0 120.5 -35.5t41.5 -104.5q0 -54 -31 -103t-84 -79.5t-116 -30.5 q-79 0 -119.5 34.5t-40.5 100.5zM1147 106q0 63 30 112.5t82 77.5t117 28q79 0 120.5 -35.5t41.5 -104.5q0 -54 -31 -103t-84 -79.5t-116 -30.5q-79 0 -119.5 34.5t-40.5 100.5z" />
-<glyph unicode="&#x202f;" horiz-adv-x="397" />
-<glyph unicode="&#x2039;" horiz-adv-x="831" d="M31 510l10 41q188 110 363 239.5t382 301.5h37q-40 -86 -108.5 -198t-143.5 -211.5t-131 -152.5q32 -52 61 -152t46 -211t16 -196h-37q-119 164 -237 295.5t-258 243.5z" />
-<glyph unicode="&#x203a;" horiz-adv-x="827" d="M-31 -29q40 86 108 197t142 210.5t129 151.5q-31 53 -59.5 153.5t-45.5 212.5t-16 196h37q123 -169 240 -299.5t258 -241.5l-10 -41q-191 -111 -367 -240t-379 -299h-37z" />
-<glyph unicode="&#x205f;" horiz-adv-x="496" />
-<glyph unicode="&#x20ac;" horiz-adv-x="1411" d="M70 608l12 41h167q20 81 54 164h-178l12 41h184q75 168 195.5 309.5t281 228.5t343.5 87q133 0 217 -70q48 -41 74 -99t26 -122q0 -67 -27 -118.5t-72 -79t-97 -27.5q-69 0 -111.5 44.5t-42.5 114.5q0 85 60.5 152.5t146.5 105.5q-9 17 -41 30t-68 13q-88 0 -176.5 -76.5 t-164 -205.5t-130.5 -287h320l-35 -41h-299q-26 -82 -45 -164h209l-37 -41h-181q-30 -150 -30 -280q0 -109 17 -175.5t55 -98t102 -31.5q32 0 67 7t58 21q-38 28 -64 76t-26 100q0 69 28 123.5t75 84.5t102 30q76 0 114.5 -44t38.5 -120q0 -85 -54.5 -155t-145.5 -117 q-54 -28 -117.5 -43t-155.5 -15q-253 0 -380.5 114.5t-127.5 365.5q0 73 17 157h-170z" />
-<glyph unicode="&#x2122;" horiz-adv-x="2431" d="M326 1450q120 -6 413 -6q291 0 412 6q-14 -112 -14 -201q0 -67 6 -106h-47q-15 92 -43.5 150.5t-62 84t-66.5 25.5h-50v-612q0 -60 10.5 -86t39.5 -36t96 -14v-41q-130 7 -281 7q-175 0 -282 -7v41q67 4 95.5 14t39 36t10.5 86v612h-49q-33 0 -66.5 -25.5t-62 -84 t-43.5 -150.5h-47q6 36 6 106q0 89 -14 201zM1227 614v41q48 4 68.5 12t28 30t7.5 73v524q0 51 -7.5 73.5t-28 30.5t-68.5 11v41q83 -6 252 -6q72 0 139 6l182 -453l170 447h158q142 0 219 6v-41q-48 -3 -68.5 -11t-28 -30.5t-7.5 -73.5v-524q0 -51 7.5 -73t28 -30t68.5 -12 v-41q-110 7 -240 7q-135 0 -221 -7v41q38 4 54.5 12t23 30.5t6.5 72.5v545l-268 -711h-33l-291 715v-549q0 -50 6.5 -72.5t23 -30.5t54.5 -12v-41q-49 7 -106 7q-76 0 -129 -7z" />
-<glyph unicode="&#x25fc;" horiz-adv-x="1090" d="M0 0v1090h1090v-1090h-1090z" />
-<glyph unicode="&#xfb03;" horiz-adv-x="1937" d="M-86 -385l362 1348l17 57h-207l12 41h208q90 258 241 362q136 97 334 97q174 0 285 -81q38 32 82 56q108 60 231.5 83.5t292.5 23.5q110 0 170 -30q38 -16 58 -45t20 -65q0 -63 -33.5 -111.5t-91 -75t-127.5 -26.5q-89 0 -134.5 34.5t-45.5 100.5q0 128 102 178 q-108 -12 -174 -57q-61 -39 -102.5 -110t-73.5 -185l-40 -149h236q213 3 371 31l-264 -918q-9 -27 -9 -50q0 -36 33 -36q61 0 109 129l43 115h39l-51 -150q-41 -115 -126 -163t-177 -48q-100 0 -151.5 53t-51.5 151q0 65 24 149l199 696h-235l-367 -1376q-203 -3 -371 -29 l378 1405h-273l-371 -1376q-203 -3 -371 -29zM668 1061h272q69 232 199 354q-63 39 -148 39q-92 0 -153 -45q-97 -70 -154 -287z" />
-<glyph unicode="&#xfb04;" horiz-adv-x="1956" d="M-86 -385l362 1348l17 57h-207l12 41h208q90 258 241 362q136 97 334 97q174 0 285 -81l2 1q139 100 370 104q163 1 293 22t256 62l-432 -1454q-6 -22 -6 -38q0 -25 11.5 -36.5t27.5 -11.5q20 0 47.5 25.5t56.5 103.5l43 115h39l-51 -150q-41 -119 -121 -165t-170 -46 q-102 0 -159 53t-57 155q0 63 24 145l313 1042q10 37 10 57q0 39 -29 58t-97 20q-56 -1 -93 -28q-43 -37 -69 -134l-74 -278h162l-13 -41h-160l-368 -1376q-203 -3 -371 -29l378 1405h-273l-371 -1376q-203 -3 -371 -29zM668 1061h272q69 243 198 355q-63 38 -147 38 q-105 0 -168 -55q-83 -71 -139 -277z" />
-<hkern u1="&#x22;" u2="&#xef;" k="-63" />
-<hkern u1="&#x27;" u2="&#xef;" k="-63" />
-<hkern u1="&#x29;" u2="&#x7d;" k="49" />
-<hkern u1="&#x29;" u2="]" k="29" />
-<hkern u1="&#x29;" u2="&#x29;" k="100" />
-<hkern u1="&#x2c;" u2="&#xff;" k="72" />
-<hkern u1="&#x2c;" u2="&#xfd;" k="72" />
-<hkern u1="&#x2c;" u2="y" k="72" />
-<hkern u1="&#x30;" u2="&#xb0;" k="117" />
-<hkern u1="&#x30;" u2="&#x7d;" k="53" />
-<hkern u1="&#x30;" u2="]" k="45" />
-<hkern u1="&#x30;" u2="\" k="131" />
-<hkern u1="&#x30;" u2="&#x33;" k="23" />
-<hkern u1="&#x30;" u2="&#x29;" k="106" />
-<hkern u1="&#x31;" u2="&#x7d;" k="35" />
-<hkern u1="&#x31;" u2="]" k="33" />
-<hkern u1="&#x31;" u2="\" k="55" />
-<hkern u1="&#x31;" u2="&#x35;" k="27" />
-<hkern u1="&#x31;" u2="&#x29;" k="80" />
-<hkern u1="&#x32;" u2="&#xb0;" k="100" />
-<hkern u1="&#x32;" u2="&#x7d;" k="39" />
-<hkern u1="&#x32;" u2="]" k="45" />
-<hkern u1="&#x32;" u2="\" k="133" />
-<hkern u1="&#x32;" u2="&#x35;" k="39" />
-<hkern u1="&#x32;" u2="&#x33;" k="35" />
-<hkern u1="&#x32;" u2="&#x29;" k="90" />
-<hkern u1="&#x33;" u2="&#xf7;" k="27" />
-<hkern u1="&#x33;" u2="&#xb7;" k="25" />
-<hkern u1="&#x33;" u2="&#xb0;" k="111" />
-<hkern u1="&#x33;" u2="&#x7d;" k="33" />
-<hkern u1="&#x33;" u2="]" k="37" />
-<hkern u1="&#x33;" u2="\" k="129" />
-<hkern u1="&#x33;" u2="&#x35;" k="37" />
-<hkern u1="&#x33;" u2="&#x33;" k="29" />
-<hkern u1="&#x33;" u2="&#x29;" k="78" />
-<hkern u1="&#x34;" u2="&#x20ac;" k="29" />
-<hkern u1="&#x34;" u2="&#xf7;" k="59" />
-<hkern u1="&#x34;" u2="&#xd7;" k="53" />
-<hkern u1="&#x34;" u2="&#xb7;" k="55" />
-<hkern u1="&#x34;" u2="&#xb0;" k="82" />
-<hkern u1="&#x34;" u2="&#xa4;" k="33" />
-<hkern u1="&#x34;" u2="&#x7d;" k="20" />
-<hkern u1="&#x34;" u2="]" k="29" />
-<hkern u1="&#x34;" u2="\" k="139" />
-<hkern u1="&#x34;" u2="&#x3d;" k="41" />
-<hkern u1="&#x34;" u2="&#x39;" k="35" />
-<hkern u1="&#x34;" u2="&#x37;" k="37" />
-<hkern u1="&#x34;" u2="&#x35;" k="55" />
-<hkern u1="&#x34;" u2="&#x33;" k="55" />
-<hkern u1="&#x34;" u2="&#x31;" k="23" />
-<hkern u1="&#x34;" u2="&#x2b;" k="41" />
-<hkern u1="&#x34;" u2="&#x29;" k="59" />
-<hkern u1="&#x34;" u2="&#x23;" k="31" />
-<hkern u1="&#x34;" u2="&#x20;" k="31" />
-<hkern u1="&#x35;" u2="&#xf7;" k="66" />
-<hkern u1="&#x35;" u2="&#xb7;" k="31" />
-<hkern u1="&#x35;" u2="&#xb0;" k="57" />
-<hkern u1="&#x35;" u2="&#x7d;" k="25" />
-<hkern u1="&#x35;" u2="]" k="31" />
-<hkern u1="&#x35;" u2="\" k="98" />
-<hkern u1="&#x35;" u2="&#x3d;" k="23" />
-<hkern u1="&#x35;" u2="&#x37;" k="23" />
-<hkern u1="&#x35;" u2="&#x35;" k="37" />
-<hkern u1="&#x35;" u2="&#x33;" k="59" />
-<hkern u1="&#x35;" u2="&#x29;" k="72" />
-<hkern u1="&#x36;" u2="&#xb0;" k="35" />
-<hkern u1="&#x36;" u2="&#x7d;" k="31" />
-<hkern u1="&#x36;" u2="\" k="51" />
-<hkern u1="&#x36;" u2="&#x29;" k="80" />
-<hkern u1="&#x37;" u2="&#xb7;" k="35" />
-<hkern u1="&#x37;" u2="&#x34;" k="76" />
-<hkern u1="&#x37;" u2="&#x2f;" k="37" />
-<hkern u1="&#x37;" u2="&#x29;" k="57" />
-<hkern u1="&#x37;" u2="&#x20;" k="23" />
-<hkern u1="&#x38;" u2="&#xf7;" k="29" />
-<hkern u1="&#x38;" u2="&#x7d;" k="25" />
-<hkern u1="&#x38;" u2="]" k="25" />
-<hkern u1="&#x38;" u2="&#x2b;" k="25" />
-<hkern u1="&#x38;" u2="&#x29;" k="68" />
-<hkern u1="&#x39;" u2="&#xb0;" k="125" />
-<hkern u1="&#x39;" u2="&#x7d;" k="51" />
-<hkern u1="&#x39;" u2="]" k="39" />
-<hkern u1="&#x39;" u2="\" k="129" />
-<hkern u1="&#x39;" u2="&#x33;" k="20" />
-<hkern u1="&#x39;" u2="&#x29;" k="102" />
-<hkern u1="&#x3d;" u2="&#x34;" k="59" />
-<hkern u1="V" u2="&#xf0;" k="143" />
-<hkern u1="V" u2="&#xed;" k="66" />
-<hkern u1="W" u2="&#xf0;" k="143" />
-<hkern u1="W" u2="&#xed;" k="66" />
-<hkern u1="&#x7d;" u2="&#x7d;" k="43" />
-<hkern u1="&#x7d;" u2="]" k="25" />
-<hkern u1="&#x7d;" u2="&#x29;" k="57" />
-<hkern u1="&#xa3;" u2="&#x35;" k="25" />
-<hkern u1="&#xa3;" u2="&#x33;" k="45" />
-<hkern u1="&#xa4;" u2="&#x33;" k="37" />
-<hkern u1="&#xb0;" u2="&#x39;" k="76" />
-<hkern u1="&#xb0;" u2="&#x36;" k="68" />
-<hkern u1="&#xb0;" u2="&#x35;" k="29" />
-<hkern u1="&#xb0;" u2="&#x34;" k="188" />
-<hkern u1="&#xb0;" u2="&#x33;" k="43" />
-<hkern u1="&#xb0;" u2="&#x32;" k="25" />
-<hkern u1="&#xb0;" u2="&#x30;" k="49" />
-<hkern u1="&#xb2;" u2="&#xb3;" k="43" />
-<hkern u1="&#xb3;" u2="&#xb3;" k="20" />
-<hkern u1="&#xb7;" u2="&#x35;" k="23" />
-<hkern u1="&#xb7;" u2="&#x34;" k="43" />
-<hkern u1="&#xb7;" u2="&#x33;" k="41" />
-<hkern u1="&#xb7;" u2="&#x32;" k="23" />
-<hkern u1="&#xb7;" u2="&#x31;" k="25" />
-<hkern u1="&#xcf;" u2="&#x7c;" k="-63" />
-<hkern u1="&#xcf;" u2="&#x29;" k="-29" />
-<hkern u1="&#xd7;" u2="&#x35;" k="35" />
-<hkern u1="&#xd7;" u2="&#x34;" k="31" />
-<hkern u1="&#xd7;" u2="&#x33;" k="39" />
-<hkern u1="&#xe9;" u2="&#x29;" k="68" />
-<hkern u1="&#xeb;" u2="&#x2122;" k="14" />
-<hkern u1="&#xeb;" u2="\" k="20" />
-<hkern u1="&#xef;" u2="&#xae;" k="25" />
-<hkern u1="&#xf7;" u2="&#x35;" k="31" />
-<hkern u1="&#xf7;" u2="&#x34;" k="96" />
-<hkern u1="&#xf7;" u2="&#x33;" k="23" />
-<hkern u1="&#x2019;" u2="&#xef;" k="-47" />
-<hkern u1="&#x201a;" u2="&#xff;" k="72" />
-<hkern u1="&#x201a;" u2="&#xfd;" k="72" />
-<hkern u1="&#x201a;" u2="y" k="72" />
-<hkern u1="&#x201d;" u2="&#xef;" k="-47" />
-<hkern u1="&#x201e;" u2="&#xff;" k="74" />
-<hkern u1="&#x201e;" u2="&#xfd;" k="74" />
-<hkern u1="&#x201e;" u2="y" k="74" />
-<hkern g1="r" 	g2="quoteright,quotedblright" 	k="61" />
-<hkern g1="r" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="20" />
-<hkern g1="j" 	g2="quoteright,quotedblright" 	k="35" />
-<hkern g1="j" 	g2="V,W" 	k="20" />
-<hkern g1="j" 	g2="parenright" 	k="51" />
-<hkern g1="j" 	g2="Z" 	k="14" />
-<hkern g1="j" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="18" />
-<hkern g1="j" 	g2="exclam" 	k="23" />
-<hkern g1="j" 	g2="quotedbl,quotesingle" 	k="29" />
-<hkern g1="j" 	g2="S" 	k="16" />
-<hkern g1="j" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="18" />
-<hkern g1="j" 	g2="registered" 	k="41" />
-<hkern g1="j" 	g2="trademark" 	k="37" />
-<hkern g1="j" 	g2="T" 	k="12" />
-<hkern g1="j" 	g2="B,D,E,F,H,I,K,L,M,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Thorn" 	k="23" />
-<hkern g1="j" 	g2="Q" 	k="16" />
-<hkern g1="j" 	g2="AE" 	k="23" />
-<hkern g1="j" 	g2="bar" 	k="72" />
-<hkern g1="j" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="20" />
-<hkern g1="j" 	g2="backslash" 	k="96" />
-<hkern g1="j" 	g2="braceright" 	k="35" />
-<hkern g1="j" 	g2="Y,Yacute,Ydieresis" 	k="25" />
-<hkern g1="j" 	g2="bracketright" 	k="33" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="18" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="V,W" 	k="18" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="parenright" 	k="25" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="y,yacute,ydieresis" 	k="41" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="l" 	k="14" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="t" 	k="14" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="14" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="g" 	k="25" />
-<hkern g1="Z" 	g2="y,yacute,ydieresis" 	k="123" />
-<hkern g1="Z" 	g2="v,w" 	k="61" />
-<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteright,quotedblright" 	k="164" />
-<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteleft,quotedblleft" 	k="123" />
-<hkern g1="J" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="82" />
-<hkern g1="J" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="61" />
-<hkern g1="J" 	g2="y,yacute,ydieresis" 	k="102" />
-<hkern g1="J" 	g2="g" 	k="41" />
-<hkern g1="J" 	g2="v,w" 	k="102" />
-<hkern g1="J" 	g2="s" 	k="82" />
-<hkern g1="J" 	g2="m,n,r,ntilde" 	k="82" />
-<hkern g1="J" 	g2="z" 	k="82" />
-<hkern g1="J" 	g2="x" 	k="143" />
-<hkern g1="t" 	g2="quoteright,quotedblright" 	k="41" />
-<hkern g1="t" 	g2="quoteleft,quotedblleft" 	k="41" />
-<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="quoteright,quotedblright" 	k="61" />
-<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="61" />
-<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="N,Ntilde" 	k="143" />
-<hkern g1="y,yacute,ydieresis" 	g2="quoteright,quotedblright" 	k="123" />
-<hkern g1="y,yacute,ydieresis" 	g2="quoteleft,quotedblleft" 	k="61" />
-<hkern g1="T" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="205" />
-<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="164" />
-<hkern g1="T" 	g2="y,yacute,ydieresis" 	k="184" />
-<hkern g1="T" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
-<hkern g1="T" 	g2="g" 	k="123" />
-<hkern g1="T" 	g2="s" 	k="164" />
-<hkern g1="T" 	g2="m,n,r,ntilde" 	k="123" />
-<hkern g1="T" 	g2="x" 	k="164" />
-<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="123" />
-<hkern g1="L" 	g2="quoteright,quotedblright" 	k="164" />
-<hkern g1="L" 	g2="V,W" 	k="184" />
-<hkern g1="L" 	g2="T" 	k="205" />
-<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="164" />
-<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="184" />
-<hkern g1="L" 	g2="g" 	k="82" />
-<hkern g1="v,w" 	g2="quoteright,quotedblright" 	k="205" />
-<hkern g1="v,w" 	g2="quoteleft,quotedblleft" 	k="143" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="307" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="184" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="266" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="266" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="v,w" 	k="287" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="287" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,r,ntilde" 	k="225" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="328" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="287" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="102" />
-<hkern g1="h,m,n,ntilde" 	g2="quoteright,quotedblright" 	k="164" />
-<hkern g1="h,m,n,ntilde" 	g2="quoteleft,quotedblleft" 	k="102" />
-<hkern g1="f" 	g2="quoteright,quotedblright" 	k="-205" />
-<hkern g1="f" 	g2="quotedbl,quotesingle" 	k="-184" />
-<hkern g1="f" 	g2="quoteleft,quotedblleft" 	k="-164" />
-<hkern g1="s" 	g2="quoteright,quotedblright" 	k="123" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteright,quotedblright" 	k="225" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="V,W" 	k="143" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="205" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="82" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="164" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="J" 	k="184" />
-<hkern g1="V,W" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="162" />
-<hkern g1="V,W" 	g2="parenright" 	k="41" />
-<hkern g1="V,W" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="68" />
-<hkern g1="V,W" 	g2="S" 	k="51" />
-<hkern g1="V,W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="145" />
-<hkern g1="V,W" 	g2="Q" 	k="57" />
-<hkern g1="V,W" 	g2="AE" 	k="258" />
-<hkern g1="V,W" 	g2="bar" 	k="-16" />
-<hkern g1="V,W" 	g2="backslash" 	k="-57" />
-<hkern g1="V,W" 	g2="bracketright" 	k="25" />
-<hkern g1="V,W" 	g2="y,yacute,ydieresis" 	k="121" />
-<hkern g1="V,W" 	g2="l" 	k="27" />
-<hkern g1="V,W" 	g2="t" 	k="51" />
-<hkern g1="V,W" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="27" />
-<hkern g1="V,W" 	g2="g" 	k="152" />
-<hkern g1="V,W" 	g2="v,w" 	k="113" />
-<hkern g1="V,W" 	g2="s" 	k="162" />
-<hkern g1="V,W" 	g2="m,n,r,ntilde" 	k="111" />
-<hkern g1="V,W" 	g2="z" 	k="137" />
-<hkern g1="V,W" 	g2="x" 	k="168" />
-<hkern g1="V,W" 	g2="hyphen,uni00AD,endash,emdash" 	k="113" />
-<hkern g1="V,W" 	g2="N,Ntilde" 	k="137" />
-<hkern g1="V,W" 	g2="space" 	k="86" />
-<hkern g1="V,W" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="160" />
-<hkern g1="V,W" 	g2="slash" 	k="168" />
-<hkern g1="V,W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="113" />
-<hkern g1="V,W" 	g2="copyright" 	k="35" />
-<hkern g1="V,W" 	g2="X" 	k="39" />
-<hkern g1="V,W" 	g2="question" 	k="-39" />
-<hkern g1="V,W" 	g2="guillemotleft,guilsinglleft" 	k="86" />
-<hkern g1="V,W" 	g2="colon,semicolon" 	k="74" />
-<hkern g1="V,W" 	g2="f,uniFB01,uniFB02" 	k="41" />
-<hkern g1="V,W" 	g2="at" 	k="96" />
-<hkern g1="V,W" 	g2="b,h,k,germandbls" 	k="31" />
-<hkern g1="V,W" 	g2="ampersand" 	k="68" />
-<hkern g1="V,W" 	g2="j" 	k="31" />
-<hkern g1="V,W" 	g2="p,thorn" 	k="80" />
-<hkern g1="V,W" 	g2="guillemotright,guilsinglright" 	k="57" />
-<hkern g1="N,Ntilde" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="225" />
-<hkern g1="N,Ntilde" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
-<hkern g1="N,Ntilde" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="164" />
-<hkern g1="N,Ntilde" 	g2="y,yacute,ydieresis" 	k="225" />
-<hkern g1="N,Ntilde" 	g2="t" 	k="61" />
-<hkern g1="N,Ntilde" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="102" />
-<hkern g1="N,Ntilde" 	g2="g" 	k="225" />
-<hkern g1="N,Ntilde" 	g2="v,w" 	k="225" />
-<hkern g1="N,Ntilde" 	g2="s" 	k="246" />
-<hkern g1="N,Ntilde" 	g2="m,n,r,ntilde" 	k="225" />
-<hkern g1="N,Ntilde" 	g2="x" 	k="287" />
-<hkern g1="N,Ntilde" 	g2="N,Ntilde" 	k="164" />
-<hkern g1="N,Ntilde" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="205" />
-<hkern g1="N,Ntilde" 	g2="f,uniFB01,uniFB02" 	k="61" />
-<hkern g1="c,ccedilla" 	g2="quoteright,quotedblright" 	k="61" />
-<hkern g1="c,ccedilla" 	g2="quoteleft,quotedblleft" 	k="41" />
-<hkern g1="k" 	g2="quoteright,quotedblright" 	k="123" />
-<hkern g1="k" 	g2="quoteleft,quotedblleft" 	k="61" />
-<hkern g1="F" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="123" />
-<hkern g1="F" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="123" />
-<hkern g1="F" 	g2="AE" 	k="205" />
-<hkern g1="F" 	g2="y,yacute,ydieresis" 	k="61" />
-<hkern g1="F" 	g2="s" 	k="102" />
-<hkern g1="F" 	g2="z" 	k="61" />
-<hkern g1="F" 	g2="x" 	k="61" />
-<hkern g1="F" 	g2="hyphen,uni00AD,endash,emdash" 	k="61" />
-<hkern g1="x" 	g2="quoteright,quotedblright" 	k="61" />
-<hkern g1="x" 	g2="quoteleft,quotedblleft" 	k="20" />
-<hkern g1="K" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="41" />
-<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="143" />
-<hkern g1="K" 	g2="v,w" 	k="20" />
-<hkern g1="K" 	g2="s" 	k="20" />
-<hkern g1="K" 	g2="m,n,r,ntilde" 	k="61" />
-<hkern g1="K" 	g2="x" 	k="41" />
-<hkern g1="C,Ccedilla" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="16" />
-<hkern g1="C,Ccedilla" 	g2="parenright" 	k="25" />
-<hkern g1="C,Ccedilla" 	g2="y,yacute,ydieresis" 	k="20" />
-<hkern g1="C,Ccedilla" 	g2="g" 	k="16" />
-<hkern g1="X" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="82" />
-<hkern g1="P" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="82" />
-<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="143" />
-<hkern g1="z" 	g2="quoteright,quotedblright" 	k="82" />
-<hkern g1="z" 	g2="quoteleft,quotedblleft" 	k="61" />
-<hkern g1="quotedbl,quotesingle" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="229" />
-<hkern g1="quotedbl,quotesingle" 	g2="space" 	k="37" />
-<hkern g1="quotedbl,quotesingle" 	g2="ampersand" 	k="41" />
-<hkern g1="quotedbl,quotesingle" 	g2="four" 	k="125" />
-<hkern g1="quotedbl,quotesingle" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="156" />
-<hkern g1="quotedbl,quotesingle" 	g2="x" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="at" 	k="35" />
-<hkern g1="quotedbl,quotesingle" 	g2="N,Ntilde" 	k="86" />
-<hkern g1="quotedbl,quotesingle" 	g2="five" 	k="41" />
-<hkern g1="quotedbl,quotesingle" 	g2="hyphen,uni00AD,endash,emdash" 	k="72" />
-<hkern g1="quotedbl,quotesingle" 	g2="slash" 	k="139" />
-<hkern g1="quotedbl,quotesingle" 	g2="AE" 	k="172" />
-<hkern g1="quotedbl,quotesingle" 	g2="six" 	k="37" />
-<hkern g1="quotedbl,quotesingle" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="29" />
-<hkern g1="quotedbl,quotesingle" 	g2="zero" 	k="20" />
-<hkern g1="quotedbl,quotesingle" 	g2="g" 	k="16" />
-<hkern g1="three" 	g2="quotedbl,quotesingle" 	k="74" />
-<hkern g1="two" 	g2="quotedbl,quotesingle" 	k="70" />
-<hkern g1="quoteleft,quotedblleft" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="41" />
-<hkern g1="nine" 	g2="quotedbl,quotesingle" 	k="82" />
-<hkern g1="quoteright,quotedblright" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="229" />
-<hkern g1="quoteright,quotedblright" 	g2="space" 	k="37" />
-<hkern g1="quoteright,quotedblright" 	g2="ampersand" 	k="41" />
-<hkern g1="quoteright,quotedblright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="154" />
-<hkern g1="quoteright,quotedblright" 	g2="x" 	k="20" />
-<hkern g1="quoteright,quotedblright" 	g2="at" 	k="31" />
-<hkern g1="quoteright,quotedblright" 	g2="N,Ntilde" 	k="86" />
-<hkern g1="quoteright,quotedblright" 	g2="hyphen,uni00AD,endash,emdash" 	k="59" />
-<hkern g1="quoteright,quotedblright" 	g2="slash" 	k="137" />
-<hkern g1="quoteright,quotedblright" 	g2="AE" 	k="172" />
-<hkern g1="quoteright,quotedblright" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="88" />
-<hkern g1="quoteright,quotedblright" 	g2="v,w" 	k="-41" />
-<hkern g1="quoteright,quotedblright" 	g2="s" 	k="41" />
-<hkern g1="zero" 	g2="quotedbl,quotesingle" 	k="76" />
-<hkern g1="four" 	g2="hyphen,uni00AD,endash,emdash" 	k="53" />
-<hkern g1="four" 	g2="quotedbl,quotesingle" 	k="72" />
-<hkern g1="seven" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="74" />
-<hkern g1="seven" 	g2="hyphen,uni00AD,endash,emdash" 	k="35" />
-<hkern g1="five" 	g2="hyphen,uni00AD,endash,emdash" 	k="20" />
-<hkern g1="five" 	g2="quotedbl,quotesingle" 	k="45" />
-<hkern g1="six" 	g2="quotedbl,quotesingle" 	k="45" />
-<hkern g1="periodcentered" 	g2="B,D,E,F,H,I,K,L,M,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Thorn" 	k="35" />
-<hkern g1="periodcentered" 	g2="l" 	k="80" />
-</font>
-</defs></svg> 
\ No newline at end of file
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-blackitalic-webfont.ttf b/client/assets/fonts/playfairdisplay/playfairdisplay-blackitalic-webfont.ttf
deleted file mode 100755
index e5e964b3492f8e33233168d008290aa9ec57e3eb..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-blackitalic-webfont.ttf and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-blackitalic-webfont.woff b/client/assets/fonts/playfairdisplay/playfairdisplay-blackitalic-webfont.woff
deleted file mode 100755
index 4c7a36ec468d42fa73fbb47d848f143163e22fa9..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-blackitalic-webfont.woff and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-blackitalic-webfont.woff2 b/client/assets/fonts/playfairdisplay/playfairdisplay-blackitalic-webfont.woff2
deleted file mode 100755
index f9742e259cb9d7fc707b4a7250d8aa61546885c7..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-blackitalic-webfont.woff2 and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-bold-demo.html b/client/assets/fonts/playfairdisplay/playfairdisplay-bold-demo.html
deleted file mode 100755
index 8d5e9752093e98b75edb4b257782c32ca1b8df36..0000000000000000000000000000000000000000
--- a/client/assets/fonts/playfairdisplay/playfairdisplay-bold-demo.html
+++ /dev/null
@@ -1,613 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-	<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script>
-	<script src="specimen_files/easytabs.js" type="text/javascript" charset="utf-8"></script>
-	<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" />
-	<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
-
-	<style type="text/css">
-					body{
-				font-family: 'playfair_displaybold';
-							}
-		</style>
-
-	<title>Playfair Display Bold Specimen</title>
-	
-	
-	<script type="text/javascript" charset="utf-8">
-		$(document).ready(function() {
-			$('#container').easyTabs({defaultContent:1});
-		});
-	</script>
-</head>
-
-<body>
-<div id="container">
-	<div id="header">
-		Playfair Display Bold	</div>
-	<ul class="tabs">
-		<li><a href="#specimen">Specimen</a></li>
-		<li><a href="#layout">Sample Layout</a></li>
-				<li><a href="#glyphs">Glyphs &amp; Languages</a></li>
-		<li><a href="#installing">Installing Webfonts</a></li>
-		
-	</ul>
-	
-	<div id="main_content">
-
-		
-			<div id="specimen">
-		
-				<div class="section">
-					<div class="grid12 firstcol">
-						<div class="huge">AaBb</div>
-					</div>
-				</div>
-		
-				<div class="section">
-					<div class="glyph_range">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>
-				</div>
-				<div class="section">
-					<div class="grid12 firstcol">
-						<table class="sample_table">
-							<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-						</table>
-				
-					</div>
-			
-				</div>
-		
-		
-		
-								<div class="section" id="bodycomparison">
-
-
-										<div id="xheight">
-				<div class="fontbody">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div>
-										<div class="fontbody" style="z-index:1">
-											body<span>Playfair Display Bold</span>
-										</div>
-										<div class="arialbody" style="z-index:1">
-											body<span>Arial</span>
-										</div>
-										<div class="verdanabody" style="z-index:1">
-											body<span>Verdana</span>
-										</div>
-										<div class="georgiabody" style="z-index:1">
-											body<span>Georgia</span>
-										</div>
-
-
-
-								</div>
-		
-		
-				<div class="section psample psample_row1" id="">
-					
-					<div class="grid2 firstcol">
-						<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="white_blend"></div>
-					
-				</div>
-				<div class="section psample psample_row2" id="">
-					<div class="grid3 firstcol">
-						<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid5">
-						<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-
-					<div class="white_blend"></div>
-
-				</div>
-				
-				<div class="section psample psample_row3" id="">
-					<div class="grid5 firstcol">
-						<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="grid7">
-						<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					
-					<div class="white_blend"></div>
-					
-				</div>
-				
-				<div class="section psample psample_row4" id="">
-					<div class="grid12 firstcol">
-						<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="white_blend"></div>
-					
-				</div>
-				
-				
-				
-				<div class="section psample psample_row1 fullreverse">
-					<div class="grid2 firstcol">
-						<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				<div class="section psample psample_row2 fullreverse">
-					<div class="grid3 firstcol">
-						<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid5">
-						<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="black_blend"></div>
-
-				</div>
-				
-				<div class="section psample fullreverse psample_row3" id="">
-					<div class="grid5 firstcol">
-						<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="grid7">
-						<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
-					<div class="grid12 firstcol">
-						<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				
-				
-				
-			</div>
-			
-			<div id="layout">
-				
-				<div class="section">
-					
-					<div class="grid12 firstcol">
-						<h1>Lorem Ipsum Dolor</h1>
-						<h2>Etiam porta sem malesuada magna mollis euismod</h2>
-						
-						<p class="byline">By <a href="#link">Aenean Lacinia</a></p>
-					</div>
-				</div>
-				<div class="section">
-					<div class="grid8 firstcol">
-						<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-						
-						<h3>Pellentesque ornare sem</h3>
-
-						<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
-
-						<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
-
-						<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
-
-						<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
-
-						<h3>Cras mattis consectetur</h3>
-
-						<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
-
-						<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
-					</div>
-					
-					<div class="grid4 sidebar">
-						
-						<div class="box reverse">
-							<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
-						</div>
-						
-						<p class="caption">Maecenas sed diam eget risus varius.</p>
-
-						<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-					
-
-						<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
-
-						<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-					</div>
-				</div>
-				
-			</div>
-
-
-			
-
-
-
-		<div id="glyphs">
-			<div class="section">
-				<div class="grid12 firstcol">
-			
-				<h1>Language Support</h1>
-				<p>The subset of Playfair Display Bold in this kit supports the following languages:<br />
-			
-					Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Swedish				</p>
-				<h1>Glyph Chart</h1>
-				<p>The subset of Playfair Display Bold in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p>
-				<div id="glyph_chart">
-			
-																				 <div><p>&amp;#13;</p>&#13;</div>
-																				 <div><p>&amp;#32;</p>&#32;</div>
-																				 <div><p>&amp;#33;</p>&#33;</div>
-																				 <div><p>&amp;#34;</p>&#34;</div>
-																				 <div><p>&amp;#35;</p>&#35;</div>
-																				 <div><p>&amp;#36;</p>&#36;</div>
-																				 <div><p>&amp;#37;</p>&#37;</div>
-																				 <div><p>&amp;#38;</p>&#38;</div>
-																				 <div><p>&amp;#39;</p>&#39;</div>
-																				 <div><p>&amp;#40;</p>&#40;</div>
-																				 <div><p>&amp;#41;</p>&#41;</div>
-																				 <div><p>&amp;#42;</p>&#42;</div>
-																				 <div><p>&amp;#43;</p>&#43;</div>
-																				 <div><p>&amp;#44;</p>&#44;</div>
-																				 <div><p>&amp;#45;</p>&#45;</div>
-																				 <div><p>&amp;#46;</p>&#46;</div>
-																				 <div><p>&amp;#47;</p>&#47;</div>
-																				 <div><p>&amp;#48;</p>&#48;</div>
-																				 <div><p>&amp;#49;</p>&#49;</div>
-																				 <div><p>&amp;#50;</p>&#50;</div>
-																				 <div><p>&amp;#51;</p>&#51;</div>
-																				 <div><p>&amp;#52;</p>&#52;</div>
-																				 <div><p>&amp;#53;</p>&#53;</div>
-																				 <div><p>&amp;#54;</p>&#54;</div>
-																				 <div><p>&amp;#55;</p>&#55;</div>
-																				 <div><p>&amp;#56;</p>&#56;</div>
-																				 <div><p>&amp;#57;</p>&#57;</div>
-																				 <div><p>&amp;#58;</p>&#58;</div>
-																				 <div><p>&amp;#59;</p>&#59;</div>
-																				 <div><p>&amp;#60;</p>&#60;</div>
-																				 <div><p>&amp;#61;</p>&#61;</div>
-																				 <div><p>&amp;#62;</p>&#62;</div>
-																				 <div><p>&amp;#63;</p>&#63;</div>
-																				 <div><p>&amp;#64;</p>&#64;</div>
-																				 <div><p>&amp;#65;</p>&#65;</div>
-																				 <div><p>&amp;#66;</p>&#66;</div>
-																				 <div><p>&amp;#67;</p>&#67;</div>
-																				 <div><p>&amp;#68;</p>&#68;</div>
-																				 <div><p>&amp;#69;</p>&#69;</div>
-																				 <div><p>&amp;#70;</p>&#70;</div>
-																				 <div><p>&amp;#71;</p>&#71;</div>
-																				 <div><p>&amp;#72;</p>&#72;</div>
-																				 <div><p>&amp;#73;</p>&#73;</div>
-																				 <div><p>&amp;#74;</p>&#74;</div>
-																				 <div><p>&amp;#75;</p>&#75;</div>
-																				 <div><p>&amp;#76;</p>&#76;</div>
-																				 <div><p>&amp;#77;</p>&#77;</div>
-																				 <div><p>&amp;#78;</p>&#78;</div>
-																				 <div><p>&amp;#79;</p>&#79;</div>
-																				 <div><p>&amp;#80;</p>&#80;</div>
-																				 <div><p>&amp;#81;</p>&#81;</div>
-																				 <div><p>&amp;#82;</p>&#82;</div>
-																				 <div><p>&amp;#83;</p>&#83;</div>
-																				 <div><p>&amp;#84;</p>&#84;</div>
-																				 <div><p>&amp;#85;</p>&#85;</div>
-																				 <div><p>&amp;#86;</p>&#86;</div>
-																				 <div><p>&amp;#87;</p>&#87;</div>
-																				 <div><p>&amp;#88;</p>&#88;</div>
-																				 <div><p>&amp;#89;</p>&#89;</div>
-																				 <div><p>&amp;#90;</p>&#90;</div>
-																				 <div><p>&amp;#91;</p>&#91;</div>
-																				 <div><p>&amp;#92;</p>&#92;</div>
-																				 <div><p>&amp;#93;</p>&#93;</div>
-																				 <div><p>&amp;#94;</p>&#94;</div>
-																				 <div><p>&amp;#95;</p>&#95;</div>
-																				 <div><p>&amp;#96;</p>&#96;</div>
-																				 <div><p>&amp;#97;</p>&#97;</div>
-																				 <div><p>&amp;#98;</p>&#98;</div>
-																				 <div><p>&amp;#99;</p>&#99;</div>
-																				 <div><p>&amp;#100;</p>&#100;</div>
-																				 <div><p>&amp;#101;</p>&#101;</div>
-																				 <div><p>&amp;#102;</p>&#102;</div>
-																				 <div><p>&amp;#103;</p>&#103;</div>
-																				 <div><p>&amp;#104;</p>&#104;</div>
-																				 <div><p>&amp;#105;</p>&#105;</div>
-																				 <div><p>&amp;#106;</p>&#106;</div>
-																				 <div><p>&amp;#107;</p>&#107;</div>
-																				 <div><p>&amp;#108;</p>&#108;</div>
-																				 <div><p>&amp;#109;</p>&#109;</div>
-																				 <div><p>&amp;#110;</p>&#110;</div>
-																				 <div><p>&amp;#111;</p>&#111;</div>
-																				 <div><p>&amp;#112;</p>&#112;</div>
-																				 <div><p>&amp;#113;</p>&#113;</div>
-																				 <div><p>&amp;#114;</p>&#114;</div>
-																				 <div><p>&amp;#115;</p>&#115;</div>
-																				 <div><p>&amp;#116;</p>&#116;</div>
-																				 <div><p>&amp;#117;</p>&#117;</div>
-																				 <div><p>&amp;#118;</p>&#118;</div>
-																				 <div><p>&amp;#119;</p>&#119;</div>
-																				 <div><p>&amp;#120;</p>&#120;</div>
-																				 <div><p>&amp;#121;</p>&#121;</div>
-																				 <div><p>&amp;#122;</p>&#122;</div>
-																				 <div><p>&amp;#123;</p>&#123;</div>
-																				 <div><p>&amp;#124;</p>&#124;</div>
-																				 <div><p>&amp;#125;</p>&#125;</div>
-																				 <div><p>&amp;#126;</p>&#126;</div>
-																				 <div><p>&amp;#160;</p>&#160;</div>
-																				 <div><p>&amp;#161;</p>&#161;</div>
-																				 <div><p>&amp;#162;</p>&#162;</div>
-																				 <div><p>&amp;#163;</p>&#163;</div>
-																				 <div><p>&amp;#164;</p>&#164;</div>
-																				 <div><p>&amp;#165;</p>&#165;</div>
-																				 <div><p>&amp;#166;</p>&#166;</div>
-																				 <div><p>&amp;#167;</p>&#167;</div>
-																				 <div><p>&amp;#168;</p>&#168;</div>
-																				 <div><p>&amp;#169;</p>&#169;</div>
-																				 <div><p>&amp;#170;</p>&#170;</div>
-																				 <div><p>&amp;#171;</p>&#171;</div>
-																				 <div><p>&amp;#172;</p>&#172;</div>
-																				 <div><p>&amp;#173;</p>&#173;</div>
-																				 <div><p>&amp;#174;</p>&#174;</div>
-																				 <div><p>&amp;#175;</p>&#175;</div>
-																				 <div><p>&amp;#176;</p>&#176;</div>
-																				 <div><p>&amp;#177;</p>&#177;</div>
-																				 <div><p>&amp;#178;</p>&#178;</div>
-																				 <div><p>&amp;#179;</p>&#179;</div>
-																				 <div><p>&amp;#180;</p>&#180;</div>
-																				 <div><p>&amp;#182;</p>&#182;</div>
-																				 <div><p>&amp;#183;</p>&#183;</div>
-																				 <div><p>&amp;#184;</p>&#184;</div>
-																				 <div><p>&amp;#185;</p>&#185;</div>
-																				 <div><p>&amp;#186;</p>&#186;</div>
-																				 <div><p>&amp;#187;</p>&#187;</div>
-																				 <div><p>&amp;#188;</p>&#188;</div>
-																				 <div><p>&amp;#189;</p>&#189;</div>
-																				 <div><p>&amp;#190;</p>&#190;</div>
-																				 <div><p>&amp;#191;</p>&#191;</div>
-																				 <div><p>&amp;#192;</p>&#192;</div>
-																				 <div><p>&amp;#193;</p>&#193;</div>
-																				 <div><p>&amp;#194;</p>&#194;</div>
-																				 <div><p>&amp;#195;</p>&#195;</div>
-																				 <div><p>&amp;#196;</p>&#196;</div>
-																				 <div><p>&amp;#197;</p>&#197;</div>
-																				 <div><p>&amp;#198;</p>&#198;</div>
-																				 <div><p>&amp;#199;</p>&#199;</div>
-																				 <div><p>&amp;#200;</p>&#200;</div>
-																				 <div><p>&amp;#201;</p>&#201;</div>
-																				 <div><p>&amp;#202;</p>&#202;</div>
-																				 <div><p>&amp;#203;</p>&#203;</div>
-																				 <div><p>&amp;#204;</p>&#204;</div>
-																				 <div><p>&amp;#205;</p>&#205;</div>
-																				 <div><p>&amp;#206;</p>&#206;</div>
-																				 <div><p>&amp;#207;</p>&#207;</div>
-																				 <div><p>&amp;#208;</p>&#208;</div>
-																				 <div><p>&amp;#209;</p>&#209;</div>
-																				 <div><p>&amp;#210;</p>&#210;</div>
-																				 <div><p>&amp;#211;</p>&#211;</div>
-																				 <div><p>&amp;#212;</p>&#212;</div>
-																				 <div><p>&amp;#213;</p>&#213;</div>
-																				 <div><p>&amp;#214;</p>&#214;</div>
-																				 <div><p>&amp;#215;</p>&#215;</div>
-																				 <div><p>&amp;#216;</p>&#216;</div>
-																				 <div><p>&amp;#217;</p>&#217;</div>
-																				 <div><p>&amp;#218;</p>&#218;</div>
-																				 <div><p>&amp;#219;</p>&#219;</div>
-																				 <div><p>&amp;#220;</p>&#220;</div>
-																				 <div><p>&amp;#221;</p>&#221;</div>
-																				 <div><p>&amp;#222;</p>&#222;</div>
-																				 <div><p>&amp;#223;</p>&#223;</div>
-																				 <div><p>&amp;#224;</p>&#224;</div>
-																				 <div><p>&amp;#225;</p>&#225;</div>
-																				 <div><p>&amp;#226;</p>&#226;</div>
-																				 <div><p>&amp;#227;</p>&#227;</div>
-																				 <div><p>&amp;#228;</p>&#228;</div>
-																				 <div><p>&amp;#229;</p>&#229;</div>
-																				 <div><p>&amp;#230;</p>&#230;</div>
-																				 <div><p>&amp;#231;</p>&#231;</div>
-																				 <div><p>&amp;#232;</p>&#232;</div>
-																				 <div><p>&amp;#233;</p>&#233;</div>
-																				 <div><p>&amp;#234;</p>&#234;</div>
-																				 <div><p>&amp;#235;</p>&#235;</div>
-																				 <div><p>&amp;#236;</p>&#236;</div>
-																				 <div><p>&amp;#237;</p>&#237;</div>
-																				 <div><p>&amp;#238;</p>&#238;</div>
-																				 <div><p>&amp;#239;</p>&#239;</div>
-																				 <div><p>&amp;#240;</p>&#240;</div>
-																				 <div><p>&amp;#241;</p>&#241;</div>
-																				 <div><p>&amp;#242;</p>&#242;</div>
-																				 <div><p>&amp;#243;</p>&#243;</div>
-																				 <div><p>&amp;#244;</p>&#244;</div>
-																				 <div><p>&amp;#245;</p>&#245;</div>
-																				 <div><p>&amp;#246;</p>&#246;</div>
-																				 <div><p>&amp;#247;</p>&#247;</div>
-																				 <div><p>&amp;#248;</p>&#248;</div>
-																				 <div><p>&amp;#249;</p>&#249;</div>
-																				 <div><p>&amp;#250;</p>&#250;</div>
-																				 <div><p>&amp;#251;</p>&#251;</div>
-																				 <div><p>&amp;#252;</p>&#252;</div>
-																				 <div><p>&amp;#253;</p>&#253;</div>
-																				 <div><p>&amp;#254;</p>&#254;</div>
-																				 <div><p>&amp;#255;</p>&#255;</div>
-																				 <div><p>&amp;#338;</p>&#338;</div>
-																				 <div><p>&amp;#339;</p>&#339;</div>
-																				 <div><p>&amp;#376;</p>&#376;</div>
-																				 <div><p>&amp;#710;</p>&#710;</div>
-																				 <div><p>&amp;#732;</p>&#732;</div>
-																				 <div><p>&amp;#8192;</p>&#8192;</div>
-																				 <div><p>&amp;#8193;</p>&#8193;</div>
-																				 <div><p>&amp;#8194;</p>&#8194;</div>
-																				 <div><p>&amp;#8195;</p>&#8195;</div>
-																				 <div><p>&amp;#8196;</p>&#8196;</div>
-																				 <div><p>&amp;#8197;</p>&#8197;</div>
-																				 <div><p>&amp;#8198;</p>&#8198;</div>
-																				 <div><p>&amp;#8199;</p>&#8199;</div>
-																				 <div><p>&amp;#8200;</p>&#8200;</div>
-																				 <div><p>&amp;#8201;</p>&#8201;</div>
-																				 <div><p>&amp;#8202;</p>&#8202;</div>
-																				 <div><p>&amp;#8208;</p>&#8208;</div>
-																				 <div><p>&amp;#8209;</p>&#8209;</div>
-																				 <div><p>&amp;#8210;</p>&#8210;</div>
-																				 <div><p>&amp;#8211;</p>&#8211;</div>
-																				 <div><p>&amp;#8212;</p>&#8212;</div>
-																				 <div><p>&amp;#8216;</p>&#8216;</div>
-																				 <div><p>&amp;#8217;</p>&#8217;</div>
-																				 <div><p>&amp;#8218;</p>&#8218;</div>
-																				 <div><p>&amp;#8220;</p>&#8220;</div>
-																				 <div><p>&amp;#8221;</p>&#8221;</div>
-																				 <div><p>&amp;#8222;</p>&#8222;</div>
-																				 <div><p>&amp;#8226;</p>&#8226;</div>
-																				 <div><p>&amp;#8230;</p>&#8230;</div>
-																				 <div><p>&amp;#8239;</p>&#8239;</div>
-																				 <div><p>&amp;#8249;</p>&#8249;</div>
-																				 <div><p>&amp;#8250;</p>&#8250;</div>
-																				 <div><p>&amp;#8287;</p>&#8287;</div>
-																				 <div><p>&amp;#8364;</p>&#8364;</div>
-																				 <div><p>&amp;#8482;</p>&#8482;</div>
-																				 <div><p>&amp;#9724;</p>&#9724;</div>
-																				 <div><p>&amp;#64257;</p>&#64257;</div>
-																				 <div><p>&amp;#64258;</p>&#64258;</div>
-																				 <div><p>&amp;#64259;</p>&#64259;</div>
-																				 <div><p>&amp;#64260;</p>&#64260;</div>
-																																																</div>	
-				</div>
-		
-		
-			</div>
-		</div>
-		
-		
-		<div id="specs">
-			
-		</div>
-	
-		<div id="installing">
-			<div class="section">
-				<div class="grid7 firstcol">
-					<h1>Installing Webfonts</h1>
-					
-					<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
-					
-					<h2>1. Upload your webfonts</h2>
-					<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
-					
-					<h2>2. Include the webfont stylesheet</h2>
-					<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p>
-
-
-<code>
-@font-face{ 
-	font-family: 'MyWebFont';
-	src: url('WebFont.eot');
-	src: url('WebFont.eot?#iefix') format('embedded-opentype'),
-	     url('WebFont.woff') format('woff'),
-	     url('WebFont.ttf') format('truetype'),
-	     url('WebFont.svg#webfont') format('svg');
-}
-</code>
-
-	<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
-	<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>
-
-					<h2>3. Modify your own stylesheet</h2>
-					<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
-<code>p { font-family: 'WebFont', Arial, sans-serif; }</code>
-
-<h2>4. Test</h2>
-<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
-				</div>
-				
-				<div class="grid5 sidebar">
-					<div class="box">
-						<h2>Troubleshooting<br />Font-Face Problems</h2>
-						<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
-
-						<h3>Fonts not showing in any browser</h3>
-
-						<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
-
-						<h3>Fonts not loading in iPhone or iPad</h3>
-
-						<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
-
-						<h3>Fonts not loading in Firefox</h3>
-
-						<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
-
-						<h3>Fonts not loading in IE</h3>
-
-						<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
-
-						<h3>Fonts not loading in IE9</h3>
-
-						<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
-					</div>
-				</div>
-			</div>
-			
-		</div>
-	
-	</div>
-	<div id="footer">
-		<p>&copy;2010-2011 Font Squirrel. All rights reserved.</p>
-	</div>
-</div>
-</body>
-</html>
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-bold-webfont.eot b/client/assets/fonts/playfairdisplay/playfairdisplay-bold-webfont.eot
deleted file mode 100755
index 919ffb2023dc3bf1682042e6870fb71eaca0325f..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-bold-webfont.eot and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-bold-webfont.svg b/client/assets/fonts/playfairdisplay/playfairdisplay-bold-webfont.svg
deleted file mode 100755
index f7c0c83210060d9bae4ae9ef85b6a25697f6bf40..0000000000000000000000000000000000000000
--- a/client/assets/fonts/playfairdisplay/playfairdisplay-bold-webfont.svg
+++ /dev/null
@@ -1,1526 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
-<metadata></metadata>
-<defs>
-<font id="playfair_displaybold" horiz-adv-x="1624" >
-<font-face units-per-em="2048" ascent="1638" descent="-410" />
-<missing-glyph horiz-adv-x="477" />
-<glyph unicode="&#xfb01;" horiz-adv-x="1333" d="M35 1016v41h151q0 251 162 407q71 66 182.5 102t239.5 36q119 0 194 -19t134 -55q36 -23 60 -60t24 -79q0 -74 -50 -116t-143 -42q-90 0 -141 42t-51 113q0 54 35 93.5t100 58.5q-20 12 -56.5 19.5t-76.5 7.5q-178 0 -262 -152q-30 -54 -43 -132.5t-13 -223.5h244 q166 0 259 5t179 19v-891q0 -57 14 -89t45 -45t85 -13v-43q-224 8 -285 8t-285 -8v43q50 0 78 13t40.5 45t12.5 89v646q0 95 -32 137.5t-111 42.5h-244v-826q0 -83 41 -115t123 -32v-43q-252 8 -305 8q-69 0 -297 -8v43q54 0 84.5 13t44.5 45t14 89v826h-151z" />
-<glyph unicode="&#xfb02;" horiz-adv-x="1339" d="M35 1016v41h151q0 156 35 261t113 173q67 57 155.5 84t182.5 27q42 0 134.5 -8.5t147.5 -8.5q101 0 209 21v-1416q0 -57 14 -89t45 -45t85 -13v-43q-224 8 -285 8t-285 -8v43q50 0 78 13t40.5 45t12.5 89v1194q0 95 -39 134q-21 22 -54.5 34.5t-69.5 12.5 q-55 0 -92.5 -17.5t-67.5 -52.5q-41 -44 -52.5 -114t-11.5 -212v-112h215v-41h-215v-826q0 -83 41 -115t123 -32v-43q-252 8 -305 8q-69 0 -297 -8v43q54 0 84.5 13t44.5 45t14 89v826h-151z" />
-<glyph horiz-adv-x="0" />
-<glyph horiz-adv-x="682" />
-<glyph unicode="&#xd;" horiz-adv-x="0" />
-<glyph unicode=" "  horiz-adv-x="477" />
-<glyph unicode="&#x09;" horiz-adv-x="477" />
-<glyph unicode="&#xa0;" horiz-adv-x="477" />
-<glyph unicode="!" horiz-adv-x="590" d="M121 129q0 73 47 115.5t127 42.5q81 0 128 -42.5t47 -115.5t-47 -115.5t-128 -42.5q-80 0 -127 42.5t-47 115.5zM127 1401q0 62 21.5 107.5t60 69.5t86.5 24q45 0 83.5 -24t61.5 -70t23 -107q0 -107 -45.5 -321.5t-72 -360.5t-32.5 -318h-37q-4 147 -26.5 285t-72.5 373 t-50 342z" />
-<glyph unicode="&#x22;" horiz-adv-x="756" d="M86 1358q0 62 36.5 99.5t92.5 37.5t92.5 -36.5t36.5 -98.5q0 -50 -11.5 -93t-46 -134.5t-57.5 -174.5h-28q-21 74 -54.5 163t-47 135t-13.5 102zM415 1358q0 62 36.5 99.5t92.5 37.5t92.5 -36.5t36.5 -98.5q0 -50 -11.5 -93t-46 -134.5t-57.5 -174.5h-28 q-21 74 -54.5 163t-47 135t-13.5 102z" />
-<glyph unicode="#" horiz-adv-x="1270" d="M82 506l8 41h302l66 342h-300l6 41h302l58 303h41l-58 -303h342l58 303h41l-58 -303h300l-6 -41h-302l-66 -342h300l-8 -41h-300l-58 -299h-41l58 299h-342l-58 -299h-41l58 299h-302zM433 547h342l66 342h-342z" />
-<glyph unicode="$" horiz-adv-x="1176" d="M102 -14q9 123 9 553h47q12 -165 48.5 -272t103.5 -166.5t173 -76.5v603l-6 4q-120 76 -194.5 137.5t-122 144t-47.5 189.5q0 109 49 187.5t132.5 123.5t188.5 59v248h41v-245q23 2 47 2q60 0 111 -8v251h41v-259q71 -17 147 -64q50 -29 70 -29q19 0 29 21.5t16 68.5h47 q-10 -137 -10 -467h-47q-22 171 -80.5 279t-171.5 145v-563l33 -21q115 -73 187 -134.5t115.5 -141t43.5 -184.5q0 -110 -49 -191.5t-134 -131t-196 -67.5v-251h-41v246q-43 -5 -88 -5q-36 0 -70 3v-244h-41v249q-64 9 -105 24t-97 42q-64 31 -86 31q-19 0 -29 -21.5 t-16 -68.5h-48zM358 1239q0 -61 26.5 -108.5t98.5 -108.5v391q-61 -22 -93 -67.5t-32 -106.5zM524 19q29 -3 62 -3q53 0 96 8v462q-60 46 -158 113v-580zM524 990q59 -45 158 -111v546q-37 7 -78 7q-43 0 -80 -8v-434zM723 35q139 46 139 192q0 41 -11.5 74.5t-41.5 69.5 t-86 83v-419z" />
-<glyph unicode="%" horiz-adv-x="1491" d="M68 1214q0 101 43.5 179.5t119.5 122t170 43.5q99 0 174 -40t116.5 -115t41.5 -179q0 -102 -43 -180t-118.5 -121t-170.5 -43q-98 0 -173.5 39.5t-117.5 115t-42 178.5zM136 -86l1198 1774l39 -27l-1198 -1774zM264 1217q0 -147 37 -223t105 -76q131 0 131 303 q0 148 -36.5 224.5t-103.5 76.5q-133 0 -133 -305zM756 305q0 101 43.5 179t119.5 121.5t171 43.5q98 0 173 -40t116.5 -115t41.5 -179q0 -101 -43 -179.5t-118.5 -121.5t-169.5 -43q-99 0 -174.5 40t-117.5 115t-42 179zM952 307q0 -146 37.5 -222.5t104.5 -76.5 q131 0 131 303q0 149 -36 225t-104 76q-133 0 -133 -305z" />
-<glyph unicode="&#x26;" horiz-adv-x="1839" d="M84 481q0 139 73.5 234t167 144.5t175.5 70.5q-232 92 -232 258q0 84 57.5 144.5t151 91t199.5 30.5q76 0 125 -10.5t88 -32.5q125 -62 125 -166q0 -40 -21.5 -70.5t-58 -47.5t-78.5 -17q-65 0 -107 32.5t-42 94.5q0 52 36.5 93.5t94.5 51.5q-18 16 -55 26.5t-81 10.5 q-72 0 -130 -30t-92 -90.5t-34 -147.5q0 -118 80 -209q75 16 115 16q36 0 56 -15t20 -40q0 -19 -16.5 -31t-41.5 -12q-27 0 -56 12.5t-49.5 25t-25.5 15.5q-104 -53 -160.5 -131.5t-56.5 -199.5q0 -198 158.5 -298t439.5 -100q142 0 272 41.5t211 122.5t81 193 q0 186 -156 261q-59 -18 -136.5 -39.5t-109.5 -31.5q-114 -25 -185.5 -51.5t-109 -62t-37.5 -85.5q0 -49 32.5 -86.5t84 -58t105.5 -20.5q21 0 47 6t34 14q-50 17 -76 52t-26 83q0 63 46 99t118 36q73 0 115.5 -38t42.5 -101q0 -92 -82 -139t-209 -47q-85 0 -154 29t-110 88 t-41 145q0 153 117 243t341 134q38 10 137 34t169 48q158 39 233.5 85t75.5 117q0 53 -33.5 96t-87 67t-111.5 24q-39 0 -59 -10q47 -18 73.5 -54t26.5 -75q0 -61 -46 -96.5t-118 -35.5q-71 0 -115 36.5t-44 99.5q0 80 69.5 126t186.5 46q96 0 169.5 -34.5t114.5 -100 t41 -154.5q0 -151 -105.5 -236.5t-309.5 -128.5l-38 -13q92 -40 141.5 -130.5t49.5 -208.5q0 -143 -88.5 -257.5t-249 -179.5t-368.5 -65q-225 0 -396 62t-264.5 177.5t-93.5 270.5z" />
-<glyph unicode="'" horiz-adv-x="428" d="M86 1358q0 62 36.5 99.5t92.5 37.5t92.5 -36.5t36.5 -98.5q0 -50 -11.5 -93t-46 -134.5t-57.5 -174.5h-28q-21 74 -54.5 163t-47 135t-13.5 102z" />
-<glyph unicode="(" horiz-adv-x="651" d="M71 639q0 -328 130.5 -577.5t381.5 -434.5l31 25q-137 217 -198.5 452t-61.5 535q0 299 62 536.5t198 450.5l-31 25q-251 -185 -381.5 -434.5t-130.5 -577.5z" />
-<glyph unicode=")" horiz-adv-x="651" d="M37 -348q137 217 198.5 452t61.5 535q0 299 -62 536.5t-198 450.5l31 25q251 -185 381.5 -434.5t130.5 -577.5t-130.5 -577.5t-381.5 -434.5z" />
-<glyph unicode="*" horiz-adv-x="985" d="M104 896q0 53 62 89q31 18 71.5 28t119.5 23t126 23q-46 10 -126.5 24t-121.5 24.5t-71 27.5q-60 35 -60 89q0 27 15 52q29 51 80 51q31 0 65 -20q31 -18 60.5 -48.5t80 -91t80.5 -94.5q-13 41 -41 116.5t-39.5 117t-11.5 75.5q0 57 29.5 84t71.5 27q41 0 69.5 -27 t28.5 -84q0 -35 -11.5 -75t-38.5 -114t-42 -119q30 33 81.5 95t81 92.5t58.5 47.5q33 19 65 19q52 0 80 -50q17 -27 17 -53q0 -54 -62 -88q-30 -17 -69.5 -27t-117.5 -23.5t-125 -24.5q44 -9 123 -23t119.5 -24.5t69.5 -27.5q62 -34 62 -88q0 -26 -17 -53q-27 -51 -78 -51 q-31 0 -65 20q-31 18 -60 48t-79.5 90t-81.5 94q14 -41 41.5 -116.5t39 -116.5t11.5 -75q0 -57 -29 -83.5t-71 -26.5t-70.5 26.5t-28.5 83.5q0 38 12.5 81t37 108t43.5 121q-30 -34 -82 -96t-81.5 -92.5t-58.5 -47.5q-33 -19 -64 -19q-53 0 -83 50q-15 27 -15 52z" />
-<glyph unicode="+" horiz-adv-x="1176" d="M74 696v62h477v483h74v-483h475v-62h-475v-481h-74v481h-477z" />
-<glyph unicode="," horiz-adv-x="555" d="M100 129q0 70 47.5 114t120.5 44q100 0 146 -72q21 -31 33 -76.5t12 -93.5q0 -105 -54 -192t-161 -136l-19 37q59 25 103 76t53 104q5 28 5 48q0 23 -5 38q-47 -49 -119 -49t-117 42t-45 116z" />
-<glyph unicode="-" horiz-adv-x="985" d="M123 469v170h739v-170h-739z" />
-<glyph unicode="." horiz-adv-x="553" d="M102 129q0 73 47 115.5t127 42.5q81 0 128 -42.5t47 -115.5t-47 -115.5t-128 -42.5q-80 0 -127 42.5t-47 115.5z" />
-<glyph unicode="/" horiz-adv-x="754" d="M66 -29l557 1508h67l-557 -1508h-67z" />
-<glyph unicode="0" horiz-adv-x="1321" d="M92 514q0 162 72.5 292.5t204.5 205.5t303 75q161 0 288 -67.5t198 -190t71 -282.5q0 -163 -73 -294.5t-205 -206.5t-302 -75q-160 0 -286.5 67t-198.5 190.5t-72 285.5zM401 520q0 -176 35.5 -291t95.5 -168t136 -53q73 0 130 64t89.5 185t32.5 284q0 175 -35.5 289.5 t-95.5 167.5t-136 53q-74 0 -131 -63.5t-89 -183.5t-32 -284z" />
-<glyph unicode="1" horiz-adv-x="784" d="M82 932v45q178 3 293 26.5t203 77.5v-882q0 -61 14.5 -94.5t46 -47.5t86.5 -14v-43q-220 8 -283 8q-64 0 -352 -8v43q97 0 145 36.5t48 131.5v500q0 99 -17.5 145t-58.5 61t-125 15z" />
-<glyph unicode="2" horiz-adv-x="1071" d="M84 831q150 256 479 256q105 0 182 -30.5t118.5 -89t41.5 -140.5q0 -119 -87 -210t-248 -204t-214 -169h443q56 0 83 8.5t38 27t16 56.5h43q0 -242 8 -346q-46 10 -305 10h-596v39q29 30 176 164t234.5 272.5t87.5 284.5q0 209 -191 209q-86 0 -152.5 -39.5 t-121.5 -118.5z" />
-<glyph unicode="3" horiz-adv-x="999" d="M59 -268q135 4 265 60t214.5 161t84.5 248q0 79 -26 142t-74.5 100t-114.5 42q-73 -32 -105 -32q-39 0 -39 28q0 22 19 33.5t47 11.5q12 0 33.5 -3.5t37.5 -4.5q158 111 158 275q0 91 -47.5 135.5t-134.5 44.5q-82 0 -151 -40.5t-115 -119.5l-37 18q63 117 164.5 186.5 t265.5 69.5q101 0 180.5 -28.5t124.5 -81.5t45 -125q0 -77 -50.5 -145t-145 -118.5t-220.5 -74.5l35 1q132 0 235 -36.5t161.5 -106.5t58.5 -169q0 -151 -129 -267.5t-330.5 -180.5t-409.5 -64v41z" />
-<glyph unicode="4" horiz-adv-x="1081" d="M16 74v43l764 970h33v-802h16q56 0 83.5 8.5t38 26.5t16.5 57h43q0 -218 8 -314q-31 7 -205 10v-362h-238v363h-559zM205 285h370v476z" />
-<glyph unicode="5" horiz-adv-x="940" d="M61 -266q130 1 246 56.5t188 160.5t72 248q0 128 -60.5 197t-174.5 69q-56 0 -98 -14.5t-87 -44.5l-28 18l65 641q41 -8 111 -8h338q59 0 82.5 17t29.5 63h43q0 -228 9 -344q-44 10 -285 10h-315l-33 -350q118 82 309 82q133 0 222.5 -42.5t133 -115.5t43.5 -166 q0 -152 -118.5 -269t-306.5 -181t-386 -64v37z" />
-<glyph unicode="6" horiz-adv-x="1149" d="M96 555q0 285 128.5 483.5t315 305t373.5 137.5l9 -41q-132 -42 -230.5 -107.5t-173.5 -202t-101 -364.5q42 70 114 102.5t155 32.5q110 0 201.5 -53.5t145.5 -154t54 -234.5q0 -152 -68.5 -262.5t-185 -168t-255.5 -57.5q-149 0 -257.5 69t-166.5 200t-58 315zM406 543 q0 -192 28 -310.5t71 -169.5t93 -51t90.5 44.5t65 140.5t24.5 243q0 209 -48 305.5t-126 96.5q-52 0 -107.5 -38t-85.5 -115q-5 -70 -5 -146z" />
-<glyph unicode="7" horiz-adv-x="932" d="M47 1067q46 -10 305 -10h578v-43q-27 -61 -133.5 -254.5t-167 -371.5t-60.5 -376q0 -12 5.5 -78.5t5.5 -87.5q0 -62 -39.5 -105.5t-110.5 -43.5q-74 0 -111.5 49t-37.5 131q0 182 100 359t232.5 350.5t167.5 222.5h-545q-56 0 -83.5 -8.5t-38 -27t-16.5 -56.5h-43 q0 246 -8 350z" />
-<glyph unicode="8" horiz-adv-x="1149" d="M88 322q0 251 333 397q-83 71 -139 132.5t-91 135t-35 158.5q0 106 59 181.5t158 114t217 38.5q116 0 207 -35.5t142.5 -100.5t51.5 -151q0 -100 -71 -179.5t-210 -152.5q125 -106 191 -170t115 -149t49 -183q0 -112 -65 -200t-179.5 -137.5t-257.5 -49.5 q-129 0 -237.5 40.5t-173 119.5t-64.5 191zM342 358q0 -156 54.5 -253t176.5 -97q96 0 151.5 61t55.5 160q0 91 -44.5 169t-105 136.5t-177.5 157.5q-111 -117 -111 -334zM426 1272q0 -71 33 -136t86.5 -122.5t132.5 -125.5q39 55 57.5 133.5t18.5 154.5q0 124 -48 195 t-133 71q-68 0 -107.5 -46.5t-39.5 -123.5z" />
-<glyph unicode="9" horiz-adv-x="1133" d="M59 602q0 151 69 261t185.5 167t255.5 57q149 0 257.5 -66t166.5 -193t58 -306q0 -256 -127 -435.5t-311.5 -275.5t-366.5 -122l-8 41q122 35 215 90t166.5 167t103.5 295q-43 -64 -113 -94t-149 -30q-110 0 -201.5 54t-146 154.5t-54.5 235.5zM369 618q0 -207 47.5 -304 t126.5 -97q51 0 105 35.5t85 109.5q8 79 8 170q0 187 -28 302t-71.5 164t-94.5 49q-49 0 -89 -44.5t-64.5 -140.5t-24.5 -244z" />
-<glyph unicode=":" horiz-adv-x="594" d="M122 129q0 73 47 115.5t127 42.5q81 0 128 -42.5t47 -115.5t-47 -115.5t-128 -42.5q-80 0 -127 42.5t-47 115.5zM122 929q0 73 47 115.5t127 42.5q81 0 128 -42.5t47 -115.5t-47 -115.5t-128 -42.5q-80 0 -127 42.5t-47 115.5z" />
-<glyph unicode=";" horiz-adv-x="606" d="M124 129q0 70 47.5 114t120.5 44q100 0 146 -72q21 -31 33 -76.5t12 -93.5q0 -105 -54 -192t-161 -136l-19 37q59 25 103 76t53 104q5 28 5 48q0 23 -5 38q-47 -49 -119 -49t-117 42t-45 116zM130 929q0 73 47 115.5t127 42.5q81 0 128 -42.5t47 -115.5t-47 -115.5 t-128 -42.5q-80 0 -127 42.5t-47 115.5z" />
-<glyph unicode="&#x3c;" horiz-adv-x="1233" d="M57 727l998 465l35 -74l-838 -391l838 -391l-35 -74z" />
-<glyph unicode="=" horiz-adv-x="1300" d="M137 553v61h1026v-61h-1026zM137 840v61h1026v-61h-1026z" />
-<glyph unicode="&#x3e;" horiz-adv-x="1233" d="M143 336l35 -74l998 465l-998 465l-35 -74l838 -391z" />
-<glyph unicode="?" horiz-adv-x="1040" d="M61 1352q0 58 31 100.5t86 77.5q122 72 307 72q146 0 257.5 -44.5t173 -128t61.5 -196.5q0 -168 -140 -284t-382 -171v-299h-41v318q109 48 168.5 108.5t80.5 130t21 158.5q0 186 -67.5 276.5t-184.5 90.5q-58 0 -105.5 -13.5t-72.5 -40.5q115 -34 115 -149 q0 -64 -45.5 -106t-116.5 -42q-43 0 -76 19.5t-51.5 52t-18.5 70.5zM262 129q0 73 47 115.5t127 42.5q81 0 128 -42.5t47 -115.5t-47 -115.5t-128 -42.5q-80 0 -127 42.5t-47 115.5z" />
-<glyph unicode="@" horiz-adv-x="1810" d="M92 293q0 274 134.5 522.5t365 400.5t502.5 152q188 0 334.5 -59.5t231.5 -185.5t85 -318q0 -218 -93.5 -390t-235 -267t-277.5 -95q-162 0 -162 142q0 40 12 90q-55 -122 -127 -177t-164 -55q-110 0 -173.5 68t-63.5 198q0 145 70 300t183 257.5t236 102.5 q64 0 105 -33.5t54 -89.5l19 94q163 0 258 29l-161 -739q-12 -51 -12 -76q0 -46 34 -46q13 0 27 5q92 27 192 117t169 236t69 331q0 182 -81 299t-218 171t-309 54q-250 0 -472.5 -142.5t-356.5 -381t-134 -510.5q0 -204 79.5 -336t220 -193t327.5 -61q237 0 422 111l14 -27 q-79 -56 -192.5 -88.5t-245.5 -32.5q-200 0 -349.5 66.5t-233 206t-83.5 350.5zM723 322q0 -92 21 -131t63 -39q63 0 119.5 80t101.5 229l65 319q-1 52 -24.5 89.5t-67.5 37.5q-65 0 -130 -87t-106.5 -223.5t-41.5 -274.5z" />
-<glyph unicode="A" horiz-adv-x="1366" d="M-31 0v41q102 17 176 215l467 1198q33 -3 71 -3q40 0 71 3l497 -1282q27 -68 61 -98.5t68 -32.5v-41q-123 6 -311 6q-210 0 -311 -6v41q77 3 110.5 19t33.5 56q0 31 -25 97l-123 336h-446l-54 -141q-56 -144 -56 -228q0 -76 45 -106t136 -33v-41q-138 6 -254 6 q-94 0 -156 -6zM324 590h415l-203 553z" />
-<glyph unicode="B" horiz-adv-x="1376" d="M70 0v41q68 3 99 16t42.5 48t11.5 112v1016q0 77 -11.5 112t-42.5 48t-99 16v41q103 -6 311 -6q82 0 182 2t139 2q165 0 278.5 -40.5t170.5 -113t57 -168.5q0 -76 -44 -149t-136.5 -129.5t-228.5 -81.5v-4q182 -14 297.5 -67.5t167 -131t51.5 -166.5q0 -127 -68 -216.5 t-195 -135t-302 -45.5q-44 0 -150.5 3t-214.5 3q-211 0 -315 -6zM549 217q0 -74 10.5 -109t39.5 -48t91 -13q285 0 285 359q0 161 -81.5 245t-258.5 84h-86v-518zM549 770h88q133 0 186.5 91t53.5 243q0 154 -48 229.5t-153 75.5q-55 0 -81.5 -14.5t-36 -51t-9.5 -110.5 v-463z" />
-<glyph unicode="C" horiz-adv-x="1444" d="M88 713q0 226 92 400t257 270t376 96q122 0 208.5 -35t168.5 -98q23 -18 40 -18q42 0 52 122h47q-8 -139 -8 -496h-47q-13 103 -28.5 167.5t-45 113.5t-80.5 90q-51 49 -119 74.5t-141 25.5q-141 0 -232 -97t-133 -256t-42 -351t44 -351t137.5 -254.5t233.5 -95.5 q71 0 139 26t115 75q52 40 81.5 92.5t44 121.5t26.5 181h47q0 -371 8 -516h-47q-5 64 -16.5 92.5t-33.5 28.5q-16 0 -42 -17q-60 -42 -111.5 -70t-118 -45.5t-149.5 -17.5q-217 0 -380.5 88t-253 255.5t-89.5 398.5z" />
-<glyph unicode="D" horiz-adv-x="1589" d="M70 0v41q68 3 99 16t42.5 48t11.5 112v1016q0 77 -11.5 112t-42.5 48t-99 16v41q131 -7 247 -7l64 1q288 6 321 6q400 0 598.5 -181t198.5 -528q0 -223 -97 -390.5t-281 -259t-437 -91.5q-30 0 -140.5 3t-158.5 3q-211 0 -315 -6zM549 213q0 -74 12 -110.5t44 -51 t97 -14.5q169 0 269.5 79.5t144 232t43.5 384.5q0 233 -46.5 382.5t-147.5 223.5t-265 74q-64 0 -95.5 -14.5t-43.5 -51.5t-12 -110v-1024z" />
-<glyph unicode="E" horiz-adv-x="1298" d="M70 0v41q68 3 99 16t42.5 48t11.5 112v1016q0 77 -11.5 112t-42.5 48t-99 16v41q221 -6 667 -6q301 0 428 6q-14 -169 -14 -303q0 -91 6 -139h-47q-21 149 -64 235t-109 123t-163 37h-84q-64 0 -92.5 -10.5t-38.5 -40t-10 -95.5v-507h65q110 0 166 80t78 190h47 q-7 -101 -7 -193l1 -98q0 -104 12 -291h-47q-41 271 -250 271h-65v-516q0 -66 10 -95.5t38.5 -40t92.5 -10.5h101q144 0 233.5 100t126.5 336h47q-6 -67 -6 -172q0 -188 14 -311q-139 6 -469 6q-446 0 -667 -6z" />
-<glyph unicode="F" horiz-adv-x="1212" d="M70 0v41q68 3 99 16t42.5 48t11.5 112v1016q0 77 -11.5 112t-42.5 48t-99 16v41q221 -6 667 -6q301 0 428 6q-14 -175 -14 -311q0 -97 6 -156h-47q-27 157 -73 249t-113.5 131.5t-165.5 39.5h-68q-64 0 -92.5 -10.5t-38.5 -40t-10 -95.5v-516h72q109 0 165 80.5t78 190.5 h47q-7 -101 -7 -193l1 -98q0 -107 13 -291h-48q-42 270 -249 270h-72v-471q0 -82 17 -119.5t61.5 -50.5t140.5 -14v-45q-252 6 -375 6q-59 0 -323 -6z" />
-<glyph unicode="G" horiz-adv-x="1505" d="M88 709q0 229 94.5 403.5t263 270.5t383.5 96q126 0 213.5 -34.5t171.5 -98.5q25 -19 41 -19q21 0 33 29t19 94h47q-8 -139 -8 -496h-48q-15 138 -47 224.5t-106 146.5q-49 47 -121 73.5t-147 26.5q-143 0 -238 -97.5t-140.5 -257.5t-45.5 -349q0 -709 393 -709 q89 0 145 41q27 18 38 43t11 64v200q0 96 -16 140.5t-57.5 61t-132.5 20.5v41q118 -7 350 -7q189 0 274 7v-41q-42 -4 -60 -16.5t-25 -47t-7 -112.5v-406h-41q-2 43 -17 80t-42 37q-34 0 -111 -43q-178 -103 -336 -103q-236 0 -400 87.5t-247.5 253t-83.5 397.5z" />
-<glyph unicode="H" horiz-adv-x="1638" d="M70 0v41q68 3 99 16t42.5 48t11.5 112v1016q0 77 -11.5 112t-42.5 48t-99 16v41q103 -6 323 -6q200 0 309 6v-41q-69 -3 -100 -16t-42 -48t-11 -112v-483h543v483q0 77 -11.5 112t-43 48t-99.5 16v41q114 -6 322 -6q209 0 311 6v-41q-69 -3 -100 -16t-42.5 -48 t-11.5 -112v-1016q0 -77 11.5 -112t42.5 -48t100 -16v-41q-102 6 -311 6q-208 0 -322 -6v41q68 3 99.5 16t43 48t11.5 112v492h-543v-492q0 -77 11 -112t42 -48t100 -16v-41q-109 6 -309 6q-219 0 -323 -6z" />
-<glyph unicode="I" horiz-adv-x="770" d="M70 0v41q68 3 99 16t42.5 48t11.5 112v1016q0 77 -11.5 112t-42.5 48t-99 16v41q103 -6 323 -6q200 0 309 6v-41q-69 -3 -100 -16t-42 -48t-11 -112v-1016q0 -77 11 -112t42 -48t100 -16v-41q-109 6 -309 6q-219 0 -323 -6z" />
-<glyph unicode="J" horiz-adv-x="745" d="M-324 -199q0 63 45 101.5t119 38.5q72 0 114 -35.5t42 -100.5q0 -46 -27 -82t-78 -53q20 -14 74 -14q75 0 129 40t78 107q18 53 26.5 112t10.5 140t2 242v936q0 77 -11.5 112t-43 48t-99.5 16v41q102 -6 312 -6q207 0 321 6v-41q-69 -3 -100 -16t-42 -48t-11 -112v-750 v-122q0 -137 -6.5 -238t-28.5 -174q-28 -96 -98.5 -171.5t-178 -119t-241.5 -43.5q-130 0 -207 39q-101 50 -101 147z" />
-<glyph unicode="K" horiz-adv-x="1462" d="M70 0v41q68 3 99 16t42.5 48t11.5 112v1016q0 77 -11.5 112t-42.5 48t-99 16v41q103 -6 323 -6q199 0 309 6v-41q-69 -3 -100 -16t-42 -48t-11 -112v-461q81 5 149 50t154 143l121 145q93 110 93 189q0 51 -39.5 80t-111.5 32v39q151 -6 304 -6q118 0 192 6v-39 q-162 -37 -297 -197l-256 -304l477 -744q30 -48 62.5 -76t85.5 -49v-41q-146 6 -320 6q-135 0 -260 -6v41q58 3 83 12t25 28q0 17 -22 52l-297 481q-28 45 -48.5 68.5t-41.5 33t-53 12.5v-511q0 -77 11 -112t42 -48t100 -16v-41q-110 6 -309 6q-220 0 -323 -6z" />
-<glyph unicode="L" horiz-adv-x="1251" d="M70 0v41q68 3 99 16t42.5 48t11.5 112v1016q0 77 -11.5 112t-42.5 48t-99 16v41q103 -6 323 -6q208 0 322 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-1040q0 -66 9.5 -95.5t36 -40t83.5 -10.5h100q93 0 170.5 57t130 160.5t72.5 239.5h47q-6 -70 -6 -180 q0 -197 14 -324q-139 6 -469 6q-446 0 -667 -6z" />
-<glyph unicode="M" horiz-adv-x="1898" d="M72 0v41q67 9 98.5 34.5t43 78t11.5 157.5v922q0 77 -11.5 112t-42.5 48t-99 16v41q65 -6 178 -6q188 0 323 6l413 -995l378 989h145q208 0 322 6v-41q-69 -3 -100 -16t-42.5 -48t-11.5 -112v-1016q0 -77 11.5 -112t43 -48t99.5 -16v-41q-114 6 -322 6q-219 0 -323 -6v41 q74 3 107.5 16t46 48t12.5 112v1071l-494 -1290h-33l-553 1319v-981q0 -121 13 -177.5t53.5 -82.5t132.5 -35v-41q-79 6 -221 6q-113 0 -178 -6z" />
-<glyph unicode="N" horiz-adv-x="1479" d="M72 0v41q67 9 98.5 34.5t43 78t11.5 157.5v922q0 77 -11.5 112t-42.5 48t-99 16v41q65 -6 178 -6q103 0 176 6l793 -977v641q0 121 -13 177.5t-53.5 82.5t-132.5 35v41q79 -6 221 -6q114 0 178 6v-41q-67 -9 -98.5 -34.5t-43 -78t-11.5 -157.5v-1143q-15 1 -50 1 q-36 0 -55 -1l-889 1126v-786q0 -121 13 -177.5t53.5 -82.5t132.5 -35v-41q-79 6 -221 6q-113 0 -178 -6z" />
-<glyph unicode="O" d="M88 713q0 226 92 400t257 270t376 96q216 0 379.5 -88t253.5 -255.5t90 -398.5q0 -226 -92.5 -400t-257.5 -270t-375 -96q-217 0 -380.5 88t-253 255.5t-89.5 398.5zM428 721q0 -213 52 -375t141 -250t198 -88q113 0 198.5 91.5t132 255t46.5 374.5q0 212 -52 374.5 t-141.5 250.5t-197.5 88q-113 0 -198.5 -91.5t-132 -255t-46.5 -374.5z" />
-<glyph unicode="P" horiz-adv-x="1313" d="M70 0v41q68 3 99 16t42.5 48t11.5 112v1016q0 77 -11.5 112t-42.5 48t-99 16v41q103 -6 311 -6q82 0 182 2t139 2q186 0 313.5 -50.5t191 -141.5t63.5 -212q0 -112 -57 -216t-194 -173t-362 -69h-108v-357q0 -82 17 -119.5t61.5 -50.5t140.5 -14v-45q-252 6 -375 6 q-59 0 -323 -6zM549 627h88q167 0 230 106.5t63 288.5q0 199 -59 293t-195 94q-55 0 -81.5 -14.5t-36 -51t-9.5 -110.5v-606z" />
-<glyph unicode="Q" d="M88 713q0 226 92 400t257 270t376 96q216 0 379.5 -88t253.5 -255.5t90 -398.5q0 -218 -86.5 -388t-241.5 -268.5t-354 -108.5q-49 -6 -87.5 -18.5t-104.5 -39.5t-115 -41q71 -6 188.5 -16t200.5 -15t151 -5q94 0 154 9q127 14 200.5 55t123.5 124l37 -11 q-35 -232 -142 -319q-44 -37 -113 -58.5t-151 -21.5q-111 0 -216 33.5t-247.5 96t-208.5 87.5q-31 11 -49 14q-88 -43 -172 -43q-43 0 -69.5 13.5t-26.5 40.5q0 26 28.5 40.5t83.5 14.5q78 0 156 -29q40 10 73.5 23t85 36t82.5 34q-191 18 -332.5 111t-218.5 252.5 t-77 373.5zM428 721q0 -213 52 -375t141 -250t198 -88q113 0 198.5 91.5t132 255t46.5 374.5q0 212 -52 374.5t-141.5 250.5t-197.5 88q-113 0 -198.5 -91.5t-132 -255t-46.5 -374.5z" />
-<glyph unicode="R" horiz-adv-x="1417" d="M70 0v41q68 3 99 16t42.5 48t11.5 112v1016q0 77 -11.5 112t-42.5 48t-99 16v41q104 -6 311 -6q82 0 182 2t139 2q282 0 425 -92.5t143 -263.5q0 -91 -43 -173t-146 -142.5t-272 -80.5h2q124 -11 203.5 -42t124.5 -86.5t63 -141.5l47 -211q17 -83 38.5 -115t60.5 -32 q24 1 42 12t40 35l28 -25q-56 -63 -119.5 -91t-152.5 -28q-118 0 -187 50t-90 172l-37 204q-18 99 -37.5 159.5t-56 96t-96.5 35.5h-133v-471q0 -77 11 -112t42 -48t100 -16v-41q-109 6 -309 6q-219 0 -323 -6zM549 729h88q115 0 179.5 44t89 118t24.5 178q0 168 -59.5 254 t-194.5 86q-55 0 -81.5 -14.5t-36 -51t-9.5 -110.5v-504z" />
-<glyph unicode="S" horiz-adv-x="1196" d="M113 -14q8 128 8 553h47q13 -229 101.5 -371.5t271.5 -142.5q72 0 129.5 25.5t91 77.5t33.5 126q0 80 -37.5 143.5t-101 116t-169.5 121.5q-124 80 -196.5 139t-120 140t-47.5 188q0 124 63 208.5t167 125.5t229 41q74 0 128.5 -11t91 -27.5t79.5 -41.5q49 -29 69 -29 q19 0 29 21.5t16 68.5h47q-10 -137 -10 -467h-47q-7 111 -49.5 211t-119 162.5t-179.5 62.5q-65 0 -116.5 -25t-80 -72.5t-28.5 -110.5q0 -102 61 -167t159 -131.5t132 -89.5q120 -80 190 -139t114 -138t44 -183q0 -131 -68 -221t-183 -134.5t-257 -44.5q-115 0 -190.5 20.5 t-139.5 55.5q-44 29 -69 29q-19 0 -29 -21.5t-16 -68.5h-47z" />
-<glyph unicode="T" horiz-adv-x="1368" d="M51 1450q187 -6 633 -6t631 6q-15 -208 -15 -348q0 -88 7 -156h-47q-34 171 -83 270.5t-117.5 143t-166.5 43.5h-47v-1170q0 -85 17.5 -124t62 -53t139.5 -15v-41q-258 6 -389 6q-129 0 -375 -6v41q96 1 140.5 15t61.5 53t17 124v1170h-45q-99 0 -167.5 -43 t-117.5 -142.5t-84 -271.5h-47q7 68 7 156q0 140 -15 348z" />
-<glyph unicode="U" horiz-adv-x="1411" d="M39 1409v41q105 -6 319 -6q212 0 326 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-772q0 -144 26 -234.5t87.5 -137t169.5 -46.5q204 0 288.5 138t84.5 392v541q0 119 -14.5 176.5t-55.5 83.5t-129 35v41q77 -6 221 -6q114 0 178 6v-41q-67 -9 -98.5 -34.5t-43 -78 t-11.5 -157.5v-543q0 -293 -84 -434q-56 -91 -160 -141t-256 -50q-236 0 -369 103q-65 52 -99.5 121t-47 161.5t-12.5 233.5v643q0 77 -11.5 112t-43 48t-99.5 16z" />
-<glyph unicode="V" horiz-adv-x="1368" d="M-25 1409v41q123 -6 312 -6q209 0 311 6v-41q-77 -3 -110.5 -18.5t-33.5 -57.5q0 -32 25 -96l361 -917l252 679q57 161 57 250q0 82 -43.5 119.5t-128.5 40.5v41q138 -6 256 -6q94 0 156 6v-41q-51 -20 -101 -78.5t-88 -165.5l-432 -1169q-23 2 -72 2q-47 0 -69 -2 l-523 1282q-26 68 -60.5 98.5t-68.5 32.5z" />
-<glyph unicode="W" horiz-adv-x="1982" d="M-25 1409v41q123 -6 306 -6q172 0 251 6v-41q-71 -9 -71 -80q0 -38 18 -92l299 -864l208 608l-105 317q-20 60 -48 84t-65 27v41q114 -6 293 -6q199 0 295 6v-41q-75 -2 -107 -17t-32 -59q0 -33 20 -96l280 -857l195 619q46 150 46 239t-43.5 128.5t-131.5 42.5v41 q138 -6 254 -6q97 0 158 6v-41q-120 -46 -180 -244l-361 -1169q-22 2 -72 2q-49 0 -71 -2l-302 913l-302 -913q-23 2 -72 2t-72 -2l-459 1282q-23 67 -58.5 98t-70.5 33z" />
-<glyph unicode="X" horiz-adv-x="1415" d="M6 1409v43q228 -8 293 -8q179 0 313 8v-43q-68 0 -99 -9t-31 -30q0 -16 16 -39l305 -445l151 204q97 125 97 206q0 51 -38.5 79.5t-111.5 33.5v41q117 -6 258 -6q124 0 189 6v-41q-65 -19 -131.5 -76.5t-126.5 -138.5l-261 -347l480 -702q28 -41 46.5 -61.5t37.5 -29.5 t47 -11v-43q-216 8 -281 8q-74 0 -330 -8v43q72 0 104 7.5t32 26.5q0 14 -15 36l-345 506l-163 -224q-94 -126 -94 -215q0 -63 46 -98.5t128 -40.5v-41q-117 6 -323 6q-124 0 -189 -6v41q143 46 297 250l272 367l-442 649q-29 42 -46.5 62t-36.5 29t-48 11z" />
-<glyph unicode="Y" horiz-adv-x="1276" d="M-14 1409v43q89 -10 241 -10q192 0 385 10v-43q-72 0 -113.5 -12.5t-41.5 -47.5q0 -21 14 -46l312 -600l159 319q81 162 81 253q0 69 -44 101t-127 35v41q138 -6 256 -6q94 0 156 6v-41q-47 -20 -94.5 -75.5t-102.5 -161.5l-242 -479v-478q0 -77 11.5 -112t42.5 -48 t100 -16v-41q-111 6 -315 6q-219 0 -318 -6v41q68 3 99.5 16t43 48t11.5 112v346l-396 731q-63 115 -118 115z" />
-<glyph unicode="Z" horiz-adv-x="1233" d="M80 0v41l715 1362h-234q-169 0 -275.5 -96t-133.5 -324h-48q7 55 7 156q0 124 -15 311q135 -6 461 -6q404 0 584 6v-41l-713 -1362h225q102 0 193 43.5t156.5 143t82.5 258.5h48q-7 -67 -7 -181q0 -188 15 -311q-152 6 -510 6q-381 0 -551 -6z" />
-<glyph unicode="[" horiz-adv-x="659" d="M172 -371v1952h412v-39h-117v-1874h117v-39h-412z" />
-<glyph unicode="\" horiz-adv-x="754" d="M64 1479l557 -1508h67l-557 1508h-67z" />
-<glyph unicode="]" horiz-adv-x="659" d="M76 -332v-39h412v1952h-412v-39h117v-1874h-117z" />
-<glyph unicode="^" horiz-adv-x="1083" d="M115 664q127 69 235.5 181.5t171.5 235.5h37q63 -121 172 -234t236 -183l-17 -29q-130 31 -253 77.5t-197 94.5q-61 -48 -161.5 -94.5t-207.5 -77.5z" />
-<glyph unicode="_" horiz-adv-x="1245" d="M121 -176h1003v-177h-1003v177z" />
-<glyph unicode="`" horiz-adv-x="457" d="M15 1594q0 47 38 79q30 26 70 26q28 0 54 -13t44 -35q24 -28 40 -60.5t56 -135.5t99 -210l-23 -18q-61 56 -110 94.5t-126.5 94t-109.5 95.5t-32 83z" />
-<glyph unicode="a" horiz-adv-x="1061" d="M59 219q0 107 70 177t217 124q16 6 104 39.5t127 68.5t39 77v159q0 85 -40.5 134t-126.5 49q-40 0 -80 -12.5t-66 -37.5q57 -19 89 -59.5t32 -101.5q0 -42 -20.5 -75.5t-58.5 -53t-87 -19.5q-66 0 -105.5 45t-39.5 113q0 106 114 172q125 69 312 69q210 0 299 -92 q43 -43 58 -107t15 -179v-557q0 -50 9.5 -70.5t33.5 -20.5q33 0 76 35l21 -35q-47 -39 -102 -57t-132 -18q-104 0 -150 46t-46 120q-50 -83 -131 -124.5t-173 -41.5q-117 0 -187.5 61.5t-70.5 171.5zM350 276q0 -80 35 -119.5t92 -39.5q81 0 139 84v420q-13 -22 -42.5 -45.5 t-84.5 -57.5q-65 -45 -102 -101.5t-37 -140.5z" />
-<glyph unicode="b" horiz-adv-x="1200" d="M12 1536v43q64 -6 127 -6q180 0 299 29v-710q42 95 124 145t190 50t191.5 -59t131 -178t47.5 -293q0 -204 -62.5 -335t-168 -191t-238.5 -60q-142 0 -229 72q-11 1 -32 1q-67 0 -130.5 -21.5t-101.5 -55.5l-31 19q14 52 14 114v1256q0 95 -29.5 137.5t-101.5 42.5z M438 69q67 -55 152 -55q223 0 223 514q0 252 -46.5 361.5t-135.5 109.5q-67 0 -121.5 -48t-71.5 -130v-752z" />
-<glyph unicode="c" horiz-adv-x="1016" d="M74 524q0 181 65.5 307.5t180 191t262.5 64.5q76 0 143 -16.5t113 -44.5q53 -33 82.5 -82.5t29.5 -109.5q0 -73 -45.5 -118.5t-116.5 -45.5q-72 0 -114.5 41t-42.5 110q0 62 39 107t96 61q-16 22 -49.5 35.5t-73.5 13.5q-83 0 -141.5 -62.5t-88.5 -172t-30 -250.5 q0 -150 38 -242t99 -131t135 -39q70 0 141 36.5t128 129.5l34 -12q-26 -84 -78 -157.5t-135 -120t-194 -46.5q-137 0 -244.5 60t-170 184t-62.5 309z" />
-<glyph unicode="d" horiz-adv-x="1225" d="M78 535v6q0 176 58 298q58 124 161.5 186t237.5 62q151 0 227 -77v348q0 95 -29.5 137.5t-101.5 42.5v43q65 -6 127 -6q180 0 299 29v-1379q0 -95 28.5 -137.5t102.5 -42.5v-43q-65 6 -127 6q-181 0 -299 -28v176q-69 -185 -266 -185q-125 0 -219.5 60.5t-146.5 186.5 q-52 124 -52 310v7zM387 530v-14q0 -457 193 -457q44 0 83 22t65.5 63.5t33.5 96.5v717q-52 70 -150 70q-108 0 -167 -125q-58 -123 -58 -365v-8z" />
-<glyph unicode="e" horiz-adv-x="1032" d="M76 518q0 186 64 313.5t177 191.5t261 64q385 0 385 -454h-575q-3 -30 -3 -96q0 -136 38 -225.5t98.5 -131t129.5 -41.5q169 0 271 164l36 -12q-26 -84 -80.5 -156.5t-138 -118t-190.5 -45.5q-141 0 -247.5 60t-166 182.5t-59.5 304.5zM384 672h321v25q-1 144 -33 241 q-36 106 -107 106q-73 0 -121.5 -90.5t-59.5 -281.5z" />
-<glyph unicode="f" horiz-adv-x="721" d="M41 1016v41h139q0 121 12.5 201.5t40.5 137t76 103.5q46 46 121.5 74.5t159.5 28.5q128 0 219 -68q31 -25 50.5 -65t19.5 -89q0 -37 -18.5 -69.5t-52 -52t-75.5 -19.5q-70 0 -112.5 38.5t-42.5 106.5q0 54 31 94.5t89 57.5q-6 13 -25.5 21t-47.5 8q-77 0 -111 -54 q-22 -31 -30.5 -89.5t-8.5 -178.5v-186h219v-41h-219v-805q0 -95 48 -131.5t145 -36.5v-43q-288 8 -353 8q-62 0 -266 -8v43q49 0 77.5 13t41 45t12.5 89v826h-139z" />
-<glyph unicode="g" horiz-adv-x="1112" d="M41 -207q0 55 41.5 82t135.5 57t133 58h-48q-85 0 -157 41t-72 149q0 59 24.5 106.5t81 91t152.5 89.5q-105 36 -164 109.5t-59 185.5q0 162 120.5 243.5t319.5 81.5q82 0 152 -14q-1 11 -1 22q0 41 9 81q10 85 58 136.5t136 51.5q65 0 107.5 -34.5t42.5 -90.5 q0 -52 -40.5 -85.5t-101.5 -33.5q-62 0 -97 29t-54 86q-22 -37 -31 -105q-1 -10 -1 -30q0 -22 1 -33q122 -31 191 -107.5t69 -197.5q0 -109 -56.5 -182t-155.5 -108.5t-228 -35.5q-97 0 -177 20q-59 -34 -87.5 -62t-28.5 -64q0 -68 82 -68h473q123 0 199.5 -51.5 t76.5 -167.5q0 -105 -66 -203.5t-200 -161.5t-327 -63q-150 0 -251.5 23.5t-151.5 63.5t-50 91zM319 -174q0 -85 64.5 -130.5t165.5 -45.5q83 0 154.5 30.5t114 88.5t42.5 135q0 44 -26 65t-93 21h-351q-34 -32 -52.5 -79t-18.5 -85zM412 762q0 -157 35 -223t102 -66 q68 0 102.5 66t34.5 223t-34.5 223t-102.5 66q-67 0 -102 -66t-35 -223z" />
-<glyph unicode="h" horiz-adv-x="1245" d="M39 0v43q49 0 77 13t41 45t13 89v1166q0 95 -29.5 137.5t-101.5 42.5v43q65 -6 127 -6q180 0 299 29v-705q92 190 334 190q159 0 225 -79q34 -40 50 -102t16 -165v-551q0 -57 12.5 -89t40.5 -45t78 -13v-43q-216 8 -271 8q-70 0 -266 -8v43q41 0 65 13t35 45t11 89v637 q0 84 -27.5 127t-99.5 43q-56 0 -102.5 -30.5t-73.5 -84t-27 -120.5v-572q0 -57 10.5 -89t34 -45t65.5 -13v-43q-196 8 -253 8q-71 0 -283 -8z" />
-<glyph unicode="i" horiz-adv-x="645" d="M49 0v43q49 0 77.5 13t41 45t12.5 89v646q0 95 -29 137.5t-102 42.5v43q65 -6 127 -6q181 0 299 28v-891q0 -57 13 -89t41 -45t77 -13v-43q-204 8 -272 8q-65 0 -285 -8zM128 1430q0 73 50 115t137 42q85 0 135.5 -42t50.5 -115q0 -74 -50.5 -116t-135.5 -42 q-87 0 -137 42t-50 116z" />
-<glyph unicode="j" horiz-adv-x="608" d="M-258 -219q0 62 44 99.5t118 37.5q71 0 112 -33.5t41 -97.5q0 -43 -25.5 -78t-76.5 -53q32 -4 47 -4q87 0 129 57q24 37 32.5 110.5t8.5 225.5v791q0 94 -29.5 137t-101.5 43v43q65 -6 127 -6q179 0 299 28v-888q0 -173 -29 -283t-102 -184q-111 -111 -332 -111 q-109 0 -182 37q-38 19 -59 53.5t-21 75.5zM121 1425q0 74 50 116t136 42t136.5 -42t50.5 -116q0 -73 -51 -115t-136 -42q-86 0 -136 42t-50 115z" />
-<glyph unicode="k" horiz-adv-x="1198" d="M39 0v43q49 0 77 13t41 45t13 89v1168q0 95 -29.5 137.5t-101.5 42.5v43q65 -6 127 -6q180 0 299 29v-1021q41 4 70 15.5t53 36.5l155 151q69 69 69 125q0 47 -44.5 75.5t-114.5 31.5v41q114 -6 240 -6q168 0 240 6v-41q-122 -27 -256 -158l-131 -136l344 -574 q31 -49 52 -72.5t54 -34.5v-43q-164 8 -215 8q-68 0 -264 -8v43q61 0 61 39q0 13 -10 31l-203 366q-20 34 -42.5 47.5t-57.5 15.5v-352q0 -57 12 -89t38.5 -45t72.5 -13v-43q-204 8 -266 8q-71 0 -283 -8z" />
-<glyph unicode="l" horiz-adv-x="637" d="M41 0v43q49 0 77 13t41 45t13 89v1168q0 95 -29.5 137.5t-101.5 42.5v43q65 -6 127 -6q180 0 299 29v-1414q0 -57 12.5 -89t41 -45t77.5 -13v-43q-212 8 -274 8q-71 0 -283 -8z" />
-<glyph unicode="m" horiz-adv-x="1853" d="M49 0v43q49 0 77.5 13t41 45t12.5 89v646q0 95 -29 137.5t-102 42.5v43q65 -6 127 -6q181 0 299 28v-184q92 190 318 190q156 0 225 -79q38 -44 52 -124q52 111 138.5 157t200.5 46q156 0 225 -79q33 -39 47.5 -101.5t14.5 -165.5v-551q0 -57 13 -89t41 -45t77 -13v-43 q-204 8 -271 8q-57 0 -253 -8v43q37 0 58 13t30.5 44.5t9.5 89.5v637q0 85 -25.5 127.5t-97.5 42.5q-50 0 -93 -29t-71.5 -79t-34.5 -112v-36v-551q0 -57 11.5 -89t37 -45t70.5 -13v-43q-196 8 -258 8q-58 0 -254 -8v43q37 0 58 13t30.5 45t9.5 89v637q0 86 -22 128t-88 42 q-54 0 -99.5 -31t-72.5 -85.5t-27 -120.5v-570q0 -57 9.5 -89t30.5 -45t58 -13v-43q-180 8 -241 8q-63 0 -283 -8z" />
-<glyph unicode="n" horiz-adv-x="1257" d="M49 0v43q49 0 77.5 13t41 45t12.5 89v646q0 95 -29 137.5t-102 42.5v43q65 -6 127 -6q181 0 299 28v-184q93 190 336 190q84 0 137.5 -20t87.5 -59t49 -101t15 -166v-551q0 -57 13 -89t41 -45t77 -13v-43q-204 8 -270 8q-63 0 -267 -8v43q42 0 66 13t34.5 45t10.5 89v637 q0 84 -27.5 127t-99.5 43q-56 0 -102.5 -31t-73.5 -85.5t-27 -120.5v-570q0 -57 11 -89t35 -45t65 -13v-43q-188 8 -254 8q-63 0 -283 -8z" />
-<glyph unicode="o" horiz-adv-x="1157" d="M76 528q0 290 134 424.5t368 134.5t367.5 -134t133.5 -425q0 -290 -133.5 -423.5t-367.5 -133.5t-368 133.5t-134 423.5zM385 528q0 -262 52.5 -389t140.5 -127q89 0 140.5 126.5t51.5 389.5q0 264 -51.5 391.5t-140.5 127.5q-88 0 -140.5 -128t-52.5 -391z" />
-<glyph unicode="p" horiz-adv-x="1229" d="M41 1016v43q65 -6 127 -6q179 0 299 28v-190q43 96 125.5 146t191.5 50q106 0 189 -57.5t130.5 -172t47.5 -279.5q0 -196 -58.5 -332.5t-165 -205.5t-251.5 -69q-132 0 -209 65v-204q0 -90 45.5 -125t138.5 -35v-43q-30 1 -136 5t-208 4q-78 0 -158.5 -4t-99.5 -5v43 q46 0 72 12.5t38.5 43t12.5 84.5v1024q0 94 -29.5 137t-101.5 43zM467 81q46 -54 129 -54q131 0 188.5 130.5t57.5 379.5t-46 355.5t-132 106.5q-70 0 -125 -47t-72 -130v-741z" />
-<glyph unicode="q" horiz-adv-x="1198" d="M76 535q0 180 56.5 304t157.5 186t234 62q85 0 146 -18.5t108 -63.5q10 -1 20 -1l126 22q73 25 114 66l31 -17q-14 -52 -14 -117v-1146q0 -54 12.5 -84.5t38.5 -43t72 -12.5v-43q-21 1 -101 5t-157 4q-102 0 -208 -4t-137 -5v43q94 0 139.5 34.5t45.5 125.5v327 q-36 -92 -103 -140t-161 -48q-122 0 -216.5 61t-149 187.5t-54.5 315.5zM385 530q0 -251 51 -361t146 -110q61 0 111.5 46.5t66.5 125.5v750q-59 63 -158 63q-217 0 -217 -514z" />
-<glyph unicode="r" horiz-adv-x="956" d="M49 0v43q49 0 77.5 13t41 45t12.5 89v646q0 95 -29 137.5t-102 42.5v43q65 -6 127 -6q181 0 299 28v-190q39 87 112.5 141.5t166.5 54.5q62 0 104 -27t62 -69.5t20 -91.5q0 -76 -44 -124t-116 -48q-70 0 -110.5 35.5t-40.5 95.5q0 98 90 160q-13 3 -25 3q-14 0 -32 -5 q-52 -8 -95 -49.5t-67.5 -99.5t-24.5 -113v-543q0 -95 46 -131.5t147 -36.5v-43q-256 8 -326 8q-65 0 -293 -8z" />
-<glyph unicode="s" horiz-adv-x="946" d="M92 -14q8 117 8 409h45q20 -177 86.5 -277t188.5 -100q60 0 102.5 36.5t42.5 109.5q0 57 -25.5 102t-64.5 80t-117 96q-95 77 -142.5 121t-81.5 104.5t-34 137.5q0 88 48 152t129 97t176 33q78 0 143 -19t102 -44q20 -14 36 -14q38 0 48 75h45q-8 -103 -8 -360h-45 q-18 134 -80.5 225.5t-181.5 91.5q-61 0 -100 -35t-39 -96q0 -69 46 -119t111 -96t95 -69q84 -63 133.5 -110t80.5 -106.5t31 -136.5q0 -90 -52.5 -159t-141.5 -106.5t-195 -37.5q-109 0 -190 43q-61 31 -96 43q-6 2 -10 2q-33 0 -48 -73h-45z" />
-<glyph unicode="t" horiz-adv-x="721" d="M-2 1016v41h172v272q169 0 295 66v-338h242v-41h-242v-826q0 -61 22 -86.5t68 -25.5q87 0 139 123l35 -19q-77 -211 -280 -211q-135 0 -205 70q-43 42 -58.5 106.5t-15.5 178.5v690h-172z" />
-<glyph unicode="u" horiz-adv-x="1241" d="M27 1016v43q65 -6 127 -6q179 0 299 28v-848q0 -85 25.5 -128.5t96.5 -43.5q54 0 99.5 31.5t72.5 86t27 120.5v537q0 94 -29.5 137t-101.5 43v43q65 -6 127 -6q179 0 299 28v-858q0 -95 29.5 -137.5t101.5 -42.5v-43q-64 6 -127 6q-180 0 -299 -29v185 q-93 -191 -330 -191q-153 0 -223 80q-34 38 -48.5 101t-14.5 165v519q0 94 -29.5 137t-101.5 43z" />
-<glyph unicode="v" horiz-adv-x="1040" d="M-18 1016v43q143 -10 290 -10q130 0 267 10v-43q-57 0 -85 -5t-40 -29q-5 -10 -4 -24q0 -21 10 -53l234 -622l147 407q33 95 33 165q0 152 -150 163v41q96 -6 197 -6q106 0 157 6v-41q-42 -12 -76.5 -51.5t-64.5 -124.5l-299 -846q-33 3 -67 3q-33 0 -66 -3l-365 905 q-46 115 -118 115z" />
-<glyph unicode="w" horiz-adv-x="1612" d="M-14 1016v43q132 -12 290 -12q103 0 267 12v-43q-45 0 -71 -3.5t-41.5 -16.5t-15.5 -40q0 -20 11 -55l186 -579l222 739q26 -1 75 -1q50 0 74 1l265 -782l130 411q28 90 28 156q0 157 -161 172v41q96 -6 211 -6q103 0 156 6v-41q-43 -12 -78 -51.5t-61 -124.5l-273 -846 q-33 3 -67 3q-33 0 -66 -3l-279 760l-227 -760q-31 3 -66 3q-32 0 -67 -3l-324 905q-40 115 -118 115z" />
-<glyph unicode="x" horiz-adv-x="1098" d="M18 1016v43q180 -8 244 -8q54 0 242 8v-43q-31 0 -50.5 -11t-19.5 -30q0 -13 10 -29l193 -287l78 103q71 92 71 157q0 43 -31.5 69t-92.5 30v41q118 -6 231 -6q87 0 145 6v-41q-86 -29 -188 -158l-189 -237l322 -478q33 -47 57.5 -72t57.5 -30v-43q-164 8 -219 8 q-59 0 -267 -8v43q32 0 50.5 11t18.5 30q0 13 -9 29l-214 317l-71 -90q-68 -88 -68 -163q0 -58 40 -94.5t108 -41.5v-41q-120 6 -295 6q-84 0 -143 -6v41q45 16 88.5 53t97.5 105l219 267l-301 447q-38 55 -61 77t-54 26z" />
-<glyph unicode="y" horiz-adv-x="1063" d="M-29 1016v43q135 -12 281 -12q121 0 285 12v-43q-44 0 -69 -3t-42.5 -15t-17.5 -39q0 -24 14 -58l251 -605l140 394q33 98 33 164q0 78 -40 118.5t-112 45.5v41q96 -6 199 -6t158 6v-41q-43 -11 -77.5 -51t-64.5 -125l-366 -1030q-41 -107 -90 -146q-60 -51 -179 -51 q-53 0 -104.5 17.5t-85 54.5t-33.5 92q0 63 45 101t119 38q69 0 111.5 -34t42.5 -95q0 -42 -27.5 -78.5t-75.5 -54.5q15 -2 47 -2q128 0 187 162l33 98l-435 987q-32 71 -63.5 93t-63.5 22z" />
-<glyph unicode="z" horiz-adv-x="971" d="M63 -10l512 1038h-114q-292 0 -320 -366h-43q0 290 -8 405q167 -8 393 -8q201 0 426 10l-512 -1038h107q132 0 222 86.5t105 279.5h43q0 -276 9 -405q-167 8 -394 8q-199 0 -426 -10z" />
-<glyph unicode="{" horiz-adv-x="682" d="M35 594v37h10q64 4 97 48t46 147.5t13 301.5q0 182 43 284.5t139 146t264 43.5v-39q-66 -2 -96.5 -31t-42.5 -118t-12 -286q0 -174 -54.5 -280t-142 -158t-207.5 -78q120 -26 207.5 -78t142 -158.5t54.5 -279.5q0 -205 12 -295t42 -118t97 -29v-39q-169 0 -264.5 42.5 t-138.5 146t-43 292.5q0 197 -13 300.5t-46 148t-97 49.5h-10z" />
-<glyph unicode="|" horiz-adv-x="518" d="M170 -399v2156h180v-2156h-180z" />
-<glyph unicode="}" horiz-adv-x="682" d="M36 -346v-39q169 0 264.5 42.5t138.5 146t43 292.5q0 197 13 300.5t46 148t97 49.5h10v37h-10q-64 4 -97 48t-46 147.5t-13 301.5q0 182 -43 284.5t-139 146t-264 43.5v-39q66 -2 96.5 -31t42.5 -118t12 -286q0 -174 54.5 -280t142 -158t207.5 -78q-120 -26 -207.5 -78 t-142 -158.5t-54.5 -279.5q0 -205 -12 -295t-42 -118t-97 -29z" />
-<glyph unicode="~" horiz-adv-x="1368" d="M123 479q9 95 53.5 167.5t112.5 111.5t147 39q75 0 139.5 -23.5t196.5 -91.5t234 -68q153 0 208 144l37 -8q-9 -95 -53.5 -167.5t-113.5 -111.5t-148 -39q-74 0 -138 23.5t-196 91t-235 67.5q-150 0 -209 -143z" />
-<glyph unicode="&#xa1;" horiz-adv-x="567" d="M110 930q0 73 47 115.5t127 42.5q81 0 128 -42.5t47 -115.5t-47 -115.5t-128 -42.5q-80 0 -127 42.5t-47 115.5zM115 -193q0 78 45 260.5t72 311.5t32 272h37q4 -125 27.5 -245t73 -319t49.5 -280q0 -93 -46.5 -142.5t-121.5 -49.5t-121.5 50.5t-46.5 141.5z" />
-<glyph unicode="&#xa2;" horiz-adv-x="1022" d="M65 524q0 169 57.5 291.5t159.5 190t236 79.5v365h45v-363h10q76 0 143 -16.5t113 -44.5q53 -33 82.5 -82.5t29.5 -109.5q0 -73 -45.5 -118.5t-116.5 -45.5q-72 0 -114.5 41t-42.5 110q0 62 39 107t96 61q-16 22 -49.5 35.5t-73.5 13.5q-38 0 -71 -13v-871q39 -13 83 -13 q70 0 141 36.5t128 129.5l34 -12q-25 -82 -74.5 -153t-128 -118.5t-183.5 -52.5v-342h-45v342q-131 6 -233 67.5t-161 184t-59 301.5zM374 553q0 -288 144 -377v823q-70 -54 -107 -171.5t-37 -274.5z" />
-<glyph unicode="&#xa3;" horiz-adv-x="1352" d="M68 4q0 21 22 45.5t63 46.5t93 35q19 56 24.5 120.5t5.5 188.5v88v80h-157v41h157v164h-157v41h157v45q0 608 517 608q147 0 223 -49q102 -62 102 -158q0 -63 -41.5 -105t-105.5 -42q-65 0 -106.5 37.5t-41.5 97.5q0 54 28 93.5t79 58.5q-16 14 -49.5 23.5t-71.5 9.5 q-98 0 -148 -57.5t-66.5 -166.5t-16.5 -297v-98h247v-41h-247v-123l-1 -41h248v-41h-252q-15 -104 -61.5 -186t-106 -160t-83.5 -110q89 73 163 102t144 29q55 0 100 -9t136 -34t165 -25q64 0 100.5 33.5t36.5 83.5q0 61 -39.5 99t-109.5 52l8 33q69 -12 128.5 -46 t96.5 -90.5t37 -131.5q0 -82 -34.5 -144.5t-104 -97.5t-170.5 -35q-78 0 -147 21t-167.5 63t-148.5 56q-58 16 -100 16q-58 0 -113 -21q-42 -66 -92 -100.5t-98 -34.5q-45 0 -45 33z" />
-<glyph unicode="&#xa4;" horiz-adv-x="1260" d="M123 281l119 118q-58 106 -58 215q0 114 60 213l-121 121l174 174l121 -121q94 60 213 60q112 0 213 -60l123 121l174 -174l-123 -121q57 -97 57 -213q0 -117 -57 -213l121 -120l-174 -175l-121 121q-99 -57 -213 -57q-119 0 -213 57l-119 -121zM395 614q0 -68 32 -126.5 t87 -93t119 -34.5q63 0 117 34.5t86 93t32 126.5q0 69 -32 128t-86 93.5t-117 34.5q-64 0 -119 -34.5t-87 -93.5t-32 -128z" />
-<glyph unicode="&#xa5;" horiz-adv-x="1389" d="M51 1409v43q89 -10 241 -10q192 0 385 10v-43q-72 0 -113.5 -12.5t-41.5 -47.5q0 -21 14 -46l312 -600l159 319q81 162 81 253q0 69 -44 101t-127 35v41q138 -6 256 -6q95 0 156 6v-41q-47 -20 -94.5 -75.5t-102.5 -161.5l-242 -479v-74h255v-41h-255v-164h255v-41h-255 v-158q0 -77 11.5 -112t42.5 -48t100 -16v-41q-111 6 -315 6q-219 0 -318 -6v41q68 3 99.5 16t43 48t11.5 112v158h-258v41h258v147l-9 17h-249v41h227l-365 673q-63 115 -118 115z" />
-<glyph unicode="&#xa6;" horiz-adv-x="524" d="M172 -399v1067h180v-1067h-180zM172 786v971h180v-971h-180z" />
-<glyph unicode="&#xa7;" horiz-adv-x="1190" d="M74 629q0 102 59 186t194 155q-77 69 -114 137.5t-37 152.5q0 102 59 179.5t164.5 120t241.5 42.5q143 0 242 -46q135 -64 135 -190q0 -38 -18.5 -71t-53 -52.5t-80.5 -19.5q-69 0 -112 39t-43 102q0 52 28 93.5t76 58.5q-13 21 -61 34t-99 13q-109 0 -161 -54.5 t-52 -132.5q0 -99 58.5 -160.5t147 -120t122.5 -81.5q131 -89 201.5 -148t109.5 -126t39 -152q0 -102 -59.5 -185t-196.5 -155q79 -69 116.5 -138t37.5 -153q0 -102 -59 -179.5t-165 -120t-243 -42.5q-136 0 -242 45q-135 66 -135 190q0 38 19 71t53.5 53t79.5 20 q69 0 112 -39t43 -102q0 -52 -28 -93.5t-76 -58.5q13 -21 61 -34t99 -13q74 0 122.5 26t70.5 68.5t22 91.5q0 97 -58 159t-146 121t-124 83q-130 87 -201 146.5t-110 126.5t-39 153zM295 776q0 -60 33.5 -111t101.5 -104.5t197 -138.5q133 -88 202 -144q36 33 53 71.5 t17 90.5q0 60 -33.5 111t-101 104.5t-197.5 139.5q-134 88 -203 144q-69 -65 -69 -163z" />
-<glyph unicode="&#xa8;" horiz-adv-x="799" d="M12 1403q0 40 21 75.5t56.5 56.5t76.5 21q40 0 76 -21t58 -56.5t22 -75.5q0 -42 -21.5 -77.5t-57.5 -56t-77 -20.5t-76.5 20.5t-56.5 56t-21 77.5zM477 1403q0 40 21 75.5t57 56.5t78 21q40 0 75.5 -21t56.5 -56.5t21 -75.5q0 -42 -21 -77.5t-56 -56t-76 -20.5 q-42 0 -78 20.5t-57 56t-21 77.5z" />
-<glyph unicode="&#xa9;" horiz-adv-x="1804" d="M86 786q0 222 109.5 409.5t297 297t408.5 109.5q222 0 409 -109.5t296.5 -297t109.5 -409.5q0 -221 -109.5 -408.5t-296.5 -297t-409 -109.5q-221 0 -408.5 109.5t-297 297t-109.5 408.5zM168 786q0 -203 98.5 -375t267 -273t367.5 -101q200 0 368 101t266.5 273 t98.5 375q0 204 -98.5 376t-266.5 273t-368 101q-199 0 -367.5 -101t-267 -273t-98.5 -376zM440 782q0 180 65 307t180 192t263 65q78 0 145.5 -18t114.5 -48q50 -32 79.5 -80.5t29.5 -107.5q0 -72 -45.5 -118t-116.5 -46q-72 0 -115 42t-43 111q0 61 38.5 105.5t97.5 60.5 q-21 22 -60.5 36.5t-83.5 14.5q-61 0 -108 -36q-63 -36 -97 -141.5t-34 -311.5q0 -163 37.5 -263t98 -143t134.5 -43q169 0 268 205l37 -14q-26 -83 -78.5 -156t-135.5 -119.5t-193 -46.5q-138 0 -245.5 59.5t-170 183.5t-62.5 310z" />
-<glyph unicode="&#xaa;" horiz-adv-x="987" d="M94 899q0 55 31 93t91 67t163 61q164 54 164 115v37q0 89 -32 128.5t-95 39.5q-66 0 -113 -31q42 -11 66 -44.5t24 -72.5q0 -54 -40 -86t-97 -32q-61 0 -98 32t-37 84q0 91 110 142q106 47 263 47q164 0 237.5 -61.5t73.5 -198.5v-345q0 -29 8.5 -41t30.5 -12q34 0 59 23 l23 -31q-99 -76 -234 -76q-80 0 -113 24.5t-36 72.5q-100 -97 -246 -97q-89 0 -146 40.5t-57 121.5zM367 938q0 -47 21.5 -75.5t55.5 -28.5q54 0 99 38v302q-16 -34 -84 -80q-48 -34 -70 -71.5t-22 -84.5z" />
-<glyph unicode="&#xab;" horiz-adv-x="1165" d="M53 516v27q165 102 301 237t264 312l31 -13q-48 -158 -128 -309.5t-163 -237.5q82 -84 162.5 -238t128.5 -314l-31 -11q-127 176 -263 310.5t-302 236.5zM512 516v27q151 92 275.5 215.5t238.5 283.5l31 -12q-42 -146 -111 -283t-141 -215q71 -77 140.5 -216t111.5 -287 l-31 -11q-114 159 -238.5 282.5t-275.5 215.5z" />
-<glyph unicode="&#xac;" horiz-adv-x="1315" d="M152 696v62h1026v-420h-74v358h-952z" />
-<glyph unicode="&#xad;" horiz-adv-x="985" />
-<glyph unicode="&#xae;" horiz-adv-x="1362" d="M109 1030q0 155 77 286.5t208 208.5t286 77t286 -77t208 -208.5t77 -286.5t-77 -286t-208 -208t-286 -77t-286 77t-208 208t-77 286zM195 1030q0 -136 65 -252.5t176.5 -185t243.5 -68.5t243.5 68.5t176.5 185t65 252.5q0 137 -65 253t-176 184.5t-244 68.5t-244 -68.5 t-176 -184.5t-65 -253zM401 721v31q21 2 30.5 7.5t13.5 20.5t4 47v449q0 33 -4 48.5t-13.5 21.5t-30.5 8v30q29 -2 127 -2q68 0 112 1t65 1q130 0 189.5 -41t59.5 -120q0 -56 -47.5 -102.5t-163.5 -64.5q65 -6 102 -20.5t55 -38t26 -61.5l30 -133q6 -26 12 -37.5t19 -11.5 q14 0 23 12l16 -21q-30 -36 -106 -36q-66 0 -99 21t-43 67l-30 149q-8 37 -18.5 54.5t-35.5 26.5t-76 12v-212q0 -32 4 -47t13.5 -20.5t30.5 -7.5v-31q-25 0 -58 1t-71 1q-45 0 -79.5 -1t-56.5 -1zM618 1073h25q139 0 139 137q0 73 -26.5 108.5t-83.5 35.5q-32 0 -43 -12 t-11 -46v-223z" />
-<glyph unicode="&#xaf;" horiz-adv-x="741" d="M27 1407v51h688v-51h-688z" />
-<glyph unicode="&#xb0;" horiz-adv-x="637" d="M70 1434q0 73 34 129t90.5 86t122.5 30q68 0 125 -30t91 -86t34 -129q0 -75 -34 -131t-91 -86.5t-125 -30.5q-66 0 -122.5 30.5t-90.5 86.5t-34 131zM121 1432q0 -68 28.5 -116t73.5 -71.5t94 -23.5t95 23.5t75 71.5t29 116q0 66 -29.5 114.5t-75.5 73.5t-94 25t-93 -25 t-74 -73.5t-29 -114.5z" />
-<glyph unicode="&#xb1;" horiz-adv-x="1223" d="M93 696v62h477v483h74v-483h475v-62h-475v-481h-74v481h-477zM99 0v62h1026v-62h-1026z" />
-<glyph unicode="&#xb2;" horiz-adv-x="719" d="M55 897v41q24 20 127 98.5t162 156.5t59 165q0 51 -32 78.5t-92 27.5q-116 0 -179 -98l-30 16q40 72 113 118t184 46q101 0 164 -38.5t63 -112.5t-54 -128t-150 -118t-134 -94h276q32 0 49.5 7t27 21t20.5 41l35 -6q-28 -137 -31 -227q-25 6 -78 6h-500z" />
-<glyph unicode="&#xb3;" horiz-adv-x="676" d="M49 713v35q110 11 197 48.5t136.5 97.5t49.5 136q0 64 -33.5 107t-91.5 47l-26 -13t-26.5 -12t-21.5 -4q-32 0 -32 25q0 19 23 24.5t67 3.5q55 26 78.5 68.5t23.5 81.5q0 50 -34.5 81t-94.5 31q-56 0 -102.5 -26.5t-77.5 -75.5l-31 16q90 164 297 164q103 0 168.5 -39 t65.5 -108q0 -71 -64 -122t-176 -73q74 3 137 -19t100 -65t37 -102q0 -94 -83.5 -161t-213.5 -103.5t-272 -42.5z" />
-<glyph unicode="&#xb4;" horiz-adv-x="457" d="M41 1245q59 107 93.5 195.5t53 132.5t48.5 78q17 23 42.5 35.5t52.5 12.5q42 0 72 -26q38 -30 38 -79q0 -45 -31 -83q-32 -40 -95 -85t-120 -87.5t-132 -111.5z" />
-<glyph unicode="&#xb6;" horiz-adv-x="1499" d="M68 737q0 209 95 371t274.5 253t424.5 91q76 0 208 -3.5t191 -3.5q91 0 156 5v-39q-61 -3 -92.5 -18.5t-42 -43.5t-10.5 -77v-1426q0 -77 11 -112t42 -48t100 -16v-41q-126 6 -358 6q-223 0 -328 -6v41q87 3 130.5 21.5t60 58.5t16.5 117v106q-460 0 -669 206t-209 558z M250 719q0 -6 86 -16t225.5 -17.5t296.5 -7.5q3 -149 20.5 -282t38.5 -215.5t31 -82.5v1245q-10 0 -31 -85t-38.5 -218.5t-20.5 -277.5q-154 0 -292.5 -8.5t-227 -19t-88.5 -15.5z" />
-<glyph unicode="&#xb7;" horiz-adv-x="569" d="M111 575q0 73 47 115.5t127 42.5q81 0 128 -42.5t47 -115.5t-47 -115.5t-128 -42.5q-80 0 -127 42.5t-47 115.5z" />
-<glyph unicode="&#xb8;" horiz-adv-x="467" d="M-6 -360l10 36q64 -8 90 -8q60 0 105 20.5t45 63.5q0 53 -68 53q-47 0 -82 -14l66 213h55l-43 -137q65 24 145 24q68 0 105 -30t37 -80q0 -83 -81.5 -124.5t-205.5 -41.5q-110 0 -178 25z" />
-<glyph unicode="&#xb9;" horiz-adv-x="580" d="M59 1436v43q127 2 208 16t149 47v-504q0 -58 30.5 -79t106.5 -21v-43q-90 4 -236 4q-145 0 -243 -4v43q76 0 113.5 21.5t37.5 78.5v265q0 59 -14.5 87t-48 37t-103.5 9z" />
-<glyph unicode="&#xba;" horiz-adv-x="958" d="M80 1108q0 118 52.5 202t143 126.5t203.5 42.5q114 0 204.5 -42.5t143 -126.5t52.5 -202t-52.5 -202t-143 -126.5t-204.5 -42.5q-113 0 -203.5 42.5t-143 126.5t-52.5 202zM354 1108q0 -170 34 -252t91 -82q58 0 92.5 82t34.5 252t-34.5 252t-92.5 82q-57 0 -91 -82 t-34 -252z" />
-<glyph unicode="&#xbb;" horiz-adv-x="1165" d="M109 29q41 146 110 282.5t141 214.5q-72 78 -140.5 217t-110.5 287l30 10q119 -162 243 -285t273 -214v-25q-150 -92 -274.5 -215t-241.5 -285zM516 -20q49 159 129 310.5t162 235.5q-82 83 -162 237t-129 316l33 11q124 -173 261 -308.5t302 -240.5v-25 q-165 -104 -301.5 -240t-261.5 -309z" />
-<glyph unicode="&#xbc;" horiz-adv-x="1452" d="M91 1436v43q127 2 208 16t149 47v-504q0 -58 30.5 -79t106.5 -21v-43q-90 4 -236 4q-145 0 -243 -4v43q76 0 113.5 21.5t37.5 78.5v265q0 59 -14.5 87t-48 37t-103.5 9zM161 -86l1198 1774l39 -27l-1198 -1774zM600 37v43l506 559h43v-483h29q32 0 49.5 7t27 21t19.5 41 l35 -6q-23 -74 -29 -188q-24 6 -77 6h-54v-240h-149v240h-400zM714 156h286v316z" />
-<glyph unicode="&#xbd;" horiz-adv-x="1475" d="M93 1436v43q127 2 208 16t149 47v-504q0 -58 30.5 -79t106.5 -21v-43q-90 4 -236 4q-145 0 -243 -4v43q76 0 113.5 21.5t37.5 78.5v265q0 59 -14.5 87t-48 37t-103.5 9zM128 -86l1198 1774l39 -27l-1198 -1774zM797 2v41q24 20 127 98.5t162 156.5t59 165q0 51 -32 78.5 t-92 27.5q-116 0 -179 -98l-30 16q40 72 113 118t184 46q101 0 164 -38.5t63 -112.5t-54 -128t-150 -118t-134 -94h276q32 0 49.5 7t27 21t20.5 41l35 -6q-28 -137 -31 -227q-25 6 -78 6h-500z" />
-<glyph unicode="&#xbe;" horiz-adv-x="1540" d="M92 713v35q110 11 197 48.5t136.5 97.5t49.5 136q0 64 -33.5 107t-91.5 47l-26 -13t-26.5 -12t-21.5 -4q-32 0 -32 25q0 19 23 24.5t67 3.5q55 26 78.5 68.5t23.5 81.5q0 50 -34.5 81t-94.5 31q-56 0 -102.5 -26.5t-77.5 -75.5l-31 16q90 164 297 164q103 0 168.5 -39 t65.5 -108q0 -71 -64 -122t-176 -73q74 3 137 -19t100 -65t37 -102q0 -94 -83.5 -161t-213.5 -103.5t-272 -42.5zM246 -86l1198 1774l39 -27l-1198 -1774zM694 37v43l506 559h43v-483h29q32 0 49.5 7t27 21t19.5 41l35 -6q-23 -74 -29 -188q-24 6 -77 6h-54v-240h-149v240 h-400zM808 156h286v316z" />
-<glyph unicode="&#xbf;" horiz-adv-x="1030" d="M59 -25q0 157 141 266t382 156v265h41v-283q-110 -47 -169.5 -106.5t-80.5 -127.5t-21 -155q0 -170 67 -252t183 -82q127 0 178 45q-114 36 -114 149q0 65 45.5 106.5t117.5 41.5q42 0 74.5 -19.5t51 -51.5t18.5 -70q0 -112 -117 -174q-116 -68 -305 -68 q-146 0 -257.5 43.5t-173 124.5t-61.5 192zM426 932q0 73 47 115.5t127 42.5q81 0 128 -42.5t47 -115.5t-47 -115.5t-128 -42.5q-80 0 -127 42.5t-47 115.5z" />
-<glyph unicode="&#xc0;" horiz-adv-x="1366" d="M-31 0v41q102 17 176 215l467 1198q33 -3 71 -3q40 0 71 3l497 -1282q27 -68 61 -98.5t68 -32.5v-41q-123 6 -311 6q-210 0 -311 -6v41q77 3 110.5 19t33.5 56q0 31 -25 97l-123 336h-446l-54 -141q-56 -144 -56 -228q0 -76 45 -106t136 -33v-41q-138 6 -254 6 q-94 0 -156 -6zM308 1820q0 26 12 48q15 29 42.5 45t60.5 16q32 0 62 -16q32 -17 59 -41.5t102 -105.5t171 -160l-14 -25q-76 29 -135.5 46t-152.5 40.5t-138 48.5q-33 18 -51 45.5t-18 58.5zM324 590h415l-203 553z" />
-<glyph unicode="&#xc1;" horiz-adv-x="1366" d="M-31 0v41q102 17 176 215l467 1198q33 -3 71 -3q40 0 71 3l497 -1282q27 -68 61 -98.5t68 -32.5v-41q-123 6 -311 6q-210 0 -311 -6v41q77 3 110.5 19t33.5 56q0 31 -25 97l-123 336h-446l-54 -141q-56 -144 -56 -228q0 -76 45 -106t136 -33v-41q-138 6 -254 6 q-94 0 -156 -6zM324 590h415l-203 553zM530 1606q65 53 109.5 97t110 114.5t112.5 95.5q32 16 63 16q32 0 60 -16t43 -45q12 -22 12 -47q0 -31 -18 -59t-51 -46q-45 -25 -120.5 -44t-143.5 -37t-162 -54z" />
-<glyph unicode="&#xc2;" horiz-adv-x="1366" d="M-31 0v41q102 17 176 215l467 1198q33 -3 71 -3q40 0 71 3l497 -1282q27 -68 61 -98.5t68 -32.5v-41q-123 6 -311 6q-210 0 -311 -6v41q77 3 110.5 19t33.5 56q0 31 -25 97l-123 336h-446l-54 -141q-56 -144 -56 -228q0 -76 45 -106t136 -33v-41q-138 6 -254 6 q-94 0 -156 -6zM242 1606q131 55 242.5 140.5t177.5 178.5h37q65 -92 176.5 -178t242.5 -141l-10 -31q-134 25 -263 61.5t-206 71.5q-64 -35 -170.5 -71.5t-216.5 -61.5zM324 590h415l-203 553z" />
-<glyph unicode="&#xc3;" horiz-adv-x="1366" d="M-31 0v41q102 17 176 215l467 1198q33 -3 71 -3q40 0 71 3l497 -1282q27 -68 61 -98.5t68 -32.5v-41q-123 6 -311 6q-210 0 -311 -6v41q77 3 110.5 19t33.5 56q0 31 -25 97l-123 336h-446l-54 -141q-56 -144 -56 -228q0 -76 45 -106t136 -33v-41q-138 6 -254 6 q-94 0 -156 -6zM226 1616q28 136 102.5 206t171.5 70q67 0 118 -19.5t143 -72.5t169 -53q109 0 170 111l29 -11q-27 -135 -101 -204.5t-171 -69.5q-67 0 -117.5 19.5t-143.5 72.5t-172 53q-106 0 -170 -112zM324 590h415l-203 553z" />
-<glyph unicode="&#xc4;" horiz-adv-x="1366" d="M-31 0v41q102 17 176 215l467 1198q33 -3 71 -3q40 0 71 3l497 -1282q27 -68 61 -98.5t68 -32.5v-41q-123 6 -311 6q-210 0 -311 -6v41q77 3 110.5 19t33.5 56q0 31 -25 97l-123 336h-446l-54 -141q-56 -144 -56 -228q0 -76 45 -106t136 -33v-41q-138 6 -254 6 q-94 0 -156 -6zM281 1722q0 40 21 76t56 58t76 22q40 0 76 -22t58 -58t22 -76q0 -41 -22 -76t-58 -56t-76 -21q-41 0 -76.5 20.5t-56 56t-20.5 76.5zM324 590h415l-203 553zM770 1722q0 41 21 77t57 57.5t78 21.5q40 0 75.5 -22t56.5 -58t21 -76q0 -41 -21 -76.5t-56.5 -56 t-75.5 -20.5q-42 0 -78 20.5t-57 56t-21 76.5z" />
-<glyph unicode="&#xc5;" horiz-adv-x="1366" d="M-31 0v41q102 17 176 215l467 1198q33 -3 71 -3q40 0 71 3l497 -1282q27 -68 61 -98.5t68 -32.5v-41q-123 6 -311 6q-210 0 -311 -6v41q77 3 110.5 19t33.5 56q0 31 -25 97l-123 336h-446l-54 -141q-56 -144 -56 -228q0 -76 45 -106t136 -33v-41q-138 6 -254 6 q-94 0 -156 -6zM324 590h415l-203 553zM459 1720q0 59 30.5 104.5t81 70t109.5 24.5q60 0 111.5 -24.5t82 -69.5t30.5 -105t-30.5 -105.5t-82 -70t-111.5 -24.5q-59 0 -109.5 24.5t-81 70t-30.5 105.5zM516 1718q0 -49 24 -84.5t61.5 -53t78.5 -17.5q42 0 80 17.5t62 53 t24 84.5t-24 85t-62.5 54.5t-79.5 18.5q-40 0 -78 -18.5t-62 -54.5t-24 -85z" />
-<glyph unicode="&#xc6;" horiz-adv-x="1821" d="M-29 0v41q34 2 67 31.5t75 99.5l695 1182q-13 30 -43.5 41t-94.5 14v41q83 -2 193 -3l79 134h49l-79 -135q144 -2 364 -2q289 0 412 6q-15 -151 -15 -279q0 -89 6 -139h-47q-17 138 -51 219.5t-85.5 116.5t-125.5 35h-67q-68 0 -99.5 -12t-43 -46.5t-11.5 -111.5v-483 h108q65 0 101 38.5t47.5 76.5t30.5 126h47q-7 -91 -7 -174l1 -88q0 -93 12 -262h-47q-12 76 -28 125.5t-53.5 83t-103.5 33.5h-108v-492q0 -77 11.5 -111.5t43 -46.5t99.5 -12h100q112 0 180 94.5t90 317.5h47q-6 -67 -6 -172q0 -156 15 -287q-136 6 -453 6q-391 0 -590 -6 v41q62 4 89.5 16.5t37.5 47.5t10 112v492h-343l-290 -496q-37 -62 -37 -100q0 -36 34.5 -52.5t107.5 -19.5v-41q-61 6 -186 6q-88 0 -138 -6zM504 750h319v483q0 35 -2 58z" />
-<glyph unicode="&#xc7;" horiz-adv-x="1444" d="M88 713q0 226 92 400t257 270t376 96q122 0 208.5 -35t168.5 -98q23 -18 40 -18q42 0 52 122h47q-8 -139 -8 -496h-47q-13 103 -28.5 167.5t-45 113.5t-80.5 90q-51 49 -119 74.5t-141 25.5q-141 0 -232 -97t-133 -256t-42 -351t44 -351t137.5 -254.5t233.5 -95.5 q71 0 139 26t115 75q52 40 81.5 92.5t44 121.5t26.5 181h47q0 -371 8 -516h-47q-5 64 -16.5 92.5t-33.5 28.5q-16 0 -42 -17q-60 -42 -111.5 -70t-118 -45.5t-149.5 -17.5q-217 0 -380.5 88t-253 255.5t-89.5 398.5zM597 -360l11 36q72 -8 102 -8q75 0 130.5 20.5t55.5 63.5 q0 53 -94 53q-48 0 -80 -14l68 219h55l-45 -143q70 24 158 24q73 0 113 -30t40 -80q0 -83 -91.5 -124.5t-231.5 -41.5q-119 0 -191 25z" />
-<glyph unicode="&#xc8;" horiz-adv-x="1298" d="M70 0v41q68 3 99 16t42.5 48t11.5 112v1016q0 77 -11.5 112t-42.5 48t-99 16v41q221 -6 667 -6q301 0 428 6q-14 -169 -14 -303q0 -91 6 -139h-47q-21 149 -64 235t-109 123t-163 37h-84q-64 0 -92.5 -10.5t-38.5 -40t-10 -95.5v-507h65q110 0 166 80t78 190h47 q-7 -101 -7 -193l1 -98q0 -104 12 -291h-47q-41 271 -250 271h-65v-516q0 -66 10 -95.5t38.5 -40t92.5 -10.5h101q144 0 233.5 100t126.5 336h47q-6 -67 -6 -172q0 -188 14 -311q-139 6 -469 6q-446 0 -667 -6zM272 1820q0 26 12 48q15 29 42.5 45t60.5 16q32 0 62 -16 q32 -17 59 -41.5t102 -105.5t171 -160l-14 -25q-76 29 -135.5 46t-152.5 40.5t-138 48.5q-33 18 -51 45.5t-18 58.5z" />
-<glyph unicode="&#xc9;" horiz-adv-x="1298" d="M70 0v41q68 3 99 16t42.5 48t11.5 112v1016q0 77 -11.5 112t-42.5 48t-99 16v41q221 -6 667 -6q301 0 428 6q-14 -169 -14 -303q0 -91 6 -139h-47q-21 149 -64 235t-109 123t-163 37h-84q-64 0 -92.5 -10.5t-38.5 -40t-10 -95.5v-507h65q110 0 166 80t78 190h47 q-7 -101 -7 -193l1 -98q0 -104 12 -291h-47q-41 271 -250 271h-65v-516q0 -66 10 -95.5t38.5 -40t92.5 -10.5h101q144 0 233.5 100t126.5 336h47q-6 -67 -6 -172q0 -188 14 -311q-139 6 -469 6q-446 0 -667 -6zM494 1606q65 53 109.5 97t110 114.5t112.5 95.5q32 16 63 16 q32 0 60 -16t43 -45q12 -22 12 -47q0 -31 -18 -59t-51 -46q-45 -25 -120.5 -44t-143.5 -37t-162 -54z" />
-<glyph unicode="&#xca;" horiz-adv-x="1298" d="M70 0v41q68 3 99 16t42.5 48t11.5 112v1016q0 77 -11.5 112t-42.5 48t-99 16v41q221 -6 667 -6q301 0 428 6q-14 -169 -14 -303q0 -91 6 -139h-47q-21 149 -64 235t-109 123t-163 37h-84q-64 0 -92.5 -10.5t-38.5 -40t-10 -95.5v-507h65q110 0 166 80t78 190h47 q-7 -101 -7 -193l1 -98q0 -104 12 -291h-47q-41 271 -250 271h-65v-516q0 -66 10 -95.5t38.5 -40t92.5 -10.5h101q144 0 233.5 100t126.5 336h47q-6 -67 -6 -172q0 -188 14 -311q-139 6 -469 6q-446 0 -667 -6zM206 1606q131 55 242.5 140.5t177.5 178.5h37 q65 -92 176.5 -178t242.5 -141l-10 -31q-134 25 -263 61.5t-206 71.5q-64 -35 -170.5 -71.5t-216.5 -61.5z" />
-<glyph unicode="&#xcb;" horiz-adv-x="1298" d="M70 0v41q68 3 99 16t42.5 48t11.5 112v1016q0 77 -11.5 112t-42.5 48t-99 16v41q221 -6 667 -6q301 0 428 6q-14 -169 -14 -303q0 -91 6 -139h-47q-21 149 -64 235t-109 123t-163 37h-84q-64 0 -92.5 -10.5t-38.5 -40t-10 -95.5v-507h65q110 0 166 80t78 190h47 q-7 -101 -7 -193l1 -98q0 -104 12 -291h-47q-41 271 -250 271h-65v-516q0 -66 10 -95.5t38.5 -40t92.5 -10.5h101q144 0 233.5 100t126.5 336h47q-6 -67 -6 -172q0 -188 14 -311q-139 6 -469 6q-446 0 -667 -6zM245 1722q0 40 21 76t56 58t76 22q40 0 76 -22t58 -58t22 -76 q0 -41 -22 -76t-58 -56t-76 -21q-41 0 -76.5 20.5t-56 56t-20.5 76.5zM734 1722q0 41 21 77t57 57.5t78 21.5q40 0 75.5 -22t56.5 -58t21 -76q0 -41 -21 -76.5t-56.5 -56t-75.5 -20.5q-42 0 -78 20.5t-57 56t-21 76.5z" />
-<glyph unicode="&#xcc;" horiz-adv-x="770" d="M20 1820q0 26 12 48q15 29 42.5 45t60.5 16q32 0 62 -16q32 -17 59 -41.5t102 -105.5t171 -160l-14 -25q-76 29 -135.5 46t-152.5 40.5t-138 48.5q-33 18 -51 45.5t-18 58.5zM70 0v41q68 3 99 16t42.5 48t11.5 112v1016q0 77 -11.5 112t-42.5 48t-99 16v41q103 -6 323 -6 q200 0 309 6v-41q-69 -3 -100 -16t-42 -48t-11 -112v-1016q0 -77 11 -112t42 -48t100 -16v-41q-109 6 -309 6q-219 0 -323 -6z" />
-<glyph unicode="&#xcd;" horiz-adv-x="770" d="M70 0v41q68 3 99 16t42.5 48t11.5 112v1016q0 77 -11.5 112t-42.5 48t-99 16v41q103 -6 323 -6q200 0 309 6v-41q-69 -3 -100 -16t-42 -48t-11 -112v-1016q0 -77 11 -112t42 -48t100 -16v-41q-109 6 -309 6q-219 0 -323 -6zM242 1606q65 53 109.5 97t110 114.5 t112.5 95.5q32 16 63 16q32 0 60 -16t43 -45q12 -22 12 -47q0 -31 -18 -59t-51 -46q-45 -25 -120.5 -44t-143.5 -37t-162 -54z" />
-<glyph unicode="&#xce;" horiz-adv-x="770" d="M-46 1606q131 55 242.5 140.5t177.5 178.5h37q65 -92 176.5 -178t242.5 -141l-10 -31q-134 25 -263 61.5t-206 71.5q-64 -35 -170.5 -71.5t-216.5 -61.5zM70 0v41q68 3 99 16t42.5 48t11.5 112v1016q0 77 -11.5 112t-42.5 48t-99 16v41q103 -6 323 -6q200 0 309 6v-41 q-69 -3 -100 -16t-42 -48t-11 -112v-1016q0 -77 11 -112t42 -48t100 -16v-41q-109 6 -309 6q-219 0 -323 -6z" />
-<glyph unicode="&#xcf;" horiz-adv-x="770" d="M-7 1722q0 40 21 76t56 58t76 22q40 0 76 -22t58 -58t22 -76q0 -41 -22 -76t-58 -56t-76 -21q-41 0 -76.5 20.5t-56 56t-20.5 76.5zM70 0v41q68 3 99 16t42.5 48t11.5 112v1016q0 77 -11.5 112t-42.5 48t-99 16v41q103 -6 323 -6q200 0 309 6v-41q-69 -3 -100 -16 t-42 -48t-11 -112v-1016q0 -77 11 -112t42 -48t100 -16v-41q-109 6 -309 6q-219 0 -323 -6zM482 1722q0 41 21 77t57 57.5t78 21.5q40 0 75.5 -22t56.5 -58t21 -76q0 -41 -21 -76.5t-56.5 -56t-75.5 -20.5q-42 0 -78 20.5t-57 56t-21 76.5z" />
-<glyph unicode="&#xd0;" horiz-adv-x="1589" d="M70 709v41h154v483q0 77 -11.5 112t-42.5 48t-99 16v41q131 -7 247 -7l64 1q288 6 321 6q400 0 598.5 -181t198.5 -528q0 -223 -97 -390.5t-281 -259t-437 -91.5q-30 0 -140.5 3t-158.5 3q-211 0 -315 -6v41q68 3 99 16t42.5 48t11.5 112v492h-154zM550 213 q0 -74 12 -110.5t44 -51t97 -14.5q169 0 269.5 79.5t144 232t43.5 384.5q0 233 -46.5 382.5t-147.5 223.5t-265 74q-64 0 -95.5 -14.5t-43.5 -51.5t-12 -110v-487h253v-41h-253v-496z" />
-<glyph unicode="&#xd1;" horiz-adv-x="1479" d="M72 0v41q67 9 98.5 34.5t43 78t11.5 157.5v922q0 77 -11.5 112t-42.5 48t-99 16v41q65 -6 178 -6q103 0 176 6l793 -977v641q0 121 -13 177.5t-53.5 82.5t-132.5 35v41q79 -6 221 -6q114 0 178 6v-41q-67 -9 -98.5 -34.5t-43 -78t-11.5 -157.5v-1143q-15 1 -50 1 q-36 0 -55 -1l-889 1126v-786q0 -121 13 -177.5t53.5 -82.5t132.5 -35v-41q-79 6 -221 6q-113 0 -178 -6zM322 1616q28 136 102.5 206t171.5 70q67 0 118 -19.5t143 -72.5t169 -53q109 0 170 111l29 -11q-27 -135 -101 -204.5t-171 -69.5q-67 0 -117.5 19.5t-143.5 72.5 t-172 53q-106 0 -170 -112z" />
-<glyph unicode="&#xd2;" d="M88 713q0 226 92 400t257 270t376 96q216 0 379.5 -88t253.5 -255.5t90 -398.5q0 -226 -92.5 -400t-257.5 -270t-375 -96q-217 0 -380.5 88t-253 255.5t-89.5 398.5zM428 721q0 -213 52 -375t141 -250t198 -88q113 0 198.5 91.5t132 255t46.5 374.5q0 212 -52 374.5 t-141.5 250.5t-197.5 88q-113 0 -198.5 -91.5t-132 -255t-46.5 -374.5zM437 1820q0 26 12 48q15 29 42.5 45t60.5 16q32 0 62 -16q32 -17 59 -41.5t102 -105.5t171 -160l-14 -25q-76 29 -135.5 46t-152.5 40.5t-138 48.5q-33 18 -51 45.5t-18 58.5z" />
-<glyph unicode="&#xd3;" d="M88 713q0 226 92 400t257 270t376 96q216 0 379.5 -88t253.5 -255.5t90 -398.5q0 -226 -92.5 -400t-257.5 -270t-375 -96q-217 0 -380.5 88t-253 255.5t-89.5 398.5zM428 721q0 -213 52 -375t141 -250t198 -88q113 0 198.5 91.5t132 255t46.5 374.5q0 212 -52 374.5 t-141.5 250.5t-197.5 88q-113 0 -198.5 -91.5t-132 -255t-46.5 -374.5zM659 1606q65 53 109.5 97t110 114.5t112.5 95.5q32 16 63 16q32 0 60 -16t43 -45q12 -22 12 -47q0 -31 -18 -59t-51 -46q-45 -25 -120.5 -44t-143.5 -37t-162 -54z" />
-<glyph unicode="&#xd4;" d="M88 713q0 226 92 400t257 270t376 96q216 0 379.5 -88t253.5 -255.5t90 -398.5q0 -226 -92.5 -400t-257.5 -270t-375 -96q-217 0 -380.5 88t-253 255.5t-89.5 398.5zM371 1606q131 55 242.5 140.5t177.5 178.5h37q65 -92 176.5 -178t242.5 -141l-10 -31 q-134 25 -263 61.5t-206 71.5q-64 -35 -170.5 -71.5t-216.5 -61.5zM428 721q0 -213 52 -375t141 -250t198 -88q113 0 198.5 91.5t132 255t46.5 374.5q0 212 -52 374.5t-141.5 250.5t-197.5 88q-113 0 -198.5 -91.5t-132 -255t-46.5 -374.5z" />
-<glyph unicode="&#xd5;" d="M88 713q0 226 92 400t257 270t376 96q216 0 379.5 -88t253.5 -255.5t90 -398.5q0 -226 -92.5 -400t-257.5 -270t-375 -96q-217 0 -380.5 88t-253 255.5t-89.5 398.5zM355 1616q28 136 102.5 206t171.5 70q67 0 118 -19.5t143 -72.5t169 -53q109 0 170 111l29 -11 q-27 -135 -101 -204.5t-171 -69.5q-67 0 -117.5 19.5t-143.5 72.5t-172 53q-106 0 -170 -112zM428 721q0 -213 52 -375t141 -250t198 -88q113 0 198.5 91.5t132 255t46.5 374.5q0 212 -52 374.5t-141.5 250.5t-197.5 88q-113 0 -198.5 -91.5t-132 -255t-46.5 -374.5z" />
-<glyph unicode="&#xd6;" d="M88 713q0 226 92 400t257 270t376 96q216 0 379.5 -88t253.5 -255.5t90 -398.5q0 -226 -92.5 -400t-257.5 -270t-375 -96q-217 0 -380.5 88t-253 255.5t-89.5 398.5zM410 1722q0 40 21 76t56 58t76 22q40 0 76 -22t58 -58t22 -76q0 -41 -22 -76t-58 -56t-76 -21 q-41 0 -76.5 20.5t-56 56t-20.5 76.5zM428 721q0 -213 52 -375t141 -250t198 -88q113 0 198.5 91.5t132 255t46.5 374.5q0 212 -52 374.5t-141.5 250.5t-197.5 88q-113 0 -198.5 -91.5t-132 -255t-46.5 -374.5zM899 1722q0 41 21 77t57 57.5t78 21.5q40 0 75.5 -22t56.5 -58 t21 -76q0 -41 -21 -76.5t-56.5 -56t-75.5 -20.5q-42 0 -78 20.5t-57 56t-21 76.5z" />
-<glyph unicode="&#xd7;" horiz-adv-x="1010" d="M104 1085l46 45l358 -358l354 354l45 -45l-354 -352l354 -354l-45 -45l-354 354l-356 -356l-46 45l357 354z" />
-<glyph unicode="&#xd8;" d="M88 713q0 226 92 400t257 270t376 96q229 0 398 -98l147 214l39 -26l-145 -214q136 -94 210 -251.5t74 -366.5q0 -226 -92.5 -400t-257.5 -270t-375 -96q-242 0 -416 109l-170 -242l-43 29l171 242q-128 95 -196.5 249t-68.5 355zM428 721q0 -248 71 -429l595 933 q-54 104 -129 160.5t-160 56.5q-113 0 -198.5 -91.5t-132 -255t-46.5 -374.5zM524 236q53 -110 129.5 -169t165.5 -59q113 0 198.5 91.5t132 255t46.5 374.5q0 258 -78 444z" />
-<glyph unicode="&#xd9;" horiz-adv-x="1411" d="M39 1409v41q105 -6 319 -6q212 0 326 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-772q0 -144 26 -234.5t87.5 -137t169.5 -46.5q204 0 288.5 138t84.5 392v541q0 119 -14.5 176.5t-55.5 83.5t-129 35v41q77 -6 221 -6q114 0 178 6v-41q-67 -9 -98.5 -34.5t-43 -78 t-11.5 -157.5v-543q0 -293 -84 -434q-56 -91 -160 -141t-256 -50q-236 0 -369 103q-65 52 -99.5 121t-47 161.5t-12.5 233.5v643q0 77 -11.5 112t-43 48t-99.5 16zM360 1820q0 26 12 48q15 29 42.5 45t60.5 16q32 0 62 -16q32 -17 59 -41.5t102 -105.5t171 -160l-14 -25 q-76 29 -135.5 46t-152.5 40.5t-138 48.5q-33 18 -51 45.5t-18 58.5z" />
-<glyph unicode="&#xda;" horiz-adv-x="1411" d="M39 1409v41q105 -6 319 -6q212 0 326 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-772q0 -144 26 -234.5t87.5 -137t169.5 -46.5q204 0 288.5 138t84.5 392v541q0 119 -14.5 176.5t-55.5 83.5t-129 35v41q77 -6 221 -6q114 0 178 6v-41q-67 -9 -98.5 -34.5t-43 -78 t-11.5 -157.5v-543q0 -293 -84 -434q-56 -91 -160 -141t-256 -50q-236 0 -369 103q-65 52 -99.5 121t-47 161.5t-12.5 233.5v643q0 77 -11.5 112t-43 48t-99.5 16zM582 1606q65 53 109.5 97t110 114.5t112.5 95.5q32 16 63 16q32 0 60 -16t43 -45q12 -22 12 -47 q0 -31 -18 -59t-51 -46q-45 -25 -120.5 -44t-143.5 -37t-162 -54z" />
-<glyph unicode="&#xdb;" horiz-adv-x="1411" d="M39 1409v41q105 -6 319 -6q212 0 326 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-772q0 -144 26 -234.5t87.5 -137t169.5 -46.5q204 0 288.5 138t84.5 392v541q0 119 -14.5 176.5t-55.5 83.5t-129 35v41q77 -6 221 -6q114 0 178 6v-41q-67 -9 -98.5 -34.5t-43 -78 t-11.5 -157.5v-543q0 -293 -84 -434q-56 -91 -160 -141t-256 -50q-236 0 -369 103q-65 52 -99.5 121t-47 161.5t-12.5 233.5v643q0 77 -11.5 112t-43 48t-99.5 16zM294 1606q131 55 242.5 140.5t177.5 178.5h37q65 -92 176.5 -178t242.5 -141l-10 -31q-134 25 -263 61.5 t-206 71.5q-64 -35 -170.5 -71.5t-216.5 -61.5z" />
-<glyph unicode="&#xdc;" horiz-adv-x="1411" d="M39 1409v41q105 -6 319 -6q212 0 326 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-772q0 -144 26 -234.5t87.5 -137t169.5 -46.5q204 0 288.5 138t84.5 392v541q0 119 -14.5 176.5t-55.5 83.5t-129 35v41q77 -6 221 -6q114 0 178 6v-41q-67 -9 -98.5 -34.5t-43 -78 t-11.5 -157.5v-543q0 -293 -84 -434q-56 -91 -160 -141t-256 -50q-236 0 -369 103q-65 52 -99.5 121t-47 161.5t-12.5 233.5v643q0 77 -11.5 112t-43 48t-99.5 16zM333 1722q0 40 21 76t56 58t76 22q40 0 76 -22t58 -58t22 -76q0 -41 -22 -76t-58 -56t-76 -21 q-41 0 -76.5 20.5t-56 56t-20.5 76.5zM822 1722q0 41 21 77t57 57.5t78 21.5q40 0 75.5 -22t56.5 -58t21 -76q0 -41 -21 -76.5t-56.5 -56t-75.5 -20.5q-42 0 -78 20.5t-57 56t-21 76.5z" />
-<glyph unicode="&#xdd;" horiz-adv-x="1276" d="M-14 1409v43q89 -10 241 -10q192 0 385 10v-43q-72 0 -113.5 -12.5t-41.5 -47.5q0 -21 14 -46l312 -600l159 319q81 162 81 253q0 69 -44 101t-127 35v41q138 -6 256 -6q94 0 156 6v-41q-47 -20 -94.5 -75.5t-102.5 -161.5l-242 -479v-478q0 -77 11.5 -112t42.5 -48 t100 -16v-41q-111 6 -315 6q-219 0 -318 -6v41q68 3 99.5 16t43 48t11.5 112v346l-396 731q-63 115 -118 115zM527 1606q65 53 109.5 97t110 114.5t112.5 95.5q32 16 63 16q32 0 60 -16t43 -45q12 -22 12 -47q0 -31 -18 -59t-51 -46q-45 -25 -120.5 -44t-143.5 -37t-162 -54 z" />
-<glyph unicode="&#xde;" horiz-adv-x="1272" d="M70 0v41q68 3 99 16t42.5 48t11.5 112v1016q0 77 -11.5 112t-42.5 48t-99 16v41q104 -6 323 -6q200 0 309 6v-41q-69 -3 -100 -16t-42 -48t-11 -112v-74l115 2q281 0 424 -101.5t143 -291.5q0 -128 -56 -232.5t-192.5 -170.5t-364.5 -66h-69v-82q0 -77 11 -112t42 -48 t100 -16v-41q-109 6 -309 6q-219 0 -323 -6zM549 340h49q167 0 230 110t63 300q0 188 -64.5 280t-214.5 92l-63 -1v-781z" />
-<glyph unicode="&#xdf;" horiz-adv-x="1346" d="M39 0v43q73 0 102 36t29 124v866q0 269 130 401t378 132q136 0 233 -38.5t147 -107.5t50 -158q0 -98 -62 -183t-161.5 -144t-210.5 -84q192 -28 331 -101t212 -180.5t73 -236.5q0 -123 -62.5 -213.5t-166.5 -137.5t-225 -47q-125 0 -207 51t-82 160q0 74 38.5 119 t106.5 45q64 0 104 -39t40 -102q0 -61 -36.5 -106t-92.5 -66q25 -27 79 -27q61 0 106 40t69 114.5t24 177.5q0 220 -98 347.5t-246 178.5q-43 -26 -72 -26q-17 0 -29 8.5t-12 23.5q0 18 12.5 28.5t34.5 10.5q32 0 68 -16q102 72 142 160.5t40 224.5q0 293 -182 293 q-64 0 -102.5 -37.5t-57 -125.5t-18.5 -243v-1188q-101 26 -256 29q-13 1 -38 1q-52 0 -132 -7z" />
-<glyph unicode="&#xe0;" horiz-adv-x="1061" d="M59 219q0 107 70 177t217 124q16 6 104 39.5t127 68.5t39 77v159q0 85 -40.5 134t-126.5 49q-40 0 -80 -12.5t-66 -37.5q57 -19 89 -59.5t32 -101.5q0 -42 -20.5 -75.5t-58.5 -53t-87 -19.5q-66 0 -105.5 45t-39.5 113q0 106 114 172q125 69 312 69q210 0 299 -92 q43 -43 58 -107t15 -179v-557q0 -50 9.5 -70.5t33.5 -20.5q33 0 76 35l21 -35q-47 -39 -102 -57t-132 -18q-104 0 -150 46t-46 120q-50 -83 -131 -124.5t-173 -41.5q-117 0 -187.5 61.5t-70.5 171.5zM238 1594q0 47 38 79q30 26 70 26q28 0 54 -13t44 -35q24 -28 40 -60.5 t56 -135.5t99 -210l-23 -18q-61 56 -110 94.5t-126.5 94t-109.5 95.5t-32 83zM350 276q0 -80 35 -119.5t92 -39.5q81 0 139 84v420q-13 -22 -42.5 -45.5t-84.5 -57.5q-65 -45 -102 -101.5t-37 -140.5z" />
-<glyph unicode="&#xe1;" horiz-adv-x="1061" d="M59 219q0 107 70 177t217 124q16 6 104 39.5t127 68.5t39 77v159q0 85 -40.5 134t-126.5 49q-40 0 -80 -12.5t-66 -37.5q57 -19 89 -59.5t32 -101.5q0 -42 -20.5 -75.5t-58.5 -53t-87 -19.5q-66 0 -105.5 45t-39.5 113q0 106 114 172q125 69 312 69q210 0 299 -92 q43 -43 58 -107t15 -179v-557q0 -50 9.5 -70.5t33.5 -20.5q33 0 76 35l21 -35q-47 -39 -102 -57t-132 -18q-104 0 -150 46t-46 120q-50 -83 -131 -124.5t-173 -41.5q-117 0 -187.5 61.5t-70.5 171.5zM350 276q0 -80 35 -119.5t92 -39.5q81 0 139 84v420q-13 -22 -42.5 -45.5 t-84.5 -57.5q-65 -45 -102 -101.5t-37 -140.5zM393 1245q59 107 93.5 195.5t53 132.5t48.5 78q17 23 42.5 35.5t52.5 12.5q42 0 72 -26q38 -30 38 -79q0 -45 -31 -83q-32 -40 -95 -85t-120 -87.5t-132 -111.5z" />
-<glyph unicode="&#xe2;" horiz-adv-x="1061" d="M59 219q0 107 70 177t217 124q16 6 104 39.5t127 68.5t39 77v159q0 85 -40.5 134t-126.5 49q-40 0 -80 -12.5t-66 -37.5q57 -19 89 -59.5t32 -101.5q0 -42 -20.5 -75.5t-58.5 -53t-87 -19.5q-66 0 -105.5 45t-39.5 113q0 106 114 172q125 69 312 69q210 0 299 -92 q43 -43 58 -107t15 -179v-557q0 -50 9.5 -70.5t33.5 -20.5q33 0 76 35l21 -35q-47 -39 -102 -57t-132 -18q-104 0 -150 46t-46 120q-50 -83 -131 -124.5t-173 -41.5q-117 0 -187.5 61.5t-70.5 171.5zM147 1278q113 67 210 175t156 226h37q55 -116 153.5 -224.5t213.5 -176.5 l-17 -29q-117 28 -229 70.5t-180 85.5q-56 -43 -145.5 -85.5t-182.5 -70.5zM350 276q0 -80 35 -119.5t92 -39.5q81 0 139 84v420q-13 -22 -42.5 -45.5t-84.5 -57.5q-65 -45 -102 -101.5t-37 -140.5z" />
-<glyph unicode="&#xe3;" horiz-adv-x="1061" d="M59 219q0 107 70 177t217 124q16 6 104 39.5t127 68.5t39 77v159q0 85 -40.5 134t-126.5 49q-40 0 -80 -12.5t-66 -37.5q57 -19 89 -59.5t32 -101.5q0 -42 -20.5 -75.5t-58.5 -53t-87 -19.5q-66 0 -105.5 45t-39.5 113q0 106 114 172q125 69 312 69q210 0 299 -92 q43 -43 58 -107t15 -179v-557q0 -50 9.5 -70.5t33.5 -20.5q33 0 76 35l21 -35q-47 -39 -102 -57t-132 -18q-104 0 -150 46t-46 120q-50 -83 -131 -124.5t-173 -41.5q-117 0 -187.5 61.5t-70.5 171.5zM111 1325q32 145 100.5 215t155.5 70q58 0 99.5 -18.5t112.5 -67.5 t134 -49q92 0 157 108l29 -14q-32 -145 -100 -215t-154 -70q-59 0 -101 19t-113 68.5t-134 49.5q-92 0 -158 -110zM350 276q0 -80 35 -119.5t92 -39.5q81 0 139 84v420q-13 -22 -42.5 -45.5t-84.5 -57.5q-65 -45 -102 -101.5t-37 -140.5z" />
-<glyph unicode="&#xe4;" horiz-adv-x="1061" d="M59 219q0 107 70 177t217 124q16 6 104 39.5t127 68.5t39 77v159q0 85 -40.5 134t-126.5 49q-40 0 -80 -12.5t-66 -37.5q57 -19 89 -59.5t32 -101.5q0 -42 -20.5 -75.5t-58.5 -53t-87 -19.5q-66 0 -105.5 45t-39.5 113q0 106 114 172q125 69 312 69q210 0 299 -92 q43 -43 58 -107t15 -179v-557q0 -50 9.5 -70.5t33.5 -20.5q33 0 76 35l21 -35q-47 -39 -102 -57t-132 -18q-104 0 -150 46t-46 120q-50 -83 -131 -124.5t-173 -41.5q-117 0 -187.5 61.5t-70.5 171.5zM147 1403q0 40 21 75.5t56.5 56.5t76.5 21q40 0 76 -21t58 -56.5 t22 -75.5q0 -42 -21.5 -77.5t-57.5 -56t-77 -20.5t-76.5 20.5t-56.5 56t-21 77.5zM350 276q0 -80 35 -119.5t92 -39.5q81 0 139 84v420q-13 -22 -42.5 -45.5t-84.5 -57.5q-65 -45 -102 -101.5t-37 -140.5zM612 1403q0 40 21 75.5t57 56.5t78 21q40 0 75.5 -21t56.5 -56.5 t21 -75.5q0 -42 -21 -77.5t-56 -56t-76 -20.5q-42 0 -78 20.5t-57 56t-21 77.5z" />
-<glyph unicode="&#xe5;" horiz-adv-x="1061" d="M59 219q0 107 70 177t217 124q16 6 104 39.5t127 68.5t39 77v159q0 85 -40.5 134t-126.5 49q-40 0 -80 -12.5t-66 -37.5q57 -19 89 -59.5t32 -101.5q0 -42 -20.5 -75.5t-58.5 -53t-87 -19.5q-66 0 -105.5 45t-39.5 113q0 106 114 172q125 69 312 69q210 0 299 -92 q43 -43 58 -107t15 -179v-557q0 -50 9.5 -70.5t33.5 -20.5q33 0 76 35l21 -35q-47 -39 -102 -57t-132 -18q-104 0 -150 46t-46 120q-50 -83 -131 -124.5t-173 -41.5q-117 0 -187.5 61.5t-70.5 171.5zM311 1434q0 59 30.5 104t81 69.5t109.5 24.5q60 0 111.5 -24.5t82 -69.5 t30.5 -104q0 -60 -30.5 -106t-82 -70.5t-111.5 -24.5q-59 0 -109.5 24.5t-81 70.5t-30.5 106zM350 276q0 -80 35 -119.5t92 -39.5q81 0 139 84v420q-13 -22 -42.5 -45.5t-84.5 -57.5q-65 -45 -102 -101.5t-37 -140.5zM368 1432q0 -50 24 -85t61.5 -53t78.5 -18q42 0 80 17.5 t62 53t24 85.5q0 49 -24 84.5t-62.5 54t-79.5 18.5q-40 0 -78 -18.5t-62 -54t-24 -84.5z" />
-<glyph unicode="&#xe6;" horiz-adv-x="1505" d="M63 211q0 111 70 182t215 125q104 42 149 63t76 51.5t31 72.5v159q0 84 -42.5 133.5t-127.5 49.5q-37 0 -77 -12.5t-66 -37.5q117 -40 117 -153q0 -42 -21 -75.5t-58.5 -53t-84.5 -19.5q-64 0 -104 43.5t-40 108.5q0 53 31 97t84 75q120 67 279 67q99 0 165 -26t106 -88 q120 114 308 114q367 0 367 -454h-532q-3 -30 -3 -96q0 -136 35 -225.5t90 -131t119 -41.5q150 0 240 164l38 -12q-25 -84 -75.5 -156.5t-128.5 -118t-179 -45.5q-129 0 -226.5 56t-151.5 169q-60 -109 -143 -162.5t-199 -53.5q-76 0 -135 27t-92.5 79t-33.5 125zM354 279 q0 -74 33.5 -111t93.5 -37q51 0 91.5 22t76.5 78l-1 6q-44 118 -44 281q0 40 3 77l-3 26q-26 -43 -100 -97q-72 -52 -111 -109t-39 -136zM902 672h280q2 162 -28 267t-91 105q-65 0 -108 -90.5t-53 -281.5z" />
-<glyph unicode="&#xe7;" horiz-adv-x="1016" d="M74 524q0 181 65.5 307.5t180 191t262.5 64.5q76 0 143 -16.5t113 -44.5q53 -33 82.5 -82.5t29.5 -109.5q0 -73 -45.5 -118.5t-116.5 -45.5q-72 0 -114.5 41t-42.5 110q0 62 39 107t96 61q-16 22 -49.5 35.5t-73.5 13.5q-83 0 -141.5 -62.5t-88.5 -172t-30 -250.5 q0 -150 38 -242t99 -131t135 -39q70 0 141 36.5t128 129.5l34 -12q-26 -84 -78 -157.5t-135 -120t-194 -46.5q-137 0 -244.5 60t-170 184t-62.5 309zM315 -360l10 36q64 -8 90 -8q60 0 105 20.5t45 63.5q0 53 -68 53q-47 0 -82 -14l66 213h55l-43 -137q65 24 145 24 q68 0 105 -30t37 -80q0 -83 -81.5 -124.5t-205.5 -41.5q-110 0 -178 25z" />
-<glyph unicode="&#xe8;" horiz-adv-x="1032" d="M76 518q0 186 64 313.5t177 191.5t261 64q385 0 385 -454h-575q-3 -30 -3 -96q0 -136 38 -225.5t98.5 -131t129.5 -41.5q169 0 271 164l36 -12q-26 -84 -80.5 -156.5t-138 -118t-190.5 -45.5q-141 0 -247.5 60t-166 182.5t-59.5 304.5zM271 1594q0 47 38 79q30 26 70 26 q28 0 54 -13t44 -35q24 -28 40 -60.5t56 -135.5t99 -210l-23 -18q-61 56 -110 94.5t-126.5 94t-109.5 95.5t-32 83zM384 672h321q3 160 -32.5 266t-107.5 106q-73 0 -121.5 -90.5t-59.5 -281.5z" />
-<glyph unicode="&#xe9;" horiz-adv-x="1032" d="M76 518q0 186 64 313.5t177 191.5t261 64q385 0 385 -454h-575q-3 -30 -3 -96q0 -136 38 -225.5t98.5 -131t129.5 -41.5q169 0 271 164l36 -12q-26 -84 -80.5 -156.5t-138 -118t-190.5 -45.5q-141 0 -247.5 60t-166 182.5t-59.5 304.5zM384 672h321q3 160 -32.5 266 t-107.5 106q-73 0 -121.5 -90.5t-59.5 -281.5zM426 1245q59 107 93.5 195.5t53 132.5t48.5 78q17 23 42.5 35.5t52.5 12.5q42 0 72 -26q38 -30 38 -79q0 -45 -31 -83q-32 -40 -95 -85t-120 -87.5t-132 -111.5z" />
-<glyph unicode="&#xea;" horiz-adv-x="1032" d="M76 518q0 186 64 313.5t177 191.5t261 64q385 0 385 -454h-575q-3 -30 -3 -96q0 -136 38 -225.5t98.5 -131t129.5 -41.5q169 0 271 164l36 -12q-26 -84 -80.5 -156.5t-138 -118t-190.5 -45.5q-141 0 -247.5 60t-166 182.5t-59.5 304.5zM180 1278q113 67 210 175t156 226 h37q55 -116 153.5 -224.5t213.5 -176.5l-17 -29q-117 28 -229 70.5t-180 85.5q-56 -43 -145.5 -85.5t-182.5 -70.5zM384 672h321q3 160 -32.5 266t-107.5 106q-73 0 -121.5 -90.5t-59.5 -281.5z" />
-<glyph unicode="&#xeb;" horiz-adv-x="1032" d="M76 518q0 186 64 313.5t177 191.5t261 64q385 0 385 -454h-575q-3 -30 -3 -96q0 -136 38 -225.5t98.5 -131t129.5 -41.5q169 0 271 164l36 -12q-26 -84 -80.5 -156.5t-138 -118t-190.5 -45.5q-141 0 -247.5 60t-166 182.5t-59.5 304.5zM180 1403q0 40 21 75.5t56.5 56.5 t76.5 21q40 0 76 -21t58 -56.5t22 -75.5q0 -42 -21.5 -77.5t-57.5 -56t-77 -20.5t-76.5 20.5t-56.5 56t-21 77.5zM384 672h321q3 160 -32.5 266t-107.5 106q-73 0 -121.5 -90.5t-59.5 -281.5zM645 1403q0 40 21 75.5t57 56.5t78 21q40 0 75.5 -21t56.5 -56.5t21 -75.5 q0 -42 -21 -77.5t-56 -56t-76 -20.5q-42 0 -78 20.5t-57 56t-21 77.5z" />
-<glyph unicode="&#xec;" horiz-adv-x="645" d="M28 1594q0 47 38 79q30 26 70 26q28 0 54 -13t44 -35q24 -28 40 -60.5t56 -135.5t99 -210l-23 -18q-61 56 -110 94.5t-126.5 94t-109.5 95.5t-32 83zM49 0v43q49 0 77.5 13t41 45t12.5 89v646q0 95 -29 137.5t-102 42.5v43q65 -6 127 -6q181 0 299 28v-891q0 -57 13 -89 t41 -45t77 -13v-43q-204 8 -272 8q-65 0 -285 -8z" />
-<glyph unicode="&#xed;" horiz-adv-x="645" d="M49 0v43q49 0 77.5 13t41 45t12.5 89v646q0 95 -29 137.5t-102 42.5v43q65 -6 127 -6q181 0 299 28v-891q0 -57 13 -89t41 -45t77 -13v-43q-204 8 -272 8q-65 0 -285 -8zM183 1245q59 107 93.5 195.5t53 132.5t48.5 78q17 23 42.5 35.5t52.5 12.5q42 0 72 -26 q38 -30 38 -79q0 -45 -31 -83q-32 -40 -95 -85t-120 -87.5t-132 -111.5z" />
-<glyph unicode="&#xee;" horiz-adv-x="645" d="M-63 1278q113 67 210 175t156 226h37q55 -116 153.5 -224.5t213.5 -176.5l-17 -29q-117 28 -229 70.5t-180 85.5q-56 -43 -145.5 -85.5t-182.5 -70.5zM49 0v43q49 0 77.5 13t41 45t12.5 89v646q0 95 -29 137.5t-102 42.5v43q65 -6 127 -6q181 0 299 28v-891q0 -57 13 -89 t41 -45t77 -13v-43q-204 8 -272 8q-65 0 -285 -8z" />
-<glyph unicode="&#xef;" horiz-adv-x="645" d="M-63 1403q0 40 21 75.5t56.5 56.5t76.5 21q40 0 76 -21t58 -56.5t22 -75.5q0 -42 -21.5 -77.5t-57.5 -56t-77 -20.5t-76.5 20.5t-56.5 56t-21 77.5zM49 0v43q49 0 77.5 13t41 45t12.5 89v646q0 95 -29 137.5t-102 42.5v43q65 -6 127 -6q181 0 299 28v-891q0 -57 13 -89 t41 -45t77 -13v-43q-204 8 -272 8q-65 0 -285 -8zM402 1403q0 40 21 75.5t57 56.5t78 21q40 0 75.5 -21t56.5 -56.5t21 -75.5q0 -42 -21 -77.5t-56 -56t-76 -20.5q-42 0 -78 20.5t-57 56t-21 77.5z" />
-<glyph unicode="&#xf0;" horiz-adv-x="1161" d="M78 508q-1 185 58 315.5t164.5 197t242.5 66.5q112 0 180 -56q-52 191 -168 323l-328 -160l-18 37l317 154q-104 106 -262 182l17 35q193 -66 346 -168l293 143l18 -37l-273 -132q192 -139 301 -335.5t109 -449.5q0 -218 -64 -364.5t-176.5 -218t-259.5 -71.5 q-231 0 -364 131t-133 408zM387 526q0 -176 24 -291.5t65.5 -170t94.5 -54.5q89 0 145 142t56 462q0 212 -37 373q-47 53 -131 53q-217 0 -217 -514z" />
-<glyph unicode="&#xf1;" horiz-adv-x="1257" d="M49 0v43q49 0 77.5 13t41 45t12.5 89v646q0 95 -29 137.5t-102 42.5v43q65 -6 127 -6q181 0 299 28v-184q93 190 336 190q84 0 137.5 -20t87.5 -59t49 -101t15 -166v-551q0 -57 13 -89t41 -45t77 -13v-43q-204 8 -270 8q-63 0 -267 -8v43q42 0 66 13t34.5 45t10.5 89v637 q0 84 -27.5 127t-99.5 43q-56 0 -102.5 -31t-73.5 -85.5t-27 -120.5v-570q0 -57 11 -89t35 -45t65 -13v-43q-188 8 -254 8q-63 0 -283 -8zM220 1325q32 145 100.5 215t155.5 70q58 0 99.5 -18.5t112.5 -67.5t134 -49q92 0 157 108l29 -14q-32 -145 -100 -215t-154 -70 q-59 0 -101 19t-113 68.5t-134 49.5q-92 0 -158 -110z" />
-<glyph unicode="&#xf2;" horiz-adv-x="1157" d="M76 528q0 290 134 424.5t368 134.5t367.5 -134t133.5 -425q0 -290 -133.5 -423.5t-367.5 -133.5t-368 133.5t-134 423.5zM287 1594q0 47 38 79q30 26 70 26q28 0 54 -13t44 -35q24 -28 40 -60.5t56 -135.5t99 -210l-23 -18q-61 56 -110 94.5t-126.5 94t-109.5 95.5 t-32 83zM385 528q0 -262 52.5 -389t140.5 -127q89 0 140.5 126.5t51.5 389.5q0 264 -51.5 391.5t-140.5 127.5q-88 0 -140.5 -128t-52.5 -391z" />
-<glyph unicode="&#xf3;" horiz-adv-x="1157" d="M76 528q0 290 134 424.5t368 134.5t367.5 -134t133.5 -425q0 -290 -133.5 -423.5t-367.5 -133.5t-368 133.5t-134 423.5zM385 528q0 -262 52.5 -389t140.5 -127q89 0 140.5 126.5t51.5 389.5q0 264 -51.5 391.5t-140.5 127.5q-88 0 -140.5 -128t-52.5 -391zM442 1245 q59 107 93.5 195.5t53 132.5t48.5 78q17 23 42.5 35.5t52.5 12.5q42 0 72 -26q38 -30 38 -79q0 -45 -31 -83q-32 -40 -95 -85t-120 -87.5t-132 -111.5z" />
-<glyph unicode="&#xf4;" horiz-adv-x="1157" d="M76 528q0 290 134 424.5t368 134.5t367.5 -134t133.5 -425q0 -290 -133.5 -423.5t-367.5 -133.5t-368 133.5t-134 423.5zM196 1278q113 67 210 175t156 226h37q55 -116 153.5 -224.5t213.5 -176.5l-17 -29q-117 28 -229 70.5t-180 85.5q-56 -43 -145.5 -85.5 t-182.5 -70.5zM385 528q0 -262 52.5 -389t140.5 -127q89 0 140.5 126.5t51.5 389.5q0 264 -51.5 391.5t-140.5 127.5q-88 0 -140.5 -128t-52.5 -391z" />
-<glyph unicode="&#xf5;" horiz-adv-x="1157" d="M76 528q0 290 134 424.5t368 134.5t367.5 -134t133.5 -425q0 -290 -133.5 -423.5t-367.5 -133.5t-368 133.5t-134 423.5zM160 1325q32 145 100.5 215t155.5 70q58 0 99.5 -18.5t112.5 -67.5t134 -49q92 0 157 108l29 -14q-32 -145 -100 -215t-154 -70q-59 0 -101 19 t-113 68.5t-134 49.5q-92 0 -158 -110zM385 528q0 -262 52.5 -389t140.5 -127q89 0 140.5 126.5t51.5 389.5q0 264 -51.5 391.5t-140.5 127.5q-88 0 -140.5 -128t-52.5 -391z" />
-<glyph unicode="&#xf6;" horiz-adv-x="1157" d="M76 528q0 290 134 424.5t368 134.5t367.5 -134t133.5 -425q0 -290 -133.5 -423.5t-367.5 -133.5t-368 133.5t-134 423.5zM196 1403q0 40 21 75.5t56.5 56.5t76.5 21q40 0 76 -21t58 -56.5t22 -75.5q0 -42 -21.5 -77.5t-57.5 -56t-77 -20.5t-76.5 20.5t-56.5 56t-21 77.5z M385 528q0 -262 52.5 -389t140.5 -127q89 0 140.5 126.5t51.5 389.5q0 264 -51.5 391.5t-140.5 127.5q-88 0 -140.5 -128t-52.5 -391zM661 1403q0 40 21 75.5t57 56.5t78 21q40 0 75.5 -21t56.5 -56.5t21 -75.5q0 -42 -21 -77.5t-56 -56t-76 -20.5q-42 0 -78 20.5t-57 56 t-21 77.5z" />
-<glyph unicode="&#xf7;" horiz-adv-x="1296" d="M138 696v62h1026v-62h-1026zM537 432q0 46 33 79.5t79 33.5q48 0 81.5 -33t33.5 -80t-33.5 -81t-81.5 -34q-46 0 -79 34t-33 81zM537 1022q0 46 33 79.5t79 33.5q48 0 81.5 -33.5t33.5 -79.5q0 -48 -33.5 -80.5t-81.5 -32.5q-46 0 -79 32.5t-33 80.5z" />
-<glyph unicode="&#xf8;" horiz-adv-x="1155" d="M76 528q0 290 134 424.5t368 134.5q183 0 300 -78l138 199l39 -26l-139 -202q163 -139 163 -452q0 -290 -133.5 -423.5t-367.5 -133.5q-177 0 -294 73l-134 -194l-41 27l134 197q-167 138 -167 454zM385 528q0 -148 18 -256l337 575q-47 200 -162 200q-88 0 -140.5 -128 t-52.5 -391zM418 199q49 -187 160 -187q89 0 140.5 126.5t51.5 389.5q0 142 -16 248z" />
-<glyph unicode="&#xf9;" horiz-adv-x="1241" d="M27 1016v43q65 -6 127 -6q179 0 299 28v-848q0 -85 25.5 -128.5t96.5 -43.5q54 0 99.5 31.5t72.5 86t27 120.5v537q0 94 -29.5 137t-101.5 43v43q65 -6 127 -6q179 0 299 28v-858q0 -95 29.5 -137.5t101.5 -42.5v-43q-64 6 -127 6q-180 0 -299 -29v185 q-93 -191 -330 -191q-153 0 -223 80q-34 38 -48.5 101t-14.5 165v519q0 94 -29.5 137t-101.5 43zM298 1594q0 47 38 79q30 26 70 26q28 0 54 -13t44 -35q24 -28 40 -60.5t56 -135.5t99 -210l-23 -18q-61 56 -110 94.5t-126.5 94t-109.5 95.5t-32 83z" />
-<glyph unicode="&#xfa;" horiz-adv-x="1241" d="M27 1016v43q65 -6 127 -6q179 0 299 28v-848q0 -85 25.5 -128.5t96.5 -43.5q54 0 99.5 31.5t72.5 86t27 120.5v537q0 94 -29.5 137t-101.5 43v43q65 -6 127 -6q179 0 299 28v-858q0 -95 29.5 -137.5t101.5 -42.5v-43q-64 6 -127 6q-180 0 -299 -29v185 q-93 -191 -330 -191q-153 0 -223 80q-34 38 -48.5 101t-14.5 165v519q0 94 -29.5 137t-101.5 43zM453 1245q59 107 93.5 195.5t53 132.5t48.5 78q17 23 42.5 35.5t52.5 12.5q42 0 72 -26q38 -30 38 -79q0 -45 -31 -83q-32 -40 -95 -85t-120 -87.5t-132 -111.5z" />
-<glyph unicode="&#xfb;" horiz-adv-x="1241" d="M27 1016v43q65 -6 127 -6q179 0 299 28v-848q0 -85 25.5 -128.5t96.5 -43.5q54 0 99.5 31.5t72.5 86t27 120.5v537q0 94 -29.5 137t-101.5 43v43q65 -6 127 -6q179 0 299 28v-858q0 -95 29.5 -137.5t101.5 -42.5v-43q-64 6 -127 6q-180 0 -299 -29v185 q-93 -191 -330 -191q-153 0 -223 80q-34 38 -48.5 101t-14.5 165v519q0 94 -29.5 137t-101.5 43zM207 1278q113 67 210 175t156 226h37q55 -116 153.5 -224.5t213.5 -176.5l-17 -29q-117 28 -229 70.5t-180 85.5q-56 -43 -145.5 -85.5t-182.5 -70.5z" />
-<glyph unicode="&#xfc;" horiz-adv-x="1241" d="M27 1016v43q65 -6 127 -6q179 0 299 28v-848q0 -85 25.5 -128.5t96.5 -43.5q54 0 99.5 31.5t72.5 86t27 120.5v537q0 94 -29.5 137t-101.5 43v43q65 -6 127 -6q179 0 299 28v-858q0 -95 29.5 -137.5t101.5 -42.5v-43q-64 6 -127 6q-180 0 -299 -29v185 q-93 -191 -330 -191q-153 0 -223 80q-34 38 -48.5 101t-14.5 165v519q0 94 -29.5 137t-101.5 43zM207 1403q0 40 21 75.5t56.5 56.5t76.5 21q40 0 76 -21t58 -56.5t22 -75.5q0 -42 -21.5 -77.5t-57.5 -56t-77 -20.5t-76.5 20.5t-56.5 56t-21 77.5zM672 1403q0 40 21 75.5 t57 56.5t78 21q40 0 75.5 -21t56.5 -56.5t21 -75.5q0 -42 -21 -77.5t-56 -56t-76 -20.5q-42 0 -78 20.5t-57 56t-21 77.5z" />
-<glyph unicode="&#xfd;" horiz-adv-x="1063" d="M-29 1016v43q135 -12 281 -12q121 0 285 12v-43q-44 0 -69 -3t-42.5 -15t-17.5 -39q0 -24 14 -58l251 -605l140 394q33 98 33 164q0 78 -40 118.5t-112 45.5v41q96 -6 199 -6t158 6v-41q-43 -11 -77.5 -51t-64.5 -125l-366 -1030q-41 -107 -90 -146q-60 -51 -179 -51 q-53 0 -104.5 17.5t-85 54.5t-33.5 92q0 63 45 101t119 38q69 0 111.5 -34t42.5 -95q0 -42 -27.5 -78.5t-75.5 -54.5q15 -2 47 -2q128 0 187 162l33 98l-435 987q-32 71 -63.5 93t-63.5 22zM389 1245q59 107 93.5 195.5t53 132.5t48.5 78q17 23 42.5 35.5t52.5 12.5 q42 0 72 -26q38 -30 38 -79q0 -45 -31 -83q-32 -40 -95 -85t-120 -87.5t-132 -111.5z" />
-<glyph unicode="&#xfe;" horiz-adv-x="1196" d="M8 1536v43q65 -6 127 -6q183 0 299 29v-714q42 97 125 148t193 51q106 0 189 -57.5t130 -172t47 -279.5q0 -197 -58 -333t-164 -205t-251 -69q-134 0 -211 67v-206q0 -90 46 -125t138 -35v-43q-30 1 -135 5t-209 4q-74 0 -154.5 -4t-103.5 -5v43q46 0 72.5 12.5 t38.5 42.5t12 85v1544q0 95 -28.5 137.5t-102.5 42.5zM434 83q45 -56 131 -56q130 0 187 130.5t57 379.5t-45.5 355.5t-130.5 106.5q-70 0 -125.5 -47.5t-73.5 -132.5v-736z" />
-<glyph unicode="&#xff;" horiz-adv-x="1063" d="M-29 1016v43q135 -12 281 -12q121 0 285 12v-43q-44 0 -69 -3t-42.5 -15t-17.5 -39q0 -24 14 -58l251 -605l140 394q33 98 33 164q0 78 -40 118.5t-112 45.5v41q96 -6 199 -6t158 6v-41q-43 -11 -77.5 -51t-64.5 -125l-366 -1030q-41 -107 -90 -146q-60 -51 -179 -51 q-53 0 -104.5 17.5t-85 54.5t-33.5 92q0 63 45 101t119 38q69 0 111.5 -34t42.5 -95q0 -42 -27.5 -78.5t-75.5 -54.5q15 -2 47 -2q128 0 187 162l33 98l-435 987q-32 71 -63.5 93t-63.5 22zM143 1403q0 40 21 75.5t56.5 56.5t76.5 21q40 0 76 -21t58 -56.5t22 -75.5 q0 -42 -21.5 -77.5t-57.5 -56t-77 -20.5t-76.5 20.5t-56.5 56t-21 77.5zM608 1403q0 40 21 75.5t57 56.5t78 21q40 0 75.5 -21t56.5 -56.5t21 -75.5q0 -42 -21 -77.5t-56 -56t-76 -20.5q-42 0 -78 20.5t-57 56t-21 77.5z" />
-<glyph unicode="&#x152;" horiz-adv-x="2038" d="M88 713q0 226 91 400t253 270t369 96q87 0 178 -33q197 -2 514 -2q291 0 412 6q-15 -151 -15 -279q0 -89 6 -139h-47q-18 140 -54 220.5t-92 115.5t-140 35h-43q-67 0 -98.5 -12t-43.5 -47t-12 -111v-483h84q93 0 130 58t49.5 113.5t15.5 69.5h47q-7 -86 -7 -166l1 -96 q0 -93 12 -262h-47q-14 79 -30.5 127t-56.5 81.5t-114 33.5h-84v-492q0 -76 12 -111t43.5 -47t98.5 -12h59q131 0 209.5 94.5t101.5 317.5h47q-6 -67 -6 -172q0 -157 15 -287q-134 6 -453 6q-324 0 -520 -2q-84 -33 -174 -33q-213 0 -373.5 88t-249 255.5t-88.5 398.5z M428 721q0 -213 50 -375t136.5 -250t192.5 -88q53 0 107 20t90 61.5t36 103.5v1052q0 72 -37.5 116t-93.5 62.5t-116 18.5q-110 0 -193 -91.5t-127.5 -255t-44.5 -374.5z" />
-<glyph unicode="&#x153;" horiz-adv-x="1667" d="M78 528q0 291 128 425t353 134q228 0 333 -176q56 87 140 131.5t187 44.5q378 0 378 -454h-541q-3 -30 -3 -96q0 -136 38 -225.5t98.5 -131t129.5 -41.5q151 0 235 164l39 -12q-25 -84 -75.5 -156.5t-127.5 -118t-176 -45.5q-104 0 -187.5 42.5t-138.5 126.5 q-105 -169 -329 -169q-225 0 -353 133.5t-128 423.5zM387 528q0 -263 46.5 -389.5t125.5 -126.5q85 0 134.5 126t49.5 388q0 265 -49.5 393t-134.5 128q-79 0 -125.5 -127.5t-46.5 -391.5zM1050 672h289q2 162 -31 267t-100 105q-64 0 -106 -90.5t-52 -281.5z" />
-<glyph unicode="&#x178;" horiz-adv-x="1276" d="M-14 1409v43q89 -10 241 -10q192 0 385 10v-43q-72 0 -113.5 -12.5t-41.5 -47.5q0 -21 14 -46l312 -600l159 319q81 162 81 253q0 69 -44 101t-127 35v41q138 -6 256 -6q94 0 156 6v-41q-47 -20 -94.5 -75.5t-102.5 -161.5l-242 -479v-478q0 -77 11.5 -112t42.5 -48 t100 -16v-41q-111 6 -315 6q-219 0 -318 -6v41q68 3 99.5 16t43 48t11.5 112v346l-396 731q-63 115 -118 115zM278 1722q0 40 21 76t56 58t76 22q40 0 76 -22t58 -58t22 -76q0 -41 -22 -76t-58 -56t-76 -21q-41 0 -76.5 20.5t-56 56t-20.5 76.5zM767 1722q0 41 21 77 t57 57.5t78 21.5q40 0 75.5 -22t56.5 -58t21 -76q0 -41 -21 -76.5t-56.5 -56t-75.5 -20.5q-42 0 -78 20.5t-57 56t-21 76.5z" />
-<glyph unicode="&#x2c6;" horiz-adv-x="823" d="M27 1278q113 67 210 175t156 226h37q55 -116 153.5 -224.5t213.5 -176.5l-17 -29q-117 28 -229 70.5t-180 85.5q-56 -43 -145.5 -85.5t-182.5 -70.5z" />
-<glyph unicode="&#x2dc;" horiz-adv-x="842" d="M27 1325q32 145 100.5 215t155.5 70q58 0 99.5 -18.5t112.5 -67.5t134 -49q92 0 157 108l29 -14q-32 -145 -100 -215t-154 -70q-59 0 -101 19t-113 68.5t-134 49.5q-92 0 -158 -110z" />
-<glyph unicode="&#x2000;" horiz-adv-x="964" />
-<glyph unicode="&#x2001;" horiz-adv-x="1929" />
-<glyph unicode="&#x2002;" horiz-adv-x="964" />
-<glyph unicode="&#x2003;" horiz-adv-x="1929" />
-<glyph unicode="&#x2004;" horiz-adv-x="643" />
-<glyph unicode="&#x2005;" horiz-adv-x="482" />
-<glyph unicode="&#x2006;" horiz-adv-x="321" />
-<glyph unicode="&#x2007;" horiz-adv-x="321" />
-<glyph unicode="&#x2008;" horiz-adv-x="241" />
-<glyph unicode="&#x2009;" horiz-adv-x="385" />
-<glyph unicode="&#x200a;" horiz-adv-x="107" />
-<glyph unicode="&#x2010;" horiz-adv-x="985" d="M123 469v170h739v-170h-739z" />
-<glyph unicode="&#x2011;" horiz-adv-x="985" d="M123 469v170h739v-170h-739z" />
-<glyph unicode="&#x2012;" horiz-adv-x="985" d="M123 469v170h739v-170h-739z" />
-<glyph unicode="&#x2013;" horiz-adv-x="1233" d="M115 453v202h1003v-202h-1003z" />
-<glyph unicode="&#x2014;" horiz-adv-x="1833" d="M115 453v202h1603v-202h-1603z" />
-<glyph unicode="&#x2018;" horiz-adv-x="528" d="M91 1162q0 105 54 192t161 136l19 -37q-59 -25 -103 -76t-53 -104q-5 -28 -5 -48q0 -23 5 -38q47 49 119 49t117 -42t45 -116q0 -70 -47.5 -114t-120.5 -44q-100 0 -146 72q-21 31 -33 76.5t-12 93.5z" />
-<glyph unicode="&#x2019;" horiz-adv-x="518" d="M75 1320q0 70 47.5 114t120.5 44q100 0 146 -72q21 -31 33 -76.5t12 -93.5q0 -105 -54 -192t-161 -136l-19 37q59 25 103 76t53 104q5 28 5 48q0 23 -5 38q-47 -49 -119 -49t-117 42t-45 116z" />
-<glyph unicode="&#x201a;" horiz-adv-x="555" d="M100 129q0 70 47.5 114t120.5 44q100 0 146 -72q21 -31 33 -76.5t12 -93.5q0 -105 -54 -192t-161 -136l-19 37q59 25 103 76t53 104q5 28 5 48q0 23 -5 38q-47 -49 -119 -49t-117 42t-45 116z" />
-<glyph unicode="&#x201c;" horiz-adv-x="950" d="M91 1161q0 105 54 192t161 136l19 -37q-59 -25 -103 -76t-53 -104q-5 -28 -5 -48q0 -23 5 -38q47 49 119 49t117 -42t45 -116q0 -70 -47.5 -114t-120.5 -44q-100 0 -146 72q-21 31 -33 76.5t-12 93.5zM513 1161q0 105 54 192t161 136l19 -37q-59 -25 -103 -76t-53 -104 q-5 -28 -5 -48q0 -23 5 -38q47 49 119 49t117 -42t45 -116q0 -70 -47.5 -114t-120.5 -44q-100 0 -146 72q-21 31 -33 76.5t-12 93.5z" />
-<glyph unicode="&#x201d;" horiz-adv-x="940" d="M75 1320q0 70 47.5 114t120.5 44q100 0 146 -72q21 -31 33 -76.5t12 -93.5q0 -105 -54 -192t-161 -136l-19 37q59 25 103 76t53 104q5 28 5 48q0 23 -5 38q-47 -49 -119 -49t-117 42t-45 116zM497 1320q0 70 47.5 114t120.5 44q100 0 146 -72q21 -31 33 -76.5t12 -93.5 q0 -105 -54 -192t-161 -136l-19 37q59 25 103 76t53 104q5 28 5 48q0 23 -5 38q-47 -49 -119 -49t-117 42t-45 116z" />
-<glyph unicode="&#x201e;" horiz-adv-x="977" d="M100 129q0 70 47.5 114t120.5 44q100 0 146 -72q21 -31 33 -76.5t12 -93.5q0 -105 -54 -192t-161 -136l-19 37q59 25 103 76t53 104q5 28 5 48q0 23 -5 38q-47 -49 -119 -49t-117 42t-45 116zM522 129q0 70 47.5 114t120.5 44q100 0 146 -72q21 -31 33 -76.5t12 -93.5 q0 -105 -54 -192t-161 -136l-19 37q59 25 103 76t53 104q5 28 5 48q0 23 -5 38q-47 -49 -119 -49t-117 42t-45 116z" />
-<glyph unicode="&#x2022;" horiz-adv-x="993" d="M152 551q0 94 46 173.5t125 126t173 46.5t173.5 -46.5t126 -126t46.5 -173.5t-46.5 -173t-126 -125t-173.5 -46t-173 46t-125 125t-46 173z" />
-<glyph unicode="&#x2026;" horiz-adv-x="1700" d="M102 129q0 73 47 115.5t127 42.5q81 0 128 -42.5t47 -115.5t-47 -115.5t-128 -42.5q-80 0 -127 42.5t-47 115.5zM677 129q0 73 47 115.5t127 42.5q81 0 128 -42.5t47 -115.5t-47 -115.5t-128 -42.5q-80 0 -127 42.5t-47 115.5zM1251 129q0 73 47 115.5t127 42.5 q81 0 128 -42.5t47 -115.5t-47 -115.5t-128 -42.5q-80 0 -127 42.5t-47 115.5z" />
-<glyph unicode="&#x202f;" horiz-adv-x="385" />
-<glyph unicode="&#x2039;" horiz-adv-x="741" d="M53 516v27q165 102 301 237t264 312l31 -13q-48 -158 -128 -309.5t-163 -237.5q82 -84 162.5 -238t128.5 -314l-31 -11q-127 176 -263 310.5t-302 236.5z" />
-<glyph unicode="&#x203a;" horiz-adv-x="741" d="M94 -20q49 160 128 311t161 235q-81 84 -160.5 237.5t-128.5 315.5l31 13q128 -176 264 -311.5t299 -237.5v-27q-163 -102 -299 -237t-264 -310z" />
-<glyph unicode="&#x205f;" horiz-adv-x="482" />
-<glyph unicode="&#x20ac;" horiz-adv-x="1309" d="M63 608v41h150q-2 31 -2 64q0 51 4 100h-152v41h157q24 187 108.5 328.5t214 219t284.5 77.5q174 0 283 -66q100 -65 100 -149q0 -63 -45 -101.5t-118 -38.5q-71 0 -113.5 35.5t-42.5 100.5q0 45 31 84.5t82 56.5q-58 41 -154 41q-92 0 -160.5 -70.5t-109 -202.5 t-50.5 -315h426l-22 -41h-406q-2 -45 -2 -92l1 -72h315l-25 -41h-289q25 -600 322 -600q48 0 88 11.5t63 29.5q-51 17 -80.5 56.5t-29.5 84.5q0 65 42.5 100.5t113.5 35.5q72 0 117.5 -38.5t45.5 -101.5q0 -45 -27.5 -84.5t-74.5 -64.5q-126 -66 -283 -66q-172 0 -303.5 75 t-210.5 218.5t-96 343.5h-152z" />
-<glyph unicode="&#x2122;" horiz-adv-x="2208" d="M131 1450q117 -6 397 -6q279 0 396 6q-15 -104 -15 -193q0 -65 6 -106h-47q-15 133 -57 192.5t-98 59.5h-74v-612q0 -60 10.5 -86t39 -36t95.5 -14v-41q-114 7 -256 7q-156 0 -258 -7v41q67 4 96 14t39.5 36t10.5 86v612h-74q-56 0 -98 -59.5t-58 -192.5h-47q6 38 6 106 q0 87 -14 193zM1016 614v41q48 4 68.5 12t28 30t7.5 73v524q0 51 -7.5 73.5t-28 30.5t-68.5 11v41q68 -6 203 -6q72 0 139 6l209 -514l192 508h133q125 0 195 6v-41q-49 -3 -69.5 -11t-28 -30.5t-7.5 -73.5v-524q0 -51 7.5 -73t28 -30t69.5 -12v-41q-96 7 -215 7 q-118 0 -197 -7v41q38 4 54.5 12t23 30.5t6.5 72.5v545l-268 -711h-33l-291 715v-549q0 -50 6.5 -72.5t23 -30.5t54.5 -12v-41q-49 7 -106 7q-75 0 -129 -7z" />
-<glyph unicode="&#x25fc;" horiz-adv-x="1060" d="M0 0v1060h1060v-1060h-1060z" />
-<glyph unicode="&#xfb03;" horiz-adv-x="2021" d="M35 1016v41h151q0 107 35.5 196.5t100.5 151.5q62 62 155.5 94.5t206.5 32.5q191 0 311 -112q20 23 43 44q75 66 188 102t251 36q189 0 313 -76q36 -21 58 -57t22 -80q0 -74 -50 -116t-143 -42q-90 0 -141 42t-51 113q0 54 35.5 93.5t99.5 58.5q-19 12 -55.5 19.5 t-75.5 7.5q-79 0 -138 -29.5t-94 -77.5q-36 -41 -54.5 -91.5t-25 -121.5t-6.5 -188h244q166 0 258.5 5t179.5 19v-891q0 -57 14 -89t45 -45t85 -13v-43q-220 8 -285 8q-69 0 -285 -8v43q49 0 77.5 13t41.5 45t13 89v646q0 94 -32 137t-112 43h-244v-826q0 -83 40.5 -115 t123.5 -32v-43q-252 8 -305 8q-77 0 -297 -8v43q53 0 84 13t45.5 45t14.5 89v826h-383v-826q0 -57 12.5 -89t40.5 -45t78 -13v-43q-224 8 -283 8q-71 0 -299 -8v43q54 0 84.5 13t44.5 45t14 89v826h-151zM494 1057h383q0 201 95 333q-104 97 -255 97q-113 0 -168 -70 t-55 -225v-135z" />
-<glyph unicode="&#xfb04;" horiz-adv-x="2030" d="M35 1016v41h151q0 107 35.5 196.5t100.5 151.5q62 62 155.5 94.5t206.5 32.5q176 0 290 -93q22 28 50 52q67 57 155.5 84t182.5 27q42 0 133.5 -8.5t144.5 -8.5q105 0 213 21v-1416q0 -57 14 -89t45 -45t85 -13v-43q-220 8 -285 8q-69 0 -285 -8v43q49 0 77.5 13t41.5 45 t13 89v1194q0 95 -41 134q-21 22 -54.5 34.5t-68.5 12.5q-57 0 -94.5 -17.5t-67.5 -52.5q-38 -45 -50 -116t-12 -203v-119h215v-41h-215v-826q0 -83 40.5 -115t123.5 -32v-43q-252 8 -305 8q-77 0 -297 -8v43q53 0 84 13t45.5 45t14.5 89v826h-383v-826q0 -57 12.5 -89 t40.5 -45t78 -13v-43q-224 8 -283 8q-71 0 -299 -8v43q54 0 84.5 13t44.5 45t14 89v826h-151zM494 1057h383q0 228 75 350q-99 80 -235 80q-113 0 -168 -70t-55 -225v-135z" />
-<hkern u1="&#x20;" u2="&#xb2;" k="23" />
-<hkern u1="&#x20;" u2="x" k="20" />
-<hkern u1="&#x20;" u2="X" k="31" />
-<hkern u1="&#x20;" u2="V" k="80" />
-<hkern u1="&#x20;" u2="&#x34;" k="47" />
-<hkern u1="&#x20;" u2="&#x33;" k="16" />
-<hkern u1="&#x20;" u2="&#x32;" k="16" />
-<hkern u1="&#x22;" u2="&#xef;" k="-55" />
-<hkern u1="&#x23;" u2="&#x34;" k="53" />
-<hkern u1="&#x24;" u2="&#x33;" k="8" />
-<hkern u1="&#x26;" u2="&#xef;" k="-6" />
-<hkern u1="&#x27;" u2="&#xef;" k="-55" />
-<hkern u1="&#x28;" u2="&#xef;" k="-23" />
-<hkern u1="&#x28;" u2="&#xec;" k="-14" />
-<hkern u1="&#x28;" u2="&#xcf;" k="-12" />
-<hkern u1="&#x28;" u2="&#x7b;" k="41" />
-<hkern u1="&#x28;" u2="x" k="10" />
-<hkern u1="&#x28;" u2="&#x39;" k="49" />
-<hkern u1="&#x28;" u2="&#x38;" k="43" />
-<hkern u1="&#x28;" u2="&#x37;" k="47" />
-<hkern u1="&#x28;" u2="&#x36;" k="63" />
-<hkern u1="&#x28;" u2="&#x34;" k="43" />
-<hkern u1="&#x28;" u2="&#x32;" k="41" />
-<hkern u1="&#x28;" u2="&#x31;" k="35" />
-<hkern u1="&#x28;" u2="&#x30;" k="74" />
-<hkern u1="&#x28;" u2="&#x28;" k="47" />
-<hkern u1="&#x29;" u2="&#x7d;" k="29" />
-<hkern u1="&#x29;" u2="]" k="8" />
-<hkern u1="&#x29;" u2="&#x29;" k="47" />
-<hkern u1="&#x2b;" u2="&#x38;" k="27" />
-<hkern u1="&#x2b;" u2="&#x34;" k="45" />
-<hkern u1="&#x2c;" u2="J" k="-223" />
-<hkern u1="&#x2f;" u2="&#x39;" k="47" />
-<hkern u1="&#x2f;" u2="&#x36;" k="41" />
-<hkern u1="&#x2f;" u2="&#x35;" k="53" />
-<hkern u1="&#x2f;" u2="&#x34;" k="154" />
-<hkern u1="&#x2f;" u2="&#x33;" k="47" />
-<hkern u1="&#x2f;" u2="&#x32;" k="39" />
-<hkern u1="&#x2f;" u2="&#x31;" k="12" />
-<hkern u1="&#x2f;" u2="&#x30;" k="63" />
-<hkern u1="&#x2f;" u2="&#x2f;" k="176" />
-<hkern u1="&#x30;" u2="&#xb0;" k="78" />
-<hkern u1="&#x30;" u2="&#x7d;" k="57" />
-<hkern u1="&#x30;" u2="]" k="18" />
-<hkern u1="&#x30;" u2="\" k="61" />
-<hkern u1="&#x30;" u2="&#x34;" k="16" />
-<hkern u1="&#x30;" u2="&#x29;" k="74" />
-<hkern u1="&#x31;" u2="&#xf7;" k="8" />
-<hkern u1="&#x31;" u2="&#xd7;" k="8" />
-<hkern u1="&#x31;" u2="&#xb7;" k="14" />
-<hkern u1="&#x31;" u2="&#xb0;" k="12" />
-<hkern u1="&#x31;" u2="&#x7d;" k="12" />
-<hkern u1="&#x31;" u2="\" k="55" />
-<hkern u1="&#x31;" u2="&#x35;" k="25" />
-<hkern u1="&#x31;" u2="&#x33;" k="14" />
-<hkern u1="&#x31;" u2="&#x29;" k="33" />
-<hkern u1="&#x32;" u2="&#xf7;" k="12" />
-<hkern u1="&#x32;" u2="&#xb7;" k="10" />
-<hkern u1="&#x32;" u2="&#xb0;" k="51" />
-<hkern u1="&#x32;" u2="&#x7d;" k="23" />
-<hkern u1="&#x32;" u2="]" k="10" />
-<hkern u1="&#x32;" u2="\" k="63" />
-<hkern u1="&#x32;" u2="&#x29;" k="41" />
-<hkern u1="&#x32;" u2="&#x20;" k="20" />
-<hkern u1="&#x33;" u2="&#xf7;" k="23" />
-<hkern u1="&#x33;" u2="&#xb7;" k="23" />
-<hkern u1="&#x33;" u2="&#xb0;" k="61" />
-<hkern u1="&#x33;" u2="&#x7d;" k="29" />
-<hkern u1="&#x33;" u2="]" k="14" />
-<hkern u1="&#x33;" u2="\" k="59" />
-<hkern u1="&#x33;" u2="&#x29;" k="51" />
-<hkern u1="&#x33;" u2="&#x20;" k="12" />
-<hkern u1="&#x34;" u2="&#xf7;" k="49" />
-<hkern u1="&#x34;" u2="&#xb0;" k="57" />
-<hkern u1="&#x34;" u2="&#x7d;" k="10" />
-<hkern u1="&#x34;" u2="]" k="10" />
-<hkern u1="&#x34;" u2="\" k="78" />
-<hkern u1="&#x34;" u2="&#x37;" k="25" />
-<hkern u1="&#x34;" u2="&#x33;" k="35" />
-<hkern u1="&#x34;" u2="&#x29;" k="41" />
-<hkern u1="&#x34;" u2="&#x20;" k="23" />
-<hkern u1="&#x35;" u2="&#xf7;" k="29" />
-<hkern u1="&#x35;" u2="&#xb7;" k="8" />
-<hkern u1="&#x35;" u2="&#xb0;" k="8" />
-<hkern u1="&#x35;" u2="&#x7d;" k="8" />
-<hkern u1="&#x35;" u2="]" k="8" />
-<hkern u1="&#x35;" u2="\" k="23" />
-<hkern u1="&#x35;" u2="&#x29;" k="43" />
-<hkern u1="&#x35;" u2="&#x20;" k="33" />
-<hkern u1="&#x36;" u2="&#xb0;" k="8" />
-<hkern u1="&#x36;" u2="&#x7d;" k="25" />
-<hkern u1="&#x36;" u2="&#x29;" k="37" />
-<hkern u1="&#x37;" u2="&#xb7;" k="27" />
-<hkern u1="&#x37;" u2="&#x34;" k="109" />
-<hkern u1="&#x37;" u2="&#x2f;" k="29" />
-<hkern u1="&#x37;" u2="&#x29;" k="41" />
-<hkern u1="&#x37;" u2="&#x20;" k="43" />
-<hkern u1="&#x38;" u2="&#xf7;" k="27" />
-<hkern u1="&#x38;" u2="&#x7d;" k="25" />
-<hkern u1="&#x38;" u2="]" k="8" />
-<hkern u1="&#x38;" u2="&#x33;" k="23" />
-<hkern u1="&#x38;" u2="&#x29;" k="41" />
-<hkern u1="&#x39;" u2="&#xb0;" k="82" />
-<hkern u1="&#x39;" u2="&#x7d;" k="53" />
-<hkern u1="&#x39;" u2="]" k="14" />
-<hkern u1="&#x39;" u2="\" k="59" />
-<hkern u1="&#x39;" u2="&#x29;" k="70" />
-<hkern u1="&#x3d;" u2="&#x34;" k="72" />
-<hkern u1="&#x40;" u2="X" k="47" />
-<hkern u1="&#x40;" u2="V" k="23" />
-<hkern u1="B" u2="&#x7d;" k="29" />
-<hkern u1="B" u2="x" k="39" />
-<hkern u1="B" u2="p" k="4" />
-<hkern u1="B" u2="]" k="8" />
-<hkern u1="B" u2="X" k="61" />
-<hkern u1="B" u2="V" k="47" />
-<hkern u1="B" u2="&#x29;" k="39" />
-<hkern u1="F" u2="&#x40;" k="51" />
-<hkern u1="F" u2="&#x2f;" k="63" />
-<hkern u1="F" u2="&#x26;" k="25" />
-<hkern u1="F" u2="&#x20;" k="51" />
-<hkern u1="J" u2="&#xdf;" k="23" />
-<hkern u1="K" u2="&#xff;" k="63" />
-<hkern u1="P" u2="&#x7d;" k="14" />
-<hkern u1="P" u2="X" k="61" />
-<hkern u1="P" u2="V" k="18" />
-<hkern u1="P" u2="&#x40;" k="47" />
-<hkern u1="P" u2="&#x2f;" k="72" />
-<hkern u1="P" u2="&#x29;" k="41" />
-<hkern u1="P" u2="&#x26;" k="20" />
-<hkern u1="P" u2="&#x20;" k="55" />
-<hkern u1="Q" u2="&#xc6;" k="41" />
-<hkern u1="Q" u2="&#xc5;" k="25" />
-<hkern u1="Q" u2="&#xc4;" k="25" />
-<hkern u1="Q" u2="&#xc3;" k="25" />
-<hkern u1="Q" u2="&#xc2;" k="25" />
-<hkern u1="Q" u2="&#xc1;" k="25" />
-<hkern u1="Q" u2="&#xc0;" k="25" />
-<hkern u1="Q" u2="J" k="-176" />
-<hkern u1="Q" u2="A" k="25" />
-<hkern u1="T" u2="&#xf0;" k="20" />
-<hkern u1="T" u2="q" k="20" />
-<hkern u1="U" u2="&#xdf;" k="43" />
-<hkern u1="V" u2="&#xed;" k="4" />
-<hkern u1="V" u2="&#xe4;" k="37" />
-<hkern u1="V" u2="&#xe3;" k="33" />
-<hkern u1="V" u2="x" k="23" />
-<hkern u1="V" u2="p" k="20" />
-<hkern u1="V" u2="&#x40;" k="31" />
-<hkern u1="V" u2="&#x2f;" k="31" />
-<hkern u1="V" u2="&#x26;" k="16" />
-<hkern u1="V" u2="&#x20;" k="29" />
-<hkern u1="W" u2="&#xed;" k="4" />
-<hkern u1="W" u2="&#xdf;" k="14" />
-<hkern u1="X" u2="&#xbb;" k="-2" />
-<hkern u1="X" u2="&#xba;" k="16" />
-<hkern u1="X" u2="&#xae;" k="43" />
-<hkern u1="X" u2="&#xaa;" k="12" />
-<hkern u1="X" u2="&#xa9;" k="49" />
-<hkern u1="X" u2="p" k="4" />
-<hkern u1="X" u2="&#x2a;" k="31" />
-<hkern u1="X" u2="&#x26;" k="8" />
-<hkern u1="X" u2="&#x20;" k="35" />
-<hkern u1="Y" u2="&#xed;" k="4" />
-<hkern u1="Y" u2="&#xe4;" k="45" />
-<hkern u1="Y" u2="&#xe3;" k="41" />
-<hkern u1="Y" u2="&#xdf;" k="16" />
-<hkern u1="[" u2="&#xef;" k="-10" />
-<hkern u1="[" u2="V" k="16" />
-<hkern u1="[" u2="&#x39;" k="8" />
-<hkern u1="[" u2="&#x38;" k="10" />
-<hkern u1="[" u2="&#x36;" k="12" />
-<hkern u1="[" u2="&#x34;" k="12" />
-<hkern u1="[" u2="&#x32;" k="10" />
-<hkern u1="[" u2="&#x31;" k="8" />
-<hkern u1="[" u2="&#x30;" k="18" />
-<hkern u1="[" u2="&#x28;" k="8" />
-<hkern u1="\" u2="V" k="106" />
-<hkern u1="\" u2="&#x33;" k="53" />
-<hkern u1="q" u2="&#x7d;" k="-14" />
-<hkern u1="q" u2="\" k="25" />
-<hkern u1="q" u2="V" k="98" />
-<hkern u1="q" u2="&#x3f;" k="14" />
-<hkern u1="x" u2="V" k="76" />
-<hkern u1="x" u2="&#x29;" k="8" />
-<hkern u1="x" u2="&#x20;" k="23" />
-<hkern u1="&#x7b;" u2="&#xef;" k="-37" />
-<hkern u1="&#x7b;" u2="&#xec;" k="-6" />
-<hkern u1="&#x7b;" u2="&#x7b;" k="37" />
-<hkern u1="&#x7b;" u2="b" k="-14" />
-<hkern u1="&#x7b;" u2="V" k="16" />
-<hkern u1="&#x7b;" u2="&#x39;" k="39" />
-<hkern u1="&#x7b;" u2="&#x38;" k="10" />
-<hkern u1="&#x7b;" u2="&#x37;" k="20" />
-<hkern u1="&#x7b;" u2="&#x36;" k="47" />
-<hkern u1="&#x7b;" u2="&#x34;" k="12" />
-<hkern u1="&#x7b;" u2="&#x32;" k="25" />
-<hkern u1="&#x7b;" u2="&#x31;" k="8" />
-<hkern u1="&#x7b;" u2="&#x30;" k="57" />
-<hkern u1="&#x7b;" u2="&#x28;" k="29" />
-<hkern u1="&#x7d;" u2="&#x7d;" k="37" />
-<hkern u1="&#x7d;" u2="&#x29;" k="41" />
-<hkern u1="&#xa1;" u2="V" k="61" />
-<hkern u1="&#xa3;" u2="&#x33;" k="37" />
-<hkern u1="&#xb0;" u2="&#x39;" k="76" />
-<hkern u1="&#xb0;" u2="&#x36;" k="70" />
-<hkern u1="&#xb0;" u2="&#x35;" k="23" />
-<hkern u1="&#xb0;" u2="&#x34;" k="213" />
-<hkern u1="&#xb0;" u2="&#x33;" k="68" />
-<hkern u1="&#xb0;" u2="&#x32;" k="49" />
-<hkern u1="&#xb0;" u2="&#x30;" k="86" />
-<hkern u1="&#xb7;" u2="&#x37;" k="8" />
-<hkern u1="&#xb7;" u2="&#x34;" k="68" />
-<hkern u1="&#xb7;" u2="&#x33;" k="39" />
-<hkern u1="&#xb7;" u2="&#x32;" k="33" />
-<hkern u1="&#xb7;" u2="&#x31;" k="39" />
-<hkern u1="&#xb9;" u2="&#xb3;" k="33" />
-<hkern u1="&#xc7;" u2="j" k="-47" />
-<hkern u1="&#xcf;" u2="&#x29;" k="-16" />
-<hkern u1="&#xd7;" u2="&#x34;" k="49" />
-<hkern u1="&#xd7;" u2="&#x33;" k="43" />
-<hkern u1="&#xd7;" u2="&#x32;" k="25" />
-<hkern u1="&#xd9;" u2="&#xdf;" k="43" />
-<hkern u1="&#xda;" u2="&#xdf;" k="43" />
-<hkern u1="&#xdb;" u2="&#xdf;" k="43" />
-<hkern u1="&#xdc;" u2="&#xdf;" k="43" />
-<hkern u1="&#xdd;" u2="&#xed;" k="4" />
-<hkern u1="&#xdd;" u2="&#xe4;" k="45" />
-<hkern u1="&#xdd;" u2="&#xe3;" k="41" />
-<hkern u1="&#xdd;" u2="&#xdf;" k="16" />
-<hkern u1="&#xde;" u2="&#x7d;" k="33" />
-<hkern u1="&#xde;" u2="x" k="18" />
-<hkern u1="&#xde;" u2="X" k="143" />
-<hkern u1="&#xde;" u2="V" k="49" />
-<hkern u1="&#xde;" u2="&#x3f;" k="43" />
-<hkern u1="&#xde;" u2="&#x2f;" k="14" />
-<hkern u1="&#xde;" u2="&#x29;" k="51" />
-<hkern u1="&#xde;" u2="&#x20;" k="16" />
-<hkern u1="&#xdf;" u2="&#x2122;" k="16" />
-<hkern u1="&#xdf;" u2="&#xba;" k="29" />
-<hkern u1="&#xdf;" u2="&#xae;" k="33" />
-<hkern u1="&#xdf;" u2="&#xaa;" k="27" />
-<hkern u1="&#xdf;" u2="&#x7d;" k="20" />
-<hkern u1="&#xdf;" u2="x" k="41" />
-<hkern u1="&#xdf;" u2="\" k="29" />
-<hkern u1="&#xdf;" u2="X" k="25" />
-<hkern u1="&#xdf;" u2="V" k="70" />
-<hkern u1="&#xdf;" u2="&#x3f;" k="18" />
-<hkern u1="&#xdf;" u2="&#x2a;" k="27" />
-<hkern u1="&#xdf;" u2="&#x29;" k="29" />
-<hkern u1="&#xdf;" u2="&#x20;" k="23" />
-<hkern u1="&#xef;" u2="&#x2122;" k="-35" />
-<hkern u1="&#xef;" u2="&#x201d;" k="-33" />
-<hkern u1="&#xef;" u2="&#x2019;" k="-33" />
-<hkern u1="&#xef;" u2="&#x7d;" k="-12" />
-<hkern u1="&#xef;" u2="&#x3f;" k="-35" />
-<hkern u1="&#xef;" u2="&#x2a;" k="-25" />
-<hkern u1="&#xef;" u2="&#x27;" k="-33" />
-<hkern u1="&#xef;" u2="&#x22;" k="-33" />
-<hkern u1="&#xf0;" u2="&#x2122;" k="18" />
-<hkern u1="&#xf0;" u2="&#x7d;" k="33" />
-<hkern u1="&#xf0;" u2="x" k="33" />
-<hkern u1="&#xf0;" u2="]" k="8" />
-<hkern u1="&#xf0;" u2="\" k="35" />
-<hkern u1="&#xf0;" u2="X" k="76" />
-<hkern u1="&#xf0;" u2="V" k="96" />
-<hkern u1="&#xf0;" u2="&#x3f;" k="16" />
-<hkern u1="&#xf0;" u2="&#x29;" k="41" />
-<hkern u1="&#xf7;" u2="&#x38;" k="29" />
-<hkern u1="&#xf7;" u2="&#x34;" k="115" />
-<hkern u1="&#xf7;" u2="&#x33;" k="20" />
-<hkern u1="&#xf7;" u2="&#x31;" k="20" />
-<hkern u1="&#x178;" u2="&#xed;" k="4" />
-<hkern u1="&#x178;" u2="&#xe4;" k="45" />
-<hkern u1="&#x178;" u2="&#xe3;" k="41" />
-<hkern u1="&#x178;" u2="&#xdf;" k="16" />
-<hkern u1="&#x201a;" u2="J" k="-223" />
-<hkern u1="&#x201e;" u2="J" k="-223" />
-<hkern u1="&#x20ac;" u2="&#x33;" k="35" />
-<hkern g1="T" 	g2="germandbls,thorn" 	k="8" />
-<hkern g1="T" 	g2="f,uniFB01,uniFB02" 	k="45" />
-<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="119" />
-<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="94" />
-<hkern g1="T" 	g2="g" 	k="76" />
-<hkern g1="T" 	g2="ampersand" 	k="29" />
-<hkern g1="T" 	g2="hyphen,uni00AD,endash,emdash" 	k="82" />
-<hkern g1="T" 	g2="guillemotleft,guilsinglleft" 	k="70" />
-<hkern g1="T" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="84" />
-<hkern g1="T" 	g2="AE" 	k="160" />
-<hkern g1="T" 	g2="at" 	k="45" />
-<hkern g1="T" 	g2="s" 	k="25" />
-<hkern g1="T" 	g2="slash" 	k="53" />
-<hkern g1="T" 	g2="space" 	k="49" />
-<hkern g1="T" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="100" />
-<hkern g1="T" 	g2="h,k,l" 	k="12" />
-<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="53" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="germandbls,thorn" 	k="27" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="f,uniFB01,uniFB02" 	k="18" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="66" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="27" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="g" 	k="51" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="hyphen,uni00AD,endash,emdash" 	k="18" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="45" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="AE" 	k="92" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="at" 	k="20" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="s" 	k="49" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="slash" 	k="31" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="45" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="h,k,l" 	k="29" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="49" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="b" 	k="12" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="y,yacute,ydieresis" 	k="23" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="35" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="v,w" 	k="25" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="m,n,r,ntilde" 	k="35" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="p" 	k="33" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="colon,semicolon" 	k="6" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="z" 	k="41" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="t" 	k="8" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="x" 	k="23" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
-<hkern g1="W" 	g2="germandbls,thorn" 	k="4" />
-<hkern g1="W" 	g2="f,uniFB01,uniFB02" 	k="6" />
-<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="145" />
-<hkern g1="W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="78" />
-<hkern g1="W" 	g2="g" 	k="170" />
-<hkern g1="W" 	g2="ampersand" 	k="14" />
-<hkern g1="W" 	g2="hyphen,uni00AD,endash,emdash" 	k="29" />
-<hkern g1="W" 	g2="guillemotleft,guilsinglleft" 	k="106" />
-<hkern g1="W" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="143" />
-<hkern g1="W" 	g2="AE" 	k="289" />
-<hkern g1="W" 	g2="at" 	k="27" />
-<hkern g1="W" 	g2="s" 	k="125" />
-<hkern g1="W" 	g2="slash" 	k="27" />
-<hkern g1="W" 	g2="space" 	k="27" />
-<hkern g1="W" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="123" />
-<hkern g1="W" 	g2="h,k,l" 	k="43" />
-<hkern g1="W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="139" />
-<hkern g1="W" 	g2="y,yacute,ydieresis" 	k="66" />
-<hkern g1="W" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="57" />
-<hkern g1="W" 	g2="v,w" 	k="8" />
-<hkern g1="W" 	g2="m,n,r,ntilde" 	k="98" />
-<hkern g1="W" 	g2="p" 	k="18" />
-<hkern g1="W" 	g2="colon,semicolon" 	k="14" />
-<hkern g1="W" 	g2="z" 	k="29" />
-<hkern g1="W" 	g2="x" 	k="16" />
-<hkern g1="W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
-<hkern g1="W" 	g2="guillemotright,guilsinglright" 	k="8" />
-<hkern g1="V" 	g2="germandbls,thorn" 	k="14" />
-<hkern g1="V" 	g2="f,uniFB01,uniFB02" 	k="6" />
-<hkern g1="V" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="152" />
-<hkern g1="V" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="78" />
-<hkern g1="V" 	g2="g" 	k="158" />
-<hkern g1="V" 	g2="hyphen,uni00AD,endash,emdash" 	k="33" />
-<hkern g1="V" 	g2="guillemotleft,guilsinglleft" 	k="135" />
-<hkern g1="V" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="135" />
-<hkern g1="V" 	g2="AE" 	k="324" />
-<hkern g1="V" 	g2="s" 	k="145" />
-<hkern g1="V" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="129" />
-<hkern g1="V" 	g2="h,k,l" 	k="4" />
-<hkern g1="V" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="147" />
-<hkern g1="V" 	g2="y,yacute,ydieresis" 	k="127" />
-<hkern g1="V" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="59" />
-<hkern g1="V" 	g2="v,w" 	k="8" />
-<hkern g1="V" 	g2="m,n,r,ntilde" 	k="84" />
-<hkern g1="V" 	g2="colon,semicolon" 	k="16" />
-<hkern g1="V" 	g2="z" 	k="29" />
-<hkern g1="V" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="51" />
-<hkern g1="V" 	g2="guillemotright,guilsinglright" 	k="8" />
-<hkern g1="V" 	g2="S" 	k="4" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="germandbls,thorn" 	k="4" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="f,uniFB01,uniFB02" 	k="8" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="115" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="131" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="172" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="ampersand" 	k="16" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,uni00AD,endash,emdash" 	k="49" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="139" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="166" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="AE" 	k="279" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="at" 	k="27" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="160" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="slash" 	k="23" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="space" 	k="27" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="117" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="h,k,l" 	k="6" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="152" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="b" 	k="37" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="10" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="25" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="v,w" 	k="12" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,r,ntilde" 	k="135" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="p" 	k="135" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="colon,semicolon" 	k="16" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="29" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="74" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="18" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="80" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotright,guilsinglright" 	k="8" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="copyright" 	k="8" />
-<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="14" />
-<hkern g1="Z" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="4" />
-<hkern g1="Z" 	g2="y,yacute,ydieresis" 	k="41" />
-<hkern g1="Z" 	g2="v,w" 	k="41" />
-<hkern g1="Z" 	g2="p" 	k="16" />
-<hkern g1="Z" 	g2="z" 	k="10" />
-<hkern g1="Z" 	g2="t" 	k="14" />
-<hkern g1="Z" 	g2="W" 	k="8" />
-<hkern g1="Z" 	g2="Y,Yacute,Ydieresis" 	k="10" />
-<hkern g1="Z" 	g2="j" 	k="6" />
-<hkern g1="Z" 	g2="V" 	k="10" />
-<hkern g1="X" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="31" />
-<hkern g1="X" 	g2="hyphen,uni00AD,endash,emdash" 	k="68" />
-<hkern g1="X" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="57" />
-<hkern g1="X" 	g2="y,yacute,ydieresis" 	k="109" />
-<hkern g1="X" 	g2="v,w" 	k="100" />
-<hkern g1="X" 	g2="t" 	k="29" />
-<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="66" />
-<hkern g1="X" 	g2="guillemotright,guilsinglright" 	k="-8" />
-<hkern g1="eth" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="43" />
-<hkern g1="eth" 	g2="AE" 	k="51" />
-<hkern g1="eth" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="8" />
-<hkern g1="eth" 	g2="y,yacute,ydieresis" 	k="20" />
-<hkern g1="eth" 	g2="v,w" 	k="23" />
-<hkern g1="eth" 	g2="quotedbl,quotesingle" 	k="29" />
-<hkern g1="eth" 	g2="quoteright,quotedblright" 	k="31" />
-<hkern g1="eth" 	g2="quoteleft,quotedblleft" 	k="18" />
-<hkern g1="eth" 	g2="S" 	k="12" />
-<hkern g1="eth" 	g2="W" 	k="90" />
-<hkern g1="eth" 	g2="Y,Yacute,Ydieresis" 	k="113" />
-<hkern g1="eth" 	g2="J" 	k="33" />
-<hkern g1="eth" 	g2="T" 	k="27" />
-<hkern g1="eth" 	g2="Z" 	k="29" />
-<hkern g1="eth" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="35" />
-<hkern g1="eth" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="41" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="hyphen,uni00AD,endash,emdash" 	k="10" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="space" 	k="10" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="y,yacute,ydieresis" 	k="18" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="v,w" 	k="20" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="8" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="parenright" 	k="41" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="braceright" 	k="16" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="asterisk" 	k="23" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="ordfeminine" 	k="10" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="question" 	k="37" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="quotedbl,quotesingle" 	k="51" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="quoteright,quotedblright" 	k="55" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="registered" 	k="37" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="trademark" 	k="43" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="backslash" 	k="70" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="ordmasculine" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="quoteleft,quotedblleft" 	k="150" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="W" 	k="111" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="Y,Yacute,Ydieresis" 	k="125" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="V" 	k="129" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="J" 	k="29" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="T" 	k="49" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="39" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="bracketright" 	k="8" />
-<hkern g1="p,thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="37" />
-<hkern g1="p,thorn" 	g2="AE" 	k="39" />
-<hkern g1="p,thorn" 	g2="y,yacute,ydieresis" 	k="29" />
-<hkern g1="p,thorn" 	g2="v,w" 	k="20" />
-<hkern g1="p,thorn" 	g2="x" 	k="41" />
-<hkern g1="p,thorn" 	g2="parenright" 	k="61" />
-<hkern g1="p,thorn" 	g2="braceright" 	k="47" />
-<hkern g1="p,thorn" 	g2="question" 	k="49" />
-<hkern g1="p,thorn" 	g2="quotedbl,quotesingle" 	k="51" />
-<hkern g1="p,thorn" 	g2="quoteright,quotedblright" 	k="53" />
-<hkern g1="p,thorn" 	g2="trademark" 	k="31" />
-<hkern g1="p,thorn" 	g2="backslash" 	k="51" />
-<hkern g1="p,thorn" 	g2="ordmasculine" 	k="20" />
-<hkern g1="p,thorn" 	g2="quoteleft,quotedblleft" 	k="39" />
-<hkern g1="p,thorn" 	g2="S" 	k="6" />
-<hkern g1="p,thorn" 	g2="W" 	k="117" />
-<hkern g1="p,thorn" 	g2="Y,Yacute,Ydieresis" 	k="131" />
-<hkern g1="p,thorn" 	g2="V" 	k="135" />
-<hkern g1="p,thorn" 	g2="J" 	k="37" />
-<hkern g1="p,thorn" 	g2="T" 	k="53" />
-<hkern g1="p,thorn" 	g2="Z" 	k="31" />
-<hkern g1="p,thorn" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="37" />
-<hkern g1="p,thorn" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="41" />
-<hkern g1="p,thorn" 	g2="bracketright" 	k="12" />
-<hkern g1="p,thorn" 	g2="exclam" 	k="14" />
-<hkern g1="p,thorn" 	g2="X" 	k="78" />
-<hkern g1="c,ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="23" />
-<hkern g1="c,ccedilla" 	g2="hyphen,uni00AD,endash,emdash" 	k="16" />
-<hkern g1="c,ccedilla" 	g2="AE" 	k="20" />
-<hkern g1="c,ccedilla" 	g2="y,yacute,ydieresis" 	k="8" />
-<hkern g1="c,ccedilla" 	g2="v,w" 	k="8" />
-<hkern g1="c,ccedilla" 	g2="x" 	k="4" />
-<hkern g1="c,ccedilla" 	g2="parenright" 	k="53" />
-<hkern g1="c,ccedilla" 	g2="braceright" 	k="37" />
-<hkern g1="c,ccedilla" 	g2="question" 	k="25" />
-<hkern g1="c,ccedilla" 	g2="quotedbl,quotesingle" 	k="14" />
-<hkern g1="c,ccedilla" 	g2="quoteright,quotedblright" 	k="18" />
-<hkern g1="c,ccedilla" 	g2="trademark" 	k="23" />
-<hkern g1="c,ccedilla" 	g2="backslash" 	k="37" />
-<hkern g1="c,ccedilla" 	g2="W" 	k="86" />
-<hkern g1="c,ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="102" />
-<hkern g1="c,ccedilla" 	g2="j" 	k="-133" />
-<hkern g1="c,ccedilla" 	g2="V" 	k="92" />
-<hkern g1="c,ccedilla" 	g2="J" 	k="29" />
-<hkern g1="c,ccedilla" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="10" />
-<hkern g1="c,ccedilla" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="27" />
-<hkern g1="c,ccedilla" 	g2="bracketright" 	k="10" />
-<hkern g1="c,ccedilla" 	g2="X" 	k="37" />
-<hkern g1="d" 	g2="hyphen,uni00AD,endash,emdash" 	k="10" />
-<hkern g1="d" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="8" />
-<hkern g1="d" 	g2="parenright" 	k="-41" />
-<hkern g1="d" 	g2="braceright" 	k="-41" />
-<hkern g1="d" 	g2="registered" 	k="8" />
-<hkern g1="d" 	g2="backslash" 	k="-37" />
-<hkern g1="d" 	g2="W" 	k="4" />
-<hkern g1="d" 	g2="Y,Yacute,Ydieresis" 	k="4" />
-<hkern g1="d" 	g2="V" 	k="6" />
-<hkern g1="d" 	g2="J" 	k="10" />
-<hkern g1="d" 	g2="T" 	k="4" />
-<hkern g1="d" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="12" />
-<hkern g1="d" 	g2="bracketright" 	k="-37" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="29" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="AE" 	k="25" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="y,yacute,ydieresis" 	k="25" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="v,w" 	k="20" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="m,n,r,ntilde" 	k="12" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="x" 	k="33" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="parenright" 	k="55" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="braceright" 	k="41" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="question" 	k="35" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quotedbl,quotesingle" 	k="29" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteright,quotedblright" 	k="33" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="trademark" 	k="20" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="backslash" 	k="43" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteleft,quotedblleft" 	k="8" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="W" 	k="100" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="131" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="V" 	k="123" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="J" 	k="37" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="T" 	k="23" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Z" 	k="14" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="23" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="37" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="bracketright" 	k="12" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="X" 	k="51" />
-<hkern g1="f" 	g2="hyphen,uni00AD,endash,emdash" 	k="43" />
-<hkern g1="f" 	g2="guillemotleft,guilsinglleft" 	k="31" />
-<hkern g1="f" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="37" />
-<hkern g1="f" 	g2="parenright" 	k="-78" />
-<hkern g1="f" 	g2="braceright" 	k="-94" />
-<hkern g1="f" 	g2="asterisk" 	k="-80" />
-<hkern g1="f" 	g2="ordfeminine" 	k="-80" />
-<hkern g1="f" 	g2="question" 	k="-158" />
-<hkern g1="f" 	g2="quotedbl,quotesingle" 	k="-131" />
-<hkern g1="f" 	g2="quoteright,quotedblright" 	k="-135" />
-<hkern g1="f" 	g2="registered" 	k="-43" />
-<hkern g1="f" 	g2="trademark" 	k="-143" />
-<hkern g1="f" 	g2="backslash" 	k="-133" />
-<hkern g1="f" 	g2="ordmasculine" 	k="-74" />
-<hkern g1="f" 	g2="quoteleft,quotedblleft" 	k="-76" />
-<hkern g1="f" 	g2="S" 	k="-37" />
-<hkern g1="f" 	g2="W" 	k="-233" />
-<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-225" />
-<hkern g1="f" 	g2="V" 	k="-236" />
-<hkern g1="f" 	g2="J" 	k="-154" />
-<hkern g1="f" 	g2="T" 	k="-160" />
-<hkern g1="f" 	g2="Z" 	k="-113" />
-<hkern g1="f" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-141" />
-<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-172" />
-<hkern g1="f" 	g2="bracketright" 	k="-68" />
-<hkern g1="f" 	g2="exclam" 	k="-84" />
-<hkern g1="f" 	g2="X" 	k="-203" />
-<hkern g1="f" 	g2="bar" 	k="-47" />
-<hkern g1="g" 	g2="hyphen,uni00AD,endash,emdash" 	k="8" />
-<hkern g1="g" 	g2="y,yacute,ydieresis" 	k="29" />
-<hkern g1="g" 	g2="v,w" 	k="29" />
-<hkern g1="g" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="14" />
-<hkern g1="g" 	g2="question" 	k="-14" />
-<hkern g1="g" 	g2="W" 	k="27" />
-<hkern g1="g" 	g2="Y,Yacute,Ydieresis" 	k="23" />
-<hkern g1="g" 	g2="V" 	k="27" />
-<hkern g1="g" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="12" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="hyphen,uni00AD,endash,emdash" 	k="12" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="y,yacute,ydieresis" 	k="8" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="v,w" 	k="8" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="23" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="parenright" 	k="-31" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="braceright" 	k="-47" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="asterisk" 	k="8" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="question" 	k="-18" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="quoteright,quotedblright" 	k="-27" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="registered" 	k="8" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="W" 	k="16" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="Y,Yacute,Ydieresis" 	k="16" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="V" 	k="16" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="J" 	k="18" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="T" 	k="10" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="20" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="bracketright" 	k="-10" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="exclam" 	k="-16" />
-<hkern g1="j" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="14" />
-<hkern g1="j" 	g2="AE" 	k="14" />
-<hkern g1="j" 	g2="y,yacute,ydieresis" 	k="16" />
-<hkern g1="j" 	g2="v,w" 	k="10" />
-<hkern g1="j" 	g2="parenright" 	k="31" />
-<hkern g1="j" 	g2="braceright" 	k="25" />
-<hkern g1="j" 	g2="ordfeminine" 	k="-18" />
-<hkern g1="j" 	g2="question" 	k="31" />
-<hkern g1="j" 	g2="quotedbl,quotesingle" 	k="27" />
-<hkern g1="j" 	g2="quoteright,quotedblright" 	k="29" />
-<hkern g1="j" 	g2="trademark" 	k="23" />
-<hkern g1="j" 	g2="backslash" 	k="43" />
-<hkern g1="j" 	g2="ordmasculine" 	k="-29" />
-<hkern g1="j" 	g2="quoteleft,quotedblleft" 	k="8" />
-<hkern g1="j" 	g2="W" 	k="6" />
-<hkern g1="j" 	g2="Y,Yacute,Ydieresis" 	k="10" />
-<hkern g1="j" 	g2="bracketright" 	k="8" />
-<hkern g1="j" 	g2="exclam" 	k="-25" />
-<hkern g1="k" 	g2="germandbls,thorn" 	k="57" />
-<hkern g1="k" 	g2="hyphen,uni00AD,endash,emdash" 	k="66" />
-<hkern g1="k" 	g2="guillemotleft,guilsinglleft" 	k="45" />
-<hkern g1="k" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="47" />
-<hkern g1="k" 	g2="space" 	k="10" />
-<hkern g1="k" 	g2="h,k,l" 	k="49" />
-<hkern g1="k" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="8" />
-<hkern g1="k" 	g2="b" 	k="49" />
-<hkern g1="k" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="45" />
-<hkern g1="k" 	g2="quoteright,quotedblright" 	k="23" />
-<hkern g1="k" 	g2="trademark" 	k="23" />
-<hkern g1="k" 	g2="W" 	k="66" />
-<hkern g1="k" 	g2="Y,Yacute,Ydieresis" 	k="57" />
-<hkern g1="k" 	g2="V" 	k="78" />
-<hkern g1="k" 	g2="J" 	k="20" />
-<hkern g1="k" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="37" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="61" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="W" 	k="139" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="115" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="V" 	k="152" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="139" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="41" />
-<hkern g1="l,uniFB02" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="20" />
-<hkern g1="C,Ccedilla" 	g2="W" 	k="6" />
-<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="8" />
-<hkern g1="C,Ccedilla" 	g2="V" 	k="6" />
-<hkern g1="h,m,n,ntilde" 	g2="hyphen,uni00AD,endash,emdash" 	k="8" />
-<hkern g1="h,m,n,ntilde" 	g2="y,yacute,ydieresis" 	k="23" />
-<hkern g1="h,m,n,ntilde" 	g2="v,w" 	k="25" />
-<hkern g1="h,m,n,ntilde" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="18" />
-<hkern g1="h,m,n,ntilde" 	g2="parenright" 	k="33" />
-<hkern g1="h,m,n,ntilde" 	g2="braceright" 	k="14" />
-<hkern g1="h,m,n,ntilde" 	g2="asterisk" 	k="20" />
-<hkern g1="h,m,n,ntilde" 	g2="ordfeminine" 	k="8" />
-<hkern g1="h,m,n,ntilde" 	g2="question" 	k="39" />
-<hkern g1="h,m,n,ntilde" 	g2="quotedbl,quotesingle" 	k="45" />
-<hkern g1="h,m,n,ntilde" 	g2="quoteright,quotedblright" 	k="51" />
-<hkern g1="h,m,n,ntilde" 	g2="registered" 	k="33" />
-<hkern g1="h,m,n,ntilde" 	g2="trademark" 	k="41" />
-<hkern g1="h,m,n,ntilde" 	g2="backslash" 	k="66" />
-<hkern g1="h,m,n,ntilde" 	g2="ordmasculine" 	k="25" />
-<hkern g1="h,m,n,ntilde" 	g2="quoteleft,quotedblleft" 	k="33" />
-<hkern g1="h,m,n,ntilde" 	g2="W" 	k="117" />
-<hkern g1="h,m,n,ntilde" 	g2="Y,Yacute,Ydieresis" 	k="133" />
-<hkern g1="h,m,n,ntilde" 	g2="V" 	k="135" />
-<hkern g1="h,m,n,ntilde" 	g2="J" 	k="37" />
-<hkern g1="h,m,n,ntilde" 	g2="T" 	k="57" />
-<hkern g1="h,m,n,ntilde" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="45" />
-<hkern g1="h,m,n,ntilde" 	g2="bracketright" 	k="8" />
-<hkern g1="D,Eth" 	g2="germandbls,thorn" 	k="23" />
-<hkern g1="D,Eth" 	g2="f,uniFB01,uniFB02" 	k="27" />
-<hkern g1="D,Eth" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="59" />
-<hkern g1="D,Eth" 	g2="g" 	k="14" />
-<hkern g1="D,Eth" 	g2="AE" 	k="94" />
-<hkern g1="D,Eth" 	g2="s" 	k="8" />
-<hkern g1="D,Eth" 	g2="slash" 	k="14" />
-<hkern g1="D,Eth" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="45" />
-<hkern g1="D,Eth" 	g2="h,k,l" 	k="25" />
-<hkern g1="D,Eth" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="14" />
-<hkern g1="D,Eth" 	g2="b" 	k="6" />
-<hkern g1="D,Eth" 	g2="y,yacute,ydieresis" 	k="10" />
-<hkern g1="D,Eth" 	g2="v,w" 	k="10" />
-<hkern g1="D,Eth" 	g2="x" 	k="27" />
-<hkern g1="D,Eth" 	g2="parenright" 	k="55" />
-<hkern g1="D,Eth" 	g2="braceright" 	k="39" />
-<hkern g1="D,Eth" 	g2="question" 	k="29" />
-<hkern g1="D,Eth" 	g2="W" 	k="41" />
-<hkern g1="D,Eth" 	g2="Y,Yacute,Ydieresis" 	k="57" />
-<hkern g1="D,Eth" 	g2="V" 	k="47" />
-<hkern g1="D,Eth" 	g2="J" 	k="14" />
-<hkern g1="D,Eth" 	g2="Z" 	k="4" />
-<hkern g1="D,Eth" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="18" />
-<hkern g1="D,Eth" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="14" />
-<hkern g1="D,Eth" 	g2="bracketright" 	k="10" />
-<hkern g1="D,Eth" 	g2="X" 	k="72" />
-<hkern g1="B" 	g2="germandbls,thorn" 	k="14" />
-<hkern g1="B" 	g2="f,uniFB01,uniFB02" 	k="16" />
-<hkern g1="B" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="29" />
-<hkern g1="B" 	g2="AE" 	k="41" />
-<hkern g1="B" 	g2="h,k,l" 	k="16" />
-<hkern g1="B" 	g2="y,yacute,ydieresis" 	k="31" />
-<hkern g1="B" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="4" />
-<hkern g1="B" 	g2="v,w" 	k="31" />
-<hkern g1="B" 	g2="m,n,r,ntilde" 	k="4" />
-<hkern g1="B" 	g2="z" 	k="14" />
-<hkern g1="B" 	g2="t" 	k="4" />
-<hkern g1="B" 	g2="W" 	k="41" />
-<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="47" />
-<hkern g1="B" 	g2="j" 	k="4" />
-<hkern g1="B" 	g2="J" 	k="4" />
-<hkern g1="B" 	g2="T" 	k="14" />
-<hkern g1="B" 	g2="Z" 	k="4" />
-<hkern g1="B" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="6" />
-<hkern g1="B" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="4" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="35" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="AE" 	k="37" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="h,k,l" 	k="20" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="y,yacute,ydieresis" 	k="29" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="v,w" 	k="27" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="x" 	k="41" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="parenright" 	k="63" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="braceright" 	k="49" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="question" 	k="49" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="quotedbl,quotesingle" 	k="47" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="quoteright,quotedblright" 	k="47" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="trademark" 	k="23" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="backslash" 	k="53" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="ordmasculine" 	k="18" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="quoteleft,quotedblleft" 	k="150" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="S" 	k="6" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="W" 	k="119" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="Y,Yacute,Ydieresis" 	k="133" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="V" 	k="137" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="J" 	k="39" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="T" 	k="59" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="Z" 	k="31" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="39" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="43" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="bracketright" 	k="12" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="X" 	k="80" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="6" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="y,yacute,ydieresis" 	k="8" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="v,w" 	k="10" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="W" 	k="16" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="Y,Yacute,Ydieresis" 	k="18" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="V" 	k="16" />
-<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="14" />
-<hkern g1="G" 	g2="g" 	k="4" />
-<hkern g1="G" 	g2="AE" 	k="10" />
-<hkern g1="G" 	g2="h,k,l" 	k="4" />
-<hkern g1="G" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="4" />
-<hkern g1="G" 	g2="y,yacute,ydieresis" 	k="18" />
-<hkern g1="G" 	g2="v,w" 	k="12" />
-<hkern g1="G" 	g2="parenright" 	k="8" />
-<hkern g1="G" 	g2="W" 	k="18" />
-<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="20" />
-<hkern g1="G" 	g2="V" 	k="18" />
-<hkern g1="r" 	g2="f,uniFB01,uniFB02" 	k="10" />
-<hkern g1="r" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="94" />
-<hkern g1="r" 	g2="hyphen,uni00AD,endash,emdash" 	k="23" />
-<hkern g1="r" 	g2="guillemotleft,guilsinglleft" 	k="10" />
-<hkern g1="r" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="29" />
-<hkern g1="r" 	g2="AE" 	k="117" />
-<hkern g1="r" 	g2="slash" 	k="35" />
-<hkern g1="r" 	g2="space" 	k="43" />
-<hkern g1="r" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="80" />
-<hkern g1="r" 	g2="h,k,l" 	k="53" />
-<hkern g1="r" 	g2="b" 	k="41" />
-<hkern g1="r" 	g2="parenright" 	k="53" />
-<hkern g1="r" 	g2="braceright" 	k="31" />
-<hkern g1="r" 	g2="S" 	k="8" />
-<hkern g1="r" 	g2="W" 	k="57" />
-<hkern g1="r" 	g2="Y,Yacute,Ydieresis" 	k="70" />
-<hkern g1="r" 	g2="V" 	k="70" />
-<hkern g1="r" 	g2="J" 	k="37" />
-<hkern g1="r" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="37" />
-<hkern g1="r" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="27" />
-<hkern g1="r" 	g2="bracketright" 	k="8" />
-<hkern g1="r" 	g2="X" 	k="80" />
-<hkern g1="F" 	g2="germandbls,thorn" 	k="14" />
-<hkern g1="F" 	g2="f,uniFB01,uniFB02" 	k="53" />
-<hkern g1="F" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="111" />
-<hkern g1="F" 	g2="g" 	k="43" />
-<hkern g1="F" 	g2="hyphen,uni00AD,endash,emdash" 	k="49" />
-<hkern g1="F" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="51" />
-<hkern g1="F" 	g2="AE" 	k="264" />
-<hkern g1="F" 	g2="s" 	k="31" />
-<hkern g1="F" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="117" />
-<hkern g1="F" 	g2="h,k,l" 	k="16" />
-<hkern g1="F" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="35" />
-<hkern g1="F" 	g2="z" 	k="8" />
-<hkern g1="F" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="14" />
-<hkern g1="s" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="23" />
-<hkern g1="s" 	g2="AE" 	k="16" />
-<hkern g1="s" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="6" />
-<hkern g1="s" 	g2="parenright" 	k="49" />
-<hkern g1="s" 	g2="braceright" 	k="31" />
-<hkern g1="s" 	g2="backslash" 	k="25" />
-<hkern g1="s" 	g2="W" 	k="92" />
-<hkern g1="s" 	g2="Y,Yacute,Ydieresis" 	k="88" />
-<hkern g1="s" 	g2="V" 	k="98" />
-<hkern g1="s" 	g2="J" 	k="39" />
-<hkern g1="s" 	g2="T" 	k="14" />
-<hkern g1="s" 	g2="Z" 	k="8" />
-<hkern g1="s" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="23" />
-<hkern g1="s" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="41" />
-<hkern g1="s" 	g2="bracketright" 	k="10" />
-<hkern g1="s" 	g2="X" 	k="25" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="germandbls,thorn" 	k="6" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="25" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="g" 	k="16" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="hyphen,uni00AD,endash,emdash" 	k="27" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="39" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="s" 	k="12" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="12" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="y,yacute,ydieresis" 	k="33" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="v,w" 	k="35" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="p" 	k="25" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="z" 	k="6" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="t" 	k="14" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="16" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="parenright" 	k="-72" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="braceright" 	k="-27" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="j" 	k="6" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="bracketright" 	k="-18" />
-<hkern g1="q" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="14" />
-<hkern g1="q" 	g2="AE" 	k="12" />
-<hkern g1="q" 	g2="W" 	k="86" />
-<hkern g1="q" 	g2="Y,Yacute,Ydieresis" 	k="109" />
-<hkern g1="q" 	g2="J" 	k="-291" />
-<hkern g1="q" 	g2="T" 	k="14" />
-<hkern g1="q" 	g2="Z" 	k="8" />
-<hkern g1="q" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="23" />
-<hkern g1="q" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="25" />
-<hkern g1="t" 	g2="g" 	k="16" />
-<hkern g1="t" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="8" />
-<hkern g1="t" 	g2="space" 	k="14" />
-<hkern g1="t" 	g2="t" 	k="57" />
-<hkern g1="t" 	g2="parenright" 	k="10" />
-<hkern g1="t" 	g2="trademark" 	k="10" />
-<hkern g1="t" 	g2="W" 	k="16" />
-<hkern g1="t" 	g2="Y,Yacute,Ydieresis" 	k="14" />
-<hkern g1="t" 	g2="j" 	k="-29" />
-<hkern g1="t" 	g2="V" 	k="20" />
-<hkern g1="t" 	g2="J" 	k="4" />
-<hkern g1="t" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="6" />
-<hkern g1="J" 	g2="germandbls,thorn" 	k="23" />
-<hkern g1="J" 	g2="f,uniFB01,uniFB02" 	k="20" />
-<hkern g1="J" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="31" />
-<hkern g1="J" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="31" />
-<hkern g1="J" 	g2="g" 	k="41" />
-<hkern g1="J" 	g2="hyphen,uni00AD,endash,emdash" 	k="20" />
-<hkern g1="J" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="39" />
-<hkern g1="J" 	g2="AE" 	k="31" />
-<hkern g1="J" 	g2="s" 	k="41" />
-<hkern g1="J" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="25" />
-<hkern g1="J" 	g2="h,k,l" 	k="25" />
-<hkern g1="J" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="41" />
-<hkern g1="J" 	g2="b" 	k="12" />
-<hkern g1="J" 	g2="y,yacute,ydieresis" 	k="27" />
-<hkern g1="J" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="10" />
-<hkern g1="J" 	g2="v,w" 	k="29" />
-<hkern g1="J" 	g2="m,n,r,ntilde" 	k="33" />
-<hkern g1="J" 	g2="p" 	k="35" />
-<hkern g1="J" 	g2="z" 	k="39" />
-<hkern g1="J" 	g2="t" 	k="14" />
-<hkern g1="J" 	g2="x" 	k="16" />
-<hkern g1="J" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="14" />
-<hkern g1="J" 	g2="parenright" 	k="-84" />
-<hkern g1="J" 	g2="braceright" 	k="-96" />
-<hkern g1="J" 	g2="bracketright" 	k="-47" />
-<hkern g1="K" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
-<hkern g1="K" 	g2="hyphen,uni00AD,endash,emdash" 	k="37" />
-<hkern g1="K" 	g2="guillemotleft,guilsinglleft" 	k="14" />
-<hkern g1="K" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="33" />
-<hkern g1="K" 	g2="slash" 	k="-18" />
-<hkern g1="K" 	g2="space" 	k="20" />
-<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="76" />
-<hkern g1="K" 	g2="v,w" 	k="70" />
-<hkern g1="K" 	g2="t" 	k="18" />
-<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="84" />
-<hkern g1="K" 	g2="asterisk" 	k="14" />
-<hkern g1="K" 	g2="registered" 	k="20" />
-<hkern g1="K" 	g2="copyright" 	k="31" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="germandbls,thorn" 	k="14" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="f,uniFB01,uniFB02" 	k="29" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="111" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="g" 	k="27" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="ampersand" 	k="16" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="hyphen,uni00AD,endash,emdash" 	k="45" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="39" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="31" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="AE" 	k="143" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="at" 	k="45" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="s" 	k="25" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="slash" 	k="57" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="space" 	k="57" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="88" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="h,k,l" 	k="59" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="23" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="parenright" 	k="51" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="braceright" 	k="14" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="S" 	k="10" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="W" 	k="43" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="51" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="V" 	k="49" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="J" 	k="37" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="39" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="29" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="X" 	k="68" />
-<hkern g1="L" 	g2="space" 	k="29" />
-<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="111" />
-<hkern g1="L" 	g2="v,w" 	k="109" />
-<hkern g1="L" 	g2="t" 	k="8" />
-<hkern g1="L" 	g2="parenright" 	k="12" />
-<hkern g1="L" 	g2="asterisk" 	k="66" />
-<hkern g1="L" 	g2="ordfeminine" 	k="76" />
-<hkern g1="L" 	g2="question" 	k="25" />
-<hkern g1="L" 	g2="quotedbl,quotesingle" 	k="92" />
-<hkern g1="L" 	g2="quoteright,quotedblright" 	k="156" />
-<hkern g1="L" 	g2="registered" 	k="53" />
-<hkern g1="L" 	g2="trademark" 	k="31" />
-<hkern g1="L" 	g2="backslash" 	k="51" />
-<hkern g1="L" 	g2="ordmasculine" 	k="88" />
-<hkern g1="L" 	g2="quoteleft,quotedblleft" 	k="94" />
-<hkern g1="L" 	g2="W" 	k="188" />
-<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="152" />
-<hkern g1="L" 	g2="V" 	k="168" />
-<hkern g1="L" 	g2="J" 	k="6" />
-<hkern g1="L" 	g2="T" 	k="137" />
-<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="10" />
-<hkern g1="L" 	g2="periodcentered" 	k="51" />
-<hkern g1="N,Ntilde" 	g2="germandbls,thorn" 	k="25" />
-<hkern g1="N,Ntilde" 	g2="f,uniFB01,uniFB02" 	k="20" />
-<hkern g1="N,Ntilde" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="25" />
-<hkern g1="N,Ntilde" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="33" />
-<hkern g1="N,Ntilde" 	g2="g" 	k="41" />
-<hkern g1="N,Ntilde" 	g2="hyphen,uni00AD,endash,emdash" 	k="20" />
-<hkern g1="N,Ntilde" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="41" />
-<hkern g1="N,Ntilde" 	g2="AE" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="s" 	k="41" />
-<hkern g1="N,Ntilde" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="25" />
-<hkern g1="N,Ntilde" 	g2="h,k,l" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="39" />
-<hkern g1="N,Ntilde" 	g2="b" 	k="12" />
-<hkern g1="N,Ntilde" 	g2="y,yacute,ydieresis" 	k="31" />
-<hkern g1="N,Ntilde" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="16" />
-<hkern g1="N,Ntilde" 	g2="v,w" 	k="31" />
-<hkern g1="N,Ntilde" 	g2="m,n,r,ntilde" 	k="31" />
-<hkern g1="N,Ntilde" 	g2="p" 	k="35" />
-<hkern g1="N,Ntilde" 	g2="z" 	k="39" />
-<hkern g1="N,Ntilde" 	g2="t" 	k="16" />
-<hkern g1="N,Ntilde" 	g2="x" 	k="14" />
-<hkern g1="N,Ntilde" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="14" />
-<hkern g1="N,Ntilde" 	g2="j" 	k="8" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="germandbls,thorn" 	k="20" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="f,uniFB01,uniFB02" 	k="23" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="51" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="g" 	k="12" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="AE" 	k="84" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="s" 	k="6" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="39" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="h,k,l" 	k="23" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="8" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="y,yacute,ydieresis" 	k="12" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="v,w" 	k="10" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="x" 	k="27" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="parenright" 	k="53" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="braceright" 	k="39" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="question" 	k="25" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="W" 	k="37" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="Y,Yacute,Ydieresis" 	k="53" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="V" 	k="45" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="J" 	k="14" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="16" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="10" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="bracketright" 	k="8" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="X" 	k="63" />
-<hkern g1="z" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
-<hkern g1="z" 	g2="hyphen,uni00AD,endash,emdash" 	k="10" />
-<hkern g1="z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="8" />
-<hkern g1="z" 	g2="parenright" 	k="37" />
-<hkern g1="z" 	g2="W" 	k="78" />
-<hkern g1="z" 	g2="Y,Yacute,Ydieresis" 	k="72" />
-<hkern g1="z" 	g2="V" 	k="88" />
-<hkern g1="z" 	g2="J" 	k="35" />
-<hkern g1="z" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
-<hkern g1="z" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="35" />
-<hkern g1="x" 	g2="hyphen,uni00AD,endash,emdash" 	k="72" />
-<hkern g1="x" 	g2="guillemotleft,guilsinglleft" 	k="55" />
-<hkern g1="x" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="41" />
-<hkern g1="x" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="45" />
-<hkern g1="x" 	g2="W" 	k="70" />
-<hkern g1="x" 	g2="Y,Yacute,Ydieresis" 	k="57" />
-<hkern g1="x" 	g2="J" 	k="16" />
-<hkern g1="x" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="37" />
-<hkern g1="germandbls" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
-<hkern g1="germandbls" 	g2="AE" 	k="16" />
-<hkern g1="germandbls" 	g2="y,yacute,ydieresis" 	k="49" />
-<hkern g1="germandbls" 	g2="v,w" 	k="47" />
-<hkern g1="germandbls" 	g2="z" 	k="6" />
-<hkern g1="germandbls" 	g2="t" 	k="6" />
-<hkern g1="germandbls" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="6" />
-<hkern g1="germandbls" 	g2="quotedbl,quotesingle" 	k="27" />
-<hkern g1="germandbls" 	g2="quoteright,quotedblright" 	k="27" />
-<hkern g1="germandbls" 	g2="quoteleft,quotedblleft" 	k="29" />
-<hkern g1="germandbls" 	g2="W" 	k="66" />
-<hkern g1="germandbls" 	g2="Y,Yacute,Ydieresis" 	k="76" />
-<hkern g1="germandbls" 	g2="J" 	k="25" />
-<hkern g1="germandbls" 	g2="T" 	k="51" />
-<hkern g1="germandbls" 	g2="Z" 	k="20" />
-<hkern g1="germandbls" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="16" />
-<hkern g1="germandbls" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="25" />
-<hkern g1="R" 	g2="space" 	k="23" />
-<hkern g1="R" 	g2="y,yacute,ydieresis" 	k="29" />
-<hkern g1="R" 	g2="v,w" 	k="27" />
-<hkern g1="R" 	g2="asterisk" 	k="8" />
-<hkern g1="R" 	g2="trademark" 	k="8" />
-<hkern g1="R" 	g2="W" 	k="86" />
-<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="76" />
-<hkern g1="R" 	g2="V" 	k="45" />
-<hkern g1="R" 	g2="T" 	k="6" />
-<hkern g1="R" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="6" />
-<hkern g1="P" 	g2="germandbls,thorn" 	k="20" />
-<hkern g1="P" 	g2="f,uniFB01,uniFB02" 	k="41" />
-<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="115" />
-<hkern g1="P" 	g2="g" 	k="27" />
-<hkern g1="P" 	g2="hyphen,uni00AD,endash,emdash" 	k="41" />
-<hkern g1="P" 	g2="guillemotleft,guilsinglleft" 	k="14" />
-<hkern g1="P" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="31" />
-<hkern g1="P" 	g2="AE" 	k="211" />
-<hkern g1="P" 	g2="s" 	k="18" />
-<hkern g1="P" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="154" />
-<hkern g1="P" 	g2="h,k,l" 	k="23" />
-<hkern g1="P" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="25" />
-<hkern g1="P" 	g2="W" 	k="16" />
-<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="23" />
-<hkern g1="P" 	g2="J" 	k="8" />
-<hkern g1="P" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="10" />
-<hkern g1="S" 	g2="germandbls,thorn" 	k="10" />
-<hkern g1="S" 	g2="f,uniFB01,uniFB02" 	k="10" />
-<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="27" />
-<hkern g1="S" 	g2="g" 	k="8" />
-<hkern g1="S" 	g2="AE" 	k="23" />
-<hkern g1="S" 	g2="s" 	k="6" />
-<hkern g1="S" 	g2="h,k,l" 	k="10" />
-<hkern g1="S" 	g2="b" 	k="6" />
-<hkern g1="S" 	g2="y,yacute,ydieresis" 	k="10" />
-<hkern g1="S" 	g2="v,w" 	k="10" />
-<hkern g1="S" 	g2="z" 	k="10" />
-<hkern g1="S" 	g2="parenright" 	k="23" />
-<hkern g1="S" 	g2="W" 	k="16" />
-<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="18" />
-<hkern g1="S" 	g2="V" 	k="16" />
-<hkern g1="Thorn" 	g2="f,uniFB01,uniFB02" 	k="6" />
-<hkern g1="Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="61" />
-<hkern g1="Thorn" 	g2="AE" 	k="117" />
-<hkern g1="Thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="53" />
-<hkern g1="Thorn" 	g2="h,k,l" 	k="4" />
-<hkern g1="Thorn" 	g2="v,w" 	k="8" />
-<hkern g1="Thorn" 	g2="W" 	k="41" />
-<hkern g1="Thorn" 	g2="Y,Yacute,Ydieresis" 	k="63" />
-<hkern g1="Thorn" 	g2="J" 	k="4" />
-<hkern g1="Thorn" 	g2="Z" 	k="4" />
-<hkern g1="Thorn" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="14" />
-<hkern g1="Thorn" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="4" />
-<hkern g1="slash" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="47" />
-<hkern g1="slash" 	g2="g" 	k="53" />
-<hkern g1="slash" 	g2="s" 	k="47" />
-<hkern g1="slash" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
-<hkern g1="slash" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="53" />
-<hkern g1="slash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="106" />
-<hkern g1="slash" 	g2="z" 	k="12" />
-<hkern g1="slash" 	g2="AE" 	k="141" />
-<hkern g1="slash" 	g2="f,uniFB01,uniFB02" 	k="51" />
-<hkern g1="three" 	g2="quotedbl,quotesingle" 	k="39" />
-<hkern g1="zero" 	g2="quotedbl,quotesingle" 	k="41" />
-<hkern g1="grave" 	g2="guillemotleft,guilsinglleft" 	k="16" />
-<hkern g1="one" 	g2="quotedbl,quotesingle" 	k="10" />
-<hkern g1="one" 	g2="hyphen,uni00AD,endash,emdash" 	k="12" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="quotedbl,quotesingle" 	k="168" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="quoteright,quotedblright" 	k="160" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="y,yacute,ydieresis" 	k="63" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="T" 	k="172" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="v,w" 	k="57" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="Y,Yacute,Ydieresis" 	k="147" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="five" 	k="29" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="nine" 	k="16" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="V" 	k="197" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="seven" 	k="41" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="three" 	k="66" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="23" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="j" 	k="-160" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="J" 	k="10" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="W" 	k="190" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="quoteleft,quotedblleft" 	k="156" />
-<hkern g1="bracketleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="10" />
-<hkern g1="bracketleft" 	g2="s" 	k="10" />
-<hkern g1="bracketleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
-<hkern g1="bracketleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="12" />
-<hkern g1="bracketleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="12" />
-<hkern g1="bracketleft" 	g2="Y,Yacute,Ydieresis" 	k="16" />
-<hkern g1="bracketleft" 	g2="j" 	k="-186" />
-<hkern g1="bracketleft" 	g2="J" 	k="-242" />
-<hkern g1="bracketleft" 	g2="W" 	k="16" />
-<hkern g1="bracketleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-31" />
-<hkern g1="bracketleft" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-57" />
-<hkern g1="bracketleft" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="8" />
-<hkern g1="periodcentered" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="35" />
-<hkern g1="periodcentered" 	g2="h,k,l" 	k="102" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="35" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="AE" 	k="41" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="f,uniFB01,uniFB02" 	k="10" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="quotedbl,quotesingle" 	k="33" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="quoteright,quotedblright" 	k="25" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="y,yacute,ydieresis" 	k="27" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="T" 	k="33" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="v,w" 	k="27" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="Y,Yacute,Ydieresis" 	k="84" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="V" 	k="59" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="three" 	k="23" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="10" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="J" 	k="10" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="W" 	k="53" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="14" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="10" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="one" 	k="16" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="X" 	k="55" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="four" 	k="39" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="Z" 	k="23" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="m,n,r,ntilde" 	k="10" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="two" 	k="20" />
-<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="x" 	k="35" />
-<hkern g1="four" 	g2="quotedbl,quotesingle" 	k="55" />
-<hkern g1="quoteright,quotedblright" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="43" />
-<hkern g1="quoteright,quotedblright" 	g2="g" 	k="41" />
-<hkern g1="quoteright,quotedblright" 	g2="s" 	k="23" />
-<hkern g1="quoteright,quotedblright" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="43" />
-<hkern g1="quoteright,quotedblright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="121" />
-<hkern g1="quoteright,quotedblright" 	g2="AE" 	k="174" />
-<hkern g1="quoteright,quotedblright" 	g2="f,uniFB01,uniFB02" 	k="39" />
-<hkern g1="quoteright,quotedblright" 	g2="guillemotleft,guilsinglleft" 	k="39" />
-<hkern g1="quoteright,quotedblright" 	g2="hyphen,uni00AD,endash,emdash" 	k="31" />
-<hkern g1="quoteright,quotedblright" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="268" />
-<hkern g1="quoteright,quotedblright" 	g2="ampersand" 	k="39" />
-<hkern g1="quoteright,quotedblright" 	g2="space" 	k="37" />
-<hkern g1="quoteright,quotedblright" 	g2="at" 	k="80" />
-<hkern g1="quoteright,quotedblright" 	g2="slash" 	k="88" />
-<hkern g1="exclamdown" 	g2="Y,Yacute,Ydieresis" 	k="41" />
-<hkern g1="exclamdown" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="25" />
-<hkern g1="exclamdown" 	g2="j" 	k="-199" />
-<hkern g1="exclamdown" 	g2="J" 	k="-262" />
-<hkern g1="exclamdown" 	g2="W" 	k="55" />
-<hkern g1="guillemotright,guilsinglright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
-<hkern g1="guillemotright,guilsinglright" 	g2="AE" 	k="25" />
-<hkern g1="guillemotright,guilsinglright" 	g2="quotedbl,quotesingle" 	k="45" />
-<hkern g1="guillemotright,guilsinglright" 	g2="quoteright,quotedblright" 	k="47" />
-<hkern g1="guillemotright,guilsinglright" 	g2="y,yacute,ydieresis" 	k="39" />
-<hkern g1="guillemotright,guilsinglright" 	g2="T" 	k="152" />
-<hkern g1="guillemotright,guilsinglright" 	g2="v,w" 	k="37" />
-<hkern g1="guillemotright,guilsinglright" 	g2="Y,Yacute,Ydieresis" 	k="168" />
-<hkern g1="guillemotright,guilsinglright" 	g2="V" 	k="133" />
-<hkern g1="guillemotright,guilsinglright" 	g2="W" 	k="109" />
-<hkern g1="guillemotright,guilsinglright" 	g2="X" 	k="27" />
-<hkern g1="guillemotright,guilsinglright" 	g2="x" 	k="57" />
-<hkern g1="nine" 	g2="quotedbl,quotesingle" 	k="49" />
-<hkern g1="colon,semicolon" 	g2="Y,Yacute,Ydieresis" 	k="55" />
-<hkern g1="colon,semicolon" 	g2="V" 	k="51" />
-<hkern g1="colon,semicolon" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="6" />
-<hkern g1="colon,semicolon" 	g2="W" 	k="45" />
-<hkern g1="seven" 	g2="hyphen,uni00AD,endash,emdash" 	k="25" />
-<hkern g1="seven" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="76" />
-<hkern g1="at" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="47" />
-<hkern g1="at" 	g2="AE" 	k="78" />
-<hkern g1="at" 	g2="Y,Yacute,Ydieresis" 	k="33" />
-<hkern g1="at" 	g2="W" 	k="20" />
-<hkern g1="braceleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="27" />
-<hkern g1="braceleft" 	g2="s" 	k="31" />
-<hkern g1="braceleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="39" />
-<hkern g1="braceleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="49" />
-<hkern g1="braceleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="16" />
-<hkern g1="braceleft" 	g2="z" 	k="12" />
-<hkern g1="braceleft" 	g2="AE" 	k="14" />
-<hkern g1="braceleft" 	g2="v,w" 	k="12" />
-<hkern g1="braceleft" 	g2="Y,Yacute,Ydieresis" 	k="18" />
-<hkern g1="braceleft" 	g2="j" 	k="-211" />
-<hkern g1="braceleft" 	g2="J" 	k="-266" />
-<hkern g1="braceleft" 	g2="W" 	k="16" />
-<hkern g1="braceleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-80" />
-<hkern g1="braceleft" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-102" />
-<hkern g1="braceleft" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="14" />
-<hkern g1="braceleft" 	g2="germandbls,thorn" 	k="-12" />
-<hkern g1="ampersand" 	g2="g" 	k="8" />
-<hkern g1="ampersand" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="23" />
-<hkern g1="ampersand" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="86" />
-<hkern g1="ampersand" 	g2="AE" 	k="121" />
-<hkern g1="ampersand" 	g2="f,uniFB01,uniFB02" 	k="25" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="Y,Yacute,Ydieresis" 	k="27" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="V" 	k="37" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="W" 	k="27" />
-<hkern g1="quotedbl,quotesingle" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="29" />
-<hkern g1="quotedbl,quotesingle" 	g2="g" 	k="47" />
-<hkern g1="quotedbl,quotesingle" 	g2="s" 	k="23" />
-<hkern g1="quotedbl,quotesingle" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
-<hkern g1="quotedbl,quotesingle" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="47" />
-<hkern g1="quotedbl,quotesingle" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="125" />
-<hkern g1="quotedbl,quotesingle" 	g2="AE" 	k="176" />
-<hkern g1="quotedbl,quotesingle" 	g2="f,uniFB01,uniFB02" 	k="43" />
-<hkern g1="quotedbl,quotesingle" 	g2="guillemotleft,guilsinglleft" 	k="45" />
-<hkern g1="quotedbl,quotesingle" 	g2="hyphen,uni00AD,endash,emdash" 	k="33" />
-<hkern g1="quotedbl,quotesingle" 	g2="five" 	k="25" />
-<hkern g1="quotedbl,quotesingle" 	g2="nine" 	k="39" />
-<hkern g1="quotedbl,quotesingle" 	g2="three" 	k="23" />
-<hkern g1="quotedbl,quotesingle" 	g2="W" 	k="-16" />
-<hkern g1="quotedbl,quotesingle" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="268" />
-<hkern g1="quotedbl,quotesingle" 	g2="four" 	k="180" />
-<hkern g1="quotedbl,quotesingle" 	g2="two" 	k="14" />
-<hkern g1="quotedbl,quotesingle" 	g2="ampersand" 	k="39" />
-<hkern g1="quotedbl,quotesingle" 	g2="space" 	k="37" />
-<hkern g1="quotedbl,quotesingle" 	g2="at" 	k="88" />
-<hkern g1="quotedbl,quotesingle" 	g2="slash" 	k="92" />
-<hkern g1="quotedbl,quotesingle" 	g2="zero" 	k="45" />
-<hkern g1="quotedbl,quotesingle" 	g2="six" 	k="35" />
-<hkern g1="space" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="80" />
-<hkern g1="space" 	g2="AE" 	k="86" />
-<hkern g1="space" 	g2="quotedbl,quotesingle" 	k="39" />
-<hkern g1="space" 	g2="quoteright,quotedblright" 	k="33" />
-<hkern g1="space" 	g2="y,yacute,ydieresis" 	k="59" />
-<hkern g1="space" 	g2="T" 	k="49" />
-<hkern g1="space" 	g2="v,w" 	k="57" />
-<hkern g1="space" 	g2="Y,Yacute,Ydieresis" 	k="74" />
-<hkern g1="space" 	g2="W" 	k="76" />
-<hkern g1="space" 	g2="h,k,l" 	k="25" />
-<hkern g1="space" 	g2="t" 	k="25" />
-<hkern g1="quoteleft,quotedblleft" 	g2="g" 	k="25" />
-<hkern g1="quoteleft,quotedblleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="25" />
-<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="184" />
-<hkern g1="quoteleft,quotedblleft" 	g2="AE" 	k="166" />
-<hkern g1="quoteleft,quotedblleft" 	g2="f,uniFB01,uniFB02" 	k="29" />
-<hkern g1="quoteleft,quotedblleft" 	g2="y,yacute,ydieresis" 	k="-23" />
-<hkern g1="quoteleft,quotedblleft" 	g2="v,w" 	k="-14" />
-<hkern g1="quoteleft,quotedblleft" 	g2="Y,Yacute,Ydieresis" 	k="16" />
-<hkern g1="quoteleft,quotedblleft" 	g2="V" 	k="14" />
-<hkern g1="quoteleft,quotedblleft" 	g2="W" 	k="12" />
-<hkern g1="quoteleft,quotedblleft" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="250" />
-<hkern g1="quoteleft,quotedblleft" 	g2="h,k,l" 	k="6" />
-<hkern g1="quoteleft,quotedblleft" 	g2="X" 	k="10" />
-<hkern g1="quoteleft,quotedblleft" 	g2="germandbls,thorn" 	k="6" />
-<hkern g1="two" 	g2="quotedbl,quotesingle" 	k="35" />
-<hkern g1="six" 	g2="quotedbl,quotesingle" 	k="29" />
-<hkern g1="parenleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="47" />
-<hkern g1="parenleft" 	g2="s" 	k="43" />
-<hkern g1="parenleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="55" />
-<hkern g1="parenleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="63" />
-<hkern g1="parenleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="16" />
-<hkern g1="parenleft" 	g2="z" 	k="33" />
-<hkern g1="parenleft" 	g2="AE" 	k="16" />
-<hkern g1="parenleft" 	g2="f,uniFB01,uniFB02" 	k="20" />
-<hkern g1="parenleft" 	g2="v,w" 	k="43" />
-<hkern g1="parenleft" 	g2="j" 	k="-231" />
-<hkern g1="parenleft" 	g2="J" 	k="-289" />
-<hkern g1="parenleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-27" />
-<hkern g1="parenleft" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-25" />
-<hkern g1="parenleft" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="49" />
-<hkern g1="parenleft" 	g2="m,n,r,ntilde" 	k="29" />
-<hkern g1="parenleft" 	g2="t" 	k="35" />
-<hkern g1="parenleft" 	g2="S" 	k="25" />
-<hkern g1="bar" 	g2="j" 	k="-147" />
-<hkern g1="bar" 	g2="J" 	k="-219" />
-<hkern g1="backslash" 	g2="quotedbl,quotesingle" 	k="92" />
-<hkern g1="backslash" 	g2="quoteright,quotedblright" 	k="88" />
-<hkern g1="backslash" 	g2="y,yacute,ydieresis" 	k="55" />
-<hkern g1="backslash" 	g2="T" 	k="53" />
-<hkern g1="backslash" 	g2="v,w" 	k="55" />
-<hkern g1="backslash" 	g2="Y,Yacute,Ydieresis" 	k="84" />
-<hkern g1="backslash" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="33" />
-<hkern g1="backslash" 	g2="W" 	k="96" />
-<hkern g1="asterisk" 	g2="g" 	k="6" />
-<hkern g1="asterisk" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="92" />
-<hkern g1="asterisk" 	g2="AE" 	k="152" />
-<hkern g1="asterisk" 	g2="f,uniFB01,uniFB02" 	k="25" />
-<hkern g1="asterisk" 	g2="Y,Yacute,Ydieresis" 	k="16" />
-</font>
-</defs></svg> 
\ No newline at end of file
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-bold-webfont.woff b/client/assets/fonts/playfairdisplay/playfairdisplay-bold-webfont.woff
deleted file mode 100755
index f87e91940eba5a366ca2088c705eca2c0284cf9d..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-bold-webfont.woff and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-bold-webfont.woff2 b/client/assets/fonts/playfairdisplay/playfairdisplay-bold-webfont.woff2
deleted file mode 100755
index c3e70829d0ad0f41fcba21a2997a552d452c4657..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-bold-webfont.woff2 and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-bolditalic-demo.html b/client/assets/fonts/playfairdisplay/playfairdisplay-bolditalic-demo.html
deleted file mode 100755
index a93e09ef4330f3970bb5ed36f0d125fcf26d8414..0000000000000000000000000000000000000000
--- a/client/assets/fonts/playfairdisplay/playfairdisplay-bolditalic-demo.html
+++ /dev/null
@@ -1,613 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-	<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script>
-	<script src="specimen_files/easytabs.js" type="text/javascript" charset="utf-8"></script>
-	<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" />
-	<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
-
-	<style type="text/css">
-					body{
-				font-family: 'playfair_displaybold_italic';
-							}
-		</style>
-
-	<title>Playfair Display Bold Italic Specimen</title>
-	
-	
-	<script type="text/javascript" charset="utf-8">
-		$(document).ready(function() {
-			$('#container').easyTabs({defaultContent:1});
-		});
-	</script>
-</head>
-
-<body>
-<div id="container">
-	<div id="header">
-		Playfair Display Bold Italic	</div>
-	<ul class="tabs">
-		<li><a href="#specimen">Specimen</a></li>
-		<li><a href="#layout">Sample Layout</a></li>
-				<li><a href="#glyphs">Glyphs &amp; Languages</a></li>
-		<li><a href="#installing">Installing Webfonts</a></li>
-		
-	</ul>
-	
-	<div id="main_content">
-
-		
-			<div id="specimen">
-		
-				<div class="section">
-					<div class="grid12 firstcol">
-						<div class="huge">AaBb</div>
-					</div>
-				</div>
-		
-				<div class="section">
-					<div class="glyph_range">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>
-				</div>
-				<div class="section">
-					<div class="grid12 firstcol">
-						<table class="sample_table">
-							<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-						</table>
-				
-					</div>
-			
-				</div>
-		
-		
-		
-								<div class="section" id="bodycomparison">
-
-
-										<div id="xheight">
-				<div class="fontbody">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div>
-										<div class="fontbody" style="z-index:1">
-											body<span>Playfair Display Bold Italic</span>
-										</div>
-										<div class="arialbody" style="z-index:1">
-											body<span>Arial</span>
-										</div>
-										<div class="verdanabody" style="z-index:1">
-											body<span>Verdana</span>
-										</div>
-										<div class="georgiabody" style="z-index:1">
-											body<span>Georgia</span>
-										</div>
-
-
-
-								</div>
-		
-		
-				<div class="section psample psample_row1" id="">
-					
-					<div class="grid2 firstcol">
-						<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="white_blend"></div>
-					
-				</div>
-				<div class="section psample psample_row2" id="">
-					<div class="grid3 firstcol">
-						<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid5">
-						<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-
-					<div class="white_blend"></div>
-
-				</div>
-				
-				<div class="section psample psample_row3" id="">
-					<div class="grid5 firstcol">
-						<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="grid7">
-						<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					
-					<div class="white_blend"></div>
-					
-				</div>
-				
-				<div class="section psample psample_row4" id="">
-					<div class="grid12 firstcol">
-						<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="white_blend"></div>
-					
-				</div>
-				
-				
-				
-				<div class="section psample psample_row1 fullreverse">
-					<div class="grid2 firstcol">
-						<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				<div class="section psample psample_row2 fullreverse">
-					<div class="grid3 firstcol">
-						<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid5">
-						<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="black_blend"></div>
-
-				</div>
-				
-				<div class="section psample fullreverse psample_row3" id="">
-					<div class="grid5 firstcol">
-						<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="grid7">
-						<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
-					<div class="grid12 firstcol">
-						<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				
-				
-				
-			</div>
-			
-			<div id="layout">
-				
-				<div class="section">
-					
-					<div class="grid12 firstcol">
-						<h1>Lorem Ipsum Dolor</h1>
-						<h2>Etiam porta sem malesuada magna mollis euismod</h2>
-						
-						<p class="byline">By <a href="#link">Aenean Lacinia</a></p>
-					</div>
-				</div>
-				<div class="section">
-					<div class="grid8 firstcol">
-						<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-						
-						<h3>Pellentesque ornare sem</h3>
-
-						<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
-
-						<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
-
-						<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
-
-						<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
-
-						<h3>Cras mattis consectetur</h3>
-
-						<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
-
-						<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
-					</div>
-					
-					<div class="grid4 sidebar">
-						
-						<div class="box reverse">
-							<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
-						</div>
-						
-						<p class="caption">Maecenas sed diam eget risus varius.</p>
-
-						<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-					
-
-						<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
-
-						<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-					</div>
-				</div>
-				
-			</div>
-
-
-			
-
-
-
-		<div id="glyphs">
-			<div class="section">
-				<div class="grid12 firstcol">
-			
-				<h1>Language Support</h1>
-				<p>The subset of Playfair Display Bold Italic in this kit supports the following languages:<br />
-			
-					Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Swedish				</p>
-				<h1>Glyph Chart</h1>
-				<p>The subset of Playfair Display Bold Italic in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p>
-				<div id="glyph_chart">
-			
-																				 <div><p>&amp;#13;</p>&#13;</div>
-																				 <div><p>&amp;#32;</p>&#32;</div>
-																				 <div><p>&amp;#33;</p>&#33;</div>
-																				 <div><p>&amp;#34;</p>&#34;</div>
-																				 <div><p>&amp;#35;</p>&#35;</div>
-																				 <div><p>&amp;#36;</p>&#36;</div>
-																				 <div><p>&amp;#37;</p>&#37;</div>
-																				 <div><p>&amp;#38;</p>&#38;</div>
-																				 <div><p>&amp;#39;</p>&#39;</div>
-																				 <div><p>&amp;#40;</p>&#40;</div>
-																				 <div><p>&amp;#41;</p>&#41;</div>
-																				 <div><p>&amp;#42;</p>&#42;</div>
-																				 <div><p>&amp;#43;</p>&#43;</div>
-																				 <div><p>&amp;#44;</p>&#44;</div>
-																				 <div><p>&amp;#45;</p>&#45;</div>
-																				 <div><p>&amp;#46;</p>&#46;</div>
-																				 <div><p>&amp;#47;</p>&#47;</div>
-																				 <div><p>&amp;#48;</p>&#48;</div>
-																				 <div><p>&amp;#49;</p>&#49;</div>
-																				 <div><p>&amp;#50;</p>&#50;</div>
-																				 <div><p>&amp;#51;</p>&#51;</div>
-																				 <div><p>&amp;#52;</p>&#52;</div>
-																				 <div><p>&amp;#53;</p>&#53;</div>
-																				 <div><p>&amp;#54;</p>&#54;</div>
-																				 <div><p>&amp;#55;</p>&#55;</div>
-																				 <div><p>&amp;#56;</p>&#56;</div>
-																				 <div><p>&amp;#57;</p>&#57;</div>
-																				 <div><p>&amp;#58;</p>&#58;</div>
-																				 <div><p>&amp;#59;</p>&#59;</div>
-																				 <div><p>&amp;#60;</p>&#60;</div>
-																				 <div><p>&amp;#61;</p>&#61;</div>
-																				 <div><p>&amp;#62;</p>&#62;</div>
-																				 <div><p>&amp;#63;</p>&#63;</div>
-																				 <div><p>&amp;#64;</p>&#64;</div>
-																				 <div><p>&amp;#65;</p>&#65;</div>
-																				 <div><p>&amp;#66;</p>&#66;</div>
-																				 <div><p>&amp;#67;</p>&#67;</div>
-																				 <div><p>&amp;#68;</p>&#68;</div>
-																				 <div><p>&amp;#69;</p>&#69;</div>
-																				 <div><p>&amp;#70;</p>&#70;</div>
-																				 <div><p>&amp;#71;</p>&#71;</div>
-																				 <div><p>&amp;#72;</p>&#72;</div>
-																				 <div><p>&amp;#73;</p>&#73;</div>
-																				 <div><p>&amp;#74;</p>&#74;</div>
-																				 <div><p>&amp;#75;</p>&#75;</div>
-																				 <div><p>&amp;#76;</p>&#76;</div>
-																				 <div><p>&amp;#77;</p>&#77;</div>
-																				 <div><p>&amp;#78;</p>&#78;</div>
-																				 <div><p>&amp;#79;</p>&#79;</div>
-																				 <div><p>&amp;#80;</p>&#80;</div>
-																				 <div><p>&amp;#81;</p>&#81;</div>
-																				 <div><p>&amp;#82;</p>&#82;</div>
-																				 <div><p>&amp;#83;</p>&#83;</div>
-																				 <div><p>&amp;#84;</p>&#84;</div>
-																				 <div><p>&amp;#85;</p>&#85;</div>
-																				 <div><p>&amp;#86;</p>&#86;</div>
-																				 <div><p>&amp;#87;</p>&#87;</div>
-																				 <div><p>&amp;#88;</p>&#88;</div>
-																				 <div><p>&amp;#89;</p>&#89;</div>
-																				 <div><p>&amp;#90;</p>&#90;</div>
-																				 <div><p>&amp;#91;</p>&#91;</div>
-																				 <div><p>&amp;#92;</p>&#92;</div>
-																				 <div><p>&amp;#93;</p>&#93;</div>
-																				 <div><p>&amp;#94;</p>&#94;</div>
-																				 <div><p>&amp;#95;</p>&#95;</div>
-																				 <div><p>&amp;#96;</p>&#96;</div>
-																				 <div><p>&amp;#97;</p>&#97;</div>
-																				 <div><p>&amp;#98;</p>&#98;</div>
-																				 <div><p>&amp;#99;</p>&#99;</div>
-																				 <div><p>&amp;#100;</p>&#100;</div>
-																				 <div><p>&amp;#101;</p>&#101;</div>
-																				 <div><p>&amp;#102;</p>&#102;</div>
-																				 <div><p>&amp;#103;</p>&#103;</div>
-																				 <div><p>&amp;#104;</p>&#104;</div>
-																				 <div><p>&amp;#105;</p>&#105;</div>
-																				 <div><p>&amp;#106;</p>&#106;</div>
-																				 <div><p>&amp;#107;</p>&#107;</div>
-																				 <div><p>&amp;#108;</p>&#108;</div>
-																				 <div><p>&amp;#109;</p>&#109;</div>
-																				 <div><p>&amp;#110;</p>&#110;</div>
-																				 <div><p>&amp;#111;</p>&#111;</div>
-																				 <div><p>&amp;#112;</p>&#112;</div>
-																				 <div><p>&amp;#113;</p>&#113;</div>
-																				 <div><p>&amp;#114;</p>&#114;</div>
-																				 <div><p>&amp;#115;</p>&#115;</div>
-																				 <div><p>&amp;#116;</p>&#116;</div>
-																				 <div><p>&amp;#117;</p>&#117;</div>
-																				 <div><p>&amp;#118;</p>&#118;</div>
-																				 <div><p>&amp;#119;</p>&#119;</div>
-																				 <div><p>&amp;#120;</p>&#120;</div>
-																				 <div><p>&amp;#121;</p>&#121;</div>
-																				 <div><p>&amp;#122;</p>&#122;</div>
-																				 <div><p>&amp;#123;</p>&#123;</div>
-																				 <div><p>&amp;#124;</p>&#124;</div>
-																				 <div><p>&amp;#125;</p>&#125;</div>
-																				 <div><p>&amp;#126;</p>&#126;</div>
-																				 <div><p>&amp;#160;</p>&#160;</div>
-																				 <div><p>&amp;#161;</p>&#161;</div>
-																				 <div><p>&amp;#162;</p>&#162;</div>
-																				 <div><p>&amp;#163;</p>&#163;</div>
-																				 <div><p>&amp;#164;</p>&#164;</div>
-																				 <div><p>&amp;#165;</p>&#165;</div>
-																				 <div><p>&amp;#166;</p>&#166;</div>
-																				 <div><p>&amp;#167;</p>&#167;</div>
-																				 <div><p>&amp;#168;</p>&#168;</div>
-																				 <div><p>&amp;#169;</p>&#169;</div>
-																				 <div><p>&amp;#170;</p>&#170;</div>
-																				 <div><p>&amp;#171;</p>&#171;</div>
-																				 <div><p>&amp;#172;</p>&#172;</div>
-																				 <div><p>&amp;#173;</p>&#173;</div>
-																				 <div><p>&amp;#174;</p>&#174;</div>
-																				 <div><p>&amp;#175;</p>&#175;</div>
-																				 <div><p>&amp;#176;</p>&#176;</div>
-																				 <div><p>&amp;#177;</p>&#177;</div>
-																				 <div><p>&amp;#178;</p>&#178;</div>
-																				 <div><p>&amp;#179;</p>&#179;</div>
-																				 <div><p>&amp;#180;</p>&#180;</div>
-																				 <div><p>&amp;#182;</p>&#182;</div>
-																				 <div><p>&amp;#183;</p>&#183;</div>
-																				 <div><p>&amp;#184;</p>&#184;</div>
-																				 <div><p>&amp;#185;</p>&#185;</div>
-																				 <div><p>&amp;#186;</p>&#186;</div>
-																				 <div><p>&amp;#187;</p>&#187;</div>
-																				 <div><p>&amp;#188;</p>&#188;</div>
-																				 <div><p>&amp;#189;</p>&#189;</div>
-																				 <div><p>&amp;#190;</p>&#190;</div>
-																				 <div><p>&amp;#191;</p>&#191;</div>
-																				 <div><p>&amp;#192;</p>&#192;</div>
-																				 <div><p>&amp;#193;</p>&#193;</div>
-																				 <div><p>&amp;#194;</p>&#194;</div>
-																				 <div><p>&amp;#195;</p>&#195;</div>
-																				 <div><p>&amp;#196;</p>&#196;</div>
-																				 <div><p>&amp;#197;</p>&#197;</div>
-																				 <div><p>&amp;#198;</p>&#198;</div>
-																				 <div><p>&amp;#199;</p>&#199;</div>
-																				 <div><p>&amp;#200;</p>&#200;</div>
-																				 <div><p>&amp;#201;</p>&#201;</div>
-																				 <div><p>&amp;#202;</p>&#202;</div>
-																				 <div><p>&amp;#203;</p>&#203;</div>
-																				 <div><p>&amp;#204;</p>&#204;</div>
-																				 <div><p>&amp;#205;</p>&#205;</div>
-																				 <div><p>&amp;#206;</p>&#206;</div>
-																				 <div><p>&amp;#207;</p>&#207;</div>
-																				 <div><p>&amp;#208;</p>&#208;</div>
-																				 <div><p>&amp;#209;</p>&#209;</div>
-																				 <div><p>&amp;#210;</p>&#210;</div>
-																				 <div><p>&amp;#211;</p>&#211;</div>
-																				 <div><p>&amp;#212;</p>&#212;</div>
-																				 <div><p>&amp;#213;</p>&#213;</div>
-																				 <div><p>&amp;#214;</p>&#214;</div>
-																				 <div><p>&amp;#215;</p>&#215;</div>
-																				 <div><p>&amp;#216;</p>&#216;</div>
-																				 <div><p>&amp;#217;</p>&#217;</div>
-																				 <div><p>&amp;#218;</p>&#218;</div>
-																				 <div><p>&amp;#219;</p>&#219;</div>
-																				 <div><p>&amp;#220;</p>&#220;</div>
-																				 <div><p>&amp;#221;</p>&#221;</div>
-																				 <div><p>&amp;#222;</p>&#222;</div>
-																				 <div><p>&amp;#223;</p>&#223;</div>
-																				 <div><p>&amp;#224;</p>&#224;</div>
-																				 <div><p>&amp;#225;</p>&#225;</div>
-																				 <div><p>&amp;#226;</p>&#226;</div>
-																				 <div><p>&amp;#227;</p>&#227;</div>
-																				 <div><p>&amp;#228;</p>&#228;</div>
-																				 <div><p>&amp;#229;</p>&#229;</div>
-																				 <div><p>&amp;#230;</p>&#230;</div>
-																				 <div><p>&amp;#231;</p>&#231;</div>
-																				 <div><p>&amp;#232;</p>&#232;</div>
-																				 <div><p>&amp;#233;</p>&#233;</div>
-																				 <div><p>&amp;#234;</p>&#234;</div>
-																				 <div><p>&amp;#235;</p>&#235;</div>
-																				 <div><p>&amp;#236;</p>&#236;</div>
-																				 <div><p>&amp;#237;</p>&#237;</div>
-																				 <div><p>&amp;#238;</p>&#238;</div>
-																				 <div><p>&amp;#239;</p>&#239;</div>
-																				 <div><p>&amp;#240;</p>&#240;</div>
-																				 <div><p>&amp;#241;</p>&#241;</div>
-																				 <div><p>&amp;#242;</p>&#242;</div>
-																				 <div><p>&amp;#243;</p>&#243;</div>
-																				 <div><p>&amp;#244;</p>&#244;</div>
-																				 <div><p>&amp;#245;</p>&#245;</div>
-																				 <div><p>&amp;#246;</p>&#246;</div>
-																				 <div><p>&amp;#247;</p>&#247;</div>
-																				 <div><p>&amp;#248;</p>&#248;</div>
-																				 <div><p>&amp;#249;</p>&#249;</div>
-																				 <div><p>&amp;#250;</p>&#250;</div>
-																				 <div><p>&amp;#251;</p>&#251;</div>
-																				 <div><p>&amp;#252;</p>&#252;</div>
-																				 <div><p>&amp;#253;</p>&#253;</div>
-																				 <div><p>&amp;#254;</p>&#254;</div>
-																				 <div><p>&amp;#255;</p>&#255;</div>
-																				 <div><p>&amp;#338;</p>&#338;</div>
-																				 <div><p>&amp;#339;</p>&#339;</div>
-																				 <div><p>&amp;#376;</p>&#376;</div>
-																				 <div><p>&amp;#710;</p>&#710;</div>
-																				 <div><p>&amp;#732;</p>&#732;</div>
-																				 <div><p>&amp;#8192;</p>&#8192;</div>
-																				 <div><p>&amp;#8193;</p>&#8193;</div>
-																				 <div><p>&amp;#8194;</p>&#8194;</div>
-																				 <div><p>&amp;#8195;</p>&#8195;</div>
-																				 <div><p>&amp;#8196;</p>&#8196;</div>
-																				 <div><p>&amp;#8197;</p>&#8197;</div>
-																				 <div><p>&amp;#8198;</p>&#8198;</div>
-																				 <div><p>&amp;#8199;</p>&#8199;</div>
-																				 <div><p>&amp;#8200;</p>&#8200;</div>
-																				 <div><p>&amp;#8201;</p>&#8201;</div>
-																				 <div><p>&amp;#8202;</p>&#8202;</div>
-																				 <div><p>&amp;#8208;</p>&#8208;</div>
-																				 <div><p>&amp;#8209;</p>&#8209;</div>
-																				 <div><p>&amp;#8210;</p>&#8210;</div>
-																				 <div><p>&amp;#8211;</p>&#8211;</div>
-																				 <div><p>&amp;#8212;</p>&#8212;</div>
-																				 <div><p>&amp;#8216;</p>&#8216;</div>
-																				 <div><p>&amp;#8217;</p>&#8217;</div>
-																				 <div><p>&amp;#8218;</p>&#8218;</div>
-																				 <div><p>&amp;#8220;</p>&#8220;</div>
-																				 <div><p>&amp;#8221;</p>&#8221;</div>
-																				 <div><p>&amp;#8222;</p>&#8222;</div>
-																				 <div><p>&amp;#8226;</p>&#8226;</div>
-																				 <div><p>&amp;#8230;</p>&#8230;</div>
-																				 <div><p>&amp;#8239;</p>&#8239;</div>
-																				 <div><p>&amp;#8249;</p>&#8249;</div>
-																				 <div><p>&amp;#8250;</p>&#8250;</div>
-																				 <div><p>&amp;#8287;</p>&#8287;</div>
-																				 <div><p>&amp;#8364;</p>&#8364;</div>
-																				 <div><p>&amp;#8482;</p>&#8482;</div>
-																				 <div><p>&amp;#9724;</p>&#9724;</div>
-																				 <div><p>&amp;#64257;</p>&#64257;</div>
-																				 <div><p>&amp;#64258;</p>&#64258;</div>
-																				 <div><p>&amp;#64259;</p>&#64259;</div>
-																				 <div><p>&amp;#64260;</p>&#64260;</div>
-																																																</div>	
-				</div>
-		
-		
-			</div>
-		</div>
-		
-		
-		<div id="specs">
-			
-		</div>
-	
-		<div id="installing">
-			<div class="section">
-				<div class="grid7 firstcol">
-					<h1>Installing Webfonts</h1>
-					
-					<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
-					
-					<h2>1. Upload your webfonts</h2>
-					<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
-					
-					<h2>2. Include the webfont stylesheet</h2>
-					<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p>
-
-
-<code>
-@font-face{ 
-	font-family: 'MyWebFont';
-	src: url('WebFont.eot');
-	src: url('WebFont.eot?#iefix') format('embedded-opentype'),
-	     url('WebFont.woff') format('woff'),
-	     url('WebFont.ttf') format('truetype'),
-	     url('WebFont.svg#webfont') format('svg');
-}
-</code>
-
-	<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
-	<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>
-
-					<h2>3. Modify your own stylesheet</h2>
-					<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
-<code>p { font-family: 'WebFont', Arial, sans-serif; }</code>
-
-<h2>4. Test</h2>
-<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
-				</div>
-				
-				<div class="grid5 sidebar">
-					<div class="box">
-						<h2>Troubleshooting<br />Font-Face Problems</h2>
-						<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
-
-						<h3>Fonts not showing in any browser</h3>
-
-						<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
-
-						<h3>Fonts not loading in iPhone or iPad</h3>
-
-						<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
-
-						<h3>Fonts not loading in Firefox</h3>
-
-						<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
-
-						<h3>Fonts not loading in IE</h3>
-
-						<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
-
-						<h3>Fonts not loading in IE9</h3>
-
-						<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
-					</div>
-				</div>
-			</div>
-			
-		</div>
-	
-	</div>
-	<div id="footer">
-		<p>&copy;2010-2011 Font Squirrel. All rights reserved.</p>
-	</div>
-</div>
-</body>
-</html>
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-bolditalic-webfont.eot b/client/assets/fonts/playfairdisplay/playfairdisplay-bolditalic-webfont.eot
deleted file mode 100755
index cf31aa589402133bfefaf6610fb55b58b1e84de3..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-bolditalic-webfont.eot and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-bolditalic-webfont.svg b/client/assets/fonts/playfairdisplay/playfairdisplay-bolditalic-webfont.svg
deleted file mode 100755
index 61d6cae4b17de229cf514b3e53c81bc100df1f92..0000000000000000000000000000000000000000
--- a/client/assets/fonts/playfairdisplay/playfairdisplay-bolditalic-webfont.svg
+++ /dev/null
@@ -1,738 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
-<metadata></metadata>
-<defs>
-<font id="playfair_displaybold_italic" horiz-adv-x="1591" >
-<font-face units-per-em="2048" ascent="1638" descent="-410" />
-<missing-glyph horiz-adv-x="522" />
-<glyph unicode="&#xfb01;" horiz-adv-x="1235" d="M-96 -385l386 1401h-177l12 41h176q43 155 108 258t160 164q101 66 219.5 94.5t266.5 28.5q143 0 207 -57q41 -33 41 -87q0 -55 -28.5 -98t-76.5 -67.5t-106 -24.5q-71 0 -110.5 32t-39.5 89q0 71 37.5 117t101.5 62l-26 1q-149 0 -246 -64q-70 -45 -113.5 -128 t-83.5 -228l-25 -92h298q171 3 297 30l-269 -913q-11 -39 -11 -60q0 -42 38 -42q70 0 129 161l39 99h39l-53 -150q-40 -113 -118.5 -162t-164.5 -49q-90 0 -133.5 45t-43.5 127q0 65 28 154l211 719h-297l-375 -1372q-166 -3 -297 -29z" />
-<glyph unicode="&#xfb02;" horiz-adv-x="1253" d="M-94 -385l380 1401h-173l12 41h172q38 137 88.5 227.5t124.5 147.5q147 112 371 112h4q141 1 254 22t221 62l-430 -1454q-9 -31 -9 -52q0 -50 42 -50q66 0 124 161l37 99h39l-51 -150q-41 -116 -114 -163.5t-160 -47.5q-92 0 -138 48t-46 135q0 63 24 143l321 1069 q10 33 10 59q0 41 -30.5 60t-103.5 20q-73 -1 -125 -37q-41 -27 -67.5 -83.5t-53.5 -159.5l-45 -168h194l-12 -41h-194l-371 -1372q-164 -3 -295 -29z" />
-<glyph horiz-adv-x="0" />
-<glyph horiz-adv-x="682" />
-<glyph unicode="&#xd;" horiz-adv-x="0" />
-<glyph unicode=" "  horiz-adv-x="522" />
-<glyph unicode="&#x09;" horiz-adv-x="522" />
-<glyph unicode="&#xa0;" horiz-adv-x="522" />
-<glyph unicode="!" horiz-adv-x="643" d="M50 95q0 54 26.5 98t72.5 69t100 25q64 0 100.5 -32.5t36.5 -89.5q0 -50 -26.5 -95t-72.5 -72t-100 -27q-65 0 -101 33t-36 91zM244 408q37 147 52.5 289t26.5 325.5t19 259.5q3 81 25 153t69 119.5t119 47.5q67 0 102.5 -37.5t35.5 -105.5q0 -14 -1 -21 q-8 -89 -50.5 -193t-174 -372t-186.5 -472z" />
-<glyph unicode="&#x22;" horiz-adv-x="801" d="M296 1300q0 21 1 31q3 46 24.5 83.5t57.5 59t80 21.5q47 0 74.5 -26t29.5 -70q0 -50 -26 -100.5t-90.5 -144t-94.5 -155.5h-28q-2 85 -15 176t-13 125zM629 1300q0 21 1 31q3 46 24.5 83.5t57.5 59t80 21.5q47 0 74.5 -26t29.5 -70q0 -50 -26 -100.5t-90.5 -144 t-94.5 -155.5h-28q-2 85 -15 176t-13 125z" />
-<glyph unicode="#" horiz-adv-x="1280" d="M61 506l19 41h300l159 342h-299l16 41h302l140 303h50l-141 -303h334l140 303h49l-140 -303h292l-16 -41h-295l-159 -342h294l-21 -41h-292l-138 -299h-49l138 299h-333l-139 -299h-49l138 299h-300zM430 547h333l159 342h-334z" />
-<glyph unicode="$" horiz-adv-x="1249" d="M6 315q0 58 19.5 106t55.5 76.5t83 28.5q68 0 107.5 -48.5t39.5 -125.5q0 -71 -27 -132.5t-69 -127.5q49 -37 120 -57l166 598q-74 71 -125 131t-83.5 131t-32.5 149q0 145 69.5 241t178 142.5t228.5 50.5l67 242h45l-67 -241q76 -2 139 -14l71 255h45l-74 -265 q86 -24 173 -81q62 -40 98.5 -102t36.5 -137q0 -58 -19.5 -106t-55 -76.5t-83.5 -28.5q-68 0 -106.5 48.5t-38.5 125.5q0 71 26.5 134t67.5 126q-44 35 -110 55l-155 -556q102 -90 162.5 -152.5t103 -139t42.5 -159.5q0 -149 -83.5 -245t-209 -140t-261.5 -49l-67 -242h-45 l67 241q-76 1 -140 12l-70 -253h-45l73 262q-92 24 -182 84q-64 41 -99.5 102t-35.5 137zM377 26q55 -10 117 -10h24l131 475q-32 33 -112 109zM537 1219q0 -86 76 -181l110 393q-84 -14 -135 -68t-51 -144zM563 20q219 24 219 220q0 100 -98 213zM647 998q40 -43 113 -109 l149 535q-60 12 -127 12h-13z" />
-<glyph unicode="%" horiz-adv-x="1630" d="M10 -86l1706 1774l31 -27l-1706 -1774zM229 1128q0 102 61 202.5t166.5 164.5t233.5 64q124 0 194 -63t70 -175q0 -103 -60 -202.5t-165 -163.5t-233 -64q-125 0 -196 62t-71 175zM440 1053q0 -63 18 -97t52 -34q71 0 124 80.5t81 193.5t28 203q0 62 -17.5 95.5 t-51.5 33.5q-71 0 -124 -80.5t-81.5 -193.5t-28.5 -201zM762 209q0 102 61 202t167 164t233 64q125 0 194.5 -63t69.5 -175q0 -102 -60.5 -202t-166 -164t-232.5 -64q-124 0 -195 62.5t-71 175.5zM973 133q0 -63 17.5 -97t51.5 -34q71 0 124 80.5t81.5 193.5t28.5 203 q0 63 -18 96t-52 33q-70 0 -123 -80.5t-81.5 -193t-28.5 -201.5z" />
-<glyph unicode="&#x26;" horiz-adv-x="1767" d="M59 420q0 131 68 242.5t192.5 190t290.5 114.5q-90 31 -135 87.5t-45 125.5q0 82 58 140.5t149.5 88t191.5 29.5q125 0 191.5 -45t66.5 -119q0 -46 -24 -78.5t-60 -49t-73 -16.5v37q48 0 80 28.5t32 72.5q0 49 -40.5 78.5t-106.5 29.5q-73 0 -137 -37.5t-103 -104.5 t-39 -151q0 -54 23 -104q73 12 129 12q74 0 74 -43q0 -21 -19 -32t-45 -11q-48 0 -141 45q-72 -26 -129.5 -89.5t-90 -151t-32.5 -183.5q0 -184 122.5 -281.5t340.5 -97.5q145 0 270.5 43t202 129t76.5 209t-75 204q-95 -32 -188.5 -62.5t-177.5 -59.5q-90 -31 -141 -73 t-51 -103q0 -57 42 -84.5t103 -27.5q56 0 100.5 21t73 50.5t41.5 55.5l31 -17q-30 -60 -94 -104.5t-160 -44.5q-65 0 -120.5 23.5t-90.5 75t-35 132.5q0 246 359 363q71 24 245 79.5t293 100.5q77 28 127.5 53.5t85.5 66.5t35 99q0 51 -27 89.5t-73 59.5t-103 21 q-38 0 -59 -12q90 -38 90 -121q0 -43 -26.5 -77t-69 -52.5t-88.5 -18.5q-65 0 -106.5 36t-41.5 93q0 54 34.5 93.5t92.5 62.5q68 29 166 29q128 0 203.5 -65t75.5 -208q0 -105 -43.5 -182t-128 -132.5t-217.5 -103.5q-53 -20 -126 -45q87 -96 87 -233q0 -135 -84.5 -259 t-252.5 -202t-405 -78q-187 0 -331 51.5t-226 152.5t-82 245z" />
-<glyph unicode="'" horiz-adv-x="467" d="M296 1300q0 21 1 31q3 46 24.5 83.5t57.5 59t80 21.5q47 0 74.5 -26t29.5 -70q0 -50 -26 -100.5t-90.5 -144t-94.5 -155.5h-28q-2 85 -15 176t-13 125z" />
-<glyph unicode="(" horiz-adv-x="811" d="M73 457q0 222 124 443.5t341.5 414.5t495.5 336l20 -27q-222 -160 -376.5 -339t-239 -401t-84.5 -493q0 -209 43 -386t133 -351l-37 -27q-138 128 -228.5 249t-141 264t-50.5 317z" />
-<glyph unicode=")" horiz-adv-x="813" d="M-223 -346q222 160 376.5 339t239 401t84.5 493q0 209 -43 386t-133 351l37 27q138 -128 228.5 -249t141 -264t50.5 -317q0 -222 -124 -443.5t-341.5 -414.5t-495.5 -336z" />
-<glyph unicode="*" horiz-adv-x="991" d="M183 874q0 68 85 111q35 18 78.5 28t125 23t131.5 23q-44 10 -121.5 24t-116 24.5t-62.5 27.5q-42 28 -42 70q0 36 30 71q40 51 91 51q30 0 60 -20q26 -18 48 -47.5t59 -91t62 -98.5q-4 40 -12 93.5t-12.5 92t-4.5 67.5q0 32 6 59q14 57 49.5 84t77.5 27q33 0 54.5 -17.5 t21.5 -54.5q0 -20 -5 -39q-7 -34 -26.5 -72.5t-63.5 -112.5t-70 -121q34 30 100 92t103 93t70 48q37 19 69 19q27 0 45 -14t25 -36q6 -15 6 -32q0 -67 -86 -109q-35 -18 -77 -27.5t-122.5 -23.5t-129.5 -24q42 -9 118 -23t114 -24.5t63 -27.5q44 -28 44 -70q0 -36 -32 -71 q-40 -51 -91 -51q-30 0 -59 20q-26 17 -48 47t-57.5 88t-57.5 90q3 -39 13 -120.5t10 -121.5q0 -36 -5 -59q-14 -57 -49.5 -83.5t-77.5 -26.5q-34 0 -56 18t-22 57q0 18 4 35q9 38 32.5 82t63.5 110t72 120q-41 -36 -108 -98t-103 -92.5t-67 -47.5q-38 -19 -71 -19 q-52 0 -71 50q-5 15 -5 30z" />
-<glyph unicode="+" horiz-adv-x="1178" d="M100 696l19 62h477l137 483h74l-137 -483h475l-19 -62h-475l-137 -481h-74l138 481h-478z" />
-<glyph unicode="," horiz-adv-x="588" d="M-6 82q0 55 29 102t78 75t106 28q66 0 100.5 -37.5t34.5 -110.5q0 -129 -81.5 -241.5t-223.5 -176.5l-10 33q93 47 154 120t67 157q-57 -60 -127 -60q-62 0 -94.5 28.5t-32.5 82.5z" />
-<glyph unicode="-" horiz-adv-x="1036" d="M109 457l45 170h739l-45 -170h-739z" />
-<glyph unicode="." horiz-adv-x="571" d="M-2 95q0 54 26.5 98t72.5 69t100 25q64 0 100.5 -32.5t36.5 -89.5q0 -50 -26.5 -95t-72.5 -72t-100 -27q-65 0 -101 33t-36 91z" />
-<glyph unicode="/" horiz-adv-x="944" d="M-90 -29l1122 1508h68l-1123 -1508h-67z" />
-<glyph unicode="0" horiz-adv-x="1272" d="M49 346q0 183 101 355t269.5 279t360.5 107q126 0 217 -44.5t139 -128.5t48 -199q0 -183 -100 -355.5t-267.5 -280.5t-359.5 -108q-125 0 -217 44.5t-141.5 129t-49.5 201.5zM348 305q0 -153 38.5 -225t102.5 -72q114 0 204.5 112.5t141 287t50.5 352.5 q0 150 -37.5 220.5t-99.5 70.5q-111 0 -203 -110t-144.5 -283t-52.5 -353z" />
-<glyph unicode="1" horiz-adv-x="760" d="M92 778l6 43q139 35 245.5 78t180 85t154.5 97h41l-322 -1081h-288l256 864q-102 -41 -273 -86z" />
-<glyph unicode="2" horiz-adv-x="1096" d="M-51 0l10 43q28 23 237 176t352.5 323t143.5 322q0 81 -41 123.5t-114 42.5q-80 0 -162.5 -46.5t-136.5 -120.5t-54 -150q0 -51 28 -75t91 -24q54 0 95.5 20t93.5 64l24 -28q-54 -51 -113 -75t-114 -24q-63 0 -108.5 31t-45.5 109q0 91 67.5 178t186 142.5t262.5 55.5 q101 0 175.5 -26t114.5 -74.5t40 -114.5q0 -129 -132 -241t-316.5 -222t-231.5 -145q47 0 125.5 -17.5t137.5 -28.5t114 -11q80 0 127 25t47 73q0 62 -74 101l23 26q58 -31 85 -72.5t27 -101.5q0 -70 -34 -131.5t-105 -100t-178 -38.5q-69 0 -152 19t-144.5 31t-132.5 12 q-61 0 -107.5 -11.5t-110.5 -38.5z" />
-<glyph unicode="3" horiz-adv-x="1059" d="M-178 -309l10 37q173 11 347 79.5t289.5 192.5t115.5 293q0 82 -33 132t-92 54q-48 -19 -72 -27t-47 -8q-37 0 -37 21q0 2 2 10q8 38 98 38q25 0 39 -1q112 47 183 131.5t71 192.5q0 86 -50 135t-140 49q-73 0 -144.5 -35.5t-117 -92.5t-45.5 -116q0 -50 27.5 -74 t90.5 -24q71 0 127 31l23 -31q-79 -43 -164 -43q-63 0 -108 30.5t-45 108.5q0 75 65 148.5t177 120.5t243 47q102 0 177.5 -25t116 -71t40.5 -109q0 -90 -71.5 -166t-180 -128t-221.5 -79q176 -3 282.5 -65t106.5 -187q0 -165 -170.5 -294t-420 -200.5t-472.5 -74.5z" />
-<glyph unicode="4" horiz-adv-x="1096" d="M-119 94l13 43l983 950h53l-248 -921h266l-20 -72h-266l-103 -383h-289l103 383h-492zM-19 166h412l146 540z" />
-<glyph unicode="5" horiz-adv-x="967" d="M-180 -303l10 37q152 0 309 67t261 193t104 293q0 186 -193 186q-94 0 -200 -55l-21 10l283 633q39 2 72.5 -4t108.5 -26.5t142 -20.5q65 0 111 20.5t78 71.5l24 -15q-52 -135 -129.5 -210.5t-175.5 -75.5q-28 0 -57.5 9.5t-95 36t-102.5 26.5q-11 0 -17 -1l-191 -409 q132 72 318 72q177 0 263.5 -64.5t86.5 -179.5q0 -179 -159.5 -312t-391 -205t-438.5 -77z" />
-<glyph unicode="6" horiz-adv-x="1161" d="M57 348q0 281 174 527.5t424.5 407t462.5 196.5l12 -41q-188 -51 -367.5 -215.5t-294 -417t-114.5 -553.5q0 -93 12.5 -145.5t35.5 -73.5t59 -21q86 0 157.5 100t112.5 244.5t41 264.5q0 94 -28 137t-74 43q-52 0 -102.5 -51.5t-84.5 -159.5l-32 10q84 297 333 297 q85 0 151 -35.5t103 -105t37 -168.5q0 -159 -91 -301.5t-244 -229t-330 -86.5q-353 0 -353 377z" />
-<glyph unicode="7" horiz-adv-x="1030" d="M86 784q0 74 34 138.5t106.5 105.5t181.5 41q91 0 194.5 -31t165.5 -47t146 -16q60 0 105 17t81 65h55q-59 -69 -235 -271t-277.5 -385.5t-157.5 -400.5q-17 -69 -23 -105t-11 -57q-14 -62 -61 -101.5t-122 -39.5q-122 0 -122 114q0 32 10 74q43 186 215 390.5t391.5 418 t277.5 275.5q-106 -70 -167 -106t-120.5 -56.5t-123.5 -20.5q-50 0 -89 9t-108.5 32t-122.5 23q-67 0 -108 -30t-41 -91q0 -149 248 -207l-11 -33q-311 63 -311 295z" />
-<glyph unicode="8" horiz-adv-x="1178" d="M-6 240q0 155 149 282.5t369 215.5q-64 61 -104 107.5t-66.5 105.5t-26.5 130q0 116 76 207t200.5 141t264.5 50q151 0 245.5 -56t94.5 -163q0 -223 -434 -428q14 -13 94.5 -85t122 -152.5t41.5 -166.5q0 -130 -86 -234.5t-229 -163.5t-308 -59q-115 0 -206 28.5t-144 89 t-53 151.5zM285 211q0 -97 35 -150t118 -53q77 0 147 46t113 125t43 173q0 77 -28 140.5t-70 112.5t-109 113q-72 -55 -128.5 -134t-88.5 -175.5t-32 -197.5zM575 1151q0 -87 42.5 -155.5t121.5 -142.5q79 76 130 188.5t51 232.5q0 168 -115 168q-59 0 -112 -40.5 t-85.5 -107.5t-32.5 -143z" />
-<glyph unicode="9" horiz-adv-x="1135" d="M4 -344q183 49 357.5 209.5t286.5 406t112 535.5q0 93 -12.5 145.5t-35.5 73.5t-59 21q-87 0 -158.5 -100t-112 -244t-40.5 -265q0 -180 100 -180q53 0 103 51t84 160l35 -10q-85 -297 -336 -297q-84 0 -149.5 35.5t-102.5 105t-37 168.5q0 159 91 301t244.5 228.5 t330.5 86.5q352 0 352 -376q0 -272 -171 -511.5t-416.5 -395t-453.5 -189.5z" />
-<glyph unicode=":" horiz-adv-x="637" d="M28 95q0 54 26.5 98t72.5 69t100 25q64 0 100.5 -32.5t36.5 -89.5q0 -50 -26.5 -95t-72.5 -72t-100 -27q-65 0 -101 33t-36 91zM233 895q0 54 26.5 98t72.5 69t100 25q64 0 100.5 -32.5t36.5 -89.5q0 -50 -26.5 -95t-72.5 -72t-100 -27q-65 0 -101 33t-36 91z" />
-<glyph unicode=";" horiz-adv-x="651" d="M19 82q0 55 29 102t78 75t106 28q66 0 100.5 -37.5t34.5 -110.5q0 -129 -81.5 -241.5t-223.5 -176.5l-10 33q93 47 154 120t67 157q-57 -60 -127 -60q-62 0 -94.5 28.5t-32.5 82.5zM243 895q0 54 26.5 98t72.5 69t100 25q64 0 100.5 -32.5t36.5 -89.5q0 -50 -26.5 -95 t-72.5 -72t-100 -27q-65 0 -101 33t-36 91z" />
-<glyph unicode="&#x3c;" horiz-adv-x="1217" d="M98 727l1131 465l20 -59l-997 -414l678 -357l-33 -65z" />
-<glyph unicode="=" horiz-adv-x="1331" d="M129 553l18 61h1027l-19 -61h-1026zM211 840l18 61h1026l-18 -61h-1026z" />
-<glyph unicode="&#x3e;" horiz-adv-x="1219" d="M98 377l942 393l-757 406l32 59l879 -473l-1075 -445z" />
-<glyph unicode="?" horiz-adv-x="995" d="M162 612q0 77 42.5 142.5t100.5 115.5t191 154q118 94 172 143.5t85 101t31 113.5q0 80 -43 127t-127 47q-46 0 -97.5 -15t-78.5 -46q35 0 68.5 -17.5t54.5 -48t21 -67.5q-1 -40 -22 -73t-57 -52.5t-79 -19.5q-61 0 -103 37.5t-42 101.5q0 84 64 139t161.5 81t197.5 26 q108 0 197 -29t142 -86t53 -139q0 -61 -37 -122.5t-115 -134.5t-213 -173q-144 -106 -208 -159t-93 -99t-29 -103q0 -59 35.5 -96t104.5 -37q45 0 87.5 14t69.5 39q-40 13 -69 47t-29 82q0 56 39.5 94.5t101.5 38.5q50 0 84.5 -32t34.5 -84q0 -79 -60 -133.5t-149 -80.5 t-174 -26q-139 0 -226 58.5t-87 170.5zM227 95q0 54 26.5 98t72.5 69t100 25q64 0 100.5 -32.5t36.5 -89.5q0 -50 -26.5 -95t-72.5 -72t-100 -27q-65 0 -101 33t-36 91z" />
-<glyph unicode="@" horiz-adv-x="1767" d="M57 319q0 250 124 480.5t352 375t524 144.5q195 0 341.5 -61.5t228 -186.5t81.5 -311q0 -214 -100 -375t-246.5 -246.5t-276.5 -85.5q-161 0 -161 142q0 31 6 63q-57 -107 -128 -156t-161 -49q-108 0 -170.5 63t-62.5 187q0 144 77.5 303t203.5 266t263 107 q73 0 107.5 -34.5t37.5 -104.5l33 110q163 0 259 29l-218 -739q-12 -45 -12 -72q0 -49 47 -49q67 0 178.5 76.5t197 222t85.5 342.5q0 177 -78 294t-215 172.5t-317 55.5q-277 0 -496.5 -137t-341 -358.5t-121.5 -462.5q0 -205 90.5 -338t241.5 -194.5t338 -61.5 q278 0 492 125l12 -27q-92 -61 -221.5 -97t-280.5 -36q-198 0 -359 64t-257.5 203.5t-96.5 356.5zM670 305q0 -79 20 -116t64 -37q66 0 122 81t115 248l83 278v27q0 121 -79 121q-69 0 -145.5 -91t-128 -231.5t-51.5 -279.5z" />
-<glyph unicode="A" horiz-adv-x="1337" d="M-188 0l8 41q52 14 103 61t128 156l854 1202q27 -3 54 -3q29 0 51 3l82 -1288q5 -67 34 -98t66 -33l-8 -41q-105 6 -297 6q-209 0 -307 -6l8 41q66 3 103 15.5t55.5 43t18.5 87.5q0 17 -1 26l-17 336h-443l-181 -256q-65 -92 -65 -151q0 -93 171 -101l-10 -41 q-172 6 -266 6q-76 0 -141 -6zM333 590h411l-28 543z" />
-<glyph unicode="B" horiz-adv-x="1391" d="M-86 0l8 41q74 3 110.5 16t58.5 48t42 112l270 1016q18 72 18 98q0 40 -30 58t-108 20l10 41q108 -6 311 -6q69 0 153 2t146 2q230 0 340.5 -71t110.5 -199q0 -106 -69 -195t-194 -147t-288 -74q149 -7 253 -50t156 -113t52 -157q0 -140 -86.5 -240t-239 -151t-348.5 -51 q-36 0 -148 3t-211 3q-206 0 -317 -6zM442 124q0 -37 22.5 -57t76.5 -20q121 0 207 58t130 156t44 218q0 118 -56 187t-180 69h-90l-137 -518q-17 -64 -17 -93zM605 770h71q110 0 190.5 62t123 163t42.5 215q0 97 -36 148t-122 51q-42 0 -66 -12t-40.5 -42.5t-32.5 -90.5z " />
-<glyph unicode="C" horiz-adv-x="1419" d="M88 479q0 242 128 474t353 379t498 147q80 0 137 -18t94.5 -46t73.5 -69q15 -18 30 -18q38 0 83 122h43q-68 -177 -131 -471h-45q15 89 15 160q0 96 -34 157q-72 134 -241 134q-164 0 -312 -144t-237.5 -374.5t-89.5 -473.5q0 -203 72.5 -304t203.5 -101q78 0 162 35.5 t145 99.5q54 56 93.5 127.5t91.5 196.5h45q-97 -355 -121 -492h-45q6 44 6 70q0 52 -26 52q-16 0 -42 -18q-93 -64 -188 -98.5t-213 -34.5q-274 0 -411.5 131t-137.5 377z" />
-<glyph unicode="D" horiz-adv-x="1579" d="M-78 0l6 41q70 3 105.5 16t57.5 48.5t42 111.5l268 1016q16 64 16 89q0 43 -30 63.5t-104 23.5l6 41q145 -7 271 -7l65 1q213 6 305 6q300 0 459 -124t159 -365q0 -235 -114.5 -456.5t-343 -363t-551.5 -141.5q-46 0 -138 3t-172 3q-199 0 -307 -6zM436 100 q0 -34 23 -48.5t80 -14.5q208 0 362.5 145t235 373.5t80.5 470.5q0 193 -79.5 290t-252.5 97q-53 0 -79 -13t-42 -47.5t-37 -115.5l-268 -1024q-23 -87 -23 -113z" />
-<glyph unicode="E" horiz-adv-x="1282" d="M-88 0l10 41q74 3 110 16t58 48t43 112l270 1016q17 65 17 99q0 30 -13.5 46t-42 22.5t-81.5 8.5l10 41q223 -6 665 -6q291 0 416 6q-54 -147 -78 -242q-11 -46 -26 -127h-45q3 39 3 73q0 93 -22.5 147t-72 78t-134.5 24h-63q-72 0 -108 -12t-57.5 -46.5t-41.5 -111.5 l-128 -483h75q102 0 171 71.5t109 173.5h48q-24 -70 -37.5 -118t-23.5 -88.5t-15 -59.5q-25 -91 -60 -266h-45q2 28 2 44q0 202 -172 202h-63l-131 -492q-19 -68 -19 -100q0 -29 13.5 -44t42 -20.5t79.5 -5.5h76q112 0 187.5 34.5t135 112t120.5 216.5h47q-22 -54 -45 -148 q-32 -108 -54 -262q-139 6 -464 6q-443 0 -666 -6z" />
-<glyph unicode="F" horiz-adv-x="1204" d="M-88 0l10 41q74 3 110 16t58 48t43 112l270 1016q17 65 17 99q0 30 -13.5 46t-42 22.5t-81.5 8.5l10 41q223 -6 665 -6q291 0 416 6q-43 -117 -80 -250q-33 -130 -43 -180h-47q8 75 8 126q0 95 -25 151t-77.5 81t-138.5 25h-47q-67 0 -101 -12t-54.5 -46.5t-39.5 -111.5 l-131 -492h94q100 0 167 68t114 178h45q-32 -101 -51 -171.5t-25 -94.5q-24 -105 -63 -303h-45q1 14 1 42q0 118 -35.5 179t-129.5 61h-83l-128 -483q-16 -61 -16 -91q0 -34 17 -51.5t53.5 -24.5t104.5 -9l-8 -41q-126 6 -364 6q-226 0 -334 -6z" />
-<glyph unicode="G" horiz-adv-x="1513" d="M78 440q0 237 127 479.5t352 401t504 158.5q84 0 145 -17t104 -45t87 -71q19 -19 35 -19q39 0 81 123h46q-67 -175 -132 -471h-45q11 83 11 154q0 48 -6 82t-23 67q-40 77 -121.5 118.5t-193.5 41.5q-196 0 -343 -178t-225 -430.5t-78 -460.5q0 -184 72.5 -272.5 t220.5 -88.5q88 0 158 43q33 22 50.5 55t33.5 95l47 180q18 68 18 106q0 36 -17 54.5t-52.5 26t-102.5 10.5l11 41q118 -7 348 -7q199 0 289 7l-11 -41q-49 -4 -73 -16.5t-40.5 -46.5t-37.5 -113l-109 -406h-41q1 9 1 27q0 42 -14.5 66t-43.5 24q-30 0 -62.5 -13 t-64.5 -29.5t-45 -23.5q-151 -80 -297 -80q-177 0 -303.5 55t-193 160t-66.5 254z" />
-<glyph unicode="H" horiz-adv-x="1659" d="M-84 0l10 41q71 3 107 16t58 48.5t42 111.5l270 1016q17 65 17 99q0 30 -13.5 46t-42 22.5t-81.5 8.5l10 41q103 -6 334 -6q197 0 323 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-128 -483h534l129 483q18 63 18 98q0 31 -14 47t-43 22.5t-82 8.5l10 41 q111 -6 320 -6q224 0 337 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-18 -70 -18 -100t13.5 -45.5t42.5 -22t83 -8.5l-8 -41q-111 6 -336 6q-208 0 -322 -6l8 41q74 3 111 16t58.5 48t41.5 112l131 492h-534l-131 -492q-18 -70 -18 -100t13.5 -45.5 t42.5 -22t83 -8.5l-9 -41q-113 6 -321 6q-223 0 -334 -6z" />
-<glyph unicode="I" horiz-adv-x="799" d="M-84 0l10 41q71 3 107 16t58 48.5t42 111.5l270 1016q17 65 17 99q0 30 -13.5 46t-42 22.5t-81.5 8.5l10 41q101 -6 321 -6q204 0 336 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-18 -70 -18 -100t13.5 -45.5t42.5 -22t83 -8.5l-9 -41q-118 6 -333 6 q-214 0 -322 -6z" />
-<glyph unicode="J" horiz-adv-x="1399" d="M55 -231q0 67 46 111t126 44q70 0 114.5 -32.5t45.5 -90.5q0 -95 -113 -145q19 -6 58 -6q78 0 127 58t80 148t84 287l110 394q25 92 60 172h-279l6 41h291q61 129 147.5 230.5t190.5 183t252 177.5q-77 -26 -185.5 -79t-176.5 -77t-158 -24q-60 0 -113 14t-154.5 51.5 t-171.5 37.5q-58 0 -91.5 -30t-33.5 -87q3 -137 232 -158l-6 -39q-162 13 -259.5 87.5t-97.5 208.5q0 79 33 139.5t98.5 94t159.5 33.5q132 0 250 -68.5t189 -103t182 -34.5q175 0 346 79q77 120 128 120q14 0 27 -11t13 -25q0 -50 -150 -106q-121 -97 -205.5 -250 t-147.5 -364h204l-6 -41h-210l-22 -80l-127 -496q-59 -233 -206.5 -375.5t-399.5 -142.5q-130 0 -208.5 37t-78.5 117z" />
-<glyph unicode="K" horiz-adv-x="1516" d="M-84 0l10 41q71 3 107 16t58 48.5t42 111.5l270 1016q17 65 17 99q0 30 -13.5 46t-42 22.5t-81.5 8.5l10 41q103 -6 334 -6q197 0 323 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-18 -70 -18 -100t13.5 -45.5t42.5 -22t83 -8.5l-9 -41q-113 6 -321 6 q-223 0 -334 -6zM646 747l1 9q6 41 60 41q39 0 120 -21q131 18 191 113.5t116.5 283.5t114.5 246q60 60 146 60q90 1 142 -51q50 -50 50 -130v-6q0 -47 -21.5 -93t-64 -75.5t-100.5 -29.5t-96.5 36t-38.5 97t41 118.5t110 88.5q-12 6 -33 6q-36 0 -59 -11t-45 -34 q-50 -55 -105 -230t-111 -275.5t-177 -127.5q107 -12 170 -42.5t92 -86t29 -144.5q0 -40 -4 -77l-23 -215l-1 -14q0 -62 52 -62q39 0 66 30t49 93l35 104h41l-54 -158q-37 -111 -109 -165t-165 -54q-116 0 -177 56t-61 154q0 14 4 48l39 287q6 51 6 86q0 51 -12 81t-40 52 q-85 -22 -125 -22q-53 0 -53 34z" />
-<glyph unicode="L" horiz-adv-x="1239" d="M-88 0l10 41q74 3 110 16t58 48t43 112l270 1016q17 65 17 99q0 30 -13.5 46t-42 22.5t-81.5 8.5l10 41q108 -6 338 -6q193 0 319 6l-10 -41q-75 -3 -111.5 -16t-58.5 -48t-43 -112l-270 -1016q-18 -70 -18 -100q0 -29 13.5 -44t42 -20.5t80.5 -5.5h82q146 0 257 89 t192 294h45q-24 -64 -49 -168q-31 -105 -55 -262q-140 6 -465 6q-447 0 -670 -6z" />
-<glyph unicode="M" horiz-adv-x="1878" d="M-86 0l10 41q68 3 111 30t67.5 74t42.5 119l261 969q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l10 41q92 -6 280 -6q108 0 185 6l117 -1047l663 1041h160q198 0 330 6l-11 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-17 -65 -17 -98q0 -31 14 -47 t42.5 -22.5t81.5 -8.5l-8 -41q-129 6 -328 6q-223 0 -328 -6l9 41q75 3 111.5 16t57.5 48t41 112l297 1104l-849 -1331h-46l-165 1257l-258 -983q-17 -65 -17 -102q0 -57 38.5 -87.5t131.5 -33.5l-8 -41q-73 6 -229 6q-125 0 -195 -6z" />
-<glyph unicode="N" horiz-adv-x="1690" d="M-164 23q0 52 24 94.5t66.5 67t96.5 24.5q66 0 103.5 -34t37.5 -89q0 -67 -44 -118.5t-112 -71.5q10 -9 35 -9q105 0 172 111q77 120 158.5 431t177.5 802v2q13 62 13 92q0 33 -14.5 50.5t-47.5 24.5t-96 9l10 41q65 -6 182 -6q95 0 166 6l424 -972q171 738 307 935 q90 131 221 131q61 0 105 -23t67 -62.5t23 -88.5q0 -52 -24 -94.5t-67 -67t-96 -24.5q-67 0 -104 33.5t-37 89.5q0 67 43.5 118t110.5 72q-8 8 -33 8q-98 0 -172 -108q-91 -136 -189 -477t-223 -930h-45l-508 1112q-88 -435 -167 -732t-152 -393q-45 -60 -95.5 -94.5 t-123.5 -34.5q-61 0 -104.5 23t-66 63t-22.5 89z" />
-<glyph unicode="O" d="M86 463q0 232 118.5 469t330.5 392t479 155q174 0 299 -58t191.5 -169t66.5 -267q0 -231 -119 -467.5t-332 -391.5t-479 -155q-173 0 -298 58t-191 168.5t-66 265.5zM438 436q0 -131 28 -228t78 -148.5t115 -51.5q140 0 269 147.5t209 381.5t80 477q0 131 -28.5 228 t-78.5 148.5t-115 51.5q-139 0 -268.5 -147.5t-209 -381.5t-79.5 -477z" />
-<glyph unicode="P" horiz-adv-x="1317" d="M-86 0l8 41q74 3 110.5 16t58.5 48t42 112l270 1016q15 65 15 96q0 41 -29 59t-106 21l10 41q104 -6 325 -6q49 0 148.5 2t151.5 2q241 0 361 -78.5t120 -230.5q0 -160 -106.5 -286.5t-298.5 -198.5t-440 -72l-97 -365q-16 -64 -16 -90q0 -43 30.5 -63t106.5 -23l-9 -41 q-123 6 -315 6q-232 0 -340 -6zM565 623h8q170 0 278.5 82t157 209.5t48.5 271.5q0 111 -47.5 167t-151.5 56q-42 0 -63 -14.5t-34 -47.5t-34 -114z" />
-<glyph unicode="Q" horiz-adv-x="1702" d="M-78 -2q0 66 37 118t102.5 81.5t147.5 29.5q76 0 150 -26t140.5 -66t158.5 -103q186 98 337 251.5t239.5 345t88.5 397.5q0 196 -80.5 306t-228.5 110q-139 0 -247.5 -93t-168 -239t-59.5 -299q0 -125 50 -189.5t159 -64.5q83 0 153.5 36.5t117.5 96t62 127.5 q10 34 10 76l-1 22q-22 -61 -73.5 -91.5t-107.5 -30.5q-68 0 -107.5 42.5t-39.5 108.5q0 53 26 96.5t70.5 68t97.5 24.5q86 0 135.5 -61.5t49.5 -164.5q0 -117 -64.5 -210.5t-180 -146t-261.5 -52.5q-130 0 -229.5 43.5t-155 125.5t-55.5 195q0 172 121 313.5t320 222.5 t421 81q180 0 319.5 -51t217 -145.5t77.5 -219.5q0 -175 -142 -373t-367 -377t-470 -305q101 -70 176 -114.5t162.5 -74.5t179.5 -30q188 0 265 145q-59 -45 -132 -45q-69 0 -114 40.5t-45 109.5q0 48 24 87.5t66.5 62t95.5 22.5q75 0 121.5 -44.5t46.5 -127.5 q0 -103 -76.5 -201.5t-207.5 -160.5t-287 -62q-119 0 -218.5 38t-175 94t-165.5 139q-160 -54 -273 -54q-100 0 -156.5 41.5t-56.5 124.5zM-35 -16q0 -56 49 -86.5t138 -30.5q86 0 227 47q-62 57 -105.5 91.5t-91 56.5t-96.5 22q-54 0 -87.5 -27t-33.5 -73z" />
-<glyph unicode="R" horiz-adv-x="1456" d="M-86 0l8 41q74 3 110.5 16t58.5 48t42 112l268 1016q18 65 18 98q0 40 -29.5 57.5t-106.5 20.5l10 41q103 -6 309 -6q67 0 155 2t152 2q250 0 370 -70t120 -215q0 -119 -73.5 -214.5t-209 -157t-317.5 -83.5q122 -12 201.5 -34.5t126.5 -70.5t47 -132q0 -21 -3 -45 l-28 -211q-3 -24 -3 -44q0 -99 66 -99q40 0 68.5 36t56.5 111l10 29h48l-9 -27q-39 -129 -113 -189.5t-200 -60.5q-125 0 -188 54t-63 146q0 19 3 38l31 233q4 32 4 67q0 64 -24 103.5t-82.5 60.5t-162.5 23l-126 -479q-20 -70 -20 -101q0 -38 30.5 -55t108.5 -20l-9 -41 q-123 6 -319 6q-228 0 -336 -6zM595 733h15q135 0 239 54t162 158t58 249q0 110 -46.5 162.5t-143.5 52.5q-42 0 -67.5 -12t-42.5 -40.5t-32 -82.5z" />
-<glyph unicode="S" horiz-adv-x="1202" d="M-57 -14q66 157 139 491h41q-19 -76 -19 -144v-18q7 -146 91 -222.5t243 -76.5q264 0 264 215q0 173 -145 336t-218 259.5t-73 242.5q0 132 75 224.5t191.5 139t237.5 46.5q107 0 182 -25t142 -65q50 -33 67 -33t32 25t36 83h41q-78 -190 -121 -417h-41q12 57 12 114 q0 123 -76 196t-217 73q-110 0 -178.5 -55t-68.5 -169q0 -141 158.5 -309t240.5 -271.5t82 -244.5q0 -137 -87.5 -229.5t-218 -136.5t-259.5 -44q-92 0 -155 12t-105.5 31t-94.5 52q-45 30 -71 30q-18 0 -31 -10t-24.5 -32.5t-30.5 -67.5h-41z" />
-<glyph unicode="T" horiz-adv-x="1395" d="M176 1198q0 57 31.5 111t101.5 88q101 49 275 49q87 0 172 -6t258.5 -22.5t277.5 -16.5q137 0 217 27q-31 29 -51 70.5t-20 90.5q0 75 44 121.5t117 46.5q49 0 84.5 -20t54.5 -52.5t19 -70.5q0 -126 -141 -195q-124 -59 -342 -59q-52 0 -120 4l-300 -1126 q-15 -57 -15 -94t16.5 -58.5t53 -31.5t99.5 -13l-9 -41q-129 6 -378 6q-244 0 -361 -6l8 41q88 3 136 21t75.5 58t48.5 118l309 1156q-155 15 -245 15q-170 0 -232 -35q54 -15 88.5 -60t34.5 -106q0 -47 -20.5 -86.5t-56.5 -62.5t-82 -23q-69 0 -108.5 46.5t-39.5 115.5z " />
-<glyph unicode="U" horiz-adv-x="1421" d="M154 324q0 102 45 266l170 643q17 65 17 98q0 31 -14 47t-42.5 22.5t-81.5 8.5l12 41q105 -6 338 -6q191 0 317 6l-12 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-180 -678q-49 -184 -49 -298q0 -108 44.5 -161t139.5 -53q215 0 339 139.5t190 390.5l141 541 q32 122 32 175q0 59 -35 85t-120 35l10 41q77 -6 219 -6q114 0 181 6l-11 -41q-69 -9 -108 -34.5t-64.5 -78.5t-52.5 -157l-139 -543q-73 -283 -201 -434q-75 -88 -185 -139.5t-235 -51.5q-150 0 -250 42.5t-149 119.5q-55 77 -55 191z" />
-<glyph unicode="V" horiz-adv-x="1354" d="M188 1409l11 41q104 -6 295 -6q205 0 313 6l-10 -41q-63 -3 -97.5 -12.5t-52 -35.5t-17.5 -75q0 -22 3 -49l102 -908l539 828q62 94 62 152q0 49 -43.5 72.5t-127.5 27.5l11 41q80 -6 268 -6q88 0 153 6l-10 -41q-67 -19 -121 -64.5t-123 -152.5l-782 -1202q-17 1 -52 1 q-34 0 -52 -1l-162 1288q-8 66 -39.5 97.5t-67.5 33.5z" />
-<glyph unicode="W" horiz-adv-x="2011" d="M176 1409l10 41q102 -6 287 -6q175 0 266 6l-10 -41q-40 -3 -63 -13.5t-34.5 -35.5t-11.5 -71q0 -23 3 -52l99 -888l374 616l-43 313q-9 68 -34 98.5t-54 32.5l10 41q95 -6 266 -6q212 0 320 6l-11 -41q-62 -3 -96 -13t-50.5 -34t-16.5 -70q0 -27 4 -55l108 -857l422 777 q51 96 51 151q0 52 -42.5 74.5t-129.5 26.5l10 41q84 -6 269 -6q91 0 155 6l-10 -41q-48 -13 -84.5 -33.5t-76 -64t-81.5 -119.5l-645 -1202h-106l-126 913l-552 -913h-107l-161 1288q-9 69 -40 99t-69 32z" />
-<glyph unicode="X" horiz-adv-x="1518" d="M-82 157q0 56 23 101.5t64.5 71.5t94.5 26q62 0 96.5 -36t34.5 -96q0 -69 -42 -125.5t-111 -80.5q8 -8 35 -8q63 0 135 47q88 61 199.5 200.5t211.5 336.5l-73 606q-9 69 -35.5 106t-79.5 37q-47 0 -80.5 -33t-58.5 -104l-35 -104h-41l53 158q41 115 115.5 167t183.5 52 q148 0 216.5 -82t88.5 -238l30 -256q74 157 165.5 294t171.5 208q92 74 186 74q86 0 134.5 -52.5t48.5 -133.5q0 -56 -23.5 -101.5t-65.5 -71.5t-94 -26q-63 0 -98 37t-35 100q1 67 44.5 122.5t111.5 78.5q-11 8 -35 8q-69 0 -133 -47q-79 -63 -178 -207t-192 -349l69 -581 q20 -139 117 -139q49 0 81.5 30t57.5 97l35 104h41l-54 -158q-42 -115 -112 -167t-172 -52q-109 0 -175 40.5t-98 110t-45 169.5l-29 238q-78 -150 -181 -283t-197 -205q-92 -70 -191 -70q-86 0 -133 52.5t-47 133.5z" />
-<glyph unicode="Y" horiz-adv-x="1503" d="M170 1102l51 158q38 116 111 167.5t178 51.5q134 0 210 -83.5t114 -235.5t67 -412q135 382 336 604q116 127 242 127q60 0 103 -23.5t65 -64t22 -89.5q0 -51 -24 -93t-66.5 -66.5t-95.5 -24.5q-68 0 -105 34t-37 91q1 67 44.5 117.5t111.5 71.5q-11 8 -35 8 q-60 0 -123 -47q-57 -41 -129.5 -136.5t-149 -243t-141.5 -335.5l-116 -461q-13 -55 -13 -83q0 -37 16.5 -56t49.5 -26.5t92 -10.5l-10 -41q-117 6 -352 6q-222 0 -330 -6l10 41q75 3 112 16t58.5 48.5t40.5 111.5l111 442q-32 279 -89.5 473.5t-146.5 194.5 q-36 0 -57.5 -25t-36.5 -71l-43 -129h-45z" />
-<glyph unicode="Z" horiz-adv-x="1348" d="M-65 17q0 28 38 62.5t115 63.5l576 566h-332l14 41h359l571 561q-100 -87 -206.5 -136t-209.5 -49q-72 0 -128 13.5t-146.5 45.5t-149.5 32q-44 0 -68 -21t-24 -61q0 -44 35.5 -73.5t114.5 -45.5l-11 -39q-113 18 -189.5 75t-76.5 162q0 77 36.5 137t104 94t156.5 34 q79 0 140 -23t181 -91.5t234 -68.5q55 0 101 13.5t116 42.5q37 53 78 86t72 33q16 0 30 -11q12 -10 12 -27q0 -28 -38 -62.5t-115 -63.5l-567 -557h311l-16 -41h-336l-580 -570q100 88 207 136.5t211 48.5q71 0 127 -13.5t147 -45.5t150 -32q43 0 67.5 21.5t24.5 60.5 q0 87 -149 119l8 39q113 -18 189.5 -75t76.5 -162q0 -77 -36.5 -137t-104 -94t-156.5 -34q-79 0 -139.5 23t-181 91.5t-234.5 68.5q-55 0 -101 -13.5t-116 -42.5q-36 -53 -78 -86t-73 -33q-16 0 -29 11q-12 10 -12 27z" />
-<glyph unicode="[" horiz-adv-x="741" d="M-45 -371l485 1952h471l-8 -39h-166l-469 -1874h166l-8 -39h-471z" />
-<glyph unicode="\" horiz-adv-x="1006" d="M268 1479h64l467 -1508h-68z" />
-<glyph unicode="]" horiz-adv-x="743" d="M-168 -371l8 39h166l469 1874h-166l8 39h471l-485 -1952h-471z" />
-<glyph unicode="^" horiz-adv-x="1081" d="M139 664q154 66 291 179t221 238h37q20 -127 96 -238.5t199 -176.5l-16 -31q-115 26 -225.5 71.5t-196.5 100.5q-76 -49 -183 -95t-215 -77z" />
-<glyph unicode="_" horiz-adv-x="1430" d="M-113 -357l60 178h1126l-61 -178h-1125z" />
-<glyph unicode="`" horiz-adv-x="457" d="M95 1642q0 58 48 87q26 14 54 14q33 0 63 -17.5t49 -48.5q20 -32 31.5 -67t37.5 -143.5t71 -225.5l-25 -14q-53 65 -96.5 111.5t-113.5 116t-97 114.5q-22 37 -22 73z" />
-<glyph unicode="a" horiz-adv-x="1143" d="M-2 223q0 182 97.5 386t247 341t292.5 137q55 0 89 -32.5t41 -98.5l28 101q163 3 297 30l-269 -913q-10 -35 -10 -56q0 -46 39 -46q72 0 127 161l37 99h39l-52 -150q-40 -115 -113 -163t-157 -48q-107 0 -151 64q-28 41 -28 104q0 48 18 122q-130 -290 -343 -290 q-113 0 -171 66.5t-58 185.5zM301 209q0 -68 13.5 -97.5t43.5 -29.5q44 0 99 62t109 180.5t96 279.5l-10 -50l89 319q2 12 2 35q0 50 -18 77t-51 27q-70 0 -159 -125.5t-151.5 -313.5t-62.5 -364z" />
-<glyph unicode="b" horiz-adv-x="1120" d="M-49 -18q28 56 43 120l371 1264q9 32 9 56q0 41 -31.5 60t-106.5 19l12 43q140 1 253.5 22t219.5 62l-239 -832q74 152 152.5 221.5t172.5 69.5q124 0 189 -80.5t65 -234.5q0 -167 -78.5 -355t-224 -317t-334.5 -129q-58 0 -104 23.5t-70 63.5q-100 -9 -268 -91zM275 76 q36 -45 92 -45q96 0 188 131.5t149.5 322.5t57.5 353q0 76 -17.5 108.5t-52.5 32.5q-56 0 -127.5 -101.5t-135.5 -263.5z" />
-<glyph unicode="c" horiz-adv-x="948" d="M16 287q0 175 88.5 362.5t248.5 312.5t362 125q74 0 131 -26t88 -70.5t31 -99.5q0 -56 -27 -108.5t-74 -85.5t-102 -33q-51 0 -84 32t-33 86q0 53 26 100t68.5 79t91.5 45q-35 41 -98 41q-100 0 -195 -110t-154.5 -286.5t-59.5 -363.5q0 -205 155 -205q146 0 271 180 l41 -16q-74 -118 -187.5 -196.5t-259.5 -78.5q-97 0 -171 35t-115.5 105.5t-41.5 175.5z" />
-<glyph unicode="d" horiz-adv-x="1186" d="M8 258q0 165 86 361t242 332t354 136q96 0 125 -69l92 348q10 37 10 57q0 41 -32 59.5t-107 18.5l13 43q141 1 256 22t223 62l-402 -1454q-11 -35 -11 -56q0 -46 40 -46q31 0 61.5 35t63.5 126l35 99h39l-49 -150q-38 -116 -111 -163.5t-160 -47.5q-127 0 -162 95 q-16 33 -16 84q0 63 25 147l2 9q-78 -174 -165.5 -254.5t-207.5 -80.5q-108 0 -176 72t-68 215zM311 215q0 -72 15.5 -106.5t50.5 -34.5q40 0 96 59.5t116 175t109 272.5l103 387q-20 72 -82 72q-87 0 -183.5 -125.5t-160.5 -318.5t-64 -381z" />
-<glyph unicode="e" horiz-adv-x="961" d="M6 260q0 182 98.5 376t268.5 322.5t372 128.5q95 0 154 -41.5t59 -119.5q0 -117 -95 -215t-238.5 -167.5t-299.5 -110.5q-12 -74 -12 -140q0 -108 40.5 -153.5t117.5 -45.5q64 0 144.5 40.5t154.5 127.5l33 -16q-47 -73 -117.5 -135.5t-162 -101t-195.5 -38.5 q-93 0 -166 33t-114.5 98.5t-41.5 157.5zM332 471q143 63 225 137t129 169t47 204q0 38 -8 53t-25 15q-61 0 -136 -84t-139 -218t-93 -276z" />
-<glyph unicode="f" horiz-adv-x="698" d="M-92 -385l375 1397h-170l12 41h169q44 168 102 278.5t136 175.5q116 95 289 95q84 0 145 -24.5t93.5 -69t32.5 -103.5q0 -43 -24 -84t-67.5 -67.5t-97.5 -26.5q-61 0 -96 28.5t-35 81.5q0 67 42.5 121t115.5 80q-10 11 -29 19t-41 8q-60 0 -108 -41q-37 -32 -63 -102.5 t-62 -204.5l-44 -164h220l-12 -41h-219l-367 -1368q-166 -3 -297 -29z" />
-<glyph unicode="g" horiz-adv-x="967" d="M-211 -233q0 68 64.5 107t181.5 80.5t163 60.5l-36 10q-55 16 -89 50t-34 81q0 51 40 95.5t117.5 88.5t207.5 100q-144 3 -229 60.5t-85 171.5q0 93 61 189t180 160t283 64q52 0 97 -7q87 170 163 231q60 47 132 47q58 0 92.5 -29t34.5 -84q0 -44 -22 -84.5t-59 -66 t-81 -25.5t-70.5 26t-26.5 68q0 32 18 66.5t52 62.5q-7 4 -15 4q-20 0 -40 -16q-30 -25 -70 -83t-70 -124q92 -21 143.5 -75t51.5 -142q0 -94 -57 -183.5t-161.5 -151.5t-240.5 -76q-97 -42 -147.5 -73.5t-50.5 -60.5q0 -18 22 -31t70 -28l172 -57q109 -36 171 -85.5 t62 -130.5q0 -104 -90 -188t-235 -132t-301 -48q-117 0 -200 19.5t-126 55t-43 83.5zM78 -260q0 -96 119 -96q80 0 165 28.5t141 79t56 111.5q0 23 -15 37t-35 21.5t-71 23.5l-206 60q-154 -129 -154 -265zM367 604q0 -70 19 -98.5t60 -28.5q72 0 121 67t72.5 168.5 t24.5 207.5q0 62 -18 95.5t-62 33.5q-70 0 -119 -72.5t-73.5 -176.5t-24.5 -196z" />
-<glyph unicode="h" horiz-adv-x="1167" d="M-37 0l406 1366q10 37 10 57q0 41 -32 59.5t-107 18.5l12 43q267 3 477 84l-279 -951q72 156 140.5 245.5t139.5 127t157 37.5q96 0 140.5 -44t44.5 -120q0 -66 -28 -145l-200 -604q-12 -37 -12 -59q0 -43 40 -43q69 0 127 161l37 99h39l-51 -150q-72 -211 -274 -211 q-187 0 -187 167q0 69 31 159l182 553q19 57 19 90q0 45 -39 45q-58 0 -136.5 -106.5t-160 -286.5t-149.5 -393l-51 -173l-1 -6v1l-6 -21h-289z" />
-<glyph unicode="i" horiz-adv-x="659" d="M51 721l58 156q74 210 284 210q95 0 138 -45.5t43 -119.5q0 -57 -23 -121l-215 -627q-12 -36 -12 -59q0 -43 41 -43q31 0 62 34.5t67 126.5l36 99h39l-53 -150q-72 -211 -276 -211q-186 0 -186 169q0 69 30 157l201 588q13 36 13 62q0 40 -36 40q-37 0 -68 -37.5 t-63 -124.5l-41 -104h-39zM362 1389q0 61 27.5 104.5t75 66.5t106.5 23q73 0 112.5 -33.5t39.5 -93.5q0 -54 -28.5 -97t-77 -67t-107.5 -24q-70 0 -109 32.5t-39 88.5z" />
-<glyph unicode="j" horiz-adv-x="616" d="M-410 -264q0 39 21.5 73.5t58 55t78.5 20.5q54 0 87.5 -32t33.5 -76q0 -35 -21.5 -71.5t-58.5 -59.5q78 9 124.5 58.5t78.5 162.5l287 1018q11 42 11 63q0 39 -36 39q-35 0 -66.5 -38t-62.5 -124l-39 -104h-39l55 156q39 112 114.5 161t170.5 49q175 0 175 -161 q0 -52 -19 -125l-158 -565q-61 -220 -132.5 -345t-174.5 -186q-122 -90 -293 -90q-98 0 -146.5 31.5t-48.5 89.5zM354 1392q0 60 28 103t76 65.5t107 22.5q72 0 111 -32.5t39 -90.5q0 -55 -28.5 -99t-76.5 -68.5t-106 -24.5q-72 0 -111 33t-39 91z" />
-<glyph unicode="k" horiz-adv-x="1130" d="M-37 0l406 1366q10 37 10 57q0 41 -32 59.5t-107 18.5l12 43q267 3 477 84l-298 -1016q109 17 159.5 80.5t98 186t95.5 161.5q58 47 127 47q93 0 142 -52t49 -131q0 -51 -21.5 -92t-60.5 -65t-90 -24q-63 0 -98 34q-33 32 -33 80v5q0 59 38.5 108t96.5 80q-4 7 -14 12 t-19 5q-47 0 -86 -31q-41 -34 -86 -147.5t-89.5 -180t-138.5 -90.5q154 -3 249 -55t95 -170q0 -32 -7 -64l-31 -151q-6 -29 -6 -46q0 -22 9 -31t28 -9q66 0 125 161l36 99h39l-51 -150q-74 -211 -295 -211q-83 0 -126.5 41.5t-43.5 120.5q0 38 8 74l35 158q12 48 12 83 q0 59 -36 90t-119 43l-170 -581h-289z" />
-<glyph unicode="l" horiz-adv-x="614" d="M15 154q0 64 24 143l321 1069q10 37 10 58q0 40 -32 58.5t-107 18.5l15 43q141 1 254 22t221 62l-430 -1454q-9 -31 -9 -52q0 -50 44 -50q63 0 123 161l36 99h39l-51 -150q-39 -115 -112.5 -163t-159.5 -48q-94 0 -140 48t-46 135z" />
-<glyph unicode="m" horiz-adv-x="1753" d="M31 0l250 885q10 35 10 58q0 44 -37 44q-36 0 -66.5 -38t-62.5 -124l-39 -104h-39l55 156q76 210 277 210q165 0 165 -164q0 -57 -18 -122l-47 -180q68 169 136.5 271t147 148.5t177.5 46.5q162 0 162 -159q0 -60 -25 -150l-37 -131q70 166 140.5 262.5t145.5 137 t165 40.5q167 0 167 -160q0 -65 -28 -149l-200 -604q-13 -38 -13 -61q0 -41 39 -41q71 0 129 161l37 99h39l-51 -150q-74 -211 -277 -211q-118 0 -164 74q-22 37 -22 91q0 65 31 161l184 553q16 51 16 82q0 41 -28 41q-55 0 -126 -87.5t-152 -265t-161 -436.5v5l-53 -189 h-293l250 850q18 58 18 84q0 39 -34 39q-61 0 -135 -97.5t-149 -271.5t-142 -399v5l-54 -210h-288z" />
-<glyph unicode="n" horiz-adv-x="1235" d="M33 0l248 885q12 43 12 65q0 37 -35 37q-38 0 -68 -36t-63 -126l-39 -104h-39l55 156q39 112 105 161t160 49q176 0 176 -168q0 -52 -17 -118l-64 -249q84 208 161 324.5t155.5 163.5t175.5 47q185 0 185 -164q0 -62 -27 -145l-201 -604q-12 -33 -12 -60q0 -42 39 -42 q33 0 64 34t65 127l37 99h39l-51 -150q-74 -211 -275 -211q-115 0 -164 68q-26 40 -26 95q0 62 33 163l184 553q19 59 19 88q0 47 -40 47q-61 0 -148 -124t-175 -327t-153 -428l-27 -106h-289z" />
-<glyph unicode="o" horiz-adv-x="1083" d="M25 309q0 169 76.5 350.5t227 304.5t359.5 123q160 0 246 -86t86 -251q0 -169 -76.5 -350.5t-227.5 -305t-360 -123.5q-159 0 -245 86.5t-86 251.5zM299 152q0 -74 17 -107t53 -33q75 0 164 141.5t150.5 351t61.5 398.5q0 81 -16.5 112.5t-50.5 31.5q-77 0 -166.5 -145.5 t-151 -357t-61.5 -392.5z" />
-<glyph unicode="p" horiz-adv-x="1194" d="M-186 -371l12 43q50 0 79.5 11.5t48 39t32.5 76.5l371 1330q-57 -127 -132 -228.5t-180 -210.5l-22 27q89 95 148 168.5t119.5 179t119.5 256.5l8 27q169 12 305 57l-177 -624q75 159 156 232.5t177 73.5q124 0 189 -80.5t65 -234.5q0 -167 -75 -355t-215 -317t-323 -129 q-57 0 -105.5 19t-78.5 52l-55 -196q-12 -43 -12 -73q0 -56 41 -77.5t128 -23.5l-12 -43q-27 1 -126.5 5t-197.5 4q-84 0 -175 -4t-113 -5zM347 78q36 -47 93 -47q97 0 188.5 124t148.5 307.5t57 346.5q0 95 -17.5 132.5t-50.5 37.5q-41 0 -90.5 -54.5t-99.5 -149 t-92 -213.5z" />
-<glyph unicode="q" horiz-adv-x="1128" d="M16 287q0 164 83 352.5t229.5 318t324.5 129.5q60 0 106.5 -23.5t68.5 -65.5q113 9 268 92l32 -15q-22 -46 -45 -121l-303 -1132q-9 -31 -9 -56q0 -47 33.5 -69.5t100.5 -24.5l-12 -43q-28 1 -126.5 5t-191.5 4q-88 0 -182.5 -4t-118.5 -5l13 43q64 1 104 16t63.5 46 t37.5 82l131 489q-80 -177 -164.5 -255.5t-188.5 -78.5q-124 0 -189 81t-65 235zM315 221q0 -68 17.5 -98.5t52.5 -30.5q49 0 110.5 72t117.5 191.5t89 254.5l-7 -36l109 406q-36 48 -93 48q-96 0 -188 -135.5t-150 -328t-58 -343.5z" />
-<glyph unicode="r" horiz-adv-x="963" d="M31 0l250 885q11 41 11 62q0 40 -34 40q-38 0 -69 -36.5t-64 -125.5l-39 -104h-39l55 156q76 210 283 210q157 0 157 -165q0 -57 -16 -121l-18 -71q52 134 103.5 212t109.5 111.5t133 33.5q78 0 122 -46t44 -119q0 -57 -25.5 -106t-70.5 -78t-99 -29q-60 0 -92.5 31.5 t-32.5 90.5q0 48 22.5 91t61.5 73t86 41q-24 6 -26 6q-108 0 -216.5 -155t-223.5 -556l-85 -331h-288z" />
-<glyph unicode="s" horiz-adv-x="860" d="M-39 209q0 61 30.5 104t84.5 43t85.5 -45t31.5 -114q0 -41 -10 -77t-19.5 -60.5t-11.5 -30.5q30 -15 79 -15q77 0 124.5 47t47.5 129q0 65 -28 134.5t-86 158.5q-8 12 -48 73.5t-59.5 118t-19.5 111.5q0 88 44.5 156t128.5 106.5t200 38.5q132 0 221.5 -48.5t89.5 -164.5 q0 -35 -14 -70t-42.5 -58t-68.5 -23q-51 0 -82 38.5t-31 98.5q0 50 18.5 94.5t45.5 75.5q-29 17 -72 17q-74 0 -116.5 -46t-43.5 -129q0 -53 21.5 -99.5t53.5 -96t48 -74.5q65 -108 93 -177.5t28 -139.5q0 -90 -47 -161t-134.5 -112t-203.5 -41q-146 0 -242 56.5t-96 181.5z " />
-<glyph unicode="t" horiz-adv-x="723" d="M65 174q0 53 19 123l206 715h-186l11 41h187l89 311q177 3 297 29l-98 -340h231l-6 -41h-237l-242 -838q-6 -22 -6 -41q0 -61 61 -61q45 0 87 44t75 132l31 84h39l-41 -119q-82 -242 -308 -242q-104 0 -156.5 54.5t-52.5 148.5z" />
-<glyph unicode="u" horiz-adv-x="1223" d="M49 727l51 150q73 210 275 210q187 0 187 -169q0 -63 -30 -156l-184 -553q-18 -55 -18 -87q0 -48 39 -48q60 0 143.5 119t168.5 316.5t151 424.5l32 125q181 3 297 28l-256 -913q-13 -47 -13 -68q0 -34 36 -34q38 0 69 36.5t62 124.5l39 105h39l-56 -156 q-38 -113 -110.5 -162t-163.5 -49q-54 0 -93.5 18.5t-58.5 51.5q-19 35 -19 84q0 51 21 133l54 209q-79 -193 -152.5 -301t-149.5 -151.5t-169 -43.5q-92 0 -138.5 43.5t-46.5 124.5q0 61 27 142l199 604q12 38 12 59q0 43 -39 43q-33 0 -64 -34.5t-65 -127.5l-37 -98h-39z " />
-<glyph unicode="v" horiz-adv-x="1075" d="M59 723l45 149q62 218 193 218q36 0 74.5 -22t64.5 -34t70 -12q84 0 149 43l21 39l43 -21q-145 -210 -234.5 -440t-97.5 -407v-20q-1 -74 19 -111q22 -42 73 -42q120 0 220.5 94t166.5 235.5t90 281.5q-88 42 -144 113.5t-56 160.5q0 66 36 102.5t97 36.5q74 0 108 -62 q30 -54 30 -145q0 -13 -1 -28q-10 -208 -88 -411t-225.5 -336.5t-352.5 -133.5q-153 0 -220.5 69.5t-67.5 173.5q0 343 549 790q-49 -6 -87.5 -29.5t-106 -80t-114.5 -56.5q-16 0 -30 5.5t-40.5 19.5t-45.5 14q-29 0 -46.5 -22t-35.5 -77l-17 -55h-39z" />
-<glyph unicode="w" horiz-adv-x="1393" d="M4 221q0 121 88 245.5t227.5 245t366.5 290.5q-51 -8 -92.5 -31.5t-114.5 -78t-121 -54.5q-18 0 -32 5t-39.5 19.5t-46.5 14.5q-28 0 -45.5 -22.5t-34.5 -76.5l-19 -55h-39l45 149q38 117 86.5 163t108.5 46q36 0 79.5 -19t74.5 -29.5t79 -10.5q86 0 158 43l23 39l43 -21 q-212 -217 -347 -449.5t-135 -420.5q0 -79 25 -115.5t80 -36.5q72 0 143 54q-24 58 -24 137q0 119 54 231t132.5 182t142.5 70q78 0 78 -135q0 -110 -44 -215.5t-131 -194.5q51 -94 155 -94q102 0 173.5 81t107 204.5t35.5 248.5q0 35 -3 66q-115 45 -191.5 108.5 t-76.5 164.5q0 50 32.5 84t88.5 34q93 0 137.5 -108.5t52.5 -247.5q4 -52 4 -80q0 -165 -54 -321.5t-161.5 -257.5t-259.5 -101q-166 0 -233 113q-129 -113 -301 -113q-90 0 -152 33t-92.5 89.5t-30.5 127.5zM737 352q0 -68 19 -123q68 78 106.5 174.5t38.5 190.5 q0 96 -35 96q-27 0 -57.5 -49.5t-51 -128.5t-20.5 -160z" />
-<glyph unicode="x" horiz-adv-x="1157" d="M-84 100q0 45 21 80t56.5 54.5t78.5 19.5q120 0 178 -137q102 116 179 301l-54 469q-7 48 -25 67t-47 19q-31 0 -59.5 -34t-63.5 -134l-26 -76h-39l51 150q40 119 114 163.5t169 44.5q101 0 155 -47.5t68 -169.5l13 -120q57 125 126 213q98 124 225 124q66 0 108 -36 t42 -99t-43.5 -105t-110.5 -42q-61 0 -109.5 34t-72.5 103q-88 -101 -156 -273l56 -497q9 -52 25.5 -73t43.5 -21q32 0 61.5 37t63.5 139l27 76h39l-52 -150q-68 -209 -274 -209q-97 0 -156.5 46t-70.5 155l-19 164q-64 -143 -145 -240q-109 -125 -227 -125 q-71 0 -110.5 34.5t-39.5 94.5z" />
-<glyph unicode="y" horiz-adv-x="987" d="M-221 -270q0 54 39.5 90.5t101.5 36.5q121 0 219 -142q143 70 267 189l-160 979q-12 56 -22.5 76t-30.5 20q-23 0 -44 -30.5t-53 -121.5l-37 -100h-39l52 150q40 116 103 163t149 47q87 0 136 -48.5t68 -172.5l96 -701q87 127 152.5 261t97.5 258q-83 46 -137 115 q-51 65 -51 141v8q0 64 37 101.5t100 37.5q135 0 135 -186q0 -123 -56 -283t-148.5 -321t-198.5 -289q-104 -125 -229.5 -221t-259.5 -141q-81 -31 -146 -31q-66 0 -103.5 30.5t-37.5 84.5z" />
-<glyph unicode="z" horiz-adv-x="950" d="M-106 0l995 956q-59 -26 -146 -84t-136 -85t-95 -27q-34 0 -59.5 9t-72 32.5t-83.5 23.5t-56.5 -18.5t-19.5 -52.5q0 -42 29.5 -69.5t89.5 -47.5l-12 -31q-217 52 -217 213q0 66 32.5 124.5t98.5 95t161 36.5q57 0 100 -13.5t128.5 -53t169.5 -39.5q61 0 103.5 19.5 t84.5 68.5h60l-981 -942q50 23 127 73t121 73.5t87 23.5q35 0 61 -9t72.5 -33t84.5 -24q36 0 55.5 20.5t19.5 51.5q0 45 -33.5 75t-84.5 42l12 30q109 -24 163 -78t54 -141q0 -67 -28.5 -122t-87 -87.5t-144.5 -32.5q-85 0 -163.5 37t-125 55.5t-119.5 18.5 q-58 0 -101.5 -19t-84.5 -69h-59z" />
-<glyph unicode="{" horiz-adv-x="739" d="M58 586l6 37h10q66 5 110.5 49.5t83.5 148t87 300.5q48 193 120 296.5t179 144t276 40.5l-10 -39q-72 -1 -110.5 -28.5t-73.5 -117.5t-86 -296q-45 -179 -116 -283.5t-170 -156t-245 -76.5q112 -26 179 -66.5t96.5 -98t29.5 -137.5q0 -83 -32 -214q-63 -253 -60 -332 q0 -41 12.5 -63t37.5 -30.5t67 -9.5l-10 -39q-203 -2 -288.5 50.5t-91 150.5t37.5 273q67 271 67 376q-1 62 -24 90t-72 31h-10z" />
-<glyph unicode="|" horiz-adv-x="756" d="M307 -399v2156h180v-2156h-180z" />
-<glyph unicode="}" horiz-adv-x="739" d="M-188 -385l10 39q72 1 110.5 28.5t73.5 117.5t86 296q45 179 116 283.5t170 156t245 76.5q-112 26 -179 66.5t-96.5 98t-29.5 137.5q0 83 32 214q63 253 60 332q0 41 -12.5 63t-37.5 30.5t-67 9.5l10 39q203 2 288.5 -50.5t91 -150.5t-37.5 -273q-67 -271 -67 -376 q1 -62 24 -90t72 -31h10l-6 -37h-10q-66 -5 -110.5 -49.5t-83.5 -148t-87 -300.5q-48 -193 -120 -296.5t-179 -144t-276 -40.5z" />
-<glyph unicode="~" horiz-adv-x="1321" d="M100 487q57 147 166.5 232.5t245.5 85.5q71 0 125.5 -21t160 -80t197.5 -59q135 0 209 119l29 -10q-57 -147 -167.5 -232.5t-244.5 -85.5q-71 0 -126.5 21t-160 80t-196.5 59q-135 0 -209 -119z" />
-<glyph unicode="&#xa1;" horiz-adv-x="606" d="M-87 -263q0 11 1 17q11 101 111 295.5t161.5 322t104.5 281.5l37 -6q-35 -136 -46 -271t-15.5 -311.5t-10.5 -250.5q-3 -95 -55 -147t-146 -52q-67 0 -104.5 31.5t-37.5 90.5zM229 895q0 54 26.5 98t72.5 69t100 25q64 0 100.5 -32.5t36.5 -89.5q0 -50 -26.5 -95 t-72.5 -72t-100 -27q-65 0 -101 33t-36 91z" />
-<glyph unicode="&#xa2;" horiz-adv-x="977" d="M18 287q0 162 76.5 336.5t216.5 302t319 154.5l99 370h45l-98 -364l41 1q74 0 131 -26t88 -70.5t31 -99.5q0 -56 -27 -108.5t-74 -85.5t-102 -33q-51 0 -84 32t-33 86q0 53 26 100t68.5 79t91.5 45q-35 41 -98 41q-36 0 -73 -16l-251 -935q30 -14 70 -14q146 0 271 180 l41 -16q-70 -111 -175.5 -188t-240.5 -86l-92 -343h-45l92 342q-143 4 -228.5 84t-85.5 232zM326 287q0 -111 47 -163l235 877q-77 -56 -141.5 -167.5t-102.5 -255t-38 -291.5z" />
-<glyph unicode="&#xa3;" horiz-adv-x="1376" d="M-57 -8q0 23 23 53t68.5 56.5t110.5 39.5q41 79 75 166t71 221l21 80h-199l12 41h198l43 164h-198l12 41h197l12 45q73 277 243.5 442.5t448.5 165.5q75 0 129.5 -25t83.5 -67t29 -94q0 -60 -24.5 -107t-67 -73.5t-94.5 -26.5q-63 0 -100.5 33.5t-37.5 95.5 q0 73 44.5 128.5t115.5 72.5q-5 14 -29.5 23.5t-56.5 9.5q-82 0 -138.5 -43t-94 -119.5t-68.5 -192.5l-70 -268h279l-12 -41h-278l-11 -43q-17 -65 -43 -121h289l-13 -41h-297q-38 -67 -86.5 -117t-164 -149t-181.5 -197q192 166 379 166q68 0 122 -12t142.5 -40t143.5 -28 q45 0 75.5 23.5t30.5 64.5q0 86 -143 115l10 37q111 -17 186.5 -72.5t75.5 -152.5q0 -75 -40.5 -138t-112.5 -100t-162 -37q-78 0 -137.5 21.5t-180.5 86t-235 64.5q-88 0 -168 -30q-41 -70 -95 -106t-106 -36q-14 0 -20 4.5t-6 16.5z" />
-<glyph unicode="&#xa4;" horiz-adv-x="1348" d="M170 283l119 118q-58 97 -58 213q0 111 60 213l-121 119l174 174l119 -119q94 60 215 60q115 0 213 -60l121 121l174 -174l-121 -121q59 -100 59 -213t-59 -215l119 -118l-174 -175l-121 121q-96 -57 -211 -57q-124 0 -213 57l-119 -118zM444 614q0 -74 31.5 -131t86 -89 t118.5 -32t118 32t85.5 89t31.5 131t-31.5 132t-85.5 90t-118 32t-118.5 -32t-86 -90t-31.5 -132z" />
-<glyph unicode="&#xa5;" horiz-adv-x="1589" d="M206 1102l51 158q38 116 111 167.5t178 51.5q134 0 210 -83.5t114 -235.5t67 -412q135 382 336 604q116 127 242 127q60 0 103 -23.5t65 -64t22 -89.5q0 -51 -24 -93t-66.5 -66.5t-95.5 -24.5q-68 0 -105 34t-37 91q1 67 44.5 117.5t111.5 71.5q-11 8 -35 8 q-60 0 -123 -47q-57 -41 -129 -136t-149 -243.5t-142 -335.5l-18 -70h273l-10 -41h-273l-31 -123h269l-10 -41h-269l-47 -186q-13 -55 -13 -83q0 -37 16.5 -56t49.5 -26.5t92 -10.5l-10 -41q-117 6 -352 6q-222 0 -330 -6l10 41q74 3 111.5 16t59 48.5t40.5 111.5l47 186 h-288l11 41h287l31 123h-284l11 41h283l13 51q-32 280 -89.5 474t-146.5 194q-36 0 -57.5 -25t-36.5 -71l-43 -129h-45z" />
-<glyph unicode="&#xa6;" horiz-adv-x="762" d="M311 -399v1067h181v-1067h-181zM311 786v971h181v-971h-181z" />
-<glyph unicode="&#xa7;" horiz-adv-x="1180" d="M-25 -199q0 50 25.5 94.5t69.5 71.5t98 27q58 0 90.5 -28.5t32.5 -76.5q0 -63 -41.5 -113t-104.5 -75q9 -21 54 -34t94 -13q72 0 134 29t100 87.5t38 141.5q0 71 -42.5 123.5t-104.5 104t-86 71.5q-95 79 -145 128t-79.5 103t-29.5 117q0 245 336 408q-92 104 -92 213 q0 129 83 225t213 146.5t265 50.5q69 0 143.5 -16.5t128 -58.5t53.5 -112q0 -50 -25.5 -94t-70.5 -71t-98 -27q-59 0 -92 31t-33 81q0 57 42.5 106.5t104.5 74.5q-10 21 -54 34t-93 13q-71 0 -134 -28.5t-102 -86.5t-39 -141q0 -71 43.5 -124t105.5 -105t85 -72 q97 -82 146 -129.5t79.5 -101.5t30.5 -118q0 -244 -337 -408q93 -104 93 -212q0 -130 -83.5 -225.5t-213.5 -146t-264 -50.5q-73 0 -146 16t-125.5 57t-52.5 113zM324 731q0 -47 26.5 -92t79 -94.5t143.5 -122.5q110 -87 164 -141q50 36 79.5 78.5t35.5 101.5q3 17 3 31 q0 47 -26 90.5t-77 91t-146 121.5q-108 86 -162 141q-120 -93 -120 -205z" />
-<glyph unicode="&#xa8;" horiz-adv-x="799" d="M10 1384q0 52 25 91.5t65.5 60t87.5 20.5q64 0 99 -37.5t35 -97.5q0 -54 -25.5 -93t-66.5 -59t-87 -20q-65 0 -99 36.5t-34 98.5zM477 1384q0 53 24.5 92t64.5 59.5t87 20.5q64 0 98.5 -37t34.5 -98q0 -54 -25 -93t-66 -59t-87 -20q-64 0 -97.5 37t-33.5 98z" />
-<glyph unicode="&#xa9;" horiz-adv-x="1866" d="M166 786q0 222 109.5 409.5t296.5 297t409 109.5t409 -109.5t296.5 -297t109.5 -409.5q0 -221 -109.5 -408.5t-296.5 -297t-409 -109.5t-409 109.5t-296.5 297t-109.5 408.5zM248 786q0 -203 98.5 -375t266.5 -273t368 -101q199 0 367.5 101t267 273t98.5 375 q0 204 -98.5 376t-267 273t-367.5 101q-200 0 -368 -101t-266.5 -273t-98.5 -376zM520 782q0 180 65 307t180 192t263 65q92 0 176.5 -28t138.5 -85.5t54 -140.5q0 -72 -45.5 -118t-116.5 -46q-72 0 -115 42t-43 111q0 61 38 105.5t97 60.5q-20 22 -59.5 36.5t-83.5 14.5 q-114 0 -177 -109t-63 -380q0 -163 38 -263t98.5 -143t134.5 -43q169 0 268 205l37 -14q-26 -83 -78.5 -156t-136 -119.5t-193.5 -46.5q-138 0 -245.5 59.5t-169.5 183.5t-62 310z" />
-<glyph unicode="&#xaa;" horiz-adv-x="1090" d="M203 928q0 123 79.5 252.5t203.5 214t247 84.5q80 0 85 -74l16 55q152 0 266 19l-176 -557q-11 -31 -11 -51q0 -33 35 -33q61 0 90 90l19 51h39l-27 -74q-31 -88 -91 -128t-149 -40q-150 0 -150 133q0 32 9 74q-60 -113 -131.5 -160t-155.5 -47q-95 0 -146.5 49.5 t-51.5 141.5zM475 938q0 -104 49 -104q30 0 69 39t77 106t68 147l65 226q-3 78 -49 78q-54 0 -120 -74t-112.5 -188.5t-46.5 -229.5z" />
-<glyph unicode="&#xab;" horiz-adv-x="1200" d="M39 506l6 24q176 111 338.5 248t333.5 309h37q-40 -87 -112 -200t-152.5 -214t-143.5 -155q41 -50 82 -147t70.5 -206.5t36.5 -193.5h-37q-107 166 -217 298t-242 237zM487 506l7 24q161 101 307.5 225t304.5 283h37q-34 -78 -98 -182t-135.5 -196.5t-127.5 -141.5 q37 -45 73 -134t61.5 -188.5t31.5 -175.5h-37q-101 154 -201.5 273t-222.5 213z" />
-<glyph unicode="&#xac;" horiz-adv-x="1323" d="M176 696l19 62h1026l-121 -420h-74l102 358h-952z" />
-<glyph unicode="&#xad;" horiz-adv-x="1036" />
-<glyph unicode="&#xae;" horiz-adv-x="1403" d="M244 1030q0 155 77 286.5t208 208.5t286 77t286 -77t208 -208.5t77 -286.5t-77 -286t-208 -208t-286 -77t-286 77t-208 208t-77 286zM330 1030q0 -136 65 -252.5t176.5 -185t243.5 -68.5t243.5 68.5t176.5 185t65 252.5q0 137 -65 253t-176 184.5t-244 68.5t-244 -68.5 t-176 -184.5t-65 -253zM537 721v31q20 2 29.5 7.5t13.5 20.5t4 47v449q0 33 -4 48.5t-13.5 21.5t-29.5 8v30q28 -2 127 -2q67 0 111 1t65 1q250 0 250 -161q0 -55 -47.5 -102t-163.5 -65q65 -6 102 -20.5t55 -38t25 -61.5l31 -133q5 -26 11 -37.5t19 -11.5q14 0 23 12 l16 -21q-30 -36 -106 -36q-65 0 -98.5 21t-43.5 67l-30 149q-8 37 -18.5 54.5t-35 26.5t-75.5 12v-212q0 -32 3.5 -47t13 -20.5t30.5 -7.5v-31q-25 0 -58 1t-71 1q-44 0 -79 -1t-56 -1zM754 1073h24q140 0 140 137q0 72 -26.5 108t-84.5 36q-32 0 -42.5 -12t-10.5 -46v-223z " />
-<glyph unicode="&#xaf;" horiz-adv-x="741" d="M211 1407l12 51h688l-12 -51h-688z" />
-<glyph unicode="&#xb0;" horiz-adv-x="682" d="M287 1434q0 73 34 129t90.5 86t123.5 30t124 -30t91 -86t34 -129q0 -75 -34 -131t-91 -86.5t-124 -30.5t-123.5 30.5t-90.5 86.5t-34 131zM336 1434q0 -67 29 -114.5t75 -71t95 -23.5t95 23.5t75.5 71t29.5 114.5q0 64 -29.5 111t-76 71t-94.5 24t-94 -24t-75.5 -71 t-29.5 -111z" />
-<glyph unicode="&#xb1;" horiz-adv-x="1266" d="M-49 0l18 62h1026l-18 -62h-1026zM145 696l19 62h477l137 483h74l-137 -483h475l-19 -62h-475l-137 -481h-74l138 481h-478z" />
-<glyph unicode="&#xb2;" horiz-adv-x="729" d="M156 895l8 37q18 13 144.5 98t213 177.5t86.5 174.5q0 84 -102 84q-111 0 -203 -98l-29 23q58 66 146 109.5t198 43.5q84 0 134.5 -28.5t50.5 -85.5q0 -80 -78.5 -149.5t-188 -137.5t-139.5 -90q23 0 57.5 -5.5t98 -18.5t96.5 -13q38 0 61 15.5t23 45.5q0 21 -8 37l35 14 q33 -51 33 -100q0 -61 -49.5 -101t-141.5 -40q-30 0 -59.5 4t-100 17t-127.5 16q-50 1 -81.5 -4.5t-77.5 -24.5z" />
-<glyph unicode="&#xb3;" horiz-adv-x="694" d="M78 711v37q117 9 227.5 49.5t181 109.5t70.5 158q0 95 -88 106q-39 -20 -66 -20q-36 0 -36 27q0 37 90 34q75 32 120.5 80t45.5 103q0 38 -24 56.5t-64 18.5q-113 0 -222 -104l-28 25q54 60 146 106.5t196 46.5q85 0 136.5 -28t51.5 -82q0 -55 -53 -103t-130.5 -82 t-150.5 -49q125 -2 199 -38t74 -113q0 -96 -106.5 -169.5t-263.5 -116t-306 -52.5z" />
-<glyph unicode="&#xb4;" horiz-adv-x="457" d="M260 1247q69 97 128 197t87 144.5t66 82.5q51 54 111 54q43 0 75 -31q27 -27 27 -62q0 -55 -60 -112q-29 -29 -65.5 -55t-144 -94.5t-203.5 -143.5z" />
-<glyph unicode="&#xb6;" horiz-adv-x="1450" d="M82 469q0 268 128.5 493.5t349.5 357.5t487 132q71 0 192 -3t176 -3q133 0 197 4l-10 -39q-66 -3 -104 -18.5t-58 -44t-33 -76.5l-293 -1116q-68 -256 -213.5 -398.5t-400.5 -142.5q-130 0 -208.5 37t-78.5 117q0 43 21.5 79t61.5 57t93 21q67 0 109.5 -30.5t42.5 -83.5 q0 -98 -109 -156q19 -6 57 -6q61 0 103.5 35.5t74.5 104t66 183.5q-339 0 -495 131t-156 365zM299 719q-1 -6 75.5 -16t202.5 -17.5t269 -7.5q-40 -173 -60 -323t-20 -224q0 -33 4 -33q52 193 192 716.5t142 528.5q-8 0 -48.5 -85t-92 -218.5t-95.5 -277.5 q-141 0 -270.5 -8.5t-213.5 -19t-85 -15.5z" />
-<glyph unicode="&#xb7;" horiz-adv-x="592" d="M111 507q0 54 26.5 98t72.5 69t100 25q64 0 100.5 -32.5t36.5 -89.5q0 -50 -26.5 -95t-72.5 -72t-100 -27q-65 0 -101 33t-36 91z" />
-<glyph unicode="&#xb8;" horiz-adv-x="467" d="M-92 -344l12 31q5 -2 25 -8t46 -10.5t54 -4.5q54 0 107 21t53 73q0 22 -16 34.5t-42 12.5q-35 0 -63 -14l139 209h60l-90 -141q60 20 110 20q55 0 89 -22.5t34 -63.5q0 -61 -49.5 -101t-126 -58.5t-160.5 -18.5q-58 0 -107.5 12.5t-74.5 28.5z" />
-<glyph unicode="&#xb9;" horiz-adv-x="549" d="M219 1298l10 39q103 28 179 61.5t124 64t117 79.5h39l-207 -647h-194l155 479q-15 -6 -55.5 -22.5t-81 -29.5t-86.5 -24z" />
-<glyph unicode="&#xba;" horiz-adv-x="1006" d="M215 989q0 101 62 216t180 194.5t278 79.5q151 0 236.5 -63t85.5 -189q0 -101 -61.5 -215.5t-179.5 -193.5t-279 -79q-151 0 -236.5 63t-85.5 187zM473 895q0 -119 74 -119q61 0 119.5 84.5t95.5 212.5t37 250q0 119 -74 119q-60 0 -119 -85t-96 -213.5t-37 -248.5z" />
-<glyph unicode="&#xbb;" horiz-adv-x="1198" d="M20 20q33 79 96.5 182t134.5 195.5t126 141.5q-36 46 -71.5 135.5t-61 189t-31.5 174.5h37q104 -156 204 -275t220 -212l-6 -25q-163 -101 -310.5 -225t-300.5 -281h-37zM408 -29q39 87 111 200.5t152.5 214.5t143.5 153q-41 50 -82 147.5t-70 207.5t-36 193h37 q109 -169 218.5 -300.5t241.5 -235.5l-6 -25q-179 -111 -342 -247.5t-332 -307.5h-36z" />
-<glyph unicode="&#xbc;" horiz-adv-x="1368" d="M-232 -86l1706 1774l31 -27l-1706 -1774zM219 1298l10 39q103 28 179 61.5t124 64t117 79.5h39l-207 -647h-194l155 479q-15 -6 -55.5 -22.5t-81 -29.5t-86.5 -24zM264 16l11 37l688 596h39l-149 -512h106l-35 -121h-107l-55 -190h-156l55 190h-397zM427 137h270l89 309z " />
-<glyph unicode="&#xbd;" horiz-adv-x="1272" d="M-232 -86l1706 1774l31 -27l-1706 -1774zM219 1298l10 39q103 28 179 61.5t124 64t117 79.5h39l-207 -647h-194l155 479q-15 -6 -55.5 -22.5t-81 -29.5t-86.5 -24zM479 0l8 37q18 13 144.5 98t213 177.5t86.5 174.5q0 84 -102 84q-111 0 -203 -98l-29 23q58 66 146 109.5 t198 43.5q84 0 134.5 -28.5t50.5 -85.5q0 -80 -78.5 -149.5t-188 -137.5t-139.5 -90q23 0 57.5 -5.5t98 -18.5t96.5 -13q38 0 61 15.5t23 45.5q0 21 -8 37l35 14q33 -51 33 -100q0 -61 -49.5 -101t-141.5 -40q-30 0 -59.5 4t-100 17t-127.5 16q-50 1 -81.5 -4.5t-77.5 -24.5 z" />
-<glyph unicode="&#xbe;" horiz-adv-x="1536" d="M-27 -86l1706 1774l31 -27l-1706 -1774zM78 711v37q117 9 227.5 49.5t181 109.5t70.5 158q0 95 -88 106q-39 -20 -66 -20q-36 0 -36 27q0 37 90 34q75 32 120.5 80t45.5 103q0 38 -24 56.5t-64 18.5q-113 0 -222 -104l-28 25q54 60 146 106.5t196 46.5q85 0 136.5 -28 t51.5 -82q0 -55 -53 -103t-130.5 -82t-150.5 -49q125 -2 199 -38t74 -113q0 -96 -106.5 -169.5t-263.5 -116t-306 -52.5zM469 16l11 37l688 596h39l-149 -512h106l-35 -121h-107l-55 -190h-156l55 190h-397zM632 137h270l89 309z" />
-<glyph unicode="&#xbf;" horiz-adv-x="999" d="M-90 -156q0 60 32 109.5t97 100.5t190 134q113 79 161 116.5t77 80t29 96.5q0 53 -34 89t-102 36q-45 0 -90 -13.5t-65 -35.5q25 -1 48.5 -15.5t38.5 -39t15 -53.5q0 -50 -40 -84.5t-101 -34.5q-51 0 -82 26t-31 78q0 73 62 121.5t154 71t182 22.5q96 0 172.5 -25 t120.5 -73t44 -115q0 -65 -41.5 -122.5t-100 -103t-169.5 -122.5q-104 -69 -157.5 -111.5t-81 -84.5t-27.5 -93q0 -65 46.5 -102t125.5 -37q48 0 101 13t77 38q-50 6 -86.5 43.5t-36.5 87.5q1 38 22.5 68.5t57 47.5t76.5 17q58 0 96.5 -33t38.5 -94q0 -79 -64.5 -131.5 t-165 -77t-208.5 -24.5q-115 0 -201 27t-133 79t-47 123zM428 895q0 54 26.5 98t72.5 69t100 25q64 0 100.5 -32.5t36.5 -89.5q0 -50 -26.5 -95t-72.5 -72t-100 -27q-65 0 -101 33t-36 91z" />
-<glyph unicode="&#xc0;" horiz-adv-x="1337" d="M-188 0l8 41q52 14 103 61t128 156l854 1202q27 -3 54 -3q29 0 51 3l82 -1288q5 -67 34 -98t66 -33l-8 -41q-105 6 -297 6q-209 0 -307 -6l8 41q66 3 103 15.5t55.5 43t18.5 87.5q0 17 -1 26l-17 336h-443l-181 -256q-65 -92 -65 -151q0 -93 171 -101l-10 -41 q-172 6 -266 6q-76 0 -141 -6zM333 590h411l-28 543zM597 1844q0 25 14 50q30 50 93 50q43 0 77 -23q29 -17 52 -42.5t87 -110t148 -166.5l-17 -23q-105 49 -188.5 78t-125 44.5t-75.5 37.5q-29 18 -47 46.5t-18 58.5z" />
-<glyph unicode="&#xc1;" horiz-adv-x="1337" d="M-188 0l8 41q52 14 103 61t128 156l854 1202q27 -3 54 -3q29 0 51 3l82 -1288q5 -67 34 -98t66 -33l-8 -41q-105 6 -297 6q-209 0 -307 -6l8 41q66 3 103 15.5t55.5 43t18.5 87.5q0 17 -1 26l-17 336h-443l-181 -256q-65 -92 -65 -151q0 -93 171 -101l-10 -41 q-172 6 -266 6q-76 0 -141 -6zM333 590h411l-28 543zM828 1606q94 74 178.5 153.5t123.5 114.5t87 61q41 23 88 23q71 0 98 -55q11 -22 11 -42q0 -65 -92 -116q-36 -20 -78.5 -34.5t-165 -49.5t-236.5 -80z" />
-<glyph unicode="&#xc2;" horiz-adv-x="1337" d="M-188 0l8 41q52 14 103 61t128 156l854 1202q27 -3 54 -3q29 0 51 3l82 -1288q5 -67 34 -98t66 -33l-8 -41q-105 6 -297 6q-209 0 -307 -6l8 41q66 3 103 15.5t55.5 43t18.5 87.5q0 17 -1 26l-17 336h-443l-181 -256q-65 -92 -65 -151q0 -93 171 -101l-10 -41 q-172 6 -266 6q-76 0 -141 -6zM333 590h411l-28 543zM515 1608q169 53 317 138t238 179h37q48 -115 111.5 -190t172.5 -127l-8 -29q-133 22 -221.5 50t-191.5 71q-214 -77 -445 -121z" />
-<glyph unicode="&#xc3;" horiz-adv-x="1337" d="M-188 0l8 41q52 14 103 61t128 156l854 1202q27 -3 54 -3q29 0 51 3l82 -1288q5 -67 34 -98t66 -33l-8 -41q-105 6 -297 6q-209 0 -307 -6l8 41q66 3 103 15.5t55.5 43t18.5 87.5q0 17 -1 26l-17 336h-443l-181 -256q-65 -92 -65 -151q0 -93 171 -101l-10 -41 q-172 6 -266 6q-76 0 -141 -6zM333 590h411l-28 543zM552 1614q55 144 146.5 214t193.5 70q73 0 121.5 -21t123 -74.5t144.5 -53.5q44 0 82.5 28t75.5 91l37 -10q-55 -144 -146.5 -214.5t-193.5 -70.5q-72 0 -120 21t-123.5 74.5t-145.5 53.5q-45 0 -83 -27.5t-75 -90.5z " />
-<glyph unicode="&#xc4;" horiz-adv-x="1337" d="M-188 0l8 41q52 14 103 61t128 156l854 1202q27 -3 54 -3q29 0 51 3l82 -1288q5 -67 34 -98t66 -33l-8 -41q-105 6 -297 6q-209 0 -307 -6l8 41q66 3 103 15.5t55.5 43t18.5 87.5q0 17 -1 26l-17 336h-443l-181 -256q-65 -92 -65 -151q0 -93 171 -101l-10 -41 q-172 6 -266 6q-76 0 -141 -6zM333 590h411l-28 543zM574 1704q0 53 24.5 92.5t64.5 60.5t87 21q64 0 98.5 -37.5t34.5 -99.5q0 -54 -25 -93t-66 -59t-87 -20q-65 0 -98 36.5t-33 98.5zM1064 1704q0 53 24.5 92.5t64.5 60.5t87 21q64 0 98.5 -37.5t34.5 -99.5q0 -54 -25 -93 t-65.5 -59t-85.5 -20q-66 0 -99.5 36.5t-33.5 98.5z" />
-<glyph unicode="&#xc5;" horiz-adv-x="1337" d="M-188 0l8 41q52 14 103 61t128 156l854 1202q27 -3 54 -3q29 0 51 3l82 -1288q5 -67 34 -98t66 -33l-8 -41q-105 6 -297 6q-209 0 -307 -6l8 41q66 3 103 15.5t55.5 43t18.5 87.5q0 17 -1 26l-17 336h-443l-181 -256q-65 -92 -65 -151q0 -93 171 -101l-10 -41 q-172 6 -266 6q-76 0 -141 -6zM333 590h411l-28 543zM773 1696q0 62 33.5 113t90 80.5t124.5 29.5q57 0 103 -21.5t72 -61t26 -91.5q0 -61 -35.5 -112.5t-94 -82t-124.5 -30.5q-85 0 -140 47.5t-55 128.5zM828 1696q0 -42 21 -72t55 -45.5t72 -15.5q49 0 93.5 23.5t71.5 65 t27 91.5q0 43 -22 73t-57.5 45t-73.5 15q-49 0 -92.5 -25t-69 -67t-25.5 -88z" />
-<glyph unicode="&#xc6;" horiz-adv-x="1853" d="M-176 0v41q63 3 176 131l992 1168q-3 39 -33.5 52.5t-104.5 16.5l10 41q93 -3 218 -4l116 137h53l-117 -138q115 -1 215.5 -1h176.5q295 0 424 6q-32 -89 -78 -242q-19 -68 -27 -127h-45q15 85 15 145q0 96 -42.5 136.5t-138.5 40.5h-129q-71 0 -106.5 -12t-57 -46.5 t-41.5 -111.5l-128 -483h159q58 0 96.5 30.5t62 76t52.5 122.5h45q-28 -85 -45 -154.5t-24 -95.5q-22 -75 -54 -250h-45q0 20 5.5 63t5.5 64q0 45 -23 72t-84 31h-162l-131 -492q-17 -66 -17 -99q0 -30 13.5 -45t41.5 -20.5t79 -5.5h149q99 0 162.5 34t110 111t94.5 218h45 q-19 -50 -43 -148q-35 -127 -53 -262q-139 6 -463 6q-440 0 -664 -6l9 41q74 3 110.5 16t58.5 48t42 112l131 492h-328l-438 -516q-59 -67 -59 -97q0 -45 126 -55v-41q-56 6 -176 6q-88 0 -137 -6zM543 750h304l128 483l9 35z" />
-<glyph unicode="&#xc7;" horiz-adv-x="1419" d="M88 479q0 242 128 474t353 379t498 147q80 0 137 -18t94.5 -46t73.5 -69q15 -18 30 -18q38 0 83 122h43q-68 -177 -131 -471h-45q15 89 15 160q0 96 -34 157q-72 134 -241 134q-164 0 -312 -144t-237.5 -374.5t-89.5 -473.5q0 -203 72.5 -304t203.5 -101q78 0 162 35.5 t145 99.5q54 56 93.5 127.5t91.5 196.5h45q-97 -355 -121 -492h-45q6 44 6 70q0 52 -26 52q-16 0 -42 -18q-93 -64 -188 -98.5t-213 -34.5q-274 0 -411.5 131t-137.5 377zM300 -344l12 31q96 -23 166 -23q68 0 126 20.5t58 73.5q0 47 -65 47q-34 0 -72 -14l100 221h56 l-66 -141q58 20 119 20q63 0 100 -25t37 -73q0 -61 -51 -101t-130.5 -58.5t-164.5 -18.5q-70 0 -130 12.5t-95 28.5z" />
-<glyph unicode="&#xc8;" horiz-adv-x="1282" d="M-88 0l10 41q74 3 110 16t58 48t43 112l270 1016q17 65 17 99q0 30 -13.5 46t-42 22.5t-81.5 8.5l10 41q223 -6 665 -6q291 0 416 6q-54 -147 -78 -242q-11 -46 -26 -127h-45q3 39 3 73q0 93 -22.5 147t-72 78t-134.5 24h-63q-72 0 -108 -12t-57.5 -46.5t-41.5 -111.5 l-128 -483h75q102 0 171 71.5t109 173.5h48q-24 -70 -37.5 -118t-23.5 -88.5t-15 -59.5q-25 -91 -60 -266h-45q2 28 2 44q0 202 -172 202h-63l-131 -492q-19 -68 -19 -100q0 -29 13.5 -44t42 -20.5t79.5 -5.5h76q112 0 187.5 34.5t135 112t120.5 216.5h47q-22 -54 -45 -148 q-32 -108 -54 -262q-139 6 -464 6q-443 0 -666 -6zM514 1844q0 25 14 50q30 50 93 50q43 0 77 -23q29 -17 52 -42.5t87 -110t148 -166.5l-17 -23q-105 49 -188.5 78t-125 44.5t-75.5 37.5q-29 18 -47 46.5t-18 58.5z" />
-<glyph unicode="&#xc9;" horiz-adv-x="1282" d="M-88 0l10 41q74 3 110 16t58 48t43 112l270 1016q17 65 17 99q0 30 -13.5 46t-42 22.5t-81.5 8.5l10 41q223 -6 665 -6q291 0 416 6q-54 -147 -78 -242q-11 -46 -26 -127h-45q3 39 3 73q0 93 -22.5 147t-72 78t-134.5 24h-63q-72 0 -108 -12t-57.5 -46.5t-41.5 -111.5 l-128 -483h75q102 0 171 71.5t109 173.5h48q-24 -70 -37.5 -118t-23.5 -88.5t-15 -59.5q-25 -91 -60 -266h-45q2 28 2 44q0 202 -172 202h-63l-131 -492q-19 -68 -19 -100q0 -29 13.5 -44t42 -20.5t79.5 -5.5h76q112 0 187.5 34.5t135 112t120.5 216.5h47q-22 -54 -45 -148 q-32 -108 -54 -262q-139 6 -464 6q-443 0 -666 -6zM745 1606q94 74 178.5 153.5t123.5 114.5t87 61q41 23 88 23q71 0 98 -55q11 -22 11 -42q0 -65 -92 -116q-36 -20 -78.5 -34.5t-165 -49.5t-236.5 -80z" />
-<glyph unicode="&#xca;" horiz-adv-x="1282" d="M-88 0l10 41q74 3 110 16t58 48t43 112l270 1016q17 65 17 99q0 30 -13.5 46t-42 22.5t-81.5 8.5l10 41q223 -6 665 -6q291 0 416 6q-54 -147 -78 -242q-11 -46 -26 -127h-45q3 39 3 73q0 93 -22.5 147t-72 78t-134.5 24h-63q-72 0 -108 -12t-57.5 -46.5t-41.5 -111.5 l-128 -483h75q102 0 171 71.5t109 173.5h48q-24 -70 -37.5 -118t-23.5 -88.5t-15 -59.5q-25 -91 -60 -266h-45q2 28 2 44q0 202 -172 202h-63l-131 -492q-19 -68 -19 -100q0 -29 13.5 -44t42 -20.5t79.5 -5.5h76q112 0 187.5 34.5t135 112t120.5 216.5h47q-22 -54 -45 -148 q-32 -108 -54 -262q-139 6 -464 6q-443 0 -666 -6zM432 1608q169 53 317 138t238 179h37q48 -115 111.5 -190t172.5 -127l-8 -29q-133 22 -221.5 50t-191.5 71q-214 -77 -445 -121z" />
-<glyph unicode="&#xcb;" horiz-adv-x="1282" d="M-88 0l10 41q74 3 110 16t58 48t43 112l270 1016q17 65 17 99q0 30 -13.5 46t-42 22.5t-81.5 8.5l10 41q223 -6 665 -6q291 0 416 6q-54 -147 -78 -242q-11 -46 -26 -127h-45q3 39 3 73q0 93 -22.5 147t-72 78t-134.5 24h-63q-72 0 -108 -12t-57.5 -46.5t-41.5 -111.5 l-128 -483h75q102 0 171 71.5t109 173.5h48q-24 -70 -37.5 -118t-23.5 -88.5t-15 -59.5q-25 -91 -60 -266h-45q2 28 2 44q0 202 -172 202h-63l-131 -492q-19 -68 -19 -100q0 -29 13.5 -44t42 -20.5t79.5 -5.5h76q112 0 187.5 34.5t135 112t120.5 216.5h47q-22 -54 -45 -148 q-32 -108 -54 -262q-139 6 -464 6q-443 0 -666 -6zM491 1704q0 53 24.5 92.5t64.5 60.5t87 21q64 0 98.5 -37.5t34.5 -99.5q0 -54 -25 -93t-66 -59t-87 -20q-65 0 -98 36.5t-33 98.5zM981 1704q0 53 24.5 92.5t64.5 60.5t87 21q64 0 98.5 -37.5t34.5 -99.5q0 -54 -25 -93 t-65.5 -59t-85.5 -20q-66 0 -99.5 36.5t-33.5 98.5z" />
-<glyph unicode="&#xcc;" horiz-adv-x="799" d="M-84 0l10 41q71 3 107 16t58 48.5t42 111.5l270 1016q17 65 17 99q0 30 -13.5 46t-42 22.5t-81.5 8.5l10 41q101 -6 321 -6q204 0 336 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-18 -70 -18 -100t13.5 -45.5t42.5 -22t83 -8.5l-9 -41q-118 6 -333 6 q-214 0 -322 -6zM311 1844q0 25 14 50q30 50 93 50q43 0 77 -23q29 -17 52 -42.5t87 -110t148 -166.5l-17 -23q-105 49 -188.5 78t-125 44.5t-75.5 37.5q-29 18 -47 46.5t-18 58.5z" />
-<glyph unicode="&#xcd;" horiz-adv-x="799" d="M-84 0l10 41q71 3 107 16t58 48.5t42 111.5l270 1016q17 65 17 99q0 30 -13.5 46t-42 22.5t-81.5 8.5l10 41q101 -6 321 -6q204 0 336 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-18 -70 -18 -100t13.5 -45.5t42.5 -22t83 -8.5l-9 -41q-118 6 -333 6 q-214 0 -322 -6zM542 1606q94 74 178.5 153.5t123.5 114.5t87 61q41 23 88 23q71 0 98 -55q11 -22 11 -42q0 -65 -92 -116q-36 -20 -78.5 -34.5t-165 -49.5t-236.5 -80z" />
-<glyph unicode="&#xce;" horiz-adv-x="799" d="M-84 0l10 41q71 3 107 16t58 48.5t42 111.5l270 1016q17 65 17 99q0 30 -13.5 46t-42 22.5t-81.5 8.5l10 41q101 -6 321 -6q204 0 336 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-18 -70 -18 -100t13.5 -45.5t42.5 -22t83 -8.5l-9 -41q-118 6 -333 6 q-214 0 -322 -6zM229 1608q169 53 317 138t238 179h37q48 -115 111.5 -190t172.5 -127l-8 -29q-133 22 -221.5 50t-191.5 71q-214 -77 -445 -121z" />
-<glyph unicode="&#xcf;" horiz-adv-x="799" d="M-84 0l10 41q71 3 107 16t58 48.5t42 111.5l270 1016q17 65 17 99q0 30 -13.5 46t-42 22.5t-81.5 8.5l10 41q101 -6 321 -6q204 0 336 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-18 -70 -18 -100t13.5 -45.5t42.5 -22t83 -8.5l-9 -41q-118 6 -333 6 q-214 0 -322 -6zM288 1704q0 53 24.5 92.5t64.5 60.5t87 21q64 0 98.5 -37.5t34.5 -99.5q0 -54 -25 -93t-66 -59t-87 -20q-65 0 -98 36.5t-33 98.5zM778 1704q0 53 24.5 92.5t64.5 60.5t87 21q64 0 98.5 -37.5t34.5 -99.5q0 -54 -25 -93t-65.5 -59t-85.5 -20 q-66 0 -99.5 36.5t-33.5 98.5z" />
-<glyph unicode="&#xd0;" horiz-adv-x="1579" d="M-78 0l6 41q70 3 105.5 16t57.5 48.5t42 111.5l268 1016q16 64 16 89q0 43 -30 63.5t-104 23.5l6 41q145 -7 271 -7l65 1q213 6 305 6q300 0 459 -124t159 -365q0 -235 -114.5 -456.5t-343 -363t-551.5 -141.5q-46 0 -138 3t-172 3q-199 0 -307 -6zM156 707l12 52h820 l-13 -52h-819zM436 100q0 -34 23 -48.5t80 -14.5q208 0 362.5 145t235 373.5t80.5 470.5q0 193 -79.5 290t-252.5 97q-53 0 -79 -13t-42 -47.5t-37 -115.5l-268 -1024q-23 -87 -23 -113z" />
-<glyph unicode="&#xd1;" horiz-adv-x="1690" d="M-164 23q0 52 24 94.5t66.5 67t96.5 24.5q66 0 103.5 -34t37.5 -89q0 -67 -44 -118.5t-112 -71.5q10 -9 35 -9q105 0 172 111q77 120 158.5 431t177.5 802v2q13 62 13 92q0 33 -14.5 50.5t-47.5 24.5t-96 9l10 41q65 -6 182 -6q95 0 166 6l424 -972q171 738 307 935 q90 131 221 131q61 0 105 -23t67 -62.5t23 -88.5q0 -52 -24 -94.5t-67 -67t-96 -24.5q-67 0 -104 33.5t-37 89.5q0 67 43.5 118t110.5 72q-8 8 -33 8q-98 0 -172 -108q-91 -136 -189 -477t-223 -930h-45l-508 1112q-88 -435 -167 -732t-152 -393q-45 -60 -95.5 -94.5 t-123.5 -34.5q-61 0 -104.5 23t-66 63t-22.5 89zM714 1614q55 144 146.5 214t193.5 70q73 0 121.5 -21t123 -74.5t144.5 -53.5q44 0 82.5 28t75.5 91l37 -10q-55 -144 -146.5 -214.5t-193.5 -70.5q-72 0 -120 21t-123.5 74.5t-145.5 53.5q-45 0 -83 -27.5t-75 -90.5z" />
-<glyph unicode="&#xd2;" d="M86 463q0 232 118.5 469t330.5 392t479 155q174 0 299 -58t191.5 -169t66.5 -267q0 -231 -119 -467.5t-332 -391.5t-479 -155q-173 0 -298 58t-191 168.5t-66 265.5zM438 436q0 -131 28 -228t78 -148.5t115 -51.5q140 0 269 147.5t209 381.5t80 477q0 131 -28.5 228 t-78.5 148.5t-115 51.5q-139 0 -268.5 -147.5t-209 -381.5t-79.5 -477zM705 1844q0 25 14 50q30 50 93 50q43 0 77 -23q29 -17 52 -42.5t87 -110t148 -166.5l-17 -23q-105 49 -188.5 78t-125 44.5t-75.5 37.5q-29 18 -47 46.5t-18 58.5z" />
-<glyph unicode="&#xd3;" d="M86 463q0 232 118.5 469t330.5 392t479 155q174 0 299 -58t191.5 -169t66.5 -267q0 -231 -119 -467.5t-332 -391.5t-479 -155q-173 0 -298 58t-191 168.5t-66 265.5zM438 436q0 -131 28 -228t78 -148.5t115 -51.5q140 0 269 147.5t209 381.5t80 477q0 131 -28.5 228 t-78.5 148.5t-115 51.5q-139 0 -268.5 -147.5t-209 -381.5t-79.5 -477zM936 1606q94 74 178.5 153.5t123.5 114.5t87 61q41 23 88 23q71 0 98 -55q11 -22 11 -42q0 -65 -92 -116q-36 -20 -78.5 -34.5t-165 -49.5t-236.5 -80z" />
-<glyph unicode="&#xd4;" d="M86 463q0 232 118.5 469t330.5 392t479 155q174 0 299 -58t191.5 -169t66.5 -267q0 -231 -119 -467.5t-332 -391.5t-479 -155q-173 0 -298 58t-191 168.5t-66 265.5zM438 436q0 -131 28 -228t78 -148.5t115 -51.5q140 0 269 147.5t209 381.5t80 477q0 131 -28.5 228 t-78.5 148.5t-115 51.5q-139 0 -268.5 -147.5t-209 -381.5t-79.5 -477zM623 1608q169 53 317 138t238 179h37q48 -115 111.5 -190t172.5 -127l-8 -29q-133 22 -221.5 50t-191.5 71q-214 -77 -445 -121z" />
-<glyph unicode="&#xd5;" d="M86 463q0 232 118.5 469t330.5 392t479 155q174 0 299 -58t191.5 -169t66.5 -267q0 -231 -119 -467.5t-332 -391.5t-479 -155q-173 0 -298 58t-191 168.5t-66 265.5zM438 436q0 -131 28 -228t78 -148.5t115 -51.5q140 0 269 147.5t209 381.5t80 477q0 131 -28.5 228 t-78.5 148.5t-115 51.5q-139 0 -268.5 -147.5t-209 -381.5t-79.5 -477zM660 1614q55 144 146.5 214t193.5 70q73 0 121.5 -21t123 -74.5t144.5 -53.5q44 0 82.5 28t75.5 91l37 -10q-55 -144 -146.5 -214.5t-193.5 -70.5q-72 0 -120 21t-123.5 74.5t-145.5 53.5 q-45 0 -83 -27.5t-75 -90.5z" />
-<glyph unicode="&#xd6;" d="M86 463q0 232 118.5 469t330.5 392t479 155q174 0 299 -58t191.5 -169t66.5 -267q0 -231 -119 -467.5t-332 -391.5t-479 -155q-173 0 -298 58t-191 168.5t-66 265.5zM438 436q0 -131 28 -228t78 -148.5t115 -51.5q140 0 269 147.5t209 381.5t80 477q0 131 -28.5 228 t-78.5 148.5t-115 51.5q-139 0 -268.5 -147.5t-209 -381.5t-79.5 -477zM682 1704q0 53 24.5 92.5t64.5 60.5t87 21q64 0 98.5 -37.5t34.5 -99.5q0 -54 -25 -93t-66 -59t-87 -20q-65 0 -98 36.5t-33 98.5zM1172 1704q0 53 24.5 92.5t64.5 60.5t87 21q64 0 98.5 -37.5 t34.5 -99.5q0 -54 -25 -93t-65.5 -59t-85.5 -20q-66 0 -99.5 36.5t-33.5 98.5z" />
-<glyph unicode="&#xd7;" horiz-adv-x="1016" d="M39 373l457 354l-256 358l53 37l252 -358l465 362l32 -45l-464 -360l256 -354l-52 -37l-254 354l-458 -356z" />
-<glyph unicode="&#xd8;" d="M-6 -121l226 233q-134 129 -134 351q0 232 118.5 469t330.5 392t479 155q247 0 392 -115l210 219l31 -27l-209 -220q133 -129 133 -351q0 -231 -119 -467.5t-332 -391.5t-479 -155q-243 0 -388 112l-224 -233zM438 436q0 -71 9 -133l758 867q-22 129 -77.5 200.5 t-132.5 71.5q-139 0 -268.5 -147.5t-209 -381.5t-79.5 -477zM456 247q25 -114 78.5 -176.5t124.5 -62.5q140 0 269 147.5t209 381.5t80 477q0 52 -5 100z" />
-<glyph unicode="&#xd9;" horiz-adv-x="1421" d="M154 324q0 102 45 266l170 643q17 65 17 98q0 31 -14 47t-42.5 22.5t-81.5 8.5l12 41q105 -6 338 -6q191 0 317 6l-12 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-180 -678q-49 -184 -49 -298q0 -108 44.5 -161t139.5 -53q215 0 339 139.5t190 390.5l141 541 q32 122 32 175q0 59 -35 85t-120 35l10 41q77 -6 219 -6q114 0 181 6l-11 -41q-69 -9 -108 -34.5t-64.5 -78.5t-52.5 -157l-139 -543q-73 -283 -201 -434q-75 -88 -185 -139.5t-235 -51.5q-150 0 -250 42.5t-149 119.5q-55 77 -55 191zM640 1844q0 25 14 50q30 50 93 50 q43 0 77 -23q29 -17 52 -42.5t87 -110t148 -166.5l-17 -23q-105 49 -188.5 78t-125 44.5t-75.5 37.5q-29 18 -47 46.5t-18 58.5z" />
-<glyph unicode="&#xda;" horiz-adv-x="1421" d="M154 324q0 102 45 266l170 643q17 65 17 98q0 31 -14 47t-42.5 22.5t-81.5 8.5l12 41q105 -6 338 -6q191 0 317 6l-12 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-180 -678q-49 -184 -49 -298q0 -108 44.5 -161t139.5 -53q215 0 339 139.5t190 390.5l141 541 q32 122 32 175q0 59 -35 85t-120 35l10 41q77 -6 219 -6q114 0 181 6l-11 -41q-69 -9 -108 -34.5t-64.5 -78.5t-52.5 -157l-139 -543q-73 -283 -201 -434q-75 -88 -185 -139.5t-235 -51.5q-150 0 -250 42.5t-149 119.5q-55 77 -55 191zM871 1606q94 74 178.5 153.5 t123.5 114.5t87 61q41 23 88 23q71 0 98 -55q11 -22 11 -42q0 -65 -92 -116q-36 -20 -78.5 -34.5t-165 -49.5t-236.5 -80z" />
-<glyph unicode="&#xdb;" horiz-adv-x="1421" d="M154 324q0 102 45 266l170 643q17 65 17 98q0 31 -14 47t-42.5 22.5t-81.5 8.5l12 41q105 -6 338 -6q191 0 317 6l-12 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-180 -678q-49 -184 -49 -298q0 -108 44.5 -161t139.5 -53q215 0 339 139.5t190 390.5l141 541 q32 122 32 175q0 59 -35 85t-120 35l10 41q77 -6 219 -6q114 0 181 6l-11 -41q-69 -9 -108 -34.5t-64.5 -78.5t-52.5 -157l-139 -543q-73 -283 -201 -434q-75 -88 -185 -139.5t-235 -51.5q-150 0 -250 42.5t-149 119.5q-55 77 -55 191zM558 1608q169 53 317 138t238 179h37 q48 -115 111.5 -190t172.5 -127l-8 -29q-133 22 -221.5 50t-191.5 71q-214 -77 -445 -121z" />
-<glyph unicode="&#xdc;" horiz-adv-x="1421" d="M154 324q0 102 45 266l170 643q17 65 17 98q0 31 -14 47t-42.5 22.5t-81.5 8.5l12 41q105 -6 338 -6q191 0 317 6l-12 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-180 -678q-49 -184 -49 -298q0 -108 44.5 -161t139.5 -53q215 0 339 139.5t190 390.5l141 541 q32 122 32 175q0 59 -35 85t-120 35l10 41q77 -6 219 -6q114 0 181 6l-11 -41q-69 -9 -108 -34.5t-64.5 -78.5t-52.5 -157l-139 -543q-73 -283 -201 -434q-75 -88 -185 -139.5t-235 -51.5q-150 0 -250 42.5t-149 119.5q-55 77 -55 191zM617 1704q0 53 24.5 92.5t64.5 60.5 t87 21q64 0 98.5 -37.5t34.5 -99.5q0 -54 -25 -93t-66 -59t-87 -20q-65 0 -98 36.5t-33 98.5zM1107 1704q0 53 24.5 92.5t64.5 60.5t87 21q64 0 98.5 -37.5t34.5 -99.5q0 -54 -25 -93t-65.5 -59t-85.5 -20q-66 0 -99.5 36.5t-33.5 98.5z" />
-<glyph unicode="&#xdd;" horiz-adv-x="1503" d="M170 1102l51 158q38 116 111 167.5t178 51.5q134 0 210 -83.5t114 -235.5t67 -412q135 382 336 604q116 127 242 127q60 0 103 -23.5t65 -64t22 -89.5q0 -51 -24 -93t-66.5 -66.5t-95.5 -24.5q-68 0 -105 34t-37 91q1 67 44.5 117.5t111.5 71.5q-11 8 -35 8 q-60 0 -123 -47q-57 -41 -129.5 -136.5t-149 -243t-141.5 -335.5l-116 -461q-13 -55 -13 -83q0 -37 16.5 -56t49.5 -26.5t92 -10.5l-10 -41q-117 6 -352 6q-222 0 -330 -6l10 41q75 3 112 16t58.5 48.5t40.5 111.5l111 442q-32 279 -89.5 473.5t-146.5 194.5 q-36 0 -57.5 -25t-36.5 -71l-43 -129h-45zM855 1606q94 74 178.5 153.5t123.5 114.5t87 61q41 23 88 23q71 0 98 -55q11 -22 11 -42q0 -65 -92 -116q-36 -20 -78.5 -34.5t-165 -49.5t-236.5 -80z" />
-<glyph unicode="&#xde;" horiz-adv-x="1354" d="M-84 0l10 41q71 3 107 16t58 48.5t42 111.5l270 1016q17 65 17 99q0 30 -13.5 46t-42 22.5t-81.5 8.5l10 41q100 -6 321 -6q204 0 336 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-22 -82q110 2 161 2q160 0 267.5 -38t161 -107.5t53.5 -163.5 q0 -160 -106.5 -286.5t-299 -198.5t-440.5 -72h-26l-19 -70q-18 -70 -18 -100t13.5 -45.5t42.5 -22t83 -8.5l-9 -41q-119 6 -333 6t-322 -6zM488 328h36q163 0 271.5 75.5t160.5 200t52 273.5q0 111 -57 174t-167 63q-50 0 -87 -2z" />
-<glyph unicode="&#xdf;" horiz-adv-x="1245" d="M-121 -385l377 1434q51 193 124 313t187.5 180t286.5 60q132 0 217.5 -28.5t124.5 -74.5t39 -100q0 -77 -53.5 -135t-160.5 -135.5t-155 -116.5q-62 -50 -81 -82t-19 -68q0 -59 38 -109t85 -94.5t65 -62.5q60 -59 95 -100.5t56 -88.5t21 -104q0 -105 -59 -180 t-157 -113.5t-214 -38.5q-85 0 -149.5 27t-99.5 76.5t-35 115.5q0 63 33 107.5t85 44.5q57 0 89 -52t32 -122q0 -40 -13 -80.5t-36 -67.5q24 -8 51 -8q43 0 78 25t55.5 70.5t20.5 103.5q0 63 -17.5 123.5t-54.5 134.5q-7 16 -34.5 71.5t-43.5 109t-16 98.5q0 69 30 113 t85.5 95.5t77.5 73.5q65 68 94.5 157.5t29.5 186.5q0 101 -40 149t-103 48q-73 0 -123 -73t-92 -234l-426 -1620q-171 -3 -295 -29z" />
-<glyph unicode="&#xe0;" horiz-adv-x="1143" d="M-2 223q0 182 97.5 386t247 341t292.5 137q55 0 89 -32.5t41 -98.5l28 101q163 3 297 30l-269 -913q-10 -35 -10 -56q0 -46 39 -46q72 0 127 161l37 99h39l-52 -150q-40 -115 -113 -163t-157 -48q-107 0 -151 64q-28 41 -28 104q0 48 18 122q-130 -290 -343 -290 q-113 0 -171 66.5t-58 185.5zM301 209q0 -68 13.5 -97.5t43.5 -29.5q44 0 99 62t109 180.5t96 279.5l-10 -50l89 319q2 12 2 35q0 50 -18 77t-51 27q-70 0 -159 -125.5t-151.5 -313.5t-62.5 -364zM436 1642q0 58 48 87q26 14 54 14q33 0 63 -17.5t49 -48.5q20 -32 31.5 -67 t37.5 -143.5t71 -225.5l-25 -14q-53 65 -96.5 111.5t-113.5 116t-97 114.5q-22 37 -22 73z" />
-<glyph unicode="&#xe1;" horiz-adv-x="1143" d="M-2 223q0 182 97.5 386t247 341t292.5 137q55 0 89 -32.5t41 -98.5l28 101q163 3 297 30l-269 -913q-10 -35 -10 -56q0 -46 39 -46q72 0 127 161l37 99h39l-52 -150q-40 -115 -113 -163t-157 -48q-107 0 -151 64q-28 41 -28 104q0 48 18 122q-130 -290 -343 -290 q-113 0 -171 66.5t-58 185.5zM301 209q0 -68 13.5 -97.5t43.5 -29.5q44 0 99 62t109 180.5t96 279.5l-10 -50l89 319q2 12 2 35q0 50 -18 77t-51 27q-70 0 -159 -125.5t-151.5 -313.5t-62.5 -364zM644 1247q69 97 128 197t87 144.5t66 82.5q51 54 111 54q43 0 75 -31 q27 -27 27 -62q0 -55 -60 -112q-29 -29 -65.5 -55t-144 -94.5t-203.5 -143.5z" />
-<glyph unicode="&#xe2;" horiz-adv-x="1143" d="M-2 223q0 182 97.5 386t247 341t292.5 137q55 0 89 -32.5t41 -98.5l28 101q163 3 297 30l-269 -913q-10 -35 -10 -56q0 -46 39 -46q72 0 127 161l37 99h39l-52 -150q-40 -115 -113 -163t-157 -48q-107 0 -151 64q-28 41 -28 104q0 48 18 122q-130 -290 -343 -290 q-113 0 -171 66.5t-58 185.5zM301 209q0 -68 13.5 -97.5t43.5 -29.5q44 0 99 62t109 180.5t96 279.5l-10 -50l89 319q2 12 2 35q0 50 -18 77t-51 27q-70 0 -159 -125.5t-151.5 -313.5t-62.5 -364zM358 1278q148 64 277.5 172t211.5 229h37q28 -145 84 -238.5t160 -162.5 l-8 -29q-127 28 -214 64t-167 88q-171 -95 -371 -152z" />
-<glyph unicode="&#xe3;" horiz-adv-x="1143" d="M-2 223q0 182 97.5 386t247 341t292.5 137q55 0 89 -32.5t41 -98.5l28 101q163 3 297 30l-269 -913q-10 -35 -10 -56q0 -46 39 -46q72 0 127 161l37 99h39l-52 -150q-40 -115 -113 -163t-157 -48q-107 0 -151 64q-28 41 -28 104q0 48 18 122q-130 -290 -343 -290 q-113 0 -171 66.5t-58 185.5zM301 209q0 -68 13.5 -97.5t43.5 -29.5q44 0 99 62t109 180.5t96 279.5l-10 -50l89 319q2 12 2 35q0 50 -18 77t-51 27q-70 0 -159 -125.5t-151.5 -313.5t-62.5 -364zM396 1325q53 144 137 214.5t178 70.5q59 0 97.5 -21.5t98.5 -75t116 -53.5 q41 0 75.5 28t69.5 91l37 -10q-53 -144 -137 -214.5t-178 -70.5q-59 0 -97.5 21.5t-98.5 75t-116 53.5q-41 0 -75.5 -28t-69.5 -91z" />
-<glyph unicode="&#xe4;" horiz-adv-x="1143" d="M-2 223q0 182 97.5 386t247 341t292.5 137q55 0 89 -32.5t41 -98.5l28 101q163 3 297 30l-269 -913q-10 -35 -10 -56q0 -46 39 -46q72 0 127 161l37 99h39l-52 -150q-40 -115 -113 -163t-157 -48q-107 0 -151 64q-28 41 -28 104q0 48 18 122q-130 -290 -343 -290 q-113 0 -171 66.5t-58 185.5zM301 209q0 -68 13.5 -97.5t43.5 -29.5q44 0 99 62t109 180.5t96 279.5l-10 -50l89 319q2 12 2 35q0 50 -18 77t-51 27q-70 0 -159 -125.5t-151.5 -313.5t-62.5 -364zM419 1384q0 52 25 91.5t65.5 60t87.5 20.5q64 0 99 -37.5t35 -97.5 q0 -54 -25.5 -93t-66.5 -59t-87 -20q-65 0 -99 36.5t-34 98.5zM886 1384q0 53 24.5 92t64.5 59.5t87 20.5q64 0 98.5 -37t34.5 -98q0 -54 -25 -93t-66 -59t-87 -20q-64 0 -97.5 37t-33.5 98z" />
-<glyph unicode="&#xe5;" horiz-adv-x="1143" d="M-2 223q0 182 97.5 386t247 341t292.5 137q55 0 89 -32.5t41 -98.5l28 101q163 3 297 30l-269 -913q-10 -35 -10 -56q0 -46 39 -46q72 0 127 161l37 99h39l-52 -150q-40 -115 -113 -163t-157 -48q-107 0 -151 64q-28 41 -28 104q0 48 18 122q-130 -290 -343 -290 q-113 0 -171 66.5t-58 185.5zM301 209q0 -68 13.5 -97.5t43.5 -29.5q44 0 99 62t109 180.5t96 279.5l-10 -50l89 319q2 12 2 35q0 50 -18 77t-51 27q-70 0 -159 -125.5t-151.5 -313.5t-62.5 -364zM595 1409q0 62 33.5 113t90 80.5t124.5 29.5q56 0 102 -21.5t72.5 -61 t26.5 -91.5q0 -61 -35.5 -112.5t-94.5 -82t-126 -30.5q-84 0 -138.5 47.5t-54.5 128.5zM650 1409q0 -42 21 -72t55 -45.5t72 -15.5q49 0 93.5 24t71.5 65.5t27 90.5q0 43 -22.5 73t-58 45t-72.5 15q-49 0 -92.5 -25t-69 -67t-25.5 -88z" />
-<glyph unicode="&#xe6;" horiz-adv-x="1505" d="M-12 215q0 182 122.5 379.5t312 329t374.5 131.5q104 0 147 -71q156 103 328 103q103 0 166 -43.5t63 -125.5q0 -116 -95 -212.5t-239 -164.5t-299 -109q-12 -73 -12 -139q0 -108 40.5 -153.5t117.5 -45.5q63 0 141.5 40t153.5 128l37 -16q-75 -116 -199 -195.5 t-277 -79.5q-112 0 -193.5 48t-111.5 138q-67 -91 -155.5 -138.5t-188.5 -47.5q-117 0 -175 63.5t-58 180.5zM291 213q0 -64 26.5 -97.5t69.5 -33.5q91 0 169 108q-7 33 -7 70q0 122 45.5 254.5t128.5 250.5t191 198q-29 38 -83 38q-110 0 -237.5 -114.5t-215 -297.5 t-87.5 -376zM874 469q156 65 224 123q85 73 131.5 173t46.5 216q0 33 -13 50.5t-36 17.5q-59 0 -131 -84t-133 -218.5t-89 -277.5z" />
-<glyph unicode="&#xe7;" horiz-adv-x="948" d="M-3 -344l12 31q5 -2 25 -8t46 -10.5t54 -4.5q54 0 107 21t53 73q0 22 -16 34.5t-42 12.5q-35 0 -63 -14l139 209h60l-90 -141q60 20 110 20q55 0 89 -22.5t34 -63.5q0 -61 -49.5 -101t-126 -58.5t-160.5 -18.5q-58 0 -107.5 12.5t-74.5 28.5zM16 287q0 175 88.5 362.5 t248.5 312.5t362 125q74 0 131 -26t88 -70.5t31 -99.5q0 -56 -27 -108.5t-74 -85.5t-102 -33q-51 0 -84 32t-33 86q0 53 26 100t68.5 79t91.5 45q-35 41 -98 41q-100 0 -195 -110t-154.5 -286.5t-59.5 -363.5q0 -205 155 -205q146 0 271 180l41 -16q-74 -118 -187.5 -196.5 t-259.5 -78.5q-97 0 -171 35t-115.5 105.5t-41.5 175.5z" />
-<glyph unicode="&#xe8;" horiz-adv-x="961" d="M6 260q0 182 98.5 376t268.5 322.5t372 128.5q95 0 154 -41.5t59 -119.5q0 -117 -95 -215t-238.5 -167.5t-299.5 -110.5q-12 -74 -12 -140q0 -108 40.5 -153.5t117.5 -45.5q64 0 144.5 40.5t154.5 127.5l33 -16q-47 -73 -117.5 -135.5t-162 -101t-195.5 -38.5 q-93 0 -166 33t-114.5 98.5t-41.5 157.5zM332 471q143 63 225 137t129 169t47 204q0 38 -8 53t-25 15q-61 0 -136 -84t-139 -218t-93 -276zM390 1642q0 58 48 87q26 14 54 14q33 0 63 -17.5t49 -48.5q20 -32 31.5 -67t37.5 -143.5t71 -225.5l-25 -14q-53 65 -96.5 111.5 t-113.5 116t-97 114.5q-22 37 -22 73z" />
-<glyph unicode="&#xe9;" horiz-adv-x="961" d="M6 260q0 182 98.5 376t268.5 322.5t372 128.5q95 0 154 -41.5t59 -119.5q0 -117 -95 -215t-238.5 -167.5t-299.5 -110.5q-12 -74 -12 -140q0 -108 40.5 -153.5t117.5 -45.5q64 0 144.5 40.5t154.5 127.5l33 -16q-47 -73 -117.5 -135.5t-162 -101t-195.5 -38.5 q-93 0 -166 33t-114.5 98.5t-41.5 157.5zM332 471q143 63 225 137t129 169t47 204q0 38 -8 53t-25 15q-61 0 -136 -84t-139 -218t-93 -276zM598 1247q69 97 128 197t87 144.5t66 82.5q51 54 111 54q43 0 75 -31q27 -27 27 -62q0 -55 -60 -112q-29 -29 -65.5 -55t-144 -94.5 t-203.5 -143.5z" />
-<glyph unicode="&#xea;" horiz-adv-x="961" d="M6 260q0 182 98.5 376t268.5 322.5t372 128.5q95 0 154 -41.5t59 -119.5q0 -117 -95 -215t-238.5 -167.5t-299.5 -110.5q-12 -74 -12 -140q0 -108 40.5 -153.5t117.5 -45.5q64 0 144.5 40.5t154.5 127.5l33 -16q-47 -73 -117.5 -135.5t-162 -101t-195.5 -38.5 q-93 0 -166 33t-114.5 98.5t-41.5 157.5zM312 1278q148 64 277.5 172t211.5 229h37q28 -145 84 -238.5t160 -162.5l-8 -29q-127 28 -214 64t-167 88q-171 -95 -371 -152zM332 471q143 63 225 137t129 169t47 204q0 38 -8 53t-25 15q-61 0 -136 -84t-139 -218t-93 -276z" />
-<glyph unicode="&#xeb;" horiz-adv-x="961" d="M6 260q0 182 98.5 376t268.5 322.5t372 128.5q95 0 154 -41.5t59 -119.5q0 -117 -95 -215t-238.5 -167.5t-299.5 -110.5q-12 -74 -12 -140q0 -108 40.5 -153.5t117.5 -45.5q64 0 144.5 40.5t154.5 127.5l33 -16q-47 -73 -117.5 -135.5t-162 -101t-195.5 -38.5 q-93 0 -166 33t-114.5 98.5t-41.5 157.5zM332 471q143 63 225 137t129 169t47 204q0 38 -8 53t-25 15q-61 0 -136 -84t-139 -218t-93 -276zM373 1384q0 52 25 91.5t65.5 60t87.5 20.5q64 0 99 -37.5t35 -97.5q0 -54 -25.5 -93t-66.5 -59t-87 -20q-65 0 -99 36.5t-34 98.5z M840 1384q0 53 24.5 92t64.5 59.5t87 20.5q64 0 98.5 -37t34.5 -98q0 -54 -25 -93t-66 -59t-87 -20q-64 0 -97.5 37t-33.5 98z" />
-<glyph unicode="&#xec;" horiz-adv-x="659" d="M51 721l55 156q76 210 285 210q95 0 138 -46t43 -121q0 -56 -21 -119l-217 -627q-12 -36 -12 -59q0 -43 40 -43q32 0 64 34.5t66 126.5l36 99h39l-51 -150q-74 -211 -276 -211q-187 0 -187 168q0 69 31 158l201 588q12 38 12 60q0 42 -35 42q-39 0 -70 -37.5t-63 -124.5 l-39 -104h-39zM133 1642q0 58 48 87q26 14 54 14q33 0 63 -17.5t49 -48.5q20 -32 31.5 -67t37.5 -143.5t71 -225.5l-25 -14q-53 65 -96.5 111.5t-113.5 116t-97 114.5q-22 37 -22 73z" />
-<glyph unicode="&#xed;" horiz-adv-x="659" d="M51 721l55 156q76 210 285 210q95 0 138 -46t43 -121q0 -56 -21 -119l-217 -627q-12 -36 -12 -59q0 -43 40 -43q32 0 64 34.5t66 126.5l36 99h39l-51 -150q-74 -211 -276 -211q-187 0 -187 168q0 69 31 158l201 588q12 38 12 60q0 42 -35 42q-39 0 -70 -37.5t-63 -124.5 l-39 -104h-39zM341 1247q69 97 128 197t87 144.5t66 82.5q51 54 111 54q43 0 75 -31q27 -27 27 -62q0 -55 -60 -112q-29 -29 -65.5 -55t-144 -94.5t-203.5 -143.5z" />
-<glyph unicode="&#xee;" horiz-adv-x="659" d="M51 721l55 156q76 210 285 210q95 0 138 -46t43 -121q0 -56 -21 -119l-217 -627q-12 -36 -12 -59q0 -43 40 -43q32 0 64 34.5t66 126.5l36 99h39l-51 -150q-74 -211 -276 -211q-187 0 -187 168q0 69 31 158l201 588q12 38 12 60q0 42 -35 42q-39 0 -70 -37.5t-63 -124.5 l-39 -104h-39zM55 1278q148 64 277.5 172t211.5 229h37q28 -145 84 -238.5t160 -162.5l-8 -29q-127 28 -214 64t-167 88q-171 -95 -371 -152z" />
-<glyph unicode="&#xef;" horiz-adv-x="659" d="M51 721l55 156q76 210 285 210q95 0 138 -46t43 -121q0 -56 -21 -119l-217 -627q-12 -36 -12 -59q0 -43 40 -43q32 0 64 34.5t66 126.5l36 99h39l-51 -150q-74 -211 -276 -211q-187 0 -187 168q0 69 31 158l201 588q12 38 12 60q0 42 -35 42q-39 0 -70 -37.5t-63 -124.5 l-39 -104h-39zM116 1384q0 52 25 91.5t65.5 60t87.5 20.5q64 0 99 -37.5t35 -97.5q0 -54 -25.5 -93t-66.5 -59t-87 -20q-65 0 -99 36.5t-34 98.5zM583 1384q0 53 24.5 92t64.5 59.5t87 20.5q64 0 98.5 -37t34.5 -98q0 -54 -25 -93t-66 -59t-87 -20q-64 0 -97.5 37t-33.5 98z " />
-<glyph unicode="&#xf0;" horiz-adv-x="1081" d="M25 309q0 163 74.5 344t212.5 304.5t317 123.5q44 0 75 -11q-25 145 -91 256l-349 -155l-12 37l341 151q-82 122 -224 208l24 35q192 -64 334 -182l309 136l13 -36l-290 -128q124 -114 192.5 -264.5t68.5 -328.5q0 -196 -78 -388t-229 -316t-357 -124q-152 0 -241.5 82 t-89.5 256zM324 158q0 -83 15.5 -114.5t53.5 -31.5q85 0 160.5 134t121.5 334t46 382q0 89 -11 167q-29 11 -63 11q-92 0 -166 -140.5t-115.5 -348t-41.5 -393.5z" />
-<glyph unicode="&#xf1;" horiz-adv-x="1235" d="M33 0l248 885q12 43 12 65q0 37 -35 37q-38 0 -68 -36t-63 -126l-39 -104h-39l55 156q39 112 105 161t160 49q176 0 176 -168q0 -52 -17 -118l-64 -249q84 208 161 324.5t155.5 163.5t175.5 47q185 0 185 -164q0 -62 -27 -145l-201 -604q-12 -33 -12 -60q0 -42 39 -42 q33 0 64 34t65 127l37 99h39l-51 -150q-74 -211 -275 -211q-115 0 -164 68q-26 40 -26 95q0 62 33 163l184 553q19 59 19 88q0 47 -40 47q-61 0 -148 -124t-175 -327t-153 -428l-27 -106h-289zM388 1325q53 144 137 214.5t178 70.5q59 0 97.5 -21.5t98.5 -75t116 -53.5 q41 0 75.5 28t69.5 91l37 -10q-53 -144 -137 -214.5t-178 -70.5q-59 0 -97.5 21.5t-98.5 75t-116 53.5q-41 0 -75.5 -28t-69.5 -91z" />
-<glyph unicode="&#xf2;" horiz-adv-x="1083" d="M25 309q0 169 76.5 350.5t227 304.5t359.5 123q160 0 246 -86t86 -251q0 -169 -76.5 -350.5t-227.5 -305t-360 -123.5q-159 0 -245 86.5t-86 251.5zM299 152q0 -74 17 -107t53 -33q75 0 164 141.5t150.5 351t61.5 398.5q0 81 -16.5 112.5t-50.5 31.5q-77 0 -166.5 -145.5 t-151 -357t-61.5 -392.5zM415 1642q0 58 48 87q26 14 54 14q33 0 63 -17.5t49 -48.5q20 -32 31.5 -67t37.5 -143.5t71 -225.5l-25 -14q-53 65 -96.5 111.5t-113.5 116t-97 114.5q-22 37 -22 73z" />
-<glyph unicode="&#xf3;" horiz-adv-x="1083" d="M25 309q0 169 76.5 350.5t227 304.5t359.5 123q160 0 246 -86t86 -251q0 -169 -76.5 -350.5t-227.5 -305t-360 -123.5q-159 0 -245 86.5t-86 251.5zM299 152q0 -74 17 -107t53 -33q75 0 164 141.5t150.5 351t61.5 398.5q0 81 -16.5 112.5t-50.5 31.5q-77 0 -166.5 -145.5 t-151 -357t-61.5 -392.5zM623 1247q69 97 128 197t87 144.5t66 82.5q51 54 111 54q43 0 75 -31q27 -27 27 -62q0 -55 -60 -112q-29 -29 -65.5 -55t-144 -94.5t-203.5 -143.5z" />
-<glyph unicode="&#xf4;" horiz-adv-x="1083" d="M25 309q0 169 76.5 350.5t227 304.5t359.5 123q160 0 246 -86t86 -251q0 -169 -76.5 -350.5t-227.5 -305t-360 -123.5q-159 0 -245 86.5t-86 251.5zM299 152q0 -74 17 -107t53 -33q75 0 164 141.5t150.5 351t61.5 398.5q0 81 -16.5 112.5t-50.5 31.5q-77 0 -166.5 -145.5 t-151 -357t-61.5 -392.5zM337 1278q148 64 277.5 172t211.5 229h37q28 -145 84 -238.5t160 -162.5l-8 -29q-127 28 -214 64t-167 88q-171 -95 -371 -152z" />
-<glyph unicode="&#xf5;" horiz-adv-x="1083" d="M25 309q0 169 76.5 350.5t227 304.5t359.5 123q160 0 246 -86t86 -251q0 -169 -76.5 -350.5t-227.5 -305t-360 -123.5q-159 0 -245 86.5t-86 251.5zM299 152q0 -74 17 -107t53 -33q75 0 164 141.5t150.5 351t61.5 398.5q0 81 -16.5 112.5t-50.5 31.5q-77 0 -166.5 -145.5 t-151 -357t-61.5 -392.5zM375 1325q53 144 137 214.5t178 70.5q59 0 97.5 -21.5t98.5 -75t116 -53.5q41 0 75.5 28t69.5 91l37 -10q-53 -144 -137 -214.5t-178 -70.5q-59 0 -97.5 21.5t-98.5 75t-116 53.5q-41 0 -75.5 -28t-69.5 -91z" />
-<glyph unicode="&#xf6;" horiz-adv-x="1083" d="M25 309q0 169 76.5 350.5t227 304.5t359.5 123q160 0 246 -86t86 -251q0 -169 -76.5 -350.5t-227.5 -305t-360 -123.5q-159 0 -245 86.5t-86 251.5zM299 152q0 -74 17 -107t53 -33q75 0 164 141.5t150.5 351t61.5 398.5q0 81 -16.5 112.5t-50.5 31.5q-77 0 -166.5 -145.5 t-151 -357t-61.5 -392.5zM398 1384q0 52 25 91.5t65.5 60t87.5 20.5q64 0 99 -37.5t35 -97.5q0 -54 -25.5 -93t-66.5 -59t-87 -20q-65 0 -99 36.5t-34 98.5zM865 1384q0 53 24.5 92t64.5 59.5t87 20.5q64 0 98.5 -37t34.5 -98q0 -54 -25 -93t-66 -59t-87 -20q-64 0 -97.5 37 t-33.5 98z" />
-<glyph unicode="&#xf7;" horiz-adv-x="1303" d="M159 696l18 62h1026l-18 -62h-1026zM513 401q0 13 5 31q14 47 57 80t89 33q39 0 62.5 -22.5t23.5 -58.5q0 -14 -5 -32q-14 -48 -56.5 -81.5t-90.5 -33.5q-38 0 -61.5 24t-23.5 60zM683 990q0 14 5 32q14 46 57 79.5t89 33.5q38 0 62 -23t24 -58q0 -14 -5 -32 q-13 -48 -56 -80.5t-91 -32.5q-38 0 -61.5 22.5t-23.5 58.5z" />
-<glyph unicode="&#xf8;" horiz-adv-x="1083" d="M25 309q0 169 76.5 350.5t227 304.5t359.5 123q95 0 165 -31l120 171l31 -19l-118 -169q134 -83 134 -289q0 -169 -76.5 -350.5t-227.5 -305t-360 -123.5q-96 0 -166 32l-124 -173l-31 20l122 171q-132 83 -132 288zM299 128q3 -61 20 -88.5t50 -27.5q72 0 157.5 131.5 t148 330.5t69.5 385zM300 202l445 726q-3 66 -19 92.5t-48 26.5q-73 0 -158.5 -133.5t-148 -332.5t-71.5 -379z" />
-<glyph unicode="&#xf9;" horiz-adv-x="1223" d="M49 727l51 150q73 210 275 210q187 0 187 -169q0 -63 -30 -156l-184 -553q-18 -55 -18 -87q0 -48 39 -48q60 0 143.5 119t168.5 316.5t151 424.5l32 125q181 3 297 28l-256 -913q-13 -47 -13 -68q0 -34 36 -34q38 0 69 36.5t62 124.5l39 105h39l-56 -156 q-38 -113 -110.5 -162t-163.5 -49q-54 0 -93.5 18.5t-58.5 51.5q-19 35 -19 84q0 51 21 133l54 209q-79 -193 -152.5 -301t-149.5 -151.5t-169 -43.5q-92 0 -138.5 43.5t-46.5 124.5q0 61 27 142l199 604q12 38 12 59q0 43 -39 43q-33 0 -64 -34.5t-65 -127.5l-37 -98h-39z M398 1642q0 58 48 87q26 14 54 14q33 0 63 -17.5t49 -48.5q20 -32 31.5 -67t37.5 -143.5t71 -225.5l-25 -14q-53 65 -96.5 111.5t-113.5 116t-97 114.5q-22 37 -22 73z" />
-<glyph unicode="&#xfa;" horiz-adv-x="1223" d="M49 727l51 150q73 210 275 210q187 0 187 -169q0 -63 -30 -156l-184 -553q-18 -55 -18 -87q0 -48 39 -48q60 0 143.5 119t168.5 316.5t151 424.5l32 125q181 3 297 28l-256 -913q-13 -47 -13 -68q0 -34 36 -34q38 0 69 36.5t62 124.5l39 105h39l-56 -156 q-38 -113 -110.5 -162t-163.5 -49q-54 0 -93.5 18.5t-58.5 51.5q-19 35 -19 84q0 51 21 133l54 209q-79 -193 -152.5 -301t-149.5 -151.5t-169 -43.5q-92 0 -138.5 43.5t-46.5 124.5q0 61 27 142l199 604q12 38 12 59q0 43 -39 43q-33 0 -64 -34.5t-65 -127.5l-37 -98h-39z M606 1247q69 97 128 197t87 144.5t66 82.5q51 54 111 54q43 0 75 -31q27 -27 27 -62q0 -55 -60 -112q-29 -29 -65.5 -55t-144 -94.5t-203.5 -143.5z" />
-<glyph unicode="&#xfb;" horiz-adv-x="1223" d="M49 727l51 150q73 210 275 210q187 0 187 -169q0 -63 -30 -156l-184 -553q-18 -55 -18 -87q0 -48 39 -48q60 0 143.5 119t168.5 316.5t151 424.5l32 125q181 3 297 28l-256 -913q-13 -47 -13 -68q0 -34 36 -34q38 0 69 36.5t62 124.5l39 105h39l-56 -156 q-38 -113 -110.5 -162t-163.5 -49q-54 0 -93.5 18.5t-58.5 51.5q-19 35 -19 84q0 51 21 133l54 209q-79 -193 -152.5 -301t-149.5 -151.5t-169 -43.5q-92 0 -138.5 43.5t-46.5 124.5q0 61 27 142l199 604q12 38 12 59q0 43 -39 43q-33 0 -64 -34.5t-65 -127.5l-37 -98h-39z M320 1278q148 64 277.5 172t211.5 229h37q28 -145 84 -238.5t160 -162.5l-8 -29q-127 28 -214 64t-167 88q-171 -95 -371 -152z" />
-<glyph unicode="&#xfc;" horiz-adv-x="1223" d="M49 727l51 150q73 210 275 210q187 0 187 -169q0 -63 -30 -156l-184 -553q-18 -55 -18 -87q0 -48 39 -48q60 0 143.5 119t168.5 316.5t151 424.5l32 125q181 3 297 28l-256 -913q-13 -47 -13 -68q0 -34 36 -34q38 0 69 36.5t62 124.5l39 105h39l-56 -156 q-38 -113 -110.5 -162t-163.5 -49q-54 0 -93.5 18.5t-58.5 51.5q-19 35 -19 84q0 51 21 133l54 209q-79 -193 -152.5 -301t-149.5 -151.5t-169 -43.5q-92 0 -138.5 43.5t-46.5 124.5q0 61 27 142l199 604q12 38 12 59q0 43 -39 43q-33 0 -64 -34.5t-65 -127.5l-37 -98h-39z M381 1384q0 52 25 91.5t65.5 60t87.5 20.5q64 0 99 -37.5t35 -97.5q0 -54 -25.5 -93t-66.5 -59t-87 -20q-65 0 -99 36.5t-34 98.5zM848 1384q0 53 24.5 92t64.5 59.5t87 20.5q64 0 98.5 -37t34.5 -98q0 -54 -25 -93t-66 -59t-87 -20q-64 0 -97.5 37t-33.5 98z" />
-<glyph unicode="&#xfd;" horiz-adv-x="987" d="M-221 -270q0 54 39.5 90.5t101.5 36.5q121 0 219 -142q143 70 267 189l-160 979q-12 56 -22.5 76t-30.5 20q-23 0 -44 -30.5t-53 -121.5l-37 -100h-39l52 150q40 116 103 163t149 47q87 0 136 -48.5t68 -172.5l96 -701q87 127 152.5 261t97.5 258q-83 46 -137 115 t-51 149q0 64 37 101.5t100 37.5q135 0 135 -186q0 -123 -56 -283t-148.5 -321t-198.5 -289q-104 -125 -229.5 -221t-259.5 -141q-81 -31 -146 -31q-66 0 -103.5 30.5t-37.5 84.5zM530 1247q69 97 128 197t87 144.5t66 82.5q51 54 111 54q43 0 75 -31q27 -27 27 -62 q0 -55 -60 -112q-29 -29 -65.5 -55t-144 -94.5t-203.5 -143.5z" />
-<glyph unicode="&#xfe;" horiz-adv-x="1196" d="M-184 -371l12 43q50 0 79.5 11.5t48 39t32.5 76.5l372 1331q-57 -127 -132.5 -228t-182.5 -212l-22 27q93 99 151.5 171.5t119.5 179t121 258.5l68 245q168 12 305 57l-232 -818q71 145 150 211t175 66q124 0 189 -80.5t65 -234.5q0 -167 -75.5 -355t-215.5 -317 t-322 -129q-57 0 -106 18.5t-78 50.5l-55 -194q-13 -47 -13 -74q0 -56 41 -77t129 -23l-12 -43q-29 1 -128 5t-196 4q-84 0 -175 -4t-113 -5zM349 78q34 -47 91 -47q98 0 190 124t149 307.5t57 346.5q0 95 -17.5 132.5t-50.5 37.5q-39 0 -85 -44.5t-92.5 -123t-83.5 -176.5z " />
-<glyph unicode="&#xff;" horiz-adv-x="987" d="M-221 -270q0 54 39.5 90.5t101.5 36.5q121 0 219 -142q143 70 267 189l-160 979q-12 56 -22.5 76t-30.5 20q-23 0 -44 -30.5t-53 -121.5l-37 -100h-39l52 150q40 116 103 163t149 47q87 0 136 -48.5t68 -172.5l96 -701q87 127 152.5 261t97.5 258q-83 46 -137 115 t-51 149q0 64 37 101.5t100 37.5q135 0 135 -186q0 -123 -56 -283t-148.5 -321t-198.5 -289q-104 -125 -229.5 -221t-259.5 -141q-81 -31 -146 -31q-66 0 -103.5 30.5t-37.5 84.5zM305 1384q0 52 25 91.5t65.5 60t87.5 20.5q64 0 99 -37.5t35 -97.5q0 -54 -25.5 -93 t-66.5 -59t-87 -20q-65 0 -99 36.5t-34 98.5zM772 1384q0 53 24.5 92t64.5 59.5t87 20.5q64 0 98.5 -37t34.5 -98q0 -54 -25 -93t-66 -59t-87 -20q-64 0 -97.5 37t-33.5 98z" />
-<glyph unicode="&#x152;" horiz-adv-x="2036" d="M88 463q0 232 116.5 469t325 392t469.5 155q100 0 191 -33q91 -2 297 -2h239q283 0 408 6q-48 -123 -78 -242q-22 -69 -26 -127h-45q15 84 15 144q0 97 -43 137.5t-138 40.5h-121q-71 0 -106.5 -12t-57 -46.5t-41.5 -111.5l-128 -483h151q57 0 95.5 30.5t62 76 t52.5 122.5h46q-28 -85 -70 -250q-31 -113 -53 -250h-45q0 20 5 63t5 63q0 46 -23 73t-84 31h-153l-131 -492q-18 -70 -18 -100q0 -29 13.5 -44t41.5 -20.5t79 -5.5h142q99 0 162 34t109.5 111t94.5 218h45q-13 -29 -25.5 -79.5t-17.5 -68.5q-39 -143 -53 -262 q-137 6 -455 6q-327 0 -499 -2q-112 -33 -215 -33q-168 0 -289.5 58t-185.5 168.5t-64 265.5zM440 436q0 -133 27 -229.5t77.5 -147.5t119.5 -51q91 0 143 32t74 114l286 1079q14 54 14 90q0 68 -43 93.5t-132 25.5q-147 0 -278 -147t-209.5 -380.5t-78.5 -478.5z" />
-<glyph unicode="&#x153;" d="M12 309q0 161 94.5 342t262.5 304.5t376 123.5q89 0 140 -43.5t54 -121.5q193 173 419 173q103 0 166 -43.5t63 -125.5q0 -116 -95 -212.5t-239 -164.5t-299 -109q-12 -73 -12 -139q0 -108 40.5 -153.5t117.5 -45.5q64 0 142 40t153 128l37 -16q-75 -116 -199 -195.5 t-277 -79.5q-117 0 -200.5 52.5t-109.5 150.5q-59 -95 -140 -149t-180 -54q-148 0 -231 87t-83 251zM311 260q0 -182 119 -182q51 0 106.5 38t100.5 106q-2 19 -2 38q0 156 72.5 324.5t195.5 293.5q-2 56 -32 88.5t-85 32.5q-116 0 -226.5 -109.5t-179.5 -282t-69 -347.5z M960 469q155 64 238 139q77 71 120.5 168.5t43.5 204.5q0 33 -13 50.5t-36 17.5q-59 0 -131 -84t-133.5 -219t-88.5 -277z" />
-<glyph unicode="&#x178;" horiz-adv-x="1503" d="M170 1102l51 158q38 116 111 167.5t178 51.5q134 0 210 -83.5t114 -235.5t67 -412q135 382 336 604q116 127 242 127q60 0 103 -23.5t65 -64t22 -89.5q0 -51 -24 -93t-66.5 -66.5t-95.5 -24.5q-68 0 -105 34t-37 91q1 67 44.5 117.5t111.5 71.5q-11 8 -35 8 q-60 0 -123 -47q-57 -41 -129.5 -136.5t-149 -243t-141.5 -335.5l-116 -461q-13 -55 -13 -83q0 -37 16.5 -56t49.5 -26.5t92 -10.5l-10 -41q-117 6 -352 6q-222 0 -330 -6l10 41q75 3 112 16t58.5 48.5t40.5 111.5l111 442q-32 279 -89.5 473.5t-146.5 194.5 q-36 0 -57.5 -25t-36.5 -71l-43 -129h-45zM601 1704q0 53 24.5 92.5t64.5 60.5t87 21q64 0 98.5 -37.5t34.5 -99.5q0 -54 -25 -93t-66 -59t-87 -20q-65 0 -98 36.5t-33 98.5zM1091 1704q0 53 24.5 92.5t64.5 60.5t87 21q64 0 98.5 -37.5t34.5 -99.5q0 -54 -25 -93t-65.5 -59 t-85.5 -20q-66 0 -99.5 36.5t-33.5 98.5z" />
-<glyph unicode="&#x2c6;" horiz-adv-x="823" d="M72 1278q148 64 277.5 172t211.5 229h37q28 -145 84 -238.5t160 -162.5l-8 -29q-127 28 -214 64t-167 88q-171 -95 -371 -152z" />
-<glyph unicode="&#x2dc;" horiz-adv-x="842" d="M170 1325q53 144 137 214.5t178 70.5q59 0 97.5 -21.5t98.5 -75t116 -53.5q41 0 75.5 28t69.5 91l37 -10q-53 -144 -137 -214.5t-178 -70.5q-59 0 -97.5 21.5t-98.5 75t-116 53.5q-41 0 -75.5 -28t-69.5 -91z" />
-<glyph unicode="&#x2000;" horiz-adv-x="979" />
-<glyph unicode="&#x2001;" horiz-adv-x="1958" />
-<glyph unicode="&#x2002;" horiz-adv-x="979" />
-<glyph unicode="&#x2003;" horiz-adv-x="1958" />
-<glyph unicode="&#x2004;" horiz-adv-x="652" />
-<glyph unicode="&#x2005;" horiz-adv-x="489" />
-<glyph unicode="&#x2006;" horiz-adv-x="326" />
-<glyph unicode="&#x2007;" horiz-adv-x="326" />
-<glyph unicode="&#x2008;" horiz-adv-x="244" />
-<glyph unicode="&#x2009;" horiz-adv-x="391" />
-<glyph unicode="&#x200a;" horiz-adv-x="108" />
-<glyph unicode="&#x2010;" horiz-adv-x="1036" d="M109 457l45 170h739l-45 -170h-739z" />
-<glyph unicode="&#x2011;" horiz-adv-x="1036" d="M109 457l45 170h739l-45 -170h-739z" />
-<glyph unicode="&#x2012;" horiz-adv-x="1036" d="M109 457l45 170h739l-45 -170h-739z" />
-<glyph unicode="&#x2013;" horiz-adv-x="1413" d="M98 449l60 202h1126l-61 -202h-1125z" />
-<glyph unicode="&#x2014;" horiz-adv-x="1999" d="M96 449l60 202h1710l-62 -202h-1708z" />
-<glyph unicode="&#x2018;" horiz-adv-x="561" d="M248 1078q0 129 81.5 241.5t223.5 176.5l10 -33q-93 -47 -154 -120t-67 -157q57 60 127 60q62 0 94.5 -28.5t32.5 -82.5q0 -55 -29 -102t-78 -75t-106 -28q-66 0 -100.5 37.5t-34.5 110.5z" />
-<glyph unicode="&#x2019;" horiz-adv-x="551" d="M281 1303q0 55 29 102t78 75t106 28q66 0 100.5 -37.5t34.5 -110.5q0 -129 -81.5 -241.5t-223.5 -176.5l-10 33q93 47 154 120t67 157q-57 -60 -127 -60q-62 0 -94.5 28.5t-32.5 82.5z" />
-<glyph unicode="&#x201a;" horiz-adv-x="588" d="M-6 82q0 55 29 102t78 75t106 28q66 0 100.5 -37.5t34.5 -110.5q0 -129 -81.5 -241.5t-223.5 -176.5l-10 33q93 47 154 120t67 157q-57 -60 -127 -60q-62 0 -94.5 28.5t-32.5 82.5z" />
-<glyph unicode="&#x201c;" horiz-adv-x="961" d="M249 1080q0 86 37 166t106 145t162 107l10 -33q-94 -47 -154.5 -120t-66.5 -157q57 60 127 60q58 0 88.5 -28.5t30.5 -82.5q0 -55 -27.5 -102t-75 -75t-102.5 -28q-135 0 -135 148zM652 1080q0 85 37 165.5t106 145.5t162 107l11 -33q-94 -47 -156 -120t-68 -157 q60 60 129 60q57 0 88 -28.5t31 -82.5q0 -55 -27.5 -102t-75 -75t-102.5 -28q-135 0 -135 148z" />
-<glyph unicode="&#x201d;" horiz-adv-x="948" d="M286 1309q0 55 27.5 102t75 75t102.5 28q135 0 135 -148q0 -85 -37 -165.5t-106 -145.5t-162 -107l-11 33q94 47 156 120t68 157q-60 -60 -129 -60q-57 0 -88 28.5t-31 82.5zM689 1309q0 55 27.5 102t75 75t102.5 28q135 0 135 -148q0 -86 -37 -166t-106 -145t-162 -107 l-10 33q94 47 154.5 120t66.5 157q-57 -60 -127 -60q-58 0 -88.5 28.5t-30.5 82.5z" />
-<glyph unicode="&#x201e;" horiz-adv-x="983" d="M-6 82q0 55 27.5 102t75 75t102.5 28q135 0 135 -148q0 -85 -37 -165.5t-106 -145.5t-162 -107l-11 33q94 47 156 120t68 157q-60 -60 -129 -60q-57 0 -88 28.5t-31 82.5zM397 82q0 55 27.5 102t75 75t102.5 28q135 0 135 -148q0 -86 -37 -166t-106 -145t-162 -107 l-10 33q94 47 154.5 120t66.5 157q-57 -60 -127 -60q-58 0 -88.5 28.5t-30.5 82.5z" />
-<glyph unicode="&#x2022;" horiz-adv-x="883" d="M124 480q0 86 44.5 160.5t119 118.5t158.5 44q74 0 135 -34.5t95.5 -94t34.5 -132.5q0 -10 -2 -32q-8 -80 -54 -146.5t-117 -105.5t-151 -39q-75 0 -135 34.5t-94 94t-34 132.5z" />
-<glyph unicode="&#x2026;" horiz-adv-x="1720" d="M-2 95q0 54 26.5 98t72.5 69t100 25q64 0 100.5 -32.5t36.5 -89.5q0 -50 -26.5 -95t-72.5 -72t-100 -27q-65 0 -101 33t-36 91zM573 95q0 54 26.5 98t72.5 69t100 25q64 0 100.5 -32.5t36.5 -89.5q0 -50 -26.5 -95t-72.5 -72t-100 -27q-65 0 -101 33t-36 91zM1147 95 q0 54 26.5 98t72.5 69t100 25q64 0 100.5 -32.5t36.5 -89.5q0 -50 -26.5 -95t-72.5 -72t-100 -27q-65 0 -101 33t-36 91z" />
-<glyph unicode="&#x202f;" horiz-adv-x="391" />
-<glyph unicode="&#x2039;" horiz-adv-x="786" d="M39 506l6 24q176 111 338.5 248t333.5 309h37q-40 -87 -112 -200t-152.5 -214t-143.5 -155q41 -50 82 -147t70.5 -206.5t36.5 -193.5h-37q-107 166 -217 298t-242 237z" />
-<glyph unicode="&#x203a;" horiz-adv-x="784" d="M-6 -29q41 88 113 201.5t151.5 214t142.5 152.5q-41 50 -82 147.5t-70 207.5t-36 193h37q109 -170 218.5 -301t242.5 -235l-6 -25q-179 -111 -341 -246.5t-333 -308.5h-37z" />
-<glyph unicode="&#x205f;" horiz-adv-x="489" />
-<glyph unicode="&#x20ac;" horiz-adv-x="1339" d="M74 608l12 41h169q20 82 52 164h-178l12 41h183q72 169 185.5 310.5t264 228t322.5 86.5q131 0 215 -70q40 -35 62 -82.5t22 -97.5q0 -54 -24 -97.5t-64 -68.5t-86 -25q-57 0 -92 35.5t-35 91.5q0 71 50.5 126.5t123.5 84.5q-10 22 -48 39t-81 17q-94 0 -185.5 -78 t-169 -209t-133.5 -291h359l-35 -41h-338q-27 -82 -46 -164h249l-37 -41h-221q-31 -151 -31 -280q0 -161 45 -236.5t145 -75.5q43 0 88.5 13t69.5 34q-35 20 -57.5 56.5t-22.5 81.5q0 55 25 100.5t67 71.5t90 26q61 0 93 -35.5t32 -95.5q0 -70 -49.5 -130.5t-126.5 -102.5 q-114 -64 -264 -64q-223 0 -341 115t-118 348q0 81 19 174h-172z" />
-<glyph unicode="&#x2122;" horiz-adv-x="2374" d="M328 1450q114 -6 397 -6q279 0 395 6q-14 -106 -14 -193q0 -65 6 -106h-47q-18 133 -59.5 192.5t-96.5 59.5h-73v-612q0 -60 10.5 -86t39 -36t95.5 -14v-41q-119 7 -256 7q-162 0 -258 -7v41q66 4 95 14t39.5 36.5t10.5 85.5v612h-73q-56 0 -98 -59.5t-58 -192.5h-47 q6 38 6 106q0 87 -14 193zM1212 614v41q49 4 69.5 12t28 30t7.5 73v524q0 51 -7.5 73.5t-28 30.5t-69.5 11v41q68 -6 203 -6q71 0 139 6l209 -514l193 508h133q123 0 195 6v-41q-49 -3 -69.5 -11t-28 -30.5t-7.5 -73.5v-524q0 -51 7.5 -73t28 -30t69.5 -12v-41 q-101 7 -216 7q-121 0 -196 -7v41q38 4 54.5 12t23 30.5t6.5 72.5v545l-268 -711h-33l-291 715v-549q0 -50 6.5 -72.5t23 -30.5t54.5 -12v-41q-51 7 -107 7q-75 0 -129 -7z" />
-<glyph unicode="&#x25fc;" horiz-adv-x="1085" d="M0 0v1085h1085v-1085h-1085z" />
-<glyph unicode="&#xfb03;" horiz-adv-x="1872" d="M-76 -385l373 1372l8 29h-199l13 41h199q81 245 219 350q146 113 346 113q162 0 264 -85q27 24 58 44q101 66 219.5 94.5t266.5 28.5q143 0 207 -57q41 -33 41 -87q0 -55 -28.5 -98t-76.5 -67.5t-106 -24.5q-71 0 -110.5 32t-39.5 89q0 71 37.5 117t101.5 63h-26 q-149 0 -246 -64q-70 -45 -113.5 -128t-83.5 -228l-25 -92h298q171 3 297 30l-269 -913q-11 -39 -11 -60q0 -42 38 -42q70 0 129 161l39 99h39l-53 -150q-40 -113 -118.5 -162t-164.5 -49q-90 0 -133.5 45t-43.5 127q0 65 28 154l211 719h-297l-375 -1372q-166 -3 -297 -29 l386 1401h-332l-373 -1372q-166 -3 -297 -29zM605 1057h332q66 236 184 354q-69 55 -171 55q-94 0 -159 -47q-57 -40 -98 -116t-77 -207z" />
-<glyph unicode="&#xfb04;" horiz-adv-x="1894" d="M-76 -385l373 1372l8 29h-199l13 41h199q81 245 219 350q146 113 346 113q165 0 267 -88q148 112 371 112h4q141 1 254 22t221 62l-430 -1454q-9 -31 -9 -52q0 -50 42 -50q66 0 124 161l37 99h39l-51 -150q-41 -116 -114 -163.5t-160 -47.5q-92 0 -138 48t-46 135 q0 63 24 143l321 1069q10 33 10 59q0 41 -30.5 60t-103.5 20q-72 0 -125 -37q-41 -27 -67.5 -83.5t-53.5 -159.5l-45 -168h194l-12 -41h-194l-371 -1372q-164 -3 -295 -29l380 1401h-332l-373 -1372q-166 -3 -297 -29zM605 1057h332q35 125 79 210.5t107 142.5 q-69 56 -173 56t-168 -53q-54 -40 -92.5 -115t-73.5 -202z" />
-<hkern u1="&#x22;" u2="&#xef;" k="-39" />
-<hkern u1="&#x27;" u2="&#xef;" k="-39" />
-<hkern u1="&#x29;" u2="&#x7d;" k="45" />
-<hkern u1="&#x29;" u2="]" k="29" />
-<hkern u1="&#x29;" u2="&#x29;" k="106" />
-<hkern u1="&#x2c;" u2="&#xff;" k="43" />
-<hkern u1="&#x2c;" u2="&#xfd;" k="43" />
-<hkern u1="&#x2c;" u2="y" k="43" />
-<hkern u1="&#x30;" u2="&#xb0;" k="106" />
-<hkern u1="&#x30;" u2="&#x7d;" k="51" />
-<hkern u1="&#x30;" u2="]" k="43" />
-<hkern u1="&#x30;" u2="\" k="129" />
-<hkern u1="&#x30;" u2="&#x33;" k="27" />
-<hkern u1="&#x30;" u2="&#x29;" k="111" />
-<hkern u1="&#x31;" u2="&#x7d;" k="35" />
-<hkern u1="&#x31;" u2="]" k="35" />
-<hkern u1="&#x31;" u2="\" k="57" />
-<hkern u1="&#x31;" u2="&#x35;" k="29" />
-<hkern u1="&#x31;" u2="&#x33;" k="10" />
-<hkern u1="&#x31;" u2="&#x29;" k="88" />
-<hkern u1="&#x32;" u2="&#xb7;" k="12" />
-<hkern u1="&#x32;" u2="&#xb0;" k="92" />
-<hkern u1="&#x32;" u2="&#xa4;" k="8" />
-<hkern u1="&#x32;" u2="&#x7d;" k="35" />
-<hkern u1="&#x32;" u2="]" k="41" />
-<hkern u1="&#x32;" u2="\" k="133" />
-<hkern u1="&#x32;" u2="&#x35;" k="43" />
-<hkern u1="&#x32;" u2="&#x33;" k="37" />
-<hkern u1="&#x32;" u2="&#x29;" k="90" />
-<hkern u1="&#x33;" u2="&#xf7;" k="16" />
-<hkern u1="&#x33;" u2="&#xb7;" k="25" />
-<hkern u1="&#x33;" u2="&#xb0;" k="100" />
-<hkern u1="&#x33;" u2="&#x7d;" k="33" />
-<hkern u1="&#x33;" u2="]" k="37" />
-<hkern u1="&#x33;" u2="\" k="127" />
-<hkern u1="&#x33;" u2="&#x35;" k="37" />
-<hkern u1="&#x33;" u2="&#x33;" k="29" />
-<hkern u1="&#x33;" u2="&#x29;" k="82" />
-<hkern u1="&#x34;" u2="&#x20ac;" k="33" />
-<hkern u1="&#x34;" u2="&#xf7;" k="63" />
-<hkern u1="&#x34;" u2="&#xd7;" k="53" />
-<hkern u1="&#x34;" u2="&#xb7;" k="59" />
-<hkern u1="&#x34;" u2="&#xb0;" k="86" />
-<hkern u1="&#x34;" u2="&#xa4;" k="49" />
-<hkern u1="&#x34;" u2="&#x7d;" k="23" />
-<hkern u1="&#x34;" u2="]" k="29" />
-<hkern u1="&#x34;" u2="\" k="145" />
-<hkern u1="&#x34;" u2="&#x3d;" k="43" />
-<hkern u1="&#x34;" u2="&#x39;" k="37" />
-<hkern u1="&#x34;" u2="&#x37;" k="45" />
-<hkern u1="&#x34;" u2="&#x35;" k="59" />
-<hkern u1="&#x34;" u2="&#x33;" k="63" />
-<hkern u1="&#x34;" u2="&#x31;" k="31" />
-<hkern u1="&#x34;" u2="&#x2b;" k="47" />
-<hkern u1="&#x34;" u2="&#x29;" k="63" />
-<hkern u1="&#x34;" u2="&#x23;" k="33" />
-<hkern u1="&#x34;" u2="&#x20;" k="37" />
-<hkern u1="&#x35;" u2="&#xf7;" k="61" />
-<hkern u1="&#x35;" u2="&#xb7;" k="31" />
-<hkern u1="&#x35;" u2="&#xb0;" k="49" />
-<hkern u1="&#x35;" u2="&#xa4;" k="8" />
-<hkern u1="&#x35;" u2="&#x7d;" k="23" />
-<hkern u1="&#x35;" u2="]" k="29" />
-<hkern u1="&#x35;" u2="\" k="88" />
-<hkern u1="&#x35;" u2="&#x3d;" k="14" />
-<hkern u1="&#x35;" u2="&#x37;" k="14" />
-<hkern u1="&#x35;" u2="&#x35;" k="39" />
-<hkern u1="&#x35;" u2="&#x33;" k="53" />
-<hkern u1="&#x35;" u2="&#x29;" k="74" />
-<hkern u1="&#x36;" u2="&#xb0;" k="20" />
-<hkern u1="&#x36;" u2="&#x7d;" k="27" />
-<hkern u1="&#x36;" u2="\" k="31" />
-<hkern u1="&#x36;" u2="&#x33;" k="8" />
-<hkern u1="&#x36;" u2="&#x29;" k="76" />
-<hkern u1="&#x37;" u2="&#xb7;" k="37" />
-<hkern u1="&#x37;" u2="&#x35;" k="12" />
-<hkern u1="&#x37;" u2="&#x34;" k="78" />
-<hkern u1="&#x37;" u2="&#x2f;" k="39" />
-<hkern u1="&#x37;" u2="&#x29;" k="68" />
-<hkern u1="&#x37;" u2="&#x20;" k="23" />
-<hkern u1="&#x38;" u2="&#xf7;" k="27" />
-<hkern u1="&#x38;" u2="&#x7d;" k="23" />
-<hkern u1="&#x38;" u2="]" k="25" />
-<hkern u1="&#x38;" u2="&#x33;" k="10" />
-<hkern u1="&#x38;" u2="&#x2b;" k="27" />
-<hkern u1="&#x38;" u2="&#x29;" k="78" />
-<hkern u1="&#x39;" u2="&#xb0;" k="119" />
-<hkern u1="&#x39;" u2="&#x7d;" k="49" />
-<hkern u1="&#x39;" u2="]" k="37" />
-<hkern u1="&#x39;" u2="\" k="129" />
-<hkern u1="&#x39;" u2="&#x33;" k="23" />
-<hkern u1="&#x39;" u2="&#x29;" k="104" />
-<hkern u1="&#x3d;" u2="&#x35;" k="8" />
-<hkern u1="&#x3d;" u2="&#x34;" k="55" />
-<hkern u1="&#x3d;" u2="&#x33;" k="8" />
-<hkern u1="H" u2="&#xf0;" k="-2" />
-<hkern u1="H" u2="&#xef;" k="-8" />
-<hkern u1="H" u2="v" k="10" />
-<hkern u1="H" u2="b" k="8" />
-<hkern u1="I" u2="&#xf0;" k="-2" />
-<hkern u1="I" u2="&#xef;" k="-8" />
-<hkern u1="I" u2="v" k="10" />
-<hkern u1="I" u2="b" k="8" />
-<hkern u1="M" u2="&#xf0;" k="-2" />
-<hkern u1="M" u2="&#xef;" k="-8" />
-<hkern u1="M" u2="v" k="10" />
-<hkern u1="M" u2="b" k="8" />
-<hkern u1="V" u2="&#xf0;" k="86" />
-<hkern u1="V" u2="&#xed;" k="39" />
-<hkern u1="W" u2="&#xf0;" k="86" />
-<hkern u1="W" u2="&#xed;" k="39" />
-<hkern u1="[" u2="&#x7b;" k="8" />
-<hkern u1="[" u2="&#x38;" k="8" />
-<hkern u1="[" u2="&#x37;" k="8" />
-<hkern u1="[" u2="&#x36;" k="12" />
-<hkern u1="[" u2="&#x32;" k="8" />
-<hkern u1="[" u2="&#x31;" k="10" />
-<hkern u1="[" u2="&#x30;" k="16" />
-<hkern u1="[" u2="&#x28;" k="12" />
-<hkern u1="&#x7b;" u2="&#xec;" k="-14" />
-<hkern u1="&#x7b;" u2="&#x7b;" k="12" />
-<hkern u1="&#x7b;" u2="&#x38;" k="10" />
-<hkern u1="&#x7b;" u2="&#x37;" k="8" />
-<hkern u1="&#x7b;" u2="&#x36;" k="18" />
-<hkern u1="&#x7b;" u2="&#x32;" k="8" />
-<hkern u1="&#x7b;" u2="&#x31;" k="10" />
-<hkern u1="&#x7b;" u2="&#x30;" k="18" />
-<hkern u1="&#x7b;" u2="&#x28;" k="16" />
-<hkern u1="&#x7d;" u2="&#x7d;" k="39" />
-<hkern u1="&#x7d;" u2="]" k="23" />
-<hkern u1="&#x7d;" u2="&#x29;" k="57" />
-<hkern u1="&#xa3;" u2="&#x35;" k="23" />
-<hkern u1="&#xa3;" u2="&#x33;" k="49" />
-<hkern u1="&#xa4;" u2="&#x35;" k="16" />
-<hkern u1="&#xa4;" u2="&#x33;" k="51" />
-<hkern u1="&#xb0;" u2="&#x39;" k="66" />
-<hkern u1="&#xb0;" u2="&#x36;" k="61" />
-<hkern u1="&#xb0;" u2="&#x35;" k="35" />
-<hkern u1="&#xb0;" u2="&#x34;" k="143" />
-<hkern u1="&#xb0;" u2="&#x33;" k="41" />
-<hkern u1="&#xb0;" u2="&#x32;" k="14" />
-<hkern u1="&#xb0;" u2="&#x30;" k="37" />
-<hkern u1="&#xb2;" u2="&#xb3;" k="43" />
-<hkern u1="&#xb3;" u2="&#xb3;" k="20" />
-<hkern u1="&#xb7;" u2="&#x37;" k="14" />
-<hkern u1="&#xb7;" u2="&#x35;" k="27" />
-<hkern u1="&#xb7;" u2="&#x34;" k="43" />
-<hkern u1="&#xb7;" u2="&#x33;" k="53" />
-<hkern u1="&#xb7;" u2="&#x32;" k="29" />
-<hkern u1="&#xb7;" u2="&#x31;" k="29" />
-<hkern u1="&#xcc;" u2="&#xf0;" k="-2" />
-<hkern u1="&#xcc;" u2="&#xef;" k="-8" />
-<hkern u1="&#xcc;" u2="v" k="10" />
-<hkern u1="&#xcc;" u2="b" k="8" />
-<hkern u1="&#xcd;" u2="&#xf0;" k="-2" />
-<hkern u1="&#xcd;" u2="&#xef;" k="-8" />
-<hkern u1="&#xcd;" u2="v" k="10" />
-<hkern u1="&#xcd;" u2="b" k="8" />
-<hkern u1="&#xce;" u2="&#xf0;" k="-2" />
-<hkern u1="&#xce;" u2="&#xef;" k="-8" />
-<hkern u1="&#xce;" u2="&#x7c;" k="-29" />
-<hkern u1="&#xce;" u2="v" k="10" />
-<hkern u1="&#xce;" u2="b" k="8" />
-<hkern u1="&#xcf;" u2="&#xf0;" k="-2" />
-<hkern u1="&#xcf;" u2="&#xef;" k="-8" />
-<hkern u1="&#xcf;" u2="&#x7c;" k="-55" />
-<hkern u1="&#xcf;" u2="v" k="10" />
-<hkern u1="&#xcf;" u2="b" k="8" />
-<hkern u1="&#xcf;" u2="&#x29;" k="-16" />
-<hkern u1="&#xd7;" u2="&#x35;" k="37" />
-<hkern u1="&#xd7;" u2="&#x34;" k="31" />
-<hkern u1="&#xd7;" u2="&#x33;" k="39" />
-<hkern u1="&#xe9;" u2="&#x29;" k="63" />
-<hkern u1="&#xeb;" u2="&#x2122;" k="12" />
-<hkern u1="&#xeb;" u2="\" k="20" />
-<hkern u1="&#xef;" u2="&#xae;" k="14" />
-<hkern u1="&#xef;" u2="\" k="8" />
-<hkern u1="&#xf7;" u2="&#x35;" k="35" />
-<hkern u1="&#xf7;" u2="&#x34;" k="92" />
-<hkern u1="&#xf7;" u2="&#x33;" k="27" />
-<hkern u1="&#x2019;" u2="&#xef;" k="-29" />
-<hkern u1="&#x201a;" u2="&#xff;" k="43" />
-<hkern u1="&#x201a;" u2="&#xfd;" k="43" />
-<hkern u1="&#x201a;" u2="y" k="43" />
-<hkern u1="&#x201d;" u2="&#xef;" k="-29" />
-<hkern u1="&#x201e;" u2="&#xff;" k="45" />
-<hkern u1="&#x201e;" u2="&#xfd;" k="45" />
-<hkern u1="&#x201e;" u2="y" k="45" />
-<hkern u1="&#x20ac;" u2="&#x35;" k="8" />
-<hkern g1="r" 	g2="quoteright,quotedblright" 	k="37" />
-<hkern g1="r" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="29" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="20" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="p,thorn" 	k="6" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="t" 	k="6" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="6" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="f,uniFB01,uniFB02" 	k="8" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="6" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="18" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="y,yacute,ydieresis" 	k="10" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="g" 	k="8" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="hyphen,uni00AD,endash,emdash" 	k="8" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="AE" 	k="20" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="z" 	k="10" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="slash" 	k="16" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="s" 	k="10" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="b,h,k,germandbls" 	k="8" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="l" 	k="8" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="16" />
-<hkern g1="j" 	g2="quoteright,quotedblright" 	k="20" />
-<hkern g1="j" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="10" />
-<hkern g1="j" 	g2="AE" 	k="14" />
-<hkern g1="j" 	g2="V,W" 	k="12" />
-<hkern g1="j" 	g2="parenright" 	k="43" />
-<hkern g1="j" 	g2="Z" 	k="8" />
-<hkern g1="j" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="16" />
-<hkern g1="j" 	g2="exclam" 	k="14" />
-<hkern g1="j" 	g2="quotedbl,quotesingle" 	k="27" />
-<hkern g1="j" 	g2="S" 	k="16" />
-<hkern g1="j" 	g2="registered" 	k="37" />
-<hkern g1="j" 	g2="trademark" 	k="37" />
-<hkern g1="j" 	g2="T" 	k="14" />
-<hkern g1="j" 	g2="B,D,E,F,H,I,K,L,M,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Thorn" 	k="20" />
-<hkern g1="j" 	g2="Q" 	k="10" />
-<hkern g1="j" 	g2="bar" 	k="63" />
-<hkern g1="j" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="25" />
-<hkern g1="j" 	g2="backslash" 	k="84" />
-<hkern g1="j" 	g2="braceright" 	k="29" />
-<hkern g1="j" 	g2="Y,Yacute,Ydieresis" 	k="25" />
-<hkern g1="j" 	g2="bracketright" 	k="29" />
-<hkern g1="j" 	g2="quoteleft,quotedblleft" 	k="6" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="10" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="p,thorn" 	k="6" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="t" 	k="8" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="8" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="y,yacute,ydieresis" 	k="37" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="g" 	k="23" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="l" 	k="8" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="V,W" 	k="10" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="parenright" 	k="29" />
-<hkern g1="Z" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="8" />
-<hkern g1="Z" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-12" />
-<hkern g1="Z" 	g2="y,yacute,ydieresis" 	k="119" />
-<hkern g1="Z" 	g2="g" 	k="8" />
-<hkern g1="Z" 	g2="hyphen,uni00AD,endash,emdash" 	k="12" />
-<hkern g1="Z" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="6" />
-<hkern g1="Z" 	g2="v,w" 	k="70" />
-<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteright,quotedblright" 	k="139" />
-<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteleft,quotedblleft" 	k="106" />
-<hkern g1="J" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="90" />
-<hkern g1="J" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="70" />
-<hkern g1="J" 	g2="y,yacute,ydieresis" 	k="111" />
-<hkern g1="J" 	g2="g" 	k="57" />
-<hkern g1="J" 	g2="z" 	k="90" />
-<hkern g1="J" 	g2="s" 	k="90" />
-<hkern g1="J" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="8" />
-<hkern g1="J" 	g2="v,w" 	k="111" />
-<hkern g1="J" 	g2="m,n,r,ntilde" 	k="82" />
-<hkern g1="J" 	g2="x" 	k="135" />
-<hkern g1="t" 	g2="quoteright,quotedblright" 	k="41" />
-<hkern g1="t" 	g2="quoteleft,quotedblleft" 	k="33" />
-<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="quoteright,quotedblright" 	k="37" />
-<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="61" />
-<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="N,Ntilde" 	k="119" />
-<hkern g1="y,yacute,ydieresis" 	g2="quoteright,quotedblright" 	k="106" />
-<hkern g1="y,yacute,ydieresis" 	g2="quoteleft,quotedblleft" 	k="53" />
-<hkern g1="T" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="221" />
-<hkern g1="T" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="53" />
-<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="139" />
-<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="180" />
-<hkern g1="T" 	g2="y,yacute,ydieresis" 	k="217" />
-<hkern g1="T" 	g2="g" 	k="164" />
-<hkern g1="T" 	g2="s" 	k="180" />
-<hkern g1="T" 	g2="m,n,r,ntilde" 	k="156" />
-<hkern g1="T" 	g2="x" 	k="188" />
-<hkern g1="L" 	g2="quoteright,quotedblright" 	k="156" />
-<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="201" />
-<hkern g1="L" 	g2="g" 	k="74" />
-<hkern g1="L" 	g2="V,W" 	k="184" />
-<hkern g1="L" 	g2="T" 	k="246" />
-<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="197" />
-<hkern g1="L" 	g2="v,w" 	k="25" />
-<hkern g1="v,w" 	g2="quoteright,quotedblright" 	k="172" />
-<hkern g1="v,w" 	g2="quoteleft,quotedblleft" 	k="119" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="274" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="152" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="193" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="258" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="258" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="AE" 	k="106" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="303" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="270" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="v,w" 	k="246" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,r,ntilde" 	k="209" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="270" />
-<hkern g1="h,m,n,ntilde" 	g2="quoteright,quotedblright" 	k="147" />
-<hkern g1="h,m,n,ntilde" 	g2="quoteleft,quotedblleft" 	k="111" />
-<hkern g1="f" 	g2="quoteright,quotedblright" 	k="-123" />
-<hkern g1="f" 	g2="quotedbl,quotesingle" 	k="-111" />
-<hkern g1="f" 	g2="quoteleft,quotedblleft" 	k="-98" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="20" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="p,thorn" 	k="10" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="t" 	k="8" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="6" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="f,uniFB01,uniFB02" 	k="8" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="6" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="y,yacute,ydieresis" 	k="16" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="g" 	k="8" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="hyphen,uni00AD,endash,emdash" 	k="12" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="z" 	k="16" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="s" 	k="6" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="b,h,k,germandbls" 	k="6" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="l" 	k="8" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="10" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="parenright" 	k="-29" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="bar" 	k="-33" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="braceright" 	k="-31" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="bracketright" 	k="-23" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="v,w" 	k="6" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="m,n,r,ntilde" 	k="6" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="x" 	k="14" />
-<hkern g1="s" 	g2="quoteright,quotedblright" 	k="98" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteright,quotedblright" 	k="217" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="V,W" 	k="127" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="8" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="197" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="49" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="164" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="J" 	k="176" />
-<hkern g1="V,W" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="137" />
-<hkern g1="V,W" 	g2="p,thorn" 	k="47" />
-<hkern g1="V,W" 	g2="t" 	k="31" />
-<hkern g1="V,W" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="16" />
-<hkern g1="V,W" 	g2="f,uniFB01,uniFB02" 	k="25" />
-<hkern g1="V,W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="84" />
-<hkern g1="V,W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="129" />
-<hkern g1="V,W" 	g2="y,yacute,ydieresis" 	k="72" />
-<hkern g1="V,W" 	g2="g" 	k="115" />
-<hkern g1="V,W" 	g2="hyphen,uni00AD,endash,emdash" 	k="68" />
-<hkern g1="V,W" 	g2="AE" 	k="279" />
-<hkern g1="V,W" 	g2="z" 	k="82" />
-<hkern g1="V,W" 	g2="slash" 	k="100" />
-<hkern g1="V,W" 	g2="s" 	k="129" />
-<hkern g1="V,W" 	g2="b,h,k,germandbls" 	k="18" />
-<hkern g1="V,W" 	g2="l" 	k="16" />
-<hkern g1="V,W" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="96" />
-<hkern g1="V,W" 	g2="parenright" 	k="25" />
-<hkern g1="V,W" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
-<hkern g1="V,W" 	g2="S" 	k="31" />
-<hkern g1="V,W" 	g2="Q" 	k="35" />
-<hkern g1="V,W" 	g2="bar" 	k="-10" />
-<hkern g1="V,W" 	g2="backslash" 	k="-35" />
-<hkern g1="V,W" 	g2="bracketright" 	k="14" />
-<hkern g1="V,W" 	g2="v,w" 	k="68" />
-<hkern g1="V,W" 	g2="space" 	k="51" />
-<hkern g1="V,W" 	g2="m,n,r,ntilde" 	k="82" />
-<hkern g1="V,W" 	g2="x" 	k="100" />
-<hkern g1="V,W" 	g2="question" 	k="-23" />
-<hkern g1="V,W" 	g2="j" 	k="18" />
-<hkern g1="V,W" 	g2="N,Ntilde" 	k="82" />
-<hkern g1="V,W" 	g2="ampersand" 	k="41" />
-<hkern g1="V,W" 	g2="guillemotleft,guilsinglleft" 	k="51" />
-<hkern g1="V,W" 	g2="at" 	k="57" />
-<hkern g1="V,W" 	g2="copyright" 	k="20" />
-<hkern g1="V,W" 	g2="X" 	k="23" />
-<hkern g1="V,W" 	g2="colon,semicolon" 	k="45" />
-<hkern g1="V,W" 	g2="guillemotright,guilsinglright" 	k="35" />
-<hkern g1="N,Ntilde" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="184" />
-<hkern g1="N,Ntilde" 	g2="t" 	k="70" />
-<hkern g1="N,Ntilde" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="94" />
-<hkern g1="N,Ntilde" 	g2="f,uniFB01,uniFB02" 	k="78" />
-<hkern g1="N,Ntilde" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="139" />
-<hkern g1="N,Ntilde" 	g2="y,yacute,ydieresis" 	k="201" />
-<hkern g1="N,Ntilde" 	g2="g" 	k="201" />
-<hkern g1="N,Ntilde" 	g2="s" 	k="197" />
-<hkern g1="N,Ntilde" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="172" />
-<hkern g1="N,Ntilde" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
-<hkern g1="N,Ntilde" 	g2="v,w" 	k="201" />
-<hkern g1="N,Ntilde" 	g2="m,n,r,ntilde" 	k="176" />
-<hkern g1="N,Ntilde" 	g2="x" 	k="246" />
-<hkern g1="N,Ntilde" 	g2="N,Ntilde" 	k="139" />
-<hkern g1="c,ccedilla" 	g2="quoteright,quotedblright" 	k="45" />
-<hkern g1="c,ccedilla" 	g2="quoteleft,quotedblleft" 	k="25" />
-<hkern g1="k" 	g2="quoteright,quotedblright" 	k="98" />
-<hkern g1="k" 	g2="quoteleft,quotedblleft" 	k="61" />
-<hkern g1="F" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="109" />
-<hkern g1="F" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="113" />
-<hkern g1="F" 	g2="y,yacute,ydieresis" 	k="78" />
-<hkern g1="F" 	g2="hyphen,uni00AD,endash,emdash" 	k="76" />
-<hkern g1="F" 	g2="AE" 	k="236" />
-<hkern g1="F" 	g2="z" 	k="70" />
-<hkern g1="F" 	g2="slash" 	k="29" />
-<hkern g1="F" 	g2="s" 	k="84" />
-<hkern g1="F" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="78" />
-<hkern g1="F" 	g2="space" 	k="18" />
-<hkern g1="F" 	g2="x" 	k="61" />
-<hkern g1="x" 	g2="quoteright,quotedblright" 	k="61" />
-<hkern g1="x" 	g2="quoteleft,quotedblleft" 	k="20" />
-<hkern g1="S" 	g2="p,thorn" 	k="8" />
-<hkern g1="S" 	g2="f,uniFB01,uniFB02" 	k="6" />
-<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="6" />
-<hkern g1="S" 	g2="y,yacute,ydieresis" 	k="16" />
-<hkern g1="S" 	g2="g" 	k="8" />
-<hkern g1="S" 	g2="parenright" 	k="18" />
-<hkern g1="K" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="41" />
-<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="164" />
-<hkern g1="K" 	g2="g" 	k="6" />
-<hkern g1="K" 	g2="hyphen,uni00AD,endash,emdash" 	k="8" />
-<hkern g1="K" 	g2="s" 	k="37" />
-<hkern g1="K" 	g2="V,W" 	k="33" />
-<hkern g1="K" 	g2="parenright" 	k="16" />
-<hkern g1="K" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
-<hkern g1="K" 	g2="v,w" 	k="61" />
-<hkern g1="K" 	g2="m,n,r,ntilde" 	k="70" />
-<hkern g1="K" 	g2="x" 	k="41" />
-<hkern g1="C,Ccedilla" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="10" />
-<hkern g1="C,Ccedilla" 	g2="y,yacute,ydieresis" 	k="12" />
-<hkern g1="C,Ccedilla" 	g2="g" 	k="10" />
-<hkern g1="C,Ccedilla" 	g2="parenright" 	k="27" />
-<hkern g1="X" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="66" />
-<hkern g1="X" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-8" />
-<hkern g1="X" 	g2="y,yacute,ydieresis" 	k="18" />
-<hkern g1="X" 	g2="hyphen,uni00AD,endash,emdash" 	k="10" />
-<hkern g1="X" 	g2="parenright" 	k="14" />
-<hkern g1="X" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="16" />
-<hkern g1="P" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="57" />
-<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="119" />
-<hkern g1="z" 	g2="quoteright,quotedblright" 	k="66" />
-<hkern g1="z" 	g2="quoteleft,quotedblleft" 	k="37" />
-<hkern g1="quotedbl,quotesingle" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-8" />
-<hkern g1="quotedbl,quotesingle" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="221" />
-<hkern g1="quotedbl,quotesingle" 	g2="space" 	k="39" />
-<hkern g1="quotedbl,quotesingle" 	g2="ampersand" 	k="25" />
-<hkern g1="quotedbl,quotesingle" 	g2="four" 	k="90" />
-<hkern g1="quotedbl,quotesingle" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="152" />
-<hkern g1="quotedbl,quotesingle" 	g2="at" 	k="33" />
-<hkern g1="quotedbl,quotesingle" 	g2="p,thorn" 	k="8" />
-<hkern g1="quotedbl,quotesingle" 	g2="five" 	k="45" />
-<hkern g1="quotedbl,quotesingle" 	g2="N,Ntilde" 	k="51" />
-<hkern g1="quotedbl,quotesingle" 	g2="x" 	k="10" />
-<hkern g1="quotedbl,quotesingle" 	g2="hyphen,uni00AD,endash,emdash" 	k="72" />
-<hkern g1="quotedbl,quotesingle" 	g2="slash" 	k="141" />
-<hkern g1="quotedbl,quotesingle" 	g2="AE" 	k="168" />
-<hkern g1="quotedbl,quotesingle" 	g2="six" 	k="35" />
-<hkern g1="quotedbl,quotesingle" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="27" />
-<hkern g1="quotedbl,quotesingle" 	g2="zero" 	k="12" />
-<hkern g1="quotedbl,quotesingle" 	g2="g" 	k="10" />
-<hkern g1="three" 	g2="hyphen,uni00AD,endash,emdash" 	k="10" />
-<hkern g1="three" 	g2="quotedbl,quotesingle" 	k="70" />
-<hkern g1="bracketleft" 	g2="x" 	k="8" />
-<hkern g1="bracketleft" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="12" />
-<hkern g1="bracketleft" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
-<hkern g1="bracketleft" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="8" />
-<hkern g1="bracketleft" 	g2="m,n,r,ntilde" 	k="10" />
-<hkern g1="bracketleft" 	g2="v,w" 	k="10" />
-<hkern g1="bracketleft" 	g2="s" 	k="8" />
-<hkern g1="two" 	g2="hyphen,uni00AD,endash,emdash" 	k="12" />
-<hkern g1="two" 	g2="quotedbl,quotesingle" 	k="66" />
-<hkern g1="quoteleft,quotedblleft" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="80" />
-<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="51" />
-<hkern g1="quoteleft,quotedblleft" 	g2="N,Ntilde" 	k="14" />
-<hkern g1="quoteleft,quotedblleft" 	g2="AE" 	k="63" />
-<hkern g1="quoteleft,quotedblleft" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="41" />
-<hkern g1="quoteleft,quotedblleft" 	g2="s" 	k="16" />
-<hkern g1="nine" 	g2="quotedbl,quotesingle" 	k="82" />
-<hkern g1="quoteright,quotedblright" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="223" />
-<hkern g1="quoteright,quotedblright" 	g2="space" 	k="37" />
-<hkern g1="quoteright,quotedblright" 	g2="ampersand" 	k="25" />
-<hkern g1="quoteright,quotedblright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="145" />
-<hkern g1="quoteright,quotedblright" 	g2="at" 	k="27" />
-<hkern g1="quoteright,quotedblright" 	g2="N,Ntilde" 	k="59" />
-<hkern g1="quoteright,quotedblright" 	g2="x" 	k="29" />
-<hkern g1="quoteright,quotedblright" 	g2="hyphen,uni00AD,endash,emdash" 	k="53" />
-<hkern g1="quoteright,quotedblright" 	g2="slash" 	k="137" />
-<hkern g1="quoteright,quotedblright" 	g2="AE" 	k="168" />
-<hkern g1="quoteright,quotedblright" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="70" />
-<hkern g1="quoteright,quotedblright" 	g2="v,w" 	k="-25" />
-<hkern g1="quoteright,quotedblright" 	g2="s" 	k="41" />
-<hkern g1="zero" 	g2="quotedbl,quotesingle" 	k="72" />
-<hkern g1="four" 	g2="hyphen,uni00AD,endash,emdash" 	k="59" />
-<hkern g1="four" 	g2="quotedbl,quotesingle" 	k="76" />
-<hkern g1="seven" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="82" />
-<hkern g1="seven" 	g2="hyphen,uni00AD,endash,emdash" 	k="37" />
-<hkern g1="five" 	g2="hyphen,uni00AD,endash,emdash" 	k="25" />
-<hkern g1="five" 	g2="quotedbl,quotesingle" 	k="35" />
-<hkern g1="braceleft" 	g2="x" 	k="8" />
-<hkern g1="braceleft" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="14" />
-<hkern g1="braceleft" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
-<hkern g1="braceleft" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="10" />
-<hkern g1="braceleft" 	g2="m,n,r,ntilde" 	k="12" />
-<hkern g1="braceleft" 	g2="v,w" 	k="10" />
-<hkern g1="braceleft" 	g2="s" 	k="8" />
-<hkern g1="periodcentered" 	g2="B,D,E,F,H,I,K,L,M,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Thorn" 	k="33" />
-<hkern g1="periodcentered" 	g2="l" 	k="100" />
-<hkern g1="six" 	g2="quotedbl,quotesingle" 	k="27" />
-</font>
-</defs></svg> 
\ No newline at end of file
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-bolditalic-webfont.ttf b/client/assets/fonts/playfairdisplay/playfairdisplay-bolditalic-webfont.ttf
deleted file mode 100755
index c82fbfcb3b253c4c7565a30cda8cf23d975a46cf..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-bolditalic-webfont.ttf and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-bolditalic-webfont.woff b/client/assets/fonts/playfairdisplay/playfairdisplay-bolditalic-webfont.woff
deleted file mode 100755
index 9a4413b26209767ee31e2c180c5f0327eba71c7f..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-bolditalic-webfont.woff and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-bolditalic-webfont.woff2 b/client/assets/fonts/playfairdisplay/playfairdisplay-bolditalic-webfont.woff2
deleted file mode 100755
index 64f39007c301afb8230608b41a060be654367957..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-bolditalic-webfont.woff2 and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-italic-demo.html b/client/assets/fonts/playfairdisplay/playfairdisplay-italic-demo.html
deleted file mode 100755
index ce1c49f7406a3f72b554dc7fb986007c4eca4588..0000000000000000000000000000000000000000
--- a/client/assets/fonts/playfairdisplay/playfairdisplay-italic-demo.html
+++ /dev/null
@@ -1,613 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-	<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script>
-	<script src="specimen_files/easytabs.js" type="text/javascript" charset="utf-8"></script>
-	<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" />
-	<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
-
-	<style type="text/css">
-					body{
-				font-family: 'playfair_displayitalic';
-							}
-		</style>
-
-	<title>Playfair Display Italic Specimen</title>
-	
-	
-	<script type="text/javascript" charset="utf-8">
-		$(document).ready(function() {
-			$('#container').easyTabs({defaultContent:1});
-		});
-	</script>
-</head>
-
-<body>
-<div id="container">
-	<div id="header">
-		Playfair Display Italic	</div>
-	<ul class="tabs">
-		<li><a href="#specimen">Specimen</a></li>
-		<li><a href="#layout">Sample Layout</a></li>
-				<li><a href="#glyphs">Glyphs &amp; Languages</a></li>
-		<li><a href="#installing">Installing Webfonts</a></li>
-		
-	</ul>
-	
-	<div id="main_content">
-
-		
-			<div id="specimen">
-		
-				<div class="section">
-					<div class="grid12 firstcol">
-						<div class="huge">AaBb</div>
-					</div>
-				</div>
-		
-				<div class="section">
-					<div class="glyph_range">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>
-				</div>
-				<div class="section">
-					<div class="grid12 firstcol">
-						<table class="sample_table">
-							<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-						</table>
-				
-					</div>
-			
-				</div>
-		
-		
-		
-								<div class="section" id="bodycomparison">
-
-
-										<div id="xheight">
-				<div class="fontbody">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div>
-										<div class="fontbody" style="z-index:1">
-											body<span>Playfair Display Italic</span>
-										</div>
-										<div class="arialbody" style="z-index:1">
-											body<span>Arial</span>
-										</div>
-										<div class="verdanabody" style="z-index:1">
-											body<span>Verdana</span>
-										</div>
-										<div class="georgiabody" style="z-index:1">
-											body<span>Georgia</span>
-										</div>
-
-
-
-								</div>
-		
-		
-				<div class="section psample psample_row1" id="">
-					
-					<div class="grid2 firstcol">
-						<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="white_blend"></div>
-					
-				</div>
-				<div class="section psample psample_row2" id="">
-					<div class="grid3 firstcol">
-						<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid5">
-						<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-
-					<div class="white_blend"></div>
-
-				</div>
-				
-				<div class="section psample psample_row3" id="">
-					<div class="grid5 firstcol">
-						<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="grid7">
-						<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					
-					<div class="white_blend"></div>
-					
-				</div>
-				
-				<div class="section psample psample_row4" id="">
-					<div class="grid12 firstcol">
-						<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="white_blend"></div>
-					
-				</div>
-				
-				
-				
-				<div class="section psample psample_row1 fullreverse">
-					<div class="grid2 firstcol">
-						<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				<div class="section psample psample_row2 fullreverse">
-					<div class="grid3 firstcol">
-						<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid5">
-						<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="black_blend"></div>
-
-				</div>
-				
-				<div class="section psample fullreverse psample_row3" id="">
-					<div class="grid5 firstcol">
-						<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="grid7">
-						<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
-					<div class="grid12 firstcol">
-						<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				
-				
-				
-			</div>
-			
-			<div id="layout">
-				
-				<div class="section">
-					
-					<div class="grid12 firstcol">
-						<h1>Lorem Ipsum Dolor</h1>
-						<h2>Etiam porta sem malesuada magna mollis euismod</h2>
-						
-						<p class="byline">By <a href="#link">Aenean Lacinia</a></p>
-					</div>
-				</div>
-				<div class="section">
-					<div class="grid8 firstcol">
-						<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-						
-						<h3>Pellentesque ornare sem</h3>
-
-						<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
-
-						<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
-
-						<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
-
-						<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
-
-						<h3>Cras mattis consectetur</h3>
-
-						<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
-
-						<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
-					</div>
-					
-					<div class="grid4 sidebar">
-						
-						<div class="box reverse">
-							<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
-						</div>
-						
-						<p class="caption">Maecenas sed diam eget risus varius.</p>
-
-						<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-					
-
-						<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
-
-						<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-					</div>
-				</div>
-				
-			</div>
-
-
-			
-
-
-
-		<div id="glyphs">
-			<div class="section">
-				<div class="grid12 firstcol">
-			
-				<h1>Language Support</h1>
-				<p>The subset of Playfair Display Italic in this kit supports the following languages:<br />
-			
-					Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Swedish				</p>
-				<h1>Glyph Chart</h1>
-				<p>The subset of Playfair Display Italic in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p>
-				<div id="glyph_chart">
-			
-																				 <div><p>&amp;#13;</p>&#13;</div>
-																				 <div><p>&amp;#32;</p>&#32;</div>
-																				 <div><p>&amp;#33;</p>&#33;</div>
-																				 <div><p>&amp;#34;</p>&#34;</div>
-																				 <div><p>&amp;#35;</p>&#35;</div>
-																				 <div><p>&amp;#36;</p>&#36;</div>
-																				 <div><p>&amp;#37;</p>&#37;</div>
-																				 <div><p>&amp;#38;</p>&#38;</div>
-																				 <div><p>&amp;#39;</p>&#39;</div>
-																				 <div><p>&amp;#40;</p>&#40;</div>
-																				 <div><p>&amp;#41;</p>&#41;</div>
-																				 <div><p>&amp;#42;</p>&#42;</div>
-																				 <div><p>&amp;#43;</p>&#43;</div>
-																				 <div><p>&amp;#44;</p>&#44;</div>
-																				 <div><p>&amp;#45;</p>&#45;</div>
-																				 <div><p>&amp;#46;</p>&#46;</div>
-																				 <div><p>&amp;#47;</p>&#47;</div>
-																				 <div><p>&amp;#48;</p>&#48;</div>
-																				 <div><p>&amp;#49;</p>&#49;</div>
-																				 <div><p>&amp;#50;</p>&#50;</div>
-																				 <div><p>&amp;#51;</p>&#51;</div>
-																				 <div><p>&amp;#52;</p>&#52;</div>
-																				 <div><p>&amp;#53;</p>&#53;</div>
-																				 <div><p>&amp;#54;</p>&#54;</div>
-																				 <div><p>&amp;#55;</p>&#55;</div>
-																				 <div><p>&amp;#56;</p>&#56;</div>
-																				 <div><p>&amp;#57;</p>&#57;</div>
-																				 <div><p>&amp;#58;</p>&#58;</div>
-																				 <div><p>&amp;#59;</p>&#59;</div>
-																				 <div><p>&amp;#60;</p>&#60;</div>
-																				 <div><p>&amp;#61;</p>&#61;</div>
-																				 <div><p>&amp;#62;</p>&#62;</div>
-																				 <div><p>&amp;#63;</p>&#63;</div>
-																				 <div><p>&amp;#64;</p>&#64;</div>
-																				 <div><p>&amp;#65;</p>&#65;</div>
-																				 <div><p>&amp;#66;</p>&#66;</div>
-																				 <div><p>&amp;#67;</p>&#67;</div>
-																				 <div><p>&amp;#68;</p>&#68;</div>
-																				 <div><p>&amp;#69;</p>&#69;</div>
-																				 <div><p>&amp;#70;</p>&#70;</div>
-																				 <div><p>&amp;#71;</p>&#71;</div>
-																				 <div><p>&amp;#72;</p>&#72;</div>
-																				 <div><p>&amp;#73;</p>&#73;</div>
-																				 <div><p>&amp;#74;</p>&#74;</div>
-																				 <div><p>&amp;#75;</p>&#75;</div>
-																				 <div><p>&amp;#76;</p>&#76;</div>
-																				 <div><p>&amp;#77;</p>&#77;</div>
-																				 <div><p>&amp;#78;</p>&#78;</div>
-																				 <div><p>&amp;#79;</p>&#79;</div>
-																				 <div><p>&amp;#80;</p>&#80;</div>
-																				 <div><p>&amp;#81;</p>&#81;</div>
-																				 <div><p>&amp;#82;</p>&#82;</div>
-																				 <div><p>&amp;#83;</p>&#83;</div>
-																				 <div><p>&amp;#84;</p>&#84;</div>
-																				 <div><p>&amp;#85;</p>&#85;</div>
-																				 <div><p>&amp;#86;</p>&#86;</div>
-																				 <div><p>&amp;#87;</p>&#87;</div>
-																				 <div><p>&amp;#88;</p>&#88;</div>
-																				 <div><p>&amp;#89;</p>&#89;</div>
-																				 <div><p>&amp;#90;</p>&#90;</div>
-																				 <div><p>&amp;#91;</p>&#91;</div>
-																				 <div><p>&amp;#92;</p>&#92;</div>
-																				 <div><p>&amp;#93;</p>&#93;</div>
-																				 <div><p>&amp;#94;</p>&#94;</div>
-																				 <div><p>&amp;#95;</p>&#95;</div>
-																				 <div><p>&amp;#96;</p>&#96;</div>
-																				 <div><p>&amp;#97;</p>&#97;</div>
-																				 <div><p>&amp;#98;</p>&#98;</div>
-																				 <div><p>&amp;#99;</p>&#99;</div>
-																				 <div><p>&amp;#100;</p>&#100;</div>
-																				 <div><p>&amp;#101;</p>&#101;</div>
-																				 <div><p>&amp;#102;</p>&#102;</div>
-																				 <div><p>&amp;#103;</p>&#103;</div>
-																				 <div><p>&amp;#104;</p>&#104;</div>
-																				 <div><p>&amp;#105;</p>&#105;</div>
-																				 <div><p>&amp;#106;</p>&#106;</div>
-																				 <div><p>&amp;#107;</p>&#107;</div>
-																				 <div><p>&amp;#108;</p>&#108;</div>
-																				 <div><p>&amp;#109;</p>&#109;</div>
-																				 <div><p>&amp;#110;</p>&#110;</div>
-																				 <div><p>&amp;#111;</p>&#111;</div>
-																				 <div><p>&amp;#112;</p>&#112;</div>
-																				 <div><p>&amp;#113;</p>&#113;</div>
-																				 <div><p>&amp;#114;</p>&#114;</div>
-																				 <div><p>&amp;#115;</p>&#115;</div>
-																				 <div><p>&amp;#116;</p>&#116;</div>
-																				 <div><p>&amp;#117;</p>&#117;</div>
-																				 <div><p>&amp;#118;</p>&#118;</div>
-																				 <div><p>&amp;#119;</p>&#119;</div>
-																				 <div><p>&amp;#120;</p>&#120;</div>
-																				 <div><p>&amp;#121;</p>&#121;</div>
-																				 <div><p>&amp;#122;</p>&#122;</div>
-																				 <div><p>&amp;#123;</p>&#123;</div>
-																				 <div><p>&amp;#124;</p>&#124;</div>
-																				 <div><p>&amp;#125;</p>&#125;</div>
-																				 <div><p>&amp;#126;</p>&#126;</div>
-																				 <div><p>&amp;#160;</p>&#160;</div>
-																				 <div><p>&amp;#161;</p>&#161;</div>
-																				 <div><p>&amp;#162;</p>&#162;</div>
-																				 <div><p>&amp;#163;</p>&#163;</div>
-																				 <div><p>&amp;#164;</p>&#164;</div>
-																				 <div><p>&amp;#165;</p>&#165;</div>
-																				 <div><p>&amp;#166;</p>&#166;</div>
-																				 <div><p>&amp;#167;</p>&#167;</div>
-																				 <div><p>&amp;#168;</p>&#168;</div>
-																				 <div><p>&amp;#169;</p>&#169;</div>
-																				 <div><p>&amp;#170;</p>&#170;</div>
-																				 <div><p>&amp;#171;</p>&#171;</div>
-																				 <div><p>&amp;#172;</p>&#172;</div>
-																				 <div><p>&amp;#173;</p>&#173;</div>
-																				 <div><p>&amp;#174;</p>&#174;</div>
-																				 <div><p>&amp;#175;</p>&#175;</div>
-																				 <div><p>&amp;#176;</p>&#176;</div>
-																				 <div><p>&amp;#177;</p>&#177;</div>
-																				 <div><p>&amp;#178;</p>&#178;</div>
-																				 <div><p>&amp;#179;</p>&#179;</div>
-																				 <div><p>&amp;#180;</p>&#180;</div>
-																				 <div><p>&amp;#182;</p>&#182;</div>
-																				 <div><p>&amp;#183;</p>&#183;</div>
-																				 <div><p>&amp;#184;</p>&#184;</div>
-																				 <div><p>&amp;#185;</p>&#185;</div>
-																				 <div><p>&amp;#186;</p>&#186;</div>
-																				 <div><p>&amp;#187;</p>&#187;</div>
-																				 <div><p>&amp;#188;</p>&#188;</div>
-																				 <div><p>&amp;#189;</p>&#189;</div>
-																				 <div><p>&amp;#190;</p>&#190;</div>
-																				 <div><p>&amp;#191;</p>&#191;</div>
-																				 <div><p>&amp;#192;</p>&#192;</div>
-																				 <div><p>&amp;#193;</p>&#193;</div>
-																				 <div><p>&amp;#194;</p>&#194;</div>
-																				 <div><p>&amp;#195;</p>&#195;</div>
-																				 <div><p>&amp;#196;</p>&#196;</div>
-																				 <div><p>&amp;#197;</p>&#197;</div>
-																				 <div><p>&amp;#198;</p>&#198;</div>
-																				 <div><p>&amp;#199;</p>&#199;</div>
-																				 <div><p>&amp;#200;</p>&#200;</div>
-																				 <div><p>&amp;#201;</p>&#201;</div>
-																				 <div><p>&amp;#202;</p>&#202;</div>
-																				 <div><p>&amp;#203;</p>&#203;</div>
-																				 <div><p>&amp;#204;</p>&#204;</div>
-																				 <div><p>&amp;#205;</p>&#205;</div>
-																				 <div><p>&amp;#206;</p>&#206;</div>
-																				 <div><p>&amp;#207;</p>&#207;</div>
-																				 <div><p>&amp;#208;</p>&#208;</div>
-																				 <div><p>&amp;#209;</p>&#209;</div>
-																				 <div><p>&amp;#210;</p>&#210;</div>
-																				 <div><p>&amp;#211;</p>&#211;</div>
-																				 <div><p>&amp;#212;</p>&#212;</div>
-																				 <div><p>&amp;#213;</p>&#213;</div>
-																				 <div><p>&amp;#214;</p>&#214;</div>
-																				 <div><p>&amp;#215;</p>&#215;</div>
-																				 <div><p>&amp;#216;</p>&#216;</div>
-																				 <div><p>&amp;#217;</p>&#217;</div>
-																				 <div><p>&amp;#218;</p>&#218;</div>
-																				 <div><p>&amp;#219;</p>&#219;</div>
-																				 <div><p>&amp;#220;</p>&#220;</div>
-																				 <div><p>&amp;#221;</p>&#221;</div>
-																				 <div><p>&amp;#222;</p>&#222;</div>
-																				 <div><p>&amp;#223;</p>&#223;</div>
-																				 <div><p>&amp;#224;</p>&#224;</div>
-																				 <div><p>&amp;#225;</p>&#225;</div>
-																				 <div><p>&amp;#226;</p>&#226;</div>
-																				 <div><p>&amp;#227;</p>&#227;</div>
-																				 <div><p>&amp;#228;</p>&#228;</div>
-																				 <div><p>&amp;#229;</p>&#229;</div>
-																				 <div><p>&amp;#230;</p>&#230;</div>
-																				 <div><p>&amp;#231;</p>&#231;</div>
-																				 <div><p>&amp;#232;</p>&#232;</div>
-																				 <div><p>&amp;#233;</p>&#233;</div>
-																				 <div><p>&amp;#234;</p>&#234;</div>
-																				 <div><p>&amp;#235;</p>&#235;</div>
-																				 <div><p>&amp;#236;</p>&#236;</div>
-																				 <div><p>&amp;#237;</p>&#237;</div>
-																				 <div><p>&amp;#238;</p>&#238;</div>
-																				 <div><p>&amp;#239;</p>&#239;</div>
-																				 <div><p>&amp;#240;</p>&#240;</div>
-																				 <div><p>&amp;#241;</p>&#241;</div>
-																				 <div><p>&amp;#242;</p>&#242;</div>
-																				 <div><p>&amp;#243;</p>&#243;</div>
-																				 <div><p>&amp;#244;</p>&#244;</div>
-																				 <div><p>&amp;#245;</p>&#245;</div>
-																				 <div><p>&amp;#246;</p>&#246;</div>
-																				 <div><p>&amp;#247;</p>&#247;</div>
-																				 <div><p>&amp;#248;</p>&#248;</div>
-																				 <div><p>&amp;#249;</p>&#249;</div>
-																				 <div><p>&amp;#250;</p>&#250;</div>
-																				 <div><p>&amp;#251;</p>&#251;</div>
-																				 <div><p>&amp;#252;</p>&#252;</div>
-																				 <div><p>&amp;#253;</p>&#253;</div>
-																				 <div><p>&amp;#254;</p>&#254;</div>
-																				 <div><p>&amp;#255;</p>&#255;</div>
-																				 <div><p>&amp;#338;</p>&#338;</div>
-																				 <div><p>&amp;#339;</p>&#339;</div>
-																				 <div><p>&amp;#376;</p>&#376;</div>
-																				 <div><p>&amp;#710;</p>&#710;</div>
-																				 <div><p>&amp;#732;</p>&#732;</div>
-																				 <div><p>&amp;#8192;</p>&#8192;</div>
-																				 <div><p>&amp;#8193;</p>&#8193;</div>
-																				 <div><p>&amp;#8194;</p>&#8194;</div>
-																				 <div><p>&amp;#8195;</p>&#8195;</div>
-																				 <div><p>&amp;#8196;</p>&#8196;</div>
-																				 <div><p>&amp;#8197;</p>&#8197;</div>
-																				 <div><p>&amp;#8198;</p>&#8198;</div>
-																				 <div><p>&amp;#8199;</p>&#8199;</div>
-																				 <div><p>&amp;#8200;</p>&#8200;</div>
-																				 <div><p>&amp;#8201;</p>&#8201;</div>
-																				 <div><p>&amp;#8202;</p>&#8202;</div>
-																				 <div><p>&amp;#8208;</p>&#8208;</div>
-																				 <div><p>&amp;#8209;</p>&#8209;</div>
-																				 <div><p>&amp;#8210;</p>&#8210;</div>
-																				 <div><p>&amp;#8211;</p>&#8211;</div>
-																				 <div><p>&amp;#8212;</p>&#8212;</div>
-																				 <div><p>&amp;#8216;</p>&#8216;</div>
-																				 <div><p>&amp;#8217;</p>&#8217;</div>
-																				 <div><p>&amp;#8218;</p>&#8218;</div>
-																				 <div><p>&amp;#8220;</p>&#8220;</div>
-																				 <div><p>&amp;#8221;</p>&#8221;</div>
-																				 <div><p>&amp;#8222;</p>&#8222;</div>
-																				 <div><p>&amp;#8226;</p>&#8226;</div>
-																				 <div><p>&amp;#8230;</p>&#8230;</div>
-																				 <div><p>&amp;#8239;</p>&#8239;</div>
-																				 <div><p>&amp;#8249;</p>&#8249;</div>
-																				 <div><p>&amp;#8250;</p>&#8250;</div>
-																				 <div><p>&amp;#8287;</p>&#8287;</div>
-																				 <div><p>&amp;#8364;</p>&#8364;</div>
-																				 <div><p>&amp;#8482;</p>&#8482;</div>
-																				 <div><p>&amp;#9724;</p>&#9724;</div>
-																				 <div><p>&amp;#64257;</p>&#64257;</div>
-																				 <div><p>&amp;#64258;</p>&#64258;</div>
-																				 <div><p>&amp;#64259;</p>&#64259;</div>
-																				 <div><p>&amp;#64260;</p>&#64260;</div>
-																																																</div>	
-				</div>
-		
-		
-			</div>
-		</div>
-		
-		
-		<div id="specs">
-			
-		</div>
-	
-		<div id="installing">
-			<div class="section">
-				<div class="grid7 firstcol">
-					<h1>Installing Webfonts</h1>
-					
-					<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
-					
-					<h2>1. Upload your webfonts</h2>
-					<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
-					
-					<h2>2. Include the webfont stylesheet</h2>
-					<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p>
-
-
-<code>
-@font-face{ 
-	font-family: 'MyWebFont';
-	src: url('WebFont.eot');
-	src: url('WebFont.eot?#iefix') format('embedded-opentype'),
-	     url('WebFont.woff') format('woff'),
-	     url('WebFont.ttf') format('truetype'),
-	     url('WebFont.svg#webfont') format('svg');
-}
-</code>
-
-	<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
-	<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>
-
-					<h2>3. Modify your own stylesheet</h2>
-					<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
-<code>p { font-family: 'WebFont', Arial, sans-serif; }</code>
-
-<h2>4. Test</h2>
-<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
-				</div>
-				
-				<div class="grid5 sidebar">
-					<div class="box">
-						<h2>Troubleshooting<br />Font-Face Problems</h2>
-						<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
-
-						<h3>Fonts not showing in any browser</h3>
-
-						<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
-
-						<h3>Fonts not loading in iPhone or iPad</h3>
-
-						<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
-
-						<h3>Fonts not loading in Firefox</h3>
-
-						<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
-
-						<h3>Fonts not loading in IE</h3>
-
-						<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
-
-						<h3>Fonts not loading in IE9</h3>
-
-						<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
-					</div>
-				</div>
-			</div>
-			
-		</div>
-	
-	</div>
-	<div id="footer">
-		<p>&copy;2010-2011 Font Squirrel. All rights reserved.</p>
-	</div>
-</div>
-</body>
-</html>
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-italic-webfont.eot b/client/assets/fonts/playfairdisplay/playfairdisplay-italic-webfont.eot
deleted file mode 100755
index e45993c24aa4fde1e9d6a34eacc646617870b299..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-italic-webfont.eot and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-italic-webfont.svg b/client/assets/fonts/playfairdisplay/playfairdisplay-italic-webfont.svg
deleted file mode 100755
index 65c8b463e2bbaa138700d858598526bcbe389a94..0000000000000000000000000000000000000000
--- a/client/assets/fonts/playfairdisplay/playfairdisplay-italic-webfont.svg
+++ /dev/null
@@ -1,651 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
-<metadata></metadata>
-<defs>
-<font id="playfair_displayitalic" horiz-adv-x="1288" >
-<font-face units-per-em="2048" ascent="1638" descent="-410" />
-<missing-glyph horiz-adv-x="518" />
-<glyph unicode="&#xfb01;" horiz-adv-x="1186" d="M-61 -385l396 1397h-198l13 41h196q40 148 89 244.5t122 158.5q87 74 198.5 110t229.5 36q73 0 135.5 -21.5t96.5 -67.5q18 -29 18 -64q0 -40 -21.5 -75.5t-57.5 -57.5t-75 -22q-45 0 -74 29.5t-29 73.5q0 15 3 28q8 46 42 82t79 46q-50 18 -133 18q-113 0 -215 -66 q-57 -38 -96.5 -98t-69 -141t-64.5 -211l-1 -2h390q117 3 187 28l-277 -907q-14 -48 -14 -76q0 -51 47 -51q42 0 79 46.5t81 162.5l28 76h39l-53 -150q-40 -111 -107 -161t-145 -50q-143 0 -143 124q0 61 37 163l229 754h-389l-389 -1368q-108 -3 -184 -29z" />
-<glyph unicode="&#xfb02;" horiz-adv-x="1204" d="M-59 -385l386 1397h-188l13 41h186q37 136 80.5 222.5t107.5 141.5q71 62 162 94.5t182 32.5h39q109 1 195.5 22t169.5 62l-428 -1454q-13 -47 -13 -73q0 -54 48 -54q41 0 77 47.5t76 161.5l27 76h39l-51 -150q-74 -211 -246 -211q-141 0 -141 133q0 59 28 154l334 1108 q11 36 11 61q0 43 -31.5 64.5t-104.5 21.5h-25q-71 0 -159 -53q-48 -27 -82 -80.5t-59.5 -128t-57.5 -196.5l-1 -2h241l-13 -41h-239l-379 -1368q-108 -3 -184 -29z" />
-<glyph horiz-adv-x="0" />
-<glyph horiz-adv-x="682" />
-<glyph unicode="&#xd;" horiz-adv-x="0" />
-<glyph unicode=" "  horiz-adv-x="518" />
-<glyph unicode="&#x09;" horiz-adv-x="518" />
-<glyph unicode="&#xa0;" horiz-adv-x="518" />
-<glyph unicode="!" horiz-adv-x="539" d="M13 76q0 40 22 76.5t57.5 58.5t73.5 22q46 0 75 -30.5t29 -76.5q0 -40 -21.5 -75.5t-57.5 -57.5t-75 -22q-45 0 -74 30t-29 75zM193 408q41 161 71.5 320.5t75 424.5t72.5 369q10 38 34.5 59t57.5 21q47 0 70.5 -23t23.5 -60q0 -20 -8 -44q-24 -83 -107.5 -309 t-144 -400.5t-109.5 -364.5z" />
-<glyph unicode="&#x22;" horiz-adv-x="606" d="M287 1061q12 90 18 162t10 110.5t13 75.5q10 43 33.5 64.5t52.5 21.5q63 0 63 -68q0 -37 -15.5 -74t-64.5 -125.5t-82 -166.5h-28zM510 1061q12 90 18 162t10 110.5t13 75.5q10 43 33.5 64.5t52.5 21.5q63 0 63 -68q0 -37 -15.5 -74t-64.5 -125.5t-82 -166.5h-28z" />
-<glyph unicode="#" horiz-adv-x="1309" d="M76 506l18 41h301l159 342h-300l16 41h303l140 303h49l-140 -303h334l140 303h49l-140 -303h291l-16 -41h-294l-159 -342h293l-20 -41h-292l-138 -299h-49l138 299h-334l-138 -299h-49l138 299h-300zM444 547h334l159 342h-334z" />
-<glyph unicode="$" horiz-adv-x="1128" d="M2 305q0 66 33.5 114t89.5 48q52 0 78 -38.5t26 -94.5q0 -60 -21 -109t-58 -108q45 -46 115 -73l188 675q-84 84 -130.5 168t-46.5 192q0 114 53.5 199.5t141.5 135t192 61.5l68 245h45l-67 -241h18q79 0 145 -17l72 258h45l-75 -271q44 -17 75.5 -37t71.5 -52 q40 -31 73 -90.5t33 -124.5q0 -66 -33.5 -114t-89.5 -48q-51 0 -77.5 39t-26.5 94q0 60 21.5 110t58.5 107q-46 47 -118 75l-178 -641q75 -70 124 -127t81 -124.5t32 -142.5q0 -123 -65.5 -209.5t-169.5 -133t-222 -56.5l-68 -244h-45l67 241h-16q-81 0 -147 18l-72 -259 h-45l76 272q-44 16 -75 36.5t-70 51.5q-46 35 -76.5 92t-30.5 123zM306 30q67 -18 143 -18h20l151 543q-21 22 -132 129zM442 1180q0 -103 81 -209l128 462q-97 -18 -153 -81.5t-56 -171.5zM515 16q111 14 173 77t62 175q0 128 -96 247zM557 930q40 -45 131 -130l173 622 q-63 18 -132 18l-31 -1z" />
-<glyph unicode="%" horiz-adv-x="1569" d="M-19 -86l1706 1774l31 -27l-1706 -1774zM229 1094q0 109 56.5 217t154 178t213.5 70q108 0 168 -56t60 -157q0 -109 -56 -217.5t-153 -178t-213 -69.5q-109 0 -169.5 55t-60.5 158zM367 1055q0 -137 106 -137q81 0 142.5 81.5t94.5 193t33 193.5q0 136 -106 136 q-81 0 -142.5 -81.5t-94.5 -193t-33 -192.5zM770 184q0 109 56 217t153.5 178t214.5 70q107 0 167 -56t60 -157q0 -109 -55.5 -217t-152.5 -178t-214 -70q-108 0 -168.5 55.5t-60.5 157.5zM907 145q0 -137 107 -137q81 0 142.5 81.5t94.5 193.5t33 194q0 67 -27.5 101 t-78.5 34q-82 0 -143.5 -81.5t-94.5 -193t-33 -192.5z" />
-<glyph unicode="&#x26;" horiz-adv-x="1673" d="M78 403q0 120 57 225t157 180t226 110q-69 37 -106 98.5t-37 130.5q0 89 60.5 155t154.5 101t190 35q76 0 133 -22.5t88 -62.5t31 -93q0 -50 -25.5 -84.5t-65.5 -52t-83 -17.5l4 37q57 0 92 30t35 82q0 68 -56 109t-142 41q-83 0 -149 -39.5t-103 -109t-37 -156.5 q0 -95 45 -170q73 12 129 12q74 0 74 -43q0 -22 -19 -32.5t-45 -10.5q-51 0 -141 45q-93 -27 -164 -87t-110.5 -142t-39.5 -174q0 -120 66 -204.5t182 -127.5t266 -43q159 0 287.5 47t202.5 134t74 200q0 75 -34.5 147t-103.5 122q-210 -77 -260 -97q-92 -36 -153.5 -82.5 t-61.5 -120.5q0 -63 50.5 -100t123.5 -37q81 0 132 40t77 81l27 -19q-82 -135 -244 -135q-95 0 -158 47t-63 154q0 119 85 197t255 141q47 17 155.5 55.5t207.5 76t167 70.5q101 49 156 102.5t55 125.5q0 49 -26.5 89.5t-73 63.5t-102.5 23q-54 0 -66 -18q21 -12 32 -33 t11 -45q0 -31 -19 -58t-50 -43t-66 -16q-41 0 -66.5 23t-25.5 63q0 42 28.5 75.5t73.5 53.5q68 29 150 29q118 0 187 -58t69 -176q0 -104 -59.5 -184t-190.5 -146q-92 -45 -327 -131q149 -125 149 -307q0 -136 -81.5 -252t-236 -185t-364.5 -69q-180 0 -313 52t-205 149 t-72 231z" />
-<glyph unicode="'" horiz-adv-x="383" d="M287 1061q12 90 18 162t10 110.5t13 75.5q10 43 33.5 64.5t52.5 21.5q63 0 63 -68q0 -37 -15.5 -74t-64.5 -125.5t-82 -166.5h-28z" />
-<glyph unicode="(" horiz-adv-x="739" d="M78 457q0 222 115 443.5t315.5 414t456.5 336.5l20 -27q-360 -243 -554.5 -532.5t-194.5 -657.5q0 -464 225 -780l-37 -27q-113 128 -188 249t-116.5 264t-41.5 317z" />
-<glyph unicode=")" horiz-adv-x="739" d="M-227 -346q360 243 554.5 532.5t194.5 657.5q0 464 -225 780l37 27q113 -128 188 -249t116.5 -264t41.5 -317q0 -222 -115 -443.5t-315.5 -414t-456.5 -336.5z" />
-<glyph unicode="*" horiz-adv-x="1014" d="M199 865q0 51 88 100q36 17 77.5 29.5t120 32t126.5 32.5q-43 14 -114.5 34.5t-108 33t-60.5 28.5q-50 31 -50 74q0 27 19 49q23 32 64 32q33 0 67 -24q26 -17 49.5 -42.5t68 -82t76.5 -93.5q-2 37 -8.5 114.5t-6.5 124.5q0 46 5 75q13 57 41.5 84t59.5 27q24 0 39 -16 t15 -51q0 -23 -5 -44q-6 -36 -22.5 -77t-51.5 -115t-54 -118q53 44 112 93t95.5 77.5t67.5 45.5q47 23 80 23q43 0 55 -35q4 -12 4 -19q0 -54 -87 -100q-36 -17 -77.5 -29.5t-120.5 -32t-128 -32.5q44 -14 116 -34.5t108 -33t61 -28.5q49 -31 49 -73q0 -28 -19 -50 q-23 -32 -63 -32q-33 0 -68 24q-26 16 -49.5 41.5t-66 79t-71.5 87.5q2 -56 5.5 -127t3.5 -108q0 -42 -4 -70q-15 -57 -43.5 -83.5t-61.5 -26.5q-23 0 -37.5 16t-14.5 50q0 23 5 44q7 40 26.5 86.5t53 113t57.5 116.5h-1q-53 -43 -113.5 -94t-99 -80.5t-70.5 -46.5 q-47 -23 -80 -23q-43 0 -55 35q-4 12 -4 19z" />
-<glyph unicode="+" horiz-adv-x="1198" d="M111 696l18 62h477l137 483h74l-137 -483h475l-18 -62h-475l-138 -481h-73l137 481h-477z" />
-<glyph unicode="," horiz-adv-x="516" d="M-47 -246q97 59 154 129t63 140q-59 -52 -107 -52q-36 0 -56.5 19.5t-20.5 52.5q0 43 27.5 87.5t71.5 73.5t89 29t67.5 -35t22.5 -85q0 -71 -36 -143t-104 -135.5t-161 -108.5z" />
-<glyph unicode="-" horiz-adv-x="1032" d="M109 461l30 119h740l-31 -119h-739z" />
-<glyph unicode="." horiz-adv-x="500" d="M-3 76q0 40 22 76.5t57.5 58.5t73.5 22q46 0 75 -30.5t29 -76.5q0 -40 -21.5 -75.5t-57.5 -57.5t-75 -22q-45 0 -74 30t-29 75z" />
-<glyph unicode="/" horiz-adv-x="958" d="M-82 -29l1122 1508h68l-1122 -1508h-68z" />
-<glyph unicode="0" horiz-adv-x="1157" d="M63 336q0 182 93 356t247 282.5t326 108.5q157 0 239.5 -95t82.5 -267q0 -183 -89 -357.5t-239.5 -283.5t-323.5 -109q-103 0 -179 42t-116.5 124t-40.5 199zM252 317q0 -309 186 -309q115 0 212.5 108.5t154.5 281.5t57 354q0 158 -45 226.5t-127 68.5 q-110 0 -211.5 -103.5t-164 -272.5t-62.5 -354z" />
-<glyph unicode="1" horiz-adv-x="700" d="M102 762l7 43q119 36 208.5 80.5t149.5 87t135 104.5h41l-317 -1077h-179l263 887q-121 -68 -308 -125z" />
-<glyph unicode="2" horiz-adv-x="1030" d="M-43 0l10 43q36 28 252.5 180.5t355 315t138.5 317.5q0 84 -40.5 132t-117.5 48q-74 0 -156.5 -49t-138 -125.5t-55.5 -154.5q0 -51 28 -75t91 -24q53 0 95 20t93 64l25 -28q-54 -51 -113.5 -75t-114.5 -24q-63 0 -108 31t-45 109q0 90 64 177.5t172 143t231 55.5 q126 0 201 -53t75 -149q0 -143 -146 -282t-325.5 -263.5t-216.5 -155.5q57 0 155 -17.5t163 -28.5t116 -11q141 0 141 98q0 75 -90 117l27 26q113 -52 113 -161q0 -57 -27 -105t-84.5 -78t-144.5 -30q-66 0 -149.5 20.5t-135 31t-119.5 10.5q-61 0 -108.5 -11.5 t-110.5 -38.5z" />
-<glyph unicode="3" horiz-adv-x="993" d="M-164 -309l10 37q176 11 352.5 79.5t294 192.5t117.5 293q0 82 -46 132t-128 54q-48 -19 -72 -27t-47 -8q-36 0 -36 21q0 2 2 10q8 38 97 38q26 0 40 -1q82 31 150.5 84t109.5 120.5t41 141.5q0 86 -45 135t-123 49q-70 0 -148 -39.5t-130 -102t-52 -126.5q0 -50 28 -74 t91 -24q69 0 127 31l23 -31q-80 -43 -164 -43q-64 0 -109 30.5t-45 108.5q0 75 61 148.5t164 120t222 46.5q126 0 201 -53t75 -149q0 -88 -65 -164t-162.5 -129.5t-196.5 -79.5q93 -2 167.5 -29t117.5 -79t43 -125q0 -176 -155 -309t-381 -204.5t-429 -74.5z" />
-<glyph unicode="4" horiz-adv-x="1055" d="M-104 70l12 43l893 970h53l-240 -897h275l-33 -116h-273l-96 -359h-178l96 359h-509zM29 186h407l167 627z" />
-<glyph unicode="5" horiz-adv-x="940" d="M-166 -303l10 37q166 1 333.5 68t278.5 194.5t111 300.5q0 82 -52.5 129t-162.5 47q-108 0 -227 -55l-21 10l308 633q54 3 108 -14.5t90 -27t95 -9.5q116 0 169 92l25 -15q-103 -225 -281 -225q-25 0 -50.5 9.5t-79.5 36.5t-85 27q-8 0 -12 -1l-229 -469q66 35 134 52.5 t153 17.5q157 0 235 -64t78 -170q0 -188 -150 -322.5t-366.5 -204.5t-411.5 -77z" />
-<glyph unicode="6" horiz-adv-x="1079" d="M74 338q0 290 164.5 538t400 406.5t434.5 196.5l12 -41q-197 -47 -388.5 -215t-314 -416.5t-122.5 -525.5q0 -150 37.5 -209.5t110.5 -59.5q108 0 192 100t130 246t46 273q0 207 -133 207q-67 0 -131 -58.5t-111 -191.5l-32 12q50 159 143.5 228t198.5 69q77 0 135 -36 t90.5 -105t32.5 -166q0 -159 -82 -302t-219 -230t-293 -87q-154 0 -227.5 92t-73.5 275z" />
-<glyph unicode="7" horiz-adv-x="997" d="M100 817q0 62 31.5 119t96.5 93t161 36q63 0 116.5 -13t163 -51.5t196.5 -38.5q61 0 107 20.5t83 70.5h53q-56 -75 -239 -286.5t-302.5 -398.5t-177.5 -405q-11 -38 -20.5 -91t-14.5 -71q-13 -44 -46.5 -74t-80.5 -30q-64 0 -64 69q0 18 5 46q32 187 195.5 409.5 t366.5 450t253 288.5q-130 -88 -301 -88q-57 0 -101.5 8.5t-121.5 30t-133 21.5q-80 0 -128 -35t-48 -102q0 -86 69 -143.5t215 -92.5l-12 -31q-322 62 -322 289z" />
-<glyph unicode="8" horiz-adv-x="1114" d="M20 236q0 167 144 300.5t347 221.5q-60 58 -99.5 106.5t-64.5 108t-25 129.5q0 110 70 196t183 133.5t236 47.5q130 0 209.5 -55t79.5 -162q0 -237 -406 -451q82 -79 129 -132.5t81 -125.5t34 -158q0 -127 -74 -223t-201 -148.5t-280 -52.5q-166 0 -264.5 65.5 t-98.5 199.5zM201 217q0 -99 46.5 -154t153.5 -55q93 0 174.5 41t131 119.5t49.5 183.5q0 79 -30 145t-73.5 116t-117.5 122q-98 -54 -173.5 -135.5t-118 -180.5t-42.5 -202zM492 1147q0 -60 23.5 -113.5t61 -99t94.5 -101.5q71 48 131 117t96 151.5t36 166.5 q0 174 -160 174q-76 0 -141 -37.5t-103 -105t-38 -152.5z" />
-<glyph unicode="9" horiz-adv-x="1051" d="M-37 -344q192 45 379 206.5t306.5 402t119.5 507.5q0 150 -37 209t-110 59q-109 0 -193 -100t-130 -245.5t-46 -272.5q0 -207 133 -207q67 0 131 58.5t111 191.5l32 -12q-50 -160 -143 -228.5t-199 -68.5q-77 0 -135 35.5t-90.5 104.5t-32.5 167q0 158 82 301t219 230 t293 87q154 0 227.5 -91.5t73.5 -274.5q0 -281 -161 -520t-392 -391.5t-426 -188.5z" />
-<glyph unicode=":" horiz-adv-x="569" d="M32 76q0 40 22 76.5t57.5 58.5t73.5 22q46 0 75 -30.5t29 -76.5q0 -40 -21.5 -75.5t-57.5 -57.5t-75 -22q-45 0 -74 30t-29 75zM237 924q0 40 22 76.5t57.5 58.5t73.5 22q46 0 75 -30.5t29 -76.5q0 -40 -21.5 -75.5t-57.5 -57.5t-75 -22q-45 0 -74 30t-29 75z" />
-<glyph unicode=";" horiz-adv-x="588" d="M-6 -246q97 59 154 129t63 140q-59 -52 -107 -52q-36 0 -56.5 19.5t-20.5 52.5q0 43 27.5 87.5t71.5 73.5t89 29t67.5 -35t22.5 -85q0 -71 -36 -143t-104 -135.5t-161 -108.5zM239 924q0 40 22 76.5t57.5 58.5t73.5 22q46 0 75 -30.5t29 -76.5q0 -40 -21.5 -75.5 t-57.5 -57.5t-75 -22q-45 0 -74 30t-29 75z" />
-<glyph unicode="&#x3c;" horiz-adv-x="1233" d="M104 727l1131 465l20 -59l-997 -414l678 -357l-33 -65z" />
-<glyph unicode="=" horiz-adv-x="1358" d="M143 553l19 61h1026l-19 -61h-1026zM225 840l19 61h1026l-19 -61h-1026z" />
-<glyph unicode="&#x3e;" horiz-adv-x="1233" d="M106 377l943 393l-758 406l33 59l878 -473l-1075 -445z" />
-<glyph unicode="?" horiz-adv-x="897" d="M176 584q0 106 74 186.5t174 154.5t133 99q102 78 157.5 130.5t82 104t26.5 115.5q0 88 -46.5 140.5t-139.5 52.5q-68 0 -133 -26.5t-80 -74.5q19 -5 35 -28.5t16 -53.5q0 -44 -31 -72t-77 -28q-41 0 -61.5 23t-20.5 63q0 66 55.5 119t145 83t184.5 30q137 0 220 -63 t83 -179q0 -65 -31.5 -130t-105.5 -141.5t-201 -175.5q-56 -42 -156 -116t-137 -124t-37 -112t35.5 -101.5t110.5 -39.5q60 0 117.5 24.5t78.5 65.5q-19 2 -36.5 24t-16.5 48q0 32 26 58t66 26q31 0 50.5 -17.5t19.5 -54.5q0 -61 -53 -109t-133.5 -74t-157.5 -26 q-108 0 -172 51.5t-64 147.5zM218 76q0 40 22 76.5t57.5 58.5t73.5 22q46 0 75 -30.5t29 -76.5q0 -40 -21.5 -75.5t-57.5 -57.5t-75 -22q-45 0 -74 30t-29 75z" />
-<glyph unicode="@" horiz-adv-x="1737" d="M59 293q0 273 133.5 522t361 401t495.5 152q185 0 328.5 -59.5t227 -185.5t83.5 -318q0 -217 -95 -389t-234.5 -267.5t-264.5 -95.5q-148 0 -148 133q0 48 19 114q-62 -127 -133 -187t-170 -60q-110 0 -160.5 67.5t-50.5 180.5q0 152 80 311t204.5 263t247.5 104 q62 0 96 -31.5t39 -101.5l29 104q117 0 184 29l-217 -752q-13 -42 -13 -70q0 -29 14.5 -41t45.5 -12q78 0 195 87.5t204 247.5t87 368q0 182 -79.5 299t-213.5 171t-303 54q-247 0 -466.5 -142.5t-352 -381t-132.5 -510.5q0 -204 78 -336t216 -193t321 -61q237 0 422 111 l14 -27q-79 -56 -192.5 -88.5t-245.5 -32.5q-196 0 -342.5 66.5t-229 206t-82.5 350.5zM625 313q0 -198 106 -198q77 0 149.5 106t153.5 325l68 242q-2 144 -111 144q-95 0 -179.5 -93.5t-135.5 -238t-51 -287.5z" />
-<glyph unicode="A" d="M-178 0l10 41q94 20 205 178l883 1241h30l82 -1288q5 -67 34.5 -98t66.5 -33l-9 -41q-82 6 -223 6q-165 0 -246 -6l9 41q70 3 108 17t54 50q14 30 14 85v20l-19 336h-503l-154 -217q-96 -136 -96 -204q0 -84 151 -87l-10 -41q-114 6 -234 6q-89 0 -153 -6zM347 590h472 l-34 619z" />
-<glyph unicode="B" horiz-adv-x="1294" d="M-68 0l9 41q74 3 110.5 16t58.5 48t42 112l270 1016q17 68 17 98q0 41 -30 59t-108 19l10 41q84 -6 244 -6q46 0 141 2t148 2q190 0 287.5 -70t97.5 -192q0 -100 -59 -183.5t-154 -142.5t-207 -94q336 -55 336 -334q0 -139 -88 -237t-228 -146.5t-294 -48.5q-49 0 -163 3 t-190 3q-163 0 -250 -6zM323 117q0 -38 27 -54t96 -16q261 0 377.5 105t116.5 311q0 272 -293 272h-168l-137 -518q-19 -73 -19 -100zM488 770h135q119 0 211 55.5t142 147.5t50 198q0 122 -52.5 180t-168.5 58q-62 0 -96.5 -12t-54.5 -42t-36 -91z" />
-<glyph unicode="C" horiz-adv-x="1372" d="M104 453q0 236 118 475.5t323.5 395t451.5 155.5q83 0 139 -18t90.5 -44.5t76.5 -70.5q18 -18 31 -18q36 0 81 122h43q-68 -177 -131 -471h-45q12 80 12 140q0 96 -32 163q-38 76 -110.5 118t-158.5 42q-170 0 -328.5 -160t-257 -402.5t-98.5 -469.5q0 -198 77.5 -300 t215.5 -102q90 0 190.5 42t174.5 118q52 53 91.5 124t92.5 200h45q-93 -340 -121 -492h-45q6 44 6 70q0 52 -24 52q-16 0 -43 -18q-73 -47 -122.5 -73t-114.5 -43t-150 -17q-228 0 -353 123t-125 359z" />
-<glyph unicode="D" horiz-adv-x="1485" d="M-61 0l6 41q70 3 105.5 16t57.5 48.5t42 111.5l268 1016q19 74 19 101q0 40 -30 56.5t-108 18.5l6 41q110 -7 200 -7l50 1q282 6 309 6q288 0 433 -115t145 -338q0 -256 -126.5 -486t-349 -370.5t-495.5 -140.5q-28 0 -133.5 3t-153.5 3q-165 0 -245 -6zM321 112 q0 -39 28 -57t97 -18q254 0 434.5 138.5t272.5 369t92 504.5q0 185 -104 274.5t-334 89.5q-64 0 -100 -14.5t-58 -51.5t-41 -110l-268 -1024q-19 -71 -19 -101z" />
-<glyph unicode="E" horiz-adv-x="1249" d="M-72 0l11 41q74 3 110 16t58 48t43 112l272 1016q18 65 18 100q0 30 -13.5 45.5t-42 22t-81.5 8.5l10 41q201 -6 594 -6q287 0 408 6q-54 -148 -78 -242q-23 -80 -29 -127h-47q18 110 18 165q0 59 -19 92.5t-63.5 49t-123.5 15.5h-150q-73 0 -109.5 -12t-58.5 -46.5 t-43 -111.5l-129 -483h135q102 0 153 61t76 125t34 84h47q-42 -129 -60.5 -201t-23.5 -90q-27 -96 -66 -291h-47q2 14 9 59t7 80q0 63 -31 97.5t-110 34.5h-134l-132 -492q-18 -64 -18 -99q0 -30 14 -45t43 -20.5t82 -5.5h149q128 0 203.5 34t125.5 109t103 220h48 q-20 -50 -46 -148q-30 -110 -55 -262q-139 6 -469 6q-393 0 -592 -6z" />
-<glyph unicode="F" horiz-adv-x="1159" d="M-72 0l11 41q74 3 110 16t58 48t43 112l272 1016q18 65 18 100q0 30 -13.5 45.5t-42 22t-81.5 8.5l10 41q201 -6 594 -6q287 0 408 6q-53 -149 -84 -262q-22 -76 -39 -168h-47q23 136 23 204q0 67 -21.5 105.5t-72.5 56t-142 17.5h-109q-73 0 -109.5 -12t-58.5 -46.5 t-43 -111.5l-135 -504h150q104 0 155 62.5t75.5 126t31.5 81.5h47q-41 -125 -60 -197.5t-24 -92.5q-43 -181 -66 -291h-47q3 18 10 63.5t7 78.5q0 61 -31 94.5t-109 33.5h-150l-126 -471q-16 -61 -16 -91q0 -34 17 -51.5t54 -24.5t105 -9l-11 -41q-106 6 -301 6 q-173 0 -260 -6z" />
-<glyph unicode="G" horiz-adv-x="1444" d="M102 440q0 237 116 479.5t321.5 401t459.5 158.5q85 0 146 -17t103.5 -45t86.5 -71q19 -19 36 -19q39 0 81 123h45q-68 -177 -131 -471h-45q10 88 10 154q0 94 -28 149q-43 75 -128 117.5t-188 42.5q-212 0 -369.5 -178t-241 -430t-83.5 -461q0 -184 87 -272.5t267 -88.5 q67 0 128 19t106 45q41 24 61.5 55t32.5 74l47 180q18 68 18 106q0 36 -17 54.5t-52.5 26t-102.5 10.5l11 41q99 -7 286 -7q146 0 215 7l-10 -41q-49 -4 -73 -16.5t-40.5 -46.5t-37.5 -113l-109 -406h-41q6 32 6 54q0 63 -31 63q-13 0 -27.5 -6.5t-49.5 -28.5 q-86 -55 -169.5 -83t-179.5 -28q-250 0 -383 122t-133 347z" />
-<glyph unicode="H" horiz-adv-x="1546" d="M-68 0l11 41q72 3 108 16t57.5 48.5t41.5 111.5l270 1016q17 65 17 98q0 31 -14 47t-42.5 22.5t-81.5 8.5l10 41q84 -6 260 -6q164 0 262 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-128 -483h657l129 483q18 63 18 98q0 31 -14 47t-43 22.5t-82 8.5l10 41 q93 -6 258 -6q175 0 264 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-18 -70 -18 -100t13.5 -45.5t42.5 -22t83 -8.5l-9 -41q-86 6 -262 6q-164 0 -260 -6l8 41q74 3 111 16t58.5 48t41.5 112l131 492h-657l-131 -492q-17 -66 -17 -99q0 -30 13.5 -46 t42.5 -22.5t82 -8.5l-8 -41q-96 6 -260 6q-171 0 -261 -6z" />
-<glyph unicode="I" horiz-adv-x="698" d="M-68 0l11 41q72 3 108 16t57.5 48.5t41.5 111.5l270 1016q17 65 17 98q0 31 -14 47t-42.5 22.5t-81.5 8.5l10 41q84 -6 260 -6q165 0 262 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-17 -66 -17 -99q0 -30 13.5 -46t42.5 -22.5t82 -8.5l-8 -41 q-96 6 -260 6q-171 0 -261 -6z" />
-<glyph unicode="J" horiz-adv-x="1303" d="M92 -268q0 29 14.5 55.5t40.5 43.5t58 17q37 0 61.5 -24.5t24.5 -60.5q0 -34 -23 -61.5t-59 -43.5q30 -10 72 -10q132 0 196.5 129.5t105.5 295t56 224.5l61 240q23 91 57 172h-272l7 41h283q59 129 143.5 234.5t183.5 190.5t235 183q-237 -123 -405 -123 q-99 0 -200.5 38.5t-160.5 57.5t-143 19q-68 0 -102 -36q-31 -33 -31 -90v-10q1 -60 40 -97.5t111 -51.5l-6 -41q-93 16 -157.5 73t-67.5 165v14q0 65 25 116q28 57 83 89t130 32t134 -27.5t177 -109.5t227 -82q66 0 122.5 11t107 29t133.5 52q77 120 127 120q14 0 28 -11 q13 -11 13 -25q0 -50 -150 -106q-287 -192 -426 -614h203l-6 -41h-210q-11 -39 -22 -80l-127 -496q-58 -229 -179.5 -373.5t-303.5 -144.5q-96 0 -152.5 30t-56.5 87z" />
-<glyph unicode="K" horiz-adv-x="1382" d="M-68 0l11 41q72 3 108 16t57.5 48.5t41.5 111.5l270 1016q17 65 17 98q0 31 -14 47t-42.5 22.5t-81.5 8.5l10 41q84 -6 260 -6q164 0 262 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-17 -66 -17 -99q0 -30 13.5 -46t42.5 -22.5t82 -8.5l-8 -41 q-96 6 -260 6q-171 0 -261 -6zM535 756q0 41 61 41q42 0 125 -21q148 18 219 119t137 293t127 244q61 47 123 47q63 0 92 -30.5t29 -79.5q0 -27 -12.5 -60.5t-39 -57.5t-67.5 -24q-40 0 -60 24t-20 58q0 29 19 64.5t47 62.5h-6q-41 -2 -74 -29q-53 -48 -118 -232.5 t-137 -292t-224 -125.5q74 -17 118 -42.5t70 -86.5t26 -173l-1 -35l-8 -232l-1 -24q0 -40 13 -60t49 -20q52 0 87 38t65 122l34 104h41l-53 -158q-38 -112 -99.5 -165.5t-150.5 -53.5q-173 0 -173 203q0 23 1 35l14 231q3 43 3 79q0 91 -18 136.5t-57 78.5q-72 -19 -118 -19 q-63 0 -63 41z" />
-<glyph unicode="L" horiz-adv-x="1200" d="M-72 0l11 41q74 3 110 16t58 48t43 112l272 1016q18 65 18 100q0 30 -13.5 45.5t-42 22t-81.5 8.5l10 41q87 -6 262 -6q165 0 261 6l-11 -41q-75 -3 -111.5 -16t-58.5 -48t-43 -112l-272 -1016q-18 -64 -18 -99q0 -30 14 -45t43 -20.5t82 -5.5h149q128 0 204 36 t127.5 115.5t107.5 231.5h47q-13 -34 -52 -168q-30 -110 -55 -262q-139 6 -469 6q-393 0 -592 -6z" />
-<glyph unicode="M" horiz-adv-x="1778" d="M-70 0l11 41q72 3 110.5 20.5t61 57.5t43.5 119l266 995q17 65 17 98q0 31 -14 47t-42.5 22.5t-81.5 8.5l10 41q65 -6 183 -6q109 0 180 6l112 -1214l770 1208h99q157 0 256 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-271 -1016q-17 -65 -17 -98q0 -31 14 -47 t42.5 -22.5t81.5 -8.5l-8 -41q-96 6 -254 6q-180 0 -266 -6l8 41q75 3 111.5 16t58 48t41.5 112l297 1104l-850 -1331h-45l-139 1347l-291 -1099q-18 -70 -18 -103q0 -50 34.5 -70.5t120.5 -23.5l-10 -41q-70 6 -207 6q-122 0 -193 -6z" />
-<glyph unicode="N" horiz-adv-x="1577" d="M-147 -45q0 35 14 68.5t41 55t65 21.5q42 0 60 -24t18 -56q0 -33 -18.5 -67.5t-46.5 -61.5h6q106 4 170 107q78 123 161.5 444.5t182.5 835.5q4 24 4 46q0 34 -14.5 51.5t-47.5 24.5t-96 9l10 41q66 -6 183 -6q96 0 166 6l387 -1132q89 397 173 683t171 412 q90 131 221 131q66 0 94.5 -29t28.5 -75q0 -36 -14 -70t-41.5 -56t-65.5 -22q-41 0 -59.5 24t-18.5 56q0 33 19 67.5t47 61.5h-6q-100 -3 -168 -104q-91 -136 -189 -477t-223 -930h-45l-467 1319q-101 -516 -190 -870t-170 -462q-47 -60 -96.5 -94.5t-123.5 -34.5 q-122 0 -122 107z" />
-<glyph unicode="O" horiz-adv-x="1493" d="M111 463q0 232 109 469t304.5 392t440.5 155q151 0 259.5 -58t166 -169t57.5 -267q0 -231 -110 -467.5t-306 -391.5t-440 -155q-151 0 -259 58t-165 168.5t-57 265.5zM328 436q0 -132 35.5 -228.5t99.5 -148t147 -51.5q155 0 298.5 147.5t232 381.5t88.5 477 q0 132 -36 228.5t-100 148t-147 51.5q-154 0 -297.5 -147.5t-232 -381.5t-88.5 -477z" />
-<glyph unicode="P" horiz-adv-x="1206" d="M-68 0l9 41q74 3 110.5 16t58.5 48t42 112l270 1016q18 65 18 98q0 42 -30.5 59.5t-108.5 18.5l10 41q84 -6 252 -6q49 0 148.5 2t150.5 2q201 0 304.5 -82.5t103.5 -226.5q0 -160 -97.5 -286.5t-273.5 -198.5t-401 -72h-61l-97 -365q-20 -78 -20 -103q0 -38 30.5 -54.5 t110.5 -18.5l-8 -41q-96 6 -254 6q-180 0 -267 -6zM448 623h70q287 0 416 149.5t129 398.5q0 122 -62 180t-198 58q-62 0 -96.5 -15t-56 -52t-40.5 -109z" />
-<glyph unicode="Q" horiz-adv-x="1599" d="M-92 -16q0 53 32.5 94.5t89.5 64.5t128 23q72 0 136 -24t116.5 -60t129.5 -97q203 102 383.5 274t292 378t111.5 405q0 120 -40.5 210t-119.5 140t-190 50q-151 0 -270 -88t-184.5 -228t-65.5 -288q0 -147 63.5 -220t169.5 -73q90 0 164 49t116 124.5t42 149.5 q0 57 -15 82q-21 -42 -63.5 -67t-87.5 -25t-70.5 26.5t-25.5 69.5q0 54 40 89.5t101 35.5q73 0 117.5 -55t44.5 -145q0 -101 -56.5 -188.5t-157.5 -140t-227 -52.5q-115 0 -197 45t-124.5 126t-42.5 187q0 175 109.5 318t286 224t368.5 81q162 0 281.5 -51t183 -146.5 t63.5 -226.5q0 -207 -142.5 -419t-365.5 -388t-460 -289q80 -63 149 -106t157.5 -71t194.5 -28q102 0 175.5 31.5t119.5 108.5q-29 -13 -63 -13q-47 0 -74 28t-27 71q0 31 16 59.5t43.5 45.5t61.5 17q45 0 73.5 -31t28.5 -85q0 -90 -79.5 -176.5t-202 -140.5t-242.5 -54 q-100 0 -186.5 39t-155 96.5t-148.5 142.5q-171 -61 -292 -61q-101 0 -157 40.5t-56 111.5zM-53 -12q0 -121 196 -121q103 0 246 52q-66 70 -108.5 109.5t-89.5 66t-95 26.5q-37 0 -71.5 -16t-56 -46.5t-21.5 -70.5z" />
-<glyph unicode="R" horiz-adv-x="1360" d="M-68 0l9 41q74 3 110.5 16t58.5 48t42 112l270 1016q18 65 18 96q0 43 -31 61t-108 19l10 41q84 -6 252 -6q49 0 148.5 2t150.5 2q201 0 304.5 -77.5t103.5 -211.5q0 -111 -65.5 -204.5t-186.5 -158t-283 -91.5q34 -4 72 -11q80 -15 128.5 -39.5t73.5 -69.5t25 -118 q0 -13 -2 -43l-16 -209q-2 -28 -2 -42q0 -126 64 -126q36 0 63.5 41.5t60.5 130.5l10 29h48l-9 -27q-36 -129 -92.5 -189.5t-150.5 -60.5q-61 0 -103 24.5t-62.5 65.5t-20.5 89l1 18l17 229q3 34 3 64q0 87 -31 134.5t-112 69.5t-235 23l-125 -471q-19 -71 -19 -100 q0 -41 30.5 -58t109.5 -18l-8 -41q-96 6 -254 6q-180 0 -267 -6zM476 729h63q276 0 400 120.5t124 321.5q0 122 -62 180t-198 58q-62 0 -96.5 -15t-56 -52t-40.5 -109z" />
-<glyph unicode="S" horiz-adv-x="1135" d="M-37 -14q69 163 139 491h41q-11 -61 -15 -95q-3 -27 -3 -56v-15q13 -299 334 -299q139 0 220 63.5t81 192.5q0 168 -156.5 316.5t-236.5 242t-80 252.5q0 126 64 216.5t167.5 137t218.5 46.5q84 0 145.5 -20.5t121.5 -65.5q47 -37 67 -37q17 0 32 25t36 83h41 q-74 -180 -121 -417h-41q12 57 12 116q0 78 -30.5 140.5t-96 99.5t-164.5 37q-129 0 -207.5 -66t-78.5 -194q0 -151 171.5 -310.5t259 -257t87.5 -239.5q0 -134 -77 -224.5t-195.5 -134t-245.5 -43.5q-108 0 -173.5 26.5t-117.5 68.5q-39 30 -74 30q-24 0 -41 -24t-43 -86 h-41z" />
-<glyph unicode="T" horiz-adv-x="1350" d="M203 1251q0 107 108 160q96 47 275 47q81 0 156 -7t237.5 -28.5t280.5 -21.5q91 0 152.5 10t110.5 35q-50 51 -50 115q0 46 25.5 79t74.5 33q45 0 68.5 -28t23.5 -70q0 -45 -26.5 -83t-69.5 -65q-109 -67 -324 -67q-91 0 -210 14l-302 -1136q-18 -64 -18 -104 q0 -35 17 -54.5t53.5 -28t101.5 -10.5l-8 -41q-108 6 -306 6q-200 0 -299 -6l9 41q87 3 134.5 21t74.5 58t51 118l309 1160q-166 23 -264 23q-178 0 -230 -35q16 -21 26.5 -54.5t10.5 -63.5q0 -47 -26 -83t-76 -36q-44 0 -67 27.5t-23 74.5z" />
-<glyph unicode="U" horiz-adv-x="1397" d="M170 290q0 106 51 300l170 643q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l13 41q82 -6 264 -6q157 0 256 6l-12 -41q-75 -3 -112 -16t-58 -48t-41 -112l-181 -678q-45 -177 -45 -277q0 -113 55.5 -174t186.5 -61q215 0 338.5 139.5t189.5 390.5l168 639q14 56 14 91 q0 56 -35 79t-116 27l10 41q70 -6 207 -6q123 0 193 6l-11 -41q-72 -3 -111.5 -21t-63 -58t-42.5 -118l-159 -616q-75 -285 -201 -434q-75 -88 -185 -139.5t-235 -51.5q-219 0 -315 111q-72 80 -72 208z" />
-<glyph unicode="V" horiz-adv-x="1294" d="M197 1409l10 41q80 -6 221 -6q156 0 246 6l-10 -41q-64 -3 -98 -11.5t-52 -33t-18 -74.5q0 -13 4 -53l116 -989l568 870q88 135 88 203q0 45 -37.5 65.5t-114.5 22.5l10 41q114 -6 234 -6q91 0 156 6l-11 -41q-109 -23 -206 -178l-807 -1241h-31l-162 1288q-8 67 -39 98 t-67 33z" />
-<glyph unicode="W" horiz-adv-x="1847" d="M176 1409l8 41q84 -6 203 -6q148 0 221 6l-8 -41q-63 -4 -90.5 -28.5t-27.5 -90.5q0 -23 3 -53l115 -977l429 726l-46 292q-20 127 -92 131l8 41q73 -6 182 -6q177 0 262 6l-8 -41q-62 -3 -95.5 -12t-49.5 -31t-16 -64q0 -27 6 -65l146 -931l400 812q68 136 68 200 q0 50 -38 69.5t-120 21.5l11 41q112 -6 233 -6q92 0 156 6l-11 -41q-121 -25 -194 -178l-612 -1241h-33l-147 933l-556 -933h-32l-162 1288q-18 127 -113 131z" />
-<glyph unicode="X" horiz-adv-x="1432" d="M-69 77q0 30 13 64t40.5 58t68.5 24q40 0 59 -22.5t19 -55.5q0 -30 -18 -67t-47 -64h8q69 3 129 43q106 70 234 230t241 393l-53 453q-13 108 -50 170.5t-112 62.5q-60 0 -97 -37.5t-67 -122.5l-35 -104h-41l53 158q39 112 100.5 165.5t149.5 53.5q134 0 192.5 -89.5 t76.5 -230.5l37 -316q80 173 188.5 329.5t204.5 234.5q93 72 188 72q63 0 92.5 -29.5t29.5 -76.5q0 -30 -13 -64t-40.5 -58t-68.5 -24q-39 0 -58.5 22.5t-19.5 55.5q0 31 18.5 67.5t47.5 63.5h-6q-71 0 -131 -43q-92 -67 -206 -226t-219 -386l54 -464q12 -108 49 -170.5 t113 -62.5q60 0 97 37.5t67 122.5l34 104h41l-53 -158q-38 -112 -99.5 -165.5t-150.5 -53.5q-134 0 -192.5 90t-75.5 230l-37 322q-54 -112 -130 -224t-158.5 -203t-155.5 -143q-95 -72 -189 -72q-63 0 -92.5 29.5t-29.5 76.5z" />
-<glyph unicode="Y" horiz-adv-x="1372" d="M199 1102l67 198q22 64 46 102t61 57.5t94 19.5q108 0 174.5 -88t103.5 -245.5t64 -408.5q148 372 383 609q133 133 242 133q60 0 87 -31.5t27 -78.5q0 -30 -13 -63t-40.5 -56t-67.5 -23q-77 0 -77 81q0 33 18 67t47 61h-6q-55 -3 -113 -45q-108 -78 -231.5 -251.5 t-236.5 -447.5l-119 -475q-17 -66 -17 -99q0 -30 13.5 -46t42 -22.5t81.5 -8.5l-10 -41q-92 6 -254 6q-180 0 -268 -6l10 41q74 3 111 16t59 48.5t41 111.5l120 478q-73 671 -239 671q-35 0 -58 -22t-40 -74l-57 -168h-45z" />
-<glyph unicode="Z" horiz-adv-x="1335" d="M-71 17q0 28 38 62.5t115 63.5l576 566h-332l14 41h359l571 561q-188 -111 -355 -111q-87 0 -174.5 38.5t-139 57.5t-124.5 19q-68 0 -103.5 -35.5t-35.5 -99.5q0 -120 147 -150l-8 -41q-92 17 -154.5 73.5t-62.5 164.5q0 73 30 130t86.5 89.5t131.5 32.5 q67 0 118.5 -27.5t152.5 -109.5t198 -82q79 0 142 21t161 71q37 53 77.5 86t72.5 33q16 0 30 -11q12 -10 12 -27q0 -28 -38 -62.5t-115 -63.5l-567 -557h311l-16 -41h-336l-580 -570q188 111 354 111q87 0 175 -38.5t139.5 -57.5t124.5 -19q68 0 103.5 35.5t35.5 99.5 q0 120 -148 150l9 41q92 -17 154.5 -73.5t62.5 -164.5q0 -73 -30 -130t-86.5 -89.5t-131.5 -32.5q-68 0 -119 28t-152.5 109.5t-197.5 81.5q-79 0 -142.5 -21.5t-160.5 -70.5q-37 -53 -78.5 -86t-72.5 -33q-16 0 -29 11q-12 10 -12 27z" />
-<glyph unicode="[" horiz-adv-x="614" d="M-50 -371l486 1952h348l-8 -39h-166l-469 -1874h166l-8 -39h-349z" />
-<glyph unicode="\" horiz-adv-x="1008" d="M270 1479h64l467 -1508h-68z" />
-<glyph unicode="]" horiz-adv-x="614" d="M-170 -371l8 39h166l469 1874h-166l8 39h349l-486 -1952h-348z" />
-<glyph unicode="^" horiz-adv-x="1096" d="M174 688q147 63 277 169t211 224h36q18 -118 91.5 -224t187.5 -169l-25 -29q-111 45 -209.5 112t-150.5 134q-78 -68 -189 -134.5t-221 -111.5z" />
-<glyph unicode="_" horiz-adv-x="1524" d="M-103 -327l21 82h1231l-23 -82h-1229z" />
-<glyph unicode="`" horiz-adv-x="457" d="M112 1671q0 41 33 58q15 6 32 6q53 0 89 -64q25 -43 54 -119t58 -147.5t75 -165.5l-27 -12q-51 72 -93 125.5t-107.5 131.5t-92.5 122q-21 34 -21 65z" />
-<glyph unicode="a" horiz-adv-x="1071" d="M18 219q0 166 88.5 371t229 348t287.5 143q54 0 89.5 -40t41.5 -113l32 125q114 3 189 28l-256 -905q-15 -54 -15 -76q0 -51 46 -51q90 0 157 209l25 76h39l-51 -150q-42 -114 -105 -163.5t-131 -49.5q-38 0 -67.5 14.5t-45.5 39.5q-17 30 -17 72q0 30 7 62.5t15 62 t10 38.5l37 149q-98 -230 -199.5 -334t-212.5 -104q-94 0 -143.5 67.5t-49.5 180.5zM199 195q0 -85 18 -121.5t53 -36.5q57 0 136.5 87.5t156 233.5t126.5 312l38 149q2 32 2 45q0 82 -29.5 130t-83.5 48q-87 0 -185.5 -135.5t-165 -335.5t-66.5 -376z" />
-<glyph unicode="b" horiz-adv-x="1032" d="M-23 -18q25 48 39 118l359 1266q8 34 8 55q0 42 -31 61t-106 19l10 43q109 1 195 22t165 62l-265 -967q96 220 190.5 320t199.5 100q99 0 156 -73t57 -215q0 -166 -73.5 -359.5t-210.5 -328t-316 -134.5q-61 0 -107.5 36t-64.5 101l-174 -141zM206 132q26 -61 61.5 -87.5 t84.5 -26.5q109 0 207.5 136t158.5 331t60 353q0 88 -25.5 133t-70.5 45q-55 0 -126.5 -83.5t-145 -227t-133.5 -316.5z" />
-<glyph unicode="c" horiz-adv-x="885" d="M37 272q0 166 78 357t219 321.5t321 130.5q61 0 111.5 -21t80.5 -60.5t30 -92.5q0 -40 -18 -78t-51.5 -62t-76.5 -24q-41 0 -62.5 23t-21.5 57q0 58 45.5 100.5t108.5 53.5q-44 63 -139 63q-103 0 -204.5 -110.5t-166 -292.5t-64.5 -383q0 -100 38 -148.5t106 -48.5 q166 0 307 205l41 -16q-42 -72 -106 -134.5t-143.5 -101.5t-162.5 -39q-126 0 -198 77t-72 224z" />
-<glyph unicode="d" horiz-adv-x="1110" d="M25 242q0 169 89 367.5t241 335t331 136.5q40 0 75 -26t50 -72l102 383q9 32 9 55q0 41 -32 60.5t-108 19.5l13 43q109 1 195 22t167 62l-401 -1454q-12 -41 -12 -70q0 -57 49 -57q41 0 75.5 47.5t73.5 161.5l25 76h39l-48 -150q-35 -114 -99.5 -162.5t-137.5 -48.5 q-63 0 -96 33t-33 95q0 55 26 159l27 103q-97 -206 -196 -298t-211 -92q-100 0 -156.5 68t-56.5 203zM207 215q0 -178 90 -178q59 0 138.5 83.5t157 224t128.5 301.5l76 284q-13 53 -42.5 78.5t-66.5 25.5q-124 0 -235 -132.5t-178.5 -326t-67.5 -360.5z" />
-<glyph unicode="e" horiz-adv-x="879" d="M25 260q0 155 91 350.5t246.5 333t337.5 137.5q66 0 109 -35t43 -100q0 -166 -185 -289t-427 -205q-23 -102 -23 -198q0 -197 141 -197q175 0 316 205l33 -16q-42 -72 -106 -134.5t-143.5 -101.5t-162.5 -39q-127 0 -198.5 74.5t-71.5 214.5zM249 491q202 71 279 132 q76 59 118 143.5t42 183.5q0 55 -8 73.5t-25 18.5q-66 0 -147 -76.5t-151.5 -204t-107.5 -270.5z" />
-<glyph unicode="f" horiz-adv-x="657" d="M-51 -385l374 1397h-186l13 41h183l1 2q44 167 93 272.5t116 171.5q47 48 115 75.5t141 27.5q91 0 142.5 -41t51.5 -105q0 -35 -18 -67.5t-49.5 -53t-69.5 -20.5q-39 0 -61 18t-21 51q0 49 32 85.5t85 52.5q0 19 -27.5 34t-66.5 15q-60 0 -119 -53q-42 -40 -72 -126.5 t-56.5 -189.5t-37.5 -147l-1 -2h243l-13 -41h-241l-367 -1368q-108 -3 -184 -29z" />
-<glyph unicode="g" horiz-adv-x="920" d="M-197 -250q0 160 349 297q-78 33 -78 107q0 44 24.5 83.5t93 87.5t197.5 111q-129 3 -203.5 59t-74.5 164q0 86 48 184.5t152 168t262 69.5q58 0 105 -10q65 104 133 154q67 45 133 45q88 0 88 -72q0 -29 -16 -56.5t-42 -45t-56 -17.5q-26 0 -42 16t-16 44q0 41 27 73 q-4 4 -12 4q-17 0 -50 -20q-54 -35 -112 -134q153 -47 153 -210q0 -94 -51 -184.5t-144 -153t-211 -75.5q-33 -18 -103.5 -56t-105 -66t-34.5 -53q0 -38 123 -69l149 -39q78 -21 127.5 -42.5t77 -53.5t27.5 -80q0 -80 -69.5 -168.5t-207.5 -149.5t-331 -61q-154 0 -232 40.5 t-78 108.5zM-25 -215q0 -72 54 -111t141 -39q94 0 190.5 36t159 97t62.5 134q0 23 -20 33t-55 19t-48 13l-275 70q-209 -112 -209 -252zM289 606q0 -71 31.5 -102t91.5 -31q105 0 166 71.5t83.5 170t22.5 196.5q0 133 -121 133q-104 0 -165 -86.5t-85 -190.5t-24 -161z" />
-<glyph unicode="h" horiz-adv-x="1098" d="M-18 0l405 1366q10 35 10 56q0 41 -33 60t-108 19l12 43q213 3 369 84l-297 -1015q76 169 149.5 272t150 149.5t163.5 46.5q165 0 165 -155q0 -62 -30 -154l-199 -598q-15 -50 -15 -78q0 -49 48 -49q41 0 79 46.5t79 162.5l26 76h39l-51 -150q-72 -211 -248 -211 q-144 0 -144 126q0 62 34 161l194 586q22 62 22 102q0 70 -67 70q-75 0 -162 -94.5t-174.5 -266.5t-163.5 -398l-75 -257h-178z" />
-<glyph unicode="i" horiz-adv-x="618" d="M66 721l53 149q42 117 110 164t144 47q136 0 136 -128q0 -60 -34 -158l-219 -621q-16 -44 -16 -75q0 -52 49 -52q42 0 79 46.5t81 162.5l28 76h39l-53 -150q-40 -111 -107 -161t-145 -50q-143 0 -143 125q0 63 36 162l220 621q15 45 15 75q0 52 -44 52q-47 0 -84 -49.5 t-78 -159.5l-29 -76h-38zM384 1399q0 40 22 76.5t57.5 58.5t73.5 22q46 0 75 -30.5t29 -76.5q0 -40 -21.5 -75.5t-57.5 -57.5t-75 -22q-45 0 -74 30t-29 75z" />
-<glyph unicode="j" horiz-adv-x="565" d="M-303 -305q0 29 16.5 58.5t44.5 48t60 18.5q31 0 49 -18t18 -46q0 -55 -57 -110q78 9 124.5 58.5t78.5 162.5l284 1012q15 51 15 80q0 47 -45 47q-42 0 -79 -48t-77 -161l-27 -76h-39l50 149q70 211 252 211q136 0 136 -125q0 -54 -30 -161l-158 -559 q-141 -506 -399 -601q-59 -20 -121 -20q-46 0 -71 21.5t-25 58.5zM378 1399q0 40 22 76.5t57 58.5t73 22q47 0 76 -30.5t29 -76.5q0 -8 -2 -24q-11 -54 -55 -92.5t-97 -38.5q-45 0 -74 30t-29 75z" />
-<glyph unicode="k" horiz-adv-x="1055" d="M-18 0l405 1366q10 35 10 56q0 41 -33 60t-108 19l12 43q213 3 369 84l-299 -1019q136 11 198 76t118 188t108 161q62 47 123 47q66 1 95 -33q26 -30 26 -77v-10q-5 -48 -34.5 -90t-84.5 -42q-41 0 -60.5 24t-19.5 59q0 29 18.5 64.5t46.5 61.5h-4q-36 0 -75 -28 q-43 -35 -95 -146.5t-103.5 -177.5t-156.5 -89q130 -6 213.5 -55t83.5 -152q0 -26 -6 -54l-41 -205q-5 -27 -5 -40q0 -44 46 -44q41 0 77 47.5t75 161.5l24 76h39l-49 -150q-68 -211 -244 -211q-58 0 -95 33.5t-37 99.5q0 30 7 62l37 176q9 42 9 76q0 52 -23.5 85.5 t-76 53.5t-141.5 28l-171 -585h-178z" />
-<glyph unicode="l" horiz-adv-x="567" d="M25 104q0 59 28 154l334 1108q10 37 10 57q0 41 -32 59.5t-107 18.5l14 43q109 1 195.5 22t169.5 62l-428 -1454q-13 -45 -13 -72q0 -55 48 -55q41 0 77 47.5t76 161.5l27 76h39l-51 -150q-74 -211 -246 -211q-141 0 -141 133z" />
-<glyph unicode="m" horiz-adv-x="1657" d="M61 721l52 149q72 211 247 211q119 0 119 -123q0 -61 -30 -163l-65 -258q82 201 157 320t151.5 171.5t165.5 52.5q134 0 134 -144q0 -65 -27 -165l-73 -271q86 214 161.5 339.5t154 183t174.5 57.5q76 0 110 -41.5t34 -111.5q0 -69 -29 -156l-199 -598q-15 -48 -15 -78 q0 -49 48 -49q42 0 80 46.5t78 162.5l27 76h38l-51 -150q-72 -211 -248 -211q-91 0 -127 56q-17 27 -17 70q0 56 34 161l194 586q21 67 21 108q0 64 -45 64q-79 0 -172.5 -124t-189.5 -344t-185 -507l2 10l-14 -51h-185l256 844q21 65 21 105q0 67 -57 67q-75 0 -167.5 -117 t-183 -319.5t-159.5 -447.5l-33 -132h-178l245 879q15 51 15 75q0 52 -43 52q-46 0 -83.5 -48.5t-76.5 -160.5l-27 -76h-39z" />
-<glyph unicode="n" horiz-adv-x="1188" d="M63 721l52 149q72 211 243 211q121 0 121 -121q0 -55 -28 -165l-71 -280q88 208 169.5 332t164.5 179t179 55q165 0 165 -154q0 -61 -30 -155l-199 -598q-16 -48 -16 -77q0 -50 49 -50q42 0 80 46.5t78 162.5l27 76h38l-51 -150q-72 -211 -248 -211q-92 0 -129 60 q-16 26 -16 67q0 58 35 160l194 586q21 61 21 101q0 71 -66 71q-79 0 -178 -114.5t-194.5 -314.5t-166.5 -444l-36 -143h-178l245 879q15 49 15 77q0 50 -45 50q-31 0 -55.5 -19.5t-49 -64.5t-53.5 -125l-27 -76h-39z" />
-<glyph unicode="o" horiz-adv-x="999" d="M43 293q0 161 71.5 346.5t206.5 313.5t314 128q131 0 205.5 -81t74.5 -240q0 -161 -71.5 -346.5t-206 -314t-313.5 -128.5q-131 0 -206 81.5t-75 240.5zM219 190q0 -178 117 -178q105 0 198 133t149 332.5t56 384.5q0 92 -28.5 135t-87.5 43q-105 0 -198.5 -133 t-149.5 -333t-56 -384z" />
-<glyph unicode="p" horiz-adv-x="1128" d="M-141 -371l12 43q50 0 79.5 11.5t48 39t32.5 76.5l383 1365q-61 -136 -144.5 -241.5t-201.5 -217.5l-23 26q97 95 160.5 168t128.5 179t129 258l8 30q112 3 186 29l-214 -749q97 228 192 331.5t203 103.5q99 0 156 -73t57 -215q0 -166 -73.5 -359.5t-210.5 -328 t-316 -134.5q-56 0 -101 31t-66 87l-77 -269q-8 -29 -8 -49q0 -54 45 -76.5t129 -22.5l-13 -43q-24 1 -107.5 5t-166.5 4q-66 0 -138 -4t-89 -5zM299 141q26 -67 62 -95t88 -28q109 0 207 136t158 331t60 353q0 88 -25 133t-71 45q-58 0 -134.5 -93.5t-154 -251 t-137.5 -343.5z" />
-<glyph unicode="q" horiz-adv-x="1038" d="M37 260q0 165 73.5 358.5t210.5 328t316 134.5q61 0 107.5 -36t64.5 -100l174 140l33 -14q-27 -52 -43 -119l-305 -1132q-8 -27 -8 -53q0 -95 133 -95l-13 -43q-24 1 -108 5t-166 4q-66 0 -138 -4t-89 -5l12 43q63 0 102 11.5t62 39t37 76.5l141 539 q-92 -196 -185.5 -281.5t-197.5 -85.5q-99 0 -156 73.5t-57 215.5zM213 215q0 -89 25.5 -133.5t70.5 -44.5q56 0 130 76.5t144.5 204t115.5 273.5l86 331q-26 60 -61 86t-85 26q-109 0 -207.5 -136t-158.5 -331t-60 -352z" />
-<glyph unicode="r" horiz-adv-x="872" d="M61 721l52 149q72 211 247 211q118 0 118 -119q0 -33 -7 -69t-22 -98l-66 -260q75 201 141.5 320t135 172.5t149.5 53.5q56 0 88.5 -32.5t32.5 -83.5q0 -40 -20 -74t-53 -54t-71 -20q-36 0 -58.5 19.5t-22.5 54.5q0 92 92 131q-8 8 -23 8q-73 0 -156 -108t-167 -302 t-160 -449l-43 -171h-178l245 879q15 51 15 80q0 47 -43 47q-46 0 -83.5 -48.5t-76.5 -160.5l-27 -76h-39z" />
-<glyph unicode="s" horiz-adv-x="780" d="M-35 174q0 36 19.5 64t60.5 28q46 0 68 -37t22 -92q0 -36 -14 -106q38 -19 94 -19q93 0 150 55.5t57 155.5q0 65 -24.5 128t-82.5 143q-49 67 -72.5 103t-42 86t-18.5 108q0 85 42.5 151t115.5 102.5t160 36.5q106 0 178 -39.5t72 -138.5q0 -22 -10 -46.5t-31.5 -42 t-53.5 -17.5q-35 0 -58.5 24t-23.5 62q0 66 58 137q-41 24 -103 24q-78 0 -128 -52t-50 -142q0 -54 18 -92.5t52 -87t53 -76.5q61 -95 91 -162t30 -139q0 -93 -48 -166.5t-128.5 -114.5t-175.5 -41q-118 0 -197.5 50t-79.5 153z" />
-<glyph unicode="t" horiz-adv-x="688" d="M73 141q0 49 19 117l217 754h-184l10 41h186l89 311q113 3 184 29l-97 -340h271l-6 -41h-276l-238 -838q-7 -24 -7 -46q0 -41 24.5 -61t64.5 -20q51 0 95.5 44t86.5 161l29 80h39l-43 -129q-43 -127 -112 -179.5t-169 -52.5q-92 0 -137.5 45t-45.5 125z" />
-<glyph unicode="u" horiz-adv-x="1161" d="M59 721l52 149q72 211 247 211q144 0 144 -127q0 -56 -33 -159l-195 -586q-20 -60 -20 -102q0 -70 65 -70q78 0 173.5 114t188 318t162.5 462l31 122q117 3 187 28l-254 -907q-15 -52 -15 -80q0 -47 44 -47q45 0 82.5 48.5t76.5 160.5l27 76h39l-51 -150 q-74 -211 -248 -211q-34 0 -62.5 14.5t-42.5 41.5q-12 25 -12 63q0 54 29 168l65 257q-82 -198 -158.5 -317.5t-154 -173t-166.5 -53.5q-173 0 -173 158q0 64 30 152l198 598q16 50 16 77q0 50 -48 50q-42 0 -80 -46.5t-78 -162.5l-27 -76h-39z" />
-<glyph unicode="v" horiz-adv-x="1092" d="M55 723l45 149q57 209 193 209q39 0 74.5 -26.5t57 -40t54.5 -13.5q102 0 172 64l21 39l43 -21q-166 -205 -258.5 -407.5t-110.5 -415.5q-2 -34 -2 -48q0 -173 90 -173q150 0 270 125t190 299.5t77 312.5q-68 34 -112 90q-39 50 -39 113q0 9 1 18q3 44 30 65t60 21 q58 0 87 -55.5t29 -151.5q0 -33 -5 -81q-25 -212 -107.5 -400t-220.5 -306t-319 -118q-121 0 -178 66.5t-57 165.5l1 22q12 169 140.5 375.5t334.5 403.5q-37 -14 -100.5 -53t-100.5 -58t-69 -19q-18 0 -33 7t-44.5 26t-51.5 19q-32 0 -53.5 -27.5t-46.5 -99.5l-23 -76h-39z " />
-<glyph unicode="w" horiz-adv-x="1403" d="M27 205q0 174 172.5 378t416.5 387q-23 -14 -66.5 -40.5t-76 -41t-57.5 -14.5q-17 0 -32 6.5t-44.5 26t-52.5 19.5q-33 0 -55.5 -28t-45.5 -99l-24 -76h-39l47 149q37 114 84.5 161.5t105.5 47.5q39 0 75.5 -26.5t58.5 -40t55 -13.5q91 0 164 64l28 39l43 -21 q-250 -210 -403.5 -425t-153.5 -441q0 -99 29 -141.5t84 -42.5q104 0 212 98q-15 52 -15 121q0 115 50 227t121 184t128 72q40 0 55.5 -42.5t15.5 -100.5q0 -112 -59.5 -223.5t-175.5 -202.5q46 -135 164 -135q130 0 221.5 100.5t137 248t45.5 286.5q0 80 -15 135 q-45 8 -89.5 30.5t-75 60.5t-30.5 91q0 50 26 74t60 24q108 0 152 -241q17 -79 17 -171q0 -166 -54.5 -326.5t-168.5 -266t-282 -105.5q-161 0 -216 126q-137 -126 -283 -126q-132 0 -193 66.5t-61 167.5zM647 334q0 -72 14 -131q91 76 145 181t54 210q0 96 -39 96 q-34 0 -75 -53t-70 -136t-29 -167z" />
-<glyph unicode="x" horiz-adv-x="1077" d="M-70 47q0 39 31 68.5t76 29.5q66 0 129 -49q84 78 155.5 186.5t117.5 215.5l-44 395q-13 94 -69 94q-34 0 -66.5 -40t-71.5 -148l-26 -76h-39l51 149q41 115 100.5 162t133.5 47q75 0 116.5 -42.5t53.5 -145.5l23 -211q69 158 173 274q58 67 105.5 96t99.5 29 q39 0 64.5 -20.5t25.5 -54.5q0 -40 -30.5 -69.5t-77.5 -29.5q-69 0 -130 49q-127 -117 -220 -358l48 -438q8 -52 25 -73t45 -21q35 0 67 39.5t70 148.5l27 76h39l-51 -150q-76 -209 -234 -209q-148 0 -170 189l-30 266q-81 -182 -218 -328q-63 -66 -111.5 -96.5t-94.5 -30.5 t-69.5 20t-23.5 56z" />
-<glyph unicode="y" horiz-adv-x="985" d="M-150 -301q0 42 33 67t78 25q43 0 83 -21t87 -59q161 85 307 245l-151 918q-11 63 -25.5 88t-40.5 25t-54 -40t-67 -148l-26 -76h-39l51 149q72 209 236 209q43 0 72 -17t47 -58t28 -113l105 -770q112 154 194 326t115 339q-63 33 -109.5 81t-46.5 108q0 49 29 76.5 t75 27.5q107 0 107 -166q0 -131 -58 -295t-150.5 -325t-194.5 -289q-192 -239 -404 -340q-107 -51 -178 -51q-44 0 -73.5 22t-29.5 62z" />
-<glyph unicode="z" horiz-adv-x="911" d="M-80 0l924 973q-93 -59 -149.5 -83t-110.5 -24q-49 0 -103 20.5t-92 33t-82 12.5q-53 0 -82.5 -26t-29.5 -77q0 -54 44.5 -93.5t116.5 -53.5l-12 -31q-199 46 -199 199q0 58 24.5 106.5t77.5 78.5t136 30q70 0 136.5 -29t108 -44t107.5 -15q57 0 100 16.5t85 59.5h55 l-924 -973q92 58 149 82t111 24q49 0 103 -20t92 -32.5t82 -12.5q53 0 82.5 25.5t29.5 76.5q0 54 -44.5 93.5t-116.5 54.5l12 30q96 -21 147.5 -71t51.5 -127q0 -58 -24.5 -106.5t-77.5 -78.5t-136 -30q-70 0 -136.5 29t-108 44t-107.5 15q-57 0 -100 -16.5t-85 -59.5h-55z " />
-<glyph unicode="{" horiz-adv-x="627" d="M52 -164q0 83 42 253q68 269 68 376q-1 62 -24.5 90t-71.5 31h-10l6 37h10q66 5 109.5 49.5t82.5 147t89 301.5q48 190 106.5 293t142 145.5t215.5 42.5l-10 -39q-72 -1 -111 -29t-74 -118t-85 -295q-43 -173 -108 -279.5t-141.5 -158.5t-170.5 -78q198 -60 198 -282 q0 -92 -36 -234q-63 -253 -60 -332q0 -59 27.5 -80t89.5 -23l-10 -39q-151 0 -212.5 57t-61.5 164z" />
-<glyph unicode="|" horiz-adv-x="651" d="M305 -399v2156h82v-2156h-82z" />
-<glyph unicode="}" horiz-adv-x="627" d="M-188 -385l10 39q72 1 111 29t74 118t85 295q43 173 108 279.5t141.5 158.5t170.5 78q-198 60 -198 282q0 92 36 234q63 253 60 332q0 59 -27.5 80t-89.5 23l10 39q151 0 212.5 -57t61.5 -164q0 -83 -42 -253q-68 -269 -68 -376q1 -62 24.5 -90t71.5 -31h10l-6 -37h-10 q-66 -5 -109.5 -49.5t-82.5 -147t-89 -301.5q-48 -190 -106.5 -293t-142 -145.5t-215.5 -42.5z" />
-<glyph unicode="~" horiz-adv-x="1329" d="M139 537q47 102 136.5 160.5t201.5 58.5q71 0 125.5 -20.5t160 -80t200.5 -59.5q132 0 206 119l29 -10q-46 -103 -135.5 -161.5t-202.5 -58.5q-71 0 -125.5 20.5t-160 80t-199.5 59.5q-133 0 -207 -119z" />
-<glyph unicode="&#xa1;" horiz-adv-x="510" d="M-73 -301q0 22 7 43q21 71 95.5 263t128 339.5t96.5 308.5l37 -6q-35 -139 -60 -278.5t-60.5 -363t-57.5 -310.5q-9 -39 -34.5 -59.5t-58.5 -20.5q-46 0 -69.5 23t-23.5 61zM216 924q0 40 22 76.5t57.5 58.5t73.5 22q46 0 75 -30.5t29 -76.5q0 -40 -21.5 -75.5 t-57.5 -57.5t-75 -22q-45 0 -74 30t-29 75z" />
-<glyph unicode="&#xa2;" horiz-adv-x="887" d="M31 272q0 155 68.5 334t194.5 312t288 158l100 374h45l-99 -370l21 1q61 0 111.5 -21t80.5 -60.5t30 -92.5q0 -40 -18 -78t-51.5 -62t-76.5 -24q-41 0 -62.5 23t-21.5 57q0 58 45.5 100.5t108.5 53.5q-44 63 -139 63q-20 0 -40 -4l-263 -979h12q166 0 307 205l41 -16 q-39 -68 -98.5 -127.5t-133 -99.5t-151.5 -47l-92 -343h-45l92 342q-119 5 -186.5 82t-67.5 219zM221 254q0 -153 89 -188l256 952q-90 -42 -169.5 -156.5t-127.5 -274.5t-48 -333z" />
-<glyph unicode="&#xa3;" horiz-adv-x="1278" d="M-49 -8q0 20 24.5 48t71 55.5t107.5 45.5q42 82 75.5 167.5t69.5 219.5l21 80h-199l12 41h198l43 164h-198l12 41h197l12 45q74 278 224.5 443t394.5 165q70 0 118 -19t71.5 -50.5t23.5 -69.5q0 -34 -16.5 -63.5t-45.5 -47.5t-65 -18q-32 0 -53 19t-21 51q0 41 27.5 73.5 t70.5 44.5q0 20 -35 35t-79 15q-122 0 -199.5 -71t-120.5 -176.5t-90 -277.5l-26 -98h278l-12 -41h-277l-43 -164h277l-13 -41h-276q-28 -88 -73 -162t-101 -138.5t-143 -151.5q139 65 258 65q69 0 150.5 -30.5t130.5 -46t114 -15.5q46 0 86.5 19t65 53.5t24.5 79.5 q0 58 -35 93.5t-98 47.5l12 35q89 -16 148 -69t59 -140q0 -67 -40.5 -131.5t-108.5 -105t-144 -40.5q-94 0 -184 64t-144 96.5t-135 32.5q-85 0 -178 -41q-52 -72 -104 -112t-93 -40q-14 0 -20 4.5t-6 16.5z" />
-<glyph unicode="&#xa4;" horiz-adv-x="1165" d="M197 283l88 88q-86 104 -86 243q0 141 88 246l-90 90l57 58l90 -90q107 86 244 86t243 -89l93 93l57 -58l-92 -92q86 -109 86 -244q0 -138 -86 -243l90 -88l-57 -60l-91 90q-109 -86 -243 -86q-139 0 -244 84l-88 -88zM283 614q0 -84 41.5 -155.5t111.5 -113.5t152 -42 t151.5 42t110.5 113.5t41 155.5q0 83 -41 155t-111 115.5t-151 43.5q-82 0 -152.5 -43t-111.5 -115t-41 -156z" />
-<glyph unicode="&#xa5;" horiz-adv-x="1440" d="M215 1102l67 198q22 64 46 102t61 57.5t94 19.5q108 0 174.5 -88t103.5 -245.5t64 -408.5q148 372 383 609q133 133 242 133q60 0 87 -31.5t27 -78.5q0 -30 -13 -63t-40.5 -56t-67.5 -23q-77 0 -77 81q0 33 18 67t47 61h-6q-55 -3 -113 -45q-107 -78 -230.5 -251.5 t-237.5 -447.5l-21 -84h289l-10 -41h-289l-31 -123h285l-10 -41h-285l-47 -186q-17 -66 -17 -99q0 -30 13.5 -46t42 -22.5t81.5 -8.5l-10 -41q-91 6 -254 6q-179 0 -268 -6l10 41q74 3 111 16t59 48.5t41 111.5l47 186h-288l10 41h288l31 123h-284l10 41h284l22 87 q-73 671 -239 671q-35 0 -58 -22t-40 -74l-57 -168h-45z" />
-<glyph unicode="&#xa6;" horiz-adv-x="659" d="M309 -399v1067h82v-1067h-82zM309 786v971h82v-971h-82z" />
-<glyph unicode="&#xa7;" horiz-adv-x="1040" d="M-27 -195q0 35 18.5 67.5t50 52.5t69.5 20q40 0 64 -22t24 -60q0 -49 -34 -85t-85 -50q12 -39 68 -56.5t112 -17.5q76 0 141.5 27t107.5 88.5t42 160.5q0 62 -35 117t-77 93.5t-138 119.5q-74 63 -118.5 109.5t-69.5 97.5t-25 111q0 131 91.5 234.5t238.5 175.5 q-88 101 -88 210q0 111 63 203.5t166.5 146.5t220.5 54q65 0 132 -19.5t112 -61.5t45 -104q0 -37 -18 -70.5t-49.5 -54t-71.5 -20.5t-64 23t-24 63q0 46 34 81t85 50q-13 41 -67.5 57.5t-113.5 16.5q-74 0 -140 -26.5t-108.5 -88t-42.5 -158.5q0 -62 35 -118t75 -93.5 t140 -122.5q74 -62 118.5 -108.5t69.5 -97.5t25 -111q0 -131 -91 -235t-238 -176q88 -101 88 -210q0 -111 -63 -203.5t-167 -146t-221 -53.5q-67 0 -133 19.5t-110 62t-44 108.5zM221 692q0 -52 28.5 -100.5t71.5 -91t115 -103.5q120 -99 164 -144q219 118 219 271 q0 53 -28.5 102t-71.5 91t-115 102q-121 100 -164 144q-219 -117 -219 -271z" />
-<glyph unicode="&#xa8;" horiz-adv-x="799" d="M61 1389q0 31 19 62t51 51t68 20q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-46 0 -74.5 29.5t-28.5 75.5zM496 1389q0 31 19 62t50.5 51t67.5 20q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-45 0 -73.5 30t-28.5 75z" />
-<glyph unicode="&#xa9;" horiz-adv-x="1892" d="M180 786q0 222 109.5 409.5t297 297t408.5 109.5q222 0 409 -109.5t296.5 -297t109.5 -409.5q0 -221 -109.5 -408.5t-296.5 -297t-409 -109.5q-221 0 -408.5 109.5t-297 297t-109.5 408.5zM262 786q0 -203 98.5 -375t267 -273t367.5 -101q200 0 368.5 101t267 273 t98.5 375q0 204 -98.5 376t-267 273t-368.5 101q-199 0 -367.5 -101t-267 -273t-98.5 -376zM551 774q0 166 60.5 295.5t169 201.5t249.5 72q86 0 162.5 -27.5t123 -78.5t46.5 -117q0 -53 -30.5 -83.5t-78.5 -30.5q-47 0 -79.5 30t-32.5 80q0 42 23 69t63 36q-20 37 -73 61.5 t-112 24.5q-75 0 -141 -47.5t-108.5 -161t-42.5 -299.5q0 -169 39.5 -276t105 -155.5t147.5 -48.5q90 0 169.5 51t129.5 160l39 -14q-23 -73 -70.5 -137.5t-124.5 -106t-179 -41.5q-129 0 -232.5 66t-163 189t-59.5 288z" />
-<glyph unicode="&#xaa;" horiz-adv-x="930" d="M199 901q0 118 78.5 255t196.5 230t226 93q29 0 51.5 -18t25.5 -56l16 55q83 0 143 19l-193 -598q-10 -30 -10 -51q0 -33 33 -33q34 0 58.5 29t49.5 102l19 51h39l-37 -100q-29 -80 -73 -111t-111 -31q-45 0 -67 19.5t-22 64.5q0 43 19 109l25 86q-138 -279 -308 -279 q-74 0 -116.5 45.5t-42.5 118.5zM348 885q0 -46 13 -71.5t38 -25.5q44 0 106.5 60.5t122 159.5t95.5 209l39 135q-3 78 -51 78q-71 0 -157 -80t-146 -206.5t-60 -258.5z" />
-<glyph unicode="&#xab;" horiz-adv-x="1059" d="M49 498v4q157 110 294 253t271 326h37q-42 -90 -120 -206t-166.5 -218.5t-161.5 -156.5q57 -47 116.5 -141t106 -200t66.5 -188h-37q-181 353 -406 527zM387 498v4q157 110 294 253t271 326h37q-39 -88 -116.5 -204t-167.5 -219.5t-164 -157.5q56 -47 115.5 -141 t106.5 -200.5t66 -187.5h-36q-181 353 -406 527z" />
-<glyph unicode="&#xac;" horiz-adv-x="1354" d="M193 696l18 62h1026l-121 -420h-74l103 358h-952z" />
-<glyph unicode="&#xad;" horiz-adv-x="1032" />
-<glyph unicode="&#xae;" horiz-adv-x="1432" d="M258 1030q0 155 77 286.5t208 208.5t286 77t286.5 -77t208.5 -208.5t77 -286.5t-77 -286t-208.5 -208t-286.5 -77t-286 77t-208 208t-77 286zM344 1030q0 -136 65 -252.5t176.5 -185t243.5 -68.5q133 0 244.5 68.5t176.5 185t65 252.5q0 137 -65 253t-176.5 184.5 t-244.5 68.5t-244 -68.5t-176 -184.5t-65 -253zM573 721v31q21 2 30.5 7.5t13.5 20.5t4 47v449q0 33 -4 48.5t-13.5 21.5t-30.5 8v30q25 -2 99 -2q68 0 111.5 1t64.5 1q116 0 176.5 -42t60.5 -119q0 -139 -198 -174q81 -9 116 -37t46 -82l24 -117q2 -8 6 -28.5t11.5 -30 t19.5 -9.5q15 0 25 17l20 -14q-12 -24 -33.5 -33.5t-56.5 -9.5q-52 0 -76.5 19t-36.5 64l-34 152q-9 41 -23.5 59t-49 26t-108.5 9v-207q0 -32 3.5 -47t13 -20.5t30.5 -7.5v-31q-20 0 -46.5 1t-57.5 1q-35 0 -62 -1t-45 -1zM737 1067h49q101 0 136.5 35t35.5 100 q0 79 -32.5 115.5t-110.5 36.5q-33 0 -49.5 -5.5t-22.5 -19.5t-6 -43v-219z" />
-<glyph unicode="&#xaf;" horiz-adv-x="741" d="M236 1407l12 51h639l-13 -51h-638z" />
-<glyph unicode="&#xb0;" horiz-adv-x="686" d="M287 1434q0 73 34 129t90.5 86t123.5 30t124 -30t91 -86t34 -129q0 -75 -34 -131t-91 -86.5t-124 -30.5t-123.5 30.5t-90.5 86.5t-34 131zM338 1432q0 -68 29 -116t74 -71.5t94 -23.5t94.5 23.5t74.5 71.5t29 116q0 66 -29.5 114.5t-75 73.5t-93.5 25t-93.5 -25 t-74.5 -73.5t-29 -114.5z" />
-<glyph unicode="&#xb1;" horiz-adv-x="1300" d="M-19 0l19 62h1026l-19 -62h-1026zM154 696l18 62h477l137 483h74l-137 -483h475l-18 -62h-475l-138 -481h-73l137 481h-477z" />
-<glyph unicode="&#xb2;" horiz-adv-x="698" d="M166 895l8 37q20 13 155 98t224.5 178t89.5 178q0 89 -111 89q-125 0 -219 -107l-28 23q53 65 135.5 109t181.5 44q75 0 118.5 -28.5t43.5 -88.5q0 -89 -81.5 -168.5t-192 -155.5t-138.5 -99q23 0 58.5 -5.5t101 -18.5t98.5 -13q43 0 70 19t27 52q0 24 -9 39l35 15 q21 -33 21 -66q0 -39 -22 -70.5t-63.5 -50t-99.5 -18.5q-43 0 -91.5 11.5t-87.5 19t-89 7.5q-38 0 -65 -7t-70 -23z" />
-<glyph unicode="&#xb3;" horiz-adv-x="668" d="M88 709v36q124 10 240 51t190 110.5t74 158.5q0 103 -113 106q-37 -20 -65 -20q-37 0 -37 27q0 37 90 34q88 32 139 81.5t51 111.5q0 38 -25 57t-71 19q-122 0 -237 -115l-29 25q51 60 136 106.5t181 46.5q74 0 119 -28t45 -82q0 -55 -45 -103t-111 -82t-128 -49 q96 -3 159.5 -39.5t63.5 -111.5q0 -96 -98.5 -170t-244 -117t-284.5 -53z" />
-<glyph unicode="&#xb4;" horiz-adv-x="457" d="M260 1245q56 66 97.5 120t105.5 141.5t104 127.5q40 46 84 46q25 0 45 -15q16 -16 16 -40q0 -41 -46 -87q-36 -38 -106 -89t-134 -100.5t-145 -121.5z" />
-<glyph unicode="&#xb6;" horiz-adv-x="1311" d="M74 469q0 268 128.5 493.5t349.5 357.5t486 132q59 0 160 -3t148 -3q81 0 122 4l-10 -39q-65 -3 -103 -18.5t-58 -44t-33 -76.5l-285 -1082q-71 -267 -195 -421t-307 -154q-94 0 -151 29t-58 84q0 29 17 58.5t45 48t59 18.5q32 0 50 -18t18 -46q0 -66 -72 -131 q30 -10 72 -10q70 0 119.5 40.5t83.5 110.5t65 174q-339 0 -495 131t-156 365zM291 719q-1 -4 79 -11t210 -12.5t276 -5.5q-48 -186 -72.5 -345t-24.5 -225q0 -22 3 -22q52 193 192 716.5t142 528.5q-7 0 -45.5 -86.5t-87.5 -223t-91 -283.5q-144 0 -276 -6t-218 -14 t-87 -11z" />
-<glyph unicode="&#xb7;" horiz-adv-x="528" d="M112 488q0 40 22 76.5t57.5 58.5t73.5 22q46 0 75 -30.5t29 -76.5q0 -40 -21.5 -75.5t-57.5 -57.5t-75 -22q-45 0 -74 30t-29 75z" />
-<glyph unicode="&#xb8;" horiz-adv-x="467" d="M-2 -340l14 31q30 -13 55 -20t68 -7q27 0 61.5 10t60.5 33.5t26 61.5q0 49 -58 49q-33 0 -63 -15l94 197h55l-69 -147q39 14 84 14q41 0 64.5 -22t23.5 -60q0 -56 -39 -94.5t-97.5 -57t-115.5 -18.5q-53 0 -97.5 13.5t-66.5 31.5z" />
-<glyph unicode="&#xb9;" horiz-adv-x="518" d="M227 1298l11 39q91 28 157.5 61.5t107 62.5t105.5 81h39l-207 -647h-121l166 514q-63 -37 -119.5 -63t-138.5 -48z" />
-<glyph unicode="&#xba;" horiz-adv-x="842" d="M219 952q0 108 52.5 232t151 209.5t230.5 85.5q111 0 173.5 -54.5t62.5 -160.5q0 -108 -52.5 -231.5t-151 -208.5t-230.5 -85q-111 0 -173.5 54t-62.5 159zM367 895q0 -61 24 -90t74 -29q72 0 136 83.5t102 212t38 251.5q0 61 -24 90t-74 29q-72 0 -136 -84t-102 -212 t-38 -251z" />
-<glyph unicode="&#xbb;" horiz-adv-x="1057" d="M31 -29q42 90 120 206t166.5 219t161.5 157q-57 47 -116.5 140.5t-106 199.5t-66.5 188h37q181 -354 406 -528v-2q-157 -112 -294.5 -254.5t-270.5 -325.5h-37zM369 -29q42 90 120 206t166.5 219t161.5 157q-57 47 -116.5 140.5t-106 199.5t-66.5 188h37 q181 -354 406 -528v-2q-300 -213 -565 -580h-37z" />
-<glyph unicode="&#xbc;" horiz-adv-x="1241" d="M-234 -86l1706 1774l31 -27l-1706 -1774zM227 1298l11 39q91 28 157.5 61.5t107 62.5t105.5 81h39l-207 -647h-121l166 514q-63 -37 -119.5 -63t-138.5 -48zM288 66l10 36l615 547h39l-146 -500h115l-23 -83h-116l-70 -240h-107l70 240h-387zM407 149h292l100 347z" />
-<glyph unicode="&#xbd;" horiz-adv-x="1241" d="M-234 -86l1706 1774l31 -27l-1706 -1774zM227 1298l11 39q91 28 157.5 61.5t107 62.5t105.5 81h39l-207 -647h-121l166 514q-63 -37 -119.5 -63t-138.5 -48zM487 0l8 37q20 13 155 98t224.5 178t89.5 178q0 89 -111 89q-125 0 -219 -107l-28 23q53 65 135.5 109t181.5 44 q75 0 118.5 -28.5t43.5 -88.5q0 -89 -81.5 -168.5t-192 -155.5t-138.5 -99q23 0 58.5 -5.5t101 -18.5t98.5 -13q43 0 70 19t27 52q0 24 -9 39l35 15q21 -33 21 -66q0 -39 -22 -70.5t-63.5 -50t-99.5 -18.5q-43 0 -91.5 11.5t-87.5 19t-89 7.5q-38 0 -65 -7t-70 -23z" />
-<glyph unicode="&#xbe;" horiz-adv-x="1446" d="M-29 -86l1706 1774l31 -27l-1706 -1774zM88 709v36q124 10 240 51t190 110.5t74 158.5q0 103 -113 106q-37 -20 -65 -20q-37 0 -37 27q0 37 90 34q88 32 139 81.5t51 111.5q0 38 -25 57t-71 19q-122 0 -237 -115l-29 25q51 60 136 106.5t181 46.5q74 0 119 -28t45 -82 q0 -55 -45 -103t-111 -82t-128 -49q96 -3 159.5 -39.5t63.5 -111.5q0 -96 -98.5 -170t-244 -117t-284.5 -53zM493 66l10 36l615 547h39l-146 -500h115l-23 -83h-116l-70 -240h-107l70 240h-387zM612 149h292l100 347z" />
-<glyph unicode="&#xbf;" horiz-adv-x="913" d="M-86 -184q0 62 32 112.5t100.5 105.5t205.5 146q36 26 125.5 88t122 106.5t32.5 98.5q0 37 -17.5 69t-49 51t-72.5 19q-65 0 -127.5 -24.5t-87.5 -65.5q20 -2 37 -23.5t16 -47.5q0 -33 -26 -58.5t-66 -25.5q-69 0 -69 71q0 61 56 109t141 74t167 26q107 0 171.5 -51 t64.5 -145q0 -73 -41.5 -133t-96 -102t-202.5 -148q-99 -66 -151.5 -108t-78.5 -82.5t-26 -88.5q0 -60 47 -99.5t131 -39.5q79 0 156 26t96 74q-19 5 -35 28.5t-16 53.5q0 44 31 72t77 28q40 0 61 -23t21 -63q0 -66 -61.5 -119t-161 -82.5t-207.5 -29.5q-135 0 -217 52.5 t-82 148.5zM409 924q0 40 22 76.5t57.5 58.5t73.5 22q46 0 75 -30.5t29 -76.5q0 -40 -21.5 -75.5t-57.5 -57.5t-75 -22q-45 0 -74 30t-29 75z" />
-<glyph unicode="&#xc0;" d="M-178 0l10 41q94 20 205 178l883 1241h30l82 -1288q5 -67 34.5 -98t66.5 -33l-9 -41q-82 6 -223 6q-165 0 -246 -6l9 41q70 3 108 17.5t54.5 50t13.5 104.5l-19 336h-503l-154 -217q-96 -136 -96 -204q0 -84 151 -87l-10 -41q-114 6 -234 6q-89 0 -153 -6zM347 590h472 l-34 619zM631 1901q0 23 14 41q17 20 46 20q23 0 47.5 -12t41.5 -31q29 -31 68 -90t75.5 -112.5t90.5 -121.5l-21 -20q-55 45 -100 78t-118 84.5t-105 83.5q-16 16 -27.5 37.5t-11.5 42.5z" />
-<glyph unicode="&#xc1;" d="M-178 0l10 41q94 20 205 178l883 1241h30l82 -1288q5 -67 34.5 -98t66.5 -33l-9 -41q-82 6 -223 6q-165 0 -246 -6l9 41q70 3 108 17.5t54.5 50t13.5 104.5l-19 336h-503l-154 -217q-96 -136 -96 -204q0 -84 151 -87l-10 -41q-114 6 -234 6q-89 0 -153 -6zM347 590h472 l-34 619zM807 1604q75 50 131 91.5t140 106.5t130 92q39 24 78 24q43 0 58 -34q4 -9 4 -20q0 -25 -21.5 -49.5t-50.5 -40.5q-44 -26 -125.5 -56t-157 -60t-172.5 -77z" />
-<glyph unicode="&#xc2;" d="M-178 0l10 41q94 20 205 178l883 1241h30l82 -1288q5 -67 34.5 -98t66.5 -33l-9 -41q-82 6 -223 6q-165 0 -246 -6l9 41q70 3 108 17.5t54.5 50t13.5 104.5l-19 336h-503l-154 -217q-96 -136 -96 -204q0 -84 151 -87l-10 -41q-114 6 -234 6q-89 0 -153 -6zM347 590h472 l-34 619zM531 1610q147 45 274.5 116t206.5 150h37q57 -99 122 -163t163 -103l-9 -29q-111 21 -179 48.5t-117.5 55t-65.5 35.5q-226 -95 -422 -139z" />
-<glyph unicode="&#xc3;" d="M-178 0l10 41q94 20 205 178l883 1241h30l82 -1288q5 -67 34.5 -98t66.5 -33l-9 -41q-82 6 -223 6q-165 0 -246 -6l9 41q70 3 108 17.5t54.5 50t13.5 104.5l-19 336h-503l-154 -217q-96 -136 -96 -204q0 -84 151 -87l-10 -41q-114 6 -234 6q-89 0 -153 -6zM347 590h472 l-34 619zM590 1622q45 108 116.5 159.5t150.5 51.5q66 0 109 -21t111 -75t134 -54q78 0 143 119l37 -10q-45 -107 -116.5 -159t-149.5 -52q-66 0 -109 21t-111 75t-134 54q-79 0 -144 -119z" />
-<glyph unicode="&#xc4;" d="M-178 0l10 41q94 20 205 178l883 1241h30l82 -1288q5 -67 34.5 -98t66.5 -33l-9 -41q-82 6 -223 6q-165 0 -246 -6l9 41q70 3 108 17.5t54.5 50t13.5 104.5l-19 336h-503l-154 -217q-96 -136 -96 -204q0 -84 151 -87l-10 -41q-114 6 -234 6q-89 0 -153 -6zM347 590h472 l-34 619zM606 1686q0 31 19 62t51 51t68 20q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-46 0 -74.5 29.5t-28.5 75.5zM1041 1686q0 31 19 62t50.5 51t67.5 20q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-45 0 -73.5 30t-28.5 75z " />
-<glyph unicode="&#xc5;" d="M-178 0l10 41q94 20 205 178l883 1241h30l82 -1288q5 -67 34.5 -98t66.5 -33l-9 -41q-82 6 -223 6q-165 0 -246 -6l9 41q70 3 108 17.5t54.5 50t13.5 104.5l-19 336h-503l-154 -217q-96 -136 -96 -204q0 -84 151 -87l-10 -41q-114 6 -234 6q-89 0 -153 -6zM347 590h472 l-34 619zM773 1683q0 58 30 106.5t81 76.5t112 28q49 0 89 -20t63.5 -57t23.5 -86q0 -56 -32 -104.5t-85 -77.5t-112 -29q-74 0 -122 44t-48 119zM826 1686q0 -58 37 -90.5t88 -32.5q43 0 82 22t62.5 61t23.5 87q0 37 -19 63.5t-49 40.5t-63 14q-41 0 -78.5 -23.5 t-60.5 -61.5t-23 -80z" />
-<glyph unicode="&#xc6;" horiz-adv-x="1837" d="M-164 0v41q65 3 176 131l1017 1150q2 34 -11 52t-42.5 25.5t-84.5 9.5l10 41q99 -3 237 -4l122 137h53l-122 -138q87 -1 163.5 -1h134.5q295 0 424 6q-32 -89 -78 -242q-19 -68 -27 -127h-45q15 86 15 145q0 96 -42.5 136.5t-138.5 40.5h-190q-71 0 -106.5 -12t-57 -46.5 t-41.5 -111.5l-128 -483h220q58 0 96.5 30.5t62 76t52.5 122.5h45q-26 -81 -69 -250q-22 -75 -54 -250h-45q0 20 5.5 63t5.5 64q0 45 -23 72t-84 31h-223l-131 -492q-18 -70 -18 -100q0 -29 13.5 -44t41.5 -20.5t80 -5.5h211q99 0 162 34t109.5 111t94.5 218h45 q-19 -50 -43 -148q-35 -127 -53 -262q-139 6 -463 6q-389 0 -590 -6l8 41q74 3 111 16t58.5 48t41.5 112l131 492h-333l-457 -516q-59 -67 -59 -97q0 -45 127 -55v-41q-55 6 -177 6q-87 0 -137 -6zM575 750h308l129 483l4 14z" />
-<glyph unicode="&#xc7;" horiz-adv-x="1372" d="M104 453q0 236 118 475.5t323.5 395t451.5 155.5q83 0 139 -18t90.5 -44.5t76.5 -70.5q18 -18 31 -18q36 0 81 122h43q-68 -177 -131 -471h-45q12 80 12 140q0 96 -32 163q-38 76 -110.5 118t-158.5 42q-170 0 -328.5 -160t-257 -402.5t-98.5 -469.5q0 -198 77.5 -300 t215.5 -102q90 0 190.5 42t174.5 118q52 53 91.5 124t92.5 200h45q-93 -340 -121 -492h-45q6 44 6 70q0 52 -24 52q-16 0 -43 -18q-73 -47 -122.5 -73t-114.5 -43t-150 -17q-228 0 -353 123t-125 359zM240 -340l14 31q71 -27 164 -27q38 0 87 10t85.5 33.5t36.5 61.5 q0 49 -78 49q-42 0 -84 -15l98 205h56l-74 -155q51 14 104 14q51 0 80 -22t29 -60q0 -56 -48.5 -94.5t-121 -57t-143.5 -18.5q-67 0 -121 13t-84 32z" />
-<glyph unicode="&#xc8;" horiz-adv-x="1249" d="M-72 0l11 41q74 3 110 16t58 48t43 112l272 1016q18 65 18 100q0 30 -13.5 45.5t-42 22t-81.5 8.5l10 41q201 -6 594 -6q287 0 408 6q-54 -148 -78 -242q-23 -80 -29 -127h-47q18 110 18 165q0 59 -19 92.5t-63.5 49t-123.5 15.5h-150q-73 0 -109.5 -12t-58.5 -46.5 t-43 -111.5l-129 -483h135q102 0 153 61t76 125t34 84h47q-42 -129 -60.5 -201t-23.5 -90q-27 -96 -66 -291h-47q2 14 9 59t7 80q0 63 -31 97.5t-110 34.5h-134l-132 -492q-18 -64 -18 -99q0 -30 14 -45t43 -20.5t82 -5.5h149q128 0 203.5 34t125.5 109t103 220h48 q-20 -50 -46 -148q-30 -110 -55 -262q-139 6 -469 6q-393 0 -592 -6zM559 1901q0 23 14 41q17 20 46 20q23 0 47.5 -12t41.5 -31q29 -31 68 -90t75.5 -112.5t90.5 -121.5l-21 -20q-55 45 -100 78t-118 84.5t-105 83.5q-16 16 -27.5 37.5t-11.5 42.5z" />
-<glyph unicode="&#xc9;" horiz-adv-x="1249" d="M-72 0l11 41q74 3 110 16t58 48t43 112l272 1016q18 65 18 100q0 30 -13.5 45.5t-42 22t-81.5 8.5l10 41q201 -6 594 -6q287 0 408 6q-54 -148 -78 -242q-23 -80 -29 -127h-47q18 110 18 165q0 59 -19 92.5t-63.5 49t-123.5 15.5h-150q-73 0 -109.5 -12t-58.5 -46.5 t-43 -111.5l-129 -483h135q102 0 153 61t76 125t34 84h47q-42 -129 -60.5 -201t-23.5 -90q-27 -96 -66 -291h-47q2 14 9 59t7 80q0 63 -31 97.5t-110 34.5h-134l-132 -492q-18 -64 -18 -99q0 -30 14 -45t43 -20.5t82 -5.5h149q128 0 203.5 34t125.5 109t103 220h48 q-20 -50 -46 -148q-30 -110 -55 -262q-139 6 -469 6q-393 0 -592 -6zM735 1604q75 50 131 91.5t140 106.5t130 92q39 24 78 24q43 0 58 -34q4 -9 4 -20q0 -25 -21.5 -49.5t-50.5 -40.5q-44 -26 -125.5 -56t-157 -60t-172.5 -77z" />
-<glyph unicode="&#xca;" horiz-adv-x="1249" d="M-72 0l11 41q74 3 110 16t58 48t43 112l272 1016q18 65 18 100q0 30 -13.5 45.5t-42 22t-81.5 8.5l10 41q201 -6 594 -6q287 0 408 6q-54 -148 -78 -242q-23 -80 -29 -127h-47q18 110 18 165q0 59 -19 92.5t-63.5 49t-123.5 15.5h-150q-73 0 -109.5 -12t-58.5 -46.5 t-43 -111.5l-129 -483h135q102 0 153 61t76 125t34 84h47q-42 -129 -60.5 -201t-23.5 -90q-27 -96 -66 -291h-47q2 14 9 59t7 80q0 63 -31 97.5t-110 34.5h-134l-132 -492q-18 -64 -18 -99q0 -30 14 -45t43 -20.5t82 -5.5h149q128 0 203.5 34t125.5 109t103 220h48 q-20 -50 -46 -148q-30 -110 -55 -262q-139 6 -469 6q-393 0 -592 -6zM459 1610q147 45 274.5 116t206.5 150h37q57 -99 122 -163t163 -103l-9 -29q-111 21 -179 48.5t-117.5 55t-65.5 35.5q-226 -95 -422 -139z" />
-<glyph unicode="&#xcb;" horiz-adv-x="1249" d="M-72 0l11 41q74 3 110 16t58 48t43 112l272 1016q18 65 18 100q0 30 -13.5 45.5t-42 22t-81.5 8.5l10 41q201 -6 594 -6q287 0 408 6q-54 -148 -78 -242q-23 -80 -29 -127h-47q18 110 18 165q0 59 -19 92.5t-63.5 49t-123.5 15.5h-150q-73 0 -109.5 -12t-58.5 -46.5 t-43 -111.5l-129 -483h135q102 0 153 61t76 125t34 84h47q-42 -129 -60.5 -201t-23.5 -90q-27 -96 -66 -291h-47q2 14 9 59t7 80q0 63 -31 97.5t-110 34.5h-134l-132 -492q-18 -64 -18 -99q0 -30 14 -45t43 -20.5t82 -5.5h149q128 0 203.5 34t125.5 109t103 220h48 q-20 -50 -46 -148q-30 -110 -55 -262q-139 6 -469 6q-393 0 -592 -6zM534 1686q0 31 19 62t51 51t68 20q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-46 0 -74.5 29.5t-28.5 75.5zM969 1686q0 31 19 62t50.5 51t67.5 20q43 0 72.5 -30t29.5 -73 q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-45 0 -73.5 30t-28.5 75z" />
-<glyph unicode="&#xcc;" horiz-adv-x="698" d="M-68 0l11 41q72 3 108 16t57.5 48.5t41.5 111.5l270 1016q17 65 17 98q0 31 -14 47t-42.5 22.5t-81.5 8.5l10 41q84 -6 260 -6q165 0 262 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-17 -66 -17 -99q0 -30 13.5 -46t42.5 -22.5t82 -8.5l-8 -41 q-96 6 -260 6q-171 0 -261 -6zM309 1901q0 23 14 41q17 20 46 20q23 0 47.5 -12t41.5 -31q29 -31 68 -90t75.5 -112.5t90.5 -121.5l-21 -20q-55 45 -100 78t-118 84.5t-105 83.5q-16 16 -27.5 37.5t-11.5 42.5z" />
-<glyph unicode="&#xcd;" horiz-adv-x="698" d="M-68 0l11 41q72 3 108 16t57.5 48.5t41.5 111.5l270 1016q17 65 17 98q0 31 -14 47t-42.5 22.5t-81.5 8.5l10 41q84 -6 260 -6q165 0 262 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-17 -66 -17 -99q0 -30 13.5 -46t42.5 -22.5t82 -8.5l-8 -41 q-96 6 -260 6q-171 0 -261 -6zM485 1604q75 50 131 91.5t140 106.5t130 92q39 24 78 24q43 0 58 -34q4 -9 4 -20q0 -25 -21.5 -49.5t-50.5 -40.5q-44 -26 -125.5 -56t-157 -60t-172.5 -77z" />
-<glyph unicode="&#xce;" horiz-adv-x="698" d="M-68 0l11 41q72 3 108 16t57.5 48.5t41.5 111.5l270 1016q17 65 17 98q0 31 -14 47t-42.5 22.5t-81.5 8.5l10 41q84 -6 260 -6q165 0 262 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-17 -66 -17 -99q0 -30 13.5 -46t42.5 -22.5t82 -8.5l-8 -41 q-96 6 -260 6q-171 0 -261 -6zM209 1610q147 45 274.5 116t206.5 150h37q57 -99 122 -163t163 -103l-9 -29q-111 21 -179 48.5t-117.5 55t-65.5 35.5q-226 -95 -422 -139z" />
-<glyph unicode="&#xcf;" horiz-adv-x="698" d="M-68 0l11 41q72 3 108 16t57.5 48.5t41.5 111.5l270 1016q17 65 17 98q0 31 -14 47t-42.5 22.5t-81.5 8.5l10 41q84 -6 260 -6q165 0 262 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-270 -1016q-17 -66 -17 -99q0 -30 13.5 -46t42.5 -22.5t82 -8.5l-8 -41 q-96 6 -260 6q-171 0 -261 -6zM284 1686q0 31 19 62t51 51t68 20q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-46 0 -74.5 29.5t-28.5 75.5zM719 1686q0 31 19 62t50.5 51t67.5 20q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5 q-45 0 -73.5 30t-28.5 75z" />
-<glyph unicode="&#xd0;" horiz-adv-x="1485" d="M-61 0l6 41q70 3 105.5 16t57.5 48.5t42 111.5l268 1016q19 74 19 101q0 40 -30 56.5t-108 18.5l6 41q110 -7 200 -7l50 1q282 6 309 6q288 0 433 -115t145 -338q0 -256 -126.5 -486t-349 -370.5t-495.5 -140.5q-28 0 -133.5 3t-153.5 3q-165 0 -245 -6zM135 707l12 52 h721l-12 -52h-721zM321 112q0 -39 28 -57t97 -18q254 0 434.5 138.5t272.5 369t92 504.5q0 185 -104 274.5t-334 89.5q-64 0 -100 -14.5t-58 -51.5t-41 -110l-268 -1024q-19 -71 -19 -101z" />
-<glyph unicode="&#xd1;" horiz-adv-x="1577" d="M-147 -45q0 35 14 68.5t41 55t65 21.5q42 0 60 -24t18 -56q0 -33 -18.5 -67.5t-46.5 -61.5h6q106 4 170 107q78 123 161.5 444.5t182.5 835.5q4 24 4 46q0 34 -14.5 51.5t-47.5 24.5t-96 9l10 41q66 -6 183 -6q96 0 166 6l387 -1132q89 397 173 683t171 412 q90 131 221 131q66 0 94.5 -29t28.5 -75q0 -36 -14 -70t-41.5 -56t-65.5 -22q-41 0 -59.5 24t-18.5 56q0 33 19 67.5t47 61.5h-6q-100 -3 -168 -104q-91 -136 -189 -477t-223 -930h-45l-467 1319q-101 -516 -190 -870t-170 -462q-47 -60 -96.5 -94.5t-123.5 -34.5 q-122 0 -122 107zM719 1622q45 108 116.5 159.5t150.5 51.5q66 0 109 -21t111 -75t134 -54q78 0 143 119l37 -10q-45 -107 -116.5 -159t-149.5 -52q-66 0 -109 21t-111 75t-134 54q-79 0 -144 -119z" />
-<glyph unicode="&#xd2;" horiz-adv-x="1493" d="M111 463q0 232 109 469t304.5 392t440.5 155q151 0 259.5 -58t166 -169t57.5 -267q0 -231 -110 -467.5t-306 -391.5t-440 -155q-151 0 -259 58t-165 168.5t-57 265.5zM328 436q0 -132 35.5 -228.5t99.5 -148t147 -51.5q155 0 298.5 147.5t232 381.5t88.5 477 q0 132 -36 228.5t-100 148t-147 51.5q-154 0 -297.5 -147.5t-232 -381.5t-88.5 -477zM709 1901q0 23 14 41q17 20 46 20q23 0 47.5 -12t41.5 -31q29 -31 68 -90t75.5 -112.5t90.5 -121.5l-21 -20q-55 45 -100 78t-118 84.5t-105 83.5q-16 16 -27.5 37.5t-11.5 42.5z" />
-<glyph unicode="&#xd3;" horiz-adv-x="1493" d="M111 463q0 232 109 469t304.5 392t440.5 155q151 0 259.5 -58t166 -169t57.5 -267q0 -231 -110 -467.5t-306 -391.5t-440 -155q-151 0 -259 58t-165 168.5t-57 265.5zM328 436q0 -132 35.5 -228.5t99.5 -148t147 -51.5q155 0 298.5 147.5t232 381.5t88.5 477 q0 132 -36 228.5t-100 148t-147 51.5q-154 0 -297.5 -147.5t-232 -381.5t-88.5 -477zM885 1604q75 50 131 91.5t140 106.5t130 92q39 24 78 24q43 0 58 -34q4 -9 4 -20q0 -25 -21.5 -49.5t-50.5 -40.5q-44 -26 -125.5 -56t-157 -60t-172.5 -77z" />
-<glyph unicode="&#xd4;" horiz-adv-x="1493" d="M111 463q0 232 109 469t304.5 392t440.5 155q151 0 259.5 -58t166 -169t57.5 -267q0 -231 -110 -467.5t-306 -391.5t-440 -155q-151 0 -259 58t-165 168.5t-57 265.5zM328 436q0 -132 35.5 -228.5t99.5 -148t147 -51.5q155 0 298.5 147.5t232 381.5t88.5 477 q0 132 -36 228.5t-100 148t-147 51.5q-154 0 -297.5 -147.5t-232 -381.5t-88.5 -477zM609 1610q147 45 274.5 116t206.5 150h37q57 -99 122 -163t163 -103l-9 -29q-111 21 -179 48.5t-117.5 55t-65.5 35.5q-226 -95 -422 -139z" />
-<glyph unicode="&#xd5;" horiz-adv-x="1493" d="M111 463q0 232 109 469t304.5 392t440.5 155q151 0 259.5 -58t166 -169t57.5 -267q0 -231 -110 -467.5t-306 -391.5t-440 -155q-151 0 -259 58t-165 168.5t-57 265.5zM328 436q0 -132 35.5 -228.5t99.5 -148t147 -51.5q155 0 298.5 147.5t232 381.5t88.5 477 q0 132 -36 228.5t-100 148t-147 51.5q-154 0 -297.5 -147.5t-232 -381.5t-88.5 -477zM668 1622q45 108 116.5 159.5t150.5 51.5q66 0 109 -21t111 -75t134 -54q78 0 143 119l37 -10q-45 -107 -116.5 -159t-149.5 -52q-66 0 -109 21t-111 75t-134 54q-79 0 -144 -119z" />
-<glyph unicode="&#xd6;" horiz-adv-x="1493" d="M111 463q0 232 109 469t304.5 392t440.5 155q151 0 259.5 -58t166 -169t57.5 -267q0 -231 -110 -467.5t-306 -391.5t-440 -155q-151 0 -259 58t-165 168.5t-57 265.5zM328 436q0 -132 35.5 -228.5t99.5 -148t147 -51.5q155 0 298.5 147.5t232 381.5t88.5 477 q0 132 -36 228.5t-100 148t-147 51.5q-154 0 -297.5 -147.5t-232 -381.5t-88.5 -477zM684 1686q0 31 19 62t51 51t68 20q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-46 0 -74.5 29.5t-28.5 75.5zM1119 1686q0 31 19 62t50.5 51t67.5 20q43 0 72.5 -30 t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-45 0 -73.5 30t-28.5 75z" />
-<glyph unicode="&#xd7;" horiz-adv-x="1051" d="M55 373l457 354l-256 358l53 37l252 -358l465 362l33 -45l-465 -360l256 -354l-51 -37l-254 354l-459 -356z" />
-<glyph unicode="&#xd8;" horiz-adv-x="1493" d="M-41 -121l245 260q-93 125 -93 324q0 232 109 469t304.5 392t440.5 155q247 0 374 -149l242 253l31 -27l-247 -261q83 -122 83 -310q0 -231 -110 -467.5t-306 -391.5t-440 -155q-232 0 -359 134l-239 -255zM328 436q0 -88 17 -163l861 930q-32 114 -100 176.5t-160 62.5 q-154 0 -297.5 -147.5t-232 -381.5t-88.5 -477zM359 222q33 -102 98.5 -158t152.5 -56q155 0 298.5 147.5t232 381.5t88.5 477q0 74 -12 138z" />
-<glyph unicode="&#xd9;" horiz-adv-x="1397" d="M170 290q0 106 51 300l170 643q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l13 41q82 -6 264 -6q157 0 256 6l-12 -41q-75 -3 -112 -16t-58 -48t-41 -112l-181 -678q-45 -177 -45 -277q0 -113 55.5 -174t186.5 -61q215 0 338.5 139.5t189.5 390.5l168 639q14 56 14 91 q0 56 -35 79t-116 27l10 41q70 -6 207 -6q123 0 193 6l-11 -41q-72 -3 -111.5 -21t-63 -58t-42.5 -118l-159 -616q-75 -285 -201 -434q-75 -88 -185 -139.5t-235 -51.5q-219 0 -315 111q-72 80 -72 208zM668 1901q0 23 14 41q17 20 46 20q23 0 47.5 -12t41.5 -31 q29 -31 68 -90t75.5 -112.5t90.5 -121.5l-21 -20q-55 45 -100 78t-118 84.5t-105 83.5q-16 16 -27.5 37.5t-11.5 42.5z" />
-<glyph unicode="&#xda;" horiz-adv-x="1397" d="M170 290q0 106 51 300l170 643q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l13 41q82 -6 264 -6q157 0 256 6l-12 -41q-75 -3 -112 -16t-58 -48t-41 -112l-181 -678q-45 -177 -45 -277q0 -113 55.5 -174t186.5 -61q215 0 338.5 139.5t189.5 390.5l168 639q14 56 14 91 q0 56 -35 79t-116 27l10 41q70 -6 207 -6q123 0 193 6l-11 -41q-72 -3 -111.5 -21t-63 -58t-42.5 -118l-159 -616q-75 -285 -201 -434q-75 -88 -185 -139.5t-235 -51.5q-219 0 -315 111q-72 80 -72 208zM844 1604q75 50 131 91.5t140 106.5t130 92q39 24 78 24q43 0 58 -34 q4 -9 4 -20q0 -25 -21.5 -49.5t-50.5 -40.5q-44 -26 -125.5 -56t-157 -60t-172.5 -77z" />
-<glyph unicode="&#xdb;" horiz-adv-x="1397" d="M170 290q0 106 51 300l170 643q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l13 41q82 -6 264 -6q157 0 256 6l-12 -41q-75 -3 -112 -16t-58 -48t-41 -112l-181 -678q-45 -177 -45 -277q0 -113 55.5 -174t186.5 -61q215 0 338.5 139.5t189.5 390.5l168 639q14 56 14 91 q0 56 -35 79t-116 27l10 41q70 -6 207 -6q123 0 193 6l-11 -41q-72 -3 -111.5 -21t-63 -58t-42.5 -118l-159 -616q-75 -285 -201 -434q-75 -88 -185 -139.5t-235 -51.5q-219 0 -315 111q-72 80 -72 208zM568 1610q147 45 274.5 116t206.5 150h37q57 -99 122 -163t163 -103 l-9 -29q-111 21 -179 48.5t-117.5 55t-65.5 35.5q-226 -95 -422 -139z" />
-<glyph unicode="&#xdc;" horiz-adv-x="1397" d="M170 290q0 106 51 300l170 643q17 65 17 98q0 31 -13.5 47t-42.5 22.5t-82 8.5l13 41q82 -6 264 -6q157 0 256 6l-12 -41q-75 -3 -112 -16t-58 -48t-41 -112l-181 -678q-45 -177 -45 -277q0 -113 55.5 -174t186.5 -61q215 0 338.5 139.5t189.5 390.5l168 639q14 56 14 91 q0 56 -35 79t-116 27l10 41q70 -6 207 -6q123 0 193 6l-11 -41q-72 -3 -111.5 -21t-63 -58t-42.5 -118l-159 -616q-75 -285 -201 -434q-75 -88 -185 -139.5t-235 -51.5q-219 0 -315 111q-72 80 -72 208zM643 1686q0 31 19 62t51 51t68 20q43 0 72.5 -30t29.5 -73 q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-46 0 -74.5 29.5t-28.5 75.5zM1078 1686q0 31 19 62t50.5 51t67.5 20q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-45 0 -73.5 30t-28.5 75z" />
-<glyph unicode="&#xdd;" horiz-adv-x="1372" d="M199 1102l67 198q22 64 46 102t61 57.5t94 19.5q108 0 174.5 -88t103.5 -245.5t64 -408.5q148 372 383 609q133 133 242 133q60 0 87 -31.5t27 -78.5q0 -30 -13 -63t-40.5 -56t-67.5 -23q-77 0 -77 81q0 33 18 67t47 61h-6q-55 -3 -113 -45q-108 -78 -231.5 -251.5 t-236.5 -447.5l-119 -475q-17 -66 -17 -99q0 -30 13.5 -46t42 -22.5t81.5 -8.5l-10 -41q-92 6 -254 6q-180 0 -268 -6l10 41q74 3 111 16t59 48.5t41 111.5l120 478q-73 671 -239 671q-35 0 -58 -22t-40 -74l-57 -168h-45zM836 1604q75 50 131 91.5t140 106.5t130 92 q39 24 78 24q43 0 58 -34q4 -9 4 -20q0 -25 -21.5 -49.5t-50.5 -40.5q-44 -26 -125.5 -56t-157 -60t-172.5 -77z" />
-<glyph unicode="&#xde;" horiz-adv-x="1239" d="M-68 0l11 41q72 3 108 16t57.5 48.5t41.5 111.5l270 1016q17 65 17 98q0 31 -14 47t-42.5 22.5t-81.5 8.5l10 41q84 -6 260 -6q165 0 262 6l-10 -41q-75 -3 -111.5 -16t-58 -48t-41.5 -112l-15 -58q198 3 216 3q201 0 304.5 -83t103.5 -227q0 -159 -97.5 -286 t-273.5 -199t-402 -72l-81 1l-25 -95q-17 -66 -17 -99q0 -30 13.5 -46t42.5 -22.5t82 -8.5l-8 -41q-96 6 -260 6q-171 0 -261 -6zM376 352h91q286 0 415.5 150t129.5 399q0 122 -62 180t-198 58q-90 0 -169 -7z" />
-<glyph unicode="&#xdf;" horiz-adv-x="1120" d="M-100 -385l372 1423q52 197 112.5 317.5t155.5 183.5t240 63q98 0 160 -28.5t90.5 -75t28.5 -103.5q0 -89 -56.5 -162.5t-123.5 -135t-91 -83.5q-69 -63 -69 -154q0 -61 25 -108.5t59.5 -91.5t50.5 -66q58 -78 89.5 -149.5t31.5 -147.5q0 -96 -49 -170t-133 -115 t-185 -41q-68 0 -127.5 19.5t-97 59t-37.5 97.5q0 45 22.5 72t57.5 27q49 0 68.5 -44.5t19.5 -95.5q0 -29 -12 -77q42 -17 86 -17q62 0 110.5 25.5t76.5 73.5t28 114q0 133 -107 269q-11 13 -49.5 60t-61 98t-22.5 104q0 66 31 109t90.5 94.5t85.5 78.5q131 138 131 316 q0 108 -41 162.5t-110 54.5q-59 0 -103 -36.5t-80 -115.5t-71 -213l-412 -1562q-108 -3 -184 -29z" />
-<glyph unicode="&#xe0;" horiz-adv-x="1071" d="M18 219q0 166 88.5 371t229 348t287.5 143q54 0 89.5 -40t41.5 -113l32 125q114 3 189 28l-256 -905q-15 -54 -15 -76q0 -51 46 -51q90 0 157 209l25 76h39l-51 -150q-42 -114 -105 -163.5t-131 -49.5q-38 0 -67.5 14.5t-45.5 39.5q-17 30 -17 72q0 30 7 62.5t15 62 t10 38.5l37 149q-98 -230 -199.5 -334t-212.5 -104q-94 0 -143.5 67.5t-49.5 180.5zM199 195q0 -85 18 -121.5t53 -36.5q57 0 136.5 87.5t156 233.5t126.5 312l38 149q2 32 2 45q0 82 -29.5 130t-83.5 48q-87 0 -185.5 -135.5t-165 -335.5t-66.5 -376zM409 1671q0 41 33 58 q15 6 32 6q53 0 89 -64q25 -43 54 -119t58 -147.5t75 -165.5l-27 -12q-51 72 -93 125.5t-107.5 131.5t-92.5 122q-21 34 -21 65z" />
-<glyph unicode="&#xe1;" horiz-adv-x="1071" d="M18 219q0 166 88.5 371t229 348t287.5 143q54 0 89.5 -40t41.5 -113l32 125q114 3 189 28l-256 -905q-15 -54 -15 -76q0 -51 46 -51q90 0 157 209l25 76h39l-51 -150q-42 -114 -105 -163.5t-131 -49.5q-38 0 -67.5 14.5t-45.5 39.5q-17 30 -17 72q0 30 7 62.5t15 62 t10 38.5l37 149q-98 -230 -199.5 -334t-212.5 -104q-94 0 -143.5 67.5t-49.5 180.5zM199 195q0 -85 18 -121.5t53 -36.5q57 0 136.5 87.5t156 233.5t126.5 312l38 149q2 32 2 45q0 82 -29.5 130t-83.5 48q-87 0 -185.5 -135.5t-165 -335.5t-66.5 -376zM602 1245 q56 66 97.5 120t105.5 141.5t104 127.5q40 46 84 46q25 0 45 -15q16 -16 16 -40q0 -41 -46 -87q-36 -38 -106 -89t-134 -100.5t-145 -121.5z" />
-<glyph unicode="&#xe2;" horiz-adv-x="1071" d="M18 219q0 166 88.5 371t229 348t287.5 143q54 0 89.5 -40t41.5 -113l32 125q114 3 189 28l-256 -905q-15 -54 -15 -76q0 -51 46 -51q90 0 157 209l25 76h39l-51 -150q-42 -114 -105 -163.5t-131 -49.5q-38 0 -67.5 14.5t-45.5 39.5q-17 30 -17 72q0 30 7 62.5t15 62 t10 38.5l37 149q-98 -230 -199.5 -334t-212.5 -104q-94 0 -143.5 67.5t-49.5 180.5zM199 195q0 -85 18 -121.5t53 -36.5q57 0 136.5 87.5t156 233.5t126.5 312l38 149q2 32 2 45q0 82 -29.5 130t-83.5 48q-87 0 -185.5 -135.5t-165 -335.5t-66.5 -376zM340 1290 q133 57 249.5 151.5t191.5 200.5h36q22 -128 78 -210.5t166 -141.5l-8 -28q-119 33 -196 84t-148 129q-179 -141 -359 -213z" />
-<glyph unicode="&#xe3;" horiz-adv-x="1071" d="M18 219q0 166 88.5 371t229 348t287.5 143q54 0 89.5 -40t41.5 -113l32 125q114 3 189 28l-256 -905q-15 -54 -15 -76q0 -51 46 -51q90 0 157 209l25 76h39l-51 -150q-42 -114 -105 -163.5t-131 -49.5q-38 0 -67.5 14.5t-45.5 39.5q-17 30 -17 72q0 30 7 62.5t15 62 t10 38.5l37 149q-98 -230 -199.5 -334t-212.5 -104q-94 0 -143.5 67.5t-49.5 180.5zM199 195q0 -85 18 -121.5t53 -36.5q57 0 136.5 87.5t156 233.5t126.5 312l38 149q2 32 2 45q0 82 -29.5 130t-83.5 48q-87 0 -185.5 -135.5t-165 -335.5t-66.5 -376zM366 1362 q45 107 116.5 159t150.5 52q59 0 97 -21t98 -75t118 -54q78 0 143 119l37 -10q-45 -107 -116.5 -159t-149.5 -52q-59 0 -97.5 21t-98.5 74.5t-118 53.5q-79 0 -143 -118z" />
-<glyph unicode="&#xe4;" horiz-adv-x="1071" d="M18 219q0 166 88.5 371t229 348t287.5 143q54 0 89.5 -40t41.5 -113l32 125q114 3 189 28l-256 -905q-15 -54 -15 -76q0 -51 46 -51q90 0 157 209l25 76h39l-51 -150q-42 -114 -105 -163.5t-131 -49.5q-38 0 -67.5 14.5t-45.5 39.5q-17 30 -17 72q0 30 7 62.5t15 62 t10 38.5l37 149q-98 -230 -199.5 -334t-212.5 -104q-94 0 -143.5 67.5t-49.5 180.5zM199 195q0 -85 18 -121.5t53 -36.5q57 0 136.5 87.5t156 233.5t126.5 312l38 149q2 32 2 45q0 82 -29.5 130t-83.5 48q-87 0 -185.5 -135.5t-165 -335.5t-66.5 -376zM428 1389q0 31 19 62 t51 51t68 20q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-46 0 -74.5 29.5t-28.5 75.5zM863 1389q0 31 19 62t50.5 51t67.5 20q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-45 0 -73.5 30t-28.5 75z" />
-<glyph unicode="&#xe5;" horiz-adv-x="1071" d="M18 219q0 166 88.5 371t229 348t287.5 143q54 0 89.5 -40t41.5 -113l32 125q114 3 189 28l-256 -905q-15 -54 -15 -76q0 -51 46 -51q90 0 157 209l25 76h39l-51 -150q-42 -114 -105 -163.5t-131 -49.5q-38 0 -67.5 14.5t-45.5 39.5q-17 30 -17 72q0 30 7 62.5t15 62 t10 38.5l37 149q-98 -230 -199.5 -334t-212.5 -104q-94 0 -143.5 67.5t-49.5 180.5zM199 195q0 -85 18 -121.5t53 -36.5q57 0 136.5 87.5t156 233.5t126.5 312l38 149q2 32 2 45q0 82 -29.5 130t-83.5 48q-87 0 -185.5 -135.5t-165 -335.5t-66.5 -376zM578 1409 q0 58 30 106.5t81 76.5t112 28q49 0 89 -20.5t63.5 -57.5t23.5 -86q0 -56 -32 -104.5t-85 -77.5t-112 -29q-74 0 -122 44.5t-48 119.5zM631 1411q0 -58 37 -90.5t88 -32.5q43 0 82 22.5t62.5 61.5t23.5 86q0 37 -19 64t-49 41t-63 14q-41 0 -78.5 -23.5t-60.5 -62t-23 -80.5 z" />
-<glyph unicode="&#xe6;" horiz-adv-x="1350" d="M6 199q0 176 112 380t282.5 343t332.5 139q89 0 135 -72q126 92 260 92q86 0 139.5 -40t53.5 -115q0 -161 -185 -279t-430 -196q-20 -102 -20 -197q0 -197 141 -197q167 0 308 205l41 -16q-42 -72 -106 -134.5t-143.5 -101.5t-162.5 -39q-100 0 -166.5 46.5t-90.5 136.5 q-118 -183 -296 -183q-102 0 -153.5 62t-51.5 166zM186 174q0 -64 22 -100.5t68 -36.5q51 0 110 39.5t112 123.5q-4 29 -4 60q0 107 44 241t123 260t180 208q-36 49 -93 49q-110 0 -243.5 -124t-226 -320t-92.5 -400zM715 490q205 72 282 133q76 59 118 143.5t42 183.5 q0 44 -19.5 68t-54.5 24q-60 0 -133 -77t-137.5 -204.5t-97.5 -270.5z" />
-<glyph unicode="&#xe7;" horiz-adv-x="885" d="M8 -340l14 31q30 -13 55 -20t68 -7q27 0 61.5 10t60.5 33.5t26 61.5q0 49 -58 49q-33 0 -63 -15l94 197h55l-69 -147q39 14 84 14q41 0 64.5 -22t23.5 -60q0 -56 -39 -94.5t-97.5 -57t-115.5 -18.5q-53 0 -97.5 13.5t-66.5 31.5zM37 272q0 166 78 357t219 321.5 t321 130.5q61 0 111.5 -21t80.5 -60.5t30 -92.5q0 -40 -18 -78t-51.5 -62t-76.5 -24q-41 0 -62.5 23t-21.5 57q0 58 45.5 100.5t108.5 53.5q-44 63 -139 63q-103 0 -204.5 -110.5t-166 -292.5t-64.5 -383q0 -100 38 -148.5t106 -48.5q166 0 307 205l41 -16 q-42 -72 -106 -134.5t-143.5 -101.5t-162.5 -39q-126 0 -198 77t-72 224z" />
-<glyph unicode="&#xe8;" horiz-adv-x="879" d="M25 260q0 155 91 350.5t246.5 333t337.5 137.5q66 0 109 -35t43 -100q0 -166 -185 -289t-427 -205q-23 -102 -23 -198q0 -197 141 -197q175 0 316 205l33 -16q-42 -72 -106 -134.5t-143.5 -101.5t-162.5 -39q-127 0 -198.5 74.5t-71.5 214.5zM249 491q202 71 279 132 q76 59 118 143.5t42 183.5q0 55 -8 73.5t-25 18.5q-66 0 -147 -76.5t-151.5 -204t-107.5 -270.5zM358 1671q0 41 33 58q15 6 32 6q53 0 89 -64q25 -43 54 -119t58 -147.5t75 -165.5l-27 -12q-51 72 -93 125.5t-107.5 131.5t-92.5 122q-21 34 -21 65z" />
-<glyph unicode="&#xe9;" horiz-adv-x="879" d="M25 260q0 155 91 350.5t246.5 333t337.5 137.5q66 0 109 -35t43 -100q0 -166 -185 -289t-427 -205q-23 -102 -23 -198q0 -197 141 -197q175 0 316 205l33 -16q-42 -72 -106 -134.5t-143.5 -101.5t-162.5 -39q-127 0 -198.5 74.5t-71.5 214.5zM249 491q202 71 279 132 q76 59 118 143.5t42 183.5q0 55 -8 73.5t-25 18.5q-66 0 -147 -76.5t-151.5 -204t-107.5 -270.5zM551 1245q56 66 97.5 120t105.5 141.5t104 127.5q40 46 84 46q25 0 45 -15q16 -16 16 -40q0 -41 -46 -87q-36 -38 -106 -89t-134 -100.5t-145 -121.5z" />
-<glyph unicode="&#xea;" horiz-adv-x="879" d="M25 260q0 155 91 350.5t246.5 333t337.5 137.5q66 0 109 -35t43 -100q0 -166 -185 -289t-427 -205q-23 -102 -23 -198q0 -197 141 -197q175 0 316 205l33 -16q-42 -72 -106 -134.5t-143.5 -101.5t-162.5 -39q-127 0 -198.5 74.5t-71.5 214.5zM249 491q202 71 279 132 q76 59 118 143.5t42 183.5q0 55 -8 73.5t-25 18.5q-66 0 -147 -76.5t-151.5 -204t-107.5 -270.5zM289 1290q133 57 249.5 151.5t191.5 200.5h36q22 -128 78 -210.5t166 -141.5l-8 -28q-119 33 -196 84t-148 129q-179 -141 -359 -213z" />
-<glyph unicode="&#xeb;" horiz-adv-x="879" d="M25 260q0 155 91 350.5t246.5 333t337.5 137.5q66 0 109 -35t43 -100q0 -166 -185 -289t-427 -205q-23 -102 -23 -198q0 -197 141 -197q175 0 316 205l33 -16q-42 -72 -106 -134.5t-143.5 -101.5t-162.5 -39q-127 0 -198.5 74.5t-71.5 214.5zM249 491q202 71 279 132 q76 59 118 143.5t42 183.5q0 55 -8 73.5t-25 18.5q-66 0 -147 -76.5t-151.5 -204t-107.5 -270.5zM377 1389q0 31 19 62t51 51t68 20q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-46 0 -74.5 29.5t-28.5 75.5zM812 1389q0 31 19 62t50.5 51t67.5 20 q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-45 0 -73.5 30t-28.5 75z" />
-<glyph unicode="&#xec;" horiz-adv-x="618" d="M66 721l53 149q42 117 110 164t144 47q136 0 136 -128q0 -60 -34 -158l-219 -621q-16 -44 -16 -75q0 -52 49 -52q42 0 79 46.5t81 162.5l28 76h39l-53 -150q-40 -111 -107 -161t-145 -50q-143 0 -143 125q0 63 36 162l220 621q15 45 15 75q0 52 -44 52q-47 0 -84 -49.5 t-78 -159.5l-29 -76h-38zM141 1671q0 41 33 58q15 6 32 6q53 0 89 -64q25 -43 54 -119t58 -147.5t75 -165.5l-27 -12q-51 72 -93 125.5t-107.5 131.5t-92.5 122q-21 34 -21 65z" />
-<glyph unicode="&#xed;" horiz-adv-x="618" d="M66 721l53 149q42 117 110 164t144 47q136 0 136 -128q0 -60 -34 -158l-219 -621q-16 -44 -16 -75q0 -52 49 -52q42 0 79 46.5t81 162.5l28 76h39l-53 -150q-40 -111 -107 -161t-145 -50q-143 0 -143 125q0 63 36 162l220 621q15 45 15 75q0 52 -44 52q-47 0 -84 -49.5 t-78 -159.5l-29 -76h-38zM334 1245q56 66 97.5 120t105.5 141.5t104 127.5q40 46 84 46q25 0 45 -15q16 -16 16 -40q0 -41 -46 -87q-36 -38 -106 -89t-134 -100.5t-145 -121.5z" />
-<glyph unicode="&#xee;" horiz-adv-x="618" d="M66 721l53 149q42 117 110 164t144 47q136 0 136 -128q0 -60 -34 -158l-219 -621q-16 -44 -16 -75q0 -52 49 -52q42 0 79 46.5t81 162.5l28 76h39l-53 -150q-40 -111 -107 -161t-145 -50q-143 0 -143 125q0 63 36 162l220 621q15 45 15 75q0 52 -44 52q-47 0 -84 -49.5 t-78 -159.5l-29 -76h-38zM72 1290q133 57 249.5 151.5t191.5 200.5h36q22 -128 78 -210.5t166 -141.5l-8 -28q-119 33 -196 84t-148 129q-179 -141 -359 -213z" />
-<glyph unicode="&#xef;" horiz-adv-x="618" d="M66 721l53 149q42 117 110 164t144 47q136 0 136 -128q0 -60 -34 -158l-219 -621q-16 -44 -16 -75q0 -52 49 -52q42 0 79 46.5t81 162.5l28 76h39l-53 -150q-40 -111 -107 -161t-145 -50q-143 0 -143 125q0 63 36 162l220 621q15 45 15 75q0 52 -44 52q-47 0 -84 -49.5 t-78 -159.5l-29 -76h-38zM160 1389q0 31 19 62t51 51t68 20q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-46 0 -74.5 29.5t-28.5 75.5zM595 1389q0 31 19 62t50.5 51t67.5 20q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5 q-45 0 -73.5 30t-28.5 75z" />
-<glyph unicode="&#xf0;" horiz-adv-x="997" d="M43 293q0 160 70.5 346t201.5 314t301 128q63 0 108 -31q-28 167 -113 289l-378 -168l-12 37l367 162q-91 115 -250 197l24 35q190 -71 316 -190l328 144l12 -36l-311 -137q208 -219 208 -576q0 -184 -71 -379t-205.5 -326t-314.5 -131q-131 0 -206 81.5t-75 240.5z M219 190q0 -178 117 -178q105 0 198 133t149 332.5t56 384.5q0 78 -9 148q-39 30 -114 30q-102 0 -193.5 -133.5t-147.5 -333.5t-56 -383z" />
-<glyph unicode="&#xf1;" horiz-adv-x="1188" d="M63 721l52 149q72 211 243 211q121 0 121 -121q0 -55 -28 -165l-71 -280q88 208 169.5 332t164.5 179t179 55q165 0 165 -154q0 -61 -30 -155l-199 -598q-16 -48 -16 -77q0 -50 49 -50q42 0 80 46.5t78 162.5l27 76h38l-51 -150q-72 -211 -248 -211q-92 0 -129 60 q-16 26 -16 67q0 58 35 160l194 586q21 61 21 101q0 71 -66 71q-79 0 -178 -114.5t-194.5 -314.5t-166.5 -444l-36 -143h-178l245 879q15 49 15 77q0 50 -45 50q-31 0 -55.5 -19.5t-49 -64.5t-53.5 -125l-27 -76h-39zM391 1362q45 107 116.5 159t150.5 52q59 0 97 -21 t98 -75t118 -54q78 0 143 119l37 -10q-45 -107 -116.5 -159t-149.5 -52q-59 0 -97.5 21t-98.5 74.5t-118 53.5q-79 0 -143 -118z" />
-<glyph unicode="&#xf2;" horiz-adv-x="999" d="M43 293q0 161 71.5 346.5t206.5 313.5t314 128q131 0 205.5 -81t74.5 -240q0 -161 -71.5 -346.5t-206 -314t-313.5 -128.5q-131 0 -206 81.5t-75 240.5zM219 190q0 -178 117 -178q105 0 198 133t149 332.5t56 384.5q0 92 -28.5 135t-87.5 43q-105 0 -198.5 -133 t-149.5 -333t-56 -384zM399 1671q0 41 33 58q15 6 32 6q53 0 89 -64q25 -43 54 -119t58 -147.5t75 -165.5l-27 -12q-51 72 -93 125.5t-107.5 131.5t-92.5 122q-21 34 -21 65z" />
-<glyph unicode="&#xf3;" horiz-adv-x="999" d="M43 293q0 161 71.5 346.5t206.5 313.5t314 128q131 0 205.5 -81t74.5 -240q0 -161 -71.5 -346.5t-206 -314t-313.5 -128.5q-131 0 -206 81.5t-75 240.5zM219 190q0 -178 117 -178q105 0 198 133t149 332.5t56 384.5q0 92 -28.5 135t-87.5 43q-105 0 -198.5 -133 t-149.5 -333t-56 -384zM592 1245q56 66 97.5 120t105.5 141.5t104 127.5q40 46 84 46q25 0 45 -15q16 -16 16 -40q0 -41 -46 -87q-36 -38 -106 -89t-134 -100.5t-145 -121.5z" />
-<glyph unicode="&#xf4;" horiz-adv-x="999" d="M43 293q0 161 71.5 346.5t206.5 313.5t314 128q131 0 205.5 -81t74.5 -240q0 -161 -71.5 -346.5t-206 -314t-313.5 -128.5q-131 0 -206 81.5t-75 240.5zM219 190q0 -178 117 -178q105 0 198 133t149 332.5t56 384.5q0 92 -28.5 135t-87.5 43q-105 0 -198.5 -133 t-149.5 -333t-56 -384zM330 1290q133 57 249.5 151.5t191.5 200.5h36q22 -128 78 -210.5t166 -141.5l-8 -28q-119 33 -196 84t-148 129q-179 -141 -359 -213z" />
-<glyph unicode="&#xf5;" horiz-adv-x="999" d="M43 293q0 161 71.5 346.5t206.5 313.5t314 128q131 0 205.5 -81t74.5 -240q0 -161 -71.5 -346.5t-206 -314t-313.5 -128.5q-131 0 -206 81.5t-75 240.5zM219 190q0 -178 117 -178q105 0 198 133t149 332.5t56 384.5q0 92 -28.5 135t-87.5 43q-105 0 -198.5 -133 t-149.5 -333t-56 -384zM356 1362q45 107 116.5 159t150.5 52q59 0 97 -21t98 -75t118 -54q78 0 143 119l37 -10q-45 -107 -116.5 -159t-149.5 -52q-59 0 -97.5 21t-98.5 74.5t-118 53.5q-79 0 -143 -118z" />
-<glyph unicode="&#xf6;" horiz-adv-x="999" d="M43 293q0 161 71.5 346.5t206.5 313.5t314 128q131 0 205.5 -81t74.5 -240q0 -161 -71.5 -346.5t-206 -314t-313.5 -128.5q-131 0 -206 81.5t-75 240.5zM219 190q0 -178 117 -178q105 0 198 133t149 332.5t56 384.5q0 92 -28.5 135t-87.5 43q-105 0 -198.5 -133 t-149.5 -333t-56 -384zM418 1389q0 31 19 62t51 51t68 20q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-46 0 -74.5 29.5t-28.5 75.5zM853 1389q0 31 19 62t50.5 51t67.5 20q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5 q-45 0 -73.5 30t-28.5 75z" />
-<glyph unicode="&#xf7;" horiz-adv-x="1346" d="M178 696l19 62h1026l-19 -62h-1026zM509 400q0 14 5 32q13 46 56 79.5t89 33.5q39 0 63 -22.5t24 -58.5q0 -14 -5 -32q-14 -47 -57 -81t-90 -34q-38 0 -61.5 23.5t-23.5 59.5zM679 990q0 14 5 32q14 46 56.5 79.5t88.5 33.5q39 0 63 -23t24 -59q0 -13 -5 -31 q-13 -48 -56 -80.5t-91 -32.5q-38 0 -61.5 22.5t-23.5 58.5z" />
-<glyph unicode="&#xf8;" horiz-adv-x="999" d="M-74 -123l169 205q-52 81 -52 211q0 161 71.5 346.5t206.5 313.5t314 128q139 0 211 -88l172 207l26 -24l-175 -215q46 -78 46 -201q0 -161 -71.5 -346.5t-206 -314t-313.5 -128.5q-130 0 -204 79l-165 -200zM219 212l520 672q-4 81 -32.5 118.5t-83.5 37.5 q-103 0 -195 -128.5t-148.5 -322.5t-60.5 -377zM221 147q12 -135 115 -135q102 0 192 124t147 313t63 372z" />
-<glyph unicode="&#xf9;" horiz-adv-x="1161" d="M59 721l52 149q72 211 247 211q144 0 144 -127q0 -56 -33 -159l-195 -586q-20 -60 -20 -102q0 -70 65 -70q78 0 173.5 114t188 318t162.5 462l31 122q117 3 187 28l-254 -907q-15 -52 -15 -80q0 -47 44 -47q45 0 82.5 48.5t76.5 160.5l27 76h39l-51 -150 q-74 -211 -248 -211q-34 0 -62.5 14.5t-42.5 41.5q-12 25 -12 63q0 54 29 168l65 257q-82 -198 -158.5 -317.5t-154 -173t-166.5 -53.5q-173 0 -173 158q0 64 30 152l198 598q16 50 16 77q0 50 -48 50q-42 0 -80 -46.5t-78 -162.5l-27 -76h-39zM378 1671q0 41 33 58 q15 6 32 6q53 0 89 -64q25 -43 54 -119t58 -147.5t75 -165.5l-27 -12q-51 72 -93 125.5t-107.5 131.5t-92.5 122q-21 34 -21 65z" />
-<glyph unicode="&#xfa;" horiz-adv-x="1161" d="M59 721l52 149q72 211 247 211q144 0 144 -127q0 -56 -33 -159l-195 -586q-20 -60 -20 -102q0 -70 65 -70q78 0 173.5 114t188 318t162.5 462l31 122q117 3 187 28l-254 -907q-15 -52 -15 -80q0 -47 44 -47q45 0 82.5 48.5t76.5 160.5l27 76h39l-51 -150 q-74 -211 -248 -211q-34 0 -62.5 14.5t-42.5 41.5q-12 25 -12 63q0 54 29 168l65 257q-82 -198 -158.5 -317.5t-154 -173t-166.5 -53.5q-173 0 -173 158q0 64 30 152l198 598q16 50 16 77q0 50 -48 50q-42 0 -80 -46.5t-78 -162.5l-27 -76h-39zM571 1245q56 66 97.5 120 t105.5 141.5t104 127.5q40 46 84 46q25 0 45 -15q16 -16 16 -40q0 -41 -46 -87q-36 -38 -106 -89t-134 -100.5t-145 -121.5z" />
-<glyph unicode="&#xfb;" horiz-adv-x="1161" d="M59 721l52 149q72 211 247 211q144 0 144 -127q0 -56 -33 -159l-195 -586q-20 -60 -20 -102q0 -70 65 -70q78 0 173.5 114t188 318t162.5 462l31 122q117 3 187 28l-254 -907q-15 -52 -15 -80q0 -47 44 -47q45 0 82.5 48.5t76.5 160.5l27 76h39l-51 -150 q-74 -211 -248 -211q-34 0 -62.5 14.5t-42.5 41.5q-12 25 -12 63q0 54 29 168l65 257q-82 -198 -158.5 -317.5t-154 -173t-166.5 -53.5q-173 0 -173 158q0 64 30 152l198 598q16 50 16 77q0 50 -48 50q-42 0 -80 -46.5t-78 -162.5l-27 -76h-39zM309 1290q133 57 249.5 151.5 t191.5 200.5h36q22 -128 78 -210.5t166 -141.5l-8 -28q-119 33 -196 84t-148 129q-179 -141 -359 -213z" />
-<glyph unicode="&#xfc;" horiz-adv-x="1161" d="M59 721l52 149q72 211 247 211q144 0 144 -127q0 -56 -33 -159l-195 -586q-20 -60 -20 -102q0 -70 65 -70q78 0 173.5 114t188 318t162.5 462l31 122q117 3 187 28l-254 -907q-15 -52 -15 -80q0 -47 44 -47q45 0 82.5 48.5t76.5 160.5l27 76h39l-51 -150 q-74 -211 -248 -211q-34 0 -62.5 14.5t-42.5 41.5q-12 25 -12 63q0 54 29 168l65 257q-82 -198 -158.5 -317.5t-154 -173t-166.5 -53.5q-173 0 -173 158q0 64 30 152l198 598q16 50 16 77q0 50 -48 50q-42 0 -80 -46.5t-78 -162.5l-27 -76h-39zM397 1389q0 31 19 62t51 51 t68 20q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-46 0 -74.5 29.5t-28.5 75.5zM832 1389q0 31 19 62t50.5 51t67.5 20q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-45 0 -73.5 30t-28.5 75z" />
-<glyph unicode="&#xfd;" horiz-adv-x="985" d="M-150 -301q0 42 33 67t78 25q43 0 83 -21t87 -59q161 85 307 245l-151 918q-11 63 -25.5 88t-40.5 25t-54 -40t-67 -148l-26 -76h-39l51 149q72 209 236 209q43 0 72 -17t47 -58t28 -113l105 -770q112 154 194 326t115 339q-63 33 -109.5 81t-46.5 108q0 49 29 76.5 t75 27.5q107 0 107 -166q0 -131 -58 -295t-150.5 -325t-194.5 -289q-192 -239 -404 -340q-107 -51 -178 -51q-44 0 -73.5 22t-29.5 62zM506 1245q56 66 97.5 120t105.5 141.5t104 127.5q40 46 84 46q25 0 45 -15q16 -16 16 -40q0 -41 -46 -87q-36 -38 -106 -89t-134 -100.5 t-145 -121.5z" />
-<glyph unicode="&#xfe;" horiz-adv-x="1128" d="M-141 -371l12 43q50 0 79.5 11.5t48 39t32.5 76.5l386 1366q-62 -136 -146 -241.5t-203 -218.5l-23 26q98 96 162 168.5t129 178.5t129 259l74 262q113 5 186 29l-259 -903q90 191 179.5 273.5t192.5 82.5q99 0 156 -73t57 -215q0 -166 -73.5 -359.5t-210.5 -328 t-316 -134.5q-56 0 -101 31t-66 87l-77 -269q-8 -29 -8 -49q0 -54 45 -76.5t129 -22.5l-13 -43q-24 1 -107.5 5t-166.5 4q-66 0 -138 -4t-89 -5zM299 141q26 -67 62 -95t88 -28q109 0 207 136t158 331t60 353q0 88 -25 133t-71 45q-53 0 -123 -69.5t-137.5 -187.5 t-114.5 -255z" />
-<glyph unicode="&#xff;" horiz-adv-x="985" d="M-150 -301q0 42 33 67t78 25q43 0 83 -21t87 -59q161 85 307 245l-151 918q-11 63 -25.5 88t-40.5 25t-54 -40t-67 -148l-26 -76h-39l51 149q72 209 236 209q43 0 72 -17t47 -58t28 -113l105 -770q112 154 194 326t115 339q-63 33 -109.5 81t-46.5 108q0 49 29 76.5 t75 27.5q107 0 107 -166q0 -131 -58 -295t-150.5 -325t-194.5 -289q-192 -239 -404 -340q-107 -51 -178 -51q-44 0 -73.5 22t-29.5 62zM332 1389q0 31 19 62t51 51t68 20q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-46 0 -74.5 29.5t-28.5 75.5z M767 1389q0 31 19 62t50.5 51t67.5 20q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-45 0 -73.5 30t-28.5 75z" />
-<glyph unicode="&#x152;" horiz-adv-x="1958" d="M115 463q0 232 103.5 469t289.5 392t420 155q114 0 207 -31q190 -4 516 -4q266 0 383 6q-26 -68 -78 -242q-27 -70 -27 -127h-45q15 86 15 145q0 96 -42.5 136.5t-138.5 40.5h-170q-71 0 -106.5 -12t-57 -46.5t-41.5 -111.5l-128 -483h200q58 0 96.5 30.5t62 76 t52.5 122.5h45q-28 -85 -45 -154.5t-24 -95.5q-28 -97 -54 -250h-45q0 20 5.5 63t5.5 64q0 45 -23 72t-84 31h-203l-131 -492q-17 -66 -17 -99q0 -30 13.5 -45t41.5 -20.5t79 -5.5h190q99 0 163 34t110.5 111t93.5 218h45q-11 -26 -23.5 -74t-19.5 -74q-39 -143 -53 -262 q-133 6 -443 6q-307 0 -489 -4q-110 -31 -209 -31q-139 0 -237.5 57.5t-150.5 168t-52 266.5zM332 436q0 -132 30.5 -228.5t85 -148t125.5 -51.5q90 0 150 18t99.5 63.5t60.5 127.5l270 1016q11 40 11 76q0 79 -59 106t-171 27q-156 0 -295 -147t-223 -380.5t-84 -478.5z " />
-<glyph unicode="&#x153;" horiz-adv-x="1473" d="M31 293q0 152 89 334t242.5 308t337.5 126q90 0 135.5 -38.5t45.5 -105.5q0 -13 -2 -30q81 91 175.5 142.5t196.5 51.5q86 0 139.5 -40t53.5 -115q0 -161 -185 -279t-430 -196q-20 -102 -20 -197q0 -197 141 -197q168 0 307 205l41 -16q-41 -72 -105 -134.5 t-143.5 -101.5t-162.5 -39q-120 0 -191.5 67.5t-78.5 194.5q-130 -262 -336 -262q-114 0 -182 82t-68 240zM207 190q0 -89 23.5 -128t72.5 -39q91 0 175.5 85.5t143.5 231.5q14 108 62.5 228.5t120.5 225.5q25 62 25 110q0 50 -27.5 80t-87.5 30q-135 0 -252 -128.5 t-186.5 -321.5t-69.5 -374zM838 490q205 72 282 133q76 59 118 143.5t42 183.5q0 44 -19.5 68t-54.5 24q-60 0 -133 -77t-137.5 -204.5t-97.5 -270.5z" />
-<glyph unicode="&#x178;" horiz-adv-x="1372" d="M199 1102l67 198q22 64 46 102t61 57.5t94 19.5q108 0 174.5 -88t103.5 -245.5t64 -408.5q148 372 383 609q133 133 242 133q60 0 87 -31.5t27 -78.5q0 -30 -13 -63t-40.5 -56t-67.5 -23q-77 0 -77 81q0 33 18 67t47 61h-6q-55 -3 -113 -45q-108 -78 -231.5 -251.5 t-236.5 -447.5l-119 -475q-17 -66 -17 -99q0 -30 13.5 -46t42 -22.5t81.5 -8.5l-10 -41q-92 6 -254 6q-180 0 -268 -6l10 41q74 3 111 16t59 48.5t41 111.5l120 478q-73 671 -239 671q-35 0 -58 -22t-40 -74l-57 -168h-45zM635 1686q0 31 19 62t51 51t68 20q43 0 72.5 -30 t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-46 0 -74.5 29.5t-28.5 75.5zM1070 1686q0 31 19 62t50.5 51t67.5 20q43 0 72.5 -30t29.5 -73q0 -33 -19 -64.5t-50.5 -51t-67.5 -19.5q-45 0 -73.5 30t-28.5 75z" />
-<glyph unicode="&#x2c6;" horiz-adv-x="823" d="M96 1290q133 57 249.5 151.5t191.5 200.5h36q22 -128 78 -210.5t166 -141.5l-8 -28q-119 33 -196 84t-148 129q-179 -141 -359 -213z" />
-<glyph unicode="&#x2dc;" horiz-adv-x="842" d="M182 1362q45 107 116.5 159t150.5 52q59 0 97 -21t98 -75t118 -54q78 0 143 119l37 -10q-45 -107 -116.5 -159t-149.5 -52q-59 0 -97.5 21t-98.5 74.5t-118 53.5q-79 0 -143 -118z" />
-<glyph unicode="&#x2000;" horiz-adv-x="981" />
-<glyph unicode="&#x2001;" horiz-adv-x="1962" />
-<glyph unicode="&#x2002;" horiz-adv-x="981" />
-<glyph unicode="&#x2003;" horiz-adv-x="1962" />
-<glyph unicode="&#x2004;" horiz-adv-x="654" />
-<glyph unicode="&#x2005;" horiz-adv-x="490" />
-<glyph unicode="&#x2006;" horiz-adv-x="327" />
-<glyph unicode="&#x2007;" horiz-adv-x="327" />
-<glyph unicode="&#x2008;" horiz-adv-x="245" />
-<glyph unicode="&#x2009;" horiz-adv-x="392" />
-<glyph unicode="&#x200a;" horiz-adv-x="109" />
-<glyph unicode="&#x2010;" horiz-adv-x="1032" d="M109 461l30 119h740l-31 -119h-739z" />
-<glyph unicode="&#x2011;" horiz-adv-x="1032" d="M109 461l30 119h740l-31 -119h-739z" />
-<glyph unicode="&#x2012;" horiz-adv-x="1032" d="M109 461l30 119h740l-31 -119h-739z" />
-<glyph unicode="&#x2013;" horiz-adv-x="1491" d="M102 500l21 82h1231l-23 -82h-1229z" />
-<glyph unicode="&#x2014;" horiz-adv-x="2052" d="M102 500l21 82h1792l-23 -82h-1790z" />
-<glyph unicode="&#x2018;" horiz-adv-x="489" d="M252 1104q0 71 36 143t104 135.5t161 108.5l10 -28q-97 -59 -154 -129t-63 -140q59 52 107 52q36 0 56.5 -19.5t20.5 -52.5q0 -43 -27.5 -87.5t-71.5 -73.5t-89 -29t-67.5 35t-22.5 85z" />
-<glyph unicode="&#x2019;" horiz-adv-x="492" d="M256 975q97 59 154 129t63 140q-59 -52 -107 -52q-36 0 -56.5 19.5t-20.5 52.5q0 43 27.5 87.5t71.5 73.5t89 29t67.5 -35t22.5 -85q0 -71 -36 -143t-104 -135.5t-161 -108.5z" />
-<glyph unicode="&#x201a;" horiz-adv-x="516" d="M-47 -246q97 59 154 129t63 140q-59 -52 -107 -52q-36 0 -56.5 19.5t-20.5 52.5q0 43 27.5 87.5t71.5 73.5t89 29t67.5 -35t22.5 -85q0 -71 -36 -143t-104 -135.5t-161 -108.5z" />
-<glyph unicode="&#x201c;" horiz-adv-x="817" d="M254 1106q0 71 36 143t104.5 135.5t160.5 108.5l11 -28q-97 -59 -154 -129t-64 -140q59 52 107 52q27 0 42 -19.5t15 -52.5q0 -43 -24.5 -87.5t-63.5 -73.5t-80 -29q-90 0 -90 120zM594 1106q0 71 36 143t104.5 135.5t160.5 108.5l11 -28q-97 -59 -154 -129t-64 -140 q59 52 107 52q27 0 42 -19.5t15 -52.5q0 -43 -24.5 -87.5t-63.5 -73.5t-80 -29q-90 0 -90 120z" />
-<glyph unicode="&#x201d;" horiz-adv-x="821" d="M247 981q97 59 154 129t64 140q-59 -52 -107 -52q-27 0 -42 19.5t-15 52.5q0 43 24.5 87.5t63.5 73.5t80 29q90 0 90 -120q0 -71 -36 -143t-104.5 -135.5t-160.5 -108.5zM587 981q97 59 154 129t64 140q-59 -52 -107 -52q-27 0 -42 19.5t-15 52.5q0 43 24.5 87.5 t63.5 73.5t80 29q90 0 90 -120q0 -71 -36 -143t-104.5 -135.5t-160.5 -108.5z" />
-<glyph unicode="&#x201e;" horiz-adv-x="838" d="M-66 -246q97 59 154 129t64 140q-59 -52 -107 -52q-27 0 -42 19.5t-15 52.5q0 43 24.5 87.5t63.5 73.5t80 29q90 0 90 -120q0 -71 -36 -143t-104.5 -135.5t-160.5 -108.5zM274 -246q97 59 154 129t64 140q-59 -52 -107 -52q-27 0 -42 19.5t-15 52.5q0 43 24.5 87.5 t63.5 73.5t80 29q90 0 90 -120q0 -71 -36 -143t-104.5 -135.5t-160.5 -108.5z" />
-<glyph unicode="&#x2022;" horiz-adv-x="911" d="M138 481q0 19 1 29q9 80 55 147t116.5 106.5t150.5 39.5q74 0 134.5 -34.5t95 -94t34.5 -132.5q0 -10 -2 -32q-8 -80 -54 -146.5t-117 -105.5t-151 -39q-74 0 -134 34.5t-94.5 94.5t-34.5 133z" />
-<glyph unicode="&#x2026;" horiz-adv-x="1649" d="M-3 76q0 40 22 76.5t57.5 58.5t73.5 22q46 0 75 -30.5t29 -76.5q0 -40 -21.5 -75.5t-57.5 -57.5t-75 -22q-45 0 -74 30t-29 75zM572 76q0 40 22 76.5t57.5 58.5t73.5 22q46 0 75 -30.5t29 -76.5q0 -40 -21.5 -75.5t-57.5 -57.5t-75 -22q-45 0 -74 30t-29 75zM1146 76 q0 40 22 76.5t57.5 58.5t73.5 22q46 0 75 -30.5t29 -76.5q0 -40 -21.5 -75.5t-57.5 -57.5t-75 -22q-45 0 -74 30t-29 75z" />
-<glyph unicode="&#x202f;" horiz-adv-x="392" />
-<glyph unicode="&#x2039;" horiz-adv-x="721" d="M49 498v4q157 110 294 253t271 326h37q-42 -90 -120 -206t-166.5 -218.5t-161.5 -156.5q57 -47 116.5 -141t106 -200t66.5 -188h-37q-181 353 -406 527z" />
-<glyph unicode="&#x203a;" horiz-adv-x="719" d="M31 -29q42 90 120 206t166.5 219t161.5 157q-57 47 -116.5 140.5t-106 199.5t-66.5 188h37q181 -354 406 -528v-2q-157 -112 -294.5 -254.5t-270.5 -325.5h-37z" />
-<glyph unicode="&#x205f;" horiz-adv-x="490" />
-<glyph unicode="&#x20ac;" horiz-adv-x="1231" d="M78 608l12 41h171q19 82 49 164h-177l12 41h181q67 170 170.5 311.5t239 227.5t290.5 86q132 0 213 -72q59 -56 59 -115q0 -35 -19 -68t-51.5 -53t-70.5 -20q-39 0 -62.5 21t-23.5 57q0 48 36.5 87.5t90.5 53.5q-11 30 -57.5 52t-102.5 22q-101 0 -197.5 -80t-177 -214 t-139.5 -296h416l-35 -41h-395q-28 -82 -48 -164h308l-37 -41h-280q-33 -154 -33 -280q0 -159 54.5 -240.5t160.5 -81.5q62 0 123 23.5t86 54.5q-64 12 -64 76q0 36 20.5 68t55 51.5t72.5 19.5q39 0 61.5 -21t22.5 -57q0 -93 -140 -178q-117 -72 -256 -72 q-118 0 -204.5 51.5t-133.5 149.5t-47 236q0 93 21 200h-174z" />
-<glyph unicode="&#x2122;" horiz-adv-x="2286" d="M330 1450q108 -6 372 -6q263 0 371 6q-14 -101 -14 -180q0 -66 6 -107h-47q-9 132 -40 186t-91 54h-111v-612q0 -60 10.5 -86t39.5 -36t96 -14v-41q-98 7 -220 7q-135 0 -221 -7v41q66 4 95 14t40 36.5t11 85.5v612h-111q-60 0 -91 -54t-40 -186h-47q6 41 6 107 q0 79 -14 180zM1190 614v41q48 4 68.5 12t28 30t7.5 73v524q0 51 -7.5 73.5t-28 30.5t-68.5 11v41q46 -6 129 -6q71 0 139 6l248 -608l227 602h97q99 0 157 6v-41q-48 -3 -68.5 -11t-28 -30.5t-7.5 -73.5v-524q0 -51 7.5 -73t28 -30t68.5 -12v-41q-79 7 -178 7 q-95 0 -160 -7v41q38 4 54.5 12t23 30.5t6.5 72.5v545l-268 -711h-33l-291 715v-549q0 -50 6.5 -72.5t23 -30.5t54.5 -12v-41q-49 7 -106 7q-75 0 -129 -7z" />
-<glyph unicode="&#x25fc;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
-<glyph unicode="&#xfb03;" horiz-adv-x="1772" d="M-59 -385l386 1397h-188l13 41h187q30 101 77.5 189t103.5 138q157 140 367 140q143 0 231 -87l25 23q87 74 198.5 110t229.5 36q73 0 135.5 -21.5t96.5 -67.5q18 -29 18 -64q0 -40 -21.5 -75.5t-57.5 -57.5t-75 -22q-45 0 -74 29.5t-29 73.5q0 15 3 28q7 46 41.5 82 t79.5 46q-50 18 -133 18q-113 0 -215 -66q-57 -38 -96.5 -98t-69 -141t-64.5 -211l-1 -2h390q117 3 187 28l-277 -907q-14 -48 -14 -76q0 -51 47 -51q42 0 79 46.5t81 162.5l28 76h39l-53 -150q-40 -111 -107 -161t-145 -50q-143 0 -143 124q0 61 37 163l229 754h-389 l-389 -1368q-108 -3 -184 -29l396 1397h-417l-379 -1368q-108 -3 -184 -29zM515 1053h417q33 120 70.5 205.5t88.5 145.5q-78 79 -200 79q-97 0 -172 -49q-71 -48 -116.5 -135.5t-86.5 -243.5z" />
-<glyph unicode="&#xfb04;" horiz-adv-x="1800" d="M-59 -385l386 1397h-188l13 41h187q30 101 77.5 189t103.5 138q157 140 367 140q151 0 241 -98q71 59 160 90.5t178 31.5h39q109 1 195.5 22t169.5 62l-428 -1454q-13 -47 -13 -73q0 -54 48 -54q41 0 77 47.5t76 161.5l27 76h39l-51 -150q-74 -211 -246 -211 q-141 0 -141 133q0 59 28 154l334 1108q11 36 11 61q0 43 -31.5 64.5t-104.5 21.5h-25q-71 0 -159 -53q-48 -27 -82 -80.5t-59.5 -128t-57.5 -196.5l-1 -2h241l-13 -41h-239l-379 -1368q-108 -3 -184 -29l386 1397h-419l-379 -1368q-108 -3 -184 -29zM515 1053h419 q34 124 72.5 206t92.5 137q-79 87 -208 87q-97 0 -172 -49q-71 -48 -116.5 -135.5t-86.5 -243.5z" />
-<hkern u1="&#x29;" u2="&#x7d;" k="43" />
-<hkern u1="&#x29;" u2="]" k="31" />
-<hkern u1="&#x29;" u2="&#x29;" k="117" />
-<hkern u1="&#x30;" u2="&#xb0;" k="92" />
-<hkern u1="&#x30;" u2="&#x7d;" k="47" />
-<hkern u1="&#x30;" u2="]" k="41" />
-<hkern u1="&#x30;" u2="\" k="127" />
-<hkern u1="&#x30;" u2="&#x33;" k="31" />
-<hkern u1="&#x30;" u2="&#x29;" k="117" />
-<hkern u1="&#x31;" u2="&#x7d;" k="35" />
-<hkern u1="&#x31;" u2="]" k="35" />
-<hkern u1="&#x31;" u2="\" k="59" />
-<hkern u1="&#x31;" u2="&#x35;" k="33" />
-<hkern u1="&#x31;" u2="&#x33;" k="27" />
-<hkern u1="&#x31;" u2="&#x29;" k="102" />
-<hkern u1="&#x32;" u2="&#xb7;" k="29" />
-<hkern u1="&#x32;" u2="&#xb0;" k="84" />
-<hkern u1="&#x32;" u2="&#xa4;" k="23" />
-<hkern u1="&#x32;" u2="&#x7d;" k="31" />
-<hkern u1="&#x32;" u2="]" k="37" />
-<hkern u1="&#x32;" u2="\" k="131" />
-<hkern u1="&#x32;" u2="&#x35;" k="51" />
-<hkern u1="&#x32;" u2="&#x33;" k="43" />
-<hkern u1="&#x32;" u2="&#x29;" k="94" />
-<hkern u1="&#x33;" u2="&#xb7;" k="25" />
-<hkern u1="&#x33;" u2="&#xb0;" k="86" />
-<hkern u1="&#x33;" u2="&#x7d;" k="33" />
-<hkern u1="&#x33;" u2="]" k="35" />
-<hkern u1="&#x33;" u2="\" k="121" />
-<hkern u1="&#x33;" u2="&#x35;" k="35" />
-<hkern u1="&#x33;" u2="&#x33;" k="29" />
-<hkern u1="&#x33;" u2="&#x29;" k="86" />
-<hkern u1="&#x34;" u2="&#x20ac;" k="39" />
-<hkern u1="&#x34;" u2="&#xf7;" k="72" />
-<hkern u1="&#x34;" u2="&#xd7;" k="49" />
-<hkern u1="&#x34;" u2="&#xb7;" k="66" />
-<hkern u1="&#x34;" u2="&#xb0;" k="92" />
-<hkern u1="&#x34;" u2="&#xa4;" k="74" />
-<hkern u1="&#x34;" u2="&#x7d;" k="25" />
-<hkern u1="&#x34;" u2="]" k="31" />
-<hkern u1="&#x34;" u2="\" k="156" />
-<hkern u1="&#x34;" u2="&#x3d;" k="47" />
-<hkern u1="&#x34;" u2="&#x39;" k="41" />
-<hkern u1="&#x34;" u2="&#x37;" k="57" />
-<hkern u1="&#x34;" u2="&#x35;" k="68" />
-<hkern u1="&#x34;" u2="&#x33;" k="76" />
-<hkern u1="&#x34;" u2="&#x31;" k="43" />
-<hkern u1="&#x34;" u2="&#x2b;" k="55" />
-<hkern u1="&#x34;" u2="&#x29;" k="74" />
-<hkern u1="&#x34;" u2="&#x23;" k="35" />
-<hkern u1="&#x34;" u2="&#x20;" k="45" />
-<hkern u1="&#x35;" u2="&#xf7;" k="55" />
-<hkern u1="&#x35;" u2="&#xb7;" k="31" />
-<hkern u1="&#x35;" u2="&#xb0;" k="37" />
-<hkern u1="&#x35;" u2="&#xa4;" k="20" />
-<hkern u1="&#x35;" u2="&#x7d;" k="23" />
-<hkern u1="&#x35;" u2="]" k="27" />
-<hkern u1="&#x35;" u2="\" k="74" />
-<hkern u1="&#x35;" u2="&#x35;" k="39" />
-<hkern u1="&#x35;" u2="&#x33;" k="45" />
-<hkern u1="&#x35;" u2="&#x29;" k="78" />
-<hkern u1="&#x36;" u2="&#x7d;" k="20" />
-<hkern u1="&#x36;" u2="&#x33;" k="20" />
-<hkern u1="&#x36;" u2="&#x29;" k="72" />
-<hkern u1="&#x37;" u2="&#xb7;" k="41" />
-<hkern u1="&#x37;" u2="&#x35;" k="31" />
-<hkern u1="&#x37;" u2="&#x34;" k="84" />
-<hkern u1="&#x37;" u2="&#x2f;" k="41" />
-<hkern u1="&#x37;" u2="&#x29;" k="80" />
-<hkern u1="&#x37;" u2="&#x20;" k="20" />
-<hkern u1="&#x38;" u2="&#xf7;" k="25" />
-<hkern u1="&#x38;" u2="&#x7d;" k="23" />
-<hkern u1="&#x38;" u2="]" k="27" />
-<hkern u1="&#x38;" u2="&#x33;" k="25" />
-<hkern u1="&#x38;" u2="&#x2b;" k="31" />
-<hkern u1="&#x38;" u2="&#x29;" k="92" />
-<hkern u1="&#x39;" u2="&#xb0;" k="106" />
-<hkern u1="&#x39;" u2="&#x7d;" k="45" />
-<hkern u1="&#x39;" u2="]" k="37" />
-<hkern u1="&#x39;" u2="\" k="129" />
-<hkern u1="&#x39;" u2="&#x33;" k="27" />
-<hkern u1="&#x39;" u2="&#x29;" k="106" />
-<hkern u1="&#x3d;" u2="&#x35;" k="20" />
-<hkern u1="&#x3d;" u2="&#x34;" k="49" />
-<hkern u1="&#x3d;" u2="&#x33;" k="20" />
-<hkern u1="H" u2="&#xf0;" k="-6" />
-<hkern u1="H" u2="&#xef;" k="-23" />
-<hkern u1="H" u2="v" k="27" />
-<hkern u1="H" u2="b" k="23" />
-<hkern u1="I" u2="&#xf0;" k="-6" />
-<hkern u1="I" u2="&#xef;" k="-23" />
-<hkern u1="I" u2="v" k="27" />
-<hkern u1="I" u2="b" k="23" />
-<hkern u1="M" u2="&#xf0;" k="-6" />
-<hkern u1="M" u2="&#xef;" k="-23" />
-<hkern u1="M" u2="v" k="27" />
-<hkern u1="M" u2="b" k="23" />
-<hkern u1="[" u2="&#x7b;" k="23" />
-<hkern u1="[" u2="&#x38;" k="23" />
-<hkern u1="[" u2="&#x37;" k="23" />
-<hkern u1="[" u2="&#x36;" k="31" />
-<hkern u1="[" u2="&#x32;" k="20" />
-<hkern u1="[" u2="&#x31;" k="27" />
-<hkern u1="[" u2="&#x30;" k="39" />
-<hkern u1="[" u2="&#x28;" k="29" />
-<hkern u1="&#x7b;" u2="&#xec;" k="-37" />
-<hkern u1="&#x7b;" u2="&#x7b;" k="33" />
-<hkern u1="&#x7b;" u2="&#x38;" k="25" />
-<hkern u1="&#x7b;" u2="&#x37;" k="23" />
-<hkern u1="&#x7b;" u2="&#x36;" k="45" />
-<hkern u1="&#x7b;" u2="&#x32;" k="20" />
-<hkern u1="&#x7b;" u2="&#x31;" k="27" />
-<hkern u1="&#x7b;" u2="&#x30;" k="47" />
-<hkern u1="&#x7b;" u2="&#x28;" k="43" />
-<hkern u1="&#x7d;" u2="&#x7d;" k="33" />
-<hkern u1="&#x7d;" u2="]" k="20" />
-<hkern u1="&#x7d;" u2="&#x29;" k="55" />
-<hkern u1="&#xa3;" u2="&#x35;" k="23" />
-<hkern u1="&#xa3;" u2="&#x33;" k="55" />
-<hkern u1="&#xa4;" u2="&#x35;" k="41" />
-<hkern u1="&#xa4;" u2="&#x33;" k="70" />
-<hkern u1="&#xb0;" u2="&#x39;" k="49" />
-<hkern u1="&#xb0;" u2="&#x36;" k="51" />
-<hkern u1="&#xb0;" u2="&#x35;" k="45" />
-<hkern u1="&#xb0;" u2="&#x34;" k="78" />
-<hkern u1="&#xb0;" u2="&#x33;" k="35" />
-<hkern u1="&#xb0;" u2="&#x30;" k="23" />
-<hkern u1="&#xb2;" u2="&#xb3;" k="41" />
-<hkern u1="&#xb3;" u2="&#xb3;" k="20" />
-<hkern u1="&#xb7;" u2="&#x37;" k="35" />
-<hkern u1="&#xb7;" u2="&#x35;" k="33" />
-<hkern u1="&#xb7;" u2="&#x34;" k="39" />
-<hkern u1="&#xb7;" u2="&#x33;" k="70" />
-<hkern u1="&#xb7;" u2="&#x32;" k="37" />
-<hkern u1="&#xb7;" u2="&#x31;" k="37" />
-<hkern u1="&#xcc;" u2="&#xf0;" k="-6" />
-<hkern u1="&#xcc;" u2="&#xef;" k="-23" />
-<hkern u1="&#xcc;" u2="v" k="27" />
-<hkern u1="&#xcc;" u2="b" k="23" />
-<hkern u1="&#xcd;" u2="&#xf0;" k="-6" />
-<hkern u1="&#xcd;" u2="&#xef;" k="-23" />
-<hkern u1="&#xcd;" u2="v" k="27" />
-<hkern u1="&#xcd;" u2="b" k="23" />
-<hkern u1="&#xce;" u2="&#xf0;" k="-6" />
-<hkern u1="&#xce;" u2="&#xef;" k="-23" />
-<hkern u1="&#xce;" u2="&#x7c;" k="-74" />
-<hkern u1="&#xce;" u2="v" k="27" />
-<hkern u1="&#xce;" u2="b" k="23" />
-<hkern u1="&#xcf;" u2="&#xf0;" k="-6" />
-<hkern u1="&#xcf;" u2="&#xef;" k="-23" />
-<hkern u1="&#xcf;" u2="&#x7c;" k="-43" />
-<hkern u1="&#xcf;" u2="v" k="27" />
-<hkern u1="&#xcf;" u2="b" k="23" />
-<hkern u1="&#xd7;" u2="&#x35;" k="43" />
-<hkern u1="&#xd7;" u2="&#x34;" k="33" />
-<hkern u1="&#xd7;" u2="&#x33;" k="43" />
-<hkern u1="&#xe9;" u2="&#x29;" k="57" />
-<hkern u1="&#xeb;" u2="&#x2122;" k="12" />
-<hkern u1="&#xeb;" u2="\" k="23" />
-<hkern u1="&#xef;" u2="\" k="23" />
-<hkern u1="&#xf7;" u2="&#x35;" k="43" />
-<hkern u1="&#xf7;" u2="&#x34;" k="88" />
-<hkern u1="&#xf7;" u2="&#x33;" k="33" />
-<hkern u1="&#x20ac;" u2="&#x35;" k="20" />
-<hkern g1="r" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="41" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="49" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="p,thorn" 	k="16" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="t" 	k="14" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="16" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="f,uniFB01,uniFB02" 	k="23" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="14" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="45" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="y,yacute,ydieresis" 	k="25" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="g" 	k="18" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="hyphen,uni00AD,endash,emdash" 	k="23" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="AE" 	k="51" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="z" 	k="25" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="slash" 	k="41" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="s" 	k="25" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="b,h,k,germandbls" 	k="20" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="l" 	k="18" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="41" />
-<hkern g1="j" 	g2="braceright" 	k="23" />
-<hkern g1="j" 	g2="bar" 	k="49" />
-<hkern g1="j" 	g2="quoteleft,quotedblleft" 	k="16" />
-<hkern g1="j" 	g2="quotedbl,quotesingle" 	k="25" />
-<hkern g1="j" 	g2="registered" 	k="29" />
-<hkern g1="j" 	g2="S" 	k="14" />
-<hkern g1="j" 	g2="Y,Yacute,Ydieresis" 	k="27" />
-<hkern g1="j" 	g2="bracketright" 	k="20" />
-<hkern g1="j" 	g2="parenright" 	k="33" />
-<hkern g1="j" 	g2="backslash" 	k="68" />
-<hkern g1="j" 	g2="T" 	k="14" />
-<hkern g1="j" 	g2="B,D,E,F,H,I,K,L,M,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Thorn" 	k="16" />
-<hkern g1="j" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="16" />
-<hkern g1="j" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="29" />
-<hkern g1="j" 	g2="trademark" 	k="37" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="p,thorn" 	k="14" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="y,yacute,ydieresis" 	k="29" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="g" 	k="20" />
-<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="parenright" 	k="35" />
-<hkern g1="Z" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="23" />
-<hkern g1="Z" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-31" />
-<hkern g1="Z" 	g2="y,yacute,ydieresis" 	k="115" />
-<hkern g1="Z" 	g2="g" 	k="18" />
-<hkern g1="Z" 	g2="hyphen,uni00AD,endash,emdash" 	k="33" />
-<hkern g1="Z" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="14" />
-<hkern g1="Z" 	g2="v,w" 	k="82" />
-<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteleft,quotedblleft" 	k="82" />
-<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteright,quotedblright" 	k="102" />
-<hkern g1="J" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="102" />
-<hkern g1="J" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="82" />
-<hkern g1="J" 	g2="y,yacute,ydieresis" 	k="123" />
-<hkern g1="J" 	g2="g" 	k="82" />
-<hkern g1="J" 	g2="z" 	k="102" />
-<hkern g1="J" 	g2="s" 	k="102" />
-<hkern g1="J" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
-<hkern g1="J" 	g2="v,w" 	k="123" />
-<hkern g1="J" 	g2="m,n,r,ntilde" 	k="82" />
-<hkern g1="J" 	g2="x" 	k="123" />
-<hkern g1="t" 	g2="quoteleft,quotedblleft" 	k="20" />
-<hkern g1="t" 	g2="quoteright,quotedblright" 	k="41" />
-<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="61" />
-<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="N,Ntilde" 	k="82" />
-<hkern g1="y,yacute,ydieresis" 	g2="quoteleft,quotedblleft" 	k="41" />
-<hkern g1="y,yacute,ydieresis" 	g2="quoteright,quotedblright" 	k="82" />
-<hkern g1="T" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="246" />
-<hkern g1="T" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="102" />
-<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="164" />
-<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="205" />
-<hkern g1="T" 	g2="y,yacute,ydieresis" 	k="266" />
-<hkern g1="T" 	g2="g" 	k="225" />
-<hkern g1="T" 	g2="s" 	k="205" />
-<hkern g1="T" 	g2="m,n,r,ntilde" 	k="205" />
-<hkern g1="T" 	g2="x" 	k="225" />
-<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="225" />
-<hkern g1="L" 	g2="g" 	k="61" />
-<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="246" />
-<hkern g1="L" 	g2="T" 	k="307" />
-<hkern g1="L" 	g2="v,w" 	k="61" />
-<hkern g1="L" 	g2="V,W" 	k="184" />
-<hkern g1="L" 	g2="quoteright,quotedblright" 	k="143" />
-<hkern g1="v,w" 	g2="quoteleft,quotedblleft" 	k="82" />
-<hkern g1="v,w" 	g2="quoteright,quotedblright" 	k="123" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="225" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="225" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="205" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="246" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="246" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="AE" 	k="266" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="266" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="246" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="v,w" 	k="184" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,r,ntilde" 	k="184" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="246" />
-<hkern g1="h,m,n,ntilde" 	g2="quoteleft,quotedblleft" 	k="123" />
-<hkern g1="h,m,n,ntilde" 	g2="quoteright,quotedblright" 	k="123" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="53" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="p,thorn" 	k="27" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="t" 	k="18" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="16" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="f,uniFB01,uniFB02" 	k="20" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="16" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="y,yacute,ydieresis" 	k="39" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="g" 	k="23" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="hyphen,uni00AD,endash,emdash" 	k="33" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="z" 	k="39" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="s" 	k="14" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="b,h,k,germandbls" 	k="16" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="l" 	k="20" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="25" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="braceright" 	k="-76" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="bar" 	k="-82" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="bracketright" 	k="-55" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="parenright" 	k="-70" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="v,w" 	k="16" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="m,n,r,ntilde" 	k="14" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="x" 	k="35" />
-<hkern g1="s" 	g2="quoteright,quotedblright" 	k="61" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="164" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="184" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="V,W" 	k="102" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteright,quotedblright" 	k="205" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="J" 	k="164" />
-<hkern g1="V,W" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="102" />
-<hkern g1="V,W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="41" />
-<hkern g1="V,W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="102" />
-<hkern g1="V,W" 	g2="g" 	k="61" />
-<hkern g1="V,W" 	g2="AE" 	k="307" />
-<hkern g1="V,W" 	g2="s" 	k="82" />
-<hkern g1="V,W" 	g2="m,n,r,ntilde" 	k="41" />
-<hkern g1="N,Ntilde" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="123" />
-<hkern g1="N,Ntilde" 	g2="t" 	k="82" />
-<hkern g1="N,Ntilde" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="82" />
-<hkern g1="N,Ntilde" 	g2="f,uniFB01,uniFB02" 	k="102" />
-<hkern g1="N,Ntilde" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="102" />
-<hkern g1="N,Ntilde" 	g2="y,yacute,ydieresis" 	k="164" />
-<hkern g1="N,Ntilde" 	g2="g" 	k="164" />
-<hkern g1="N,Ntilde" 	g2="s" 	k="123" />
-<hkern g1="N,Ntilde" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="123" />
-<hkern g1="N,Ntilde" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
-<hkern g1="N,Ntilde" 	g2="v,w" 	k="164" />
-<hkern g1="N,Ntilde" 	g2="m,n,r,ntilde" 	k="102" />
-<hkern g1="N,Ntilde" 	g2="x" 	k="184" />
-<hkern g1="N,Ntilde" 	g2="N,Ntilde" 	k="102" />
-<hkern g1="c,ccedilla" 	g2="quoteright,quotedblright" 	k="20" />
-<hkern g1="k" 	g2="quoteleft,quotedblleft" 	k="61" />
-<hkern g1="k" 	g2="quoteright,quotedblright" 	k="61" />
-<hkern g1="F" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="86" />
-<hkern g1="F" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="96" />
-<hkern g1="F" 	g2="y,yacute,ydieresis" 	k="102" />
-<hkern g1="F" 	g2="hyphen,uni00AD,endash,emdash" 	k="98" />
-<hkern g1="F" 	g2="AE" 	k="283" />
-<hkern g1="F" 	g2="z" 	k="82" />
-<hkern g1="F" 	g2="slash" 	k="74" />
-<hkern g1="F" 	g2="s" 	k="55" />
-<hkern g1="F" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="195" />
-<hkern g1="F" 	g2="space" 	k="47" />
-<hkern g1="F" 	g2="x" 	k="61" />
-<hkern g1="x" 	g2="quoteleft,quotedblleft" 	k="20" />
-<hkern g1="x" 	g2="quoteright,quotedblright" 	k="61" />
-<hkern g1="S" 	g2="p,thorn" 	k="20" />
-<hkern g1="S" 	g2="f,uniFB01,uniFB02" 	k="14" />
-<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="14" />
-<hkern g1="S" 	g2="y,yacute,ydieresis" 	k="39" />
-<hkern g1="S" 	g2="g" 	k="23" />
-<hkern g1="S" 	g2="parenright" 	k="45" />
-<hkern g1="K" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="41" />
-<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="193" />
-<hkern g1="K" 	g2="g" 	k="14" />
-<hkern g1="K" 	g2="hyphen,uni00AD,endash,emdash" 	k="18" />
-<hkern g1="K" 	g2="s" 	k="61" />
-<hkern g1="K" 	g2="parenright" 	k="43" />
-<hkern g1="K" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="31" />
-<hkern g1="K" 	g2="v,w" 	k="123" />
-<hkern g1="K" 	g2="V,W" 	k="82" />
-<hkern g1="K" 	g2="m,n,r,ntilde" 	k="82" />
-<hkern g1="K" 	g2="x" 	k="41" />
-<hkern g1="C,Ccedilla" 	g2="parenright" 	k="33" />
-<hkern g1="X" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="41" />
-<hkern g1="X" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-20" />
-<hkern g1="X" 	g2="y,yacute,ydieresis" 	k="45" />
-<hkern g1="X" 	g2="hyphen,uni00AD,endash,emdash" 	k="25" />
-<hkern g1="X" 	g2="parenright" 	k="37" />
-<hkern g1="X" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="43" />
-<hkern g1="P" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="20" />
-<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="82" />
-<hkern g1="z" 	g2="quoteright,quotedblright" 	k="41" />
-<hkern g1="quotedbl,quotesingle" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-20" />
-<hkern g1="quotedbl,quotesingle" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="211" />
-<hkern g1="quotedbl,quotesingle" 	g2="space" 	k="43" />
-<hkern g1="quotedbl,quotesingle" 	g2="four" 	k="35" />
-<hkern g1="quotedbl,quotesingle" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="141" />
-<hkern g1="quotedbl,quotesingle" 	g2="at" 	k="33" />
-<hkern g1="quotedbl,quotesingle" 	g2="p,thorn" 	k="18" />
-<hkern g1="quotedbl,quotesingle" 	g2="five" 	k="51" />
-<hkern g1="quotedbl,quotesingle" 	g2="hyphen,uni00AD,endash,emdash" 	k="72" />
-<hkern g1="quotedbl,quotesingle" 	g2="slash" 	k="145" />
-<hkern g1="quotedbl,quotesingle" 	g2="AE" 	k="164" />
-<hkern g1="quotedbl,quotesingle" 	g2="six" 	k="31" />
-<hkern g1="quotedbl,quotesingle" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="27" />
-<hkern g1="three" 	g2="hyphen,uni00AD,endash,emdash" 	k="27" />
-<hkern g1="three" 	g2="quotedbl,quotesingle" 	k="61" />
-<hkern g1="bracketleft" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="31" />
-<hkern g1="bracketleft" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="27" />
-<hkern g1="bracketleft" 	g2="x" 	k="23" />
-<hkern g1="bracketleft" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="23" />
-<hkern g1="bracketleft" 	g2="m,n,r,ntilde" 	k="25" />
-<hkern g1="bracketleft" 	g2="v,w" 	k="25" />
-<hkern g1="bracketleft" 	g2="s" 	k="23" />
-<hkern g1="two" 	g2="hyphen,uni00AD,endash,emdash" 	k="31" />
-<hkern g1="two" 	g2="quotedbl,quotesingle" 	k="61" />
-<hkern g1="quoteleft,quotedblleft" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="201" />
-<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="127" />
-<hkern g1="quoteleft,quotedblleft" 	g2="AE" 	k="158" />
-<hkern g1="quoteleft,quotedblleft" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="41" />
-<hkern g1="quoteleft,quotedblleft" 	g2="s" 	k="41" />
-<hkern g1="quoteleft,quotedblleft" 	g2="N,Ntilde" 	k="35" />
-<hkern g1="nine" 	g2="quotedbl,quotesingle" 	k="80" />
-<hkern g1="quoteright,quotedblright" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="213" />
-<hkern g1="quoteright,quotedblright" 	g2="space" 	k="35" />
-<hkern g1="quoteright,quotedblright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="135" />
-<hkern g1="quoteright,quotedblright" 	g2="at" 	k="23" />
-<hkern g1="quoteright,quotedblright" 	g2="hyphen,uni00AD,endash,emdash" 	k="45" />
-<hkern g1="quoteright,quotedblright" 	g2="slash" 	k="139" />
-<hkern g1="quoteright,quotedblright" 	g2="AE" 	k="162" />
-<hkern g1="quoteright,quotedblright" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="41" />
-<hkern g1="quoteright,quotedblright" 	g2="x" 	k="41" />
-<hkern g1="quoteright,quotedblright" 	g2="s" 	k="41" />
-<hkern g1="quoteright,quotedblright" 	g2="N,Ntilde" 	k="23" />
-<hkern g1="zero" 	g2="quotedbl,quotesingle" 	k="66" />
-<hkern g1="four" 	g2="hyphen,uni00AD,endash,emdash" 	k="66" />
-<hkern g1="four" 	g2="quotedbl,quotesingle" 	k="80" />
-<hkern g1="seven" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="94" />
-<hkern g1="seven" 	g2="hyphen,uni00AD,endash,emdash" 	k="43" />
-<hkern g1="five" 	g2="hyphen,uni00AD,endash,emdash" 	k="33" />
-<hkern g1="five" 	g2="quotedbl,quotesingle" 	k="23" />
-<hkern g1="braceleft" 	g2="a,c,d,e,o,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="35" />
-<hkern g1="braceleft" 	g2="C,G,O,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="31" />
-<hkern g1="braceleft" 	g2="x" 	k="20" />
-<hkern g1="braceleft" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="27" />
-<hkern g1="braceleft" 	g2="m,n,r,ntilde" 	k="29" />
-<hkern g1="braceleft" 	g2="v,w" 	k="27" />
-<hkern g1="braceleft" 	g2="s" 	k="23" />
-<hkern g1="periodcentered" 	g2="B,D,E,F,H,I,K,L,M,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Thorn" 	k="33" />
-<hkern g1="periodcentered" 	g2="l" 	k="131" />
-</font>
-</defs></svg> 
\ No newline at end of file
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-italic-webfont.ttf b/client/assets/fonts/playfairdisplay/playfairdisplay-italic-webfont.ttf
deleted file mode 100755
index cf9b3b4d8d877a44f8058831a6fea8a21508bf2a..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-italic-webfont.ttf and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-italic-webfont.woff b/client/assets/fonts/playfairdisplay/playfairdisplay-italic-webfont.woff
deleted file mode 100755
index b48f7681506ceb7099431c84ddc0014de28b134f..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-italic-webfont.woff and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-italic-webfont.woff2 b/client/assets/fonts/playfairdisplay/playfairdisplay-italic-webfont.woff2
deleted file mode 100755
index ef3899fc6667295ea155db9bcd652f96eb3e15e6..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-italic-webfont.woff2 and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-regular-demo.html b/client/assets/fonts/playfairdisplay/playfairdisplay-regular-demo.html
deleted file mode 100755
index 95748b5e3596b872d2a995a7b71126acc435d596..0000000000000000000000000000000000000000
--- a/client/assets/fonts/playfairdisplay/playfairdisplay-regular-demo.html
+++ /dev/null
@@ -1,613 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-	<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script>
-	<script src="specimen_files/easytabs.js" type="text/javascript" charset="utf-8"></script>
-	<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" />
-	<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
-
-	<style type="text/css">
-					body{
-				font-family: 'playfair_displayregular';
-							}
-		</style>
-
-	<title>Playfair Display Regular Specimen</title>
-	
-	
-	<script type="text/javascript" charset="utf-8">
-		$(document).ready(function() {
-			$('#container').easyTabs({defaultContent:1});
-		});
-	</script>
-</head>
-
-<body>
-<div id="container">
-	<div id="header">
-		Playfair Display Regular	</div>
-	<ul class="tabs">
-		<li><a href="#specimen">Specimen</a></li>
-		<li><a href="#layout">Sample Layout</a></li>
-				<li><a href="#glyphs">Glyphs &amp; Languages</a></li>
-		<li><a href="#installing">Installing Webfonts</a></li>
-		
-	</ul>
-	
-	<div id="main_content">
-
-		
-			<div id="specimen">
-		
-				<div class="section">
-					<div class="grid12 firstcol">
-						<div class="huge">AaBb</div>
-					</div>
-				</div>
-		
-				<div class="section">
-					<div class="glyph_range">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>
-				</div>
-				<div class="section">
-					<div class="grid12 firstcol">
-						<table class="sample_table">
-							<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-							<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
-						</table>
-				
-					</div>
-			
-				</div>
-		
-		
-		
-								<div class="section" id="bodycomparison">
-
-
-										<div id="xheight">
-				<div class="fontbody">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div>
-										<div class="fontbody" style="z-index:1">
-											body<span>Playfair Display Regular</span>
-										</div>
-										<div class="arialbody" style="z-index:1">
-											body<span>Arial</span>
-										</div>
-										<div class="verdanabody" style="z-index:1">
-											body<span>Verdana</span>
-										</div>
-										<div class="georgiabody" style="z-index:1">
-											body<span>Georgia</span>
-										</div>
-
-
-
-								</div>
-		
-		
-				<div class="section psample psample_row1" id="">
-					
-					<div class="grid2 firstcol">
-						<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="white_blend"></div>
-					
-				</div>
-				<div class="section psample psample_row2" id="">
-					<div class="grid3 firstcol">
-						<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid5">
-						<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-
-					<div class="white_blend"></div>
-
-				</div>
-				
-				<div class="section psample psample_row3" id="">
-					<div class="grid5 firstcol">
-						<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="grid7">
-						<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					
-					<div class="white_blend"></div>
-					
-				</div>
-				
-				<div class="section psample psample_row4" id="">
-					<div class="grid12 firstcol">
-						<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="white_blend"></div>
-					
-				</div>
-				
-				
-				
-				<div class="section psample psample_row1 fullreverse">
-					<div class="grid2 firstcol">
-						<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid3">
-						<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				<div class="section psample psample_row2 fullreverse">
-					<div class="grid3 firstcol">
-						<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid4">
-						<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="grid5">
-						<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-			
-					</div>
-					<div class="black_blend"></div>
-
-				</div>
-				
-				<div class="section psample fullreverse psample_row3" id="">
-					<div class="grid5 firstcol">
-						<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="grid7">
-						<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
-					<div class="grid12 firstcol">
-						<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
-					</div>
-					<div class="black_blend"></div>
-					
-				</div>
-				
-				
-				
-				
-			</div>
-			
-			<div id="layout">
-				
-				<div class="section">
-					
-					<div class="grid12 firstcol">
-						<h1>Lorem Ipsum Dolor</h1>
-						<h2>Etiam porta sem malesuada magna mollis euismod</h2>
-						
-						<p class="byline">By <a href="#link">Aenean Lacinia</a></p>
-					</div>
-				</div>
-				<div class="section">
-					<div class="grid8 firstcol">
-						<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-						
-						<h3>Pellentesque ornare sem</h3>
-
-						<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
-
-						<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
-
-						<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
-
-						<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
-
-						<h3>Cras mattis consectetur</h3>
-
-						<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
-
-						<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
-					</div>
-					
-					<div class="grid4 sidebar">
-						
-						<div class="box reverse">
-							<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
-						</div>
-						
-						<p class="caption">Maecenas sed diam eget risus varius.</p>
-
-						<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-					
-
-						<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
-
-						<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
-
-					</div>
-				</div>
-				
-			</div>
-
-
-			
-
-
-
-		<div id="glyphs">
-			<div class="section">
-				<div class="grid12 firstcol">
-			
-				<h1>Language Support</h1>
-				<p>The subset of Playfair Display Regular in this kit supports the following languages:<br />
-			
-					Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Swedish				</p>
-				<h1>Glyph Chart</h1>
-				<p>The subset of Playfair Display Regular in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p>
-				<div id="glyph_chart">
-			
-																				 <div><p>&amp;#13;</p>&#13;</div>
-																				 <div><p>&amp;#32;</p>&#32;</div>
-																				 <div><p>&amp;#33;</p>&#33;</div>
-																				 <div><p>&amp;#34;</p>&#34;</div>
-																				 <div><p>&amp;#35;</p>&#35;</div>
-																				 <div><p>&amp;#36;</p>&#36;</div>
-																				 <div><p>&amp;#37;</p>&#37;</div>
-																				 <div><p>&amp;#38;</p>&#38;</div>
-																				 <div><p>&amp;#39;</p>&#39;</div>
-																				 <div><p>&amp;#40;</p>&#40;</div>
-																				 <div><p>&amp;#41;</p>&#41;</div>
-																				 <div><p>&amp;#42;</p>&#42;</div>
-																				 <div><p>&amp;#43;</p>&#43;</div>
-																				 <div><p>&amp;#44;</p>&#44;</div>
-																				 <div><p>&amp;#45;</p>&#45;</div>
-																				 <div><p>&amp;#46;</p>&#46;</div>
-																				 <div><p>&amp;#47;</p>&#47;</div>
-																				 <div><p>&amp;#48;</p>&#48;</div>
-																				 <div><p>&amp;#49;</p>&#49;</div>
-																				 <div><p>&amp;#50;</p>&#50;</div>
-																				 <div><p>&amp;#51;</p>&#51;</div>
-																				 <div><p>&amp;#52;</p>&#52;</div>
-																				 <div><p>&amp;#53;</p>&#53;</div>
-																				 <div><p>&amp;#54;</p>&#54;</div>
-																				 <div><p>&amp;#55;</p>&#55;</div>
-																				 <div><p>&amp;#56;</p>&#56;</div>
-																				 <div><p>&amp;#57;</p>&#57;</div>
-																				 <div><p>&amp;#58;</p>&#58;</div>
-																				 <div><p>&amp;#59;</p>&#59;</div>
-																				 <div><p>&amp;#60;</p>&#60;</div>
-																				 <div><p>&amp;#61;</p>&#61;</div>
-																				 <div><p>&amp;#62;</p>&#62;</div>
-																				 <div><p>&amp;#63;</p>&#63;</div>
-																				 <div><p>&amp;#64;</p>&#64;</div>
-																				 <div><p>&amp;#65;</p>&#65;</div>
-																				 <div><p>&amp;#66;</p>&#66;</div>
-																				 <div><p>&amp;#67;</p>&#67;</div>
-																				 <div><p>&amp;#68;</p>&#68;</div>
-																				 <div><p>&amp;#69;</p>&#69;</div>
-																				 <div><p>&amp;#70;</p>&#70;</div>
-																				 <div><p>&amp;#71;</p>&#71;</div>
-																				 <div><p>&amp;#72;</p>&#72;</div>
-																				 <div><p>&amp;#73;</p>&#73;</div>
-																				 <div><p>&amp;#74;</p>&#74;</div>
-																				 <div><p>&amp;#75;</p>&#75;</div>
-																				 <div><p>&amp;#76;</p>&#76;</div>
-																				 <div><p>&amp;#77;</p>&#77;</div>
-																				 <div><p>&amp;#78;</p>&#78;</div>
-																				 <div><p>&amp;#79;</p>&#79;</div>
-																				 <div><p>&amp;#80;</p>&#80;</div>
-																				 <div><p>&amp;#81;</p>&#81;</div>
-																				 <div><p>&amp;#82;</p>&#82;</div>
-																				 <div><p>&amp;#83;</p>&#83;</div>
-																				 <div><p>&amp;#84;</p>&#84;</div>
-																				 <div><p>&amp;#85;</p>&#85;</div>
-																				 <div><p>&amp;#86;</p>&#86;</div>
-																				 <div><p>&amp;#87;</p>&#87;</div>
-																				 <div><p>&amp;#88;</p>&#88;</div>
-																				 <div><p>&amp;#89;</p>&#89;</div>
-																				 <div><p>&amp;#90;</p>&#90;</div>
-																				 <div><p>&amp;#91;</p>&#91;</div>
-																				 <div><p>&amp;#92;</p>&#92;</div>
-																				 <div><p>&amp;#93;</p>&#93;</div>
-																				 <div><p>&amp;#94;</p>&#94;</div>
-																				 <div><p>&amp;#95;</p>&#95;</div>
-																				 <div><p>&amp;#96;</p>&#96;</div>
-																				 <div><p>&amp;#97;</p>&#97;</div>
-																				 <div><p>&amp;#98;</p>&#98;</div>
-																				 <div><p>&amp;#99;</p>&#99;</div>
-																				 <div><p>&amp;#100;</p>&#100;</div>
-																				 <div><p>&amp;#101;</p>&#101;</div>
-																				 <div><p>&amp;#102;</p>&#102;</div>
-																				 <div><p>&amp;#103;</p>&#103;</div>
-																				 <div><p>&amp;#104;</p>&#104;</div>
-																				 <div><p>&amp;#105;</p>&#105;</div>
-																				 <div><p>&amp;#106;</p>&#106;</div>
-																				 <div><p>&amp;#107;</p>&#107;</div>
-																				 <div><p>&amp;#108;</p>&#108;</div>
-																				 <div><p>&amp;#109;</p>&#109;</div>
-																				 <div><p>&amp;#110;</p>&#110;</div>
-																				 <div><p>&amp;#111;</p>&#111;</div>
-																				 <div><p>&amp;#112;</p>&#112;</div>
-																				 <div><p>&amp;#113;</p>&#113;</div>
-																				 <div><p>&amp;#114;</p>&#114;</div>
-																				 <div><p>&amp;#115;</p>&#115;</div>
-																				 <div><p>&amp;#116;</p>&#116;</div>
-																				 <div><p>&amp;#117;</p>&#117;</div>
-																				 <div><p>&amp;#118;</p>&#118;</div>
-																				 <div><p>&amp;#119;</p>&#119;</div>
-																				 <div><p>&amp;#120;</p>&#120;</div>
-																				 <div><p>&amp;#121;</p>&#121;</div>
-																				 <div><p>&amp;#122;</p>&#122;</div>
-																				 <div><p>&amp;#123;</p>&#123;</div>
-																				 <div><p>&amp;#124;</p>&#124;</div>
-																				 <div><p>&amp;#125;</p>&#125;</div>
-																				 <div><p>&amp;#126;</p>&#126;</div>
-																				 <div><p>&amp;#160;</p>&#160;</div>
-																				 <div><p>&amp;#161;</p>&#161;</div>
-																				 <div><p>&amp;#162;</p>&#162;</div>
-																				 <div><p>&amp;#163;</p>&#163;</div>
-																				 <div><p>&amp;#164;</p>&#164;</div>
-																				 <div><p>&amp;#165;</p>&#165;</div>
-																				 <div><p>&amp;#166;</p>&#166;</div>
-																				 <div><p>&amp;#167;</p>&#167;</div>
-																				 <div><p>&amp;#168;</p>&#168;</div>
-																				 <div><p>&amp;#169;</p>&#169;</div>
-																				 <div><p>&amp;#170;</p>&#170;</div>
-																				 <div><p>&amp;#171;</p>&#171;</div>
-																				 <div><p>&amp;#172;</p>&#172;</div>
-																				 <div><p>&amp;#173;</p>&#173;</div>
-																				 <div><p>&amp;#174;</p>&#174;</div>
-																				 <div><p>&amp;#175;</p>&#175;</div>
-																				 <div><p>&amp;#176;</p>&#176;</div>
-																				 <div><p>&amp;#177;</p>&#177;</div>
-																				 <div><p>&amp;#178;</p>&#178;</div>
-																				 <div><p>&amp;#179;</p>&#179;</div>
-																				 <div><p>&amp;#180;</p>&#180;</div>
-																				 <div><p>&amp;#182;</p>&#182;</div>
-																				 <div><p>&amp;#183;</p>&#183;</div>
-																				 <div><p>&amp;#184;</p>&#184;</div>
-																				 <div><p>&amp;#185;</p>&#185;</div>
-																				 <div><p>&amp;#186;</p>&#186;</div>
-																				 <div><p>&amp;#187;</p>&#187;</div>
-																				 <div><p>&amp;#188;</p>&#188;</div>
-																				 <div><p>&amp;#189;</p>&#189;</div>
-																				 <div><p>&amp;#190;</p>&#190;</div>
-																				 <div><p>&amp;#191;</p>&#191;</div>
-																				 <div><p>&amp;#192;</p>&#192;</div>
-																				 <div><p>&amp;#193;</p>&#193;</div>
-																				 <div><p>&amp;#194;</p>&#194;</div>
-																				 <div><p>&amp;#195;</p>&#195;</div>
-																				 <div><p>&amp;#196;</p>&#196;</div>
-																				 <div><p>&amp;#197;</p>&#197;</div>
-																				 <div><p>&amp;#198;</p>&#198;</div>
-																				 <div><p>&amp;#199;</p>&#199;</div>
-																				 <div><p>&amp;#200;</p>&#200;</div>
-																				 <div><p>&amp;#201;</p>&#201;</div>
-																				 <div><p>&amp;#202;</p>&#202;</div>
-																				 <div><p>&amp;#203;</p>&#203;</div>
-																				 <div><p>&amp;#204;</p>&#204;</div>
-																				 <div><p>&amp;#205;</p>&#205;</div>
-																				 <div><p>&amp;#206;</p>&#206;</div>
-																				 <div><p>&amp;#207;</p>&#207;</div>
-																				 <div><p>&amp;#208;</p>&#208;</div>
-																				 <div><p>&amp;#209;</p>&#209;</div>
-																				 <div><p>&amp;#210;</p>&#210;</div>
-																				 <div><p>&amp;#211;</p>&#211;</div>
-																				 <div><p>&amp;#212;</p>&#212;</div>
-																				 <div><p>&amp;#213;</p>&#213;</div>
-																				 <div><p>&amp;#214;</p>&#214;</div>
-																				 <div><p>&amp;#215;</p>&#215;</div>
-																				 <div><p>&amp;#216;</p>&#216;</div>
-																				 <div><p>&amp;#217;</p>&#217;</div>
-																				 <div><p>&amp;#218;</p>&#218;</div>
-																				 <div><p>&amp;#219;</p>&#219;</div>
-																				 <div><p>&amp;#220;</p>&#220;</div>
-																				 <div><p>&amp;#221;</p>&#221;</div>
-																				 <div><p>&amp;#222;</p>&#222;</div>
-																				 <div><p>&amp;#223;</p>&#223;</div>
-																				 <div><p>&amp;#224;</p>&#224;</div>
-																				 <div><p>&amp;#225;</p>&#225;</div>
-																				 <div><p>&amp;#226;</p>&#226;</div>
-																				 <div><p>&amp;#227;</p>&#227;</div>
-																				 <div><p>&amp;#228;</p>&#228;</div>
-																				 <div><p>&amp;#229;</p>&#229;</div>
-																				 <div><p>&amp;#230;</p>&#230;</div>
-																				 <div><p>&amp;#231;</p>&#231;</div>
-																				 <div><p>&amp;#232;</p>&#232;</div>
-																				 <div><p>&amp;#233;</p>&#233;</div>
-																				 <div><p>&amp;#234;</p>&#234;</div>
-																				 <div><p>&amp;#235;</p>&#235;</div>
-																				 <div><p>&amp;#236;</p>&#236;</div>
-																				 <div><p>&amp;#237;</p>&#237;</div>
-																				 <div><p>&amp;#238;</p>&#238;</div>
-																				 <div><p>&amp;#239;</p>&#239;</div>
-																				 <div><p>&amp;#240;</p>&#240;</div>
-																				 <div><p>&amp;#241;</p>&#241;</div>
-																				 <div><p>&amp;#242;</p>&#242;</div>
-																				 <div><p>&amp;#243;</p>&#243;</div>
-																				 <div><p>&amp;#244;</p>&#244;</div>
-																				 <div><p>&amp;#245;</p>&#245;</div>
-																				 <div><p>&amp;#246;</p>&#246;</div>
-																				 <div><p>&amp;#247;</p>&#247;</div>
-																				 <div><p>&amp;#248;</p>&#248;</div>
-																				 <div><p>&amp;#249;</p>&#249;</div>
-																				 <div><p>&amp;#250;</p>&#250;</div>
-																				 <div><p>&amp;#251;</p>&#251;</div>
-																				 <div><p>&amp;#252;</p>&#252;</div>
-																				 <div><p>&amp;#253;</p>&#253;</div>
-																				 <div><p>&amp;#254;</p>&#254;</div>
-																				 <div><p>&amp;#255;</p>&#255;</div>
-																				 <div><p>&amp;#338;</p>&#338;</div>
-																				 <div><p>&amp;#339;</p>&#339;</div>
-																				 <div><p>&amp;#376;</p>&#376;</div>
-																				 <div><p>&amp;#710;</p>&#710;</div>
-																				 <div><p>&amp;#732;</p>&#732;</div>
-																				 <div><p>&amp;#8192;</p>&#8192;</div>
-																				 <div><p>&amp;#8193;</p>&#8193;</div>
-																				 <div><p>&amp;#8194;</p>&#8194;</div>
-																				 <div><p>&amp;#8195;</p>&#8195;</div>
-																				 <div><p>&amp;#8196;</p>&#8196;</div>
-																				 <div><p>&amp;#8197;</p>&#8197;</div>
-																				 <div><p>&amp;#8198;</p>&#8198;</div>
-																				 <div><p>&amp;#8199;</p>&#8199;</div>
-																				 <div><p>&amp;#8200;</p>&#8200;</div>
-																				 <div><p>&amp;#8201;</p>&#8201;</div>
-																				 <div><p>&amp;#8202;</p>&#8202;</div>
-																				 <div><p>&amp;#8208;</p>&#8208;</div>
-																				 <div><p>&amp;#8209;</p>&#8209;</div>
-																				 <div><p>&amp;#8210;</p>&#8210;</div>
-																				 <div><p>&amp;#8211;</p>&#8211;</div>
-																				 <div><p>&amp;#8212;</p>&#8212;</div>
-																				 <div><p>&amp;#8216;</p>&#8216;</div>
-																				 <div><p>&amp;#8217;</p>&#8217;</div>
-																				 <div><p>&amp;#8218;</p>&#8218;</div>
-																				 <div><p>&amp;#8220;</p>&#8220;</div>
-																				 <div><p>&amp;#8221;</p>&#8221;</div>
-																				 <div><p>&amp;#8222;</p>&#8222;</div>
-																				 <div><p>&amp;#8226;</p>&#8226;</div>
-																				 <div><p>&amp;#8230;</p>&#8230;</div>
-																				 <div><p>&amp;#8239;</p>&#8239;</div>
-																				 <div><p>&amp;#8249;</p>&#8249;</div>
-																				 <div><p>&amp;#8250;</p>&#8250;</div>
-																				 <div><p>&amp;#8287;</p>&#8287;</div>
-																				 <div><p>&amp;#8364;</p>&#8364;</div>
-																				 <div><p>&amp;#8482;</p>&#8482;</div>
-																				 <div><p>&amp;#9724;</p>&#9724;</div>
-																				 <div><p>&amp;#64257;</p>&#64257;</div>
-																				 <div><p>&amp;#64258;</p>&#64258;</div>
-																				 <div><p>&amp;#64259;</p>&#64259;</div>
-																				 <div><p>&amp;#64260;</p>&#64260;</div>
-																																																</div>	
-				</div>
-		
-		
-			</div>
-		</div>
-		
-		
-		<div id="specs">
-			
-		</div>
-	
-		<div id="installing">
-			<div class="section">
-				<div class="grid7 firstcol">
-					<h1>Installing Webfonts</h1>
-					
-					<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
-					
-					<h2>1. Upload your webfonts</h2>
-					<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
-					
-					<h2>2. Include the webfont stylesheet</h2>
-					<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p>
-
-
-<code>
-@font-face{ 
-	font-family: 'MyWebFont';
-	src: url('WebFont.eot');
-	src: url('WebFont.eot?#iefix') format('embedded-opentype'),
-	     url('WebFont.woff') format('woff'),
-	     url('WebFont.ttf') format('truetype'),
-	     url('WebFont.svg#webfont') format('svg');
-}
-</code>
-
-	<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
-	<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>
-
-					<h2>3. Modify your own stylesheet</h2>
-					<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
-<code>p { font-family: 'WebFont', Arial, sans-serif; }</code>
-
-<h2>4. Test</h2>
-<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
-				</div>
-				
-				<div class="grid5 sidebar">
-					<div class="box">
-						<h2>Troubleshooting<br />Font-Face Problems</h2>
-						<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
-
-						<h3>Fonts not showing in any browser</h3>
-
-						<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
-
-						<h3>Fonts not loading in iPhone or iPad</h3>
-
-						<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
-
-						<h3>Fonts not loading in Firefox</h3>
-
-						<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
-
-						<h3>Fonts not loading in IE</h3>
-
-						<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
-
-						<h3>Fonts not loading in IE9</h3>
-
-						<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
-					</div>
-				</div>
-			</div>
-			
-		</div>
-	
-	</div>
-	<div id="footer">
-		<p>&copy;2010-2011 Font Squirrel. All rights reserved.</p>
-	</div>
-</div>
-</body>
-</html>
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-regular-webfont.eot b/client/assets/fonts/playfairdisplay/playfairdisplay-regular-webfont.eot
deleted file mode 100755
index e69a6b0075a0a8125152943ae19f3c5fea5cf451..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-regular-webfont.eot and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-regular-webfont.svg b/client/assets/fonts/playfairdisplay/playfairdisplay-regular-webfont.svg
deleted file mode 100755
index 80f37159f9f96a1ff41742fb416afa08a7c1eb3a..0000000000000000000000000000000000000000
--- a/client/assets/fonts/playfairdisplay/playfairdisplay-regular-webfont.svg
+++ /dev/null
@@ -1,1225 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
-<metadata></metadata>
-<defs>
-<font id="playfair_displayregular" horiz-adv-x="1290" >
-<font-face units-per-em="2048" ascent="1638" descent="-410" />
-<missing-glyph horiz-adv-x="510" />
-<glyph unicode="&#xfb01;" horiz-adv-x="1268" d="M53 1012v41h164q0 277 148 415q63 61 159 97.5t224 36.5q84 0 156.5 -17t117.5 -45q70 -44 70 -113q0 -36 -18 -66.5t-48 -48.5t-65 -18t-65.5 18t-48.5 48t-18 65q0 37 18.5 67.5t49.5 47.5q-47 31 -149 31q-204 0 -291 -158q-30 -54 -43 -134.5t-13 -225.5h330 q128 0 201.5 5t138.5 19v-887q0 -57 15.5 -89t49 -45t91.5 -13v-43q-188 8 -248 8t-248 -8v43q58 0 91.5 13t49 45t15.5 89v641q0 95 -34.5 138t-121.5 43h-330v-822q0 -83 44 -115t133 -32v-43q-224 8 -269 8q-56 0 -248 -8v43q58 0 91.5 13t49 45t15.5 89v822h-164z" />
-<glyph unicode="&#xfb02;" horiz-adv-x="1272" d="M53 1012v41h164q0 115 9 194.5t37.5 145.5t84.5 114q109 95 277 95q40 0 91 -7.5t89.5 -12.5t81.5 -5q103 0 184 29v-1416q0 -57 15.5 -89t49 -45t91.5 -13v-43q-188 8 -248 8t-248 -8v43q58 0 91.5 13t49 45t15.5 89v1141q0 63 -14 102.5t-42 67.5q-36 36 -91 53 t-105 17q-102 0 -162 -64q-43 -43 -57.5 -107t-14.5 -155v-192h261v-41h-261v-822q0 -83 44 -115t133 -32v-43q-224 8 -269 8q-56 0 -248 -8v43q58 0 91.5 13t49 45t15.5 89v822h-164z" />
-<glyph horiz-adv-x="0" />
-<glyph horiz-adv-x="682" />
-<glyph unicode="&#xd;" horiz-adv-x="0" />
-<glyph unicode=" "  horiz-adv-x="510" />
-<glyph unicode="&#x09;" horiz-adv-x="510" />
-<glyph unicode="&#xa0;" horiz-adv-x="510" />
-<glyph unicode="!" horiz-adv-x="537" d="M137 102q0 35 17.5 65.5t48 48t65.5 17.5t65.5 -17.5t48 -48t17.5 -65.5t-17.5 -65t-48 -48t-65.5 -18t-65.5 18t-48 48t-17.5 65zM174 1487q0 59 26 87t68 28q41 0 67.5 -28.5t26.5 -86.5q0 -89 -23.5 -322.5t-37.5 -405.5t-14 -358h-37q0 168 -12.5 333.5t-38 414.5 t-25.5 338z" />
-<glyph unicode="&#x22;" horiz-adv-x="610" d="M121 1399q0 43 21 68.5t53 27.5q32 0 52.5 -25.5t20.5 -68.5q0 -58 -6 -108t-24 -151.5t-29 -183.5h-29q-11 75 -28 175t-24 152.5t-7 113.5zM344 1399q0 43 21 68.5t53 27.5q32 0 52.5 -25.5t20.5 -68.5q0 -58 -6 -108t-24 -151.5t-29 -183.5h-29q-11 75 -28 175 t-24 152.5t-7 113.5z" />
-<glyph unicode="#" horiz-adv-x="1305" d="M98 506l8 41h302l66 342h-300l6 41h302l59 303h41l-59 -303h342l59 303h41l-59 -303h300l-6 -41h-302l-66 -342h301l-9 -41h-300l-58 -299h-41l58 299h-342l-58 -299h-41l58 299h-302zM449 547h342l66 342h-342z" />
-<glyph unicode="$" horiz-adv-x="1071" d="M111 -14q8 112 8 491h47q11 -175 75 -295.5t193 -156.5v665q-100 62 -166.5 119t-106.5 133t-40 176q0 103 41.5 177.5t112 117.5t159.5 55v252h41v-248l31 1q55 0 100 -9v256h41v-266q46 -15 109 -57q44 -29 69 -29q19 0 29 21.5t16 68.5h48q-11 -113 -11 -418h-47 q-9 128 -61.5 229t-151.5 142v-608q116 -73 186.5 -132.5t112 -135t41.5 -175.5q0 -109 -43.5 -189.5t-120.5 -128.5t-176 -64v-248h-41v243q-26 -2 -53 -2q-41 0 -78 4v-245h-41v251q-81 16 -162 66q-44 29 -69 29q-19 0 -29 -21.5t-16 -68.5h-47zM274 1196 q0 -83 40.5 -143t119.5 -116v483q-73 -24 -116.5 -83.5t-43.5 -140.5zM475 17q31 -5 64 -5q35 0 67 7v563q-46 32 -121 77l-10 6v-648zM475 909q-7 5 131 -81v596q-39 10 -82 10q-25 0 -49 -4v-521zM647 31q71 28 114.5 91.5t43.5 162.5q0 81 -40 144.5t-118 123.5v-522z " />
-<glyph unicode="%" horiz-adv-x="1520" d="M72 1214q0 101 39.5 179.5t109 122t156.5 43.5q91 0 160 -39.5t107 -115t38 -179.5q0 -102 -39.5 -180t-108.5 -121t-157 -43q-91 0 -160 39.5t-107 115t-38 178.5zM153 -86l1198 1774l39 -27l-1198 -1774zM215 1217q0 -146 44 -222.5t122 -76.5q156 0 156 303 q0 148 -43 224.5t-121 76.5q-158 0 -158 -305zM834 305q0 101 39.5 179t109 121.5t156.5 43.5q91 0 160 -39.5t107 -115t38 -179.5q0 -101 -39.5 -179.5t-109 -121.5t-156.5 -43q-92 0 -160.5 39.5t-106.5 115t-38 179.5zM977 307q0 -146 43.5 -222.5t122.5 -76.5 q155 0 155 303q0 148 -42.5 224.5t-120.5 76.5q-158 0 -158 -305z" />
-<glyph unicode="&#x26;" horiz-adv-x="1714" d="M111 481q0 135 67 228t152.5 141.5t158.5 67.5q-100 43 -153 114t-53 150q0 68 40 126.5t118 94t188 35.5q137 0 213 -62q38 -31 57 -68.5t19 -72.5q0 -49 -35 -79t-80 -30q-44 0 -75.5 28t-31.5 75q0 44 30.5 76t78.5 36q-9 27 -52 46.5t-104 19.5q-107 0 -172 -64 t-65 -180q0 -137 104 -233q71 12 127 12q38 0 60 -12t22 -35q0 -18 -15.5 -28.5t-41.5 -10.5q-30 0 -64 11t-57 21.5t-29 12.5q-266 -79 -266 -336q0 -137 72 -237t197 -152.5t280 -52.5q146 0 269 45.5t196 131t73 198.5q0 80 -43.5 164.5t-162.5 132.5q-182 -57 -236 -78 q-86 -33 -133 -75t-47 -103q0 -50 29.5 -87.5t73.5 -57t85 -19.5q35 0 76.5 12t46.5 33q-39 7 -67.5 32t-28.5 72q0 48 32 77.5t80 29.5q49 0 79 -30.5t30 -80.5q0 -55 -37 -95t-93.5 -60.5t-113.5 -20.5q-62 0 -120.5 26t-96 80t-37.5 134q0 104 70.5 177t212.5 122 q40 13 154.5 45.5t196.5 58.5t149 57q97 46 136.5 93.5t39.5 103.5q0 57 -33 104.5t-87.5 75t-117.5 27.5q-52 0 -61 -18q27 -14 42 -40.5t15 -54.5q0 -42 -34 -71t-81 -29q-44 0 -76 26.5t-32 75.5q0 50 34 82t85.5 46t105.5 14q85 0 153 -33.5t107 -96t39 -147.5 q0 -98 -53 -170.5t-141 -116.5q-72 -34 -304 -107q115 -48 169.5 -138.5t54.5 -208.5q0 -127 -75.5 -239.5t-217.5 -181.5t-332 -69q-179 0 -330.5 62.5t-242 178.5t-90.5 269z" />
-<glyph unicode="'" horiz-adv-x="387" d="M121 1399q0 43 21 68.5t53 27.5q32 0 52.5 -25.5t20.5 -68.5q0 -58 -6 -108t-24 -151.5t-29 -183.5h-29q-11 75 -28 175t-24 152.5t-7 113.5z" />
-<glyph unicode="(" horiz-adv-x="602" d="M90 639q0 -308 117.5 -562t333.5 -450l28 27q-167 195 -237 430.5t-70 554.5t70 554.5t237 430.5l-28 27q-216 -196 -333.5 -450t-117.5 -562z" />
-<glyph unicode=")" horiz-adv-x="602" d="M33 -346q167 195 237 430.5t70 554.5t-70 554.5t-237 430.5l28 27q216 -196 333.5 -450t117.5 -562t-117.5 -562t-333.5 -450z" />
-<glyph unicode="*" horiz-adv-x="1008" d="M120 877q0 47 68 88q30 17 68 29.5t113.5 32t122.5 33.5q-44 13 -120.5 33t-116 33t-69.5 29q-65 39 -65 88q0 18 10 35q16 32 56 32q33 0 75 -24q31 -18 62 -46t85.5 -83.5t88.5 -87.5q-10 43 -31 119.5t-30 118t-9 75.5q0 57 22 84t54 27q31 0 52.5 -27t21.5 -84 q0 -35 -8.5 -75.5t-29 -115t-32.5 -120.5q34 32 89.5 88t86 84t59.5 45q42 23 73 23q44 0 63 -35q9 -16 9 -31q0 -49 -69 -88q-30 -17 -68 -29.5t-113.5 -32t-122.5 -33.5q45 -13 121.5 -33.5t115.5 -33t69 -28.5q66 -38 66 -88q0 -18 -10 -35q-18 -32 -57 -32q-33 0 -75 24 q-31 18 -62.5 46t-86 83t-86.5 86q12 -46 32.5 -122t29.5 -116.5t10 -73.5q-1 -57 -24 -83.5t-56 -26.5q-30 0 -51 26t-21 84q0 35 8.5 75.5t29 115.5t32.5 121q-34 -32 -89.5 -88.5t-86.5 -84t-60 -44.5q-40 -23 -73 -23q-43 0 -62 35q-9 16 -9 31z" />
-<glyph unicode="+" horiz-adv-x="1202" d="M88 696v62h477v483h74v-483h475v-62h-475v-481h-74v481h-477z" />
-<glyph unicode="," horiz-adv-x="535" d="M127 102q0 56 38 93.5t93 37.5q79 0 121 -65q35 -54 35 -135q0 -103 -52.5 -184.5t-158.5 -131.5l-19 37q64 27 110 84.5t46 116.5q0 25 -6 43q-35 -27 -76 -27q-56 0 -93.5 35.5t-37.5 95.5z" />
-<glyph unicode="-" horiz-adv-x="1022" d="M141 492v118h740v-118h-740z" />
-<glyph unicode="." horiz-adv-x="516" d="M127 102q0 35 17.5 65.5t48 48t65.5 17.5t65.5 -17.5t48 -48t17.5 -65.5t-17.5 -65t-48 -48t-65.5 -18t-65.5 18t-48 48t-17.5 65z" />
-<glyph unicode="/" horiz-adv-x="762" d="M70 -29l557 1508h67l-557 -1508h-67z" />
-<glyph unicode="0" horiz-adv-x="1229" d="M106 512q0 162 64.5 292t182.5 204.5t272 74.5q143 0 255.5 -67t176 -189t63.5 -282q0 -163 -65.5 -294t-183 -205.5t-269.5 -74.5q-142 0 -255 67t-177 189.5t-64 284.5zM305 518q0 -176 42 -290.5t113.5 -167t160.5 -52.5q88 0 156.5 63.5t106.5 183.5t38 284 q0 175 -42 289t-113.5 166.5t-160.5 52.5q-88 0 -156.5 -63t-106.5 -182.5t-38 -283.5z" />
-<glyph unicode="1" horiz-adv-x="758" d="M96 928v45q150 3 247.5 26.5t174.5 77.5v-866q0 -66 19.5 -102t62 -51t115.5 -15v-43q-224 8 -283 8q-63 0 -315 -8v43q109 0 163 36.5t54 131.5v496q0 99 -20.5 145t-69 61t-148.5 15z" />
-<glyph unicode="2" horiz-adv-x="981" d="M96 827q54 112 153 184t251 72q143 0 225 -67.5t82 -190.5q0 -121 -80 -223t-232 -239.5t-202 -204.5h416q56 0 83 9.5t38 30.5t16 64h35q0 -188 8 -272q-46 10 -305 10h-480v35q34 37 183 176.5t235 277.5t86 291q0 221 -205 221q-167 0 -274 -192z" />
-<glyph unicode="3" horiz-adv-x="924" d="M76 -272q145 3 274 59.5t209 162.5t80 251q0 79 -26.5 142.5t-76 101t-114.5 42.5q-9 -4 -32 -13t-38 -13t-26 -4q-33 0 -33 26q0 18 15 28.5t38 10.5q13 0 34 -3.5t38 -4.5q80 61 118.5 137t38.5 158q0 94 -46.5 139t-131.5 45q-86 0 -156 -45.5t-116 -136.5l-35 16 q118 256 375 256q85 0 152 -28t105 -81t38 -124q0 -76 -42.5 -143t-112 -116.5t-150.5 -78.5q100 -2 186 -37t139.5 -104t53.5 -170q0 -149 -113 -265.5t-289.5 -180.5t-355.5 -64v37z" />
-<glyph unicode="4" horiz-adv-x="1012" d="M35 111v43l665 929h33v-835h25q56 0 83 9.5t38 30.5t16 64h35q0 -172 8 -252q-35 9 -205 10v-399h-164v400h-534zM156 248h413v584z" />
-<glyph unicode="5" horiz-adv-x="850" d="M92 -266q125 1 235 54t178 158t68 253q0 130 -67 202t-191 72q-50 0 -85 -8t-83 -27l-20 13l39 610q41 -8 110 -8h232q56 0 83 9.5t37.5 30.5t16.5 64h39q0 -208 8 -299q-44 10 -284 10h-218l-24 -395q56 29 110 45.5t130 16.5q120 0 201 -40.5t121 -112t40 -163.5 q0 -152 -99.5 -271t-256.5 -185t-320 -66v37z" />
-<glyph unicode="6" horiz-adv-x="1059" d="M113 553q0 287 109 486t267.5 305t317.5 137l8 -41q-125 -40 -224.5 -110.5t-175.5 -216.5t-97 -384q46 87 129 127.5t165 40.5q98 0 182.5 -53t135.5 -154t51 -239q0 -149 -60.5 -258t-163 -165.5t-227.5 -56.5q-130 0 -223.5 68.5t-143.5 199.5t-50 314zM311 557 q0 -203 34.5 -324.5t88.5 -171t117 -49.5q64 0 116 44t83.5 139t31.5 241q0 208 -61 305t-160 97q-72 0 -142.5 -42.5t-104.5 -134.5q-3 -50 -3 -104z" />
-<glyph unicode="7" horiz-adv-x="831" d="M55 1063q46 -10 305 -10h455v-43q-30 -71 -135.5 -273t-163 -382.5t-55.5 -391.5q0 -36 4 -89.5t4 -72.5q0 -46 -26.5 -75t-69.5 -29q-45 0 -68.5 33t-23.5 82q0 225 87.5 426t205 395t147.5 248h-485q-56 0 -83.5 -9.5t-38 -30.5t-16.5 -65h-35q0 202 -8 287z" />
-<glyph unicode="8" horiz-adv-x="1065" d="M106 315q0 142 90 253t239 184q-82 66 -137 123t-89.5 128t-34.5 156q0 94 49.5 166.5t135 113t190.5 40.5q94 0 171 -32.5t122 -96t45 -152.5q0 -110 -67.5 -202t-192.5 -176q113 -82 177.5 -139t110.5 -137t46 -182q0 -115 -57 -204t-158 -138t-228 -49 q-112 0 -205.5 39t-150 116.5t-56.5 188.5zM287 346q0 -145 59 -241.5t184 -96.5q70 0 128.5 31.5t93 92t34.5 144.5q0 95 -44 173t-104.5 134.5t-171.5 144.5q-179 -131 -179 -382zM334 1223q0 -81 34.5 -147t89.5 -118.5t138 -114.5q127 121 127 328q0 124 -51.5 197.5 t-145.5 73.5q-54 0 -98 -27t-69 -76.5t-25 -115.5z" />
-<glyph unicode="9" horiz-adv-x="1042" d="M76 604q0 149 60.5 257.5t163 165t226.5 56.5q130 0 224 -63.5t144 -185t50 -291.5q0 -261 -109.5 -443t-268.5 -279.5t-316 -123.5l-8 41q117 33 211.5 90.5t170 174t105.5 304.5q-49 -77 -128 -113t-157 -36q-97 0 -181.5 53t-135.5 154t-51 239zM274 618 q0 -208 61.5 -304.5t160.5 -96.5q69 0 137 38.5t104 122.5q8 76 8 161q0 187 -34.5 299.5t-88 158t-116.5 45.5q-64 0 -116.5 -44t-84 -139t-31.5 -241z" />
-<glyph unicode=":" horiz-adv-x="545" d="M141 102q0 35 17.5 65.5t48 48t65.5 17.5t65.5 -17.5t48 -48t17.5 -65.5t-17.5 -65t-48 -48t-65.5 -18t-65.5 18t-48 48t-17.5 65zM141 950q0 35 17.5 65.5t48 48t65.5 17.5t65.5 -17.5t48 -48t17.5 -65.5t-17.5 -65t-48 -48t-65.5 -18t-65.5 18t-48 48t-17.5 65z" />
-<glyph unicode=";" horiz-adv-x="584" d="M150 102q0 56 38 93.5t93 37.5q79 0 121 -65q35 -54 35 -135q0 -103 -52.5 -184.5t-158.5 -131.5l-19 37q64 27 110 84.5t46 116.5q0 25 -6 43q-35 -27 -76 -27q-56 0 -93.5 35.5t-37.5 95.5zM164 950q0 35 17.5 65.5t48 48t65.5 17.5t65.5 -17.5t48 -48t17.5 -65.5 t-17.5 -65t-48 -48t-65.5 -18t-65.5 18t-48 48t-17.5 65z" />
-<glyph unicode="&#x3c;" horiz-adv-x="1245" d="M61 727l998 465l35 -74l-838 -391l838 -391l-35 -74z" />
-<glyph unicode="=" horiz-adv-x="1325" d="M150 553v61h1026v-61h-1026zM150 840v61h1026v-61h-1026z" />
-<glyph unicode="&#x3e;" horiz-adv-x="1245" d="M151 336l35 -74l998 465l-998 465l-35 -74l838 -391z" />
-<glyph unicode="?" horiz-adv-x="940" d="M66 1380q0 83 96 148q108 74 278 74q128 0 225 -44.5t151 -128t54 -196.5q0 -168 -123 -284t-337 -171v-299h-41v318q130 48 200 108.5t94.5 130t24.5 158.5q0 186 -76.5 276.5t-210.5 90.5q-59 0 -113.5 -17t-86.5 -57q39 -8 62.5 -35.5t23.5 -69.5q0 -50 -32.5 -80 t-80.5 -30q-47 0 -77.5 30.5t-30.5 77.5zM260 102q0 35 17.5 65.5t48 48t65.5 17.5t65.5 -17.5t48 -48t17.5 -65.5t-17.5 -65t-48 -48t-65.5 -18t-65.5 18t-48 48t-17.5 65z" />
-<glyph unicode="@" horiz-adv-x="1798" d="M100 293q0 273 133.5 522t361 401t495.5 152q185 0 328.5 -59.5t227 -185.5t83.5 -318q0 -219 -91 -390.5t-230 -266.5t-273 -95q-148 0 -148 133q0 33 7 66t14.5 56.5t9.5 31.5v2q-58 -149 -134 -219t-182 -70q-110 0 -160 67.5t-50 180.5q0 152 73 311t187 263t227 104 q125 0 148 -109l16 80q117 0 184 29l-172 -752q-13 -42 -13 -70q0 -29 14.5 -41t45.5 -12q87 0 203 86.5t199.5 246.5t83.5 370q0 182 -79.5 299t-213.5 171t-303 54q-247 0 -466.5 -142.5t-352 -381t-132.5 -510.5q0 -204 78 -336t216 -193t321 -61q236 0 422 111l14 -27 q-79 -56 -192.5 -88.5t-245.5 -32.5q-196 0 -342.5 66.5t-229 206t-82.5 350.5zM666 313q0 -198 106 -198q52 0 106 53t102.5 153t81.5 235l51 249q-4 67 -35.5 97t-90.5 30q-85 0 -159 -93t-118 -237.5t-44 -288.5z" />
-<glyph unicode="A" d="M-14 0v41q102 23 161 178l482 1241h33l499 -1288q50 -127 142 -131v-41q-84 6 -220 6q-175 0 -262 -6v41q78 3 111.5 19t33.5 57q0 35 -24 96l-126 336h-494l-84 -217q-41 -104 -41 -168q0 -65 43.5 -93t134.5 -30v-41q-117 6 -236 6q-92 0 -153 -6zM337 590h464 l-229 611z" />
-<glyph unicode="B" horiz-adv-x="1276" d="M86 0v41q74 3 107.5 16t46 48t12.5 112v1016q0 77 -12.5 112t-46 48t-107.5 16v41q85 -6 250 -6q80 0 176.5 2t132.5 2q140 0 237 -40.5t146 -113t49 -168.5q0 -118 -74.5 -212t-236.5 -144v-4q226 -30 322 -129.5t96 -239.5q0 -116 -59.5 -206t-170.5 -140.5t-262 -50.5 q-41 0 -144 3t-208 3q-168 0 -254 -6zM442 217q0 -74 12 -109t44 -48t98 -13q383 0 383 359q0 161 -87.5 245t-277.5 84h-172v-518zM442 770h138q167 0 234 91t67 243q0 154 -68 229.5t-219 75.5q-64 0 -96 -14.5t-44 -51.5t-12 -110v-463z" />
-<glyph unicode="C" horiz-adv-x="1409" d="M109 713q0 226 83 400t231 270t337 96q122 0 208.5 -35t168.5 -98q22 -18 40 -18q42 0 52 122h47q-8 -133 -8 -471h-47q-15 92 -27.5 143t-29.5 86.5t-46 73.5q-62 80 -157 120t-205 40q-133 0 -233 -88t-155 -251t-55 -382q0 -223 60 -383t165 -243t238 -83 q102 0 199 39t151 117q42 56 60 121.5t35 202.5h47q0 -353 8 -492h-47q-5 64 -16.5 92.5t-33.5 28.5q-16 0 -42 -17q-61 -43 -112.5 -70.5t-117.5 -45t-149 -17.5q-195 0 -341.5 88t-227 255.5t-80.5 398.5z" />
-<glyph unicode="D" horiz-adv-x="1481" d="M86 0v41q74 3 107.5 16t46 48t12.5 112v1016q0 77 -12.5 112t-46 48t-107.5 16v41q110 -7 200 -7l50 1q282 6 309 6q362 0 542.5 -181t180.5 -528q0 -223 -87.5 -390.5t-254.5 -259t-399 -91.5q-28 0 -133.5 3t-153.5 3q-168 0 -254 -6zM442 213q0 -74 12 -110.5 t44.5 -51t97.5 -14.5q218 0 342 79t174.5 230.5t50.5 386.5q0 236 -55 384.5t-179.5 222t-334.5 73.5q-64 0 -96 -14.5t-44 -51.5t-12 -110v-1024z" />
-<glyph unicode="E" horiz-adv-x="1247" d="M86 0v41q74 3 107.5 16t46 48t12.5 112v1016q0 77 -12.5 112t-46 48t-107.5 16v41q201 -6 594 -6q301 0 428 6q-14 -134 -14 -242q0 -80 6 -127h-47q-15 133 -37.5 198t-76 94.5t-161.5 29.5h-170q-74 0 -107.5 -12t-46 -46.5t-12.5 -111.5v-483h136q103 0 137 61.5 t42 125.5t11 83h47q-7 -101 -7 -193l1 -98q0 -104 12 -291h-47q-2 14 -11.5 99t-55.5 128.5t-129 43.5h-136v-492q0 -77 12.5 -111.5t46 -46.5t107.5 -12h150q128 0 194.5 34t96 109t45.5 220h47q-6 -55 -6 -148q0 -116 14 -262q-139 6 -469 6q-393 0 -594 -6z" />
-<glyph unicode="F" horiz-adv-x="1165" d="M86 0v41q74 3 107.5 16t46 48t12.5 112v1016q0 77 -12.5 112t-46 48t-107.5 16v41q201 -6 594 -6q301 0 428 6q-14 -146 -14 -262q0 -103 6 -168h-47q-16 159 -41 235.5t-86.5 112t-188.5 35.5h-129q-74 0 -107.5 -12t-46 -46.5t-12.5 -111.5v-504h150q103 0 137 61.5 t42 125.5t11 83h47q-7 -100 -7 -193l1 -97q0 -108 13 -291h-48q-2 14 -11.5 99t-55.5 128t-129 43h-150v-471q0 -77 16 -112t58 -48t133 -16v-41q-106 6 -301 6q-176 0 -262 -6z" />
-<glyph unicode="G" horiz-adv-x="1440" d="M111 700q0 235 84.5 411.5t234.5 272t340 95.5q83 0 147.5 -17.5t112 -44.5t109.5 -71q26 -21 41 -21q39 0 51 125h47q-8 -133 -8 -471h-47q-18 110 -39 180.5t-64 122.5q-60 74 -155 117t-199 43q-135 0 -237 -88t-158 -250.5t-56 -380.5q0 -246 52.5 -403t160 -232.5 t275.5 -75.5q123 0 213 64q37 25 48 48t11 64v197q0 85 -16 124.5t-58 54t-133 18.5v41q101 -7 289 -7q144 0 213 7v-41q-48 -4 -68.5 -16.5t-28 -46.5t-7.5 -113v-406h-41q-2 42 -17 79.5t-39 37.5q-13 0 -25 -6.5t-42 -28.5q-72 -55 -148.5 -83t-171.5 -28q-210 0 -361 87 t-230.5 251t-79.5 391z" />
-<glyph unicode="H" horiz-adv-x="1550" d="M86 0v41q74 3 107.5 16t46 48t12.5 112v1016q0 77 -12.5 112t-46 48t-107.5 16v41q85 -6 262 -6q166 0 260 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-483h666v483q0 77 -12.5 112t-46 48t-107.5 16v41q96 -6 260 -6q176 0 262 6v-41q-74 -3 -107.5 -16t-46 -48 t-12.5 -112v-1016q0 -77 12.5 -112t46 -48t107.5 -16v-41q-85 6 -262 6q-164 0 -260 -6v41q74 3 107.5 16t46 48t12.5 112v492h-666v-492q0 -77 12.5 -112t46 -48t107.5 -16v-41q-94 6 -260 6q-176 0 -262 -6z" />
-<glyph unicode="I" horiz-adv-x="694" d="M86 0v41q74 3 107.5 16t46 48t12.5 112v1016q0 77 -12.5 112t-46 48t-107.5 16v41q85 -6 262 -6q166 0 260 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-1016q0 -77 12.5 -112t46 -48t107.5 -16v-41q-94 6 -260 6q-176 0 -262 -6z" />
-<glyph unicode="J" horiz-adv-x="668" d="M-307 -207q0 48 30.5 78.5t77.5 30.5q49 0 81 -30t32 -81q0 -43 -23 -69.5t-63 -34.5q18 -18 56.5 -25.5t74.5 -7.5q89 0 153.5 46t92.5 128q21 64 28 159.5t7 309.5v936q0 77 -12.5 112t-46 48t-107.5 16v41q85 -6 262 -6q164 0 260 6v-41q-74 -3 -107.5 -16t-46 -48 t-12.5 -112v-750q0 -174 -6.5 -308.5t-28.5 -225.5q-23 -96 -81 -171.5t-147.5 -119t-203.5 -43.5q-100 0 -172 37q-98 51 -98 141z" />
-<glyph unicode="K" horiz-adv-x="1341" d="M86 0v41q74 3 107.5 16t46 48t12.5 112v1016q0 77 -12.5 112t-46 48t-107.5 16v41q85 -6 262 -6q166 0 260 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-459q149 6 234 115l196 250q105 133 105 196q0 71 -127 74v41q117 -6 235 -6q114 0 175 6v-41q-68 -10 -127.5 -44 t-114.5 -105l-334 -428l475 -666q34 -52 76 -81t104 -44v-41q-97 6 -245 6q-111 0 -211 -6v41q48 2 71 12t23 31q0 19 -21 49l-299 451q-41 63 -71 93t-61.5 41.5t-82.5 14.5v-516q0 -77 12.5 -112t46 -48t107.5 -16v-41q-94 6 -260 6q-176 0 -262 -6z" />
-<glyph unicode="L" horiz-adv-x="1204" d="M86 0v41q74 3 107.5 16t46 48t12.5 112v1016q0 77 -12.5 112t-46 48t-107.5 16v41q85 -6 262 -6q166 0 260 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-1016q0 -77 12.5 -111.5t46 -46.5t107.5 -12h150q128 0 194.5 36t96 115t45.5 232h47q-6 -64 -6 -168 q0 -116 14 -262q-139 6 -469 6q-393 0 -594 -6z" />
-<glyph unicode="M" horiz-adv-x="1784" d="M86 0v41q71 3 105.5 20.5t47.5 57.5t13 119v995q0 77 -12.5 112t-46 48t-107.5 16v41q67 -6 190 -6q108 0 175 6l450 -1188l440 1182h97q164 0 260 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-1016q0 -77 12.5 -112t46 -48t107.5 -16v-41q-96 6 -260 6q-176 0 -262 -6 v41q74 3 107 16t45.5 48t12.5 112v1096l-493 -1323h-33l-516 1329v-1081q0 -79 14 -119t52.5 -57.5t119.5 -20.5v-41q-73 6 -209 6q-122 0 -190 -6z" />
-<glyph unicode="N" horiz-adv-x="1446" d="M86 0v41q71 3 105.5 20.5t47.5 57.5t13 119v995q0 77 -12.5 112t-46 48t-107.5 16v41q67 -6 190 -6q92 0 160 6l723 -1114v876q0 79 -13.5 119t-52.5 57.5t-120 20.5v41q73 -6 209 -6q122 0 190 6v-41q-71 -3 -105.5 -20.5t-47.5 -57.5t-13 -119v-1222h-47l-860 1329 v-1081q0 -79 14 -119t52.5 -57.5t119.5 -20.5v-41q-73 6 -209 6q-122 0 -190 -6z" />
-<glyph unicode="O" horiz-adv-x="1518" d="M109 713q0 226 83 400t231 270t337 96q195 0 341.5 -88t227 -255.5t80.5 -398.5q0 -226 -83 -400t-231 -270t-337 -96q-195 0 -341.5 88t-227 255.5t-80.5 398.5zM313 721q0 -213 60 -375t163.5 -250t229.5 -88q131 0 230.5 91.5t153.5 255t54 374.5q0 213 -60 375 t-163 250t-229 88q-131 0 -231 -91.5t-154 -255t-54 -374.5z" />
-<glyph unicode="P" horiz-adv-x="1198" d="M86 0v41q74 3 107.5 16t46 48t12.5 112v1016q0 77 -12.5 112t-46 48t-107.5 16v41q85 -6 250 -6q80 0 176.5 2t132.5 2q161 0 272 -50.5t166.5 -141.5t55.5 -212q0 -112 -50 -216t-170.5 -173t-318.5 -69h-158v-369q0 -77 16 -112t58 -48t133 -16v-41q-106 6 -301 6 q-176 0 -262 -6zM442 627h138q200 0 277 107t77 288q0 132 -34 217t-108.5 127.5t-197.5 42.5q-64 0 -96 -14.5t-44 -51.5t-12 -110v-606z" />
-<glyph unicode="Q" horiz-adv-x="1518" d="M109 713q0 226 83 400t231 270t337 96q195 0 341.5 -88t227 -255.5t80.5 -398.5q0 -213 -74 -380t-207 -267t-305 -116v-1q-50 -6 -88 -18.5t-102.5 -40t-112.5 -41.5q225 -45 384.5 -71.5t264.5 -26.5q146 0 231 42.5t132 135.5l31 -12q-46 -157 -129 -234 q-102 -92 -277 -92q-95 0 -183.5 28.5t-236.5 93.5t-239 95q-14 4 -26.5 7.5t-22.5 6.5q-90 -30 -170 -30q-95 0 -95 41q0 43 111 43q74 0 154 -17q39 10 71 23t81.5 35.5t78.5 33.5q-173 17 -302 109.5t-199 253t-70 375.5zM313 721q0 -213 60 -375t163.5 -250t229.5 -88 q131 0 230.5 91.5t153.5 255t54 374.5q0 213 -60 375t-163 250t-229 88q-131 0 -231 -91.5t-154 -255t-54 -374.5z" />
-<glyph unicode="R" horiz-adv-x="1327" d="M86 0v41q74 3 107.5 16t46 48t12.5 112v1016q0 77 -12.5 112t-46 48t-107.5 16v41q86 -6 250 -6q80 0 176.5 2t132.5 2q160 0 271 -46.5t167 -127t56 -182.5q0 -80 -37.5 -161.5t-127 -146t-233.5 -86.5l25 -4q92 -15 147 -45.5t87.5 -83.5t52.5 -141l51 -209 q13 -63 26.5 -98.5t32 -52.5t46.5 -17q34 0 56 17.5t56 60.5l31 -23q-48 -69 -95 -100t-124 -31q-84 0 -138 49t-82 173l-45 204q-24 107 -45.5 164.5t-65 92t-120.5 34.5h-195v-471q0 -77 12.5 -112t46 -48t107.5 -16v-41q-94 6 -260 6q-176 0 -262 -6zM442 729h138 q138 0 216 44t108 118t30 178q0 168 -80 254t-260 86q-64 0 -96 -14.5t-44 -51.5t-12 -110v-504z" />
-<glyph unicode="S" horiz-adv-x="1106" d="M129 -14q8 112 8 491h47q14 -208 102 -336.5t271 -128.5q70 0 130.5 29t98 90.5t37.5 153.5q0 79 -38.5 141.5t-104.5 114.5t-176 118q-122 73 -196 131t-121.5 138.5t-47.5 189.5q0 116 52.5 196t140 119.5t192.5 39.5q63 0 108.5 -10.5t75.5 -26t66 -39.5 q46 -29 70 -29q19 0 29 21.5t16 68.5h47q-10 -120 -10 -418h-47q-8 105 -45.5 194t-110 144.5t-180.5 55.5q-72 0 -129 -30t-89 -84t-32 -124q0 -111 67 -179t156.5 -122.5t120.5 -73.5q129 -81 204 -140.5t120 -138t45 -182.5q0 -126 -58 -213.5t-156.5 -131.5t-220.5 -44 q-98 0 -161 20.5t-119 55.5q-46 29 -70 29q-19 0 -29 -21.5t-16 -68.5h-47z" />
-<glyph unicode="T" horiz-adv-x="1272" d="M59 1450q170 -6 578 -6q405 0 575 6q-14 -146 -14 -262q0 -103 6 -168h-47q-16 159 -40.5 235.5t-86 112t-188.5 35.5h-111v-1165q0 -85 16 -124.5t58 -54.5t133 -18v-41q-108 6 -301 6q-205 0 -303 -6v41q91 3 133 18t58 54.5t16 124.5v1165h-111q-127 0 -188.5 -35.5 t-86 -112t-40.5 -235.5h-47q6 65 6 168q0 120 -15 262z" />
-<glyph unicode="U" horiz-adv-x="1397" d="M55 1409v41q87 -6 262 -6q165 0 261 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-678q0 -164 22 -272t92.5 -174t208.5 -66q217 0 305 139t88 391v639q0 76 -17.5 117t-57 59t-111.5 21v41q74 -6 209 -6q123 0 190 6v-41q-71 -3 -105.5 -20.5t-47 -57.5t-12.5 -119 v-616q0 -147 -19.5 -252.5t-64.5 -181.5q-52 -88 -151.5 -139.5t-223.5 -51.5q-225 0 -344 111q-61 57 -93.5 120.5t-45.5 153.5t-13 234v643q0 77 -12.5 112t-46 48t-107.5 16z" />
-<glyph unicode="V" d="M-12 1409v41q83 -6 219 -6q176 0 262 6v-41q-78 -3 -111.5 -19t-33.5 -57q0 -34 24 -96l371 -984l334 865q41 106 41 167q0 65 -44 93.5t-135 30.5v41q117 -6 236 -6q92 0 154 6v-41q-103 -23 -162 -178l-481 -1241h-17h-16l-500 1288q-50 127 -141 131z" />
-<glyph unicode="W" horiz-adv-x="1853" d="M-14 1409v41q82 -6 219 -6q147 0 221 6v-41q-54 -4 -77 -20t-23 -51q0 -33 22 -101l300 -913l248 793l-54 161q-42 127 -121 131v41q74 -6 199 -6q175 0 262 6v-41q-53 -2 -81 -7.5t-43.5 -20.5t-15.5 -45q0 -34 21 -99l294 -911l253 792q33 104 33 165q0 68 -41.5 96 t-133.5 30v41q117 -6 236 -6q92 0 154 6v-41q-114 -25 -162 -178l-387 -1241h-17h-16l-356 1055l-326 -1055h-16h-17l-434 1288q-44 126 -141 131z" />
-<glyph unicode="X" horiz-adv-x="1298" d="M33 0v41q61 9 116.5 55t114.5 133l309 461l-401 615q-26 41 -45 61.5t-40 29.5t-52 11v43q140 -8 176 -8q137 0 289 8v-43q-137 0 -137 -45q0 -16 18 -45l319 -488l201 301q89 133 89 197q0 43 -39.5 61.5t-119.5 20.5v41q117 -6 236 -6q112 0 174 6v-41 q-62 -9 -117.5 -55.5t-113.5 -132.5l-287 -428l424 -648q26 -41 45 -61.5t40 -29.5t52 -11v-43q-140 8 -176 8q-69 0 -289 -8v43q80 0 113 7t33 26q0 15 -15 37l-350 536l-221 -330q-78 -116 -78 -180q0 -52 46.5 -74t135.5 -24v-41q-116 6 -276 6q-113 0 -174 -6z" />
-<glyph unicode="Y" horiz-adv-x="1210" d="M-6 1407v43q80 -6 180 -6q199 0 287 6v-43q-144 0 -144 -79q0 -30 21 -71l341 -653l261 520q56 113 56 176q0 58 -45 82.5t-136 26.5v41q117 -6 236 -6q92 0 153 6v-41q-41 -9 -80 -51.5t-84 -130.5l-321 -637v-373q0 -77 12.5 -112t46 -48t107.5 -16v-41q-96 6 -260 6 q-176 0 -263 -6v41q74 3 107.5 16t46 48t12.5 112v309l-415 766q-38 69 -65.5 92t-53.5 23z" />
-<glyph unicode="Z" horiz-adv-x="1217" d="M86 0v41l854 1362h-430q-128 0 -194.5 -36t-96 -115t-45.5 -232h-47q6 65 6 168q0 116 -14 262q151 -6 510 -6q348 0 497 6v-41l-847 -1362h432q128 0 194.5 36t96 115t45.5 232h47q-7 -75 -7 -168q0 -106 15 -262q-152 6 -510 6q-350 0 -506 -6z" />
-<glyph unicode="[" horiz-adv-x="606" d="M188 -371v1952h351v-39h-166v-1874h166v-39h-351z" />
-<glyph unicode="\" horiz-adv-x="762" d="M68 1479l557 -1508h67l-557 1508h-67z" />
-<glyph unicode="]" horiz-adv-x="606" d="M67 -332v-39h351v1952h-351v-39h166v-1874h-166z" />
-<glyph unicode="^" horiz-adv-x="1098" d="M147 688q131 63 233 169t150 224h37q49 -118 151 -224t232 -169l-16 -29q-124 45 -240 112t-186 134q-58 -67 -151.5 -134t-192.5 -112z" />
-<glyph unicode="_" horiz-adv-x="1210" d="M141 -235h928v-82h-928v82z" />
-<glyph unicode="`" horiz-adv-x="457" d="M42 1608q0 34 28 57q19 15 44 15q44 0 79 -46q29 -38 65 -107.5t70.5 -134t87.5 -147.5l-23 -18q-56 59 -102.5 102.5t-118.5 107t-102 101.5q-28 37 -28 70z" />
-<glyph unicode="a" horiz-adv-x="1020" d="M80 215q0 78 38 133t107 96.5t185 90.5q20 8 98 40t112.5 64t34.5 70v127q0 119 -49.5 162.5t-140.5 43.5q-145 0 -203 -73q41 -10 68.5 -43.5t27.5 -81.5q0 -52 -32.5 -81.5t-87.5 -29.5q-52 0 -81.5 35t-29.5 92q0 80 96 146q50 33 123.5 55t163.5 22q84 0 148 -20.5 t100 -56.5q47 -48 64.5 -111.5t17.5 -175.5v-569q0 -51 14.5 -74t48.5 -23q25 0 46 11t46 32l23 -35q-36 -27 -60 -42t-55 -24t-72 -9q-99 0 -137.5 49.5t-38.5 132.5q-60 -99 -144 -140.5t-171 -41.5q-71 0 -130 24.5t-94.5 76t-35.5 128.5zM260 248q0 -89 45 -134.5 t119 -45.5q136 0 231 155v402q-15 -23 -50 -43t-146 -74q-59 -28 -100 -57.5t-70 -79.5t-29 -123z" />
-<glyph unicode="b" horiz-adv-x="1153" d="M8 1538v43q65 -6 127 -6q132 0 213 29v-740q46 104 130 161.5t190 57.5q114 0 201.5 -62.5t137.5 -188t50 -306.5q0 -177 -61.5 -302.5t-165.5 -189t-230 -63.5q-75 0 -146 30.5t-124 89.5l-146 -124l-34 15q14 50 14 118v1258q0 95 -34.5 137.5t-121.5 42.5zM348 120 q48 -50 109.5 -76t126.5 -26q138 0 206 124.5t68 383.5q0 250 -61.5 373t-188.5 123q-55 0 -107 -29.5t-92.5 -87t-60.5 -138.5v-647z" />
-<glyph unicode="c" horiz-adv-x="995" d="M94 514q0 166 60.5 295.5t169.5 201.5t247 72t238 -65q96 -65 96 -158q0 -54 -30.5 -84.5t-77.5 -30.5q-48 0 -80.5 27.5t-32.5 75.5q0 44 24.5 73.5t61.5 39.5q-20 37 -73 61.5t-111 24.5q-75 0 -141 -48t-109 -160t-43 -294q0 -255 82 -370.5t213 -115.5q87 0 166.5 51 t130.5 160l39 -14q-23 -73 -71 -137.5t-125.5 -106t-180.5 -41.5q-128 0 -231 66t-162.5 189t-59.5 288z" />
-<glyph unicode="d" horiz-adv-x="1190" d="M98 526v6q0 175 62 299q63 126 168.5 189t232.5 63q78 0 143.5 -29.5t102.5 -91.5v398q0 95 -34.5 137.5t-121.5 42.5v43q65 -6 127 -6q132 0 213 29v-1383q0 -95 34.5 -137.5t121.5 -42.5v-43q-65 6 -127 6q-132 0 -213 -29v182q-38 -92 -111.5 -140t-179.5 -48 q-130 0 -224 62t-144 186q-50 122 -50 300v7zM297 526v-7q-1 -241 69 -363q70 -124 209 -123q53 0 100 27t82 80.5t50 128.5v609q-57 158 -229 158q-83 0 -146 -56q-64 -58 -100 -172q-35 -111 -35 -273v-9z" />
-<glyph unicode="e" horiz-adv-x="1036" d="M94 502q0 178 57 309t161.5 201.5t244.5 70.5q184 0 283.5 -111.5t99.5 -338.5h-640q-7 -53 -7 -131q0 -135 44.5 -236t116.5 -155t152 -54q206 0 301 205l41 -16q-24 -72 -76.5 -134.5t-131 -101.5t-175.5 -39q-146 0 -252.5 66.5t-162.5 187t-56 277.5zM297 672h446 q1 16 1 32q0 83 -18 155q-21 85 -66 135t-111 50q-63 0 -116 -40.5t-89.5 -124t-46.5 -207.5z" />
-<glyph unicode="f" horiz-adv-x="680" d="M53 1012v41h164q0 122 10 203.5t32.5 138.5t62.5 104q40 48 104 75.5t139 27.5q105 0 178 -56q64 -52 64 -127q0 -47 -30.5 -77.5t-78.5 -30.5q-47 0 -79.5 30t-32.5 80q0 42 23.5 69.5t62.5 35.5q-6 19 -33 32t-68 13q-91 0 -133 -76q-23 -41 -30 -122.5t-7 -266.5v-53 h220v-41h-220v-801q0 -95 54 -131.5t163 -36.5v-43q-252 8 -315 8q-50 0 -242 -8v43q58 0 91.5 13t49 45t15.5 89v822h-164z" />
-<glyph unicode="g" horiz-adv-x="1061" d="M39 -197q0 70 73.5 135.5t183.5 114.5h-7q-78 0 -141.5 33t-63.5 123q0 70 58 133t198 126q-90 35 -140 108t-50 184q0 162 103.5 242.5t274.5 80.5q80 0 145 -18q20 114 72 182q55 68 140 68q51 0 79.5 -30t28.5 -77q0 -42 -28 -70t-70 -28q-52 0 -75 31.5t-34 97.5 q-30 -27 -55 -100q-15 -45 -21 -85q93 -34 145 -107.5t52 -186.5q0 -109 -49 -181.5t-134 -107.5t-196 -35q-83 0 -151 19q-83 -44 -127.5 -81.5t-44.5 -80.5q0 -34 23 -51t75 -17h481q107 0 173.5 -45t66.5 -145q0 -98 -63.5 -195t-193 -161t-316.5 -64q-107 0 -201.5 21.5 t-152.5 64t-58 102.5zM207 -154q0 -66 44 -110t113 -65t142 -21q91 0 178 32.5t143 98t56 158.5q0 40 -13.5 64.5t-47.5 37t-95 12.5h-381q-66 -34 -102.5 -91t-36.5 -116zM342 760q0 -156 47.5 -221.5t138.5 -65.5q92 0 139.5 65t47.5 222t-47.5 222t-139.5 65 q-91 0 -138.5 -65.5t-47.5 -221.5z" />
-<glyph unicode="h" horiz-adv-x="1204" d="M41 0v43q58 0 91.5 13t49 45t15.5 89v1168q0 95 -34.5 137.5t-121.5 42.5v43q65 -6 127 -6q132 0 213 29v-766q51 130 142.5 187.5t205.5 57.5q143 0 217 -77q39 -42 55.5 -103.5t16.5 -165.5v-547q0 -57 15.5 -89t49 -45t91.5 -13v-43q-192 8 -246 8q-58 0 -230 -8v43 q51 0 80 13t42.5 45t13.5 89v592q0 74 -12 124t-48.5 81t-105.5 31q-83 0 -148.5 -47.5t-102 -132t-36.5 -191.5v-457q0 -57 13.5 -89t42 -45t79.5 -13v-43q-172 8 -229 8q-58 0 -246 -8z" />
-<glyph unicode="i" horiz-adv-x="600" d="M59 0v43q58 0 91.5 13t49 45t15.5 89v641q0 95 -34.5 138t-121.5 43v43q64 -6 127 -6q130 0 213 28v-887q0 -57 15.5 -89t49 -45t91.5 -13v-43q-188 8 -248 8t-248 -8zM162 1436q0 35 17.5 65t48 48t65.5 18t65 -18t48 -48t18 -65t-18 -65.5t-48 -48t-65 -17.5 t-65.5 17.5t-48 48t-17.5 65.5z" />
-<glyph unicode="j" horiz-adv-x="547" d="M-131 -260q0 47 29.5 76.5t76.5 29.5q49 0 78 -25t29 -75q0 -70 -78 -98q12 -2 35 -2q71 0 115 47q47 59 47 174v964q0 95 -34.5 138t-121.5 43v43q64 -6 127 -6q130 0 213 28v-841q0 -167 -22.5 -291.5t-86.5 -204.5q-47 -61 -113.5 -93t-133.5 -32q-72 0 -115 31 q-45 34 -45 94zM141 1425q0 35 18 65.5t48 48t65 17.5t65.5 -17.5t48 -48t17.5 -65.5t-17.5 -65t-48 -48t-65.5 -18t-65 18t-48 48t-18 65z" />
-<glyph unicode="k" horiz-adv-x="1126" d="M41 0v43q58 0 91.5 13t49 45t15.5 89v1170q0 95 -34.5 137.5t-121.5 42.5v43q65 -6 127 -6q132 0 213 29v-1017q60 8 100 27.5t76 57.5l152 157q65 68 65 113q0 36 -41 53t-110 17v41q142 -8 231 -8q96 0 178 8v-41q-100 -9 -184 -96l-249 -262l370 -506q38 -52 69 -76.5 t74 -30.5v-43q-124 8 -166 8q-55 0 -227 -8v43q29 0 46 11t17 28q0 14 -12 31l-235 344q-37 52 -68 70t-86 20v-357q0 -57 13.5 -89t42 -45t79.5 -13v-43q-172 8 -227 8q-60 0 -248 -8z" />
-<glyph unicode="l" horiz-adv-x="586" d="M45 0v43q58 0 91.5 13t49 45t15.5 89v1170q0 95 -34.5 137.5t-121.5 42.5v43q64 -6 127 -6q132 0 213 29v-1416q0 -57 15.5 -89t49 -45t91.5 -13v-43q-188 8 -248 8t-248 -8z" />
-<glyph unicode="m" horiz-adv-x="1819" d="M59 0v43q58 0 91.5 13t49 45t15.5 89v641q0 95 -34.5 138t-121.5 43v43q64 -6 127 -6q130 0 213 28v-241q50 126 140 186.5t196 60.5q139 0 213 -77q51 -56 63 -165q51 129 141 185.5t200 56.5q139 0 213 -77q37 -41 52 -104.5t15 -164.5v-547q0 -57 15.5 -89t49 -45 t91.5 -13v-43q-188 8 -246 8q-57 0 -229 -8v43q51 0 79.5 13t42 45t13.5 89v592q0 78 -9 126.5t-43 79t-104 30.5q-78 0 -141 -49t-99 -134t-36 -188v-457q0 -57 15.5 -89t48.5 -45t91 -13v-43q-188 8 -245 8q-58 0 -230 -8v43q51 0 80 13t42 45t13 89v592q0 78 -9 126.5 t-43 79t-103 30.5q-79 0 -142 -49.5t-99 -135t-36 -188.5v-455q0 -57 13.5 -89t42.5 -45t80 -13v-43q-172 8 -230 8t-246 -8z" />
-<glyph unicode="n" horiz-adv-x="1223" d="M59 0v43q58 0 91.5 13t49 45t15.5 89v641q0 95 -34.5 138t-121.5 43v43q64 -6 127 -6q130 0 213 28v-241q51 130 142.5 188.5t206.5 58.5q143 0 217 -77q38 -42 54.5 -103.5t16.5 -165.5v-547q0 -57 15.5 -89t49 -45t91.5 -13v-43q-188 8 -246 8q-57 0 -229 -8v43 q51 0 79.5 13t42 45t13.5 89v592q0 74 -11.5 124t-48 81t-106.5 31q-84 0 -149.5 -49t-101.5 -134.5t-36 -189.5v-455q0 -57 13.5 -89t42.5 -45t80 -13v-43q-172 8 -230 8t-246 -8z" />
-<glyph unicode="o" horiz-adv-x="1122" d="M96 526q0 190 60.5 314.5t165 183.5t239.5 59t239.5 -59t165 -183.5t60.5 -314.5t-60.5 -314t-165 -182.5t-239.5 -58.5t-239.5 58.5t-165 182.5t-60.5 314zM295 526q0 -263 71.5 -388.5t194.5 -125.5t194.5 125.5t71.5 388.5q0 264 -71.5 390t-194.5 126t-194.5 -126 t-71.5 -390z" />
-<glyph unicode="p" horiz-adv-x="1190" d="M45 1012v43q64 -6 127 -6q130 0 213 28v-216q46 106 132 164t196 58q109 0 195.5 -59t136 -174t49.5 -275q0 -157 -50 -294.5t-155.5 -223.5t-263.5 -86q-78 0 -141.5 30.5t-98.5 80.5v-262q0 -83 49 -115.5t148 -32.5v-43q-26 1 -116.5 5t-178.5 4q-65 0 -134 -4t-87 -5 v43q75 0 105 27.5t30 99.5v1032q0 95 -34.5 138t-121.5 43zM385 150q30 -61 85 -96.5t132 -35.5q293 0 293 529q0 475 -238 475q-93 0 -166.5 -66.5t-105.5 -192.5v-613z" />
-<glyph unicode="q" horiz-adv-x="1153" d="M96 526q0 181 57.5 306.5t156.5 188t225 62.5q104 0 174 -35.5t114 -113.5q109 115 146 153l35 -14q-15 -50 -15 -119v-1155q0 -72 30 -99.5t105 -27.5v-43q-18 1 -87 5t-134 4q-88 0 -178.5 -4t-116.5 -5v43q99 0 148 32.5t49 115.5v353q-41 -97 -116.5 -149.5 t-170.5 -52.5q-120 0 -215.5 62t-151 187t-55.5 306zM295 526q0 -245 72.5 -369t210.5 -124q76 0 138.5 61.5t88.5 175.5v629q-78 137 -254 137q-124 0 -190 -127.5t-66 -382.5z" />
-<glyph unicode="r" horiz-adv-x="911" d="M59 0v43q58 0 91.5 13t49 45t15.5 89v641q0 95 -34.5 138t-121.5 43v43q64 -6 127 -6q130 0 213 28v-256q23 64 66.5 124t103.5 99t127 39q54 0 96.5 -21.5t66.5 -58.5t24 -81q0 -54 -32 -91.5t-85 -37.5q-45 0 -77 28.5t-32 77.5q0 67 70 111q-14 20 -43 20 q-81 0 -146 -62t-102 -153t-37 -170v-434q0 -95 54 -131.5t163 -36.5v-43q-252 8 -315 8q-54 0 -242 -8z" />
-<glyph unicode="s" horiz-adv-x="913" d="M113 -14q8 117 8 409h47q15 -127 43 -209t86 -128t156 -46q45 0 86.5 19.5t68.5 63t27 112.5q0 56 -28.5 100.5t-74.5 80t-129 87.5q-101 64 -154.5 105t-90.5 100t-37 139q0 87 41 146.5t109.5 88.5t152.5 29q72 0 129.5 -23t93.5 -52q22 -17 36 -17q36 0 46 90h47 q-8 -100 -8 -348h-47q-22 135 -87 223t-192 88q-74 0 -121 -41.5t-47 -115.5q0 -71 48.5 -118.5t117 -90.5t97.5 -62q94 -61 151.5 -108.5t93 -109t35.5 -140.5q0 -91 -47.5 -155.5t-127.5 -98t-175 -33.5q-91 0 -162 29q-40 20 -84 55q-8 8 -19 8q-30 0 -42 -77h-47z" />
-<glyph unicode="t" horiz-adv-x="725" d="M8 1012v41h197v313q115 3 184 29v-342h303v-41h-303v-793q0 -93 33 -133.5t98 -40.5q64 0 109 51t76 168l40 -10q-50 -283 -266 -283q-69 0 -114 16.5t-80 51.5q-44 45 -62 110.5t-18 176.5v686h-197z" />
-<glyph unicode="u" horiz-adv-x="1190" d="M33 1012v43q64 -6 127 -6q129 0 213 28v-805q0 -78 9 -126t43 -78.5t103 -30.5q79 0 142 49t99 134t36 188v423q0 95 -34.5 138t-121.5 43v43q64 -6 127 -6q130 0 213 28v-856q0 -95 34.5 -137.5t121.5 -42.5v-43q-64 6 -127 6q-132 0 -213 -29v242q-50 -126 -139.5 -186 t-196.5 -60q-138 0 -213 78q-37 40 -52.5 104t-15.5 164v514q0 95 -34 138t-121 43z" />
-<glyph unicode="v" horiz-adv-x="1001" d="M-4 1012v43q106 -8 180 -8q157 0 266 8v-43q-51 0 -79.5 -3.5t-47 -18.5t-18.5 -48q0 -34 22 -90l252 -623l226 592q22 56 22 95q0 47 -36 70t-115 28v41q106 -6 172 -6q90 0 155 6v-41q-41 -5 -73 -37t-60 -107l-336 -880h-34l-377 907q-30 71 -59.5 93t-59.5 22z" />
-<glyph unicode="w" horiz-adv-x="1577" d="M0 1012v43q86 -13 180 -13q91 0 266 13v-43q-67 0 -99.5 -8t-42.5 -45q-2 -9 -2 -21q0 -36 22 -98l205 -589l294 812h47l314 -829l192 587q19 60 19 93q0 49 -35.5 72t-116.5 28v41q108 -6 172 -6q91 0 156 6v-41q-43 -5 -76 -37t-57 -107l-297 -880h-35l-325 824 l-292 -824h-34l-336 907q-28 72 -58 93.5t-61 21.5z" />
-<glyph unicode="x" horiz-adv-x="1063" d="M43 0v41q40 5 82 37t98 106l236 311l-285 414q-28 41 -47 61.5t-36.5 29.5t-43.5 12v43q108 -8 146 -8q69 0 241 8v-43q-33 0 -56.5 -12.5t-23.5 -33.5q0 -12 8 -24l219 -319l142 198q62 87 62 129q0 29 -28 44.5t-89 19.5v41q106 -6 172 -6q90 0 155 6v-41 q-83 -10 -180 -144l-207 -286l301 -439q36 -52 62 -73.5t65 -28.5v-43q-104 8 -145 8q-70 0 -242 -8v43q33 0 57 13t24 33q0 10 -9 24l-233 340l-150 -195q-57 -73 -57 -123q0 -84 151 -94v-41q-108 6 -233 6q-91 0 -156 -6z" />
-<glyph unicode="y" horiz-adv-x="1032" d="M-8 1012v43q96 -13 201 -13q88 0 266 13v-43q-50 0 -78 -3.5t-46.5 -19t-18.5 -48.5q0 -37 26 -101l247 -612l226 593q22 60 22 94q0 48 -36.5 71t-116.5 28v41q108 -6 172 -6q91 0 156 6v-41q-41 -5 -73 -37t-60 -107l-336 -880l-70 -178q-39 -101 -88 -144 q-58 -53 -160 -53q-61 0 -100 32.5t-39 90.5q0 49 29 78.5t80 29.5q45 0 74.5 -25t29.5 -71q0 -61 -55 -92q4 -2 12 -2q113 0 174 160l73 187l-372 894q-35 71 -69.5 93t-69.5 22z" />
-<glyph unicode="z" horiz-adv-x="975" d="M78 -10l592 1034h-226q-92 0 -151 -33t-91.5 -105.5t-41.5 -191.5h-47q0 271 -9 369q161 -8 381 -8q196 0 414 10l-592 -1034h225q126 0 199 78.5t86 250.5h47q0 -267 8 -368q-160 8 -380 8q-196 0 -414 -10z" />
-<glyph unicode="{" horiz-adv-x="623" d="M55 594v37h11q63 4 96 48t46 147.5t13 301.5q0 183 33 285t107.5 145.5t207.5 43.5v-39q-72 -2 -104.5 -31t-45.5 -117.5t-13 -286.5q0 -174 -39.5 -280t-103 -158t-150.5 -78q87 -26 150.5 -78t103 -158.5t39.5 -279.5q0 -205 13 -295t45.5 -118t104.5 -29v-39 q-134 0 -208 42.5t-107 145.5t-33 293q0 197 -13 300.5t-46 148t-96 49.5h-11z" />
-<glyph unicode="|" horiz-adv-x="455" d="M186 -399v2156h82v-2156h-82z" />
-<glyph unicode="}" horiz-adv-x="623" d="M54 -346v-39q134 0 208 42.5t107 145.5t33 293q0 197 13 300.5t46 148t96 49.5h11v37h-11q-63 4 -96 48t-46 147.5t-13 301.5q0 183 -33 285t-107.5 145.5t-207.5 43.5v-39q72 -2 104.5 -31t45.5 -117.5t13 -286.5q0 -174 39.5 -280t103 -158t150.5 -78 q-87 -26 -150.5 -78t-103 -158.5t-39.5 -279.5q0 -205 -13 -295t-45.5 -118t-104.5 -29z" />
-<glyph unicode="~" horiz-adv-x="1329" d="M152 530q8 66 48.5 115.5t103.5 76t136 26.5q68 0 127 -20.5t180 -79t214 -58.5q134 0 184 119l35 -11q-8 -66 -49 -115t-104 -75.5t-136 -26.5q-68 0 -127 20.5t-180 79t-213 58.5q-135 0 -185 -119z" />
-<glyph unicode="&#xa1;" horiz-adv-x="510" d="M125 952q0 35 17.5 65.5t48 48t65.5 17.5t65.5 -17.5t48 -48t17.5 -65.5t-17.5 -65t-48 -48t-65.5 -18t-65.5 18t-48 48t-17.5 65zM160 -270q0 75 24 273.5t38 344t14 303.5h36q0 -142 12.5 -282t38 -352t25.5 -287q0 -59 -26 -87t-68 -28q-41 0 -67.5 28.5t-26.5 86.5z " />
-<glyph unicode="&#xa2;" horiz-adv-x="971" d="M69 514q0 156 54 280.5t151.5 199t223.5 87.5v369h45v-367h3q138 0 238 -65q96 -65 96 -158q0 -54 -30.5 -84.5t-77.5 -30.5q-48 0 -80.5 27.5t-32.5 75.5q0 44 24.5 73.5t61.5 39.5q-20 37 -73 61.5t-111 24.5l-18 -1v-986l20 -1q87 0 166.5 51t130.5 160l39 -14 q-22 -70 -67.5 -133t-118.5 -105t-170 -47v-342h-45v343q-122 6 -219.5 73.5t-153.5 188t-56 280.5zM268 545q0 -221 62.5 -337t167.5 -141v971q-100 -28 -165 -147t-65 -346z" />
-<glyph unicode="&#xa3;" horiz-adv-x="1233" d="M72 -8q0 19 27.5 50.5t70.5 61.5t86 46q14 66 18.5 144.5t4.5 233.5v80h-158v41h158v164h-158v41h158v45q0 608 454 608q121 0 193 -55q61 -49 61 -113q0 -43 -28.5 -71.5t-67.5 -28.5q-37 0 -65.5 26t-28.5 66q0 34 17.5 59t49.5 37q-4 20 -43.5 35t-83.5 15 q-122 0 -180.5 -71t-73 -177t-14.5 -277v-98h297v-41h-297v-164h297v-41h-298q-4 -122 -35.5 -217.5t-96.5 -210.5q87 41 176 41q69 0 158.5 -30.5t143 -46t118.5 -15.5q69 0 104 33.5t35 83.5q0 69 -47 114.5t-127 61.5l8 33q69 -11 128.5 -44t96.5 -87t37 -125 q0 -59 -25.5 -111.5t-76 -84.5t-121.5 -32q-66 0 -124.5 25t-148.5 79.5t-141 71.5q-43 17 -100 17q-58 0 -113 -21q-47 -81 -103 -126.5t-110 -45.5q-16 0 -24 4t-8 17z" />
-<glyph unicode="&#xa4;" horiz-adv-x="1096" d="M158 283l88 88q-86 105 -86 243q0 139 88 246l-90 90l57 58l90 -90q107 86 244 86q136 0 244 -89l92 93l57 -58l-92 -92q86 -109 86 -244q0 -138 -86 -243l90 -88l-57 -60l-90 90q-110 -86 -244 -86q-139 0 -244 84l-88 -88zM244 614q0 -84 41.5 -155.5t111.5 -113.5 t152 -42t151.5 42t110.5 113.5t41 155.5q0 83 -41 155t-111 115.5t-151 43.5q-82 0 -152.5 -43t-111.5 -115t-41 -156z" />
-<glyph unicode="&#xa5;" horiz-adv-x="1325" d="M55 1407v43q79 -6 180 -6q199 0 287 6v-43q-144 0 -144 -79q0 -30 21 -71l340 -651h2l260 518q56 113 56 176q0 58 -45 82.5t-136 26.5v41q117 -6 236 -6q91 0 153 6v-41q-41 -9 -80 -51.5t-84 -130.5l-313 -621h279v-41h-287v-164h287v-41h-287v-143q0 -77 12.5 -112 t46 -48t107.5 -16v-41q-96 6 -260 6q-176 0 -263 -6v41q74 3 107.5 16t46 48t12.5 112v143h-286v41h286v125l-21 39h-265v41h243l-372 686q-38 69 -65.5 92t-53.5 23z" />
-<glyph unicode="&#xa6;" horiz-adv-x="459" d="M188 -399v1067h82v-1067h-82zM188 786v971h82v-971h-82z" />
-<glyph unicode="&#xa7;" horiz-adv-x="1040" d="M84 639q0 224 235 354q-71 65 -108 133.5t-37 153.5q0 94 44.5 167.5t126.5 114t190 40.5q92 0 182 -35q73 -31 115 -81t42 -104q0 -47 -29 -78.5t-79 -31.5q-47 0 -80 30t-33 78q0 38 21.5 68t66.5 41q-19 39 -79 56.5t-119 17.5q-80 0 -130.5 -30t-73 -76t-22.5 -97 q0 -75 47.5 -140t105.5 -109.5t187 -133.5q109 -75 172 -131.5t96 -121t33 -146.5q0 -220 -240 -350q74 -66 112 -135.5t38 -155.5q0 -95 -44.5 -168t-126 -113.5t-189.5 -40.5q-98 0 -182 35q-74 31 -116 80.5t-42 103.5q0 47 29 79t79 32q48 0 80.5 -30.5t32.5 -78.5 q0 -38 -21.5 -67.5t-66.5 -40.5q17 -39 78 -56.5t123 -17.5q78 0 128 30t72.5 76t22.5 97q0 75 -47.5 139.5t-105.5 109.5t-187 134q-109 75 -172 131.5t-96 121t-33 146.5zM195 741q0 -64 38.5 -121.5t98 -106t157.5 -116.5q150 -102 207 -150q77 43 114.5 102.5 t37.5 125.5q0 64 -38.5 121.5t-99 107t-157.5 115.5q-152 104 -208 151q-75 -41 -112.5 -101.5t-37.5 -127.5z" />
-<glyph unicode="&#xa8;" horiz-adv-x="799" d="M63 1403q0 31 16 58.5t43.5 44t59.5 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-43.5 -43.5t-59 -16q-49 0 -84 35t-35 84zM498 1403q0 31 16 58.5t43 44t59 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-43.5 -43.5t-59 -16 q-49 0 -83.5 35t-34.5 84z" />
-<glyph unicode="&#xa9;" horiz-adv-x="1831" d="M100 786q0 222 109.5 409.5t297 297t408.5 109.5q222 0 409.5 -109.5t297 -297t109.5 -409.5q0 -221 -109.5 -408.5t-297 -297t-409.5 -109.5q-221 0 -408.5 109.5t-297 297t-109.5 408.5zM182 786q0 -203 98.5 -375t267 -273t367.5 -101q200 0 368.5 101t267 273 t98.5 375q0 204 -98.5 376t-267 273t-368.5 101q-199 0 -367.5 -101t-267 -273t-98.5 -376zM471 774q0 166 60.5 295.5t169.5 201.5t249 72q70 0 135 -18t111 -53q86 -60 86 -152q0 -53 -30.5 -83.5t-77.5 -30.5q-48 0 -80.5 30t-32.5 80q0 42 23 69t63 36q-20 37 -73 61.5 t-111 24.5q-101 0 -177 -80q-116 -128 -116 -428q0 -169 39.5 -276t105 -155.5t148.5 -48.5q89 0 168.5 51t130.5 160l38 -14q-22 -73 -70 -137.5t-125 -106t-179 -41.5q-129 0 -232.5 66t-163 189t-59.5 288z" />
-<glyph unicode="&#xaa;" horiz-adv-x="948" d="M117 897q0 56 32.5 95t87 66.5t146.5 61.5q80 30 122 55t42 60v37q0 89 -35 128.5t-104 39.5q-85 0 -152 -43q30 -9 50 -34.5t20 -62.5q0 -39 -27 -64.5t-63 -25.5q-45 0 -72 25.5t-27 67.5q0 81 99 129q99 47 225 47q132 0 191 -61.5t59 -198.5v-334q0 -43 11.5 -59.5 t39.5 -16.5q49 0 84 35l22 -31q-80 -76 -184 -76q-73 0 -103.5 24.5t-33.5 72.5q-100 -97 -240 -97q-49 0 -92 17.5t-70.5 53.5t-27.5 89zM285 934q0 -56 31 -90.5t81 -34.5q77 0 150 65v297q-8 -17 -31.5 -32.5t-83.5 -42.5q-77 -35 -112 -72t-35 -90z" />
-<glyph unicode="&#xab;" horiz-adv-x="1028" d="M66 526v2q158 88 270.5 223.5t200.5 331.5l34 -14q-71 -191 -155 -313.5t-197 -220.5q110 -96 194.5 -225.5t157.5 -323.5l-34 -15q-88 196 -200.5 332t-270.5 223zM424 526v2q158 88 270.5 223.5t200.5 331.5l35 -14q-72 -191 -155.5 -313.5t-196.5 -220.5 q110 -96 194.5 -225t157.5 -324l-35 -15q-88 196 -200.5 332t-270.5 223z" />
-<glyph unicode="&#xac;" horiz-adv-x="1343" d="M168 696v62h1026v-420h-74v358h-952z" />
-<glyph unicode="&#xad;" horiz-adv-x="1022" />
-<glyph unicode="&#xae;" horiz-adv-x="1389" d="M123 1030q0 155 77 286.5t208 208.5t286 77t286.5 -77t208.5 -208.5t77 -286.5t-77 -286t-208.5 -208t-286.5 -77t-286 77t-208 208t-77 286zM209 1030q0 -136 65 -252.5t176.5 -185t243.5 -68.5q133 0 244.5 68.5t176.5 185t65 252.5q0 137 -65 253t-176.5 184.5 t-244.5 68.5t-244 -68.5t-176 -184.5t-65 -253zM438 721v31q21 2 30.5 7.5t13 20.5t3.5 47v449q0 33 -3.5 48.5t-13 21.5t-30.5 8v30q25 -2 99 -2q67 0 111 1t65 1q115 0 176 -42t61 -119q0 -139 -198 -174q81 -9 115.5 -37t45.5 -82l25 -117q2 -8 6 -28.5t11.5 -30 t19.5 -9.5q15 0 24 17l21 -14q-12 -24 -33.5 -33.5t-56.5 -9.5q-52 0 -77 19.5t-36 63.5l-35 152q-9 40 -23 58.5t-48.5 26.5t-108.5 9v-207q0 -32 3.5 -47t13 -20.5t30.5 -7.5v-31q-20 0 -46.5 1t-57.5 1q-35 0 -62 -1t-45 -1zM602 1067h49q101 0 136.5 35t35.5 100 q0 79 -32.5 115.5t-110.5 36.5q-34 0 -50 -5.5t-22 -19.5t-6 -43v-219z" />
-<glyph unicode="&#xaf;" horiz-adv-x="741" d="M51 1407v51h639v-51h-639z" />
-<glyph unicode="&#xb0;" horiz-adv-x="682" d="M92 1434q0 73 34 129t91 86t123 30q67 0 124.5 -30t91.5 -86t34 -129q0 -75 -34 -131t-91.5 -86.5t-124.5 -30.5q-66 0 -123 30.5t-91 87t-34 130.5zM143 1432q0 -68 29 -116t74 -71.5t94 -23.5t94.5 23.5t75 71.5t29.5 116q0 66 -29.5 114.5t-75.5 73.5t-94 25 t-93.5 -25t-74.5 -73.5t-29 -114.5z" />
-<glyph unicode="&#xb1;" horiz-adv-x="1313" d="M129 696v62h477v483h74v-483h475v-62h-475v-481h-74v481h-477zM150 0v62h1026v-62h-1026z" />
-<glyph unicode="&#xb2;" horiz-adv-x="692" d="M72 897v41q23 20 130 100t168.5 160.5t61.5 167.5q0 111 -133 111q-124 0 -195 -111l-30 16q38 71 109.5 117.5t172.5 46.5q93 0 149 -39t56 -114q0 -78 -53 -138t-149.5 -134t-129.5 -109h271q31 0 49 7.5t27 21.5t20 40l35 -6q-28 -104 -31 -184q-25 6 -78 6h-450z" />
-<glyph unicode="&#xb3;" horiz-adv-x="664" d="M57 1384q38 71 110 117.5t177 46.5q94 0 150.5 -39t56.5 -110q0 -68 -52.5 -118.5t-138.5 -74.5q64 -1 118.5 -22.5t87 -63t32.5 -98.5q0 -91 -79 -161.5t-202.5 -109t-250.5 -38.5v35q105 3 199 40.5t151 99t57 134.5q0 70 -40.5 114.5t-108.5 47.5l-26 -13t-27 -12 t-21 -4q-33 0 -33 25q0 19 23 24.5t67 3.5q62 26 88.5 68t26.5 84q0 54 -38 86.5t-101 32.5q-61 0 -111.5 -28t-83.5 -83z" />
-<glyph unicode="&#xb4;" horiz-adv-x="457" d="M41 1245q44 69 75 125t75 141t73 123q35 46 78 46q25 0 45 -15q28 -23 28 -57q0 -33 -28 -70q-30 -38 -89 -89.5t-113 -100.5t-122 -121z" />
-<glyph unicode="&#xb6;" horiz-adv-x="1321" d="M72 737q0 210 87.5 372t253 252.5t392.5 90.5q58 0 160.5 -3.5t148.5 -3.5q72 0 123 5v-39q-65 -3 -99 -18.5t-46.5 -44t-12.5 -76.5v-1426q0 -77 12.5 -112t46 -48t107.5 -16v-41q-94 6 -260 6q-204 0 -303 -6v41q87 3 130.5 21.5t60 58.5t16.5 117v106 q-429 0 -623 205.5t-194 558.5zM254 719q0 -4 82 -11t213.5 -12.5t277.5 -5.5q2 -153 14.5 -288t27.5 -219.5t22 -84.5v1245q-7 0 -22 -87t-27.5 -223t-14.5 -283q-144 0 -275 -6t-214.5 -14t-83.5 -11z" />
-<glyph unicode="&#xb7;" horiz-adv-x="541" d="M139 548q0 35 17.5 65.5t48 48t65.5 17.5t65.5 -17.5t48 -48t17.5 -65.5t-17.5 -65t-48 -48t-65.5 -18t-65.5 18t-48 48t-17.5 65z" />
-<glyph unicode="&#xb8;" horiz-adv-x="467" d="M20 -362l9 36q42 -6 77 -6q74 0 129.5 21.5t55.5 70.5q0 58 -86 58q-59 0 -101 -15l70 209h55l-53 -159q61 14 121 14q58 0 91.5 -25.5t33.5 -70.5q0 -54 -35.5 -89t-88.5 -51t-108 -16q-105 0 -170 23z" />
-<glyph unicode="&#xb9;" horiz-adv-x="539" d="M70 1436v43q105 2 172.5 16t122.5 47v-504q0 -40 13.5 -61.5t42.5 -30t81 -8.5v-43q-78 4 -199 4q-133 0 -219 -4v43q76 0 114 21.5t38 78.5v265q0 59 -14.5 87t-48 37t-103.5 9z" />
-<glyph unicode="&#xba;" horiz-adv-x="930" d="M102 1108q0 117 51.5 201t135 127t176.5 43t176 -43t134.5 -127t51.5 -201t-51.5 -201t-134.5 -127t-176 -43t-176.5 43t-135 127t-51.5 201zM272 1108q0 -114 25.5 -189t69 -110t98.5 -35q54 0 97.5 35t69 110t25.5 189t-25.5 189t-69 110t-97.5 35q-55 0 -98.5 -35 t-69 -110t-25.5 -189z" />
-<glyph unicode="&#xbb;" horiz-adv-x="1026" d="M98 -16q72 191 155.5 313t197.5 221q-110 96 -194.5 225t-158.5 324l35 14q88 -196 200.5 -331.5t270.5 -223.5v-2q-158 -88 -270.5 -223.5t-200.5 -331.5zM457 -16q71 190 154.5 312.5t197.5 221.5q-110 96 -194.5 225.5t-157.5 323.5l35 14q87 -196 199.5 -331.5 t271.5 -223.5v-2q-159 -88 -271.5 -223.5t-199.5 -331.5z" />
-<glyph unicode="&#xbc;" horiz-adv-x="1419" d="M103 1436v43q105 2 172.5 16t122.5 47v-504q0 -40 13.5 -61.5t42.5 -30t81 -8.5v-43q-78 4 -199 4q-133 0 -219 -4v43q76 0 114 21.5t38 78.5v265q0 59 -14.5 87t-48 37t-103.5 9zM131 -86l1198 1774l39 -27l-1198 -1774zM613 37v43l469 541h43v-500h16q32 0 49.5 7.5 t26.5 21t20 40.5l35 -6q-25 -86 -29 -153q-24 6 -77 6h-41v-240h-115v240h-397zM694 121h316v367z" />
-<glyph unicode="&#xbd;" horiz-adv-x="1434" d="M98 -86l1198 1774l39 -27l-1198 -1774zM119 1436v43q105 2 172.5 16t122.5 47v-504q0 -40 13.5 -61.5t42.5 -30t81 -8.5v-43q-78 4 -199 4q-133 0 -219 -4v43q76 0 114 21.5t38 78.5v265q0 59 -14.5 87t-48 37t-103.5 9zM795 2v41q23 20 130 100t168.5 160.5t61.5 167.5 q0 111 -133 111q-124 0 -195 -111l-30 16q38 71 109.5 117.5t172.5 46.5q93 0 149 -39t56 -114q0 -78 -53 -138t-149.5 -134t-129.5 -109h271q31 0 49 7.5t27 21.5t20 40l35 -6q-28 -104 -31 -184q-25 6 -78 6h-450z" />
-<glyph unicode="&#xbe;" horiz-adv-x="1524" d="M104 1384q38 71 110 117.5t177 46.5q94 0 150.5 -39t56.5 -110q0 -68 -52.5 -118.5t-138.5 -74.5q64 -1 118.5 -22.5t87 -63t32.5 -98.5q0 -91 -79 -161.5t-202.5 -109t-250.5 -38.5v35q105 3 199 40.5t151 99t57 134.5q0 70 -40.5 114.5t-108.5 47.5l-26 -13t-27 -12 t-21 -4q-33 0 -33 25q0 19 23 24.5t67 3.5q62 26 88.5 68t26.5 84q0 54 -38 86.5t-101 32.5q-61 0 -111.5 -28t-83.5 -83zM227 -86l1198 1774l39 -27l-1198 -1774zM709 37v43l469 541h43v-500h16q32 0 49.5 7.5t26.5 21t20 40.5l35 -6q-25 -86 -29 -153q-24 6 -77 6h-41 v-240h-115v240h-397zM790 121h316v367z" />
-<glyph unicode="&#xbf;" horiz-adv-x="928" d="M63 -37q0 161 124.5 273t336.5 161v258h41v-276q-130 -45 -200 -102.5t-94.5 -123.5t-24.5 -151q0 -176 76 -261t210 -85q143 0 201 53q-40 8 -63 34.5t-23 70.5q0 50 32.5 80t80.5 30q47 0 77.5 -30.5t30.5 -77.5q0 -85 -96 -142q-101 -59 -278 -59q-128 0 -225.5 42 t-151.5 120.5t-54 185.5zM412 954q0 35 17.5 65.5t48 48t65.5 17.5t65.5 -17.5t48 -48t17.5 -65.5t-17.5 -65t-48 -48t-65.5 -18t-65.5 18t-48 48t-17.5 65z" />
-<glyph unicode="&#xc0;" d="M-14 0v41q102 23 161 178l482 1241h33l499 -1288q50 -127 142 -131v-41q-84 6 -220 6q-175 0 -262 -6v41q78 3 111.5 19t33.5 57q0 35 -24 96l-126 336h-494l-84 -217q-41 -104 -41 -168q0 -65 43.5 -93t134.5 -30v-41q-117 6 -236 6q-92 0 -153 -6zM290 1844q0 19 11 38 q23 34 63 34q31 0 62 -20q41 -26 98.5 -79t112 -101t133.5 -108l-14 -27q-75 38 -134.5 63.5t-148 59.5t-129.5 59q-54 36 -54 81zM337 590h464l-229 611z" />
-<glyph unicode="&#xc1;" d="M-14 0v41q102 23 161 178l482 1241h33l499 -1288q50 -127 142 -131v-41q-84 6 -220 6q-175 0 -262 -6v41q78 3 111.5 19t33.5 57q0 35 -24 96l-126 336h-494l-84 -217q-41 -104 -41 -168q0 -65 43.5 -93t134.5 -30v-41q-117 6 -236 6q-92 0 -153 -6zM337 590h464 l-229 611zM508 1608q65 50 113.5 91.5t119 106t111.5 90.5q31 20 62 20q40 0 63 -34q11 -19 11 -38q0 -45 -54 -81q-41 -25 -113.5 -53t-141 -56t-157.5 -73z" />
-<glyph unicode="&#xc2;" d="M-14 0v41q102 23 161 178l482 1241h33l499 -1288q50 -127 142 -131v-41q-84 6 -220 6q-175 0 -262 -6v41q78 3 111.5 19t33.5 57q0 35 -24 96l-126 336h-494l-84 -217q-41 -104 -41 -168q0 -65 43.5 -93t134.5 -30v-41q-117 6 -236 6q-92 0 -153 -6zM232 1606 q131 45 232.5 117.5t150.5 152.5h37q48 -80 149.5 -152.5t233.5 -117.5l-11 -29q-124 26 -243 65.5t-189 77.5q-58 -38 -154.5 -77.5t-195.5 -65.5zM337 590h464l-229 611z" />
-<glyph unicode="&#xc3;" d="M-14 0v41q102 23 161 178l482 1241h33l499 -1288q50 -127 142 -131v-41q-84 6 -220 6q-175 0 -262 -6v41q78 3 111.5 19t33.5 57q0 35 -24 96l-126 336h-494l-84 -217q-41 -104 -41 -168q0 -65 43.5 -93t134.5 -30v-41q-117 6 -236 6q-92 0 -153 -6zM240 1630 q6 66 38 115t82 75.5t107 26.5q51 0 96.5 -20t138.5 -78.5t163 -58.5q95 0 127 114l30 -6q-6 -66 -38 -115t-81.5 -75.5t-107.5 -26.5q-51 0 -96 20.5t-138.5 79t-162.5 58.5q-96 0 -127 -115zM337 590h464l-229 611z" />
-<glyph unicode="&#xc4;" d="M-14 0v41q102 23 161 178l482 1241h33l499 -1288q50 -127 142 -131v-41q-84 6 -220 6q-175 0 -262 -6v41q78 3 111.5 19t33.5 57q0 35 -24 96l-126 336h-494l-84 -217q-41 -104 -41 -168q0 -65 43.5 -93t134.5 -30v-41q-117 6 -236 6q-92 0 -153 -6zM297 1700 q0 31 16 58.5t43.5 44t59.5 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-44 -43.5t-58.5 -16q-49 0 -84 35t-35 84zM337 590h464l-229 611zM731 1700q0 31 16 58.5t43.5 44t59.5 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-43.5 -43.5 t-59 -16q-49 0 -84 35t-35 84z" />
-<glyph unicode="&#xc5;" d="M-14 0v41q102 23 161 178l482 1241h33l499 -1288q50 -127 142 -131v-41q-84 6 -220 6q-175 0 -262 -6v41q78 3 111.5 19t33.5 57q0 35 -24 96l-126 336h-494l-84 -217q-41 -104 -41 -168q0 -65 43.5 -93t134.5 -30v-41q-117 6 -236 6q-92 0 -153 -6zM337 590h464 l-229 611zM437 1708q0 56 27 98t72 65t97 23q54 0 99.5 -23t72.5 -65t27 -98q0 -57 -27 -99.5t-72.5 -65.5t-99.5 -23q-53 0 -97.5 23t-71.5 65.5t-27 99.5zM494 1706q0 -46 20.5 -78t52.5 -48.5t66 -16.5q36 0 68.5 16.5t53 48.5t20.5 78q0 45 -20.5 78t-53.5 50t-68 17 q-34 0 -66 -17t-52.5 -50t-20.5 -78z" />
-<glyph unicode="&#xc6;" horiz-adv-x="1749" d="M-20 0v41q33 1 66 31t75 100l718 1184q-15 28 -48 39t-101 14v41q86 -3 203 -4l82 135h49l-82 -136q83 -1 154.5 -1h126.5q272 0 387 6q-15 -131 -15 -242q0 -84 7 -127h-48q-11 132 -28.5 197.5t-59 95t-125.5 29.5h-129q-74 0 -107 -12t-45.5 -46.5t-12.5 -111.5v-483 h149q81 0 108 51.5t33 105.5t9 72h47q-8 -104 -8 -171l1 -79q0 -74 13 -250h-47q-1 12 -9 84t-45 109t-102 37h-149v-492q0 -77 12.5 -111.5t45.5 -46.5t107 -12h150q99 0 144 33t60.5 102t28.5 228h47q-6 -56 -6 -148q0 -120 15 -262q-127 6 -428 6q-322 0 -492 -6v41 q57 3 82 16t34 47.5t9 112.5v492h-358l-299 -496q-38 -65 -38 -100q0 -36 35 -52.5t107 -19.5v-41q-62 6 -186 6q-86 0 -137 -6zM523 750h333v483q0 39 -3 65z" />
-<glyph unicode="&#xc7;" horiz-adv-x="1409" d="M109 713q0 226 83 400t231 270t337 96q122 0 208.5 -35t168.5 -98q22 -18 40 -18q42 0 52 122h47q-8 -133 -8 -471h-47q-15 92 -27.5 143t-29.5 86.5t-46 73.5q-62 80 -157 120t-205 40q-133 0 -233 -88t-155 -251t-55 -382q0 -223 60 -383t165 -243t238 -83 q102 0 199 39t151 117q42 56 60 121.5t35 202.5h47q0 -353 8 -492h-47q-5 64 -16.5 92.5t-33.5 28.5q-16 0 -42 -17q-61 -43 -112.5 -70.5t-117.5 -45t-149 -17.5q-195 0 -341.5 88t-227 255.5t-80.5 398.5zM580 -362l8 36q42 -6 78 -6q74 0 129 21.5t55 70.5q0 58 -86 58 q-58 0 -100 -15l69 207h56l-54 -157q61 14 121 14q58 0 91.5 -25.5t33.5 -70.5q0 -54 -35.5 -89t-88.5 -51t-107 -16q-105 0 -170 23z" />
-<glyph unicode="&#xc8;" horiz-adv-x="1247" d="M86 0v41q74 3 107.5 16t46 48t12.5 112v1016q0 77 -12.5 112t-46 48t-107.5 16v41q201 -6 594 -6q301 0 428 6q-14 -134 -14 -242q0 -80 6 -127h-47q-15 133 -37.5 198t-76 94.5t-161.5 29.5h-170q-74 0 -107.5 -12t-46 -46.5t-12.5 -111.5v-483h136q103 0 137 61.5 t42 125.5t11 83h47q-7 -101 -7 -193l1 -98q0 -104 12 -291h-47q-2 14 -11.5 99t-55.5 128.5t-129 43.5h-136v-492q0 -77 12.5 -111.5t46 -46.5t107.5 -12h150q128 0 194.5 34t96 109t45.5 220h47q-6 -55 -6 -148q0 -116 14 -262q-139 6 -469 6q-393 0 -594 -6zM284 1844 q0 19 11 38q23 34 63 34q31 0 62 -20q41 -26 98.5 -79t112 -101t133.5 -108l-14 -27q-75 38 -134.5 63.5t-148 59.5t-129.5 59q-54 36 -54 81z" />
-<glyph unicode="&#xc9;" horiz-adv-x="1247" d="M86 0v41q74 3 107.5 16t46 48t12.5 112v1016q0 77 -12.5 112t-46 48t-107.5 16v41q201 -6 594 -6q301 0 428 6q-14 -134 -14 -242q0 -80 6 -127h-47q-15 133 -37.5 198t-76 94.5t-161.5 29.5h-170q-74 0 -107.5 -12t-46 -46.5t-12.5 -111.5v-483h136q103 0 137 61.5 t42 125.5t11 83h47q-7 -101 -7 -193l1 -98q0 -104 12 -291h-47q-2 14 -11.5 99t-55.5 128.5t-129 43.5h-136v-492q0 -77 12.5 -111.5t46 -46.5t107.5 -12h150q128 0 194.5 34t96 109t45.5 220h47q-6 -55 -6 -148q0 -116 14 -262q-139 6 -469 6q-393 0 -594 -6zM502 1608 q65 50 113.5 91.5t119 106t111.5 90.5q31 20 62 20q40 0 63 -34q11 -19 11 -38q0 -45 -54 -81q-41 -25 -113.5 -53t-141 -56t-157.5 -73z" />
-<glyph unicode="&#xca;" horiz-adv-x="1247" d="M86 0v41q74 3 107.5 16t46 48t12.5 112v1016q0 77 -12.5 112t-46 48t-107.5 16v41q201 -6 594 -6q301 0 428 6q-14 -134 -14 -242q0 -80 6 -127h-47q-15 133 -37.5 198t-76 94.5t-161.5 29.5h-170q-74 0 -107.5 -12t-46 -46.5t-12.5 -111.5v-483h136q103 0 137 61.5 t42 125.5t11 83h47q-7 -101 -7 -193l1 -98q0 -104 12 -291h-47q-2 14 -11.5 99t-55.5 128.5t-129 43.5h-136v-492q0 -77 12.5 -111.5t46 -46.5t107.5 -12h150q128 0 194.5 34t96 109t45.5 220h47q-6 -55 -6 -148q0 -116 14 -262q-139 6 -469 6q-393 0 -594 -6zM226 1606 q131 45 232.5 117.5t150.5 152.5h37q48 -80 149.5 -152.5t233.5 -117.5l-11 -29q-124 26 -243 65.5t-189 77.5q-58 -38 -154.5 -77.5t-195.5 -65.5z" />
-<glyph unicode="&#xcb;" horiz-adv-x="1247" d="M86 0v41q74 3 107.5 16t46 48t12.5 112v1016q0 77 -12.5 112t-46 48t-107.5 16v41q201 -6 594 -6q301 0 428 6q-14 -134 -14 -242q0 -80 6 -127h-47q-15 133 -37.5 198t-76 94.5t-161.5 29.5h-170q-74 0 -107.5 -12t-46 -46.5t-12.5 -111.5v-483h136q103 0 137 61.5 t42 125.5t11 83h47q-7 -101 -7 -193l1 -98q0 -104 12 -291h-47q-2 14 -11.5 99t-55.5 128.5t-129 43.5h-136v-492q0 -77 12.5 -111.5t46 -46.5t107.5 -12h150q128 0 194.5 34t96 109t45.5 220h47q-6 -55 -6 -148q0 -116 14 -262q-139 6 -469 6q-393 0 -594 -6zM291 1700 q0 31 16 58.5t43.5 44t59.5 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-44 -43.5t-58.5 -16q-49 0 -84 35t-35 84zM725 1700q0 31 16 58.5t43.5 44t59.5 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-43.5 -43.5t-59 -16q-49 0 -84 35 t-35 84z" />
-<glyph unicode="&#xcc;" horiz-adv-x="694" d="M5 1844q0 19 11 38q23 34 63 34q31 0 62 -20q41 -26 98.5 -79t112 -101t133.5 -108l-14 -27q-75 38 -134.5 63.5t-148 59.5t-129.5 59q-54 36 -54 81zM86 0v41q74 3 107.5 16t46 48t12.5 112v1016q0 77 -12.5 112t-46 48t-107.5 16v41q85 -6 262 -6q166 0 260 6v-41 q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-1016q0 -77 12.5 -112t46 -48t107.5 -16v-41q-94 6 -260 6q-176 0 -262 -6z" />
-<glyph unicode="&#xcd;" horiz-adv-x="694" d="M86 0v41q74 3 107.5 16t46 48t12.5 112v1016q0 77 -12.5 112t-46 48t-107.5 16v41q85 -6 262 -6q166 0 260 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-1016q0 -77 12.5 -112t46 -48t107.5 -16v-41q-94 6 -260 6q-176 0 -262 -6zM223 1608q65 50 113.5 91.5t119 106 t111.5 90.5q31 20 62 20q40 0 63 -34q11 -19 11 -38q0 -45 -54 -81q-41 -25 -113.5 -53t-141 -56t-157.5 -73z" />
-<glyph unicode="&#xce;" horiz-adv-x="694" d="M-53 1606q131 45 232.5 117.5t150.5 152.5h37q48 -80 149.5 -152.5t233.5 -117.5l-11 -29q-124 26 -243 65.5t-189 77.5q-58 -38 -154.5 -77.5t-195.5 -65.5zM86 0v41q74 3 107.5 16t46 48t12.5 112v1016q0 77 -12.5 112t-46 48t-107.5 16v41q85 -6 262 -6q166 0 260 6 v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-1016q0 -77 12.5 -112t46 -48t107.5 -16v-41q-94 6 -260 6q-176 0 -262 -6z" />
-<glyph unicode="&#xcf;" horiz-adv-x="694" d="M12 1700q0 31 16 58.5t43.5 44t59.5 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-44 -43.5t-58.5 -16q-49 0 -84 35t-35 84zM86 0v41q74 3 107.5 16t46 48t12.5 112v1016q0 77 -12.5 112t-46 48t-107.5 16v41q85 -6 262 -6q166 0 260 6v-41 q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-1016q0 -77 12.5 -112t46 -48t107.5 -16v-41q-94 6 -260 6q-176 0 -262 -6zM446 1700q0 31 16 58.5t43.5 44t59.5 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-43.5 -43.5t-59 -16q-49 0 -84 35t-35 84z" />
-<glyph unicode="&#xd0;" horiz-adv-x="1483" d="M88 0v41q74 3 107.5 16t46 48t12.5 112v492h-166v41h166v483q0 77 -12.5 112t-46 48t-107.5 16v41q110 -7 200 -7l50 1q282 6 309 6q362 0 542.5 -181t180.5 -528q0 -223 -87.5 -390.5t-254.5 -259t-399 -91.5q-28 0 -133.5 3t-153.5 3q-168 0 -254 -6zM444 213 q0 -74 12 -110.5t44.5 -51t97.5 -14.5q218 0 342 79t174.5 230.5t50.5 386.5q0 236 -55 384.5t-179.5 222t-334.5 73.5q-64 0 -96 -14.5t-44 -51.5t-12 -110v-487h285v-41h-285v-496z" />
-<glyph unicode="&#xd1;" horiz-adv-x="1446" d="M86 0v41q71 3 105.5 20.5t47.5 57.5t13 119v995q0 77 -12.5 112t-46 48t-107.5 16v41q67 -6 190 -6q92 0 160 6l723 -1114v876q0 79 -13.5 119t-52.5 57.5t-120 20.5v41q73 -6 209 -6q122 0 190 6v-41q-71 -3 -105.5 -20.5t-47.5 -57.5t-13 -119v-1222h-47l-860 1329 v-1081q0 -79 14 -119t52.5 -57.5t119.5 -20.5v-41q-73 6 -209 6q-122 0 -190 -6zM373 1630q6 66 38 115t82 75.5t107 26.5q51 0 96.5 -20t138.5 -78.5t163 -58.5q95 0 127 114l30 -6q-6 -66 -38 -115t-81.5 -75.5t-107.5 -26.5q-51 0 -96 20.5t-138.5 79t-162.5 58.5 q-96 0 -127 -115z" />
-<glyph unicode="&#xd2;" horiz-adv-x="1518" d="M109 713q0 226 83 400t231 270t337 96q195 0 341.5 -88t227 -255.5t80.5 -398.5q0 -226 -83 -400t-231 -270t-337 -96q-195 0 -341.5 88t-227 255.5t-80.5 398.5zM313 721q0 -213 60 -375t163.5 -250t229.5 -88q131 0 230.5 91.5t153.5 255t54 374.5q0 213 -60 375 t-163 250t-229 88q-131 0 -231 -91.5t-154 -255t-54 -374.5zM413 1844q0 19 11 38q23 34 63 34q31 0 62 -20q41 -26 98.5 -79t112 -101t133.5 -108l-14 -27q-75 38 -134.5 63.5t-148 59.5t-129.5 59q-54 36 -54 81z" />
-<glyph unicode="&#xd3;" horiz-adv-x="1518" d="M109 713q0 226 83 400t231 270t337 96q195 0 341.5 -88t227 -255.5t80.5 -398.5q0 -226 -83 -400t-231 -270t-337 -96q-195 0 -341.5 88t-227 255.5t-80.5 398.5zM313 721q0 -213 60 -375t163.5 -250t229.5 -88q131 0 230.5 91.5t153.5 255t54 374.5q0 213 -60 375 t-163 250t-229 88q-131 0 -231 -91.5t-154 -255t-54 -374.5zM631 1608q65 50 113.5 91.5t119 106t111.5 90.5q31 20 62 20q40 0 63 -34q11 -19 11 -38q0 -45 -54 -81q-41 -25 -113.5 -53t-141 -56t-157.5 -73z" />
-<glyph unicode="&#xd4;" horiz-adv-x="1518" d="M109 713q0 226 83 400t231 270t337 96q195 0 341.5 -88t227 -255.5t80.5 -398.5q0 -226 -83 -400t-231 -270t-337 -96q-195 0 -341.5 88t-227 255.5t-80.5 398.5zM313 721q0 -213 60 -375t163.5 -250t229.5 -88q131 0 230.5 91.5t153.5 255t54 374.5q0 213 -60 375 t-163 250t-229 88q-131 0 -231 -91.5t-154 -255t-54 -374.5zM355 1606q131 45 232.5 117.5t150.5 152.5h37q48 -80 149.5 -152.5t233.5 -117.5l-11 -29q-124 26 -243 65.5t-189 77.5q-58 -38 -154.5 -77.5t-195.5 -65.5z" />
-<glyph unicode="&#xd5;" horiz-adv-x="1518" d="M109 713q0 226 83 400t231 270t337 96q195 0 341.5 -88t227 -255.5t80.5 -398.5q0 -226 -83 -400t-231 -270t-337 -96q-195 0 -341.5 88t-227 255.5t-80.5 398.5zM313 721q0 -213 60 -375t163.5 -250t229.5 -88q131 0 230.5 91.5t153.5 255t54 374.5q0 213 -60 375 t-163 250t-229 88q-131 0 -231 -91.5t-154 -255t-54 -374.5zM363 1630q6 66 38 115t82 75.5t107 26.5q51 0 96.5 -20t138.5 -78.5t163 -58.5q95 0 127 114l30 -6q-6 -66 -38 -115t-81.5 -75.5t-107.5 -26.5q-51 0 -96 20.5t-138.5 79t-162.5 58.5q-96 0 -127 -115z" />
-<glyph unicode="&#xd6;" horiz-adv-x="1518" d="M109 713q0 226 83 400t231 270t337 96q195 0 341.5 -88t227 -255.5t80.5 -398.5q0 -226 -83 -400t-231 -270t-337 -96q-195 0 -341.5 88t-227 255.5t-80.5 398.5zM313 721q0 -213 60 -375t163.5 -250t229.5 -88q131 0 230.5 91.5t153.5 255t54 374.5q0 213 -60 375 t-163 250t-229 88q-131 0 -231 -91.5t-154 -255t-54 -374.5zM420 1700q0 31 16 58.5t43.5 44t59.5 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-44 -43.5t-58.5 -16q-49 0 -84 35t-35 84zM854 1700q0 31 16 58.5t43.5 44t59.5 16.5q31 0 58.5 -16.5t44 -44 t16.5 -58.5q0 -32 -16.5 -59.5t-43.5 -43.5t-59 -16q-49 0 -84 35t-35 84z" />
-<glyph unicode="&#xd7;" horiz-adv-x="1044" d="M121 1085l45 45l358 -358l355 354l45 -45l-355 -352l355 -354l-45 -45l-355 354l-356 -356l-45 45l356 354z" />
-<glyph unicode="&#xd8;" horiz-adv-x="1518" d="M109 713q0 226 83 400t231 270t337 96q235 0 398 -127l159 231l39 -27l-161 -236q103 -96 158.5 -244t55.5 -339q0 -226 -83 -400t-231 -270t-337 -96q-235 0 -398 127l-167 -248l-43 29l172 252q-103 97 -158 244.5t-55 337.5zM313 721q0 -280 103 -472l657 999 q-61 93 -143.5 143.5t-177.5 50.5q-131 0 -231 -91.5t-154 -255t-54 -374.5zM446 200q61 -93 143.5 -142.5t176.5 -49.5q131 0 230.5 91.5t153.5 255t54 374.5q0 280 -103 472z" />
-<glyph unicode="&#xd9;" horiz-adv-x="1397" d="M55 1409v41q87 -6 262 -6q165 0 261 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-678q0 -164 22 -272t92.5 -174t208.5 -66q217 0 305 139t88 391v639q0 76 -17.5 117t-57 59t-111.5 21v41q74 -6 209 -6q123 0 190 6v-41q-71 -3 -105.5 -20.5t-47 -57.5t-12.5 -119 v-616q0 -147 -19.5 -252.5t-64.5 -181.5q-52 -88 -151.5 -139.5t-223.5 -51.5q-225 0 -344 111q-61 57 -93.5 120.5t-45.5 153.5t-13 234v643q0 77 -12.5 112t-46 48t-107.5 16zM378 1844q0 19 11 38q23 34 63 34q31 0 62 -20q41 -26 98.5 -79t112 -101t133.5 -108l-14 -27 q-75 38 -134.5 63.5t-148 59.5t-129.5 59q-54 36 -54 81z" />
-<glyph unicode="&#xda;" horiz-adv-x="1397" d="M55 1409v41q87 -6 262 -6q165 0 261 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-678q0 -164 22 -272t92.5 -174t208.5 -66q217 0 305 139t88 391v639q0 76 -17.5 117t-57 59t-111.5 21v41q74 -6 209 -6q123 0 190 6v-41q-71 -3 -105.5 -20.5t-47 -57.5t-12.5 -119 v-616q0 -147 -19.5 -252.5t-64.5 -181.5q-52 -88 -151.5 -139.5t-223.5 -51.5q-225 0 -344 111q-61 57 -93.5 120.5t-45.5 153.5t-13 234v643q0 77 -12.5 112t-46 48t-107.5 16zM596 1608q65 50 113.5 91.5t119 106t111.5 90.5q31 20 62 20q40 0 63 -34q11 -19 11 -38 q0 -45 -54 -81q-41 -25 -113.5 -53t-141 -56t-157.5 -73z" />
-<glyph unicode="&#xdb;" horiz-adv-x="1397" d="M55 1409v41q87 -6 262 -6q165 0 261 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-678q0 -164 22 -272t92.5 -174t208.5 -66q217 0 305 139t88 391v639q0 76 -17.5 117t-57 59t-111.5 21v41q74 -6 209 -6q123 0 190 6v-41q-71 -3 -105.5 -20.5t-47 -57.5t-12.5 -119 v-616q0 -147 -19.5 -252.5t-64.5 -181.5q-52 -88 -151.5 -139.5t-223.5 -51.5q-225 0 -344 111q-61 57 -93.5 120.5t-45.5 153.5t-13 234v643q0 77 -12.5 112t-46 48t-107.5 16zM320 1606q131 45 232.5 117.5t150.5 152.5h37q48 -80 149.5 -152.5t233.5 -117.5l-11 -29 q-124 26 -243 65.5t-189 77.5q-58 -38 -154.5 -77.5t-195.5 -65.5z" />
-<glyph unicode="&#xdc;" horiz-adv-x="1397" d="M55 1409v41q87 -6 262 -6q165 0 261 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-678q0 -164 22 -272t92.5 -174t208.5 -66q217 0 305 139t88 391v639q0 76 -17.5 117t-57 59t-111.5 21v41q74 -6 209 -6q123 0 190 6v-41q-71 -3 -105.5 -20.5t-47 -57.5t-12.5 -119 v-616q0 -147 -19.5 -252.5t-64.5 -181.5q-52 -88 -151.5 -139.5t-223.5 -51.5q-225 0 -344 111q-61 57 -93.5 120.5t-45.5 153.5t-13 234v643q0 77 -12.5 112t-46 48t-107.5 16zM385 1700q0 31 16 58.5t43.5 44t59.5 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5 q0 -32 -16.5 -59.5t-44 -43.5t-58.5 -16q-49 0 -84 35t-35 84zM819 1700q0 31 16 58.5t43.5 44t59.5 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-43.5 -43.5t-59 -16q-49 0 -84 35t-35 84z" />
-<glyph unicode="&#xdd;" horiz-adv-x="1210" d="M-6 1407v43q80 -6 180 -6q199 0 287 6v-43q-144 0 -144 -79q0 -30 21 -71l341 -653l261 520q56 113 56 176q0 58 -45 82.5t-136 26.5v41q117 -6 236 -6q92 0 153 6v-41q-41 -9 -80 -51.5t-84 -130.5l-321 -637v-373q0 -77 12.5 -112t46 -48t107.5 -16v-41q-96 6 -260 6 q-176 0 -263 -6v41q74 3 107.5 16t46 48t12.5 112v309l-415 766q-38 69 -65.5 92t-53.5 23zM498 1608q65 50 113.5 91.5t119 106t111.5 90.5q31 20 62 20q40 0 63 -34q11 -19 11 -38q0 -45 -54 -81q-41 -25 -113.5 -53t-141 -56t-157.5 -73z" />
-<glyph unicode="&#xde;" horiz-adv-x="1188" d="M86 0v41q74 3 107.5 16t46 48t12.5 112v1016q0 77 -12.5 112t-46 48t-107.5 16v41q86 -6 262 -6q166 0 260 6v-41q-74 -3 -107.5 -16t-46 -48t-12.5 -112v-91q216 3 189 3q160 0 271 -52t166.5 -142.5t55.5 -205.5q0 -116 -49.5 -220.5t-170 -173t-318.5 -68.5h-144v-66 q0 -77 12.5 -112t46 -48t107.5 -16v-41q-94 6 -260 6q-176 0 -262 -6zM442 324h123q201 0 278 110t77 299q0 188 -79.5 280.5t-260.5 92.5q-47 0 -138 -2v-780z" />
-<glyph unicode="&#xdf;" horiz-adv-x="1196" d="M43 0v43q87 0 121.5 42.5t34.5 137.5v879q0 262 107 381t296 119q175 0 269 -78t94 -215q0 -98 -59.5 -185.5t-141 -148.5t-148.5 -88q134 -31 246.5 -105t180 -183.5t67.5 -240.5q0 -116 -51 -204t-136 -135.5t-184 -47.5q-59 0 -116.5 19.5t-95.5 59.5t-38 97 q0 50 28.5 80.5t78.5 30.5q47 0 78 -27t31 -73q0 -79 -89 -107q7 -19 38 -34t69 -15q52 0 98.5 31.5t76.5 102.5t30 183q0 120 -37 232.5t-114 197t-189 119.5q-49 -30 -76 -30q-16 0 -28.5 9t-12.5 25q0 18 12 28.5t35 10.5q31 0 74 -16q101 78 144.5 174t43.5 231 q0 131 -51 201t-149 70q-78 0 -137.5 -62t-59.5 -231v-1301q-81 29 -213 29q-62 0 -127 -6z" />
-<glyph unicode="&#xe0;" horiz-adv-x="1020" d="M80 215q0 78 38 133t107 96.5t185 90.5q20 8 98 40t112.5 64t34.5 70v127q0 119 -49.5 162.5t-140.5 43.5q-145 0 -203 -73q41 -10 68.5 -43.5t27.5 -81.5q0 -52 -32.5 -81.5t-87.5 -29.5q-52 0 -81.5 35t-29.5 92q0 80 96 146q50 33 123.5 55t163.5 22q84 0 148 -20.5 t100 -56.5q47 -48 64.5 -111.5t17.5 -175.5v-569q0 -51 14.5 -74t48.5 -23q25 0 46 11t46 32l23 -35q-36 -27 -60 -42t-55 -24t-72 -9q-99 0 -137.5 49.5t-38.5 132.5q-60 -99 -144 -140.5t-171 -41.5q-71 0 -130 24.5t-94.5 76t-35.5 128.5zM224 1608q0 34 28 57 q19 15 44 15q44 0 79 -46q29 -38 65 -107.5t70.5 -134t87.5 -147.5l-23 -18q-56 59 -102.5 102.5t-118.5 107t-102 101.5q-28 37 -28 70zM260 248q0 -89 45 -134.5t119 -45.5q136 0 231 155v402q-15 -23 -50 -43t-146 -74q-59 -28 -100 -57.5t-70 -79.5t-29 -123z" />
-<glyph unicode="&#xe1;" horiz-adv-x="1020" d="M80 215q0 78 38 133t107 96.5t185 90.5q20 8 98 40t112.5 64t34.5 70v127q0 119 -49.5 162.5t-140.5 43.5q-145 0 -203 -73q41 -10 68.5 -43.5t27.5 -81.5q0 -52 -32.5 -81.5t-87.5 -29.5q-52 0 -81.5 35t-29.5 92q0 80 96 146q50 33 123.5 55t163.5 22q84 0 148 -20.5 t100 -56.5q47 -48 64.5 -111.5t17.5 -175.5v-569q0 -51 14.5 -74t48.5 -23q25 0 46 11t46 32l23 -35q-36 -27 -60 -42t-55 -24t-72 -9q-99 0 -137.5 49.5t-38.5 132.5q-60 -99 -144 -140.5t-171 -41.5q-71 0 -130 24.5t-94.5 76t-35.5 128.5zM260 248q0 -89 45 -134.5 t119 -45.5q136 0 231 155v402q-15 -23 -50 -43t-146 -74q-59 -28 -100 -57.5t-70 -79.5t-29 -123zM377 1245q44 69 75 125t75 141t73 123q35 46 78 46q25 0 45 -15q28 -23 28 -57q0 -33 -28 -70q-30 -38 -89 -89.5t-113 -100.5t-122 -121z" />
-<glyph unicode="&#xe2;" horiz-adv-x="1020" d="M80 215q0 78 38 133t107 96.5t185 90.5q20 8 98 40t112.5 64t34.5 70v127q0 119 -49.5 162.5t-140.5 43.5q-145 0 -203 -73q41 -10 68.5 -43.5t27.5 -81.5q0 -52 -32.5 -81.5t-87.5 -29.5q-52 0 -81.5 35t-29.5 92q0 80 96 146q50 33 123.5 55t163.5 22q84 0 148 -20.5 t100 -56.5q47 -48 64.5 -111.5t17.5 -175.5v-569q0 -51 14.5 -74t48.5 -23q25 0 46 11t46 32l23 -35q-36 -27 -60 -42t-55 -24t-72 -9q-99 0 -137.5 49.5t-38.5 132.5q-60 -99 -144 -140.5t-171 -41.5q-71 0 -130 24.5t-94.5 76t-35.5 128.5zM143 1290q117 58 208.5 153 t133.5 199h37q42 -104 133.5 -199t208.5 -153l-16 -28q-111 38 -216 93.5t-169 110.5q-52 -55 -134.5 -110.5t-168.5 -93.5zM260 248q0 -89 45 -134.5t119 -45.5q136 0 231 155v402q-15 -23 -50 -43t-146 -74q-59 -28 -100 -57.5t-70 -79.5t-29 -123z" />
-<glyph unicode="&#xe3;" horiz-adv-x="1020" d="M80 215q0 78 38 133t107 96.5t185 90.5q20 8 98 40t112.5 64t34.5 70v127q0 119 -49.5 162.5t-140.5 43.5q-145 0 -203 -73q41 -10 68.5 -43.5t27.5 -81.5q0 -52 -32.5 -81.5t-87.5 -29.5q-52 0 -81.5 35t-29.5 92q0 80 96 146q50 33 123.5 55t163.5 22q84 0 148 -20.5 t100 -56.5q47 -48 64.5 -111.5t17.5 -175.5v-569q0 -51 14.5 -74t48.5 -23q25 0 46 11t46 32l23 -35q-36 -27 -60 -42t-55 -24t-72 -9q-99 0 -137.5 49.5t-38.5 132.5q-60 -99 -144 -140.5t-171 -41.5q-71 0 -130 24.5t-94.5 76t-35.5 128.5zM109 1362q31 108 95.5 159.5 t148.5 51.5q51 0 88 -18.5t101 -67.5t120 -49q93 0 158 108l29 -14q-31 -108 -95.5 -159.5t-146.5 -51.5q-53 0 -90.5 19t-101.5 68.5t-119 49.5q-91 0 -158 -110zM260 248q0 -89 45 -134.5t119 -45.5q136 0 231 155v402q-15 -23 -50 -43t-146 -74q-59 -28 -100 -57.5 t-70 -79.5t-29 -123z" />
-<glyph unicode="&#xe4;" horiz-adv-x="1020" d="M80 215q0 78 38 133t107 96.5t185 90.5q20 8 98 40t112.5 64t34.5 70v127q0 119 -49.5 162.5t-140.5 43.5q-145 0 -203 -73q41 -10 68.5 -43.5t27.5 -81.5q0 -52 -32.5 -81.5t-87.5 -29.5q-52 0 -81.5 35t-29.5 92q0 80 96 146q50 33 123.5 55t163.5 22q84 0 148 -20.5 t100 -56.5q47 -48 64.5 -111.5t17.5 -175.5v-569q0 -51 14.5 -74t48.5 -23q25 0 46 11t46 32l23 -35q-36 -27 -60 -42t-55 -24t-72 -9q-99 0 -137.5 49.5t-38.5 132.5q-60 -99 -144 -140.5t-171 -41.5q-71 0 -130 24.5t-94.5 76t-35.5 128.5zM170 1403q0 31 16 58.5t43.5 44 t59.5 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-43.5 -43.5t-59 -16q-49 0 -84 35t-35 84zM260 248q0 -89 45 -134.5t119 -45.5q136 0 231 155v402q-15 -23 -50 -43t-146 -74q-59 -28 -100 -57.5t-70 -79.5t-29 -123zM605 1403q0 31 16 58.5t43 44 t59 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-43.5 -43.5t-59 -16q-49 0 -83.5 35t-34.5 84z" />
-<glyph unicode="&#xe5;" horiz-adv-x="1020" d="M80 215q0 78 38 133t107 96.5t185 90.5q20 8 98 40t112.5 64t34.5 70v127q0 119 -49.5 162.5t-140.5 43.5q-145 0 -203 -73q41 -10 68.5 -43.5t27.5 -81.5q0 -52 -32.5 -81.5t-87.5 -29.5q-52 0 -81.5 35t-29.5 92q0 80 96 146q50 33 123.5 55t163.5 22q84 0 148 -20.5 t100 -56.5q47 -48 64.5 -111.5t17.5 -175.5v-569q0 -51 14.5 -74t48.5 -23q25 0 46 11t46 32l23 -35q-36 -27 -60 -42t-55 -24t-72 -9q-99 0 -137.5 49.5t-38.5 132.5q-60 -99 -144 -140.5t-171 -41.5q-71 0 -130 24.5t-94.5 76t-35.5 128.5zM260 248q0 -89 45 -134.5 t119 -45.5q136 0 231 155v402q-15 -23 -50 -43t-146 -74q-59 -28 -100 -57.5t-70 -79.5t-29 -123zM308 1434q0 55 27 97.5t72 65.5t97 23q54 0 99.5 -23t72.5 -65.5t27 -97.5q0 -57 -27 -100t-72.5 -66t-99.5 -23q-53 0 -97.5 23t-71.5 66t-27 100zM365 1432 q0 -46 20.5 -78.5t52.5 -49t66 -16.5q36 0 68.5 16.5t53 49t20.5 78.5q0 45 -20.5 78t-53.5 50t-68 17q-34 0 -66 -17t-52.5 -50t-20.5 -78z" />
-<glyph unicode="&#xe6;" horiz-adv-x="1520" d="M84 197q0 83 38 142.5t105.5 102.5t175.5 90q21 9 100.5 43.5t112.5 65.5t33 68v127q0 206 -200 206q-57 0 -111 -16.5t-86 -56.5q40 -9 63 -36t23 -69q0 -50 -32.5 -80t-80.5 -30q-47 0 -77.5 30.5t-30.5 77.5q0 82 96 148q107 73 281 73q102 0 173.5 -29.5 t112.5 -100.5q107 130 289 130q174 0 268.5 -111.5t94.5 -338.5h-596q-7 -51 -7 -131q0 -135 40.5 -236t107 -155t141.5 -54q85 0 150 47.5t110 157.5l41 -16q-22 -72 -68.5 -134.5t-116.5 -101.5t-157 -39q-140 0 -236.5 67.5t-143.5 194.5q-115 -262 -351 -262 q-69 0 -128.5 23.5t-96.5 74t-37 128.5zM264 231q0 -94 46 -136t114 -42q142 0 225 170v402q-36 -42 -166 -105q-107 -52 -163 -118.5t-56 -170.5zM832 672h403q3 103 -15.5 187.5t-59 134.5t-99.5 50q-58 0 -106 -40t-80.5 -123.5t-42.5 -208.5z" />
-<glyph unicode="&#xe7;" horiz-adv-x="995" d="M94 514q0 166 60.5 295.5t169.5 201.5t247 72t238 -65q96 -65 96 -158q0 -54 -30.5 -84.5t-77.5 -30.5q-48 0 -80.5 27.5t-32.5 75.5q0 44 24.5 73.5t61.5 39.5q-20 37 -73 61.5t-111 24.5q-75 0 -141 -48t-109 -160t-43 -294q0 -255 82 -370.5t213 -115.5q87 0 166.5 51 t130.5 160l39 -14q-23 -73 -71 -137.5t-125.5 -106t-180.5 -41.5q-128 0 -231 66t-162.5 189t-59.5 288zM333 -362l9 36q42 -6 77 -6q74 0 129.5 21.5t55.5 70.5q0 58 -86 58q-59 0 -101 -15l70 209h55l-53 -159q61 14 121 14q58 0 91.5 -25.5t33.5 -70.5q0 -54 -35.5 -89 t-88.5 -51t-108 -16q-105 0 -170 23z" />
-<glyph unicode="&#xe8;" horiz-adv-x="1036" d="M94 502q0 178 57 309t161.5 201.5t244.5 70.5q184 0 283.5 -111.5t99.5 -338.5h-640q-7 -53 -7 -131q0 -135 44.5 -236t116.5 -155t152 -54q206 0 301 205l41 -16q-24 -72 -76.5 -134.5t-131 -101.5t-175.5 -39q-146 0 -252.5 66.5t-162.5 187t-56 277.5zM275 1608 q0 34 28 57q19 15 44 15q44 0 79 -46q29 -38 65 -107.5t70.5 -134t87.5 -147.5l-23 -18q-56 59 -102.5 102.5t-118.5 107t-102 101.5q-28 37 -28 70zM297 672h446q4 102 -17 187t-66 135t-111 50q-63 0 -116 -40.5t-89.5 -124t-46.5 -207.5z" />
-<glyph unicode="&#xe9;" horiz-adv-x="1036" d="M94 502q0 178 57 309t161.5 201.5t244.5 70.5q184 0 283.5 -111.5t99.5 -338.5h-640q-7 -53 -7 -131q0 -135 44.5 -236t116.5 -155t152 -54q206 0 301 205l41 -16q-24 -72 -76.5 -134.5t-131 -101.5t-175.5 -39q-146 0 -252.5 66.5t-162.5 187t-56 277.5zM297 672h446 q4 102 -17 187t-66 135t-111 50q-63 0 -116 -40.5t-89.5 -124t-46.5 -207.5zM428 1245q44 69 75 125t75 141t73 123q35 46 78 46q25 0 45 -15q28 -23 28 -57q0 -33 -28 -70q-30 -38 -89 -89.5t-113 -100.5t-122 -121z" />
-<glyph unicode="&#xea;" horiz-adv-x="1036" d="M94 502q0 178 57 309t161.5 201.5t244.5 70.5q184 0 283.5 -111.5t99.5 -338.5h-640q-7 -53 -7 -131q0 -135 44.5 -236t116.5 -155t152 -54q206 0 301 205l41 -16q-24 -72 -76.5 -134.5t-131 -101.5t-175.5 -39q-146 0 -252.5 66.5t-162.5 187t-56 277.5zM194 1290 q117 58 208.5 153t133.5 199h37q42 -104 133.5 -199t208.5 -153l-16 -28q-111 38 -216 93.5t-169 110.5q-52 -55 -134.5 -110.5t-168.5 -93.5zM297 672h446q4 102 -17 187t-66 135t-111 50q-63 0 -116 -40.5t-89.5 -124t-46.5 -207.5z" />
-<glyph unicode="&#xeb;" horiz-adv-x="1036" d="M94 502q0 178 57 309t161.5 201.5t244.5 70.5q184 0 283.5 -111.5t99.5 -338.5h-640q-7 -53 -7 -131q0 -135 44.5 -236t116.5 -155t152 -54q206 0 301 205l41 -16q-24 -72 -76.5 -134.5t-131 -101.5t-175.5 -39q-146 0 -252.5 66.5t-162.5 187t-56 277.5zM221 1403 q0 31 16 58.5t43.5 44t59.5 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-43.5 -43.5t-59 -16q-49 0 -84 35t-35 84zM297 672h446q4 102 -17 187t-66 135t-111 50q-63 0 -116 -40.5t-89.5 -124t-46.5 -207.5zM656 1403q0 31 16 58.5t43 44t59 16.5 q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-43.5 -43.5t-59 -16q-49 0 -83.5 35t-34.5 84z" />
-<glyph unicode="&#xec;" horiz-adv-x="600" d="M9 1608q0 34 28 57q19 15 44 15q44 0 79 -46q29 -38 65 -107.5t70.5 -134t87.5 -147.5l-23 -18q-56 59 -102.5 102.5t-118.5 107t-102 101.5q-28 37 -28 70zM59 0v43q58 0 91.5 13t49 45t15.5 89v641q0 95 -34.5 138t-121.5 43v43q64 -6 127 -6q130 0 213 28v-887 q0 -57 15.5 -89t49 -45t91.5 -13v-43q-188 8 -248 8t-248 -8z" />
-<glyph unicode="&#xed;" horiz-adv-x="600" d="M59 0v43q58 0 91.5 13t49 45t15.5 89v641q0 95 -34.5 138t-121.5 43v43q64 -6 127 -6q130 0 213 28v-887q0 -57 15.5 -89t49 -45t91.5 -13v-43q-188 8 -248 8t-248 -8zM162 1245q44 69 75 125t75 141t73 123q35 46 78 46q25 0 45 -15q28 -23 28 -57q0 -33 -28 -70 q-30 -38 -89 -89.5t-113 -100.5t-122 -121z" />
-<glyph unicode="&#xee;" horiz-adv-x="600" d="M-72 1290q117 58 208.5 153t133.5 199h37q42 -104 133.5 -199t208.5 -153l-16 -28q-111 38 -216 93.5t-169 110.5q-52 -55 -134.5 -110.5t-168.5 -93.5zM59 0v43q58 0 91.5 13t49 45t15.5 89v641q0 95 -34.5 138t-121.5 43v43q64 -6 127 -6q130 0 213 28v-887 q0 -57 15.5 -89t49 -45t91.5 -13v-43q-188 8 -248 8t-248 -8z" />
-<glyph unicode="&#xef;" horiz-adv-x="600" d="M-45 1403q0 31 16 58.5t43.5 44t59.5 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-43.5 -43.5t-59 -16q-49 0 -84 35t-35 84zM59 0v43q58 0 91.5 13t49 45t15.5 89v641q0 95 -34.5 138t-121.5 43v43q64 -6 127 -6q130 0 213 28v-887q0 -57 15.5 -89 t49 -45t91.5 -13v-43q-188 8 -248 8t-248 -8zM390 1403q0 31 16 58.5t43 44t59 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-43.5 -43.5t-59 -16q-49 0 -83.5 35t-34.5 84z" />
-<glyph unicode="&#xf0;" horiz-adv-x="1135" d="M94 522q0 141 52 270t153 210t242 81q166 0 245 -106q-59 243 -218 396l-369 -181l-19 37l356 173q-100 86 -270 165l17 35q183 -72 319 -168l289 141l18 -37l-270 -131q381 -289 381 -789q0 -211 -65 -357t-171 -218t-231 -72q-136 0 -239.5 62.5t-161.5 186t-58 302.5z M293 518q0 -176 33.5 -289t90 -165t126.5 -52q123 0 202.5 140t79.5 466q0 68 -4 131q-20 168 -93 229.5t-173 61.5q-119 0 -190.5 -124t-71.5 -398z" />
-<glyph unicode="&#xf1;" horiz-adv-x="1223" d="M59 0v43q58 0 91.5 13t49 45t15.5 89v641q0 95 -34.5 138t-121.5 43v43q64 -6 127 -6q130 0 213 28v-241q51 130 142.5 188.5t206.5 58.5q143 0 217 -77q38 -42 54.5 -103.5t16.5 -165.5v-547q0 -57 15.5 -89t49 -45t91.5 -13v-43q-188 8 -246 8q-57 0 -229 -8v43 q51 0 79.5 13t42 45t13.5 89v592q0 74 -11.5 124t-48 81t-106.5 31q-84 0 -149.5 -49t-101.5 -134.5t-36 -189.5v-455q0 -57 13.5 -89t42.5 -45t80 -13v-43q-172 8 -230 8t-246 -8zM232 1362q31 108 95.5 159.5t148.5 51.5q51 0 88 -18.5t101 -67.5t120 -49q93 0 158 108 l29 -14q-31 -108 -95.5 -159.5t-146.5 -51.5q-53 0 -90.5 19t-101.5 68.5t-119 49.5q-91 0 -158 -110z" />
-<glyph unicode="&#xf2;" horiz-adv-x="1122" d="M96 526q0 190 60.5 314.5t165 183.5t239.5 59t239.5 -59t165 -183.5t60.5 -314.5t-60.5 -314t-165 -182.5t-239.5 -58.5t-239.5 58.5t-165 182.5t-60.5 314zM287 1608q0 34 28 57q19 15 44 15q44 0 79 -46q29 -38 65 -107.5t70.5 -134t87.5 -147.5l-23 -18 q-56 59 -102.5 102.5t-118.5 107t-102 101.5q-28 37 -28 70zM295 526q0 -263 71.5 -388.5t194.5 -125.5t194.5 125.5t71.5 388.5q0 264 -71.5 390t-194.5 126t-194.5 -126t-71.5 -390z" />
-<glyph unicode="&#xf3;" horiz-adv-x="1122" d="M96 526q0 190 60.5 314.5t165 183.5t239.5 59t239.5 -59t165 -183.5t60.5 -314.5t-60.5 -314t-165 -182.5t-239.5 -58.5t-239.5 58.5t-165 182.5t-60.5 314zM295 526q0 -263 71.5 -388.5t194.5 -125.5t194.5 125.5t71.5 388.5q0 264 -71.5 390t-194.5 126t-194.5 -126 t-71.5 -390zM440 1245q44 69 75 125t75 141t73 123q35 46 78 46q25 0 45 -15q28 -23 28 -57q0 -33 -28 -70q-30 -38 -89 -89.5t-113 -100.5t-122 -121z" />
-<glyph unicode="&#xf4;" horiz-adv-x="1122" d="M96 526q0 190 60.5 314.5t165 183.5t239.5 59t239.5 -59t165 -183.5t60.5 -314.5t-60.5 -314t-165 -182.5t-239.5 -58.5t-239.5 58.5t-165 182.5t-60.5 314zM206 1290q117 58 208.5 153t133.5 199h37q42 -104 133.5 -199t208.5 -153l-16 -28q-111 38 -216 93.5 t-169 110.5q-52 -55 -134.5 -110.5t-168.5 -93.5zM295 526q0 -263 71.5 -388.5t194.5 -125.5t194.5 125.5t71.5 388.5q0 264 -71.5 390t-194.5 126t-194.5 -126t-71.5 -390z" />
-<glyph unicode="&#xf5;" horiz-adv-x="1122" d="M96 526q0 190 60.5 314.5t165 183.5t239.5 59t239.5 -59t165 -183.5t60.5 -314.5t-60.5 -314t-165 -182.5t-239.5 -58.5t-239.5 58.5t-165 182.5t-60.5 314zM172 1362q31 108 95.5 159.5t148.5 51.5q51 0 88 -18.5t101 -67.5t120 -49q93 0 158 108l29 -14 q-31 -108 -95.5 -159.5t-146.5 -51.5q-53 0 -90.5 19t-101.5 68.5t-119 49.5q-91 0 -158 -110zM295 526q0 -263 71.5 -388.5t194.5 -125.5t194.5 125.5t71.5 388.5q0 264 -71.5 390t-194.5 126t-194.5 -126t-71.5 -390z" />
-<glyph unicode="&#xf6;" horiz-adv-x="1122" d="M96 526q0 190 60.5 314.5t165 183.5t239.5 59t239.5 -59t165 -183.5t60.5 -314.5t-60.5 -314t-165 -182.5t-239.5 -58.5t-239.5 58.5t-165 182.5t-60.5 314zM233 1403q0 31 16 58.5t43.5 44t59.5 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-43.5 -43.5 t-59 -16q-49 0 -84 35t-35 84zM295 526q0 -263 71.5 -388.5t194.5 -125.5t194.5 125.5t71.5 388.5q0 264 -71.5 390t-194.5 126t-194.5 -126t-71.5 -390zM668 1403q0 31 16 58.5t43 44t59 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-43.5 -43.5t-59 -16 q-49 0 -83.5 35t-34.5 84z" />
-<glyph unicode="&#xf7;" horiz-adv-x="1329" d="M150 696v62h1026v-62h-1026zM551 432q0 47 33.5 80t79.5 33q47 0 80.5 -33t33.5 -80t-33.5 -81t-80.5 -34q-46 0 -79.5 34t-33.5 81zM551 1022q0 46 33.5 79.5t79.5 33.5q47 0 80.5 -33.5t33.5 -79.5q0 -48 -33 -80.5t-81 -32.5q-47 0 -80 32.5t-33 80.5z" />
-<glyph unicode="&#xf8;" horiz-adv-x="1120" d="M90 -121l148 215q-142 145 -142 432q0 190 60.5 314.5t165 183.5t239.5 59q174 0 289 -93l145 212l39 -26l-148 -219q140 -145 140 -431q0 -190 -60.5 -314t-165 -182.5t-239.5 -58.5q-170 0 -285 89l-143 -210zM295 526q0 -192 41 -315l431 683q-68 148 -206 148 q-123 0 -194.5 -126t-71.5 -390zM359 153q68 -141 202 -141q123 0 194.5 125.5t71.5 388.5q0 189 -39 311z" />
-<glyph unicode="&#xf9;" horiz-adv-x="1190" d="M33 1012v43q64 -6 127 -6q129 0 213 28v-805q0 -78 9 -126t43 -78.5t103 -30.5q79 0 142 49t99 134t36 188v423q0 95 -34.5 138t-121.5 43v43q64 -6 127 -6q130 0 213 28v-856q0 -95 34.5 -137.5t121.5 -42.5v-43q-64 6 -127 6q-132 0 -213 -29v242q-50 -126 -139.5 -186 t-196.5 -60q-138 0 -213 78q-37 40 -52.5 104t-15.5 164v514q0 95 -34 138t-121 43zM293 1608q0 34 28 57q19 15 44 15q44 0 79 -46q29 -38 65 -107.5t70.5 -134t87.5 -147.5l-23 -18q-56 59 -102.5 102.5t-118.5 107t-102 101.5q-28 37 -28 70z" />
-<glyph unicode="&#xfa;" horiz-adv-x="1190" d="M33 1012v43q64 -6 127 -6q129 0 213 28v-805q0 -78 9 -126t43 -78.5t103 -30.5q79 0 142 49t99 134t36 188v423q0 95 -34.5 138t-121.5 43v43q64 -6 127 -6q130 0 213 28v-856q0 -95 34.5 -137.5t121.5 -42.5v-43q-64 6 -127 6q-132 0 -213 -29v242q-50 -126 -139.5 -186 t-196.5 -60q-138 0 -213 78q-37 40 -52.5 104t-15.5 164v514q0 95 -34 138t-121 43zM446 1245q44 69 75 125t75 141t73 123q35 46 78 46q25 0 45 -15q28 -23 28 -57q0 -33 -28 -70q-30 -38 -89 -89.5t-113 -100.5t-122 -121z" />
-<glyph unicode="&#xfb;" horiz-adv-x="1190" d="M33 1012v43q64 -6 127 -6q129 0 213 28v-805q0 -78 9 -126t43 -78.5t103 -30.5q79 0 142 49t99 134t36 188v423q0 95 -34.5 138t-121.5 43v43q64 -6 127 -6q130 0 213 28v-856q0 -95 34.5 -137.5t121.5 -42.5v-43q-64 6 -127 6q-132 0 -213 -29v242q-50 -126 -139.5 -186 t-196.5 -60q-138 0 -213 78q-37 40 -52.5 104t-15.5 164v514q0 95 -34 138t-121 43zM212 1290q117 58 208.5 153t133.5 199h37q42 -104 133.5 -199t208.5 -153l-16 -28q-111 38 -216 93.5t-169 110.5q-52 -55 -134.5 -110.5t-168.5 -93.5z" />
-<glyph unicode="&#xfc;" horiz-adv-x="1190" d="M33 1012v43q64 -6 127 -6q129 0 213 28v-805q0 -78 9 -126t43 -78.5t103 -30.5q79 0 142 49t99 134t36 188v423q0 95 -34.5 138t-121.5 43v43q64 -6 127 -6q130 0 213 28v-856q0 -95 34.5 -137.5t121.5 -42.5v-43q-64 6 -127 6q-132 0 -213 -29v242q-50 -126 -139.5 -186 t-196.5 -60q-138 0 -213 78q-37 40 -52.5 104t-15.5 164v514q0 95 -34 138t-121 43zM239 1403q0 31 16 58.5t43.5 44t59.5 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-43.5 -43.5t-59 -16q-49 0 -84 35t-35 84zM674 1403q0 31 16 58.5t43 44t59 16.5 q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-43.5 -43.5t-59 -16q-49 0 -83.5 35t-34.5 84z" />
-<glyph unicode="&#xfd;" horiz-adv-x="1032" d="M-8 1012v43q96 -13 201 -13q88 0 266 13v-43q-50 0 -78 -3.5t-46.5 -19t-18.5 -48.5q0 -37 26 -101l247 -612l226 593q22 60 22 94q0 48 -36.5 71t-116.5 28v41q108 -6 172 -6q91 0 156 6v-41q-41 -5 -73 -37t-60 -107l-336 -880l-70 -178q-39 -101 -88 -144 q-58 -53 -160 -53q-61 0 -100 32.5t-39 90.5q0 49 29 78.5t80 29.5q45 0 74.5 -25t29.5 -71q0 -61 -55 -92q4 -2 12 -2q113 0 174 160l73 187l-372 894q-35 71 -69.5 93t-69.5 22zM393 1245q44 69 75 125t75 141t73 123q35 46 78 46q25 0 45 -15q28 -23 28 -57 q0 -33 -28 -70q-30 -38 -89 -89.5t-113 -100.5t-122 -121z" />
-<glyph unicode="&#xfe;" horiz-adv-x="1145" d="M0 1538v43q65 -6 127 -6q132 0 213 29v-743q46 106 132 164t196 58q109 0 195.5 -59t136 -174t49.5 -275q0 -157 -50 -294.5t-155.5 -223.5t-263.5 -86q-78 0 -141.5 30.5t-98.5 80.5v-262q0 -83 49 -115.5t148 -32.5v-43q-26 1 -117 5t-178 4q-65 0 -134.5 -4t-87.5 -5 v43q51 0 80 11.5t42.5 39t13.5 76.5v1559q0 95 -34.5 137.5t-121.5 42.5zM340 150q30 -61 84.5 -96.5t132.5 -35.5q293 0 293 529q0 475 -238 475q-93 0 -166.5 -66.5t-105.5 -192.5v-613z" />
-<glyph unicode="&#xff;" horiz-adv-x="1032" d="M-8 1012v43q96 -13 201 -13q88 0 266 13v-43q-50 0 -78 -3.5t-46.5 -19t-18.5 -48.5q0 -37 26 -101l247 -612l226 593q22 60 22 94q0 48 -36.5 71t-116.5 28v41q108 -6 172 -6q91 0 156 6v-41q-41 -5 -73 -37t-60 -107l-336 -880l-70 -178q-39 -101 -88 -144 q-58 -53 -160 -53q-61 0 -100 32.5t-39 90.5q0 49 29 78.5t80 29.5q45 0 74.5 -25t29.5 -71q0 -61 -55 -92q4 -2 12 -2q113 0 174 160l73 187l-372 894q-35 71 -69.5 93t-69.5 22zM186 1403q0 31 16 58.5t43.5 44t59.5 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5 q0 -32 -16.5 -59.5t-43.5 -43.5t-59 -16q-49 0 -84 35t-35 84zM621 1403q0 31 16 58.5t43 44t59 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-43.5 -43.5t-59 -16q-49 0 -83.5 35t-34.5 84z" />
-<glyph unicode="&#x152;" horiz-adv-x="1901" d="M109 713q0 226 83 400t231 270t337 96q95 0 180 -31q164 -4 434 -4q273 0 387 6q-14 -134 -14 -242q0 -80 6 -127h-47q-15 133 -37.5 198t-75.5 94.5t-161 29.5h-68q-74 0 -107.5 -12t-46 -46.5t-12.5 -111.5v-483h88q102 0 136.5 52t43 106t11.5 71h47q-7 -83 -7 -159 l1 -91q0 -88 12 -250h-47q-2 13 -12 85t-56 108.5t-129 36.5h-88v-492q0 -77 12.5 -111.5t46 -46.5t107.5 -12h47q128 0 194.5 34t96 109t45.5 220h47q-6 -55 -6 -148q0 -116 14 -262q-127 6 -428 6q-287 0 -448 -4q-84 -31 -168 -31q-195 0 -341.5 88t-227 255.5 t-80.5 398.5zM313 721q0 -213 60 -375t163.5 -250t229.5 -88q57 0 113 22.5t92.5 69.5t36.5 117v1016q0 106 -71.5 157.5t-184.5 51.5q-131 0 -231 -91.5t-154 -255t-54 -374.5z" />
-<glyph unicode="&#x153;" horiz-adv-x="1710" d="M98 526q0 190 58 314t158 182.5t229 58.5q117 0 208.5 -59.5t141.5 -181.5q54 117 146 180t212 63q175 0 269 -111.5t94 -338.5h-620q-7 -53 -7 -131q0 -135 44.5 -236t116.5 -155t152 -54q92 0 162 47.5t119 157.5l41 -16q-23 -72 -72.5 -134.5t-124 -101.5t-165.5 -39 q-128 0 -222.5 61t-147.5 172q-51 -118 -141.5 -175.5t-205.5 -57.5q-129 0 -229 58.5t-158 183t-58 313.5zM297 526q0 -263 66 -388.5t180 -125.5q113 0 179 125.5t66 388.5t-66 388.5t-179 125.5q-114 0 -180 -125t-66 -389zM991 672h426q3 103 -15.5 187.5t-59 134.5 t-99.5 50q-63 0 -116 -40t-89 -123.5t-47 -208.5z" />
-<glyph unicode="&#x178;" horiz-adv-x="1210" d="M-6 1407v43q80 -6 180 -6q199 0 287 6v-43q-144 0 -144 -79q0 -30 21 -71l341 -653l261 520q56 113 56 176q0 58 -45 82.5t-136 26.5v41q117 -6 236 -6q92 0 153 6v-41q-41 -9 -80 -51.5t-84 -130.5l-321 -637v-373q0 -77 12.5 -112t46 -48t107.5 -16v-41q-96 6 -260 6 q-176 0 -263 -6v41q74 3 107.5 16t46 48t12.5 112v309l-415 766q-38 69 -65.5 92t-53.5 23zM287 1700q0 31 16 58.5t43.5 44t59.5 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-44 -43.5t-58.5 -16q-49 0 -84 35t-35 84zM721 1700q0 31 16 58.5t43.5 44 t59.5 16.5q31 0 58.5 -16.5t44 -44t16.5 -58.5q0 -32 -16.5 -59.5t-43.5 -43.5t-59 -16q-49 0 -84 35t-35 84z" />
-<glyph unicode="&#x2c6;" horiz-adv-x="823" d="M51 1290q117 58 208.5 153t133.5 199h37q42 -104 133.5 -199t208.5 -153l-16 -28q-111 38 -216 93.5t-169 110.5q-52 -55 -134.5 -110.5t-168.5 -93.5z" />
-<glyph unicode="&#x2dc;" horiz-adv-x="842" d="M51 1362q31 108 95.5 159.5t148.5 51.5q51 0 88 -18.5t101 -67.5t120 -49q93 0 158 108l29 -14q-31 -108 -95.5 -159.5t-146.5 -51.5q-53 0 -90.5 19t-101.5 68.5t-119 49.5q-91 0 -158 -110z" />
-<glyph unicode="&#x2000;" horiz-adv-x="958" />
-<glyph unicode="&#x2001;" horiz-adv-x="1916" />
-<glyph unicode="&#x2002;" horiz-adv-x="958" />
-<glyph unicode="&#x2003;" horiz-adv-x="1916" />
-<glyph unicode="&#x2004;" horiz-adv-x="638" />
-<glyph unicode="&#x2005;" horiz-adv-x="479" />
-<glyph unicode="&#x2006;" horiz-adv-x="319" />
-<glyph unicode="&#x2007;" horiz-adv-x="319" />
-<glyph unicode="&#x2008;" horiz-adv-x="239" />
-<glyph unicode="&#x2009;" horiz-adv-x="383" />
-<glyph unicode="&#x200a;" horiz-adv-x="106" />
-<glyph unicode="&#x2010;" horiz-adv-x="1022" d="M141 492v118h740v-118h-740z" />
-<glyph unicode="&#x2011;" horiz-adv-x="1022" d="M141 492v118h740v-118h-740z" />
-<glyph unicode="&#x2012;" horiz-adv-x="1022" d="M141 492v118h740v-118h-740z" />
-<glyph unicode="&#x2013;" horiz-adv-x="1169" d="M121 510v82h928v-82h-928z" />
-<glyph unicode="&#x2014;" horiz-adv-x="1765" d="M121 510v82h1524v-82h-1524z" />
-<glyph unicode="&#x2018;" horiz-adv-x="508" d="M112 1163q0 103 52.5 184.5t158.5 131.5l19 -37q-64 -27 -110 -84.5t-46 -116.5q0 -25 6 -43q35 27 76 27q56 0 93.5 -35.5t37.5 -95.5q0 -56 -38 -93.5t-93 -37.5q-79 0 -121 65q-35 54 -35 135z" />
-<glyph unicode="&#x2019;" horiz-adv-x="502" d="M111 1347q0 56 38 93.5t93 37.5q79 0 121 -65q35 -54 35 -135q0 -103 -52.5 -184.5t-158.5 -131.5l-19 37q64 27 110 84.5t46 116.5q0 25 -6 43q-35 -27 -76 -27q-56 0 -93.5 35.5t-37.5 95.5z" />
-<glyph unicode="&#x201a;" horiz-adv-x="535" d="M127 102q0 56 38 93.5t93 37.5q79 0 121 -65q35 -54 35 -135q0 -103 -52.5 -184.5t-158.5 -131.5l-19 37q64 27 110 84.5t46 116.5q0 25 -6 43q-35 -27 -76 -27q-56 0 -93.5 35.5t-37.5 95.5z" />
-<glyph unicode="&#x201c;" horiz-adv-x="856" d="M112 1163q0 103 52.5 184.5t158.5 131.5l19 -37q-64 -27 -110 -84.5t-46 -116.5q0 -25 6 -43q34 27 76 27q55 0 93 -35.5t38 -95.5q0 -37 -18 -67t-48 -47t-65 -17q-79 0 -121 65q-35 54 -35 135zM460 1163q0 103 52.5 184.5t158.5 131.5l19 -37q-64 -27 -110 -84.5 t-46 -116.5q0 -25 6 -43q35 27 76 27q56 0 93.5 -35.5t37.5 -95.5q0 -56 -38 -93.5t-93 -37.5q-79 0 -121 65q-35 54 -35 135z" />
-<glyph unicode="&#x201d;" horiz-adv-x="850" d="M111 1347q0 56 38 93.5t93 37.5q79 0 121 -65q35 -54 35 -135q0 -103 -52.5 -184.5t-158.5 -131.5l-19 37q64 27 110 84.5t46 116.5q0 25 -6 43q-35 -27 -76 -27q-56 0 -93.5 35.5t-37.5 95.5zM459 1347q0 37 18 67t48 47t65 17q79 0 121 -65q35 -54 35 -135 q0 -103 -52.5 -184.5t-158.5 -131.5l-19 37q64 27 110 84.5t46 116.5q0 25 -6 43q-34 -27 -76 -27q-55 0 -93 35.5t-38 95.5z" />
-<glyph unicode="&#x201e;" horiz-adv-x="883" d="M127 102q0 56 38 93.5t93 37.5q79 0 121 -65q35 -54 35 -135q0 -103 -52.5 -184.5t-158.5 -131.5l-19 37q64 27 110 84.5t46 116.5q0 25 -6 43q-35 -27 -76 -27q-56 0 -93.5 35.5t-37.5 95.5zM475 102q0 37 18 67t48 47t65 17q79 0 121 -65q35 -54 35 -135 q0 -103 -52.5 -184.5t-158.5 -131.5l-19 37q64 27 110 84.5t46 116.5q0 25 -6 43q-34 -27 -76 -27q-55 0 -93 35.5t-38 95.5z" />
-<glyph unicode="&#x2022;" horiz-adv-x="903" d="M160 551q0 80 39 147t105.5 106.5t146.5 39.5q79 0 146 -39.5t106.5 -106.5t39.5 -147t-39.5 -146.5t-106.5 -105.5t-146 -39q-80 0 -146.5 39t-105.5 105.5t-39 146.5z" />
-<glyph unicode="&#x2026;" horiz-adv-x="1665" d="M127 102q0 35 17.5 65.5t48 48t65.5 17.5t65.5 -17.5t48 -48t17.5 -65.5t-17.5 -65t-48 -48t-65.5 -18t-65.5 18t-48 48t-17.5 65zM702 102q0 35 17.5 65.5t48 48t65.5 17.5t65.5 -17.5t48 -48t17.5 -65.5t-17.5 -65t-48 -48t-65.5 -18t-65.5 18t-48 48t-17.5 65z M1276 102q0 35 17.5 65.5t48 48t65.5 17.5t65.5 -17.5t48 -48t17.5 -65.5t-17.5 -65t-48 -48t-65.5 -18t-65.5 18t-48 48t-17.5 65z" />
-<glyph unicode="&#x202f;" horiz-adv-x="383" />
-<glyph unicode="&#x2039;" horiz-adv-x="670" d="M66 526v2q158 88 270.5 223.5t200.5 331.5l34 -14q-71 -191 -155 -313.5t-197 -220.5q110 -96 194.5 -225.5t157.5 -323.5l-34 -15q-88 196 -200.5 332t-270.5 223z" />
-<glyph unicode="&#x203a;" horiz-adv-x="670" d="M98 -14q72 191 155.5 313t197.5 221q-110 96 -194.5 225t-158.5 324l35 14q88 -196 200.5 -331.5t270.5 -223.5v-2q-158 -87 -270.5 -223t-200.5 -332z" />
-<glyph unicode="&#x205f;" horiz-adv-x="479" />
-<glyph unicode="&#x20ac;" horiz-adv-x="1196" d="M68 608v41h148l-1 64q0 51 4 100h-151v41h155q21 188 95 329.5t189 218.5t257 77q127 0 227 -72q96 -70 96 -147q0 -48 -30.5 -78.5t-77.5 -30.5q-48 0 -80.5 30t-32.5 81q0 42 23.5 69t62.5 35q-15 31 -69.5 54.5t-112.5 23.5q-100 0 -173.5 -71t-117 -203t-55.5 -316 h438l-22 -41h-418q-2 -45 -2 -92l1 -72h327l-25 -41h-300q14 -291 102.5 -446.5t242.5 -155.5q58 0 112.5 23.5t69.5 54.5q-39 8 -62.5 35t-23.5 69q0 51 32.5 81t80.5 30q47 0 77.5 -30.5t30.5 -78.5q0 -75 -96 -147q-100 -72 -227 -72q-151 0 -268.5 75t-188.5 218.5 t-86 343.5h-151z" />
-<glyph unicode="&#x2122;" horiz-adv-x="2138" d="M143 1450q109 -6 373 -6q262 0 371 6q-15 -108 -15 -180q0 -69 7 -107h-48q-9 132 -40 186t-91 54h-110v-612q0 -60 10.5 -86t39 -36t95.5 -14v-41q-96 7 -219 7q-135 0 -221 -7v41q66 4 95 14t39.5 36.5t10.5 85.5v612h-110q-60 0 -91 -54t-40 -186h-47q6 41 6 107 q0 82 -15 180zM1004 614v41q48 4 68.5 12t28 30t7.5 73v524q0 51 -7.5 73.5t-28 30.5t-68.5 11v41q45 -6 129 -6q71 0 139 6l248 -608l227 602h96q100 0 158 6v-41q-48 -3 -68.5 -11t-28.5 -30.5t-8 -73.5v-524q0 -51 7.5 -73t28 -30t69.5 -12v-41q-79 7 -178 7 q-95 0 -160 -7v41q38 4 54.5 12t23 30.5t6.5 72.5v545l-268 -711h-33l-291 715v-549q0 -50 6.5 -72.5t23 -30.5t54.5 -12v-41q-51 7 -106 7q-76 0 -129 -7z" />
-<glyph unicode="&#x25fc;" horiz-adv-x="1055" d="M0 0v1055h1055v-1055h-1055z" />
-<glyph unicode="&#xfb03;" horiz-adv-x="1925" d="M53 1012v41h164q0 217 100 333q56 62 139.5 98t184.5 36q205 0 310 -139q30 48 71 87q64 61 160 97.5t223 36.5q84 0 156.5 -17t117.5 -45q70 -44 70 -113q0 -36 -17.5 -66.5t-48 -48.5t-65.5 -18t-65.5 18t-48 48t-17.5 65q0 37 18 67.5t49 47.5q-46 31 -149 31 q-104 0 -177 -41.5t-114 -116.5q-30 -53 -42.5 -133.5t-12.5 -226.5h330q127 0 201 5t139 19v-887q0 -57 15.5 -89t48.5 -45t91 -13v-43q-188 8 -248 8q-59 0 -247 -8v43q58 0 91 13t48.5 45t15.5 89v641q0 95 -34.5 138t-120.5 43h-330v-822q0 -83 43.5 -115t132.5 -32v-43 q-220 8 -268 8q-60 0 -248 -8v43q58 0 91 13t48.5 45t15.5 89v822h-473v-822q0 -57 15.5 -89t49 -45t91.5 -13v-43q-188 8 -246 8t-250 -8v43q58 0 91.5 13t49 45t15.5 89v822h-164zM401 1053h473q0 176 58 293q-44 62 -113.5 99.5t-152.5 37.5q-265 0 -265 -326v-104z" />
-<glyph unicode="&#xfb04;" horiz-adv-x="1929" d="M53 1012v41h164q0 217 100 333q56 62 139.5 98t184.5 36q184 0 288 -112q29 58 77 99q54 48 126 71.5t150 23.5q41 0 125 -12.5t131 -12.5q108 0 191 29v-1416q0 -57 15.5 -89t48.5 -45t91 -13v-43q-188 8 -248 8q-59 0 -247 -8v43q58 0 91 13t48.5 45t15.5 89v1141 q0 63 -13.5 102.5t-41.5 67.5q-36 36 -91 53t-106 17q-102 0 -162 -64q-43 -43 -57 -106.5t-14 -155.5v-192h260v-41h-260v-822q0 -83 43.5 -115t132.5 -32v-43q-220 8 -268 8q-60 0 -248 -8v43q58 0 91 13t48.5 45t15.5 89v822h-473v-822q0 -57 15.5 -89t49 -45t91.5 -13 v-43q-188 8 -246 8t-250 -8v43q58 0 91.5 13t49 45t15.5 89v822h-164zM401 1053h473q0 106 8 181.5t30 136.5q-44 52 -108 82t-138 30q-265 0 -265 -326v-104z" />
-<hkern u1="&#x20;" u2="&#xb2;" k="20" />
-<hkern u1="&#x20;" u2="x" k="20" />
-<hkern u1="&#x20;" u2="X" k="29" />
-<hkern u1="&#x20;" u2="V" k="70" />
-<hkern u1="&#x20;" u2="&#x34;" k="45" />
-<hkern u1="&#x23;" u2="&#x34;" k="41" />
-<hkern u1="&#x24;" u2="&#x33;" k="20" />
-<hkern u1="&#x26;" u2="&#xef;" k="-14" />
-<hkern u1="&#x28;" u2="&#xec;" k="-35" />
-<hkern u1="&#x28;" u2="&#x7b;" k="41" />
-<hkern u1="&#x28;" u2="x" k="25" />
-<hkern u1="&#x28;" u2="&#x39;" k="49" />
-<hkern u1="&#x28;" u2="&#x38;" k="53" />
-<hkern u1="&#x28;" u2="&#x37;" k="49" />
-<hkern u1="&#x28;" u2="&#x36;" k="72" />
-<hkern u1="&#x28;" u2="&#x34;" k="55" />
-<hkern u1="&#x28;" u2="&#x32;" k="51" />
-<hkern u1="&#x28;" u2="&#x31;" k="47" />
-<hkern u1="&#x28;" u2="&#x30;" k="84" />
-<hkern u1="&#x28;" u2="&#x28;" k="53" />
-<hkern u1="&#x29;" u2="&#x7d;" k="29" />
-<hkern u1="&#x29;" u2="]" k="20" />
-<hkern u1="&#x29;" u2="&#x29;" k="53" />
-<hkern u1="&#x2b;" u2="&#x38;" k="27" />
-<hkern u1="&#x2b;" u2="&#x34;" k="31" />
-<hkern u1="&#x2c;" u2="J" k="-178" />
-<hkern u1="&#x2f;" u2="&#x39;" k="47" />
-<hkern u1="&#x2f;" u2="&#x36;" k="35" />
-<hkern u1="&#x2f;" u2="&#x35;" k="41" />
-<hkern u1="&#x2f;" u2="&#x34;" k="141" />
-<hkern u1="&#x2f;" u2="&#x33;" k="47" />
-<hkern u1="&#x2f;" u2="&#x32;" k="35" />
-<hkern u1="&#x2f;" u2="&#x30;" k="61" />
-<hkern u1="&#x2f;" u2="&#x2f;" k="178" />
-<hkern u1="&#x30;" u2="&#xb0;" k="63" />
-<hkern u1="&#x30;" u2="&#x7d;" k="57" />
-<hkern u1="&#x30;" u2="]" k="45" />
-<hkern u1="&#x30;" u2="\" k="59" />
-<hkern u1="&#x30;" u2="&#x29;" k="84" />
-<hkern u1="&#x31;" u2="&#xf7;" k="23" />
-<hkern u1="&#x31;" u2="&#xd7;" k="23" />
-<hkern u1="&#x31;" u2="&#xb7;" k="35" />
-<hkern u1="&#x31;" u2="&#xb0;" k="29" />
-<hkern u1="&#x31;" u2="\" k="66" />
-<hkern u1="&#x31;" u2="&#x35;" k="25" />
-<hkern u1="&#x31;" u2="&#x33;" k="35" />
-<hkern u1="&#x31;" u2="&#x29;" k="29" />
-<hkern u1="&#x32;" u2="&#xb7;" k="27" />
-<hkern u1="&#x32;" u2="&#xb0;" k="43" />
-<hkern u1="&#x32;" u2="&#x7d;" k="25" />
-<hkern u1="&#x32;" u2="]" k="27" />
-<hkern u1="&#x32;" u2="\" k="59" />
-<hkern u1="&#x32;" u2="&#x29;" k="49" />
-<hkern u1="&#x33;" u2="&#xf7;" k="23" />
-<hkern u1="&#x33;" u2="&#xb7;" k="27" />
-<hkern u1="&#x33;" u2="&#xb0;" k="55" />
-<hkern u1="&#x33;" u2="&#x7d;" k="35" />
-<hkern u1="&#x33;" u2="]" k="35" />
-<hkern u1="&#x33;" u2="\" k="61" />
-<hkern u1="&#x33;" u2="&#x29;" k="59" />
-<hkern u1="&#x34;" u2="&#xf7;" k="47" />
-<hkern u1="&#x34;" u2="&#xb0;" k="55" />
-<hkern u1="&#x34;" u2="&#x7d;" k="27" />
-<hkern u1="&#x34;" u2="]" k="25" />
-<hkern u1="&#x34;" u2="\" k="78" />
-<hkern u1="&#x34;" u2="&#x37;" k="27" />
-<hkern u1="&#x34;" u2="&#x33;" k="37" />
-<hkern u1="&#x34;" u2="&#x29;" k="49" />
-<hkern u1="&#x35;" u2="&#xf7;" k="33" />
-<hkern u1="&#x35;" u2="&#xb7;" k="23" />
-<hkern u1="&#x35;" u2="&#xb0;" k="20" />
-<hkern u1="&#x35;" u2="&#x7d;" k="23" />
-<hkern u1="&#x35;" u2="]" k="23" />
-<hkern u1="&#x35;" u2="\" k="23" />
-<hkern u1="&#x35;" u2="&#x29;" k="49" />
-<hkern u1="&#x35;" u2="&#x20;" k="29" />
-<hkern u1="&#x36;" u2="&#xb0;" k="20" />
-<hkern u1="&#x36;" u2="&#x7d;" k="25" />
-<hkern u1="&#x36;" u2="&#x29;" k="45" />
-<hkern u1="&#x37;" u2="&#xb7;" k="33" />
-<hkern u1="&#x37;" u2="&#x34;" k="70" />
-<hkern u1="&#x37;" u2="&#x2f;" k="25" />
-<hkern u1="&#x37;" u2="&#x29;" k="53" />
-<hkern u1="&#x37;" u2="&#x20;" k="23" />
-<hkern u1="&#x38;" u2="&#xf7;" k="23" />
-<hkern u1="&#x38;" u2="&#x7d;" k="29" />
-<hkern u1="&#x38;" u2="]" k="23" />
-<hkern u1="&#x38;" u2="&#x33;" k="23" />
-<hkern u1="&#x38;" u2="&#x29;" k="53" />
-<hkern u1="&#x39;" u2="&#xb0;" k="68" />
-<hkern u1="&#x39;" u2="&#x7d;" k="51" />
-<hkern u1="&#x39;" u2="]" k="37" />
-<hkern u1="&#x39;" u2="\" k="55" />
-<hkern u1="&#x39;" u2="&#x29;" k="78" />
-<hkern u1="&#x3d;" u2="&#x34;" k="49" />
-<hkern u1="&#x40;" u2="X" k="35" />
-<hkern u1="B" u2="&#x7d;" k="29" />
-<hkern u1="B" u2="x" k="45" />
-<hkern u1="B" u2="p" k="12" />
-<hkern u1="B" u2="]" k="20" />
-<hkern u1="B" u2="X" k="63" />
-<hkern u1="B" u2="V" k="37" />
-<hkern u1="B" u2="&#x29;" k="43" />
-<hkern u1="F" u2="&#x40;" k="43" />
-<hkern u1="F" u2="&#x2f;" k="53" />
-<hkern u1="F" u2="&#x26;" k="23" />
-<hkern u1="F" u2="&#x20;" k="49" />
-<hkern u1="P" u2="X" k="59" />
-<hkern u1="P" u2="&#x40;" k="29" />
-<hkern u1="P" u2="&#x2f;" k="49" />
-<hkern u1="P" u2="&#x29;" k="35" />
-<hkern u1="P" u2="&#x20;" k="51" />
-<hkern u1="T" u2="&#xf0;" k="53" />
-<hkern u1="T" u2="q" k="53" />
-<hkern u1="U" u2="&#xdf;" k="41" />
-<hkern u1="V" u2="&#xed;" k="12" />
-<hkern u1="V" u2="&#xe4;" k="92" />
-<hkern u1="V" u2="&#xe3;" k="84" />
-<hkern u1="V" u2="x" k="55" />
-<hkern u1="V" u2="p" k="51" />
-<hkern u1="V" u2="&#x40;" k="76" />
-<hkern u1="V" u2="&#x2f;" k="76" />
-<hkern u1="V" u2="&#x26;" k="39" />
-<hkern u1="V" u2="&#x20;" k="70" />
-<hkern u1="W" u2="&#xed;" k="12" />
-<hkern u1="W" u2="&#xdf;" k="37" />
-<hkern u1="X" u2="&#xae;" k="20" />
-<hkern u1="X" u2="&#xa9;" k="37" />
-<hkern u1="X" u2="p" k="12" />
-<hkern u1="X" u2="&#x2a;" k="18" />
-<hkern u1="X" u2="&#x26;" k="23" />
-<hkern u1="X" u2="&#x20;" k="29" />
-<hkern u1="Y" u2="&#xed;" k="12" />
-<hkern u1="Y" u2="&#xe4;" k="115" />
-<hkern u1="Y" u2="&#xe3;" k="102" />
-<hkern u1="Y" u2="&#xdf;" k="39" />
-<hkern u1="[" u2="&#x39;" k="23" />
-<hkern u1="[" u2="&#x38;" k="25" />
-<hkern u1="[" u2="&#x36;" k="31" />
-<hkern u1="[" u2="&#x34;" k="33" />
-<hkern u1="[" u2="&#x32;" k="27" />
-<hkern u1="[" u2="&#x31;" k="23" />
-<hkern u1="[" u2="&#x30;" k="45" />
-<hkern u1="[" u2="&#x28;" k="20" />
-<hkern u1="\" u2="V" k="78" />
-<hkern u1="\" u2="&#x33;" k="49" />
-<hkern u1="q" u2="\" k="20" />
-<hkern u1="q" u2="V" k="90" />
-<hkern u1="x" u2="V" k="53" />
-<hkern u1="x" u2="&#x29;" k="20" />
-<hkern u1="x" u2="&#x20;" k="23" />
-<hkern u1="&#x7b;" u2="&#xec;" k="-16" />
-<hkern u1="&#x7b;" u2="&#x7b;" k="35" />
-<hkern u1="&#x7b;" u2="&#x39;" k="39" />
-<hkern u1="&#x7b;" u2="&#x38;" k="27" />
-<hkern u1="&#x7b;" u2="&#x37;" k="20" />
-<hkern u1="&#x7b;" u2="&#x36;" k="47" />
-<hkern u1="&#x7b;" u2="&#x34;" k="29" />
-<hkern u1="&#x7b;" u2="&#x32;" k="29" />
-<hkern u1="&#x7b;" u2="&#x31;" k="20" />
-<hkern u1="&#x7b;" u2="&#x30;" k="57" />
-<hkern u1="&#x7b;" u2="&#x28;" k="29" />
-<hkern u1="&#x7d;" u2="&#x7d;" k="35" />
-<hkern u1="&#x7d;" u2="&#x29;" k="41" />
-<hkern u1="&#xa1;" u2="V" k="37" />
-<hkern u1="&#xa3;" u2="&#x33;" k="35" />
-<hkern u1="&#xb0;" u2="&#x39;" k="63" />
-<hkern u1="&#xb0;" u2="&#x36;" k="57" />
-<hkern u1="&#xb0;" u2="&#x34;" k="184" />
-<hkern u1="&#xb0;" u2="&#x33;" k="55" />
-<hkern u1="&#xb0;" u2="&#x32;" k="41" />
-<hkern u1="&#xb0;" u2="&#x30;" k="70" />
-<hkern u1="&#xb7;" u2="&#x37;" k="23" />
-<hkern u1="&#xb7;" u2="&#x34;" k="49" />
-<hkern u1="&#xb7;" u2="&#x33;" k="47" />
-<hkern u1="&#xb7;" u2="&#x32;" k="39" />
-<hkern u1="&#xb7;" u2="&#x31;" k="51" />
-<hkern u1="&#xb9;" u2="&#xb3;" k="31" />
-<hkern u1="&#xd7;" u2="&#x34;" k="29" />
-<hkern u1="&#xd7;" u2="&#x33;" k="43" />
-<hkern u1="&#xd7;" u2="&#x32;" k="20" />
-<hkern u1="&#xd9;" u2="&#xdf;" k="41" />
-<hkern u1="&#xda;" u2="&#xdf;" k="41" />
-<hkern u1="&#xdb;" u2="&#xdf;" k="41" />
-<hkern u1="&#xdc;" u2="&#xdf;" k="41" />
-<hkern u1="&#xdd;" u2="&#xed;" k="12" />
-<hkern u1="&#xdd;" u2="&#xe4;" k="115" />
-<hkern u1="&#xdd;" u2="&#xe3;" k="102" />
-<hkern u1="&#xdd;" u2="&#xdf;" k="39" />
-<hkern u1="&#xde;" u2="&#x7d;" k="33" />
-<hkern u1="&#xde;" u2="x" k="25" />
-<hkern u1="&#xde;" u2="X" k="137" />
-<hkern u1="&#xde;" u2="V" k="41" />
-<hkern u1="&#xde;" u2="&#x3f;" k="37" />
-<hkern u1="&#xde;" u2="&#x29;" k="51" />
-<hkern u1="&#xf0;" u2="&#x2122;" k="18" />
-<hkern u1="&#xf0;" u2="&#x7d;" k="25" />
-<hkern u1="&#xf0;" u2="x" k="39" />
-<hkern u1="&#xf0;" u2="]" k="20" />
-<hkern u1="&#xf0;" u2="\" k="27" />
-<hkern u1="&#xf0;" u2="X" k="70" />
-<hkern u1="&#xf0;" u2="V" k="82" />
-<hkern u1="&#xf0;" u2="&#x29;" k="31" />
-<hkern u1="&#xf7;" u2="&#x38;" k="23" />
-<hkern u1="&#xf7;" u2="&#x34;" k="96" />
-<hkern u1="&#xf7;" u2="&#x33;" k="20" />
-<hkern u1="&#xf7;" u2="&#x31;" k="23" />
-<hkern u1="&#x178;" u2="&#xed;" k="12" />
-<hkern u1="&#x178;" u2="&#xe4;" k="115" />
-<hkern u1="&#x178;" u2="&#xe3;" k="102" />
-<hkern u1="&#x178;" u2="&#xdf;" k="39" />
-<hkern u1="&#x201a;" u2="J" k="-178" />
-<hkern u1="&#x201e;" u2="J" k="-180" />
-<hkern u1="&#x20ac;" u2="&#x33;" k="31" />
-<hkern g1="T" 	g2="f,uniFB01,uniFB02" 	k="47" />
-<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="96" />
-<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="143" />
-<hkern g1="T" 	g2="g" 	k="61" />
-<hkern g1="T" 	g2="ampersand" 	k="29" />
-<hkern g1="T" 	g2="hyphen,uni00AD,endash,emdash" 	k="121" />
-<hkern g1="T" 	g2="guillemotleft,guilsinglleft" 	k="82" />
-<hkern g1="T" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="88" />
-<hkern g1="T" 	g2="AE" 	k="141" />
-<hkern g1="T" 	g2="at" 	k="43" />
-<hkern g1="T" 	g2="s" 	k="25" />
-<hkern g1="T" 	g2="slash" 	k="45" />
-<hkern g1="T" 	g2="space" 	k="49" />
-<hkern g1="T" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="109" />
-<hkern g1="T" 	g2="h,k,l" 	k="12" />
-<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="29" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="f,uniFB01,uniFB02" 	k="16" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="57" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="25" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="g" 	k="49" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="hyphen,uni00AD,endash,emdash" 	k="23" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="47" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="AE" 	k="80" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="at" 	k="23" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="s" 	k="49" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="slash" 	k="31" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="51" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="h,k,l" 	k="31" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="51" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="b" 	k="10" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="p" 	k="33" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="31" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="colon,semicolon" 	k="16" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="y,yacute,ydieresis" 	k="18" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="m,n,r,ntilde" 	k="31" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="v,w" 	k="18" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="x" 	k="29" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="z" 	k="39" />
-<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="germandbls,thorn" 	k="27" />
-<hkern g1="W" 	g2="f,uniFB01,uniFB02" 	k="14" />
-<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="117" />
-<hkern g1="W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="74" />
-<hkern g1="W" 	g2="g" 	k="147" />
-<hkern g1="W" 	g2="ampersand" 	k="37" />
-<hkern g1="W" 	g2="hyphen,uni00AD,endash,emdash" 	k="70" />
-<hkern g1="W" 	g2="guillemotleft,guilsinglleft" 	k="111" />
-<hkern g1="W" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="141" />
-<hkern g1="W" 	g2="AE" 	k="260" />
-<hkern g1="W" 	g2="at" 	k="66" />
-<hkern g1="W" 	g2="s" 	k="96" />
-<hkern g1="W" 	g2="slash" 	k="68" />
-<hkern g1="W" 	g2="space" 	k="68" />
-<hkern g1="W" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="121" />
-<hkern g1="W" 	g2="h,k,l" 	k="14" />
-<hkern g1="W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="102" />
-<hkern g1="W" 	g2="p" 	k="45" />
-<hkern g1="W" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="49" />
-<hkern g1="W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="31" />
-<hkern g1="W" 	g2="colon,semicolon" 	k="35" />
-<hkern g1="W" 	g2="y,yacute,ydieresis" 	k="39" />
-<hkern g1="W" 	g2="m,n,r,ntilde" 	k="90" />
-<hkern g1="W" 	g2="v,w" 	k="18" />
-<hkern g1="W" 	g2="x" 	k="43" />
-<hkern g1="W" 	g2="z" 	k="72" />
-<hkern g1="W" 	g2="germandbls,thorn" 	k="10" />
-<hkern g1="W" 	g2="guillemotright,guilsinglright" 	k="20" />
-<hkern g1="V" 	g2="f,uniFB01,uniFB02" 	k="16" />
-<hkern g1="V" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="131" />
-<hkern g1="V" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="39" />
-<hkern g1="V" 	g2="g" 	k="147" />
-<hkern g1="V" 	g2="hyphen,uni00AD,endash,emdash" 	k="84" />
-<hkern g1="V" 	g2="guillemotleft,guilsinglleft" 	k="121" />
-<hkern g1="V" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="123" />
-<hkern g1="V" 	g2="AE" 	k="315" />
-<hkern g1="V" 	g2="s" 	k="117" />
-<hkern g1="V" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="137" />
-<hkern g1="V" 	g2="h,k,l" 	k="12" />
-<hkern g1="V" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="125" />
-<hkern g1="V" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="57" />
-<hkern g1="V" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="35" />
-<hkern g1="V" 	g2="colon,semicolon" 	k="39" />
-<hkern g1="V" 	g2="y,yacute,ydieresis" 	k="104" />
-<hkern g1="V" 	g2="m,n,r,ntilde" 	k="57" />
-<hkern g1="V" 	g2="v,w" 	k="23" />
-<hkern g1="V" 	g2="z" 	k="72" />
-<hkern g1="V" 	g2="germandbls,thorn" 	k="37" />
-<hkern g1="V" 	g2="guillemotright,guilsinglright" 	k="23" />
-<hkern g1="V" 	g2="S" 	k="12" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="f,uniFB01,uniFB02" 	k="18" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="100" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="53" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="123" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="ampersand" 	k="43" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,uni00AD,endash,emdash" 	k="121" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="131" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="137" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="AE" 	k="266" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="at" 	k="66" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="125" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="slash" 	k="57" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="space" 	k="66" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="109" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="h,k,l" 	k="16" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="131" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="p" 	k="61" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="61" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="47" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="colon,semicolon" 	k="41" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="27" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,r,ntilde" 	k="61" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="v,w" 	k="33" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="45" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="74" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="germandbls,thorn" 	k="12" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotright,guilsinglright" 	k="20" />
-<hkern g1="Y,Yacute,Ydieresis" 	g2="copyright" 	k="23" />
-<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="14" />
-<hkern g1="Z" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="10" />
-<hkern g1="Z" 	g2="p" 	k="16" />
-<hkern g1="Z" 	g2="y,yacute,ydieresis" 	k="33" />
-<hkern g1="Z" 	g2="v,w" 	k="33" />
-<hkern g1="Z" 	g2="z" 	k="10" />
-<hkern g1="Z" 	g2="t" 	k="10" />
-<hkern g1="X" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="41" />
-<hkern g1="X" 	g2="hyphen,uni00AD,endash,emdash" 	k="74" />
-<hkern g1="X" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="66" />
-<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="53" />
-<hkern g1="X" 	g2="y,yacute,ydieresis" 	k="80" />
-<hkern g1="X" 	g2="v,w" 	k="78" />
-<hkern g1="X" 	g2="t" 	k="31" />
-<hkern g1="eth" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="33" />
-<hkern g1="eth" 	g2="AE" 	k="39" />
-<hkern g1="eth" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="20" />
-<hkern g1="eth" 	g2="y,yacute,ydieresis" 	k="12" />
-<hkern g1="eth" 	g2="v,w" 	k="10" />
-<hkern g1="eth" 	g2="quotedbl,quotesingle" 	k="23" />
-<hkern g1="eth" 	g2="quoteright,quotedblright" 	k="25" />
-<hkern g1="eth" 	g2="quoteleft,quotedblleft" 	k="18" />
-<hkern g1="eth" 	g2="S" 	k="12" />
-<hkern g1="eth" 	g2="J" 	k="31" />
-<hkern g1="eth" 	g2="W" 	k="68" />
-<hkern g1="eth" 	g2="Y,Yacute,Ydieresis" 	k="84" />
-<hkern g1="eth" 	g2="T" 	k="33" />
-<hkern g1="eth" 	g2="Z" 	k="29" />
-<hkern g1="eth" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="35" />
-<hkern g1="eth" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="45" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="hyphen,uni00AD,endash,emdash" 	k="27" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="space" 	k="25" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="y,yacute,ydieresis" 	k="12" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="v,w" 	k="10" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="parenright" 	k="35" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="asterisk" 	k="31" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="ordfeminine" 	k="27" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="question" 	k="25" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="quotedbl,quotesingle" 	k="47" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="quoteright,quotedblright" 	k="51" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="registered" 	k="35" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="trademark" 	k="51" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="backslash" 	k="59" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="ordmasculine" 	k="35" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="quoteleft,quotedblleft" 	k="168" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="J" 	k="18" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="W" 	k="94" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="Y,Yacute,Ydieresis" 	k="115" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="T" 	k="68" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="35" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="V" 	k="115" />
-<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="bracketright" 	k="20" />
-<hkern g1="p,thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
-<hkern g1="p,thorn" 	g2="AE" 	k="23" />
-<hkern g1="p,thorn" 	g2="y,yacute,ydieresis" 	k="23" />
-<hkern g1="p,thorn" 	g2="v,w" 	k="12" />
-<hkern g1="p,thorn" 	g2="x" 	k="35" />
-<hkern g1="p,thorn" 	g2="parenright" 	k="57" />
-<hkern g1="p,thorn" 	g2="braceright" 	k="39" />
-<hkern g1="p,thorn" 	g2="question" 	k="41" />
-<hkern g1="p,thorn" 	g2="quotedbl,quotesingle" 	k="45" />
-<hkern g1="p,thorn" 	g2="quoteright,quotedblright" 	k="49" />
-<hkern g1="p,thorn" 	g2="trademark" 	k="35" />
-<hkern g1="p,thorn" 	g2="backslash" 	k="43" />
-<hkern g1="p,thorn" 	g2="ordmasculine" 	k="27" />
-<hkern g1="p,thorn" 	g2="quoteleft,quotedblleft" 	k="45" />
-<hkern g1="p,thorn" 	g2="J" 	k="35" />
-<hkern g1="p,thorn" 	g2="W" 	k="100" />
-<hkern g1="p,thorn" 	g2="Y,Yacute,Ydieresis" 	k="123" />
-<hkern g1="p,thorn" 	g2="T" 	k="86" />
-<hkern g1="p,thorn" 	g2="Z" 	k="29" />
-<hkern g1="p,thorn" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="37" />
-<hkern g1="p,thorn" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="45" />
-<hkern g1="p,thorn" 	g2="V" 	k="121" />
-<hkern g1="p,thorn" 	g2="bracketright" 	k="31" />
-<hkern g1="p,thorn" 	g2="X" 	k="68" />
-<hkern g1="c,ccedilla" 	g2="hyphen,uni00AD,endash,emdash" 	k="41" />
-<hkern g1="c,ccedilla" 	g2="parenright" 	k="49" />
-<hkern g1="c,ccedilla" 	g2="braceright" 	k="31" />
-<hkern g1="c,ccedilla" 	g2="question" 	k="20" />
-<hkern g1="c,ccedilla" 	g2="trademark" 	k="29" />
-<hkern g1="c,ccedilla" 	g2="backslash" 	k="31" />
-<hkern g1="c,ccedilla" 	g2="J" 	k="31" />
-<hkern g1="c,ccedilla" 	g2="W" 	k="74" />
-<hkern g1="c,ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="68" />
-<hkern g1="c,ccedilla" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="31" />
-<hkern g1="c,ccedilla" 	g2="V" 	k="84" />
-<hkern g1="c,ccedilla" 	g2="bracketright" 	k="27" />
-<hkern g1="c,ccedilla" 	g2="X" 	k="18" />
-<hkern g1="d" 	g2="hyphen,uni00AD,endash,emdash" 	k="27" />
-<hkern g1="d" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="18" />
-<hkern g1="d" 	g2="parenright" 	k="-102" />
-<hkern g1="d" 	g2="braceright" 	k="-104" />
-<hkern g1="d" 	g2="registered" 	k="20" />
-<hkern g1="d" 	g2="backslash" 	k="-90" />
-<hkern g1="d" 	g2="J" 	k="25" />
-<hkern g1="d" 	g2="W" 	k="12" />
-<hkern g1="d" 	g2="Y,Yacute,Ydieresis" 	k="12" />
-<hkern g1="d" 	g2="T" 	k="12" />
-<hkern g1="d" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="31" />
-<hkern g1="d" 	g2="V" 	k="14" />
-<hkern g1="d" 	g2="bracketright" 	k="-94" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="y,yacute,ydieresis" 	k="20" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="v,w" 	k="8" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="x" 	k="29" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="parenright" 	k="51" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="braceright" 	k="33" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="question" 	k="29" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quotedbl,quotesingle" 	k="23" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteright,quotedblright" 	k="27" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="trademark" 	k="27" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="backslash" 	k="37" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteleft,quotedblleft" 	k="20" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="J" 	k="39" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="W" 	k="92" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="94" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="T" 	k="31" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Z" 	k="10" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="14" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="41" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="V" 	k="119" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="bracketright" 	k="29" />
-<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="X" 	k="33" />
-<hkern g1="f" 	g2="hyphen,uni00AD,endash,emdash" 	k="49" />
-<hkern g1="f" 	g2="guillemotleft,guilsinglleft" 	k="29" />
-<hkern g1="f" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="35" />
-<hkern g1="f" 	g2="parenright" 	k="-45" />
-<hkern g1="f" 	g2="braceright" 	k="-66" />
-<hkern g1="f" 	g2="asterisk" 	k="-47" />
-<hkern g1="f" 	g2="ordfeminine" 	k="-23" />
-<hkern g1="f" 	g2="question" 	k="-121" />
-<hkern g1="f" 	g2="quotedbl,quotesingle" 	k="-63" />
-<hkern g1="f" 	g2="quoteright,quotedblright" 	k="-66" />
-<hkern g1="f" 	g2="trademark" 	k="-100" />
-<hkern g1="f" 	g2="backslash" 	k="-109" />
-<hkern g1="f" 	g2="J" 	k="-111" />
-<hkern g1="f" 	g2="W" 	k="-197" />
-<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-188" />
-<hkern g1="f" 	g2="T" 	k="-121" />
-<hkern g1="f" 	g2="Z" 	k="-61" />
-<hkern g1="f" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-96" />
-<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-127" />
-<hkern g1="f" 	g2="V" 	k="-197" />
-<hkern g1="f" 	g2="bracketright" 	k="-66" />
-<hkern g1="f" 	g2="X" 	k="-145" />
-<hkern g1="g" 	g2="hyphen,uni00AD,endash,emdash" 	k="23" />
-<hkern g1="g" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
-<hkern g1="g" 	g2="y,yacute,ydieresis" 	k="23" />
-<hkern g1="g" 	g2="v,w" 	k="18" />
-<hkern g1="g" 	g2="W" 	k="14" />
-<hkern g1="g" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="12" />
-<hkern g1="g" 	g2="V" 	k="16" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="hyphen,uni00AD,endash,emdash" 	k="29" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="asterisk" 	k="18" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="registered" 	k="20" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="J" 	k="23" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="T" 	k="12" />
-<hkern g1="i,u,igrave,iacute,icircumflex,idieresis,ugrave,uacute,ucircumflex,udieresis,uniFB01" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="25" />
-<hkern g1="j" 	g2="y,yacute,ydieresis" 	k="10" />
-<hkern g1="j" 	g2="parenright" 	k="27" />
-<hkern g1="j" 	g2="braceright" 	k="23" />
-<hkern g1="j" 	g2="question" 	k="27" />
-<hkern g1="j" 	g2="quotedbl,quotesingle" 	k="20" />
-<hkern g1="j" 	g2="quoteright,quotedblright" 	k="23" />
-<hkern g1="j" 	g2="trademark" 	k="25" />
-<hkern g1="j" 	g2="backslash" 	k="37" />
-<hkern g1="j" 	g2="quoteleft,quotedblleft" 	k="18" />
-<hkern g1="j" 	g2="bracketright" 	k="20" />
-<hkern g1="k" 	g2="hyphen,uni00AD,endash,emdash" 	k="90" />
-<hkern g1="k" 	g2="guillemotleft,guilsinglleft" 	k="47" />
-<hkern g1="k" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="57" />
-<hkern g1="k" 	g2="space" 	k="25" />
-<hkern g1="k" 	g2="h,k,l" 	k="61" />
-<hkern g1="k" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
-<hkern g1="k" 	g2="b" 	k="61" />
-<hkern g1="k" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="57" />
-<hkern g1="k" 	g2="germandbls,thorn" 	k="82" />
-<hkern g1="k" 	g2="quoteright,quotedblright" 	k="18" />
-<hkern g1="k" 	g2="trademark" 	k="33" />
-<hkern g1="k" 	g2="J" 	k="18" />
-<hkern g1="k" 	g2="W" 	k="53" />
-<hkern g1="k" 	g2="Y,Yacute,Ydieresis" 	k="43" />
-<hkern g1="k" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="41" />
-<hkern g1="k" 	g2="V" 	k="61" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="61" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="W" 	k="102" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="102" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="102" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="41" />
-<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="V" 	k="102" />
-<hkern g1="l,uniFB02" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="20" />
-<hkern g1="h,m,n,ntilde" 	g2="hyphen,uni00AD,endash,emdash" 	k="23" />
-<hkern g1="h,m,n,ntilde" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="18" />
-<hkern g1="h,m,n,ntilde" 	g2="y,yacute,ydieresis" 	k="18" />
-<hkern g1="h,m,n,ntilde" 	g2="v,w" 	k="18" />
-<hkern g1="h,m,n,ntilde" 	g2="parenright" 	k="29" />
-<hkern g1="h,m,n,ntilde" 	g2="asterisk" 	k="27" />
-<hkern g1="h,m,n,ntilde" 	g2="ordfeminine" 	k="20" />
-<hkern g1="h,m,n,ntilde" 	g2="question" 	k="33" />
-<hkern g1="h,m,n,ntilde" 	g2="quotedbl,quotesingle" 	k="43" />
-<hkern g1="h,m,n,ntilde" 	g2="quoteright,quotedblright" 	k="45" />
-<hkern g1="h,m,n,ntilde" 	g2="registered" 	k="33" />
-<hkern g1="h,m,n,ntilde" 	g2="trademark" 	k="47" />
-<hkern g1="h,m,n,ntilde" 	g2="backslash" 	k="57" />
-<hkern g1="h,m,n,ntilde" 	g2="ordmasculine" 	k="31" />
-<hkern g1="h,m,n,ntilde" 	g2="quoteleft,quotedblleft" 	k="41" />
-<hkern g1="h,m,n,ntilde" 	g2="J" 	k="37" />
-<hkern g1="h,m,n,ntilde" 	g2="W" 	k="104" />
-<hkern g1="h,m,n,ntilde" 	g2="Y,Yacute,Ydieresis" 	k="127" />
-<hkern g1="h,m,n,ntilde" 	g2="T" 	k="82" />
-<hkern g1="h,m,n,ntilde" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="47" />
-<hkern g1="h,m,n,ntilde" 	g2="V" 	k="125" />
-<hkern g1="h,m,n,ntilde" 	g2="bracketright" 	k="20" />
-<hkern g1="D,Eth" 	g2="f,uniFB01,uniFB02" 	k="27" />
-<hkern g1="D,Eth" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="43" />
-<hkern g1="D,Eth" 	g2="g" 	k="16" />
-<hkern g1="D,Eth" 	g2="AE" 	k="72" />
-<hkern g1="D,Eth" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="45" />
-<hkern g1="D,Eth" 	g2="h,k,l" 	k="27" />
-<hkern g1="D,Eth" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="10" />
-<hkern g1="D,Eth" 	g2="x" 	k="31" />
-<hkern g1="D,Eth" 	g2="germandbls,thorn" 	k="23" />
-<hkern g1="D,Eth" 	g2="parenright" 	k="51" />
-<hkern g1="D,Eth" 	g2="braceright" 	k="33" />
-<hkern g1="D,Eth" 	g2="question" 	k="27" />
-<hkern g1="D,Eth" 	g2="J" 	k="16" />
-<hkern g1="D,Eth" 	g2="W" 	k="27" />
-<hkern g1="D,Eth" 	g2="Y,Yacute,Ydieresis" 	k="39" />
-<hkern g1="D,Eth" 	g2="Z" 	k="10" />
-<hkern g1="D,Eth" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="18" />
-<hkern g1="D,Eth" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="14" />
-<hkern g1="D,Eth" 	g2="V" 	k="33" />
-<hkern g1="D,Eth" 	g2="bracketright" 	k="25" />
-<hkern g1="D,Eth" 	g2="X" 	k="59" />
-<hkern g1="B" 	g2="f,uniFB01,uniFB02" 	k="18" />
-<hkern g1="B" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="14" />
-<hkern g1="B" 	g2="AE" 	k="31" />
-<hkern g1="B" 	g2="h,k,l" 	k="18" />
-<hkern g1="B" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="10" />
-<hkern g1="B" 	g2="y,yacute,ydieresis" 	k="27" />
-<hkern g1="B" 	g2="m,n,r,ntilde" 	k="10" />
-<hkern g1="B" 	g2="v,w" 	k="27" />
-<hkern g1="B" 	g2="z" 	k="14" />
-<hkern g1="B" 	g2="germandbls,thorn" 	k="14" />
-<hkern g1="B" 	g2="t" 	k="12" />
-<hkern g1="B" 	g2="J" 	k="12" />
-<hkern g1="B" 	g2="W" 	k="31" />
-<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="37" />
-<hkern g1="B" 	g2="T" 	k="14" />
-<hkern g1="B" 	g2="Z" 	k="10" />
-<hkern g1="B" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="14" />
-<hkern g1="B" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="12" />
-<hkern g1="B" 	g2="j" 	k="12" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="23" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="AE" 	k="18" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="h,k,l" 	k="20" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="y,yacute,ydieresis" 	k="18" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="v,w" 	k="14" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="x" 	k="35" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="parenright" 	k="59" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="braceright" 	k="41" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="question" 	k="39" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="quotedbl,quotesingle" 	k="37" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="quoteright,quotedblright" 	k="39" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="trademark" 	k="27" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="backslash" 	k="43" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="ordmasculine" 	k="18" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="quoteleft,quotedblleft" 	k="168" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="J" 	k="35" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="W" 	k="102" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="Y,Yacute,Ydieresis" 	k="125" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="T" 	k="88" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="Z" 	k="27" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="37" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="47" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="V" 	k="123" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="bracketright" 	k="33" />
-<hkern g1="b,o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="X" 	k="72" />
-<hkern g1="G" 	g2="g" 	k="10" />
-<hkern g1="G" 	g2="h,k,l" 	k="10" />
-<hkern g1="G" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="10" />
-<hkern g1="G" 	g2="y,yacute,ydieresis" 	k="10" />
-<hkern g1="G" 	g2="parenright" 	k="20" />
-<hkern g1="r" 	g2="f,uniFB01,uniFB02" 	k="8" />
-<hkern g1="r" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="72" />
-<hkern g1="r" 	g2="hyphen,uni00AD,endash,emdash" 	k="55" />
-<hkern g1="r" 	g2="guillemotleft,guilsinglleft" 	k="25" />
-<hkern g1="r" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="41" />
-<hkern g1="r" 	g2="AE" 	k="98" />
-<hkern g1="r" 	g2="slash" 	k="27" />
-<hkern g1="r" 	g2="space" 	k="43" />
-<hkern g1="r" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="76" />
-<hkern g1="r" 	g2="h,k,l" 	k="41" />
-<hkern g1="r" 	g2="b" 	k="41" />
-<hkern g1="r" 	g2="parenright" 	k="49" />
-<hkern g1="r" 	g2="braceright" 	k="25" />
-<hkern g1="r" 	g2="J" 	k="37" />
-<hkern g1="r" 	g2="W" 	k="43" />
-<hkern g1="r" 	g2="Y,Yacute,Ydieresis" 	k="23" />
-<hkern g1="r" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="35" />
-<hkern g1="r" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="25" />
-<hkern g1="r" 	g2="V" 	k="55" />
-<hkern g1="r" 	g2="bracketright" 	k="20" />
-<hkern g1="r" 	g2="X" 	k="70" />
-<hkern g1="F" 	g2="f,uniFB01,uniFB02" 	k="47" />
-<hkern g1="F" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="94" />
-<hkern g1="F" 	g2="g" 	k="53" />
-<hkern g1="F" 	g2="hyphen,uni00AD,endash,emdash" 	k="51" />
-<hkern g1="F" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="49" />
-<hkern g1="F" 	g2="AE" 	k="252" />
-<hkern g1="F" 	g2="s" 	k="27" />
-<hkern g1="F" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="127" />
-<hkern g1="F" 	g2="h,k,l" 	k="14" />
-<hkern g1="F" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="29" />
-<hkern g1="F" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
-<hkern g1="F" 	g2="germandbls,thorn" 	k="10" />
-<hkern g1="s" 	g2="parenright" 	k="47" />
-<hkern g1="s" 	g2="braceright" 	k="29" />
-<hkern g1="s" 	g2="backslash" 	k="23" />
-<hkern g1="s" 	g2="J" 	k="41" />
-<hkern g1="s" 	g2="W" 	k="72" />
-<hkern g1="s" 	g2="Y,Yacute,Ydieresis" 	k="63" />
-<hkern g1="s" 	g2="T" 	k="12" />
-<hkern g1="s" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="16" />
-<hkern g1="s" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="45" />
-<hkern g1="s" 	g2="V" 	k="80" />
-<hkern g1="s" 	g2="bracketright" 	k="27" />
-<hkern g1="s" 	g2="X" 	k="12" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="23" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="g" 	k="16" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="hyphen,uni00AD,endash,emdash" 	k="31" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="37" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="s" 	k="10" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="10" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="p" 	k="23" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="16" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="y,yacute,ydieresis" 	k="29" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="v,w" 	k="29" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="germandbls,thorn" 	k="14" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="parenright" 	k="-70" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="braceright" 	k="-66" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="t" 	k="12" />
-<hkern g1="H,I,M,Igrave,Iacute,Icircumflex,Idieresis" 	g2="bracketright" 	k="-45" />
-<hkern g1="q" 	g2="J" 	k="-270" />
-<hkern g1="q" 	g2="W" 	k="76" />
-<hkern g1="q" 	g2="Y,Yacute,Ydieresis" 	k="98" />
-<hkern g1="q" 	g2="T" 	k="14" />
-<hkern g1="q" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="20" />
-<hkern g1="q" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="25" />
-<hkern g1="t" 	g2="g" 	k="41" />
-<hkern g1="t" 	g2="space" 	k="35" />
-<hkern g1="t" 	g2="parenright" 	k="27" />
-<hkern g1="t" 	g2="trademark" 	k="25" />
-<hkern g1="t" 	g2="t" 	k="82" />
-<hkern g1="t" 	g2="J" 	k="12" />
-<hkern g1="t" 	g2="W" 	k="41" />
-<hkern g1="t" 	g2="Y,Yacute,Ydieresis" 	k="35" />
-<hkern g1="t" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="16" />
-<hkern g1="t" 	g2="V" 	k="53" />
-<hkern g1="t" 	g2="j" 	k="-72" />
-<hkern g1="J" 	g2="f,uniFB01,uniFB02" 	k="20" />
-<hkern g1="J" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="18" />
-<hkern g1="J" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="29" />
-<hkern g1="J" 	g2="g" 	k="41" />
-<hkern g1="J" 	g2="hyphen,uni00AD,endash,emdash" 	k="25" />
-<hkern g1="J" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="37" />
-<hkern g1="J" 	g2="AE" 	k="20" />
-<hkern g1="J" 	g2="s" 	k="41" />
-<hkern g1="J" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="33" />
-<hkern g1="J" 	g2="h,k,l" 	k="27" />
-<hkern g1="J" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="45" />
-<hkern g1="J" 	g2="b" 	k="12" />
-<hkern g1="J" 	g2="p" 	k="35" />
-<hkern g1="J" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="10" />
-<hkern g1="J" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="16" />
-<hkern g1="J" 	g2="y,yacute,ydieresis" 	k="23" />
-<hkern g1="J" 	g2="m,n,r,ntilde" 	k="29" />
-<hkern g1="J" 	g2="v,w" 	k="25" />
-<hkern g1="J" 	g2="x" 	k="20" />
-<hkern g1="J" 	g2="z" 	k="43" />
-<hkern g1="J" 	g2="germandbls,thorn" 	k="23" />
-<hkern g1="J" 	g2="parenright" 	k="-88" />
-<hkern g1="J" 	g2="braceright" 	k="-82" />
-<hkern g1="J" 	g2="t" 	k="12" />
-<hkern g1="J" 	g2="bracketright" 	k="-59" />
-<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="102" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="f,uniFB01,uniFB02" 	k="14" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="90" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="g" 	k="18" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="hyphen,uni00AD,endash,emdash" 	k="39" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="27" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="18" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="AE" 	k="125" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="at" 	k="31" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="s" 	k="14" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="slash" 	k="39" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="space" 	k="53" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="88" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="h,k,l" 	k="51" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="12" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="parenright" 	k="43" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="J" 	k="29" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="W" 	k="18" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="27" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="31" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="20" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="V" 	k="27" />
-<hkern g1="v,w,y,yacute,ydieresis" 	g2="X" 	k="53" />
-<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="123" />
-<hkern g1="L" 	g2="v,w" 	k="123" />
-<hkern g1="L" 	g2="quoteright,quotedblright" 	k="164" />
-<hkern g1="L" 	g2="W" 	k="164" />
-<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="143" />
-<hkern g1="L" 	g2="T" 	k="143" />
-<hkern g1="L" 	g2="V" 	k="164" />
-<hkern g1="N,Ntilde" 	g2="f,uniFB01,uniFB02" 	k="18" />
-<hkern g1="N,Ntilde" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="12" />
-<hkern g1="N,Ntilde" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="31" />
-<hkern g1="N,Ntilde" 	g2="g" 	k="41" />
-<hkern g1="N,Ntilde" 	g2="hyphen,uni00AD,endash,emdash" 	k="25" />
-<hkern g1="N,Ntilde" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="37" />
-<hkern g1="N,Ntilde" 	g2="AE" 	k="14" />
-<hkern g1="N,Ntilde" 	g2="s" 	k="41" />
-<hkern g1="N,Ntilde" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="29" />
-<hkern g1="N,Ntilde" 	g2="h,k,l" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="43" />
-<hkern g1="N,Ntilde" 	g2="b" 	k="12" />
-<hkern g1="N,Ntilde" 	g2="p" 	k="35" />
-<hkern g1="N,Ntilde" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="14" />
-<hkern g1="N,Ntilde" 	g2="y,yacute,ydieresis" 	k="25" />
-<hkern g1="N,Ntilde" 	g2="m,n,r,ntilde" 	k="27" />
-<hkern g1="N,Ntilde" 	g2="v,w" 	k="25" />
-<hkern g1="N,Ntilde" 	g2="x" 	k="16" />
-<hkern g1="N,Ntilde" 	g2="z" 	k="41" />
-<hkern g1="N,Ntilde" 	g2="germandbls,thorn" 	k="23" />
-<hkern g1="N,Ntilde" 	g2="t" 	k="14" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="f,uniFB01,uniFB02" 	k="20" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="33" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="g" 	k="14" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="AE" 	k="59" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="43" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="h,k,l" 	k="20" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="x" 	k="29" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="germandbls,thorn" 	k="16" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="parenright" 	k="49" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="braceright" 	k="31" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="question" 	k="23" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="J" 	k="14" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="W" 	k="23" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="Y,Yacute,Ydieresis" 	k="35" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="16" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="12" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="V" 	k="29" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="bracketright" 	k="20" />
-<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="X" 	k="51" />
-<hkern g1="z" 	g2="hyphen,uni00AD,endash,emdash" 	k="27" />
-<hkern g1="z" 	g2="parenright" 	k="35" />
-<hkern g1="z" 	g2="J" 	k="35" />
-<hkern g1="z" 	g2="W" 	k="61" />
-<hkern g1="z" 	g2="Y,Yacute,Ydieresis" 	k="31" />
-<hkern g1="z" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="33" />
-<hkern g1="z" 	g2="V" 	k="70" />
-<hkern g1="x" 	g2="hyphen,uni00AD,endash,emdash" 	k="80" />
-<hkern g1="x" 	g2="guillemotleft,guilsinglleft" 	k="43" />
-<hkern g1="x" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="35" />
-<hkern g1="x" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="37" />
-<hkern g1="x" 	g2="J" 	k="16" />
-<hkern g1="x" 	g2="W" 	k="45" />
-<hkern g1="x" 	g2="Y,Yacute,Ydieresis" 	k="29" />
-<hkern g1="x" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="35" />
-<hkern g1="R" 	g2="space" 	k="25" />
-<hkern g1="R" 	g2="y,yacute,ydieresis" 	k="29" />
-<hkern g1="R" 	g2="v,w" 	k="25" />
-<hkern g1="R" 	g2="asterisk" 	k="18" />
-<hkern g1="R" 	g2="trademark" 	k="18" />
-<hkern g1="R" 	g2="W" 	k="117" />
-<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="94" />
-<hkern g1="R" 	g2="T" 	k="14" />
-<hkern g1="R" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="14" />
-<hkern g1="R" 	g2="V" 	k="43" />
-<hkern g1="P" 	g2="f,uniFB01,uniFB02" 	k="33" />
-<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="84" />
-<hkern g1="P" 	g2="g" 	k="27" />
-<hkern g1="P" 	g2="hyphen,uni00AD,endash,emdash" 	k="37" />
-<hkern g1="P" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="23" />
-<hkern g1="P" 	g2="AE" 	k="178" />
-<hkern g1="P" 	g2="s" 	k="10" />
-<hkern g1="P" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="143" />
-<hkern g1="P" 	g2="h,k,l" 	k="18" />
-<hkern g1="P" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="14" />
-<hkern g1="P" 	g2="germandbls,thorn" 	k="14" />
-<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="10" />
-<hkern g1="S" 	g2="parenright" 	k="20" />
-<hkern g1="Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="43" />
-<hkern g1="Thorn" 	g2="AE" 	k="90" />
-<hkern g1="Thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="53" />
-<hkern g1="Thorn" 	g2="h,k,l" 	k="10" />
-<hkern g1="Thorn" 	g2="J" 	k="12" />
-<hkern g1="Thorn" 	g2="W" 	k="29" />
-<hkern g1="Thorn" 	g2="Y,Yacute,Ydieresis" 	k="57" />
-<hkern g1="Thorn" 	g2="Z" 	k="12" />
-<hkern g1="Thorn" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="16" />
-<hkern g1="Thorn" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="10" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="V" 	k="164" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="Y,Yacute,Ydieresis" 	k="164" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="T" 	k="164" />
-<hkern g1="comma,period,quotesinglbase,quotedblbase" 	g2="W" 	k="164" />
-<hkern g1="two" 	g2="quotedbl,quotesingle" 	k="23" />
-<hkern g1="space" 	g2="Y,Yacute,Ydieresis" 	k="68" />
-<hkern g1="space" 	g2="T" 	k="49" />
-<hkern g1="space" 	g2="W" 	k="68" />
-<hkern g1="space" 	g2="quotedbl,quotesingle" 	k="33" />
-<hkern g1="space" 	g2="quoteright,quotedblright" 	k="33" />
-<hkern g1="space" 	g2="y,yacute,ydieresis" 	k="53" />
-<hkern g1="space" 	g2="t" 	k="27" />
-<hkern g1="space" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="70" />
-<hkern g1="space" 	g2="v,w" 	k="53" />
-<hkern g1="space" 	g2="AE" 	k="76" />
-<hkern g1="space" 	g2="h,k,l" 	k="61" />
-<hkern g1="ampersand" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="61" />
-<hkern g1="ampersand" 	g2="AE" 	k="92" />
-<hkern g1="ampersand" 	g2="f,uniFB01,uniFB02" 	k="20" />
-<hkern g1="ampersand" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="20" />
-<hkern g1="ampersand" 	g2="g" 	k="23" />
-<hkern g1="braceleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="41" />
-<hkern g1="braceleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="27" />
-<hkern g1="braceleft" 	g2="J" 	k="-240" />
-<hkern g1="braceleft" 	g2="s" 	k="29" />
-<hkern g1="braceleft" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-66" />
-<hkern g1="braceleft" 	g2="j" 	k="-102" />
-<hkern g1="braceleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-63" />
-<hkern g1="braceleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="33" />
-<hkern g1="four" 	g2="quotedbl,quotesingle" 	k="49" />
-<hkern g1="quoteright,quotedblright" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="272" />
-<hkern g1="quoteright,quotedblright" 	g2="hyphen,uni00AD,endash,emdash" 	k="23" />
-<hkern g1="quoteright,quotedblright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="113" />
-<hkern g1="quoteright,quotedblright" 	g2="AE" 	k="166" />
-<hkern g1="quoteright,quotedblright" 	g2="f,uniFB01,uniFB02" 	k="41" />
-<hkern g1="quoteright,quotedblright" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="51" />
-<hkern g1="quoteright,quotedblright" 	g2="g" 	k="51" />
-<hkern g1="quoteright,quotedblright" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="72" />
-<hkern g1="quoteright,quotedblright" 	g2="s" 	k="27" />
-<hkern g1="quoteright,quotedblright" 	g2="ampersand" 	k="39" />
-<hkern g1="quoteright,quotedblright" 	g2="space" 	k="41" />
-<hkern g1="quoteright,quotedblright" 	g2="guillemotleft,guilsinglleft" 	k="43" />
-<hkern g1="quoteright,quotedblright" 	g2="at" 	k="88" />
-<hkern g1="quoteright,quotedblright" 	g2="slash" 	k="92" />
-<hkern g1="bar" 	g2="J" 	k="-186" />
-<hkern g1="at" 	g2="Y,Yacute,Ydieresis" 	k="23" />
-<hkern g1="at" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="29" />
-<hkern g1="at" 	g2="AE" 	k="55" />
-<hkern g1="grave" 	g2="guillemotleft,guilsinglleft" 	k="41" />
-<hkern g1="colon,semicolon" 	g2="V" 	k="37" />
-<hkern g1="colon,semicolon" 	g2="Y,Yacute,Ydieresis" 	k="39" />
-<hkern g1="colon,semicolon" 	g2="W" 	k="33" />
-<hkern g1="colon,semicolon" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="16" />
-<hkern g1="nine" 	g2="quotedbl,quotesingle" 	k="35" />
-<hkern g1="guillemotright,guilsinglright" 	g2="V" 	k="162" />
-<hkern g1="guillemotright,guilsinglright" 	g2="Y,Yacute,Ydieresis" 	k="166" />
-<hkern g1="guillemotright,guilsinglright" 	g2="T" 	k="164" />
-<hkern g1="guillemotright,guilsinglright" 	g2="W" 	k="92" />
-<hkern g1="guillemotright,guilsinglright" 	g2="quotedbl,quotesingle" 	k="33" />
-<hkern g1="guillemotright,guilsinglright" 	g2="quoteright,quotedblright" 	k="37" />
-<hkern g1="guillemotright,guilsinglright" 	g2="y,yacute,ydieresis" 	k="29" />
-<hkern g1="guillemotright,guilsinglright" 	g2="v,w" 	k="25" />
-<hkern g1="guillemotright,guilsinglright" 	g2="x" 	k="45" />
-<hkern g1="quoteleft,quotedblleft" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="252" />
-<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="162" />
-<hkern g1="quoteleft,quotedblleft" 	g2="AE" 	k="160" />
-<hkern g1="quoteleft,quotedblleft" 	g2="h,k,l" 	k="16" />
-<hkern g1="quoteleft,quotedblleft" 	g2="f,uniFB01,uniFB02" 	k="33" />
-<hkern g1="quoteleft,quotedblleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="33" />
-<hkern g1="quoteleft,quotedblleft" 	g2="g" 	k="35" />
-<hkern g1="quoteleft,quotedblleft" 	g2="germandbls,thorn" 	k="16" />
-<hkern g1="three" 	g2="quotedbl,quotesingle" 	k="33" />
-<hkern g1="periodcentered" 	g2="h,k,l" 	k="125" />
-<hkern g1="periodcentered" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="41" />
-<hkern g1="one" 	g2="hyphen,uni00AD,endash,emdash" 	k="29" />
-<hkern g1="one" 	g2="quotedbl,quotesingle" 	k="25" />
-<hkern g1="seven" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="76" />
-<hkern g1="seven" 	g2="hyphen,uni00AD,endash,emdash" 	k="25" />
-<hkern g1="asterisk" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="82" />
-<hkern g1="asterisk" 	g2="AE" 	k="141" />
-<hkern g1="asterisk" 	g2="f,uniFB01,uniFB02" 	k="27" />
-<hkern g1="asterisk" 	g2="g" 	k="16" />
-<hkern g1="slash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="76" />
-<hkern g1="slash" 	g2="AE" 	k="106" />
-<hkern g1="slash" 	g2="f,uniFB01,uniFB02" 	k="41" />
-<hkern g1="slash" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="43" />
-<hkern g1="slash" 	g2="g" 	k="47" />
-<hkern g1="slash" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="37" />
-<hkern g1="slash" 	g2="s" 	k="37" />
-<hkern g1="six" 	g2="quotedbl,quotesingle" 	k="29" />
-<hkern g1="exclamdown" 	g2="W" 	k="31" />
-<hkern g1="exclamdown" 	g2="J" 	k="-201" />
-<hkern g1="exclamdown" 	g2="j" 	k="-25" />
-<hkern g1="exclamdown" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="20" />
-<hkern g1="backslash" 	g2="Y,Yacute,Ydieresis" 	k="61" />
-<hkern g1="backslash" 	g2="T" 	k="45" />
-<hkern g1="backslash" 	g2="W" 	k="68" />
-<hkern g1="backslash" 	g2="quotedbl,quotesingle" 	k="86" />
-<hkern g1="backslash" 	g2="quoteright,quotedblright" 	k="86" />
-<hkern g1="backslash" 	g2="y,yacute,ydieresis" 	k="43" />
-<hkern g1="backslash" 	g2="v,w" 	k="39" />
-<hkern g1="backslash" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="31" />
-<hkern g1="parenleft" 	g2="t" 	k="35" />
-<hkern g1="parenleft" 	g2="v,w" 	k="41" />
-<hkern g1="parenleft" 	g2="f,uniFB01,uniFB02" 	k="23" />
-<hkern g1="parenleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="59" />
-<hkern g1="parenleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="47" />
-<hkern g1="parenleft" 	g2="J" 	k="-266" />
-<hkern g1="parenleft" 	g2="s" 	k="43" />
-<hkern g1="parenleft" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-63" />
-<hkern g1="parenleft" 	g2="j" 	k="-119" />
-<hkern g1="parenleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-68" />
-<hkern g1="parenleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="51" />
-<hkern g1="parenleft" 	g2="S" 	k="27" />
-<hkern g1="parenleft" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="47" />
-<hkern g1="parenleft" 	g2="m,n,r,ntilde" 	k="29" />
-<hkern g1="parenleft" 	g2="z" 	k="33" />
-<hkern g1="zero" 	g2="quotedbl,quotesingle" 	k="29" />
-<hkern g1="bracketleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="33" />
-<hkern g1="bracketleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="25" />
-<hkern g1="bracketleft" 	g2="J" 	k="-240" />
-<hkern g1="bracketleft" 	g2="s" 	k="25" />
-<hkern g1="bracketleft" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-49" />
-<hkern g1="bracketleft" 	g2="j" 	k="-102" />
-<hkern g1="bracketleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-43" />
-<hkern g1="bracketleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="25" />
-<hkern g1="bracketleft" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
-<hkern g1="guillemotleft,guilsinglleft" 	g2="V" 	k="23" />
-<hkern g1="quotedbl,quotesingle" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="250" />
-<hkern g1="quotedbl,quotesingle" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="106" />
-<hkern g1="quotedbl,quotesingle" 	g2="AE" 	k="160" />
-<hkern g1="quotedbl,quotesingle" 	g2="f,uniFB01,uniFB02" 	k="37" />
-<hkern g1="quotedbl,quotesingle" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="35" />
-<hkern g1="quotedbl,quotesingle" 	g2="g" 	k="39" />
-<hkern g1="quotedbl,quotesingle" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="16" />
-<hkern g1="quotedbl,quotesingle" 	g2="ampersand" 	k="39" />
-<hkern g1="quotedbl,quotesingle" 	g2="space" 	k="33" />
-<hkern g1="quotedbl,quotesingle" 	g2="guillemotleft,guilsinglleft" 	k="33" />
-<hkern g1="quotedbl,quotesingle" 	g2="at" 	k="76" />
-<hkern g1="quotedbl,quotesingle" 	g2="slash" 	k="86" />
-<hkern g1="quotedbl,quotesingle" 	g2="four" 	k="156" />
-<hkern g1="quotedbl,quotesingle" 	g2="nine" 	k="25" />
-<hkern g1="quotedbl,quotesingle" 	g2="six" 	k="20" />
-<hkern g1="quotedbl,quotesingle" 	g2="zero" 	k="33" />
-</font>
-</defs></svg> 
\ No newline at end of file
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-regular-webfont.woff b/client/assets/fonts/playfairdisplay/playfairdisplay-regular-webfont.woff
deleted file mode 100755
index bac2a4a1e49492fd0a1bb1c4c690b6df97b8a995..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-regular-webfont.woff and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/playfairdisplay-regular-webfont.woff2 b/client/assets/fonts/playfairdisplay/playfairdisplay-regular-webfont.woff2
deleted file mode 100755
index b4ec1dca39d47c7dacf3660ed320b5f950af5b45..0000000000000000000000000000000000000000
Binary files a/client/assets/fonts/playfairdisplay/playfairdisplay-regular-webfont.woff2 and /dev/null differ
diff --git a/client/assets/fonts/playfairdisplay/specimen_files/grid_12-825-55-15.css b/client/assets/fonts/playfairdisplay/specimen_files/grid_12-825-55-15.css
deleted file mode 100755
index 3d6aef783a908415e66bb296d4e4bbb7366f0bcb..0000000000000000000000000000000000000000
--- a/client/assets/fonts/playfairdisplay/specimen_files/grid_12-825-55-15.css
+++ /dev/null
@@ -1,129 +0,0 @@
-/*Notes about grid:
-Columns:      12
-Grid Width:   825px
-Column Width: 55px
-Gutter Width: 15px
--------------------------------*/
- 
- 
- 
-.section 		{margin-bottom: 18px;
-}
-.section:after	{content: ".";display: block;height: 0;clear: both;visibility: hidden;}
-.section 		{*zoom: 1;}
- 
-.section .firstcolumn,
-.section .firstcol {margin-left: 0;}
- 
- 
-/* Border on left hand side of a column. */
-.border {
-  padding-left: 7px;
-  margin-left: 7px;
-  border-left: 1px solid #eee;
-}
- 
-/* Border with more whitespace, spans one column. */
-.colborder {
-    padding-left: 42px;
-  margin-left: 42px;
-  border-left: 1px solid #eee;
-}
- 
-
- 
-/* The Grid Classes */
-.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12
-{margin-left: 15px;float: left;display: inline; overflow: hidden;}
- 
- 
-.width1, .grid1, .span-1 {width: 55px;}
-.width1_2cols,.grid1_2cols {width: 20px;}
-.width1_3cols,.grid1_3cols  {width: 8px;}
-.width1_4cols,.grid1_4cols  {width: 2px;}
-.input_width1 {width: 49px;}
- 
-.width2, .grid2, .span-2 {width: 125px;}
-.width2_3cols,.grid2_3cols  {width: 31px;}
-.width2_4cols,.grid2_4cols  {width: 20px;}
-.input_width2 {width: 119px;}
- 
-.width3, .grid3, .span-3 {width: 195px;}
-.width3_2cols,.grid3_2cols {width: 90px;}
-.width3_4cols,.grid3_4cols  {width: 37px;}
-.input_width3 {width: 189px;}
- 
-.width4, .grid4, .span-4 {width: 265px;}
-.width4_3cols,.grid4_3cols  {width: 78px;}
-.input_width4 {width: 259px;}
- 
-.width5, .grid5, .span-5 {width: 335px;}
-.width5_2cols,.grid5_2cols {width: 160px;}
-.width5_3cols,.grid5_3cols  {width: 101px;}
-.width5_4cols,.grid5_4cols  {width: 72px;}
-.input_width5 {width: 329px;}
- 
-.width6, .grid6, .span-6 {width: 405px;}
-.width6_4cols,.grid6_4cols  {width: 90px;}
-.input_width6 {width: 399px;}
- 
-.width7, .grid7, .span-7 {width: 475px;}
-.width7_2cols,.grid7_2cols {width: 230px;}
-.width7_3cols,.grid7_3cols  {width: 148px;}
-.width7_4cols,.grid7_4cols  {width: 107px;}
-.input_width7 {width: 469px;}
- 
-.width8, .grid8, .span-8 {width: 545px;}
-.width8_3cols,.grid8_3cols  {width: 171px;}
-.input_width8 {width: 539px;}
- 
-.width9, .grid9, .span-9 {width: 615px;}
-.width9_2cols,.grid9_2cols {width: 300px;}
-.width9_4cols,.grid9_4cols  {width: 142px;}
-.input_width9 {width: 609px;}
- 
-.width10, .grid10, .span-10 {width: 685px;}
-.width10_3cols,.grid10_3cols  {width: 218px;}
-.width10_4cols,.grid10_4cols  {width: 160px;}
-.input_width10 {width: 679px;}
- 
-.width11, .grid11, .span-11 {width: 755px;}
-.width11_2cols,.grid11_2cols {width: 370px;}
-.width11_3cols,.grid11_3cols  {width: 241px;}
-.width11_4cols,.grid11_4cols  {width: 177px;}
-.input_width11 {width: 749px;}
- 
-.width12, .grid12, .span-12 {width: 825px;}
-.input_width12 {width: 819px;}
- 
-/* Subdivided grid spaces */
-.emptycols_left1, .prepend-1 {padding-left: 70px;}
-.emptycols_right1, .append-1 {padding-right: 70px;}
-.emptycols_left2, .prepend-2 {padding-left: 140px;}
-.emptycols_right2, .append-2 {padding-right: 140px;}
-.emptycols_left3, .prepend-3 {padding-left: 210px;}
-.emptycols_right3, .append-3 {padding-right: 210px;}
-.emptycols_left4, .prepend-4 {padding-left: 280px;}
-.emptycols_right4, .append-4 {padding-right: 280px;}
-.emptycols_left5, .prepend-5 {padding-left: 350px;}
-.emptycols_right5, .append-5 {padding-right: 350px;}
-.emptycols_left6, .prepend-6 {padding-left: 420px;}
-.emptycols_right6, .append-6 {padding-right: 420px;}
-.emptycols_left7, .prepend-7 {padding-left: 490px;}
-.emptycols_right7, .append-7 {padding-right: 490px;}
-.emptycols_left8, .prepend-8 {padding-left: 560px;}
-.emptycols_right8, .append-8 {padding-right: 560px;}
-.emptycols_left9, .prepend-9 {padding-left: 630px;}
-.emptycols_right9, .append-9 {padding-right: 630px;}
-.emptycols_left10, .prepend-10 {padding-left: 700px;}
-.emptycols_right10, .append-10 {padding-right: 700px;}
-.emptycols_left11, .prepend-11 {padding-left: 770px;}
-.emptycols_right11, .append-11 {padding-right: 770px;}
-.pull-1 {margin-left: -70px;}
-.push-1 {margin-right: -70px;margin-left: 18px;float: right;}
-.pull-2 {margin-left: -140px;}
-.push-2 {margin-right: -140px;margin-left: 18px;float: right;}
-.pull-3 {margin-left: -210px;}
-.push-3 {margin-right: -210px;margin-left: 18px;float: right;}
-.pull-4 {margin-left: -280px;}
-.push-4 {margin-right: -280px;margin-left: 18px;float: right;}
\ No newline at end of file
diff --git a/client/assets/fonts/playfairdisplay/specimen_files/specimen_stylesheet.css b/client/assets/fonts/playfairdisplay/specimen_files/specimen_stylesheet.css
deleted file mode 100755
index aecc43c32ce0ee6e9e448361a7ed21808c8af690..0000000000000000000000000000000000000000
--- a/client/assets/fonts/playfairdisplay/specimen_files/specimen_stylesheet.css
+++ /dev/null
@@ -1,396 +0,0 @@
-@import url('grid_12-825-55-15.css');
-
-/*  
-	CSS Reset by Eric Meyer - Released under Public Domain
-    http://meyerweb.com/eric/tools/css/reset/
-*/
-html, body, div, span, applet, object, iframe,
-h1, h2, h3, h4, h5, h6, p, blockquote, pre,
-a, abbr, acronym, address, big, cite, code,
-del, dfn, em, font, img, ins, kbd, q, s, samp,
-small, strike, strong, sub, sup, tt, var,
-b, u, i, center, dl, dt, dd, ol, ul, li,
-fieldset, form, label, legend, table, 
-caption, tbody, tfoot, thead, tr, th, td 
-                  {margin: 0;padding: 0;border: 0;outline: 0;
-                  font-size: 100%;vertical-align: baseline;
-                  background: transparent;}
-body              {line-height: 1;}
-ol, ul            {list-style: none;}
-blockquote, q     {quotes: none;}
-blockquote:before, blockquote:after,
-q:before, q:after {content: '';	content: none;}
-:focus            {outline: 0;}
-ins               {text-decoration: none;}
-del               {text-decoration: line-through;}
-table             {border-collapse: collapse;border-spacing: 0;}
-
-
-
-
-body {
-	color: #000;
-	background-color: #dcdcdc;
-}
-
-a {
-	text-decoration: none;
-	color: #1883ba;
-}
-
-h1{
-	font-size: 32px;
-	font-weight: normal;
-	font-style: normal;
-	margin-bottom: 18px;
-}
-
-h2{
-	font-size: 18px;
-}
-
-#container {
-	width: 865px;
-	margin: 0px auto;
-}
-
-
-#header {
-	padding: 20px;
-	font-size: 36px;
-	background-color: #000;
-	color: #fff;
-}
-
-#header span {
-	color: #666;
-}
-#main_content {
-	background-color: #fff;
-	padding: 60px 20px 20px;
-}
-
-
-#footer p {
-	margin: 0;
-	padding-top: 10px;
-	padding-bottom: 50px;
-	color: #333;
-	font: 10px Arial, sans-serif;
-}
-
-.tabs {
-	width: 100%;
-	height: 31px;
-	background-color: #444;
-}
-.tabs li {
-	float:  left;
-	margin: 0;
-	overflow: hidden;
-	background-color: #444;
-}
-.tabs li a {
-	display: block;
-	color: #fff;
-	text-decoration: none;
-	font: bold 11px/11px 'Arial';
-	text-transform: uppercase;
-	padding: 10px 15px;
-	border-right: 1px solid #fff;
-}
-
-.tabs li a:hover {
-		background-color: #00b3ff;
-
-}
-
-.tabs li.active a {
-	color:  #000;
-	background-color: #fff;
-}
-
-
-
-div.huge {
-	
-	font-size: 300px;
-	line-height: 1em;
-	padding: 0;
-	letter-spacing: -.02em;
-	overflow: hidden;
-}
-div.glyph_range {
-	font-size: 72px;
-	line-height: 1.1em;
-}
-
-.size10{ font-size: 10px; }
-.size11{ font-size: 11px; }
-.size12{ font-size: 12px; }
-.size13{ font-size: 13px; }
-.size14{ font-size: 14px; }
-.size16{ font-size: 16px; }
-.size18{ font-size: 18px; }
-.size20{ font-size: 20px; }
-.size24{ font-size: 24px; }
-.size30{ font-size: 30px; }
-.size36{ font-size: 36px; }
-.size48{ font-size: 48px; }
-.size60{ font-size: 60px; }
-.size72{ font-size: 72px; }
-.size90{ font-size: 90px; }
-
-
-.psample_row1 {	height: 120px;}
-.psample_row1 {	height: 120px;}
-.psample_row2 {	height: 160px;}
-.psample_row3 {	height: 160px;}
-.psample_row4 {	height: 160px;}
-
-.psample {
-	overflow: hidden;
-	position: relative;
-}
-.psample p {
-	line-height: 1.3em;
-	display: block;
-	overflow: hidden;
-	margin: 0;
-}
-
-.psample span {
-	margin-right: .5em;
-}
-
-.white_blend {
-	width: 100%;
-	height: 61px;
-	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==);
-	position: absolute;
-	bottom: 0;
-}
-.black_blend {
-	width: 100%;
-	height: 61px;
-	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC);
-	position: absolute;
-	bottom: 0;
-}
-.fullreverse {
-	background:  #000 !important;
-	color:  #fff !important;
-	margin-left: -20px;
-	padding-left: 20px;
-	margin-right: -20px;
-	padding-right: 20px;
-	padding: 20px;
-	margin-bottom:0;
-}
-
-
-.sample_table td {
-	padding-top: 3px;
-	padding-bottom:5px;
-	padding-left: 5px;
-	vertical-align: middle;
-	line-height: 1.2em;
-}
-
-.sample_table td:first-child {
-	background-color: #eee;
-	text-align: right;
-	padding-right: 5px;
-	padding-left: 0;
-	padding: 5px;
-	font: 11px/12px "Courier New", Courier, mono;
-}
-
-code {
-	white-space: pre;
-	background-color: #eee;
-	display: block;
-	padding: 10px;
-	margin-bottom: 18px;
-	overflow: auto;
-}
-
-
-.bottom,.last 	{margin-bottom:0 !important; padding-bottom:0 !important;}
-
-.box  { 
-  padding: 18px; 
-  margin-bottom: 18px; 
-  background: #eee; 
-}
-
-.reverse,.reversed { background:  #000 !important;color:  #fff !important; border: none !important;}
-
-#bodycomparison {
-	position: relative;
-	overflow: hidden;
-	font-size: 72px;
-	height: 90px;
-	white-space: nowrap;
-}
-
-#bodycomparison div{
-	font-size: 72px;
-	line-height: 90px;
-	display: inline;
-	margin: 0 15px 0 0;
-	padding: 0;
-}
-
-#bodycomparison div span{
-	font: 10px Arial;
-	position: absolute;
-	left: 0;
-}
-#xheight {
-	float: none;
-	position: absolute;
-	color: #d9f3ff;
-	font-size: 72px;
-	line-height: 90px;
-}
-
-.fontbody {
- position: relative;
-}
-.arialbody{
-	font-family: Arial;
-	position: relative;
-}
-.verdanabody{
-	font-family: Verdana;
-	position: relative;
-}
-.georgiabody{
-	font-family: Georgia;
-	position: relative;
-}
-
-/* @group Layout page
- */
-
-#layout h1 {
-	font-size: 36px;
-	line-height: 42px;
-	font-weight: normal;
-	font-style: normal;
-}
-
-#layout h2 {
-	font-size: 24px;
-	line-height: 23px;
-	font-weight: normal;
-	font-style: normal;
-}
-
-#layout h3 {
-	font-size: 22px;
-	line-height: 1.4em;
-	margin-top: 1em;
-	font-weight: normal;
-	font-style: normal;
-}
-
-
-#layout p.byline {
-	font-size: 12px;
-	margin-top: 18px;
-	line-height: 12px;
-	margin-bottom: 0;
-}
-#layout p {
-	font-size: 14px;
-	line-height: 21px;
-	margin-bottom: .5em;
-}
-
-#layout p.large{
-	font-size: 18px;
-	line-height: 26px;
-}
-
-#layout .sidebar p{
-	font-size: 12px;
-	line-height: 1.4em;
-}
-
-#layout p.caption {
-	font-size: 10px;
-	margin-top: -16px;
-	margin-bottom: 18px;
-}
-
-/* @end */
-
-/* @group Glyphs */
-
-#glyph_chart div{
-	background-color: #d9f3ff;
-	color: black;
-	float: left;
-	font-size: 36px;
-	height: 1.2em;
-	line-height: 1.2em;
-	margin-bottom: 1px;
-	margin-right: 1px;
-	text-align: center;
-	width: 1.2em;
-	position: relative;
-	padding: .6em .2em .2em;
-}
-
-#glyph_chart div p {
-	position: absolute;
-	left: 0;
-	top: 0;
-	display: block;
-	text-align: center;
-	font: bold 9px Arial, sans-serif;
-	background-color: #3a768f;
-	width: 100%;
-	color: #fff;
-	padding: 2px 0;
-}
-
-
-#glyphs h1 {
-	font-family: Arial, sans-serif;
-}
-/* @end */
-
-/* @group Installing */
-
-#installing {
-	font: 13px Arial, sans-serif;
-}
-
-#installing p,
-#glyphs p{
-	line-height: 1.2em;
-	margin-bottom: 18px;
-	font: 13px Arial, sans-serif;
-}
-
-
-
-#installing h3{
-	font-size: 15px;
-	margin-top: 18px;
-}
-
-/* @end */
-
-#rendering h1 {
-	font-family: Arial, sans-serif;
-}
-.render_table td {
-	font: 11px "Courier New", Courier, mono;
-	vertical-align: middle;
-}
-
-
diff --git a/client/assets/fonts/playfairdisplay/stylesheet.css b/client/assets/fonts/playfairdisplay/stylesheet.css
deleted file mode 100755
index 649b4d9ba1f4d8aa5393ab7eeb7ebf65b44ffe3e..0000000000000000000000000000000000000000
--- a/client/assets/fonts/playfairdisplay/stylesheet.css
+++ /dev/null
@@ -1,96 +0,0 @@
-/* Generated by Font Squirrel (https://www.fontsquirrel.com) on January 13, 2017 */
-
-
-
-@font-face {
-    font-family: 'playfair_displayblack';
-    src: url('playfairdisplay-black-webfont.eot');
-    src: url('playfairdisplay-black-webfont.eot?#iefix') format('embedded-opentype'),
-         url('playfairdisplay-black-webfont.woff2') format('woff2'),
-         url('playfairdisplay-black-webfont.woff') format('woff'),
-         url('playfairdisplay-black-webfont.ttf') format('truetype'),
-         url('playfairdisplay-black-webfont.svg#playfair_displayblack') format('svg');
-    font-weight: normal;
-    font-style: normal;
-
-}
-
-
-
-
-@font-face {
-    font-family: 'playfair_displayblack_italic';
-    src: url('playfairdisplay-blackitalic-webfont.eot');
-    src: url('playfairdisplay-blackitalic-webfont.eot?#iefix') format('embedded-opentype'),
-         url('playfairdisplay-blackitalic-webfont.woff2') format('woff2'),
-         url('playfairdisplay-blackitalic-webfont.woff') format('woff'),
-         url('playfairdisplay-blackitalic-webfont.ttf') format('truetype'),
-         url('playfairdisplay-blackitalic-webfont.svg#playfair_displayblack_italic') format('svg');
-    font-weight: normal;
-    font-style: normal;
-
-}
-
-
-
-
-@font-face {
-    font-family: 'playfair_displaybold';
-    src: url('playfairdisplay-bold-webfont.eot');
-    src: url('playfairdisplay-bold-webfont.eot?#iefix') format('embedded-opentype'),
-         url('playfairdisplay-bold-webfont.woff2') format('woff2'),
-         url('playfairdisplay-bold-webfont.woff') format('woff'),
-         url('playfairdisplay-bold-webfont.ttf') format('truetype'),
-         url('playfairdisplay-bold-webfont.svg#playfair_displaybold') format('svg');
-    font-weight: normal;
-    font-style: normal;
-
-}
-
-
-
-
-@font-face {
-    font-family: 'playfair_displaybold_italic';
-    src: url('playfairdisplay-bolditalic-webfont.eot');
-    src: url('playfairdisplay-bolditalic-webfont.eot?#iefix') format('embedded-opentype'),
-         url('playfairdisplay-bolditalic-webfont.woff2') format('woff2'),
-         url('playfairdisplay-bolditalic-webfont.woff') format('woff'),
-         url('playfairdisplay-bolditalic-webfont.ttf') format('truetype'),
-         url('playfairdisplay-bolditalic-webfont.svg#playfair_displaybold_italic') format('svg');
-    font-weight: normal;
-    font-style: normal;
-
-}
-
-
-
-
-@font-face {
-    font-family: 'playfair_displayitalic';
-    src: url('playfairdisplay-italic-webfont.eot');
-    src: url('playfairdisplay-italic-webfont.eot?#iefix') format('embedded-opentype'),
-         url('playfairdisplay-italic-webfont.woff2') format('woff2'),
-         url('playfairdisplay-italic-webfont.woff') format('woff'),
-         url('playfairdisplay-italic-webfont.ttf') format('truetype'),
-         url('playfairdisplay-italic-webfont.svg#playfair_displayitalic') format('svg');
-    font-weight: normal;
-    font-style: normal;
-
-}
-
-
-
-
-@font-face {
-    font-family: 'playfair_displayregular';
-    src: url('playfairdisplay-regular-webfont.eot');
-    src: url('playfairdisplay-regular-webfont.eot?#iefix') format('embedded-opentype'),
-         url('playfairdisplay-regular-webfont.woff2') format('woff2'),
-         url('playfairdisplay-regular-webfont.woff') format('woff'),
-         url('playfairdisplay-regular-webfont.ttf') format('truetype'),
-         url('playfairdisplay-regular-webfont.svg#playfair_displayregular') format('svg');
-    font-weight: normal;
-    font-style: normal;
-
-}
\ No newline at end of file
diff --git a/client/components/AnalysisCard.vue b/client/components/AnalysisCard.vue
index ea93aa0c99e2e86e2397f72577e9aba049e4713c..b685d02f7ce1060bbaa48562c141d0a94ca0ffff 100644
--- a/client/components/AnalysisCard.vue
+++ b/client/components/AnalysisCard.vue
@@ -1,58 +1,88 @@
 <template>
-    <v-card :elevation=0  :class="myClass">
+  <v-card :elevation=0 :class="myClass">
+    <v-col
+      cols="12"
+      sm="8"
+      offset-sm="2"
+      lg="6"
+      offset-lg="3">
+      <v-card-title class="card-title">
+        {{ title }}
+      </v-card-title>
+      <v-row>
         <v-col
-        cols="12"
-        sm="8"
-        offset-sm="2"
-        lg="6"
-        offset-lg="3">
-        <v-card-title class="card-title"> {{title}} </v-card-title>
-        <v-row>
-          <v-col
           cols="12"
           sm="5"
           md="4">
-            <v-img
-             class="mx-auto"
+          <v-img
+            class="mx-auto"
             height="200"
             width="200"
-            :src='myImg'
-          ></v-img>
-          </v-col>
-          <v-col
+            :src='myImg'>
+          </v-img>
+        </v-col>
+        <v-col
           cols="12"
           sm="7"
           md="8">
-            <v-card-text style="font-size:18px; color:black;text-align: justify;">
-             {{description}}
-            </v-card-text>
-          </v-col>
-          <v-col
+          <v-card-text class="card-text">
+            {{ description }}
+          </v-card-text>
+        </v-col>
+        <v-col
           cols="12"
           md="8"
           offset-md="2">
-          <v-card-actions style="margin: 0 auto; background: white; border-radius: 3px; padding: 20px; box-shadow: 1px 1px 5px #aeaeae;">
-          <v-card-text style="font-size:18px; text-align:center;"> {{short_btn}}</v-card-text>
-          <v-btn :to ="link" :style="myStyle" style="color:#fff; text-transform:none; margin:0 auto;">
-          {{short_desc}}
-          </v-btn>
-        </v-card-actions>
-        </v-col>
-        </v-row>
+          <v-card-actions class="card-actions">
+            <v-card-text class="card-text"> {{ shortBtn }}</v-card-text>
+            <v-btn :to="link" class="card-button" :style="myStyle">
+              {{ shortDesc }}
+            </v-btn>
+          </v-card-actions>
         </v-col>
-    </v-card>
+      </v-row>
+    </v-col>
+  </v-card>
 </template>
 
 <script>
-  export default {
-    name:"AnalysisCard",
-    props: ['title', "description", "short_btn", "short_desc","link","myStyle","myClass","myImg"]
+export default {
+  name: "AnalysisCard",
+  props: {
+    title: { type: String, default: '' },
+    description: { type: String, default: '' },
+    shortBtn: { type: String, default: '' },
+    shortDesc: { type: String, default: '' },
+    link: { type: String, default: '' },
+    myStyle: { type: Object, default() { return {} } },
+    myClass: { type: String, default: '' },
+    myImg: { type: String, default: '' }
   }
+}
 </script>
 
-<style>
+<style scoped>
 .card-title {
-  word-break:unset;
+  word-break: unset;
+}
+
+.card-text {
+  font-size: 18px;
+  text-align: justify;
+}
+
+.card-actions {
+  background: white;
+  border-radius: 3px;
+  box-shadow: 1px 1px 5px #aeaeae;
+  margin: 0 auto;
+  padding: 20px;
+}
+
+.card-button {
+  color: #fff;
+  margin: 0 auto;
+  text-transform: none;
 }
 </style>
 
diff --git a/client/components/Heatmap.js b/client/components/Heatmap.js
index 3d4f9416d989397aed43741fa9fd093615936528..c40d42e36f0b0d37b794214476ac0af7e75f6106 100644
--- a/client/components/Heatmap.js
+++ b/client/components/Heatmap.js
@@ -1,207 +1,124 @@
 import Plotly from 'plotly.js-dist';
 const d3 = require("d3");
 
-
-
-const couleur = ['red', 'blue'];
-
 const trace1 = {
-    x: [],
-    y: [],
-    type: 'scatter',
+  x: [],
+  y: [],
+  type: 'scatter',
 };
 const plotHeatMapSize = 1100;
 
-
 export default {
-    display: 'Scatter',
-    data: {
-        data: [trace1],
-        attr: { displayModeBar: false },
-        layout: {
-            plot_bgcolor: '#d3d3d3',
-            paper_bgcolor: '#d3d3d3',
-        },
+  display: 'Scatter',
+  data: {
+    data: [trace1],
+    attr: { displayModeBar: false },
+    layout: {
+      plot_bgcolor: '#d3d3d3',
+      paper_bgcolor: '#d3d3d3',
     },
-    makePlot(parent,selectedChr,selectedRegion){
-
-        const layout = {
-            title : "Z score Heatmap",
-            autosize: false,
-
-            width: plotHeatMapSize,
-            font:{
-                size:8
-            },
-            margin: {
-                l: 90,
-                r: 50,
-                b: 60,
-                t: 30,
-                pad: 4
-            },
-            /* margin: {
-                l: 90,
-                r: 50,
-                b: 10,
-                t: 30,
-                pad: 4
-            }, */
-            xaxis: {
-                showticklabels :true,
-                ticks: '',
-                side: 'bottom',
-                fixedrange:true,
-                type: 'category'
-                ,
-                /* rangeslider: {
-                    thickness :0.07,
-                } */
-            },
-            yaxis: {
-                ticks: '',
-                fixedrange:true,
-                ticksuffix: ' '
-            },
-            showlegend: false
-        };
-
-
-
-        const why = this;
-        const idProject = parent.project.id;
-
-        d3.csv(process.env.API_URL+"/projects/" + idProject + "/heatmap/" + selectedChr + "/"+selectedRegion).then(
-            function(allRows){
-                // let x = []
-                // let y = [];
-                const cols =[];
-                // const lines = ["z_GIANT_WC","z_GIANT_WHR"];
-                const lines = [];
-
-                // const plotType = "Heatmap";
-                for(const valeur in allRows[0]) {
-                  if ((valeur !== "")&&(valeur!=='ID')){
-                    cols.push(valeur);
-                  }
-                }
-
-                const arr = [];
-                let row =  allRows[0];
-                console.log(row);
-                console.log(allRows);
-
-                for (let i=0; i<allRows.length; i++) {
-                  row = allRows[i];
-                  // Creates an empty line
-                  arr.push([]);
-                  /* if(plotType === "Heatmap"){
-
-                  } */
-                  lines[i] = row.ID;
-                  // Adds cols to the empty line:
-                  arr[i].push( new Array(cols));
-                  for(let j=0; j < cols.length; j++){
-                    // if(plotType === "Heatmap"){
-                    arr[i][j] = row[cols[j]];
-                    // }
-                    /* else if(row[cols[j]] === 0){
-                        console.log("ZEROOOOOOO !")
-                        arr[i][j] = 32;
-                    }
-                    else{
-                        arr[i][j] = -Math.log10(row[cols[j]]);
-                    } */
-
-                  }
-                }
-
-                console.log(cols);
-
-                console.log(lines);
-
-                // const customDict = {'Custom1':'','Custom2':''};
-                /* const heatL = document.getElementById('HeatList');
-                console.log(heatL.selectedIndex);
-                const colorsc = heatL.options[heatL.selectedIndex].value;
-                */
-                /*
-                if (colorsc in customDict){
-                  colorsc = colorScale[colorsc];
-                }
-                */
-
-                console.log(cols[0]);
-
-                console.log(lines[0]);
-
-                const data = [
-                  {
-                    z: arr,
-                    x: cols,
-                    y: lines,
-                    type: 'heatmap',
-                    colorscale: [['-1','#4A6FE3'],
-                    ['-0.9','#5F7BE1'],
-                    ['-0.8','#7086E1'],
-                    ['-0.7','#8091E1'],
-                    ['-0.6','#8F9DE1'],
-                    ['-0.5','#9DA8E2'],
-                    ['-0.4','#ABB4E2'],
-                    ['-0.3','#B9BFE3'],
-                    ['-0.2','#C7CBE3'],
-                    ['-0.1','#D5D7E3'],
-                    ['0','#E2E2E2'],
-                    ['0.1','#E4D3D6'],['0.2','#E6C4C9'],
-                    ['0.3','#E6B4BD'],['0.4','#E5A5B1'],
-                    ['0.5','#E495A5'],['0.6','#E28699'],
-                    ['0.7','#DF758D'],['0.8','#DB6581'],
-                    ['0.9','#D75376'],['1','#D33F6A']],
-                    // colorscale :colorsc,
-                    transforms: [{
-                      type: 'filter',
-                      target: 'y',
-                      operation: '!=',
-                      value: 'PVALmin'
-                    }]
-                  }
-                ];
-
-                console.log(data);
-
-                /* const colorscale =  [
-                    ['0.0', 'rgb(165,0,38)'],
-                    ['0.111111111111', 'rgb(215,48,39)'],
-                    ['0.222222222222', 'rgb(244,109,67)'],
-                    ['0.333333333333', 'rgb(253,174,97)'],
-                    ['0.444444444444', 'rgb(254,224,144)'],
-                    ['0.555555555556', 'rgb(224,243,248)'],
-                    ['0.666666666667', 'rgb(171,217,233)'],
-                    ['0.777777777778', 'rgb(116,173,209)'],
-                    ['0.888888888889', 'rgb(69,117,180)'],
-                    ['1.0', 'rgb(49,54,149)']
-                  ];
-                data.colorscale = colorscale; */
-                // dataplotheatmap = [];
-                // dataplotpheno =[];
-
-
-                // console.log(why);
-                /* why.heatmapgraph.layout = layout;
-                why.heatmapgraph.data = data;
-                why.heatmapgraph.attr = { displayModeBar: false */
-
-                why.data.data = data;
-                console.log(data);
-                why.data.layout = layout;
-
-                Plotly.newPlot('divHeatPlot', why.data.data,why.data.layout,{displayModeBar: false});
-
-
-
-                console.log(parent.submanhattan);
-                parent.submanhattan.makePlot(parent,selectedChr,selectedRegion);
-            }
-        );
-    }
+  },
+  makePlot(parent, selectedChr, selectedRegion) {
+    const layout = {
+      title: "Z score Heatmap",
+      autosize: false,
+      width: plotHeatMapSize,
+      font: {
+        size: 8
+      },
+      margin: {
+        l: 90,
+        r: 50,
+        b: 60,
+        t: 30,
+        pad: 4
+      },
+      xaxis: {
+        showticklabels: true,
+        ticks: '',
+        side: 'bottom',
+        fixedrange: true,
+        type: 'category'
+      },
+      yaxis: {
+        ticks: '',
+        fixedrange: true,
+        ticksuffix: ' '
+      },
+      showlegend: false
+    };
+
+    const why = this;
+    const idProject = parent.project.id;
+
+    d3.csv(process.env.API_URL + "/projects/" + idProject + "/heatmap/" + selectedChr + "/" + selectedRegion).then(
+      function (allRows) {
+        const cols = [];
+        const lines = [];
+
+        for (const valeur in allRows[0]) {
+          if ((valeur !== "") && (valeur !== 'ID')) {
+            cols.push(valeur);
+          }
+        }
+
+        const arr = [];
+        let row = allRows[0];
+
+        for (let i = 0; i < allRows.length; i++) {
+          row = allRows[i];
+          arr.push([]);
+          lines[i] = row.ID;
+          arr[i].push(new Array(cols));
+          for (let j = 0; j < cols.length; j++) {
+            arr[i][j] = row[cols[j]];
+          }
+        }
+
+        const data = [
+          {
+            z: arr,
+            x: cols,
+            y: lines,
+            type: 'heatmap',
+            colorscale: [
+              ['-1', '#4A6FE3'],
+              ['-0.9', '#5F7BE1'],
+              ['-0.8', '#7086E1'],
+              ['-0.7', '#8091E1'],
+              ['-0.6', '#8F9DE1'],
+              ['-0.5', '#9DA8E2'],
+              ['-0.4', '#ABB4E2'],
+              ['-0.3', '#B9BFE3'],
+              ['-0.2', '#C7CBE3'],
+              ['-0.1', '#D5D7E3'],
+              ['0', '#E2E2E2'],
+              ['0.1', '#E4D3D6'],
+              ['0.2', '#E6C4C9'],
+              ['0.3', '#E6B4BD'],
+              ['0.4', '#E5A5B1'],
+              ['0.5', '#E495A5'],
+              ['0.6', '#E28699'],
+              ['0.7', '#DF758D'],
+              ['0.8', '#DB6581'],
+              ['0.9', '#D75376'],
+              ['1', '#D33F6A']
+            ],
+            transforms: [{
+              type: 'filter',
+              target: 'y',
+              operation: '!=',
+              value: 'PVALmin'
+            }]
+          }
+        ];
+
+        why.data.data = data;
+        why.data.layout = layout;
+
+        Plotly.newPlot('divHeatPlot', why.data.data, why.data.layout, { displayModeBar: false });
+        parent.submanhattan.makePlot(parent, selectedChr, selectedRegion);
+      }
+    );
+  }
 }
diff --git a/client/components/Manhattan.js b/client/components/Manhattan.js
index ec2e059e40da8af712daa9559b758c2e5095a751..2218a041c7e094ca79abe2fa8874d64518e9b25e 100644
--- a/client/components/Manhattan.js
+++ b/client/components/Manhattan.js
@@ -1,367 +1,345 @@
 import Plotly from 'plotly.js-dist';
 const d3 = require("d3");
 
-
-const chromosomes = [	"chr1","chr2","chr3","chr4","chr5","chr6","chr7","chr8","chr9",
-							"chr10","chr11","chr12","chr13","chr14","chr15","chr16","chr17","chr18","chr19",
-							"chr20","chr21","chr22"];
-
-
-const couleur = ['orangered', '#4287f5'];
+const chromosomes = [
+  "chr1",
+  "chr2",
+  "chr3",
+  "chr4",
+  "chr5",
+  "chr6",
+  "chr7",
+  "chr8",
+  "chr9",
+  "chr10",
+  "chr11",
+  "chr12",
+  "chr13",
+  "chr14",
+  "chr15",
+  "chr16",
+  "chr17",
+  "chr18",
+  "chr19",
+  "chr20",
+  "chr21",
+  "chr22"
+];
+
+const color = ['orangered', '#4287f5'];
 
 let trace1 = {
-    x: [],
-    y: [],
-    type: 'scatter',
+  x: [],
+  y: [],
+  type: 'scatter',
 };
 
-
 const tableLines = [];
 
 export default {
-    display: 'Scatter',
-    data: {
-        data: [trace1],
-        attr: { displayModeBar: false },
-        layout: {
-            plot_bgcolor: '#d3d3d3',
-            paper_bgcolor: '#d3d3d3',
-        },
-        datarows:[]
+  display: 'Scatter',
+  data: {
+    data: [trace1],
+    attr: { displayModeBar: false },
+    layout: {
+      plot_bgcolor: '#d3d3d3',
+      paper_bgcolor: '#d3d3d3',
     },
-    updateTrace(){
-        trace1 = {
-            x: [1, 2, 3, 4],
-            y: [10, 15, 13, 17],
+    datarows: []
+  },
+  updateTrace() {
+    trace1 = {
+      x: [1, 2, 3, 4],
+      y: [10, 15, 13, 17],
+      type: 'scatter',
+    };
+
+    this.data.data = [trace1];
+  },
+  makePlot(parent) {
+    const plotHeatMapSize = 1100;
+    const why = this;
+    const idProject = parent.project.id;
+
+    d3.csv(process.env.API_URL + "/projects/" + idProject + "/genome")
+      .then((rows) => {
+        why.data.datarows = rows;
+        const dataplot = chromosomes.map((chr) => {
+          const rowsFiltered = rows.filter((row) => {
+            return (row.CHR === chr);
+          });
+          const xvar = unpack(rowsFiltered, 'Region');
+          const yvar = unpackLog(rowsFiltered, 'JOSTmin');
+          return {
+            name: chr,
+            x: xvar,
+            y: yvar,
+            text: unpackText(rowsFiltered),
+            hovertemplate: '%{text}',
+            mode: 'markers',
+            showlegend: false,
             type: 'scatter',
+            marker: {
+              color: 'red'
+            }
+          }
+        });
+
+        why.data.data = dataplot;
+
+        const layout = {
+          title: "Joint test association results by regions",
+          width: plotHeatMapSize,
+          hovermode: 'closest',
+          showLink: false,
+          modeBarButtonsToRemove: [],
+          font: {
+            size: 8
+          },
+          margin: {
+            l: 80,
+            r: 50,
+            b: 60,
+            t: 30,
+            pad: 4
+          },
+          xaxis: {
+            showgrid: true,
+            showticklabels: true,
+            tickmode: "array",
+            tickvals: [
+              'Region67',
+              'Region206',
+              'Region339',
+              'Region461',
+              'Region577',
+              'Region688',
+              'Region793',
+              'Region890',
+              'Region974',
+              'Region1053',
+              'Region1138',
+              'Region1221',
+              'Region1293',
+              'Region1352',
+              'Region1405',
+              'Region1457',
+              'Region1507',
+              'Region1555',
+              'Region1598',
+              'Region1637',
+              'Region1668',
+              'Region1692'
+            ],
+            ticktext: [
+              '1',
+              '2',
+              '3',
+              '4',
+              '5',
+              '6',
+              '7',
+              '8',
+              '9',
+              '10',
+              '11',
+              '12',
+              '13',
+              '14',
+              '15',
+              '16',
+              '17',
+              '18',
+              '19',
+              '20',
+              '21',
+              '22'
+            ],
+            tickfont: {
+              family: 'Arial, sans-serif',
+              size: 12,
+              color: 'black',
+            },
+            title: "chromosome",
+            side: 'bottom',
+            type: 'category',
+            range: [0, '1704'],
+          },
+          yaxis: {
+            range: [0, '2.3'],
+            title: "-log(Pvalue)",
+            type: 'log',
+            tickfont: {
+              family: 'Arial, sans-serif',
+              size: 10,
+              color: 'black'
+            }
+          },
         };
-        this.data.data = [trace1];
-
-    },
-    makePlot(parent){
-
-        // parent.text = "makePlot";
-
-        const plotHeatMapSize = 1100;
-
-        const why = this;
-        const idProject = parent.project.id;
-
-        d3.csv(process.env.API_URL+"/projects/" + idProject + "/genome").then(
-				function(rows){
-                    // console.log(rows);
-                    why.data.datarows =rows;
-                    const dataplot = chromosomes.map(function(chr) {
-
-                        const rowsFiltered = rows.filter(function(row) {
-                                    return (row.CHR === chr);
-                                });
-                        const xvar = unpack(rowsFiltered, 'Region');
-                        const yvar = unpackLog(rowsFiltered, 'JOSTmin');
-                        //  console.log(xvar);
-                        //  console.log(yvar);
-                        return {
-                            name: chr,
-                            x: xvar,
-                            y: yvar,
-
-                            text: unpackText(rowsFiltered),
-
-
-                            hovertemplate: '%{text}',
-                            mode: 'markers',
-                            showlegend : false,
-                            type:'scatter',
-                            marker: {
-                                color: 'red'
-                            }
-                        }
-                    });
-                    // console.log(test);
-                    // why.data.selected = dataplot;
-
-                    why.data.data = dataplot;
-
-
-
-
-                    const  layout = {
-                        title: "Joint test association results by regions",
-                        width: plotHeatMapSize,
-                        hovermode:'closest',
-                        showLink: false,
-                        modeBarButtonsToRemove: [],
-                        font:{
-                            size:8
-                        },
-                        margin: {
-                            l: 80,
-                            r: 50,
-                            b: 60,
-                            t: 30,
-                            pad: 4
-                        },
-                        xaxis: {
-
-                            showgrid : true,
-                            showticklabels :true,
-                            tickmode: "array",
-                            tickvals: ['Region67', 'Region206', 'Region339', 'Region461',
-                                    'Region577', 'Region688', 'Region793', 'Region890',
-                                    'Region974', 'Region1053', 'Region1138', 'Region1221',
-                                    'Region1293', 'Region1352', 'Region1405', 'Region1457',
-                                    'Region1507', 'Region1555', 'Region1598', 'Region1637',
-                                    'Region1668', 'Region1692'],
-                            ticktext: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11',
-                                    '12', '13', '14', '15', '16', '17', '18', '19', '20',
-                                    '21', '22'],
-                            tickfont: {
-                                family: 'Arial, sans-serif',
-                                size: 12,
-                                color: 'black',
-                            },
-                            title: "chromosome",
-                            side: 'bottom',
-                            type: 'category',
-                            range : [0,'1704'],
-
-                        },
-                        yaxis: {
-
-                            range : [0,'2.3'],
-                            // autorange: true,
-                            title: "-log(Pvalue)",
-                            type: 'log',
-
-
-                            tickfont: {
-                                family: 'Arial, sans-serif',
-                                size: 10,
-                                color: 'black'
-                            }
-
-                        },
-                    };
-
-                    // why.data.layout = layout;
-                    /* why.heatmapgraph = {
-                        data : dataplot,
-                        layout : layout
-                    }; */
-
-
-                    why.data.layout = layout
-
-                    // why.data.attr = { displayModeBar: false };
-
-                    //          ================================================================
-
-                    let k = 1;
-                    let i;
-                    let j;
-                    const markerOffset = 0.04;
-                    // const tableLines = [];
-
-                    for (i = 0; i < dataplot.length; i++) {
-
-                        k = 1-k;
-                        dataplot[i].marker.color = couleur[k];
-
-                        for (j=0; j<dataplot[i].x.length; j++){
-                            // console.log(offsetSignal( dataplot[i].y[j], markerOffset));
-                            const dict = {
-                                "type": 'line',
-                                "xref": 'x',
-                                "yref": 'y',
-                                "x0": dataplot[i].x[j],
-                                "y0": 0.01,
-                                "x1": dataplot[i].x[j],
-                                "y1": offsetSignal( dataplot[i].y[j], markerOffset),
-                                "line": {
-                                    color: dataplot[i].marker.color,
-                                    width: 0.3
-                                }
-                            };
-
-                            tableLines.push(dict);
-                        }
-                    }
-
-
-                    const update = {
-                                shapes: tableLines
-                    };
-
-
-                    const suggestiveline = -Math.log10(1e-5);
-                    const suggestivelineColor = "orange";
-
-                    const genomewideline = -Math.log10(5e-8);
-                    const genomewidelineColor = "green";
-
-                    const datmp = dataplot[0];
-                    const tbx = datmp.x;
-                    const d = tbx[0];
-                    // const d =1;
-
-                    const datmp2 = dataplot[dataplot.length-1];
-                    const tbx2 = datmp2.x
-                    const e = tbx2[tbx2.length-1];
-                    // const e = 22;
-
-
-
-                    const trace1 = {
-                        x: [d, e],
-                        y: [suggestiveline, suggestiveline],
-                        mode: 'lines+markers+text',
-                        name: '1e-5',
-                        textposition: 'top',
-                        type: 'scatter',
-                        showlegend: true,
-                        marker: {
-                        color: suggestivelineColor
-                        }
-                    };
-
-                    const trace2 = {
-                        x: [d, e],
-                        y: [genomewideline, genomewideline],
-                        mode: 'lines+markers+text',
-                        name: '5e-8',
-                        textposition: 'top',
-                        type: 'scatter',
-                        showlegend: true,
-                        marker: {
-                        color: genomewidelineColor
-                            }
-                    };
-
-                    why.data.layout.shapes = tableLines;
-                    why.data.data.push(trace1);
-                    why.data.data.push(trace2);
-                    console.log(tableLines);
-
-                    // parent.createHeatmapPlot();
-
-                    Plotly.newPlot('divWholeStatPlot', why.data.data,why.data.layout,{displayModeBar: false});
-                    parent.$refs.divWholeStatPlot.on('plotly_click', function(data){
-                        console.log(data);
-                        parent.isready2=true;
-                        why.reactOnClick(data);
-                        Plotly.update('divWholeStatPlot',why.data.layout);
-
-                        const selectedChr = data.points.map(function(d){
-                            return d.data.name;
-
-                        });
-                        const selectedRegion = data.points[0].x;
-                        console.log(selectedChr+" "+selectedRegion);
-
-                        console.log(parent);
-
-                        parent.heatmap.makePlot(parent,selectedChr,selectedRegion);
-
-                    });
-
-                });
-
-
-
 
+        why.data.layout = layout
+
+        let k = 1;
+        let i;
+        let j;
+        const markerOffset = 0.04;
+
+        for (i = 0; i < dataplot.length; i++) {
+
+          k = 1 - k;
+          dataplot[i].marker.color = color[k];
+
+          for (j = 0; j < dataplot[i].x.length; j++) {
+            const dict = {
+              "type": 'line',
+              "xref": 'x',
+              "yref": 'y',
+              "x0": dataplot[i].x[j],
+              "y0": 0.01,
+              "x1": dataplot[i].x[j],
+              "y1": offsetSignal(dataplot[i].y[j], markerOffset),
+              "line": {
+                color: dataplot[i].marker.color,
+                width: 0.3
+              }
+            };
+
+            tableLines.push(dict);
+          }
+        }
 
+        const update = {
+          shapes: tableLines
+        };
 
-    },
-    reactOnClick(data){
-        let updaterange = data.points[0].x.split("Region");
-
-        console.log("updaterange " + updaterange); // __Modif__CN__
-
-        console.log(updaterange[1]);
-                    // region 840 -> 850
-        const tmp= Number(updaterange[1])+10;
-
-        console.log("tmp " + tmp); // __Modif__CN__
-
-        updaterange = "Region"+tmp;
-        console.log("updaterange "+updaterange);
-
-        const selectRectangle = {
-            "type": 'rect',
-            // x-reference is assigned to the x-values
-            "xref": 'x',
-            // y-reference is assigned to the plot paper [0,1]
-            "yref": 'paper',
-            "x0": data.points[0].x,
-            "y0": 0,
-            "x1": updaterange,
-            "y1": 1,
-            "fillcolor": '#d3d3d3',
-            "opacity": 0.6,
-            "line": {
-                width: 0
-            }
+        const suggestiveline = -Math.log10(1e-5);
+        const suggestivelineColor = "orange";
+
+        const genomewideline = -Math.log10(5e-8);
+        const genomewidelineColor = "green";
+
+        const datmp = dataplot[0];
+        const tbx = datmp.x;
+        const d = tbx[0];
+
+        const datmp2 = dataplot[dataplot.length - 1];
+        const tbx2 = datmp2.x
+        const e = tbx2[tbx2.length - 1];
+
+        const trace1 = {
+          x: [d, e],
+          y: [suggestiveline, suggestiveline],
+          mode: 'lines+markers+text',
+          name: '1e-5',
+          textposition: 'top',
+          type: 'scatter',
+          showlegend: true,
+          marker: {
+            color: suggestivelineColor
+          }
         };
 
-        console.log(selectRectangle);
-        if (tableLines[tableLines.length - 1].type === 'rect') {
-            console.log("ca marche");
-            tableLines.pop();
-        }
-        tableLines.push(selectRectangle);
-        console.log(this.data.layout);
-        this.data.layout.shapes = tableLines;
+        const trace2 = {
+          x: [d, e],
+          y: [genomewideline, genomewideline],
+          mode: 'lines+markers+text',
+          name: '5e-8',
+          textposition: 'top',
+          type: 'scatter',
+          showlegend: true,
+          marker: {
+            color: genomewidelineColor
+          }
+        };
 
+        why.data.layout.shapes = tableLines;
+        why.data.data.push(trace1);
+        why.data.data.push(trace2);
+
+        Plotly.newPlot('divWholeStatPlot', why.data.data, why.data.layout, { displayModeBar: false });
+        parent.$refs.divWholeStatPlot.on('plotly_click', function (data) {
+          parent.isready2 = true;
+          why.reactOnClick(data);
+          Plotly.update('divWholeStatPlot', why.data.layout);
+
+          const selectedChr = data.points.map(function (d) {
+            return d.data.name;
+
+          });
+
+          const selectedRegion = data.points[0].x;
+          parent.heatmap.makePlot(parent, selectedChr, selectedRegion);
+
+        });
+
+      });
+  },
+  reactOnClick(data) {
+    let updaterange = data.points[0].x.split("Region");
+    const tmp = Number(updaterange[1]) + 10;
+    updaterange = "Region" + tmp;
+    const selectRectangle = {
+      "type": 'rect',
+      // x-reference is assigned to the x-values
+      "xref": 'x',
+      // y-reference is assigned to the plot paper [0,1]
+      "yref": 'paper',
+      "x0": data.points[0].x,
+      "y0": 0,
+      "x1": updaterange,
+      "y1": 1,
+      "fillcolor": '#d3d3d3',
+      "opacity": 0.6,
+      "line": {
+        width: 0
+      }
+    };
+
+    if (tableLines[tableLines.length - 1].type === 'rect') {
+      tableLines.pop();
     }
 
-
-
+    tableLines.push(selectRectangle);
+    this.data.layout.shapes = tableLines;
+  }
 };
 
-
 // ---------------------------------------------------------------------------------------------------------------------------
 
 function offsetSignal(signal, markerOffset) {
-
-    let result = 0;
-    if (Math.abs(signal) > markerOffset) {
-        if (signal > 0) {
-            result = signal - markerOffset;
-        }
-        else {
-            result = signal + markerOffset;
-        }
+  let result = 0;
+  if (Math.abs(signal) > markerOffset) {
+    if (signal > 0) {
+      result = signal - markerOffset;
+    }
+    else {
+      result = signal + markerOffset;
     }
-    return result;
+  }
+  return result;
 }
 
-
 // ---------------------------------------------------------------------------------------------------------------------------
 
 function unpack(rows, key) {
-    return rows.map(function(row) { return row[key]; });
+  return rows.map((row) => { return row[key]; });
 }
 
 // ---------------------------------------------------------------------------------------------------------------------------
 
 function unpackLog(rows, key) {
-    return rows.map(function(row) { return -Math.log10(row[key]); });
+  return rows.map((row) => { return -Math.log10(row[key]); });
 }
 
 // ---------------------------------------------------------------------------------------------------------------------------
 
-/* function unpackPos(rows, key) {
-     return rows.map(function(row) { return row[key]/1000000; });
- } */
- function unpackText(rows) {
-     return rows.map(function(row) {
-
-        const rsid = row.snp_ids;
-        const pos = row.MiddlePosition/1000000;
-        const chr = row.CHR;
-        const pval = row.JOSTmin;
-        const text = 'rsid: '+rsid+'<br>'+'pos: '+chr+':'+pos.toFixed(2)+'<br>-log(Pvalue): '+pval+'<extra></extra>';
-        return text;
-
-    });
- }
+function unpackText(rows) {
+  return rows.map(function (row) {
+    const rsid = row.snp_ids;
+    const pos = row.MiddlePosition / 1000000;
+    const chr = row.CHR;
+    const pval = row.JOSTmin;
+    const text = 'rsid: ' + rsid + '<br>' + 'pos: ' + chr + ':' + pos.toFixed(2) + '<br>-log(Pvalue): ' + pval + '<extra></extra>';
+    return text;
+  });
+}
diff --git a/client/components/NuxtLogo.vue b/client/components/NuxtLogo.vue
deleted file mode 100644
index 970eba0eb6e8666e12ed39abc28049b22769d20e..0000000000000000000000000000000000000000
--- a/client/components/NuxtLogo.vue
+++ /dev/null
@@ -1,11 +0,0 @@
-<template>
-  <svg class="nuxt-logo" viewBox="0 0 45 30" fill="none" xmlns="http://www.w3.org/2000/svg">
-    <path d="M24.7203 29.704H41.1008C41.6211 29.7041 42.1322 29.5669 42.5828 29.3061C43.0334 29.0454 43.4075 28.6704 43.6675 28.2188C43.9275 27.7672 44.0643 27.2549 44.0641 26.7335C44.0639 26.2121 43.9266 25.6999 43.6662 25.2485L32.6655 6.15312C32.4055 5.70162 32.0315 5.32667 31.581 5.06598C31.1305 4.8053 30.6195 4.66805 30.0994 4.66805C29.5792 4.66805 29.0682 4.8053 28.6177 5.06598C28.1672 5.32667 27.7932 5.70162 27.5332 6.15312L24.7203 11.039L19.2208 1.48485C18.9606 1.03338 18.5864 0.658493 18.1358 0.397853C17.6852 0.137213 17.1741 0 16.6538 0C16.1336 0 15.6225 0.137213 15.1719 0.397853C14.7213 0.658493 14.3471 1.03338 14.0868 1.48485L0.397874 25.2485C0.137452 25.6999 0.000226653 26.2121 2.8053e-07 26.7335C-0.000226092 27.2549 0.136554 27.7672 0.396584 28.2188C0.656614 28.6704 1.03072 29.0454 1.48129 29.3061C1.93185 29.5669 2.44298 29.7041 2.96326 29.704H13.2456C17.3195 29.704 20.3239 27.9106 22.3912 24.4118L27.4102 15.7008L30.0986 11.039L38.1667 25.0422H27.4102L24.7203 29.704ZM13.0779 25.0374L5.9022 25.0358L16.6586 6.36589L22.0257 15.7008L18.4322 21.9401C17.0593 24.2103 15.4996 25.0374 13.0779 25.0374Z" fill="#00DC82" />
-  </svg>
-</template>
-
-<style>
-.nuxt-logo {
-  height: 180px;
-}
-</style>
diff --git a/client/components/PhenotypeCard.vue b/client/components/PhenotypeCard.vue
index 8b197d62dce93da772b166d68d38c67abafb3123..cd38dab76ba49d68143066941292a9c90fe5cc2c 100644
--- a/client/components/PhenotypeCard.vue
+++ b/client/components/PhenotypeCard.vue
@@ -1,80 +1,71 @@
 <template>
-     <span style="padding:8px;font-size:16px;" >
-        <!-- <v-text-field
-                v-text=data.fullname
-                label="Phenotype Name"
-                filled
-        ></v-text-field>   -->
-        <!-- v-text="pheno.id.slice(0, 1).toUpperCase()" -->
-        <v-dialog
-            persistent
-            width=500
-            >
-            <template v-slot:activator="{ on }">
-                <v-chip v-on="on"
-                        medium
-                        color="white"
-                        text-color="#298e49"
-                >
-                <v-icon left
-                        style="font-size:20px;">
-        mdi-information
-      </v-icon>
-                    {{phe.full_name}}
+  <span style="padding:8px;font-size:16px;">
+    <v-dialog
+      persistent
+      width=500>
+      <template #activator="{ on }">
+        <v-chip medium
+          color="white"
+          text-color="#298e49"
+          v-on="on">
+          <v-icon left
+            style="font-size:20px;">
+            mdi-information
+          </v-icon>
+          {{ phe.full_name }}
+        </v-chip>
+      </template>
 
-      </v-chip>
+      <template #default="dialog">
+        <v-card width="500" elevation="6">
+          <v-toolbar
+            color="#298e49"
+            dark>Phenotype: {{ phe.full_name }}
+          </v-toolbar>
 
-            </template>
-            <template v-slot:default="dialog">
-                <v-card width="500" elevation="6" >
-                    <v-toolbar
-                    color="#298e49"
-                    dark
-                >Phenotype: {{phe.full_name}}</v-toolbar>
-
-                    <v-card-text style="padding-top:12px;">
-                    <p>
-                    <b>Consortium:</b> {{phe.consortium}}
-                    </p><p>
-                    <b>Id:</b> {{phe.id}}
-                    </p><p>
-                    <b>Outcome:</b> {{phe.outcome}}
-                    </p><p>
-                    <b>Ref:</b> {{phe.ref}}
-                    </p><p>
-                    <b>Ref_link:</b> <a target="_blank" :href="phe.ref_link">{{ phe.ref_link }}</a>
-                    </p>
-                    </v-card-text>
-                    <v-card-actions>
-                        <v-btn
-                            color="#B0E8C2"
-                            depressed
-                            @click="dialog.value  = false"
-                            >
-                            <v-icon left>
-                                mdi-close
-                            </v-icon>
-                            Close
-
-                        </v-btn>
-                    </v-card-actions>
-
-
-                </v-card>
-            </template>
-
-        </v-dialog>
-
-    </span>
+          <v-card-text style="padding-top:12px;">
+            <p>
+              <b>Consortium:</b> {{ phe.consortium }}
+            </p>
+            <p>
+              <b>Id:</b> {{ phe.id }}
+            </p>
+            <p>
+              <b>Outcome:</b> {{ phe.outcome }}
+            </p>
+            <p>
+              <b>Ref:</b> {{ phe.ref }}
+            </p>
+            <p>
+              <b>Ref_link:</b> <a target="_blank" :href="phe.ref_link">{{ phe.ref_link }}</a>
+            </p>
+          </v-card-text>
+          <v-card-actions>
+            <v-btn
+              color="#B0E8C2"
+              depressed
+              @click="dialog.value = false">
+              <v-icon left>
+                mdi-close
+              </v-icon>
+              Close
+            </v-btn>
+          </v-card-actions>
+        </v-card>
+      </template>
+    </v-dialog>
+  </span>
 </template>
 
 <script>
-  export default {
-    props: {
-        phe: {
-            type: Object
-        }
+export default {
+  props: {
+    phe: {
+      type: Object,
+      default() {
+        return {}
+      }
     }
   }
-  //  props: ['fullname']
+}
 </script>
diff --git a/client/components/ShareLink.vue b/client/components/ShareLink.vue
index d5b1408c8d61fcdc506980a24e9c5a3cc8c94e27..c1751d683d7ebe564b217949b1378a913bbbb965 100644
--- a/client/components/ShareLink.vue
+++ b/client/components/ShareLink.vue
@@ -1,43 +1,46 @@
 <template>
-        <v-speed-dial v-model="dialShare" absolute top right direction="left" open-on-hover>
-            <template v-slot:activator>
-            <v-btn fab bottom small color="primary">
-                <v-icon v-if="dialShare">mdi-close</v-icon>
-                <v-icon v-else>mdi-share-variant</v-icon>
-            </v-btn>
-            </template>
-            <v-btn dark fab bottom color="blue darken-7" small :href="`https://www.linkedin.com/shareArticle?mini=true&url=${pageUrl}`" target="_blank">
-            <v-icon>mdi-linkedin</v-icon>
-            </v-btn>
-            <v-btn dark fab bottom color="blue" small :href="`https://www.facebook.com/sharer/sharer.php?u=${pageUrl}`" target="_blank">
-            <v-icon>mdi-facebook</v-icon>
-            </v-btn>
-            <v-btn dark fab bottom color="green" small :href="`https://wa.me/?text=Checkout%20this%20page.%20${pageUrl}`" target="_blank">
-            <v-icon>mdi-whatsapp</v-icon>
-            </v-btn>
-            <v-btn dark fab bottom color="primary" small :href="`mailto:?subject=JASS analysis&amp;body=Here is an analysis computed in JASS: ${pageUrl}`" target="_blank" title="Send by mail">
-            <v-icon>mdi-email</v-icon>
-            </v-btn>
-            <v-btn dark fab bottom color="primary" small v-on:click="copySign()" title="Copy to clipboard">
-            <v-icon>mdi-clipboard</v-icon>
-            </v-btn>
-      </v-speed-dial>
+  <v-speed-dial v-model="dialShare" absolute top right direction="left" open-on-hover>
+    <template #activator>
+      <v-btn fab bottom small color="primary">
+        <v-icon v-if="dialShare">mdi-close</v-icon>
+        <v-icon v-else>mdi-share-variant</v-icon>
+      </v-btn>
+    </template>
+    <v-btn dark fab bottom color="blue darken-7" small :href="`https://www.linkedin.com/shareArticle?mini=true&url=${pageUrl}`" target="_blank">
+      <v-icon>mdi-linkedin</v-icon>
+    </v-btn>
+    <v-btn dark fab bottom color="blue" small :href="`https://www.facebook.com/sharer/sharer.php?u=${pageUrl}`" target="_blank">
+      <v-icon>mdi-facebook</v-icon>
+    </v-btn>
+    <v-btn dark fab bottom color="green" small :href="`https://wa.me/?text=Checkout%20this%20page.%20${pageUrl}`" target="_blank">
+      <v-icon>mdi-whatsapp</v-icon>
+    </v-btn>
+    <v-btn dark fab bottom color="primary" small :href="`mailto:?subject=JASS analysis&amp;body=Here is an analysis computed in JASS: ${pageUrl}`" target="_blank" title="Send by mail">
+      <v-icon>mdi-email</v-icon>
+    </v-btn>
+    <v-btn dark fab bottom color="primary" small title="Copy to clipboard" @click="copySign()">
+      <v-icon>mdi-clipboard</v-icon>
+    </v-btn>
+  </v-speed-dial>
 </template>
 
 <script>
-  export default {
-    props: ['pageUrl'],
-    data() {
-        return {
-            dialShare: false
-        }
-    },
-    methods: {
-      copySign() {
-        navigator.clipboard.writeText(this.pageUrl);
-      }
+export default {
+  props: {
+    pageUrl: {
+      type: String,
+      default: ''
+    }
+  },
+  data() {
+    return {
+      dialShare: false
+    }
+  },
+  methods: {
+    copySign() {
+      navigator.clipboard.writeText(this.pageUrl);
     }
-
   }
-
+}
 </script>
diff --git a/client/components/SubManhattan.js b/client/components/SubManhattan.js
index 92a075b2b24f5bc8c48475e1f44a282fb324f345..abe578dedcb895779fa52060e626411b23abd25a 100644
--- a/client/components/SubManhattan.js
+++ b/client/components/SubManhattan.js
@@ -1,153 +1,123 @@
 import Plotly from 'plotly.js-dist';
 const d3 = require("d3");
 
-
-
-const couleur = ['red', 'blue'];
+const color = ['red', 'blue'];
 
 const trace1 = {
-    x: [],
-    y: [],
-    type: 'scatter',
+  x: [],
+  y: [],
+  type: 'scatter',
 };
 const plotHeatMapSize = 1100;
 
-
 export default {
-    display: 'Scatter',
-    data: {
-        data: [trace1],
-        attr: { displayModeBar: false },
-        layout: {
-            plot_bgcolor: '#d3d3d3',
-            paper_bgcolor: '#d3d3d3',
-        },
+  display: 'Scatter',
+  data: {
+    data: [trace1],
+    attr: { displayModeBar: false },
+    layout: {
+      plot_bgcolor: '#d3d3d3',
+      paper_bgcolor: '#d3d3d3',
     },
-    makePlot(parent,selectedChr,selectedRegion){
-
-        const why =this;
-        const numberColor = (selectedChr + 1) % 2;
-
-
-        const idProject = parent.project.id;
-        d3.csv(process.env.API_URL+"/projects/" + idProject + "/manhattan/" + selectedChr + "/"+selectedRegion).then(
-            function(allRows){
-
-            const regions = [];
-            for (let i = 0; i < 2000; i++) {
-                regions[i] = "Region" + i;
+  },
+  makePlot(parent, selectedChr, selectedRegion) {
+    const why = this;
+    const numberColor = (selectedChr + 1) % 2;
+    const idProject = parent.project.id;
+
+    d3.csv(process.env.API_URL + "/projects/" + idProject + "/manhattan/" + selectedChr + "/" + selectedRegion)
+      .then((allRows) => {
+        const regions = [];
+
+        for (let i = 0; i < 2000; i++) {
+          regions[i] = "Region" + i;
+        }
+
+        const data = regions.map((region) => {
+          const rowsFiltered = allRows.filter((row) => {
+            return (row.Region === region);
+          });
+
+          return {
+            name: region,
+            x: unpack(rowsFiltered, 'snp_ids'),
+            y: unpackLog(rowsFiltered, 'JASS_PVAL'),
+            text: unpack(rowsFiltered, 'Region'),
+            mode: 'markers',
+            type: 'scatter',
+            marker: {
+              color: color[numberColor]
             }
-
-            const data = regions.map(function(region) {
-
-                //          ================================================================
-                // const rowsFiltered = rows.filter(function(row) {
-                //     return (row.CHR === chr);
-                // });
-
-                const rowsFiltered = allRows.filter(function(row) {
-                    return (row.Region === region);
-                });
-
-                //          ================================================================
-
-
-                return {
-                        name: region,
-                        x: unpack(rowsFiltered, 'snp_ids'),
-                        y: unpackLog(rowsFiltered, 'JASS_PVAL'),
-                        text: unpack(rowsFiltered, 'Region'),
-                        mode: 'markers',
-                        type:'scatter',
-                        marker: {
-                            color: couleur[numberColor]
-                        }
-                }
-                    // __Modif__CN__
-            });
-
-            const titleplot = "Joint test association results for locus " +
-				selectedRegion + " on " + selectedChr;
-
-			console.log("titleplot " + titleplot); // __Modif__CN__
-
-			const layout = {
-				title: titleplot,
-				width: plotHeatMapSize,
-				hovermode: 'closest',
-				font:{
-					size:8
-				},
-				margin: {
-				        l: 90,
-				        r: 90,
-				        b: 10,
-				        t: 100,
-				        pad: 4
-				},
-				xaxis: {
-						showticklabels :false,
-						ticks: '',
-						side: 'top',
-						type: 'category',
-						range : [-0.5,allRows.length]
-				},
-				yaxis: {
-						title: "-log(Pvalue)",
-						ticks: '',
-						ticksuffix: ' ',
-						fixedrange:true,
-				},
-
-			};
-
-            why.data.data = data;
-            why.data.layout = layout;
-
-            Plotly.newPlot('divLocalStatPlot', why.data.data,why.data.layout,{displayModeBar: false});
-
-            parent.$refs.divLocalStatPlot.on('plotly_relayout',
-				function(eventdata){
-                console.log(eventdata);
-                const update = {
-						  'xaxis.range': [eventdata['xaxis.range[0]'],
-										eventdata['xaxis.range[1]']]
-					  }
-                Plotly.relayout('divHeatPlot',update);
-             });
-
-
+          }
         });
 
-
-    }
-
+        const titleplot = "Joint test association results for locus " + selectedRegion + " on " + selectedChr;
+
+        const layout = {
+          title: titleplot,
+          width: plotHeatMapSize,
+          hovermode: 'closest',
+          font: {
+            size: 8
+          },
+          margin: {
+            l: 90,
+            r: 90,
+            b: 10,
+            t: 100,
+            pad: 4
+          },
+          xaxis: {
+            showticklabels: false,
+            ticks: '',
+            side: 'top',
+            type: 'category',
+            range: [-0.5, allRows.length]
+          },
+          yaxis: {
+            title: "-log(Pvalue)",
+            ticks: '',
+            ticksuffix: ' ',
+            fixedrange: true,
+          },
+        };
+
+        why.data.data = data;
+        why.data.layout = layout;
+
+        Plotly.newPlot('divLocalStatPlot', why.data.data, why.data.layout, { displayModeBar: false });
+
+        parent.$refs.divLocalStatPlot.on('plotly_relayout',
+          function (eventdata) {
+            const update = {
+              'xaxis.range': [eventdata['xaxis.range[0]'],
+              eventdata['xaxis.range[1]']]
+            }
+            Plotly.relayout('divHeatPlot', update);
+          });
+      });
+  }
 }
 
 function unpack(rows, key) {
-    return rows.map(function(row) { return row[key]; });
+  return rows.map((row) => { return row[key]; });
 }
 
 // ---------------------------------------------------------------------------------------------------------------------------
 
 function unpackLog(rows, key) {
-    return rows.map(function(row) { return -Math.log10(row[key]); });
+  return rows.map((row) => { return -Math.log10(row[key]); });
 }
 
 // ---------------------------------------------------------------------------------------------------------------------------
 
-/* function unpackPos(rows, key) {
-     return rows.map(function(row) { return row[key]/1000000; });
- } */
- function unpackText(rows) {
-     return rows.map(function(row) {
-
-        const rsid = row.snp_ids;
-        const pos = row.MiddlePosition/1000000;
-        const chr = row.CHR;
-        const pval = row.JOSTmin;
-        const text = 'rsid: '+rsid+'<br>'+'pos: '+chr+':'+pos.toFixed(2)+'<br>-log(Pvalue): '+pval+'<extra></extra>';
-        return text;
-
-    });
- }
+function unpackText(rows) {
+  return rows.map((row) => {
+    const rsid = row.snp_ids;
+    const pos = row.MiddlePosition / 1000000;
+    const chr = row.CHR;
+    const pval = row.JOSTmin;
+    const text = 'rsid: ' + rsid + '<br>' + 'pos: ' + chr + ':' + pos.toFixed(2) + '<br>-log(Pvalue): ' + pval + '<extra></extra>';
+    return text;
+  });
+}
diff --git a/client/layouts/default.vue b/client/layouts/default.vue
index 983820e2d3378e0cbaab8703825af0e2f089a4cc..3a662520e9938b33f45330b0653f93e44fb4f943 100644
--- a/client/layouts/default.vue
+++ b/client/layouts/default.vue
@@ -5,53 +5,59 @@
         class="shrink"
         max-width="auto"
         contain
-        src="/institut_pasteur_logo_2020.png"
-      ></v-img>
-      <v-divider vertical class="mx-4">
-      </v-divider>
-
-      <a style="text-decoration: none; color: #272727;" href="/"><h1 class="logo subheading">JASS</h1></a>
+        src="/institut_pasteur_logo_2020.png">
+      </v-img>
+      <v-divider vertical class="mx-4"></v-divider>
+      <a style="text-decoration: none; color: #272727;" href="/">
+        <h1 class="logo subheading">JASS</h1>
+      </a>
       <v-spacer></v-spacer>
       <v-img
         class="shrink d-none d-md-flex"
         max-width="auto"
         contain
-        src="/pasteur-img.png"
-      ></v-img>
-      </v-app-bar>
+        src="/pasteur-img.png">
+      </v-img>
+    </v-app-bar>
+
     <v-tabs fixed-tabs dark>
       <span class="hidden-xs-only" style="width:280px"></span>
+
       <v-tab v-for="(item, i) in items"
         :key="i"
         :to="item.to" v-text="item.title">
       </v-tab>
+
       <v-tab to="/workload" style="max-width:280px;margin-right: inherit;margin-left: auto;">
         Workload
         <v-progress-linear
-          :value="this.activeTask/(this.activeTask+this.pendingTask)*100"
-          :background-color="(this.activeTask==0)&&(this.pendingTask==0)?'#fffb':undefined"
-          :buffer-value="this.activeTask === null ? 0 : 100"
+          :value="activeTask / (activeTask + pendingTask) * 100"
+          :background-color="(activeTask == 0) && (pendingTask == 0) ? '#fffb' : undefined"
+          :buffer-value="activeTask === null ? 0 : 100"
           height="20"
-          :stream="this.activeTask === null"
-          :striped="this.activeTask !== null"
+          :stream="activeTask === null"
+          :striped="activeTask !== null"
           color="rgb(45, 150, 250)"
-          :title="'Task: '+this.activeTask +' running and ' +this.pendingTask+' pending.'"
-          class="hidden-xs-only ml-2"
-        ><small>{{textProgressBar}}</small></v-progress-linear>
+          :title="'Task: ' + activeTask + ' running and ' + pendingTask + ' pending.'"
+          class="hidden-xs-only ml-2">
+          <small>
+            {{ textProgressBar }}
+          </small>
+        </v-progress-linear>
       </v-tab>
     </v-tabs>
+
     <v-main>
-      <v-container>
+      <v-container fluid>
         <Nuxt />
       </v-container>
     </v-main>
-
   </v-app>
 </template>
 
 <script>
 export default {
-  data () {
+  data() {
     return {
       activeTask: null,
       pendingTask: null,
@@ -67,18 +73,18 @@ export default {
         {
           icon: 'mdi-checkbox-blank-circle',
           title: 'GWAS',
-          to: '/phenotypes'
-        }/*,
+          to: '/gwas'
+        },
         {
           icon: 'mdi-checkbox-blank-circle',
-          title: 'regions',
-          to: '/regions'
+          title: 'Citations',
+          to: '/citations'
         },
         {
           icon: 'mdi-checkbox-blank-circle',
-          title: 'SNPs',
-          to: '/snps'
-        } */
+          title: 'Credits',
+          to: '/credits'
+        }
       ],
       miniVariant: false,
       right: true,
@@ -107,7 +113,6 @@ export default {
             url: 'https://www.pasteur.fr/en/research-journal',
           },
         ],
-
         col2: [
           { label: 'DONATE', url: 'https://don.pasteur.fr/' },
           { label: 'PRESS AREA', url: 'https://www.pasteur.fr/en/press-area' },
@@ -134,7 +139,6 @@ export default {
             icon: 'mdi-youtube',
             url: 'https://www.youtube.com/user/institutpasteurvideo',
           },
-
           {
             icon: 'mdi-instagram',
             url: 'https://www.instagram.com/institutpasteur/?hl=fr',
@@ -143,62 +147,83 @@ export default {
       },
     }
   },
-  created(){
+  computed: {
+    textProgressBar() {
+      if (this.activeTask === null)
+        return ''
+      if (this.pendingTask === 0) {
+        if (this.activeTask === 0) {
+          return 'no load';
+        }
+        return this.activeTask + " running";
+      }
+      return this.activeTask + " + " + this.pendingTask;
+    },
+  },
+  created() {
+    this.$store.dispatch('fetchTables');
     this.getQueueStatus();
   },
-  methods:{
-    async getQueueStatus(){
+  methods: {
+    async getQueueStatus() {
       if (this.isready)
         return;
       await this.$axios.$get('/queue_status').then((function (resultStatus) {
-        console.log(resultStatus);
         this.activeTask = resultStatus.active;
         this.pendingTask = resultStatus.reserved;
         setTimeout(this.getQueueStatus, 5000);
       }).bind(this)).catch((function () {
-          setTimeout(this.getQueueStatus, 10000);
+        setTimeout(this.getQueueStatus, 10000);
       }).bind(this));
     },
-  },
-  computed:{
-    textProgressBar(){
-      if (this.activeTask === null)
-        return ''
-      if (this.pendingTask === 0){
-        if (this.activeTask ===0 ){
-          return 'no load';
-        }
-        return this.activeTask + " running";
-      }
-      return  this.activeTask + " + " + this.pendingTask;
-    },
   }
 }
 </script>
-<style lang="sass">
-header.v-toolbar
-  flex-grow:0
-footer
-  .footer-text
-    font-size: 12px !important
-  .v-list-item-group .v-list-item--active
-    background-color: rgba(0, 0, 0, 0)
-    color: #FFF
-  .v-list-item--dense, .v-list--dense .v-list-item
-    min-height: 30px
 
-.v-list-group.v-list-group--default
-  .v-list-group__header
-    min-height: 32px
-    > .v-list-item__icon
-      margin-bottom: 6px
-      margin-top: 6px
-  .v-list-item__content
-    .v-list-item__title
-      white-space: normal
-#app-bar-title
-  color: black
-  text-decoration: inherit
-  > h1
-    text-transform: uppercase
+<style>
+header.v-toolbar {
+  flex-grow: 0;
+}
+
+footer {
+  .footer-text {
+    font-size: 12px !important;
+  }
+
+  .v-list-item-group .v-list-item--active {
+    background-color: rgba(0, 0, 0, 0);
+    color: #FFF;
+  }
+
+  .v-list-item--dense,
+  .v-list--dense .v-list-item {
+    min-height: 30px;
+  }
+}
+
+.v-list-group.v-list-group--default {
+  .v-list-group__header {
+    min-height: 32px;
+
+    >.v-list-item__icon {
+      margin-bottom: 6px;
+      margin-top: 6px;
+    }
+  }
+
+  .v-list-item__content {
+    .v-list-item__title {
+      white-space: normal;
+    }
+  }
+}
+
+#app-bar-title {
+  color: black;
+  text-decoration: inherit;
+
+  >h1 {
+    text-transform: uppercase;
+  }
+}
 </style>
diff --git a/client/layouts/error.vue b/client/layouts/error.vue
index ae22f7cf04be71701887cb4d879900bbe0041354..3858c352762b196b51e1eb410dd7f70a5343fd12 100644
--- a/client/layouts/error.vue
+++ b/client/layouts/error.vue
@@ -1,5 +1,5 @@
 <template>
-  <v-app dark>
+  <div class="errorPage">
     <h1 v-if="error.statusCode === 404">
       {{ pageNotFound }}
     </h1>
@@ -9,7 +9,7 @@
     <NuxtLink to="/">
       Home page
     </NuxtLink>
-  </v-app>
+  </div>
 </template>
 
 <script>
@@ -21,13 +21,13 @@ export default {
       default: null
     }
   },
-  data () {
+  data() {
     return {
       pageNotFound: '404 Not Found',
       otherError: 'An error occurred'
     }
   },
-  head () {
+  head() {
     const title =
       this.error.statusCode === 404 ? this.pageNotFound : this.otherError
     return {
@@ -38,7 +38,9 @@ export default {
 </script>
 
 <style scoped>
-h1 {
-  font-size: 20px;
+.errorPage {
+  display: flex;
+  flex-flow: column wrap;
+  align-items: center;
 }
 </style>
diff --git a/client/nuxt.config.js b/client/nuxt.config.js
index 5323dade2915f09491d133e0a24e2ca5a4fd278f..7ab7cc738b5bd8ce392db0b84be570729801a4cd 100644
--- a/client/nuxt.config.js
+++ b/client/nuxt.config.js
@@ -32,6 +32,7 @@ export default {
 
   // Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
   plugins: [
+    { src: '~/plugins/sanitizedHtml.js', mode: 'client' },
   ],
 
   // Auto import components: https://go.nuxtjs.dev/config-components
@@ -52,11 +53,13 @@ export default {
   modules: [
     // https://go.nuxtjs.dev/axios
     '@nuxtjs/axios',
+    '@nuxtjs/markdownit'
   ],
 
   // Axios module configuration: https://go.nuxtjs.dev/config-axios
   axios: {
     baseURL: process.env.API_URL || "http://0.0.0.0:8080/api",
+    progress: false
   },
 
   env: {
diff --git a/client/package.json b/client/package.json
index 134d589d1f4ea59a0ab0bd5c26568e8db4ec45e8..9e960dbdab9b5055a3f4539de5464bd47c5ecf9c 100644
--- a/client/package.json
+++ b/client/package.json
@@ -10,7 +10,7 @@
     "lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
     "lint:style": "stylelint \"**/*.{vue,css}\" --ignore-path .gitignore",
     "prepare": "husky install",
-    "lint": "yarn lint:js && yarn lint:style"
+    "lint": "npm run lint:js && npm run lint:style"
   },
   "lint-staged": {
     "*.{js,vue}": "eslint",
@@ -18,17 +18,19 @@
   },
   "dependencies": {
     "@nuxtjs/axios": "^5.13.6",
-    "core-js": "^3.15.1",
+    "@nuxtjs/markdownit": "^2.0.0",
+    "core-js": "^3.35.0",
     "d3": "^7.1.1",
+    "dompurify": "^2.4.7",
     "lodash": "^4.17.21",
-    "nuxt": "^2.15.7",
-    "plotly.js-dist": "^2.5.1",
+    "nuxt": "^2.17.3",
+    "plotly.js-dist": "^2.28.0",
     "vue-json-to-csv": "^1.1.8",
-    "vuetify": "^2.5.5"
+    "vuetify": "^2.7.1"
   },
   "devDependencies": {
-    "@babel/eslint-parser": "^7.14.7",
-    "@nuxtjs/dotenv": "^1.4.1",
+    "@babel/eslint-parser": "^7.23.3",
+    "@nuxtjs/dotenv": "^1.4.2",
     "@nuxtjs/eslint-config": "^6.0.1",
     "@nuxtjs/eslint-module": "^3.0.2",
     "@nuxtjs/stylelint-module": "^4.0.0",
diff --git a/client/pages/citations.vue b/client/pages/citations.vue
new file mode 100644
index 0000000000000000000000000000000000000000..c061600982b74e2ef3a0e736c7fdd37410a641c1
--- /dev/null
+++ b/client/pages/citations.vue
@@ -0,0 +1,71 @@
+<template>
+  <div>
+    <h1>Citations</h1>
+
+    <h2>When referring to theoretical basis of JASS tests, cite :</h2>
+    <cite class="citation">
+      <span class="authors">Julienne H, Laville V, McCaw ZR, He Z, Guillemot V, Lasry C, Ziyatdinov A, Nerin C, Vaysse A, Lechat P, Ménager H, Le Goff W, Dube MP, Kraft P, Ionita-Laza I, Vilhjálmsson BJ, Aschard H.</span>
+      <span class="title">Multitrait GWAS to connect disease variants and biological mechanisms.</span>
+      <span class="journal">PLoS Genet. 2021 Aug 30;17(8):e1009713.</span>
+      <a class="doi" href="https://doi.org/10.1371/journal.pgen.1009713" target="_blank">doi: 10.1371/journal.pgen.1009713.</a>
+    </cite>
+
+    <h2>When using JASS software in publication, cite :</h2>
+    <cite class="citation">
+      <span class="authors">Julienne H, Lechat P, Guillemot V, Lasry C, Yao C, Araud R, Laville V, Vilhjalmsson B, Ménager H, Aschard H.</span>
+      <span class="title">JASS: command line and web interface for the joint analysis of GWAS results.</span>
+      <span class="journal">NAR Genom Bioinform. 2020 Mar;2(1):lqaa003.</span>
+      <a class="doi" href="https://doi.org/10.1093/nargab/lqaa003" target="_blank">doi: 10.1093/nargab/lqaa003.</a>
+    </cite>
+
+    <h2>When refereeing to the imputation of summary statistics, cite :</h2>
+    <cite class="citation">
+      <span class="authors">Julienne H, Shi H, Pasaniuc B, Aschard H.</span>
+      <span class="title">RAISS: robust and accurate imputation from summary statistics. Bioinformatics.</span>
+      <span class="journal">Bioinformatics. 2019 Nov 1;35(22):4837-4839.</span>
+      <a class="doi" href="https://doi.org/10.1093/bioinformatics/btz466" target="_blank">doi: 10.1093/bioinformatics/btz466.</a>
+    </cite>
+
+    <h2>Additional publications tied to JASS</h2>
+
+    <cite class="citation">
+      <span class="authors">Suzuki, Y., Ménager, H., Brancotte, B., Vernet, R., Nerin, C., Boetto, C., Auvergne, A., Linhard, C., Torchet, R., Lechat, P., Troubat, L., Cho, M.H., Bouzigon, E., Aschard, H., Julienne, H., 2023.</span>
+      <span class="title">Trait selection strategy in multi-trait GWAS: Boosting SNPs discoverability.</span>
+      <a href="https://doi.org/10.1101/2023.10.27.564319" class="doi">doi.org/10.1101/2023.10.27.564319</a>
+    </cite>
+
+    <cite class="citation">
+      <span class="authors">Troubat, L., Fettahoglu, D., Henches, L., Aschard, H., Julienne, H., 2023.</span>
+      <span class="title">Multi-trait GWAS for diverse ancestries: Mapping the knowledge gap.</span>
+      <a href="https://doi.org/10.1101/2023.06.23.546248" class="doi">doi.org/10.1101/2023.06.23.546248</a>
+    </cite>
+
+    <cite class="citation">
+      <span class="authors">Auvergne, A., Traut, N., Henches, L., Troubat, L., Frouin, A., Boetto, C., Kazem, S., Julienne, H., Toro, R., Aschard, H., 2023.</span>
+      <span class="title">Linking the genetic structure of neuroanatomical phenotypes with psychiatric disorders.</span>
+      <a href="https://doi.org/10.1101/2023.11.01.564329" class="doi">doi.org/10.1101/2023.11.01.564329</a>
+    </cite>
+  </div>
+</template>
+
+<style scoped>
+h1,
+h2 {
+  text-align: center;
+}
+
+h1,
+cite {
+  margin-bottom: 30px;
+}
+
+cite {
+  display: flex;
+  flex-flow: column wrap;
+  align-items: center;
+}
+
+cite * {
+  text-align: center;
+}
+</style>
diff --git a/client/pages/credits.vue b/client/pages/credits.vue
index c4b114c8a2fdc54eb1c475b34bbfeba537b516e7..05cb9f2c3792c2344a242280151c1bba2e965316 100644
--- a/client/pages/credits.vue
+++ b/client/pages/credits.vue
@@ -1,30 +1,36 @@
 <template>
-  <div>
+  <section>
+    <h1>Credits</h1>
 
-       <div style="text-align:center; margin:30px;">
-  <h1>
-   Credits</h1>
-       </div>
-<v-row align="left" justify="start" no-gutters>
+    <v-row>
       <v-col cols="12" sm="12" md="12">
-        <div style="text-align: left; padding: 20px; width: 80%; margin: 30px auto;">
-         Contributors to JASS software and website
-          <p style="text-align:left; padding:20px;">
-            <h4>Computation Engine </h4>
-            <b>Julienne, H., Ménager, H, Nerin, C., Guillemot, V., Lasry, C.  </b>
-            <h4>Backend </h4>
-            <b>Ménager, H, Nerin, C., Julienne, H.</b>
-            <h4> Frontend </h4>
-            <b>Lechat, P.</b>
-            <h4>UIX Design </h4>
-            <b>Torchet, R. </b>
-            <h4>Data collection and preparation </h4>
-            <b>Julienne, H. </b>
-            <h4>Project Managers </h4>
-            <b>Aschard, H. , Julienne, H. </b>
-          </p>
+        <div class="credits">
+          <p>Contributors to JASS software and website</p>
+          <h4>Computation Engine</h4>
+          <b>Julienne, H., Ménager, H., Nerin, C., Guillemot, V., Lasry, C.</b>
+          <h4>Backend</h4>
+          <b>Ménager, H., Nerin, C., Julienne, H., Brancotte, B.</b>
+          <h4>Frontend</h4>
+          <b>Lechat, P., Malesys, S.</b>
+          <h4>UIX Design</h4>
+          <b>Torchet, R.</b>
+          <h4>Data collection and preparation</h4>
+          <b>Julienne, H., Troubat, L.</b>
+          <h4>Project Managers</h4>
+          <b>Aschard, H., Julienne, H., Chapeaublanc, E.</b>
         </div>
-      </v-col>  </v-row>
-</div>
-      </div>
-      </template>
+      </v-col>
+    </v-row>
+  </section>
+</template>
+
+<style scoped>
+h1,
+.credits {
+  text-align: center;
+}
+
+h1 {
+  margin-bottom: 30px;
+}
+</style>
diff --git a/client/pages/gwas.vue b/client/pages/gwas.vue
new file mode 100644
index 0000000000000000000000000000000000000000..0a5686fab0b27bf938bf30982792a6c8d5f86b7c
--- /dev/null
+++ b/client/pages/gwas.vue
@@ -0,0 +1,207 @@
+<template>
+  <div>
+    <div class="header">
+      <h1>Genome-wide analysis parameters</h1>
+      <p>
+        Please select the phenotypes you want to analyze jointly with the Omnibus test. A research box bellow allows you to query our current database. The maximum number of trait that can be analyzed jointly is 64 phenotypes. Computation time for a large number of trait can take up to half an hour.
+      </p>
+    </div>
+
+    <section>
+      <h2>Select an ancestry:</h2>
+      <div class="init-table-card-list">
+        <v-card
+          v-for="table in initTables"
+          :key="table.tableName"
+          class="init-table-card"
+          :class="{ 'selected-table': selectedInitTable === table.tableName }"
+          :color="selectedInitTable === table.tableName ? 'blue lighten-4' : ''">
+          <v-card-title>{{ table.name }}</v-card-title>
+          <v-card-text v-sanitized-html="$md.render(table.desc)"></v-card-text>
+          <v-card-text>
+            <div>
+              <strong>{{ table.nb_snps.toLocaleString() }}</strong>
+              SNPS
+            </div>
+            <div>
+              <strong>{{ table.nb_phenotypes.toLocaleString() }}</strong>
+              phenotypes
+            </div>
+          </v-card-text>
+          <v-card-actions class="card-buttons">
+            <v-btn class="button" color="primary" @click="selectAncestry(table.tableName)">
+              Select this ancestry
+            </v-btn>
+          </v-card-actions>
+        </v-card>
+      </div>
+    </section>
+
+    <section id="phenotypes-section" v-show="phenotypes.length">
+      <h2>Select at least two GWASs to be analyzed jointly:</h2>
+      <v-data-table
+        v-model="selectedRows"
+        :headers="headers"
+        :items="phenotypes"
+        :items-per-page="10"
+        item-key="id"
+        class="elevation-1"
+        :search="search"
+        show-select
+        checkbox-color="primary"
+        unselectable
+        @current-items="current = $event"
+        @item-selected="bulkSelect">
+        <template #top>
+          <v-text-field
+            v-model="search"
+            label="Search"
+            class="mx-4">
+          </v-text-field>
+        </template>
+
+        <template v-slot:item.ref="{ item }">
+          <a class="ref-link" :href="item.ref_link" target="_blank" rel="noreferrer">{{ item.ref }}</a>
+        </template>
+      </v-data-table>
+      <div class="start-button">
+        <v-btn class="button" color="primary" :disabled="selectedRows.length <= 1" @click="runAnalysis()">
+          Start analysis
+        </v-btn>
+      </div>
+    </section>
+  </div>
+</template>
+
+<script>
+export default {
+  data() {
+    return {
+      selectedInitTable: '',
+      headers: [
+        { text: 'Outcome', value: 'outcome' },
+        { text: 'Full name', value: 'full_name' },
+        { text: 'Consortium', value: 'consortium' },
+        { text: 'Type', value: 'typ' },
+        { text: 'Ref', value: 'ref' },
+      ],
+      search: '',
+      phenotypes: [],
+      selectedRows: [],
+    }
+  },
+  computed: {
+    initTables() { return this.$store.state.initTables }
+  },
+  methods: {
+    selectAncestry(initTableName) {
+      if (this.selectedInitTable === initTableName) return
+      this.selectedInitTable = initTableName
+      this.$axios.$post('/phenotypes', { initTableName })
+        .then(phenotypes => {
+          this.phenotypes = phenotypes
+        })
+        .then(() => {
+          // Scroll to the phenotype table after it appeared
+          document
+            .getElementById("phenotypes-section")
+            .scrollIntoView({
+              behavior: 'smooth',
+              block: 'start',
+              inline: 'nearest'
+            })
+        })
+    },
+    bulkSelect({ item: b, value }) {
+      const { selectedRows, current, shiftKeyOn } = this;
+      if (selectedRows.length === 1 && value === true && shiftKeyOn) {
+        const [a] = selectedRows;
+        let start = current.findIndex((item) => item === a);
+        let end = current.findIndex((item) => item === b);
+        if (start - end > 0) {
+          const temp = start;
+          start = end;
+          end = temp;
+        }
+        for (let i = start; i <= end; i++) {
+          selectedRows.push(current[i]);
+        }
+      }
+    },
+    runAnalysis() {
+      const { selectedRows, $axios } = this;
+      const phenotypeIds = {
+        phenotypeID: selectedRows.map((phenotype) => { return phenotype.id }),
+        initTableName: this.selectedInitTable
+      };
+
+      $axios.$post('/projects', phenotypeIds).then(response => {
+        this.$router.push('/projects/' + response.id)
+      })
+    },
+  }
+}
+</script>
+
+<style scoped>
+.header {
+  display: flex;
+  flex-flow: column wrap;
+  align-items: center;
+  margin: 30px;
+}
+
+.header h1 {
+  text-align: center;
+}
+
+.header p {
+  max-width: 80%;
+  text-align: center;
+}
+
+section {
+  margin: 40px 0;
+}
+
+section h2 {
+  margin-bottom: 20px;
+  text-align: center;
+}
+
+.init-table-card-list {
+  display: flex;
+  flex-flow: row wrap;
+  gap: 20px;
+  justify-content: center;
+}
+
+.init-table-card {
+  width: 600px;
+}
+
+.init-table-card .v-card__title {
+  word-break: normal;
+}
+
+.init-table-card .v-card__text {
+  font-size: 16px;
+}
+
+.card-buttons {
+  justify-content: end;
+}
+
+.button {
+  text-transform: none;
+}
+
+.start-button {
+  text-align: center;
+  margin-top: 20px;
+}
+
+.ref-link {
+  font-size: inherit;
+}
+</style>
diff --git a/client/pages/index.vue b/client/pages/index.vue
index 7f6077b103d7683e63102c0c8bc6517e898cfece..787c76abcdc07306af8398735abd376d72cf4651 100644
--- a/client/pages/index.vue
+++ b/client/pages/index.vue
@@ -2,114 +2,92 @@
   <div>
     <h1 class="main_title"> Welcome to JASS v2.1</h1>
     <h3>a web interface for the Joint Analysis of GWAS Summary Statistics</h3>
-    <v-row><v-col cols="12" sm="10" offset-sm="1">
-    <v-card-text style="text-align: justify;" class="main_intro">
-      The JASS web interface efficiently compute multi-trait genome-wide association study (GWAS) and enable user to interactively explore results.
-      Multi-trait GWAS can increase statistical power by leveraging pleiotropy, but also can deepen our understanding of SNPs functional effect (for a detailed explanation see the citation box below).
-      Currently this website host <b>{{initmeta.nb_phenotypes}}</b> traits available for analysis with the Omnibus test.
-      All GWAS have been pre-processed using the <a href="https://gitlab.pasteur.fr/statistical-genetics/jass_suite_pipeline">JASS pre-processing pipeline</a> and imputation of missing statistics has been conducted using the <a href="https://gitlab.pasteur.fr/statistical-genetics/raiss">RAISS software</a>, resulting in a total of <b>{{initmeta.nb_snps}}</b> SNPs available for analysis.
-      To analyze data in your own facility and/or access supplementary joint analysis tests, please download and install the <a href="https://statistical-genetics.pages.pasteur.fr/jass/">JASS python package.</a>
-    </v-card-text>
-    </v-col></v-row>
+    <v-row>
+      <v-col cols="12" sm="10" offset-sm="1">
+        <v-card-text class="main-intro">
+          During the past decade, the statistical genetic community discovered and replicated thousands of variant-trait associations in human populations. However, the sample size required to detect additional variants using standard univariate association screening is increasingly prohibitive. Multi-trait GWAS offers a relevant alternative: it can improve statistical power and lead to new insights about gene function and the joint genetic architecture of human phenotypes.
+        </v-card-text>
 
-      <v-row dense>
-        <AnalysisCard v-for="analysis in analysis" :key="analysis.title" :title="analysis.title" :description="analysis.description" :short_btn="analysis.short_btn" :short_desc="analysis.short_desc" :link="analysis.link" :myStyle="analysis.myStyle" :myClass="analysis.myClass" :myImg="analysis.myImg" />
-      </v-row>
+        <v-card-text class="main-intro">
+          In practice, conducting multi-trait GWAS can become a hurdle due to missing values, heterogeneous data format, and computational cost. JASS (Joint Analysis of Summary Statistics) webserver solves all these practical barriers allowing investigators to conduct multi-trait GWAS interactively. Through this website, you can investigate <b>{{ getTotalPhenotypes.toLocaleString() }}</b> traits spanning several clinical domains and <b>{{ getTotalTables.toLocaleString() }}</b> ancestries. The results page displays genetic correlation matrices between traits, downloadable Manhattan plots and new associations table.
+        </v-card-text>
 
-    <v-row><v-col cols="10" offset="1" md="8" offset-md="2" style="text-align: center; background-color: #f8f8f8;margin:1em auto" id="citations">
-      <h2> Citations </h2>
-      <p style="text-align:center; padding:20px;">
-        <h4>When referring to theoretical basis of JASS tests, cite :</h4>
-        <b><i class="fas fa-quote-left"> Julienne, H., Laville, V., McCaw, Z.R., He, Z., Guillemot, V., Lasry, C., Ziyatdinov, A., Nerin, C., Vaysse, A., Lechat, P., Ménager, H and Aschard, H. </i>Multitrait GWAS to connect disease variants and biological mechanisms</b> <i>PLOS Genetics</i>  Aug 30;17(8):e1009713. doi: 10.1371/journal.pgen.1009713 <br/><a href="https://academic.oup.com/nargab/article/2/1/lqaa003/5715214" target="_blank">https://journals.plos.org/plosgenetics/article?id=10.1371/journal.pgen.1009713</a><br>
-        <br>
-        <h4>When using JASS software in publication, cite :</h4>
-        <b><i class="fas fa-quote-left">Julienne, H., Lechat, P., Guillemot, V., Lasry, C., Yao, C., Araud, R., Laville, V., Vilhjalmsson, B., Ménager, H. and Aschard, H. </i>JASS: command line and web interface for the joint analysis of GWAS results.</b> <i>NAR Genom Bioinform</i> 2020 Mar;2(1):lqaa003.
-        doi: 10.1093/nargab/lqaa003. Epub 2020 Jan 24. <br/><a href="https://academic.oup.com/nargab/article/2/1/lqaa003/5715214" target="_blank">https://academic.oup.com/nargab/article/2/1/lqaa003/5715214</a><br>
-        <br>
-        <h4>When refereeing to the imputation of summary statistics, cite :</h4>
-        <b><i class="fas fa-quote-left">Julienne, H., Shi, H., Pasaniuc, B. and Aschard, H. </i>RAISS: robust and accurate imputation from summary statistics.</b> <i>Bioinformatics</i>  2019 Nov 1;35(22):4837-4839.
-        doi: 10.1093/bioinformatics/btz466. <br/><a href="https://academic.oup.com/bioinformatics/article/35/22/4837/5512360" target="_blank">https://academic.oup.com/bioinformatics/article/35/22/4837/5512360</a><br>
-        <br>
-      </p>
+        <v-card-text class="main-intro">
+          Our databases have been curated and imputed using the python package <a href="https://gitlab.pasteur.fr/statistical-genetics/jass_preprocessing">JASS preprocessing</a> (data QC and harmonization) and <a href="https://gitlab.pasteur.fr/statistical-genetics/raiss">RAISS</a> (imputation of summary statistics). To conduct multi-trait GWAS on your own data refers to the <a href="https://statistical-genetics.pages.pasteur.fr/jass/">JASS python package documentation</a>. A Nextflow pipeline encapsulating summary statistic curation, imputation, and multi-trait GWAS is available <a href="https://gitlab.pasteur.fr/statistical-genetics/jass_suite_pipeline">here</a>.
+        </v-card-text>
       </v-col>
-      <v-col cols="10" offset="1" md="8" offset-md="2"  style="text-align: center; background-color: #f8f8f8;margin:1em auto">
-          <h2> Team </h2>
-          <p>
-            Jass is developed at Institut Pasteur by the <a href="https://research.pasteur.fr/en/team/statistical-genetics/">Statistical Genetics group</a> and the <a href="https://research.pasteur.fr/en/team/bioinformatics-and-biostatistics-hub/">Biostatistic and Bioinformatic HUB</a>
+    </v-row>
 
-            <p>
-              <a href="https://research.pasteur.fr/en/team/statistical-genetics/"> The Statistical Genetics unit</a>, lead by Hugues Aschard, is interested in developping new methods to analyze GWAS data. In particular, in JASS, we leverage publicly available GWAS results to discover new signals and understand pleiotropy. While our team focus mainly on developping the theory behind the tools, we also aim to make our software widely available and to follow high quality software development standards. Hence, our close collaboration with the hub and more specifically with its WINTER group dedicated to web developement. <a href="https://research.pasteur.fr/en/team/hub-winter/">The WINTER group</a> is a software development team focusing mainly on Web technologies for publishing and sharing scientific tools, analysis, data and workflows. We work hand in hand to develop JASS website.
-            </p>
-          </v-col>
-        </v-row>
+    <v-row dense>
+      <AnalysisCard
+        v-for="analysis in analyses"
+        :key="analysis.title"
+        :title="analysis.title"
+        :description="analysis.description"
+        :short-btn="analysis.shortBtn"
+        :short-desc="analysis.shortDesc"
+        :link="analysis.link"
+        :my-style="analysis.myStyle"
+        :my-class="analysis.myClass"
+        :my-img="analysis.myImg" />
+    </v-row>
 
+    <v-row>
+      <v-col id="team" cols="10" offset="1" md="8" offset-md="2">
+        <h2>Team</h2>
+        <p>
+          Jass is developed at Institut Pasteur by the
+          <a href="https://research.pasteur.fr/en/team/statistical-genetics/">Statistical Genetics group</a>
+          and the
+          <a href="https://research.pasteur.fr/en/team/bioinformatics-and-biostatistics-hub/">Biostatistic and Bioinformatic HUB</a>
+        </p>
+        <p>
+          <a href="https://research.pasteur.fr/en/team/statistical-genetics/"> The Statistical Genetics unit</a>, lead by Hugues Aschard, is interested in developping new methods to analyze GWAS data. In particular, in JASS, we leverage publicly available GWAS results to discover new signals and understand pleiotropy. While our team focus mainly on developping the theory behind the tools, we also aim to make our software widely available and to follow high quality software development standards. Hence, our close collaboration with the hub and more specifically with its WINTER group dedicated to web developement. <a href="https://research.pasteur.fr/en/team/hub-winter/">The WINTER group</a> is a software development team focusing mainly on Web technologies for publishing and sharing scientific tools, analysis, data and workflows. We work hand in hand to develop JASS website.
+        </p>
+      </v-col>
+    </v-row>
   </div>
 </template>
 
-
 <script>
+import { mapGetters } from 'vuex'
 import AnalysisCard from "@/components/AnalysisCard.vue"
 
-
 export default {
-  components:{
+  components: {
     AnalysisCard
   },
-  async asyncData({ $axios, params, $auth }) {
-    try {
-      const data = {
-        initTableName: "initTable.hdf5"
-        // initTableName: "initTableTest1.hdf5"
-      };
-      const initmeta = await $axios.$post('/initmeta', data)
-      return {
-        initmeta,
-      }
-    } catch (e) {
-      return {
-        initmeta : {
-          "nb_snps": "<" + e.message + ">",
-          "nb_phenotypes": "<" + e.message + ">"
-        }
-      }
-    }
-  },
-  data () {
+  data() {
     return {
-      analysis: [
+      analyses: [
         {
           title: 'Genome wide Analysis',
-          description:'Run JASS on a set of traits genome wide, Explore result interactively and download results summary or full genome wide results. Can take up to ~30 to run depending on the number of trait selected.',
-          short_btn:'Browse Genome Wide Analysis',
-          short_desc: 'Run Analysis',
-          link:'/phenotypes',
-          myStyle:{
-            backgroundColor:'#2D96FA',
+          description: 'Run JASS on a set of phenotypes genome wide, explore result interactively and download results summary or full genome wide results. Can take up to ~30 to run depending on the number of trait selected.',
+          shortBtn: 'Browse Genome Wide Analysis',
+          shortDesc: 'Run Analysis',
+          link: '/gwas',
+          myStyle: {
+            backgroundColor: '#2D96FA',
           },
-          myImg:'/jass19Avrilsmall.jpg',
-
-        },
-        /* {
-          title: 'Region Analysis',
-          description: 'Run JASS on a region of interest, Explore results interactively and export them to csv files. This analysis is limited to one chromosome and will run faster than genome wide analysis.',
-          short_btn:'Browse Regions',
-          short_desc: 'Run Analysis',
-          link:'/',
-          myStyle:{
-            backgroundColor:'#69AC98',
-          },
-          myClass:'right-card',
-        } */
-      ],
-      initmeta : [],
-
+          myImg: '/jass19Avrilsmall.jpg'
+        }
+      ]
     }
+  },
+  computed: {
+    ...mapGetters([
+      'getTotalTables',
+      'getTotalPhenotypes',
+      'getTotalSNP'
+    ])
   }
 }
 </script>
 
 <style>
-#citations a[target="_blank"] {
-  word-break:break-all;
+#team {
+  background-color: #f8f8f8;
+  margin: 1em auto;
+  text-align: center;
 }
 </style>
diff --git a/client/pages/phenotypes.vue b/client/pages/phenotypes.vue
deleted file mode 100644
index 16f0475c1966db59c8b27eacc2b795d595756f9a..0000000000000000000000000000000000000000
--- a/client/pages/phenotypes.vue
+++ /dev/null
@@ -1,103 +0,0 @@
-<template>
-  <div>
-        <div style="text-align:center; margin:30px;">
-  <h1>
-    Genome-wide analysis parameters</h1>
-  <p style="width:80%; margin: 0 auto;">
-Please select the traits you want to analyze jointly with the Omnibus test. A research box bellow allows you to query our current database. The maximum number of trait that can be analyzed jointly is 64 traits. Computation time for a large number of trait can take up to half an hour.
-  </p>
-</div>
-    <h2>Select at least two GWASs to be analyzed jointly:</h2>
-    <div id="app">
-      <v-app>
-        <v-data-table
-          v-model="selectedRows"
-          @current-items="current = $event"
-          @item-selected="bulkSelect"
-          :headers="headers"
-          :items="phenotypes"
-          :items-per-page="10"
-          item-key="id"
-          class="elevation-1"
-          :search="search"
-          show-select
-          unselectable
-        >
-          <template v-slot:top>
-            <v-text-field
-              v-model="search"
-              label="Search"
-              class="mx-4"
-            >
-          </v-text-field>
-        </template>
-        </v-data-table>
-        <div align="left" justify="start">
-          <v-btn depressed color="primary" v-on:click="runAnalysis()" :disabled="selectedRows.length <=1">
-            Launch analysis
-          </v-btn>
-        </div>
-      </v-app>
-    </div>
-  </div>
-</template>
-
-<script>
-export default {
-  async asyncData({ $axios, params, $auth }) {
-      const data = {
-        initTableName: "initTable.hdf5"
-        // initTableName: "initTableTest1.hdf5"
-      };
-    const phenotypes = await $axios.$post('/phenotypes', data)
-    return {
-      phenotypes,
-    }
-  },
-  data() {
-    return {
-      headers: [
-        { text: 'Outcome', value: 'outcome' },
-        { text: 'Full name', value: 'full_name' },
-        { text: 'Consortium', value: 'consortium' },
-        { text: 'Type', value: 'typ' },
-        { text: 'Ref', value: 'ref' },
-      ],
-      search: '',
-      phenotypes: [],
-      selectedRows: [],
-    }
-  },
-  methods: {
-    bulkSelect({ item: b, value }) {
-      const { selectedRows, current, shiftKeyOn } = this;
-      if (selectedRows.length === 1 && value === true && shiftKeyOn) {
-        const [a] = selectedRows;
-        let start = current.findIndex((item) => item === a);
-        let end = current.findIndex((item) => item === b);
-        if (start - end > 0) {
-          const temp = start;
-          start = end;
-          end = temp;
-        }
-        for (let i = start; i <= end; i++) {
-          selectedRows.push(current[i]);
-        }
-      }
-    },
-    runAnalysis(){
-      const { selectedRows, $axios } = this;
-      const phenotypeIds = {
-        phenotypeID: selectedRows.map(function(phenotype){return phenotype.id}),
-        initTableName: "initTable.hdf5"
-        // phenotypeID: ["z_MAGIC_FAST-GLUCOSE", "z_MAGIC_FAST-INSULIN"],
-        // initTableName: "initTableTest.hdf5"
-      };
-      console.log("REQUEST POST")
-
-      console.log(phenotypeIds)
-      $axios.$post('/projects', phenotypeIds).then(response => this.$router.push('/projects/'+response.id));
-    },
-  }
-}
-</script>
diff --git a/client/pages/projects/_id.vue b/client/pages/projects/_id.vue
index 79073b0e997ab8df248dfbefbe3e06b04d877270..65d5331f376c0703e70abdca3ce433d8d8ae11a9 100644
--- a/client/pages/projects/_id.vue
+++ b/client/pages/projects/_id.vue
@@ -1,91 +1,84 @@
 <template>
   <v-container>
-
     <v-row v-show="!isready"
-    class="fill-height"
-    align-content="center"
-    justify="center"
-    >
-    <v-col
-    class="text-subtitle-1 text-center"
-    cols="12"
-    >
-    <h2>Creating the worktable ! It might take a few minutes </h2>
-    </v-col>
-    <v-col
-    class="text-subtitle-1 text-center"
-    cols="12"
-    >
-    <PhenotypeCard v-for="pheno in phenotypesDict" :key="pheno.id" :phe="pheno"/>
-    </v-col>
-    <v-col cols="12" md="8" lg="6">
-      <v-progress-linear
-      color="#298e49"
-      striped
-      rounded
-      height="20"
-      :value="progress"
-      >
-        <strong style="color:white; text-transform:capitalize;">{{progress}} %</strong>
-      </v-progress-linear>
-    </v-col>
-  </v-row>
-  <v-row v-show="isready" align="center">
-
-
-    <v-col cols="12">
-      <v-card>
-        <ShareLink  :pageUrl="sharedUrl" style="top:-1em"/>
-      <div class="row" style="text-align:left;padding:12px;margin:0;">
-      <h1 style="text-transform:none;">Results for :</h1>
-      <PhenotypeCard v-for="pheno in phenotypesDict" :key="pheno.id" :phe="pheno"/>
-      </div>
-      </v-card>
-      <v-card style="margin-top:10px; margin-bottom:10px;" outlined tile no-gutter>
-        <v-card-title class="text-h5">
-          <v-row justify="start" no-gutters>
-            <v-col >
-            <h4>ANALYSIS PARAMETER SUMMARY</h4>
-            <br>
-            <b>Number of phenotype included:</b>{{phenotypes.length}}
-            <br>
-            <b>Number of SNPs included:</b>{{metadata.nb_snps}}
-            <br>
-            <b>Genomic region analyzed:</b> Whole Genome
-            <br>
-            <b>Test performed:</b>Omnibus
-            </v-col>
-            <v-col >
+      class="fill-height"
+      align-content="center"
+      justify="center">
+      <v-col
+        class="text-subtitle-1 text-center"
+        cols="12">
+        <h2>Creating the worktable ! It might take a few minutes </h2>
+      </v-col>
+      <v-col
+        class="text-subtitle-1 text-center"
+        cols="12">
+        <PhenotypeCard v-for="pheno in phenotypesDict" :key="pheno.id" :phe="pheno" />
+      </v-col>
+      <v-col cols="12" md="8" lg="6">
+        <v-progress-linear
+          color="#298e49"
+          striped
+          rounded
+          height="20"
+          :value="progress">
+          <strong style="color:white; text-transform:capitalize;">{{ progress }} %</strong>
+        </v-progress-linear>
+      </v-col>
+    </v-row>
+    <v-row v-show="isready" align="center">
+      <v-col cols="12">
+        <v-card>
+          <ShareLink :page-url="sharedUrl" style="top:-1em" />
+          <div class="row" style="text-align:left;padding:12px;margin:0;">
+            <h1 style="text-transform:none;">Results for :</h1>
+            <PhenotypeCard v-for="pheno in phenotypesDict" :key="pheno.id" :phe="pheno" />
+          </div>
+        </v-card>
+        <v-card style="margin-top:10px; margin-bottom:10px;" outlined tile no-gutter>
+          <v-card-title class="text-h5">
+            <v-row justify="start" no-gutters>
+              <v-col>
+                <h4>ANALYSIS PARAMETER SUMMARY</h4>
+                <br>
+                <b>Number of phenotype included:</b> {{ phenotypes.length }}
+                <br>
+                <b>Number of SNPs included:</b> {{ metadata.nb_snps }}
+                <br>
+                <b>Genomic region analyzed:</b> Whole Genome
+                <br>
+                <b>Test performed:</b> Omnibus
+              </v-col>
+              <v-col>
                 <v-card style="padding:16px">
                   Genetic covariance derived with <a href="https://www.nature.com/articles/ng.3406">the LDScore</a>
                   The value on the diagonal correspond to the heritability of the trait.
-                  <div v-if="this.gencov && 'error' in this.gencov">
+                  <div v-if="gencov && 'error' in gencov">
                     <v-icon style="margin-top: -8px;" color="error">mdi-alert-octagon</v-icon>
-                    Computation failure: <v-card-text style="white-space: pre;">{{gencov.error}}</v-card-text>
+                    Computation failure: <v-card-text style="white-space: pre;">{{ gencov.error }}</v-card-text>
                   </div>
                   <div v-else id="divCorrelationHeat" ref="divCorrelationHeat"><!-- Plotly chart will be drawn inside this DIV --></div>
                 </v-card>
-            </v-col>
-          </v-row>
-        </v-card-title>
-      </v-card>
+              </v-col>
+            </v-row>
+          </v-card-title>
+        </v-card>
 
 
-      <v-card style="margin-top:10px; margin-bottom:10px;" outlined tile no-gutter>
-        <v-card-title class="text-h5">
-            <v-row  justify="start" no-gutters>
-              <v-col >
+        <v-card style="margin-top:10px; margin-bottom:10px;" outlined tile no-gutter>
+          <v-card-title class="text-h5">
+            <v-row justify="start" no-gutters>
+              <v-col>
                 <h4>RESULTS SUMMARY</h4>
                 <b>Univariate and multivariate significant regions:</b> <br>
-                Not significant Regions: {{summary.JASSNotSignif.MinUnivNotSignif}}<br>
-                Univariate only significant Regions: {{summary.JASSNotSignif.MinUnivSignif}}<br>
-                Multivariate only significant Regions : {{summary.JASSSignif.MinUnivNotSignif}}<br>
-                Univariate and multivariate significant Regions : {{summary.JASSSignif.MinUnivSignif}}<br>
-
+                Not significant Regions: {{ summary.JASSNotSignif.MinUnivNotSignif }}<br>
+                Univariate only significant Regions: {{ summary.JASSNotSignif.MinUnivSignif }}<br>
+                Multivariate only significant Regions : {{ summary.JASSSignif.MinUnivNotSignif }}<br>
+                Univariate and multivariate significant Regions : {{ summary.JASSSignif.MinUnivSignif }}<br>
               </v-col>
-              <v-col >
-                <vue-json-to-csv :json-data="Regions" :csv-title="'LD-independent lead SNPs - '+ this.project.id">
-                  <v-btn small color="#298e49" style="color:#fff; text-transform:capitalize;" v-on:click="processExportAllJASSPVAL()" >
+
+              <v-col>
+                <vue-json-to-csv :json-data="Regions" :csv-title="'LD-independent lead SNPs - ' + project.id">
+                  <v-btn small color="#298e49" style="color:#fff; text-transform:capitalize;" @click="processExportAllJASSPVAL()">
                     Export LD-independent lead SNPs
                   </v-btn>
                 </vue-json-to-csv>
@@ -94,378 +87,236 @@
                   small
                   color="#298e49"
                   style="color:#fff;text-transform:capitalize;"
-                  v-on:click="genomeFullCsv()"
-                >
+                  @click="genomeFullCsv()">
                   Export genome wide summary statistics
                   <v-progress-circular
                     v-if="status.genome_full_csv != 'READY'"
                     :size="15"
                     :width="2"
                     style="margin-left:5px"
-                    indeterminate
-                  ></v-progress-circular>
+                    indeterminate></v-progress-circular>
                 </v-btn>
                 <v-btn
                   :disabled="status.global_manhattan != 'READY'"
                   small
                   color="#298e49" style="color:#fff;text-transform:capitalize;"
-                  v-on:click="manhattanPlot()">
+                  @click="manhattanPlot()">
                   Manhattan Plot
                   <v-progress-circular
                     v-if="status.global_manhattan != 'READY'"
                     :size="15"
                     :width="2"
                     style="margin-left:5px"
-                    indeterminate
-                  ></v-progress-circular>
+                    indeterminate></v-progress-circular>
                 </v-btn>
                 <v-btn
-                 :disabled="status.quadrant_plot != 'READY'"
-                 small color="#298e49" style="color:#fff;text-transform:capitalize;"
-                 v-on:click="quadranPlot()">
+                  :disabled="status.quadrant_plot != 'READY'"
+                  small color="#298e49" style="color:#fff;text-transform:capitalize;"
+                  @click="quadranPlot()">
                   Quadrant plot
                   <v-progress-circular
                     v-if="status.quadrant_plot != 'READY'"
                     :size="15"
                     :width="2"
                     style="margin-left:5px"
-                    indeterminate
-                  ></v-progress-circular>
+                    indeterminate></v-progress-circular>
                 </v-btn>
                 <v-btn
-                 :disabled="status.qq_plot != 'READY'"
-                 small color="#298e49" style="color:#fff;text-transform:capitalize;"
-                 v-on:click="qqPlot()">
+                  :disabled="status.qq_plot != 'READY'"
+                  small color="#298e49" style="color:#fff;text-transform:capitalize;"
+                  @click="qqPlot()">
                   QQ plot
                   <v-progress-circular
                     v-if="status.qq_plot != 'READY'"
                     :size="15"
                     :width="2"
                     style="margin-left:5px"
-                    indeterminate
-                  ></v-progress-circular>
+                    indeterminate></v-progress-circular>
                 </v-btn>
                 <p>Tips : You can share the link of this page with your collaborators. They will have access to the same results.</p>
               </v-col>
             </v-row>
-        </v-card-title>
-      </v-card>
-
-      <v-card style="margin-top:10px; margin-bottom:10px;" outlined tile no-gutter>
-        <v-card-title class="text-h5">
-
-          <v-row  justify="start" no-gutters>
-            <v-col >
-              <h4>MANATHAN PLOT</h4>
-              <p>
-                The Omnibus test Manhattan plot by Linkage Desiquilibrium independent regions.
-                The p-values displayed corresponds to the p-value of the lead SNPs in the region.
-                To zoom in on a region click on one of the points.
-              </p>
-              <div id="divWholeStatPlot" ref="divWholeStatPlot"><!-- Plotly chart will be drawn inside this DIV --></div>
-            </v-col>
-
-          </v-row>
-          <v-btn small color="#298e49" style="color:#fff;text-transform:capitalize;" v-on:click="show = !show;processShowGJASSPVAL()">
-                  Show significant lead SNPs by region
-          </v-btn>
-          <div>
-            <transition name="slide-fade">
-              <p v-if="show">
-                <v-data-table
-                :headers="headers"
-                :items="significantsRegions"
-                :items-per-page="5"
-                class="elevation-1"
-                ></v-data-table>
-                <vue-json-to-csv :json-data="significantsRegions" :csv-title="'Significants regions - '+ this.project.id">
-                  <v-btn small color="#298e49" style="color:#fff;">export csv</v-btn>
-                  <!-- <button>
-                  <b>export csv</b>
-                </button> -->
-                </vue-json-to-csv>
-              </p>
-            </transition>
-          </div>
-
-
-        </v-card-title>
-      </v-card>
+          </v-card-title>
+        </v-card>
+
+        <v-card style="margin-top:10px; margin-bottom:10px;" outlined tile no-gutter>
+          <v-card-title class="text-h5">
+
+            <v-row justify="start" no-gutters>
+              <v-col>
+                <h4>MANATHAN PLOT</h4>
+                <p>
+                  The Omnibus test Manhattan plot by Linkage Desiquilibrium independent regions.
+                  The p-values displayed corresponds to the p-value of the lead SNPs in the region.
+                  To zoom in on a region click on one of the points.
+                </p>
+                <div id="divWholeStatPlot" ref="divWholeStatPlot"><!-- Plotly chart will be drawn inside this DIV --></div>
+              </v-col>
 
-      <v-card style="margin-top:10px; margin-bottom:10px;padding:20px;" v-show="isready2" outlined tile no-gutter>
-          <v-row  justify="start" no-gutters>
-            <v-col >
+            </v-row>
+            <v-btn small color="#298e49" style="color:#fff;text-transform:capitalize;" @click="show = !show; processShowGJASSPVAL()">
+              Show significant lead SNPs by region
+            </v-btn>
+            <div>
+              <transition name="slide-fade">
+                <p v-if="show">
+                  <v-data-table
+                    :headers="headers"
+                    :items="significantsRegions"
+                    :items-per-page="5"
+                    class="elevation-1"></v-data-table>
+                  <vue-json-to-csv :json-data="significantsRegions" :csv-title="'Significants regions - ' + project.id">
+                    <v-btn small color="#298e49" style="color:#fff;">export csv</v-btn>
+                  </vue-json-to-csv>
+                </p>
+              </transition>
+            </div>
+          </v-card-title>
+        </v-card>
+
+        <v-card v-show="isready2" style="margin-top:10px; margin-bottom:10px;padding:20px;" outlined tile no-gutter>
+          <v-row justify="start" no-gutters>
+            <v-col>
               <h4 style="text-transform:uppercase;">Omnibus test Manhattan plot by SNPs</h4>
-          <p>Zoom in on rejoin by clicking and draging your mouse on the region of interest</p>
-          <p>Zoom out by double clicking on the plot</p>
-          </v-col>
+              <p>Zoom in on rejoin by clicking and draging your mouse on the region of interest</p>
+              <p>Zoom out by double clicking on the plot</p>
+            </v-col>
 
           </v-row>
           <div id="divLocalStatPlot" ref="divLocalStatPlot"><!-- Plotly chart will be drawn inside this DIV --></div>
-          <!-- <v-card-title >Univariate Zscore heatmap</v-card-title>
-          <v-card-text>Association signal for each SNPs and Each phenotypes. The association is measured as a Zscore (beta regression coefficient divided by their standard error).
-          </v-card-text> -->
-          <div id="divHeatPlot" ><!-- Plotly chart will be drawn inside this DIV --></div>
-      </v-card>
-    </v-col>
-  </v-row>
-  <v-row>
+          <div id="divHeatPlot"><!-- Plotly chart will be drawn inside this DIV --></div>
+        </v-card>
+      </v-col>
+    </v-row>
+    <v-row>
 
     </v-row>
-</v-container>
+  </v-container>
 </template>
-<style>
-.fade-enter-active, .fade-leave-active {
-  transition: opacity .5s;
-}
-.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
-  opacity: 0;
-}
-.slide-fade-enter-active {
-  transition: all .3s ease;
-}
-.slide-fade-leave-active {
-  transition: all .8s cubic-bezier(1.0, 0.5, 0.8, 1.0);
-}
-.slide-fade-enter, .slide-fade-leave-to
-/* .slide-fade-leave-active below version 2.1.8 */ {
-transform: translateX(10px);
-opacity: 0;
-}
-</style>
 
 <script>
-
-// import  Plotly  from 'plotly.js-dist/plotly';
 import VueJsonToCsv from 'vue-json-to-csv';
 import Plotly from 'plotly.js-dist';
-
 import PhenotypeCard from "@/components/PhenotypeCard.vue";
 import ShareLink from "@/components/ShareLink.vue";
-
-
-import  manhattan from "../../components/Manhattan.js";
-import  heatmap from "../../components/Heatmap.js";
-import  submanhattan from "../../components/SubManhattan.js";
-
-
+import manhattan from "../../components/Manhattan.js";
+import heatmap from "../../components/Heatmap.js";
+import submanhattan from "../../components/SubManhattan.js";
 
 const _ = require('lodash');
-
-console.log(heatmap);
 const d3 = require("d3");
 
-
 export default {
+  components: {
+    VueJsonToCsv,
+    PhenotypeCard
+  },
   async asyncData({ $axios, params, $auth }) {
-
-
     const project = await $axios.$get('/projects/' + params.id,)
     console.log(project);
-    const phenotypes =[];
-    const outcomes =[];
+    const phenotypes = [];
+    const outcomes = [];
 
     project.phenotypes.forEach(pheno => {
       phenotypes.push(pheno.id);
     })
+
     project.phenotypes.forEach(pheno => {
       outcomes.push(pheno.outcome);
     })
 
     const phenotypesDict = project.phenotypes;
+
     return {
-      project,phenotypes,outcomes,phenotypesDict,ShareLink
+      project,
+      phenotypes,
+      outcomes,
+      phenotypesDict,
+      ShareLink
     }
   },
-
-  components: {
-
-    // Multiselect,
-    VueJsonToCsv,
-    PhenotypeCard
-  },
   data() {
     return {
       phenotypes: null,
-      phenotypesDict:null,
+      phenotypesDict: null,
       project: null,
-      manhattan:null,
-      heatmap:null,
-      submanhattan:null,
-      headers:[],
-      significantsRegions:[],
-      Regions:[],
+      manhattan: null,
+      heatmap: null,
+      submanhattan: null,
+      headers: [],
+      significantsRegions: [],
+      Regions: [],
       show: false,
       status: null,
       isready: false,
       isready2: false,
-      progress:0,
-      gencov:null,
-      metadata:{"nb_phenotypes":0,"nb_snps":0},
-      summary:{"JASSSignif":{"MinUnivNotSignif":0,"MinUnivSignif":0},"JASSNotSignif":{"MinUnivNotSignif":0,"MinUnivSignif":0}},
+      progress: 0,
+      gencov: null,
+      metadata: { "nb_phenotypes": 0, "nb_snps": 0 },
+      summary: {
+        "JASSSignif": {
+          "MinUnivNotSignif": 0,
+          "MinUnivSignif": 0
+        },
+        "JASSNotSignif": {
+          "MinUnivNotSignif": 0,
+          "MinUnivSignif": 0
+        }
+      },
       sharedUrl: ''
     }
   },
-
-created(){
-
-  this.status = this.getStatus();
-
-},
-
-mounted() {
-
-
-    /* console.log("mounted ");
-    console.log(this.phenotypes);
-
-    // this.getStatus();
-    if(this.status != null){
-    console.log(this.status);
-  }
-
-  const colorscale =  [
-  ['0.0', 'white'],
-  ['0.111111111111', 'rgb(215,48,39)'],
-  ['0.222222222222', 'rgb(244,109,67)'],
-  ['0.333333333333', 'rgb(253,174,97)'],
-  ['0.444444444444', 'rgb(254,224,144)'],
-  ['0.555555555556', 'rgb(224,243,248)'],
-  ['0.666666666667', 'rgb(171,217,233)'],
-  ['0.777777777778', 'rgb(116,173,209)'],
-  ['0.888888888889', 'rgb(69,117,180)'],
-  ['1.0', 'rgb(49,54,149)']];
-
-  const dataplot = [
-  {
-  z: [[0.1324,0.067,0.1215], [0.067,0.062,null], [0.1215,null,null]],
-  x: ['z_GIANT_WC','z_GIANT_WHR','z_GIANT_HIP'],
-  y: ['z_GIANT_WC','z_GIANT_WHR','z_GIANT_HIP'],
-  type: 'heatmap',
-  colorscale: 'Picnic'
-  }
-  ];
-
-
-  const layout =  {
-  width :400,
-  xaxis: {
-  showgrid: false
+  created() {
+    this.status = this.getStatus();
   },
-  yaxis: {
-  showgrid: false,
-  showline: true
-  }
-
-  };
-
-  console.log(this.$refs);
-
-  // console.log(manhattan);
-  this.manhattan = manhattan;
-  this.heatmap = heatmap;
-  this.submanhattan = submanhattan;
-
-  manhattan.makePlot(this);
-  Plotly.newPlot('divCorrelationHeat', dataplot,layout,{displayModeBar: false});
-
-  // Plotly.newPlot('divHeatPlot', dataplot,layout);
-  // Plotly.newPlot('divLocalStatPlot', dataplot,layout);
-
-  console.log(this.$refs);
-  console.log(this.$refs.divWholeStatPlot);
-  */
-
-  /* this.$refs.divWholeStatPlot.on('plotly_click', function(data){
-  console.log(data);
-  });
-  this.$refs.divWholeStatPlot.on('plotly_relayout',
-  function(eventdata){
-  console.log(eventdata);
-  const update = {
-  'xaxis.range': [eventdata['xaxis.range[0]'],
-  eventdata['xaxis.range[1]']]
-  }
-  Plotly.relayout('divLocalStatPlot',update);
-  }); */
-
-
-  /* plot1.on('plotly_click', function(data){
-  console.log(data);
-  } */
-
-}
-,
-methods:{
-
-  createPlots(){
-    console.log("createPlots ");
-    console.log(this.phenotypes);
-
-
-    if(this.status != null){
-      console.log(this.status);
-    }
-    console.log("SUMMARY");
-    console.log(this.summary);
-    console.log(this.summary.JASSSignif.MinUnivNotSignif);
-
-
-
+  methods: {
+    createPlots() {
       const zLine = [];
-      console.log("X");
-
       const x = this.outcomes.sort();
-      console.log(x);
-      console.log("GENCOV");
-      console.log(this.gencov);
 
-      for (let i = 0; i < x.length; i++){
+      for (let i = 0; i < x.length; i++) {
         zLine.push([]);
 
-        for (let j = 0; j < (this.gencov.length); j++){
-          if(x[i]===this.gencov[j].phenotypeID_A){
+        for (let j = 0; j < (this.gencov.length); j++) {
+          if (x[i] === this.gencov[j].phenotypeID_A) {
             zLine[i].push(this.gencov[j].gencov);
           }
         }
-        const NantoAdd = x.length-zLine[i].length;
+        const NantoAdd = x.length - zLine[i].length;
 
-        for (let j = 0; j < NantoAdd; j++){
+        for (let j = 0; j < NantoAdd; j++) {
           zLine[i].unshift(NaN);
         }
       }
 
-      console.log(zLine)
       const dataplot = [
         {
           z: zLine,
           x,
           y: x,
           type: 'heatmap',
-          colorscale: [['-1','#4A6FE3'],
-          ['-0.9','#5F7BE1'],
-          ['-0.8','#7086E1'],
-          ['-0.7','#8091E1'],
-          ['-0.6','#8F9DE1'],
-          ['-0.5','#9DA8E2'],
-          ['-0.4','#ABB4E2'],
-          ['-0.3','#B9BFE3'],
-          ['-0.2','#C7CBE3'],
-          ['-0.1','#D5D7E3'],
-          ['0','#E2E2E2'],
-          ['0.1','#E4D3D6'],['0.2','#E6C4C9'],
-          ['0.3','#E6B4BD'],['0.4','#E5A5B1'],
-          ['0.5','#E495A5'],['0.6','#E28699'],
-          ['0.7','#DF758D'],['0.8','#DB6581'],
-          ['0.9','#D75376'],['1','#D33F6A']]
+          colorscale: [['-1', '#4A6FE3'],
+          ['-0.9', '#5F7BE1'],
+          ['-0.8', '#7086E1'],
+          ['-0.7', '#8091E1'],
+          ['-0.6', '#8F9DE1'],
+          ['-0.5', '#9DA8E2'],
+          ['-0.4', '#ABB4E2'],
+          ['-0.3', '#B9BFE3'],
+          ['-0.2', '#C7CBE3'],
+          ['-0.1', '#D5D7E3'],
+          ['0', '#E2E2E2'],
+          ['0.1', '#E4D3D6'], ['0.2', '#E6C4C9'],
+          ['0.3', '#E6B4BD'], ['0.4', '#E5A5B1'],
+          ['0.5', '#E495A5'], ['0.6', '#E28699'],
+          ['0.7', '#DF758D'], ['0.8', '#DB6581'],
+          ['0.9', '#D75376'], ['1', '#D33F6A']]
         }
       ];
 
-      console.log(dataplot);
-
-      const layout =  {
-        width :400,
-        margin: {l:100, r:100, t:10, b:80},
+      const layout = {
+        width: 400,
+        margin: { l: 100, r: 100, t: 10, b: 80 },
         xaxis: {
           showgrid: false
         },
@@ -473,149 +324,135 @@ methods:{
           showgrid: false,
           showline: true
         }
-
       };
 
-
       this.manhattan = manhattan;
       this.heatmap = heatmap;
       this.submanhattan = submanhattan;
 
       manhattan.makePlot(this);
-      Plotly.newPlot('divCorrelationHeat', dataplot,layout,{displayModeBar: false});
-
-      // Plotly.newPlot('divHeatPlot', dataplot,layout);
-      // Plotly.newPlot('divLocalStatPlot', dataplot,layout);
-
-      console.log(this.$refs);
-      console.log(this.$refs.divWholeStatPlot);
-
+      Plotly.newPlot('divCorrelationHeat', dataplot, layout, { displayModeBar: false });
     },
+    createHeatmapPlot() {
+      Plotly.newPlot('divWholeStatPlot', manhattan.data.data, manhattan.data.layout);
 
-
-    createHeatmapPlot () {
-      Plotly.newPlot('divWholeStatPlot', manhattan.data.data,manhattan.data.layout);
-
-      this.$refs.divWholeStatPlot.on('plotly_click', function(data){
-        console.log(data);
-
+      this.$refs.divWholeStatPlot.on('plotly_click', function (data) {
         manhattan.reactOnClick(data);
-        Plotly.update('divWholeStatPlot',manhattan.data.layout);
+        Plotly.update('divWholeStatPlot', manhattan.data.layout);
       });
 
     },
-    quadranPlot(){
-      const desiredLink = process.env.API_URL+"/projects/"+this.project.id+"/quadrant";
-      console.log("quadrant "+desiredLink);
-      window.open(desiredLink,'_blank');
+    quadranPlot() {
+      const desiredLink = process.env.API_URL + "/projects/" + this.project.id + "/quadrant";
+      window.open(desiredLink, '_blank');
     },
-    qqPlot(){
-      const desiredLink = process.env.API_URL+"/projects/"+this.project.id+"/qqplot";
-      console.log("qq "+desiredLink);
-      window.open(desiredLink,'_blank');
+    qqPlot() {
+      const desiredLink = process.env.API_URL + "/projects/" + this.project.id + "/qqplot";
+      window.open(desiredLink, '_blank');
     },
-    manhattanPlot(){
-      const desiredLink = process.env.API_URL+"/projects/"+this.project.id+"/globalmanhattan";
-      console.log("globalmanhattan "+desiredLink);
-      window.open(desiredLink,'_blank');
+    manhattanPlot() {
+      const desiredLink = process.env.API_URL + "/projects/" + this.project.id + "/globalmanhattan";
+      window.open(desiredLink, '_blank');
     },
-    genomeFullCsv(){
-      const desiredLink = process.env.API_URL+"/projects/"+this.project.id+"/genome_full";
-      console.log("manhattan "+desiredLink);
-      window.open(desiredLink,'_blank');
+    genomeFullCsv() {
+      const desiredLink = process.env.API_URL + "/projects/" + this.project.id + "/genome_full";
+      window.open(desiredLink, '_blank');
     },
-    processShowGJASSPVAL(){
-      this.headers =  [	{ text: 'CHR', value: 'CHR' },
+    processShowGJASSPVAL() {
+      this.headers = [{ text: 'CHR', value: 'CHR' },
       { text: 'JOSTmin', value: 'JOSTmin' },
       { text: 'MiddlePosition', value: 'MiddlePosition' },
       { text: 'PVALmin', value: 'PVALmin' },
       { text: 'Region', value: 'Region' },
       { text: 'signif_status', value: 'signif_status' },
       { text: 'snp_ids', value: 'snp_ids' }];
-      /* this.headersCsv = {	 text: 'CHR', value: 'CHR' ,
-      text: 'JOSTmin', value: 'JOSTmin' ,
-      text: 'MiddlePosition', value: 'MiddlePosition' ,
-      text: 'PVALmin', value: 'PVALmin' ,
-      text: 'Region', value: 'Region' ,
-      text: 'signif_status', value: 'signif_status' ,
-      text: 'snp_ids', value: 'snp_ids' }; */
-      // console.log(this.manhattan.data.datarows);
-      this.significantsRegions=this.manhattan.data.datarows.filter( function(obj){
+      this.significantsRegions = this.manhattan.data.datarows.filter(function (obj) {
         return obj.signif_status === 'Joint';
       });
     },
-    processExportAllJASSPVAL(){
-      this.headers =  [	{ text: 'CHR', value: 'CHR' },
+    processExportAllJASSPVAL() {
+      this.headers = [{ text: 'CHR', value: 'CHR' },
       { text: 'JOSTmin', value: 'JOSTmin' },
       { text: 'MiddlePosition', value: 'MiddlePosition' },
       { text: 'PVALmin', value: 'PVALmin' },
       { text: 'Region', value: 'Region' },
       { text: 'signif_status', value: 'signif_status' },
       { text: 'snp_ids', value: 'snp_ids' }];
-      /* this.headersCsv = {	 text: 'CHR', value: 'CHR' ,
-      text: 'JOSTmin', value: 'JOSTmin' ,
-      text: 'MiddlePosition', value: 'MiddlePosition' ,
-      text: 'PVALmin', value: 'PVALmin' ,
-      text: 'Region', value: 'Region' ,
-      text: 'signif_status', value: 'signif_status' ,
-      text: 'snp_ids', value: 'snp_ids' }; */
-      // console.log(this.manhattan.data.datarows);
-      this.Regions=this.manhattan.data.datarows
+      this.Regions = this.manhattan.data.datarows
     },
 
-    async getStatus(){
-
-
-      await this.$axios.$get('/projects/'+this.project.id).then((async function (result) {
-            console.log(result.status.worktable);
-            console.log(result.progress);
-            this.progress=result.progress;
-
-            this.sharedUrl = "http://"+window.location.host + "/projects/" + this.project.id;
-            console.log(this.project.id);
-            this.status=result.status;
-            if(result.status.metadata ==="READY" && ! this.isready){
-
-              await this.$axios.$get('/projects/'+this.project.id+"/gencov").then((async function (result2) {
-                this.gencov = result2;
-                await this.$axios.$get('/projects/'+this.project.id+"/summary").then((function (result3) {
-
-                  this.summary  = result3;
-                  console.log(result3);
-                  // show Plot ...
-                  this.isready =true;
-
-                  this.createPlots();
-                  console.log("ready");
-                }).bind(this));
-
-                await this.$axios.$get('/projects/'+this.project.id+"/metadata").then((function (result4) {
-                    this.metadata = result4;
-                }).bind(this));
-              }).bind(this)).catch(error => {
-                console.error(error.response.data.detail);
-                this.gencov = {'error': error.response.data.detail}
-                this.isready=true;
-              });
-            }
-        let keepFetching=true;
-        for (const step in result.status){
-          if (result.status[step] !=="READY"){
-            keepFetching=true
+    async getStatus() {
+      await this.$axios.$get('/projects/' + this.project.id).then((async function (result) {
+        this.progress = result.progress;
+        this.sharedUrl = "http://" + window.location.host + "/projects/" + this.project.id;
+        this.status = result.status;
+
+        if (result.status.metadata === "READY" && !this.isready) {
+          await this.$axios.$get('/projects/' + this.project.id + "/gencov").then((async function (result2) {
+            this.gencov = result2;
+            await this.$axios.$get('/projects/' + this.project.id + "/summary").then((function (result3) {
+
+              this.summary = result3;
+              this.isready = true;
+
+              this.createPlots();
+            }).bind(this));
+
+            await this.$axios.$get('/projects/' + this.project.id + "/metadata").then((function (result4) {
+              this.metadata = result4;
+            }).bind(this));
+          }).bind(this)).catch(error => {
+            this.gencov = { 'error': error.response.data.detail }
+            this.isready = true;
+          });
+        }
+
+        let keepFetching = true;
+
+        for (const step in result.status) {
+          if (result.status[step] !== "READY") {
+            keepFetching = true
             break;
-          }else{
-            keepFetching=false;
+          } else {
+            keepFetching = false;
           }
         }
-        if (keepFetching){
+
+        if (keepFetching) {
           setTimeout(this.getStatus, 5000);
         }
       }).bind(this)).catch((function () {
-          setTimeout(this.getStatus, 10000);
+        setTimeout(this.getStatus, 10000);
       }).bind(this));
-
-
     }
   }
 }
 </script>
+
+<style>
+.fade-enter-active,
+.fade-leave-active {
+  transition: opacity .5s;
+}
+
+.fade-enter,
+.fade-leave-to {
+  /* .fade-leave-active below version 2.1.8 */
+  opacity: 0;
+}
+
+.slide-fade-enter-active {
+  transition: all .3s ease;
+}
+
+.slide-fade-leave-active {
+  transition: all .8s cubic-bezier(1.0, 0.5, 0.8, 1.0);
+}
+
+.slide-fade-enter,
+.slide-fade-leave-to {
+  /* .slide-fade-leave-active below version 2.1.8 */
+  transform: translateX(10px);
+  opacity: 0;
+}
+</style>
diff --git a/client/pages/workload.vue b/client/pages/workload.vue
index 4ed00fe1b353d6d406262779581567937af16950..5adda2bdd1db766a5c65d9e75dea94a3539c553b 100644
--- a/client/pages/workload.vue
+++ b/client/pages/workload.vue
@@ -3,51 +3,57 @@
     <v-col cols=12 style="text-align:center">
       <h1>Server workload</h1>
     </v-col>
-    <v-col cols=12 >
+
+    <v-col cols=12>
       <v-row>
         <v-col cols=6 style="text-align:right">
           <h4>Compute node:</h4>
         </v-col>
-        <v-col cols=6 >
-          <h4>{{this.worker}}</h4>
+        <v-col cols=6>
+          <h4>{{ worker }}</h4>
         </v-col>
       </v-row>
     </v-col>
-    <v-col cols=12 >
+
+    <v-col cols=12>
       <v-row>
         <v-col cols=6 style="text-align:right">
           <h4>Tasks being processed:</h4>
         </v-col>
-        <v-col cols=6 >
-          <h4>{{this.activeTask}}</h4>
+        <v-col cols=6>
+          <h4>{{ activeTask }}</h4>
         </v-col>
       </v-row>
     </v-col>
-    <v-col cols=12 >
+
+    <v-col cols=12>
       <v-row>
         <v-col cols=6 style="text-align:right">
           <h4>Pending tasks to be computed</h4>
         </v-col>
-        <v-col cols=6 >
-          <h4>{{this.pendingTask}}</h4>
+        <v-col cols=6>
+          <h4>{{ pendingTask }}</h4>
         </v-col>
       </v-row>
     </v-col>
+
     <v-col
-     v-if="activeTask===0"
-     style="text-align:center"
-     cols=12>
+      v-if="activeTask === 0"
+      style="text-align:center"
+      cols=12>
       Your analysis would start right away.
     </v-col>
+
     <v-col
-     v-else-if="activeTask>0"
-     style="text-align:center"
-     cols=12>
+      v-else-if="activeTask > 0"
+      style="text-align:center"
+      cols=12>
       Your analysis would be queued, and processed as soon as possible.
     </v-col>
+
     <v-col
-     v-else
-     cols=12>
+      v-else
+      cols=12>
       &nbsp;
     </v-col>
   </v-row>
@@ -55,26 +61,25 @@
 
 <script>
 export default {
-  data () {
+  data() {
     return {
       activeTask: '_',
       pendingTask: '_',
       worker: '_',
     }
   },
-  created(){
+  created() {
     this.getQueueStatus();
   },
-  methods:{
-    async getQueueStatus(){
+  methods: {
+    async getQueueStatus() {
       await this.$axios.$get('/queue_status').then((function (resultStatus) {
-        console.log(resultStatus);
         this.activeTask = resultStatus.active;
         this.worker = resultStatus.worker;
         this.pendingTask = resultStatus.reserved;
         setTimeout(this.getQueueStatus, 5000);
       }).bind(this)).catch((function () {
-          setTimeout(this.getQueueStatus, 10000);
+        setTimeout(this.getQueueStatus, 10000);
       }).bind(this));
     },
   }
diff --git a/client/plugins/sanitizedHtml.js b/client/plugins/sanitizedHtml.js
new file mode 100644
index 0000000000000000000000000000000000000000..408c4e3e775339322850fe643803fd6bfec76998
--- /dev/null
+++ b/client/plugins/sanitizedHtml.js
@@ -0,0 +1,12 @@
+import Vue from 'vue'
+import DOMPurify from 'dompurify'
+
+/**
+ * Use DOMpurify to sanitize html or markdown strings.
+ * This directive should be used instead of the native v-html.
+ */
+Vue.directive('sanitized-html', {
+  bind: (el, binding) => {
+    el.innerHTML = DOMPurify.sanitize(binding.value)
+  },
+})
diff --git a/client/store/README.md b/client/store/README.md
deleted file mode 100644
index 1972d277a298cdda81f3ac94a5c8c27f09a005b9..0000000000000000000000000000000000000000
--- a/client/store/README.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# STORE
-
-**This directory is not required, you can delete it if you don't want to use it.**
-
-This directory contains your Vuex Store files.
-Vuex Store option is implemented in the Nuxt.js framework.
-
-Creating a file in this directory automatically activates the option in the framework.
-
-More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/vuex-store).
diff --git a/client/store/index.js b/client/store/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..bc36da1ca1f0ef7b8905314a05bce736fbfeaa47
--- /dev/null
+++ b/client/store/index.js
@@ -0,0 +1,62 @@
+// Main store for getting and sharing initTables data
+// across components.
+// https://v2.nuxt.com/docs/directory-structure/store
+
+const _ = require('lodash');
+
+export const state = () => ({
+  initTables: {}
+})
+
+export const getters = {
+  getTotalTables(state) {
+    return Object.keys(state.initTables).length
+  },
+  getTotalPhenotypes(state) {
+    return Object.values(state.initTables).reduce((total, table) => {
+      if (typeof (table.nb_phenotypes) === 'number') {
+        return total + table.nb_phenotypes
+      } else {
+        return total
+      }
+    }, 0)
+  },
+  getTotalSNP(state) {
+    return Object.values(state.initTables).reduce((total, table) => {
+      if (typeof (table.nb_snps) === 'number') {
+        return total + table.nb_snps
+      } else {
+        return total
+      }
+    }, 0)
+  },
+}
+
+export const mutations = {
+  setInitTables(state, initTables) {
+    state.initTables = initTables
+  }
+}
+
+export const actions = {
+  async fetchTables({ commit }) {
+    const initTables = []
+
+    return await this.$axios.$get('/tables')
+      .then((initTableslist) => {
+        const initMetaRequests = initTableslist.map(initTableName => {
+          return this.$axios
+            .$post('/initmeta', { initTableName })
+            .then(initMeta => {
+              initMeta.tableName = initTableName
+              initTables.push(initMeta)
+            })
+        })
+
+        return Promise.all(initMetaRequests)
+      })
+      .then(() => {
+        commit('setInitTables', _.orderBy(initTables, 'name'))
+      })
+  }
+}
diff --git a/client/yarn.lock b/client/yarn.lock
index 01c7d428b5c5cd1b8ddaa601c7ccccc1a8e28db1..c6166e2c25e28bfe8c53ba17c3b00cd04a24d786 100644
--- a/client/yarn.lock
+++ b/client/yarn.lock
@@ -4,7 +4,7 @@
 
 "@ampproject/remapping@^2.2.0":
   version "2.2.1"
-  resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630"
+  resolved "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz"
   integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==
   dependencies:
     "@jridgewell/gen-mapping" "^0.3.0"
@@ -12,350 +12,311 @@
 
 "@babel/code-frame@7.12.11":
   version "7.12.11"
-  resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f"
+  resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz"
   integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==
   dependencies:
     "@babel/highlight" "^7.10.4"
 
-"@babel/code-frame@^7.0.0":
-  version "7.14.5"
-  resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz"
-  integrity sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==
-  dependencies:
-    "@babel/highlight" "^7.14.5"
-
-"@babel/code-frame@^7.14.5", "@babel/code-frame@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.5.tgz#234d98e1551960604f1246e6475891a570ad5658"
-  integrity sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.23.5":
+  version "7.23.5"
+  resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz"
+  integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==
   dependencies:
-    "@babel/highlight" "^7.22.5"
+    "@babel/highlight" "^7.23.4"
+    chalk "^2.4.2"
 
-"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.5.tgz#b1f6c86a02d85d2dd3368a2b67c09add8cd0c255"
-  integrity sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==
-
-"@babel/core@>=7.9.0", "@babel/core@^7.12.16":
-  version "7.14.6"
-  resolved "https://registry.npmjs.org/@babel/core/-/core-7.14.6.tgz"
-  integrity sha512-gJnOEWSqTk96qG5BoIrl5bVtc23DCycmIePPYnamY9RboYdI4nFy5vAQMSl81O5K/W0sLDWfGysnOECC+KUUCA==
-  dependencies:
-    "@babel/code-frame" "^7.14.5"
-    "@babel/generator" "^7.14.5"
-    "@babel/helper-compilation-targets" "^7.14.5"
-    "@babel/helper-module-transforms" "^7.14.5"
-    "@babel/helpers" "^7.14.6"
-    "@babel/parser" "^7.14.6"
-    "@babel/template" "^7.14.5"
-    "@babel/traverse" "^7.14.5"
-    "@babel/types" "^7.14.5"
-    convert-source-map "^1.7.0"
-    debug "^4.1.0"
-    gensync "^1.0.0-beta.2"
-    json5 "^2.1.2"
-    semver "^6.3.0"
-    source-map "^0.5.0"
+"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.23.3", "@babel/compat-data@^7.23.5":
+  version "7.23.5"
+  resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz"
+  integrity sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==
 
-"@babel/core@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.5.tgz#d67d9747ecf26ee7ecd3ebae1ee22225fe902a89"
-  integrity sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==
+"@babel/core@>=7.9.0", "@babel/core@^7.12.16", "@babel/core@^7.23.7":
+  version "7.23.7"
+  resolved "https://registry.npmjs.org/@babel/core/-/core-7.23.7.tgz"
+  integrity sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==
   dependencies:
     "@ampproject/remapping" "^2.2.0"
-    "@babel/code-frame" "^7.22.5"
-    "@babel/generator" "^7.22.5"
-    "@babel/helper-compilation-targets" "^7.22.5"
-    "@babel/helper-module-transforms" "^7.22.5"
-    "@babel/helpers" "^7.22.5"
-    "@babel/parser" "^7.22.5"
-    "@babel/template" "^7.22.5"
-    "@babel/traverse" "^7.22.5"
-    "@babel/types" "^7.22.5"
-    convert-source-map "^1.7.0"
+    "@babel/code-frame" "^7.23.5"
+    "@babel/generator" "^7.23.6"
+    "@babel/helper-compilation-targets" "^7.23.6"
+    "@babel/helper-module-transforms" "^7.23.3"
+    "@babel/helpers" "^7.23.7"
+    "@babel/parser" "^7.23.6"
+    "@babel/template" "^7.22.15"
+    "@babel/traverse" "^7.23.7"
+    "@babel/types" "^7.23.6"
+    convert-source-map "^2.0.0"
     debug "^4.1.0"
     gensync "^1.0.0-beta.2"
-    json5 "^2.2.2"
-    semver "^6.3.0"
-
-"@babel/eslint-parser@^7.12.16":
-  version "7.14.7"
-  resolved "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.14.7.tgz"
-  integrity sha512-6WPwZqO5priAGIwV6msJcdc9TsEPzYeYdS/Xuoap+/ihkgN6dzHp2bcAAwyWZ5bLzk0vvjDmKvRwkqNaiJ8BiQ==
-  dependencies:
-    eslint-scope "^5.1.1"
-    eslint-visitor-keys "^2.1.0"
-    semver "^6.3.0"
+    json5 "^2.2.3"
+    semver "^6.3.1"
 
-"@babel/eslint-parser@^7.14.7":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.22.5.tgz#fa032503b9e2d188e25b1b95d29e8b8431042d78"
-  integrity sha512-C69RWYNYtrgIRE5CmTd77ZiLDXqgBipahJc/jHP3sLcAGj6AJzxNIuKNpVnICqbyK7X3pFUfEvL++rvtbQpZkQ==
+"@babel/eslint-parser@^7.12.16", "@babel/eslint-parser@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.23.3.tgz"
+  integrity sha512-9bTuNlyx7oSstodm1cR1bECj4fkiknsDa1YniISkJemMY3DGhJNYBECbe6QD/q54mp2J8VO66jW3/7uP//iFCw==
   dependencies:
     "@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1"
     eslint-visitor-keys "^2.1.0"
-    semver "^6.3.0"
+    semver "^6.3.1"
 
-"@babel/generator@^7.14.5", "@babel/generator@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.5.tgz#1e7bf768688acfb05cf30b2369ef855e82d984f7"
-  integrity sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==
+"@babel/generator@^7.23.6":
+  version "7.23.6"
+  resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz"
+  integrity sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==
   dependencies:
-    "@babel/types" "^7.22.5"
+    "@babel/types" "^7.23.6"
     "@jridgewell/gen-mapping" "^0.3.2"
     "@jridgewell/trace-mapping" "^0.3.17"
     jsesc "^2.5.1"
 
 "@babel/helper-annotate-as-pure@^7.18.6", "@babel/helper-annotate-as-pure@^7.22.5":
   version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882"
+  resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz"
   integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==
   dependencies:
     "@babel/types" "^7.22.5"
 
-"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz#a3f4758efdd0190d8927fcffd261755937c71878"
-  integrity sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==
+"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.15":
+  version "7.22.15"
+  resolved "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz"
+  integrity sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==
   dependencies:
-    "@babel/types" "^7.22.5"
+    "@babel/types" "^7.22.15"
 
-"@babel/helper-compilation-targets@^7.14.5", "@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz#fc7319fc54c5e2fa14b2909cf3c5fd3046813e02"
-  integrity sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==
+"@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.23.6":
+  version "7.23.6"
+  resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz"
+  integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==
   dependencies:
-    "@babel/compat-data" "^7.22.5"
-    "@babel/helper-validator-option" "^7.22.5"
-    browserslist "^4.21.3"
+    "@babel/compat-data" "^7.23.5"
+    "@babel/helper-validator-option" "^7.23.5"
+    browserslist "^4.22.2"
     lru-cache "^5.1.1"
-    semver "^6.3.0"
+    semver "^6.3.1"
 
-"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.21.0", "@babel/helper-create-class-features-plugin@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.5.tgz#2192a1970ece4685fbff85b48da2c32fcb130b7c"
-  integrity sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==
+"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.21.0", "@babel/helper-create-class-features-plugin@^7.22.15", "@babel/helper-create-class-features-plugin@^7.23.7":
+  version "7.23.7"
+  resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.7.tgz"
+  integrity sha512-xCoqR/8+BoNnXOY7RVSgv6X+o7pmT5q1d+gGcRlXYkI+9B31glE4jeejhKVpA04O1AtzOt7OSQ6VYKP5FcRl9g==
   dependencies:
     "@babel/helper-annotate-as-pure" "^7.22.5"
-    "@babel/helper-environment-visitor" "^7.22.5"
-    "@babel/helper-function-name" "^7.22.5"
-    "@babel/helper-member-expression-to-functions" "^7.22.5"
+    "@babel/helper-environment-visitor" "^7.22.20"
+    "@babel/helper-function-name" "^7.23.0"
+    "@babel/helper-member-expression-to-functions" "^7.23.0"
     "@babel/helper-optimise-call-expression" "^7.22.5"
-    "@babel/helper-replace-supers" "^7.22.5"
+    "@babel/helper-replace-supers" "^7.22.20"
     "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
-    "@babel/helper-split-export-declaration" "^7.22.5"
-    semver "^6.3.0"
+    "@babel/helper-split-export-declaration" "^7.22.6"
+    semver "^6.3.1"
 
-"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.5.tgz#bb2bf0debfe39b831986a4efbf4066586819c6e4"
-  integrity sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==
+"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.15", "@babel/helper-create-regexp-features-plugin@^7.22.5":
+  version "7.22.15"
+  resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz"
+  integrity sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==
   dependencies:
     "@babel/helper-annotate-as-pure" "^7.22.5"
     regexpu-core "^5.3.1"
-    semver "^6.3.0"
+    semver "^6.3.1"
 
-"@babel/helper-define-polyfill-provider@^0.4.0":
-  version "0.4.0"
-  resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.0.tgz#487053f103110f25b9755c5980e031e93ced24d8"
-  integrity sha512-RnanLx5ETe6aybRi1cO/edaRH+bNYWaryCEmjDDYyNr4wnSzyOp8T0dWipmqVHKEY3AbVKUom50AKSlj1zmKbg==
+"@babel/helper-define-polyfill-provider@^0.4.4":
+  version "0.4.4"
+  resolved "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.4.tgz"
+  integrity sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==
   dependencies:
-    "@babel/helper-compilation-targets" "^7.17.7"
-    "@babel/helper-plugin-utils" "^7.16.7"
+    "@babel/helper-compilation-targets" "^7.22.6"
+    "@babel/helper-plugin-utils" "^7.22.5"
     debug "^4.1.1"
     lodash.debounce "^4.0.8"
     resolve "^1.14.2"
-    semver "^6.1.2"
 
-"@babel/helper-environment-visitor@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz#f06dd41b7c1f44e1f8da6c4055b41ab3a09a7e98"
-  integrity sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==
+"@babel/helper-environment-visitor@^7.22.20":
+  version "7.22.20"
+  resolved "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz"
+  integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==
 
-"@babel/helper-function-name@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be"
-  integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==
+"@babel/helper-function-name@^7.22.5", "@babel/helper-function-name@^7.23.0":
+  version "7.23.0"
+  resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz"
+  integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==
   dependencies:
-    "@babel/template" "^7.22.5"
-    "@babel/types" "^7.22.5"
+    "@babel/template" "^7.22.15"
+    "@babel/types" "^7.23.0"
 
 "@babel/helper-hoist-variables@^7.22.5":
   version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb"
+  resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz"
   integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==
   dependencies:
     "@babel/types" "^7.22.5"
 
-"@babel/helper-member-expression-to-functions@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz#0a7c56117cad3372fbf8d2fb4bf8f8d64a1e76b2"
-  integrity sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==
+"@babel/helper-member-expression-to-functions@^7.22.15", "@babel/helper-member-expression-to-functions@^7.23.0":
+  version "7.23.0"
+  resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz"
+  integrity sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==
   dependencies:
-    "@babel/types" "^7.22.5"
+    "@babel/types" "^7.23.0"
 
-"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c"
-  integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==
+"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.22.15":
+  version "7.22.15"
+  resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz"
+  integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==
   dependencies:
-    "@babel/types" "^7.22.5"
+    "@babel/types" "^7.22.15"
 
-"@babel/helper-module-transforms@^7.14.5", "@babel/helper-module-transforms@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz#0f65daa0716961b6e96b164034e737f60a80d2ef"
-  integrity sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==
+"@babel/helper-module-transforms@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz"
+  integrity sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==
   dependencies:
-    "@babel/helper-environment-visitor" "^7.22.5"
-    "@babel/helper-module-imports" "^7.22.5"
+    "@babel/helper-environment-visitor" "^7.22.20"
+    "@babel/helper-module-imports" "^7.22.15"
     "@babel/helper-simple-access" "^7.22.5"
-    "@babel/helper-split-export-declaration" "^7.22.5"
-    "@babel/helper-validator-identifier" "^7.22.5"
-    "@babel/template" "^7.22.5"
-    "@babel/traverse" "^7.22.5"
-    "@babel/types" "^7.22.5"
+    "@babel/helper-split-export-declaration" "^7.22.6"
+    "@babel/helper-validator-identifier" "^7.22.20"
 
 "@babel/helper-optimise-call-expression@^7.22.5":
   version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e"
+  resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz"
   integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==
   dependencies:
     "@babel/types" "^7.22.5"
 
-"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
   version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295"
+  resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz"
   integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==
 
-"@babel/helper-remap-async-to-generator@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz#14a38141a7bf2165ad38da61d61cf27b43015da2"
-  integrity sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==
+"@babel/helper-remap-async-to-generator@^7.22.20":
+  version "7.22.20"
+  resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz"
+  integrity sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==
   dependencies:
     "@babel/helper-annotate-as-pure" "^7.22.5"
-    "@babel/helper-environment-visitor" "^7.22.5"
-    "@babel/helper-wrap-function" "^7.22.5"
-    "@babel/types" "^7.22.5"
+    "@babel/helper-environment-visitor" "^7.22.20"
+    "@babel/helper-wrap-function" "^7.22.20"
 
-"@babel/helper-replace-supers@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz#71bc5fb348856dea9fdc4eafd7e2e49f585145dc"
-  integrity sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==
+"@babel/helper-replace-supers@^7.22.20":
+  version "7.22.20"
+  resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz"
+  integrity sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==
   dependencies:
-    "@babel/helper-environment-visitor" "^7.22.5"
-    "@babel/helper-member-expression-to-functions" "^7.22.5"
+    "@babel/helper-environment-visitor" "^7.22.20"
+    "@babel/helper-member-expression-to-functions" "^7.22.15"
     "@babel/helper-optimise-call-expression" "^7.22.5"
-    "@babel/template" "^7.22.5"
-    "@babel/traverse" "^7.22.5"
-    "@babel/types" "^7.22.5"
 
 "@babel/helper-simple-access@^7.22.5":
   version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de"
+  resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz"
   integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==
   dependencies:
     "@babel/types" "^7.22.5"
 
 "@babel/helper-skip-transparent-expression-wrappers@^7.20.0", "@babel/helper-skip-transparent-expression-wrappers@^7.22.5":
   version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847"
+  resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz"
   integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==
   dependencies:
     "@babel/types" "^7.22.5"
 
-"@babel/helper-split-export-declaration@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz#88cf11050edb95ed08d596f7a044462189127a08"
-  integrity sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==
+"@babel/helper-split-export-declaration@^7.22.6":
+  version "7.22.6"
+  resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz"
+  integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==
   dependencies:
     "@babel/types" "^7.22.5"
 
-"@babel/helper-string-parser@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f"
-  integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==
+"@babel/helper-string-parser@^7.23.4":
+  version "7.23.4"
+  resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz"
+  integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==
 
-"@babel/helper-validator-identifier@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193"
-  integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==
+"@babel/helper-validator-identifier@^7.22.20":
+  version "7.22.20"
+  resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz"
+  integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==
 
-"@babel/helper-validator-option@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac"
-  integrity sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==
+"@babel/helper-validator-option@^7.23.5":
+  version "7.23.5"
+  resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz"
+  integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==
 
-"@babel/helper-wrap-function@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz#44d205af19ed8d872b4eefb0d2fa65f45eb34f06"
-  integrity sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==
+"@babel/helper-wrap-function@^7.22.20":
+  version "7.22.20"
+  resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz"
+  integrity sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==
   dependencies:
     "@babel/helper-function-name" "^7.22.5"
-    "@babel/template" "^7.22.5"
-    "@babel/traverse" "^7.22.5"
-    "@babel/types" "^7.22.5"
+    "@babel/template" "^7.22.15"
+    "@babel/types" "^7.22.19"
 
-"@babel/helpers@^7.14.6", "@babel/helpers@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.5.tgz#74bb4373eb390d1ceed74a15ef97767e63120820"
-  integrity sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==
+"@babel/helpers@^7.23.7":
+  version "7.23.8"
+  resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.8.tgz"
+  integrity sha512-KDqYz4PiOWvDFrdHLPhKtCThtIcKVy6avWD2oG4GEvyQ+XDZwHD4YQd+H2vNMnq2rkdxsDkU82T+Vk8U/WXHRQ==
   dependencies:
-    "@babel/template" "^7.22.5"
-    "@babel/traverse" "^7.22.5"
-    "@babel/types" "^7.22.5"
+    "@babel/template" "^7.22.15"
+    "@babel/traverse" "^7.23.7"
+    "@babel/types" "^7.23.6"
 
-"@babel/highlight@^7.10.4", "@babel/highlight@^7.14.5", "@babel/highlight@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.5.tgz#aa6c05c5407a67ebce408162b7ede789b4d22031"
-  integrity sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==
+"@babel/highlight@^7.10.4", "@babel/highlight@^7.23.4":
+  version "7.23.4"
+  resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz"
+  integrity sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==
   dependencies:
-    "@babel/helper-validator-identifier" "^7.22.5"
-    chalk "^2.0.0"
+    "@babel/helper-validator-identifier" "^7.22.20"
+    chalk "^2.4.2"
     js-tokens "^4.0.0"
 
-"@babel/parser@^7.14.6", "@babel/parser@^7.18.4", "@babel/parser@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.5.tgz#721fd042f3ce1896238cf1b341c77eb7dee7dbea"
-  integrity sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==
+"@babel/parser@^7.22.15", "@babel/parser@^7.23.5", "@babel/parser@^7.23.6":
+  version "7.23.6"
+  resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.23.6.tgz"
+  integrity sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==
 
-"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz#87245a21cd69a73b0b81bcda98d443d6df08f05e"
-  integrity sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==
+"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz"
+  integrity sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz#fef09f9499b1f1c930da8a0c419db42167d792ca"
-  integrity sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==
+"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz"
+  integrity sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
     "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
-    "@babel/plugin-transform-optional-chaining" "^7.22.5"
+    "@babel/plugin-transform-optional-chaining" "^7.23.3"
+
+"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.23.7":
+  version "7.23.7"
+  resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.7.tgz"
+  integrity sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==
+  dependencies:
+    "@babel/helper-environment-visitor" "^7.22.20"
+    "@babel/helper-plugin-utils" "^7.22.5"
 
 "@babel/plugin-proposal-class-properties@^7.18.6":
   version "7.18.6"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3"
+  resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz"
   integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==
   dependencies:
     "@babel/helper-create-class-features-plugin" "^7.18.6"
     "@babel/helper-plugin-utils" "^7.18.6"
 
-"@babel/plugin-proposal-decorators@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.22.5.tgz#dc8cdda048e5aea947efda920e030199806b868d"
-  integrity sha512-h8hlezQ4dl6ixodgXkH8lUfcD7x+WAuIqPUjwGoItynrXOAv4a4Tci1zA/qjzQjjcl0v3QpLdc2LM6ZACQuY7A==
+"@babel/plugin-proposal-decorators@^7.23.7":
+  version "7.23.7"
+  resolved "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.23.7.tgz"
+  integrity sha512-b1s5JyeMvqj7d9m9KhJNHKc18gEJiSyVzVX3bwbiPalQBQpuvfPh6lA9F7Kk/dWH0TIiXRpB9yicwijY6buPng==
   dependencies:
-    "@babel/helper-create-class-features-plugin" "^7.22.5"
+    "@babel/helper-create-class-features-plugin" "^7.23.7"
     "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-replace-supers" "^7.22.5"
-    "@babel/helper-split-export-declaration" "^7.22.5"
-    "@babel/plugin-syntax-decorators" "^7.22.5"
+    "@babel/plugin-syntax-decorators" "^7.23.3"
 
 "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6":
   version "7.18.6"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1"
+  resolved "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz"
   integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==
   dependencies:
     "@babel/helper-plugin-utils" "^7.18.6"
@@ -363,7 +324,7 @@
 
 "@babel/plugin-proposal-optional-chaining@^7.21.0":
   version "7.21.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea"
+  resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz"
   integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==
   dependencies:
     "@babel/helper-plugin-utils" "^7.20.2"
@@ -372,7 +333,7 @@
 
 "@babel/plugin-proposal-private-methods@^7.18.6":
   version "7.18.6"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz#5209de7d213457548a98436fa2882f52f4be6bea"
+  resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz"
   integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==
   dependencies:
     "@babel/helper-create-class-features-plugin" "^7.18.6"
@@ -380,12 +341,12 @@
 
 "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2":
   version "7.21.0-placeholder-for-preset-env.2"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703"
+  resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz"
   integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==
 
 "@babel/plugin-proposal-private-property-in-object@^7.21.11":
   version "7.21.11"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.11.tgz#69d597086b6760c4126525cfa154f34631ff272c"
+  resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.11.tgz"
   integrity sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==
   dependencies:
     "@babel/helper-annotate-as-pure" "^7.18.6"
@@ -393,574 +354,567 @@
     "@babel/helper-plugin-utils" "^7.20.2"
     "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
 
-"@babel/plugin-proposal-unicode-property-regex@^7.4.4":
-  version "7.18.6"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e"
-  integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==
-  dependencies:
-    "@babel/helper-create-regexp-features-plugin" "^7.18.6"
-    "@babel/helper-plugin-utils" "^7.18.6"
-
 "@babel/plugin-syntax-async-generators@^7.8.4":
   version "7.8.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
+  resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz"
   integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
   dependencies:
     "@babel/helper-plugin-utils" "^7.8.0"
 
 "@babel/plugin-syntax-class-properties@^7.12.13":
   version "7.12.13"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
+  resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"
   integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
   dependencies:
     "@babel/helper-plugin-utils" "^7.12.13"
 
 "@babel/plugin-syntax-class-static-block@^7.14.5":
   version "7.14.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406"
+  resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz"
   integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==
   dependencies:
     "@babel/helper-plugin-utils" "^7.14.5"
 
-"@babel/plugin-syntax-decorators@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.22.5.tgz#329fe2907c73de184033775637dbbc507f09116a"
-  integrity sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==
+"@babel/plugin-syntax-decorators@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.23.3.tgz"
+  integrity sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
 "@babel/plugin-syntax-dynamic-import@^7.8.3":
   version "7.8.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
+  resolved "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz"
   integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
   dependencies:
     "@babel/helper-plugin-utils" "^7.8.0"
 
 "@babel/plugin-syntax-export-namespace-from@^7.8.3":
   version "7.8.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
+  resolved "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz"
   integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
   dependencies:
     "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-syntax-import-assertions@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz#07d252e2aa0bc6125567f742cd58619cb14dce98"
-  integrity sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==
+"@babel/plugin-syntax-import-assertions@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz"
+  integrity sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-syntax-import-attributes@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz#ab840248d834410b829f569f5262b9e517555ecb"
-  integrity sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==
+"@babel/plugin-syntax-import-attributes@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz"
+  integrity sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
 "@babel/plugin-syntax-import-meta@^7.10.4":
   version "7.10.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51"
+  resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz"
   integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
   dependencies:
     "@babel/helper-plugin-utils" "^7.10.4"
 
 "@babel/plugin-syntax-json-strings@^7.8.3":
   version "7.8.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
+  resolved "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz"
   integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
   dependencies:
     "@babel/helper-plugin-utils" "^7.8.0"
 
 "@babel/plugin-syntax-jsx@^7.2.0":
   version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918"
+  resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz"
   integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
 "@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
   version "7.10.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
+  resolved "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz"
   integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
   dependencies:
     "@babel/helper-plugin-utils" "^7.10.4"
 
 "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
   version "7.8.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
+  resolved "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"
   integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
   dependencies:
     "@babel/helper-plugin-utils" "^7.8.0"
 
 "@babel/plugin-syntax-numeric-separator@^7.10.4":
   version "7.10.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
+  resolved "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz"
   integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
   dependencies:
     "@babel/helper-plugin-utils" "^7.10.4"
 
 "@babel/plugin-syntax-object-rest-spread@^7.8.3":
   version "7.8.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
+  resolved "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"
   integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
   dependencies:
     "@babel/helper-plugin-utils" "^7.8.0"
 
 "@babel/plugin-syntax-optional-catch-binding@^7.8.3":
   version "7.8.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
+  resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz"
   integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
   dependencies:
     "@babel/helper-plugin-utils" "^7.8.0"
 
 "@babel/plugin-syntax-optional-chaining@^7.8.3":
   version "7.8.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
+  resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz"
   integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
   dependencies:
     "@babel/helper-plugin-utils" "^7.8.0"
 
 "@babel/plugin-syntax-private-property-in-object@^7.14.5":
   version "7.14.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad"
+  resolved "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz"
   integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==
   dependencies:
     "@babel/helper-plugin-utils" "^7.14.5"
 
 "@babel/plugin-syntax-top-level-await@^7.14.5":
   version "7.14.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c"
+  resolved "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz"
   integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==
   dependencies:
     "@babel/helper-plugin-utils" "^7.14.5"
 
 "@babel/plugin-syntax-unicode-sets-regex@^7.18.6":
   version "7.18.6"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357"
+  resolved "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz"
   integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==
   dependencies:
     "@babel/helper-create-regexp-features-plugin" "^7.18.6"
     "@babel/helper-plugin-utils" "^7.18.6"
 
-"@babel/plugin-transform-arrow-functions@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958"
-  integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==
+"@babel/plugin-transform-arrow-functions@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz"
+  integrity sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-async-generator-functions@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.5.tgz#7336356d23380eda9a56314974f053a020dab0c3"
-  integrity sha512-gGOEvFzm3fWoyD5uZq7vVTD57pPJ3PczPUD/xCFGjzBpUosnklmXyKnGQbbbGs1NPNPskFex0j93yKbHt0cHyg==
+"@babel/plugin-transform-async-generator-functions@^7.23.7":
+  version "7.23.7"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.7.tgz"
+  integrity sha512-PdxEpL71bJp1byMG0va5gwQcXHxuEYC/BgI/e88mGTtohbZN28O5Yit0Plkkm/dBzCF/BxmbNcses1RH1T+urA==
   dependencies:
-    "@babel/helper-environment-visitor" "^7.22.5"
+    "@babel/helper-environment-visitor" "^7.22.20"
     "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-remap-async-to-generator" "^7.22.5"
+    "@babel/helper-remap-async-to-generator" "^7.22.20"
     "@babel/plugin-syntax-async-generators" "^7.8.4"
 
-"@babel/plugin-transform-async-to-generator@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775"
-  integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==
+"@babel/plugin-transform-async-to-generator@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz"
+  integrity sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==
   dependencies:
-    "@babel/helper-module-imports" "^7.22.5"
+    "@babel/helper-module-imports" "^7.22.15"
     "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-remap-async-to-generator" "^7.22.5"
+    "@babel/helper-remap-async-to-generator" "^7.22.20"
 
-"@babel/plugin-transform-block-scoped-functions@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024"
-  integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==
+"@babel/plugin-transform-block-scoped-functions@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz"
+  integrity sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-block-scoping@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz#8bfc793b3a4b2742c0983fadc1480d843ecea31b"
-  integrity sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==
+"@babel/plugin-transform-block-scoping@^7.23.4":
+  version "7.23.4"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz"
+  integrity sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-class-properties@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz#97a56e31ad8c9dc06a0b3710ce7803d5a48cca77"
-  integrity sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==
+"@babel/plugin-transform-class-properties@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz"
+  integrity sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==
   dependencies:
-    "@babel/helper-create-class-features-plugin" "^7.22.5"
+    "@babel/helper-create-class-features-plugin" "^7.22.15"
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-class-static-block@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz#3e40c46f048403472d6f4183116d5e46b1bff5ba"
-  integrity sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==
+"@babel/plugin-transform-class-static-block@^7.23.4":
+  version "7.23.4"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz"
+  integrity sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==
   dependencies:
-    "@babel/helper-create-class-features-plugin" "^7.22.5"
+    "@babel/helper-create-class-features-plugin" "^7.22.15"
     "@babel/helper-plugin-utils" "^7.22.5"
     "@babel/plugin-syntax-class-static-block" "^7.14.5"
 
-"@babel/plugin-transform-classes@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.5.tgz#635d4e98da741fad814984639f4c0149eb0135e1"
-  integrity sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ==
+"@babel/plugin-transform-classes@^7.23.8":
+  version "7.23.8"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.8.tgz"
+  integrity sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==
   dependencies:
     "@babel/helper-annotate-as-pure" "^7.22.5"
-    "@babel/helper-compilation-targets" "^7.22.5"
-    "@babel/helper-environment-visitor" "^7.22.5"
-    "@babel/helper-function-name" "^7.22.5"
-    "@babel/helper-optimise-call-expression" "^7.22.5"
+    "@babel/helper-compilation-targets" "^7.23.6"
+    "@babel/helper-environment-visitor" "^7.22.20"
+    "@babel/helper-function-name" "^7.23.0"
     "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-replace-supers" "^7.22.5"
-    "@babel/helper-split-export-declaration" "^7.22.5"
+    "@babel/helper-replace-supers" "^7.22.20"
+    "@babel/helper-split-export-declaration" "^7.22.6"
     globals "^11.1.0"
 
-"@babel/plugin-transform-computed-properties@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869"
-  integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==
+"@babel/plugin-transform-computed-properties@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz"
+  integrity sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/template" "^7.22.5"
+    "@babel/template" "^7.22.15"
 
-"@babel/plugin-transform-destructuring@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz#d3aca7438f6c26c78cdd0b0ba920a336001b27cc"
-  integrity sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==
+"@babel/plugin-transform-destructuring@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz"
+  integrity sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-dotall-regex@^7.22.5", "@babel/plugin-transform-dotall-regex@^7.4.4":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz#dbb4f0e45766eb544e193fb00e65a1dd3b2a4165"
-  integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==
+"@babel/plugin-transform-dotall-regex@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz"
+  integrity sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==
   dependencies:
-    "@babel/helper-create-regexp-features-plugin" "^7.22.5"
+    "@babel/helper-create-regexp-features-plugin" "^7.22.15"
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-duplicate-keys@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz#b6e6428d9416f5f0bba19c70d1e6e7e0b88ab285"
-  integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==
+"@babel/plugin-transform-duplicate-keys@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz"
+  integrity sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-dynamic-import@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz#d6908a8916a810468c4edff73b5b75bda6ad393e"
-  integrity sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==
+"@babel/plugin-transform-dynamic-import@^7.23.4":
+  version "7.23.4"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz"
+  integrity sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
     "@babel/plugin-syntax-dynamic-import" "^7.8.3"
 
-"@babel/plugin-transform-exponentiation-operator@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a"
-  integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==
+"@babel/plugin-transform-exponentiation-operator@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz"
+  integrity sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==
   dependencies:
-    "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5"
+    "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.15"
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-export-namespace-from@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz#57c41cb1d0613d22f548fddd8b288eedb9973a5b"
-  integrity sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==
+"@babel/plugin-transform-export-namespace-from@^7.23.4":
+  version "7.23.4"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz"
+  integrity sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
     "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
 
-"@babel/plugin-transform-for-of@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz#ab1b8a200a8f990137aff9a084f8de4099ab173f"
-  integrity sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==
+"@babel/plugin-transform-for-of@^7.23.6":
+  version "7.23.6"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz"
+  integrity sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
 
-"@babel/plugin-transform-function-name@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143"
-  integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==
+"@babel/plugin-transform-function-name@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz"
+  integrity sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==
   dependencies:
-    "@babel/helper-compilation-targets" "^7.22.5"
-    "@babel/helper-function-name" "^7.22.5"
+    "@babel/helper-compilation-targets" "^7.22.15"
+    "@babel/helper-function-name" "^7.23.0"
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-json-strings@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz#14b64352fdf7e1f737eed68de1a1468bd2a77ec0"
-  integrity sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==
+"@babel/plugin-transform-json-strings@^7.23.4":
+  version "7.23.4"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz"
+  integrity sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
     "@babel/plugin-syntax-json-strings" "^7.8.3"
 
-"@babel/plugin-transform-literals@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920"
-  integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==
+"@babel/plugin-transform-literals@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz"
+  integrity sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-logical-assignment-operators@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz#66ae5f068fd5a9a5dc570df16f56c2a8462a9d6c"
-  integrity sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==
+"@babel/plugin-transform-logical-assignment-operators@^7.23.4":
+  version "7.23.4"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz"
+  integrity sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
     "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
 
-"@babel/plugin-transform-member-expression-literals@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def"
-  integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==
+"@babel/plugin-transform-member-expression-literals@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz"
+  integrity sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-modules-amd@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz#4e045f55dcf98afd00f85691a68fc0780704f526"
-  integrity sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==
+"@babel/plugin-transform-modules-amd@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz"
+  integrity sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==
   dependencies:
-    "@babel/helper-module-transforms" "^7.22.5"
+    "@babel/helper-module-transforms" "^7.23.3"
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-modules-commonjs@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz#7d9875908d19b8c0536085af7b053fd5bd651bfa"
-  integrity sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==
+"@babel/plugin-transform-modules-commonjs@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz"
+  integrity sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==
   dependencies:
-    "@babel/helper-module-transforms" "^7.22.5"
+    "@babel/helper-module-transforms" "^7.23.3"
     "@babel/helper-plugin-utils" "^7.22.5"
     "@babel/helper-simple-access" "^7.22.5"
 
-"@babel/plugin-transform-modules-systemjs@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz#18c31410b5e579a0092638f95c896c2a98a5d496"
-  integrity sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==
+"@babel/plugin-transform-modules-systemjs@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.3.tgz"
+  integrity sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==
   dependencies:
     "@babel/helper-hoist-variables" "^7.22.5"
-    "@babel/helper-module-transforms" "^7.22.5"
+    "@babel/helper-module-transforms" "^7.23.3"
     "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-validator-identifier" "^7.22.5"
+    "@babel/helper-validator-identifier" "^7.22.20"
 
-"@babel/plugin-transform-modules-umd@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz#4694ae40a87b1745e3775b6a7fe96400315d4f98"
-  integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==
+"@babel/plugin-transform-modules-umd@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz"
+  integrity sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==
   dependencies:
-    "@babel/helper-module-transforms" "^7.22.5"
+    "@babel/helper-module-transforms" "^7.23.3"
     "@babel/helper-plugin-utils" "^7.22.5"
 
 "@babel/plugin-transform-named-capturing-groups-regex@^7.22.5":
   version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz#67fe18ee8ce02d57c855185e27e3dc959b2e991f"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz"
   integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==
   dependencies:
     "@babel/helper-create-regexp-features-plugin" "^7.22.5"
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-new-target@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz#1b248acea54ce44ea06dfd37247ba089fcf9758d"
-  integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==
+"@babel/plugin-transform-new-target@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz"
+  integrity sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-nullish-coalescing-operator@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz#f8872c65776e0b552e0849d7596cddd416c3e381"
-  integrity sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==
+"@babel/plugin-transform-nullish-coalescing-operator@^7.23.4":
+  version "7.23.4"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz"
+  integrity sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
     "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
 
-"@babel/plugin-transform-numeric-separator@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz#57226a2ed9e512b9b446517ab6fa2d17abb83f58"
-  integrity sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==
+"@babel/plugin-transform-numeric-separator@^7.23.4":
+  version "7.23.4"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz"
+  integrity sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
     "@babel/plugin-syntax-numeric-separator" "^7.10.4"
 
-"@babel/plugin-transform-object-rest-spread@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz#9686dc3447df4753b0b2a2fae7e8bc33cdc1f2e1"
-  integrity sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==
+"@babel/plugin-transform-object-rest-spread@^7.23.4":
+  version "7.23.4"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz"
+  integrity sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==
   dependencies:
-    "@babel/compat-data" "^7.22.5"
-    "@babel/helper-compilation-targets" "^7.22.5"
+    "@babel/compat-data" "^7.23.3"
+    "@babel/helper-compilation-targets" "^7.22.15"
     "@babel/helper-plugin-utils" "^7.22.5"
     "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
-    "@babel/plugin-transform-parameters" "^7.22.5"
+    "@babel/plugin-transform-parameters" "^7.23.3"
 
-"@babel/plugin-transform-object-super@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c"
-  integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==
+"@babel/plugin-transform-object-super@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz"
+  integrity sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-replace-supers" "^7.22.5"
+    "@babel/helper-replace-supers" "^7.22.20"
 
-"@babel/plugin-transform-optional-catch-binding@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz#842080be3076703be0eaf32ead6ac8174edee333"
-  integrity sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==
+"@babel/plugin-transform-optional-catch-binding@^7.23.4":
+  version "7.23.4"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz"
+  integrity sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
     "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
 
-"@babel/plugin-transform-optional-chaining@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.5.tgz#1003762b9c14295501beb41be72426736bedd1e0"
-  integrity sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ==
+"@babel/plugin-transform-optional-chaining@^7.23.3", "@babel/plugin-transform-optional-chaining@^7.23.4":
+  version "7.23.4"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz"
+  integrity sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
     "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
     "@babel/plugin-syntax-optional-chaining" "^7.8.3"
 
-"@babel/plugin-transform-parameters@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz#c3542dd3c39b42c8069936e48717a8d179d63a18"
-  integrity sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==
+"@babel/plugin-transform-parameters@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz"
+  integrity sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-private-methods@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz#21c8af791f76674420a147ae62e9935d790f8722"
-  integrity sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==
+"@babel/plugin-transform-private-methods@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz"
+  integrity sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==
   dependencies:
-    "@babel/helper-create-class-features-plugin" "^7.22.5"
+    "@babel/helper-create-class-features-plugin" "^7.22.15"
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-private-property-in-object@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz#07a77f28cbb251546a43d175a1dda4cf3ef83e32"
-  integrity sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==
+"@babel/plugin-transform-private-property-in-object@^7.23.4":
+  version "7.23.4"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz"
+  integrity sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==
   dependencies:
     "@babel/helper-annotate-as-pure" "^7.22.5"
-    "@babel/helper-create-class-features-plugin" "^7.22.5"
+    "@babel/helper-create-class-features-plugin" "^7.22.15"
     "@babel/helper-plugin-utils" "^7.22.5"
     "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
 
-"@babel/plugin-transform-property-literals@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766"
-  integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==
+"@babel/plugin-transform-property-literals@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz"
+  integrity sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-regenerator@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz#cd8a68b228a5f75fa01420e8cc2fc400f0fc32aa"
-  integrity sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==
+"@babel/plugin-transform-regenerator@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz"
+  integrity sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
-    regenerator-transform "^0.15.1"
+    regenerator-transform "^0.15.2"
 
-"@babel/plugin-transform-reserved-words@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz#832cd35b81c287c4bcd09ce03e22199641f964fb"
-  integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==
+"@babel/plugin-transform-reserved-words@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz"
+  integrity sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-runtime@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.5.tgz#ca975fb5e260044473c8142e1b18b567d33c2a3b"
-  integrity sha512-bg4Wxd1FWeFx3daHFTWk1pkSWK/AyQuiyAoeZAOkAOUBjnZPH6KT7eMxouV47tQ6hl6ax2zyAWBdWZXbrvXlaw==
+"@babel/plugin-transform-runtime@^7.23.7":
+  version "7.23.7"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.7.tgz"
+  integrity sha512-fa0hnfmiXc9fq/weK34MUV0drz2pOL/vfKWvN7Qw127hiUPabFCUMgAbYWcchRzMJit4o5ARsK/s+5h0249pLw==
   dependencies:
-    "@babel/helper-module-imports" "^7.22.5"
+    "@babel/helper-module-imports" "^7.22.15"
     "@babel/helper-plugin-utils" "^7.22.5"
-    babel-plugin-polyfill-corejs2 "^0.4.3"
-    babel-plugin-polyfill-corejs3 "^0.8.1"
-    babel-plugin-polyfill-regenerator "^0.5.0"
-    semver "^6.3.0"
+    babel-plugin-polyfill-corejs2 "^0.4.7"
+    babel-plugin-polyfill-corejs3 "^0.8.7"
+    babel-plugin-polyfill-regenerator "^0.5.4"
+    semver "^6.3.1"
 
-"@babel/plugin-transform-shorthand-properties@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624"
-  integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==
+"@babel/plugin-transform-shorthand-properties@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz"
+  integrity sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-spread@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b"
-  integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==
+"@babel/plugin-transform-spread@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz"
+  integrity sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
     "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
 
-"@babel/plugin-transform-sticky-regex@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa"
-  integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==
+"@babel/plugin-transform-sticky-regex@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz"
+  integrity sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-template-literals@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff"
-  integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==
+"@babel/plugin-transform-template-literals@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz"
+  integrity sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-typeof-symbol@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz#5e2ba478da4b603af8673ff7c54f75a97b716b34"
-  integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==
+"@babel/plugin-transform-typeof-symbol@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz"
+  integrity sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-unicode-escapes@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz#ce0c248522b1cb22c7c992d88301a5ead70e806c"
-  integrity sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==
+"@babel/plugin-transform-unicode-escapes@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz"
+  integrity sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==
   dependencies:
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-unicode-property-regex@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz#098898f74d5c1e86660dc112057b2d11227f1c81"
-  integrity sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==
+"@babel/plugin-transform-unicode-property-regex@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz"
+  integrity sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==
   dependencies:
-    "@babel/helper-create-regexp-features-plugin" "^7.22.5"
+    "@babel/helper-create-regexp-features-plugin" "^7.22.15"
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-unicode-regex@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183"
-  integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==
+"@babel/plugin-transform-unicode-regex@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz"
+  integrity sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==
   dependencies:
-    "@babel/helper-create-regexp-features-plugin" "^7.22.5"
+    "@babel/helper-create-regexp-features-plugin" "^7.22.15"
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-unicode-sets-regex@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz#77788060e511b708ffc7d42fdfbc5b37c3004e91"
-  integrity sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==
+"@babel/plugin-transform-unicode-sets-regex@^7.23.3":
+  version "7.23.3"
+  resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz"
+  integrity sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==
   dependencies:
-    "@babel/helper-create-regexp-features-plugin" "^7.22.5"
+    "@babel/helper-create-regexp-features-plugin" "^7.22.15"
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/preset-env@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.5.tgz#3da66078b181f3d62512c51cf7014392c511504e"
-  integrity sha512-fj06hw89dpiZzGZtxn+QybifF07nNiZjZ7sazs2aVDcysAZVGjW7+7iFYxg6GLNM47R/thYfLdrXc+2f11Vi9A==
+"@babel/preset-env@^7.23.8":
+  version "7.23.8"
+  resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.8.tgz"
+  integrity sha512-lFlpmkApLkEP6woIKprO6DO60RImpatTQKtz4sUcDjVcK8M8mQ4sZsuxaTMNOZf0sqAq/ReYW1ZBHnOQwKpLWA==
   dependencies:
-    "@babel/compat-data" "^7.22.5"
-    "@babel/helper-compilation-targets" "^7.22.5"
+    "@babel/compat-data" "^7.23.5"
+    "@babel/helper-compilation-targets" "^7.23.6"
     "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-validator-option" "^7.22.5"
-    "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.5"
-    "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.22.5"
+    "@babel/helper-validator-option" "^7.23.5"
+    "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.23.3"
+    "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.23.3"
+    "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.23.7"
     "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2"
     "@babel/plugin-syntax-async-generators" "^7.8.4"
     "@babel/plugin-syntax-class-properties" "^7.12.13"
     "@babel/plugin-syntax-class-static-block" "^7.14.5"
     "@babel/plugin-syntax-dynamic-import" "^7.8.3"
     "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
-    "@babel/plugin-syntax-import-assertions" "^7.22.5"
-    "@babel/plugin-syntax-import-attributes" "^7.22.5"
+    "@babel/plugin-syntax-import-assertions" "^7.23.3"
+    "@babel/plugin-syntax-import-attributes" "^7.23.3"
     "@babel/plugin-syntax-import-meta" "^7.10.4"
     "@babel/plugin-syntax-json-strings" "^7.8.3"
     "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
@@ -972,357 +926,387 @@
     "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
     "@babel/plugin-syntax-top-level-await" "^7.14.5"
     "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6"
-    "@babel/plugin-transform-arrow-functions" "^7.22.5"
-    "@babel/plugin-transform-async-generator-functions" "^7.22.5"
-    "@babel/plugin-transform-async-to-generator" "^7.22.5"
-    "@babel/plugin-transform-block-scoped-functions" "^7.22.5"
-    "@babel/plugin-transform-block-scoping" "^7.22.5"
-    "@babel/plugin-transform-class-properties" "^7.22.5"
-    "@babel/plugin-transform-class-static-block" "^7.22.5"
-    "@babel/plugin-transform-classes" "^7.22.5"
-    "@babel/plugin-transform-computed-properties" "^7.22.5"
-    "@babel/plugin-transform-destructuring" "^7.22.5"
-    "@babel/plugin-transform-dotall-regex" "^7.22.5"
-    "@babel/plugin-transform-duplicate-keys" "^7.22.5"
-    "@babel/plugin-transform-dynamic-import" "^7.22.5"
-    "@babel/plugin-transform-exponentiation-operator" "^7.22.5"
-    "@babel/plugin-transform-export-namespace-from" "^7.22.5"
-    "@babel/plugin-transform-for-of" "^7.22.5"
-    "@babel/plugin-transform-function-name" "^7.22.5"
-    "@babel/plugin-transform-json-strings" "^7.22.5"
-    "@babel/plugin-transform-literals" "^7.22.5"
-    "@babel/plugin-transform-logical-assignment-operators" "^7.22.5"
-    "@babel/plugin-transform-member-expression-literals" "^7.22.5"
-    "@babel/plugin-transform-modules-amd" "^7.22.5"
-    "@babel/plugin-transform-modules-commonjs" "^7.22.5"
-    "@babel/plugin-transform-modules-systemjs" "^7.22.5"
-    "@babel/plugin-transform-modules-umd" "^7.22.5"
+    "@babel/plugin-transform-arrow-functions" "^7.23.3"
+    "@babel/plugin-transform-async-generator-functions" "^7.23.7"
+    "@babel/plugin-transform-async-to-generator" "^7.23.3"
+    "@babel/plugin-transform-block-scoped-functions" "^7.23.3"
+    "@babel/plugin-transform-block-scoping" "^7.23.4"
+    "@babel/plugin-transform-class-properties" "^7.23.3"
+    "@babel/plugin-transform-class-static-block" "^7.23.4"
+    "@babel/plugin-transform-classes" "^7.23.8"
+    "@babel/plugin-transform-computed-properties" "^7.23.3"
+    "@babel/plugin-transform-destructuring" "^7.23.3"
+    "@babel/plugin-transform-dotall-regex" "^7.23.3"
+    "@babel/plugin-transform-duplicate-keys" "^7.23.3"
+    "@babel/plugin-transform-dynamic-import" "^7.23.4"
+    "@babel/plugin-transform-exponentiation-operator" "^7.23.3"
+    "@babel/plugin-transform-export-namespace-from" "^7.23.4"
+    "@babel/plugin-transform-for-of" "^7.23.6"
+    "@babel/plugin-transform-function-name" "^7.23.3"
+    "@babel/plugin-transform-json-strings" "^7.23.4"
+    "@babel/plugin-transform-literals" "^7.23.3"
+    "@babel/plugin-transform-logical-assignment-operators" "^7.23.4"
+    "@babel/plugin-transform-member-expression-literals" "^7.23.3"
+    "@babel/plugin-transform-modules-amd" "^7.23.3"
+    "@babel/plugin-transform-modules-commonjs" "^7.23.3"
+    "@babel/plugin-transform-modules-systemjs" "^7.23.3"
+    "@babel/plugin-transform-modules-umd" "^7.23.3"
     "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5"
-    "@babel/plugin-transform-new-target" "^7.22.5"
-    "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.5"
-    "@babel/plugin-transform-numeric-separator" "^7.22.5"
-    "@babel/plugin-transform-object-rest-spread" "^7.22.5"
-    "@babel/plugin-transform-object-super" "^7.22.5"
-    "@babel/plugin-transform-optional-catch-binding" "^7.22.5"
-    "@babel/plugin-transform-optional-chaining" "^7.22.5"
-    "@babel/plugin-transform-parameters" "^7.22.5"
-    "@babel/plugin-transform-private-methods" "^7.22.5"
-    "@babel/plugin-transform-private-property-in-object" "^7.22.5"
-    "@babel/plugin-transform-property-literals" "^7.22.5"
-    "@babel/plugin-transform-regenerator" "^7.22.5"
-    "@babel/plugin-transform-reserved-words" "^7.22.5"
-    "@babel/plugin-transform-shorthand-properties" "^7.22.5"
-    "@babel/plugin-transform-spread" "^7.22.5"
-    "@babel/plugin-transform-sticky-regex" "^7.22.5"
-    "@babel/plugin-transform-template-literals" "^7.22.5"
-    "@babel/plugin-transform-typeof-symbol" "^7.22.5"
-    "@babel/plugin-transform-unicode-escapes" "^7.22.5"
-    "@babel/plugin-transform-unicode-property-regex" "^7.22.5"
-    "@babel/plugin-transform-unicode-regex" "^7.22.5"
-    "@babel/plugin-transform-unicode-sets-regex" "^7.22.5"
-    "@babel/preset-modules" "^0.1.5"
-    "@babel/types" "^7.22.5"
-    babel-plugin-polyfill-corejs2 "^0.4.3"
-    babel-plugin-polyfill-corejs3 "^0.8.1"
-    babel-plugin-polyfill-regenerator "^0.5.0"
-    core-js-compat "^3.30.2"
-    semver "^6.3.0"
-
-"@babel/preset-modules@^0.1.5":
-  version "0.1.5"
-  resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9"
-  integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==
+    "@babel/plugin-transform-new-target" "^7.23.3"
+    "@babel/plugin-transform-nullish-coalescing-operator" "^7.23.4"
+    "@babel/plugin-transform-numeric-separator" "^7.23.4"
+    "@babel/plugin-transform-object-rest-spread" "^7.23.4"
+    "@babel/plugin-transform-object-super" "^7.23.3"
+    "@babel/plugin-transform-optional-catch-binding" "^7.23.4"
+    "@babel/plugin-transform-optional-chaining" "^7.23.4"
+    "@babel/plugin-transform-parameters" "^7.23.3"
+    "@babel/plugin-transform-private-methods" "^7.23.3"
+    "@babel/plugin-transform-private-property-in-object" "^7.23.4"
+    "@babel/plugin-transform-property-literals" "^7.23.3"
+    "@babel/plugin-transform-regenerator" "^7.23.3"
+    "@babel/plugin-transform-reserved-words" "^7.23.3"
+    "@babel/plugin-transform-shorthand-properties" "^7.23.3"
+    "@babel/plugin-transform-spread" "^7.23.3"
+    "@babel/plugin-transform-sticky-regex" "^7.23.3"
+    "@babel/plugin-transform-template-literals" "^7.23.3"
+    "@babel/plugin-transform-typeof-symbol" "^7.23.3"
+    "@babel/plugin-transform-unicode-escapes" "^7.23.3"
+    "@babel/plugin-transform-unicode-property-regex" "^7.23.3"
+    "@babel/plugin-transform-unicode-regex" "^7.23.3"
+    "@babel/plugin-transform-unicode-sets-regex" "^7.23.3"
+    "@babel/preset-modules" "0.1.6-no-external-plugins"
+    babel-plugin-polyfill-corejs2 "^0.4.7"
+    babel-plugin-polyfill-corejs3 "^0.8.7"
+    babel-plugin-polyfill-regenerator "^0.5.4"
+    core-js-compat "^3.31.0"
+    semver "^6.3.1"
+
+"@babel/preset-modules@0.1.6-no-external-plugins":
+  version "0.1.6-no-external-plugins"
+  resolved "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz"
+  integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==
   dependencies:
     "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
-    "@babel/plugin-transform-dotall-regex" "^7.4.4"
     "@babel/types" "^7.4.4"
     esutils "^2.0.2"
 
 "@babel/regjsgen@^0.8.0":
   version "0.8.0"
-  resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310"
+  resolved "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz"
   integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==
 
-"@babel/runtime@^7.22.5", "@babel/runtime@^7.8.4":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.5.tgz#8564dd588182ce0047d55d7a75e93921107b57ec"
-  integrity sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA==
+"@babel/runtime@^7.23.8", "@babel/runtime@^7.8.4":
+  version "7.23.8"
+  resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.8.tgz"
+  integrity sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==
   dependencies:
-    regenerator-runtime "^0.13.11"
+    regenerator-runtime "^0.14.0"
 
-"@babel/template@^7.14.5", "@babel/template@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.5.tgz#0c8c4d944509875849bd0344ff0050756eefc6ec"
-  integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==
+"@babel/template@^7.22.15":
+  version "7.22.15"
+  resolved "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz"
+  integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==
   dependencies:
-    "@babel/code-frame" "^7.22.5"
-    "@babel/parser" "^7.22.5"
-    "@babel/types" "^7.22.5"
+    "@babel/code-frame" "^7.22.13"
+    "@babel/parser" "^7.22.15"
+    "@babel/types" "^7.22.15"
 
-"@babel/traverse@^7.14.5", "@babel/traverse@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.5.tgz#44bd276690db6f4940fdb84e1cb4abd2f729ccd1"
-  integrity sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==
+"@babel/traverse@^7.23.7":
+  version "7.23.7"
+  resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.7.tgz"
+  integrity sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==
   dependencies:
-    "@babel/code-frame" "^7.22.5"
-    "@babel/generator" "^7.22.5"
-    "@babel/helper-environment-visitor" "^7.22.5"
-    "@babel/helper-function-name" "^7.22.5"
+    "@babel/code-frame" "^7.23.5"
+    "@babel/generator" "^7.23.6"
+    "@babel/helper-environment-visitor" "^7.22.20"
+    "@babel/helper-function-name" "^7.23.0"
     "@babel/helper-hoist-variables" "^7.22.5"
-    "@babel/helper-split-export-declaration" "^7.22.5"
-    "@babel/parser" "^7.22.5"
-    "@babel/types" "^7.22.5"
-    debug "^4.1.0"
+    "@babel/helper-split-export-declaration" "^7.22.6"
+    "@babel/parser" "^7.23.6"
+    "@babel/types" "^7.23.6"
+    debug "^4.3.1"
     globals "^11.1.0"
 
-"@babel/types@^7.14.5", "@babel/types@^7.22.5", "@babel/types@^7.4.4":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.5.tgz#cd93eeaab025880a3a47ec881f4b096a5b786fbe"
-  integrity sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==
+"@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.6", "@babel/types@^7.4.4":
+  version "7.23.6"
+  resolved "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz"
+  integrity sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==
   dependencies:
-    "@babel/helper-string-parser" "^7.22.5"
-    "@babel/helper-validator-identifier" "^7.22.5"
+    "@babel/helper-string-parser" "^7.23.4"
+    "@babel/helper-validator-identifier" "^7.22.20"
     to-fast-properties "^2.0.0"
 
-"@csstools/cascade-layer-name-parser@^1.0.2":
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-1.0.2.tgz#35253f57c6c83d684fe396672486c644e6a84127"
-  integrity sha512-xm7Mgwej/wBfLoK0K5LfntmPJzoULayl1XZY9JYgQgT29JiqNw++sLnx95u5y9zCihblzkyaRYJrsRMhIBzRdg==
+"@csstools/cascade-layer-name-parser@^1.0.5", "@csstools/cascade-layer-name-parser@^1.0.7":
+  version "1.0.7"
+  resolved "https://registry.npmjs.org/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-1.0.7.tgz"
+  integrity sha512-9J4aMRJ7A2WRjaRLvsMeWrL69FmEuijtiW1XlK/sG+V0UJiHVYUyvj9mY4WAXfU/hGIiGOgL8e0jJcRyaZTjDQ==
 
-"@csstools/color-helpers@^2.1.0":
-  version "2.1.0"
-  resolved "https://registry.yarnpkg.com/@csstools/color-helpers/-/color-helpers-2.1.0.tgz#b27d8376e9e8a947878f10967481c22bf046976a"
-  integrity sha512-OWkqBa7PDzZuJ3Ha7T5bxdSVfSCfTq6K1mbAhbO1MD+GSULGjrp45i5RudyJOedstSarN/3mdwu9upJE7gDXfw==
+"@csstools/color-helpers@^4.0.0":
+  version "4.0.0"
+  resolved "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-4.0.0.tgz"
+  integrity sha512-wjyXB22/h2OvxAr3jldPB7R7kjTUEzopvjitS8jWtyd8fN6xJ8vy1HnHu0ZNfEkqpBJgQ76Q+sBDshWcMvTa/w==
 
-"@csstools/css-calc@^1.1.1":
-  version "1.1.1"
-  resolved "https://registry.yarnpkg.com/@csstools/css-calc/-/css-calc-1.1.1.tgz#c622728b7f0c9aae70952623c2b0d3d114752987"
-  integrity sha512-Nh+iLCtjlooTzuR0lpmB8I6hPX/VupcGQ3Z1U2+wgJJ4fa8+cWkub+lCsbZcYPzBGsZLEL8fQAg+Na5dwEFJxg==
+"@csstools/css-calc@^1.1.6":
+  version "1.1.6"
+  resolved "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-1.1.6.tgz"
+  integrity sha512-YHPAuFg5iA4qZGzMzvrQwzkvJpesXXyIUyaONflQrjtHB+BcFFbgltJkIkb31dMGO4SE9iZFA4HYpdk7+hnYew==
 
-"@csstools/css-color-parser@^1.2.0":
-  version "1.2.1"
-  resolved "https://registry.yarnpkg.com/@csstools/css-color-parser/-/css-color-parser-1.2.1.tgz#96d4bc4751d0f10e5156b8c15c3eb144d3365883"
-  integrity sha512-NcmaoJIEycIH0HnzZRrwRcBljPh1AWcXl4CNL8MAD3+Zy8XyIpdTtTMaY/phnLHHIYkyjaoSTdxAecss6+PCcg==
+"@csstools/css-color-parser@^1.5.1":
+  version "1.5.1"
+  resolved "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-1.5.1.tgz"
+  integrity sha512-x+SajGB2paGrTjPOUorGi8iCztF008YMKXTn+XzGVDBEIVJ/W1121pPerpneJYGOe1m6zWLPLnzOPaznmQxKFw==
   dependencies:
-    "@csstools/color-helpers" "^2.1.0"
-    "@csstools/css-calc" "^1.1.1"
+    "@csstools/color-helpers" "^4.0.0"
+    "@csstools/css-calc" "^1.1.6"
 
-"@csstools/css-parser-algorithms@^2.1.1", "@csstools/css-parser-algorithms@^2.2.0":
-  version "2.2.0"
-  resolved "https://registry.yarnpkg.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.2.0.tgz#1268b07196d1118296443aeff41bca27d94b0981"
-  integrity sha512-9BoQ/jSrPq4vv3b9jjLW+PNNv56KlDH5JMx5yASSNrCtvq70FCNZUjXRvbCeR9hYj9ZyhURtqpU/RFIgg6kiOw==
+"@csstools/css-parser-algorithms@^2.3.2", "@csstools/css-parser-algorithms@^2.5.0":
+  version "2.5.0"
+  resolved "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.5.0.tgz"
+  integrity sha512-abypo6m9re3clXA00eu5syw+oaPHbJTPapu9C4pzNsJ4hdZDzushT50Zhu+iIYXgEe1CxnRMn7ngsbV+MLrlpQ==
 
-"@csstools/css-tokenizer@^2.1.1":
-  version "2.1.1"
-  resolved "https://registry.yarnpkg.com/@csstools/css-tokenizer/-/css-tokenizer-2.1.1.tgz#07ae11a0a06365d7ec686549db7b729bc036528e"
-  integrity sha512-GbrTj2Z8MCTUv+52GE0RbFGM527xuXZ0Xa5g0Z+YN573uveS4G0qi6WNOMyz3yrFM/jaILTTwJ0+umx81EzqfA==
+"@csstools/css-tokenizer@^2.2.1", "@csstools/css-tokenizer@^2.2.3":
+  version "2.2.3"
+  resolved "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.2.3.tgz"
+  integrity sha512-pp//EvZ9dUmGuGtG1p+n17gTHEOqu9jO+FiCUjNN3BDmyhdA2Jq9QsVeR7K8/2QCK17HSsioPlTW9ZkzoWb3Lg==
 
-"@csstools/media-query-list-parser@^2.1.1":
-  version "2.1.1"
-  resolved "https://registry.yarnpkg.com/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.1.tgz#7c92053c957f188c35acb30c0678a90d460a4bb4"
-  integrity sha512-pUjtFbaKbiFNjJo8pprrIaXLvQvWIlwPiFnRI4sEnc4F0NIGTOsw8kaJSR3CmZAKEvV8QYckovgAnWQC0bgLLQ==
+"@csstools/media-query-list-parser@^2.1.5", "@csstools/media-query-list-parser@^2.1.7":
+  version "2.1.7"
+  resolved "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.7.tgz"
+  integrity sha512-lHPKJDkPUECsyAvD60joYfDmp8UERYxHGkFfyLJFTVK/ERJe0sVlIFLXU5XFxdjNDTerp5L4KeaKG+Z5S94qxQ==
 
-"@csstools/postcss-cascade-layers@^3.0.1":
-  version "3.0.1"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-3.0.1.tgz#d839386e90428b448e3f75276bc01d516e852a0d"
-  integrity sha512-dD8W98dOYNOH/yX4V4HXOhfCOnvVAg8TtsL+qCGNoKXuq5z2C/d026wGWgySgC8cajXXo/wNezS31Glj5GcqrA==
+"@csstools/postcss-cascade-layers@^4.0.1":
+  version "4.0.2"
+  resolved "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-4.0.2.tgz"
+  integrity sha512-PqM+jvg5T2tB4FHX+akrMGNWAygLupD4FNUjcv4PSvtVuWZ6ISxuo37m4jFGU7Jg3rCfloGzKd0+xfr5Ec3vZQ==
   dependencies:
-    "@csstools/selector-specificity" "^2.0.2"
-    postcss-selector-parser "^6.0.10"
+    "@csstools/selector-specificity" "^3.0.1"
+    postcss-selector-parser "^6.0.13"
 
-"@csstools/postcss-color-function@^2.2.3":
-  version "2.2.3"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-color-function/-/postcss-color-function-2.2.3.tgz#c15546c3cc6041293024cdaa7d7998a340f88c39"
-  integrity sha512-b1ptNkr1UWP96EEHqKBWWaV5m/0hgYGctgA/RVZhONeP1L3T/8hwoqDm9bB23yVCfOgE9U93KI9j06+pEkJTvw==
+"@csstools/postcss-color-function@^3.0.7":
+  version "3.0.9"
+  resolved "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-3.0.9.tgz"
+  integrity sha512-6Hbkw/4k73UH121l4LG+LNLKSvrfHqk3GHHH0A6/iFlD0xGmsWAr80Jd0VqXjfYbUTOGmJTOMMoxv3jvNxt1uw==
+  dependencies:
+    "@csstools/css-color-parser" "^1.5.1"
+    "@csstools/css-parser-algorithms" "^2.5.0"
+    "@csstools/css-tokenizer" "^2.2.3"
+    "@csstools/postcss-progressive-custom-properties" "^3.0.3"
+
+"@csstools/postcss-color-mix-function@^2.0.7":
+  version "2.0.9"
+  resolved "https://registry.npmjs.org/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-2.0.9.tgz"
+  integrity sha512-fs1SOWJ/44DQSsDeJP+rxAkP2MYkCg6K4ZB8qJwFku2EjurgCAPiPZJvC6w94T1hBBinJwuMfT9qvvvniXyVgw==
   dependencies:
-    "@csstools/css-color-parser" "^1.2.0"
-    "@csstools/css-parser-algorithms" "^2.1.1"
-    "@csstools/css-tokenizer" "^2.1.1"
-    "@csstools/postcss-progressive-custom-properties" "^2.3.0"
+    "@csstools/css-color-parser" "^1.5.1"
+    "@csstools/css-parser-algorithms" "^2.5.0"
+    "@csstools/css-tokenizer" "^2.2.3"
+    "@csstools/postcss-progressive-custom-properties" "^3.0.3"
 
-"@csstools/postcss-color-mix-function@^1.0.3":
+"@csstools/postcss-exponential-functions@^1.0.1":
   version "1.0.3"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-1.0.3.tgz#3755894bd8a04f82739327717700497a3f2f6f73"
-  integrity sha512-QGXjGugTluqFZWzVf+S3wCiRiI0ukXlYqCi7OnpDotP/zaVTyl/aqZujLFzTOXy24BoWnu89frGMc79ohY5eog==
+  resolved "https://registry.npmjs.org/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-1.0.3.tgz"
+  integrity sha512-IfGtEg3eC4b8Nd/kPgO3SxgKb33YwhHVsL0eJ3UYihx6fzzAiZwNbWmVW9MZTQjZ5GacgKxa4iAHikGvpwuIjw==
   dependencies:
-    "@csstools/css-color-parser" "^1.2.0"
-    "@csstools/css-parser-algorithms" "^2.1.1"
-    "@csstools/css-tokenizer" "^2.1.1"
-    "@csstools/postcss-progressive-custom-properties" "^2.3.0"
+    "@csstools/css-calc" "^1.1.6"
+    "@csstools/css-parser-algorithms" "^2.5.0"
+    "@csstools/css-tokenizer" "^2.2.3"
 
-"@csstools/postcss-font-format-keywords@^2.0.2":
-  version "2.0.2"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-2.0.2.tgz#d798d96f4af6cddcfee459f598c976e6011042d2"
-  integrity sha512-iKYZlIs6JsNT7NKyRjyIyezTCHLh4L4BBB3F5Nx7Dc4Z/QmBgX+YJFuUSar8IM6KclGiAUFGomXFdYxAwJydlA==
+"@csstools/postcss-font-format-keywords@^3.0.0":
+  version "3.0.1"
+  resolved "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-3.0.1.tgz"
+  integrity sha512-D1lcG2sfotTq6yBEOMV3myFxJLT10F3DLYZJMbiny5YToqzHWodZen8WId3UTimm0mEHitXqAUNL5jdd6RzVdA==
   dependencies:
     postcss-value-parser "^4.2.0"
 
-"@csstools/postcss-gradients-interpolation-method@^3.0.6":
-  version "3.0.6"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-3.0.6.tgz#9296958c28cc9940920ab22f7c86fbe3fd9a04f0"
-  integrity sha512-rBOBTat/YMmB0G8VHwKqDEx+RZ4KCU9j42K8LwS0IpZnyThalZZF7BCSsZ6TFlZhcRZKlZy3LLFI2pLqjNVGGA==
+"@csstools/postcss-gamut-mapping@^1.0.0":
+  version "1.0.2"
+  resolved "https://registry.npmjs.org/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-1.0.2.tgz"
+  integrity sha512-zf9KHGM2PTuJEm4ZYg4DTmzCir38EbZBzlMPMbA4jbhLDqXHkqwnQ+Z5+UNrU8y6seVu5B4vzZmZarTFQwe+Ig==
+  dependencies:
+    "@csstools/css-color-parser" "^1.5.1"
+    "@csstools/css-parser-algorithms" "^2.5.0"
+    "@csstools/css-tokenizer" "^2.2.3"
+
+"@csstools/postcss-gradients-interpolation-method@^4.0.7":
+  version "4.0.9"
+  resolved "https://registry.npmjs.org/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-4.0.9.tgz"
+  integrity sha512-PSqR6QH7h3ggOl8TsoH73kbwYTKVQjAJauGg6nDKwaGfi5IL5StV//ehrv1C7HuPsHixMTc9YoAuuv1ocT20EQ==
   dependencies:
-    "@csstools/css-color-parser" "^1.2.0"
-    "@csstools/css-parser-algorithms" "^2.1.1"
-    "@csstools/css-tokenizer" "^2.1.1"
-    "@csstools/postcss-progressive-custom-properties" "^2.3.0"
+    "@csstools/css-color-parser" "^1.5.1"
+    "@csstools/css-parser-algorithms" "^2.5.0"
+    "@csstools/css-tokenizer" "^2.2.3"
+    "@csstools/postcss-progressive-custom-properties" "^3.0.3"
 
-"@csstools/postcss-hwb-function@^2.2.2":
-  version "2.2.2"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-hwb-function/-/postcss-hwb-function-2.2.2.tgz#c36a450bc98038df00bbbebcef20f04aac6e0b08"
-  integrity sha512-W5Y5oaJ382HSlbdGfPf60d7dAK6Hqf10+Be1yZbd/TNNrQ/3dDdV1c07YwOXPQ3PZ6dvFMhxbIbn8EC3ki3nEg==
+"@csstools/postcss-hwb-function@^3.0.6":
+  version "3.0.8"
+  resolved "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-3.0.8.tgz"
+  integrity sha512-CRQEG372Hivmt17rm/Ho22hBQI9K/a6grzGQ21Zwc7dyspmyG0ibmPIW8hn15vJmXqWGeNq7S+L2b8/OrU7O5A==
   dependencies:
-    "@csstools/css-color-parser" "^1.2.0"
-    "@csstools/css-parser-algorithms" "^2.1.1"
-    "@csstools/css-tokenizer" "^2.1.1"
+    "@csstools/css-color-parser" "^1.5.1"
+    "@csstools/css-parser-algorithms" "^2.5.0"
+    "@csstools/css-tokenizer" "^2.2.3"
 
-"@csstools/postcss-ic-unit@^2.0.4":
-  version "2.0.4"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-ic-unit/-/postcss-ic-unit-2.0.4.tgz#e533ebaae61121bfdba3c2a8c9762c117b9a4047"
-  integrity sha512-9W2ZbV7whWnr1Gt4qYgxMWzbevZMOvclUczT5vk4yR6vS53W/njiiUhtm/jh/BKYwQ1W3PECZjgAd2dH4ebJig==
+"@csstools/postcss-ic-unit@^3.0.2":
+  version "3.0.3"
+  resolved "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-3.0.3.tgz"
+  integrity sha512-MpcmIL0/uMm/cFWh5V/9nbKKJ7jRr2qTYW5Q6zoE6HZ6uzOBJr2KRERv5/x8xzEBQ1MthDT7iP1EBp9luSQy7g==
   dependencies:
-    "@csstools/postcss-progressive-custom-properties" "^2.3.0"
+    "@csstools/postcss-progressive-custom-properties" "^3.0.3"
     postcss-value-parser "^4.2.0"
 
-"@csstools/postcss-is-pseudo-class@^3.2.1":
-  version "3.2.1"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-3.2.1.tgz#610f451b9293307d83d484c84af332a05e48b661"
-  integrity sha512-AtANdV34kJl04Al62is3eQRk/BfOfyAvEmRJvbt+nx5REqImLC+2XhuE6skgkcPli1l8ONS67wS+l1sBzySc3Q==
+"@csstools/postcss-initial@^1.0.0":
+  version "1.0.1"
+  resolved "https://registry.npmjs.org/@csstools/postcss-initial/-/postcss-initial-1.0.1.tgz"
+  integrity sha512-wtb+IbUIrIf8CrN6MLQuFR7nlU5C7PwuebfeEXfjthUha1+XZj2RVi+5k/lukToA24sZkYAiSJfHM8uG/UZIdg==
+
+"@csstools/postcss-is-pseudo-class@^4.0.3":
+  version "4.0.4"
+  resolved "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-4.0.4.tgz"
+  integrity sha512-vTVO/uZixpTVAOQt3qZRUFJ/K1L03OfNkeJ8sFNDVNdVy/zW0h1L5WT7HIPMDUkvSrxQkFaCCybTZkUP7UESlQ==
   dependencies:
-    "@csstools/selector-specificity" "^2.0.0"
-    postcss-selector-parser "^6.0.10"
+    "@csstools/selector-specificity" "^3.0.1"
+    postcss-selector-parser "^6.0.13"
+
+"@csstools/postcss-logical-float-and-clear@^2.0.0":
+  version "2.0.1"
+  resolved "https://registry.npmjs.org/@csstools/postcss-logical-float-and-clear/-/postcss-logical-float-and-clear-2.0.1.tgz"
+  integrity sha512-SsrWUNaXKr+e/Uo4R/uIsqJYt3DaggIh/jyZdhy/q8fECoJSKsSMr7nObSLdvoULB69Zb6Bs+sefEIoMG/YfOA==
 
-"@csstools/postcss-logical-float-and-clear@^1.0.1":
+"@csstools/postcss-logical-overflow@^1.0.0":
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-float-and-clear/-/postcss-logical-float-and-clear-1.0.1.tgz#d255ea7aad18880930b63d8a04164f56182f2ecf"
-  integrity sha512-eO9z2sMLddvlfFEW5Fxbjyd03zaO7cJafDurK4rCqyRt9P7aaWwha0LcSzoROlcZrw1NBV2JAp2vMKfPMQO1xw==
+  resolved "https://registry.npmjs.org/@csstools/postcss-logical-overflow/-/postcss-logical-overflow-1.0.1.tgz"
+  integrity sha512-Kl4lAbMg0iyztEzDhZuQw8Sj9r2uqFDcU1IPl+AAt2nue8K/f1i7ElvKtXkjhIAmKiy5h2EY8Gt/Cqg0pYFDCw==
 
-"@csstools/postcss-logical-resize@^1.0.1":
+"@csstools/postcss-logical-overscroll-behavior@^1.0.0":
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-resize/-/postcss-logical-resize-1.0.1.tgz#826d3de929d7d786c32c2c118f78e813a1c2cdec"
-  integrity sha512-x1ge74eCSvpBkDDWppl+7FuD2dL68WP+wwP2qvdUcKY17vJksz+XoE1ZRV38uJgS6FNUwC0AxrPW5gy3MxsDHQ==
+  resolved "https://registry.npmjs.org/@csstools/postcss-logical-overscroll-behavior/-/postcss-logical-overscroll-behavior-1.0.1.tgz"
+  integrity sha512-+kHamNxAnX8ojPCtV8WPcUP3XcqMFBSDuBuvT6MHgq7oX4IQxLIXKx64t7g9LiuJzE7vd06Q9qUYR6bh4YnGpQ==
+
+"@csstools/postcss-logical-resize@^2.0.0":
+  version "2.0.1"
+  resolved "https://registry.npmjs.org/@csstools/postcss-logical-resize/-/postcss-logical-resize-2.0.1.tgz"
+  integrity sha512-W5Gtwz7oIuFcKa5SmBjQ2uxr8ZoL7M2bkoIf0T1WeNqljMkBrfw1DDA8/J83k57NQ1kcweJEjkJ04pUkmyee3A==
   dependencies:
     postcss-value-parser "^4.2.0"
 
-"@csstools/postcss-logical-viewport-units@^1.0.3":
-  version "1.0.3"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-1.0.3.tgz#63e212954015ecdc493878601c3daa4da6ba6714"
-  integrity sha512-6zqcyRg9HSqIHIPMYdt6THWhRmE5/tyHKJQLysn2TeDf/ftq7Em9qwMTx98t2C/7UxIsYS8lOiHHxAVjWn2WUg==
+"@csstools/postcss-logical-viewport-units@^2.0.3":
+  version "2.0.5"
+  resolved "https://registry.npmjs.org/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-2.0.5.tgz"
+  integrity sha512-2fjSamKN635DSW6fEoyNd2Bkpv3FVblUpgk5cpghIgPW1aDHZE2SYfZK5xQALvjMYZVjfqsD5EbXA7uDVBQVQA==
   dependencies:
-    "@csstools/css-tokenizer" "^2.1.1"
+    "@csstools/css-tokenizer" "^2.2.3"
 
-"@csstools/postcss-media-minmax@^1.0.4":
-  version "1.0.4"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-media-minmax/-/postcss-media-minmax-1.0.4.tgz#5fd5877167259462abad2ffdb2bfef1ddd6f6147"
-  integrity sha512-olnKTQk9+RMzpIpkjv55d44L4Ni02j8ZJoedJezQC5M03a56npcM1hx0apaTRG4Fz1wfPCQ0DBjQ8zsiJFelmA==
+"@csstools/postcss-media-minmax@^1.1.0":
+  version "1.1.2"
+  resolved "https://registry.npmjs.org/@csstools/postcss-media-minmax/-/postcss-media-minmax-1.1.2.tgz"
+  integrity sha512-7qTRTJxW96u2yiEaTep1+8nto1O/rEDacewKqH+Riq5E6EsHTOmGHxkB4Se5Ic5xgDC4I05lLZxzzxnlnSypxA==
   dependencies:
-    "@csstools/css-calc" "^1.1.1"
-    "@csstools/css-parser-algorithms" "^2.2.0"
-    "@csstools/css-tokenizer" "^2.1.1"
-    "@csstools/media-query-list-parser" "^2.1.1"
+    "@csstools/css-calc" "^1.1.6"
+    "@csstools/css-parser-algorithms" "^2.5.0"
+    "@csstools/css-tokenizer" "^2.2.3"
+    "@csstools/media-query-list-parser" "^2.1.7"
 
-"@csstools/postcss-media-queries-aspect-ratio-number-values@^1.0.4":
-  version "1.0.4"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-1.0.4.tgz#5d0d69a3176d9c7ca131388cef38c80437956e2f"
-  integrity sha512-IwyTbyR8E2y3kh6Fhrs251KjKBJeUPV5GlnUKnpU70PRFEN2DolWbf2V4+o/B9+Oj77P/DullLTulWEQ8uFtAA==
+"@csstools/postcss-media-queries-aspect-ratio-number-values@^2.0.3":
+  version "2.0.5"
+  resolved "https://registry.npmjs.org/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-2.0.5.tgz"
+  integrity sha512-XHMPasWYPWa9XaUHXU6Iq0RLfoAI+nvGTPj51hOizNsHaAyFiq2SL4JvF1DU8lM6B70+HVzKM09Isbyrr755Bw==
   dependencies:
-    "@csstools/css-parser-algorithms" "^2.2.0"
-    "@csstools/css-tokenizer" "^2.1.1"
-    "@csstools/media-query-list-parser" "^2.1.1"
+    "@csstools/css-parser-algorithms" "^2.5.0"
+    "@csstools/css-tokenizer" "^2.2.3"
+    "@csstools/media-query-list-parser" "^2.1.7"
 
-"@csstools/postcss-nested-calc@^2.0.2":
-  version "2.0.2"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-nested-calc/-/postcss-nested-calc-2.0.2.tgz#a0857650ef88b1aa7b094c7ea8ea1378c35695e0"
-  integrity sha512-jbwrP8rN4e7LNaRcpx3xpMUjhtt34I9OV+zgbcsYAAk6k1+3kODXJBf95/JMYWhu9g1oif7r06QVUgfWsKxCFw==
+"@csstools/postcss-nested-calc@^3.0.0":
+  version "3.0.1"
+  resolved "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-3.0.1.tgz"
+  integrity sha512-bwwababZpWRm0ByHaWBxTsDGTMhZKmtUNl3Wt0Eom8AY7ORgXx5qF9SSk1vEFrCi+HOfJT6M6W5KPgzXuQNRwQ==
   dependencies:
     postcss-value-parser "^4.2.0"
 
-"@csstools/postcss-normalize-display-values@^2.0.1":
-  version "2.0.1"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-2.0.1.tgz#35dc188c5b4713cf902959fe3c8ce613fcb7543e"
-  integrity sha512-TQT5g3JQ5gPXC239YuRK8jFceXF9d25ZvBkyjzBGGoW5st5sPXFVQS8OjYb9IJ/K3CdfK4528y483cgS2DJR/w==
+"@csstools/postcss-normalize-display-values@^3.0.1":
+  version "3.0.2"
+  resolved "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-3.0.2.tgz"
+  integrity sha512-fCapyyT/dUdyPtrelQSIV+d5HqtTgnNP/BEG9IuhgXHt93Wc4CfC1bQ55GzKAjWrZbgakMQ7MLfCXEf3rlZJOw==
   dependencies:
     postcss-value-parser "^4.2.0"
 
-"@csstools/postcss-oklab-function@^2.2.3":
-  version "2.2.3"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-oklab-function/-/postcss-oklab-function-2.2.3.tgz#5770b67fc495533081f3ca82984268f0f2c834ac"
-  integrity sha512-AgJ2rWMnLCDcbSMTHSqBYn66DNLBym6JpBpCaqmwZ9huGdljjDRuH3DzOYzkgQ7Pm2K92IYIq54IvFHloUOdvA==
+"@csstools/postcss-oklab-function@^3.0.7":
+  version "3.0.9"
+  resolved "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-3.0.9.tgz"
+  integrity sha512-l639gpcBfL3ogJe+og1M5FixQn8iGX8+29V7VtTSCUB37VzpzOC05URfde7INIdiJT65DkHzgdJ64/QeYggU8A==
   dependencies:
-    "@csstools/css-color-parser" "^1.2.0"
-    "@csstools/css-parser-algorithms" "^2.1.1"
-    "@csstools/css-tokenizer" "^2.1.1"
-    "@csstools/postcss-progressive-custom-properties" "^2.3.0"
+    "@csstools/css-color-parser" "^1.5.1"
+    "@csstools/css-parser-algorithms" "^2.5.0"
+    "@csstools/css-tokenizer" "^2.2.3"
+    "@csstools/postcss-progressive-custom-properties" "^3.0.3"
 
-"@csstools/postcss-progressive-custom-properties@^2.3.0":
-  version "2.3.0"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-2.3.0.tgz#c16ad5fd9893136efc844e867e80f4becdb223d9"
-  integrity sha512-Zd8ojyMlsL919TBExQ1I0CTpBDdyCpH/yOdqatZpuC3sd22K4SwC7+Yez3Q/vmXMWSAl+shjNeFZ7JMyxMjK+Q==
+"@csstools/postcss-progressive-custom-properties@^3.0.2", "@csstools/postcss-progressive-custom-properties@^3.0.3":
+  version "3.0.3"
+  resolved "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-3.0.3.tgz"
+  integrity sha512-WipTVh6JTMQfeIrzDV4wEPsV9NTzMK2jwXxyH6CGBktuWdivHnkioP/smp1x/0QDPQyx7NTS14RB+GV3zZZYEw==
   dependencies:
     postcss-value-parser "^4.2.0"
 
-"@csstools/postcss-relative-color-syntax@^1.0.2":
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-1.0.2.tgz#9321765da2b372f3056ebdbfa219bfddf9285519"
-  integrity sha512-juCoVInkgH2TZPfOhyx6tIal7jW37L/0Tt+Vcl1LoxqQA9sxcg3JWYZ98pl1BonDnki6s/M7nXzFQHWsWMeHgw==
+"@csstools/postcss-relative-color-syntax@^2.0.7":
+  version "2.0.9"
+  resolved "https://registry.npmjs.org/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-2.0.9.tgz"
+  integrity sha512-2UoaRd2iIuzUGtYgteN5fJ0s+OfCiV7PvCnw8MCh3om8+SeVinfG8D5sqBOvImxFVfrp6k60XF5RFlH6oc//fg==
   dependencies:
-    "@csstools/css-color-parser" "^1.2.0"
-    "@csstools/css-parser-algorithms" "^2.1.1"
-    "@csstools/css-tokenizer" "^2.1.1"
-    "@csstools/postcss-progressive-custom-properties" "^2.3.0"
+    "@csstools/css-color-parser" "^1.5.1"
+    "@csstools/css-parser-algorithms" "^2.5.0"
+    "@csstools/css-tokenizer" "^2.2.3"
+    "@csstools/postcss-progressive-custom-properties" "^3.0.3"
 
-"@csstools/postcss-scope-pseudo-class@^2.0.2":
-  version "2.0.2"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-scope-pseudo-class/-/postcss-scope-pseudo-class-2.0.2.tgz#6325e1e3b321093c59b008ec670bb772e17f06fe"
-  integrity sha512-6Pvo4uexUCXt+Hz5iUtemQAcIuCYnL+ePs1khFR6/xPgC92aQLJ0zGHonWoewiBE+I++4gXK3pr+R1rlOFHe5w==
+"@csstools/postcss-scope-pseudo-class@^3.0.0":
+  version "3.0.1"
+  resolved "https://registry.npmjs.org/@csstools/postcss-scope-pseudo-class/-/postcss-scope-pseudo-class-3.0.1.tgz"
+  integrity sha512-3ZFonK2gfgqg29gUJ2w7xVw2wFJ1eNWVDONjbzGkm73gJHVCYK5fnCqlLr+N+KbEfv2XbWAO0AaOJCFB6Fer6A==
   dependencies:
-    postcss-selector-parser "^6.0.10"
+    postcss-selector-parser "^6.0.13"
 
-"@csstools/postcss-stepped-value-functions@^2.1.1":
-  version "2.1.1"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-2.1.1.tgz#f31aa0e7bd0ce3e4a0450573e1e27ce5e602b100"
-  integrity sha512-YCvdF0GCZK35nhLgs7ippcxDlRVe5QsSht3+EghqTjnYnyl3BbWIN6fYQ1dKWYTJ+7Bgi41TgqQFfJDcp9Xy/w==
+"@csstools/postcss-stepped-value-functions@^3.0.2":
+  version "3.0.4"
+  resolved "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-3.0.4.tgz"
+  integrity sha512-gyNQ2YaOVXPqLR737XtReRPVu7DGKBr9JBDLoiH1T+N1ggV3r4HotRCOC1l6rxVC0zOuU1KiOzUn9Z5W838/rg==
   dependencies:
-    "@csstools/css-calc" "^1.1.1"
-    "@csstools/css-parser-algorithms" "^2.1.1"
-    "@csstools/css-tokenizer" "^2.1.1"
+    "@csstools/css-calc" "^1.1.6"
+    "@csstools/css-parser-algorithms" "^2.5.0"
+    "@csstools/css-tokenizer" "^2.2.3"
 
-"@csstools/postcss-text-decoration-shorthand@^2.2.4":
-  version "2.2.4"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-2.2.4.tgz#184af1d68f4d97c381fad2ca58ae7f3f2a5dd7c3"
-  integrity sha512-zPN56sQkS/7YTCVZhOBVCWf7AiNge8fXDl7JVaHLz2RyT4pnyK2gFjckWRLpO0A2xkm1lCgZ0bepYZTwAVd/5A==
+"@csstools/postcss-text-decoration-shorthand@^3.0.3":
+  version "3.0.4"
+  resolved "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-3.0.4.tgz"
+  integrity sha512-yUZmbnUemgQmja7SpOZeU45+P49wNEgQguRdyTktFkZsHf7Gof+ZIYfvF6Cm+LsU1PwSupy4yUeEKKjX5+k6cQ==
   dependencies:
-    "@csstools/color-helpers" "^2.1.0"
+    "@csstools/color-helpers" "^4.0.0"
     postcss-value-parser "^4.2.0"
 
-"@csstools/postcss-trigonometric-functions@^2.1.1":
-  version "2.1.1"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-2.1.1.tgz#871a2048b0f81495d6cd8858ffb1fb04231ca741"
-  integrity sha512-XcXmHEFfHXhvYz40FtDlA4Fp4NQln2bWTsCwthd2c+MCnYArUYU3YaMqzR5CrKP3pMoGYTBnp5fMqf1HxItNyw==
+"@csstools/postcss-trigonometric-functions@^3.0.2":
+  version "3.0.4"
+  resolved "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-3.0.4.tgz"
+  integrity sha512-qj4Cxth6c38iNYzfJJWAxt8jsLrZaMVmbfGDDLOlI2YJeZoC3A5Su6/Kr7oXaPFRuspUu+4EQHngOktqVHWfVg==
   dependencies:
-    "@csstools/css-calc" "^1.1.1"
-    "@csstools/css-parser-algorithms" "^2.1.1"
-    "@csstools/css-tokenizer" "^2.1.1"
+    "@csstools/css-calc" "^1.1.6"
+    "@csstools/css-parser-algorithms" "^2.5.0"
+    "@csstools/css-tokenizer" "^2.2.3"
 
-"@csstools/postcss-unset-value@^2.0.1":
-  version "2.0.1"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-unset-value/-/postcss-unset-value-2.0.1.tgz#67091dd6cff556bff896c95053eb070cc6b21c25"
-  integrity sha512-oJ9Xl29/yU8U7/pnMJRqAZd4YXNCfGEdcP4ywREuqm/xMqcgDNDppYRoCGDt40aaZQIEKBS79LytUDN/DHf0Ew==
+"@csstools/postcss-unset-value@^3.0.0":
+  version "3.0.1"
+  resolved "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-3.0.1.tgz"
+  integrity sha512-dbDnZ2ja2U8mbPP0Hvmt2RMEGBiF1H7oY6HYSpjteXJGihYwgxgTr6KRbbJ/V6c+4wd51M+9980qG4gKVn5ttg==
 
-"@csstools/selector-specificity@^2.0.0", "@csstools/selector-specificity@^2.0.1", "@csstools/selector-specificity@^2.0.2":
-  version "2.2.0"
-  resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz#2cbcf822bf3764c9658c4d2e568bd0c0cb748016"
-  integrity sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==
+"@csstools/selector-specificity@^3.0.1":
+  version "3.0.1"
+  resolved "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-3.0.1.tgz"
+  integrity sha512-NPljRHkq4a14YzZ3YD406uaxh7s0g6eAq3L9aLOWywoqe8PkYamAvtsh7KNX6c++ihDrJ0RiU+/z7rGnhlZ5ww==
 
 "@discoveryjs/json-ext@0.5.7":
   version "0.5.7"
-  resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70"
+  resolved "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz"
   integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==
 
 "@eslint/eslintrc@^0.4.3":
   version "0.4.3"
-  resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c"
+  resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz"
   integrity sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==
   dependencies:
     ajv "^6.12.4"
@@ -1337,12 +1321,12 @@
 
 "@gar/promisify@^1.0.1":
   version "1.1.3"
-  resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6"
+  resolved "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz"
   integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==
 
 "@humanwhocodes/config-array@^0.5.0":
   version "0.5.0"
-  resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9"
+  resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz"
   integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==
   dependencies:
     "@humanwhocodes/object-schema" "^1.2.0"
@@ -1351,12 +1335,12 @@
 
 "@humanwhocodes/object-schema@^1.2.0":
   version "1.2.1"
-  resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45"
+  resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"
   integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
 
 "@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2":
   version "0.3.3"
-  resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098"
+  resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz"
   integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==
   dependencies:
     "@jridgewell/set-array" "^1.0.1"
@@ -1365,17 +1349,17 @@
 
 "@jridgewell/resolve-uri@3.1.0":
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"
+  resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz"
   integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
 
 "@jridgewell/set-array@^1.0.1":
   version "1.1.2"
-  resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"
+  resolved "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz"
   integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
 
 "@jridgewell/source-map@^0.3.3":
   version "0.3.3"
-  resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.3.tgz#8108265659d4c33e72ffe14e33d6cc5eb59f2fda"
+  resolved "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.3.tgz"
   integrity sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==
   dependencies:
     "@jridgewell/gen-mapping" "^0.3.0"
@@ -1383,17 +1367,17 @@
 
 "@jridgewell/sourcemap-codec@1.4.14":
   version "1.4.14"
-  resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"
+  resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz"
   integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
 
 "@jridgewell/sourcemap-codec@^1.4.10":
   version "1.4.15"
-  resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32"
+  resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz"
   integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
 
 "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9":
   version "0.3.18"
-  resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6"
+  resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz"
   integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==
   dependencies:
     "@jridgewell/resolve-uri" "3.1.0"
@@ -1401,14 +1385,14 @@
 
 "@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1":
   version "5.1.1-v1"
-  resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz#dbf733a965ca47b1973177dc0bb6c889edcfb129"
+  resolved "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz"
   integrity sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==
   dependencies:
     eslint-scope "5.1.1"
 
 "@nodelib/fs.scandir@2.1.5":
   version "2.1.5"
-  resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
+  resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
   integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
   dependencies:
     "@nodelib/fs.stat" "2.0.5"
@@ -1416,12 +1400,12 @@
 
 "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
   version "2.0.5"
-  resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
+  resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
   integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
 
 "@nodelib/fs.walk@^1.2.3":
   version "1.2.8"
-  resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
+  resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
   integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
   dependencies:
     "@nodelib/fs.scandir" "2.1.5"
@@ -1429,7 +1413,7 @@
 
 "@npmcli/fs@^1.0.0":
   version "1.1.1"
-  resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-1.1.1.tgz#72f719fe935e687c56a4faecf3c03d06ba593257"
+  resolved "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz"
   integrity sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==
   dependencies:
     "@gar/promisify" "^1.0.1"
@@ -1437,89 +1421,89 @@
 
 "@npmcli/move-file@^1.0.1":
   version "1.1.2"
-  resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.2.tgz#1a82c3e372f7cae9253eb66d72543d6b8685c674"
+  resolved "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz"
   integrity sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==
   dependencies:
     mkdirp "^1.0.4"
     rimraf "^3.0.2"
 
-"@nuxt/babel-preset-app@2.17.0":
-  version "2.17.0"
-  resolved "https://registry.yarnpkg.com/@nuxt/babel-preset-app/-/babel-preset-app-2.17.0.tgz#ff23e64837f0a7bdce9a85eab006c201433cf0d3"
-  integrity sha512-1fDcehn5MUoCMyrGZN/we4RmV9S14iotBosdZ9KeDvOTgPXLXqi/R+D6+esVNYeHe/iNKrJZ4ipEEH/BsII5pQ==
+"@nuxt/babel-preset-app@2.17.3":
+  version "2.17.3"
+  resolved "https://registry.npmjs.org/@nuxt/babel-preset-app/-/babel-preset-app-2.17.3.tgz"
+  integrity sha512-KkmGEKZN2Yvo9XWC2TAJ3e3WMFQTmGGdhJy9Lv/3gW0PCUVvI5e+M+P3VF494BLKWmc4xYXaVu7cGtAUE13vMQ==
   dependencies:
-    "@babel/compat-data" "^7.22.5"
-    "@babel/core" "^7.22.5"
-    "@babel/helper-compilation-targets" "^7.22.5"
-    "@babel/helper-module-imports" "^7.22.5"
+    "@babel/compat-data" "^7.23.5"
+    "@babel/core" "^7.23.7"
+    "@babel/helper-compilation-targets" "^7.23.6"
+    "@babel/helper-module-imports" "^7.22.15"
     "@babel/plugin-proposal-class-properties" "^7.18.6"
-    "@babel/plugin-proposal-decorators" "^7.22.5"
+    "@babel/plugin-proposal-decorators" "^7.23.7"
     "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6"
     "@babel/plugin-proposal-optional-chaining" "^7.21.0"
     "@babel/plugin-proposal-private-methods" "^7.18.6"
     "@babel/plugin-proposal-private-property-in-object" "^7.21.11"
-    "@babel/plugin-transform-runtime" "^7.22.5"
-    "@babel/preset-env" "^7.22.5"
-    "@babel/runtime" "^7.22.5"
+    "@babel/plugin-transform-runtime" "^7.23.7"
+    "@babel/preset-env" "^7.23.8"
+    "@babel/runtime" "^7.23.8"
     "@vue/babel-preset-jsx" "^1.4.0"
-    core-js "^3.30.2"
-    core-js-compat "^3.30.2"
-    regenerator-runtime "^0.13.11"
+    core-js "^3.35.0"
+    core-js-compat "^3.35.0"
+    regenerator-runtime "^0.14.1"
 
-"@nuxt/builder@2.17.0":
-  version "2.17.0"
-  resolved "https://registry.yarnpkg.com/@nuxt/builder/-/builder-2.17.0.tgz#08840eda223c3c4eb9b3c27ec599253a524775e0"
-  integrity sha512-yLTJiUqF3oQ7dOC2ql2rT9agap8aWpjmOef+dTf6jh8BFZ6Oc2NT/j8mWzo4ruo4YpFqw2FqoOLDW5fCDE1+Bw==
+"@nuxt/builder@2.17.3":
+  version "2.17.3"
+  resolved "https://registry.npmjs.org/@nuxt/builder/-/builder-2.17.3.tgz"
+  integrity sha512-qcByuB5+Sy9xHtHT6yxsX01fT4ZMIP1bqVYqtkuwuSnbtFLc6GW2qNpzWkcxSBCzhIp2hTuulOEV6p5FpQVPLg==
   dependencies:
     "@nuxt/devalue" "^2.0.2"
-    "@nuxt/utils" "2.17.0"
-    "@nuxt/vue-app" "2.17.0"
-    "@nuxt/webpack" "2.17.0"
+    "@nuxt/utils" "2.17.3"
+    "@nuxt/vue-app" "2.17.3"
+    "@nuxt/webpack" "2.17.3"
     chalk "^4.1.2"
     chokidar "^3.5.3"
-    consola "^3.1.0"
+    consola "^3.2.3"
     fs-extra "^10.1.0"
     glob "^8.1.0"
     hash-sum "^2.0.0"
-    ignore "^5.2.4"
+    ignore "^5.3.0"
     lodash "^4.17.21"
     pify "^5.0.0"
-    serialize-javascript "^6.0.1"
+    serialize-javascript "^6.0.2"
     upath "^2.0.1"
 
-"@nuxt/cli@2.17.0":
-  version "2.17.0"
-  resolved "https://registry.yarnpkg.com/@nuxt/cli/-/cli-2.17.0.tgz#4262684044f99bcf0f9d6b002683e24503b2586f"
-  integrity sha512-5d1Ekk3qnMz6+woSjWJ6IshfQxBJA8Qy7n630pD/cBZf8bttyb6WaILaUhZEAA+t3wy3LewfPBO55K+BN7o/lA==
+"@nuxt/cli@2.17.3":
+  version "2.17.3"
+  resolved "https://registry.npmjs.org/@nuxt/cli/-/cli-2.17.3.tgz"
+  integrity sha512-UwQbb/B/b7/N1vlorBgiW2T41Hc26+04oyze2cx1dErkDNLgjZpjcTu8cWnfSyAeRUeG2r6p8K0SPimCITNZJg==
   dependencies:
-    "@nuxt/config" "2.17.0"
-    "@nuxt/utils" "2.17.0"
+    "@nuxt/config" "2.17.3"
+    "@nuxt/utils" "2.17.3"
     boxen "^5.1.2"
     chalk "^4.1.2"
     compression "^1.7.4"
     connect "^3.7.0"
-    consola "^3.1.0"
+    consola "^3.2.3"
     crc "^4.3.2"
-    defu "^6.1.2"
-    destr "^1.2.2"
+    defu "^6.1.4"
+    destr "^2.0.2"
     execa "^5.1.1"
     exit "^0.1.2"
     fs-extra "^10.1.0"
     globby "^11.0.4"
-    hable "^3.0.0"
+    hookable "^4.4.1"
     lodash "^4.17.21"
     minimist "^1.2.8"
     opener "1.5.2"
     pretty-bytes "^5.6.0"
-    semver "^7.5.1"
+    semver "^7.5.4"
     serve-static "^1.15.0"
-    std-env "^3.3.3"
+    std-env "^3.7.0"
     upath "^2.0.1"
     wrap-ansi "^7.0.0"
 
 "@nuxt/components@^2.2.1":
   version "2.2.1"
-  resolved "https://registry.yarnpkg.com/@nuxt/components/-/components-2.2.1.tgz#49c4442ac5a0ef49f49ef7d9960f4376fc3e7c78"
+  resolved "https://registry.npmjs.org/@nuxt/components/-/components-2.2.1.tgz"
   integrity sha512-r1LHUzifvheTnJtYrMuA+apgsrEJbxcgFKIimeXKb+jl8TnPWdV3egmrxBCaDJchrtY/wmHyP47tunsft7AWwg==
   dependencies:
     chalk "^4.1.2"
@@ -1531,68 +1515,68 @@
     upath "^2.0.1"
     vue-template-compiler "^2.6.14"
 
-"@nuxt/config@2.17.0":
-  version "2.17.0"
-  resolved "https://registry.yarnpkg.com/@nuxt/config/-/config-2.17.0.tgz#fb2acbefbb5348cdfc58dc80a372c5b16e6c7ab1"
-  integrity sha512-KJWpFFs4nMpmGzkaRZJIWbDDQjrwwYPBGaKnjWyywfSBdM+9BXk27dxLG11EIVHDTn1P94nDTpu9qZywTi1OBQ==
+"@nuxt/config@2.17.3":
+  version "2.17.3"
+  resolved "https://registry.npmjs.org/@nuxt/config/-/config-2.17.3.tgz"
+  integrity sha512-msHFykkeG2wPB8oP369Gha5n1O2RI57vLxSJcAnCrg6vrETfc6DadCsRA1o7v8Z9TjfVyU3leYy9c4F+elwFYg==
   dependencies:
-    "@nuxt/utils" "2.17.0"
-    consola "^3.1.0"
-    defu "^6.1.2"
-    destr "^1.2.2"
-    dotenv "^16.1.4"
+    "@nuxt/utils" "2.17.3"
+    consola "^3.2.3"
+    defu "^6.1.4"
+    destr "^2.0.2"
+    dotenv "^16.3.1"
     lodash "^4.17.21"
-    rc9 "^2.1.0"
-    std-env "^3.3.3"
-    ufo "^1.1.2"
-
-"@nuxt/core@2.17.0":
-  version "2.17.0"
-  resolved "https://registry.yarnpkg.com/@nuxt/core/-/core-2.17.0.tgz#4b1e30d68d8fa5d6993d50f727dff9d72990153a"
-  integrity sha512-YiXA29Akbkd9+uCdUmWclXjmp0XmxbQJkz8IN5NfV9wIPPnbvYJEiDnHJxazrLESG2dA0BTzIxbWCGeuIDukCA==
-  dependencies:
-    "@nuxt/config" "2.17.0"
-    "@nuxt/server" "2.17.0"
-    "@nuxt/utils" "2.17.0"
-    consola "^3.1.0"
+    rc9 "^2.1.1"
+    std-env "^3.7.0"
+    ufo "^1.3.2"
+
+"@nuxt/core@2.17.3":
+  version "2.17.3"
+  resolved "https://registry.npmjs.org/@nuxt/core/-/core-2.17.3.tgz"
+  integrity sha512-DAyxn49UUjmEyMImaPTjGpV7EccbbqZX14j46fWC7hNR5NkLPBMHFgYj+tsetYK5LMPcKUz1zztRoFX68SMxyw==
+  dependencies:
+    "@nuxt/config" "2.17.3"
+    "@nuxt/server" "2.17.3"
+    "@nuxt/utils" "2.17.3"
+    consola "^3.2.3"
     fs-extra "^10.1.0"
-    hable "^3.0.0"
     hash-sum "^2.0.0"
+    hookable "^4.4.1"
     lodash "^4.17.21"
 
 "@nuxt/devalue@^2.0.2":
   version "2.0.2"
-  resolved "https://registry.yarnpkg.com/@nuxt/devalue/-/devalue-2.0.2.tgz#5749f04df13bda4c863338d8dabaf370f45ef7c7"
+  resolved "https://registry.npmjs.org/@nuxt/devalue/-/devalue-2.0.2.tgz"
   integrity sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==
 
-"@nuxt/friendly-errors-webpack-plugin@^2.5.2":
-  version "2.5.2"
-  resolved "https://registry.yarnpkg.com/@nuxt/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-2.5.2.tgz#982a43ee2da61611f7396439e57038392d3944d5"
-  integrity sha512-LLc+90lnxVbpKkMqk5z1EWpXoODhc6gRkqqXJCInJwF5xabHAE7biFvbULfvTRmtaTzAaP8IV4HQDLUgeAUTTw==
+"@nuxt/friendly-errors-webpack-plugin@^2.6.0":
+  version "2.6.0"
+  resolved "https://registry.npmjs.org/@nuxt/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-2.6.0.tgz"
+  integrity sha512-3IZj6MXbzlvUxDncAxgBMLQwGPY/JlNhy2i+AGyOHCAReR5HcBxYjVRBvyaKM9R3s5k4OODYKeHAbrToZH/47w==
   dependencies:
-    chalk "^2.3.2"
-    consola "^2.6.0"
-    error-stack-parser "^2.0.0"
+    chalk "^2.4.2"
+    consola "^3.2.3"
+    error-stack-parser "^2.1.4"
     string-width "^4.2.3"
 
-"@nuxt/generator@2.17.0":
-  version "2.17.0"
-  resolved "https://registry.yarnpkg.com/@nuxt/generator/-/generator-2.17.0.tgz#dac6aa6731cc2337859edd1520d38a8d004bb34f"
-  integrity sha512-O9Jhr/WAxdI5DzD82v4BmyhGZI2RZ25ChxDSDzvYMHU+2o/Vm2PJnJKvb1ZlHpIR/2O/kzWMg3QcYkag7DvrkA==
+"@nuxt/generator@2.17.3":
+  version "2.17.3"
+  resolved "https://registry.npmjs.org/@nuxt/generator/-/generator-2.17.3.tgz"
+  integrity sha512-m/fnzH+1RvdpDdQODUxjXlMkJzLVuOwk9AOGYZz2YaAP34nxwjxClvgIAT6IQqvq6uBZHex0Zr07N3mwEE06NA==
   dependencies:
-    "@nuxt/utils" "2.17.0"
+    "@nuxt/utils" "2.17.3"
     chalk "^4.1.2"
-    consola "^3.1.0"
-    defu "^6.1.2"
+    consola "^3.2.3"
+    defu "^6.1.4"
     devalue "^2.0.1"
     fs-extra "^10.1.0"
     html-minifier "^4.0.0"
-    node-html-parser "^6.1.5"
-    ufo "^1.1.2"
+    node-html-parser "^6.1.12"
+    ufo "^1.3.2"
 
 "@nuxt/loading-screen@^2.0.4":
   version "2.0.4"
-  resolved "https://registry.yarnpkg.com/@nuxt/loading-screen/-/loading-screen-2.0.4.tgz#756abd861f77c57001be4d21d47534723afb4f3a"
+  resolved "https://registry.npmjs.org/@nuxt/loading-screen/-/loading-screen-2.0.4.tgz"
   integrity sha512-xpEDAoRu75tLUYCkUJCIvJkWJSuwr8pqomvQ+fkXpSrkxZ/9OzlBFjAbVdOAWTMj4aV/LVQso4vcEdircKeFIQ==
   dependencies:
     connect "^3.7.0"
@@ -1601,129 +1585,129 @@
     node-res "^5.0.1"
     serve-static "^1.14.1"
 
-"@nuxt/opencollective@^0.3.3":
-  version "0.3.3"
-  resolved "https://registry.yarnpkg.com/@nuxt/opencollective/-/opencollective-0.3.3.tgz#80ff0eb8f6fca1d0ed5a089b9688f41bff2dd8ab"
-  integrity sha512-6IKCd+gP0HliixqZT/p8nW3tucD6Sv/u/eR2A9X4rxT/6hXlMzA4GZQzq4d2qnBAwSwGpmKyzkyTjNjrhaA25A==
+"@nuxt/opencollective@^0.4.0":
+  version "0.4.0"
+  resolved "https://registry.npmjs.org/@nuxt/opencollective/-/opencollective-0.4.0.tgz"
+  integrity sha512-uUsxOcO2lFeotV+BGOwNLeau+U17mhpaCRhE7v8nJLdWJ2iErQXadl28HaHe6btuT8RD0LDSpvwCiKrHznDxUA==
   dependencies:
-    chalk "^4.1.0"
-    consola "^2.15.0"
-    node-fetch "^2.6.7"
+    chalk "^4.1.2"
+    consola "^3.2.3"
+    node-fetch-native "^1.4.1"
 
-"@nuxt/server@2.17.0":
-  version "2.17.0"
-  resolved "https://registry.yarnpkg.com/@nuxt/server/-/server-2.17.0.tgz#b64da6f80306c2149881fac8aef3b1a1ef94b2c8"
-  integrity sha512-qe7RbxOna8EvccCbymc8Q8et6mFmOlyPVyxfvfblz5vzm55Lu8rlp3g7VRQTr62gS/x5lh+HtOynYrv56JxX/A==
+"@nuxt/server@2.17.3":
+  version "2.17.3"
+  resolved "https://registry.npmjs.org/@nuxt/server/-/server-2.17.3.tgz"
+  integrity sha512-+HxDxni7nAHZdtBl1ptug6lHVio/aJn3o8ZkoHJjYuQ52dtJgEFsQs8EpDbKJDFYyL/u0TXEUPACrXbkOh9J8Q==
   dependencies:
-    "@nuxt/utils" "2.17.0"
-    "@nuxt/vue-renderer" "2.17.0"
+    "@nuxt/utils" "2.17.3"
+    "@nuxt/vue-renderer" "2.17.3"
     "@nuxtjs/youch" "^4.2.3"
     compression "^1.7.4"
     connect "^3.7.0"
-    consola "^3.1.0"
+    consola "^3.2.3"
     etag "^1.8.1"
     fresh "^0.5.2"
     fs-extra "^10.1.0"
     ip "^1.1.8"
-    launch-editor-middleware "^2.6.0"
+    launch-editor-middleware "^2.6.1"
     on-headers "^1.0.2"
     pify "^5.0.0"
     serve-placeholder "^2.0.1"
     serve-static "^1.15.0"
     server-destroy "^1.0.1"
-    ufo "^1.1.2"
+    ufo "^1.3.2"
 
-"@nuxt/telemetry@^1.4.1":
-  version "1.4.1"
-  resolved "https://registry.yarnpkg.com/@nuxt/telemetry/-/telemetry-1.4.1.tgz#92765a9614f0d137cf4f43ff007ce8787e45de5a"
-  integrity sha512-3+F6kI17QtcgKQD9NKlLZ4LUy0koXULzkX1FgyILU17PptClnGOu+c+jT+PlZK2GsCjucLwQLjOQQkRIczU3uA==
+"@nuxt/telemetry@^1.5.0":
+  version "1.5.0"
+  resolved "https://registry.npmjs.org/@nuxt/telemetry/-/telemetry-1.5.0.tgz"
+  integrity sha512-MhxiiYCFe0MayN2TvmpcsCV66zBePtrSVkFLJHwTFuneQ5Qma5x0NmCwdov7O4NSuTfgSZels9qPJh0zy0Kc4g==
   dependencies:
     arg "^5.0.2"
     chalk "^4.1.1"
     ci-info "^3.7.1"
-    consola "^2.15.3"
+    consola "^3.2.3"
     create-require "^1.1.1"
-    defu "^6.1.2"
-    destr "^1.2.2"
+    defu "^6.1.3"
+    destr "^2.0.2"
     dotenv "^9.0.2"
     fs-extra "^8.1.0"
-    git-url-parse "^13.1.0"
+    git-url-parse "^13.1.1"
     inquirer "^7.3.3"
-    jiti "^1.16.2"
+    jiti "^1.21.0"
     nanoid "^3.1.23"
     node-fetch "^2.6.1"
     parse-git-config "^3.0.0"
-    rc9 "^2.0.1"
-    std-env "^3.3.1"
+    rc9 "^2.1.1"
+    std-env "^3.5.0"
 
-"@nuxt/utils@2.17.0":
-  version "2.17.0"
-  resolved "https://registry.yarnpkg.com/@nuxt/utils/-/utils-2.17.0.tgz#0e671fc59ebb2bfd9d50ca847c05284e41caf6b5"
-  integrity sha512-woL81udNtO3LWtpnmmkz5iFjhnKyG5NUA9qlBkz5ZoibxCnyByQFRllTn93zx3WhW7SSezJ1FKu5Dd3Nv7Rnkw==
+"@nuxt/utils@2.17.3":
+  version "2.17.3"
+  resolved "https://registry.npmjs.org/@nuxt/utils/-/utils-2.17.3.tgz"
+  integrity sha512-/ZdjQY+U3I6X+IiRaHX2zA9l/cgN9GD8YIYuvf2obo5u1cLHin0MNj2dwb4P2iYvygAppb8nmcEsVzG4bppoEA==
   dependencies:
-    consola "^3.1.0"
+    consola "^3.2.3"
     create-require "^1.1.1"
     fs-extra "^10.1.0"
     hash-sum "^2.0.0"
-    jiti "^1.18.2"
+    jiti "^1.21.0"
     lodash "^4.17.21"
     proper-lockfile "^4.1.2"
-    semver "^7.5.1"
-    serialize-javascript "^6.0.1"
-    signal-exit "^4.0.2"
-    ua-parser-js "^1.0.35"
-    ufo "^1.1.2"
-
-"@nuxt/vue-app@2.17.0":
-  version "2.17.0"
-  resolved "https://registry.yarnpkg.com/@nuxt/vue-app/-/vue-app-2.17.0.tgz#a8532531886b8b4a86dd48f3cf0c79c8f8f57231"
-  integrity sha512-XdmLkuWfV/pmUmCd0x/ICq4YvipoHOlM9io8Fjbnnz2vVm3CboYGWeI7/bqp7BV4snHXSjWVekZo09VghLkyBA==
-  dependencies:
-    node-fetch-native "^1.2.0"
-    ufo "^1.1.2"
+    semver "^7.5.4"
+    serialize-javascript "^6.0.2"
+    signal-exit "^4.1.0"
+    ua-parser-js "^1.0.37"
+    ufo "^1.3.2"
+
+"@nuxt/vue-app@2.17.3":
+  version "2.17.3"
+  resolved "https://registry.npmjs.org/@nuxt/vue-app/-/vue-app-2.17.3.tgz"
+  integrity sha512-MgB5TKTrZwgVaccMS9YKjNerlXsjnouEfe9Eo4ChVyDybMTy6apjN6QTg+YC/J/kzrsIxrFTbYnh30dAzuZdMw==
+  dependencies:
+    node-fetch-native "^1.6.1"
+    ufo "^1.3.2"
     unfetch "^5.0.0"
-    vue "^2.7.10"
+    vue "^2.7.16"
     vue-client-only "^2.1.0"
     vue-meta "^2.4.0"
     vue-no-ssr "^1.1.1"
     vue-router "^3.6.5"
-    vue-template-compiler "^2.7.14"
+    vue-template-compiler "^2.7.16"
     vuex "^3.6.2"
 
-"@nuxt/vue-renderer@2.17.0":
-  version "2.17.0"
-  resolved "https://registry.yarnpkg.com/@nuxt/vue-renderer/-/vue-renderer-2.17.0.tgz#5f8a9e7204b24c3d62a5810792d94d517a5b0801"
-  integrity sha512-lSHJGsvsZUAQpd7PXEtibk9/G58SS6T8v4WtBIEd3eFoX5D+AunJvpfoh79nQhlDnHeUaS49BGXjP6N7G1DM9A==
+"@nuxt/vue-renderer@2.17.3":
+  version "2.17.3"
+  resolved "https://registry.npmjs.org/@nuxt/vue-renderer/-/vue-renderer-2.17.3.tgz"
+  integrity sha512-rSSOdta3vh47FEP8W4d+tdvJMAqejGzgQojJcruuoe+vkbo2zovFFWyISZKMFw7SCVnm0wANAwETJHpb6a3Y6Q==
   dependencies:
     "@nuxt/devalue" "^2.0.2"
-    "@nuxt/utils" "2.17.0"
-    consola "^3.1.0"
-    defu "^6.1.2"
+    "@nuxt/utils" "2.17.3"
+    consola "^3.2.3"
+    defu "^6.1.4"
     fs-extra "^10.1.0"
     lodash "^4.17.21"
     lru-cache "^5.1.1"
-    ufo "^1.1.2"
-    vue "^2.7.10"
+    ufo "^1.3.2"
+    vue "^2.7.16"
     vue-meta "^2.4.0"
-    vue-server-renderer "^2.7.14"
+    vue-server-renderer "^2.7.16"
 
-"@nuxt/webpack@2.17.0":
-  version "2.17.0"
-  resolved "https://registry.yarnpkg.com/@nuxt/webpack/-/webpack-2.17.0.tgz#a6ce16cabee7b46bf5ee54188b23d8097a024db9"
-  integrity sha512-abtLBtIgdMUyxHMcl6TilazulhSppaHIK4qexOuNkwJxy4DSbm1qPRMqu5w7rlTVBV86OkvFF/gAi1LMsSyVVg==
+"@nuxt/webpack@2.17.3":
+  version "2.17.3"
+  resolved "https://registry.npmjs.org/@nuxt/webpack/-/webpack-2.17.3.tgz"
+  integrity sha512-09vP3oShjp4ogsJL3XTi2kk1gh5itG5OwerLxF1NiJNNeuIAc/kei0L3MVhyfMxUVx22SF9sb23cZLIJxoK8cQ==
   dependencies:
-    "@babel/core" "^7.22.5"
-    "@nuxt/babel-preset-app" "2.17.0"
-    "@nuxt/friendly-errors-webpack-plugin" "^2.5.2"
-    "@nuxt/utils" "2.17.0"
+    "@babel/core" "^7.23.7"
+    "@nuxt/babel-preset-app" "2.17.3"
+    "@nuxt/friendly-errors-webpack-plugin" "^2.6.0"
+    "@nuxt/utils" "2.17.3"
     babel-loader "^8.3.0"
     cache-loader "^4.1.0"
-    caniuse-lite "^1.0.30001497"
-    consola "^3.1.0"
+    caniuse-lite "^1.0.30001576"
+    consola "^3.2.3"
     css-loader "^5.2.7"
-    cssnano "^6.0.1"
+    cssnano "^6.0.3"
     eventsource-polyfill "^0.9.6"
-    extract-css-chunks-webpack-plugin "^4.9.0"
+    extract-css-chunks-webpack-plugin "^4.10.0"
     file-loader "^6.2.0"
     glob "^8.1.0"
     hard-source-webpack-plugin "^0.13.1"
@@ -1734,31 +1718,31 @@
     optimize-css-assets-webpack-plugin "^6.0.1"
     pify "^5.0.0"
     pnp-webpack-plugin "^1.7.0"
-    postcss "^8.4.24"
+    postcss "^8.4.33"
     postcss-import "^15.1.0"
     postcss-import-resolver "^2.0.0"
     postcss-loader "^4.3.0"
-    postcss-preset-env "^8.4.2"
+    postcss-preset-env "^9.3.0"
     postcss-url "^10.1.3"
-    semver "^7.5.1"
-    std-env "^3.3.3"
+    semver "^7.5.4"
+    std-env "^3.7.0"
     style-resources-loader "^1.5.0"
     terser-webpack-plugin "^4.2.3"
     thread-loader "^3.0.4"
     time-fix-plugin "^2.0.7"
-    ufo "^1.1.2"
+    ufo "^1.3.2"
     upath "^2.0.1"
     url-loader "^4.1.1"
-    vue-loader "^15.10.1"
+    vue-loader "^15.11.1"
     vue-style-loader "^4.1.3"
-    vue-template-compiler "^2.7.14"
+    vue-template-compiler "^2.7.16"
     watchpack "^2.4.0"
-    webpack "^4.46.0"
-    webpack-bundle-analyzer "^4.9.0"
-    webpack-dev-middleware "^5.3.3"
-    webpack-hot-middleware "^2.25.3"
+    webpack "^4.47.0"
+    webpack-bundle-analyzer "^4.10.1"
+    webpack-dev-middleware "^5.0.0"
+    webpack-hot-middleware "^2.26.0"
     webpack-node-externals "^3.0.0"
-    webpackbar "^5.0.2"
+    webpackbar "^6.0.0"
 
 "@nuxtjs/axios@^5.13.6":
   version "5.13.6"
@@ -1771,13 +1755,13 @@
     consola "^2.15.3"
     defu "^5.0.0"
 
-"@nuxtjs/dotenv@^1.4.1":
-  version "1.4.1"
-  resolved "https://registry.npmjs.org/@nuxtjs/dotenv/-/dotenv-1.4.1.tgz"
-  integrity sha512-DpdObsvRwC8d89I9mzz6pBg6e/PEXHazDM57DOI1mmML2ZjHfQ/DvkjlSzUL7T+TnW3b/a4Ks5wQx08DqFBmeQ==
+"@nuxtjs/dotenv@^1.4.2":
+  version "1.4.2"
+  resolved "https://registry.npmjs.org/@nuxtjs/dotenv/-/dotenv-1.4.2.tgz"
+  integrity sha512-/3+Cw5qLNIQD8ZvXLJG1suxvfC4ltlUuYegOwirHrLrzptHh/+rCkBXrNbrz2qAiwc+/yK91XjZGGzNM1dFmCw==
   dependencies:
-    consola "^2.10.1"
-    dotenv "^8.1.0"
+    consola "^3.2.3"
+    dotenv "^8.2.0"
 
 "@nuxtjs/eslint-config@^6.0.1":
   version "6.0.1"
@@ -1795,13 +1779,31 @@
 
 "@nuxtjs/eslint-module@^3.0.2":
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@nuxtjs/eslint-module/-/eslint-module-3.1.0.tgz#3e7d241f4b53fbc6ab59932054d11dd22a828a40"
+  resolved "https://registry.npmjs.org/@nuxtjs/eslint-module/-/eslint-module-3.1.0.tgz"
   integrity sha512-9bK8AOJBflWmbQeL77SHIsgyGzhiW2b1BdwOtZ53Yyfa7Km3XMMVd8CtLA7z4+03eS+4TVQMxw62yRpJH5icZA==
   dependencies:
     consola "^2.15.3"
     defu "^6.0.0"
     eslint-webpack-plugin "^2.6.0"
 
+"@nuxtjs/markdownit-loader@^1.1.1":
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/@nuxtjs/markdownit-loader/-/markdownit-loader-1.2.0.tgz#02e31b778bdbb61c13a5991021d660a21393b2c2"
+  integrity sha512-D6m4578NavamwD03nOU3H3NkS2zYfFJSMChUczlCGDx05DgAoenY4GdCmML1CnAEH/Cv6Bf230RIwDnD926oyQ==
+  dependencies:
+    highlight.js "^10.5.0"
+    loader-utils "^1.1.0"
+    markdown-it "^8.3.1"
+
+"@nuxtjs/markdownit@^2.0.0":
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/@nuxtjs/markdownit/-/markdownit-2.0.0.tgz#5fcd35afdb78f328ba2dbc1f678f0c0bb9ea85f9"
+  integrity sha512-YAEK/s0IzdWK1L74WKTQSMcvNhGgOW0xIWdu5VMxDo1NkNpm/0CbJZgSPt1JYAnT8r8r6wVQ5SY1v/1MZanPlQ==
+  dependencies:
+    "@nuxtjs/markdownit-loader" "^1.1.1"
+    defu "^3.2.2"
+    raw-loader "^4.0.2"
+
 "@nuxtjs/proxy@^2.1.0":
   version "2.1.0"
   resolved "https://registry.npmjs.org/@nuxtjs/proxy/-/proxy-2.1.0.tgz"
@@ -1811,7 +1813,7 @@
 
 "@nuxtjs/stylelint-module@^4.0.0":
   version "4.2.1"
-  resolved "https://registry.yarnpkg.com/@nuxtjs/stylelint-module/-/stylelint-module-4.2.1.tgz#2db8d911ab3fdc6d6241c472d7a169b381f9fd54"
+  resolved "https://registry.npmjs.org/@nuxtjs/stylelint-module/-/stylelint-module-4.2.1.tgz"
   integrity sha512-uXgZ2xv1/iCKxvh9Y+EoYAM06dKZNrwqlDr1XwvwjjZ+kM87AbFWG3z3VxQ4ffzSU95KQUeR2VFGTjfJMBOzlg==
   dependencies:
     consola "^2.15.3"
@@ -1819,7 +1821,7 @@
 
 "@nuxtjs/vuetify@^1.12.1":
   version "1.12.3"
-  resolved "https://registry.yarnpkg.com/@nuxtjs/vuetify/-/vuetify-1.12.3.tgz#d4adf84e18fd474044bf971e7cc978e25eb16ba1"
+  resolved "https://registry.npmjs.org/@nuxtjs/vuetify/-/vuetify-1.12.3.tgz"
   integrity sha512-6uVL3cfESMB00eVjJTNkyU4jvuPTGPn1yteo7lQTH6v+fxHcPaOgvzVYHIKSHIz1DecuOiB5c9b+YjsRP5+C8A==
   dependencies:
     deepmerge "^4.2.2"
@@ -1830,17 +1832,17 @@
 
 "@nuxtjs/youch@^4.2.3":
   version "4.2.3"
-  resolved "https://registry.yarnpkg.com/@nuxtjs/youch/-/youch-4.2.3.tgz#36f8b22df5a0efaa81373109851e1d857aca6bed"
+  resolved "https://registry.npmjs.org/@nuxtjs/youch/-/youch-4.2.3.tgz"
   integrity sha512-XiTWdadTwtmL/IGkNqbVe+dOlT+IMvcBu7TvKI7plWhVQeBCQ9iKhk3jgvVWFyiwL2yHJDlEwOM5v9oVES5Xmw==
   dependencies:
     cookie "^0.3.1"
     mustache "^2.3.0"
     stack-trace "0.0.10"
 
-"@polka/url@^1.0.0-next.20":
-  version "1.0.0-next.21"
-  resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.21.tgz#5de5a2385a35309427f6011992b544514d559aa1"
-  integrity sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==
+"@polka/url@^1.0.0-next.24":
+  version "1.0.0-next.24"
+  resolved "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.24.tgz"
+  integrity sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==
 
 "@stylelint/postcss-css-in-js@^0.37.2":
   version "0.37.2"
@@ -1859,12 +1861,12 @@
 
 "@trysound/sax@0.2.0":
   version "0.2.0"
-  resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad"
+  resolved "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz"
   integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==
 
 "@types/eslint@^7.29.0":
   version "7.29.0"
-  resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-7.29.0.tgz#e56ddc8e542815272720bb0b4ccc2aff9c3e1c78"
+  resolved "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz"
   integrity sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==
   dependencies:
     "@types/estree" "*"
@@ -1872,12 +1874,12 @@
 
 "@types/estree@*":
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.1.tgz#aa22750962f3bf0e79d753d3cc067f010c95f194"
+  resolved "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz"
   integrity sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==
 
 "@types/html-minifier-terser@^5.0.0":
   version "5.1.2"
-  resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz#693b316ad323ea97eed6b38ed1a3cc02b1672b57"
+  resolved "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz"
   integrity sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==
 
 "@types/http-proxy@^1.17.5":
@@ -1887,20 +1889,15 @@
   dependencies:
     "@types/node" "*"
 
-"@types/json-schema@*", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9":
+"@types/json-schema@*", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.7", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9":
   version "7.0.12"
-  resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb"
+  resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz"
   integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==
 
-"@types/json-schema@^7.0.7":
-  version "7.0.7"
-  resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz"
-  integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==
-
 "@types/json5@^0.0.29":
   version "0.0.29"
   resolved "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz"
-  integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4=
+  integrity "sha1-7ihweulOEdK4J7y+UnC86n8+ce4= sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="
 
 "@types/mdast@^3.0.0":
   version "3.0.3"
@@ -1916,7 +1913,7 @@
 
 "@types/node@*":
   version "20.3.1"
-  resolved "https://registry.yarnpkg.com/@types/node/-/node-20.3.1.tgz#e8a83f1aa8b649377bb1fb5d7bac5cb90e784dfe"
+  resolved "https://registry.npmjs.org/@types/node/-/node-20.3.1.tgz"
   integrity sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg==
 
 "@types/normalize-package-data@^2.4.0":
@@ -1931,17 +1928,17 @@
 
 "@types/source-list-map@*":
   version "0.1.2"
-  resolved "https://registry.yarnpkg.com/@types/source-list-map/-/source-list-map-0.1.2.tgz#0078836063ffaf17412349bba364087e0ac02ec9"
+  resolved "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz"
   integrity sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==
 
 "@types/tapable@^1", "@types/tapable@^1.0.5":
   version "1.0.8"
-  resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.8.tgz#b94a4391c85666c7b73299fd3ad79d4faa435310"
+  resolved "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.8.tgz"
   integrity sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==
 
 "@types/uglify-js@*":
   version "3.17.1"
-  resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.17.1.tgz#e0ffcef756476410e5bce2cb01384ed878a195b5"
+  resolved "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.17.1.tgz"
   integrity sha512-GkewRA4i5oXacU/n4MA9+bLgt5/L3F1mKrYvFGm7r2ouLXhRKjuWwo9XHNnbx6WF3vlGW21S3fCvgqxvxXXc5g==
   dependencies:
     source-map "^0.6.1"
@@ -1953,7 +1950,7 @@
 
 "@types/webpack-sources@*":
   version "3.2.0"
-  resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-3.2.0.tgz#16d759ba096c289034b26553d2df1bf45248d38b"
+  resolved "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.0.tgz"
   integrity sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==
   dependencies:
     "@types/node" "*"
@@ -1962,7 +1959,7 @@
 
 "@types/webpack@^4.41.8":
   version "4.41.33"
-  resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.33.tgz#16164845a5be6a306bcbe554a8e67f9cac215ffc"
+  resolved "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.33.tgz"
   integrity sha512-PPajH64Ft2vWevkerISMtnZ8rTs4YmRbs+23c402J0INmxDKCrhZNvwZYtzx96gY2wAtXdrK1BS2fiC8MlLr3g==
   dependencies:
     "@types/node" "*"
@@ -2020,12 +2017,12 @@
 
 "@vue/babel-helper-vue-jsx-merge-props@^1.4.0":
   version "1.4.0"
-  resolved "https://registry.yarnpkg.com/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.4.0.tgz#8d53a1e21347db8edbe54d339902583176de09f2"
+  resolved "https://registry.npmjs.org/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.4.0.tgz"
   integrity sha512-JkqXfCkUDp4PIlFdDQ0TdXoIejMtTHP67/pvxlgeY+u5k3LEdKuWZ3LK6xkxo52uDoABIVyRwqVkfLQJhk7VBA==
 
 "@vue/babel-plugin-transform-vue-jsx@^1.4.0":
   version "1.4.0"
-  resolved "https://registry.yarnpkg.com/@vue/babel-plugin-transform-vue-jsx/-/babel-plugin-transform-vue-jsx-1.4.0.tgz#4d4b3d46a39ea62b7467dd6e26ce47f7ceafb2fe"
+  resolved "https://registry.npmjs.org/@vue/babel-plugin-transform-vue-jsx/-/babel-plugin-transform-vue-jsx-1.4.0.tgz"
   integrity sha512-Fmastxw4MMx0vlgLS4XBX0XiBbUFzoMGeVXuMV08wyOfXdikAFqBTuYPR0tlk+XskL19EzHc39SgjrPGY23JnA==
   dependencies:
     "@babel/helper-module-imports" "^7.0.0"
@@ -2037,7 +2034,7 @@
 
 "@vue/babel-preset-jsx@^1.4.0":
   version "1.4.0"
-  resolved "https://registry.yarnpkg.com/@vue/babel-preset-jsx/-/babel-preset-jsx-1.4.0.tgz#f4914ba314235ab097bc4372ed67473c0780bfcc"
+  resolved "https://registry.npmjs.org/@vue/babel-preset-jsx/-/babel-preset-jsx-1.4.0.tgz"
   integrity sha512-QmfRpssBOPZWL5xw7fOuHNifCQcNQC1PrOo/4fu6xlhlKJJKSA3HqX92Nvgyx8fqHZTUGMPHmFA+IDqwXlqkSA==
   dependencies:
     "@vue/babel-helper-vue-jsx-merge-props" "^1.4.0"
@@ -2051,35 +2048,35 @@
 
 "@vue/babel-sugar-composition-api-inject-h@^1.4.0":
   version "1.4.0"
-  resolved "https://registry.yarnpkg.com/@vue/babel-sugar-composition-api-inject-h/-/babel-sugar-composition-api-inject-h-1.4.0.tgz#187e1389f8871d89ece743bb50aed713be9d6c85"
+  resolved "https://registry.npmjs.org/@vue/babel-sugar-composition-api-inject-h/-/babel-sugar-composition-api-inject-h-1.4.0.tgz"
   integrity sha512-VQq6zEddJHctnG4w3TfmlVp5FzDavUSut/DwR0xVoe/mJKXyMcsIibL42wPntozITEoY90aBV0/1d2KjxHU52g==
   dependencies:
     "@babel/plugin-syntax-jsx" "^7.2.0"
 
 "@vue/babel-sugar-composition-api-render-instance@^1.4.0":
   version "1.4.0"
-  resolved "https://registry.yarnpkg.com/@vue/babel-sugar-composition-api-render-instance/-/babel-sugar-composition-api-render-instance-1.4.0.tgz#2c1607ae6dffdab47e785bc01fa45ba756e992c1"
+  resolved "https://registry.npmjs.org/@vue/babel-sugar-composition-api-render-instance/-/babel-sugar-composition-api-render-instance-1.4.0.tgz"
   integrity sha512-6ZDAzcxvy7VcnCjNdHJ59mwK02ZFuP5CnucloidqlZwVQv5CQLijc3lGpR7MD3TWFi78J7+a8J56YxbCtHgT9Q==
   dependencies:
     "@babel/plugin-syntax-jsx" "^7.2.0"
 
 "@vue/babel-sugar-functional-vue@^1.4.0":
   version "1.4.0"
-  resolved "https://registry.yarnpkg.com/@vue/babel-sugar-functional-vue/-/babel-sugar-functional-vue-1.4.0.tgz#60da31068567082287c7337c66ef4df04e0a1029"
+  resolved "https://registry.npmjs.org/@vue/babel-sugar-functional-vue/-/babel-sugar-functional-vue-1.4.0.tgz"
   integrity sha512-lTEB4WUFNzYt2In6JsoF9sAYVTo84wC4e+PoZWSgM6FUtqRJz7wMylaEhSRgG71YF+wfLD6cc9nqVeXN2rwBvw==
   dependencies:
     "@babel/plugin-syntax-jsx" "^7.2.0"
 
 "@vue/babel-sugar-inject-h@^1.4.0":
   version "1.4.0"
-  resolved "https://registry.yarnpkg.com/@vue/babel-sugar-inject-h/-/babel-sugar-inject-h-1.4.0.tgz#bf39aa6631fb1d0399b1c49b4c59e1c8899b4363"
+  resolved "https://registry.npmjs.org/@vue/babel-sugar-inject-h/-/babel-sugar-inject-h-1.4.0.tgz"
   integrity sha512-muwWrPKli77uO2fFM7eA3G1lAGnERuSz2NgAxuOLzrsTlQl8W4G+wwbM4nB6iewlKbwKRae3nL03UaF5ffAPMA==
   dependencies:
     "@babel/plugin-syntax-jsx" "^7.2.0"
 
 "@vue/babel-sugar-v-model@^1.4.0":
   version "1.4.0"
-  resolved "https://registry.yarnpkg.com/@vue/babel-sugar-v-model/-/babel-sugar-v-model-1.4.0.tgz#a51d986609f430c4f70ada3a93cc560a2970f720"
+  resolved "https://registry.npmjs.org/@vue/babel-sugar-v-model/-/babel-sugar-v-model-1.4.0.tgz"
   integrity sha512-0t4HGgXb7WHYLBciZzN5s0Hzqan4Ue+p/3FdQdcaHAb7s5D9WZFGoSxEZHrR1TFVZlAPu1bejTKGeAzaaG3NCQ==
   dependencies:
     "@babel/plugin-syntax-jsx" "^7.2.0"
@@ -2091,25 +2088,27 @@
 
 "@vue/babel-sugar-v-on@^1.4.0":
   version "1.4.0"
-  resolved "https://registry.yarnpkg.com/@vue/babel-sugar-v-on/-/babel-sugar-v-on-1.4.0.tgz#43b7106a9672d8cbeefc0eb8afe1d376edc6166e"
+  resolved "https://registry.npmjs.org/@vue/babel-sugar-v-on/-/babel-sugar-v-on-1.4.0.tgz"
   integrity sha512-m+zud4wKLzSKgQrWwhqRObWzmTuyzl6vOP7024lrpeJM4x2UhQtRDLgYjXAw9xBXjCwS0pP9kXjg91F9ZNo9JA==
   dependencies:
     "@babel/plugin-syntax-jsx" "^7.2.0"
     "@vue/babel-plugin-transform-vue-jsx" "^1.4.0"
     camelcase "^5.0.0"
 
-"@vue/compiler-sfc@2.7.14":
-  version "2.7.14"
-  resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-2.7.14.tgz#3446fd2fbb670d709277fc3ffa88efc5e10284fd"
-  integrity sha512-aNmNHyLPsw+sVvlQFQ2/8sjNuLtK54TC6cuKnVzAY93ks4ZBrvwQSnkkIh7bsbNhum5hJBS00wSDipQ937f5DA==
+"@vue/compiler-sfc@2.7.16":
+  version "2.7.16"
+  resolved "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-2.7.16.tgz"
+  integrity sha512-KWhJ9k5nXuNtygPU7+t1rX6baZeqOYLEforUPjgNDBnLicfHCoi48H87Q8XyLZOrNNsmhuwKqtpDQWjEFe6Ekg==
   dependencies:
-    "@babel/parser" "^7.18.4"
+    "@babel/parser" "^7.23.5"
     postcss "^8.4.14"
     source-map "^0.6.1"
+  optionalDependencies:
+    prettier "^1.18.2 || ^2.0.0"
 
 "@vue/component-compiler-utils@^3.1.0":
   version "3.3.0"
-  resolved "https://registry.yarnpkg.com/@vue/component-compiler-utils/-/component-compiler-utils-3.3.0.tgz#f9f5fb53464b0c37b2c8d2f3fbfe44df60f61dc9"
+  resolved "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.3.0.tgz"
   integrity sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ==
   dependencies:
     consolidate "^0.15.1"
@@ -2125,7 +2124,7 @@
 
 "@webassemblyjs/ast@1.9.0":
   version "1.9.0"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964"
+  resolved "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz"
   integrity sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==
   dependencies:
     "@webassemblyjs/helper-module-context" "1.9.0"
@@ -2134,46 +2133,46 @@
 
 "@webassemblyjs/floating-point-hex-parser@1.9.0":
   version "1.9.0"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz#3c3d3b271bddfc84deb00f71344438311d52ffb4"
+  resolved "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz"
   integrity sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==
 
 "@webassemblyjs/helper-api-error@1.9.0":
   version "1.9.0"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz#203f676e333b96c9da2eeab3ccef33c45928b6a2"
+  resolved "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz"
   integrity sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==
 
 "@webassemblyjs/helper-buffer@1.9.0":
   version "1.9.0"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz#a1442d269c5feb23fcbc9ef759dac3547f29de00"
+  resolved "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz"
   integrity sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==
 
 "@webassemblyjs/helper-code-frame@1.9.0":
   version "1.9.0"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz#647f8892cd2043a82ac0c8c5e75c36f1d9159f27"
+  resolved "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz"
   integrity sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==
   dependencies:
     "@webassemblyjs/wast-printer" "1.9.0"
 
 "@webassemblyjs/helper-fsm@1.9.0":
   version "1.9.0"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz#c05256b71244214671f4b08ec108ad63b70eddb8"
+  resolved "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz"
   integrity sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==
 
 "@webassemblyjs/helper-module-context@1.9.0":
   version "1.9.0"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz#25d8884b76839871a08a6c6f806c3979ef712f07"
+  resolved "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz"
   integrity sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==
   dependencies:
     "@webassemblyjs/ast" "1.9.0"
 
 "@webassemblyjs/helper-wasm-bytecode@1.9.0":
   version "1.9.0"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz#4fed8beac9b8c14f8c58b70d124d549dd1fe5790"
+  resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz"
   integrity sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==
 
 "@webassemblyjs/helper-wasm-section@1.9.0":
   version "1.9.0"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz#5a4138d5a6292ba18b04c5ae49717e4167965346"
+  resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz"
   integrity sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==
   dependencies:
     "@webassemblyjs/ast" "1.9.0"
@@ -2183,26 +2182,26 @@
 
 "@webassemblyjs/ieee754@1.9.0":
   version "1.9.0"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz#15c7a0fbaae83fb26143bbacf6d6df1702ad39e4"
+  resolved "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz"
   integrity sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==
   dependencies:
     "@xtuc/ieee754" "^1.2.0"
 
 "@webassemblyjs/leb128@1.9.0":
   version "1.9.0"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz#f19ca0b76a6dc55623a09cffa769e838fa1e1c95"
+  resolved "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz"
   integrity sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==
   dependencies:
     "@xtuc/long" "4.2.2"
 
 "@webassemblyjs/utf8@1.9.0":
   version "1.9.0"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz#04d33b636f78e6a6813227e82402f7637b6229ab"
+  resolved "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz"
   integrity sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==
 
 "@webassemblyjs/wasm-edit@1.9.0":
   version "1.9.0"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz#3fe6d79d3f0f922183aa86002c42dd256cfee9cf"
+  resolved "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz"
   integrity sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==
   dependencies:
     "@webassemblyjs/ast" "1.9.0"
@@ -2216,7 +2215,7 @@
 
 "@webassemblyjs/wasm-gen@1.9.0":
   version "1.9.0"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz#50bc70ec68ded8e2763b01a1418bf43491a7a49c"
+  resolved "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz"
   integrity sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==
   dependencies:
     "@webassemblyjs/ast" "1.9.0"
@@ -2227,7 +2226,7 @@
 
 "@webassemblyjs/wasm-opt@1.9.0":
   version "1.9.0"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz#2211181e5b31326443cc8112eb9f0b9028721a61"
+  resolved "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz"
   integrity sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==
   dependencies:
     "@webassemblyjs/ast" "1.9.0"
@@ -2237,7 +2236,7 @@
 
 "@webassemblyjs/wasm-parser@1.9.0":
   version "1.9.0"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz#9d48e44826df4a6598294aa6c87469d642fff65e"
+  resolved "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz"
   integrity sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==
   dependencies:
     "@webassemblyjs/ast" "1.9.0"
@@ -2249,7 +2248,7 @@
 
 "@webassemblyjs/wast-parser@1.9.0":
   version "1.9.0"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz#3031115d79ac5bd261556cecc3fa90a3ef451914"
+  resolved "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz"
   integrity sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==
   dependencies:
     "@webassemblyjs/ast" "1.9.0"
@@ -2261,7 +2260,7 @@
 
 "@webassemblyjs/wast-printer@1.9.0":
   version "1.9.0"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz#4935d54c85fef637b00ce9f52377451d00d47899"
+  resolved "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz"
   integrity sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==
   dependencies:
     "@webassemblyjs/ast" "1.9.0"
@@ -2270,17 +2269,17 @@
 
 "@xtuc/ieee754@^1.2.0":
   version "1.2.0"
-  resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790"
+  resolved "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz"
   integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==
 
 "@xtuc/long@4.2.2":
   version "4.2.2"
-  resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d"
+  resolved "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz"
   integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==
 
 accepts@~1.3.5:
   version "1.3.8"
-  resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e"
+  resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz"
   integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==
   dependencies:
     mime-types "~2.1.34"
@@ -2288,32 +2287,32 @@ accepts@~1.3.5:
 
 acorn-jsx@^5.2.0, acorn-jsx@^5.3.1:
   version "5.3.2"
-  resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
+  resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz"
   integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
 
 acorn-walk@^8.0.0, acorn-walk@^8.2.0:
   version "8.2.0"
-  resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1"
+  resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz"
   integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==
 
 acorn@^6.4.1:
   version "6.4.2"
-  resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6"
+  resolved "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz"
   integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==
 
 acorn@^7.1.1, acorn@^7.4.0:
   version "7.4.1"
-  resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
+  resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"
   integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
 
 acorn@^8.0.4, acorn@^8.4.1, acorn@^8.8.2:
   version "8.9.0"
-  resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.9.0.tgz#78a16e3b2bcc198c10822786fa6679e245db5b59"
+  resolved "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz"
   integrity sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==
 
 aggregate-error@^3.0.0:
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a"
+  resolved "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz"
   integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==
   dependencies:
     clean-stack "^2.0.0"
@@ -2321,31 +2320,31 @@ aggregate-error@^3.0.0:
 
 ajv-errors@^1.0.0:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d"
+  resolved "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz"
   integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==
 
 ajv-formats@^2.1.1:
   version "2.1.1"
-  resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520"
+  resolved "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz"
   integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==
   dependencies:
     ajv "^8.0.0"
 
 ajv-keywords@^3.1.0, ajv-keywords@^3.4.1, ajv-keywords@^3.5.2:
   version "3.5.2"
-  resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
+  resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz"
   integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
 
 ajv-keywords@^5.1.0:
   version "5.1.0"
-  resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16"
+  resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz"
   integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==
   dependencies:
     fast-deep-equal "^3.1.3"
 
 ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.4, ajv@^6.12.5:
   version "6.12.6"
-  resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
+  resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
   integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
   dependencies:
     fast-deep-equal "^3.1.1"
@@ -2355,7 +2354,7 @@ ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.4, ajv@^6.12.5:
 
 ajv@^8.0.0, ajv@^8.0.1, ajv@^8.9.0:
   version "8.12.0"
-  resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1"
+  resolved "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz"
   integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==
   dependencies:
     fast-deep-equal "^3.1.1"
@@ -2365,55 +2364,55 @@ ajv@^8.0.0, ajv@^8.0.1, ajv@^8.9.0:
 
 ansi-align@^3.0.0:
   version "3.0.1"
-  resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.1.tgz#0cdf12e111ace773a86e9a1fad1225c43cb19a59"
+  resolved "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz"
   integrity sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==
   dependencies:
     string-width "^4.1.0"
 
 ansi-colors@^4.1.1:
   version "4.1.3"
-  resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b"
+  resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz"
   integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==
 
-ansi-escapes@^4.2.1, ansi-escapes@^4.3.0:
+ansi-escapes@^4.2.1, ansi-escapes@^4.3.0, ansi-escapes@^4.3.2:
   version "4.3.2"
-  resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
+  resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz"
   integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
   dependencies:
     type-fest "^0.21.3"
 
 ansi-html-community@0.0.8:
   version "0.0.8"
-  resolved "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41"
+  resolved "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz"
   integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==
 
 ansi-regex@^2.0.0:
   version "2.1.1"
-  resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
+  resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"
   integrity sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==
 
 ansi-regex@^5.0.1:
   version "5.0.1"
-  resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
+  resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
   integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
 
 ansi-styles@^3.2.1:
   version "3.2.1"
-  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
+  resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
   integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
   dependencies:
     color-convert "^1.9.0"
 
 ansi-styles@^4.0.0, ansi-styles@^4.1.0:
   version "4.3.0"
-  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
+  resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
   integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
   dependencies:
     color-convert "^2.0.1"
 
 anymatch@^2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
+  resolved "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz"
   integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==
   dependencies:
     micromatch "^3.1.4"
@@ -2421,7 +2420,7 @@ anymatch@^2.0.0:
 
 anymatch@^3.0.0, anymatch@~3.1.2:
   version "3.1.3"
-  resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
+  resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz"
   integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
   dependencies:
     normalize-path "^3.0.0"
@@ -2429,39 +2428,39 @@ anymatch@^3.0.0, anymatch@~3.1.2:
 
 aproba@^1.1.1:
   version "1.2.0"
-  resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
+  resolved "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz"
   integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
 
 arg@^5.0.2:
   version "5.0.2"
-  resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c"
+  resolved "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz"
   integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==
 
 argparse@^1.0.7:
   version "1.0.10"
-  resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
+  resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"
   integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
   dependencies:
     sprintf-js "~1.0.2"
 
 arr-diff@^4.0.0:
   version "4.0.0"
-  resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
+  resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz"
   integrity sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==
 
 arr-flatten@^1.1.0:
   version "1.1.0"
-  resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
+  resolved "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz"
   integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==
 
 arr-union@^3.1.0:
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
+  resolved "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz"
   integrity sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==
 
 array-buffer-byte-length@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead"
+  resolved "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz"
   integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==
   dependencies:
     call-bind "^1.0.2"
@@ -2480,12 +2479,12 @@ array-includes@^3.1.3:
 
 array-union@^2.1.0:
   version "2.1.0"
-  resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
+  resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz"
   integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
 
 array-unique@^0.3.2:
   version "0.3.2"
-  resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
+  resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz"
   integrity sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==
 
 array.prototype.flat@^1.2.4:
@@ -2499,7 +2498,7 @@ array.prototype.flat@^1.2.4:
 
 array.prototype.reduce@^1.0.5:
   version "1.0.5"
-  resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz#6b20b0daa9d9734dd6bc7ea66b5bbce395471eac"
+  resolved "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz"
   integrity sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==
   dependencies:
     call-bind "^1.0.2"
@@ -2511,16 +2510,16 @@ array.prototype.reduce@^1.0.5:
 arrify@^1.0.1:
   version "1.0.1"
   resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz"
-  integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=
+  integrity "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA=="
 
 arrify@^2.0.1:
   version "2.0.1"
-  resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa"
+  resolved "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz"
   integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==
 
 asn1.js@^5.2.0:
   version "5.4.1"
-  resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07"
+  resolved "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz"
   integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==
   dependencies:
     bn.js "^4.0.0"
@@ -2530,7 +2529,7 @@ asn1.js@^5.2.0:
 
 assert@^1.1.1:
   version "1.5.0"
-  resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb"
+  resolved "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz"
   integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==
   dependencies:
     object-assign "^4.1.1"
@@ -2538,32 +2537,32 @@ assert@^1.1.1:
 
 assign-symbols@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
+  resolved "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz"
   integrity sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==
 
 astral-regex@^2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31"
+  resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz"
   integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
 
 async-each@^1.0.1:
   version "1.0.6"
-  resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.6.tgz#52f1d9403818c179b7561e11a5d1b77eb2160e77"
+  resolved "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz"
   integrity sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==
 
 atob@^2.1.2:
   version "2.1.2"
-  resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
+  resolved "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz"
   integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
 
-autoprefixer@^10.4.14:
-  version "10.4.14"
-  resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.14.tgz#e28d49902f8e759dd25b153264e862df2705f79d"
-  integrity sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==
+autoprefixer@^10.4.16:
+  version "10.4.16"
+  resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz"
+  integrity sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==
   dependencies:
-    browserslist "^4.21.5"
-    caniuse-lite "^1.0.30001464"
-    fraction.js "^4.2.0"
+    browserslist "^4.21.10"
+    caniuse-lite "^1.0.30001538"
+    fraction.js "^4.3.6"
     normalize-range "^0.1.2"
     picocolors "^1.0.0"
     postcss-value-parser "^4.2.0"
@@ -2583,7 +2582,7 @@ autoprefixer@^9.8.6:
 
 available-typed-arrays@^1.0.5:
   version "1.0.5"
-  resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7"
+  resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz"
   integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==
 
 axios-retry@^3.1.9:
@@ -2602,7 +2601,7 @@ axios@^0.21.1:
 
 babel-loader@^8.3.0:
   version "8.3.0"
-  resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.3.0.tgz#124936e841ba4fe8176786d6ff28add1f134d6a8"
+  resolved "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz"
   integrity sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==
   dependencies:
     find-cache-dir "^3.3.1"
@@ -2610,29 +2609,29 @@ babel-loader@^8.3.0:
     make-dir "^3.1.0"
     schema-utils "^2.6.5"
 
-babel-plugin-polyfill-corejs2@^0.4.3:
-  version "0.4.3"
-  resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.3.tgz#75044d90ba5043a5fb559ac98496f62f3eb668fd"
-  integrity sha512-bM3gHc337Dta490gg+/AseNB9L4YLHxq1nGKZZSHbhXv4aTYU2MD2cjza1Ru4S6975YLTaL1K8uJf6ukJhhmtw==
+babel-plugin-polyfill-corejs2@^0.4.7:
+  version "0.4.7"
+  resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.7.tgz"
+  integrity sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==
   dependencies:
-    "@babel/compat-data" "^7.17.7"
-    "@babel/helper-define-polyfill-provider" "^0.4.0"
-    semver "^6.1.1"
+    "@babel/compat-data" "^7.22.6"
+    "@babel/helper-define-polyfill-provider" "^0.4.4"
+    semver "^6.3.1"
 
-babel-plugin-polyfill-corejs3@^0.8.1:
-  version "0.8.1"
-  resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.1.tgz#39248263c38191f0d226f928d666e6db1b4b3a8a"
-  integrity sha512-ikFrZITKg1xH6pLND8zT14UPgjKHiGLqex7rGEZCH2EvhsneJaJPemmpQaIZV5AL03II+lXylw3UmddDK8RU5Q==
+babel-plugin-polyfill-corejs3@^0.8.7:
+  version "0.8.7"
+  resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.7.tgz"
+  integrity sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==
   dependencies:
-    "@babel/helper-define-polyfill-provider" "^0.4.0"
-    core-js-compat "^3.30.1"
+    "@babel/helper-define-polyfill-provider" "^0.4.4"
+    core-js-compat "^3.33.1"
 
-babel-plugin-polyfill-regenerator@^0.5.0:
-  version "0.5.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.0.tgz#e7344d88d9ef18a3c47ded99362ae4a757609380"
-  integrity sha512-hDJtKjMLVa7Z+LwnTCxoDLQj6wdc+B8dun7ayF2fYieI6OzfuvcLMB32ihJZ4UhCBwNYGl5bg/x/P9cMdnkc2g==
+babel-plugin-polyfill-regenerator@^0.5.4:
+  version "0.5.4"
+  resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.4.tgz"
+  integrity sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==
   dependencies:
-    "@babel/helper-define-polyfill-provider" "^0.4.0"
+    "@babel/helper-define-polyfill-provider" "^0.4.4"
 
 bail@^1.0.0:
   version "1.0.5"
@@ -2641,7 +2640,7 @@ bail@^1.0.0:
 
 balanced-match@^1.0.0:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
+  resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
   integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
 
 balanced-match@^2.0.0:
@@ -2651,12 +2650,12 @@ balanced-match@^2.0.0:
 
 base64-js@^1.0.2:
   version "1.5.1"
-  resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
+  resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"
   integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
 
 base@^0.11.1:
   version "0.11.2"
-  resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
+  resolved "https://registry.npmjs.org/base/-/base-0.11.2.tgz"
   integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==
   dependencies:
     cache-base "^1.0.1"
@@ -2669,17 +2668,17 @@ base@^0.11.1:
 
 big.js@^5.2.2:
   version "5.2.2"
-  resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
+  resolved "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz"
   integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
 
 binary-extensions@^1.0.0:
   version "1.13.1"
-  resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65"
+  resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz"
   integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
 
 binary-extensions@^2.0.0:
   version "2.2.0"
-  resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
+  resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"
   integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
 
 bindings@^1.5.0:
@@ -2691,27 +2690,27 @@ bindings@^1.5.0:
 
 bluebird@^3.1.1, bluebird@^3.5.5:
   version "3.7.2"
-  resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
+  resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz"
   integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
 
 bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9:
   version "4.12.0"
-  resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88"
+  resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz"
   integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==
 
 bn.js@^5.0.0, bn.js@^5.1.1:
   version "5.2.1"
-  resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70"
+  resolved "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz"
   integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==
 
 boolbase@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
+  resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz"
   integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==
 
 boxen@^5.1.2:
   version "5.1.2"
-  resolved "https://registry.yarnpkg.com/boxen/-/boxen-5.1.2.tgz#788cb686fc83c1f486dfa8a40c68fc2b831d2b50"
+  resolved "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz"
   integrity sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==
   dependencies:
     ansi-align "^3.0.0"
@@ -2725,7 +2724,7 @@ boxen@^5.1.2:
 
 brace-expansion@^1.1.7:
   version "1.1.11"
-  resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
+  resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"
   integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
   dependencies:
     balanced-match "^1.0.0"
@@ -2733,14 +2732,14 @@ brace-expansion@^1.1.7:
 
 brace-expansion@^2.0.1:
   version "2.0.1"
-  resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae"
+  resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz"
   integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
   dependencies:
     balanced-match "^1.0.0"
 
 braces@^2.3.1, braces@^2.3.2:
   version "2.3.2"
-  resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
+  resolved "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz"
   integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==
   dependencies:
     arr-flatten "^1.1.0"
@@ -2756,19 +2755,19 @@ braces@^2.3.1, braces@^2.3.2:
 
 braces@^3.0.2, braces@~3.0.2:
   version "3.0.2"
-  resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
+  resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"
   integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
   dependencies:
     fill-range "^7.0.1"
 
 brorand@^1.0.1, brorand@^1.1.0:
   version "1.1.0"
-  resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
+  resolved "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz"
   integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==
 
 browserify-aes@^1.0.0, browserify-aes@^1.0.4:
   version "1.2.0"
-  resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48"
+  resolved "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz"
   integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==
   dependencies:
     buffer-xor "^1.0.3"
@@ -2780,7 +2779,7 @@ browserify-aes@^1.0.0, browserify-aes@^1.0.4:
 
 browserify-cipher@^1.0.0:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0"
+  resolved "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz"
   integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==
   dependencies:
     browserify-aes "^1.0.4"
@@ -2789,7 +2788,7 @@ browserify-cipher@^1.0.0:
 
 browserify-des@^1.0.0:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c"
+  resolved "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz"
   integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==
   dependencies:
     cipher-base "^1.0.1"
@@ -2799,7 +2798,7 @@ browserify-des@^1.0.0:
 
 browserify-rsa@^4.0.0, browserify-rsa@^4.0.1:
   version "4.1.0"
-  resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d"
+  resolved "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz"
   integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==
   dependencies:
     bn.js "^5.0.0"
@@ -2807,7 +2806,7 @@ browserify-rsa@^4.0.0, browserify-rsa@^4.0.1:
 
 browserify-sign@^4.0.0:
   version "4.2.1"
-  resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3"
+  resolved "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz"
   integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==
   dependencies:
     bn.js "^5.1.1"
@@ -2822,39 +2821,39 @@ browserify-sign@^4.0.0:
 
 browserify-zlib@^0.2.0:
   version "0.2.0"
-  resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f"
+  resolved "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz"
   integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==
   dependencies:
     pako "~1.0.5"
 
-browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.21.3, browserslist@^4.21.4, browserslist@^4.21.5, browserslist@^4.21.9:
-  version "4.21.9"
-  resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.9.tgz#e11bdd3c313d7e2a9e87e8b4b0c7872b13897635"
-  integrity sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==
+browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.21.10, browserslist@^4.21.4, browserslist@^4.22.1, browserslist@^4.22.2:
+  version "4.22.2"
+  resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz"
+  integrity sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==
   dependencies:
-    caniuse-lite "^1.0.30001503"
-    electron-to-chromium "^1.4.431"
-    node-releases "^2.0.12"
-    update-browserslist-db "^1.0.11"
+    caniuse-lite "^1.0.30001565"
+    electron-to-chromium "^1.4.601"
+    node-releases "^2.0.14"
+    update-browserslist-db "^1.0.13"
 
 buffer-from@^1.0.0:
   version "1.1.2"
-  resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
+  resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz"
   integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
 
 buffer-json@^2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/buffer-json/-/buffer-json-2.0.0.tgz#f73e13b1e42f196fe2fd67d001c7d7107edd7c23"
+  resolved "https://registry.npmjs.org/buffer-json/-/buffer-json-2.0.0.tgz"
   integrity sha512-+jjPFVqyfF1esi9fvfUs3NqM0pH1ziZ36VP4hmA/y/Ssfo/5w5xHKfTw9BwQjoJ1w/oVtpLomqwUHKdefGyuHw==
 
 buffer-xor@^1.0.3:
   version "1.0.3"
-  resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
+  resolved "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz"
   integrity sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==
 
 buffer@^4.3.0:
   version "4.9.2"
-  resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8"
+  resolved "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz"
   integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==
   dependencies:
     base64-js "^1.0.2"
@@ -2863,17 +2862,17 @@ buffer@^4.3.0:
 
 builtin-status-codes@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
+  resolved "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz"
   integrity sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==
 
 bytes@3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
+  resolved "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz"
   integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==
 
 cacache@^12.0.2:
   version "12.0.4"
-  resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c"
+  resolved "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz"
   integrity sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==
   dependencies:
     bluebird "^3.5.5"
@@ -2894,7 +2893,7 @@ cacache@^12.0.2:
 
 cacache@^15.0.5:
   version "15.3.0"
-  resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.3.0.tgz#dc85380fb2f556fe3dda4c719bfa0ec875a7f1eb"
+  resolved "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz"
   integrity sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==
   dependencies:
     "@npmcli/fs" "^1.0.0"
@@ -2918,7 +2917,7 @@ cacache@^15.0.5:
 
 cache-base@^1.0.1:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
+  resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz"
   integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==
   dependencies:
     collection-visit "^1.0.0"
@@ -2933,7 +2932,7 @@ cache-base@^1.0.1:
 
 cache-loader@^4.1.0:
   version "4.1.0"
-  resolved "https://registry.yarnpkg.com/cache-loader/-/cache-loader-4.1.0.tgz#9948cae353aec0a1fcb1eafda2300816ec85387e"
+  resolved "https://registry.npmjs.org/cache-loader/-/cache-loader-4.1.0.tgz"
   integrity sha512-ftOayxve0PwKzBF/GLsZNC9fJBXl8lkZE3TOsjkboHfVHVkL39iUEs1FO07A33mizmci5Dudt38UZrrYXDtbhw==
   dependencies:
     buffer-json "^2.0.0"
@@ -2945,7 +2944,7 @@ cache-loader@^4.1.0:
 
 call-bind@^1.0.0, call-bind@^1.0.2:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
+  resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz"
   integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
   dependencies:
     function-bind "^1.1.1"
@@ -2953,17 +2952,17 @@ call-bind@^1.0.0, call-bind@^1.0.2:
 
 callsite@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20"
+  resolved "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz"
   integrity sha512-0vdNRFXn5q+dtOqjfFtmtlI9N2eVZ7LMyEV2iKC5mEEFvSg/69Ml6b/WU2qF8W1nLRa0wiSrDT3Y5jOHZCwKPQ==
 
 callsites@^3.0.0:
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
+  resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz"
   integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
 
 camel-case@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73"
+  resolved "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz"
   integrity sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==
   dependencies:
     no-case "^2.2.0"
@@ -2971,7 +2970,7 @@ camel-case@^3.0.0:
 
 camel-case@^4.1.1:
   version "4.1.2"
-  resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a"
+  resolved "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz"
   integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==
   dependencies:
     pascal-case "^3.1.2"
@@ -2988,17 +2987,17 @@ camelcase-keys@^6.2.2:
 
 camelcase@^5.0.0, camelcase@^5.3.1:
   version "5.3.1"
-  resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
+  resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"
   integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
 
 camelcase@^6.2.0:
   version "6.3.0"
-  resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
+  resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz"
   integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
 
 caniuse-api@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0"
+  resolved "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz"
   integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==
   dependencies:
     browserslist "^4.0.0"
@@ -3006,14 +3005,14 @@ caniuse-api@^3.0.0:
     lodash.memoize "^4.1.2"
     lodash.uniq "^4.5.0"
 
-caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001464, caniuse-lite@^1.0.30001497, caniuse-lite@^1.0.30001503:
-  version "1.0.30001506"
-  resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001506.tgz#35bd814b310a487970c585430e9e80ee23faf14b"
-  integrity sha512-6XNEcpygZMCKaufIcgpQNZNf00GEqc7VQON+9Rd0K1bMYo8xhMZRAo5zpbnbMNizi4YNgIDAFrdykWsvY3H4Hw==
+caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001538, caniuse-lite@^1.0.30001565, caniuse-lite@^1.0.30001576:
+  version "1.0.30001576"
+  resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001576.tgz"
+  integrity sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==
 
-chalk@^2.0.0, chalk@^2.3.2, chalk@^2.4.1, chalk@^2.4.2:
+chalk@^2.4.1, chalk@^2.4.2:
   version "2.4.2"
-  resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
+  resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
   integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
   dependencies:
     ansi-styles "^3.2.1"
@@ -3022,7 +3021,7 @@ chalk@^2.0.0, chalk@^2.3.2, chalk@^2.4.1, chalk@^2.4.2:
 
 chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2:
   version "4.1.2"
-  resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
+  resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
   integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
   dependencies:
     ansi-styles "^4.1.0"
@@ -3045,12 +3044,12 @@ character-reference-invalid@^1.0.0:
 
 chardet@^0.7.0:
   version "0.7.0"
-  resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
+  resolved "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz"
   integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
 
 "chokidar@>=3.0.0 <4.0.0", chokidar@^3.4.1, chokidar@^3.5.2, chokidar@^3.5.3:
   version "3.5.3"
-  resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd"
+  resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz"
   integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==
   dependencies:
     anymatch "~3.1.2"
@@ -3065,7 +3064,7 @@ chardet@^0.7.0:
 
 chokidar@^2.1.8:
   version "2.1.8"
-  resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
+  resolved "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz"
   integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
   dependencies:
     anymatch "^2.0.0"
@@ -3084,17 +3083,17 @@ chokidar@^2.1.8:
 
 chownr@^1.1.1:
   version "1.1.4"
-  resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b"
+  resolved "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz"
   integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==
 
 chownr@^2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece"
+  resolved "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz"
   integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==
 
 chrome-trace-event@^1.0.2:
   version "1.0.3"
-  resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac"
+  resolved "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz"
   integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==
 
 ci-info@^2.0.0:
@@ -3104,12 +3103,12 @@ ci-info@^2.0.0:
 
 ci-info@^3.7.1:
   version "3.8.0"
-  resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91"
+  resolved "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz"
   integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==
 
 cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
   version "1.0.4"
-  resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
+  resolved "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz"
   integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==
   dependencies:
     inherits "^2.0.1"
@@ -3117,7 +3116,7 @@ cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
 
 class-utils@^0.3.5:
   version "0.3.6"
-  resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
+  resolved "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz"
   integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==
   dependencies:
     arr-union "^3.1.0"
@@ -3127,7 +3126,7 @@ class-utils@^0.3.5:
 
 clean-css@^4.2.1, clean-css@^4.2.3:
   version "4.2.4"
-  resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.4.tgz#733bf46eba4e607c6891ea57c24a989356831178"
+  resolved "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz"
   integrity sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==
   dependencies:
     source-map "~0.6.0"
@@ -3135,23 +3134,23 @@ clean-css@^4.2.1, clean-css@^4.2.3:
 clean-regexp@^1.0.0:
   version "1.0.0"
   resolved "https://registry.npmjs.org/clean-regexp/-/clean-regexp-1.0.0.tgz"
-  integrity sha1-jffHquUf02h06PjQW5GAvBGj/tc=
+  integrity "sha1-jffHquUf02h06PjQW5GAvBGj/tc= sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw=="
   dependencies:
     escape-string-regexp "^1.0.5"
 
 clean-stack@^2.0.0:
   version "2.2.0"
-  resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
+  resolved "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz"
   integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==
 
 cli-boxes@^2.2.1:
   version "2.2.1"
-  resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f"
+  resolved "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz"
   integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==
 
 cli-cursor@^3.1.0:
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307"
+  resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz"
   integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==
   dependencies:
     restore-cursor "^3.1.0"
@@ -3166,7 +3165,7 @@ cli-truncate@^2.1.0:
 
 cli-width@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6"
+  resolved "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz"
   integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==
 
 clone-regexp@^2.1.0:
@@ -3178,7 +3177,7 @@ clone-regexp@^2.1.0:
 
 collection-visit@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
+  resolved "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz"
   integrity sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==
   dependencies:
     map-visit "^1.0.0"
@@ -3186,83 +3185,83 @@ collection-visit@^1.0.0:
 
 color-convert@^1.9.0:
   version "1.9.3"
-  resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
+  resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
   integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
   dependencies:
     color-name "1.1.3"
 
 color-convert@^2.0.1:
   version "2.0.1"
-  resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
+  resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
   integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
   dependencies:
     color-name "~1.1.4"
 
 color-name@1.1.3:
   version "1.1.3"
-  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
+  resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
   integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
 
 color-name@~1.1.4:
   version "1.1.4"
-  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
+  resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
   integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
 
 colord@^2.9.1:
   version "2.9.3"
-  resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43"
+  resolved "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz"
   integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==
 
 colorette@^1.2.1, colorette@^1.2.2:
   version "1.4.0"
-  resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40"
+  resolved "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz"
   integrity sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==
 
 colorette@^2.0.10:
   version "2.0.20"
-  resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a"
+  resolved "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz"
   integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==
 
 commander@7, commander@^7.2.0:
   version "7.2.0"
-  resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
+  resolved "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz"
   integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
 
 commander@^2.19.0, commander@^2.20.0:
   version "2.20.3"
-  resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
+  resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz"
   integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
 
 commander@^4.1.1:
   version "4.1.1"
-  resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
+  resolved "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz"
   integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
 
 commander@^6.2.0:
   version "6.2.1"
-  resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c"
+  resolved "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz"
   integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==
 
 commondir@^1.0.1:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
+  resolved "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz"
   integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==
 
 component-emitter@^1.2.1:
   version "1.3.0"
-  resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
+  resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz"
   integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
 
 compressible@~2.0.16:
   version "2.0.18"
-  resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba"
+  resolved "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz"
   integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==
   dependencies:
     mime-db ">= 1.43.0 < 2"
 
 compression@^1.7.4:
   version "1.7.4"
-  resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f"
+  resolved "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz"
   integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==
   dependencies:
     accepts "~1.3.5"
@@ -3275,12 +3274,12 @@ compression@^1.7.4:
 
 concat-map@0.0.1:
   version "0.0.1"
-  resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
+  resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
   integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
 
 concat-stream@^1.5.0:
   version "1.6.2"
-  resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
+  resolved "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz"
   integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
   dependencies:
     buffer-from "^1.0.0"
@@ -3290,7 +3289,7 @@ concat-stream@^1.5.0:
 
 connect@^3.7.0:
   version "3.7.0"
-  resolved "https://registry.yarnpkg.com/connect/-/connect-3.7.0.tgz#5d49348910caa5e07a01800b030d0c35f20484f8"
+  resolved "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz"
   integrity sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==
   dependencies:
     debug "2.6.9"
@@ -3298,46 +3297,46 @@ connect@^3.7.0:
     parseurl "~1.3.3"
     utils-merge "1.0.1"
 
-consola@^2.10.1, consola@^2.15.0, consola@^2.15.3, consola@^2.6.0:
+consola@^2.15.3:
   version "2.15.3"
-  resolved "https://registry.yarnpkg.com/consola/-/consola-2.15.3.tgz#2e11f98d6a4be71ff72e0bdf07bd23e12cb61550"
+  resolved "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz"
   integrity sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==
 
-consola@^3.1.0:
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/consola/-/consola-3.1.0.tgz#dfdfa62ceb68bc1f06e4a76ad688566bd8813baf"
-  integrity sha512-rrrJE6rP0qzl/Srg+C9x/AE5Kxfux7reVm1Wh0wCjuXvih6DqZgqDZe8auTD28fzJ9TF0mHlSDrPpWlujQRo1Q==
+consola@^3.2.3:
+  version "3.2.3"
+  resolved "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz"
+  integrity sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==
 
 console-browserify@^1.1.0:
   version "1.2.0"
-  resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336"
+  resolved "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz"
   integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==
 
 consolidate@^0.15.1:
   version "0.15.1"
-  resolved "https://registry.yarnpkg.com/consolidate/-/consolidate-0.15.1.tgz#21ab043235c71a07d45d9aad98593b0dba56bab7"
+  resolved "https://registry.npmjs.org/consolidate/-/consolidate-0.15.1.tgz"
   integrity sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw==
   dependencies:
     bluebird "^3.1.1"
 
 constants-browserify@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
+  resolved "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz"
   integrity sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==
 
-convert-source-map@^1.7.0:
-  version "1.9.0"
-  resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f"
-  integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
+convert-source-map@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz"
+  integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
 
 cookie@^0.3.1:
   version "0.3.1"
-  resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"
+  resolved "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz"
   integrity sha512-+IJOX0OqlHCszo2mBUq+SrEbCj6w7Kpffqx60zYbPTFaO4+yYgRjHwcZNpWvaTylDHaV7PPmBHzSecZiMhtPgw==
 
 copy-concurrently@^1.0.0:
   version "1.0.5"
-  resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0"
+  resolved "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz"
   integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==
   dependencies:
     aproba "^1.1.1"
@@ -3349,24 +3348,24 @@ copy-concurrently@^1.0.0:
 
 copy-descriptor@^0.1.0:
   version "0.1.1"
-  resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
+  resolved "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz"
   integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==
 
-core-js-compat@^3.30.1, core-js-compat@^3.30.2:
-  version "3.31.0"
-  resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.31.0.tgz#4030847c0766cc0e803dcdfb30055d7ef2064bf1"
-  integrity sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==
+core-js-compat@^3.31.0, core-js-compat@^3.33.1, core-js-compat@^3.35.0:
+  version "3.35.0"
+  resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.35.0.tgz"
+  integrity sha512-5blwFAddknKeNgsjBzilkdQ0+YK8L1PfqPYq40NOYMYFSS38qj+hpTcLLWwpIwA2A5bje/x5jmVn2tzUMg9IVw==
   dependencies:
-    browserslist "^4.21.5"
+    browserslist "^4.22.2"
 
-core-js@^3.15.1, core-js@^3.30.2:
-  version "3.31.0"
-  resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.31.0.tgz#4471dd33e366c79d8c0977ed2d940821719db344"
-  integrity sha512-NIp2TQSGfR6ba5aalZD+ZQ1fSxGhDo/s1w0nx3RYzf2pnJxt7YynxFlFScP6eV7+GZsKO95NSjGxyJsU3DZgeQ==
+core-js@^3.35.0:
+  version "3.35.0"
+  resolved "https://registry.npmjs.org/core-js/-/core-js-3.35.0.tgz"
+  integrity sha512-ntakECeqg81KqMueeGJ79Q5ZgQNR+6eaE8sxGCx62zMbAIj65q+uYvatToew3m6eAGdU4gNZwpZ34NMe4GYswg==
 
 core-util-is@~1.0.0:
   version "1.0.3"
-  resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85"
+  resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz"
   integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==
 
 cosmiconfig@^7.0.0:
@@ -3382,12 +3381,12 @@ cosmiconfig@^7.0.0:
 
 crc@^4.3.2:
   version "4.3.2"
-  resolved "https://registry.yarnpkg.com/crc/-/crc-4.3.2.tgz#49b7821cbf2cf61dfd079ed93863bbebd5469b9a"
+  resolved "https://registry.npmjs.org/crc/-/crc-4.3.2.tgz"
   integrity sha512-uGDHf4KLLh2zsHa8D8hIQ1H/HtFQhyHrc0uhHBcoKGol/Xnb+MPYfUMw7cvON6ze/GUESTudKayDcJC5HnJv1A==
 
 create-ecdh@^4.0.0:
   version "4.0.4"
-  resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e"
+  resolved "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz"
   integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==
   dependencies:
     bn.js "^4.1.0"
@@ -3395,7 +3394,7 @@ create-ecdh@^4.0.0:
 
 create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0:
   version "1.2.0"
-  resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196"
+  resolved "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz"
   integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==
   dependencies:
     cipher-base "^1.0.1"
@@ -3406,7 +3405,7 @@ create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0:
 
 create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7:
   version "1.1.7"
-  resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff"
+  resolved "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz"
   integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==
   dependencies:
     cipher-base "^1.0.3"
@@ -3418,12 +3417,12 @@ create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7:
 
 create-require@^1.1.1:
   version "1.1.1"
-  resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333"
+  resolved "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz"
   integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==
 
 cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3:
   version "7.0.3"
-  resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
+  resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"
   integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
   dependencies:
     path-key "^3.1.0"
@@ -3432,7 +3431,7 @@ cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3:
 
 crypto-browserify@^3.11.0:
   version "3.12.0"
-  resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec"
+  resolved "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz"
   integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==
   dependencies:
     browserify-cipher "^1.0.0"
@@ -3447,30 +3446,35 @@ crypto-browserify@^3.11.0:
     randombytes "^2.0.0"
     randomfill "^1.0.3"
 
-css-blank-pseudo@^5.0.2:
-  version "5.0.2"
-  resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-5.0.2.tgz#3df5cd950f64de960974da05e76954fd3d7442f9"
-  integrity sha512-aCU4AZ7uEcVSUzagTlA9pHciz7aWPKA/YzrEkpdSopJ2pvhIxiQ5sYeMz1/KByxlIo4XBdvMNJAVKMg/GRnhfw==
+css-blank-pseudo@^6.0.0:
+  version "6.0.1"
+  resolved "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-6.0.1.tgz"
+  integrity sha512-goSnEITByxTzU4Oh5oJZrEWudxTqk7L6IXj1UW69pO6Hv0UdX+Vsrt02FFu5DweRh2bLu6WpX/+zsQCu5O1gKw==
   dependencies:
-    postcss-selector-parser "^6.0.10"
+    postcss-selector-parser "^6.0.13"
 
 css-declaration-sorter@^6.3.1:
   version "6.4.0"
-  resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz#630618adc21724484b3e9505bce812def44000ad"
+  resolved "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz"
   integrity sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==
 
-css-has-pseudo@^5.0.2:
-  version "5.0.2"
-  resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-5.0.2.tgz#8798118c705d858b7aeb9d839a39edd901c1cc83"
-  integrity sha512-q+U+4QdwwB7T9VEW/LyO6CFrLAeLqOykC5mDqJXc7aKZAhDbq7BvGT13VGJe+IwBfdN2o3Xdw2kJ5IxwV1Sc9Q==
+css-declaration-sorter@^7.1.1:
+  version "7.1.1"
+  resolved "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.1.1.tgz"
+  integrity sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==
+
+css-has-pseudo@^6.0.0:
+  version "6.0.1"
+  resolved "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-6.0.1.tgz"
+  integrity sha512-WwoVKqNxApfEI7dWFyaHoeFCcUPD+lPyjL6lNpRUNX7IyIUuVpawOTwwA5D0ZR6V2xQZonNPVj8kEcxzEaAQfQ==
   dependencies:
-    "@csstools/selector-specificity" "^2.0.1"
-    postcss-selector-parser "^6.0.10"
+    "@csstools/selector-specificity" "^3.0.1"
+    postcss-selector-parser "^6.0.13"
     postcss-value-parser "^4.2.0"
 
 css-loader@^5.2.7:
   version "5.2.7"
-  resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-5.2.7.tgz#9b9f111edf6fb2be5dc62525644cbc9c232064ae"
+  resolved "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz"
   integrity sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==
   dependencies:
     icss-utils "^5.1.0"
@@ -3484,14 +3488,14 @@ css-loader@^5.2.7:
     schema-utils "^3.0.0"
     semver "^7.3.5"
 
-css-prefers-color-scheme@^8.0.2:
-  version "8.0.2"
-  resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-8.0.2.tgz#a0671f54eb19ed0d30b952574c0af11ec355fb6d"
-  integrity sha512-OvFghizHJ45x7nsJJUSYLyQNTzsCU8yWjxAc/nhPQg1pbs18LMoET8N3kOweFDPy0JV0OSXN2iqRFhPBHYOeMA==
+css-prefers-color-scheme@^9.0.0:
+  version "9.0.1"
+  resolved "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-9.0.1.tgz"
+  integrity sha512-iFit06ochwCKPRiWagbTa1OAWCvWWVdEnIFd8BaRrgO8YrrNh4RAWUQTFcYX5tdFZgFl1DJ3iiULchZyEbnF4g==
 
 css-select@^4.1.3:
   version "4.3.0"
-  resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b"
+  resolved "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz"
   integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==
   dependencies:
     boolbase "^1.0.0"
@@ -3502,7 +3506,7 @@ css-select@^4.1.3:
 
 css-select@^5.1.0:
   version "5.1.0"
-  resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6"
+  resolved "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz"
   integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==
   dependencies:
     boolbase "^1.0.0"
@@ -3513,15 +3517,15 @@ css-select@^5.1.0:
 
 css-tree@^1.1.2, css-tree@^1.1.3:
   version "1.1.3"
-  resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d"
+  resolved "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz"
   integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==
   dependencies:
     mdn-data "2.0.14"
     source-map "^0.6.1"
 
-css-tree@^2.2.1:
+css-tree@^2.3.1:
   version "2.3.1"
-  resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-2.3.1.tgz#10264ce1e5442e8572fc82fbe490644ff54b5c20"
+  resolved "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz"
   integrity sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==
   dependencies:
     mdn-data "2.0.30"
@@ -3529,7 +3533,7 @@ css-tree@^2.2.1:
 
 css-tree@~2.2.0:
   version "2.2.1"
-  resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-2.2.1.tgz#36115d382d60afd271e377f9c5f67d02bd48c032"
+  resolved "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz"
   integrity sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==
   dependencies:
     mdn-data "2.0.28"
@@ -3537,22 +3541,22 @@ css-tree@~2.2.0:
 
 css-what@^6.0.1, css-what@^6.1.0:
   version "6.1.0"
-  resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4"
+  resolved "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz"
   integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==
 
-cssdb@^7.6.0:
-  version "7.6.0"
-  resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-7.6.0.tgz#beac8f7a5f676db62d3c33da517ef4c9eb008f8b"
-  integrity sha512-Nna7rph8V0jC6+JBY4Vk4ndErUmfJfV6NJCaZdurL0omggabiy+QB2HCQtu5c/ACLZ0I7REv7A4QyPIoYzZx0w==
+cssdb@^7.9.0:
+  version "7.10.0"
+  resolved "https://registry.npmjs.org/cssdb/-/cssdb-7.10.0.tgz"
+  integrity sha512-yGZ5tmA57gWh/uvdQBHs45wwFY0IBh3ypABk5sEubPBPSzXzkNgsWReqx7gdx6uhC+QoFBe+V8JwBB9/hQ6cIA==
 
 cssesc@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
+  resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz"
   integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
 
 cssnano-preset-default@^5.2.14:
   version "5.2.14"
-  resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz#309def4f7b7e16d71ab2438052093330d9ab45d8"
+  resolved "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz"
   integrity sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==
   dependencies:
     css-declaration-sorter "^6.3.1"
@@ -3585,112 +3589,112 @@ cssnano-preset-default@^5.2.14:
     postcss-svgo "^5.1.0"
     postcss-unique-selectors "^5.1.1"
 
-cssnano-preset-default@^6.0.1:
-  version "6.0.1"
-  resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-6.0.1.tgz#2a93247140d214ddb9f46bc6a3562fa9177fe301"
-  integrity sha512-7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ==
-  dependencies:
-    css-declaration-sorter "^6.3.1"
-    cssnano-utils "^4.0.0"
-    postcss-calc "^9.0.0"
-    postcss-colormin "^6.0.0"
-    postcss-convert-values "^6.0.0"
-    postcss-discard-comments "^6.0.0"
-    postcss-discard-duplicates "^6.0.0"
-    postcss-discard-empty "^6.0.0"
-    postcss-discard-overridden "^6.0.0"
-    postcss-merge-longhand "^6.0.0"
-    postcss-merge-rules "^6.0.1"
-    postcss-minify-font-values "^6.0.0"
-    postcss-minify-gradients "^6.0.0"
-    postcss-minify-params "^6.0.0"
-    postcss-minify-selectors "^6.0.0"
-    postcss-normalize-charset "^6.0.0"
-    postcss-normalize-display-values "^6.0.0"
-    postcss-normalize-positions "^6.0.0"
-    postcss-normalize-repeat-style "^6.0.0"
-    postcss-normalize-string "^6.0.0"
-    postcss-normalize-timing-functions "^6.0.0"
-    postcss-normalize-unicode "^6.0.0"
-    postcss-normalize-url "^6.0.0"
-    postcss-normalize-whitespace "^6.0.0"
-    postcss-ordered-values "^6.0.0"
-    postcss-reduce-initial "^6.0.0"
-    postcss-reduce-transforms "^6.0.0"
-    postcss-svgo "^6.0.0"
-    postcss-unique-selectors "^6.0.0"
+cssnano-preset-default@^6.0.3:
+  version "6.0.3"
+  resolved "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.3.tgz"
+  integrity sha512-4y3H370aZCkT9Ev8P4SO4bZbt+AExeKhh8wTbms/X7OLDo5E7AYUUy6YPxa/uF5Grf+AJwNcCnxKhZynJ6luBA==
+  dependencies:
+    css-declaration-sorter "^7.1.1"
+    cssnano-utils "^4.0.1"
+    postcss-calc "^9.0.1"
+    postcss-colormin "^6.0.2"
+    postcss-convert-values "^6.0.2"
+    postcss-discard-comments "^6.0.1"
+    postcss-discard-duplicates "^6.0.1"
+    postcss-discard-empty "^6.0.1"
+    postcss-discard-overridden "^6.0.1"
+    postcss-merge-longhand "^6.0.2"
+    postcss-merge-rules "^6.0.3"
+    postcss-minify-font-values "^6.0.1"
+    postcss-minify-gradients "^6.0.1"
+    postcss-minify-params "^6.0.2"
+    postcss-minify-selectors "^6.0.2"
+    postcss-normalize-charset "^6.0.1"
+    postcss-normalize-display-values "^6.0.1"
+    postcss-normalize-positions "^6.0.1"
+    postcss-normalize-repeat-style "^6.0.1"
+    postcss-normalize-string "^6.0.1"
+    postcss-normalize-timing-functions "^6.0.1"
+    postcss-normalize-unicode "^6.0.2"
+    postcss-normalize-url "^6.0.1"
+    postcss-normalize-whitespace "^6.0.1"
+    postcss-ordered-values "^6.0.1"
+    postcss-reduce-initial "^6.0.2"
+    postcss-reduce-transforms "^6.0.1"
+    postcss-svgo "^6.0.2"
+    postcss-unique-selectors "^6.0.2"
 
 cssnano-utils@^3.1.0:
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-3.1.0.tgz#95684d08c91511edfc70d2636338ca37ef3a6861"
+  resolved "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz"
   integrity sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==
 
-cssnano-utils@^4.0.0:
-  version "4.0.0"
-  resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-4.0.0.tgz#d1da885ec04003ab19505ff0e62e029708d36b08"
-  integrity sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==
+cssnano-utils@^4.0.1:
+  version "4.0.1"
+  resolved "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.1.tgz"
+  integrity sha512-6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ==
 
 cssnano@^5.0.2:
   version "5.1.15"
-  resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.1.15.tgz#ded66b5480d5127fcb44dac12ea5a983755136bf"
+  resolved "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz"
   integrity sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==
   dependencies:
     cssnano-preset-default "^5.2.14"
     lilconfig "^2.0.3"
     yaml "^1.10.2"
 
-cssnano@^6.0.1:
-  version "6.0.1"
-  resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-6.0.1.tgz#87c38c4cd47049c735ab756d7e77ac3ca855c008"
-  integrity sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg==
+cssnano@^6.0.3:
+  version "6.0.3"
+  resolved "https://registry.npmjs.org/cssnano/-/cssnano-6.0.3.tgz"
+  integrity sha512-MRq4CIj8pnyZpcI2qs6wswoYoDD1t0aL28n+41c1Ukcpm56m1h6mCexIHBGjfZfnTqtGSSCP4/fB1ovxgjBOiw==
   dependencies:
-    cssnano-preset-default "^6.0.1"
-    lilconfig "^2.1.0"
+    cssnano-preset-default "^6.0.3"
+    lilconfig "^3.0.0"
 
 csso@^4.2.0:
   version "4.2.0"
-  resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529"
+  resolved "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz"
   integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==
   dependencies:
     css-tree "^1.1.2"
 
 csso@^5.0.5:
   version "5.0.5"
-  resolved "https://registry.yarnpkg.com/csso/-/csso-5.0.5.tgz#f9b7fe6cc6ac0b7d90781bb16d5e9874303e2ca6"
+  resolved "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz"
   integrity sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==
   dependencies:
     css-tree "~2.2.0"
 
 csstype@^3.1.0:
   version "3.1.2"
-  resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b"
+  resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz"
   integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==
 
 cuint@^0.2.2:
   version "0.2.2"
-  resolved "https://registry.yarnpkg.com/cuint/-/cuint-0.2.2.tgz#408086d409550c2631155619e9fa7bcadc3b991b"
+  resolved "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz"
   integrity sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==
 
 cyclist@^1.0.1:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.2.tgz#673b5f233bf34d8e602b949429f8171d9121bea3"
+  resolved "https://registry.npmjs.org/cyclist/-/cyclist-1.0.2.tgz"
   integrity sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA==
 
 "d3-array@2 - 3", "d3-array@2.10.0 - 3", "d3-array@2.5.0 - 3", d3-array@3, d3-array@^3.2.0:
   version "3.2.4"
-  resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-3.2.4.tgz#15fec33b237f97ac5d7c986dc77da273a8ed0bb5"
+  resolved "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz"
   integrity sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==
   dependencies:
     internmap "1 - 2"
 
 d3-axis@3:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/d3-axis/-/d3-axis-3.0.0.tgz#c42a4a13e8131d637b745fc2973824cfeaf93322"
+  resolved "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz"
   integrity sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==
 
 d3-brush@3:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/d3-brush/-/d3-brush-3.0.0.tgz#6f767c4ed8dcb79de7ede3e1c0f89e63ef64d31c"
+  resolved "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz"
   integrity sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==
   dependencies:
     d3-dispatch "1 - 3"
@@ -3701,38 +3705,38 @@ d3-brush@3:
 
 d3-chord@3:
   version "3.0.1"
-  resolved "https://registry.yarnpkg.com/d3-chord/-/d3-chord-3.0.1.tgz#d156d61f485fce8327e6abf339cb41d8cbba6966"
+  resolved "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz"
   integrity sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==
   dependencies:
     d3-path "1 - 3"
 
 "d3-color@1 - 3", d3-color@3:
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-3.1.0.tgz#395b2833dfac71507f12ac2f7af23bf819de24e2"
+  resolved "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz"
   integrity sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==
 
 d3-contour@4:
   version "4.0.2"
-  resolved "https://registry.yarnpkg.com/d3-contour/-/d3-contour-4.0.2.tgz#bb92063bc8c5663acb2422f99c73cbb6c6ae3bcc"
+  resolved "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz"
   integrity sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==
   dependencies:
     d3-array "^3.2.0"
 
 d3-delaunay@6:
   version "6.0.4"
-  resolved "https://registry.yarnpkg.com/d3-delaunay/-/d3-delaunay-6.0.4.tgz#98169038733a0a5babbeda55054f795bb9e4a58b"
+  resolved "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.4.tgz"
   integrity sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==
   dependencies:
     delaunator "5"
 
 "d3-dispatch@1 - 3", d3-dispatch@3:
   version "3.0.1"
-  resolved "https://registry.yarnpkg.com/d3-dispatch/-/d3-dispatch-3.0.1.tgz#5fc75284e9c2375c36c839411a0cf550cbfc4d5e"
+  resolved "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz"
   integrity sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==
 
 "d3-drag@2 - 3", d3-drag@3:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/d3-drag/-/d3-drag-3.0.0.tgz#994aae9cd23c719f53b5e10e3a0a6108c69607ba"
+  resolved "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz"
   integrity sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==
   dependencies:
     d3-dispatch "1 - 3"
@@ -3740,7 +3744,7 @@ d3-delaunay@6:
 
 "d3-dsv@1 - 3", d3-dsv@3:
   version "3.0.1"
-  resolved "https://registry.yarnpkg.com/d3-dsv/-/d3-dsv-3.0.1.tgz#c63af978f4d6a0d084a52a673922be2160789b73"
+  resolved "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz"
   integrity sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==
   dependencies:
     commander "7"
@@ -3749,19 +3753,19 @@ d3-delaunay@6:
 
 "d3-ease@1 - 3", d3-ease@3:
   version "3.0.1"
-  resolved "https://registry.yarnpkg.com/d3-ease/-/d3-ease-3.0.1.tgz#9658ac38a2140d59d346160f1f6c30fda0bd12f4"
+  resolved "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz"
   integrity sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==
 
 d3-fetch@3:
   version "3.0.1"
-  resolved "https://registry.yarnpkg.com/d3-fetch/-/d3-fetch-3.0.1.tgz#83141bff9856a0edb5e38de89cdcfe63d0a60a22"
+  resolved "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz"
   integrity sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==
   dependencies:
     d3-dsv "1 - 3"
 
 d3-force@3:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/d3-force/-/d3-force-3.0.0.tgz#3e2ba1a61e70888fe3d9194e30d6d14eece155c4"
+  resolved "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz"
   integrity sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==
   dependencies:
     d3-dispatch "1 - 3"
@@ -3770,51 +3774,51 @@ d3-force@3:
 
 "d3-format@1 - 3", d3-format@3:
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-3.1.0.tgz#9260e23a28ea5cb109e93b21a06e24e2ebd55641"
+  resolved "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz"
   integrity sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==
 
 d3-geo@3:
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/d3-geo/-/d3-geo-3.1.0.tgz#74fd54e1f4cebd5185ac2039217a98d39b0a4c0e"
+  resolved "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.0.tgz"
   integrity sha512-JEo5HxXDdDYXCaWdwLRt79y7giK8SbhZJbFWXqbRTolCHFI5jRqteLzCsq51NKbUoX0PjBVSohxrx+NoOUujYA==
   dependencies:
     d3-array "2.5.0 - 3"
 
 d3-hierarchy@3:
   version "3.1.2"
-  resolved "https://registry.yarnpkg.com/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz#b01cd42c1eed3d46db77a5966cf726f8c09160c6"
+  resolved "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz"
   integrity sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==
 
 "d3-interpolate@1 - 3", "d3-interpolate@1.2.0 - 3", d3-interpolate@3:
   version "3.0.1"
-  resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-3.0.1.tgz#3c47aa5b32c5b3dfb56ef3fd4342078a632b400d"
+  resolved "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz"
   integrity sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==
   dependencies:
     d3-color "1 - 3"
 
 "d3-path@1 - 3", d3-path@3, d3-path@^3.1.0:
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-3.1.0.tgz#22df939032fb5a71ae8b1800d61ddb7851c42526"
+  resolved "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz"
   integrity sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==
 
 d3-polygon@3:
   version "3.0.1"
-  resolved "https://registry.yarnpkg.com/d3-polygon/-/d3-polygon-3.0.1.tgz#0b45d3dd1c48a29c8e057e6135693ec80bf16398"
+  resolved "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz"
   integrity sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==
 
 "d3-quadtree@1 - 3", d3-quadtree@3:
   version "3.0.1"
-  resolved "https://registry.yarnpkg.com/d3-quadtree/-/d3-quadtree-3.0.1.tgz#6dca3e8be2b393c9a9d514dabbd80a92deef1a4f"
+  resolved "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz"
   integrity sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==
 
 d3-random@3:
   version "3.0.1"
-  resolved "https://registry.yarnpkg.com/d3-random/-/d3-random-3.0.1.tgz#d4926378d333d9c0bfd1e6fa0194d30aebaa20f4"
+  resolved "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz"
   integrity sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==
 
 d3-scale-chromatic@3:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz#15b4ceb8ca2bb0dcb6d1a641ee03d59c3b62376a"
+  resolved "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz"
   integrity sha512-Lx9thtxAKrO2Pq6OO2Ua474opeziKr279P/TKZsMAhYyNDD3EnCffdbgeSYN5O7m2ByQsxtuP2CSDczNUIZ22g==
   dependencies:
     d3-color "1 - 3"
@@ -3822,7 +3826,7 @@ d3-scale-chromatic@3:
 
 d3-scale@4:
   version "4.0.2"
-  resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-4.0.2.tgz#82b38e8e8ff7080764f8dcec77bd4be393689396"
+  resolved "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz"
   integrity sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==
   dependencies:
     d3-array "2.10.0 - 3"
@@ -3833,38 +3837,38 @@ d3-scale@4:
 
 "d3-selection@2 - 3", d3-selection@3:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/d3-selection/-/d3-selection-3.0.0.tgz#c25338207efa72cc5b9bd1458a1a41901f1e1b31"
+  resolved "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz"
   integrity sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==
 
 d3-shape@3:
   version "3.2.0"
-  resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-3.2.0.tgz#a1a839cbd9ba45f28674c69d7f855bcf91dfc6a5"
+  resolved "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz"
   integrity sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==
   dependencies:
     d3-path "^3.1.0"
 
 "d3-time-format@2 - 4", d3-time-format@4:
   version "4.1.0"
-  resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-4.1.0.tgz#7ab5257a5041d11ecb4fe70a5c7d16a195bb408a"
+  resolved "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz"
   integrity sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==
   dependencies:
     d3-time "1 - 3"
 
 "d3-time@1 - 3", "d3-time@2.1.1 - 3", d3-time@3:
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-3.1.0.tgz#9310db56e992e3c0175e1ef385e545e48a9bb5c7"
+  resolved "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz"
   integrity sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==
   dependencies:
     d3-array "2 - 3"
 
 "d3-timer@1 - 3", d3-timer@3:
   version "3.0.1"
-  resolved "https://registry.yarnpkg.com/d3-timer/-/d3-timer-3.0.1.tgz#6284d2a2708285b1abb7e201eda4380af35e63b0"
+  resolved "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz"
   integrity sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==
 
 "d3-transition@2 - 3", d3-transition@3:
   version "3.0.1"
-  resolved "https://registry.yarnpkg.com/d3-transition/-/d3-transition-3.0.1.tgz#6869fdde1448868077fdd5989200cb61b2a1645f"
+  resolved "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz"
   integrity sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==
   dependencies:
     d3-color "1 - 3"
@@ -3875,7 +3879,7 @@ d3-shape@3:
 
 d3-zoom@3:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/d3-zoom/-/d3-zoom-3.0.0.tgz#d13f4165c73217ffeaa54295cd6969b3e7aee8f3"
+  resolved "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz"
   integrity sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==
   dependencies:
     d3-dispatch "1 - 3"
@@ -3886,7 +3890,7 @@ d3-zoom@3:
 
 d3@^7.1.1:
   version "7.8.5"
-  resolved "https://registry.yarnpkg.com/d3/-/d3-7.8.5.tgz#fde4b760d4486cdb6f0cc8e2cbff318af844635c"
+  resolved "https://registry.npmjs.org/d3/-/d3-7.8.5.tgz"
   integrity sha512-JgoahDG51ncUfJu6wX/1vWQEqOflgXyl4MaHqlcSruTez7yhaRKR9i8VjjcQGeS2en/jnFivXuaIMnseMMt0XA==
   dependencies:
     d3-array "3"
@@ -3922,12 +3926,17 @@ d3@^7.1.1:
 
 de-indent@^1.0.2:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d"
+  resolved "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz"
   integrity sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==
 
+debounce@^1.2.1:
+  version "1.2.1"
+  resolved "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz"
+  integrity sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==
+
 debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.9:
   version "2.6.9"
-  resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
+  resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
   integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
   dependencies:
     ms "2.0.0"
@@ -3939,23 +3948,16 @@ debug@^3.2.7:
   dependencies:
     ms "^2.1.1"
 
-debug@^4.0.0, debug@^4.2.0, debug@^4.3.1:
-  version "4.3.1"
-  resolved "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz"
-  integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
-  dependencies:
-    ms "2.1.2"
-
-debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
+debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.2.0, debug@^4.3.1:
   version "4.3.4"
-  resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
+  resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz"
   integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
   dependencies:
     ms "2.1.2"
 
 decache@^4.6.0:
   version "4.6.2"
-  resolved "https://registry.yarnpkg.com/decache/-/decache-4.6.2.tgz#c1df1325a2f36d53922e08f33380f083148199cd"
+  resolved "https://registry.npmjs.org/decache/-/decache-4.6.2.tgz"
   integrity sha512-2LPqkLeu8XWHU8qNCS3kcF6sCcb5zIzvWaAHYSvPfwhdd7mHuah29NssMzrTYyHN4F5oFy2ko9OBYxegtU0FEw==
   dependencies:
     callsite "^1.0.0"
@@ -3963,7 +3965,7 @@ decache@^4.6.0:
 decamelize-keys@^1.1.0:
   version "1.1.0"
   resolved "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz"
-  integrity sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=
+  integrity "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk= sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg=="
   dependencies:
     decamelize "^1.1.0"
     map-obj "^1.0.0"
@@ -3971,31 +3973,31 @@ decamelize-keys@^1.1.0:
 decamelize@^1.1.0, decamelize@^1.2.0:
   version "1.2.0"
   resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"
-  integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
+  integrity "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA=="
 
 decode-uri-component@^0.2.0:
   version "0.2.2"
-  resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9"
+  resolved "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz"
   integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==
 
 dedent@^0.7.0:
   version "0.7.0"
   resolved "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz"
-  integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=
+  integrity "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA=="
 
 deep-is@^0.1.3:
   version "0.1.4"
-  resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
+  resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz"
   integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
 
 deepmerge@^4.2.2:
   version "4.3.1"
-  resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a"
+  resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz"
   integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==
 
 define-properties@^1.1.2, define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0:
   version "1.2.0"
-  resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5"
+  resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz"
   integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==
   dependencies:
     has-property-descriptors "^1.0.0"
@@ -4003,84 +4005,89 @@ define-properties@^1.1.2, define-properties@^1.1.3, define-properties@^1.1.4, de
 
 define-property@^0.2.5:
   version "0.2.5"
-  resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
+  resolved "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz"
   integrity sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==
   dependencies:
     is-descriptor "^0.1.0"
 
 define-property@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
+  resolved "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz"
   integrity sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==
   dependencies:
     is-descriptor "^1.0.0"
 
 define-property@^2.0.2:
   version "2.0.2"
-  resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
+  resolved "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz"
   integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==
   dependencies:
     is-descriptor "^1.0.2"
     isobject "^3.0.1"
 
+defu@^3.2.2:
+  version "3.2.2"
+  resolved "https://registry.yarnpkg.com/defu/-/defu-3.2.2.tgz#be20f4cc49b9805d54ee6b610658d53894942e97"
+  integrity sha512-8UWj5lNv7HD+kB0e9w77Z7TdQlbUYDVWqITLHNqFIn6khrNHv5WQo38Dcm1f6HeNyZf0U7UbPf6WeZDSdCzGDQ==
+
 defu@^5.0.0:
   version "5.0.1"
-  resolved "https://registry.yarnpkg.com/defu/-/defu-5.0.1.tgz#a034278f9b032bf0845d261aa75e9ad98da878ac"
+  resolved "https://registry.npmjs.org/defu/-/defu-5.0.1.tgz"
   integrity sha512-EPS1carKg+dkEVy3qNTqIdp2qV7mUP08nIsupfwQpz++slCVRw7qbQyWvSTig+kFPwz2XXp5/kIIkH+CwrJKkQ==
 
 defu@^6.0.0, defu@^6.1.2:
   version "6.1.2"
-  resolved "https://registry.yarnpkg.com/defu/-/defu-6.1.2.tgz#1217cba167410a1765ba93893c6dbac9ed9d9e5c"
+  resolved "https://registry.npmjs.org/defu/-/defu-6.1.2.tgz"
   integrity sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==
 
+defu@^6.1.3, defu@^6.1.4:
+  version "6.1.4"
+  resolved "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz"
+  integrity sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==
+
 delaunator@5:
   version "5.0.0"
-  resolved "https://registry.yarnpkg.com/delaunator/-/delaunator-5.0.0.tgz#60f052b28bd91c9b4566850ebf7756efe821d81b"
+  resolved "https://registry.npmjs.org/delaunator/-/delaunator-5.0.0.tgz"
   integrity sha512-AyLvtyJdbv/U1GkiS6gUUzclRoAY4Gs75qkMygJJhU75LW4DNuSF2RMzpxs9jw9Oz1BobHjTdkG3zdP55VxAqw==
   dependencies:
     robust-predicates "^3.0.0"
 
 depd@2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df"
+  resolved "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz"
   integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==
 
 des.js@^1.0.0:
   version "1.1.0"
-  resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.1.0.tgz#1d37f5766f3bbff4ee9638e871a8768c173b81da"
+  resolved "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz"
   integrity sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==
   dependencies:
     inherits "^2.0.1"
     minimalistic-assert "^1.0.0"
 
-destr@^1.2.2:
-  version "1.2.2"
-  resolved "https://registry.yarnpkg.com/destr/-/destr-1.2.2.tgz#7ba9befcafb645a50e76b260449c63927b51e22f"
-  integrity sha512-lrbCJwD9saUQrqUfXvl6qoM+QN3W7tLV5pAOs+OqOmopCCz/JkE05MHedJR1xfk4IAnZuJXPVuN5+7jNA2ZCiA==
-
-destr@^2.0.0:
-  version "2.0.0"
-  resolved "https://registry.yarnpkg.com/destr/-/destr-2.0.0.tgz#60847d02b211de6e252fc72806f4ec39ec257e7b"
-  integrity sha512-FJ9RDpf3GicEBvzI3jxc2XhHzbqD8p4ANw/1kPsFBfTvP1b7Gn/Lg1vO7R9J4IVgoMbyUmFrFGZafJ1hPZpvlg==
+destr@^2.0.0, destr@^2.0.2:
+  version "2.0.2"
+  resolved "https://registry.npmjs.org/destr/-/destr-2.0.2.tgz"
+  integrity sha512-65AlobnZMiCET00KaFFjUefxDX0khFA/E4myqZ7a6Sq1yZtR8+FVIvilVX66vF2uobSumxooYZChiRPCKNqhmg==
 
 destroy@1.2.0, destroy@^1.0.4:
   version "1.2.0"
-  resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015"
+  resolved "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz"
   integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==
 
 detect-indent@^5.0.0:
   version "5.0.0"
-  resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d"
+  resolved "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz"
   integrity sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==
 
 devalue@^2.0.1:
   version "2.0.1"
-  resolved "https://registry.yarnpkg.com/devalue/-/devalue-2.0.1.tgz#5d368f9adc0928e47b77eea53ca60d2f346f9762"
+  resolved "https://registry.npmjs.org/devalue/-/devalue-2.0.1.tgz"
   integrity sha512-I2TiqT5iWBEyB8GRfTDP0hiLZ0YeDJZ+upDxjBfOC2lebO5LezQMv7QvIUTzdb64jQyAKLf1AHADtGN+jw6v8Q==
 
 diffie-hellman@^5.0.0:
   version "5.0.3"
-  resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875"
+  resolved "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz"
   integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==
   dependencies:
     bn.js "^4.1.0"
@@ -4089,7 +4096,7 @@ diffie-hellman@^5.0.0:
 
 dir-glob@^3.0.1:
   version "3.0.1"
-  resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
+  resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz"
   integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
   dependencies:
     path-type "^4.0.0"
@@ -4103,21 +4110,21 @@ doctrine@^2.1.0:
 
 doctrine@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
+  resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz"
   integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
   dependencies:
     esutils "^2.0.2"
 
 dom-converter@^0.2.0:
   version "0.2.0"
-  resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768"
+  resolved "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz"
   integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==
   dependencies:
     utila "~0.4"
 
 dom-serializer@0:
   version "0.2.2"
-  resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51"
+  resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz"
   integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==
   dependencies:
     domelementtype "^2.0.1"
@@ -4125,7 +4132,7 @@ dom-serializer@0:
 
 dom-serializer@^1.0.1:
   version "1.4.1"
-  resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30"
+  resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz"
   integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==
   dependencies:
     domelementtype "^2.0.1"
@@ -4134,7 +4141,7 @@ dom-serializer@^1.0.1:
 
 dom-serializer@^2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53"
+  resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz"
   integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==
   dependencies:
     domelementtype "^2.3.0"
@@ -4143,7 +4150,7 @@ dom-serializer@^2.0.0:
 
 domain-browser@^1.1.1:
   version "1.2.0"
-  resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
+  resolved "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz"
   integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==
 
 domelementtype@1, domelementtype@^1.3.1:
@@ -4153,7 +4160,7 @@ domelementtype@1, domelementtype@^1.3.1:
 
 domelementtype@^2.0.1, domelementtype@^2.2.0, domelementtype@^2.3.0:
   version "2.3.0"
-  resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d"
+  resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz"
   integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==
 
 domhandler@^2.3.0:
@@ -4165,18 +4172,23 @@ domhandler@^2.3.0:
 
 domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1:
   version "4.3.1"
-  resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c"
+  resolved "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz"
   integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==
   dependencies:
     domelementtype "^2.2.0"
 
 domhandler@^5.0.2, domhandler@^5.0.3:
   version "5.0.3"
-  resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31"
+  resolved "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz"
   integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==
   dependencies:
     domelementtype "^2.3.0"
 
+dompurify@^2.4.7:
+  version "2.4.7"
+  resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-2.4.7.tgz#277adeb40a2c84be2d42a8bcd45f582bfa4d0cfc"
+  integrity sha512-kxxKlPEDa6Nc5WJi+qRgPbOAbgTpSULL+vI3NUXsZMlkJxTqYI9wg5ZTay2sFrdZRWHPWNi+EdAhcJf81WtoMQ==
+
 domutils@^1.5.1:
   version "1.7.0"
   resolved "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz"
@@ -4187,7 +4199,7 @@ domutils@^1.5.1:
 
 domutils@^2.5.2, domutils@^2.8.0:
   version "2.8.0"
-  resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135"
+  resolved "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz"
   integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==
   dependencies:
     dom-serializer "^1.0.1"
@@ -4196,7 +4208,7 @@ domutils@^2.5.2, domutils@^2.8.0:
 
 domutils@^3.0.1:
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e"
+  resolved "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz"
   integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==
   dependencies:
     dom-serializer "^2.0.0"
@@ -4205,35 +4217,35 @@ domutils@^3.0.1:
 
 dot-case@^3.0.4:
   version "3.0.4"
-  resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751"
+  resolved "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz"
   integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==
   dependencies:
     no-case "^3.0.4"
     tslib "^2.0.3"
 
-dotenv@^16.1.4:
+dotenv@^16.3.1:
   version "16.3.1"
-  resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.3.1.tgz#369034de7d7e5b120972693352a3bf112172cc3e"
+  resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz"
   integrity sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==
 
-dotenv@^8.1.0:
+dotenv@^8.2.0:
   version "8.6.0"
   resolved "https://registry.npmjs.org/dotenv/-/dotenv-8.6.0.tgz"
   integrity sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==
 
 dotenv@^9.0.2:
   version "9.0.2"
-  resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-9.0.2.tgz#dacc20160935a37dea6364aa1bef819fb9b6ab05"
+  resolved "https://registry.npmjs.org/dotenv/-/dotenv-9.0.2.tgz"
   integrity sha512-I9OvvrHp4pIARv4+x9iuewrWycX6CcZtoAu1XrzPxc5UygMJXJZYmBsynku8IkrJwgypE5DGNjDPmPRhDCptUg==
 
 duplexer@^0.1.2:
   version "0.1.2"
-  resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6"
+  resolved "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz"
   integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==
 
 duplexify@^3.4.2, duplexify@^3.6.0:
   version "3.7.1"
-  resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309"
+  resolved "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz"
   integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==
   dependencies:
     end-of-stream "^1.0.0"
@@ -4243,17 +4255,17 @@ duplexify@^3.4.2, duplexify@^3.6.0:
 
 ee-first@1.1.1:
   version "1.1.1"
-  resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
+  resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz"
   integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==
 
-electron-to-chromium@^1.4.431:
-  version "1.4.435"
-  resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.435.tgz#761c34300603b9f1234f0b6155870d3002435db6"
-  integrity sha512-B0CBWVFhvoQCW/XtjRzgrmqcgVWg6RXOEM/dK59+wFV93BFGR6AeNKc4OyhM+T3IhJaOOG8o/V+33Y2mwJWtzw==
+electron-to-chromium@^1.4.601:
+  version "1.4.630"
+  resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.630.tgz"
+  integrity sha512-osHqhtjojpCsACVnuD11xO5g9xaCyw7Qqn/C2KParkMv42i8jrJJgx3g7mkHfpxwhy9MnOJr8+pKOdZ7qzgizg==
 
 elliptic@^6.5.3:
   version "6.5.4"
-  resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb"
+  resolved "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz"
   integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==
   dependencies:
     bn.js "^4.11.9"
@@ -4266,29 +4278,29 @@ elliptic@^6.5.3:
 
 emoji-regex@^8.0.0:
   version "8.0.0"
-  resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
+  resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"
   integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
 
 emojis-list@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
+  resolved "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz"
   integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==
 
 encodeurl@~1.0.2:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
+  resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz"
   integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==
 
 end-of-stream@^1.0.0, end-of-stream@^1.1.0:
   version "1.4.4"
-  resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
+  resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz"
   integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
   dependencies:
     once "^1.4.0"
 
 enhanced-resolve@^4.1.1, enhanced-resolve@^4.5.0:
   version "4.5.0"
-  resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz#2f3cfd84dbe3b487f18f2db2ef1e064a571ca5ec"
+  resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz"
   integrity sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==
   dependencies:
     graceful-fs "^4.1.2"
@@ -4302,67 +4314,45 @@ enquirer@^2.3.5, enquirer@^2.3.6:
   dependencies:
     ansi-colors "^4.1.1"
 
-entities@^1.1.1:
+entities@^1.1.1, entities@~1.1.1:
   version "1.1.2"
-  resolved "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz"
+  resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56"
   integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==
 
 entities@^2.0.0:
   version "2.2.0"
-  resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55"
+  resolved "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz"
   integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==
 
 entities@^4.2.0:
   version "4.5.0"
-  resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
+  resolved "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz"
   integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
 
 errno@^0.1.3, errno@~0.1.7:
   version "0.1.8"
-  resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f"
+  resolved "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz"
   integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==
   dependencies:
     prr "~1.0.1"
 
 error-ex@^1.3.1:
   version "1.3.2"
-  resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
+  resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz"
   integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
   dependencies:
     is-arrayish "^0.2.1"
 
-error-stack-parser@^2.0.0:
+error-stack-parser@^2.1.4:
   version "2.1.4"
-  resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.1.4.tgz#229cb01cdbfa84440bfa91876285b94680188286"
+  resolved "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz"
   integrity sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==
   dependencies:
     stackframe "^1.3.4"
 
-es-abstract@^1.18.0-next.1:
-  version "1.18.3"
-  resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.3.tgz"
-  integrity sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw==
-  dependencies:
-    call-bind "^1.0.2"
-    es-to-primitive "^1.2.1"
-    function-bind "^1.1.1"
-    get-intrinsic "^1.1.1"
-    has "^1.0.3"
-    has-symbols "^1.0.2"
-    is-callable "^1.2.3"
-    is-negative-zero "^2.0.1"
-    is-regex "^1.1.3"
-    is-string "^1.0.6"
-    object-inspect "^1.10.3"
-    object-keys "^1.1.1"
-    object.assign "^4.1.2"
-    string.prototype.trimend "^1.0.4"
-    string.prototype.trimstart "^1.0.4"
-    unbox-primitive "^1.0.1"
-
-es-abstract@^1.18.0-next.2, es-abstract@^1.18.2, es-abstract@^1.19.0, es-abstract@^1.20.4, es-abstract@^1.21.2:
+es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2, es-abstract@^1.18.2, es-abstract@^1.19.0, es-abstract@^1.20.4, es-abstract@^1.21.2:
   version "1.21.2"
-  resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.21.2.tgz#a56b9695322c8a185dc25975aa3b8ec31d0e7eff"
+  resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz"
   integrity sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==
   dependencies:
     array-buffer-byte-length "^1.0.0"
@@ -4402,12 +4392,12 @@ es-abstract@^1.18.0-next.2, es-abstract@^1.18.2, es-abstract@^1.19.0, es-abstrac
 
 es-array-method-boxes-properly@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e"
+  resolved "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz"
   integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==
 
 es-set-tostringtag@^2.0.1:
   version "2.0.1"
-  resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8"
+  resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz"
   integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==
   dependencies:
     get-intrinsic "^1.1.3"
@@ -4416,7 +4406,7 @@ es-set-tostringtag@^2.0.1:
 
 es-to-primitive@^1.2.1:
   version "1.2.1"
-  resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
+  resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz"
   integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
   dependencies:
     is-callable "^1.1.4"
@@ -4425,27 +4415,27 @@ es-to-primitive@^1.2.1:
 
 escalade@^3.1.1:
   version "3.1.1"
-  resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
+  resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz"
   integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
 
 escape-html@~1.0.3:
   version "1.0.3"
-  resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
+  resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz"
   integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==
 
 escape-string-regexp@^1.0.5:
   version "1.0.5"
-  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
+  resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
   integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
 
 escape-string-regexp@^4.0.0:
   version "4.0.0"
-  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
+  resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"
   integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
 
 eslint-config-prettier@^8.3.0:
   version "8.8.0"
-  resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz#bfda738d412adc917fd7b038857110efe98c9348"
+  resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz"
   integrity sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==
 
 eslint-config-standard@^16.0.3:
@@ -4555,19 +4545,9 @@ eslint-plugin-unicorn@^28.0.2:
     safe-regex "^2.1.1"
     semver "^7.3.4"
 
-eslint-plugin-vue@^7.1.0, eslint-plugin-vue@^7.9.0:
-  version "7.12.1"
-  resolved "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.12.1.tgz"
-  integrity sha512-xHf/wCt88qmzqQerjaSteUFGASj7fPreglKD4ijnvoKRkoSJ3/H3kuJE8QFFtc+2wjw6hRDs834HH7vpuTJQzg==
-  dependencies:
-    eslint-utils "^2.1.0"
-    natural-compare "^1.4.0"
-    semver "^7.3.2"
-    vue-eslint-parser "^7.6.0"
-
-eslint-plugin-vue@^7.12.1:
+eslint-plugin-vue@^7.1.0, eslint-plugin-vue@^7.12.1, eslint-plugin-vue@^7.9.0:
   version "7.20.0"
-  resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-7.20.0.tgz#98c21885a6bfdf0713c3a92957a5afeaaeed9253"
+  resolved "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.20.0.tgz"
   integrity sha512-oVNDqzBC9h3GO+NTgWeLMhhGigy6/bQaQbHS+0z7C4YEu/qK/yxHvca/2PTZtGNPsCrHwOTgKMrwu02A9iPBmw==
   dependencies:
     eslint-utils "^2.1.0"
@@ -4575,9 +4555,9 @@ eslint-plugin-vue@^7.12.1:
     semver "^6.3.0"
     vue-eslint-parser "^7.10.0"
 
-eslint-scope@5.1.1, eslint-scope@^5.0.0, eslint-scope@^5.1.1:
+eslint-scope@5.1.1, eslint-scope@^5.1.1:
   version "5.1.1"
-  resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
+  resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz"
   integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
   dependencies:
     esrecurse "^4.3.0"
@@ -4585,7 +4565,7 @@ eslint-scope@5.1.1, eslint-scope@^5.0.0, eslint-scope@^5.1.1:
 
 eslint-scope@^4.0.3:
   version "4.0.3"
-  resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848"
+  resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz"
   integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==
   dependencies:
     esrecurse "^4.1.0"
@@ -4618,17 +4598,17 @@ eslint-utils@^3.0.0:
 
 eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0:
   version "1.3.0"
-  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
+  resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz"
   integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
 
 eslint-visitor-keys@^2.0.0, eslint-visitor-keys@^2.1.0:
   version "2.1.0"
-  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
+  resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz"
   integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
 
 eslint-webpack-plugin@^2.6.0:
   version "2.7.0"
-  resolved "https://registry.yarnpkg.com/eslint-webpack-plugin/-/eslint-webpack-plugin-2.7.0.tgz#0525793a4f8c652c1c6d863995ce1e0f2dcbd143"
+  resolved "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-2.7.0.tgz"
   integrity sha512-bNaVVUvU4srexGhVcayn/F4pJAz19CWBkKoMx7aSQ4wtTbZQCnG5O9LHCE42mM+JSKOUp7n6vd5CIwzj7lOVGA==
   dependencies:
     "@types/eslint" "^7.29.0"
@@ -4640,7 +4620,7 @@ eslint-webpack-plugin@^2.6.0:
 
 eslint@^7.29.0:
   version "7.32.0"
-  resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d"
+  resolved "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz"
   integrity sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==
   dependencies:
     "@babel/code-frame" "7.12.11"
@@ -4686,7 +4666,7 @@ eslint@^7.29.0:
 
 espree@^6.2.1:
   version "6.2.1"
-  resolved "https://registry.yarnpkg.com/espree/-/espree-6.2.1.tgz#77fc72e1fd744a2052c20f38a5b575832e82734a"
+  resolved "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz"
   integrity sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==
   dependencies:
     acorn "^7.1.1"
@@ -4695,7 +4675,7 @@ espree@^6.2.1:
 
 espree@^7.3.0, espree@^7.3.1:
   version "7.3.1"
-  resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6"
+  resolved "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz"
   integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==
   dependencies:
     acorn "^7.4.0"
@@ -4704,48 +4684,41 @@ espree@^7.3.0, espree@^7.3.1:
 
 esprima@^4.0.0:
   version "4.0.1"
-  resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
+  resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz"
   integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
 
-esquery@^1.3.1:
-  version "1.4.0"
-  resolved "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz"
-  integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
-  dependencies:
-    estraverse "^5.1.0"
-
-esquery@^1.4.0:
+esquery@^1.3.1, esquery@^1.4.0:
   version "1.5.0"
-  resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b"
+  resolved "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz"
   integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==
   dependencies:
     estraverse "^5.1.0"
 
 esrecurse@^4.1.0, esrecurse@^4.3.0:
   version "4.3.0"
-  resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
+  resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz"
   integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
   dependencies:
     estraverse "^5.2.0"
 
 estraverse@^4.1.1:
   version "4.3.0"
-  resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
+  resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz"
   integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
 
 estraverse@^5.1.0, estraverse@^5.2.0:
   version "5.3.0"
-  resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
+  resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz"
   integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
 
 esutils@^2.0.2:
   version "2.0.3"
-  resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
+  resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz"
   integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
 
 etag@^1.8.1, etag@~1.8.1:
   version "1.8.1"
-  resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
+  resolved "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz"
   integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==
 
 eventemitter3@^4.0.0:
@@ -4755,17 +4728,17 @@ eventemitter3@^4.0.0:
 
 events@^3.0.0:
   version "3.3.0"
-  resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400"
+  resolved "https://registry.npmjs.org/events/-/events-3.3.0.tgz"
   integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==
 
 eventsource-polyfill@^0.9.6:
   version "0.9.6"
-  resolved "https://registry.yarnpkg.com/eventsource-polyfill/-/eventsource-polyfill-0.9.6.tgz#10e0d187f111b167f28fdab918843ce7d818f13c"
+  resolved "https://registry.npmjs.org/eventsource-polyfill/-/eventsource-polyfill-0.9.6.tgz"
   integrity sha512-LyMFp2oPDGhum2lMvkjqKZEwWd2/AoXyt8aoyftTBMWwPHNgU+2tdxhTHPluDxoz+z4gNj0uHAPR9nqevATMbg==
 
 evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
   version "1.0.3"
-  resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"
+  resolved "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz"
   integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==
   dependencies:
     md5.js "^1.3.4"
@@ -4788,7 +4761,7 @@ execa@^4.1.0:
 
 execa@^5.1.1:
   version "5.1.1"
-  resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd"
+  resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz"
   integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==
   dependencies:
     cross-spawn "^7.0.3"
@@ -4810,12 +4783,12 @@ execall@^2.0.0:
 
 exit@^0.1.2:
   version "0.1.2"
-  resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
+  resolved "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz"
   integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==
 
 expand-brackets@^2.1.4:
   version "2.1.4"
-  resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
+  resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz"
   integrity sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==
   dependencies:
     debug "^2.3.3"
@@ -4828,14 +4801,14 @@ expand-brackets@^2.1.4:
 
 extend-shallow@^2.0.1:
   version "2.0.1"
-  resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
+  resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz"
   integrity sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==
   dependencies:
     is-extendable "^0.1.0"
 
 extend-shallow@^3.0.0, extend-shallow@^3.0.2:
   version "3.0.2"
-  resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
+  resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz"
   integrity sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==
   dependencies:
     assign-symbols "^1.0.0"
@@ -4848,7 +4821,7 @@ extend@^3.0.0:
 
 external-editor@^3.0.3:
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495"
+  resolved "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz"
   integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==
   dependencies:
     chardet "^0.7.0"
@@ -4857,7 +4830,7 @@ external-editor@^3.0.3:
 
 extglob@^2.0.4:
   version "2.0.4"
-  resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
+  resolved "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz"
   integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==
   dependencies:
     array-unique "^0.3.2"
@@ -4869,35 +4842,24 @@ extglob@^2.0.4:
     snapdragon "^0.8.1"
     to-regex "^3.0.1"
 
-extract-css-chunks-webpack-plugin@^4.9.0:
-  version "4.9.0"
-  resolved "https://registry.yarnpkg.com/extract-css-chunks-webpack-plugin/-/extract-css-chunks-webpack-plugin-4.9.0.tgz#da5e6b1d8b39a398c817ffc98550f4ccb6d795e1"
-  integrity sha512-HNuNPCXRMqJDQ1OHAUehoY+0JVCnw9Y/H22FQzYVwo8Ulgew98AGDu0grnY5c7xwiXHjQa6yJ/1dxLCI/xqTyQ==
+extract-css-chunks-webpack-plugin@^4.10.0:
+  version "4.10.0"
+  resolved "https://registry.npmjs.org/extract-css-chunks-webpack-plugin/-/extract-css-chunks-webpack-plugin-4.10.0.tgz"
+  integrity sha512-D/wb/Tbexq8XMBl4uhthto25WBaHI9P8vucDdzwPtLTyVi4Rdw/aiRLSL2rHaF6jZfPAjThWXepFU9PXsdtIbA==
   dependencies:
-    loader-utils "^2.0.0"
+    loader-utils "^2.0.4"
     normalize-url "1.9.1"
     schema-utils "^1.0.0"
     webpack-sources "^1.1.0"
 
 fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
   version "3.1.3"
-  resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
+  resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"
   integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
 
-fast-glob@^3.2.5:
-  version "3.2.6"
-  resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.6.tgz"
-  integrity sha512-GnLuqj/pvQ7pX8/L4J84nijv6sAnlwvSDpMkJi9i7nPmPxGtRPkBSStfvDW5l6nMdX9VWe+pkKWFTgD+vF2QSQ==
-  dependencies:
-    "@nodelib/fs.stat" "^2.0.2"
-    "@nodelib/fs.walk" "^1.2.3"
-    glob-parent "^5.1.2"
-    merge2 "^1.3.0"
-    micromatch "^4.0.4"
-
-fast-glob@^3.2.9:
+fast-glob@^3.2.5, fast-glob@^3.2.9:
   version "3.2.12"
-  resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80"
+  resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz"
   integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==
   dependencies:
     "@nodelib/fs.stat" "^2.0.2"
@@ -4908,12 +4870,12 @@ fast-glob@^3.2.9:
 
 fast-json-stable-stringify@^2.0.0:
   version "2.1.0"
-  resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
+  resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"
   integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
 
 fast-levenshtein@^2.0.6:
   version "2.0.6"
-  resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
+  resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"
   integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
 
 fastest-levenshtein@^1.0.12:
@@ -4923,33 +4885,33 @@ fastest-levenshtein@^1.0.12:
 
 fastq@^1.6.0:
   version "1.15.0"
-  resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a"
+  resolved "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz"
   integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==
   dependencies:
     reusify "^1.0.4"
 
 figgy-pudding@^3.5.1:
   version "3.5.2"
-  resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e"
+  resolved "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz"
   integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==
 
-figures@^3.0.0:
+figures@^3.0.0, figures@^3.2.0:
   version "3.2.0"
-  resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af"
+  resolved "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz"
   integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==
   dependencies:
     escape-string-regexp "^1.0.5"
 
 file-entry-cache@^6.0.1:
   version "6.0.1"
-  resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
+  resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz"
   integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
   dependencies:
     flat-cache "^3.0.4"
 
 file-loader@^6.2.0:
   version "6.2.0"
-  resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz#baef7cf8e1840df325e4390b4484879480eebe4d"
+  resolved "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz"
   integrity sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==
   dependencies:
     loader-utils "^2.0.0"
@@ -4962,7 +4924,7 @@ file-uri-to-path@1.0.0:
 
 fill-range@^4.0.0:
   version "4.0.0"
-  resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
+  resolved "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz"
   integrity sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==
   dependencies:
     extend-shallow "^2.0.1"
@@ -4972,14 +4934,14 @@ fill-range@^4.0.0:
 
 fill-range@^7.0.1:
   version "7.0.1"
-  resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
+  resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz"
   integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
   dependencies:
     to-regex-range "^5.0.1"
 
 finalhandler@1.1.2:
   version "1.1.2"
-  resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d"
+  resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz"
   integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==
   dependencies:
     debug "2.6.9"
@@ -4992,7 +4954,7 @@ finalhandler@1.1.2:
 
 find-cache-dir@^2.0.0, find-cache-dir@^2.1.0:
   version "2.1.0"
-  resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
+  resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz"
   integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
   dependencies:
     commondir "^1.0.1"
@@ -5001,7 +4963,7 @@ find-cache-dir@^2.0.0, find-cache-dir@^2.1.0:
 
 find-cache-dir@^3.0.0, find-cache-dir@^3.3.1:
   version "3.3.2"
-  resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b"
+  resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz"
   integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==
   dependencies:
     commondir "^1.0.1"
@@ -5011,20 +4973,20 @@ find-cache-dir@^3.0.0, find-cache-dir@^3.3.1:
 find-up@^2.0.0, find-up@^2.1.0:
   version "2.1.0"
   resolved "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz"
-  integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
+  integrity "sha1-RdG35QbHF93UgndaK3eSCjwMV6c= sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ=="
   dependencies:
     locate-path "^2.0.0"
 
 find-up@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
+  resolved "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz"
   integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
   dependencies:
     locate-path "^3.0.0"
 
 find-up@^4.0.0, find-up@^4.1.0:
   version "4.1.0"
-  resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
+  resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz"
   integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
   dependencies:
     locate-path "^5.0.0"
@@ -5032,7 +4994,7 @@ find-up@^4.0.0, find-up@^4.1.0:
 
 flat-cache@^3.0.4:
   version "3.0.4"
-  resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
+  resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz"
   integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
   dependencies:
     flatted "^3.1.0"
@@ -5040,17 +5002,17 @@ flat-cache@^3.0.4:
 
 flat@^5.0.2:
   version "5.0.2"
-  resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241"
+  resolved "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz"
   integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==
 
 flatted@^3.1.0:
   version "3.2.7"
-  resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787"
+  resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz"
   integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==
 
 flush-write-stream@^1.0.0:
   version "1.1.1"
-  resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8"
+  resolved "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz"
   integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==
   dependencies:
     inherits "^2.0.3"
@@ -5063,36 +5025,36 @@ follow-redirects@^1.0.0, follow-redirects@^1.10.0:
 
 for-each@^0.3.3:
   version "0.3.3"
-  resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e"
+  resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz"
   integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==
   dependencies:
     is-callable "^1.1.3"
 
 for-in@^1.0.2:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
+  resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz"
   integrity sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==
 
-fraction.js@^4.2.0:
-  version "4.2.0"
-  resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950"
-  integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==
+fraction.js@^4.3.6:
+  version "4.3.7"
+  resolved "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz"
+  integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==
 
 fragment-cache@^0.2.1:
   version "0.2.1"
-  resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
+  resolved "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz"
   integrity sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==
   dependencies:
     map-cache "^0.2.2"
 
 fresh@0.5.2, fresh@^0.5.2:
   version "0.5.2"
-  resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
+  resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz"
   integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==
 
 from2@^2.1.0:
   version "2.3.0"
-  resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af"
+  resolved "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz"
   integrity sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==
   dependencies:
     inherits "^2.0.1"
@@ -5100,7 +5062,7 @@ from2@^2.1.0:
 
 fs-extra@^10.1.0:
   version "10.1.0"
-  resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf"
+  resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz"
   integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==
   dependencies:
     graceful-fs "^4.2.0"
@@ -5109,7 +5071,7 @@ fs-extra@^10.1.0:
 
 fs-extra@^8.1.0:
   version "8.1.0"
-  resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0"
+  resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz"
   integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==
   dependencies:
     graceful-fs "^4.2.0"
@@ -5118,24 +5080,24 @@ fs-extra@^8.1.0:
 
 fs-memo@^1.2.0:
   version "1.2.0"
-  resolved "https://registry.yarnpkg.com/fs-memo/-/fs-memo-1.2.0.tgz#a2ec3be606b902077adbb37ec529c5ec5fb2e037"
+  resolved "https://registry.npmjs.org/fs-memo/-/fs-memo-1.2.0.tgz"
   integrity sha512-YEexkCpL4j03jn5SxaMHqcO6IuWuqm8JFUYhyCep7Ao89JIYmB8xoKhK7zXXJ9cCaNXpyNH5L3QtAmoxjoHW2w==
 
 fs-minipass@^2.0.0:
   version "2.1.0"
-  resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb"
+  resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz"
   integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==
   dependencies:
     minipass "^3.0.0"
 
 fs-monkey@^1.0.4:
   version "1.0.4"
-  resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.4.tgz#ee8c1b53d3fe8bb7e5d2c5c5dfc0168afdd2f747"
+  resolved "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.4.tgz"
   integrity sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==
 
 fs-write-stream-atomic@^1.0.8:
   version "1.0.10"
-  resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9"
+  resolved "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz"
   integrity sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==
   dependencies:
     graceful-fs "^4.1.2"
@@ -5145,7 +5107,7 @@ fs-write-stream-atomic@^1.0.8:
 
 fs.realpath@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
+  resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
   integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
 
 fsevents@^1.2.7:
@@ -5157,18 +5119,18 @@ fsevents@^1.2.7:
     nan "^2.12.1"
 
 fsevents@~2.3.2:
-  version "2.3.2"
-  resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
-  integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
+  version "2.3.3"
+  resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6"
+  integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
 
 function-bind@^1.1.1:
   version "1.1.1"
-  resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
+  resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"
   integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
 
 function.prototype.name@^1.1.5:
   version "1.1.5"
-  resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621"
+  resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz"
   integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==
   dependencies:
     call-bind "^1.0.2"
@@ -5178,22 +5140,22 @@ function.prototype.name@^1.1.5:
 
 functional-red-black-tree@^1.0.1:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
+  resolved "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"
   integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==
 
 functions-have-names@^1.2.2, functions-have-names@^1.2.3:
   version "1.2.3"
-  resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
+  resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz"
   integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
 
 gensync@^1.0.0-beta.2:
   version "1.0.0-beta.2"
-  resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
+  resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz"
   integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
 
 get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0:
   version "1.2.1"
-  resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82"
+  resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz"
   integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==
   dependencies:
     function-bind "^1.1.1"
@@ -5208,7 +5170,7 @@ get-own-enumerable-property-symbols@^3.0.0:
 
 get-port-please@^2.2.0:
   version "2.6.1"
-  resolved "https://registry.yarnpkg.com/get-port-please/-/get-port-please-2.6.1.tgz#80143de24fcaab39b01df977f66ad967e06b17d1"
+  resolved "https://registry.npmjs.org/get-port-please/-/get-port-please-2.6.1.tgz"
   integrity sha512-4PDSrL6+cuMM1xs6w36ZIkaKzzE0xzfVBCfebHIJ3FE8iB9oic/ECwPw3iNiD4h1AoJ5XLLBhEviFAVrZsDC5A==
   dependencies:
     fs-memo "^1.2.0"
@@ -5227,12 +5189,12 @@ get-stream@^5.0.0:
 
 get-stream@^6.0.0:
   version "6.0.1"
-  resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
+  resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz"
   integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
 
 get-symbol-description@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6"
+  resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz"
   integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
   dependencies:
     call-bind "^1.0.2"
@@ -5240,32 +5202,32 @@ get-symbol-description@^1.0.0:
 
 get-value@^2.0.3, get-value@^2.0.6:
   version "2.0.6"
-  resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
+  resolved "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz"
   integrity sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==
 
 git-config-path@^2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/git-config-path/-/git-config-path-2.0.0.tgz#62633d61af63af4405a5024efd325762f58a181b"
+  resolved "https://registry.npmjs.org/git-config-path/-/git-config-path-2.0.0.tgz"
   integrity sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==
 
 git-up@^7.0.0:
   version "7.0.0"
-  resolved "https://registry.yarnpkg.com/git-up/-/git-up-7.0.0.tgz#bace30786e36f56ea341b6f69adfd83286337467"
+  resolved "https://registry.npmjs.org/git-up/-/git-up-7.0.0.tgz"
   integrity sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==
   dependencies:
     is-ssh "^1.4.0"
     parse-url "^8.1.0"
 
-git-url-parse@^13.1.0:
-  version "13.1.0"
-  resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-13.1.0.tgz#07e136b5baa08d59fabdf0e33170de425adf07b4"
-  integrity sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==
+git-url-parse@^13.1.1:
+  version "13.1.1"
+  resolved "https://registry.npmjs.org/git-url-parse/-/git-url-parse-13.1.1.tgz"
+  integrity sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==
   dependencies:
     git-up "^7.0.0"
 
 glob-parent@^3.1.0:
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
+  resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz"
   integrity sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==
   dependencies:
     is-glob "^3.1.0"
@@ -5273,19 +5235,19 @@ glob-parent@^3.1.0:
 
 glob-parent@^5.1.2, glob-parent@~5.1.2:
   version "5.1.2"
-  resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
+  resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"
   integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
   dependencies:
     is-glob "^4.0.1"
 
 glob-to-regexp@^0.4.1:
   version "0.4.1"
-  resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e"
+  resolved "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz"
   integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
 
 glob@^7.1.3, glob@^7.1.4, glob@^7.1.7, glob@^7.2.0:
   version "7.2.3"
-  resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
+  resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz"
   integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
   dependencies:
     fs.realpath "^1.0.0"
@@ -5297,7 +5259,7 @@ glob@^7.1.3, glob@^7.1.4, glob@^7.1.7, glob@^7.2.0:
 
 glob@^8.1.0:
   version "8.1.0"
-  resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e"
+  resolved "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz"
   integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==
   dependencies:
     fs.realpath "^1.0.0"
@@ -5324,26 +5286,26 @@ global-prefix@^3.0.0:
 
 globals@^11.1.0:
   version "11.12.0"
-  resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
+  resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz"
   integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
 
 globals@^13.6.0, globals@^13.9.0:
   version "13.20.0"
-  resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82"
+  resolved "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz"
   integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==
   dependencies:
     type-fest "^0.20.2"
 
 globalthis@^1.0.3:
   version "1.0.3"
-  resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf"
+  resolved "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz"
   integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==
   dependencies:
     define-properties "^1.1.3"
 
 globby@^11.0.3, globby@^11.0.4, globby@^11.1.0:
   version "11.1.0"
-  resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b"
+  resolved "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz"
   integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==
   dependencies:
     array-union "^2.1.0"
@@ -5356,7 +5318,7 @@ globby@^11.0.3, globby@^11.0.4, globby@^11.1.0:
 globjoin@^0.1.4:
   version "0.1.4"
   resolved "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz"
-  integrity sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM=
+  integrity "sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM= sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg=="
 
 gonzales-pe@^4.3.0:
   version "4.3.0"
@@ -5367,28 +5329,23 @@ gonzales-pe@^4.3.0:
 
 gopd@^1.0.1:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c"
+  resolved "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz"
   integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==
   dependencies:
     get-intrinsic "^1.1.3"
 
 graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4:
   version "4.2.11"
-  resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
+  resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz"
   integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
 
 gzip-size@^6.0.0:
   version "6.0.0"
-  resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-6.0.0.tgz#065367fd50c239c0671cbcbad5be3e2eeb10e462"
+  resolved "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz"
   integrity sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==
   dependencies:
     duplexer "^0.1.2"
 
-hable@^3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/hable/-/hable-3.0.0.tgz#6de089b2df946635cf8134b9e4859f1b62de255f"
-  integrity sha512-7+G0/2/COR8pwteYFqHIVYfQpuEiO2HXwJrhCBJVgrNrl9O5eaUoJVDGXUJX+0RpGncNVTuestexjk1afj01wQ==
-
 hard-rejection@^2.1.0:
   version "2.1.0"
   resolved "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz"
@@ -5396,7 +5353,7 @@ hard-rejection@^2.1.0:
 
 hard-source-webpack-plugin@^0.13.1:
   version "0.13.1"
-  resolved "https://registry.yarnpkg.com/hard-source-webpack-plugin/-/hard-source-webpack-plugin-0.13.1.tgz#a99071e25b232f1438a5bc3c99f10a3869e4428e"
+  resolved "https://registry.npmjs.org/hard-source-webpack-plugin/-/hard-source-webpack-plugin-0.13.1.tgz"
   integrity sha512-r9zf5Wq7IqJHdVAQsZ4OP+dcUSvoHqDMxJlIzaE2J0TZWn3UjMMrHqwDHR8Jr/pzPfG7XxSe36E7Y8QGNdtuAw==
   dependencies:
     chalk "^2.4.1"
@@ -5415,46 +5372,46 @@ hard-source-webpack-plugin@^0.13.1:
 
 has-bigints@^1.0.1, has-bigints@^1.0.2:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa"
+  resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz"
   integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==
 
 has-flag@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
+  resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"
   integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
 
 has-flag@^4.0.0:
   version "4.0.0"
-  resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
+  resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"
   integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
 
 has-property-descriptors@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861"
+  resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz"
   integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==
   dependencies:
     get-intrinsic "^1.1.1"
 
 has-proto@^1.0.1:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0"
+  resolved "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz"
   integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==
 
 has-symbols@^1.0.2, has-symbols@^1.0.3:
   version "1.0.3"
-  resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
+  resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz"
   integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
 
 has-tostringtag@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25"
+  resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz"
   integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
   dependencies:
     has-symbols "^1.0.2"
 
 has-value@^0.3.1:
   version "0.3.1"
-  resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
+  resolved "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz"
   integrity sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==
   dependencies:
     get-value "^2.0.3"
@@ -5463,7 +5420,7 @@ has-value@^0.3.1:
 
 has-value@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
+  resolved "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz"
   integrity sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==
   dependencies:
     get-value "^2.0.6"
@@ -5472,12 +5429,12 @@ has-value@^1.0.0:
 
 has-values@^0.1.4:
   version "0.1.4"
-  resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
+  resolved "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz"
   integrity sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==
 
 has-values@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
+  resolved "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz"
   integrity sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==
   dependencies:
     is-number "^3.0.0"
@@ -5485,14 +5442,14 @@ has-values@^1.0.0:
 
 has@^1.0.3:
   version "1.0.3"
-  resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
+  resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz"
   integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
   dependencies:
     function-bind "^1.1.1"
 
 hash-base@^3.0.0:
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33"
+  resolved "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz"
   integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==
   dependencies:
     inherits "^2.0.4"
@@ -5501,17 +5458,17 @@ hash-base@^3.0.0:
 
 hash-sum@^1.0.2:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/hash-sum/-/hash-sum-1.0.2.tgz#33b40777754c6432573c120cc3808bbd10d47f04"
+  resolved "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz"
   integrity sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==
 
 hash-sum@^2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/hash-sum/-/hash-sum-2.0.0.tgz#81d01bb5de8ea4a214ad5d6ead1b523460b0b45a"
+  resolved "https://registry.npmjs.org/hash-sum/-/hash-sum-2.0.0.tgz"
   integrity sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==
 
 hash.js@^1.0.0, hash.js@^1.0.3:
   version "1.1.7"
-  resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42"
+  resolved "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz"
   integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==
   dependencies:
     inherits "^2.0.3"
@@ -5519,18 +5476,28 @@ hash.js@^1.0.0, hash.js@^1.0.3:
 
 he@1.2.0, he@^1.2.0:
   version "1.2.0"
-  resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
+  resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz"
   integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
 
+highlight.js@^10.5.0:
+  version "10.7.3"
+  resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-10.7.3.tgz#697272e3991356e40c3cac566a74eef681756531"
+  integrity sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==
+
 hmac-drbg@^1.0.1:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
+  resolved "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz"
   integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==
   dependencies:
     hash.js "^1.0.3"
     minimalistic-assert "^1.0.0"
     minimalistic-crypto-utils "^1.0.1"
 
+hookable@^4.4.1:
+  version "4.4.1"
+  resolved "https://registry.npmjs.org/hookable/-/hookable-4.4.1.tgz"
+  integrity sha512-KWjZM8C7IVT2qne5HTXjM6R6VnRfjfRlf/oCnHd+yFxoHO1DzOl6B9LzV/VqGQK/IrFewq+EG+ePVrE9Tpc3fg==
+
 hosted-git-info@^2.1.4:
   version "2.8.9"
   resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz"
@@ -5545,12 +5512,17 @@ hosted-git-info@^4.0.1:
 
 html-entities@^2.1.0:
   version "2.3.6"
-  resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.3.6.tgz#966391d58e5737c77bca4025e31721b496ab7454"
+  resolved "https://registry.npmjs.org/html-entities/-/html-entities-2.3.6.tgz"
   integrity sha512-9o0+dcpIw2/HxkNuYKxSJUF/MMRZQECK4GnF+oQOmJ83yCVHTWgCH5aOXxK5bozNRmM8wtgryjHD3uloPBDEGw==
 
+html-escaper@^2.0.2:
+  version "2.0.2"
+  resolved "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz"
+  integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==
+
 html-minifier-terser@^5.0.1:
   version "5.1.1"
-  resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#922e96f1f3bb60832c2634b79884096389b1f054"
+  resolved "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz"
   integrity sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==
   dependencies:
     camel-case "^4.1.1"
@@ -5563,7 +5535,7 @@ html-minifier-terser@^5.0.1:
 
 html-minifier@^4.0.0:
   version "4.0.0"
-  resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-4.0.0.tgz#cca9aad8bce1175e02e17a8c33e46d8988889f56"
+  resolved "https://registry.npmjs.org/html-minifier/-/html-minifier-4.0.0.tgz"
   integrity sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig==
   dependencies:
     camel-case "^3.0.0"
@@ -5576,7 +5548,7 @@ html-minifier@^4.0.0:
 
 html-tags@^2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-2.0.0.tgz#10b30a386085f43cede353cc8fa7cb0deeea668b"
+  resolved "https://registry.npmjs.org/html-tags/-/html-tags-2.0.0.tgz"
   integrity sha512-+Il6N8cCo2wB/Vd3gqy/8TZhTD3QvcVeQLCnZiGkGCH3JP28IgGAY41giccp2W4R3jfyJPAP318FQTa1yU7K7g==
 
 html-tags@^3.1.0:
@@ -5586,7 +5558,7 @@ html-tags@^3.1.0:
 
 html-webpack-plugin@^4.5.1:
   version "4.5.2"
-  resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.5.2.tgz#76fc83fa1a0f12dd5f7da0404a54e2699666bc12"
+  resolved "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.5.2.tgz"
   integrity sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==
   dependencies:
     "@types/html-minifier-terser" "^5.0.0"
@@ -5613,7 +5585,7 @@ htmlparser2@^3.10.0:
 
 htmlparser2@^6.1.0:
   version "6.1.0"
-  resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7"
+  resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz"
   integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==
   dependencies:
     domelementtype "^2.0.1"
@@ -5623,7 +5595,7 @@ htmlparser2@^6.1.0:
 
 http-errors@2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3"
+  resolved "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz"
   integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==
   dependencies:
     depd "2.0.0"
@@ -5654,7 +5626,7 @@ http-proxy@^1.18.1:
 
 https-browserify@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
+  resolved "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz"
   integrity sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==
 
 human-signals@^1.1.1:
@@ -5664,7 +5636,7 @@ human-signals@^1.1.1:
 
 human-signals@^2.1.0:
   version "2.1.0"
-  resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0"
+  resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz"
   integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==
 
 husky@^6.0.0:
@@ -5674,36 +5646,36 @@ husky@^6.0.0:
 
 iconv-lite@0.6:
   version "0.6.3"
-  resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501"
+  resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz"
   integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==
   dependencies:
     safer-buffer ">= 2.1.2 < 3.0.0"
 
 iconv-lite@^0.4.24:
   version "0.4.24"
-  resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
+  resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"
   integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
   dependencies:
     safer-buffer ">= 2.1.2 < 3"
 
 icss-utils@^5.0.0, icss-utils@^5.1.0:
   version "5.1.0"
-  resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae"
+  resolved "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz"
   integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==
 
 ieee754@^1.1.4:
   version "1.2.1"
-  resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
+  resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz"
   integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
 
 iferr@^0.1.5:
   version "0.1.5"
-  resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501"
+  resolved "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz"
   integrity sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==
 
 ignore@^4.0.6:
   version "4.0.6"
-  resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
+  resolved "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz"
   integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
 
 ignore@^5.1.1:
@@ -5711,14 +5683,19 @@ ignore@^5.1.1:
   resolved "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz"
   integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==
 
-ignore@^5.1.8, ignore@^5.2.0, ignore@^5.2.4:
+ignore@^5.1.8, ignore@^5.2.0:
   version "5.2.4"
-  resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324"
+  resolved "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz"
   integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==
 
+ignore@^5.3.0:
+  version "5.3.0"
+  resolved "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz"
+  integrity sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==
+
 import-fresh@^3.0.0, import-fresh@^3.2.1:
   version "3.3.0"
-  resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
+  resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz"
   integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
   dependencies:
     parent-module "^1.0.0"
@@ -5736,22 +5713,22 @@ import-modules@^2.1.0:
 
 imurmurhash@^0.1.4:
   version "0.1.4"
-  resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
+  resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"
   integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==
 
 indent-string@^4.0.0:
   version "4.0.0"
-  resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
+  resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz"
   integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
 
 infer-owner@^1.0.3, infer-owner@^1.0.4:
   version "1.0.4"
-  resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467"
+  resolved "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz"
   integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==
 
 inflight@^1.0.4:
   version "1.0.6"
-  resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
+  resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"
   integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
   dependencies:
     once "^1.3.0"
@@ -5759,27 +5736,27 @@ inflight@^1.0.4:
 
 inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3:
   version "2.0.4"
-  resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
+  resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
   integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
 
 inherits@2.0.1:
   version "2.0.1"
-  resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
+  resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"
   integrity sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==
 
 inherits@2.0.3:
   version "2.0.3"
-  resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
+  resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"
   integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==
 
 ini@^1.3.5:
   version "1.3.8"
-  resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
+  resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz"
   integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
 
 inquirer@^7.3.3:
   version "7.3.3"
-  resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003"
+  resolved "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz"
   integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==
   dependencies:
     ansi-escapes "^4.2.1"
@@ -5798,7 +5775,7 @@ inquirer@^7.3.3:
 
 internal-slot@^1.0.5:
   version "1.0.5"
-  resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986"
+  resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz"
   integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==
   dependencies:
     get-intrinsic "^1.2.0"
@@ -5807,24 +5784,24 @@ internal-slot@^1.0.5:
 
 "internmap@1 - 2":
   version "2.0.3"
-  resolved "https://registry.yarnpkg.com/internmap/-/internmap-2.0.3.tgz#6685f23755e43c524e251d29cbc97248e3061009"
+  resolved "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz"
   integrity sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==
 
 ip@^1.1.8:
   version "1.1.8"
-  resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.8.tgz#ae05948f6b075435ed3307acce04629da8cdbf48"
+  resolved "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz"
   integrity sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==
 
 is-accessor-descriptor@^0.1.6:
   version "0.1.6"
-  resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
+  resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz"
   integrity sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==
   dependencies:
     kind-of "^3.0.2"
 
 is-accessor-descriptor@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
+  resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz"
   integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==
   dependencies:
     kind-of "^6.0.0"
@@ -5844,7 +5821,7 @@ is-alphanumerical@^1.0.0:
 
 is-array-buffer@^3.0.1, is-array-buffer@^3.0.2:
   version "3.0.2"
-  resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe"
+  resolved "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz"
   integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==
   dependencies:
     call-bind "^1.0.2"
@@ -5853,33 +5830,33 @@ is-array-buffer@^3.0.1, is-array-buffer@^3.0.2:
 
 is-arrayish@^0.2.1:
   version "0.2.1"
-  resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
+  resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"
   integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
 
 is-bigint@^1.0.1:
   version "1.0.4"
-  resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
+  resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz"
   integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
   dependencies:
     has-bigints "^1.0.1"
 
 is-binary-path@^1.0.0:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
+  resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz"
   integrity sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==
   dependencies:
     binary-extensions "^1.0.0"
 
 is-binary-path@~2.1.0:
   version "2.1.0"
-  resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
+  resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz"
   integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
   dependencies:
     binary-extensions "^2.0.0"
 
 is-boolean-object@^1.1.0:
   version "1.1.2"
-  resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719"
+  resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz"
   integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
   dependencies:
     call-bind "^1.0.2"
@@ -5887,50 +5864,43 @@ is-boolean-object@^1.1.0:
 
 is-buffer@^1.1.5:
   version "1.1.6"
-  resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
+  resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz"
   integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
 
 is-buffer@^2.0.0:
   version "2.0.5"
-  resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191"
+  resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz"
   integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==
 
-is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.3, is-callable@^1.2.7:
+is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7:
   version "1.2.7"
-  resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"
+  resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz"
   integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
 
-is-core-module@^2.11.0, is-core-module@^2.2.0:
+is-core-module@^2.11.0, is-core-module@^2.4.0:
   version "2.12.1"
-  resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd"
+  resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz"
   integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==
   dependencies:
     has "^1.0.3"
 
-is-core-module@^2.4.0:
-  version "2.4.0"
-  resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.4.0.tgz"
-  integrity sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A==
-  dependencies:
-    has "^1.0.3"
-
 is-data-descriptor@^0.1.4:
   version "0.1.4"
-  resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
+  resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz"
   integrity sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==
   dependencies:
     kind-of "^3.0.2"
 
 is-data-descriptor@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
+  resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz"
   integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==
   dependencies:
     kind-of "^6.0.0"
 
 is-date-object@^1.0.1:
   version "1.0.5"
-  resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
+  resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz"
   integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
   dependencies:
     has-tostringtag "^1.0.0"
@@ -5942,7 +5912,7 @@ is-decimal@^1.0.0:
 
 is-descriptor@^0.1.0:
   version "0.1.6"
-  resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
+  resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz"
   integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==
   dependencies:
     is-accessor-descriptor "^0.1.6"
@@ -5951,7 +5921,7 @@ is-descriptor@^0.1.0:
 
 is-descriptor@^1.0.0, is-descriptor@^1.0.2:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
+  resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz"
   integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==
   dependencies:
     is-accessor-descriptor "^1.0.0"
@@ -5960,36 +5930,36 @@ is-descriptor@^1.0.0, is-descriptor@^1.0.2:
 
 is-extendable@^0.1.0, is-extendable@^0.1.1:
   version "0.1.1"
-  resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
+  resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz"
   integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==
 
 is-extendable@^1.0.1:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
+  resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz"
   integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==
   dependencies:
     is-plain-object "^2.0.4"
 
 is-extglob@^2.1.0, is-extglob@^2.1.1:
   version "2.1.1"
-  resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
+  resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"
   integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
 
 is-fullwidth-code-point@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
+  resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"
   integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
 
 is-glob@^3.1.0:
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
+  resolved "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz"
   integrity sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==
   dependencies:
     is-extglob "^2.1.0"
 
 is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:
   version "4.0.3"
-  resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
+  resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz"
   integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
   dependencies:
     is-extglob "^2.1.1"
@@ -5999,38 +5969,38 @@ is-hexadecimal@^1.0.0:
   resolved "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz"
   integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==
 
-is-negative-zero@^2.0.1, is-negative-zero@^2.0.2:
+is-negative-zero@^2.0.2:
   version "2.0.2"
-  resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150"
+  resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz"
   integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==
 
 is-number-object@^1.0.4:
   version "1.0.7"
-  resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc"
+  resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz"
   integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==
   dependencies:
     has-tostringtag "^1.0.0"
 
 is-number@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
+  resolved "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz"
   integrity sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==
   dependencies:
     kind-of "^3.0.2"
 
 is-number@^7.0.0:
   version "7.0.0"
-  resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
+  resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"
   integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
 
 is-obj@^1.0.1:
   version "1.0.1"
   resolved "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz"
-  integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8=
+  integrity "sha1-PkcprB9f3gJc19g6iW2rn09n2w8= sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg=="
 
 is-plain-obj@^1.0.0, is-plain-obj@^1.1.0:
   version "1.1.0"
-  resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
+  resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz"
   integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==
 
 is-plain-obj@^2.0.0:
@@ -6045,14 +6015,19 @@ is-plain-obj@^3.0.0:
 
 is-plain-object@^2.0.3, is-plain-object@^2.0.4:
   version "2.0.4"
-  resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
+  resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz"
   integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
   dependencies:
     isobject "^3.0.1"
 
-is-regex@^1.1.3, is-regex@^1.1.4:
+is-plain-object@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz"
+  integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==
+
+is-regex@^1.1.4:
   version "1.1.4"
-  resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
+  resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz"
   integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
   dependencies:
     call-bind "^1.0.2"
@@ -6061,7 +6036,7 @@ is-regex@^1.1.3, is-regex@^1.1.4:
 is-regexp@^1.0.0:
   version "1.0.0"
   resolved "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz"
-  integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk=
+  integrity "sha1-/S2INUXEa6xaYz57mgnof6LLUGk= sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA=="
 
 is-regexp@^2.0.0:
   version "2.1.0"
@@ -6075,40 +6050,40 @@ is-retry-allowed@^1.1.0:
 
 is-shared-array-buffer@^1.0.2:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79"
+  resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz"
   integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==
   dependencies:
     call-bind "^1.0.2"
 
 is-ssh@^1.4.0:
   version "1.4.0"
-  resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.4.0.tgz#4f8220601d2839d8fa624b3106f8e8884f01b8b2"
+  resolved "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.0.tgz"
   integrity sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==
   dependencies:
     protocols "^2.0.1"
 
 is-stream@^2.0.0:
   version "2.0.1"
-  resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077"
+  resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz"
   integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==
 
-is-string@^1.0.5, is-string@^1.0.6, is-string@^1.0.7:
+is-string@^1.0.5, is-string@^1.0.7:
   version "1.0.7"
-  resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
+  resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz"
   integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
   dependencies:
     has-tostringtag "^1.0.0"
 
 is-symbol@^1.0.2, is-symbol@^1.0.3:
   version "1.0.4"
-  resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
+  resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz"
   integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
   dependencies:
     has-symbols "^1.0.2"
 
 is-typed-array@^1.1.10, is-typed-array@^1.1.9:
   version "1.1.10"
-  resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f"
+  resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz"
   integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==
   dependencies:
     available-typed-arrays "^1.0.5"
@@ -6120,7 +6095,7 @@ is-typed-array@^1.1.10, is-typed-array@^1.1.9:
 is-typedarray@^1.0.0:
   version "1.0.0"
   resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"
-  integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
+  integrity "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA=="
 
 is-unicode-supported@^0.1.0:
   version "0.1.0"
@@ -6129,51 +6104,51 @@ is-unicode-supported@^0.1.0:
 
 is-weakref@^1.0.2:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2"
+  resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz"
   integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
   dependencies:
     call-bind "^1.0.2"
 
 is-windows@^1.0.2:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
+  resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz"
   integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
 
 is-wsl@^1.1.0:
   version "1.1.0"
-  resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
+  resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz"
   integrity sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==
 
 isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
+  resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"
   integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==
 
 isarray@^2.0.5:
   version "2.0.5"
-  resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723"
+  resolved "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz"
   integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==
 
 isexe@^2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
+  resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"
   integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
 
 isobject@^2.0.0:
   version "2.1.0"
-  resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
+  resolved "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz"
   integrity sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==
   dependencies:
     isarray "1.0.0"
 
 isobject@^3.0.0, isobject@^3.0.1:
   version "3.0.1"
-  resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
+  resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz"
   integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==
 
 jest-worker@^26.5.0:
   version "26.6.2"
-  resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed"
+  resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz"
   integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==
   dependencies:
     "@types/node" "*"
@@ -6182,7 +6157,7 @@ jest-worker@^26.5.0:
 
 jest-worker@^27.5.1:
   version "27.5.1"
-  resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0"
+  resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz"
   integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==
   dependencies:
     "@types/node" "*"
@@ -6191,26 +6166,26 @@ jest-worker@^27.5.1:
 
 jest-worker@^28.1.3:
   version "28.1.3"
-  resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-28.1.3.tgz#7e3c4ce3fa23d1bb6accb169e7f396f98ed4bb98"
+  resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz"
   integrity sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==
   dependencies:
     "@types/node" "*"
     merge-stream "^2.0.0"
     supports-color "^8.0.0"
 
-jiti@^1.16.2, jiti@^1.18.2:
-  version "1.18.2"
-  resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.18.2.tgz#80c3ef3d486ebf2450d9335122b32d121f2a83cd"
-  integrity sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==
+jiti@^1.21.0:
+  version "1.21.0"
+  resolved "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz"
+  integrity sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==
 
 js-tokens@^4.0.0:
   version "4.0.0"
-  resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
+  resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"
   integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
 
 js-yaml@^3.13.1:
   version "3.14.1"
-  resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
+  resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz"
   integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
   dependencies:
     argparse "^1.0.7"
@@ -6218,17 +6193,17 @@ js-yaml@^3.13.1:
 
 jsesc@^2.5.1:
   version "2.5.2"
-  resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
+  resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz"
   integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
 
 jsesc@~0.5.0:
   version "0.5.0"
-  resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
+  resolved "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz"
   integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==
 
 json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
+  resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz"
   integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
 
 json-parse-even-better-errors@^2.3.0:
@@ -6238,41 +6213,41 @@ json-parse-even-better-errors@^2.3.0:
 
 json-schema-traverse@^0.4.1:
   version "0.4.1"
-  resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
+  resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"
   integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
 
 json-schema-traverse@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2"
+  resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz"
   integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==
 
 json-stable-stringify-without-jsonify@^1.0.1:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
+  resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"
   integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==
 
 json5@^1.0.1:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593"
+  resolved "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz"
   integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==
   dependencies:
     minimist "^1.2.0"
 
-json5@^2.1.2, json5@^2.2.2:
+json5@^2.1.2, json5@^2.2.3:
   version "2.2.3"
-  resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
+  resolved "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz"
   integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
 
 jsonfile@^4.0.0:
   version "4.0.0"
-  resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
+  resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz"
   integrity sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==
   optionalDependencies:
     graceful-fs "^4.1.6"
 
 jsonfile@^6.0.1:
   version "6.1.0"
-  resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae"
+  resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz"
   integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==
   dependencies:
     universalify "^2.0.0"
@@ -6281,31 +6256,31 @@ jsonfile@^6.0.1:
 
 kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
   version "3.2.2"
-  resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
+  resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz"
   integrity sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==
   dependencies:
     is-buffer "^1.1.5"
 
 kind-of@^4.0.0:
   version "4.0.0"
-  resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
+  resolved "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz"
   integrity sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==
   dependencies:
     is-buffer "^1.1.5"
 
 kind-of@^5.0.0:
   version "5.1.0"
-  resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
+  resolved "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz"
   integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==
 
 kind-of@^6.0.0, kind-of@^6.0.2, kind-of@^6.0.3:
   version "6.0.3"
-  resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
+  resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz"
   integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
 
 klona@^2.0.4:
   version "2.0.6"
-  resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.6.tgz#85bffbf819c03b2f53270412420a4555ef882e22"
+  resolved "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz"
   integrity sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==
 
 known-css-properties@^0.21.0:
@@ -6315,44 +6290,56 @@ known-css-properties@^0.21.0:
 
 last-call-webpack-plugin@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz#9742df0e10e3cf46e5c0381c2de90d3a7a2d7555"
+  resolved "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz"
   integrity sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==
   dependencies:
     lodash "^4.17.5"
     webpack-sources "^1.1.0"
 
-launch-editor-middleware@^2.6.0:
-  version "2.6.0"
-  resolved "https://registry.yarnpkg.com/launch-editor-middleware/-/launch-editor-middleware-2.6.0.tgz#2ba4fe4b695d7fe3d44dee86b6d46d57b8332dfd"
-  integrity sha512-K2yxgljj5TdCeRN1lBtO3/J26+AIDDDw+04y6VAiZbWcTdBwsYN6RrZBnW5DN/QiSIdKNjKdATLUUluWWFYTIA==
+launch-editor-middleware@^2.6.1:
+  version "2.6.1"
+  resolved "https://registry.npmjs.org/launch-editor-middleware/-/launch-editor-middleware-2.6.1.tgz"
+  integrity sha512-Fg/xYhf7ARmRp40n18wIfJyuAMEjXo67Yull7uF7d0OJ3qA4EYJISt1XfPPn69IIJ5jKgQwzcg6DqHYo95LL/g==
   dependencies:
-    launch-editor "^2.6.0"
+    launch-editor "^2.6.1"
 
-launch-editor@^2.6.0:
-  version "2.6.0"
-  resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.6.0.tgz#4c0c1a6ac126c572bd9ff9a30da1d2cae66defd7"
-  integrity sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==
+launch-editor@^2.6.1:
+  version "2.6.1"
+  resolved "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.1.tgz"
+  integrity sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==
   dependencies:
     picocolors "^1.0.0"
-    shell-quote "^1.7.3"
+    shell-quote "^1.8.1"
 
 levn@^0.4.1:
   version "0.4.1"
-  resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
+  resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz"
   integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
   dependencies:
     prelude-ls "^1.2.1"
     type-check "~0.4.0"
 
-lilconfig@^2.0.3, lilconfig@^2.1.0:
+lilconfig@^2.0.3:
   version "2.1.0"
-  resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52"
+  resolved "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz"
   integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==
 
+lilconfig@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz"
+  integrity sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==
+
 lines-and-columns@^1.1.6:
   version "1.1.6"
   resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz"
-  integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
+  integrity "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= sha512-8ZmlJFVK9iCmtLz19HpSsR8HaAMWBT284VMNednLwlIMDP2hJDCIhUp0IZ2xUcZ+Ob6BM0VvCSJwzASDM45NLQ=="
+
+linkify-it@^2.0.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.2.0.tgz#e3b54697e78bf915c70a38acd78fd09e0058b1cf"
+  integrity sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw==
+  dependencies:
+    uc.micro "^1.0.1"
 
 lint-staged@^10.5.4:
   version "10.5.4"
@@ -6391,7 +6378,7 @@ listr2@^3.2.2:
 load-json-file@^4.0.0:
   version "4.0.0"
   resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz"
-  integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs=
+  integrity "sha1-L19Fq5HjMhYjT9U62rZo607AmTs= sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw=="
   dependencies:
     graceful-fs "^4.1.2"
     parse-json "^4.0.0"
@@ -6400,26 +6387,26 @@ load-json-file@^4.0.0:
 
 loader-runner@^2.4.0:
   version "2.4.0"
-  resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357"
+  resolved "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz"
   integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==
 
 loader-runner@^4.1.0:
   version "4.3.0"
-  resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1"
+  resolved "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz"
   integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==
 
 loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3:
   version "1.4.2"
-  resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.2.tgz#29a957f3a63973883eb684f10ffd3d151fec01a3"
+  resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz"
   integrity sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==
   dependencies:
     big.js "^5.2.2"
     emojis-list "^3.0.0"
     json5 "^1.0.1"
 
-loader-utils@^2.0.0:
+loader-utils@^2.0.0, loader-utils@^2.0.4:
   version "2.0.4"
-  resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c"
+  resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz"
   integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==
   dependencies:
     big.js "^5.2.2"
@@ -6429,14 +6416,14 @@ loader-utils@^2.0.0:
 locate-path@^2.0.0:
   version "2.0.0"
   resolved "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz"
-  integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
+  integrity "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA=="
   dependencies:
     p-locate "^2.0.0"
     path-exists "^3.0.0"
 
 locate-path@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
+  resolved "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz"
   integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
   dependencies:
     p-locate "^3.0.0"
@@ -6444,44 +6431,39 @@ locate-path@^3.0.0:
 
 locate-path@^5.0.0:
   version "5.0.0"
-  resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
+  resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz"
   integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
   dependencies:
     p-locate "^4.1.0"
 
 lodash._reinterpolate@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
+  resolved "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz"
   integrity sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==
 
-lodash.clonedeep@^4.5.0:
-  version "4.5.0"
-  resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"
-  integrity sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==
-
 lodash.debounce@^4.0.8:
   version "4.0.8"
-  resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
+  resolved "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz"
   integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==
 
 lodash.kebabcase@^4.1.1:
   version "4.1.1"
-  resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36"
+  resolved "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz"
   integrity sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==
 
 lodash.memoize@^4.1.2:
   version "4.1.2"
-  resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
+  resolved "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz"
   integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==
 
 lodash.merge@^4.6.2:
   version "4.6.2"
-  resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
+  resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz"
   integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
 
 lodash.template@^4.5.0:
   version "4.5.0"
-  resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab"
+  resolved "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz"
   integrity sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==
   dependencies:
     lodash._reinterpolate "^3.0.0"
@@ -6489,22 +6471,22 @@ lodash.template@^4.5.0:
 
 lodash.templatesettings@^4.0.0:
   version "4.2.0"
-  resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33"
+  resolved "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz"
   integrity sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==
   dependencies:
     lodash._reinterpolate "^3.0.0"
 
 lodash.truncate@^4.4.2:
   version "4.4.2"
-  resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193"
+  resolved "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz"
   integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==
 
 lodash.uniq@^4.5.0:
   version "4.5.0"
-  resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
+  resolved "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz"
   integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==
 
-lodash@^4.15.0, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.5:
+lodash@^4.15.0, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.5:
   version "4.17.21"
   resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"
   integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
@@ -6534,19 +6516,19 @@ longest-streak@^2.0.0:
 
 lower-case@^1.1.1:
   version "1.1.4"
-  resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac"
+  resolved "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz"
   integrity sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==
 
 lower-case@^2.0.2:
   version "2.0.2"
-  resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28"
+  resolved "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz"
   integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==
   dependencies:
     tslib "^2.0.3"
 
 lru-cache@^4.1.2:
   version "4.1.5"
-  resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"
+  resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz"
   integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==
   dependencies:
     pseudomap "^1.0.2"
@@ -6554,28 +6536,28 @@ lru-cache@^4.1.2:
 
 lru-cache@^5.1.1:
   version "5.1.1"
-  resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
+  resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz"
   integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
   dependencies:
     yallist "^3.0.2"
 
 lru-cache@^6.0.0:
   version "6.0.0"
-  resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
+  resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz"
   integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
   dependencies:
     yallist "^4.0.0"
 
 make-dir@^1.0.0:
   version "1.3.0"
-  resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c"
+  resolved "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz"
   integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==
   dependencies:
     pify "^3.0.0"
 
 make-dir@^2.0.0:
   version "2.1.0"
-  resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
+  resolved "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz"
   integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
   dependencies:
     pify "^4.0.1"
@@ -6583,20 +6565,20 @@ make-dir@^2.0.0:
 
 make-dir@^3.0.2, make-dir@^3.1.0, make-dir@~3.1.0:
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
+  resolved "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz"
   integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
   dependencies:
     semver "^6.0.0"
 
 map-cache@^0.2.2:
   version "0.2.2"
-  resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
+  resolved "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz"
   integrity sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==
 
 map-obj@^1.0.0:
   version "1.0.1"
   resolved "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz"
-  integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=
+  integrity "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg=="
 
 map-obj@^4.0.0:
   version "4.2.1"
@@ -6605,11 +6587,29 @@ map-obj@^4.0.0:
 
 map-visit@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
+  resolved "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz"
   integrity sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==
   dependencies:
     object-visit "^1.0.0"
 
+markdown-it@^8.3.1:
+  version "8.4.2"
+  resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-8.4.2.tgz#386f98998dc15a37722aa7722084f4020bdd9b54"
+  integrity sha512-GcRz3AWTqSUphY3vsUqQSFMbgR38a4Lh3GWlHRh/7MRwz8mcu9n2IO7HOh+bXHrR9kOPDl5RNCaEsrneb+xhHQ==
+  dependencies:
+    argparse "^1.0.7"
+    entities "~1.1.1"
+    linkify-it "^2.0.0"
+    mdurl "^1.0.1"
+    uc.micro "^1.0.5"
+
+markdown-table@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.npmjs.org/markdown-table/-/markdown-table-2.0.0.tgz"
+  integrity sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==
+  dependencies:
+    repeat-string "^1.0.0"
+
 mathml-tag-names@^2.1.3:
   version "2.1.3"
   resolved "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz"
@@ -6617,7 +6617,7 @@ mathml-tag-names@^2.1.3:
 
 md5.js@^1.3.4:
   version "1.3.5"
-  resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f"
+  resolved "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz"
   integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==
   dependencies:
     hash-base "^3.0.0"
@@ -6654,29 +6654,34 @@ mdast-util-to-string@^2.0.0:
 
 mdn-data@2.0.14:
   version "2.0.14"
-  resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50"
+  resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz"
   integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==
 
 mdn-data@2.0.28:
   version "2.0.28"
-  resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.28.tgz#5ec48e7bef120654539069e1ae4ddc81ca490eba"
+  resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz"
   integrity sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==
 
 mdn-data@2.0.30:
   version "2.0.30"
-  resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.30.tgz#ce4df6f80af6cfbe218ecd5c552ba13c4dfa08cc"
+  resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz"
   integrity sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==
 
+mdurl@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e"
+  integrity sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==
+
 memfs@^3.4.3:
   version "3.5.3"
-  resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.5.3.tgz#d9b40fe4f8d5788c5f895bda804cd0d9eeee9f3b"
+  resolved "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz"
   integrity sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==
   dependencies:
     fs-monkey "^1.0.4"
 
 memory-fs@^0.4.1:
   version "0.4.1"
-  resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
+  resolved "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz"
   integrity sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==
   dependencies:
     errno "^0.1.3"
@@ -6684,7 +6689,7 @@ memory-fs@^0.4.1:
 
 memory-fs@^0.5.0:
   version "0.5.0"
-  resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz#324c01288b88652966d161db77838720845a8e3c"
+  resolved "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz"
   integrity sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==
   dependencies:
     errno "^0.1.3"
@@ -6710,19 +6715,19 @@ meow@^9.0.0:
 
 merge-source-map@^1.1.0:
   version "1.1.0"
-  resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.1.0.tgz#2fdde7e6020939f70906a68f2d7ae685e4c8c646"
+  resolved "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz"
   integrity sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==
   dependencies:
     source-map "^0.6.1"
 
 merge-stream@^2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
+  resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz"
   integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
 
 merge2@^1.3.0, merge2@^1.4.1:
   version "1.4.1"
-  resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
+  resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz"
   integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
 
 micromark@~2.11.0:
@@ -6735,7 +6740,7 @@ micromark@~2.11.0:
 
 micromatch@^3.1.10, micromatch@^3.1.4:
   version "3.1.10"
-  resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
+  resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz"
   integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
   dependencies:
     arr-diff "^4.0.0"
@@ -6754,7 +6759,7 @@ micromatch@^3.1.10, micromatch@^3.1.4:
 
 micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5:
   version "4.0.5"
-  resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6"
+  resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz"
   integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
   dependencies:
     braces "^3.0.2"
@@ -6762,7 +6767,7 @@ micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5:
 
 miller-rabin@^4.0.0:
   version "4.0.1"
-  resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
+  resolved "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz"
   integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==
   dependencies:
     bn.js "^4.0.0"
@@ -6770,29 +6775,29 @@ miller-rabin@^4.0.0:
 
 mime-db@1.52.0, "mime-db@>= 1.43.0 < 2":
   version "1.52.0"
-  resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70"
+  resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz"
   integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==
 
 mime-types@^2.1.19, mime-types@^2.1.27, mime-types@^2.1.31, mime-types@~2.1.34:
   version "2.1.35"
-  resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a"
+  resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz"
   integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==
   dependencies:
     mime-db "1.52.0"
 
 mime@1.6.0:
   version "1.6.0"
-  resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
+  resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz"
   integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
 
 mime@~2.5.2:
   version "2.5.2"
-  resolved "https://registry.yarnpkg.com/mime/-/mime-2.5.2.tgz#6e3dc6cc2b9510643830e5f19d5cb753da5eeabe"
+  resolved "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz"
   integrity sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==
 
 mimic-fn@^2.1.0:
   version "2.1.0"
-  resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
+  resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz"
   integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
 
 min-indent@^1.0.0:
@@ -6802,31 +6807,31 @@ min-indent@^1.0.0:
 
 minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
+  resolved "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz"
   integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==
 
 minimalistic-crypto-utils@^1.0.1:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
+  resolved "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz"
   integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==
 
 minimatch@^3.0.4, minimatch@^3.1.1:
   version "3.1.2"
-  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
+  resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz"
   integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
   dependencies:
     brace-expansion "^1.1.7"
 
 minimatch@^5.0.1:
   version "5.1.6"
-  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96"
+  resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz"
   integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==
   dependencies:
     brace-expansion "^2.0.1"
 
 minimatch@~3.0.4:
   version "3.0.8"
-  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.8.tgz#5e6a59bd11e2ab0de1cfb843eb2d82e546c321c1"
+  resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz"
   integrity sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==
   dependencies:
     brace-expansion "^1.1.7"
@@ -6842,45 +6847,45 @@ minimist-options@4.1.0:
 
 minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6, minimist@^1.2.8:
   version "1.2.8"
-  resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
+  resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz"
   integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
 
 minipass-collect@^1.0.2:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617"
+  resolved "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz"
   integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==
   dependencies:
     minipass "^3.0.0"
 
 minipass-flush@^1.0.5:
   version "1.0.5"
-  resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373"
+  resolved "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz"
   integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==
   dependencies:
     minipass "^3.0.0"
 
 minipass-pipeline@^1.2.2:
   version "1.2.4"
-  resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c"
+  resolved "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz"
   integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==
   dependencies:
     minipass "^3.0.0"
 
 minipass@^3.0.0, minipass@^3.1.1:
   version "3.3.6"
-  resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a"
+  resolved "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz"
   integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==
   dependencies:
     yallist "^4.0.0"
 
 minipass@^5.0.0:
   version "5.0.0"
-  resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d"
+  resolved "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz"
   integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==
 
 minizlib@^2.1.1:
   version "2.1.2"
-  resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931"
+  resolved "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz"
   integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==
   dependencies:
     minipass "^3.0.0"
@@ -6888,7 +6893,7 @@ minizlib@^2.1.1:
 
 mississippi@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022"
+  resolved "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz"
   integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==
   dependencies:
     concat-stream "^1.5.0"
@@ -6904,7 +6909,7 @@ mississippi@^3.0.0:
 
 mixin-deep@^1.2.0:
   version "1.3.2"
-  resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
+  resolved "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz"
   integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
   dependencies:
     for-in "^1.0.2"
@@ -6912,19 +6917,19 @@ mixin-deep@^1.2.0:
 
 mkdirp@^0.5.1, mkdirp@^0.5.3:
   version "0.5.6"
-  resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6"
+  resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz"
   integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==
   dependencies:
     minimist "^1.2.6"
 
 mkdirp@^1.0.3, mkdirp@^1.0.4:
   version "1.0.4"
-  resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
+  resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz"
   integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
 
 move-concurrently@^1.0.1:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92"
+  resolved "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz"
   integrity sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==
   dependencies:
     aproba "^1.1.1"
@@ -6934,24 +6939,24 @@ move-concurrently@^1.0.1:
     rimraf "^2.5.4"
     run-queue "^1.0.3"
 
-mrmime@^1.0.0:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/mrmime/-/mrmime-1.0.1.tgz#5f90c825fad4bdd41dc914eff5d1a8cfdaf24f27"
-  integrity sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==
+mrmime@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz"
+  integrity sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==
 
 ms@2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
+  resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
   integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==
 
 ms@2.1.2, ms@^2.1.1:
   version "2.1.2"
-  resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
+  resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
   integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
 
 ms@2.1.3:
   version "2.1.3"
-  resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
+  resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"
   integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
 
 multimap@^1.1.0:
@@ -6961,27 +6966,27 @@ multimap@^1.1.0:
 
 mustache@^2.3.0:
   version "2.3.2"
-  resolved "https://registry.yarnpkg.com/mustache/-/mustache-2.3.2.tgz#a6d4d9c3f91d13359ab889a812954f9230a3d0c5"
+  resolved "https://registry.npmjs.org/mustache/-/mustache-2.3.2.tgz"
   integrity sha512-KpMNwdQsYz3O/SBS1qJ/o3sqUJ5wSb8gb0pul8CO0S56b9Y2ALm8zCfsjPXsqGFfoNBkDwZuZIAjhsZI03gYVQ==
 
 mute-stream@0.0.8:
   version "0.0.8"
-  resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d"
+  resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz"
   integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
 
 nan@^2.12.1:
-  version "2.17.0"
-  resolved "https://registry.yarnpkg.com/nan/-/nan-2.17.0.tgz#c0150a2368a182f033e9aa5195ec76ea41a199cb"
-  integrity sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==
+  version "2.18.0"
+  resolved "https://registry.yarnpkg.com/nan/-/nan-2.18.0.tgz#26a6faae7ffbeb293a39660e88a76b82e30b7554"
+  integrity sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==
 
-nanoid@^3.1.23, nanoid@^3.3.6:
-  version "3.3.6"
-  resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c"
-  integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==
+nanoid@^3.1.23, nanoid@^3.3.7:
+  version "3.3.7"
+  resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz"
+  integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==
 
 nanomatch@^1.2.9:
   version "1.2.13"
-  resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
+  resolved "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz"
   integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==
   dependencies:
     arr-diff "^4.0.0"
@@ -6998,57 +7003,57 @@ nanomatch@^1.2.9:
 
 natural-compare@^1.4.0:
   version "1.4.0"
-  resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
+  resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"
   integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
 
 negotiator@0.6.3:
   version "0.6.3"
-  resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd"
+  resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz"
   integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==
 
 neo-async@^2.5.0, neo-async@^2.6.1, neo-async@^2.6.2:
   version "2.6.2"
-  resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
+  resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz"
   integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
 
 no-case@^2.2.0:
   version "2.3.2"
-  resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac"
+  resolved "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz"
   integrity sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==
   dependencies:
     lower-case "^1.1.1"
 
 no-case@^3.0.4:
   version "3.0.4"
-  resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d"
+  resolved "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz"
   integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==
   dependencies:
     lower-case "^2.0.2"
     tslib "^2.0.3"
 
-node-fetch-native@^1.2.0:
-  version "1.2.0"
-  resolved "https://registry.yarnpkg.com/node-fetch-native/-/node-fetch-native-1.2.0.tgz#13ec6df98f33168958dbfb6945f10aedf42e7ea8"
-  integrity sha512-5IAMBTl9p6PaAjYCnMv5FmqIF6GcZnawAVnzaCG0rX2aYZJ4CxEkZNtVPuTRug7fL7wyM5BQYTlAzcyMPi6oTQ==
+node-fetch-native@^1.4.1, node-fetch-native@^1.6.1:
+  version "1.6.1"
+  resolved "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.1.tgz"
+  integrity sha512-bW9T/uJDPAJB2YNYEpWzE54U5O3MQidXsOyTfnbKYtTtFexRvGzb1waphBN4ZwP6EcIvYYEOwW0b72BpAqydTw==
 
-node-fetch@^2.6.1, node-fetch@^2.6.7:
+node-fetch@^2.6.1:
   version "2.6.11"
-  resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.11.tgz#cde7fc71deef3131ef80a738919f999e6edfff25"
+  resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz"
   integrity sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==
   dependencies:
     whatwg-url "^5.0.0"
 
-node-html-parser@^6.1.5:
-  version "6.1.5"
-  resolved "https://registry.yarnpkg.com/node-html-parser/-/node-html-parser-6.1.5.tgz#c819dceb13a10a7642ff92f94f870b4f77968097"
-  integrity sha512-fAaM511feX++/Chnhe475a0NHD8M7AxDInsqQpz6x63GRF7xYNdS8Vo5dKsIVPgsOvG7eioRRTZQnWBrhDHBSg==
+node-html-parser@^6.1.12:
+  version "6.1.12"
+  resolved "https://registry.npmjs.org/node-html-parser/-/node-html-parser-6.1.12.tgz"
+  integrity sha512-/bT/Ncmv+fbMGX96XG9g05vFt43m/+SYKIs9oAemQVYyVcZmDAI2Xq/SbNcpOA35eF0Zk2av3Ksf+Xk8Vt8abA==
   dependencies:
     css-select "^5.1.0"
     he "1.2.0"
 
 node-libs-browser@^2.2.1:
   version "2.2.1"
-  resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425"
+  resolved "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz"
   integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==
   dependencies:
     assert "^1.1.1"
@@ -7077,17 +7082,17 @@ node-libs-browser@^2.2.1:
 
 node-object-hash@^1.2.0:
   version "1.4.2"
-  resolved "https://registry.yarnpkg.com/node-object-hash/-/node-object-hash-1.4.2.tgz#385833d85b229902b75826224f6077be969a9e94"
+  resolved "https://registry.npmjs.org/node-object-hash/-/node-object-hash-1.4.2.tgz"
   integrity sha512-UdS4swXs85fCGWWf6t6DMGgpN/vnlKeSGEQ7hJcrs7PBFoxoKLmibc3QRb7fwiYsjdL7PX8iI/TMSlZ90dgHhQ==
 
-node-releases@^2.0.12:
-  version "2.0.12"
-  resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.12.tgz#35627cc224a23bfb06fb3380f2b3afaaa7eb1039"
-  integrity sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==
+node-releases@^2.0.14:
+  version "2.0.14"
+  resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz"
+  integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==
 
 node-res@^5.0.1:
   version "5.0.1"
-  resolved "https://registry.yarnpkg.com/node-res/-/node-res-5.0.1.tgz#ffaa462e206509d66d0ba28a4daf1f032daa6460"
+  resolved "https://registry.npmjs.org/node-res/-/node-res-5.0.1.tgz"
   integrity sha512-YOleO9c7MAqoHC+Ccu2vzvV1fL6Ku49gShq3PIMKWHRgrMSih3XcwL05NbLBi6oU2J471gTBfdpVVxwT6Pfhxg==
   dependencies:
     destroy "^1.0.4"
@@ -7118,29 +7123,29 @@ normalize-package-data@^3.0.0:
 
 normalize-path@^2.1.1:
   version "2.1.1"
-  resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
+  resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz"
   integrity sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==
   dependencies:
     remove-trailing-separator "^1.0.1"
 
 normalize-path@^3.0.0, normalize-path@~3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
+  resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"
   integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
 
 normalize-range@^0.1.2:
   version "0.1.2"
-  resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
+  resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz"
   integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==
 
 normalize-selector@^0.2.0:
   version "0.2.0"
   resolved "https://registry.npmjs.org/normalize-selector/-/normalize-selector-0.2.0.tgz"
-  integrity sha1-0LFF62kRicY6eNIB3E/bEpPvDAM=
+  integrity "sha1-0LFF62kRicY6eNIB3E/bEpPvDAM= sha512-dxvWdI8gw6eAvk9BlPffgEoGfM7AdijoCwOEJge3e3ulT2XLgmU7KvvxprOaCu05Q1uGRHmOhHe1r6emZoKyFw=="
 
 normalize-url@1.9.1:
   version "1.9.1"
-  resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c"
+  resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz"
   integrity sha512-A48My/mtCklowHBlI8Fq2jFWK4tX4lJ5E6ytFsSOq1fzpvT0SQSgKhSg7lN5c2uYFOrUAOQp6zhhJnpp1eMloQ==
   dependencies:
     object-assign "^4.0.1"
@@ -7150,83 +7155,83 @@ normalize-url@1.9.1:
 
 normalize-url@^6.0.1:
   version "6.1.0"
-  resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a"
+  resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz"
   integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==
 
 npm-run-path@^4.0.0, npm-run-path@^4.0.1:
   version "4.0.1"
-  resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
+  resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz"
   integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==
   dependencies:
     path-key "^3.0.0"
 
 nth-check@^2.0.1:
   version "2.1.1"
-  resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d"
+  resolved "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz"
   integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==
   dependencies:
     boolbase "^1.0.0"
 
 num2fraction@^1.2.2:
   version "1.2.2"
-  resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
+  resolved "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz"
   integrity sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==
 
-nuxt@^2.15.7:
-  version "2.17.0"
-  resolved "https://registry.yarnpkg.com/nuxt/-/nuxt-2.17.0.tgz#419de827175d36e206a6f0e9b70b02bebec1cbd4"
-  integrity sha512-+xEB8VReXqvSVvizBQ2mpV4nW8U3o2r4fctJ1XIzxgvYszrUSXeQf2mfF/1kKpJJTdReNMspaF6UCB7qz2bkYw==
+nuxt@^2.17.3:
+  version "2.17.3"
+  resolved "https://registry.npmjs.org/nuxt/-/nuxt-2.17.3.tgz"
+  integrity sha512-mQUy0J2DYYxHZvgBX8YvrrM8sKUhBqBxcQ0ePjy7cdyTaDAN8QeOLrizINm7NVPMrFGLYurhp5rbX3/qyQcKyg==
   dependencies:
-    "@nuxt/babel-preset-app" "2.17.0"
-    "@nuxt/builder" "2.17.0"
-    "@nuxt/cli" "2.17.0"
+    "@nuxt/babel-preset-app" "2.17.3"
+    "@nuxt/builder" "2.17.3"
+    "@nuxt/cli" "2.17.3"
     "@nuxt/components" "^2.2.1"
-    "@nuxt/config" "2.17.0"
-    "@nuxt/core" "2.17.0"
-    "@nuxt/generator" "2.17.0"
+    "@nuxt/config" "2.17.3"
+    "@nuxt/core" "2.17.3"
+    "@nuxt/generator" "2.17.3"
     "@nuxt/loading-screen" "^2.0.4"
-    "@nuxt/opencollective" "^0.3.3"
-    "@nuxt/server" "2.17.0"
-    "@nuxt/telemetry" "^1.4.1"
-    "@nuxt/utils" "2.17.0"
-    "@nuxt/vue-app" "2.17.0"
-    "@nuxt/vue-renderer" "2.17.0"
-    "@nuxt/webpack" "2.17.0"
+    "@nuxt/opencollective" "^0.4.0"
+    "@nuxt/server" "2.17.3"
+    "@nuxt/telemetry" "^1.5.0"
+    "@nuxt/utils" "2.17.3"
+    "@nuxt/vue-app" "2.17.3"
+    "@nuxt/vue-renderer" "2.17.3"
+    "@nuxt/webpack" "2.17.3"
 
 object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
   version "4.1.1"
-  resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
+  resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"
   integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
 
 object-copy@^0.1.0:
   version "0.1.0"
-  resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
+  resolved "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz"
   integrity sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==
   dependencies:
     copy-descriptor "^0.1.0"
     define-property "^0.2.5"
     kind-of "^3.0.3"
 
-object-inspect@^1.10.3, object-inspect@^1.12.3, object-inspect@^1.9.0:
+object-inspect@^1.12.3, object-inspect@^1.9.0:
   version "1.12.3"
-  resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9"
+  resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz"
   integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==
 
 object-keys@^1.1.1:
   version "1.1.1"
-  resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
+  resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz"
   integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
 
 object-visit@^1.0.0:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
+  resolved "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz"
   integrity sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==
   dependencies:
     isobject "^3.0.0"
 
-object.assign@^4.1.2, object.assign@^4.1.4:
+object.assign@^4.1.4:
   version "4.1.4"
-  resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f"
+  resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz"
   integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==
   dependencies:
     call-bind "^1.0.2"
@@ -7236,7 +7241,7 @@ object.assign@^4.1.2, object.assign@^4.1.4:
 
 object.getownpropertydescriptors@^2.0.3:
   version "2.1.6"
-  resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.6.tgz#5e5c384dd209fa4efffead39e3a0512770ccc312"
+  resolved "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.6.tgz"
   integrity sha512-lq+61g26E/BgHv0ZTFgRvi7NMEPuAxLkFU7rukXjc/AlwH4Am5xXVnIXy3un1bg/JPbXHrixRkK1itUzzPiIjQ==
   dependencies:
     array.prototype.reduce "^1.0.5"
@@ -7247,7 +7252,7 @@ object.getownpropertydescriptors@^2.0.3:
 
 object.pick@^1.3.0:
   version "1.3.0"
-  resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
+  resolved "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz"
   integrity sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==
   dependencies:
     isobject "^3.0.1"
@@ -7261,47 +7266,47 @@ object.values@^1.1.3:
     define-properties "^1.1.3"
     es-abstract "^1.18.2"
 
-on-finished@2.4.1, on-finished@^2.3.0:
+on-finished@2.4.1:
   version "2.4.1"
-  resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f"
+  resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz"
   integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==
   dependencies:
     ee-first "1.1.1"
 
-on-finished@~2.3.0:
+on-finished@^2.3.0, on-finished@~2.3.0:
   version "2.3.0"
-  resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
+  resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz"
   integrity sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==
   dependencies:
     ee-first "1.1.1"
 
 on-headers@^1.0.2, on-headers@~1.0.2:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f"
+  resolved "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz"
   integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==
 
 once@^1.3.0, once@^1.3.1, once@^1.4.0:
   version "1.4.0"
-  resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
+  resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz"
   integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
   dependencies:
     wrappy "1"
 
 onetime@^5.1.0, onetime@^5.1.2:
   version "5.1.2"
-  resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
+  resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz"
   integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
   dependencies:
     mimic-fn "^2.1.0"
 
 opener@1.5.2, opener@^1.5.2:
   version "1.5.2"
-  resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598"
+  resolved "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz"
   integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==
 
 optimize-css-assets-webpack-plugin@^6.0.1:
   version "6.0.1"
-  resolved "https://registry.yarnpkg.com/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-6.0.1.tgz#7719bceabba1f3891ec3ae04efb81a1cc99cd793"
+  resolved "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-6.0.1.tgz"
   integrity sha512-BshV2UZPfggZLdUfN3zFBbG4sl/DynUI+YCB6fRRDWaqO2OiWN8GPcp4Y0/fEV6B3k9Hzyk3czve3V/8B/SzKQ==
   dependencies:
     cssnano "^5.0.2"
@@ -7310,7 +7315,7 @@ optimize-css-assets-webpack-plugin@^6.0.1:
 
 optionator@^0.9.1:
   version "0.9.1"
-  resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
+  resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz"
   integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
   dependencies:
     deep-is "^0.1.3"
@@ -7322,12 +7327,12 @@ optionator@^0.9.1:
 
 os-browserify@^0.3.0:
   version "0.3.0"
-  resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"
+  resolved "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz"
   integrity sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==
 
 os-tmpdir@~1.0.2:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
+  resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz"
   integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==
 
 p-limit@^1.1.0:
@@ -7339,14 +7344,14 @@ p-limit@^1.1.0:
 
 p-limit@^2.0.0, p-limit@^2.2.0:
   version "2.3.0"
-  resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
+  resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"
   integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
   dependencies:
     p-try "^2.0.0"
 
 p-limit@^3.0.2:
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
+  resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz"
   integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
   dependencies:
     yocto-queue "^0.1.0"
@@ -7354,27 +7359,27 @@ p-limit@^3.0.2:
 p-locate@^2.0.0:
   version "2.0.0"
   resolved "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz"
-  integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
+  integrity "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg=="
   dependencies:
     p-limit "^1.1.0"
 
 p-locate@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
+  resolved "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz"
   integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
   dependencies:
     p-limit "^2.0.0"
 
 p-locate@^4.1.0:
   version "4.1.0"
-  resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
+  resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz"
   integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
   dependencies:
     p-limit "^2.2.0"
 
 p-map@^4.0.0:
   version "4.0.0"
-  resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b"
+  resolved "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz"
   integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==
   dependencies:
     aggregate-error "^3.0.0"
@@ -7382,21 +7387,21 @@ p-map@^4.0.0:
 p-try@^1.0.0:
   version "1.0.0"
   resolved "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz"
-  integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
+  integrity "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww=="
 
 p-try@^2.0.0:
   version "2.2.0"
-  resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
+  resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"
   integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
 
 pako@~1.0.5:
   version "1.0.11"
-  resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf"
+  resolved "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz"
   integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==
 
 parallel-transform@^1.1.0:
   version "1.2.0"
-  resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.2.0.tgz#9049ca37d6cb2182c3b1d2c720be94d14a5814fc"
+  resolved "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz"
   integrity sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==
   dependencies:
     cyclist "^1.0.1"
@@ -7405,14 +7410,14 @@ parallel-transform@^1.1.0:
 
 param-case@^2.1.1:
   version "2.1.1"
-  resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247"
+  resolved "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz"
   integrity sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==
   dependencies:
     no-case "^2.2.0"
 
 param-case@^3.0.3:
   version "3.0.4"
-  resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5"
+  resolved "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz"
   integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==
   dependencies:
     dot-case "^3.0.4"
@@ -7420,14 +7425,14 @@ param-case@^3.0.3:
 
 parent-module@^1.0.0:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
+  resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz"
   integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
   dependencies:
     callsites "^3.0.0"
 
 parse-asn1@^5.0.0, parse-asn1@^5.1.5:
   version "5.1.6"
-  resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4"
+  resolved "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz"
   integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==
   dependencies:
     asn1.js "^5.2.0"
@@ -7450,7 +7455,7 @@ parse-entities@^2.0.0:
 
 parse-git-config@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/parse-git-config/-/parse-git-config-3.0.0.tgz#4a2de08c7b74a2555efa5ae94d40cd44302a6132"
+  resolved "https://registry.npmjs.org/parse-git-config/-/parse-git-config-3.0.0.tgz"
   integrity sha512-wXoQGL1D+2COYWCD35/xbiKma1Z15xvZL8cI25wvxzled58V51SJM04Urt/uznS900iQor7QO04SgdfT/XlbuA==
   dependencies:
     git-config-path "^2.0.0"
@@ -7458,7 +7463,7 @@ parse-git-config@^3.0.0:
 
 parse-json@^4.0.0:
   version "4.0.0"
-  resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
+  resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz"
   integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==
   dependencies:
     error-ex "^1.3.1"
@@ -7476,26 +7481,26 @@ parse-json@^5.0.0:
 
 parse-path@^7.0.0:
   version "7.0.0"
-  resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-7.0.0.tgz#605a2d58d0a749c8594405d8cc3a2bf76d16099b"
+  resolved "https://registry.npmjs.org/parse-path/-/parse-path-7.0.0.tgz"
   integrity sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==
   dependencies:
     protocols "^2.0.0"
 
 parse-url@^8.1.0:
   version "8.1.0"
-  resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-8.1.0.tgz#972e0827ed4b57fc85f0ea6b0d839f0d8a57a57d"
+  resolved "https://registry.npmjs.org/parse-url/-/parse-url-8.1.0.tgz"
   integrity sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==
   dependencies:
     parse-path "^7.0.0"
 
 parseurl@~1.3.3:
   version "1.3.3"
-  resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
+  resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz"
   integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==
 
 pascal-case@^3.1.2:
   version "3.1.2"
-  resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb"
+  resolved "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz"
   integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==
   dependencies:
     no-case "^3.0.4"
@@ -7503,42 +7508,42 @@ pascal-case@^3.1.2:
 
 pascalcase@^0.1.1:
   version "0.1.1"
-  resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
+  resolved "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz"
   integrity sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==
 
 path-browserify@0.0.1:
   version "0.0.1"
-  resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a"
+  resolved "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz"
   integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==
 
 path-dirname@^1.0.0:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
+  resolved "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz"
   integrity sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==
 
 path-exists@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
+  resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz"
   integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==
 
 path-exists@^4.0.0:
   version "4.0.0"
-  resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
+  resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"
   integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
 
 path-is-absolute@^1.0.0:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
+  resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"
   integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
 
 path-key@^3.0.0, path-key@^3.1.0:
   version "3.1.1"
-  resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
+  resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz"
   integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
 
-path-parse@^1.0.6, path-parse@^1.0.7:
+path-parse@^1.0.7:
   version "1.0.7"
-  resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
+  resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz"
   integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
 
 path-type@^3.0.0:
@@ -7550,12 +7555,12 @@ path-type@^3.0.0:
 
 path-type@^4.0.0:
   version "4.0.0"
-  resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
+  resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz"
   integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
 
 pbkdf2@^3.0.3:
   version "3.1.2"
-  resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075"
+  resolved "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz"
   integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==
   dependencies:
     create-hash "^1.1.2"
@@ -7566,56 +7571,56 @@ pbkdf2@^3.0.3:
 
 picocolors@^0.2.1:
   version "0.2.1"
-  resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-0.2.1.tgz#570670f793646851d1ba135996962abad587859f"
+  resolved "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz"
   integrity sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==
 
 picocolors@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
+  resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz"
   integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
 
 picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1:
   version "2.3.1"
-  resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
+  resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz"
   integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
 
 pify@^2.3.0:
   version "2.3.0"
-  resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
+  resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz"
   integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==
 
 pify@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
+  resolved "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz"
   integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==
 
 pify@^4.0.1:
   version "4.0.1"
-  resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
+  resolved "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz"
   integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
 
 pify@^5.0.0:
   version "5.0.0"
-  resolved "https://registry.yarnpkg.com/pify/-/pify-5.0.0.tgz#1f5eca3f5e87ebec28cc6d54a0e4aaf00acc127f"
+  resolved "https://registry.npmjs.org/pify/-/pify-5.0.0.tgz"
   integrity sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==
 
 pkg-dir@^2.0.0:
   version "2.0.0"
   resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz"
-  integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=
+  integrity "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= sha512-ojakdnUgL5pzJYWw2AIDEupaQCX5OPbM688ZevubICjdIX01PRSYKqm33fJoCOJBRseYCTUlQRnBNX+Pchaejw=="
   dependencies:
     find-up "^2.1.0"
 
 pkg-dir@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
+  resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz"
   integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==
   dependencies:
     find-up "^3.0.0"
 
 pkg-dir@^4.1.0:
   version "4.2.0"
-  resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
+  resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz"
   integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
   dependencies:
     find-up "^4.0.0"
@@ -7623,7 +7628,7 @@ pkg-dir@^4.1.0:
 pkg-up@^2.0.0:
   version "2.0.0"
   resolved "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz"
-  integrity sha1-yBmscoBZpGHKscOImivjxJoATX8=
+  integrity "sha1-yBmscoBZpGHKscOImivjxJoATX8= sha512-fjAPuiws93rm7mPUu21RdBnkeZNrbfCFCwfAhPWY+rR3zG0ubpe5cEReHOw5fIbfmsxEV/g2kSxGTATY3Bpnwg=="
   dependencies:
     find-up "^2.1.0"
 
@@ -7634,10 +7639,10 @@ please-upgrade-node@^3.2.0:
   dependencies:
     semver-compare "^1.0.0"
 
-plotly.js-dist@^2.5.1:
-  version "2.6.2"
-  resolved "https://registry.yarnpkg.com/plotly.js-dist/-/plotly.js-dist-2.6.2.tgz#6dd013891d394b4a6693b835ac3eecd8d3ebf767"
-  integrity sha512-LrbqZ5b5bEQiVItke78JvIj+2cTztrABUxH6lMCwDkoySvDZUGQaDiZDze8NPlbqRm1hSnZlv7ZD15iD3qZwdg==
+plotly.js-dist@^2.28.0:
+  version "2.28.0"
+  resolved "https://registry.npmjs.org/plotly.js-dist/-/plotly.js-dist-2.28.0.tgz"
+  integrity sha512-v7GyfVxz0xDS/OTmtUoW3LUPMJWgDPpFrajtRRCHnZdUffhp3V0LB7stxSdzU6HGmvhFAa7pgMVae8O59rjvtQ==
 
 pluralize@^8.0.0:
   version "8.0.0"
@@ -7646,34 +7651,34 @@ pluralize@^8.0.0:
 
 pnp-webpack-plugin@^1.7.0:
   version "1.7.0"
-  resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.7.0.tgz#65741384f6d8056f36e2255a8d67ffc20866f5c9"
+  resolved "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.7.0.tgz"
   integrity sha512-2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg==
   dependencies:
     ts-pnp "^1.1.6"
 
 posix-character-classes@^0.1.0:
   version "0.1.1"
-  resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
+  resolved "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz"
   integrity sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==
 
 postcss-attribute-case-insensitive@^6.0.2:
   version "6.0.2"
-  resolved "https://registry.yarnpkg.com/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-6.0.2.tgz#e843091859323342e461878d201ee70278809e01"
+  resolved "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-6.0.2.tgz"
   integrity sha512-IRuCwwAAQbgaLhxQdQcIIK0dCVXg3XDUnzgKD8iwdiYdwU4rMWRWyl/W9/0nA4ihVpq5pyALiHB2veBJ0292pw==
   dependencies:
     postcss-selector-parser "^6.0.10"
 
 postcss-calc@^8.2.3:
   version "8.2.4"
-  resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-8.2.4.tgz#77b9c29bfcbe8a07ff6693dc87050828889739a5"
+  resolved "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz"
   integrity sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==
   dependencies:
     postcss-selector-parser "^6.0.9"
     postcss-value-parser "^4.2.0"
 
-postcss-calc@^9.0.0:
+postcss-calc@^9.0.1:
   version "9.0.1"
-  resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-9.0.1.tgz#a744fd592438a93d6de0f1434c572670361eb6c6"
+  resolved "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz"
   integrity sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==
   dependencies:
     postcss-selector-parser "^6.0.11"
@@ -7681,36 +7686,38 @@ postcss-calc@^9.0.0:
 
 postcss-clamp@^4.1.0:
   version "4.1.0"
-  resolved "https://registry.yarnpkg.com/postcss-clamp/-/postcss-clamp-4.1.0.tgz#7263e95abadd8c2ba1bd911b0b5a5c9c93e02363"
+  resolved "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz"
   integrity sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==
   dependencies:
     postcss-value-parser "^4.2.0"
 
-postcss-color-functional-notation@^5.1.0:
-  version "5.1.0"
-  resolved "https://registry.yarnpkg.com/postcss-color-functional-notation/-/postcss-color-functional-notation-5.1.0.tgz#4d284ddf3dfac8bb68f781cd46bbfecfc8e8a09c"
-  integrity sha512-w2R4py6zrVE1U7FwNaAc76tNQlG9GLkrBbcFw+VhUjyDDiV28vfZG+l4LyPmpoQpeSJVtu8VgNjE8Jv5SpC7dQ==
+postcss-color-functional-notation@^6.0.2:
+  version "6.0.4"
+  resolved "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.4.tgz"
+  integrity sha512-YBzfVvVUNR4U3N0imzU1NPKCuwxzfHJkEP6imJxzsJ8LozRKeej9mWmg9Ef1ovJdb0xrGTRVzUxgTrMun5iw/Q==
   dependencies:
-    "@csstools/postcss-progressive-custom-properties" "^2.3.0"
-    postcss-value-parser "^4.2.0"
+    "@csstools/css-color-parser" "^1.5.1"
+    "@csstools/css-parser-algorithms" "^2.5.0"
+    "@csstools/css-tokenizer" "^2.2.3"
+    "@csstools/postcss-progressive-custom-properties" "^3.0.3"
 
 postcss-color-hex-alpha@^9.0.2:
   version "9.0.2"
-  resolved "https://registry.yarnpkg.com/postcss-color-hex-alpha/-/postcss-color-hex-alpha-9.0.2.tgz#6d3ed50342802469880981a1999515d003ff7d79"
+  resolved "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-9.0.2.tgz"
   integrity sha512-SfPjgr//VQ/DOCf80STIAsdAs7sbIbxATvVmd+Ec7JvR8onz9pjawhq3BJM3Pie40EE3TyB0P6hft16D33Nlyg==
   dependencies:
     postcss-value-parser "^4.2.0"
 
-postcss-color-rebeccapurple@^8.0.2:
-  version "8.0.2"
-  resolved "https://registry.yarnpkg.com/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-8.0.2.tgz#c0f2dcf1ef4dd393314920aa181cca8c390a2648"
-  integrity sha512-xWf/JmAxVoB5bltHpXk+uGRoGFwu4WDAR7210el+iyvTdqiKpDhtcT8N3edXMoVJY0WHFMrKMUieql/wRNiXkw==
+postcss-color-rebeccapurple@^9.0.1:
+  version "9.0.2"
+  resolved "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-9.0.2.tgz"
+  integrity sha512-f+RDEAPW2m8UbJWkSpRfV+QxhSaQhDMihI75DVGJJh4oRIoegjheeRtINFJum9D8BqGJcvD4GLjggTvCwZ4zuA==
   dependencies:
     postcss-value-parser "^4.2.0"
 
 postcss-colormin@^5.3.1:
   version "5.3.1"
-  resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.3.1.tgz#86c27c26ed6ba00d96c79e08f3ffb418d1d1988f"
+  resolved "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz"
   integrity sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==
   dependencies:
     browserslist "^4.21.4"
@@ -7718,140 +7725,140 @@ postcss-colormin@^5.3.1:
     colord "^2.9.1"
     postcss-value-parser "^4.2.0"
 
-postcss-colormin@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-6.0.0.tgz#d4250652e952e1c0aca70c66942da93d3cdeaafe"
-  integrity sha512-EuO+bAUmutWoZYgHn2T1dG1pPqHU6L4TjzPlu4t1wZGXQ/fxV16xg2EJmYi0z+6r+MGV1yvpx1BHkUaRrPa2bw==
+postcss-colormin@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.2.tgz"
+  integrity sha512-TXKOxs9LWcdYo5cgmcSHPkyrLAh86hX1ijmyy6J8SbOhyv6ua053M3ZAM/0j44UsnQNIWdl8gb5L7xX2htKeLw==
   dependencies:
-    browserslist "^4.21.4"
+    browserslist "^4.22.2"
     caniuse-api "^3.0.0"
     colord "^2.9.1"
     postcss-value-parser "^4.2.0"
 
 postcss-convert-values@^5.1.3:
   version "5.1.3"
-  resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz#04998bb9ba6b65aa31035d669a6af342c5f9d393"
+  resolved "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz"
   integrity sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==
   dependencies:
     browserslist "^4.21.4"
     postcss-value-parser "^4.2.0"
 
-postcss-convert-values@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-6.0.0.tgz#ec94a954957e5c3f78f0e8f65dfcda95280b8996"
-  integrity sha512-U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw==
+postcss-convert-values@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.2.tgz"
+  integrity sha512-aeBmaTnGQ+NUSVQT8aY0sKyAD/BaLJenEKZ03YK0JnDE1w1Rr8XShoxdal2V2H26xTJKr3v5haByOhJuyT4UYw==
   dependencies:
-    browserslist "^4.21.4"
+    browserslist "^4.22.2"
     postcss-value-parser "^4.2.0"
 
-postcss-custom-media@^9.1.5:
-  version "9.1.5"
-  resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-9.1.5.tgz#20c5822dd15155d768f8dd84e07a6ffd5d01b054"
-  integrity sha512-GStyWMz7Qbo/Gtw1xVspzVSX8eipgNg4lpsO3CAeY4/A1mzok+RV6MCv3fg62trWijh/lYEj6vps4o8JcBBpDA==
+postcss-custom-media@^10.0.2:
+  version "10.0.2"
+  resolved "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-10.0.2.tgz"
+  integrity sha512-zcEFNRmDm2fZvTPdI1pIW3W//UruMcLosmMiCdpQnrCsTRzWlKQPYMa1ud9auL0BmrryKK1+JjIGn19K0UjO/w==
   dependencies:
-    "@csstools/cascade-layer-name-parser" "^1.0.2"
-    "@csstools/css-parser-algorithms" "^2.2.0"
-    "@csstools/css-tokenizer" "^2.1.1"
-    "@csstools/media-query-list-parser" "^2.1.1"
+    "@csstools/cascade-layer-name-parser" "^1.0.5"
+    "@csstools/css-parser-algorithms" "^2.3.2"
+    "@csstools/css-tokenizer" "^2.2.1"
+    "@csstools/media-query-list-parser" "^2.1.5"
 
-postcss-custom-properties@^13.2.0:
-  version "13.2.0"
-  resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-13.2.0.tgz#5afac4f38bcfe4cedb834fd6daf65e302940cb81"
-  integrity sha512-UYiPqbqmVayyv56y0mtGhvUKZClflwE9cTTmPaqEX8fOVjVwsotqKGYtJXSLxrJLwf9tt7ka+Luyh1ZAOhGHWA==
+postcss-custom-properties@^13.3.2:
+  version "13.3.4"
+  resolved "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-13.3.4.tgz"
+  integrity sha512-9YN0gg9sG3OH+Z9xBrp2PWRb+O4msw+5Sbp3ZgqrblrwKspXVQe5zr5sVqi43gJGwW/Rv1A483PRQUzQOEewvA==
   dependencies:
-    "@csstools/cascade-layer-name-parser" "^1.0.2"
-    "@csstools/css-parser-algorithms" "^2.1.1"
-    "@csstools/css-tokenizer" "^2.1.1"
+    "@csstools/cascade-layer-name-parser" "^1.0.7"
+    "@csstools/css-parser-algorithms" "^2.5.0"
+    "@csstools/css-tokenizer" "^2.2.3"
     postcss-value-parser "^4.2.0"
 
-postcss-custom-selectors@^7.1.3:
-  version "7.1.3"
-  resolved "https://registry.yarnpkg.com/postcss-custom-selectors/-/postcss-custom-selectors-7.1.3.tgz#047e2bc4726fe8e448c23047c99785fcdbe1ef87"
-  integrity sha512-GTVscax6O/8s7agFF0HsOoIyjrnAbLjgCUle8tn+0oDGJuVx7p56U7ClSRoC49poxFuMfu2B4Q8GnxSCOeuFKw==
+postcss-custom-selectors@^7.1.6:
+  version "7.1.6"
+  resolved "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-7.1.6.tgz"
+  integrity sha512-svsjWRaxqL3vAzv71dV0/65P24/FB8TbPX+lWyyf9SZ7aZm4S4NhCn7N3Bg+Z5sZunG3FS8xQ80LrCU9hb37cw==
   dependencies:
-    "@csstools/cascade-layer-name-parser" "^1.0.2"
-    "@csstools/css-parser-algorithms" "^2.1.1"
-    "@csstools/css-tokenizer" "^2.1.1"
-    postcss-selector-parser "^6.0.4"
+    "@csstools/cascade-layer-name-parser" "^1.0.5"
+    "@csstools/css-parser-algorithms" "^2.3.2"
+    "@csstools/css-tokenizer" "^2.2.1"
+    postcss-selector-parser "^6.0.13"
 
-postcss-dir-pseudo-class@^7.0.2:
-  version "7.0.2"
-  resolved "https://registry.yarnpkg.com/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-7.0.2.tgz#71618b7eb4abe067845d11b3c8f322760c9b3e88"
-  integrity sha512-cMnslilYxBf9k3qejnovrUONZx1rXeUZJw06fgIUBzABJe3D2LiLL5WAER7Imt3nrkaIgG05XZBztueLEf5P8w==
+postcss-dir-pseudo-class@^8.0.0:
+  version "8.0.1"
+  resolved "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-8.0.1.tgz"
+  integrity sha512-uULohfWBBVoFiZXgsQA24JV6FdKIidQ+ZqxOouhWwdE+qJlALbkS5ScB43ZTjPK+xUZZhlaO/NjfCt5h4IKUfw==
   dependencies:
-    postcss-selector-parser "^6.0.10"
+    postcss-selector-parser "^6.0.13"
 
 postcss-discard-comments@^5.1.2:
   version "5.1.2"
-  resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz#8df5e81d2925af2780075840c1526f0660e53696"
+  resolved "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz"
   integrity sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==
 
-postcss-discard-comments@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-6.0.0.tgz#9ca335e8b68919f301b24ba47dde226a42e535fe"
-  integrity sha512-p2skSGqzPMZkEQvJsgnkBhCn8gI7NzRH2683EEjrIkoMiwRELx68yoUJ3q3DGSGuQ8Ug9Gsn+OuDr46yfO+eFw==
+postcss-discard-comments@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.1.tgz"
+  integrity sha512-f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg==
 
 postcss-discard-duplicates@^5.1.0:
   version "5.1.0"
-  resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz#9eb4fe8456706a4eebd6d3b7b777d07bad03e848"
+  resolved "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz"
   integrity sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==
 
-postcss-discard-duplicates@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.0.tgz#c26177a6c33070922e67e9a92c0fd23d443d1355"
-  integrity sha512-bU1SXIizMLtDW4oSsi5C/xHKbhLlhek/0/yCnoMQany9k3nPBq+Ctsv/9oMmyqbR96HYHxZcHyK2HR5P/mqoGA==
+postcss-discard-duplicates@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.1.tgz"
+  integrity sha512-1hvUs76HLYR8zkScbwyJ8oJEugfPV+WchpnA+26fpJ7Smzs51CzGBHC32RS03psuX/2l0l0UKh2StzNxOrKCYg==
 
 postcss-discard-empty@^5.1.1:
   version "5.1.1"
-  resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz#e57762343ff7f503fe53fca553d18d7f0c369c6c"
+  resolved "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz"
   integrity sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==
 
-postcss-discard-empty@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-6.0.0.tgz#06c1c4fce09e22d2a99e667c8550eb8a3a1b9aee"
-  integrity sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ==
+postcss-discard-empty@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.1.tgz"
+  integrity sha512-yitcmKwmVWtNsrrRqGJ7/C0YRy53i0mjexBDQ9zYxDwTWVBgbU4+C9jIZLmQlTDT9zhml+u0OMFJh8+31krmOg==
 
 postcss-discard-overridden@^5.1.0:
   version "5.1.0"
-  resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz#7e8c5b53325747e9d90131bb88635282fb4a276e"
+  resolved "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz"
   integrity sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==
 
-postcss-discard-overridden@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-6.0.0.tgz#49c5262db14e975e349692d9024442de7cd8e234"
-  integrity sha512-4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw==
+postcss-discard-overridden@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.1.tgz"
+  integrity sha512-qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA==
 
-postcss-double-position-gradients@^4.0.4:
-  version "4.0.4"
-  resolved "https://registry.yarnpkg.com/postcss-double-position-gradients/-/postcss-double-position-gradients-4.0.4.tgz#57850aceb94a05778e7fdf31767a5b2a78f2be62"
-  integrity sha512-nUAbUXURemLXIrl4Xoia2tiu5z/n8sY+BVDZApoeT9BlpByyrp02P/lFCRrRvZ/zrGRE+MOGLhk8o7VcMCtPtQ==
+postcss-double-position-gradients@^5.0.2:
+  version "5.0.3"
+  resolved "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-5.0.3.tgz"
+  integrity sha512-QKYpwmaSm6HcdS0ndAuWSNNMv78R1oSySoh3mYBmctHWr2KWcwPJVakdOyU4lvFVW0GRu9wfIQwGeM4p3xU9ow==
   dependencies:
-    "@csstools/postcss-progressive-custom-properties" "^2.3.0"
+    "@csstools/postcss-progressive-custom-properties" "^3.0.3"
     postcss-value-parser "^4.2.0"
 
-postcss-focus-visible@^8.0.2:
-  version "8.0.2"
-  resolved "https://registry.yarnpkg.com/postcss-focus-visible/-/postcss-focus-visible-8.0.2.tgz#a7ac26ffe3e9c2bd17d7200d75e2d79ee8110891"
-  integrity sha512-f/Vd+EC/GaKElknU59esVcRYr/Y3t1ZAQyL4u2xSOgkDy4bMCmG7VP5cGvj3+BTLNE9ETfEuz2nnt4qkZwTTeA==
+postcss-focus-visible@^9.0.0:
+  version "9.0.1"
+  resolved "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-9.0.1.tgz"
+  integrity sha512-N2VQ5uPz3Z9ZcqI5tmeholn4d+1H14fKXszpjogZIrFbhaq0zNAtq8sAnw6VLiqGbL8YBzsnu7K9bBkTqaRimQ==
   dependencies:
-    postcss-selector-parser "^6.0.10"
+    postcss-selector-parser "^6.0.13"
 
-postcss-focus-within@^7.0.2:
-  version "7.0.2"
-  resolved "https://registry.yarnpkg.com/postcss-focus-within/-/postcss-focus-within-7.0.2.tgz#5d2c866030e66ed22b204c9506de640943310b1c"
-  integrity sha512-AHAJ89UQBcqBvFgQJE9XasGuwMNkKsGj4D/f9Uk60jFmEBHpAL14DrnSk3Rj+SwZTr/WUG+mh+Rvf8fid/346w==
+postcss-focus-within@^8.0.0:
+  version "8.0.1"
+  resolved "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-8.0.1.tgz"
+  integrity sha512-NFU3xcY/xwNaapVb+1uJ4n23XImoC86JNwkY/uduytSl2s9Ekc2EpzmRR63+ExitnW3Mab3Fba/wRPCT5oDILA==
   dependencies:
-    postcss-selector-parser "^6.0.10"
+    postcss-selector-parser "^6.0.13"
 
 postcss-font-variant@^5.0.0:
   version "5.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz#efd59b4b7ea8bb06127f2d031bfbb7f24d32fa66"
+  resolved "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz"
   integrity sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==
 
-postcss-gap-properties@^4.0.1:
-  version "4.0.1"
-  resolved "https://registry.yarnpkg.com/postcss-gap-properties/-/postcss-gap-properties-4.0.1.tgz#0347d6a84a46bfbe88bedc542cc4b354e04a8338"
-  integrity sha512-V5OuQGw4lBumPlwHWk/PRfMKjaq/LTGR4WDTemIMCaMevArVfCCA9wBJiL1VjDAd+rzuCIlkRoRvDsSiAaZ4Fg==
+postcss-gap-properties@^5.0.0:
+  version "5.0.1"
+  resolved "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-5.0.1.tgz"
+  integrity sha512-k2z9Cnngc24c0KF4MtMuDdToROYqGMMUQGcE6V0odwjHyOHtaDBlLeRBV70y9/vF7KIbShrTRZ70JjsI1BZyWw==
 
 postcss-html@^0.36.0:
   version "0.36.0"
@@ -7860,43 +7867,38 @@ postcss-html@^0.36.0:
   dependencies:
     htmlparser2 "^3.10.0"
 
-postcss-image-set-function@^5.0.2:
-  version "5.0.2"
-  resolved "https://registry.yarnpkg.com/postcss-image-set-function/-/postcss-image-set-function-5.0.2.tgz#088e0f535f43e74d6ea8033ff7b0482e2735ea6e"
-  integrity sha512-Sszjwo0ubETX0Fi5MvpYzsONwrsjeabjMoc5YqHvURFItXgIu3HdCjcVuVKGMPGzKRhgaknmdM5uVWInWPJmeg==
+postcss-image-set-function@^6.0.1:
+  version "6.0.2"
+  resolved "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-6.0.2.tgz"
+  integrity sha512-/O1xwqpJiz/apxGQi7UUfv1xUcorvkHZfvCYHPpRxxZj2WvjD0rg0+/+c+u5/Do5CpUg3XvfYxMrhcnjW1ArDQ==
   dependencies:
     postcss-value-parser "^4.2.0"
 
 postcss-import-resolver@^2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-import-resolver/-/postcss-import-resolver-2.0.0.tgz#95c61ac5489047bd93ff42a9cd405cfe9041e2c0"
+  resolved "https://registry.npmjs.org/postcss-import-resolver/-/postcss-import-resolver-2.0.0.tgz"
   integrity sha512-y001XYgGvVwgxyxw9J1a5kqM/vtmIQGzx34g0A0Oy44MFcy/ZboZw1hu/iN3VYFjSTRzbvd7zZJJz0Kh0AGkTw==
   dependencies:
     enhanced-resolve "^4.1.1"
 
 postcss-import@^15.1.0:
   version "15.1.0"
-  resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-15.1.0.tgz#41c64ed8cc0e23735a9698b3249ffdbf704adc70"
+  resolved "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz"
   integrity sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==
   dependencies:
     postcss-value-parser "^4.0.0"
     read-cache "^1.0.0"
     resolve "^1.1.7"
 
-postcss-initial@^4.0.1:
-  version "4.0.1"
-  resolved "https://registry.yarnpkg.com/postcss-initial/-/postcss-initial-4.0.1.tgz#529f735f72c5724a0fb30527df6fb7ac54d7de42"
-  integrity sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==
-
-postcss-lab-function@^5.2.3:
-  version "5.2.3"
-  resolved "https://registry.yarnpkg.com/postcss-lab-function/-/postcss-lab-function-5.2.3.tgz#52ae2b90738c3aa2934519242cfc0a4d44ace29f"
-  integrity sha512-fi32AYKzji5/rvgxo5zXHFvAYBw0u0OzELbeCNjEZVLUir18Oj+9RmNphtM8QdLUaUnrfx8zy8vVYLmFLkdmrQ==
+postcss-lab-function@^6.0.7:
+  version "6.0.9"
+  resolved "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-6.0.9.tgz"
+  integrity sha512-PKFAVTBEWJYsoSTD7Kp/OzeiMsXaLX39Pv75XgUyF5VrbMfeTw+JqCGsvDP3dPhclh6BemdCFHcjXBG9gO4UCg==
   dependencies:
-    "@csstools/css-color-parser" "^1.2.0"
-    "@csstools/css-parser-algorithms" "^2.1.1"
-    "@csstools/css-tokenizer" "^2.1.1"
-    "@csstools/postcss-progressive-custom-properties" "^2.3.0"
+    "@csstools/css-color-parser" "^1.5.1"
+    "@csstools/css-parser-algorithms" "^2.5.0"
+    "@csstools/css-tokenizer" "^2.2.3"
+    "@csstools/postcss-progressive-custom-properties" "^3.0.3"
 
 postcss-less@^3.1.4:
   version "3.1.4"
@@ -7907,7 +7909,7 @@ postcss-less@^3.1.4:
 
 postcss-loader@^4.3.0:
   version "4.3.0"
-  resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-4.3.0.tgz#2c4de9657cd4f07af5ab42bd60a673004da1b8cc"
+  resolved "https://registry.npmjs.org/postcss-loader/-/postcss-loader-4.3.0.tgz"
   integrity sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==
   dependencies:
     cosmiconfig "^7.0.0"
@@ -7916,37 +7918,37 @@ postcss-loader@^4.3.0:
     schema-utils "^3.0.0"
     semver "^7.3.4"
 
-postcss-logical@^6.2.0:
-  version "6.2.0"
-  resolved "https://registry.yarnpkg.com/postcss-logical/-/postcss-logical-6.2.0.tgz#85e49cfee3ffda839d4befcab9f70c70a7bb337a"
-  integrity sha512-aqlfKGaY0nnbgI9jwUikp4gJKBqcH5noU/EdnIVceghaaDPYhZuyJVxlvWNy55tlTG5tunRKCTAX9yljLiFgmw==
+postcss-logical@^7.0.0:
+  version "7.0.1"
+  resolved "https://registry.npmjs.org/postcss-logical/-/postcss-logical-7.0.1.tgz"
+  integrity sha512-8GwUQZE0ri0K0HJHkDv87XOLC8DE0msc+HoWLeKdtjDZEwpZ5xuK3QdV6FhmHSQW40LPkg43QzvATRAI3LsRkg==
   dependencies:
     postcss-value-parser "^4.2.0"
 
 postcss-media-query-parser@^0.2.3:
   version "0.2.3"
   resolved "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz"
-  integrity sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ=
+  integrity "sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ= sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig=="
 
 postcss-merge-longhand@^5.1.7:
   version "5.1.7"
-  resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz#24a1bdf402d9ef0e70f568f39bdc0344d568fb16"
+  resolved "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz"
   integrity sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==
   dependencies:
     postcss-value-parser "^4.2.0"
     stylehacks "^5.1.1"
 
-postcss-merge-longhand@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-6.0.0.tgz#6f627b27db939bce316eaa97e22400267e798d69"
-  integrity sha512-4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg==
+postcss-merge-longhand@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.2.tgz"
+  integrity sha512-+yfVB7gEM8SrCo9w2lCApKIEzrTKl5yS1F4yGhV3kSim6JzbfLGJyhR1B6X+6vOT0U33Mgx7iv4X9MVWuaSAfw==
   dependencies:
     postcss-value-parser "^4.2.0"
-    stylehacks "^6.0.0"
+    stylehacks "^6.0.2"
 
 postcss-merge-rules@^5.1.4:
   version "5.1.4"
-  resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz#2f26fa5cacb75b1402e213789f6766ae5e40313c"
+  resolved "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz"
   integrity sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==
   dependencies:
     browserslist "^4.21.4"
@@ -7954,88 +7956,88 @@ postcss-merge-rules@^5.1.4:
     cssnano-utils "^3.1.0"
     postcss-selector-parser "^6.0.5"
 
-postcss-merge-rules@^6.0.1:
-  version "6.0.1"
-  resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-6.0.1.tgz#39f165746404e646c0f5c510222ccde4824a86aa"
-  integrity sha512-a4tlmJIQo9SCjcfiCcCMg/ZCEe0XTkl/xK0XHBs955GWg9xDX3NwP9pwZ78QUOWB8/0XCjZeJn98Dae0zg6AAw==
+postcss-merge-rules@^6.0.3:
+  version "6.0.3"
+  resolved "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.3.tgz"
+  integrity sha512-yfkDqSHGohy8sGYIJwBmIGDv4K4/WrJPX355XrxQb/CSsT4Kc/RxDi6akqn5s9bap85AWgv21ArcUWwWdGNSHA==
   dependencies:
-    browserslist "^4.21.4"
+    browserslist "^4.22.2"
     caniuse-api "^3.0.0"
-    cssnano-utils "^4.0.0"
-    postcss-selector-parser "^6.0.5"
+    cssnano-utils "^4.0.1"
+    postcss-selector-parser "^6.0.15"
 
 postcss-minify-font-values@^5.1.0:
   version "5.1.0"
-  resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz#f1df0014a726083d260d3bd85d7385fb89d1f01b"
+  resolved "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz"
   integrity sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==
   dependencies:
     postcss-value-parser "^4.2.0"
 
-postcss-minify-font-values@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-6.0.0.tgz#68d4a028f9fa5f61701974724b2cc9445d8e6070"
-  integrity sha512-zNRAVtyh5E8ndZEYXA4WS8ZYsAp798HiIQ1V2UF/C/munLp2r1UGHwf1+6JFu7hdEhJFN+W1WJQKBrtjhFgEnA==
+postcss-minify-font-values@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.1.tgz"
+  integrity sha512-tIwmF1zUPoN6xOtA/2FgVk1ZKrLcCvE0dpZLtzyyte0j9zUeB8RTbCqrHZGjJlxOvNWKMYtunLrrl7HPOiR46w==
   dependencies:
     postcss-value-parser "^4.2.0"
 
 postcss-minify-gradients@^5.1.1:
   version "5.1.1"
-  resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz#f1fe1b4f498134a5068240c2f25d46fcd236ba2c"
+  resolved "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz"
   integrity sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==
   dependencies:
     colord "^2.9.1"
     cssnano-utils "^3.1.0"
     postcss-value-parser "^4.2.0"
 
-postcss-minify-gradients@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-6.0.0.tgz#22b5c88cc63091dadbad34e31ff958404d51d679"
-  integrity sha512-wO0F6YfVAR+K1xVxF53ueZJza3L+R3E6cp0VwuXJQejnNUH0DjcAFe3JEBeTY1dLwGa0NlDWueCA1VlEfiKgAA==
+postcss-minify-gradients@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.1.tgz"
+  integrity sha512-M1RJWVjd6IOLPl1hYiOd5HQHgpp6cvJVLrieQYS9y07Yo8itAr6jaekzJphaJFR0tcg4kRewCk3kna9uHBxn/w==
   dependencies:
     colord "^2.9.1"
-    cssnano-utils "^4.0.0"
+    cssnano-utils "^4.0.1"
     postcss-value-parser "^4.2.0"
 
 postcss-minify-params@^5.1.4:
   version "5.1.4"
-  resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz#c06a6c787128b3208b38c9364cfc40c8aa5d7352"
+  resolved "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz"
   integrity sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==
   dependencies:
     browserslist "^4.21.4"
     cssnano-utils "^3.1.0"
     postcss-value-parser "^4.2.0"
 
-postcss-minify-params@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-6.0.0.tgz#2b3a85a9e3b990d7a16866f430f5fd1d5961b539"
-  integrity sha512-Fz/wMQDveiS0n5JPcvsMeyNXOIMrwF88n7196puSuQSWSa+/Ofc1gDOSY2xi8+A4PqB5dlYCKk/WfqKqsI+ReQ==
+postcss-minify-params@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.2.tgz"
+  integrity sha512-zwQtbrPEBDj+ApELZ6QylLf2/c5zmASoOuA4DzolyVGdV38iR2I5QRMsZcHkcdkZzxpN8RS4cN7LPskOkTwTZw==
   dependencies:
-    browserslist "^4.21.4"
-    cssnano-utils "^4.0.0"
+    browserslist "^4.22.2"
+    cssnano-utils "^4.0.1"
     postcss-value-parser "^4.2.0"
 
 postcss-minify-selectors@^5.2.1:
   version "5.2.1"
-  resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz#d4e7e6b46147b8117ea9325a915a801d5fe656c6"
+  resolved "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz"
   integrity sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==
   dependencies:
     postcss-selector-parser "^6.0.5"
 
-postcss-minify-selectors@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-6.0.0.tgz#5046c5e8680a586e5a0cad52cc9aa36d6be5bda2"
-  integrity sha512-ec/q9JNCOC2CRDNnypipGfOhbYPuUkewGwLnbv6omue/PSASbHSU7s6uSQ0tcFRVv731oMIx8k0SP4ZX6be/0g==
+postcss-minify-selectors@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.2.tgz"
+  integrity sha512-0b+m+w7OAvZejPQdN2GjsXLv5o0jqYHX3aoV0e7RBKPCsB7TYG5KKWBFhGnB/iP3213Ts8c5H4wLPLMm7z28Sg==
   dependencies:
-    postcss-selector-parser "^6.0.5"
+    postcss-selector-parser "^6.0.15"
 
 postcss-modules-extract-imports@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d"
+  resolved "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz"
   integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==
 
 postcss-modules-local-by-default@^4.0.0:
   version "4.0.3"
-  resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz#b08eb4f083050708998ba2c6061b50c2870ca524"
+  resolved "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz"
   integrity sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==
   dependencies:
     icss-utils "^5.0.0"
@@ -8044,299 +8046,303 @@ postcss-modules-local-by-default@^4.0.0:
 
 postcss-modules-scope@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06"
+  resolved "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz"
   integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==
   dependencies:
     postcss-selector-parser "^6.0.4"
 
 postcss-modules-values@^4.0.0:
   version "4.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c"
+  resolved "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz"
   integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==
   dependencies:
     icss-utils "^5.0.0"
 
-postcss-nesting@^11.3.0:
-  version "11.3.0"
-  resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-11.3.0.tgz#f0a16ecd55555770d41974236c90918447355a5f"
-  integrity sha512-JlS10AQm/RzyrUGgl5irVkAlZYTJ99mNueUl+Qab+TcHhVedLiylWVkKBhRale+rS9yWIJK48JVzQlq3LcSdeA==
+postcss-nesting@^12.0.1:
+  version "12.0.2"
+  resolved "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-12.0.2.tgz"
+  integrity sha512-63PpJHSeNs93S3ZUIyi+7kKx4JqOIEJ6QYtG3x+0qA4J03+4n0iwsyA1GAHyWxsHYljQS4/4ZK1o2sMi70b5wQ==
   dependencies:
-    "@csstools/selector-specificity" "^2.0.0"
-    postcss-selector-parser "^6.0.10"
+    "@csstools/selector-specificity" "^3.0.1"
+    postcss-selector-parser "^6.0.13"
 
 postcss-normalize-charset@^5.1.0:
   version "5.1.0"
-  resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz#9302de0b29094b52c259e9b2cf8dc0879879f0ed"
+  resolved "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz"
   integrity sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==
 
-postcss-normalize-charset@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-6.0.0.tgz#36cc12457259064969fb96f84df491652a4b0975"
-  integrity sha512-cqundwChbu8yO/gSWkuFDmKrCZ2vJzDAocheT2JTd0sFNA4HMGoKMfbk2B+J0OmO0t5GUkiAkSM5yF2rSLUjgQ==
+postcss-normalize-charset@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.1.tgz"
+  integrity sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==
 
 postcss-normalize-display-values@^5.1.0:
   version "5.1.0"
-  resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz#72abbae58081960e9edd7200fcf21ab8325c3da8"
+  resolved "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz"
   integrity sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==
   dependencies:
     postcss-value-parser "^4.2.0"
 
-postcss-normalize-display-values@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.0.tgz#8d2961415078644d8c6bbbdaf9a2fdd60f546cd4"
-  integrity sha512-Qyt5kMrvy7dJRO3OjF7zkotGfuYALETZE+4lk66sziWSPzlBEt7FrUshV6VLECkI4EN8Z863O6Nci4NXQGNzYw==
+postcss-normalize-display-values@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.1.tgz"
+  integrity sha512-mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw==
   dependencies:
     postcss-value-parser "^4.2.0"
 
 postcss-normalize-positions@^5.1.1:
   version "5.1.1"
-  resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz#ef97279d894087b59325b45c47f1e863daefbb92"
+  resolved "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz"
   integrity sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==
   dependencies:
     postcss-value-parser "^4.2.0"
 
-postcss-normalize-positions@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-6.0.0.tgz#25b96df99a69f8925f730eaee0be74416865e301"
-  integrity sha512-mPCzhSV8+30FZyWhxi6UoVRYd3ZBJgTRly4hOkaSifo0H+pjDYcii/aVT4YE6QpOil15a5uiv6ftnY3rm0igPg==
+postcss-normalize-positions@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.1.tgz"
+  integrity sha512-HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg==
   dependencies:
     postcss-value-parser "^4.2.0"
 
 postcss-normalize-repeat-style@^5.1.1:
   version "5.1.1"
-  resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz#e9eb96805204f4766df66fd09ed2e13545420fb2"
+  resolved "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz"
   integrity sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==
   dependencies:
     postcss-value-parser "^4.2.0"
 
-postcss-normalize-repeat-style@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.0.tgz#ddf30ad8762feb5b1eb97f39f251acd7b8353299"
-  integrity sha512-50W5JWEBiOOAez2AKBh4kRFm2uhrT3O1Uwdxz7k24aKtbD83vqmcVG7zoIwo6xI2FZ/HDlbrCopXhLeTpQib1A==
+postcss-normalize-repeat-style@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.1.tgz"
+  integrity sha512-Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ==
   dependencies:
     postcss-value-parser "^4.2.0"
 
 postcss-normalize-string@^5.1.0:
   version "5.1.0"
-  resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz#411961169e07308c82c1f8c55f3e8a337757e228"
+  resolved "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz"
   integrity sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==
   dependencies:
     postcss-value-parser "^4.2.0"
 
-postcss-normalize-string@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-6.0.0.tgz#948282647a51e409d69dde7910f0ac2ff97cb5d8"
-  integrity sha512-KWkIB7TrPOiqb8ZZz6homet2KWKJwIlysF5ICPZrXAylGe2hzX/HSf4NTX2rRPJMAtlRsj/yfkrWGavFuB+c0w==
+postcss-normalize-string@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.1.tgz"
+  integrity sha512-5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg==
   dependencies:
     postcss-value-parser "^4.2.0"
 
 postcss-normalize-timing-functions@^5.1.0:
   version "5.1.0"
-  resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz#d5614410f8f0b2388e9f240aa6011ba6f52dafbb"
+  resolved "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz"
   integrity sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==
   dependencies:
     postcss-value-parser "^4.2.0"
 
-postcss-normalize-timing-functions@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.0.tgz#5f13e650b8c43351989fc5de694525cc2539841c"
-  integrity sha512-tpIXWciXBp5CiFs8sem90IWlw76FV4oi6QEWfQwyeREVwUy39VSeSqjAT7X0Qw650yAimYW5gkl2Gd871N5SQg==
+postcss-normalize-timing-functions@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.1.tgz"
+  integrity sha512-4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g==
   dependencies:
     postcss-value-parser "^4.2.0"
 
 postcss-normalize-unicode@^5.1.1:
   version "5.1.1"
-  resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz#f67297fca3fea7f17e0d2caa40769afc487aa030"
+  resolved "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz"
   integrity sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==
   dependencies:
     browserslist "^4.21.4"
     postcss-value-parser "^4.2.0"
 
-postcss-normalize-unicode@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.0.tgz#741b3310f874616bdcf07764f5503695d3604730"
-  integrity sha512-ui5crYkb5ubEUDugDc786L/Me+DXp2dLg3fVJbqyAl0VPkAeALyAijF2zOsnZyaS1HyfPuMH0DwyY18VMFVNkg==
+postcss-normalize-unicode@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.2.tgz"
+  integrity sha512-Ff2VdAYCTGyMUwpevTZPZ4w0+mPjbZzLLyoLh/RMpqUqeQKZ+xMm31hkxBavDcGKcxm6ACzGk0nBfZ8LZkStKA==
   dependencies:
-    browserslist "^4.21.4"
+    browserslist "^4.22.2"
     postcss-value-parser "^4.2.0"
 
 postcss-normalize-url@^5.1.0:
   version "5.1.0"
-  resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz#ed9d88ca82e21abef99f743457d3729a042adcdc"
+  resolved "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz"
   integrity sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==
   dependencies:
     normalize-url "^6.0.1"
     postcss-value-parser "^4.2.0"
 
-postcss-normalize-url@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-6.0.0.tgz#d0a31e962a16401fb7deb7754b397a323fb650b4"
-  integrity sha512-98mvh2QzIPbb02YDIrYvAg4OUzGH7s1ZgHlD3fIdTHLgPLRpv1ZTKJDnSAKr4Rt21ZQFzwhGMXxpXlfrUBKFHw==
+postcss-normalize-url@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.1.tgz"
+  integrity sha512-jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ==
   dependencies:
     postcss-value-parser "^4.2.0"
 
 postcss-normalize-whitespace@^5.1.1:
   version "5.1.1"
-  resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz#08a1a0d1ffa17a7cc6efe1e6c9da969cc4493cfa"
+  resolved "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz"
   integrity sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==
   dependencies:
     postcss-value-parser "^4.2.0"
 
-postcss-normalize-whitespace@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.0.tgz#accb961caa42e25ca4179b60855b79b1f7129d4d"
-  integrity sha512-7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw==
+postcss-normalize-whitespace@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.1.tgz"
+  integrity sha512-76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA==
   dependencies:
     postcss-value-parser "^4.2.0"
 
 postcss-opacity-percentage@^2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-opacity-percentage/-/postcss-opacity-percentage-2.0.0.tgz#c0a56060cd4586e3f954dbde1efffc2deed53002"
+  resolved "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-2.0.0.tgz"
   integrity sha512-lyDrCOtntq5Y1JZpBFzIWm2wG9kbEdujpNt4NLannF+J9c8CgFIzPa80YQfdza+Y+yFfzbYj/rfoOsYsooUWTQ==
 
 postcss-ordered-values@^5.1.3:
   version "5.1.3"
-  resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz#b6fd2bd10f937b23d86bc829c69e7732ce76ea38"
+  resolved "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz"
   integrity sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==
   dependencies:
     cssnano-utils "^3.1.0"
     postcss-value-parser "^4.2.0"
 
-postcss-ordered-values@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-6.0.0.tgz#374704cdff25560d44061d17ba3c6308837a3218"
-  integrity sha512-K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg==
+postcss-ordered-values@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.1.tgz"
+  integrity sha512-XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA==
   dependencies:
-    cssnano-utils "^4.0.0"
+    cssnano-utils "^4.0.1"
     postcss-value-parser "^4.2.0"
 
-postcss-overflow-shorthand@^4.0.1:
-  version "4.0.1"
-  resolved "https://registry.yarnpkg.com/postcss-overflow-shorthand/-/postcss-overflow-shorthand-4.0.1.tgz#cb61ca24d8c4e1dbf14d85181b017cfa6953aa34"
-  integrity sha512-HQZ0qi/9iSYHW4w3ogNqVNr2J49DHJAl7r8O2p0Meip38jsdnRPgiDW7r/LlLrrMBMe3KHkvNtAV2UmRVxzLIg==
+postcss-overflow-shorthand@^5.0.0:
+  version "5.0.1"
+  resolved "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-5.0.1.tgz"
+  integrity sha512-XzjBYKLd1t6vHsaokMV9URBt2EwC9a7nDhpQpjoPk2HRTSQfokPfyAS/Q7AOrzUu6q+vp/GnrDBGuj/FCaRqrQ==
   dependencies:
     postcss-value-parser "^4.2.0"
 
 postcss-page-break@^3.0.4:
   version "3.0.4"
-  resolved "https://registry.yarnpkg.com/postcss-page-break/-/postcss-page-break-3.0.4.tgz#7fbf741c233621622b68d435babfb70dd8c1ee5f"
+  resolved "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz"
   integrity sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==
 
-postcss-place@^8.0.1:
-  version "8.0.1"
-  resolved "https://registry.yarnpkg.com/postcss-place/-/postcss-place-8.0.1.tgz#408d7a27e99192df51c95fe62a3a34def62aa66a"
-  integrity sha512-Ow2LedN8sL4pq8ubukO77phSVt4QyCm35ZGCYXKvRFayAwcpgB0sjNJglDoTuRdUL32q/ZC1VkPBo0AOEr4Uiw==
+postcss-place@^9.0.0:
+  version "9.0.1"
+  resolved "https://registry.npmjs.org/postcss-place/-/postcss-place-9.0.1.tgz"
+  integrity sha512-JfL+paQOgRQRMoYFc2f73pGuG/Aw3tt4vYMR6UA3cWVMxivviPTnMFnFTczUJOA4K2Zga6xgQVE+PcLs64WC8Q==
   dependencies:
     postcss-value-parser "^4.2.0"
 
-postcss-preset-env@^8.4.2:
-  version "8.5.1"
-  resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-8.5.1.tgz#f4f10fb5374514b80cc68b8937deb310a4f07415"
-  integrity sha512-qhWnJJjP6ArLUINWJ38t6Aftxnv9NW6cXK0NuwcLCcRilbuw72dSFLkCVUJeCfHGgJiKzX+pnhkGiki0PEynWg==
-  dependencies:
-    "@csstools/postcss-cascade-layers" "^3.0.1"
-    "@csstools/postcss-color-function" "^2.2.3"
-    "@csstools/postcss-color-mix-function" "^1.0.3"
-    "@csstools/postcss-font-format-keywords" "^2.0.2"
-    "@csstools/postcss-gradients-interpolation-method" "^3.0.6"
-    "@csstools/postcss-hwb-function" "^2.2.2"
-    "@csstools/postcss-ic-unit" "^2.0.4"
-    "@csstools/postcss-is-pseudo-class" "^3.2.1"
-    "@csstools/postcss-logical-float-and-clear" "^1.0.1"
-    "@csstools/postcss-logical-resize" "^1.0.1"
-    "@csstools/postcss-logical-viewport-units" "^1.0.3"
-    "@csstools/postcss-media-minmax" "^1.0.4"
-    "@csstools/postcss-media-queries-aspect-ratio-number-values" "^1.0.4"
-    "@csstools/postcss-nested-calc" "^2.0.2"
-    "@csstools/postcss-normalize-display-values" "^2.0.1"
-    "@csstools/postcss-oklab-function" "^2.2.3"
-    "@csstools/postcss-progressive-custom-properties" "^2.3.0"
-    "@csstools/postcss-relative-color-syntax" "^1.0.2"
-    "@csstools/postcss-scope-pseudo-class" "^2.0.2"
-    "@csstools/postcss-stepped-value-functions" "^2.1.1"
-    "@csstools/postcss-text-decoration-shorthand" "^2.2.4"
-    "@csstools/postcss-trigonometric-functions" "^2.1.1"
-    "@csstools/postcss-unset-value" "^2.0.1"
-    autoprefixer "^10.4.14"
-    browserslist "^4.21.9"
-    css-blank-pseudo "^5.0.2"
-    css-has-pseudo "^5.0.2"
-    css-prefers-color-scheme "^8.0.2"
-    cssdb "^7.6.0"
+postcss-preset-env@^9.3.0:
+  version "9.3.0"
+  resolved "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-9.3.0.tgz"
+  integrity sha512-ycw6doPrqV6QxDCtgiyGDef61bEfiSc59HGM4gOw/wxQxmKnhuEery61oOC/5ViENz/ycpRsuhTexs1kUBTvVw==
+  dependencies:
+    "@csstools/postcss-cascade-layers" "^4.0.1"
+    "@csstools/postcss-color-function" "^3.0.7"
+    "@csstools/postcss-color-mix-function" "^2.0.7"
+    "@csstools/postcss-exponential-functions" "^1.0.1"
+    "@csstools/postcss-font-format-keywords" "^3.0.0"
+    "@csstools/postcss-gamut-mapping" "^1.0.0"
+    "@csstools/postcss-gradients-interpolation-method" "^4.0.7"
+    "@csstools/postcss-hwb-function" "^3.0.6"
+    "@csstools/postcss-ic-unit" "^3.0.2"
+    "@csstools/postcss-initial" "^1.0.0"
+    "@csstools/postcss-is-pseudo-class" "^4.0.3"
+    "@csstools/postcss-logical-float-and-clear" "^2.0.0"
+    "@csstools/postcss-logical-overflow" "^1.0.0"
+    "@csstools/postcss-logical-overscroll-behavior" "^1.0.0"
+    "@csstools/postcss-logical-resize" "^2.0.0"
+    "@csstools/postcss-logical-viewport-units" "^2.0.3"
+    "@csstools/postcss-media-minmax" "^1.1.0"
+    "@csstools/postcss-media-queries-aspect-ratio-number-values" "^2.0.3"
+    "@csstools/postcss-nested-calc" "^3.0.0"
+    "@csstools/postcss-normalize-display-values" "^3.0.1"
+    "@csstools/postcss-oklab-function" "^3.0.7"
+    "@csstools/postcss-progressive-custom-properties" "^3.0.2"
+    "@csstools/postcss-relative-color-syntax" "^2.0.7"
+    "@csstools/postcss-scope-pseudo-class" "^3.0.0"
+    "@csstools/postcss-stepped-value-functions" "^3.0.2"
+    "@csstools/postcss-text-decoration-shorthand" "^3.0.3"
+    "@csstools/postcss-trigonometric-functions" "^3.0.2"
+    "@csstools/postcss-unset-value" "^3.0.0"
+    autoprefixer "^10.4.16"
+    browserslist "^4.22.1"
+    css-blank-pseudo "^6.0.0"
+    css-has-pseudo "^6.0.0"
+    css-prefers-color-scheme "^9.0.0"
+    cssdb "^7.9.0"
     postcss-attribute-case-insensitive "^6.0.2"
     postcss-clamp "^4.1.0"
-    postcss-color-functional-notation "^5.1.0"
+    postcss-color-functional-notation "^6.0.2"
     postcss-color-hex-alpha "^9.0.2"
-    postcss-color-rebeccapurple "^8.0.2"
-    postcss-custom-media "^9.1.5"
-    postcss-custom-properties "^13.2.0"
-    postcss-custom-selectors "^7.1.3"
-    postcss-dir-pseudo-class "^7.0.2"
-    postcss-double-position-gradients "^4.0.4"
-    postcss-focus-visible "^8.0.2"
-    postcss-focus-within "^7.0.2"
+    postcss-color-rebeccapurple "^9.0.1"
+    postcss-custom-media "^10.0.2"
+    postcss-custom-properties "^13.3.2"
+    postcss-custom-selectors "^7.1.6"
+    postcss-dir-pseudo-class "^8.0.0"
+    postcss-double-position-gradients "^5.0.2"
+    postcss-focus-visible "^9.0.0"
+    postcss-focus-within "^8.0.0"
     postcss-font-variant "^5.0.0"
-    postcss-gap-properties "^4.0.1"
-    postcss-image-set-function "^5.0.2"
-    postcss-initial "^4.0.1"
-    postcss-lab-function "^5.2.3"
-    postcss-logical "^6.2.0"
-    postcss-nesting "^11.3.0"
+    postcss-gap-properties "^5.0.0"
+    postcss-image-set-function "^6.0.1"
+    postcss-lab-function "^6.0.7"
+    postcss-logical "^7.0.0"
+    postcss-nesting "^12.0.1"
     postcss-opacity-percentage "^2.0.0"
-    postcss-overflow-shorthand "^4.0.1"
+    postcss-overflow-shorthand "^5.0.0"
     postcss-page-break "^3.0.4"
-    postcss-place "^8.0.1"
-    postcss-pseudo-class-any-link "^8.0.2"
+    postcss-place "^9.0.0"
+    postcss-pseudo-class-any-link "^9.0.0"
     postcss-replace-overflow-wrap "^4.0.0"
     postcss-selector-not "^7.0.1"
     postcss-value-parser "^4.2.0"
 
-postcss-pseudo-class-any-link@^8.0.2:
-  version "8.0.2"
-  resolved "https://registry.yarnpkg.com/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-8.0.2.tgz#f5738503f2045de0c4dc216eca99bd835f74e42e"
-  integrity sha512-FYTIuRE07jZ2CW8POvctRgArQJ43yxhr5vLmImdKUvjFCkR09kh8pIdlCwdx/jbFm7MiW4QP58L4oOUv3grQYA==
+postcss-pseudo-class-any-link@^9.0.0:
+  version "9.0.1"
+  resolved "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-9.0.1.tgz"
+  integrity sha512-cKYGGZ9yzUZi+dZd7XT2M8iSDfo+T2Ctbpiizf89uBTBfIpZpjvTavzIJXpCReMVXSKROqzpxClNu6fz4DHM0Q==
   dependencies:
-    postcss-selector-parser "^6.0.10"
+    postcss-selector-parser "^6.0.13"
 
 postcss-reduce-initial@^5.1.2:
   version "5.1.2"
-  resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz#798cd77b3e033eae7105c18c9d371d989e1382d6"
+  resolved "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz"
   integrity sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==
   dependencies:
     browserslist "^4.21.4"
     caniuse-api "^3.0.0"
 
-postcss-reduce-initial@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-6.0.0.tgz#7d16e83e60e27e2fa42f56ec0b426f1da332eca7"
-  integrity sha512-s2UOnidpVuXu6JiiI5U+fV2jamAw5YNA9Fdi/GRK0zLDLCfXmSGqQtzpUPtfN66RtCbb9fFHoyZdQaxOB3WxVA==
+postcss-reduce-initial@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.2.tgz"
+  integrity sha512-YGKalhNlCLcjcLvjU5nF8FyeCTkCO5UtvJEt0hrPZVCTtRLSOH4z00T1UntQPj4dUmIYZgMj8qK77JbSX95hSw==
   dependencies:
-    browserslist "^4.21.4"
+    browserslist "^4.22.2"
     caniuse-api "^3.0.0"
 
 postcss-reduce-transforms@^5.1.0:
   version "5.1.0"
-  resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz#333b70e7758b802f3dd0ddfe98bb1ccfef96b6e9"
+  resolved "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz"
   integrity sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==
   dependencies:
     postcss-value-parser "^4.2.0"
 
-postcss-reduce-transforms@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.0.tgz#28ff2601a6d9b96a2f039b3501526e1f4d584a46"
-  integrity sha512-FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w==
+postcss-reduce-transforms@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.1.tgz"
+  integrity sha512-fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ==
   dependencies:
     postcss-value-parser "^4.2.0"
 
 postcss-replace-overflow-wrap@^4.0.0:
   version "4.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz#d2df6bed10b477bf9c52fab28c568b4b29ca4319"
+  resolved "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz"
   integrity sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==
 
 postcss-resolve-nested-selector@^0.1.1:
   version "0.1.1"
   resolved "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz"
-  integrity sha1-Kcy8fDfe36wwTp//C/FZaz9qDk4=
+  integrity "sha1-Kcy8fDfe36wwTp//C/FZaz9qDk4= sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw=="
 
 postcss-safe-parser@^4.0.2:
   version "4.0.2"
@@ -8362,42 +8368,34 @@ postcss-scss@^2.1.1:
 
 postcss-selector-not@^7.0.1:
   version "7.0.1"
-  resolved "https://registry.yarnpkg.com/postcss-selector-not/-/postcss-selector-not-7.0.1.tgz#8142e90c8eb6c8c5faecb3e9d96d4353d02e94fb"
+  resolved "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-7.0.1.tgz"
   integrity sha512-1zT5C27b/zeJhchN7fP0kBr16Cc61mu7Si9uWWLoA3Px/D9tIJPKchJCkUH3tPO5D0pCFmGeApAv8XpXBQJ8SQ==
   dependencies:
     postcss-selector-parser "^6.0.10"
 
-postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.9:
-  version "6.0.13"
-  resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b"
-  integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==
-  dependencies:
-    cssesc "^3.0.0"
-    util-deprecate "^1.0.2"
-
-postcss-selector-parser@^6.0.5:
-  version "6.0.6"
-  resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz"
-  integrity sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==
+postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.13, postcss-selector-parser@^6.0.15, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9:
+  version "6.0.15"
+  resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz"
+  integrity sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==
   dependencies:
     cssesc "^3.0.0"
     util-deprecate "^1.0.2"
 
 postcss-svgo@^5.1.0:
   version "5.1.0"
-  resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.1.0.tgz#0a317400ced789f233a28826e77523f15857d80d"
+  resolved "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz"
   integrity sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==
   dependencies:
     postcss-value-parser "^4.2.0"
     svgo "^2.7.0"
 
-postcss-svgo@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-6.0.0.tgz#7b18742d38d4505a0455bbe70d52b49f00eaf69d"
-  integrity sha512-r9zvj/wGAoAIodn84dR/kFqwhINp5YsJkLoujybWG59grR/IHx+uQ2Zo+IcOwM0jskfYX3R0mo+1Kip1VSNcvw==
+postcss-svgo@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.2.tgz"
+  integrity sha512-IH5R9SjkTkh0kfFOQDImyy1+mTCb+E830+9SV1O+AaDcoHTvfsvt6WwJeo7KwcHbFnevZVCsXhDmjFiGVuwqFQ==
   dependencies:
     postcss-value-parser "^4.2.0"
-    svgo "^3.0.2"
+    svgo "^3.2.0"
 
 postcss-syntax@^0.36.2:
   version "0.36.2"
@@ -8406,21 +8404,21 @@ postcss-syntax@^0.36.2:
 
 postcss-unique-selectors@^5.1.1:
   version "5.1.1"
-  resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz#a9f273d1eacd09e9aa6088f4b0507b18b1b541b6"
+  resolved "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz"
   integrity sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==
   dependencies:
     postcss-selector-parser "^6.0.5"
 
-postcss-unique-selectors@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-6.0.0.tgz#c94e9b0f7bffb1203894e42294b5a1b3fb34fbe1"
-  integrity sha512-EPQzpZNxOxP7777t73RQpZE5e9TrnCrkvp7AH7a0l89JmZiPnS82y216JowHXwpBCQitfyxrof9TK3rYbi7/Yw==
+postcss-unique-selectors@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.2.tgz"
+  integrity sha512-8IZGQ94nechdG7Y9Sh9FlIY2b4uS8/k8kdKRX040XHsS3B6d1HrJAkXrBSsSu4SuARruSsUjW3nlSw8BHkaAYQ==
   dependencies:
-    postcss-selector-parser "^6.0.5"
+    postcss-selector-parser "^6.0.15"
 
 postcss-url@^10.1.3:
   version "10.1.3"
-  resolved "https://registry.yarnpkg.com/postcss-url/-/postcss-url-10.1.3.tgz#54120cc910309e2475ec05c2cfa8f8a2deafdf1e"
+  resolved "https://registry.npmjs.org/postcss-url/-/postcss-url-10.1.3.tgz"
   integrity sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==
   dependencies:
     make-dir "~3.1.0"
@@ -8430,18 +8428,18 @@ postcss-url@^10.1.3:
 
 postcss-value-parser@^4.0.0, postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0:
   version "4.2.0"
-  resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
+  resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz"
   integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
 
-postcss@^7.0.14, postcss@^7.0.2, postcss@^7.0.32, postcss@^7.0.36, postcss@^7.0.6:
+postcss@^7.0.14, postcss@^7.0.2, postcss@^7.0.36, postcss@^7.0.6:
   version "7.0.39"
-  resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.39.tgz#9624375d965630e2e1f2c02a935c82a59cb48309"
+  resolved "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz"
   integrity sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==
   dependencies:
     picocolors "^0.2.1"
     source-map "^0.6.1"
 
-postcss@^7.0.21, postcss@^7.0.26, postcss@^7.0.35:
+postcss@^7.0.21, postcss@^7.0.26, postcss@^7.0.32, postcss@^7.0.35:
   version "7.0.36"
   resolved "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz"
   integrity sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==
@@ -8450,38 +8448,38 @@ postcss@^7.0.21, postcss@^7.0.26, postcss@^7.0.35:
     source-map "^0.6.1"
     supports-color "^6.1.0"
 
-postcss@^8.2.1, postcss@^8.2.15, postcss@^8.4.14, postcss@^8.4.24:
-  version "8.4.24"
-  resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.24.tgz#f714dba9b2284be3cc07dbd2fc57ee4dc972d2df"
-  integrity sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==
+postcss@^8.2.1, postcss@^8.2.15, postcss@^8.4.14, postcss@^8.4.33:
+  version "8.4.33"
+  resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.33.tgz"
+  integrity sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==
   dependencies:
-    nanoid "^3.3.6"
+    nanoid "^3.3.7"
     picocolors "^1.0.0"
     source-map-js "^1.0.2"
 
 prelude-ls@^1.2.1:
   version "1.2.1"
-  resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
+  resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz"
   integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
 
 prepend-http@^1.0.0:
   version "1.0.4"
-  resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
+  resolved "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz"
   integrity sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==
 
 "prettier@^1.18.2 || ^2.0.0", prettier@^2.3.2:
   version "2.8.8"
-  resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da"
+  resolved "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz"
   integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==
 
 pretty-bytes@^5.6.0:
   version "5.6.0"
-  resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb"
+  resolved "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz"
   integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==
 
 pretty-error@^2.1.1:
   version "2.1.2"
-  resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.2.tgz#be89f82d81b1c86ec8fdfbc385045882727f93b6"
+  resolved "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz"
   integrity sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==
   dependencies:
     lodash "^4.17.20"
@@ -8489,32 +8487,32 @@ pretty-error@^2.1.1:
 
 pretty-time@^1.1.0:
   version "1.1.0"
-  resolved "https://registry.yarnpkg.com/pretty-time/-/pretty-time-1.1.0.tgz#ffb7429afabb8535c346a34e41873adf3d74dd0e"
+  resolved "https://registry.npmjs.org/pretty-time/-/pretty-time-1.1.0.tgz"
   integrity sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==
 
 process-nextick-args@~2.0.0:
   version "2.0.1"
-  resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
+  resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"
   integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
 
 process@^0.11.10:
   version "0.11.10"
-  resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
+  resolved "https://registry.npmjs.org/process/-/process-0.11.10.tgz"
   integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==
 
 progress@^2.0.0:
   version "2.0.3"
-  resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
+  resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz"
   integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
 
 promise-inflight@^1.0.1:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3"
+  resolved "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz"
   integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==
 
 proper-lockfile@^4.1.2:
   version "4.1.2"
-  resolved "https://registry.yarnpkg.com/proper-lockfile/-/proper-lockfile-4.1.2.tgz#c8b9de2af6b2f1601067f98e01ac66baa223141f"
+  resolved "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-4.1.2.tgz"
   integrity sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==
   dependencies:
     graceful-fs "^4.2.4"
@@ -8523,22 +8521,22 @@ proper-lockfile@^4.1.2:
 
 protocols@^2.0.0, protocols@^2.0.1:
   version "2.0.1"
-  resolved "https://registry.yarnpkg.com/protocols/-/protocols-2.0.1.tgz#8f155da3fc0f32644e83c5782c8e8212ccf70a86"
+  resolved "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz"
   integrity sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==
 
 prr@~1.0.1:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
+  resolved "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz"
   integrity sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==
 
 pseudomap@^1.0.2:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
+  resolved "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz"
   integrity sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==
 
 public-encrypt@^4.0.0:
   version "4.0.3"
-  resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0"
+  resolved "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz"
   integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==
   dependencies:
     bn.js "^4.1.0"
@@ -8550,7 +8548,7 @@ public-encrypt@^4.0.0:
 
 pump@^2.0.0:
   version "2.0.1"
-  resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909"
+  resolved "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz"
   integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==
   dependencies:
     end-of-stream "^1.1.0"
@@ -8558,7 +8556,7 @@ pump@^2.0.0:
 
 pump@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
+  resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz"
   integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
   dependencies:
     end-of-stream "^1.1.0"
@@ -8566,7 +8564,7 @@ pump@^3.0.0:
 
 pumpify@^1.3.3:
   version "1.5.1"
-  resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce"
+  resolved "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz"
   integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==
   dependencies:
     duplexify "^3.6.0"
@@ -8575,24 +8573,24 @@ pumpify@^1.3.3:
 
 punycode@^1.2.4, punycode@^1.4.1:
   version "1.4.1"
-  resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
+  resolved "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz"
   integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==
 
 punycode@^2.1.0:
   version "2.3.0"
-  resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f"
+  resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz"
   integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==
 
 qs@^6.11.0:
   version "6.11.2"
-  resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9"
+  resolved "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz"
   integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==
   dependencies:
     side-channel "^1.0.4"
 
 query-string@^4.1.0:
   version "4.3.4"
-  resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb"
+  resolved "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz"
   integrity sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==
   dependencies:
     object-assign "^4.1.0"
@@ -8600,12 +8598,12 @@ query-string@^4.1.0:
 
 querystring-es3@^0.2.0:
   version "0.2.1"
-  resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
+  resolved "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz"
   integrity sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==
 
 queue-microtask@^1.2.2:
   version "1.2.3"
-  resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
+  resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz"
   integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
 
 quick-lru@^4.0.1:
@@ -8615,14 +8613,14 @@ quick-lru@^4.0.1:
 
 randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0:
   version "2.1.0"
-  resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
+  resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz"
   integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
   dependencies:
     safe-buffer "^5.1.0"
 
 randomfill@^1.0.3:
   version "1.0.4"
-  resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458"
+  resolved "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz"
   integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==
   dependencies:
     randombytes "^2.0.5"
@@ -8630,12 +8628,20 @@ randomfill@^1.0.3:
 
 range-parser@^1.2.1, range-parser@~1.2.1:
   version "1.2.1"
-  resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
+  resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz"
   integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
 
-rc9@^2.0.1, rc9@^2.1.0:
+raw-loader@^4.0.2:
+  version "4.0.2"
+  resolved "https://registry.yarnpkg.com/raw-loader/-/raw-loader-4.0.2.tgz#1aac6b7d1ad1501e66efdac1522c73e59a584eb6"
+  integrity sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==
+  dependencies:
+    loader-utils "^2.0.0"
+    schema-utils "^3.0.0"
+
+rc9@^2.1.1:
   version "2.1.1"
-  resolved "https://registry.yarnpkg.com/rc9/-/rc9-2.1.1.tgz#6614c32db7731b44cd48641ce68f373c3ee212a9"
+  resolved "https://registry.npmjs.org/rc9/-/rc9-2.1.1.tgz"
   integrity sha512-lNeOl38Ws0eNxpO3+wD1I9rkHGQyj1NU1jlzv4go2CtEnEQEUfqnIvZG7W+bC/aXdJ27n5x/yUjb6RoT9tko+Q==
   dependencies:
     defu "^6.1.2"
@@ -8644,7 +8650,7 @@ rc9@^2.0.1, rc9@^2.1.0:
 
 read-cache@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774"
+  resolved "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz"
   integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==
   dependencies:
     pify "^2.3.0"
@@ -8652,7 +8658,7 @@ read-cache@^1.0.0:
 read-pkg-up@^3.0.0:
   version "3.0.0"
   resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz"
-  integrity sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=
+  integrity "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc= sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw=="
   dependencies:
     find-up "^2.0.0"
     read-pkg "^3.0.0"
@@ -8669,7 +8675,7 @@ read-pkg-up@^7.0.1:
 read-pkg@^3.0.0:
   version "3.0.0"
   resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz"
-  integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=
+  integrity "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA=="
   dependencies:
     load-json-file "^4.0.0"
     normalize-package-data "^2.3.2"
@@ -8687,7 +8693,7 @@ read-pkg@^5.2.0:
 
 "readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6:
   version "2.3.8"
-  resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b"
+  resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz"
   integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==
   dependencies:
     core-util-is "~1.0.0"
@@ -8709,7 +8715,7 @@ readable-stream@^3.1.1:
 
 readable-stream@^3.6.0:
   version "3.6.2"
-  resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967"
+  resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz"
   integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==
   dependencies:
     inherits "^2.0.3"
@@ -8718,7 +8724,7 @@ readable-stream@^3.6.0:
 
 readdirp@^2.2.1:
   version "2.2.1"
-  resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525"
+  resolved "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz"
   integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==
   dependencies:
     graceful-fs "^4.1.11"
@@ -8727,7 +8733,7 @@ readdirp@^2.2.1:
 
 readdirp@~3.6.0:
   version "3.6.0"
-  resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
+  resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz"
   integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
   dependencies:
     picomatch "^2.2.1"
@@ -8742,31 +8748,31 @@ redent@^3.0.0:
 
 regenerate-unicode-properties@^10.1.0:
   version "10.1.0"
-  resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c"
+  resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz"
   integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==
   dependencies:
     regenerate "^1.4.2"
 
 regenerate@^1.4.2:
   version "1.4.2"
-  resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
+  resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz"
   integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
 
-regenerator-runtime@^0.13.11:
-  version "0.13.11"
-  resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
-  integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
+regenerator-runtime@^0.14.0, regenerator-runtime@^0.14.1:
+  version "0.14.1"
+  resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz"
+  integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==
 
-regenerator-transform@^0.15.1:
-  version "0.15.1"
-  resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56"
-  integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==
+regenerator-transform@^0.15.2:
+  version "0.15.2"
+  resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz"
+  integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==
   dependencies:
     "@babel/runtime" "^7.8.4"
 
 regex-not@^1.0.0, regex-not@^1.0.2:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
+  resolved "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz"
   integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==
   dependencies:
     extend-shallow "^3.0.2"
@@ -8779,7 +8785,7 @@ regexp-tree@^0.1.22, regexp-tree@~0.1.1:
 
 regexp.prototype.flags@^1.4.3:
   version "1.5.0"
-  resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb"
+  resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz"
   integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==
   dependencies:
     call-bind "^1.0.2"
@@ -8793,7 +8799,7 @@ regexpp@^3.0.0, regexpp@^3.1.0:
 
 regexpu-core@^5.3.1:
   version "5.3.2"
-  resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b"
+  resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz"
   integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==
   dependencies:
     "@babel/regjsgen" "^0.8.0"
@@ -8805,14 +8811,14 @@ regexpu-core@^5.3.1:
 
 regjsparser@^0.9.1:
   version "0.9.1"
-  resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709"
+  resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz"
   integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==
   dependencies:
     jsesc "~0.5.0"
 
 relateurl@^0.2.7:
   version "0.2.7"
-  resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9"
+  resolved "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz"
   integrity sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==
 
 remark-parse@^9.0.0:
@@ -8840,12 +8846,12 @@ remark@^13.0.0:
 
 remove-trailing-separator@^1.0.1:
   version "1.1.0"
-  resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
+  resolved "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz"
   integrity sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==
 
 renderkid@^2.0.4:
   version "2.0.7"
-  resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.7.tgz#464f276a6bdcee606f4a15993f9b29fc74ca8609"
+  resolved "https://registry.npmjs.org/renderkid/-/renderkid-2.0.7.tgz"
   integrity sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==
   dependencies:
     css-select "^4.1.3"
@@ -8856,32 +8862,32 @@ renderkid@^2.0.4:
 
 repeat-element@^1.1.2:
   version "1.1.4"
-  resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9"
+  resolved "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz"
   integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==
 
 repeat-string@^1.0.0, repeat-string@^1.6.1:
   version "1.6.1"
-  resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
+  resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz"
   integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==
 
 require-from-string@^2.0.2:
   version "2.0.2"
-  resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909"
+  resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz"
   integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==
 
 requires-port@^1.0.0:
   version "1.0.0"
   resolved "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz"
-  integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=
+  integrity "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="
 
 reserved-words@^0.1.2:
   version "0.1.2"
   resolved "https://registry.npmjs.org/reserved-words/-/reserved-words-0.1.2.tgz"
-  integrity sha1-AKCUD5jNUBrqqsMWQR2a3FKzGrE=
+  integrity "sha1-AKCUD5jNUBrqqsMWQR2a3FKzGrE= sha512-0S5SrIUJ9LfpbVl4Yzij6VipUdafHrOTzvmfazSw/jeZrZtQK303OPZW+obtkaw7jQlTQppy0UvZWm9872PbRw=="
 
 resolve-from@^4.0.0:
   version "4.0.0"
-  resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
+  resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz"
   integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
 
 resolve-from@^5.0.0:
@@ -8891,29 +8897,21 @@ resolve-from@^5.0.0:
 
 resolve-url@^0.2.1:
   version "0.2.1"
-  resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
+  resolved "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz"
   integrity sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==
 
-resolve@^1.1.7, resolve@^1.14.2, resolve@^1.22.0:
+resolve@^1.1.7, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.13.1, resolve@^1.14.2, resolve@^1.20.0, resolve@^1.22.0:
   version "1.22.2"
-  resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f"
+  resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz"
   integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==
   dependencies:
     is-core-module "^2.11.0"
     path-parse "^1.0.7"
     supports-preserve-symlinks-flag "^1.0.0"
 
-resolve@^1.10.0, resolve@^1.10.1, resolve@^1.13.1, resolve@^1.20.0:
-  version "1.20.0"
-  resolved "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz"
-  integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==
-  dependencies:
-    is-core-module "^2.2.0"
-    path-parse "^1.0.6"
-
 restore-cursor@^3.1.0:
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e"
+  resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz"
   integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==
   dependencies:
     onetime "^5.1.0"
@@ -8921,36 +8919,36 @@ restore-cursor@^3.1.0:
 
 ret@~0.1.10:
   version "0.1.15"
-  resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
+  resolved "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz"
   integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
 
 retry@^0.12.0:
   version "0.12.0"
-  resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b"
+  resolved "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz"
   integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==
 
 reusify@^1.0.4:
   version "1.0.4"
-  resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
+  resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz"
   integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
 
 rimraf@^2.5.4, rimraf@^2.6.2, rimraf@^2.6.3:
   version "2.7.1"
-  resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
+  resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz"
   integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
   dependencies:
     glob "^7.1.3"
 
 rimraf@^3.0.2:
   version "3.0.2"
-  resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
+  resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"
   integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
   dependencies:
     glob "^7.1.3"
 
 ripemd160@^2.0.0, ripemd160@^2.0.1:
   version "2.0.2"
-  resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c"
+  resolved "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz"
   integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==
   dependencies:
     hash-base "^3.0.0"
@@ -8958,43 +8956,43 @@ ripemd160@^2.0.0, ripemd160@^2.0.1:
 
 robust-predicates@^3.0.0:
   version "3.0.2"
-  resolved "https://registry.yarnpkg.com/robust-predicates/-/robust-predicates-3.0.2.tgz#d5b28528c4824d20fc48df1928d41d9efa1ad771"
+  resolved "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz"
   integrity sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==
 
 run-async@^2.4.0:
   version "2.4.1"
-  resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455"
+  resolved "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz"
   integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==
 
 run-parallel@^1.1.9:
   version "1.2.0"
-  resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
+  resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz"
   integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
   dependencies:
     queue-microtask "^1.2.2"
 
 run-queue@^1.0.0, run-queue@^1.0.3:
   version "1.0.3"
-  resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47"
+  resolved "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz"
   integrity sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==
   dependencies:
     aproba "^1.1.1"
 
 rw@1:
   version "1.3.3"
-  resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4"
+  resolved "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz"
   integrity sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==
 
 rxjs@^6.6.0, rxjs@^6.6.7:
   version "6.6.7"
-  resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9"
+  resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz"
   integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==
   dependencies:
     tslib "^1.9.0"
 
 safe-array-concat@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.0.0.tgz#2064223cba3c08d2ee05148eedbc563cd6d84060"
+  resolved "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz"
   integrity sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==
   dependencies:
     call-bind "^1.0.2"
@@ -9002,19 +9000,19 @@ safe-array-concat@^1.0.0:
     has-symbols "^1.0.3"
     isarray "^2.0.5"
 
-safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
+safe-buffer@5.1.2, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
   version "5.1.2"
-  resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
+  resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"
   integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
 
-safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0:
+safe-buffer@^5.2.0:
   version "5.2.1"
-  resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
+  resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"
   integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
 
 safe-regex-test@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295"
+  resolved "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz"
   integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==
   dependencies:
     call-bind "^1.0.2"
@@ -9023,7 +9021,7 @@ safe-regex-test@^1.0.0:
 
 safe-regex@^1.1.0:
   version "1.1.0"
-  resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
+  resolved "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz"
   integrity sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==
   dependencies:
     ret "~0.1.10"
@@ -9037,12 +9035,12 @@ safe-regex@^2.1.1:
 
 "safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.1.0:
   version "2.1.2"
-  resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
+  resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"
   integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
 
 sass-loader@^10.2.0:
   version "10.4.1"
-  resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-10.4.1.tgz#bea4e173ddf512c9d7f53e9ec686186146807cbf"
+  resolved "https://registry.npmjs.org/sass-loader/-/sass-loader-10.4.1.tgz"
   integrity sha512-aX/iJZTTpNUNx/OSYzo2KsjIUQHqvWsAhhUijFjAPdZTEhstjZI9zTNvkTTwsx+uNUJqUwOw5gacxQMx4hJxGQ==
   dependencies:
     klona "^2.0.4"
@@ -9053,14 +9051,14 @@ sass-loader@^10.2.0:
 
 sass@~1.32.13:
   version "1.32.13"
-  resolved "https://registry.yarnpkg.com/sass/-/sass-1.32.13.tgz#8d29c849e625a415bce71609c7cf95e15f74ed00"
+  resolved "https://registry.npmjs.org/sass/-/sass-1.32.13.tgz"
   integrity sha512-dEgI9nShraqP7cXQH+lEXVf73WOPCse0QlFzSD8k+1TcOxCMwVXfQlr0jtoluZysQOyJGnfr21dLvYKDJq8HkA==
   dependencies:
     chokidar ">=3.0.0 <4.0.0"
 
 schema-utils@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770"
+  resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz"
   integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==
   dependencies:
     ajv "^6.1.0"
@@ -9069,7 +9067,7 @@ schema-utils@^1.0.0:
 
 schema-utils@^2.0.0, schema-utils@^2.6.5, schema-utils@^2.7.0:
   version "2.7.1"
-  resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7"
+  resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz"
   integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==
   dependencies:
     "@types/json-schema" "^7.0.5"
@@ -9078,7 +9076,7 @@ schema-utils@^2.0.0, schema-utils@^2.6.5, schema-utils@^2.7.0:
 
 schema-utils@^3.0.0, schema-utils@^3.1.1:
   version "3.3.0"
-  resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe"
+  resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz"
   integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==
   dependencies:
     "@types/json-schema" "^7.0.8"
@@ -9087,7 +9085,7 @@ schema-utils@^3.0.0, schema-utils@^3.1.1:
 
 schema-utils@^4.0.0:
   version "4.2.0"
-  resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.2.0.tgz#70d7c93e153a273a805801882ebd3bff20d89c8b"
+  resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz"
   integrity sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==
   dependencies:
     "@types/json-schema" "^7.0.9"
@@ -9097,27 +9095,27 @@ schema-utils@^4.0.0:
 
 scule@^0.2.1:
   version "0.2.1"
-  resolved "https://registry.yarnpkg.com/scule/-/scule-0.2.1.tgz#0c1dc847b18e07219ae9a3832f2f83224e2079dc"
+  resolved "https://registry.npmjs.org/scule/-/scule-0.2.1.tgz"
   integrity sha512-M9gnWtn3J0W+UhJOHmBxBTwv8mZCan5i1Himp60t6vvZcor0wr+IM0URKmIglsWJ7bRujNAVVN77fp+uZaWoKg==
 
 semver-compare@^1.0.0:
   version "1.0.0"
   resolved "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz"
-  integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w=
+  integrity "sha1-De4hahyUGrN+nvsXiPavxf9VN/w= sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow=="
 
 "semver@2 || 3 || 4 || 5", semver@^5.6.0:
   version "5.7.1"
-  resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
+  resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"
   integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
 
-semver@^6.0.0, semver@^6.1.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
-  version "6.3.0"
-  resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
-  integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
+semver@^6.0.0, semver@^6.1.0, semver@^6.3.0, semver@^6.3.1:
+  version "6.3.1"
+  resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz"
+  integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
 
-semver@^7.2.1, semver@^7.3.2, semver@^7.3.5, semver@^7.5.1:
+semver@^7.2.1, semver@^7.3.2, semver@^7.3.5:
   version "7.5.2"
-  resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.2.tgz#5b851e66d1be07c1cdaf37dfc856f543325a2beb"
+  resolved "https://registry.npmjs.org/semver/-/semver-7.5.2.tgz"
   integrity sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==
   dependencies:
     lru-cache "^6.0.0"
@@ -9129,9 +9127,16 @@ semver@^7.3.4:
   dependencies:
     lru-cache "^6.0.0"
 
+semver@^7.5.4:
+  version "7.5.4"
+  resolved "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz"
+  integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==
+  dependencies:
+    lru-cache "^6.0.0"
+
 send@0.18.0:
   version "0.18.0"
-  resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be"
+  resolved "https://registry.npmjs.org/send/-/send-0.18.0.tgz"
   integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==
   dependencies:
     debug "2.6.9"
@@ -9150,35 +9155,35 @@ send@0.18.0:
 
 serialize-javascript@^4.0.0:
   version "4.0.0"
-  resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa"
+  resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz"
   integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==
   dependencies:
     randombytes "^2.1.0"
 
 serialize-javascript@^5.0.1:
   version "5.0.1"
-  resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-5.0.1.tgz#7886ec848049a462467a97d3d918ebb2aaf934f4"
+  resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz"
   integrity sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==
   dependencies:
     randombytes "^2.1.0"
 
-serialize-javascript@^6.0.0, serialize-javascript@^6.0.1:
-  version "6.0.1"
-  resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz#b206efb27c3da0b0ab6b52f48d170b7996458e5c"
-  integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==
+serialize-javascript@^6.0.0, serialize-javascript@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz"
+  integrity sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==
   dependencies:
     randombytes "^2.1.0"
 
 serve-placeholder@^2.0.1:
   version "2.0.1"
-  resolved "https://registry.yarnpkg.com/serve-placeholder/-/serve-placeholder-2.0.1.tgz#dfa741812f49dfea472a68c4f292dbc40d28389a"
+  resolved "https://registry.npmjs.org/serve-placeholder/-/serve-placeholder-2.0.1.tgz"
   integrity sha512-rUzLlXk4uPFnbEaIz3SW8VISTxMuONas88nYWjAWaM2W9VDbt9tyFOr3lq8RhVOFrT3XISoBw8vni5una8qMnQ==
   dependencies:
     defu "^6.0.0"
 
 serve-static@^1.14.1, serve-static@^1.15.0:
   version "1.15.0"
-  resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540"
+  resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz"
   integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==
   dependencies:
     encodeurl "~1.0.2"
@@ -9188,12 +9193,12 @@ serve-static@^1.14.1, serve-static@^1.15.0:
 
 server-destroy@^1.0.1:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/server-destroy/-/server-destroy-1.0.1.tgz#f13bf928e42b9c3e79383e61cc3998b5d14e6cdd"
+  resolved "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz"
   integrity sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==
 
 set-value@^2.0.0, set-value@^2.0.1:
   version "2.0.1"
-  resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
+  resolved "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz"
   integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==
   dependencies:
     extend-shallow "^2.0.1"
@@ -9203,17 +9208,17 @@ set-value@^2.0.0, set-value@^2.0.1:
 
 setimmediate@^1.0.4:
   version "1.0.5"
-  resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
+  resolved "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz"
   integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==
 
 setprototypeof@1.2.0:
   version "1.2.0"
-  resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424"
+  resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz"
   integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==
 
 sha.js@^2.4.0, sha.js@^2.4.8:
   version "2.4.11"
-  resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7"
+  resolved "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz"
   integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==
   dependencies:
     inherits "^2.0.1"
@@ -9221,24 +9226,24 @@ sha.js@^2.4.0, sha.js@^2.4.8:
 
 shebang-command@^2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
+  resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz"
   integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
   dependencies:
     shebang-regex "^3.0.0"
 
 shebang-regex@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
+  resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz"
   integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
 
-shell-quote@^1.7.3:
+shell-quote@^1.8.1:
   version "1.8.1"
-  resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680"
+  resolved "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz"
   integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==
 
 side-channel@^1.0.4:
   version "1.0.4"
-  resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
+  resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz"
   integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
   dependencies:
     call-bind "^1.0.0"
@@ -9247,26 +9252,26 @@ side-channel@^1.0.4:
 
 signal-exit@^3.0.2, signal-exit@^3.0.3:
   version "3.0.7"
-  resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
+  resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz"
   integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
 
-signal-exit@^4.0.2:
-  version "4.0.2"
-  resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.0.2.tgz#ff55bb1d9ff2114c13b400688fa544ac63c36967"
-  integrity sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==
+signal-exit@^4.1.0:
+  version "4.1.0"
+  resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz"
+  integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==
 
-sirv@^1.0.7:
-  version "1.0.19"
-  resolved "https://registry.yarnpkg.com/sirv/-/sirv-1.0.19.tgz#1d73979b38c7fe91fcba49c85280daa9c2363b49"
-  integrity sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==
+sirv@^2.0.3:
+  version "2.0.4"
+  resolved "https://registry.npmjs.org/sirv/-/sirv-2.0.4.tgz"
+  integrity sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==
   dependencies:
-    "@polka/url" "^1.0.0-next.20"
-    mrmime "^1.0.0"
-    totalist "^1.0.0"
+    "@polka/url" "^1.0.0-next.24"
+    mrmime "^2.0.0"
+    totalist "^3.0.0"
 
 slash@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
+  resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz"
   integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
 
 slice-ansi@^3.0.0:
@@ -9280,7 +9285,7 @@ slice-ansi@^3.0.0:
 
 slice-ansi@^4.0.0:
   version "4.0.0"
-  resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b"
+  resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz"
   integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==
   dependencies:
     ansi-styles "^4.0.0"
@@ -9289,7 +9294,7 @@ slice-ansi@^4.0.0:
 
 snapdragon-node@^2.0.1:
   version "2.1.1"
-  resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
+  resolved "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz"
   integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==
   dependencies:
     define-property "^1.0.0"
@@ -9298,14 +9303,14 @@ snapdragon-node@^2.0.1:
 
 snapdragon-util@^3.0.1:
   version "3.0.1"
-  resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
+  resolved "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz"
   integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==
   dependencies:
     kind-of "^3.2.0"
 
 snapdragon@^0.8.1:
   version "0.8.2"
-  resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
+  resolved "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz"
   integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==
   dependencies:
     base "^0.11.1"
@@ -9319,31 +9324,31 @@ snapdragon@^0.8.1:
 
 sort-keys@^1.0.0:
   version "1.1.2"
-  resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad"
+  resolved "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz"
   integrity sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==
   dependencies:
     is-plain-obj "^1.0.0"
 
 sort-keys@^2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128"
+  resolved "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz"
   integrity sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==
   dependencies:
     is-plain-obj "^1.0.0"
 
 source-list-map@^2.0.0:
   version "2.0.1"
-  resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34"
+  resolved "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz"
   integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==
 
 source-map-js@^1.0.1, source-map-js@^1.0.2:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
+  resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz"
   integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
 
 source-map-resolve@^0.5.0:
   version "0.5.3"
-  resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a"
+  resolved "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz"
   integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==
   dependencies:
     atob "^2.1.2"
@@ -9354,7 +9359,7 @@ source-map-resolve@^0.5.0:
 
 source-map-support@~0.5.12, source-map-support@~0.5.20:
   version "0.5.21"
-  resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
+  resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz"
   integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
   dependencies:
     buffer-from "^1.0.0"
@@ -9362,27 +9367,27 @@ source-map-support@~0.5.12, source-map-support@~0.5.20:
 
 source-map-url@^0.4.0:
   version "0.4.1"
-  resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56"
+  resolved "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz"
   integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==
 
 source-map@0.5.6:
   version "0.5.6"
-  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412"
+  resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz"
   integrity sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==
 
-source-map@^0.5.0, source-map@^0.5.6:
+source-map@^0.5.6:
   version "0.5.7"
-  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
+  resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"
   integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==
 
 source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1:
   version "0.6.1"
-  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
+  resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"
   integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
 
 source-map@^0.7.3:
   version "0.7.4"
-  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656"
+  resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz"
   integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==
 
 spdx-correct@^3.0.0:
@@ -9418,48 +9423,48 @@ specificity@^0.4.1:
 
 split-string@^3.0.1, split-string@^3.0.2:
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
+  resolved "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz"
   integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==
   dependencies:
     extend-shallow "^3.0.0"
 
 sprintf-js@~1.0.2:
   version "1.0.3"
-  resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
+  resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"
   integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==
 
 ssri@^6.0.1:
   version "6.0.2"
-  resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.2.tgz#157939134f20464e7301ddba3e90ffa8f7728ac5"
+  resolved "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz"
   integrity sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==
   dependencies:
     figgy-pudding "^3.5.1"
 
 ssri@^8.0.1:
   version "8.0.1"
-  resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af"
+  resolved "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz"
   integrity sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==
   dependencies:
     minipass "^3.1.1"
 
 stable@^0.1.8:
   version "0.1.8"
-  resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf"
+  resolved "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz"
   integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==
 
 stack-trace@0.0.10:
   version "0.0.10"
-  resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0"
+  resolved "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz"
   integrity sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==
 
 stackframe@^1.3.4:
   version "1.3.4"
-  resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.3.4.tgz#b881a004c8c149a5e8efef37d51b16e412943310"
+  resolved "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz"
   integrity sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==
 
 static-extend@^0.1.1:
   version "0.1.2"
-  resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
+  resolved "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz"
   integrity sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==
   dependencies:
     define-property "^0.2.5"
@@ -9467,22 +9472,22 @@ static-extend@^0.1.1:
 
 statuses@2.0.1:
   version "2.0.1"
-  resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63"
+  resolved "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz"
   integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==
 
 statuses@~1.5.0:
   version "1.5.0"
-  resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
+  resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz"
   integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==
 
-std-env@^3.0.1, std-env@^3.3.1, std-env@^3.3.3:
-  version "3.3.3"
-  resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.3.3.tgz#a54f06eb245fdcfef53d56f3c0251f1d5c3d01fe"
-  integrity sha512-Rz6yejtVyWnVjC1RFvNmYL10kgjC49EOghxWn0RFqlCHGFpQx+Xe7yW3I4ceK1SGrWIGMjD5Kbue8W/udkbMJg==
+std-env@^3.5.0, std-env@^3.6.0, std-env@^3.7.0:
+  version "3.7.0"
+  resolved "https://registry.npmjs.org/std-env/-/std-env-3.7.0.tgz"
+  integrity sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==
 
 stream-browserify@^2.0.1:
   version "2.0.2"
-  resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b"
+  resolved "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz"
   integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==
   dependencies:
     inherits "~2.0.1"
@@ -9490,7 +9495,7 @@ stream-browserify@^2.0.1:
 
 stream-each@^1.1.0:
   version "1.2.3"
-  resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae"
+  resolved "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz"
   integrity sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==
   dependencies:
     end-of-stream "^1.1.0"
@@ -9498,7 +9503,7 @@ stream-each@^1.1.0:
 
 stream-http@^2.7.2:
   version "2.8.3"
-  resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc"
+  resolved "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz"
   integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==
   dependencies:
     builtin-status-codes "^3.0.0"
@@ -9509,12 +9514,12 @@ stream-http@^2.7.2:
 
 stream-shift@^1.0.0:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d"
+  resolved "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz"
   integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==
 
 strict-uri-encode@^1.0.0:
   version "1.1.0"
-  resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
+  resolved "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz"
   integrity sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==
 
 string-argv@0.3.1:
@@ -9522,61 +9527,45 @@ string-argv@0.3.1:
   resolved "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz"
   integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==
 
-string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
+string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.2, string-width@^4.2.3:
   version "4.2.3"
-  resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
+  resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"
   integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
   dependencies:
     emoji-regex "^8.0.0"
     is-fullwidth-code-point "^3.0.0"
     strip-ansi "^6.0.1"
 
-string-width@^4.2.2:
-  version "4.2.2"
-  resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz"
-  integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==
-  dependencies:
-    emoji-regex "^8.0.0"
-    is-fullwidth-code-point "^3.0.0"
-    strip-ansi "^6.0.0"
-
 string.prototype.trim@^1.2.7:
   version "1.2.7"
-  resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533"
+  resolved "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz"
   integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==
   dependencies:
     call-bind "^1.0.2"
     define-properties "^1.1.4"
     es-abstract "^1.20.4"
 
-string.prototype.trimend@^1.0.4, string.prototype.trimend@^1.0.6:
+string.prototype.trimend@^1.0.6:
   version "1.0.6"
-  resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533"
+  resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz"
   integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==
   dependencies:
     call-bind "^1.0.2"
     define-properties "^1.1.4"
     es-abstract "^1.20.4"
 
-string.prototype.trimstart@^1.0.4, string.prototype.trimstart@^1.0.6:
+string.prototype.trimstart@^1.0.6:
   version "1.0.6"
-  resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4"
+  resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz"
   integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==
   dependencies:
     call-bind "^1.0.2"
     define-properties "^1.1.4"
     es-abstract "^1.20.4"
 
-string_decoder@^1.0.0, string_decoder@^1.1.1:
-  version "1.3.0"
-  resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
-  integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
-  dependencies:
-    safe-buffer "~5.2.0"
-
-string_decoder@~1.1.1:
+string_decoder@^1.0.0, string_decoder@^1.1.1, string_decoder@~1.1.1:
   version "1.1.1"
-  resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
+  resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"
   integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
   dependencies:
     safe-buffer "~5.1.0"
@@ -9592,14 +9581,14 @@ stringify-object@^3.3.0:
 
 strip-ansi@^3.0.1:
   version "3.0.1"
-  resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
+  resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"
   integrity sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==
   dependencies:
     ansi-regex "^2.0.0"
 
 strip-ansi@^6.0.0, strip-ansi@^6.0.1:
   version "6.0.1"
-  resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
+  resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"
   integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
   dependencies:
     ansi-regex "^5.0.1"
@@ -9607,11 +9596,11 @@ strip-ansi@^6.0.0, strip-ansi@^6.0.1:
 strip-bom@^3.0.0:
   version "3.0.0"
   resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz"
-  integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
+  integrity "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA=="
 
 strip-final-newline@^2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
+  resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz"
   integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
 
 strip-indent@^3.0.0:
@@ -9623,12 +9612,12 @@ strip-indent@^3.0.0:
 
 strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
   version "3.1.1"
-  resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
+  resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz"
   integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
 
 style-resources-loader@^1.5.0:
   version "1.5.0"
-  resolved "https://registry.yarnpkg.com/style-resources-loader/-/style-resources-loader-1.5.0.tgz#6e0585ca475b9dac45387c308be90d74c814f41f"
+  resolved "https://registry.npmjs.org/style-resources-loader/-/style-resources-loader-1.5.0.tgz"
   integrity sha512-fIfyvQ+uvXaCBGGAgfh+9v46ARQB1AWdaop2RpQw0PBVuROsTBqGvx8dj0kxwjGOAyq3vepe4AOK3M6+Q/q2jw==
   dependencies:
     glob "^7.2.0"
@@ -9639,23 +9628,23 @@ style-resources-loader@^1.5.0:
 style-search@^0.1.0:
   version "0.1.0"
   resolved "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz"
-  integrity sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI=
+  integrity "sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI= sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg=="
 
 stylehacks@^5.1.1:
   version "5.1.1"
-  resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-5.1.1.tgz#7934a34eb59d7152149fa69d6e9e56f2fc34bcc9"
+  resolved "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz"
   integrity sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==
   dependencies:
     browserslist "^4.21.4"
     postcss-selector-parser "^6.0.4"
 
-stylehacks@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-6.0.0.tgz#9fdd7c217660dae0f62e14d51c89f6c01b3cb738"
-  integrity sha512-+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw==
+stylehacks@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.2.tgz"
+  integrity sha512-00zvJGnCu64EpMjX8b5iCZ3us2Ptyw8+toEkb92VdmkEaRaSGBNKAoK6aWZckhXxmQP8zWiTaFaiMGIU8Ve8sg==
   dependencies:
-    browserslist "^4.21.4"
-    postcss-selector-parser "^6.0.4"
+    browserslist "^4.22.2"
+    postcss-selector-parser "^6.0.15"
 
 stylelint-config-prettier@^8.0.2:
   version "8.0.2"
@@ -9676,7 +9665,7 @@ stylelint-config-standard@^22.0.0:
 
 stylelint-webpack-plugin@^2.5.0:
   version "2.5.0"
-  resolved "https://registry.yarnpkg.com/stylelint-webpack-plugin/-/stylelint-webpack-plugin-2.5.0.tgz#8dd1e8db5adfea7895c475af9ff0e9e386b6a93e"
+  resolved "https://registry.npmjs.org/stylelint-webpack-plugin/-/stylelint-webpack-plugin-2.5.0.tgz"
   integrity sha512-UX+A4FzHM98VI+mnN4ZGDXnDOf3RC4+xk26nyveUQmIDx43dFYbZQHsZNVFl17La9+VQFpwOHh3c5Zv/kwAI3g==
   dependencies:
     arrify "^2.0.1"
@@ -9749,45 +9738,45 @@ sugarss@^2.0.0:
 
 supports-color@^5.3.0:
   version "5.5.0"
-  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
+  resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"
   integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
   dependencies:
     has-flag "^3.0.0"
 
 supports-color@^6.1.0:
   version "6.1.0"
-  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3"
+  resolved "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz"
   integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==
   dependencies:
     has-flag "^3.0.0"
 
 supports-color@^7.0.0, supports-color@^7.1.0:
   version "7.2.0"
-  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
+  resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"
   integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
   dependencies:
     has-flag "^4.0.0"
 
 supports-color@^8.0.0:
   version "8.1.1"
-  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
+  resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz"
   integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
   dependencies:
     has-flag "^4.0.0"
 
 supports-preserve-symlinks-flag@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
+  resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"
   integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
 
 svg-tags@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764"
+  resolved "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz"
   integrity sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==
 
 svgo@^2.7.0:
   version "2.8.0"
-  resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24"
+  resolved "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz"
   integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==
   dependencies:
     "@trysound/sax" "0.2.0"
@@ -9798,21 +9787,22 @@ svgo@^2.7.0:
     picocolors "^1.0.0"
     stable "^0.1.8"
 
-svgo@^3.0.2:
-  version "3.0.2"
-  resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.0.2.tgz#5e99eeea42c68ee0dc46aa16da093838c262fe0a"
-  integrity sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==
+svgo@^3.2.0:
+  version "3.2.0"
+  resolved "https://registry.npmjs.org/svgo/-/svgo-3.2.0.tgz"
+  integrity sha512-4PP6CMW/V7l/GmKRKzsLR8xxjdHTV4IMvhTnpuHwwBazSIlw5W/5SmPjN8Dwyt7lKbSJrRDgp4t9ph0HgChFBQ==
   dependencies:
     "@trysound/sax" "0.2.0"
     commander "^7.2.0"
     css-select "^5.1.0"
-    css-tree "^2.2.1"
+    css-tree "^2.3.1"
+    css-what "^6.1.0"
     csso "^5.0.5"
     picocolors "^1.0.0"
 
-table@^6.0.9:
+table@^6.0.9, table@^6.6.0:
   version "6.8.1"
-  resolved "https://registry.yarnpkg.com/table/-/table-6.8.1.tgz#ea2b71359fe03b017a5fbc296204471158080bdf"
+  resolved "https://registry.npmjs.org/table/-/table-6.8.1.tgz"
   integrity sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==
   dependencies:
     ajv "^8.0.1"
@@ -9821,26 +9811,14 @@ table@^6.0.9:
     string-width "^4.2.3"
     strip-ansi "^6.0.1"
 
-table@^6.6.0:
-  version "6.7.1"
-  resolved "https://registry.npmjs.org/table/-/table-6.7.1.tgz"
-  integrity sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg==
-  dependencies:
-    ajv "^8.0.1"
-    lodash.clonedeep "^4.5.0"
-    lodash.truncate "^4.4.2"
-    slice-ansi "^4.0.0"
-    string-width "^4.2.0"
-    strip-ansi "^6.0.0"
-
 tapable@^1.0.0, tapable@^1.0.0-beta.5, tapable@^1.1.3:
   version "1.1.3"
-  resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2"
+  resolved "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz"
   integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==
 
 tar@^6.0.2:
   version "6.1.15"
-  resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.15.tgz#c9738b0b98845a3b344d334b8fa3041aaba53a69"
+  resolved "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz"
   integrity sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==
   dependencies:
     chownr "^2.0.0"
@@ -9852,7 +9830,7 @@ tar@^6.0.2:
 
 terser-webpack-plugin@^1.4.3:
   version "1.4.5"
-  resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz#a217aefaea330e734ffacb6120ec1fa312d6040b"
+  resolved "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz"
   integrity sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==
   dependencies:
     cacache "^12.0.2"
@@ -9867,7 +9845,7 @@ terser-webpack-plugin@^1.4.3:
 
 terser-webpack-plugin@^4.2.3:
   version "4.2.3"
-  resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-4.2.3.tgz#28daef4a83bd17c1db0297070adc07fc8cfc6a9a"
+  resolved "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-4.2.3.tgz"
   integrity sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==
   dependencies:
     cacache "^15.0.5"
@@ -9882,7 +9860,7 @@ terser-webpack-plugin@^4.2.3:
 
 terser@^4.1.2, terser@^4.6.3:
   version "4.8.1"
-  resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.1.tgz#a00e5634562de2239fd404c649051bf6fc21144f"
+  resolved "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz"
   integrity sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==
   dependencies:
     commander "^2.20.0"
@@ -9891,7 +9869,7 @@ terser@^4.1.2, terser@^4.6.3:
 
 terser@^5.3.4:
   version "5.18.1"
-  resolved "https://registry.yarnpkg.com/terser/-/terser-5.18.1.tgz#6d8642508ae9fb7b48768e48f16d675c89a78460"
+  resolved "https://registry.npmjs.org/terser/-/terser-5.18.1.tgz"
   integrity sha512-j1n0Ao919h/Ai5r43VAnfV/7azUYW43GPxK7qSATzrsERfW7+y2QW9Cp9ufnRF5CQUWbnLSo7UJokSWCqg4tsQ==
   dependencies:
     "@jridgewell/source-map" "^0.3.3"
@@ -9901,12 +9879,12 @@ terser@^5.3.4:
 
 text-table@^0.2.0:
   version "0.2.0"
-  resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
+  resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"
   integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==
 
 thread-loader@^3.0.4:
   version "3.0.4"
-  resolved "https://registry.yarnpkg.com/thread-loader/-/thread-loader-3.0.4.tgz#c392e4c0241fbc80430eb680e4886819b504a31b"
+  resolved "https://registry.npmjs.org/thread-loader/-/thread-loader-3.0.4.tgz"
   integrity sha512-ByaL2TPb+m6yArpqQUZvP+5S1mZtXsEP7nWKKlAUTm7fCml8kB5s1uI3+eHRP2bk5mVYfRSBI7FFf+tWEyLZwA==
   dependencies:
     json-parse-better-errors "^1.0.2"
@@ -9917,7 +9895,7 @@ thread-loader@^3.0.4:
 
 through2@^2.0.0:
   version "2.0.5"
-  resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
+  resolved "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz"
   integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==
   dependencies:
     readable-stream "~2.3.6"
@@ -9925,48 +9903,48 @@ through2@^2.0.0:
 
 through@^2.3.6, through@^2.3.8:
   version "2.3.8"
-  resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
+  resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz"
   integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==
 
 time-fix-plugin@^2.0.7:
   version "2.0.7"
-  resolved "https://registry.yarnpkg.com/time-fix-plugin/-/time-fix-plugin-2.0.7.tgz#4ba70ae2e40cedf34dabe505eda7b71b1b244f50"
+  resolved "https://registry.npmjs.org/time-fix-plugin/-/time-fix-plugin-2.0.7.tgz"
   integrity sha512-uVFet1LQToeUX0rTcSiYVYVoGuBpc8gP/2jnlUzuHMHe+gux6XLsNzxLUweabMwiUj5ejhoIMsUI55nVSEa/Vw==
 
 timers-browserify@^2.0.4:
   version "2.0.12"
-  resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee"
+  resolved "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz"
   integrity sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==
   dependencies:
     setimmediate "^1.0.4"
 
 tmp@^0.0.33:
   version "0.0.33"
-  resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
+  resolved "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz"
   integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==
   dependencies:
     os-tmpdir "~1.0.2"
 
 to-arraybuffer@^1.0.0:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
+  resolved "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz"
   integrity sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==
 
 to-fast-properties@^2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
+  resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"
   integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
 
 to-object-path@^0.3.0:
   version "0.3.0"
-  resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
+  resolved "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz"
   integrity sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==
   dependencies:
     kind-of "^3.0.2"
 
 to-regex-range@^2.1.0:
   version "2.1.1"
-  resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
+  resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz"
   integrity sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==
   dependencies:
     is-number "^3.0.0"
@@ -9974,14 +9952,14 @@ to-regex-range@^2.1.0:
 
 to-regex-range@^5.0.1:
   version "5.0.1"
-  resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
+  resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"
   integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
   dependencies:
     is-number "^7.0.0"
 
 to-regex@^3.0.1, to-regex@^3.0.2:
   version "3.0.2"
-  resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
+  resolved "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz"
   integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==
   dependencies:
     define-property "^2.0.2"
@@ -9991,17 +9969,17 @@ to-regex@^3.0.1, to-regex@^3.0.2:
 
 toidentifier@1.0.1:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35"
+  resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz"
   integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==
 
-totalist@^1.0.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/totalist/-/totalist-1.1.0.tgz#a4d65a3e546517701e3e5c37a47a70ac97fe56df"
-  integrity sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==
+totalist@^3.0.0:
+  version "3.0.1"
+  resolved "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz"
+  integrity sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==
 
 tr46@~0.0.3:
   version "0.0.3"
-  resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a"
+  resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz"
   integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==
 
 trim-newlines@^3.0.0:
@@ -10016,7 +9994,7 @@ trough@^1.0.0:
 
 ts-pnp@^1.1.6:
   version "1.2.0"
-  resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92"
+  resolved "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz"
   integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==
 
 tsconfig-paths@^3.9.0:
@@ -10031,12 +10009,12 @@ tsconfig-paths@^3.9.0:
 
 tslib@^1.8.1, tslib@^1.9.0:
   version "1.14.1"
-  resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
+  resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz"
   integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
 
 tslib@^2.0.3, tslib@^2.3.1:
   version "2.5.3"
-  resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.3.tgz#24944ba2d990940e6e982c4bea147aba80209913"
+  resolved "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz"
   integrity sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==
 
 tsutils@^3.21.0:
@@ -10048,12 +10026,12 @@ tsutils@^3.21.0:
 
 tty-browserify@0.0.0:
   version "0.0.0"
-  resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
+  resolved "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz"
   integrity sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==
 
 type-check@^0.4.0, type-check@~0.4.0:
   version "0.4.0"
-  resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
+  resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz"
   integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
   dependencies:
     prelude-ls "^1.2.1"
@@ -10065,12 +10043,12 @@ type-fest@^0.18.0:
 
 type-fest@^0.20.2:
   version "0.20.2"
-  resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
+  resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz"
   integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
 
 type-fest@^0.21.3:
   version "0.21.3"
-  resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
+  resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz"
   integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
 
 type-fest@^0.6.0:
@@ -10085,7 +10063,7 @@ type-fest@^0.8.1:
 
 typed-array-length@^1.0.4:
   version "1.0.4"
-  resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb"
+  resolved "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz"
   integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==
   dependencies:
     call-bind "^1.0.2"
@@ -10101,27 +10079,32 @@ typedarray-to-buffer@^3.1.5:
 
 typedarray@^0.0.6:
   version "0.0.6"
-  resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
+  resolved "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz"
   integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==
 
-ua-parser-js@^1.0.35:
-  version "1.0.35"
-  resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-1.0.35.tgz#c4ef44343bc3db0a3cbefdf21822f1b1fc1ab011"
-  integrity sha512-fKnGuqmTBnIE+/KXSzCn4db8RTigUzw1AN0DmdU6hJovUTbYJKyqj+8Mt1c4VfRDnOVJnENmfYkIPZ946UrSAA==
+ua-parser-js@^1.0.37:
+  version "1.0.37"
+  resolved "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.37.tgz"
+  integrity sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==
 
-ufo@^1.1.2:
-  version "1.1.2"
-  resolved "https://registry.yarnpkg.com/ufo/-/ufo-1.1.2.tgz#d0d9e0fa09dece0c31ffd57bd363f030a35cfe76"
-  integrity sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ==
+uc.micro@^1.0.1, uc.micro@^1.0.5:
+  version "1.0.6"
+  resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac"
+  integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==
+
+ufo@^1.3.2:
+  version "1.3.2"
+  resolved "https://registry.npmjs.org/ufo/-/ufo-1.3.2.tgz"
+  integrity sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==
 
 uglify-js@^3.5.1:
   version "3.17.4"
-  resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c"
+  resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz"
   integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==
 
-unbox-primitive@^1.0.1, unbox-primitive@^1.0.2:
+unbox-primitive@^1.0.2:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e"
+  resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz"
   integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==
   dependencies:
     call-bind "^1.0.2"
@@ -10131,17 +10114,17 @@ unbox-primitive@^1.0.1, unbox-primitive@^1.0.2:
 
 unfetch@^5.0.0:
   version "5.0.0"
-  resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-5.0.0.tgz#8a5b6e5779ebe4dde0049f7d7a81d4a1af99d142"
+  resolved "https://registry.npmjs.org/unfetch/-/unfetch-5.0.0.tgz"
   integrity sha512-3xM2c89siXg0nHvlmYsQ2zkLASvVMBisZm5lF3gFDqfF2xonNStDJyMpvaOBe0a1Edxmqrf2E0HBdmy9QyZaeg==
 
 unicode-canonical-property-names-ecmascript@^2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc"
+  resolved "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz"
   integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==
 
 unicode-match-property-ecmascript@^2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3"
+  resolved "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz"
   integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==
   dependencies:
     unicode-canonical-property-names-ecmascript "^2.0.0"
@@ -10149,12 +10132,12 @@ unicode-match-property-ecmascript@^2.0.0:
 
 unicode-match-property-value-ecmascript@^2.1.0:
   version "2.1.0"
-  resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0"
+  resolved "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz"
   integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==
 
 unicode-property-aliases-ecmascript@^2.0.0:
   version "2.1.0"
-  resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd"
+  resolved "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz"
   integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==
 
 unified@^9.1.0:
@@ -10171,7 +10154,7 @@ unified@^9.1.0:
 
 union-value@^1.0.0:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847"
+  resolved "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz"
   integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==
   dependencies:
     arr-union "^3.1.0"
@@ -10181,14 +10164,14 @@ union-value@^1.0.0:
 
 unique-filename@^1.1.1:
   version "1.1.1"
-  resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230"
+  resolved "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz"
   integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==
   dependencies:
     unique-slug "^2.0.0"
 
 unique-slug@^2.0.0:
   version "2.0.2"
-  resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c"
+  resolved "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz"
   integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==
   dependencies:
     imurmurhash "^0.1.4"
@@ -10214,22 +10197,22 @@ unist-util-stringify-position@^2.0.0:
 
 universalify@^0.1.0:
   version "0.1.2"
-  resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
+  resolved "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz"
   integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==
 
 universalify@^2.0.0:
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717"
+  resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz"
   integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==
 
 unpipe@~1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
+  resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz"
   integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==
 
 unset-value@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
+  resolved "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz"
   integrity sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==
   dependencies:
     has-value "^0.3.1"
@@ -10237,42 +10220,42 @@ unset-value@^1.0.0:
 
 upath@^1.1.1:
   version "1.2.0"
-  resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894"
+  resolved "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz"
   integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
 
 upath@^2.0.1:
   version "2.0.1"
-  resolved "https://registry.yarnpkg.com/upath/-/upath-2.0.1.tgz#50c73dea68d6f6b990f51d279ce6081665d61a8b"
+  resolved "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz"
   integrity sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==
 
-update-browserslist-db@^1.0.11:
-  version "1.0.11"
-  resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940"
-  integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==
+update-browserslist-db@^1.0.13:
+  version "1.0.13"
+  resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz"
+  integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==
   dependencies:
     escalade "^3.1.1"
     picocolors "^1.0.0"
 
 upper-case@^1.1.1:
   version "1.1.3"
-  resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598"
+  resolved "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz"
   integrity sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==
 
 uri-js@^4.2.2:
   version "4.4.1"
-  resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
+  resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz"
   integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
   dependencies:
     punycode "^2.1.0"
 
 urix@^0.1.0:
   version "0.1.0"
-  resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
+  resolved "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz"
   integrity sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==
 
 url-loader@^4.1.1:
   version "4.1.1"
-  resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-4.1.1.tgz#28505e905cae158cf07c92ca622d7f237e70a4e2"
+  resolved "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz"
   integrity sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==
   dependencies:
     loader-utils "^2.0.0"
@@ -10281,7 +10264,7 @@ url-loader@^4.1.1:
 
 url@^0.11.0:
   version "0.11.1"
-  resolved "https://registry.yarnpkg.com/url/-/url-0.11.1.tgz#26f90f615427eca1b9f4d6a28288c147e2302a32"
+  resolved "https://registry.npmjs.org/url/-/url-0.11.1.tgz"
   integrity sha512-rWS3H04/+mzzJkv0eZ7vEDGiQbgquI1fGfOad6zKvgYQi1SzMmhl7c/DdRGxhaWrVH6z0qWITo8rpnxK/RfEhA==
   dependencies:
     punycode "^1.4.1"
@@ -10289,17 +10272,17 @@ url@^0.11.0:
 
 use@^3.1.0:
   version "3.1.1"
-  resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
+  resolved "https://registry.npmjs.org/use/-/use-3.1.1.tgz"
   integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
 
 util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
+  resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"
   integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
 
 util.promisify@1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030"
+  resolved "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz"
   integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==
   dependencies:
     define-properties "^1.1.2"
@@ -10307,26 +10290,26 @@ util.promisify@1.0.0:
 
 util@0.10.3:
   version "0.10.3"
-  resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
+  resolved "https://registry.npmjs.org/util/-/util-0.10.3.tgz"
   integrity sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==
   dependencies:
     inherits "2.0.1"
 
 util@^0.11.0:
   version "0.11.1"
-  resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61"
+  resolved "https://registry.npmjs.org/util/-/util-0.11.1.tgz"
   integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==
   dependencies:
     inherits "2.0.3"
 
 utila@~0.4:
   version "0.4.0"
-  resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c"
+  resolved "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz"
   integrity sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==
 
 utils-merge@1.0.1:
   version "1.0.1"
-  resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
+  resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz"
   integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==
 
 v8-compile-cache@^2.0.3, v8-compile-cache@^2.3.0:
@@ -10344,7 +10327,7 @@ validate-npm-package-license@^3.0.1:
 
 vary@^1.1.2, vary@~1.1.2:
   version "1.1.2"
-  resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
+  resolved "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz"
   integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==
 
 vfile-message@^2.0.0:
@@ -10367,29 +10350,17 @@ vfile@^4.0.0:
 
 vm-browserify@^1.0.1:
   version "1.1.2"
-  resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0"
+  resolved "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz"
   integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==
 
 vue-client-only@^2.1.0:
   version "2.1.0"
-  resolved "https://registry.yarnpkg.com/vue-client-only/-/vue-client-only-2.1.0.tgz#1a67a47b8ecacfa86d75830173fffee3bf8a4ee3"
+  resolved "https://registry.npmjs.org/vue-client-only/-/vue-client-only-2.1.0.tgz"
   integrity sha512-vKl1skEKn8EK9f8P2ZzhRnuaRHLHrlt1sbRmazlvsx6EiC3A8oWF8YCBrMJzoN+W3OnElwIGbVjsx6/xelY1AA==
 
-vue-eslint-parser@^7.1.1:
-  version "7.6.0"
-  resolved "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.6.0.tgz"
-  integrity sha512-QXxqH8ZevBrtiZMZK0LpwaMfevQi9UL7lY6Kcp+ogWHC88AuwUPwwCIzkOUc1LR4XsYAt/F9yHXAB/QoD17QXA==
-  dependencies:
-    debug "^4.1.1"
-    eslint-scope "^5.0.0"
-    eslint-visitor-keys "^1.1.0"
-    espree "^6.2.1"
-    esquery "^1.4.0"
-    lodash "^4.17.15"
-
-vue-eslint-parser@^7.10.0, vue-eslint-parser@^7.6.0:
+vue-eslint-parser@^7.1.1, vue-eslint-parser@^7.10.0:
   version "7.11.0"
-  resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-7.11.0.tgz#214b5dea961007fcffb2ee65b8912307628d0daf"
+  resolved "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.11.0.tgz"
   integrity sha512-qh3VhDLeh773wjgNTl7ss0VejY9bMMa0GoDG2fQVyDzRFdiU3L7fw74tWZDHNQXdZqxO3EveQroa9ct39D2nqg==
   dependencies:
     debug "^4.1.1"
@@ -10402,18 +10373,18 @@ vue-eslint-parser@^7.10.0, vue-eslint-parser@^7.6.0:
 
 vue-hot-reload-api@^2.3.0:
   version "2.3.4"
-  resolved "https://registry.yarnpkg.com/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz#532955cc1eb208a3d990b3a9f9a70574657e08f2"
+  resolved "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz"
   integrity sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==
 
 vue-json-to-csv@^1.1.8:
   version "1.1.8"
-  resolved "https://registry.yarnpkg.com/vue-json-to-csv/-/vue-json-to-csv-1.1.8.tgz#10b5652ca1bcc11e5cfd3637b303b7a1e06a12a0"
+  resolved "https://registry.npmjs.org/vue-json-to-csv/-/vue-json-to-csv-1.1.8.tgz"
   integrity sha512-xdV2cUyLQYPnG6ChjLJn3+PYnP8zxZG5u6QtFjAMzcsUtGvLFrTvMN4XnD/he4M67Y14nXE0i/20xeyaVfhylQ==
 
-vue-loader@^15.10.1:
-  version "15.10.1"
-  resolved "https://registry.yarnpkg.com/vue-loader/-/vue-loader-15.10.1.tgz#c451c4cd05a911aae7b5dbbbc09fb913fb3cca18"
-  integrity sha512-SaPHK1A01VrNthlix6h1hq4uJu7S/z0kdLUb6klubo738NeQoLbS6V9/d8Pv19tU0XdQKju3D1HSKuI8wJ5wMA==
+vue-loader@^15.11.1:
+  version "15.11.1"
+  resolved "https://registry.npmjs.org/vue-loader/-/vue-loader-15.11.1.tgz"
+  integrity sha512-0iw4VchYLePqJfJu9s62ACWUXeSqM30SQqlIftbYWM3C+jpPcEHKSPUZBLjSF9au4HTHQ/naF6OGnO3Q/qGR3Q==
   dependencies:
     "@vue/component-compiler-utils" "^3.1.0"
     hash-sum "^1.0.2"
@@ -10423,25 +10394,25 @@ vue-loader@^15.10.1:
 
 vue-meta@^2.4.0:
   version "2.4.0"
-  resolved "https://registry.yarnpkg.com/vue-meta/-/vue-meta-2.4.0.tgz#a419fb4b4135ce965dab32ec641d1989c2ee4845"
+  resolved "https://registry.npmjs.org/vue-meta/-/vue-meta-2.4.0.tgz"
   integrity sha512-XEeZUmlVeODclAjCNpWDnjgw+t3WA6gdzs6ENoIAgwO1J1d5p1tezDhtteLUFwcaQaTtayRrsx7GL6oXp/m2Jw==
   dependencies:
     deepmerge "^4.2.2"
 
 vue-no-ssr@^1.1.1:
   version "1.1.1"
-  resolved "https://registry.yarnpkg.com/vue-no-ssr/-/vue-no-ssr-1.1.1.tgz#875f3be6fb0ae41568a837f3ac1a80eaa137b998"
+  resolved "https://registry.npmjs.org/vue-no-ssr/-/vue-no-ssr-1.1.1.tgz"
   integrity sha512-ZMjqRpWabMPqPc7gIrG0Nw6vRf1+itwf0Itft7LbMXs2g3Zs/NFmevjZGN1x7K3Q95GmIjWbQZTVerxiBxI+0g==
 
 vue-router@^3.6.5:
   version "3.6.5"
-  resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-3.6.5.tgz#95847d52b9a7e3f1361cb605c8e6441f202afad8"
+  resolved "https://registry.npmjs.org/vue-router/-/vue-router-3.6.5.tgz"
   integrity sha512-VYXZQLtjuvKxxcshuRAwjHnciqZVoXAjTjcqBTz4rKc8qih9g9pI3hbDjmqXaHdgL3v8pV6P8Z335XvHzESxLQ==
 
-vue-server-renderer@^2.7.14:
-  version "2.7.14"
-  resolved "https://registry.yarnpkg.com/vue-server-renderer/-/vue-server-renderer-2.7.14.tgz#986f3fdca63fbb38bb6834698f11e0d6a81f182f"
-  integrity sha512-NlGFn24tnUrj7Sqb8njhIhWREuCJcM3140aMunLNcx951BHG8j3XOrPP7psSCaFA8z6L4IWEjudztdwTp1CBVw==
+vue-server-renderer@^2.7.16:
+  version "2.7.16"
+  resolved "https://registry.npmjs.org/vue-server-renderer/-/vue-server-renderer-2.7.16.tgz"
+  integrity sha512-U7GgR4rYmHmbs3Z2gqsasfk7JNuTsy/xrR5EMMGRLkjN8+ryDlqQq6Uu3DcmbCATAei814YOxyl0eq2HNqgXyQ==
   dependencies:
     chalk "^4.1.2"
     hash-sum "^2.0.0"
@@ -10454,36 +10425,36 @@ vue-server-renderer@^2.7.14:
 
 vue-style-loader@^4.1.0, vue-style-loader@^4.1.3:
   version "4.1.3"
-  resolved "https://registry.yarnpkg.com/vue-style-loader/-/vue-style-loader-4.1.3.tgz#6d55863a51fa757ab24e89d9371465072aa7bc35"
+  resolved "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.3.tgz"
   integrity sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg==
   dependencies:
     hash-sum "^1.0.2"
     loader-utils "^1.0.2"
 
-vue-template-compiler@^2.6.14, vue-template-compiler@^2.7.14:
-  version "2.7.14"
-  resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.7.14.tgz#4545b7dfb88090744c1577ae5ac3f964e61634b1"
-  integrity sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==
+vue-template-compiler@^2.6.14, vue-template-compiler@^2.7.16:
+  version "2.7.16"
+  resolved "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.7.16.tgz"
+  integrity sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==
   dependencies:
     de-indent "^1.0.2"
     he "^1.2.0"
 
 vue-template-es2015-compiler@^1.9.0:
   version "1.9.1"
-  resolved "https://registry.yarnpkg.com/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz#1ee3bc9a16ecbf5118be334bb15f9c46f82f5825"
+  resolved "https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz"
   integrity sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==
 
-vue@^2.7.10:
-  version "2.7.14"
-  resolved "https://registry.yarnpkg.com/vue/-/vue-2.7.14.tgz#3743dcd248fd3a34d421ae456b864a0246bafb17"
-  integrity sha512-b2qkFyOM0kwqWFuQmgd4o+uHGU7T+2z3T+WQp8UBjADfEv2n4FEMffzBmCKNP0IGzOEEfYjvtcC62xaSKeQDrQ==
+vue@^2.7.16:
+  version "2.7.16"
+  resolved "https://registry.npmjs.org/vue/-/vue-2.7.16.tgz"
+  integrity sha512-4gCtFXaAA3zYZdTp5s4Hl2sozuySsgz4jy1EnpBHNfpMa9dK1ZCG7viqBPCwXtmgc8nHqUsAu3G4gtmXkkY3Sw==
   dependencies:
-    "@vue/compiler-sfc" "2.7.14"
+    "@vue/compiler-sfc" "2.7.16"
     csstype "^3.1.0"
 
 vuetify-loader@^1.7.3:
   version "1.9.2"
-  resolved "https://registry.yarnpkg.com/vuetify-loader/-/vuetify-loader-1.9.2.tgz#adcadac71c6d9b24bde42a5b81dfda1871f73f81"
+  resolved "https://registry.npmjs.org/vuetify-loader/-/vuetify-loader-1.9.2.tgz"
   integrity sha512-8PP2w7aAs/rjA+Izec6qY7sHVb75MNrGQrDOTZJ5IEnvl+NiFhVpU2iWdRDZ3eMS842cWxSWStvkr+KJJKy+Iw==
   dependencies:
     acorn "^8.4.1"
@@ -10492,26 +10463,26 @@ vuetify-loader@^1.7.3:
     file-loader "^6.2.0"
     loader-utils "^2.0.0"
 
-vuetify@^2.5.5, vuetify@^2.6:
-  version "2.6.15"
-  resolved "https://registry.yarnpkg.com/vuetify/-/vuetify-2.6.15.tgz#058c976f4e6e834076d80ae0c09bd61baa836d26"
-  integrity sha512-2a6sBSHzivXgi9pZMyHuzTgMyInCkj/BrVwTnoCa1Y/Dnfwj7lkWzgKQDScbGVK0q4vJ+YHoBBrLOmnhz1R0YA==
+vuetify@^2.6, vuetify@^2.7.1:
+  version "2.7.1"
+  resolved "https://registry.npmjs.org/vuetify/-/vuetify-2.7.1.tgz"
+  integrity sha512-DVFmRsDtYrITw9yuGLwpFWngFYzEgk0KwloDCIV3+vhZw+NBFJOSzdbttbYmOwtqvQlhDxUyIRQolrRbSFAKlg==
 
 vuex@^3.6.2:
   version "3.6.2"
-  resolved "https://registry.yarnpkg.com/vuex/-/vuex-3.6.2.tgz#236bc086a870c3ae79946f107f16de59d5895e71"
+  resolved "https://registry.npmjs.org/vuex/-/vuex-3.6.2.tgz"
   integrity sha512-ETW44IqCgBpVomy520DT5jf8n0zoCac+sxWnn+hMe/CzaSejb/eVw2YToiXYX+Ex/AuHHia28vWTq4goAexFbw==
 
 watchpack-chokidar2@^2.0.1:
   version "2.0.1"
-  resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz#38500072ee6ece66f3769936950ea1771be1c957"
+  resolved "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz"
   integrity sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==
   dependencies:
     chokidar "^2.1.8"
 
 watchpack@^1.7.4:
   version "1.7.5"
-  resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.5.tgz#1267e6c55e0b9b5be44c2023aed5437a2c26c453"
+  resolved "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz"
   integrity sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==
   dependencies:
     graceful-fs "^4.1.2"
@@ -10522,7 +10493,7 @@ watchpack@^1.7.4:
 
 watchpack@^2.4.0:
   version "2.4.0"
-  resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d"
+  resolved "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz"
   integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==
   dependencies:
     glob-to-regexp "^0.4.1"
@@ -10530,28 +10501,31 @@ watchpack@^2.4.0:
 
 webidl-conversions@^3.0.0:
   version "3.0.1"
-  resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
+  resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz"
   integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==
 
-webpack-bundle-analyzer@^4.9.0:
-  version "4.9.0"
-  resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.9.0.tgz#fc093c4ab174fd3dcbd1c30b763f56d10141209d"
-  integrity sha512-+bXGmO1LyiNx0i9enBu3H8mv42sj/BJWhZNFwjz92tVnBa9J3JMGo2an2IXlEleoDOPn/Hofl5hr/xCpObUDtw==
+webpack-bundle-analyzer@^4.10.1:
+  version "4.10.1"
+  resolved "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.10.1.tgz"
+  integrity sha512-s3P7pgexgT/HTUSYgxJyn28A+99mmLq4HsJepMPzu0R8ImJc52QNqaFYW1Z2z2uIb1/J3eYgaAWVpaC+v/1aAQ==
   dependencies:
     "@discoveryjs/json-ext" "0.5.7"
     acorn "^8.0.4"
     acorn-walk "^8.0.0"
-    chalk "^4.1.0"
     commander "^7.2.0"
+    debounce "^1.2.1"
+    escape-string-regexp "^4.0.0"
     gzip-size "^6.0.0"
-    lodash "^4.17.20"
+    html-escaper "^2.0.2"
+    is-plain-object "^5.0.0"
     opener "^1.5.2"
-    sirv "^1.0.7"
+    picocolors "^1.0.0"
+    sirv "^2.0.3"
     ws "^7.3.1"
 
-webpack-dev-middleware@^5.3.3:
+webpack-dev-middleware@^5.0.0:
   version "5.3.3"
-  resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz#efae67c2793908e7311f1d9b06f2a08dcc97e51f"
+  resolved "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz"
   integrity sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==
   dependencies:
     colorette "^2.0.10"
@@ -10560,10 +10534,10 @@ webpack-dev-middleware@^5.3.3:
     range-parser "^1.2.1"
     schema-utils "^4.0.0"
 
-webpack-hot-middleware@^2.25.3:
-  version "2.25.4"
-  resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.25.4.tgz#d8bc9e9cb664fc3105c8e83d2b9ed436bee4e193"
-  integrity sha512-IRmTspuHM06aZh98OhBJtqLpeWFM8FXJS5UYpKYxCJzyFoyWj1w6VGFfomZU7OPA55dMLrQK0pRT1eQ3PACr4w==
+webpack-hot-middleware@^2.26.0:
+  version "2.26.0"
+  resolved "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.26.0.tgz"
+  integrity sha512-okzjec5sAEy4t+7rzdT8eRyxsk0FDSmBPN2KwX4Qd+6+oQCfe5Ve07+u7cJvofgB+B4w5/4dO4Pz0jhhHyyPLQ==
   dependencies:
     ansi-html-community "0.0.8"
     html-entities "^2.1.0"
@@ -10571,21 +10545,21 @@ webpack-hot-middleware@^2.25.3:
 
 webpack-node-externals@^3.0.0:
   version "3.0.0"
-  resolved "https://registry.yarnpkg.com/webpack-node-externals/-/webpack-node-externals-3.0.0.tgz#1a3407c158d547a9feb4229a9e3385b7b60c9917"
+  resolved "https://registry.npmjs.org/webpack-node-externals/-/webpack-node-externals-3.0.0.tgz"
   integrity sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==
 
 webpack-sources@^1.0.1, webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3:
   version "1.4.3"
-  resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933"
+  resolved "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz"
   integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==
   dependencies:
     source-list-map "^2.0.0"
     source-map "~0.6.1"
 
-webpack@^4.46.0:
-  version "4.46.0"
-  resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.46.0.tgz#bf9b4404ea20a073605e0a011d188d77cb6ad542"
-  integrity sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==
+webpack@^4.47.0:
+  version "4.47.0"
+  resolved "https://registry.npmjs.org/webpack/-/webpack-4.47.0.tgz"
+  integrity sha512-td7fYwgLSrky3fI1EuU5cneU4+pbH6GgOfuKNS1tNPcfdGinGELAqsb/BP4nnvZyKSG2i/xFGU7+n2PvZA8HJQ==
   dependencies:
     "@webassemblyjs/ast" "1.9.0"
     "@webassemblyjs/helper-module-context" "1.9.0"
@@ -10611,19 +10585,23 @@ webpack@^4.46.0:
     watchpack "^1.7.4"
     webpack-sources "^1.4.1"
 
-webpackbar@^5.0.2:
-  version "5.0.2"
-  resolved "https://registry.yarnpkg.com/webpackbar/-/webpackbar-5.0.2.tgz#d3dd466211c73852741dfc842b7556dcbc2b0570"
-  integrity sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==
+webpackbar@^6.0.0:
+  version "6.0.0"
+  resolved "https://registry.npmjs.org/webpackbar/-/webpackbar-6.0.0.tgz"
+  integrity sha512-RdB0RskzOaix1VFMnBXSkKMbUgvZliRqgoNp0gCnG6iUe9RS9sf018AJ/1h5NAeh+ttwXkXjXKC6NdjE/OOcaA==
   dependencies:
-    chalk "^4.1.0"
-    consola "^2.15.3"
+    ansi-escapes "^4.3.2"
+    chalk "^4.1.2"
+    consola "^3.2.3"
+    figures "^3.2.0"
+    markdown-table "^2.0.0"
     pretty-time "^1.1.0"
-    std-env "^3.0.1"
+    std-env "^3.6.0"
+    wrap-ansi "^7.0.0"
 
 whatwg-url@^5.0.0:
   version "5.0.0"
-  resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d"
+  resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz"
   integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==
   dependencies:
     tr46 "~0.0.3"
@@ -10631,7 +10609,7 @@ whatwg-url@^5.0.0:
 
 which-boxed-primitive@^1.0.2:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
+  resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz"
   integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
   dependencies:
     is-bigint "^1.0.1"
@@ -10642,7 +10620,7 @@ which-boxed-primitive@^1.0.2:
 
 which-typed-array@^1.1.9:
   version "1.1.9"
-  resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6"
+  resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz"
   integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==
   dependencies:
     available-typed-arrays "^1.0.5"
@@ -10661,26 +10639,26 @@ which@^1.3.1:
 
 which@^2.0.1:
   version "2.0.2"
-  resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
+  resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz"
   integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
   dependencies:
     isexe "^2.0.0"
 
 widest-line@^3.1.0:
   version "3.1.0"
-  resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca"
+  resolved "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz"
   integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==
   dependencies:
     string-width "^4.0.0"
 
 word-wrap@^1.2.3:
   version "1.2.3"
-  resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
+  resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz"
   integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
 
 worker-farm@^1.7.0:
   version "1.7.0"
-  resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8"
+  resolved "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz"
   integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==
   dependencies:
     errno "~0.1.7"
@@ -10696,7 +10674,7 @@ wrap-ansi@^6.2.0:
 
 wrap-ansi@^7.0.0:
   version "7.0.0"
-  resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
+  resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"
   integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
   dependencies:
     ansi-styles "^4.0.0"
@@ -10705,12 +10683,12 @@ wrap-ansi@^7.0.0:
 
 wrappy@1:
   version "1.0.2"
-  resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
+  resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"
   integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
 
 write-file-atomic@^2.0.0:
   version "2.4.3"
-  resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481"
+  resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz"
   integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==
   dependencies:
     graceful-fs "^4.1.11"
@@ -10729,7 +10707,7 @@ write-file-atomic@^3.0.3:
 
 write-json-file@^2.3.0:
   version "2.3.0"
-  resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.3.0.tgz#2b64c8a33004d54b8698c76d585a77ceb61da32f"
+  resolved "https://registry.npmjs.org/write-json-file/-/write-json-file-2.3.0.tgz"
   integrity sha512-84+F0igFp2dPD6UpAQjOUX3CdKUOqUzn6oE9sDBNzUXINR5VceJ1rauZltqQB/bcYsx3EpKys4C7/PivKUAiWQ==
   dependencies:
     detect-indent "^5.0.0"
@@ -10741,39 +10719,39 @@ write-json-file@^2.3.0:
 
 ws@^7.3.1:
   version "7.5.9"
-  resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591"
+  resolved "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz"
   integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==
 
 xtend@^4.0.0, xtend@~4.0.1:
   version "4.0.2"
-  resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
+  resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"
   integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
 
 xxhashjs@~0.2.2:
   version "0.2.2"
-  resolved "https://registry.yarnpkg.com/xxhashjs/-/xxhashjs-0.2.2.tgz#8a6251567621a1c46a5ae204da0249c7f8caa9d8"
+  resolved "https://registry.npmjs.org/xxhashjs/-/xxhashjs-0.2.2.tgz"
   integrity sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==
   dependencies:
     cuint "^0.2.2"
 
 y18n@^4.0.0:
   version "4.0.3"
-  resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf"
+  resolved "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz"
   integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==
 
 yallist@^2.1.2:
   version "2.1.2"
-  resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
+  resolved "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz"
   integrity sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==
 
 yallist@^3.0.2:
   version "3.1.1"
-  resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
+  resolved "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz"
   integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
 
 yallist@^4.0.0:
   version "4.0.0"
-  resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
+  resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"
   integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
 
 yaml@^1.10.0, yaml@^1.10.2:
@@ -10788,7 +10766,7 @@ yargs-parser@^20.2.3:
 
 yocto-queue@^0.1.0:
   version "0.1.0"
-  resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
+  resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz"
   integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
 
 zwitch@^1.0.0:
diff --git a/doc/source/install.rst b/doc/source/install.rst
index f01b156766e0ce3a3caee3a21396bff0dfd742dd..4be7cb5d937b3860eb1673ff9d3e663cbedfef99 100644
--- a/doc/source/install.rst
+++ b/doc/source/install.rst
@@ -108,19 +108,19 @@ Then, you can install RabbitMQ with the "choco install" command:
 Run JASS as a web application (optional)
 ----------------------------------------
 
-To run locally JASS as a web application, it is recommended to use the docker-compose as it handles all dependencies in one command.
-If using docker-compose is not an option, you need to launch two servers in two different processes, the `celery` task management server and the web server. The web server handles the HTTP requests, and sends all computation requests to the task management server.
+To run locally JASS as a web application, it is recommended to use docker compose as it handles all dependencies in one command.
+If using docker compose is not an option, you need to launch two servers in two different processes, the `celery` task management server and the web server. The web server handles the HTTP requests, and sends all computation requests to the task management server.
 
 Launching with docker compose (recommended)
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-Once docker and docker-compose installed, copy the :ref:`initTable.hdf5 you created <Create initTable>` in data/ folder and then run
+Once docker is installed, copy the :ref:`initTable.hdf5 you created <Create initTable>` in data/ folder and then run
 
 .. code-block:: shell
 
     # build the application
-    docker-compose build
+    docker compose build
     # launch the whole application
-    docker-compose up
+    docker compose up
     # then visit http://0.0.0.0:3000/
 
 If you just want to try jass with test data (i.e without creating an initTable), run:
@@ -128,9 +128,9 @@ If you just want to try jass with test data (i.e without creating an initTable),
 .. code-block:: shell
 
     # build the application
-    docker-compose build
+    docker compose build
     # launch the whole application with
-    docker-compose -f docker-compose.yaml -f docker-compose.test.yaml up
+    docker compose -f docker-compose.yaml -f docker-compose.test.yaml up
     # then visit http://0.0.0.0:3000/
 
 launching the two servers on Linux
diff --git a/docker-compose.yaml b/docker-compose.yaml
index 2a57aa4bea8520c2f0e2562bf5b72717ec1f4db5..69f2b02235cd7d6dcda38b205af546fa3d3ddccd 100644
--- a/docker-compose.yaml
+++ b/docker-compose.yaml
@@ -48,7 +48,7 @@ services:
     build:
       context: client
       target: client-base-container
-    command: ['yarn', 'dev']
+    command: /bin/sh -c "yarn install && yarn dev"
     environment:
       HOST: 0.0.0.0
       NODE_ENV: development
diff --git a/jass/server.py b/jass/server.py
index 262b859c1539aeda9dc086f008203fb000096672..d5ed5f36ea9fb89d6eb34ba97ae351ca4b92aa19 100644
--- a/jass/server.py
+++ b/jass/server.py
@@ -58,7 +58,7 @@ def inittable_list():
     for filename in os.listdir(config["DATA_DIR"]):
         if (
             filename.endswith(".hdf5")
-            and "worktable" not in filename
+            and "worktable" not in filename.lower()
             and valideInitTableNamePattern.match(filename)
         ):
             yield filename