Hopelijk werkt dit

This commit is contained in:
Jaap Laging 2023-01-06 17:03:15 +01:00
commit 27bf0ee10b
26 changed files with 1072 additions and 0 deletions

24
404.html Normal file
View File

@ -0,0 +1,24 @@
---
layout: default
---
<style type="text/css" media="screen">
.container {
margin: 10px auto;
max-width: 600px;
text-align: center;
}
h1 {
margin: 30px 0;
font-size: 4em;
line-height: 1;
letter-spacing: -1px;
}
</style>
<div class="container">
<h1>404</h1>
<p><strong>Page not found :(</strong></p>
<p>The requested page could not be found.</p>
</div>

38
Gemfile Normal file
View File

@ -0,0 +1,38 @@
source "https://rubygems.org"
# Hello! This is where you manage which Jekyll version is used to run.
# When you want to use a different version, change it below, save the
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
#
# bundle exec jekyll serve
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
gem "jekyll", "~> 3.9.0"
# This is the default theme for new Jekyll sites. You may change this to anything you like.
gem "minima", "~> 2.0"
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
# uncomment the line below. To upgrade, run `bundle update github-pages`.
# gem "github-pages", group: :jekyll_plugins
# If you have any plugins, put them here!
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.6"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
# and associated library.
platforms :mingw, :x64_mingw, :mswin, :jruby do
gem "tzinfo", "~> 1.2"
gem "tzinfo-data"
end
# Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1.0", :platforms => [:mingw, :x64_mingw, :mswin]
# kramdown v2 ships without the gfm parser by default. If you're using
# kramdown v1, comment out this line.
gem "kramdown-parser-gfm"

76
Gemfile.lock Normal file
View File

@ -0,0 +1,76 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.8.1)
public_suffix (>= 2.0.2, < 6.0)
colorator (1.1.0)
concurrent-ruby (1.1.10)
em-websocket (0.5.3)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0)
eventmachine (1.2.7)
ffi (1.15.5)
forwardable-extended (2.6.0)
http_parser.rb (0.8.0)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
jekyll (3.9.2)
addressable (~> 2.4)
colorator (~> 1.0)
em-websocket (~> 0.5)
i18n (~> 0.7)
jekyll-sass-converter (~> 1.0)
jekyll-watch (~> 2.0)
kramdown (>= 1.17, < 3)
liquid (~> 4.0)
mercenary (~> 0.3.3)
pathutil (~> 0.9)
rouge (>= 1.7, < 4)
safe_yaml (~> 1.0)
jekyll-feed (0.17.0)
jekyll (>= 3.7, < 5.0)
jekyll-sass-converter (1.5.2)
sass (~> 3.4)
jekyll-seo-tag (2.8.0)
jekyll (>= 3.8, < 5.0)
jekyll-watch (2.2.1)
listen (~> 3.0)
kramdown (2.4.0)
rexml
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
liquid (4.0.3)
listen (3.7.1)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
mercenary (0.3.6)
minima (2.5.1)
jekyll (>= 3.5, < 5.0)
jekyll-feed (~> 0.9)
jekyll-seo-tag (~> 2.1)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (5.0.1)
rb-fsevent (0.11.2)
rb-inotify (0.10.1)
ffi (~> 1.0)
rexml (3.2.5)
rouge (3.30.0)
safe_yaml (1.0.5)
sass (3.7.4)
listen (~> 3.0)
PLATFORMS
x86_64-linux
DEPENDENCIES
jekyll (~> 3.9.0)
jekyll-feed (~> 0.6)
kramdown-parser-gfm
minima (~> 2.0)
tzinfo (~> 1.2)
tzinfo-data
wdm (~> 0.1.0)
BUNDLED WITH
2.3.5

43
_config.yml Normal file
View File

@ -0,0 +1,43 @@
# Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
# Site settings
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
title: Your awesome title
email: your-email@example.com
description: >- # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
baseurl: "" # the subpath of your site, e.g. /blog
url: "" # the base hostname & protocol for your site, e.g. http://example.com
twitter_username: jekyllrb
github_username: jekyll
# Build settings
markdown: kramdown
theme: minima
plugins:
- jekyll-feed
# Exclude from processing.
# The following items will not be processed, by default. Create a custom list
# to override the default setting.
# exclude:
# - Gemfile
# - Gemfile.lock
# - node_modules
# - vendor/bundle/
# - vendor/cache/
# - vendor/gems/
# - vendor/ruby/

View File

@ -0,0 +1,25 @@
---
layout: post
title: "Welcome to Jekyll!"
date: 2023-01-06 16:42:59 +0100
categories: jekyll update
---
Youll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
To add new posts, simply add a file in the `_posts` directory that follows the convention `YYYY-MM-DD-name-of-post.ext` and includes the necessary front matter. Take a look at the source for this post to get an idea about how it works.
Jekyll also offers powerful support for code snippets:
{% highlight ruby %}
def print_hi(name)
puts "Hi, #{name}"
end
print_hi('Tom')
#=> prints 'Hi, Tom' to STDOUT.
{% endhighlight %}
Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekylls GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk].
[jekyll-docs]: https://jekyllrb.com/docs/home
[jekyll-gh]: https://github.com/jekyll/jekyll
[jekyll-talk]: https://talk.jekyllrb.com/

18
about.md Normal file
View File

@ -0,0 +1,18 @@
---
layout: page
title: About
permalink: /about/
---
This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/)
You can find the source code for Minima at GitHub:
[jekyll][jekyll-organization] /
[minima](https://github.com/jekyll/minima)
You can find the source code for Jekyll at GitHub:
[jekyll][jekyll-organization] /
[jekyll](https://github.com/jekyll/jekyll)
[jekyll-organization]: https://github.com/jekyll

BIN
assest/Flesch logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

BIN
assest/Headerimg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 MiB

BIN
assest/LUF logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

88
assest/Logo Symposium.svg Normal file
View File

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8" 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" width="595.32pt" height="841.92007pt" viewBox="0 0 595.32 841.92007">
<g enable-background="new">
<path transform="matrix(.75,0,0,.75,213.12,361.2)" d="M 0 0 C 5.92 -54.56 48.32 -96.96 101.44 -101.44 L 110.88 -102.24 L 110.88 -48.32 L 102.72 -47.68 C 79.36 -45.44 56.48 -22.88 53.6 .96 L 52.64 8.64 L -.96 8.64 Z "/>
<path transform="matrix(.75,0,0,.75,299.40003,432.48)" d="M 0 0 L 0 -26.72 L 8.48 -28.32 C 31.84 -32.64 52 -53.12 54.56 -75.04 L 55.52 -82.4 L 109.28 -82.4 L 108.48 -72.8 C 105.92 -45.76 89.6 -16.16 67.2 1.76 C 51.52 14.24 28.8 23.52 7.84 25.92 L 0 26.72 Z "/>
<path transform="matrix(.75,0,0,.75,323.16,285.84)" d="M 0 0 C -4.16 -1.28 -11.04 -2.88 -15.2 -3.36 C -19.36 -3.84 -24.8 -4.48 -27.2 -4.8 L -31.68 -5.6 L -31.68 -57.76 L -24.32 -57.76 C -13.92 -57.76 5.6 -54.24 18.56 -50.08 C 24.64 -48 29.92 -46.24 30.24 -45.92 C 31.36 -44.96 10.56 2.88 9.12 2.72 C 8.32 2.56 4.16 1.44 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,372.36003,327.48)" d="M 0 0 C -2.88 -5.28 -8.16 -13.12 -11.68 -17.6 L -18.4 -25.76 L .32 -44.64 L 18.88 -63.36 L 25.76 -55.68 C 37.12 -42.88 52.8 -17.44 52.96 -11.84 C 52.96 -10.56 36.32 -3.2 5.92 9.12 C 5.44 9.28 2.72 5.28 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,395.64,408)" d="M 0 0 C -12.32 -5.28 -22.72 -9.76 -23.04 -10.08 C -23.36 -10.4 -22.72 -13.28 -21.6 -16.32 C -19.52 -22.08 -17.44 -32.64 -16 -44.48 L -15.2 -51.04 L 37.12 -51.04 L 37.12 -43.68 C 37.12 -28 28 9.6 24.32 9.6 C 23.36 9.44 12.48 5.12 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,346.2,482.76)" d="M 0 0 C -.48 -1.44 -5.12 -12.48 -10.08 -24.64 L -19.36 -46.72 L -15.36 -48.32 C -10.88 -50.24 5.12 -60.64 11.68 -66.08 L 16.32 -69.92 L 34.72 -51.52 C 50.24 -36.16 52.96 -32.64 51.68 -31.04 C 45.6 -23.68 18.08 -4.8 6.08 .16 C 1.28 2.24 .8 2.24 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,279.24,493.32)" d="M 0 0 C -13.28 -2.08 -32.8 -7.2 -35.84 -9.44 C -37.92 -11.04 -36.96 -13.76 -28.16 -35.36 L -18.24 -59.52 L -11.2 -57.12 C -3.04 -54.24 11.36 -51.84 18.88 -51.84 L 24 -51.84 L 24 2.08 L 17.44 1.92 C 13.92 1.76 6.08 .96 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,203.63999,452.64)" d="M 0 0 C -8.96 -10.08 -17.76 -22.72 -24 -34.72 C -27.2 -40.96 -29.6 -46.24 -29.44 -46.4 C -28.32 -47.36 19.04 -66.56 19.36 -66.24 C 19.52 -65.92 21.12 -63.04 22.88 -59.52 C 26.72 -51.68 33.12 -42.56 38.88 -36.16 L 43.36 -31.2 L 24.48 -12.48 L 5.6 6.24 Z "/>
<path transform="matrix(.75,0,0,.75,171.6,359.63999)" d="M 0 0 C 1.44 -17.12 7.68 -43.84 11.52 -49.76 C 12.32 -51.04 18.4 -49.12 36.64 -41.44 L 60.8 -31.36 L 57.76 -21.12 C 56.16 -15.36 54.24 -5.92 53.76 0 L 52.8 10.72 L -.96 10.72 Z "/>
<path transform="matrix(.75,0,0,.75,222.95999,291.72)" d="M 0 0 L -18.4 -18.4 L -9.6 -25.6 C .8 -34.4 13.76 -43.04 25.6 -48.96 L 34.08 -53.12 L 38.56 -42.56 C 40.96 -36.64 45.6 -25.6 48.8 -17.76 L 54.56 -3.84 L 50.4 -2.08 C 44.64 .32 27.2 12 24.16 15.52 C 22.56 17.12 20.8 18.4 20 18.4 C 19.04 18.4 10.08 10.24 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,364.56,165.72)" d="M 0 0 C -20.96 -7.36 -42.88 -11.68 -68 -13.76 L -88.32 -15.36 L -88.32 -42.08 C -88.32 -67.04 -88.16 -68.64 -85.76 -68.64 C -76.8 -68.64 -45.12 -65.44 -31.84 -63.2 C -5.44 -58.56 38.56 -45.28 38.56 -41.92 C 38.4 -37.92 19.36 5.12 17.76 5.28 C 16.64 5.28 8.64 2.88 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,488.88,273)" d="M 0 0 C -13.44 -26.4 -28.32 -48 -45.28 -65.6 L -52.64 -73.12 L -14.56 -111.36 L -3.36 -98.56 C 10.56 -82.88 21.12 -68.96 31.04 -53.28 C 39.36 -40 56.16 -7.36 56.16 -4.32 C 56.16 -3.2 55.04 -2.08 53.76 -1.76 C 52.48 -1.28 41.76 3.04 29.92 7.84 L 8.48 16.8 Z "/>
<path transform="matrix(.75,0,0,.75,514.44,457.08003)" d="M 0 0 C -13.28 -5.44 -24 -10.56 -24 -11.2 C -24 -11.84 -21.6 -19.52 -18.72 -28.32 C -10.4 -53.6 -4 -88.96 -4 -111.2 L -4 -117.92 L 50.08 -117.92 L 49.12 -102.4 C 47.04 -68.48 40.96 -37.76 30.72 -8.32 C 27.36 1.6 24.48 9.76 24.32 9.92 C 24.32 9.92 13.28 5.6 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,388.32,584.27999)" d="M 0 0 C -5.6 -13.28 -9.76 -24.48 -9.44 -24.64 C -9.28 -24.96 -2.56 -28.32 5.12 -32.16 C 30.24 -44.8 49.6 -57.76 69.44 -75.52 L 80.16 -85.28 L 98.72 -66.72 L 117.44 -48.32 L 106.4 -37.76 C 93.76 -25.6 74.88 -11.2 57.92 -.64 C 47.84 5.76 12.64 24.16 10.72 24.16 C 10.4 24.16 5.6 13.28 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,266.52,620.4)" d="M 0 0 C -8.48 -.96 -22.72 -3.52 -31.68 -5.44 C -49.44 -9.44 -80 -19.04 -83.84 -21.76 C -85.92 -23.36 -85.28 -25.44 -76.16 -47.68 L -66.08 -72 L -60 -69.44 C -38.08 -60 4 -51.52 29.6 -51.52 L 40.96 -51.52 L 40.96 2.24 L 28.32 2.08 C 21.28 1.92 8.48 1.12 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,112.200008,541.68)" d="M 0 0 C -22.4 -24.48 -41.92 -52.8 -56.16 -81.44 C -61.12 -91.52 -64.96 -100 -64.64 -100.16 C -64.32 -100.48 -24.8 -116.96 -17.12 -119.84 C -16.32 -120.32 -13.6 -115.84 -11.04 -110.08 C -1.76 -88.64 17.44 -59.68 35.36 -40.32 C 40.16 -35.04 44 -30.24 44 -29.76 C 44 -29.12 35.84 -20.32 25.76 -10.24 L 7.36 8 Z "/>
<path transform="matrix(.75,0,0,.75,43.920003,360.12)" d="M 0 0 C 0 -14.24 3.52 -43.04 7.68 -61.6 C 11.04 -77.28 22.56 -113.76 24.8 -116 C 25.28 -116.48 36.64 -112.64 49.76 -107.2 L 73.92 -97.28 L 68 -79.84 C 59.2 -52.96 53.76 -23.2 53.76 -.8 L 53.76 10.08 L 0 10.08 Z "/>
<path transform="matrix(.75,0,0,.75,132.95999,201.72)" d="M 0 0 L -18.4 -18.4 L -6.88 -28.8 C 16.32 -49.92 47.84 -71.04 75.84 -84 L 89.12 -90.24 L 98.88 -66.24 C 104.32 -53.12 108.8 -42.08 108.8 -41.6 C 108.8 -41.12 104.16 -38.56 98.4 -36 C 76.16 -25.92 51.68 -9.6 29.92 9.28 C 24.16 14.4 19.2 18.56 18.88 18.56 C 18.56 18.56 10.08 10.24 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,314.40003,240.84)" d="M 0 0 C -1.6 -.16 -7.04 -.8 -12.16 -1.28 L -21.44 -2.24 L -21.44 -54.4 L -11.84 -54.4 C -2.4 -54.4 18.72 -52 19.84 -50.72 C 20.48 -50.24 12 -4.8 10.56 -.96 C 10.08 .64 6.4 .96 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,357.84,254.76)" d="M 0 0 C -7.04 -3.68 -12.32 -7.52 -12 -8.48 C -11.52 -10.56 6.24 -54.08 7.04 -54.88 C 7.68 -55.68 15.68 -52.16 27.52 -45.6 C 45.76 -35.68 45.6 -39.04 29.28 -14.4 C 21.44 -2.72 14.56 6.88 13.76 6.88 C 12.96 6.88 6.72 3.84 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,401.52,292.32)" d="M 0 0 C -1.92 -2.72 -6.24 -8.32 -9.76 -12.16 L -16 -19.04 L 2.88 -37.92 L 21.76 -56.64 L 28.64 -48.8 C 36 -40.48 47.2 -26.08 47.2 -24.8 C 47.2 -24.16 10.4 1.28 4.96 4.32 C 4 4.8 1.92 3.04 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,423,339)" d="M 0 0 C -.48 -2.72 -2.4 -9.28 -4.32 -14.72 C -6.88 -22.4 -7.36 -24.8 -5.92 -25.76 C -4.96 -26.4 6.08 -31.04 18.56 -36.16 L 41.28 -45.6 L 43.68 -39.2 C 48 -28.16 53.28 -7.04 52.16 -6.08 C 51.04 -5.12 41.44 -3.04 10.56 2.88 L .8 4.64 Z "/>
<path transform="matrix(.75,0,0,.75,443.64,396.72004)" d="M 0 0 L -24.8 -5.12 L -24.64 -9.92 C -24.64 -12.48 -24.16 -19.52 -23.52 -25.28 L -22.56 -36 L 29.6 -36 L 29.6 -26.72 C 29.6 -16.32 26.88 5.44 25.6 5.12 C 25.12 5.12 13.6 2.72 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,423,450.72004)" d="M 0 0 C -10.72 -7.2 -20.16 -13.44 -21.12 -14.08 C -22.56 -14.88 -21.28 -18.4 -15.68 -28.96 L -8.48 -42.72 L 12.96 -33.92 C 24.8 -29.12 35.84 -24.48 37.6 -23.84 L 40.64 -22.56 L 35.68 -12.64 C 29.28 .16 21.44 13.28 20.16 13.28 C 19.68 13.12 10.56 7.2 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,381,491.16)" d="M 0 0 C -7.68 -11.68 -13.92 -21.6 -13.6 -21.76 C -13.28 -22.08 -7.84 -26.56 -1.44 -31.68 L 10.08 -40.96 L 28.48 -22.56 L 46.88 -4.16 L 43.84 -.8 C 39.04 4.32 17.6 21.44 15.84 21.44 C 15.04 21.44 7.84 11.84 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,327.84,514.92)" d="M 0 0 C -2.72 -14.08 -4.64 -26.08 -4.16 -26.72 C -3.68 -27.52 -2.24 -28.16 -.96 -28.16 C .32 -28.16 6.56 -30.08 13.12 -32.16 C 19.52 -34.4 24.8 -36 24.8 -36 C 25.12 -35.36 43.52 9.28 44.16 10.88 C 45.12 13.28 35.68 17.12 16.96 22.08 L 5.12 25.28 Z "/>
<path transform="matrix(.75,0,0,.75,277.68,536.16006)" d="M 0 0 C -12.48 -1.6 -15.2 -2.4 -15.2 -4.48 C -15.2 -6.72 -5.76 -54.08 -5.28 -54.56 C -4.96 -54.72 -1.76 -54.24 2.08 -53.6 C 5.76 -52.96 12.8 -52.48 17.6 -52.48 L 26.08 -52.32 L 26.08 1.44 L 17.6 1.28 C 12.8 1.12 4.8 .64 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,219.59999,517.80007)" d="M 0 0 C -8 -4.32 -15.84 -8.64 -17.12 -9.44 C -19.52 -10.88 -18.56 -12.8 -4.96 -33.12 L 9.76 -55.2 L 20.48 -49.12 C 26.4 -45.76 32.64 -42.56 34.4 -42.08 C 36.16 -41.76 37.28 -40.8 37.12 -40.16 C 32 -26.24 16.96 8 16 8 C 15.2 8 8 4.32 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,170.4,479.16)" d="M 0 0 C -5.28 -6.4 -11.2 -13.6 -13.12 -16.32 L -16.8 -20.96 L 5.28 -36 C 17.44 -44.32 27.52 -50.88 27.68 -50.56 C 31.2 -45.44 38.4 -36.48 42.56 -32.16 L 47.84 -26.56 L 28.8 -7.52 L 9.76 11.36 Z "/>
<path transform="matrix(.75,0,0,.75,140.16,429.36)" d="M 0 0 C -4 -10.88 -8.64 -25.92 -9.28 -30.56 L -10.08 -36.16 L 13.92 -40.8 C 27.04 -43.36 38.56 -45.76 39.52 -46.08 C 40.48 -46.4 41.44 -45.92 41.76 -44.96 C 42.08 -43.84 44.16 -36.96 46.4 -29.6 L 50.56 -16.32 L 26.88 -6.56 C 13.92 -1.12 2.88 3.2 2.24 3.2 C 1.76 3.2 .64 1.76 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,129.12,357.48)" d="M 0 0 C .96 -12.8 3.04 -26.4 4.16 -27.52 C 4.48 -27.84 16.32 -25.76 30.4 -22.88 C 54.88 -18.08 56.16 -17.6 55.36 -14.88 C 54.88 -13.28 54.24 -6.24 53.76 .8 L 52.8 13.6 L -.96 13.6 Z "/>
<path transform="matrix(.75,0,0,.75,160.79999,310.68)" d="M 0 0 C -12.48 -5.28 -23.36 -9.76 -24 -9.92 C -24.8 -10.24 -22.4 -16.16 -18.88 -23.2 C -9.76 -41.12 -5.76 -47.04 -3.84 -45.92 C -2.88 -45.44 7.04 -38.88 18.08 -31.36 L 38.4 -17.92 L 31.2 -4.16 C 27.36 3.52 23.84 9.6 23.36 9.6 C 23.04 9.6 12.48 5.28 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,192.95999,261.72)" d="M 0 0 L -18.4 -18.4 L -7.52 -27.68 C 3.68 -37.44 13.28 -44.32 14.08 -43.52 C 14.4 -43.2 20.96 -33.28 28.8 -21.6 L 43.04 -.32 L 38.4 3.2 C 35.84 5.12 30.72 9.44 26.88 12.64 C 23.04 15.84 19.68 18.4 19.2 18.4 C 18.72 18.4 10.08 10.24 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,242.28,231.95999)" d="M 0 0 C -5.12 -12.48 -9.6 -23.52 -10.08 -24.8 C -10.72 -26.56 -8.16 -27.84 4.64 -32 C 20.32 -36.96 29.28 -39.04 29.28 -38.08 C 29.28 -37.76 31.36 -26.72 34.08 -13.6 C 36.64 -.48 38.88 11.04 38.88 11.84 C 38.88 12.8 33.12 15.2 26.08 17.28 C 19.04 19.36 12.48 21.28 11.36 21.76 C 9.76 22.24 7.04 17.12 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,352.44,206.28)" d="M 0 0 C -6.24 -2.24 -14.88 -4.64 -19.04 -5.6 C -23.2 -6.56 -26.72 -8 -26.72 -8.96 C -26.72 -9.92 -24.48 -21.28 -21.76 -34.56 C -19.2 -47.68 -16.96 -58.72 -16.96 -59.04 C -16.96 -60.8 24 -49.28 31.52 -45.44 C 33.44 -44.32 32.64 -41.28 23.84 -20.48 C 18.4 -7.52 13.44 3.36 12.64 3.52 C 11.84 3.68 6.24 2.08 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,412.80003,242.63999)" d="M 0 0 C -2.88 -2.88 -10.08 -8.96 -16 -13.44 L -26.72 -21.6 L -12.16 -43.36 C -4.32 -55.2 2.56 -64.96 3.04 -64.96 C 4.48 -64.96 27.04 -47.52 35.36 -39.84 L 43.36 -32.64 L 24.32 -13.6 L 5.12 5.28 Z "/>
<path transform="matrix(.75,0,0,.75,450.84,291.96)" d="M 0 0 C -3.52 -7.04 -8 -15.2 -9.92 -18.08 C -11.68 -21.12 -12.8 -24 -12.16 -24.64 C -11.52 -25.12 -1.6 -31.84 9.92 -39.52 L 30.88 -53.44 L 37.44 -42.08 C 47.2 -25.12 48.16 -23.2 52 -14.72 L 55.68 -6.88 L 32 2.88 C 19.04 8.32 7.84 12.64 7.36 12.64 C 6.72 12.64 3.36 6.88 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,468.12,354.48)" d="M 0 0 C -.96 -9.76 -2.08 -19.2 -2.4 -21.28 L -3.2 -24.8 L 22.56 -29.92 C 36.64 -32.8 48.64 -34.72 48.96 -34.4 C 50.08 -33.28 53.28 -8.96 54.08 4.8 L 54.72 17.6 L 1.6 17.6 Z "/>
<path transform="matrix(.75,0,0,.75,474.72004,440.76)" d="M 0 0 C -12.96 -5.28 -23.68 -9.92 -24 -10.08 C -24.16 -10.24 -22.56 -15.52 -20.32 -21.92 C -18.08 -28.16 -15.52 -36.96 -14.56 -41.44 C -13.44 -45.76 -12.32 -49.6 -11.68 -49.92 C -11.2 -50.24 .64 -48.32 14.72 -45.44 L 40.16 -40.48 L 37.6 -30.08 C 34.4 -16.8 25.28 10.08 24.16 9.92 C 23.68 9.92 12.8 5.44 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,433.91999,502.68)" d="M 0 0 L -18.56 -18.56 L -11.04 -27.2 C -6.88 -32 -1.44 -38.72 1.12 -42.24 C 3.84 -45.6 6.4 -48.96 6.88 -49.6 C 8.16 -51.04 50.88 -23.36 50.88 -21.12 C 50.88 -19.2 36.48 -.48 27.04 9.44 L 18.4 18.72 Z "/>
<path transform="matrix(.75,0,0,.75,372,544.80007)" d="M 0 0 C -5.6 -13.28 -9.92 -24.32 -9.6 -24.64 C -9.44 -24.8 -3.04 -28.16 4.48 -32 C 12.16 -35.84 20.32 -40.16 22.72 -41.76 L 27.04 -44.8 L 40.64 -24.32 C 48.16 -13.12 54.72 -3.04 55.36 -2.24 C 56.64 0 45.6 7.2 25.92 17.12 C 17.92 21.12 11.04 24.32 10.72 24.32 C 10.24 24.32 5.44 13.44 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,298.32,559.80007)" d="M 0 0 L 0 -26.88 L 16.16 -27.84 C 25.12 -28.32 34.72 -29.28 37.6 -29.92 C 42.24 -31.04 42.88 -30.88 43.36 -28.16 C 46.4 -14.56 52.48 17.76 52.48 19.52 C 52.48 21.44 50.08 22.24 40.32 23.52 C 33.76 24.48 21.92 25.6 14.24 26.08 L 0 26.88 Z "/>
<path transform="matrix(.75,0,0,.75,240.95999,571.92)" d="M 0 0 C -9.12 -2.56 -19.68 -6.08 -23.68 -7.84 L -30.72 -11.04 L -20.8 -34.88 C -12.32 -55.84 -10.72 -58.72 -8.32 -58.08 C -2.88 -56.8 28.96 -47.2 29.44 -46.72 C 29.92 -46.4 25.76 -23.68 21.12 -1.76 C 20.32 1.76 19.04 4.8 18.08 4.64 C 17.28 4.64 9.12 2.56 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,169.56,536.27999)" d="M 0 0 C -6.88 -5.28 -15.84 -12.64 -20 -16.48 L -27.52 -23.36 L -8.8 -42.24 L 10.08 -61.28 L 19.2 -52.8 C 24.32 -48.32 31.52 -42.4 35.2 -39.84 C 39.04 -37.28 41.92 -34.56 41.76 -33.76 C 41.28 -31.68 14.08 9.44 13.12 9.44 C 12.8 9.44 6.88 5.28 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,115.92,476.27998)" d="M 0 0 C -8.48 -14.24 -17.6 -33.6 -16.32 -34.72 C -15.84 -35.2 -4.8 -40 8.16 -45.28 L 31.52 -54.88 L 35.84 -45.76 C 38.08 -40.8 42.56 -32.32 45.76 -27.2 C 48.96 -21.92 51.36 -17.44 51.2 -17.28 C 47.36 -14.24 8.48 10.88 7.68 10.88 C 7.04 10.88 3.68 6.08 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,90,407.76)" d="M 0 0 C -1.28 -4 -3.68 -22.56 -4.48 -36.32 L -5.28 -50.72 L 48.48 -50.72 L 49.28 -36 C 49.76 -27.84 50.56 -18.24 51.04 -14.88 L 51.84 -8.64 L 28 -4 C 14.88 -1.44 3.2 .96 2.24 1.28 C 1.44 1.6 .32 1.12 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,110.28,330.36003)" d="M 0 0 C -13.76 -2.88 -25.44 -5.44 -25.76 -5.76 C -26.72 -6.72 -20.16 -31.2 -15.52 -44.32 L -11.2 -56.16 L 2.88 -50.24 C 10.72 -47.04 21.76 -42.4 27.52 -40 L 37.92 -35.68 L 33.28 -21.6 C 30.72 -13.92 28 -4.64 27.04 -1.28 L 25.28 5.12 Z "/>
<path transform="matrix(.75,0,0,.75,138.24,260.63999)" d="M 0 0 L -20.96 -14.08 L -12.8 -25.12 C -8.32 -31.2 -.8 -40.32 4 -45.44 L 12.8 -54.72 L 49.76 -17.6 L 41.44 -7.84 C 36.96 -2.56 31.04 4.64 28.64 8 C 26.08 11.52 23.36 14.4 22.56 14.24 C 21.76 14.24 11.68 7.84 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,192.59999,209.16)" d="M 0 0 C -7.84 -11.68 -14.4 -21.44 -14.56 -21.92 C -15.2 -23.36 -3.84 -30.24 13.92 -39.36 L 31.04 -48 L 41.28 -23.68 C 46.72 -10.4 51.36 .8 51.36 1.12 C 51.36 1.44 46.72 3.68 41.28 6.24 C 35.68 8.8 27.68 13.12 23.36 16 C 19.04 18.72 15.2 20.96 14.72 20.96 C 14.4 20.96 7.84 11.52 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,264.72,197.88)" d="M 0 0 C -1.44 -6.08 -8.96 -46.08 -8.96 -47.68 C -8.96 -48.48 -7.52 -49.6 -5.92 -49.92 C -1.6 -51.04 19.68 -53.28 32.8 -54.08 L 43.36 -54.72 L 43.36 -1.76 L 25.12 0 C 15.04 .8 5.44 1.92 3.84 2.4 C 1.44 3.04 .64 2.56 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,275.28,663.36)" d="M 0 0 C -67.2 -5.6 -132.64 -28.16 -187.36 -64.64 C -212.96 -81.6 -226.08 -92.48 -248.64 -115.04 C -270.72 -137.12 -281.76 -150.56 -298.24 -175.04 C -338.4 -235.36 -359.36 -299.68 -364.32 -378.88 L -365.12 -391.52 L -312.96 -391.52 L -312.16 -386.4 C -311.68 -383.52 -311.36 -377.76 -311.36 -373.28 C -311.2 -368.96 -310.24 -358.24 -309.12 -349.28 C -295.52 -244.8 -234.88 -152.8 -144.16 -99.04 C -46.24 -40.96 74.88 -35.84 177.6 -85.28 C 290.72 -139.68 364.16 -249.92 370.88 -374.88 L 371.84 -391.52 L 424.16 -391.52 L 423.2 -373.28 C 419.2 -291.36 388.32 -210.88 336 -145.44 C 272.32 -66.08 174.24 -12.32 73.12 -1.44 C 53.44 .8 17.12 1.44 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,287.28,409.08003)" d="M 0 0 C -21.92 -5.6 -38.24 -23.36 -42.24 -45.92 C -43.36 -52.32 -43.2 -56.32 -41.6 -64.16 C -30.72 -116.32 38.72 -124.32 62.24 -76 C 65.76 -68.64 66.24 -66.4 66.24 -54.08 C 66.24 -41.76 65.92 -39.36 62.56 -32.16 C 55.52 -17.28 45.44 -7.68 31.04 -2.24 C 22.08 1.12 8.48 2.08 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,24.599999,310.91999)" d="M 0 0 C 4.16 .8 7.36 3.04 9.6 7.04 C 11.68 10.56 12.64 14.56 12.48 19.04 C 12.48 19.2 12.48 19.2 12.48 19.36 C 12.32 19.84 10.72 20.64 7.68 21.6 C 4.48 22.72 2.72 23.2 2.08 23.04 C 1.76 23.04 1.76 22.88 1.76 22.56 C 1.6 19.52 1.44 17.44 1.12 16.48 C .48 14.24 -.96 12.8 -3.04 12.48 C -4.32 12.32 -5.92 12.64 -7.68 13.76 C -10.88 15.52 -12.64 16.64 -12.96 16.8 C -15.36 17.76 -17.76 17.92 -20.32 17.6 C -24 16.8 -26.72 14.56 -28.48 10.72 C -29.92 7.68 -30.72 4 -30.56 -.16 C -30.56 -.32 -30.4 -.64 -30.4 -.64 C -30.4 -.96 -30.08 -1.12 -29.6 -1.28 C -28 -1.6 -25.12 -2.24 -20.96 -3.52 C -20.8 -3.52 -20.8 -3.52 -20.64 -3.52 C -20.32 -3.36 -20.16 -3.2 -20.32 -2.88 C -20.32 -2.72 -20.32 -2.4 -20.48 -2.08 C -20.64 -1.76 -20.64 -1.44 -20.8 -1.12 C -20.96 .32 -20.96 1.6 -20.48 2.72 C -20 4.16 -19.04 5.12 -17.6 5.28 C -16.32 5.6 -14.72 5.12 -12.64 4 C -8.96 2.08 -7.04 .96 -6.88 .96 C -4.48 -.16 -2.08 -.32 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,25.920002,283.2)" d="M 0 0 C 3.84 1.12 6.08 1.76 6.88 2.24 C 7.68 2.88 10.72 5.92 15.68 11.68 C 16.48 12.48 18.4 14.72 21.12 18.4 C 24.16 22.24 25.76 24.48 25.92 24.96 C 26.08 25.44 25.44 28.48 23.84 34.08 C 23.68 35.04 23.36 35.52 23.04 35.68 C 22.24 35.84 21.12 35.84 20 36 C 19.2 36 18.4 36.16 17.6 36.32 C 16.48 36.48 15.68 36.48 15.36 36.48 C 15.04 36.32 14.88 36.16 14.88 35.84 C 16.48 30.24 16 27.2 13.44 26.56 C 13.28 26.56 10.88 27.36 6.56 28.96 C 1.92 30.72 -.96 31.52 -1.92 31.52 C -2.56 31.52 -4.64 31.04 -8.16 30.08 C -8.8 29.92 -9.92 29.6 -11.36 29.28 C -12.8 28.8 -13.76 28.48 -14.56 28.32 C -15.04 28.16 -15.2 27.68 -15.04 27.04 C -14.72 26.08 -14.24 24.64 -13.76 22.56 C -13.12 20.48 -12.64 19.04 -12.32 18.08 C -12.16 17.6 -11.84 17.44 -11.2 17.6 C -10.72 17.76 -9.92 18.08 -8.8 18.4 C -7.68 18.72 -6.88 19.04 -6.4 19.2 C -3.84 19.84 -2.08 20.32 -1.28 20.48 C -.48 20.64 .96 20.32 3.04 19.68 C 5.28 19.04 6.56 18.56 6.72 17.92 C 6.88 17.44 6.08 16.48 4.48 14.88 C 2.88 13.28 1.76 12.48 1.12 12.16 C -.48 11.52 -2.4 10.88 -4.32 10.4 C -4.96 10.24 -5.76 10.08 -6.88 9.92 C -8 9.76 -8.8 9.44 -9.28 9.44 C -9.76 9.28 -9.76 8.96 -9.76 8.64 C -9.44 7.52 -9.12 6.08 -8.64 4 C -8.16 2.08 -7.84 .48 -7.52 -.48 C -7.36 -.96 -7.04 -1.28 -6.4 -1.28 C -5.44 -1.28 -3.36 -.96 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,55.44,250.56)" d="M 0 0 C .64 .16 .8 .64 .64 1.28 C .48 1.92 0 3.2 -.96 5.44 C -1.92 7.84 -2.56 9.12 -2.88 9.76 C -3.2 10.24 -3.84 10.24 -4.64 9.92 C -5.44 9.6 -6.72 9.12 -8.48 8.32 C -10.08 7.52 -11.36 6.88 -12.32 6.56 C -15.68 5.28 -17.92 4.32 -19.36 3.84 C -21.76 3.04 -23.2 3.52 -24 5.6 C -24.48 6.56 -24.48 7.52 -24 8.64 C -23.68 9.92 -23.04 10.72 -22.24 11.2 C -21.44 11.52 -19.04 12.64 -15.2 14.24 C -14.4 14.56 -12.96 15.04 -11.2 15.68 C -9.44 16.48 -8 16.96 -7.04 17.28 C -6.56 17.6 -6.24 18.08 -6.56 18.56 L -10.08 27.2 C -10.24 27.68 -10.72 27.68 -11.52 27.36 C -12.48 27.04 -13.76 26.56 -15.52 25.76 C -17.28 24.96 -18.56 24.32 -19.52 24 C -20.16 23.68 -21.28 23.2 -22.72 22.72 C -24.16 22.24 -25.12 21.76 -25.92 21.44 C -28.64 20.32 -30.4 20.8 -31.2 22.88 C -31.52 23.68 -31.68 24.64 -31.36 25.92 C -31.04 27.2 -30.56 28.16 -29.76 28.48 C -28.16 29.12 -25.6 30.24 -22.08 31.52 C -18.72 32.96 -16.16 34.08 -14.4 34.72 C -13.92 34.88 -13.76 35.04 -13.6 35.2 C -13.6 35.36 -13.6 35.68 -13.76 36.16 C -14.08 37.12 -14.56 38.4 -15.36 40.32 C -15.84 41.44 -16.48 42.72 -17.12 44.32 C -17.44 44.64 -17.6 44.96 -17.76 44.96 C -17.76 44.96 -18.08 44.96 -18.56 44.8 C -20.16 44.16 -22.4 43.2 -25.28 41.92 C -28.32 40.64 -30.56 39.68 -32.16 39.04 C -35.2 37.76 -38.72 36.64 -42.88 35.52 C -43.04 35.36 -43.2 35.36 -43.36 35.36 C -43.68 35.2 -43.84 34.88 -43.84 34.72 C -43.84 34.24 -43.68 33.28 -43.36 32.16 C -42.88 30.72 -42.56 29.76 -42.56 29.44 C -42.4 29.28 -42.4 28.48 -42.24 27.04 C -42.08 25.92 -41.92 25.12 -41.6 24.64 C -41.44 24.32 -40.8 24.32 -39.52 24.8 C -38.08 25.44 -37.44 25.6 -37.44 25.44 C -37.44 25.28 -37.44 24.96 -37.44 24.64 C -38.08 22.4 -38.56 20.64 -38.56 19.52 C -38.72 17.76 -38.4 16 -37.6 14.4 C -36.96 12.64 -35.84 11.2 -34.56 10.24 C -33.12 8.96 -31.52 8.48 -29.76 8.8 C -30.72 7.2 -31.2 5.28 -31.36 3.2 C -31.68 1.12 -31.36 -.8 -30.72 -2.56 C -29.6 -4.96 -28.32 -6.72 -26.4 -7.84 C -24.48 -9.12 -22.24 -9.28 -19.84 -8.16 C -18.72 -7.84 -17.28 -7.2 -15.36 -6.24 C -13.28 -5.44 -11.84 -4.8 -10.88 -4.32 C -9.6 -3.84 -7.84 -3.04 -5.44 -2.24 C -3.04 -1.28 -1.28 -.48 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,61.56,219.59999)" d="M 0 0 C 3.84 2.24 6.24 5.12 7.52 8.8 C 8.8 12.64 8.32 16.32 6.24 20 C 5.44 21.44 4.16 22.72 2.56 23.84 C 1.12 24.96 .32 25.6 .48 25.44 C .32 25.6 .48 25.92 .96 26.24 C 1.92 26.72 3.2 27.52 5.12 28.48 C 7.04 29.44 8.32 30.08 9.28 30.72 C 9.92 31.04 9.92 31.36 9.6 32 L 6.56 37.44 C 5.76 38.72 5.28 39.36 4.96 39.68 C 4.64 40.16 4.16 40.32 3.52 40 L -16.8 28.16 C -20.96 25.76 -24.48 24 -27.68 23.04 C -28 22.88 -28.16 22.88 -28.16 22.88 C -28.48 22.72 -28.64 22.4 -28.48 22.24 C -28.48 21.28 -28 19.84 -27.04 17.76 C -26.4 15.68 -25.76 14.24 -25.12 13.44 C -24.8 12.64 -24.16 12.48 -23.2 12.96 C -22.24 13.44 -21.6 13.6 -21.6 13.44 C -21.76 13.6 -21.76 12.48 -21.76 10.24 C -21.76 8 -21.28 6.24 -20.48 4.96 C -18.24 1.12 -15.2 -1.28 -11.36 -2.08 C -7.68 -2.88 -3.84 -2.24 0 0 Z M -5.76 9.76 C -7.04 8.96 -8.64 8.8 -10.08 8.96 C -11.84 9.28 -12.96 10.08 -13.76 11.52 C -14.72 12.96 -14.72 14.4 -14.08 15.84 C -13.6 17.12 -12.48 18.24 -11.04 19.04 C -9.6 20 -8.16 20.32 -6.72 20.16 C -5.12 19.84 -3.84 19.04 -3.04 17.6 C -1.28 14.56 -2.08 11.84 -5.76 9.76 Z "/>
<path transform="matrix(.75,0,0,.75,76.68,198.24)" d="M 0 0 C 3.68 2.72 5.92 6.08 6.56 10.08 C 7.36 14.08 6.24 17.92 3.68 21.6 C .96 25.28 -2.4 27.52 -6.4 28.16 C -10.4 28.8 -14.24 27.84 -17.76 25.28 C -21.6 22.4 -24 19.04 -24.8 15.04 C -25.44 11.2 -24.48 7.2 -21.76 3.36 C -19.04 -.32 -15.68 -2.56 -11.68 -3.2 C -7.68 -3.84 -3.84 -2.72 0 0 Z M -5.92 8 C -7.2 7.2 -8.64 6.72 -10.24 6.72 C -11.84 6.88 -13.12 7.52 -14.08 8.8 C -15.04 10.24 -15.2 11.68 -14.88 13.12 C -14.4 14.72 -13.6 15.84 -12.32 16.8 C -10.88 17.76 -9.44 18.24 -8 18.08 C -6.24 18.08 -4.96 17.28 -4 16 C -3.2 14.72 -2.88 13.28 -3.36 11.68 C -3.68 10.24 -4.64 9.12 -5.92 8 Z "/>
<path transform="matrix(.75,0,0,.75,82.2,180.48)" d="M 0 0 C .16 .16 .32 .48 .32 .96 C -.16 1.28 -.64 1.6 -.96 2.08 C -1.76 3.04 -2.24 3.84 -2.24 4.8 C -2.4 6.08 -2.08 6.88 -1.28 7.68 C -.64 8.16 .32 8.32 1.76 8.32 C 4.16 8.16 5.6 8.16 6.24 8.16 C 8.16 8.32 9.76 9.12 11.04 10.24 C 11.84 10.88 12.64 11.84 13.12 12.8 C 13.92 14.08 14.24 15.04 14.24 16 C 14.24 17.92 13.92 20 13.28 22.24 C 12.64 24.48 11.68 26.24 10.4 27.68 C 10.24 28 8.8 28 6.24 27.68 C 3.52 27.2 2.08 26.88 1.76 26.56 C 1.6 26.56 1.6 26.4 1.6 26.08 C 2.4 24.96 3.04 23.68 3.84 22.4 C 4.64 20.64 4.48 19.36 3.36 18.4 C 2.72 17.92 1.6 17.6 0 17.6 C -2.72 17.76 -4.16 17.76 -4.32 17.76 C -6.08 17.6 -7.68 16.96 -8.96 16 C -11.2 13.92 -12.16 11.04 -11.84 7.36 C -11.52 4 -10.24 1.12 -8.32 -1.28 C -8 -1.6 -6.72 -1.44 -4.16 -.96 C -1.6 -.64 -.32 -.16 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,84.840007,164.52)" d="M 0 0 C 2.56 2.4 2.56 5.12 -.16 8 C -1.44 9.28 -2.72 9.92 -4.16 10.08 C -5.76 10.4 -7.04 9.92 -8.32 8.8 C -9.44 7.68 -9.92 6.24 -9.76 4.64 C -9.76 3.2 -9.12 1.76 -8 .64 C -6.88 -.48 -5.6 -1.12 -4 -1.44 C -2.4 -1.6 -1.12 -1.12 0 0 Z M 16 16.16 C 17.12 17.28 18.72 18.72 20.8 20.64 C 23.04 22.72 24.64 24.16 25.76 25.12 C 26.08 25.44 26.08 25.92 25.76 26.24 C 25.44 26.88 24.32 28 22.72 29.76 C 20.96 31.52 19.84 32.64 19.36 33.12 C 18.88 33.28 18.72 33.44 18.4 33.44 C 18.4 33.44 18.08 33.12 17.76 32.8 C 16.64 31.84 15.2 30.4 13.12 28.32 C 11.2 26.4 9.6 24.96 8.64 24 C 4.48 20 .96 16.96 -1.92 14.88 C -2.08 14.72 -2.24 14.56 -2.4 14.56 C -2.72 14.24 -2.56 13.92 -2.24 13.44 C -1.92 13.12 -1.28 12.48 -.32 11.68 C .64 10.88 1.28 10.4 1.6 9.92 C 2.08 9.44 2.56 8.8 3.36 7.84 C 4.16 6.88 4.64 6.24 5.12 5.92 C 5.44 5.44 5.76 5.44 6.08 5.76 C 6.08 5.76 6.24 5.92 6.4 6.24 C 8.96 9.28 12.16 12.64 16 16.16 Z "/>
<path transform="matrix(.75,0,0,.75,110.88,149.28)" d="M 0 0 C 1.12 1.12 2.56 2.88 4.48 5.12 C 6.4 7.52 7.84 9.28 8.8 10.4 C 9.92 11.52 11.36 13.12 13.44 15.2 C 15.52 17.28 16.96 18.88 17.92 20 C 18.4 20.32 18.4 20.8 18.08 21.28 C 17.6 21.92 16.48 23.04 14.72 24.8 C 12.96 26.24 11.84 27.2 11.04 27.68 C 10.72 28 10.4 28 10.08 27.68 C 9.6 27.2 9.12 26.88 8.64 26.4 C 8 25.76 7.52 25.6 7.36 25.76 C 7.68 25.44 7.36 26.72 6.56 29.28 C 5.76 31.84 4.64 33.92 3.2 35.2 C -.8 38.72 -4.8 39.04 -8.8 36.16 C -10.72 34.72 -13.12 32.48 -16 29.28 C -19.04 25.92 -21.28 22.88 -22.56 20.48 C -22.88 19.68 -22.88 19.04 -22.4 18.56 C -21.76 18.08 -20.64 17.12 -19.2 15.84 C -17.76 14.56 -16.8 13.6 -16 12.96 C -15.52 12.48 -15.2 12.48 -14.88 12.8 C -14.72 12.96 -14.56 13.12 -14.4 13.44 C -12.96 15.68 -11.2 17.92 -9.28 20.16 C -6.88 22.72 -5.12 24.48 -4.16 25.28 C -2.4 26.72 -.64 26.56 1.12 25.12 C 1.76 24.48 2.24 23.52 2.56 22.24 C 2.72 20.96 2.56 20 2.08 19.2 C 1.6 18.72 -1.92 14.88 -8.16 7.84 C -8.64 7.36 -8.96 7.04 -8.96 6.88 C -8.96 6.56 -8.8 6.24 -8.32 5.92 C -7.52 5.28 -6.4 4.16 -4.96 2.88 C -3.36 1.6 -2.24 .48 -1.6 -.16 C -1.12 -.48 -.8 -.64 -.48 -.48 C -.32 -.48 -.16 -.16 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,157.31999,140.4)" d="M 0 0 C .32 .64 .32 1.12 -.16 1.44 C -.64 1.92 -1.76 2.88 -3.84 4.16 C -5.76 5.6 -7.04 6.4 -7.68 6.72 C -8.32 6.88 -8.8 6.72 -9.28 5.92 C -9.76 5.28 -10.56 4 -11.68 2.4 C -12.64 .96 -13.44 -.32 -13.92 -.96 C -16 -4 -17.44 -6.08 -18.4 -7.2 C -19.84 -9.12 -21.6 -9.44 -23.36 -8.16 C -24.16 -7.68 -24.64 -6.88 -24.96 -5.6 C -25.28 -4.48 -25.28 -3.36 -24.8 -2.56 C -24.32 -1.76 -22.88 .32 -20.48 3.68 C -20 4.48 -19.2 5.76 -17.92 7.2 C -16.8 8.8 -16 10.08 -15.36 10.88 C -15.04 11.36 -15.04 11.84 -15.52 12.16 L -23.2 17.44 C -23.68 17.76 -24.16 17.6 -24.64 16.96 C -25.12 16.16 -25.92 14.88 -27.04 13.28 C -28 11.68 -28.8 10.56 -29.44 9.76 C -29.76 9.12 -30.4 8.16 -31.36 6.88 C -32.32 5.76 -32.96 4.8 -33.44 4.16 C -35.04 1.76 -36.8 1.12 -38.72 2.4 C -39.36 2.88 -40 3.84 -40.48 4.96 C -40.96 6.24 -40.96 7.2 -40.48 7.84 C -39.36 9.44 -37.76 11.68 -35.68 14.72 C -33.6 17.76 -32 20 -30.88 21.44 C -30.72 21.92 -30.56 22.24 -30.56 22.4 C -30.56 22.56 -30.72 22.72 -31.2 23.04 C -31.84 23.68 -33.12 24.64 -34.72 25.76 C -35.68 26.4 -36.96 27.2 -38.4 28 C -38.88 28.32 -39.04 28.32 -39.2 28.32 C -39.36 28.32 -39.52 28.16 -39.84 27.68 C -40.8 26.4 -42.24 24.32 -44 21.6 C -45.92 19.04 -47.2 16.96 -48.16 15.68 C -50.08 12.8 -52.48 9.92 -55.2 6.72 C -55.36 6.56 -55.52 6.4 -55.52 6.4 C -55.84 6.08 -55.84 5.76 -55.68 5.6 C -55.36 5.12 -54.72 4.48 -53.76 3.68 C -52.64 2.72 -52 2.08 -51.68 1.92 C -51.52 1.76 -51.04 1.12 -50.08 0 C -49.44 -.8 -48.96 -1.44 -48.32 -1.76 C -48 -1.92 -47.52 -1.44 -46.72 -.32 C -45.76 .8 -45.44 1.44 -45.28 1.28 C -45.12 1.12 -44.96 .8 -44.96 .48 C -44.16 -1.76 -43.52 -3.36 -43.04 -4.32 C -42.24 -5.92 -40.96 -7.2 -39.52 -8.16 C -37.92 -9.28 -36.32 -9.92 -34.72 -10.08 C -32.8 -10.24 -31.04 -9.76 -29.76 -8.64 C -29.76 -10.4 -29.12 -12.32 -28.16 -14.24 C -27.2 -16.16 -25.92 -17.6 -24.48 -18.56 C -22.24 -20.16 -20.16 -20.96 -18.08 -20.8 C -15.68 -20.8 -13.76 -19.68 -12.16 -17.6 C -11.68 -16.64 -10.72 -15.36 -9.6 -13.44 C -8.32 -11.68 -7.36 -10.24 -6.88 -9.44 C -6.08 -8.32 -4.96 -6.72 -3.36 -4.64 C -1.92 -2.56 -.8 -1.12 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,189.12,118.31999)" d="M 0 0 C .32 .32 .48 1.12 .8 1.92 C 1.12 2.88 1.44 3.52 1.6 4 C 1.76 4.32 2.08 5.12 2.56 6.08 C 3.04 7.04 3.36 7.68 3.52 8.16 C 3.68 8.64 3.52 8.96 2.88 9.28 C 2.72 9.44 1.76 9.6 .16 9.92 C -1.76 10.4 -4.96 11.68 -9.6 13.92 C -11.04 14.56 -13.12 15.68 -15.84 17.12 C -18.56 18.56 -20.64 19.68 -22.08 20.32 C -22.56 20.64 -22.88 20.48 -23.2 20 C -23.52 19.52 -24.16 18.56 -24.96 17.44 C -26.24 15.84 -27.04 14.88 -27.2 14.56 C -27.36 14.08 -26.72 13.44 -25.28 12.48 C -23.52 11.36 -22.56 10.56 -22.24 9.92 C -21.12 7.36 -20.16 4.48 -19.36 1.28 C -18.24 -3.04 -18.08 -5.76 -18.88 -7.36 C -19.36 -8.64 -20.48 -9.6 -21.76 -9.92 C -23.2 -10.4 -24.48 -10.4 -25.76 -9.76 C -27.36 -8.96 -28.64 -8 -29.76 -6.72 C -30.56 -5.92 -31.36 -4.96 -32.16 -3.68 C -32.8 -2.72 -33.12 -2.24 -33.28 -2.08 C -33.76 -1.92 -34.56 -2.4 -35.2 -3.84 C -35.68 -5.12 -36.16 -5.92 -36.48 -6.4 C -36.64 -6.56 -36.96 -7.04 -37.6 -7.68 C -38.08 -8.16 -38.56 -8.64 -38.72 -8.96 C -38.72 -9.12 -38.72 -9.44 -38.56 -9.76 C -37.44 -11.68 -35.84 -13.44 -33.6 -15.36 C -31.52 -16.96 -29.44 -18.24 -27.36 -19.2 C -23.84 -20.96 -20.48 -21.6 -17.44 -21.12 C -13.76 -20.64 -11.2 -18.72 -9.6 -15.36 C -7.52 -10.88 -8.32 -4.16 -12.32 4.96 C -7.68 2.56 -4 .64 -1.28 -.64 C -.64 -.96 -.32 -.8 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,214.56,101.399997)" d="M 0 0 C 1.76 4.96 1.6 9.76 -.32 14.4 C -2.4 19.36 -5.92 22.56 -10.72 24.32 C -15.68 26.08 -20.48 25.6 -25.12 23.2 C -29.6 20.8 -32.64 17.12 -34.4 12.16 C -36.16 7.04 -36.16 2.24 -34.08 -2.4 C -32 -7.2 -28.64 -10.4 -23.68 -12.16 C -18.72 -13.92 -13.92 -13.6 -9.44 -11.04 C -4.96 -8.64 -1.76 -4.96 0 0 Z M -10.72 3.68 C -11.52 1.76 -12.64 .16 -14.24 -.8 C -16.16 -1.92 -17.92 -2.24 -19.84 -1.44 C -21.92 -.8 -23.2 .48 -23.84 2.56 C -24.48 4.32 -24.48 6.24 -23.68 8.32 C -23.04 10.24 -21.92 11.84 -20.16 12.96 C -18.4 14.08 -16.48 14.4 -14.56 13.6 C -12.64 12.96 -11.36 11.52 -10.72 9.44 C -10.08 7.52 -10.08 5.6 -10.72 3.68 Z "/>
<path transform="matrix(.75,0,0,.75,241.92,102.240009)" d="M 0 0 C .16 .48 .32 1.12 .48 2.08 C .48 3.04 .64 3.68 .8 4.16 C .8 4.64 1.12 5.44 1.28 6.4 C 1.44 7.52 1.6 8.16 1.76 8.64 C 1.92 9.28 1.6 9.6 .96 9.76 C .8 9.76 -.16 9.76 -1.92 9.76 C -3.84 9.92 -7.2 10.4 -12.16 11.68 C -13.76 12 -16 12.64 -19.04 13.6 C -22.08 14.4 -24.32 15.04 -25.76 15.52 C -26.24 15.52 -26.56 15.36 -26.72 14.88 C -27.04 14.24 -27.36 13.28 -28 12 C -28.96 10.08 -29.44 8.96 -29.6 8.8 C -29.6 8.32 -28.96 7.68 -27.36 7.2 C -25.44 6.4 -24.32 5.76 -23.84 5.12 C -22.24 3.04 -20.64 .32 -19.2 -2.72 C -17.28 -6.56 -16.48 -9.44 -16.96 -11.04 C -17.28 -12.48 -18.08 -13.44 -19.36 -14.24 C -20.64 -14.88 -21.92 -15.04 -23.36 -14.72 C -24.96 -14.4 -26.4 -13.6 -27.84 -12.64 C -28.8 -12 -29.76 -11.2 -30.72 -10.08 C -31.52 -9.28 -32 -8.8 -32.16 -8.8 C -32.8 -8.64 -33.28 -9.44 -33.6 -11.04 C -33.92 -12.16 -34.24 -13.12 -34.4 -13.6 C -34.56 -13.92 -34.88 -14.4 -35.36 -15.04 C -35.68 -15.68 -36 -16.16 -36 -16.64 C -36.16 -16.8 -36 -17.12 -35.68 -17.44 C -34.4 -19.04 -32.32 -20.48 -29.76 -21.76 C -27.52 -23.04 -25.12 -23.84 -22.88 -24.48 C -19.04 -25.28 -15.68 -25.28 -12.8 -24.16 C -9.28 -23.04 -7.2 -20.64 -6.24 -16.96 C -5.12 -12.16 -7.36 -5.76 -13.12 2.4 C -8 .96 -4 -.16 -1.12 -.96 C -.48 -1.12 -.16 -.8 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,264.59999,97.56)" d="M 0 0 C .64 3.68 -.48 6.72 -3.2 9.28 C -5.6 11.36 -8.8 12.64 -12.8 13.28 C -15.68 13.76 -18.24 13.92 -20.32 13.76 C -24.64 13.44 -26.88 12.96 -27.04 12.32 C -27.04 12.16 -27.04 12 -27.04 11.84 C -26.88 11.04 -26.56 9.76 -26.24 8.32 C -26.24 7.52 -26.08 6.4 -25.92 4.8 C -25.76 4.32 -25.44 4 -25.12 3.84 C -25.12 3.84 -24.16 4.16 -22.24 4.48 C -20.32 4.96 -18.72 4.96 -17.44 4.8 C -13.6 4.16 -11.84 2.56 -12.16 0 C -12.48 -2.08 -14.56 -2.88 -18.24 -2.4 C -18.72 -2.24 -19.36 -2.24 -20.32 -2.08 C -21.12 -1.92 -21.6 -1.76 -21.92 -1.76 C -23.04 -1.6 -23.84 -1.44 -23.84 -1.44 C -24.8 -1.44 -25.28 -1.76 -25.44 -2.24 C -25.92 -5.44 -26.08 -7.36 -25.92 -8.16 C -25.76 -8.64 -25.44 -8.96 -24.96 -9.12 C -24.32 -9.12 -23.36 -9.28 -21.92 -9.28 C -20.64 -9.28 -19.52 -9.28 -18.88 -9.44 C -18.08 -9.6 -17.28 -9.92 -16.8 -10.56 C -16.32 -11.2 -16.16 -12 -16.32 -12.96 C -16.64 -15.36 -18.56 -16.32 -22.08 -15.68 C -23.52 -15.52 -25.44 -14.88 -27.84 -13.6 L -28 -13.6 C -28.32 -13.6 -28.64 -13.76 -28.8 -14.4 C -28.96 -15.2 -29.28 -16.16 -29.44 -17.28 C -29.6 -17.44 -29.6 -17.92 -29.92 -18.72 C -30.08 -19.2 -30.08 -19.68 -30.24 -20 C -30.4 -21.12 -28.8 -22.24 -25.6 -23.2 C -23.36 -24 -21.12 -24.48 -19.04 -24.8 C -15.68 -25.44 -12.48 -25.12 -9.76 -24 C -6.24 -22.56 -4.32 -20.32 -3.84 -17.12 C -3.36 -13.44 -4.64 -10.4 -7.68 -8 C -5.6 -7.52 -3.84 -6.72 -2.4 -5.28 C -1.12 -3.84 -.16 -2.08 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,337.8,100.44)" d="M 0 0 C 0 .32 -.32 .64 -.8 .96 C -5.12 5.12 -10.24 7.04 -16.16 6.4 C -22.24 5.76 -26.88 3.04 -30.08 -1.76 C -33.12 -6.24 -34.24 -11.68 -33.6 -17.92 C -32.96 -24 -30.72 -29.12 -26.72 -32.96 C -22.72 -36.96 -17.6 -38.72 -11.52 -38.08 C -5.28 -37.6 -.8 -35.04 2.24 -30.4 C 2.4 -29.92 2.56 -29.6 2.56 -29.28 C 2.56 -28.96 1.92 -28 .64 -26.4 C -.64 -24.8 -1.28 -24.16 -1.6 -24.16 C -1.92 -24.16 -2.4 -24.64 -3.36 -25.76 C -4.32 -27.2 -5.44 -28.16 -6.4 -28.8 C -8 -30.08 -9.92 -30.72 -12 -30.88 C -16 -31.36 -19.36 -30.08 -21.92 -27.36 C -24.16 -24.8 -25.44 -21.44 -25.92 -17.28 C -26.4 -13.12 -25.76 -9.6 -24 -6.56 C -22.08 -3.2 -19.2 -1.28 -15.2 -.8 C -13.12 -.64 -11.2 -.96 -9.28 -1.76 C -8 -2.24 -6.56 -3.04 -5.28 -4.16 C -4.16 -4.96 -3.52 -5.44 -3.36 -5.44 C -3.2 -5.44 -2.72 -4.64 -1.6 -2.88 C -.48 -1.12 0 -.16 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,365.76,90.36)" d="M 0 0 C 0 .16 -.16 .32 -.16 .64 C -1.92 4.96 -3.2 8.8 -3.84 12.16 C -3.84 12.32 -4.64 16.96 -5.92 25.76 L -5.92 26.24 C -6.08 26.88 -6.4 27.04 -6.88 26.88 C -7.52 26.88 -8.32 26.72 -9.44 26.56 C -10.56 26.56 -11.36 26.4 -12 26.24 C -12.32 26.24 -12.48 25.44 -12.32 24 C -12.32 22.56 -12.32 21.92 -12.48 21.76 C -12.64 21.76 -13.28 22.08 -14.4 22.72 C -15.68 23.36 -16.96 23.84 -18.08 24.16 C -19.84 24.64 -21.6 24.64 -23.04 24.32 C -27.04 23.52 -29.92 21.28 -32 17.76 C -33.92 14.24 -34.4 10.56 -33.6 6.56 C -32.64 2.24 -30.72 -1.28 -27.52 -3.68 C -24.16 -6.08 -20.48 -6.88 -16.16 -5.92 C -13.12 -5.28 -10.56 -3.68 -8.8 -1.12 C -8.48 -.64 -8.16 0 -7.52 .96 L -7.36 .96 C -7.2 1.12 -6.88 .48 -6.4 -.8 C -5.92 -1.92 -5.6 -2.56 -5.28 -2.4 C -4.64 -2.4 -3.68 -1.92 -2.24 -1.44 C -.8 -.64 0 -.16 0 0 Z M -10.24 11.04 C -9.76 8.64 -10.08 6.24 -11.2 4.32 C -12.32 2.08 -14.08 .64 -16.48 .16 C -18.88 -.32 -21.12 .16 -23.04 1.76 C -24.96 3.2 -26.08 5.28 -26.72 7.68 C -27.2 10.08 -26.88 12.32 -25.6 14.4 C -24.48 16.64 -22.56 17.92 -20.16 18.4 C -17.92 18.88 -15.68 18.4 -13.76 16.8 C -11.84 15.36 -10.72 13.44 -10.24 11.04 Z "/>
<path transform="matrix(.75,0,0,.75,390.36,108)" d="M 0 0 C -1.28 4 -3.52 7.04 -6.88 9.12 C -10.56 11.36 -14.24 11.84 -18.08 10.72 C -20.48 9.92 -22.4 8.48 -23.68 6.4 C -24.32 5.44 -24.96 4.48 -25.44 3.36 C -25.6 3.36 -25.76 3.52 -25.76 3.84 C -25.92 3.84 -26.24 4.96 -26.88 7.04 L -29.44 15.2 C -29.76 15.84 -30.08 16.16 -30.4 16 C -33.44 15.04 -35.2 14.4 -35.68 14.24 C -36.16 14.08 -36.32 13.76 -36.16 13.28 C -35.36 10.72 -34.24 7.04 -32.64 2.08 C -31.04 -2.88 -29.76 -6.72 -29.12 -9.12 C -27.68 -13.76 -26.56 -18.08 -25.92 -22.24 C -25.92 -22.56 -25.76 -22.72 -25.76 -22.72 C -25.76 -23.04 -25.6 -23.04 -25.44 -23.04 C -24.64 -22.88 -23.52 -22.72 -22.08 -22.4 C -20 -22.24 -18.88 -22.08 -18.72 -21.92 C -18.4 -21.76 -18.24 -21.12 -18.56 -20 C -18.72 -19.2 -18.88 -18.4 -19.2 -17.6 C -19.2 -17.44 -19.2 -17.28 -19.04 -17.12 C -18.88 -17.12 -18.72 -17.28 -18.56 -17.44 C -14.88 -19.36 -11.68 -19.84 -8.96 -19.04 C -5.12 -17.76 -2.24 -15.2 -.64 -11.36 C .96 -7.68 1.28 -3.84 0 0 Z M -6.72 -2.24 C -6.08 -4.48 -6.08 -6.88 -7.04 -9.12 C -8 -11.36 -9.6 -12.96 -12 -13.6 C -14.24 -14.4 -16.32 -13.92 -18.4 -12.48 C -20.32 -11.2 -21.6 -9.28 -22.24 -7.04 C -23.04 -4.64 -23.04 -2.4 -22.24 -.16 C -21.28 2.24 -19.68 3.68 -17.28 4.48 C -15.04 5.12 -12.96 4.8 -10.88 3.2 C -8.8 1.92 -7.52 0 -6.72 -2.24 Z "/>
<path transform="matrix(.75,0,0,.75,403.80003,120.84)" d="M 0 0 C -.16 .48 -.48 .96 -.8 1.76 C -1.28 2.56 -1.6 3.2 -1.76 3.36 C -1.92 3.68 -1.92 3.84 -2.08 4 C -2.24 4 -2.4 4.16 -2.72 4.16 C -4.64 4.32 -7.2 3.68 -10.56 2.24 C -14.88 .48 -16.32 -2.4 -14.72 -6.4 C -14.08 -8 -13.12 -10.4 -11.68 -13.6 C -10.24 -16.8 -9.28 -19.2 -8.64 -20.8 C -8.32 -21.6 -8.48 -22.08 -9.28 -22.56 C -9.92 -22.88 -10.72 -23.04 -11.36 -23.36 C -11.68 -23.68 -11.52 -24.48 -11.04 -25.92 C -10.72 -26.56 -10.56 -27.04 -10.24 -27.68 C -9.92 -28 -9.6 -28.16 -8.96 -28.16 C -8.48 -27.84 -8 -27.68 -7.52 -27.52 C -6.72 -27.2 -6.08 -27.52 -5.76 -28.16 C -5.44 -28.96 -4.96 -30.08 -4.48 -31.68 C -3.84 -33.28 -3.36 -34.4 -3.04 -35.2 C -2.56 -36.64 -2.08 -37.12 -1.44 -36.96 C -1.28 -36.96 .32 -35.84 3.52 -33.92 C 3.84 -33.76 4 -33.44 3.84 -32.96 C 3.52 -32.16 3.04 -31.04 2.24 -29.44 C 1.44 -27.68 .8 -26.56 .48 -25.76 C .32 -25.12 .48 -24.8 .96 -24.48 L 7.68 -21.76 C 8 -21.76 8.16 -21.44 8.16 -21.28 C 8 -21.12 7.84 -20.64 7.52 -20.16 C 7.36 -19.68 7.04 -19.36 7.04 -19.2 C 6.88 -18.88 6.72 -18.4 6.56 -17.76 C 6.24 -17.28 6.08 -16.8 6.08 -16.48 C 5.92 -16.16 5.6 -16 4.96 -16.32 C 4.16 -16.64 3.04 -17.12 1.6 -17.76 C .16 -18.56 -.96 -19.04 -1.76 -19.36 C -1.92 -19.36 -2.24 -18.88 -2.72 -17.92 C -3.36 -16.64 -4.16 -14.72 -5.12 -12.32 L -6.88 -8 C -7.52 -6.4 -7.84 -5.28 -7.84 -4.48 C -7.68 -3.36 -7.04 -2.4 -5.6 -1.92 C -4.96 -1.6 -4 -1.44 -2.88 -1.28 C -1.6 -.96 -.64 -.8 -.16 -.64 C 0 -.48 .16 -.32 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,422.16,103.799999)" d="M 0 0 C -1.12 2.24 -2.88 2.88 -5.44 1.6 C -8 .48 -8.8 -1.28 -7.68 -3.52 C -7.2 -4.48 -6.4 -5.28 -5.28 -5.44 C -4.32 -5.76 -3.2 -5.76 -2.24 -5.28 C -1.28 -4.8 -.48 -4 0 -3.04 C .48 -2.08 .48 -.96 0 0 Z M -3.68 7.52 C -4.32 8.8 -5.44 11.04 -7.04 13.76 C -8.48 16.64 -9.6 18.72 -10.24 20.16 C -10.88 21.44 -11.84 23.52 -12.96 26.24 C -14.24 28.96 -15.04 31.04 -15.68 32.32 C -15.84 32.64 -16.16 32.8 -16.48 32.64 L -21.92 30.24 C -22.24 29.92 -22.24 29.44 -21.92 28.8 C -21.28 27.52 -20.48 25.6 -19.2 23.04 C -17.92 20.48 -16.96 18.56 -16.32 17.28 C -15.68 15.84 -14.88 13.6 -13.76 10.72 C -12.64 7.68 -11.68 5.44 -11.04 4 C -10.88 3.68 -10.56 3.68 -10.24 3.84 C -9.92 4 -9.44 4.32 -8.8 4.64 C -8 5.12 -7.52 5.44 -7.2 5.6 C -6.88 5.76 -6.4 5.92 -5.6 6.08 C -4.8 6.4 -4.32 6.56 -4 6.72 C -3.68 6.88 -3.52 7.04 -3.68 7.52 Z "/>
<path transform="matrix(.75,0,0,.75,439.19999,126.600009)" d="M 0 0 C -1.28 2.56 -2.24 4 -2.56 4.32 C -3.2 4.96 -6.08 6.56 -10.72 8.96 C -15.68 11.52 -18.4 12.8 -19.04 12.64 C -19.36 12.64 -20.16 12.32 -21.44 11.68 C -22.56 11.04 -23.36 10.56 -23.68 10.24 C -24.16 9.76 -24.64 6.88 -25.28 1.44 C -25.92 -3.84 -26.24 -6.88 -26.08 -8 C -25.92 -9.28 -25.12 -11.2 -23.84 -13.6 C -23.52 -14.24 -22.88 -15.36 -21.92 -16.8 C -21.12 -18.24 -20.48 -19.36 -20.16 -20.16 C -20 -20.48 -19.68 -20.64 -19.2 -20.32 C -18.56 -20 -17.76 -19.52 -16.64 -18.88 C -15.52 -18.08 -14.56 -17.6 -14.08 -17.28 C -13.76 -17.12 -13.6 -16.8 -13.76 -16.48 C -14.08 -16 -14.72 -15.04 -15.36 -14.08 C -16 -12.96 -16.48 -12.16 -16.8 -11.52 C -17.76 -9.92 -18.4 -8.32 -19.04 -6.88 C -19.36 -6.24 -19.36 -4 -19.04 -.48 C -18.72 3.2 -18.4 5.12 -17.92 5.28 C -17.6 5.6 -15.84 4.8 -12.96 3.04 C -9.92 1.28 -8.32 .16 -7.84 -.48 C -7.2 -1.28 -6.24 -2.72 -5.12 -4.96 C -4.8 -5.6 -4.32 -6.4 -3.84 -7.68 C -3.2 -8.96 -2.88 -9.92 -2.56 -10.4 C -2.4 -10.72 -2.24 -10.72 -1.92 -10.72 C -1.28 -10.4 -.48 -9.92 .8 -9.28 C 1.92 -8.8 2.88 -8.32 3.36 -8 C 4 -7.68 2.88 -4.96 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,465.48,137.28)" d="M 0 0 C 0 0 -.16 .16 -.32 .32 C -3.68 3.84 -6.24 6.88 -8.16 9.76 C -8.16 9.92 -10.56 13.92 -15.2 21.6 L -15.36 21.92 C -15.68 22.4 -16 22.56 -16.48 22.24 C -16.96 21.92 -17.76 21.44 -18.72 20.96 C -19.68 20.48 -20.48 20 -20.96 19.68 C -21.28 19.52 -21.12 18.72 -20.48 17.44 C -19.84 16.16 -19.68 15.52 -19.84 15.36 C -19.84 15.36 -20.48 15.36 -21.76 15.36 C -23.36 15.52 -24.64 15.52 -25.76 15.36 C -27.68 15.2 -29.12 14.56 -30.56 13.76 C -33.76 11.52 -35.68 8.32 -36.16 4.16 C -36.64 .16 -35.68 -3.36 -33.44 -6.72 C -30.88 -10.56 -27.84 -12.8 -24 -13.92 C -20 -14.88 -16.16 -14.24 -12.48 -11.68 C -9.92 -9.92 -8.32 -7.52 -7.52 -4.48 C -7.52 -4 -7.36 -3.2 -7.2 -2.08 C -7.2 -2.08 -7.2 -1.92 -7.04 -1.92 C -7.04 -1.92 -6.56 -2.24 -5.6 -3.2 C -4.64 -4.16 -4.16 -4.48 -3.84 -4.32 C -3.36 -4 -2.56 -3.36 -1.44 -2.24 C -.32 -.96 .16 -.32 0 0 Z M -13.6 6.24 C -12.16 4.16 -11.52 1.92 -11.84 -.32 C -12 -2.88 -13.12 -4.8 -15.2 -6.08 C -17.28 -7.52 -19.52 -7.84 -21.92 -7.2 C -24.16 -6.56 -26.08 -5.12 -27.52 -3.2 C -28.8 -1.12 -29.44 1.12 -29.12 3.52 C -28.8 6.08 -27.68 8 -25.6 9.28 C -23.68 10.56 -21.44 10.88 -19.04 10.24 C -16.8 9.6 -14.88 8.32 -13.6 6.24 Z "/>
<path transform="matrix(.75,0,0,.75,469.44,161.52)" d="M 0 0 C -.32 .32 -.8 .8 -1.28 1.44 C -1.92 2.08 -2.4 2.56 -2.56 2.72 C -2.88 3.04 -3.04 3.2 -3.04 3.2 C -3.2 3.36 -3.52 3.2 -3.84 3.2 C -5.6 2.72 -7.84 1.44 -10.72 -.8 C -14.4 -3.84 -15.04 -6.88 -12.32 -10.4 C -11.2 -11.68 -9.6 -13.76 -7.36 -16.32 C -5.12 -19.04 -3.36 -21.12 -2.4 -22.4 C -1.76 -23.04 -1.92 -23.68 -2.56 -24.16 C -3.04 -24.64 -3.68 -25.12 -4.16 -25.6 C -4.48 -25.92 -4.16 -26.72 -3.2 -28 C -2.72 -28.48 -2.4 -28.96 -1.92 -29.44 C -1.6 -29.76 -1.12 -29.76 -.64 -29.44 C -.16 -29.12 .16 -28.8 .64 -28.64 C 1.44 -28 2.08 -28 2.56 -28.64 C 3.04 -29.28 3.84 -30.24 4.8 -31.68 C 5.76 -32.96 6.56 -33.92 7.04 -34.72 C 8 -35.84 8.64 -36.16 9.12 -35.84 C 9.28 -35.68 10.56 -34.24 12.96 -31.52 C 13.28 -31.2 13.44 -30.88 13.12 -30.56 C 12.64 -29.92 11.68 -28.8 10.4 -27.52 C 9.28 -26.24 8.32 -25.12 7.84 -24.48 C 7.36 -24 7.52 -23.68 7.84 -23.36 L 13.6 -18.72 C 13.92 -18.56 13.92 -18.24 13.76 -18.08 C 13.6 -17.92 13.44 -17.6 12.96 -17.28 C 12.64 -16.8 12.32 -16.64 12.16 -16.32 C 12 -16.16 11.68 -15.68 11.36 -15.2 C 10.88 -14.72 10.72 -14.4 10.4 -14.08 C 10.24 -13.76 9.92 -13.92 9.44 -14.24 C 8.8 -14.72 7.84 -15.52 6.72 -16.64 C 5.44 -17.76 4.48 -18.56 3.84 -19.04 C 3.68 -19.2 3.2 -18.72 2.56 -17.92 C 1.44 -16.8 .16 -15.36 -1.44 -13.28 L -4.32 -9.76 C -5.44 -8.32 -5.92 -7.2 -6.24 -6.56 C -6.4 -5.44 -5.92 -4.32 -4.8 -3.36 C -4.32 -3.04 -3.52 -2.56 -2.4 -1.92 C -1.28 -1.44 -.48 -.96 0 -.64 C .16 -.48 .16 -.32 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,492,171.12)" d="M 0 0 C -1.12 .96 -2.24 1.28 -3.52 .8 C -4.32 .48 -9.44 -3.36 -18.72 -10.72 C -19.68 -9.12 -20 -7.36 -19.68 -5.28 C -19.2 -3.36 -18.4 -1.76 -16.96 -.48 C -14.56 1.76 -11.68 3.04 -8.32 3.36 C -7.84 3.36 -7.52 3.36 -7.04 3.36 C -6.88 3.52 -6.88 3.52 -6.88 3.68 C -6.88 3.68 -7.04 4.48 -7.52 5.92 C -7.84 7.52 -8.16 8.32 -8.16 8.32 C -8.32 8.48 -8.48 8.48 -8.96 8.48 C -13.44 8.8 -17.28 7.36 -20.8 4.16 C -24.16 .96 -26.08 -2.56 -26.24 -6.56 C -26.4 -10.56 -24.8 -14.24 -21.6 -17.76 C -18.72 -20.8 -15.36 -22.56 -11.2 -23.04 C -6.88 -23.52 -3.2 -22.4 -.16 -19.52 C 2.56 -16.96 4 -13.76 4 -9.92 C 4 -6.24 2.56 -2.88 0 0 Z M -4.16 -6.4 C -3.04 -7.68 -2.4 -9.12 -2.56 -11.04 C -2.72 -12.96 -3.36 -14.4 -4.48 -15.52 C -5.92 -16.8 -7.68 -17.44 -9.76 -17.28 C -11.84 -17.12 -13.6 -16.48 -14.88 -15.04 C -15.04 -14.72 -15.04 -14.24 -14.4 -13.76 C -12.16 -11.68 -9.28 -9.6 -5.92 -7.2 C -4.8 -6.4 -4.32 -6.24 -4.16 -6.4 Z "/>
<path transform="matrix(.75,0,0,.75,524.4,177.36)" d="M 0 0 C -1.92 1.76 -4.96 4.32 -8.96 7.68 C -12.96 11.04 -16 13.44 -17.92 15.2 C -24 20.64 -28.32 24.8 -31.2 27.84 L -31.52 28.16 C -31.68 28.32 -31.84 28.16 -32.32 27.84 C -32.64 27.52 -32.96 27.2 -33.44 26.56 C -33.92 25.92 -34.24 25.6 -34.08 25.76 C -34.4 25.44 -34.72 25.12 -35.2 24.8 C -35.52 24.32 -35.84 24 -36.16 23.84 C -36.32 23.52 -35.84 23.04 -34.88 22.08 C -33.76 20.96 -33.28 20.48 -33.44 20.32 C -33.6 20.32 -33.76 20.32 -34.08 20.32 C -38.08 20.32 -41.44 18.88 -43.84 16.16 C -46.56 13.12 -47.68 9.6 -47.2 5.44 C -46.56 1.6 -44.8 -1.6 -41.76 -4.48 C -38.56 -7.36 -34.88 -8.96 -31.04 -8.96 C -26.88 -9.12 -23.52 -7.52 -20.64 -4.48 C -18.88 -2.56 -17.92 -.32 -17.76 2.08 C -17.76 3.2 -17.76 4.48 -17.76 5.6 C -17.6 5.6 -17.44 5.6 -17.28 5.44 L -9.92 -1.12 C -9.44 -1.6 -8.64 -2.4 -7.68 -3.36 C -6.72 -4.32 -5.92 -4.96 -5.44 -5.44 C -5.12 -5.76 -4.8 -5.76 -4.64 -5.6 C -4.16 -4.96 -3.36 -4.16 -2.24 -3.2 C -1.12 -2.24 -.32 -1.44 .16 -.8 C .48 -.64 .32 -.32 0 0 Z M -25.76 12.96 C -24 11.36 -22.88 9.28 -22.4 6.88 C -22.08 4.48 -22.72 2.24 -24.32 .48 C -25.92 -1.44 -28 -2.24 -30.56 -2.08 C -32.96 -2.08 -35.2 -1.12 -37.12 .48 C -38.88 2.24 -40 4.16 -40.16 6.56 C -40.48 9.12 -39.84 11.36 -38.24 13.12 C -36.64 14.88 -34.56 15.84 -32 15.68 C -29.76 15.52 -27.68 14.56 -25.76 12.96 Z "/>
<path transform="matrix(.75,0,0,.75,532.32,224.04001)" d="M 0 0 C -3.36 2.24 -7.04 3.2 -10.88 2.72 C -15.04 2.24 -18.24 .48 -20.48 -2.88 C -21.92 -5.12 -22.56 -7.36 -22.56 -9.76 C -22.56 -10.88 -22.4 -12 -22.24 -12.96 C -22.4 -13.12 -23.04 -12.96 -24 -12.32 C -25.12 -11.84 -25.6 -11.52 -25.76 -11.84 L -29.44 -17.12 C -29.6 -17.28 -29.44 -17.6 -29.28 -17.6 C -29.28 -17.6 -29.12 -17.76 -28.8 -17.92 C -25.92 -19.52 -20.64 -22.88 -12.96 -28 C -9.92 -30.08 -5.28 -33.28 .48 -37.6 C 4.32 -40.48 5.92 -41.6 5.44 -41.28 C 5.92 -41.6 6.24 -41.6 6.56 -41.12 C 7.04 -40.64 7.68 -39.68 8.48 -38.56 C 8.8 -38.24 9.12 -37.92 9.76 -37.12 C 10.24 -36.64 10.56 -36.16 10.88 -35.84 C 11.04 -35.52 10.88 -35.36 10.56 -35.04 C 9.92 -34.72 9.12 -34.08 7.84 -33.44 C 6.56 -32.64 5.6 -32.16 5.12 -31.68 C 4.16 -31.04 2.88 -30.24 .96 -29.12 C -.8 -28 -2.24 -27.2 -3.04 -26.56 C -3.68 -26.08 -4 -25.76 -3.84 -25.6 C -3.68 -25.44 -3.52 -25.44 -3.2 -25.44 C .32 -25.12 3.2 -23.36 5.28 -20.32 C 7.52 -16.8 8.16 -13.12 7.04 -9.12 C 5.92 -5.44 3.52 -2.4 0 0 Z M -3.68 -5.92 C -1.6 -7.36 -.32 -9.12 .48 -11.36 C 1.12 -13.92 .8 -16.16 -.48 -18.08 C -1.92 -20.16 -3.84 -21.28 -6.4 -21.6 C -8.8 -21.76 -10.88 -21.28 -12.96 -19.84 C -15.2 -18.4 -16.48 -16.64 -17.12 -14.24 C -17.76 -11.84 -17.44 -9.6 -16 -7.52 C -14.72 -5.6 -12.8 -4.48 -10.24 -4.16 C -7.84 -4 -5.76 -4.64 -3.68 -5.92 Z "/>
<path transform="matrix(.75,0,0,.75,548.04,242.40001)" d="M 0 0 C -3.04 1.6 -4.96 2.56 -5.76 2.72 C -6.56 2.88 -11.36 2.56 -19.84 1.76 C -28.32 .96 -33.28 .48 -34.4 0 C -35.36 -.32 -36.96 -2.4 -39.2 -6.4 C -39.36 -6.88 -39.52 -7.2 -39.52 -7.36 C -39.52 -7.52 -39.04 -8.16 -38.08 -9.28 C -37.12 -10.4 -36.48 -11.04 -36.32 -11.2 C -35.84 -11.36 -35.36 -11.04 -34.88 -10.08 C -33.76 -8.16 -32.64 -6.72 -31.68 -6.08 C -31.2 -5.92 -30.4 -5.76 -28.96 -5.76 C -27.52 -5.6 -26.72 -5.6 -26.4 -5.92 C -25.92 -6.08 -24.64 -8.48 -22.88 -12.8 C -20.8 -17.44 -19.52 -20.32 -18.72 -21.12 C -18.08 -21.76 -16.48 -22.88 -13.6 -24.32 C -12.96 -24.64 -12 -25.28 -10.56 -25.92 C -9.12 -26.72 -8.16 -27.36 -7.36 -27.68 C -7.04 -27.84 -6.72 -27.84 -6.56 -27.36 C -6.24 -26.72 -5.76 -25.92 -5.28 -24.8 C -4.64 -23.52 -4.32 -22.72 -4 -22.08 C -3.84 -21.92 -3.84 -21.6 -4.32 -21.44 C -4.8 -21.12 -5.6 -20.8 -6.56 -20.32 C -7.52 -19.84 -8.32 -19.36 -8.8 -19.04 C -11.04 -17.92 -12.64 -16.96 -13.6 -16.16 C -14.24 -15.68 -15.36 -13.76 -17.12 -10.56 C -18.72 -7.2 -19.52 -5.28 -19.2 -4.96 C -19.04 -4.64 -17.28 -4.32 -13.76 -4.16 C -10.08 -4 -8 -4 -7.36 -4.32 C -6.4 -4.64 -4.64 -5.44 -2.4 -6.72 C -1.76 -7.04 -1.12 -7.52 -.16 -8.16 C .8 -8.8 1.6 -9.28 2.08 -9.6 C 2.56 -9.76 2.72 -9.76 2.88 -9.44 C 3.2 -8.96 3.84 -8 4.48 -6.88 C 5.12 -5.92 5.76 -4.96 6.08 -4.48 C 6.24 -3.84 4.32 -2.4 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,573.83999,273.36003)" d="M 0 0 C -.48 .32 -.8 .16 -.8 -.16 C -1.12 -.64 -2.24 -4.16 -4.48 -10.4 C -10.24 -8.32 -15.04 -6.56 -18.56 -5.28 C -20.64 -4.48 -24 -3.04 -28.32 -1.28 C -32.64 .64 -35.84 1.92 -38.08 2.88 C -38.4 3.04 -38.72 2.72 -38.88 2.24 C -39.04 1.92 -39.2 1.28 -39.52 .64 C -39.68 -.16 -39.84 -.64 -40 -.96 C -40.16 -1.28 -40.32 -1.92 -40.64 -2.56 C -40.96 -3.2 -41.28 -3.68 -41.44 -4.16 C -41.6 -4.48 -41.44 -4.96 -40.96 -5.12 C -38.72 -5.92 -35.52 -7.04 -31.04 -8.64 C -26.56 -10.08 -23.36 -11.2 -21.12 -12.16 C -17.76 -13.44 -13.12 -15.36 -7.36 -17.76 C -9.44 -22.56 -11.04 -26.08 -12 -28.48 C -12 -28.64 -12 -28.8 -11.84 -28.8 C -11.36 -28.96 -10.88 -29.12 -10.24 -29.12 C -9.28 -29.28 -8.8 -29.44 -8.64 -29.44 C -7.84 -29.6 -6.88 -29.76 -5.6 -30.08 C -5.28 -30.08 -5.12 -29.92 -5.12 -29.76 L -4.96 -29.44 C -2.72 -22.4 -1.28 -17.92 -.48 -15.84 C .32 -13.92 1.6 -10.88 3.68 -6.56 C 4.96 -3.68 5.44 -2.56 5.28 -3.04 C 5.44 -2.56 5.44 -2.24 5.12 -2.08 C 5.28 -2.08 4.32 -1.76 2.4 -.96 C 2.08 -.96 1.76 -.8 1.28 -.48 C .64 -.16 .32 0 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,576.48,283.56)" d="M 0 0 C -2.4 .8 -4 -.16 -4.8 -2.88 C -5.6 -5.44 -4.96 -7.2 -2.56 -8 C -1.44 -8.32 -.48 -8.16 .64 -7.52 C 1.44 -7.04 2.08 -6.08 2.4 -5.12 C 2.72 -4 2.72 -2.88 2.24 -1.92 C 1.92 -.96 1.12 -.32 0 0 Z M -8 2.4 C -9.44 2.88 -11.68 3.36 -14.88 4.16 C -17.92 4.96 -20.16 5.6 -21.76 6.08 C -23.2 6.56 -25.28 7.2 -28.16 8.16 C -30.88 9.12 -32.96 9.76 -34.4 10.24 C -34.88 10.4 -35.04 10.24 -35.2 9.92 L -36.96 4.16 C -37.12 3.84 -36.8 3.52 -36 3.2 C -34.56 2.72 -32.64 2.24 -29.92 1.44 C -27.2 .64 -25.12 0 -23.68 -.48 C -22.24 -.8 -20 -1.76 -16.96 -2.88 C -14.08 -4 -11.84 -4.8 -10.24 -5.28 C -9.92 -5.44 -9.76 -5.28 -9.6 -4.96 C -9.44 -4.48 -9.44 -4 -9.28 -3.2 C -9.12 -2.4 -8.96 -1.92 -8.8 -1.6 C -8.8 -1.12 -8.48 -.64 -8.16 0 C -7.84 .8 -7.68 1.28 -7.52 1.6 C -7.52 2.08 -7.52 2.24 -8 2.4 Z "/>
<path transform="matrix(.75,0,0,.75,560.16006,329.88)" d="M 0 0 C -.8 .16 -1.28 0 -1.28 -.48 C -1.44 -.8 -1.44 -1.28 -1.6 -1.92 C -1.6 -2.56 -1.76 -2.88 -1.76 -3.2 C -1.76 -3.68 -1.92 -4.16 -2.08 -4.8 C -2.4 -5.44 -2.4 -5.92 -2.56 -6.24 C -2.56 -6.72 -2.24 -7.04 -1.28 -7.2 C -.32 -7.36 1.12 -7.68 2.88 -8 C 4.8 -8.32 6.08 -8.64 7.04 -8.8 C 12 -9.76 14.88 -10.4 15.52 -10.56 C 17.44 -11.2 18.88 -12 19.52 -12.8 C 20.16 -13.76 20.16 -15.2 19.84 -17.12 C 19.52 -18.4 18.72 -19.68 17.12 -21.12 C 15.52 -22.4 14.08 -23.04 12.8 -22.88 C 11.36 -22.56 8.48 -22.08 4.32 -21.12 C 3.36 -20.96 1.92 -20.64 0 -20.16 C -2.08 -19.52 -3.52 -19.2 -4.48 -19.04 C -4.96 -18.88 -5.28 -19.04 -5.28 -19.36 C -5.44 -19.84 -5.44 -20.32 -5.6 -20.96 C -5.76 -21.76 -5.76 -22.24 -5.92 -22.56 C -5.92 -22.88 -6.08 -23.36 -6.24 -24 C -6.4 -24.64 -6.56 -25.12 -6.56 -25.44 C -6.72 -25.76 -6.4 -26.08 -5.76 -26.08 C -4.8 -26.4 -3.36 -26.56 -1.44 -27.04 C .48 -27.36 1.92 -27.68 2.88 -27.84 L 10.08 -29.28 C 12.32 -29.76 13.92 -30.4 14.72 -31.2 C 16 -32.16 16.32 -33.76 15.84 -36 C 15.52 -37.12 14.72 -38.56 13.28 -40.16 C 11.68 -41.76 10.4 -42.4 9.28 -42.24 L .48 -40.32 C -.48 -40.16 -2.08 -39.84 -4 -39.36 C -5.92 -39.04 -7.52 -38.56 -8.48 -38.4 C -8.96 -38.24 -9.28 -38.4 -9.44 -38.88 L -10.56 -44.48 C -10.72 -44.96 -10.4 -45.12 -9.92 -45.28 C -8.32 -45.6 -5.92 -46.08 -2.56 -46.72 C .64 -47.52 3.04 -48 4.64 -48.32 C 8.32 -49.12 11.84 -50.24 15.36 -51.84 C 15.52 -51.84 15.84 -52 16 -52 C 16.16 -52 16.32 -52 16.48 -51.84 C 16.64 -51.04 17.12 -50.08 17.6 -48.64 C 17.92 -48 18.4 -47.2 18.88 -45.92 L 18.88 -45.6 C 19.04 -45.44 18.4 -44.96 16.96 -44.48 C 15.68 -44 15.04 -43.68 15.04 -43.52 C 15.04 -43.52 15.52 -43.04 16.64 -42.24 C 17.92 -41.28 18.88 -40.32 19.84 -39.2 C 20.96 -37.76 21.76 -36.16 22.24 -34.4 C 23.2 -29.92 21.92 -26.56 18.4 -24.48 C 20.32 -23.68 21.92 -22.4 23.36 -20.8 C 24.96 -19.04 25.92 -17.12 26.24 -15.2 C 27.04 -11.52 26.56 -8.8 24.64 -6.88 C 23.2 -5.6 20.8 -4.48 17.44 -3.84 C 16.8 -3.68 15.68 -3.52 14.4 -3.2 C 12.96 -3.04 12 -2.72 11.2 -2.56 C 10.08 -2.4 8.16 -1.92 5.6 -1.28 C 3.04 -.8 1.28 -.32 0 0 Z "/>
<path transform="matrix(.75,0,0,.75,573.48,352.8)" d="M 0 0 C -1.44 .16 -2.56 -.32 -3.2 -1.6 C -3.52 -2.4 -4.64 -8.64 -6.72 -20.32 C -8.48 -19.84 -9.92 -18.72 -10.88 -16.96 C -12 -15.2 -12.48 -13.44 -12.32 -11.52 C -12 -8.32 -10.72 -5.44 -8.32 -3.04 C -8 -2.72 -7.84 -2.4 -7.52 -2.08 C -7.52 -1.92 -7.52 -1.76 -7.52 -1.76 C -7.52 -1.76 -8.16 -1.28 -9.6 -.48 C -10.88 .48 -11.52 .8 -11.68 .8 C -11.84 .8 -12 .8 -12.32 .48 C -15.84 -2.24 -17.76 -5.92 -18.24 -10.56 C -18.56 -15.36 -17.6 -19.2 -15.04 -22.24 C -12.48 -25.28 -8.8 -27.04 -4.16 -27.52 C 0 -27.84 3.84 -26.88 7.2 -24.48 C 10.72 -21.92 12.64 -18.56 12.96 -14.56 C 13.28 -10.72 12.16 -7.36 9.6 -4.64 C 7.2 -1.76 4 -.32 0 0 Z M 1.28 -7.36 C 2.88 -7.52 4.32 -8.32 5.6 -9.76 C 6.72 -11.2 7.2 -12.8 7.04 -14.4 C 6.88 -16.32 6.08 -17.92 4.32 -19.2 C 2.72 -20.48 .96 -21.12 -.8 -20.96 C -1.28 -20.8 -1.44 -20.48 -1.44 -19.68 C -1.12 -16.8 -.48 -13.12 .48 -9.12 C .8 -7.84 .96 -7.36 1.28 -7.36 Z "/>
<path transform="matrix(.75,0,0,.75,300.48,365.52)" d="M 0 0 C -2.72 0 -4.32 1.6 -4.32 4.32 L -4.32 36 C -4.32 36.64 -4.96 37.28 -5.6 37.28 L -21.76 37.28 C -22.4 37.28 -23.04 36.8 -23.04 36 L -23.04 -3.68 C -23.04 -4.48 -22.4 -4.96 -21.76 -4.96 L -16.8 -4.96 C -11.2 -4.96 -4.96 -10.88 -4.96 -18.08 L -.64 -18.08 C -.64 -12.48 4.32 -8.16 8.16 -8.16 L 13.76 -8.16 C 16.16 -8.16 17.44 -7.36 17.44 -4.96 L 17.44 0 Z M 0 5.6 C 0 4.96 .64 4.32 1.28 4.32 L 18.72 4.32 L 18.72 -4.96 C 18.72 -8.16 17.44 -9.28 14.24 -9.28 L 8.16 -9.28 C 4.96 -9.28 .64 -13.28 .64 -18.08 L 1.92 -18.08 L 1.92 -21.76 L -2.4 -21.76 L -2.4 -25.76 C -1.44 -26.08 -.64 -26.56 .16 -27.2 C 1.28 -28.48 1.92 -29.92 1.92 -31.68 C 1.92 -33.44 1.28 -34.88 .16 -36 C -.96 -37.12 -2.56 -37.92 -4.32 -37.92 C -6.08 -37.92 -7.52 -37.12 -8.64 -36 C -9.76 -34.88 -10.56 -33.44 -10.56 -31.68 C -10.56 -29.92 -9.76 -28.48 -8.64 -27.2 C -8 -26.56 -7.2 -26.08 -6.24 -25.76 L -6.24 -21.76 L -10.56 -21.76 L -10.56 -18.08 L -9.28 -18.08 C -9.28 -13.28 -12.96 -9.28 -16.8 -9.28 L -23.04 -9.28 C -25.44 -9.28 -27.36 -7.36 -27.36 -4.96 L -27.36 37.28 C -27.36 40.8 -25.76 41.6 -23.04 41.6 L -4.32 41.6 C -1.6 41.6 0 40 0 37.28 L 0 19.84 L 18.72 19.84 L 18.72 15.52 L 0 15.52 Z " fill="#ffffff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 52 KiB

BIN
assest/Symposiom logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

BIN
assest/Test.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

BIN
assest/Uni Leiden logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

BIN
assest/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
assest/sprekers/Frits.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 780 KiB

BIN
assest/sprekers/Honing.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 786 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 722 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 933 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 576 KiB

421
css/master.css Normal file
View File

@ -0,0 +1,421 @@
*{
margin:0;
padding:0;
}
html{
scroll-behavior: smooth;
}
body{
background-color: #013871;
}
.nav-flex-container{
display:flex;
flex-wrap: nowrap;
flex-direction: row-reverse;
width: 100%;
background-color: #f6fdff;
position: fixed;
z-index: +1;
}
.nav-flex-containerlogo{
display:flex;
flex-wrap: nowrap;
width: 10%;
opacity: 100%;
position: fixed;
z-index: +2;
}
.navimg{
float: inherit;
width: 150px;
height: auto;
padding-top: 10px;
padding-left: 20px;
padding-right: 20px;
}
a{
width: 160px;
height: auto;
margin: 10px;
text-align: center;
line-height: 50px;
font-size: 150%;
border-radius: 100px;
}
a, a:active, a:visited{
text-decoration: none;
color:black;
transition: 0.3s;
}
a:hover{
background-color:#c0d3e3;
color: black;
}
header{
height: 100vh;
background: url(..//assest/Headerimg.png) no-repeat center center fixed;
background-size: cover;
position: relative;
}
header > h1{
color: #c0d3e3;
position:absolute;
text-align: center;
top:40%;
left: 50%;
font-size: 300%;
transform: translateX(-50%);
}
header > a{
position:absolute;
top:80%;
left:50%;
width:150px;
padding: 20px 40px;
font-size: 250%;
background-color: #003773;
border:none;
border-radius:5px;
transform: translateX(-50%);
}
.main-flex-container{
display:flex;
flex-direction:column;
padding-top: 100px;
margin-left: 150px;
margin-right: 150px;
}
article {
width: 100%;
border-radius: 50px;
margin-left: auto;
margin-right: auto;
margin-top: 25px;
margin-bottom: 25px;
padding: 40px;
background-color:#c0d3e3;
text-align: center;
scroll-margin-top: 110px;
}
.speakers{
width: 100%;
}
.textWrapper{
display:grid;
grid-template-columns: 1fr 1fr;
padding:40px;
grid-column-gap: 10%;
}
.speakImgWrapper{
display:grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
grid-column-gap: 40px;
}
.speakImg{
width: 100%;
height: auto;
align-items: center;
justify-content: center;
}
ul > li > h2{
width: 100%;
padding-bottom: 40px;
}
article > h1{
padding-bottom: 20px;
font-size: 250%;
}
article > h2{
padding-bottom: 20px;
font-size: 200%;
}
article > p{
padding: 10px;
font-size: 150%;
}
p > a{
width: auto;
height: auto;
margin: 0px;
font-size: 100%;
border-radius: 0px;
}
.cardWrapper{
display:grid;
grid-template-columns: 1fr 1fr 1fr;
grid-row-gap: 40px;
grid-column-gap: 40px;
padding:40px;
height: auto;
}
.card{
list-style:none;
border-radius: 5px;
background-repeat: no-repeat;
background-size: contain;
}
.img{
float: inherit;
width: 400px;
height: auto;
padding-left: 20px;
padding-right: 20px;
}
.sponsimg{
float: inherit;
scale: 150%;
width: 200px;
height: auto;
padding-left: 20px;
padding-right: 20px;
padding-top: 20px;
}
.container{
width: 40%;
padding:20px;
}
footer{
font-size: 100%;
}
@media only screen and (min-width:601px) and (max-width:1000px){
.nav-flex-container{
flex-direction: column;
align-items:center;
justify-content:flex-start;
position: absolute;
}
.nav-flex-containerlogo{
position: absolute;
}
.navimg{
width: 150px;
}
header > h1{
top:55%;
font-size: 200%;
}
header > a{
width:75px;
font-size: 150%;
}
.main-flex-container{
padding-top: 75px;
margin-left: 20px;
margin-right: 20px;
}
article {
scroll-margin-top: 40px;
width: 80%;
}
.speakers{
width: auto;
margin-top: 35vh ;
}
.textWrapper{
grid-template-columns: 1fr;
grid-row-gap: 0px;
padding:0px;
}
.speakImgWrapper{
grid-template-columns: 1fr;
}
ul > li > h2{
width: 100%;
padding-top: 40px;
padding-bottom: 20px;
}
.speakImg{
width: 50%;
}
.cardWrapper{
grid-template-columns: 1fr;
grid-gap: 20px;
padding:0px;
transform: translateX(5.5%);
}
}
@media only screen and (max-width:600px){
.nav-flex-container{
flex-direction: column;
align-items:center;
justify-content:flex-start;
position: absolute;
}
.nav-flex-containerlogo{
position: absolute;
}
.navimg{
width: 75px;
}
a{
width: 100px;
height: auto;
margin: 10px;
text-align: center;
line-height: 25px;
font-size: 120%;
border-radius: 100px;
}
header > h1{
width: 80%;
top:40vh;
font-size: 120%;
}
header > a{
width:75px;
font-size: 150%;
}
.main-flex-container{
width: 80vw;
display:flex;
flex-direction:column;
padding: 10px;
margin-left: 0px;
margin-right: 0px;
}
.main-flex-container > article {
padding: 20px;
}
.speakers{
margin-top: 35vh;
width: 100%;
}
.textWrapper{
display:grid;
grid-template-columns: 1fr;
padding:10px;
grid-column-gap: 10%;
}
ul > li > article{
width: 60vw;
}
.speakImgWrapper{
display:grid;
grid-template-columns: 1fr;
grid-column-gap: 40px;
}
.speakImg{
width: 100%;
height: auto;
align-items: center;
justify-content: center;
}
ul > li > h2{
width: 100%;
padding-bottom: 20px;
}
article > h1{
font-size: 150%;
}
article > h2{
font-size: 120%;
}
article > p{
padding: 10px;
font-size: 75%;
}
p > a{
width: auto;
height: auto;
margin: 0px;
font-size: 100%;
border-radius: 0px;
}
.cardWrapper{
display:grid;
grid-template-columns: 1fr;
}
.card{
list-style:none;
border-radius: 5px;
background-repeat: no-repeat;
background-size: contain;
}
.sponsimg{
float: inherit;
scale: 100%;
width: 200px;
height: auto;
padding-left: 20px;
padding-right: 20px;
padding-top: 20px;
transform: translateX(-15%);
}
.container{
width: 100%;
padding:20px;
}
footer{
font-size: 70%;
}
}

86
index.html Normal file
View File

@ -0,0 +1,86 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/master.css">
<script src="js/main.js"></script>
<title> Symposium </title>
<link rel="shortcut icon" type="image/jpg" href="assest/favicon.ico"/>
</head>
<body>
<nav class="nav-flex-container">
<a href="index.html">Home</a>
<a href="paginas/Programma.html">Programme</a>
<a href="paginas/Inschrijven.html">Signing up</a>
<a href="paginas/Sprekers.html">Speakers</a>
</nav>
<nav class ="nav-flex-containerlogo">
<img src="assest/Symposiom logo.png" class="navimg" alt="Symposiom logo">
</nav>
<header>
<h1> Captivated by Time<br>
How Time Affects All Sciences<br>
15th of February 2023
</h1>
<a href="https://www.deleidscheflesch.nl/inschrijven/extern/lustrumsymposium"> Sign up </a>
</header>
<main class="main-flex-container">
<article>
<img src="" class="img">
<h1>De Leidsche Flesch Symposium</h1>
<p>This is a biannual symposium organised by the study association for physics, astronomy, mathematics and computer science in Leiden, De Leidsche Flesch. At this symposium, this time held on account of the 100th year anniversary of the association, more than ten speakers from all fields of science will tell us all about the field of interest. At Scheltema in Leiden we will experience a day full of talks, science and curiosity.</p>
</article>
<ul class="textWrapper">
<li class="card">
<article>
<img src="" class="img">
<h1>Captivated by Time</h1>
<h2>How Time Affects All Sciences</h2>
<p>Time is something we encounter everyday and that influences our lives in the most fundamental way. At the same time it is some of the most mysterious aspects of life. “What is time?” is a question that might drive you insane, if you think really hard about it. Nevertheless, besides philosophical and metaphysical questions we can also study time and its effects on everything around us. What role does time play in mathematics? Can we capture time in a physical model? How is time perceived? We hope the speakers of the symposium can give us a little insight into what the answers to these and a lot of other questions might be.</p>
</article>
</li>
<li class="card">
<article>
<img src="" class="img">
<h1>About Us</h1>
<p>The De Leidsche Flesch symposium is an initiative of De Leidsche Flesch, the study association for physics, astronomy, mathematics and computer science at Leiden University. The association organises a lot of activities for students ranging from drinks and pub quizzes, to lunch lectures and study trips. This symposium is also held on the account of a special occasion, the 100th year anniversary of the association: a real milestone in the existence of De Leidsche Flesch, which played an important role in the atmosphere of education in science in Leiden. The symposium has a goal: spark an interest in scientific fields that are related to the field of study, or work, of its visitors, while at the same time broaden their horizon. With this initiative we want to speak to people from across the faculty, different universities and other associations.</p>
</article>
</li>
</ul>
<article>
<img src="" class="img">
<h1>Contact</h1>
<p>For questions please send an email to: symposium@deleidscheflesch.nl<br>
Location: Scheltema
</p>
</article>
<article>
<h1>Sponsors</h1>
<p>This beautiful symposium would not be possible without the financial support of the following organisations</p>
<ul class="cardWrapper">
<li class="card" class="container">
<img src="assest/Flesch logo.png" class="sponsimg" alt="de leidsche Flesch logo">
</li>
<li class="card" class="container">
<img src="assest/Uni Leiden logo.png" class="sponsimg" alt="Leiden University: Faculty of Science logo">
</li>
<li class="card" class="container">
<img src="assest/LUF logo.png" class="sponsimg" alt="Leids Universiteits Fonds logo">
</li>
</ul>
</article>
<footer class= "container">
<h2>Website by Mark van Muijen</h2>
</footer>
</main>
</body>
</html>

6
index.md Normal file
View File

@ -0,0 +1,6 @@
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: home
---

0
js/main.js Normal file
View File

54
paginas/Inschrijven.html Normal file
View File

@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="../css/master.css">
<script src="js/main.js"></script>
<title> Symposium </title>
<link rel="shortcut icon" type="image/jpg" href="../assest/favicon.ico"/>
</head>
<body>
<nav id="navbar" class="nav-flex-container">
<a href="../index.html">Home</a>
<a href="Programma.html">Programme</a>
<a href="Inschrijven.html">Signing up</a>
<a href="Sprekers.html">Speakers</a>
</nav>
<nav class ="nav-flex-containerlogo">
<img src="../assest/Symposiom logo.png" class="navimg" alt="Symposiom logo">
</nav>
<main class="main-flex-container">
<article class="speakers">
<img src="" class="img">
<h1>Signing up</h1>
<p>If you are enthusiastic to attend our symposium on the 15th of February, you can sign up via this <a href="">link</a> .
<br>Attending the symposium is completely free and lunch will be provided. Nevertheless, signing up is a requirement.
</p>
</article>
<article>
<h1>Sponsors</h1>
<p>This beautiful symposium would not be possible without the financial support of the following organisations</p>
<ul class="cardWrapper">
<li class="card" class="container">
<img src="../assest/Flesch logo.png" class="sponsimg" alt="de leidsche Flesch logo">
</li>
<li class="card" class="container">
<img src="../assest/Uni Leiden logo.png" class="sponsimg" alt="Leiden University: Faculty of Science logo">
</li>
<li class="card" class="container">
<img src="../assest/LUF logo.png" class="sponsimg" alt="Leids Universiteits Fonds logo">
</li>
</ul>
</article>
<footer class= "container">
<h2>Website by Mark van Muijen</h2>
</footer>
</main>
</body>
</html>

55
paginas/Programma.html Normal file
View File

@ -0,0 +1,55 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="../css/master.css">
<script src="js/main.js"></script>
<title> Symposium </title>
<link rel="shortcut icon" type="image/jpg" href="../assest/favicon.ico"/>
</head>
<body>
<nav id="navbar" class="nav-flex-container">
<a href="../index.html">Home</a>
<a href="Programma.html">Programme</a>
<a href="Inschrijven.html">Signing up</a>
<a href="Sprekers.html">Speakers</a>
</nav>
<nav class ="nav-flex-containerlogo">
<img src="../assest/Symposiom logo.png" class="navimg" alt="Symposiom logo">
</nav>
<main class="main-flex-container">
<article class="speakers">
<img src="" class="img">
<h1>Programme</h1>
<p>The day of our symposium is divided into two tracks: a mathematics and computer science focused track; and a physics and astronomy focused track. However, there are lectures that both tracks have together. Walk-in starts at 9:30 and the first lecture starts at 10:00. The day will be completed with a joint lecture that ends at 17:00. After a long day of lectures there is a possibility to move back with us to “our” Snellius where dinner will be served, and where we can talk the day through while enjoying something to drink and eat.
<br>
<br>
For more information about the content of our programme please see “Speakers”.
</p>
</article>
<article>
<h1>Sponsors</h1>
<p>This beautiful symposium would not be possible without the financial support of the following organisations</p>
<ul class="cardWrapper">
<li class="card" class="container">
<img src="../assest/Flesch logo.png" class="sponsimg" alt="de leidsche Flesch logo">
</li>
<li class="card" class="container">
<img src="../assest/Uni Leiden logo.png" class="sponsimg" alt="Leiden University: Faculty of Science logo">
</li>
<li class="card" class="container">
<img src="../assest/LUF logo.png" class="sponsimg" alt="Leids Universiteits Fonds logo">
</li>
</ul>
</article>
<footer class= "container">
<h2>Website by Mark van Muijen</h2>
</footer>
</main>
</body>
</html>

138
paginas/Sprekers.html Normal file
View File

@ -0,0 +1,138 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="../css/master.css">
<script src="js/main.js"></script>
<title> Symposium </title>
<link rel="shortcut icon" type="image/jpg" href="../assest/favicon.ico"/>
</head>
<body>
<nav id="navbar" class="nav-flex-container">
<a href="../index.html">Home</a>
<a href="Programma.html">Programme</a>
<a href="Inschrijven.html">Signing up</a>
<a href="Sprekers.html">Speakers</a>
</nav>
<nav class ="nav-flex-containerlogo">
<img src="../assest/Symposiom logo.png" class="navimg" alt="Symposiom logo">
</nav>
<main class="main-flex-container">
<article class="speakers">
<ul class="speakImgWrapper">
<li class="card" class="container">
<h2>Prof. dr. Vincent Iche</h2>
<a href="#speaker1">
<img src="../assest/sprekers/Vincent Icke.png" class="speakImg" alt="speaker 1">
</a>
</li>
<li class="card" class="container">
<h2>Dr. Frits Veerman</h2>
<a href="#speaker2">
<img src="../assest/sprekers/Frits.png" class="speakImg" alt="speaker 2">
</a>
</li>
<li class="card" class="container">
<h2>Prof. dr. Henkjan Honing</h2>
<a href="#speaker3">
<img src="../assest/sprekers/Honing.png" class="speakImg" alt="speaker 3">
</a>
</li>
<li class="card" class="container">
<h2>Prof. dr. Ulrike Felt</h2>
<a href="#speaker4">
<img src="../assest/sprekers/UlrikeFelt.png" class="speakImg" alt="speaker 4">
</a>
</li>
<li class="card" class="container">
<h2>Dr. James Grime</h2>
<a href="#speaker5">
<img src="../assest/sprekers/JamesGrime.png" class="speakImg" alt="speaker 5">
</a>
</li>
</ul>
</article>
<article id="speaker1">
<img src="" class="img">
<h2>Prof. dr. Vincent Icke - He is one of few people in the Netherlands that is not only an exceptional lecturer and researcher, but also one of the most famous Dutch scientists.</h1>
<p>At the moment he is an emeritus professor of theoretical astronomy at Leiden University, the institute where he earned his PhD in 1972 with a thesis on the formation of galaxies in clusters. He continued his research for several years at prestigious institutes for astrophysics at Cambridge University and Caltech.<br><br>
Besides his academic work he is also an artist and he is committed to the popularisation of science with TV performances and books like “Reisbureau Einstein” and “Licht. Tussen waarheid en wetenschap”.,<br><br>
Prof. dr. Icke will be a speaker of the Physics and Astronomy track.
</p>
</article>
<article id="speaker2">
<img src="" class="img">
<h2>Dr. Frits Veerman - He is an expert in the field of dynamical systems and as lecturer of several mathematics courses, like an undergraduate course on multivariable calculus and the graduate course “Introduction to Dynamical Systems”, he is a familiar face for mathematics students at Leiden University.</h1>
<p>After his PhD in Leiden he worked as a postdoc at the renowned Centre of Mathematical Biology in Oxford. After postdoctoral research in Edinburgh and being a Humboldt Research Fellow in Heidelberg he returned to Leiden, where he is currently an assistant professor.<br><br>
At the moment he is mainly occupied with research in mathematical biology, an exciting interface of applied analysis and theoretical biology. With his expertise he is a suitable speaker for this event and a great addition to the other ones that we will announce in the coming weeks.<br><br>
Dr. Frits Veerman will be a speaker of the Mathematics and Computer Science track.
</p>
</article>
<article id="speaker3">
<img src="" class="img">
<h2>Prof. dr. Henkjan Honing - He is a pioneer in the field of music cognition, an interdisciplinary field of study that looks into the role of perception, emotion, memory and expectation when listening to music. Honing is especially interested in what musicality is and can be; both in humans and animals.</h1>
<p>After obtaining his PhD from the City University in London, he started specialising in computational modelling music cognition. He was granted a Distinguished NIAS Lorentz fellowship for his work. In 2014 he became full professor at the Institute of Logic, Language and Computation in Amsterdam. Moreover, he was elected to be a member of the Royal Netherlands Academy of Arts and Sciences.
Beside lots of scientific publications, he has also published several books for the general public. In “Aap slaat maat. Op zoek naar de oorsprong van muzikaliteit bij mens en dier.” he points out surprising insights in the musicality of animals.<br><br>
Prof. dr. Henkjan Honing will be a speaker of the mathematics and computer science track.<br><br>
</p>
</article>
<article id="speaker4">
<img src="" class="img">
<h2>Prof. dr. Ulrike Felt - She has a broad interest in science and society. She played a big role in international research projects, for example being president of European Association for the Study of Science and Technology (EASST, 2017-2021). <br> Furthermore, she has been a visiting professor at numerous universities among them: ETH Zürich and STS group at Harvard University.</h1>
<p>In 1983 she obtained her PhD in theoretical physics from the university of Vienna. She went to work as a member of the interdisciplinary research team at CERN that analysed the societal, political and scientific aspect of this huge European collaboration. In 1988 Ulrike Felt returned to Vienna, to the Helga Nowotny Institute of Philosophy of Science and Science Research. About ten years later she received her habilitation in Sociology of Science.<br><br>
Prof. dr. Felt is very involved in societal discussion about the role of science and technology in the contemporary world. On top of that, she is active in the field of European and Austrian policy advice.<br><br>
Prof. dr. Ulrike Felt will be a speaker for both tracks.
</p>
</article>
<article id="speaker5">
<img src="" class="img">
<h2>Dr. James Grime - He is broadly known for his appearances in the most famous maths Youtube channel, Numberphile.<br>
Dr. Grime is a mathematician with a great passion for maths communication and promotion of mathematics. Therefore he spends most of his time touring the world to give talks or on Youtube reaching millions of people.
</h1>
<p>James studied mathematics at Lancaster university. After obtaining his PhD from York university, he worked in research in combinatorics and group theory.
Then he joined the Millennium Mathematics Project from the University of Cambridge and he ran The Enigma Project on their behalf to bring mathematics to life.<br><br>
Besides his very successful Numberphile videos with which he reaches millions of people, James also reaches 12,000 people of all ages in the numerous talks he gives.<br><br>
If you want to know more about James Grime: check out his Youtube channel "singingbanana"; his Numberphile videos; or just google him and enjoy all the other talks that are available.<br><br>
Dr. James Grime will be a speaker for both tracks.
</p>
</article>
<article>
<h1>Sponsors</h1>
<p>This beautiful symposium would not be possible without the financial support of the following organisations</p>
<ul class="cardWrapper">
<li class="card" class="container">
<img src="../assest/Flesch logo.png" class="sponsimg" alt="de leidsche Flesch logo">
</li>
<li class="card" class="container">
<img src="../assest/Uni Leiden logo.png" class="sponsimg" alt="Leiden University: Faculty of Science logo">
</li>
<li class="card" class="container">
<img src="../assest/LUF logo.png" class="sponsimg" alt="Leids Universiteits Fonds logo">
</li>
</ul>
</article>
<footer class= "container">
<h2>Website by Mark van Muijen</h2>
</footer>
</main>
</body>
</html>