Compare commits
2 Commits
44d90f09b2
...
72950b3094
Author | SHA1 | Date |
---|---|---|
Ryan Moon | 72950b3094 | |
Ryan Moon | dab5040f4f |
|
@ -0,0 +1,23 @@
|
||||||
|
# Nuxt dev/build outputs
|
||||||
|
.output
|
||||||
|
.nuxt
|
||||||
|
.nitro
|
||||||
|
.cache
|
||||||
|
dist
|
||||||
|
|
||||||
|
# Node dependencies
|
||||||
|
node_modules
|
||||||
|
|
||||||
|
# Logs
|
||||||
|
logs
|
||||||
|
*.log
|
||||||
|
|
||||||
|
# Misc
|
||||||
|
.DS_Store
|
||||||
|
.fleet
|
||||||
|
.idea
|
||||||
|
|
||||||
|
# Local env files
|
||||||
|
.env
|
||||||
|
.env.*
|
||||||
|
!.env.example
|
|
@ -0,0 +1,29 @@
|
||||||
|
<script setup>
|
||||||
|
useHead({
|
||||||
|
htmlAttrs: [
|
||||||
|
{ lang: 'en'}
|
||||||
|
],
|
||||||
|
link: [
|
||||||
|
{ rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon.png' },
|
||||||
|
{ rel: 'icon', sizes: '32x32', href: '/favicon-32x32.png' },
|
||||||
|
{ rel: 'icon', sizes: '16x16', href: '/favicon-16x16.png' },
|
||||||
|
{ rel: 'manifest', href: '/site.webmanifest' },
|
||||||
|
{ rel: 'mask-icon', href: '/safari-pinned-tab.svg', color: '#5bbad5' },
|
||||||
|
],
|
||||||
|
meta: [
|
||||||
|
{ name: 'msapplication-TileColor', content: '#f59428' },
|
||||||
|
{ name: 'theme-color', content: '#ffffff' }
|
||||||
|
],
|
||||||
|
script: [
|
||||||
|
{ defer: 'true', 'data-domain': 'crbtc.org', src: 'https://pa.inspin.co/js/latest.js' }
|
||||||
|
]
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<Header></Header>
|
||||||
|
<main>
|
||||||
|
<NuxtPage/>
|
||||||
|
</main>
|
||||||
|
<Footer></Footer>
|
||||||
|
</template>
|
|
@ -0,0 +1,23 @@
|
||||||
|
|
||||||
|
// Font Stack
|
||||||
|
$p-font: 'Titillium Web', sans-serif;
|
||||||
|
|
||||||
|
// Primary Colors
|
||||||
|
$b-color: #000000; // background
|
||||||
|
$s-color: #f7931a; // secondary
|
||||||
|
|
||||||
|
$w-color: #ffffff; // white
|
||||||
|
$bl-color: #000000; // black
|
||||||
|
$error: #d30012; // error
|
||||||
|
$hr: #d30012; // hr
|
||||||
|
|
||||||
|
$btn-color: #faf1e5; // button
|
||||||
|
$btnh-color: #f5ece0; // button hover
|
||||||
|
$i-color: #faf3ea; // input
|
||||||
|
|
||||||
|
// Font Colors
|
||||||
|
$f-color: #ffffff; // primary
|
||||||
|
$fs-color: #ffffff; // secondary
|
||||||
|
$fh-color: #f7931a; // hover
|
||||||
|
$btc: #f7931a; // btc
|
||||||
|
$link: #3182ce; // link
|
|
@ -0,0 +1,91 @@
|
||||||
|
/* titillium-web-300 */
|
||||||
|
@font-face {
|
||||||
|
font-display: swap;
|
||||||
|
font-family: 'Titillium Web';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 300;
|
||||||
|
src: url('/assets/fonts/titillium-web/titillium-web-v15-latin-300.woff2') format('woff2'),
|
||||||
|
url('/assets/fonts/titillium-web/titillium-web-v15-latin-300.ttf') format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
/* titillium-web-regular */
|
||||||
|
@font-face {
|
||||||
|
font-display: swap;
|
||||||
|
font-family: 'Titillium Web';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
src: url('/assets/fonts/titillium-web/titillium-web-v15-latin-regular.woff2') format('woff2'),
|
||||||
|
url('/assets/fonts/titillium-web/titillium-web-v15-latin-regular.ttf') format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
/* titillium-web-600 */
|
||||||
|
@font-face {
|
||||||
|
font-display: swap;
|
||||||
|
font-family: 'Titillium Web';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 600;
|
||||||
|
src: url('/assets/fonts/titillium-web/titillium-web-v15-latin-600.woff2') format('woff2'),
|
||||||
|
url('/assets/fonts/titillium-web/titillium-web-v15-latin-600.ttf') format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
/* titillium-web-700 */
|
||||||
|
@font-face {
|
||||||
|
font-display: swap;
|
||||||
|
font-family: 'Titillium Web';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
src: url('/assets/fonts/titillium-web/titillium-web-v15-latin-700.woff2') format('woff2'),
|
||||||
|
url('/assets/fonts/titillium-web/titillium-web-v15-latin-700.ttf') format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* public-sans-light
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Public Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 300;
|
||||||
|
src: local(''),
|
||||||
|
url('/assets/fonts/public-sans/public-sans-light.woff2') format('woff2'),
|
||||||
|
url('/assets/fonts/public-sans/public-sans-light.woff') format('woff');
|
||||||
|
}
|
||||||
|
|
||||||
|
/* public-sans-regular
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Public Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
src: local(''),
|
||||||
|
url('/assets/fonts/public-sans/public-sans-regular.woff2') format('woff2'),
|
||||||
|
url('/assets/fonts/public-sans/public-sans-regular.woff') format('woff');
|
||||||
|
}
|
||||||
|
|
||||||
|
/* public-sans-medium
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Public Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 500;
|
||||||
|
src: local(''),
|
||||||
|
url('/assets/fonts/public-sans/public-sans-medium.woff2') format('woff2'),
|
||||||
|
url('/assets/fonts/public-sans/public-sans-medium.woff') format('woff');
|
||||||
|
}
|
||||||
|
|
||||||
|
/* public-sans-semi-bold
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Public Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 600;
|
||||||
|
src: local(''),
|
||||||
|
url('/assets/fonts/public-sans/public-sans-semi-bold.woff2') format('woff2'),
|
||||||
|
url('/assets/fonts/public-sans/public-sans-semi-bold.woff') format('woff');
|
||||||
|
}
|
||||||
|
|
||||||
|
/* public-sans-bold
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Public Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
src: local(''),
|
||||||
|
url('/assets/fonts/public-sans/public-sans-bold.woff2') format('woff2'),
|
||||||
|
url('/assets/fonts/public-sans/public-sans-bold.woff') format('woff');
|
||||||
|
}
|
||||||
|
*/
|
|
@ -0,0 +1,81 @@
|
||||||
|
.footer {
|
||||||
|
max-width: 60rem;
|
||||||
|
height: 2rem;
|
||||||
|
margin: .5rem auto;
|
||||||
|
padding: 0 4rem;
|
||||||
|
|
||||||
|
.who {
|
||||||
|
float: left;
|
||||||
|
color: $f-color;
|
||||||
|
font-size: .895rem;
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: $link;
|
||||||
|
margin: 0 2px;
|
||||||
|
|
||||||
|
&:hover { text-decoration: underline }
|
||||||
|
}
|
||||||
|
|
||||||
|
.heart {
|
||||||
|
position: relative;
|
||||||
|
margin: 0 1px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.links {
|
||||||
|
float: right;
|
||||||
|
list-style-type: none;
|
||||||
|
white-space:nowrap;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
li, li p {
|
||||||
|
display:inline;
|
||||||
|
font-size: .895rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: $link;
|
||||||
|
margin: 0 .5rem;
|
||||||
|
|
||||||
|
&:hover { text-decoration: underline }
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
color: $f-color;
|
||||||
|
margin: 0 0 0 .5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copy .icon-copyright {
|
||||||
|
font-size: .7rem;
|
||||||
|
opacity: .9;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
.footer {
|
||||||
|
height: unset;
|
||||||
|
padding: 0 2.5rem;
|
||||||
|
margin: 1rem 0;
|
||||||
|
|
||||||
|
.who,
|
||||||
|
.links {
|
||||||
|
float: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.links {
|
||||||
|
padding: .5rem 0;
|
||||||
|
|
||||||
|
a:first-of-type {
|
||||||
|
margin: 0 1rem 0 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 345px) {
|
||||||
|
.footer {
|
||||||
|
padding: 0 1rem;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,73 @@
|
||||||
|
header {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 6.5rem calc(100% - 15.5rem) 9rem;
|
||||||
|
grid-template-rows: 2fr 1fr;
|
||||||
|
max-width: 60rem;
|
||||||
|
padding: 2rem 4rem;
|
||||||
|
margin: 0 auto;
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
grid-row: 1/3;
|
||||||
|
display: inline-block;
|
||||||
|
border: .2rem solid $w-color;
|
||||||
|
padding: .5rem 1rem .5rem .5rem;
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
color: $w-color;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
line-height: 1.2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav,
|
||||||
|
.auth {
|
||||||
|
grid-row: 2;
|
||||||
|
margin: 0 auto;
|
||||||
|
|
||||||
|
a {
|
||||||
|
display: inline-block;
|
||||||
|
margin: 0 .5rem;
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
color: $f-color;
|
||||||
|
font-size: 1rem;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: $fh-color;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.auth {
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
a {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
header {
|
||||||
|
grid-template-columns: 5.5rem calc(100% - 5.5rem);
|
||||||
|
padding: 2.5rem 2.5rem 1rem 2.5rem;
|
||||||
|
|
||||||
|
.logo h1 {
|
||||||
|
font-size: 1rem;
|
||||||
|
line-height: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav {
|
||||||
|
grid-row: 2;
|
||||||
|
margin: 0;
|
||||||
|
text-align: right;
|
||||||
|
|
||||||
|
a {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,58 @@
|
||||||
|
@import 'fonts';
|
||||||
|
@import 'config';
|
||||||
|
|
||||||
|
body {
|
||||||
|
background: $b-color;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
max-width: 60rem;
|
||||||
|
min-height: calc(100vh - 220px);
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 0 4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
main { padding: 2rem }
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
scroll-behavior: smooth;
|
||||||
|
}
|
||||||
|
|
||||||
|
*, *:after, *:before {
|
||||||
|
box-sizing: border-box;
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6,
|
||||||
|
p,
|
||||||
|
a,
|
||||||
|
b,
|
||||||
|
label {
|
||||||
|
color: $f-color;
|
||||||
|
font-family: $p-font;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: $link;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
@import 'pages/index';
|
||||||
|
@import 'pages/pages';
|
||||||
|
@import 'pages/guide';
|
||||||
|
@import 'pages/404';
|
||||||
|
@import 'components/header';
|
||||||
|
@import 'components/footer';
|
|
@ -0,0 +1,28 @@
|
||||||
|
.lost {
|
||||||
|
position: relative;
|
||||||
|
top: calc(50vh - 280px);
|
||||||
|
margin: auto;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
color: $fs-color;
|
||||||
|
font-size: 8rem;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: 8.5rem;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
color: $fs-color;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
font-weight: 700;
|
||||||
|
padding: .25rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
display: inline-block;
|
||||||
|
color: $link;
|
||||||
|
|
||||||
|
&:hover { text-decoration: underline }
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,53 @@
|
||||||
|
.guide {
|
||||||
|
padding: 4rem 8rem;
|
||||||
|
|
||||||
|
.hero {
|
||||||
|
h3 { font-size: 2.5rem }
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
font-size: .9rem;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
padding: 4rem 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-size: 1.05rem;
|
||||||
|
padding: .5rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
padding: 1rem 0;
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: $f-color;
|
||||||
|
font-size: 1.25rem;
|
||||||
|
font-weight: 600;
|
||||||
|
&:hover { cursor: text }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
padding: 1rem 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
.guide {
|
||||||
|
padding: 2rem .5rem;
|
||||||
|
|
||||||
|
.hero h3 {
|
||||||
|
font-size: 2.25rem;
|
||||||
|
line-height: 2.5rem;
|
||||||
|
margin: 1rem 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,49 @@
|
||||||
|
.index {
|
||||||
|
@import 'index/hero';
|
||||||
|
|
||||||
|
.banner,
|
||||||
|
.guides,
|
||||||
|
.events,
|
||||||
|
.sponsors {
|
||||||
|
h4 {
|
||||||
|
position: relative;
|
||||||
|
width: fit-content;
|
||||||
|
color: $f-color;
|
||||||
|
font-size: 2rem;
|
||||||
|
margin: 1.5rem 0;
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
top: 1.95rem;
|
||||||
|
right: -.6rem;
|
||||||
|
height: .2rem;
|
||||||
|
border: .2rem solid $btc;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
.banner,
|
||||||
|
.guides,
|
||||||
|
.events,
|
||||||
|
.sponsors {
|
||||||
|
h4 {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
margin: .5rem auto 0 auto;
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
top: 1.5rem;
|
||||||
|
right: -.5rem;
|
||||||
|
height: .15rem;
|
||||||
|
border: .15rem solid $btc;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@import 'index/guides';
|
||||||
|
@import 'index/events';
|
||||||
|
@import 'index/sponsors';
|
||||||
|
@import 'index/banner';
|
||||||
|
}
|
|
@ -0,0 +1,62 @@
|
||||||
|
.about,
|
||||||
|
.privacy,
|
||||||
|
.terms {
|
||||||
|
padding: 4rem 8rem;
|
||||||
|
|
||||||
|
h3,
|
||||||
|
h4 {
|
||||||
|
a {
|
||||||
|
color: $f-color;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
cursor: text;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 a { font-size: 2rem }
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
padding: 1rem 0;
|
||||||
|
|
||||||
|
a {
|
||||||
|
font-size: 1.25rem;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-size: 1.05rem;
|
||||||
|
padding: .5rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover { text-decoration: underline }
|
||||||
|
|
||||||
|
ul li {
|
||||||
|
color: $f-color;
|
||||||
|
font-family: $p-font;
|
||||||
|
font-size: 1.05rem;
|
||||||
|
padding: .5rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
padding: 1rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
.about,
|
||||||
|
.privacy,
|
||||||
|
.terms {
|
||||||
|
padding: 1rem .5rem;
|
||||||
|
|
||||||
|
p,
|
||||||
|
ul li {
|
||||||
|
font-size: .95rem;
|
||||||
|
padding: .4rem 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,31 @@
|
||||||
|
.banner {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 2.5fr 1fr 1fr;
|
||||||
|
max-width: 60rem;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 2rem 0 8rem 0;
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
margin: 1.5rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h6 {
|
||||||
|
color: $f-color;
|
||||||
|
font-size: 1rem;
|
||||||
|
font-weight: 500;
|
||||||
|
line-height: 1.4rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
.banner {
|
||||||
|
display: block;
|
||||||
|
padding: 3rem 1rem 8rem 1rem;
|
||||||
|
|
||||||
|
.msg .donate {
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,112 @@
|
||||||
|
.events {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr 1.5fr .15fr;
|
||||||
|
padding: 6rem 0;
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
grid-column: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.event {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 3fr 2fr;
|
||||||
|
grid-template-rows: 1fr .7fr .6fr;
|
||||||
|
grid-column: 2;
|
||||||
|
padding: 1rem 2rem;
|
||||||
|
margin: 1rem 0 0 0;
|
||||||
|
border: .15rem solid $w-color;
|
||||||
|
|
||||||
|
.hide {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.both { grid-row: 2 }
|
||||||
|
.bottom { grid-row: 3 }
|
||||||
|
|
||||||
|
.attend,
|
||||||
|
.meetup {
|
||||||
|
grid-column: 2;
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 1rem;
|
||||||
|
line-height: 1.4rem;
|
||||||
|
text-align: right;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.info {
|
||||||
|
grid-column: 1;
|
||||||
|
grid-row: 1/4;
|
||||||
|
|
||||||
|
h5 {
|
||||||
|
display: inline-block;
|
||||||
|
color: $f-color;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
line-height: 1.8rem;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: $fh-color;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
color: $f-color;
|
||||||
|
font-size: 1rem;
|
||||||
|
line-height: 1.4rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.past {
|
||||||
|
opacity: .4;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
.events {
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
padding: 4rem 1rem;
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.event {
|
||||||
|
grid-column: 1;
|
||||||
|
padding: .5rem 1rem;
|
||||||
|
|
||||||
|
.attend,
|
||||||
|
.meetup {
|
||||||
|
font-size: .9rem;
|
||||||
|
line-height: 1.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info {
|
||||||
|
grid-column: 1;
|
||||||
|
grid-row: 1/4;
|
||||||
|
|
||||||
|
h5 {
|
||||||
|
font-size: 1rem;
|
||||||
|
line-height: 1.6rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.location {
|
||||||
|
width: 80%;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-size: .9rem;
|
||||||
|
line-height: 1.3rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,53 @@
|
||||||
|
.guides {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr 1fr 1fr 1fr;
|
||||||
|
grid-gap: 1.5rem;
|
||||||
|
padding: 4rem 0 6rem 0;
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
grid-column: 1/5;
|
||||||
|
margin: 1.5rem 0 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.guide {
|
||||||
|
display: inline-block;
|
||||||
|
border: .15rem solid $w-color;
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
a {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 1rem 2rem 1rem 1.5rem;
|
||||||
|
|
||||||
|
h5 {
|
||||||
|
color: $f-color;
|
||||||
|
font-size: 1.6rem;
|
||||||
|
line-height: 1.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: #111111;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
.guides {
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
grid-gap: 1rem;
|
||||||
|
padding: 4rem 1rem;
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
grid-column: 1/3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.guide a {
|
||||||
|
padding: .5rem 1rem;
|
||||||
|
|
||||||
|
h5 {
|
||||||
|
font-size: 1rem;
|
||||||
|
line-height: 1.2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,42 @@
|
||||||
|
.hero {
|
||||||
|
padding: calc(50vh - 260px) 0 12vh 0;
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
color: $f-color;
|
||||||
|
font-size: 4rem;
|
||||||
|
line-height: 4rem;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
span {
|
||||||
|
position: relative;
|
||||||
|
color: $btc;
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
bottom: .55rem;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: .2rem;
|
||||||
|
border: .2rem solid $btc;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
.hero {
|
||||||
|
padding: 18vh 0;
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: 2.2rem;
|
||||||
|
line-height: 2.2rem;
|
||||||
|
|
||||||
|
span:after {
|
||||||
|
bottom: .35rem;
|
||||||
|
height: .15rem;
|
||||||
|
border-width: .15rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
.sponsors {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr 1fr 1fr 1fr;
|
||||||
|
padding: 8rem 0 2rem 0;
|
||||||
|
|
||||||
|
a {
|
||||||
|
height: 2rem;
|
||||||
|
margin: 2.25rem 1rem 1rem 1rem;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
filter: grayscale(100%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
.sponsors {
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
padding: 4rem 0 2rem 0;
|
||||||
|
|
||||||
|
a {
|
||||||
|
padding: 0;
|
||||||
|
margin: 1rem 0 .5rem 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
<template>
|
||||||
|
<div class="footer">
|
||||||
|
<div class="who">
|
||||||
|
<p>Made with <span class="heart">❤️</span> by <NuxtLink to="https://ryanmoon.com" target="_blank">Ryan Moon</NuxtLink></p>
|
||||||
|
</div>
|
||||||
|
<ul class="links">
|
||||||
|
<li><NuxtLink to="/privacy">Privacy Policy</NuxtLink></li>
|
||||||
|
<li><NuxtLink to="/terms">Terms of Service</NuxtLink></li>
|
||||||
|
<li><NuxtLink to="https://git.inspin.co/ryan/crbtc.org" target="_blank">Source Code</NuxtLink></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,19 @@
|
||||||
|
<script setup>
|
||||||
|
const { isDesktopOrTablet } = useDevice();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<header>
|
||||||
|
<NuxtLink to="/" class="logo"><h1>Capital <br/>Region <br/>Bitcoin <br/>Network</h1></NuxtLink>
|
||||||
|
<div class="nav" >
|
||||||
|
<NuxtLink to="/about"><h2>About</h2></NuxtLink>
|
||||||
|
<NuxtLink to="/#guides"><h2>Guides</h2></NuxtLink>
|
||||||
|
<NuxtLink to="/#events" ><h2>Events</h2></NuxtLink>
|
||||||
|
<NuxtLink to="/members" v-if="isDesktopOrTablet" ><h2>Members</h2></NuxtLink>
|
||||||
|
</div>
|
||||||
|
<div class="auth" v-if="isDesktopOrTablet" >
|
||||||
|
<NuxtLink to="/register"><h2>Register</h2></NuxtLink>
|
||||||
|
<NuxtLink to="/login"><h2>Sign in</h2></NuxtLink>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
</template>
|
|
@ -0,0 +1,23 @@
|
||||||
|
<script setup>
|
||||||
|
|
||||||
|
import { format, getDay, parseISO } from "date-fns";
|
||||||
|
|
||||||
|
const nth = function(d) {
|
||||||
|
if (d > 3 && d < 21) return 'th';
|
||||||
|
switch (d % 10) {
|
||||||
|
case 1: return "st";
|
||||||
|
case 2: return "nd";
|
||||||
|
case 3: return "rd";
|
||||||
|
default: return "th";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let date = parseISO(data.value.date)
|
||||||
|
data.value.date = format(date, 'EEE, MMMM d')
|
||||||
|
data.value.ordinal = nth(getDay(date) - 1)
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<h4>Date: {{ data.date }}{{ data.ordinal }} at {{ data.time }}</h4>
|
||||||
|
</template>
|
|
@ -0,0 +1,13 @@
|
||||||
|
<template>
|
||||||
|
<div class="banner">
|
||||||
|
<div class="msg">
|
||||||
|
<h4>Get Involved</h4>
|
||||||
|
<h6>Come learn and talk about Bitcoin. Meet new people, ask questions, suggest topics, or just come and hang out.</h6>
|
||||||
|
<br/>
|
||||||
|
<h6 class="donate">Bitcoin (<a href="/img/btc.png">QR</a>): bc1qtw78x248kzq547w0zkm790u0yhgjkerxahpm9e</h6>
|
||||||
|
</div>
|
||||||
|
<div class="social">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,33 @@
|
||||||
|
<script setup>
|
||||||
|
|
||||||
|
const events = await queryContent('event')
|
||||||
|
.sort({ date: -1 })
|
||||||
|
.only(['title', 'slug', 'location', 'date', 'time', 'meetup'])
|
||||||
|
.limit(3)
|
||||||
|
.find()
|
||||||
|
|
||||||
|
import { format, isBefore, parseISO } from "date-fns";
|
||||||
|
|
||||||
|
for (let i = 0; i < events.length; i++) {
|
||||||
|
let date = parseISO(events[i].date)
|
||||||
|
events[i].past = isBefore(date, new Date())
|
||||||
|
events[i].date = format(date, 'EEE, MMM d')
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="events" id="events">
|
||||||
|
<h4>Upcoming Events</h4>
|
||||||
|
<div v-bind:class="(event.past)?'event past':'event'" v-for="event in events" :key="event.slug">
|
||||||
|
<div class="info">
|
||||||
|
<NuxtLink :to="'/event/' + event.slug"><h5>{{ event.title }}</h5></NuxtLink>
|
||||||
|
<p class="location">{{ event.location }}</p>
|
||||||
|
<p>{{ event.date }} · {{ event.time }}</p>
|
||||||
|
</div>
|
||||||
|
<NuxtLink v-bind:class="(event.meetup)?'attend both':'attend bottom'" class="attend" v-if="!event.past" :href="'/login?action=attend&?ref=' + event.slug" >Attend event</NuxtLink>
|
||||||
|
<NuxtLink class="meetup bottom" v-if="event.meetup" target="_BLANK"
|
||||||
|
:to="'https://www.meetup.com/capitalregionbitcoinnetwork/events/' + event.meetup + '/'">Meetup.com</NuxtLink>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,20 @@
|
||||||
|
<script setup>
|
||||||
|
|
||||||
|
const guides = await queryContent('guide')
|
||||||
|
.sort({ priority: 1 })
|
||||||
|
.only(['short', 'slug', 'author'])
|
||||||
|
.limit(4)
|
||||||
|
.find()
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="guides" id="guides">
|
||||||
|
<h4>Getting Started</h4>
|
||||||
|
<div class="guide" v-for="guide in guides" :key="guide.slug">
|
||||||
|
<NuxtLink :to="'/guide/' + guide.slug">
|
||||||
|
<h5>{{ guide.short }}</h5>
|
||||||
|
</NuxtLink>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,19 @@
|
||||||
|
<template>
|
||||||
|
<div class="sponsors">
|
||||||
|
<h4>Sponsors</h4>
|
||||||
|
<NuxtLink to="https://bitcoinmagazine.com/" target="_BLANK">
|
||||||
|
<img src="/img/sponsors/b.tc.svg" alt="Bitcoin Magazine" />
|
||||||
|
</NuxtLink>
|
||||||
|
<NuxtLink to="https://inspin.co/" target="_BLANK">
|
||||||
|
<img src="/img/sponsors/inspin.svg" alt="Inspin Digital" />
|
||||||
|
</NuxtLink>
|
||||||
|
<!--
|
||||||
|
<NuxtLink to="https://btcpayserver.org/" target="_BLANK">
|
||||||
|
<img src="/img/sponsors/btcpay.svg" alt="BTCPay Server" />
|
||||||
|
</NuxtLink>
|
||||||
|
-->
|
||||||
|
<NuxtLink to="mailto:hello@crbtc.org" >
|
||||||
|
<img src="/img/sponsors/sponsor.svg" alt="Your Logo Here" />
|
||||||
|
</NuxtLink>
|
||||||
|
</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
title: About - Capital Region Bitcoin Network
|
||||||
|
slug: about
|
||||||
|
---
|
||||||
|
|
||||||
|
#### About
|
||||||
|
|
||||||
|
The Capital Region Bitcoin Network was started by <a href="https://twitter.com/bitcoinkendal"
|
||||||
|
target="_BLANK" >Kendal Pappas</a> as a result of there not being many crypto groups and
|
||||||
|
wanting to create a local community around Bitcoin.
|
||||||
|
|
||||||
|
The first meetup was held on Thursday, May 11th 2023. Meetups allow for open discussion
|
||||||
|
about Bitcoin news and common questions surrounding crypto.
|
||||||
|
|
||||||
|
View the schedule of <a href="/#events">upcoming events</a> and see if you can make it to the next one.
|
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
title:
|
||||||
|
slug:
|
||||||
|
date: MM-DD-YYYY
|
||||||
|
published: MMM D, YYYY
|
||||||
|
location:
|
||||||
|
address:
|
||||||
|
time:
|
||||||
|
meetup:
|
||||||
|
---
|
||||||
|
|
||||||
|
## Heading
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
title: Monthly Meetup
|
||||||
|
slug: monthly-meetup-5-11-2023
|
||||||
|
date: 2023-05-11
|
||||||
|
published: 2023-04-28
|
||||||
|
location: Frog Alley Brewing Co
|
||||||
|
address: 108 State St, Schenectady
|
||||||
|
time: 6:30 PM
|
||||||
|
meetup: 292981250
|
||||||
|
---
|
||||||
|
|
||||||
|
## Monthly Meetup
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
title: Monthly Meetup
|
||||||
|
slug: monthly-meetup-6-28-2023
|
||||||
|
date: 2023-06-28
|
||||||
|
published: 2023-06-04
|
||||||
|
location: Druthers Brewing Company
|
||||||
|
address: 7 Southside Drive, Clifton Park
|
||||||
|
time: 6:00 PM
|
||||||
|
meetup: 294210792
|
||||||
|
---
|
||||||
|
|
||||||
|
## Monthly Meetup
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
---
|
||||||
|
title: Monthly Meetup
|
||||||
|
slug: monthly-meetup-8-2-2023
|
||||||
|
date: 2023-08-02
|
||||||
|
published: 2023-07-16
|
||||||
|
location: Urban Co-Works
|
||||||
|
address: 430 Franklin Street 2nd Floor, Schenectady
|
||||||
|
time: 6:00 PM
|
||||||
|
meetup:
|
||||||
|
---
|
||||||
|
|
||||||
|
#
|
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
title:
|
||||||
|
short:
|
||||||
|
slug:
|
||||||
|
date:
|
||||||
|
published: MMM D, YYYY
|
||||||
|
updated: MMM D, YYYY
|
||||||
|
length:
|
||||||
|
tags:
|
||||||
|
excerpt:
|
||||||
|
author:
|
||||||
|
---
|
||||||
|
|
||||||
|
## Heading
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
title: Books for learning about Bitcoin
|
||||||
|
short: Books for Bitcoin
|
||||||
|
slug: books-for-bitcoin
|
||||||
|
date:
|
||||||
|
published: MMM D, YYYY
|
||||||
|
updated: MMM D, YYYY
|
||||||
|
length:
|
||||||
|
tags:
|
||||||
|
excerpt:
|
||||||
|
author:
|
||||||
|
---
|
||||||
|
|
||||||
|
## Heading
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
title: How to Setup a Bitcoin Full Node?
|
||||||
|
short: Create a Full Node
|
||||||
|
slug: create-a-full-node
|
||||||
|
date:
|
||||||
|
published: MMM D, YYYY
|
||||||
|
updated: MMM D, YYYY
|
||||||
|
length:
|
||||||
|
tags:
|
||||||
|
excerpt:
|
||||||
|
author:
|
||||||
|
---
|
||||||
|
|
||||||
|
## Heading
|
||||||
|
|
|
@ -0,0 +1,86 @@
|
||||||
|
---
|
||||||
|
title: Crypto Exchanges in New York?
|
||||||
|
short: Crypto Exchanges?
|
||||||
|
slug: crypto-exchanges
|
||||||
|
thumbnail: crypto-exchanges.svg
|
||||||
|
date: 07-29-2023
|
||||||
|
published: July 29th, 2023
|
||||||
|
updated: July 29th, 2023
|
||||||
|
length: 2
|
||||||
|
tags: Exchanges give you the opportunity to purchase crypto and store your purchase in a hot wallet.
|
||||||
|
excerpt: Exchancges
|
||||||
|
author: Ryan Moon
|
||||||
|
priority: 3
|
||||||
|
---
|
||||||
|
|
||||||
|
## Crypto Exchanges
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Apex Crypto LLC
|
||||||
|
|
||||||
|
Bakkt Marketplace, LLC
|
||||||
|
|
||||||
|
Bakkt Trust Company LLC
|
||||||
|
|
||||||
|
bitFlyer USA, Inc.
|
||||||
|
|
||||||
|
BitGo New York Trust Company LLC
|
||||||
|
|
||||||
|
BitOoda Digital, LLC
|
||||||
|
|
||||||
|
Bitpay, Inc.
|
||||||
|
|
||||||
|
Bitstamp USA, Inc.
|
||||||
|
|
||||||
|
Block, Inc., f/k/a Square, Inc.
|
||||||
|
|
||||||
|
Cboe Clear Digital, LLC
|
||||||
|
|
||||||
|
Circle Internet Financial, LLC
|
||||||
|
|
||||||
|
Coin Cafe
|
||||||
|
|
||||||
|
Coinbase Custody Trust
|
||||||
|
|
||||||
|
Coinbase, Inc.
|
||||||
|
|
||||||
|
Coinsource
|
||||||
|
|
||||||
|
Cottonwood Vending
|
||||||
|
|
||||||
|
eToro NY LLC
|
||||||
|
|
||||||
|
Fidelity Digital Asset Services, LLC
|
||||||
|
|
||||||
|
Gemini Trust Company, LLC
|
||||||
|
|
||||||
|
Genesis Global Trading, Inc.
|
||||||
|
|
||||||
|
GMO-Z.com Trust Company, Inc.
|
||||||
|
|
||||||
|
LibertyX/Moon Inc.
|
||||||
|
|
||||||
|
NYDIG Execution LLC
|
||||||
|
|
||||||
|
NYDIG Trust Company LLC
|
||||||
|
|
||||||
|
Paxos Trust Company, LLC (f/k/a itBit Trust Company, LLC)
|
||||||
|
|
||||||
|
PayPal, Inc.
|
||||||
|
|
||||||
|
Provenance Technologies, Inc.
|
||||||
|
|
||||||
|
Ripple Markets DE LLC (f/k/a XRP II LLC)
|
||||||
|
|
||||||
|
Robinhood Crypto
|
||||||
|
|
||||||
|
SoFi Digital Assets
|
||||||
|
|
||||||
|
Standard Custody & Trust Company, LLC
|
||||||
|
|
||||||
|
|
||||||
|
Zero Hash Liquidity Services, LLC
|
||||||
|
|
||||||
|
|
||||||
|
Zero Hash LLC
|
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
title: Accepting Crypto for your Business
|
||||||
|
short: Crypto for Businesses
|
||||||
|
slug: crypto-for-businesses
|
||||||
|
date:
|
||||||
|
published: MMM D, YYYY
|
||||||
|
updated: MMM D, YYYY
|
||||||
|
length:
|
||||||
|
tags: Business, Bitcoin
|
||||||
|
excerpt:
|
||||||
|
author:
|
||||||
|
---
|
||||||
|
|
||||||
|
## Heading
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
---
|
||||||
|
title: What is a Hardware Wallet?
|
||||||
|
short: Hardware Wallets?
|
||||||
|
slug: hardware-wallets
|
||||||
|
thumbnail: hardware-wallets.svg
|
||||||
|
date: 07-29-2023
|
||||||
|
published: July 29th, 2023
|
||||||
|
updated: July 29th, 2023
|
||||||
|
length: 2
|
||||||
|
tags: wallets
|
||||||
|
excerpt: There are many advantages to owning a hardware wallet, but choosing the right one for your needs can be difficult.
|
||||||
|
author: Ryan Moon
|
||||||
|
priority: 4
|
||||||
|
---
|
||||||
|
|
||||||
|
#### Hardware Wallets
|
||||||
|
|
||||||
|
Once you are able to purchase some crypto either through a friend or from an exchange, you are likely going to want to store it somewhere safe.
|
||||||
|
|
||||||
|
Storing your crypto on a hardware wallet is the safest way to protect you assets from others and offers many other benefits as well...
|
|
@ -0,0 +1,16 @@
|
||||||
|
---
|
||||||
|
title: How to get Started with Crypto?
|
||||||
|
short: How to get Started?
|
||||||
|
slug: how-to-get-started
|
||||||
|
date: 07-29-2023
|
||||||
|
published: July 29th, 2023
|
||||||
|
updated: July 29th, 2023
|
||||||
|
length: 2
|
||||||
|
tags: Getting Started, Bitcoin
|
||||||
|
excerpt: Getting started in bitcoin can be very overwhelming if you dive right in as there are many things to learn about it.
|
||||||
|
author: Ryan Moon
|
||||||
|
priority: 2
|
||||||
|
---
|
||||||
|
|
||||||
|
## How to get Started?
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
title: Protecting your Privacy
|
||||||
|
short: Privacy Protection
|
||||||
|
slug: privacy-protection
|
||||||
|
date:
|
||||||
|
published: MMM D, YYYY
|
||||||
|
updated: MMM D, YYYY
|
||||||
|
length:
|
||||||
|
tags:
|
||||||
|
excerpt:
|
||||||
|
author:
|
||||||
|
---
|
||||||
|
|
||||||
|
## Heading
|
||||||
|
|
|
@ -0,0 +1,116 @@
|
||||||
|
---
|
||||||
|
title: What is Bitcoin?
|
||||||
|
short: What is Bitcoin?
|
||||||
|
slug: what-is-bitcoin
|
||||||
|
thumbnail: what-is-bitcoin.png
|
||||||
|
date: 07-29-2023
|
||||||
|
published: July 29th, 2023
|
||||||
|
updated: July 29th, 2023
|
||||||
|
length: 5
|
||||||
|
tags: Getting Started, Bitcoin
|
||||||
|
excerpt: Bitcoin is an open-source technology that allows for worldwide payments without any central authorities or banks.
|
||||||
|
author: Ryan Moon
|
||||||
|
priority: 1
|
||||||
|
---
|
||||||
|
|
||||||
|
What is Bitcoin exactly? How does it work? And why is it so popular?
|
||||||
|
|
||||||
|
If you've been curious about Bitcoin but don't know where to start, you're in the right place. In this article, we'll demystify the world of Bitcoin and explain everything you need to know.
|
||||||
|
|
||||||
|
From the basics of how it works to the potential benefits and risks of investing in it, we'll cover it all.
|
||||||
|
|
||||||
|
#### How does Bitcoin work?
|
||||||
|
|
||||||
|
Bitcoin is a digital currency that allows for secure, peer-to-peer transactions without the need for a central authority like a bank or government.
|
||||||
|
|
||||||
|
Instead, Bitcoin transactions are recorded on a decentralized public ledger called the blockchain. When someone makes a Bitcoin transaction, it is broadcast to the network of Bitcoin users, who then verify the transaction and add it to the blockchain.
|
||||||
|
|
||||||
|
One of the key features of Bitcoin is its limited supply.
|
||||||
|
|
||||||
|
There will only ever be 21 million Bitcoins in existence, and this limit is built into the code that governs the Bitcoin network. This means that as more people use Bitcoin, the value of each individual Bitcoin may increase, as there will be a finite amount available.
|
||||||
|
|
||||||
|
While Bitcoin transactions are intended to be anonymous, they are not completely anonymous. Each transaction is recorded on the blockchain, which means that it is possible to trace the flow of Bitcoins from one address to another.
|
||||||
|
|
||||||
|
#### The history of Bitcoin
|
||||||
|
|
||||||
|
Bitcoin was created in 2009 by an anonymous person or group of people using the pseudonym Satoshi Nakamoto.
|
||||||
|
|
||||||
|
The exact identity of Satoshi Nakamoto remains a mystery, but the impact of their creation is undeniable. In the years since its creation, Bitcoin has grown from a niche technology used by a small group of enthusiasts to a global phenomenon with millions of users and billions of dollars in market capitalization.
|
||||||
|
|
||||||
|
Bitcoin's early years were marked by volatility and uncertainty. In 2011, the price of Bitcoin briefly reached $1 before crashing back down to just a few cents.
|
||||||
|
|
||||||
|
![](/img/guide/chart.svg)
|
||||||
|
|
||||||
|
In 2013, the price of Bitcoin skyrocketed to over $1,000 before crashing back down to around $200. Since then, the price of Bitcoin has been more stable, but it still experiences significant fluctuations.
|
||||||
|
|
||||||
|
Despite the volatility, Bitcoin has proven to be a durable technology that has attracted a dedicated following.
|
||||||
|
|
||||||
|
Today, there are thousands of businesses that accept Bitcoin as payment, and there are dozens of other cryptocurrencies that have been created in the image of Bitcoin.
|
||||||
|
|
||||||
|
#### Blockchain technology
|
||||||
|
|
||||||
|
The blockchain is the technology that underpins Bitcoin and other cryptocurrencies. It is a decentralized, public ledger that records all Bitcoin transactions in a permanent and tamper-evident way.
|
||||||
|
|
||||||
|
Because the blockchain is decentralized, there is no need for a central authority to verify transactions, which makes it a more secure and efficient system than traditional financial institutions.
|
||||||
|
|
||||||
|
The blockchain is made up of a series of blocks, each of which contains a list of Bitcoin transactions.
|
||||||
|
|
||||||
|
![](/img/guide/blockchain.svg)
|
||||||
|
|
||||||
|
When a block is added to the blockchain, it is verified by a network of Bitcoin users who use complex algorithms to solve mathematical problems. This process is known as mining, and it is what keeps the blockchain secure and decentralized.
|
||||||
|
|
||||||
|
One of the key advantages of the blockchain is that it is transparent and immutable.
|
||||||
|
|
||||||
|
Once a transaction is recorded on the blockchain, it cannot be altered or deleted. This makes it an ideal technology for applications that require a high level of security and transparency, such as voting and supply chain management.
|
||||||
|
|
||||||
|
#### Benefits and drawbacks of using Bitcoin
|
||||||
|
|
||||||
|
There are several potential benefits to using Bitcoin.
|
||||||
|
|
||||||
|
For one, Bitcoin transactions are fast and cheap compared to traditional financial transactions. Because there is no need for a central authority to verify transactions, Bitcoin transactions can be completed in just a few minutes.
|
||||||
|
|
||||||
|
Another advantage of Bitcoin is that it is decentralized and secure.
|
||||||
|
|
||||||
|
Because the blockchain is decentralized, there is no need for a central authority to verify transactions. This makes Bitcoin more resistant to fraud and cyber attacks than traditional financial institutions.
|
||||||
|
|
||||||
|
However, there are also some potential drawbacks to using Bitcoin.
|
||||||
|
|
||||||
|
One of the biggest is that it is still a relatively new technology, and there is a lot of uncertainty around its long-term viability.
|
||||||
|
|
||||||
|
Additionally, because Bitcoin is not backed by any government or central authority, it is subject to market fluctuations and can be volatile.
|
||||||
|
|
||||||
|
#### Bitcoin wallets – types and how to choose one
|
||||||
|
|
||||||
|
Bitcoin wallets are digital wallets that allow you to store, send, and receive Bitcoin.
|
||||||
|
|
||||||
|
There are several types of Bitcoin wallets, including desktop wallets, mobile wallets, and hardware wallets.
|
||||||
|
|
||||||
|
When choosing a Bitcoin wallet, it is important to consider factors such as security, ease of use, and cost.
|
||||||
|
|
||||||
|
Learn more about wallets in our <a href="/guide/hardware-wallets">hardware wallets</a> article which explains the pros and cons to storing your crypto on a hardware wallet and which one to choose.
|
||||||
|
|
||||||
|
#### Buying and selling Bitcoin
|
||||||
|
|
||||||
|
Buying and selling Bitcoin is relatively easy, but it does require some knowledge and preparation.
|
||||||
|
|
||||||
|
You can learn more about <a href="/guide/how-to-get-started">how to get started</a> in this article explaining the essentials of the technologies involved.
|
||||||
|
|
||||||
|
#### Conclusion
|
||||||
|
|
||||||
|
Bitcoin is a fascinating technology that has the potential to revolutionize the world of finance.
|
||||||
|
|
||||||
|
While there are still many questions and uncertainties surrounding Bitcoin, there is no doubt that it has already made a significant impact on the world.
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
Bitcoin was started by ... and rose to prominence in ...
|
||||||
|
|
||||||
|
#### How does it work?
|
||||||
|
|
||||||
|
#### Who is using it?
|
||||||
|
|
||||||
|
#### Other crypto coins?
|
||||||
|
|
||||||
|
#### How can I get Bitcoin?
|
||||||
|
|
||||||
|
-->
|
|
@ -0,0 +1,16 @@
|
||||||
|
---
|
||||||
|
title: Privacy Policy - Capital Region Bitcoin Network
|
||||||
|
slug: privacy
|
||||||
|
---
|
||||||
|
|
||||||
|
### Privacy Policy
|
||||||
|
|
||||||
|
#### What we collect
|
||||||
|
|
||||||
|
We collect standard server logs from our webserver.
|
||||||
|
|
||||||
|
#### How we use the data
|
||||||
|
|
||||||
|
Server log data is used to provide statistics on the website and help us to improve
|
||||||
|
the content and the information flow. This data is also used to analyze errors
|
||||||
|
and diagnose requests to dead links.
|
|
@ -0,0 +1,86 @@
|
||||||
|
---
|
||||||
|
title: Terms of Use - Capital Region Bitcoin Network
|
||||||
|
slug: terms
|
||||||
|
---
|
||||||
|
|
||||||
|
### Terms of Use
|
||||||
|
|
||||||
|
This website is operated by The Capital Region Bitcoin Network. By visiting and using this website you will be accepting these Terms of Use ("TOU"). Please read them carefully and if you disagree with the TOU in any way, then do not use this website. The Capital Region Bitcoin Network reserves the right to post changes to the TOU on this website at any time, and by your continuing to use the website thereafter, you agree to be bound by the new version of the TOU. If any TOU changes are not acceptable, you must stop your use of this website. In these TOU, "The Capital Region Bitcoin Network" and "we" refers to The Capital Region Bitcoin Network, and "User" or "you" refers to each visitor to this website.
|
||||||
|
|
||||||
|
#### Sites and services
|
||||||
|
|
||||||
|
We do not guarantee that access to or use of this website or any services will be uninterrupted or error free, and The Capital Region Bitcoin Network shall not be liable for any feature not being accessible or for any unavailability of its website and services. The website and its features may be expanded, limited or modified at any time by The Capital Region Bitcoin Network to meet the needs of its Users, or for technical or other reasons, without advance notice or reason. We may also in our sole discretion, and at any time, discontinue providing, temporarily or permanently, any or all of the website, without notice. To access some of the content or features of the website or its services, Users may need to enhance or update the hardware or software in their computer systems. The Capital Region Bitcoin Network assumes no responsibility for any failure to access the website or any services, partially or fully, whether due to the User's system, the Internet network or any other cause.
|
||||||
|
|
||||||
|
#### Minors
|
||||||
|
|
||||||
|
We do not provide information or services to minors, and if you are under 18 you may only use this site with the active involvement of a parent, guardian or other supervising adult.
|
||||||
|
|
||||||
|
#### No investment advice
|
||||||
|
|
||||||
|
This website does not provide individual or customized legal, tax, financial, or investment services. Since each individual's situation is unique, a qualified professional should be consulted before making financial decisions. Since Bitcoin is meant to be used as a medium of exchange, nothing on this website constitutes investment advice or a solicitation to purchase, invest in, hold, own, or use Bitcoin.
|
||||||
|
|
||||||
|
#### Content limitations
|
||||||
|
|
||||||
|
We make no guarantees as to the accuracy, thoroughness or quality of the information on this website, which is provided only on an "AS-IS" and "AS AVAILABLE" basis at User's sole risk. This information may be provided by third parties and The Capital Region Bitcoin Network shall not be responsible or liable for any errors, omissions or inaccuracies in the website content. The information provided at this site are neither comprehensive nor appropriate for every individual. Some of the information is relevant only in certain parts of the world, and may not be relevant to or compliant with the laws, regulations or other legal requirements of other countries. It is your responsibility to determine whether, how and to what extent your intended use of the information and services will be technically and legally possible in the areas of the world where you intend to use them. You are advised to verify any information before using it for any personal, financial or business purpose. In addition, the opinions and views expressed in any forum post on this website are solely those of the author(s) of the article and do not reflect the opinions of The Capital Region Bitcoin Network. The website content and services may be modified at any time by us, without advance notice or reason, and The Capital Region Bitcoin Network shall have no obligation to notify you of any corrections or changes to any website content.
|
||||||
|
|
||||||
|
#### Proprietary rights and license
|
||||||
|
|
||||||
|
This website and its content are protected by copyright, trademark and other proprietary laws.
|
||||||
|
|
||||||
|
#### Third party content
|
||||||
|
|
||||||
|
Any testimonials, opinions, advice, product or service offers, or other information or content made available on or through this website by third parties ("Third Party Content") are solely those of their respective providers and not of The Capital Region Bitcoin Network which does not guarantee the accuracy, completeness, reliability or usefulness of Third Party Content. It is the responsibility of the User to evaluate Third Party Content and The Capital Region Bitcoin Network shall not be liable for any damage or loss caused by Users' reliance on or other use of Third Party Content.
|
||||||
|
|
||||||
|
#### Materials posted by users
|
||||||
|
|
||||||
|
By posting or submitting any material to this website, including on event pages, you will be (a) granting The Capital Region Bitcoin Network a world-wide fully paid-up non-exclusive license to allow your materials to be edited and displayed by The Capital Region Bitcoin Network on its website, and accessed by Users, for the purposes and on the terms in these TOU, (b) agreeing to indemnify and hold harmless The Capital Region Bitcoin Network and its Users from any claim or demand made by any third party due to or arising out of your materials, and (c) representing that you own or otherwise have the right to post the materials, that the materials are accurate, that use of the materials on the The Capital Region Bitcoin Network website does not violate any laws, and that the materials will not cause injury to any person. The Capital Region Bitcoin Network shall have the right to use your name in connection with your posted materials.
|
||||||
|
|
||||||
|
#### Sponsors and advertisers are not endorsed
|
||||||
|
|
||||||
|
Though we seek to partner with quality companies, we are not responsible for the claims or representations made by sponsors and advertisers. The Capital Region Bitcoin Network does not review, endorse or recommend the products or services of any company mentioned on our site. We will not be liable in any way for damages of any kind resulting out of the misuse of any personal information or data submitted by you to a sponsor or advertiser.
|
||||||
|
|
||||||
|
#### Offsite links
|
||||||
|
|
||||||
|
As a convenience to Users, the The Capital Region Bitcoin Network website and services may provide links to other sites or resources. Because we do not review or have no control over such sites and resources, The Capital Region Bitcoin Network shall not be responsible or liable for use of or reliance on any content, products, services or information at such sites or resources. Inclusion of any links does not imply any endorsement, affiliation, approval, association or sponsorship by The Capital Region Bitcoin Network of the linked websites, resources, their operators or owners. When you select a link, you may be leaving our website. The information available on Third Parties' websites may have certain restrictions on its use or distribution which differ from these TOU.
|
||||||
|
|
||||||
|
#### Password protected areas
|
||||||
|
|
||||||
|
Some areas of the The Capital Region Bitcoin Network site ("Password Protected Areas"), are password protected and available only to Users who are registered. Registration requires Users to fully complete the account registration process. The Capital Region Bitcoin Network reserves the right to deny or revoke registration or access to Password Protected Areas for any User. The Capital Region Bitcoin Network takes reasonable measures to ensure the security of the Password Protected Areas but cannot guarantee the absolute security of information or communications in such Password Protected Areas. Users are responsible for maintaining the security of the password they set and must notify us if they believe that the security of their password or account has been breached or subject to unauthorized use.
|
||||||
|
|
||||||
|
#### Prohibited conduct
|
||||||
|
|
||||||
|
The following activities are strictly prohibited:
|
||||||
|
|
||||||
|
- Spamming, advertising, soliciting or political campaigning
|
||||||
|
- Personal attacks on or abuse of any members, moderators, or administrators of the forum
|
||||||
|
- Postings for any unlawful or fraudulent purpose (including links)
|
||||||
|
- Posting of personal information (for yourself or anyone else)
|
||||||
|
- Phishing
|
||||||
|
- Posting materials containing viruses or other malicious or destructive code
|
||||||
|
- Posting of offensive content including profanity, obscenity, racist or pornographic material
|
||||||
|
- Posting of any materials that are defamatory or infringe any person's rights
|
||||||
|
|
||||||
|
#### Privacy
|
||||||
|
|
||||||
|
This website may collect personal information from some Users. Because The Capital Region Bitcoin Network respects the privacy of its Users and their personal information, it has established the Privacy Policy to protect your personal information.
|
||||||
|
|
||||||
|
#### Communications
|
||||||
|
|
||||||
|
When you visit our website or send us email, our responses to your communications will be by e-mail. All agreements, notices and communications that we provide to you by email will satisfy all legal requirements that they be in writing and delivered to you. The Capital Region Bitcoin Network will have the right to disclose any email sent by a User, or any objectionable material, to comply with legal process or to protect the rights or property of The Capital Region Bitcoin Network, its customers, suppliers and Users.
|
||||||
|
|
||||||
|
#### DISCLAIMER OF WARRANTIES
|
||||||
|
|
||||||
|
THE CAPITAL REGION BITCOIN NETWORK DISCLAIMS ALL WARRANTIES, REPRESENTATIONS AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT, WITH RESPECT TO THE USE OF THIS WEBSITE AND ITS SERVICES, OR THE ACCURACY, COMPLETENESS, TIMELINESS OR CURRENTNESS OF ITS CONTENT, IN ANY WAY AND FOR ANY PURPOSE.
|
||||||
|
|
||||||
|
#### EXCLUSION OF CONSEQUENTIAL DAMAGES
|
||||||
|
|
||||||
|
IN NO EVENT WILL THE CAPITAL REGION BITCOIN NETWORK BE LIABLE FOR ANY INCIDENTAL, INCIDENTAL, SPECIAL, CONSEQUENTIAL, EXEMPLARY OR INDIRECT DAMAGES ARISING OUT OF THE USE OF OR INABILITY TO USE THIS WEBSITE OR ANY OF ITS SERVICES OR CONTENT, OR LOSS OF DATA, EVEN IF THE CAPITAL REGION BITCOIN NETWORK HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, AND WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, PRODUCT LIABILITY, STRICT LIABILITY OR OTHERWISE.
|
||||||
|
|
||||||
|
#### EXCLUSION OF LIMITATIONS AND DISCLAIMERS
|
||||||
|
|
||||||
|
BECAUSE SOME JURISDICTIONS DO NOT ALLOW THE DISCLAIMER OF WARRANTIES, OR THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, IN SUCH JURISDICTIONS THE CAPITAL REGION BITCOIN NETWORK'S LIABILITY IS LIMITED TO THE GREATEST EXTENT PERMITTED BY LAW.
|
||||||
|
|
||||||
|
#### General
|
||||||
|
|
||||||
|
These TOU, and any applicable TOS, constitute the entire agreement between each User and The Capital Region Bitcoin Network governing the User's access to and use of the website and its services, and supersede all prior agreements regarding its subject matter. The failure by a User or The Capital Region Bitcoin Network to exercise any right or to enforce any provision of the TOU shall not constitute a waiver of such right or provision. If any provision of the TOU is found by a court of competent jurisdiction to be invalid or unenforceable, the court shall give effect to the intentions reflected in the provision to the degree possible, and the other provisions of the TOU will remain in full force and effect. It is the express will of The Capital Region Bitcoin Network and each User that the TOU and any applicable TOS have been prepared in English.
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
<script setup>
|
||||||
|
useHead({
|
||||||
|
title: '404 - Page not found',
|
||||||
|
meta: [
|
||||||
|
{
|
||||||
|
name: 'description',
|
||||||
|
content: `This page does not exist or has been moved.`
|
||||||
|
},
|
||||||
|
],
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<Header></Header>
|
||||||
|
<main>
|
||||||
|
<div class="lost">
|
||||||
|
<h3>404</h3>
|
||||||
|
<h4>Page not found</h4>
|
||||||
|
<NuxtLink to="/">Go back</NuxtLink>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
<Footer></Footer>
|
||||||
|
</template>
|
|
@ -0,0 +1,14 @@
|
||||||
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
||||||
|
export default defineNuxtConfig({
|
||||||
|
devtools: { enabled: false },
|
||||||
|
|
||||||
|
modules: [
|
||||||
|
'@nuxt/content',
|
||||||
|
'@nuxtjs/device',
|
||||||
|
'nuxt-time',
|
||||||
|
],
|
||||||
|
|
||||||
|
css: [
|
||||||
|
"~/assets/style/main.scss",
|
||||||
|
],
|
||||||
|
})
|
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"name": "nuxt-app",
|
||||||
|
"private": true,
|
||||||
|
"scripts": {
|
||||||
|
"build": "nuxt build",
|
||||||
|
"dev": "nuxt dev",
|
||||||
|
"generate": "nuxt generate",
|
||||||
|
"preview": "nuxt preview",
|
||||||
|
"postinstall": "nuxt prepare"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@nuxt/content": "^2.7.0",
|
||||||
|
"@nuxt/devtools": "latest",
|
||||||
|
"@nuxtjs/device": "^3.1.0",
|
||||||
|
"@types/node": "^18.16.19",
|
||||||
|
"nuxt": "^3.6.2",
|
||||||
|
"nuxt-time": "^0.1.0"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"date-fns": "^2.30.0",
|
||||||
|
"sass": "^1.63.6"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
<template>
|
||||||
|
<ContentDoc class="about" />
|
||||||
|
</template>
|
|
@ -0,0 +1,45 @@
|
||||||
|
<script setup>
|
||||||
|
const { path } = useRoute()
|
||||||
|
|
||||||
|
const { data, error } = await useAsyncData(`content-${path}`, () => {
|
||||||
|
return queryContent().where({ _path: path }).findOne()
|
||||||
|
})
|
||||||
|
|
||||||
|
if (error.value) {
|
||||||
|
showError(
|
||||||
|
createError({
|
||||||
|
statusCode: 404,
|
||||||
|
statusMessage: 'Not Found',
|
||||||
|
})
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
import { format, getDay, parseISO } from "date-fns";
|
||||||
|
|
||||||
|
const nth = function(d) {
|
||||||
|
if (d > 3 && d < 21) return 'th';
|
||||||
|
switch (d % 10) {
|
||||||
|
case 1: return "st";
|
||||||
|
case 2: return "nd";
|
||||||
|
case 3: return "rd";
|
||||||
|
default: return "th";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let date = parseISO(data.value.date)
|
||||||
|
data.value.date = format(date, 'EEE, MMMM d')
|
||||||
|
data.value.ordinal = nth(getDay(date) - 1)
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="event" :id="data.slug">
|
||||||
|
<div class="hero">
|
||||||
|
<h3>{{ data.title }}</h3>
|
||||||
|
<h4>Location: {{ data.location}}</h4>
|
||||||
|
<h4>Address: {{ data.address }}</h4>
|
||||||
|
<h4>Date: {{ data.date }}{{ data.ordinal }} at {{ data.time }}</h4>
|
||||||
|
<!-- <EventDate :date="data.date" :time="data.time" /> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,28 @@
|
||||||
|
<script setup>
|
||||||
|
const { path } = useRoute()
|
||||||
|
|
||||||
|
const { data, error } = await useAsyncData(`content-${path}`, () => {
|
||||||
|
return queryContent().where({ _path: path }).findOne()
|
||||||
|
})
|
||||||
|
|
||||||
|
if (error.value) {
|
||||||
|
showError(
|
||||||
|
createError({
|
||||||
|
statusCode: 404,
|
||||||
|
statusMessage: 'Not Found',
|
||||||
|
})
|
||||||
|
)
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="guide" :id="data.slug">
|
||||||
|
<div class="hero">
|
||||||
|
<h3>{{ data.title }}</h3>
|
||||||
|
<h4>Written by: {{ data.author }}</h4>
|
||||||
|
<h4>Published: {{ data.published }}</h4>
|
||||||
|
<img :src="'/img/guide/' + data.thumbnail" :alt="data.title + ' Thumbnail'" />
|
||||||
|
</div>
|
||||||
|
<ContentDoc class="content" />
|
||||||
|
</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,29 @@
|
||||||
|
<script setup>
|
||||||
|
useHead({
|
||||||
|
title: 'Capital Region Bitcoin Network',
|
||||||
|
meta: [
|
||||||
|
{
|
||||||
|
name: 'description',
|
||||||
|
content: `Welcome to the Capital Region Bitcoin Network. Come learn and talk about
|
||||||
|
Bitcoin. Meet new people, ask questions, suggest topics, or just come and hang out.`
|
||||||
|
},
|
||||||
|
],
|
||||||
|
})
|
||||||
|
|
||||||
|
const { isDesktopOrTablet } = useDevice();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="index">
|
||||||
|
|
||||||
|
<div class="hero">
|
||||||
|
<h3>Welcome to our <br v-if="isDesktopOrTablet" /><span>Bitcoin</span> community.</h3>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<IndexSponsors />
|
||||||
|
<IndexGuides />
|
||||||
|
<IndexEvents />
|
||||||
|
<IndexBanner />
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,5 @@
|
||||||
|
<template>
|
||||||
|
<div class="login">
|
||||||
|
<h4>This has not been developed yet...</h4>
|
||||||
|
</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,3 @@
|
||||||
|
<template>
|
||||||
|
<ContentDoc class="privacy" />
|
||||||
|
</template>
|
|
@ -0,0 +1,5 @@
|
||||||
|
<template>
|
||||||
|
<div class="login">
|
||||||
|
<h4>This has not been developed yet either...</h4>
|
||||||
|
</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,3 @@
|
||||||
|
<template>
|
||||||
|
<ContentDoc class="terms" />
|
||||||
|
</template>
|
After Width: | Height: | Size: 8.5 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 6.4 KiB |
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<browserconfig>
|
||||||
|
<msapplication>
|
||||||
|
<tile>
|
||||||
|
<square150x150logo src="/mstile-150x150.png"/>
|
||||||
|
<TileColor>#f59428</TileColor>
|
||||||
|
</tile>
|
||||||
|
</msapplication>
|
||||||
|
</browserconfig>
|
After Width: | Height: | Size: 890 B |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 133 KiB |
|
@ -0,0 +1,764 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 27.7.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
version="1.1"
|
||||||
|
id="Layer_1"
|
||||||
|
x="0px"
|
||||||
|
y="0px"
|
||||||
|
viewBox="0 0 3000 1500"
|
||||||
|
style="enable-background:new 0 0 3000 1500;"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:docname="chart.svg"
|
||||||
|
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||||
|
id="defs4350" /><sodipodi:namedview
|
||||||
|
id="namedview4348"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#eeeeee"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="0.31466667"
|
||||||
|
inkscape:cx="1757.4153"
|
||||||
|
inkscape:cy="970.86864"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1122"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="Layer_1" />
|
||||||
|
<style
|
||||||
|
type="text/css"
|
||||||
|
id="style3983">
|
||||||
|
.st0{fill:#FFFFFF;}
|
||||||
|
.st1{fill:#D3D3D3;}
|
||||||
|
.st2{fill:#E5E5E5;}
|
||||||
|
.st3{fill:#E21B1B;}
|
||||||
|
.st4{fill:#00A026;}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<g
|
||||||
|
id="g4105">
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="2711.74,1411.86 2706.48,1411.86 2706.48,1386.74 2706.48,1361.61 2698.6,1361.61 2690.71,1361.61 2690.71,1225.24 2690.71,1088.87 2698.6,1088.87 2706.48,1088.87 2706.48,1079.9 2706.48,1070.93 2711.74,1070.93 2717,1070.93 2717,1079.9 2717,1088.87 2724.88,1088.87 2732.77,1088.87 2732.77,1225.24 2732.77,1361.61 2724.88,1361.61 2717,1361.61 2717,1386.74 2717,1411.86 "
|
||||||
|
id="polygon3987" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="2643.9,862.79 2664.68,862.79 2685.46,862.79 2685.46,918.41 2685.46,1009.92 2685.46,1038.63 2677.57,1038.63 2669.68,1038.63 2669.68,1065.55 2669.68,1092.46 2664.43,1092.46 2659.17,1092.46 2659.17,1065.55 2659.17,1038.63 2651.67,1038.63 2644.17,1038.63 "
|
||||||
|
id="polygon3989" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="256.72,981.21 240.95,981.21 240.95,997.36 240.95,1013.51 235.69,1013.51 230.43,1013.51 230.43,995.66 230.43,981.21 214.66,981.21 214.66,848.43 214.66,722.83 235.69,722.83 256.72,722.83 256.72,846.34 256.72,969.86 "
|
||||||
|
id="polygon3991" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="30.67,959.68 25.41,959.68 25.41,911.23 25.41,862.79 17.52,862.79 9.64,862.79 9.64,846.64 9.64,830.49 17.52,830.49 25.41,830.49 25.41,814.34 25.41,798.19 30.67,798.19 35.92,798.19 35.92,814.34 35.92,830.49 43.81,830.49 51.69,830.49 51.69,846.64 51.69,862.79 43.81,862.79 35.92,862.79 35.92,911.23 35.92,959.68 "
|
||||||
|
id="polygon3993" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="83.24,948.92 77.98,948.92 77.98,929.18 77.98,909.44 70.09,909.44 62.21,909.44 62.21,886.11 62.21,862.79 70.09,862.79 77.98,862.79 77.98,846.64 77.98,830.49 83.24,830.49 88.49,830.49 88.49,846.64 88.49,862.79 96.38,862.79 104.26,862.79 104.26,886.11 104.26,909.44 96.38,909.44 88.49,909.44 88.49,929.18 88.49,948.92 "
|
||||||
|
id="polygon3995" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="740.36,930.97 735.11,930.97 735.11,911.23 735.11,891.5 727.22,891.5 719.33,891.5 719.33,886.11 719.33,880.73 727.22,880.73 735.11,880.73 735.11,864.58 735.11,848.43 740.36,848.43 745.62,848.43 745.62,864.58 745.62,880.73 753.51,880.73 761.39,880.73 761.39,886.11 761.39,891.5 753.51,891.5 745.62,891.5 745.62,911.23 745.62,930.97 "
|
||||||
|
id="polygon3997" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="587.91,909.44 582.65,909.44 582.65,900.47 582.65,891.5 574.77,891.5 566.88,891.5 566.88,882.52 566.88,873.55 574.77,873.55 582.65,873.55 582.65,852.02 582.65,830.49 587.91,830.49 593.17,830.49 593.17,852.02 593.17,873.55 601.05,873.55 608.94,873.55 608.94,882.52 608.94,891.5 601.05,891.5 593.17,891.5 593.17,900.47 593.17,909.44 "
|
||||||
|
id="polygon3999" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="2564.54,909.44 2559.29,909.44 2559.29,830.49 2559.29,751.54 2551.4,751.54 2543.52,751.54 2543.52,600.81 2543.52,450.09 2551.4,450.09 2559.29,450.09 2559.29,441.11 2559.29,432.14 2564.54,432.14 2569.8,432.14 2569.8,441.11 2569.8,450.09 2577.69,450.09 2585.57,450.09 2585.57,600.81 2585.57,751.54 2577.69,751.54 2569.8,751.54 2569.8,830.49 2569.8,909.44 "
|
||||||
|
id="polygon4001" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="535.34,895.09 530.08,895.09 530.08,886.11 530.08,877.14 522.2,877.14 514.31,877.14 514.31,832.28 514.31,787.42 522.2,787.42 530.08,787.42 530.08,765.89 530.08,744.36 535.34,744.36 540.6,744.36 540.6,765.89 540.6,787.42 548.48,787.42 556.37,787.42 556.37,832.28 556.37,877.14 548.48,877.14 540.6,877.14 540.6,886.11 540.6,895.09 "
|
||||||
|
id="polygon4003" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="940.13,869.96 934.87,869.96 934.87,859.2 934.87,848.43 926.99,848.43 919.1,848.43 919.1,828.69 919.1,808.96 940.13,808.96 961.16,808.96 961.16,828.69 961.16,848.43 953.27,848.43 945.39,848.43 945.39,859.2 945.39,869.96 "
|
||||||
|
id="polygon4005" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="992.7,869.96 971.67,869.96 971.67,855.61 971.67,841.25 992.7,841.25 1013.73,841.25 1013.73,855.61 1013.73,869.96 "
|
||||||
|
id="polygon4007" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="1854.85,758.71 1849.59,758.71 1849.59,717.44 1849.59,676.17 1841.71,676.17 1833.82,676.17 1833.82,618.76 1833.82,561.34 1841.71,561.34 1849.59,561.34 1849.59,543.39 1849.59,525.45 1854.85,525.45 1860.11,525.45 1860.11,543.39 1860.11,561.34 1867.99,561.34 1875.88,561.34 1875.88,618.76 1875.88,676.17 1867.99,676.17 1860.11,676.17 1860.11,717.44 1860.11,758.71 "
|
||||||
|
id="polygon4009" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="1954.73,719.24 1949.47,719.24 1949.47,701.3 1949.47,683.35 1941.59,683.35 1933.7,683.35 1933.7,674.38 1933.7,665.41 1941.59,665.41 1949.47,665.41 1949.47,652.85 1949.47,640.29 1954.73,640.29 1959.99,640.29 1959.99,652.85 1959.99,665.41 1967.87,665.41 1975.76,665.41 1975.76,674.38 1975.76,683.35 1967.87,683.35 1959.99,683.35 1959.99,701.3 1959.99,719.24 "
|
||||||
|
id="polygon4011" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="1197.72,676.17 1192.47,676.17 1192.47,665.41 1192.47,654.64 1184.58,654.64 1176.69,654.64 1176.69,647.47 1176.69,640.29 1184.58,640.29 1192.47,640.29 1192.47,622.34 1192.47,604.4 1197.72,604.4 1202.98,604.4 1202.98,622.34 1202.98,640.29 1210.86,640.29 1218.75,640.29 1218.75,647.47 1218.75,654.64 1210.86,654.64 1202.98,654.64 1202.98,665.41 1202.98,676.17 "
|
||||||
|
id="polygon4013" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="1397.49,658.23 1376.46,658.23 1376.46,645.67 1376.46,633.11 1384.35,633.11 1392.23,633.11 1392.23,625.93 1392.23,618.76 1397.49,618.76 1402.75,618.76 1402.75,625.93 1402.75,633.11 1410.63,633.11 1418.52,633.11 1418.52,645.67 1418.52,658.23 "
|
||||||
|
id="polygon4015" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="2054.61,654.64 2033.59,654.64 2033.59,645.67 2033.59,636.7 2041.47,636.7 2049.36,636.7 2049.36,618.76 2049.36,600.81 2054.61,600.81 2059.87,600.81 2059.87,618.76 2059.87,636.7 2067.76,636.7 2075.64,636.7 2075.64,645.67 2075.64,654.64 "
|
||||||
|
id="polygon4017" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="1297.61,651.05 1292.35,651.05 1292.35,643.88 1292.35,636.7 1284.46,636.7 1276.58,636.7 1276.58,622.34 1276.58,607.99 1284.46,607.99 1292.35,607.99 1292.35,600.81 1292.35,593.63 1297.61,593.63 1302.86,593.63 1302.86,600.81 1302.86,607.99 1310.75,607.99 1318.63,607.99 1318.63,622.34 1318.63,636.7 1310.75,636.7 1302.86,636.7 1302.86,643.88 1302.86,651.05 "
|
||||||
|
id="polygon4019" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="1549.94,622.34 1544.69,622.34 1544.69,582.87 1544.69,543.39 1536.8,543.39 1528.91,543.39 1528.91,523.65 1528.91,503.92 1536.8,503.92 1544.69,503.92 1544.69,480.59 1544.69,457.26 1549.94,457.26 1555.2,457.26 1555.2,480.59 1555.2,503.92 1563.08,503.92 1570.97,503.92 1570.97,523.65 1570.97,543.39 1563.08,543.39 1555.2,543.39 1555.2,582.87 1555.2,622.34 "
|
||||||
|
id="polygon4021" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="2259.64,622.34 2254.38,622.34 2254.38,584.66 2254.38,546.98 2246.5,546.98 2238.61,546.98 2238.61,529.04 2238.61,511.09 2259.64,511.09 2280.67,511.09 2280.67,529.04 2280.67,546.98 2272.78,546.98 2264.9,546.98 2264.9,584.66 2264.9,622.34 "
|
||||||
|
id="polygon4023" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="1602.51,572.1 1597.26,572.1 1597.26,554.16 1597.26,536.22 1589.37,536.22 1581.48,536.22 1581.48,529.04 1581.48,521.86 1589.37,521.86 1597.26,521.86 1597.26,514.68 1597.26,507.51 1602.51,507.51 1607.77,507.51 1607.77,514.68 1607.77,521.86 1615.65,521.86 1623.54,521.86 1623.54,529.04 1623.54,536.22 1615.65,536.22 1607.77,536.22 1607.77,554.16 1607.77,572.1 "
|
||||||
|
id="polygon4025" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="2412.09,503.92 2406.83,503.92 2406.83,500.33 2406.83,496.74 2398.95,496.74 2391.06,496.74 2391.06,491.36 2391.06,485.97 2398.95,485.97 2406.83,485.97 2406.83,477 2406.83,468.03 2412.09,468.03 2417.35,468.03 2417.35,477 2417.35,485.97 2425.23,485.97 2433.12,485.97 2433.12,491.36 2433.12,496.74 2425.23,496.74 2417.35,496.74 2417.35,500.33 2417.35,503.92 "
|
||||||
|
id="polygon4027" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="2459.4,503.92 2454.15,503.92 2454.15,496.74 2454.15,489.56 2446.26,489.56 2438.38,489.56 2438.38,484.18 2438.38,478.8 2446.26,478.8 2454.15,478.8 2454.15,471.62 2454.15,464.44 2459.4,464.44 2464.66,464.44 2464.66,471.62 2464.66,478.8 2472.55,478.8 2480.43,478.8 2480.43,484.18 2480.43,489.56 2472.55,489.56 2464.66,489.56 2464.66,496.74 2464.66,503.92 "
|
||||||
|
id="polygon4029" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="2816.88,1196.54 2811.62,1196.54 2811.62,1167.83 2811.62,1139.12 2803.74,1139.12 2795.85,1139.12 2795.85,1094.26 2795.85,1049.4 2803.74,1049.4 2811.62,1049.4 2811.62,1038.63 2811.62,1027.87 2816.88,1027.87 2822.14,1027.87 2822.14,1038.63 2822.14,1049.4 2830.02,1049.4 2837.91,1049.4 2837.91,1094.26 2837.91,1139.12 2830.02,1139.12 2822.14,1139.12 2822.14,1167.83 2822.14,1196.54 "
|
||||||
|
id="polygon4031" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="2611.86,1171.41 2606.6,1171.41 2606.6,1110.41 2606.6,1049.4 2598.72,1049.4 2590.83,1049.4 2590.83,972.24 2590.83,895.08 2598.72,895.08 2606.6,895.08 2606.6,843.05 2606.6,791.01 2611.86,791.01 2617.11,791.01 2617.11,843.05 2617.11,895.08 2625,895.08 2632.89,895.08 2632.89,972.24 2632.89,1049.4 2625,1049.4 2617.11,1049.4 2617.11,1110.41 2617.11,1171.41 "
|
||||||
|
id="polygon4033" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="2864.19,1085.29 2858.94,1085.29 2858.94,1054.78 2858.94,1024.28 2851.05,1024.28 2843.17,1024.28 2843.17,997.36 2843.17,970.45 2851.05,970.45 2858.94,970.45 2858.94,945.33 2858.94,920.21 2864.19,920.21 2869.45,920.21 2869.45,945.33 2869.45,970.45 2877.34,970.45 2885.22,970.45 2885.22,997.36 2885.22,1024.28 2877.34,1024.28 2869.45,1024.28 2869.45,1054.78 2869.45,1085.29 "
|
||||||
|
id="polygon4035" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="2916.76,1024.28 2911.51,1024.28 2911.51,999.16 2911.51,974.04 2903.62,974.04 2895.74,974.04 2895.74,948.91 2895.74,923.79 2903.62,923.79 2911.51,923.79 2911.51,882.52 2911.51,841.25 2916.76,841.25 2922.02,841.25 2922.02,882.52 2922.02,923.79 2929.91,923.79 2937.79,923.79 2937.79,948.91 2937.79,974.04 2929.91,974.04 2922.02,974.04 2922.02,999.16 2922.02,1024.28 "
|
||||||
|
id="polygon4037" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="283.36,988.39 277.75,988.39 277.75,979.42 277.75,970.45 269.86,970.45 261.97,970.45 261.97,965.06 261.97,959.68 269.86,959.68 277.75,959.68 277.75,904.06 277.75,848.43 283,848.43 288.26,848.43 288.26,904.06 288.26,959.68 296.15,959.68 304.03,959.68 304.03,964.65 304.03,970.45 288.26,970.45 288.26,988.39 "
|
||||||
|
id="polygon4039" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="335.57,974.04 314.54,974.04 314.54,963.27 314.54,952.5 335.57,952.5 356.6,952.5 356.6,963.27 356.6,974.04 "
|
||||||
|
id="polygon4041" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="2969.33,938.15 2964.08,938.15 2964.08,930.97 2964.08,923.79 2956.19,923.79 2948.31,923.79 2948.31,869.96 2948.31,816.13 2969.33,816.13 2990.36,816.13 2990.36,869.96 2990.36,923.79 2982.48,923.79 2974.59,923.79 2974.59,930.97 2974.59,938.15 "
|
||||||
|
id="polygon4043" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="640.48,898.67 635.22,898.67 635.22,893.29 635.22,887.91 627.34,887.91 619.45,887.91 619.45,884.32 619.45,880.73 627.34,880.73 635.22,880.73 635.22,864.58 635.22,848.43 640.48,848.43 645.74,848.43 645.74,864.58 645.74,880.73 653.62,880.73 661.51,880.73 661.51,884.32 661.51,887.91 653.62,887.91 645.74,887.91 645.74,893.29 645.74,898.67 "
|
||||||
|
id="polygon4045" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="687.79,895.09 682.54,895.09 682.54,889.7 682.54,884.32 674.65,884.32 666.76,884.32 666.76,880.73 666.76,877.14 674.65,877.14 682.54,877.14 682.54,868.17 682.54,859.2 687.79,859.2 693.05,859.2 693.05,868.17 693.05,877.14 700.93,877.14 708.82,877.14 708.82,880.73 708.82,884.32 700.93,884.32 693.05,884.32 693.05,889.7 693.05,895.09 "
|
||||||
|
id="polygon4047" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="1045.27,869.96 1024.24,869.96 1024.24,855.61 1024.24,841.25 1032.13,841.25 1040.01,841.25 1040.01,835.87 1040.01,830.49 1045.27,830.49 1050.53,830.49 1050.53,835.87 1050.53,841.25 1058.41,841.25 1066.3,841.25 1066.3,855.61 1066.3,869.96 "
|
||||||
|
id="polygon4049" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="1092.58,869.96 1087.33,869.96 1087.33,859.2 1087.33,848.43 1079.44,848.43 1071.55,848.43 1071.55,801.78 1071.55,755.13 1079.44,755.13 1087.33,755.13 1087.33,744.36 1087.33,733.59 1092.58,733.59 1097.84,733.59 1097.84,744.36 1097.84,755.13 1105.72,755.13 1113.61,755.13 1113.61,801.78 1113.61,848.43 1105.72,848.43 1097.84,848.43 1097.84,859.2 1097.84,869.96 "
|
||||||
|
id="polygon4051" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="488.03,855.61 482.77,855.61 482.77,846.64 482.77,837.67 474.88,837.67 467,837.67 467,817.93 467,798.19 474.88,798.19 482.77,798.19 482.77,787.42 482.77,776.66 488.03,776.66 493.28,776.66 493.28,787.42 493.28,798.19 501.17,798.19 509.05,798.19 509.05,817.93 509.05,837.67 501.17,837.67 493.28,837.67 493.28,846.64 493.28,855.61 "
|
||||||
|
id="polygon4053" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="840.25,855.61 834.99,855.61 834.99,850.23 834.99,844.84 827.1,844.84 819.22,844.84 819.22,830.49 819.22,816.13 827.1,816.13 834.99,816.13 834.99,803.57 834.99,791.01 840.25,791.01 845.5,791.01 845.5,803.57 845.5,816.13 853.39,816.13 861.27,816.13 861.27,830.49 861.27,844.84 853.39,844.84 845.5,844.84 845.5,850.23 845.5,855.61 "
|
||||||
|
id="polygon4055" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="892.82,841.25 887.56,841.25 887.56,830.49 887.56,819.72 879.67,819.72 871.79,819.72 871.79,812.55 871.79,805.37 879.67,805.37 887.56,805.37 887.56,799.98 887.56,794.6 892.82,794.6 898.07,794.6 898.07,799.98 898.07,805.37 905.96,805.37 913.84,805.37 913.84,812.55 913.84,819.72 905.96,819.72 898.07,819.72 898.07,830.49 898.07,841.25 "
|
||||||
|
id="polygon4057" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="183.12,798.19 177.86,798.19 177.86,792.81 177.86,787.42 169.98,787.42 162.09,787.42 162.09,774.86 162.09,762.3 169.98,762.3 177.86,762.3 177.86,742.57 177.86,722.83 183.12,722.83 188.38,722.83 188.38,742.57 188.38,762.3 196.26,762.3 204.15,762.3 204.15,774.86 204.15,787.42 196.26,787.42 188.38,787.42 188.38,792.81 188.38,798.19 "
|
||||||
|
id="polygon4059" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="1902.16,722.83 1896.9,722.83 1896.9,697.71 1896.9,672.59 1889.02,672.59 1881.13,672.59 1881.13,669 1881.13,665.41 1889.02,665.41 1896.9,665.41 1896.9,645.67 1896.9,625.93 1902.16,625.93 1907.42,625.93 1907.42,645.67 1907.42,665.41 1915.3,665.41 1923.19,665.41 1923.19,669 1923.19,672.59 1915.3,672.59 1907.42,672.59 1907.42,697.71 1907.42,722.83 "
|
||||||
|
id="polygon4061" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="2007.3,712.06 2002.04,712.06 2002.04,692.32 2002.04,672.59 1994.16,672.59 1986.27,672.59 1986.27,656.44 1986.27,640.29 2007.3,640.29 2028.33,640.29 2028.33,656.44 2028.33,672.59 2020.44,672.59 2012.56,672.59 2012.56,692.32 2012.56,712.06 "
|
||||||
|
id="polygon4063" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="2154.5,665.41 2149.24,665.41 2149.24,658.23 2149.24,651.05 2141.36,651.05 2133.47,651.05 2133.47,609.78 2133.47,568.51 2141.36,568.51 2149.24,568.51 2149.24,546.98 2149.24,525.45 2154.5,525.45 2159.76,525.45 2159.76,546.98 2159.76,568.51 2167.64,568.51 2175.53,568.51 2175.53,609.78 2175.53,651.05 2167.64,651.05 2159.76,651.05 2159.76,658.23 2159.76,665.41 "
|
||||||
|
id="polygon4065" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="1450.06,658.23 1444.8,658.23 1444.8,647.47 1444.8,636.7 1436.92,636.7 1429.03,636.7 1429.03,631.32 1429.03,625.93 1436.92,625.93 1444.8,625.93 1444.8,620.55 1444.8,615.17 1450.06,615.17 1455.32,615.17 1455.32,620.55 1455.32,625.93 1463.2,625.93 1471.09,625.93 1471.09,631.32 1471.09,636.7 1463.2,636.7 1455.32,636.7 1455.32,647.47 1455.32,658.23 "
|
||||||
|
id="polygon4067" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="1245.04,654.64 1224.01,654.64 1224.01,631.32 1224.01,607.99 1245.04,607.99 1266.06,607.99 1266.06,631.32 1266.06,654.64 "
|
||||||
|
id="polygon4069" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="1497.37,640.29 1492.12,640.29 1492.12,633.11 1492.12,625.93 1484.23,625.93 1476.34,625.93 1476.34,570.31 1476.34,514.68 1484.23,514.68 1492.11,514.68 1492.11,505.71 1492.11,496.74 1497.37,496.74 1502.63,496.74 1502.63,505.71 1502.63,514.68 1510.51,514.68 1518.4,514.68 1518.4,570.31 1518.4,625.93 1510.51,625.93 1502.63,625.93 1502.63,633.11 1502.63,640.29 "
|
||||||
|
id="polygon4071" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="1702.4,582.87 1697.14,582.87 1697.14,579.28 1697.14,575.69 1689.25,575.69 1681.37,575.69 1681.37,568.51 1681.37,561.34 1689.25,561.34 1697.14,561.34 1697.14,554.16 1697.14,546.98 1702.4,546.98 1707.65,546.98 1707.65,554.16 1707.65,561.34 1715.54,561.34 1723.42,561.34 1723.42,568.51 1723.42,575.69 1715.54,575.69 1707.65,575.69 1707.65,579.28 1707.65,582.87 "
|
||||||
|
id="polygon4073" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="2207.07,579.28 2201.81,579.28 2201.81,568.51 2201.81,557.75 2193.93,557.75 2186.04,557.75 2186.04,536.22 2186.04,514.68 2193.93,514.68 2201.81,514.68 2201.81,503.92 2201.81,493.15 2207.07,493.15 2212.33,493.15 2212.33,503.92 2212.33,514.68 2220.21,514.68 2228.1,514.68 2228.1,536.22 2228.1,557.75 2220.21,557.75 2212.33,557.75 2212.33,568.51 2212.33,579.28 "
|
||||||
|
id="polygon4075" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="2306.95,568.51 2301.69,568.51 2301.69,559.54 2301.69,550.57 2293.81,550.57 2285.92,550.57 2285.92,541.6 2285.92,532.63 2293.81,532.63 2301.69,532.63 2301.69,520.07 2301.69,507.51 2306.95,507.51 2312.21,507.51 2312.21,520.07 2312.21,532.63 2320.09,532.63 2327.98,532.63 2327.98,541.6 2327.98,550.57 2320.09,550.57 2312.21,550.57 2312.21,559.54 2312.21,568.51 "
|
||||||
|
id="polygon4077" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="2359.52,539.8 2354.26,539.8 2354.26,532.63 2354.26,525.45 2346.38,525.45 2338.49,525.45 2338.49,509.3 2338.49,493.15 2346.38,493.15 2354.26,493.15 2354.26,473.41 2354.26,453.68 2359.52,453.68 2364.78,453.68 2364.78,473.41 2364.78,493.15 2372.66,493.15 2380.55,493.15 2380.55,509.3 2380.55,525.45 2372.66,525.45 2364.78,525.45 2364.78,532.63 2364.78,539.8 "
|
||||||
|
id="polygon4079" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="2511.97,507.51 2506.72,507.51 2506.72,502.12 2506.72,496.74 2498.83,496.74 2490.95,496.74 2490.95,480.59 2490.95,464.44 2498.83,464.44 2506.72,464.44 2506.72,450.09 2506.72,435.73 2511.97,435.73 2517.23,435.73 2517.23,450.09 2517.23,464.44 2525.12,464.44 2533,464.44 2533,480.59 2533,496.74 2525.12,496.74 2517.23,496.74 2517.23,502.12 2517.23,507.51 "
|
||||||
|
id="polygon4081" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="151.58,859.2 151.58,819.72 143.69,819.72 135.81,819.72 135.81,799.98 135.81,780.25 130.55,780.25 125.29,780.25 125.29,799.98 125.29,819.72 117.41,819.72 109.52,819.72 109.52,858.93 109.52,898.67 125.29,898.67 125.29,901.41 130.55,901.41 135.81,901.41 135.81,898.67 151.58,898.67 "
|
||||||
|
id="polygon4083" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="388.14,784.67 388.14,780.92 382.89,780.92 377.63,780.92 377.63,784.67 361.86,784.67 361.86,818.35 361.86,852.02 369.74,852.02 377.63,852.02 377.63,878.94 377.63,905.85 382.89,905.85 388.14,905.85 388.14,878.94 388.14,852.02 396.03,852.02 403.91,852.02 403.91,818.35 403.91,784.67 "
|
||||||
|
id="polygon4085" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="1358.06,633.11 1350.18,633.11 1350.18,624.14 1350.18,615.17 1344.92,615.17 1339.66,615.17 1339.66,624.14 1339.66,633.11 1331.78,633.11 1323.89,633.11 1323.89,636.44 1323.89,640.29 1339.66,640.29 1339.66,643.02 1344.92,643.02 1350.18,643.02 1350.18,640.29 1365.95,640.29 1365.95,636.7 1365.95,633.11 "
|
||||||
|
id="polygon4087" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="1807.54,558.58 1807.54,557.89 1807.54,554.83 1802.28,554.83 1797.02,554.83 1797.02,557.89 1797.02,558.58 1781.25,558.58 1781.25,561.75 1781.25,564.92 1789.14,564.92 1797.02,564.92 1797.02,586.46 1797.02,607.99 1802.28,607.99 1807.54,607.99 1807.54,586.46 1807.54,564.92 1815.42,564.92 1823.31,564.92 1823.31,561.75 1823.31,558.58 "
|
||||||
|
id="polygon4089" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="1655.08,533.46 1655.08,529.71 1649.83,529.71 1644.57,529.71 1644.57,533.46 1628.8,533.46 1628.8,552.78 1628.8,572.1 1636.68,572.1 1644.57,572.1 1644.57,593.63 1644.57,615.17 1649.83,615.17 1655.08,615.17 1655.08,593.63 1655.08,572.1 1662.97,572.1 1670.85,572.1 1670.85,552.78 1670.85,533.46 "
|
||||||
|
id="polygon4091" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="2769.57,1136.36 2769.57,1132.61 2764.31,1132.61 2759.05,1132.61 2759.05,1136.36 2743.28,1136.36 2743.28,1227.46 2743.28,1318.55 2764.31,1318.55 2785.34,1318.55 2785.34,1227.46 2785.34,1136.36 "
|
||||||
|
id="polygon4093" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="1754.97,539.8 1754.97,536.21 1754.97,530.83 1749.71,530.83 1744.45,530.83 1744.45,536.21 1744.45,539.8 1728.68,539.8 1728.68,545.19 1728.68,550.57 1736.57,550.57 1744.45,550.57 1744.45,557.75 1744.45,564.92 1749.71,564.92 1754.97,564.92 1754.97,557.75 1754.97,550.57 1762.85,550.57 1770.74,550.57 1770.74,545.19 1770.74,539.8 "
|
||||||
|
id="polygon4095" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="2112.44,640.11 2112.44,622.34 2107.19,622.34 2101.93,622.34 2101.93,640.11 2086.16,640.11 2086.16,642.28 2086.16,644.45 2101.93,644.45 2101.93,658.23 2107.19,658.23 2112.44,658.23 2112.44,644.45 2128.21,644.45 2128.21,642.28 2128.21,640.11 "
|
||||||
|
id="polygon4097" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="1150.41,654.64 1150.41,651.05 1150.41,645.67 1145.15,645.67 1139.9,645.67 1139.9,651.05 1139.9,654.64 1124.12,654.64 1124.12,703.09 1124.12,751.54 1145.15,751.54 1166.18,751.54 1166.18,703.09 1166.18,654.64 "
|
||||||
|
id="polygon4099" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="792.93,848.43 792.93,844.84 792.93,839.46 787.68,839.46 782.42,839.46 782.42,844.84 782.42,848.43 766.65,848.43 766.65,860.99 766.65,873.55 774.53,873.55 782.42,873.55 782.42,884.32 782.42,895.09 787.68,895.09 792.93,895.09 792.93,884.32 792.93,873.55 800.82,873.55 808.7,873.55 808.7,860.99 808.7,848.43 "
|
||||||
|
id="polygon4101" />
|
||||||
|
<polygon
|
||||||
|
class="st1"
|
||||||
|
points="440.71,834.91 440.71,831.16 435.46,831.16 430.2,831.16 430.2,834.91 414.43,834.91 414.43,843.47 414.43,852.02 422.31,852.02 430.2,852.02 430.2,882.52 430.2,913.03 435.46,913.03 440.71,913.03 440.71,882.52 440.71,852.02 448.6,852.02 456.48,852.02 456.48,843.47 456.48,834.91 "
|
||||||
|
id="polygon4103" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g4225">
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="687.79,1109.31 682.53,1109.31 682.53,1071.63 682.53,1033.95 674.65,1033.95 666.76,1033.95 666.76,1007.03 666.76,980.12 674.65,980.12 682.53,980.12 682.53,962.18 682.53,944.23 687.79,944.23 693.05,944.23 693.05,962.18 693.05,980.12 700.93,980.12 708.82,980.12 708.82,1007.03 708.82,1033.95 700.93,1033.95 693.05,1033.95 693.05,1071.63 693.05,1109.31 "
|
||||||
|
id="polygon4107" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="2717,1091.37 2711.74,1091.37 2711.74,1071.63 2711.74,1051.89 2703.85,1051.89 2695.97,1051.89 2695.97,998.06 2695.97,944.23 2717,944.23 2738.02,944.23 2738.02,998.06 2738.02,1051.89 2730.14,1051.89 2722.25,1051.89 2722.25,1071.63 2722.25,1091.37 "
|
||||||
|
id="polygon4109" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="740.36,1062.66 735.11,1062.66 735.11,1048.3 735.11,1033.95 727.22,1033.95 719.33,1033.95 719.33,1028.57 719.33,1023.18 727.22,1023.18 735.11,1023.18 735.11,1008.83 735.11,994.47 740.36,994.47 745.62,994.47 745.62,1008.83 745.62,1023.18 753.5,1023.18 761.39,1023.18 761.39,1028.57 761.39,1033.95 753.5,1033.95 745.62,1033.95 745.62,1048.3 745.62,1062.66 "
|
||||||
|
id="polygon4111" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="945.39,1005.24 940.13,1005.24 940.13,990.89 940.13,976.53 932.24,976.53 924.36,976.53 924.36,969.35 924.36,962.18 932.24,962.18 940.13,962.18 940.13,942.44 940.13,922.7 945.39,922.7 950.64,922.7 950.64,942.44 950.64,962.18 958.53,962.18 966.41,962.18 966.41,969.35 966.41,976.53 958.53,976.53 950.64,976.53 950.64,990.89 950.64,1005.24 "
|
||||||
|
id="polygon4113" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="2054.61,1005.24 2049.36,1005.24 2049.36,926.29 2049.36,847.34 2041.47,847.34 2033.59,847.34 2033.59,800.68 2033.59,754.03 2041.47,754.03 2049.36,754.03 2049.36,725.32 2049.36,696.61 2054.61,696.61 2059.87,696.61 2059.87,725.32 2059.87,754.03 2067.76,754.03 2075.64,754.03 2075.64,800.68 2075.64,847.34 2067.76,847.34 2059.87,847.34 2059.87,926.29 2059.87,1005.24 "
|
||||||
|
id="polygon4115" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="640.48,1001.65 635.22,1001.65 635.22,992.68 635.22,983.71 627.34,983.71 619.45,983.71 619.45,938.85 619.45,893.99 627.34,893.99 635.22,893.99 635.22,886.81 635.22,879.64 640.48,879.64 645.74,879.64 645.74,886.81 645.74,893.99 653.62,893.99 661.51,893.99 661.51,938.85 661.51,983.71 653.62,983.71 645.74,983.71 645.74,992.68 645.74,1001.65 "
|
||||||
|
id="polygon4117" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="2969.33,1001.65 2964.08,1001.65 2964.08,992.68 2964.08,983.71 2956.19,983.71 2948.31,983.71 2948.31,976.53 2948.31,969.35 2956.19,969.35 2964.08,969.35 2964.08,962.18 2964.08,955 2969.33,955 2974.59,955 2974.59,962.18 2974.59,969.35 2982.48,969.35 2990.36,969.35 2990.36,976.53 2990.36,983.71 2982.48,983.71 2974.59,983.71 2974.59,992.68 2974.59,1001.65 "
|
||||||
|
id="polygon4119" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="2916.76,998.06 2911.51,998.06 2911.51,989.09 2911.51,980.12 2903.62,980.12 2895.74,980.12 2895.74,971.15 2895.74,962.18 2916.76,962.18 2937.79,962.18 2937.79,971.15 2937.79,980.12 2929.91,980.12 2922.02,980.12 2922.02,989.09 2922.02,998.06 "
|
||||||
|
id="polygon4121" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="435.46,983.71 430.2,983.71 430.2,967.56 430.2,951.41 422.31,951.41 414.43,951.41 414.43,919.11 414.43,886.81 422.31,886.81 430.2,886.81 430.2,877.84 430.2,868.87 435.46,868.87 440.71,868.87 440.71,877.84 440.71,886.81 448.6,886.81 456.48,886.81 456.48,919.11 456.48,951.41 448.6,951.41 440.71,951.41 440.71,967.56 440.71,983.71 "
|
||||||
|
id="polygon4123" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="2664.43,976.53 2659.17,976.53 2659.17,962.18 2659.17,947.82 2651.28,947.82 2643.4,947.82 2643.4,935.26 2643.4,922.7 2651.28,922.7 2659.17,922.7 2659.17,915.52 2659.17,908.34 2664.43,908.34 2669.68,908.34 2669.68,915.52 2669.68,922.7 2677.57,922.7 2685.46,922.7 2685.46,935.26 2685.46,947.82 2677.57,947.82 2669.68,947.82 2669.68,962.18 2669.68,976.53 "
|
||||||
|
id="polygon4125" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="130.55,969.35 125.29,969.35 125.29,953.2 125.29,937.05 117.41,937.05 109.52,937.05 109.52,908.35 109.52,879.64 117.41,879.64 125.29,879.64 125.29,872.46 125.29,865.28 130.55,865.28 135.81,865.28 135.81,872.46 135.81,879.64 143.69,879.64 151.58,879.64 151.58,908.35 151.58,937.05 143.69,937.05 135.81,937.05 135.81,953.2 135.81,969.35 "
|
||||||
|
id="polygon4127" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="540.6,965.76 535.34,965.76 535.34,956.79 535.34,947.82 527.45,947.82 519.57,947.82 519.57,942.44 519.57,937.05 540.6,937.05 561.62,937.05 561.62,942.44 561.62,947.82 553.74,947.82 545.85,947.82 545.85,956.79 545.85,965.76 "
|
||||||
|
id="polygon4129" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="388.14,933.47 382.89,933.47 382.89,917.32 382.89,901.17 375,901.17 367.11,901.17 367.11,890.4 367.11,879.64 375,879.64 382.89,879.64 382.89,850.93 382.89,822.22 388.14,822.22 393.4,822.22 393.4,850.93 393.4,879.64 401.29,879.64 409.17,879.64 409.17,890.4 409.17,901.17 401.29,901.17 393.4,901.17 393.4,917.32 393.4,933.47 "
|
||||||
|
id="polygon4131" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="2564.54,933.47 2559.29,933.47 2559.29,924.49 2559.29,915.52 2551.4,915.52 2543.52,915.52 2543.52,849.13 2543.52,782.74 2551.4,782.74 2559.29,782.74 2559.29,761.21 2559.29,739.68 2564.54,739.68 2569.8,739.68 2569.8,761.21 2569.8,782.74 2577.69,782.74 2585.57,782.74 2585.57,849.13 2585.57,915.52 2577.69,915.52 2569.8,915.52 2569.8,924.49 2569.8,933.47 "
|
||||||
|
id="polygon4133" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="1754.96,893.99 1749.71,893.99 1749.71,877.84 1749.71,861.69 1741.82,861.69 1733.94,861.69 1733.94,815.04 1733.94,768.39 1754.96,768.39 1775.99,768.39 1775.99,815.04 1775.99,861.69 1768.11,861.69 1760.22,861.69 1760.22,877.84 1760.22,893.99 "
|
||||||
|
id="polygon4135" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="2359.52,890.4 2354.26,890.4 2354.26,870.66 2354.26,850.93 2346.38,850.93 2338.49,850.93 2338.49,834.78 2338.49,818.63 2346.38,818.63 2354.26,818.63 2354.26,811.45 2354.26,804.27 2359.52,804.27 2364.78,804.27 2364.78,811.45 2364.78,818.63 2372.66,818.63 2380.55,818.63 2380.55,834.78 2380.55,850.93 2372.66,850.93 2364.78,850.93 2364.78,870.66 2364.78,890.4 "
|
||||||
|
id="polygon4137" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="2159.75,836.57 2154.5,836.57 2154.5,825.81 2154.5,815.04 2146.61,815.04 2138.73,815.04 2138.73,798.89 2138.73,782.74 2146.61,782.74 2154.5,782.74 2154.5,775.56 2154.5,768.39 2159.75,768.39 2165.01,768.39 2165.01,775.56 2165.01,782.74 2172.9,782.74 2180.78,782.74 2180.78,798.89 2180.78,815.04 2172.9,815.04 2165.01,815.04 2165.01,825.81 2165.01,836.57 "
|
||||||
|
id="polygon4139" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="2312.21,836.57 2291.18,836.57 2291.18,832.98 2291.18,829.39 2299.07,829.39 2306.95,829.39 2306.95,818.63 2306.95,807.86 2312.21,807.86 2317.47,807.86 2317.47,818.63 2317.47,829.39 2325.35,829.39 2333.24,829.39 2333.24,832.98 2333.24,836.57 "
|
||||||
|
id="polygon4141" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="1954.73,800.68 1949.47,800.68 1949.47,797.1 1949.47,793.51 1941.59,793.51 1933.7,793.51 1933.7,788.12 1933.7,782.74 1941.59,782.74 1949.47,782.74 1949.47,777.36 1949.47,771.97 1954.73,771.97 1959.99,771.97 1959.99,777.36 1959.99,782.74 1967.87,782.74 1975.76,782.74 1975.76,788.12 1975.76,793.51 1967.87,793.51 1959.99,793.51 1959.99,797.1 1959.99,800.68 "
|
||||||
|
id="polygon4143" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="1702.4,797.1 1697.14,797.1 1697.14,786.33 1697.14,775.56 1689.25,775.56 1681.37,775.56 1681.37,755.83 1681.37,736.09 1689.25,736.09 1697.14,736.09 1697.14,728.91 1697.14,721.73 1702.4,721.73 1707.65,721.73 1707.65,728.91 1707.65,736.09 1715.54,736.09 1723.42,736.09 1723.42,755.83 1723.42,775.56 1715.54,775.56 1707.65,775.56 1707.65,786.33 1707.65,797.1 "
|
||||||
|
id="polygon4145" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="30.67,1069.84 25.41,1069.84 25.41,1026.77 25.41,983.71 17.52,983.71 9.64,983.71 9.64,971.15 9.64,958.59 17.52,958.59 25.41,958.59 25.41,946.03 25.41,933.47 30.67,933.47 35.92,933.47 35.92,946.03 35.92,958.59 43.81,958.59 51.69,958.59 51.69,971.15 51.69,983.71 43.81,983.71 35.92,983.71 35.92,1026.77 35.92,1069.84 "
|
||||||
|
id="polygon4147" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="792.93,1055.48 787.68,1055.48 787.68,1044.72 787.68,1033.95 779.79,1033.95 771.9,1033.95 771.9,1001.65 771.9,969.35 779.79,969.35 787.68,969.35 787.68,963.97 787.68,958.59 792.93,958.59 798.19,958.59 798.19,963.97 798.19,969.35 806.07,969.35 813.96,969.35 813.96,1001.65 813.96,1033.95 806.07,1033.95 798.19,1033.95 798.19,1044.72 798.19,1055.48 "
|
||||||
|
id="polygon4149" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="83.24,1019.59 77.98,1019.59 77.98,989.09 77.98,958.59 70.09,958.59 62.21,958.59 62.21,928.08 62.21,897.58 70.09,897.58 77.98,897.58 77.98,879.64 77.98,861.69 83.24,861.69 88.49,861.69 88.49,879.64 88.49,897.58 96.38,897.58 104.26,897.58 104.26,928.08 104.26,958.59 96.38,958.59 88.49,958.59 88.49,989.09 88.49,1019.59 "
|
||||||
|
id="polygon4151" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="2816.88,1001.65 2811.62,1001.65 2811.62,978.32 2811.62,955 2803.74,955 2795.85,955 2795.85,947.82 2795.85,940.64 2803.74,940.64 2811.62,940.64 2811.62,929.88 2811.62,919.11 2816.88,919.11 2822.14,919.11 2822.14,929.88 2822.14,940.64 2830.02,940.64 2837.91,940.64 2837.91,947.82 2837.91,955 2830.02,955 2822.14,955 2822.14,978.32 2822.14,1001.65 "
|
||||||
|
id="polygon4153" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="992.7,998.06 987.44,998.06 987.44,985.5 987.44,972.94 979.56,972.94 971.67,972.94 971.67,942.44 971.67,911.93 979.56,911.93 987.44,911.93 987.44,906.55 987.44,901.17 992.7,901.17 997.96,901.17 997.96,906.55 997.96,911.93 1005.84,911.93 1013.73,911.93 1013.73,942.44 1013.73,972.94 1005.84,972.94 997.96,972.94 997.96,985.5 997.96,998.06 "
|
||||||
|
id="polygon4155" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="840.25,990.89 819.22,990.89 819.22,980.12 819.22,969.35 827.1,969.35 834.99,969.35 834.99,962.18 834.99,955 840.25,955 845.5,955 845.5,962.18 845.5,969.35 853.39,969.35 861.27,969.35 861.27,980.12 861.27,990.89 "
|
||||||
|
id="polygon4157" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="892.82,972.94 871.79,972.94 871.79,965.76 871.79,958.59 879.67,958.59 887.56,958.59 887.56,951.41 887.56,944.23 892.82,944.23 898.07,944.23 898.07,951.41 898.07,958.59 905.96,958.59 913.84,958.59 913.84,965.76 913.84,972.94 "
|
||||||
|
id="polygon4159" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="2611.86,972.94 2606.6,972.94 2606.6,946.03 2606.6,919.11 2598.72,919.11 2590.83,919.11 2590.83,913.73 2590.83,908.35 2598.72,908.35 2606.6,908.35 2606.6,895.78 2606.6,883.22 2611.86,883.22 2617.11,883.22 2617.11,895.78 2617.11,908.35 2625,908.35 2632.89,908.35 2632.89,913.73 2632.89,919.11 2625,919.11 2617.11,919.11 2617.11,946.03 2617.11,972.94 "
|
||||||
|
id="polygon4161" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="283,958.59 277.75,958.59 277.75,947.82 277.75,937.05 269.86,937.05 261.97,937.05 261.97,933.47 261.97,929.88 269.86,929.88 277.75,929.88 277.75,908.35 277.75,886.81 283,886.81 288.26,886.81 288.26,908.35 288.26,929.88 296.15,929.88 304.03,929.88 304.03,933.47 304.03,937.05 296.15,937.05 288.26,937.05 288.26,947.82 288.26,958.59 "
|
||||||
|
id="polygon4163" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="335.57,958.59 330.32,958.59 330.32,937.05 330.32,915.52 322.43,915.52 314.55,915.52 314.55,897.58 314.55,879.64 322.43,879.64 330.32,879.64 330.32,870.66 330.32,861.69 335.57,861.69 340.83,861.69 340.83,870.66 340.83,879.64 348.72,879.64 356.6,879.64 356.6,897.58 356.6,915.52 348.72,915.52 340.83,915.52 340.83,937.05 340.83,958.59 "
|
||||||
|
id="polygon4165" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="488.03,955 467,955 467,951.41 467,947.82 474.88,947.82 482.77,947.82 482.77,940.64 482.77,933.47 488.03,933.47 493.28,933.47 493.28,940.64 493.28,947.82 501.17,947.82 509.05,947.82 509.05,951.41 509.05,955 "
|
||||||
|
id="polygon4167" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="1092.58,937.05 1087.33,937.05 1087.33,928.08 1087.33,919.11 1079.44,919.11 1071.55,919.11 1071.55,913.73 1071.55,908.35 1079.44,908.35 1087.33,908.35 1087.33,897.58 1087.33,886.81 1092.58,886.81 1097.84,886.81 1097.84,897.58 1097.84,908.35 1105.73,908.35 1113.61,908.35 1113.61,913.73 1113.61,919.11 1105.73,919.11 1097.84,919.11 1097.84,928.08 1097.84,937.05 "
|
||||||
|
id="polygon4169" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="1297.61,908.35 1292.35,908.35 1292.35,904.76 1292.35,901.17 1284.46,901.17 1276.58,901.17 1276.58,849.13 1276.58,797.1 1297.61,797.1 1318.63,797.1 1318.63,849.13 1318.63,901.17 1310.75,901.17 1302.86,901.17 1302.86,904.76 1302.86,908.35 "
|
||||||
|
id="polygon4171" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="1802.28,890.4 1797.02,890.4 1797.02,876.05 1797.02,861.69 1789.14,861.69 1781.25,861.69 1781.25,827.6 1781.25,793.51 1789.14,793.51 1797.02,793.51 1797.02,780.95 1797.02,768.39 1802.28,768.39 1807.54,768.39 1807.54,780.95 1807.54,793.51 1815.42,793.51 1823.31,793.51 1823.31,827.6 1823.31,861.69 1815.42,861.69 1807.54,861.69 1807.54,876.05 1807.54,890.4 "
|
||||||
|
id="polygon4173" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="2412.09,876.05 2406.83,876.05 2406.83,865.28 2406.83,854.52 2398.95,854.52 2391.06,854.52 2391.06,841.95 2391.06,829.39 2398.95,829.39 2406.83,829.39 2406.83,822.22 2406.83,815.04 2412.09,815.04 2417.35,815.04 2417.35,822.22 2417.35,829.39 2425.23,829.39 2433.12,829.39 2433.12,841.95 2433.12,854.52 2425.23,854.52 2417.35,854.52 2417.35,865.28 2417.35,876.05 "
|
||||||
|
id="polygon4175" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="2459.4,861.69 2454.15,861.69 2454.15,840.16 2454.15,818.63 2446.26,818.63 2438.38,818.63 2438.38,789.92 2438.38,761.21 2446.26,761.21 2454.15,761.21 2454.15,745.06 2454.15,728.91 2459.4,728.91 2464.66,728.91 2464.66,745.06 2464.66,761.21 2472.55,761.21 2480.43,761.21 2480.43,789.92 2480.43,818.63 2472.55,818.63 2464.66,818.63 2464.66,840.16 2464.66,861.69 "
|
||||||
|
id="polygon4177" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="2107.18,854.51 2101.93,854.51 2101.93,840.16 2101.93,825.81 2094.04,825.81 2086.16,825.81 2086.16,807.86 2086.16,789.92 2094.04,789.92 2101.93,789.92 2101.93,782.74 2101.93,775.56 2107.18,775.56 2112.44,775.56 2112.44,782.74 2112.44,789.92 2120.33,789.92 2128.21,789.92 2128.21,807.86 2128.21,825.81 2120.33,825.81 2112.44,825.81 2112.44,840.16 2112.44,854.51 "
|
||||||
|
id="polygon4179" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="1450.06,836.57 1444.8,836.57 1444.8,816.83 1444.8,797.1 1436.92,797.1 1429.03,797.1 1429.03,789.92 1429.03,782.74 1436.92,782.74 1444.8,782.74 1444.8,773.77 1444.8,764.8 1450.06,764.8 1455.32,764.8 1455.32,773.77 1455.32,782.74 1463.2,782.74 1471.09,782.74 1471.09,789.92 1471.09,797.1 1463.2,797.1 1455.32,797.1 1455.32,816.83 1455.32,836.57 "
|
||||||
|
id="polygon4181" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="2007.3,807.86 2002.04,807.86 2002.04,795.3 2002.04,782.74 1994.16,782.74 1986.27,782.74 1986.27,773.77 1986.27,764.8 1994.16,764.8 2002.04,764.8 2002.04,754.03 2002.04,743.27 2007.3,743.27 2012.56,743.27 2012.56,754.03 2012.56,764.8 2020.44,764.8 2028.33,764.8 2028.33,773.77 2028.33,782.74 2020.44,782.74 2012.56,782.74 2012.56,795.3 2012.56,807.86 "
|
||||||
|
id="polygon4183" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="1907.42,804.27 1902.16,804.27 1902.16,797.1 1902.16,789.92 1894.28,789.92 1886.39,789.92 1886.39,786.33 1886.39,782.74 1894.28,782.74 1902.16,782.74 1902.16,770.18 1902.16,757.62 1907.42,757.62 1912.68,757.62 1912.68,770.18 1912.68,782.74 1920.56,782.74 1928.45,782.74 1928.45,786.33 1928.45,789.92 1920.56,789.92 1912.68,789.92 1912.68,797.1 1912.68,804.27 "
|
||||||
|
id="polygon4185" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="1549.94,797.1 1544.69,797.1 1544.69,782.74 1544.69,768.39 1536.8,768.39 1528.91,768.39 1528.91,764.8 1528.91,761.21 1536.8,761.21 1544.69,761.21 1544.69,754.03 1544.69,746.85 1549.94,746.85 1555.2,746.85 1555.2,754.03 1555.2,761.21 1563.08,761.21 1570.97,761.21 1570.97,764.8 1570.97,768.39 1563.08,768.39 1555.2,768.39 1555.2,782.74 1555.2,797.1 "
|
||||||
|
id="polygon4187" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="1854.85,797.1 1849.59,797.1 1849.59,791.71 1849.59,786.33 1841.71,786.33 1833.82,786.33 1833.82,782.74 1833.82,779.15 1841.71,779.15 1849.59,779.15 1849.59,766.59 1849.59,754.03 1854.85,754.03 1860.11,754.03 1860.11,766.59 1860.11,779.15 1867.99,779.15 1875.88,779.15 1875.88,782.74 1875.88,786.33 1867.99,786.33 1860.11,786.33 1860.11,791.71 1860.11,797.1 "
|
||||||
|
id="polygon4189" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="1649.83,771.97 1644.57,771.97 1644.57,761.21 1644.57,750.44 1636.68,750.44 1628.8,750.44 1628.8,745.06 1628.8,739.68 1636.68,739.68 1644.57,739.68 1644.57,732.5 1644.57,725.32 1649.83,725.32 1655.08,725.32 1655.08,732.5 1655.08,739.68 1662.97,739.68 1670.85,739.68 1670.85,745.06 1670.85,750.44 1662.97,750.44 1655.08,750.44 1655.08,761.21 1655.08,771.97 "
|
||||||
|
id="polygon4191" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="1250.29,901.17 1250.29,897.58 1250.29,892.2 1245.04,892.2 1239.78,892.2 1239.78,897.58 1239.78,901.17 1224.01,901.17 1224.01,908.34 1224.01,915.52 1231.89,915.52 1239.78,915.52 1239.78,920.91 1239.78,926.29 1245.04,926.29 1250.29,926.29 1250.29,920.91 1250.29,915.52 1258.18,915.52 1266.06,915.52 1266.06,908.34 1266.06,901.17 "
|
||||||
|
id="polygon4193" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="1202.98,901.02 1202.98,899.82 1202.98,892.05 1197.72,892.05 1192.47,892.05 1192.47,899.82 1192.47,901.02 1176.69,901.02 1176.69,903.41 1176.69,905.8 1184.58,905.8 1192.47,905.8 1192.47,920.76 1192.47,922.55 1197.72,922.55 1202.98,922.55 1202.98,920.76 1202.98,905.8 1210.86,905.8 1218.75,905.8 1218.75,903.41 1218.75,901.02 "
|
||||||
|
id="polygon4195" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="1507.89,775.56 1507.89,774.37 1507.89,750.52 1502.63,750.52 1497.37,750.52 1497.37,774.37 1497.37,775.56 1481.6,775.56 1481.6,777.96 1481.6,780.35 1489.49,780.35 1497.37,780.35 1497.37,788.05 1497.37,789.84 1502.63,789.84 1507.89,789.84 1507.89,788.05 1507.89,780.35 1515.77,780.35 1523.66,780.35 1523.66,777.96 1523.66,775.56 "
|
||||||
|
id="polygon4197" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="1050.53,897.58 1050.53,893.99 1050.53,888.61 1045.27,888.61 1040.01,888.61 1040.01,893.99 1040.01,897.58 1024.24,897.58 1024.24,913.73 1024.24,929.88 1032.13,929.88 1040.01,929.88 1040.01,946.03 1040.01,962.18 1045.27,962.18 1050.53,962.18 1050.53,946.03 1050.53,929.88 1058.41,929.88 1066.3,929.88 1066.3,913.73 1066.3,897.58 "
|
||||||
|
id="polygon4199" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="188.38,948.66 188.38,944.9 183.12,944.9 177.86,944.9 177.86,948.66 162.09,948.66 162.09,989.51 162.09,1030.36 169.98,1030.36 177.86,1030.36 177.86,1042.92 177.86,1055.48 183.12,1055.48 188.38,1055.48 188.38,1042.92 188.38,1030.36 196.26,1030.36 204.15,1030.36 204.15,989.51 204.15,948.66 "
|
||||||
|
id="polygon4201" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="1615.66,764.8 1607.77,764.8 1607.77,741.47 1607.77,718.14 1602.51,718.14 1597.26,718.14 1597.26,741.47 1597.26,764.8 1589.37,764.8 1581.48,764.8 1581.48,769.92 1581.48,775.56 1597.26,775.56 1597.26,778.3 1602.51,778.3 1607.77,778.3 1607.77,775.56 1623.54,775.56 1623.54,770.18 1623.54,764.8 "
|
||||||
|
id="polygon4203" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="2517.23,740.51 2517.23,736.76 2511.97,736.76 2506.72,736.76 2506.72,740.51 2490.95,740.51 2490.95,756.24 2490.95,771.97 2498.83,771.97 2506.72,771.97 2506.72,786.33 2506.72,800.68 2511.97,800.68 2517.23,800.68 2517.23,786.33 2517.23,771.97 2525.12,771.97 2533,771.97 2533,756.24 2533,740.51 "
|
||||||
|
id="polygon4205" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="2264.9,801.52 2264.9,797.77 2259.64,797.77 2254.38,797.77 2254.38,801.52 2238.61,801.52 2238.61,816.99 2238.61,832.98 2254.38,832.98 2254.38,835.72 2259.64,835.72 2264.9,835.72 2264.9,832.98 2280.67,832.98 2280.67,817.25 2280.67,801.52 "
|
||||||
|
id="polygon4207" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="1402.75,728.91 1402.75,725.32 1402.75,719.94 1397.49,719.94 1392.23,719.94 1392.23,725.32 1392.23,728.91 1376.46,728.91 1376.46,763 1376.46,797.1 1384.35,797.1 1392.23,797.1 1392.23,832.98 1392.23,868.87 1397.49,868.87 1402.75,868.87 1402.75,832.98 1402.75,797.1 1410.63,797.1 1418.52,797.1 1418.52,763 1418.52,728.91 "
|
||||||
|
id="polygon4209" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="2874.71,937.89 2874.71,934.14 2869.45,934.14 2864.19,934.14 2864.19,937.89 2848.42,937.89 2848.42,951.83 2848.42,965.76 2856.31,965.76 2864.19,965.76 2864.19,980.12 2864.19,994.47 2869.45,994.47 2874.71,994.47 2874.71,980.12 2874.71,965.76 2882.59,965.76 2890.48,965.76 2890.48,951.83 2890.48,937.89 "
|
||||||
|
id="polygon4211" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="2785.34,955 2769.57,955 2769.57,951.41 2769.57,946.03 2764.31,946.03 2759.05,946.03 2759.05,951.41 2759.05,955 2743.28,955 2743.28,1001.65 2743.28,1048.3 2764.31,1048.3 2785.34,1048.3 2785.34,1001.65 "
|
||||||
|
id="polygon4213" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="1355.43,733.34 1355.43,729.58 1350.18,729.58 1344.92,729.58 1344.92,733.34 1329.15,733.34 1329.15,759.83 1329.15,786.33 1337.03,786.33 1344.92,786.33 1344.92,800.68 1344.92,815.04 1350.18,815.04 1355.43,815.04 1355.43,800.68 1355.43,786.33 1363.32,786.33 1371.2,786.33 1371.2,759.83 1371.2,733.34 "
|
||||||
|
id="polygon4215" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="1150.41,908.34 1150.41,904.76 1150.41,899.37 1145.15,899.37 1139.9,899.37 1139.9,904.76 1139.9,908.34 1124.12,908.34 1124.12,917.32 1124.12,926.29 1132.01,926.29 1139.9,926.29 1139.9,958.59 1139.9,990.88 1145.15,990.88 1150.41,990.88 1150.41,958.59 1150.41,926.29 1158.29,926.29 1166.18,926.29 1166.18,917.32 1166.18,908.34 "
|
||||||
|
id="polygon4217" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="593.17,909.18 593.17,905.43 587.91,905.43 582.65,905.43 582.65,909.18 566.88,909.18 566.88,924.91 566.88,940.64 574.77,940.64 582.65,940.64 582.65,951.41 582.65,962.18 587.91,962.18 593.17,962.18 593.17,951.41 593.17,940.64 601.05,940.64 608.94,940.64 608.94,924.91 608.94,909.18 "
|
||||||
|
id="polygon4219" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="240.83,941.5 240.83,937.73 235.57,937.73 230.32,937.73 230.32,941.51 214.43,941.52 214.43,1064.89 214.43,1188.26 236.01,1188.26 236.01,1188.26 256.71,1188.26 256.71,1172.11 256.71,1045.13 256.71,941.48 "
|
||||||
|
id="polygon4221" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="2207.07,858.1 2201.81,858.1 2201.81,821.48 2201.81,817.06 2193.93,817.06 2186.04,817.06 2186.04,814.11 2186.04,811.16 2193.93,811.16 2201.81,811.16 2201.81,800.84 2201.81,793.41 2207.07,793.41 2212.33,793.41 2212.33,800.84 2212.33,811.16 2220.21,811.16 2228.1,811.16 2228.1,814.11 2228.1,817.06 2220.21,817.06 2212.33,817.06 2212.33,821.48 2212.33,858.1 "
|
||||||
|
id="polygon4223" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g4345">
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="80.61,1401.62 75.35,1401.62 75.35,1292.63 75.35,1183.64 67.47,1183.64 59.58,1183.64 59.58,1100.16 59.58,1016.68 67.47,1016.68 75.35,1016.68 75.35,993.49 75.35,970.3 80.61,970.3 85.86,970.3 85.86,993.49 85.86,1016.68 93.75,1016.68 101.64,1016.68 101.64,1100.16 101.64,1183.64 93.75,1183.64 85.86,1183.64 85.86,1292.63 85.86,1401.62 "
|
||||||
|
id="polygon4227" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="690.42,1378.43 685.16,1378.43 685.16,1369.16 685.16,1359.88 677.28,1359.88 669.39,1359.88 669.39,1350.6 669.39,1341.33 677.28,1341.33 685.16,1341.33 685.16,1334.37 685.16,1327.42 690.42,1327.42 695.68,1327.42 695.68,1334.37 695.68,1341.33 703.56,1341.33 711.45,1341.33 711.45,1350.6 711.45,1359.88 703.56,1359.88 695.68,1359.88 695.68,1369.16 695.68,1378.43 "
|
||||||
|
id="polygon4229" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="233.06,1369.16 227.8,1369.16 227.8,1357.56 227.8,1345.97 219.92,1345.97 212.03,1345.97 212.03,1248.57 212.03,1151.18 219.92,1151.18 227.8,1151.18 227.8,1139.58 227.8,1127.99 233.06,1127.99 238.32,1127.99 238.32,1139.58 238.32,1151.18 246.2,1151.18 254.09,1151.18 254.09,1248.57 254.09,1345.97 246.2,1345.97 238.32,1345.97 238.32,1357.56 238.32,1369.16 "
|
||||||
|
id="polygon4231" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="790.3,1290.31 785.05,1290.31 785.05,1262.49 785.05,1234.66 777.16,1234.66 769.28,1234.66 769.28,1227.7 769.28,1220.74 777.16,1220.74 785.05,1220.74 785.05,1185.96 785.05,1151.18 790.3,1151.18 795.56,1151.18 795.56,1185.96 795.56,1220.74 803.45,1220.74 811.33,1220.74 811.33,1227.7 811.33,1234.66 803.45,1234.66 795.56,1234.66 795.56,1262.49 795.56,1290.31 "
|
||||||
|
id="polygon4233" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="338.2,1276.4 332.94,1276.4 332.94,1262.49 332.94,1248.57 325.06,1248.57 317.17,1248.57 317.17,1234.66 317.17,1220.74 325.06,1220.74 332.94,1220.74 332.94,1199.87 332.94,1179 338.2,1179 343.46,1179 343.46,1199.87 343.46,1220.74 351.34,1220.74 359.23,1220.74 359.23,1234.66 359.23,1248.57 351.34,1248.57 343.46,1248.57 343.46,1262.49 343.46,1276.4 "
|
||||||
|
id="polygon4235" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="133.18,1234.66 127.92,1234.66 127.92,1211.47 127.92,1188.28 120.04,1188.28 112.15,1188.28 112.15,1183.64 112.15,1179 120.04,1179 127.92,1179 127.92,1165.09 127.92,1151.18 133.18,1151.18 138.43,1151.18 138.43,1165.09 138.43,1179 146.32,1179 154.21,1179 154.21,1183.64 154.21,1188.28 146.32,1188.28 138.43,1188.28 138.43,1211.47 138.43,1234.66 "
|
||||||
|
id="polygon4237" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="185.75,1202.19 180.49,1202.19 180.49,1192.92 180.49,1183.64 172.61,1183.64 164.72,1183.64 164.72,1179 164.72,1174.36 172.61,1174.36 180.49,1174.36 180.49,1165.09 180.49,1155.81 185.75,1155.81 191,1155.81 191,1165.09 191,1174.36 198.89,1174.36 206.78,1174.36 206.78,1179 206.78,1183.64 198.89,1183.64 191,1183.64 191,1192.92 191,1202.19 "
|
||||||
|
id="polygon4239" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="1400.12,1067.69 1394.86,1067.69 1394.86,1035.23 1394.86,1002.76 1386.97,1002.76 1379.09,1002.76 1379.09,910.01 1379.09,817.25 1386.97,817.25 1394.86,817.25 1394.86,801.02 1394.86,784.78 1400.12,784.78 1405.37,784.78 1405.37,801.02 1405.37,817.25 1413.26,817.25 1421.14,817.25 1421.14,910.01 1421.14,1002.76 1413.26,1002.76 1405.37,1002.76 1405.37,1035.23 1405.37,1067.69 "
|
||||||
|
id="polygon4241" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="2109.81,1053.78 2104.56,1053.78 2104.56,1019 2104.56,984.21 2096.67,984.21 2088.79,984.21 2088.79,979.57 2088.79,974.94 2096.67,974.94 2104.56,974.94 2104.56,930.88 2104.56,886.82 2109.81,886.82 2115.07,886.82 2115.07,930.88 2115.07,974.94 2122.96,974.94 2130.84,974.94 2130.84,979.57 2130.84,984.21 2122.96,984.21 2115.07,984.21 2115.07,1019 2115.07,1053.78 "
|
||||||
|
id="polygon4243" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="2057.24,1030.59 2051.99,1030.59 2051.99,1019 2051.99,1007.4 2044.1,1007.4 2036.21,1007.4 2036.21,954.07 2036.21,900.73 2044.1,900.73 2051.99,900.73 2051.99,877.54 2051.99,854.35 2057.24,854.35 2062.5,854.35 2062.5,877.54 2062.5,900.73 2070.39,900.73 2078.27,900.73 2078.27,954.07 2078.27,1007.4 2070.39,1007.4 2062.5,1007.4 2062.5,1019 2062.5,1030.59 "
|
||||||
|
id="polygon4245" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="1552.57,1025.95 1547.31,1025.95 1547.31,1021.32 1547.31,1016.68 1539.43,1016.68 1531.54,1016.68 1531.54,1012.04 1531.54,1007.4 1539.43,1007.4 1547.31,1007.4 1547.31,998.13 1547.31,988.85 1552.57,988.85 1557.83,988.85 1557.83,998.13 1557.83,1007.4 1565.71,1007.4 1573.6,1007.4 1573.6,1012.04 1573.6,1016.68 1565.71,1016.68 1557.83,1016.68 1557.83,1021.32 1557.83,1025.95 "
|
||||||
|
id="polygon4247" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="1095.21,988.85 1089.95,988.85 1089.95,961.02 1089.95,933.2 1082.07,933.2 1074.18,933.2 1074.18,914.64 1074.18,896.09 1082.07,896.09 1089.95,896.09 1089.95,882.18 1089.95,868.27 1095.21,868.27 1100.47,868.27 1100.47,882.18 1100.47,896.09 1108.35,896.09 1116.24,896.09 1116.24,914.64 1116.24,933.2 1108.35,933.2 1100.47,933.2 1100.47,961.02 1100.47,988.85 "
|
||||||
|
id="polygon4249" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="1705.02,951.75 1699.77,951.75 1699.77,933.2 1699.77,914.64 1691.88,914.64 1684,914.64 1684,856.67 1684,798.7 1691.88,798.7 1699.77,798.7 1699.77,777.83 1699.77,756.96 1705.02,756.96 1710.28,756.96 1710.28,777.83 1710.28,798.7 1718.17,798.7 1726.05,798.7 1726.05,856.67 1726.05,914.64 1718.17,914.64 1710.28,914.64 1710.28,933.2 1710.28,951.75 "
|
||||||
|
id="polygon4251" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="2362.15,933.2 2356.89,933.2 2356.89,910.01 2356.89,886.82 2349.01,886.82 2341.12,886.82 2341.12,863.63 2341.12,840.44 2349.01,840.44 2356.89,840.44 2356.89,833.48 2356.89,826.53 2362.15,826.53 2367.41,826.53 2367.41,833.48 2367.41,840.44 2375.29,840.44 2383.18,840.44 2383.18,863.63 2383.18,886.82 2375.29,886.82 2367.41,886.82 2367.41,910.01 2367.41,933.2 "
|
||||||
|
id="polygon4253" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="2462.03,910.01 2456.78,910.01 2456.78,875.22 2456.78,840.44 2448.89,840.44 2441,840.44 2441,821.89 2441,803.34 2448.89,803.34 2456.78,803.34 2456.78,791.74 2456.78,780.15 2462.03,780.15 2467.29,780.15 2467.29,791.74 2467.29,803.34 2475.18,803.34 2483.06,803.34 2483.06,821.89 2483.06,840.44 2475.18,840.44 2467.29,840.44 2467.29,875.22 2467.29,910.01 "
|
||||||
|
id="polygon4255" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="1957.36,905.37 1952.1,905.37 1952.1,891.46 1952.1,877.54 1944.22,877.54 1936.33,877.54 1936.33,852.03 1936.33,826.53 1944.22,826.53 1952.1,826.53 1952.1,796.38 1952.1,766.23 1957.36,766.23 1962.62,766.23 1962.62,796.38 1962.62,826.53 1970.5,826.53 1978.39,826.53 1978.39,852.03 1978.39,877.54 1970.5,877.54 1962.62,877.54 1962.62,891.46 1962.62,905.37 "
|
||||||
|
id="polygon4257" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="1347.55,896.09 1342.29,896.09 1342.29,858.99 1342.29,821.89 1334.4,821.89 1326.52,821.89 1326.52,787.1 1326.52,752.32 1347.55,752.32 1368.57,752.32 1368.57,787.1 1368.57,821.89 1360.69,821.89 1352.8,821.89 1352.8,858.99 1352.8,896.09 "
|
||||||
|
id="polygon4259" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="1904.79,891.46 1899.53,891.46 1899.53,865.95 1899.53,840.44 1891.65,840.44 1883.76,840.44 1883.76,824.21 1883.76,807.97 1891.65,807.97 1899.53,807.97 1899.53,796.38 1899.53,784.78 1904.79,784.78 1910.05,784.78 1910.05,796.38 1910.05,807.97 1917.93,807.97 1925.82,807.97 1925.82,824.21 1925.82,840.44 1917.93,840.44 1910.05,840.44 1910.05,865.95 1910.05,891.46 "
|
||||||
|
id="polygon4261" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="1804.91,863.63 1799.65,863.63 1799.65,847.4 1799.65,831.16 1791.76,831.16 1783.88,831.16 1783.88,807.97 1783.88,784.78 1791.76,784.78 1799.65,784.78 1799.65,777.83 1799.65,770.87 1804.91,770.87 1810.16,770.87 1810.16,777.83 1810.16,784.78 1818.05,784.78 1825.93,784.78 1825.93,807.97 1825.93,831.16 1818.05,831.16 1810.16,831.16 1810.16,847.4 1810.16,863.63 "
|
||||||
|
id="polygon4263" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="2966.71,460.13 2961.45,460.13 2961.45,448.54 2961.45,436.94 2953.56,436.94 2945.68,436.94 2945.68,432.31 2945.68,427.67 2953.56,427.67 2961.45,427.67 2961.45,404.48 2961.45,381.29 2966.71,381.29 2971.96,381.29 2971.96,404.48 2971.96,427.67 2979.85,427.67 2987.73,427.67 2987.73,432.31 2987.73,436.94 2979.85,436.94 2971.96,436.94 2971.96,448.54 2971.96,460.13 "
|
||||||
|
id="polygon4265" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="2866.82,418.39 2845.79,418.39 2845.79,327.95 2845.79,237.51 2853.68,237.51 2861.57,237.51 2861.57,218.96 2861.57,200.41 2866.82,200.41 2872.08,200.41 2872.08,218.96 2872.08,237.51 2879.97,237.51 2887.85,237.51 2887.85,327.95 2887.85,418.39 "
|
||||||
|
id="polygon4267" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="2766.94,302.44 2761.68,302.44 2761.68,258.39 2761.68,214.33 2753.8,214.33 2745.91,214.33 2745.91,147.08 2745.91,79.83 2766.94,79.83 2787.97,79.83 2787.97,147.08 2787.97,214.33 2780.08,214.33 2772.2,214.33 2772.2,258.39 2772.2,302.44 "
|
||||||
|
id="polygon4269" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="2814.25,269.98 2809,269.98 2809,249.11 2809,228.24 2801.11,228.24 2793.22,228.24 2793.22,198.09 2793.22,167.95 2801.11,167.95 2809,167.95 2809,158.67 2809,149.4 2814.25,149.4 2819.51,149.4 2819.51,158.67 2819.51,167.95 2827.39,167.95 2835.28,167.95 2835.28,198.09 2835.28,228.24 2827.39,228.24 2819.51,228.24 2819.51,249.11 2819.51,269.98 "
|
||||||
|
id="polygon4271" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="438.08,1429.45 432.83,1429.45 432.83,1394.66 432.83,1359.88 424.94,1359.88 417.06,1359.88 417.06,1348.29 417.06,1336.69 424.94,1336.69 432.83,1336.69 432.83,1278.72 432.83,1220.74 438.08,1220.74 443.34,1220.74 443.34,1278.72 443.34,1336.69 451.23,1336.69 459.11,1336.69 459.11,1348.29 459.11,1359.88 451.23,1359.88 443.34,1359.88 443.34,1394.66 443.34,1429.45 "
|
||||||
|
id="polygon4273" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="637.85,1410.9 616.82,1410.9 616.82,1387.71 616.82,1364.52 624.71,1364.52 632.59,1364.52 632.59,1327.42 632.59,1290.31 637.85,1290.31 643.11,1290.31 643.11,1327.42 643.11,1364.52 650.99,1364.52 658.88,1364.52 658.88,1387.71 658.88,1410.9 "
|
||||||
|
id="polygon4275" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="742.99,1359.88 737.73,1359.88 737.73,1348.29 737.73,1336.69 729.85,1336.69 721.96,1336.69 721.96,1290.31 721.96,1243.93 742.99,1243.93 764.02,1243.93 764.02,1290.31 764.02,1336.69 756.13,1336.69 748.25,1336.69 748.25,1348.29 748.25,1359.88 "
|
||||||
|
id="polygon4277" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="842.87,1239.3 837.62,1239.3 837.62,1234.66 837.62,1230.02 829.73,1230.02 821.85,1230.02 821.85,1218.43 821.85,1206.83 829.73,1206.83 837.62,1206.83 837.62,1192.92 837.62,1179 842.87,1179 848.13,1179 848.13,1192.92 848.13,1206.83 856.02,1206.83 863.9,1206.83 863.9,1218.43 863.9,1230.02 856.02,1230.02 848.13,1230.02 848.13,1234.66 848.13,1239.3 "
|
||||||
|
id="polygon4279" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="33.29,1067.69 28.04,1067.69 28.04,1046.82 28.04,1025.95 20.15,1025.95 12.27,1025.95 12.27,1021.32 12.27,1016.68 20.15,1016.68 28.04,1016.68 28.04,1002.76 28.04,988.85 33.29,988.85 38.55,988.85 38.55,1002.76 38.55,1016.68 46.44,1016.68 54.32,1016.68 54.32,1021.32 54.32,1025.95 46.44,1025.95 38.55,1025.95 38.55,1046.82 38.55,1067.69 "
|
||||||
|
id="polygon4281" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="1599.88,1053.78 1594.63,1053.78 1594.63,1028.27 1594.63,1002.76 1586.74,1002.76 1578.86,1002.76 1578.86,951.75 1578.86,900.73 1586.74,900.73 1594.63,900.73 1594.63,877.54 1594.63,854.35 1599.88,854.35 1605.14,854.35 1605.14,877.54 1605.14,900.73 1613.03,900.73 1620.91,900.73 1620.91,951.75 1620.91,1002.76 1613.03,1002.76 1605.14,1002.76 1605.14,1028.27 1605.14,1053.78 "
|
||||||
|
id="polygon4283" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="1042.64,1039.87 1037.38,1039.87 1037.38,1021.32 1037.38,1002.76 1029.5,1002.76 1021.61,1002.76 1021.61,951.75 1021.61,900.73 1029.5,900.73 1037.38,900.73 1037.38,893.77 1037.38,886.82 1042.64,886.82 1047.9,886.82 1047.9,893.77 1047.9,900.73 1055.78,900.73 1063.67,900.73 1063.67,951.75 1063.67,1002.76 1055.78,1002.76 1047.9,1002.76 1047.9,1021.32 1047.9,1039.87 "
|
||||||
|
id="polygon4285" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="2209.7,956.39 2204.44,956.39 2204.44,951.75 2204.44,947.11 2196.55,947.11 2188.67,947.11 2188.67,940.15 2188.67,933.2 2196.55,933.2 2204.44,933.2 2204.44,923.92 2204.44,914.64 2209.7,914.64 2214.95,914.64 2214.95,923.92 2214.95,933.2 2222.84,933.2 2230.72,933.2 2230.72,940.15 2230.72,947.11 2222.84,947.11 2214.95,947.11 2214.95,951.75 2214.95,956.39 "
|
||||||
|
id="polygon4287" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="1195.09,933.2 1189.84,933.2 1189.84,928.56 1189.84,923.92 1181.95,923.92 1174.07,923.92 1174.07,919.28 1174.07,914.64 1181.95,914.64 1189.84,914.64 1189.84,905.37 1189.84,896.09 1195.09,896.09 1200.35,896.09 1200.35,905.37 1200.35,914.64 1208.24,914.64 1216.12,914.64 1216.12,919.28 1216.12,923.92 1208.24,923.92 1200.35,923.92 1200.35,928.56 1200.35,933.2 "
|
||||||
|
id="polygon4289" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="1452.69,1010.45 1452.69,983.87 1452.69,956.38 1447.43,956.38 1442.17,956.38 1442.17,984.21 1442.17,1010.45 1426.4,1010.45 1426.4,1014.18 1426.4,1017.91 1442.17,1017.91 1442.17,1054.12 1442.17,1090.88 1447.43,1090.88 1452.69,1090.88 1452.69,1053.78 1452.69,1017.91 1468.46,1017.91 1468.46,1014.18 1468.46,1010.45 "
|
||||||
|
id="polygon4291" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="1247.66,933.2 1242.41,933.2 1242.41,919.28 1242.41,905.37 1234.52,905.37 1226.64,905.37 1226.64,803.34 1226.64,701.3 1247.66,701.3 1268.69,701.3 1268.69,803.34 1268.69,905.37 1260.81,905.37 1252.92,905.37 1252.92,919.28 1252.92,933.2 "
|
||||||
|
id="polygon4293" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="2309.58,933.2 2304.32,933.2 2304.32,928.56 2304.32,923.92 2296.44,923.92 2288.55,923.92 2288.55,882.18 2288.55,840.44 2296.44,840.44 2304.32,840.44 2304.32,821.89 2304.32,803.34 2309.58,803.34 2314.84,803.34 2314.84,821.89 2314.84,840.44 2322.72,840.44 2330.61,840.44 2330.61,882.18 2330.61,923.92 2322.72,923.92 2314.84,923.92 2314.84,928.56 2314.84,933.2 "
|
||||||
|
id="polygon4295" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="1652.45,905.37 1647.2,905.37 1647.2,889.14 1647.2,872.9 1639.31,872.9 1631.43,872.9 1631.43,852.03 1631.43,831.16 1639.31,831.16 1647.2,831.16 1647.2,798.7 1647.2,766.23 1652.45,766.23 1657.71,766.23 1657.71,798.7 1657.71,831.16 1665.6,831.16 1673.48,831.16 1673.48,852.03 1673.48,872.9 1665.6,872.9 1657.71,872.9 1657.71,889.14 1657.71,905.37 "
|
||||||
|
id="polygon4297" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="1752.34,905.37 1731.31,905.37 1731.31,861.31 1731.31,817.25 1739.19,817.25 1747.08,817.25 1747.08,801.02 1747.08,784.78 1752.34,784.78 1757.59,784.78 1757.59,801.02 1757.59,817.25 1765.48,817.25 1773.36,817.25 1773.36,861.31 1773.36,905.37 "
|
||||||
|
id="polygon4299" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="2409.46,891.46 2404.21,891.46 2404.21,882.18 2404.21,872.9 2396.32,872.9 2388.43,872.9 2388.43,840.44 2388.43,807.97 2396.32,807.97 2404.21,807.97 2404.21,782.46 2404.21,756.96 2409.46,756.96 2414.72,756.96 2414.72,782.46 2414.72,807.97 2422.6,807.97 2430.49,807.97 2430.49,840.44 2430.49,872.9 2422.6,872.9 2414.72,872.9 2414.72,882.18 2414.72,891.46 "
|
||||||
|
id="polygon4301" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="1852.22,840.44 1846.96,840.44 1846.96,833.48 1846.96,826.52 1839.08,826.52 1831.19,826.52 1831.19,810.29 1831.19,794.06 1852.22,794.06 1873.25,794.06 1873.25,810.29 1873.25,826.52 1865.36,826.52 1857.48,826.52 1857.48,833.48 1857.48,840.44 "
|
||||||
|
id="polygon4303" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="2561.92,678.11 2540.89,678.11 2540.89,654.92 2540.89,631.73 2548.77,631.73 2556.66,631.73 2556.66,622.46 2556.66,613.18 2561.92,613.18 2567.17,613.18 2567.17,622.46 2567.17,631.73 2575.06,631.73 2582.94,631.73 2582.94,654.92 2582.94,678.11 "
|
||||||
|
id="polygon4305" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="2609.23,603.91 2609.23,569.12 2609.23,534.34 2614.49,534.34 2619.74,534.34 2619.74,569.12 2619.74,603.91 2627.63,603.91 2635.51,603.91 2635.51,610.86 2635.51,617.82 2627.63,617.82 2619.74,617.82 2619.74,624.78 2619.74,631.73 2614.49,631.73 2614.49,631.73 2609.23,631.73 2609.23,624.78 2609.23,617.82 2601.34,617.82 2593.46,617.82 2593.46,603.91 "
|
||||||
|
id="polygon4307" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="2919.02,617.82 2914.14,617.82 2914.14,610.86 2914.14,603.24 2906.25,603.24 2898.36,603.24 2898.36,522.74 2898.36,441.58 2906.25,441.58 2914.14,441.58 2914.14,420.71 2914.14,399.84 2919.39,399.84 2924.65,399.84 2924.65,420.71 2924.65,441.58 2932.53,441.58 2940.42,441.58 2940.42,522.41 2940.42,603.24 2923.9,603.24 2923.9,617.82 "
|
||||||
|
id="polygon4309" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="2714.37,376.65 2709.11,376.65 2709.11,360.42 2709.11,344.19 2701.23,344.19 2693.34,344.19 2693.34,223.6 2693.34,103.02 2701.23,103.02 2709.11,103.02 2709.11,72.87 2709.11,42.72 2714.37,42.72 2719.63,42.72 2719.63,72.87 2719.63,103.02 2727.51,103.02 2735.4,103.02 2735.4,223.6 2735.4,344.19 2727.51,344.19 2719.63,344.19 2719.63,360.42 2719.63,376.65 "
|
||||||
|
id="polygon4311" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="2009.93,873.98 2009.93,869.13 2004.67,869.13 1999.42,869.13 1999.42,873.98 1983.65,873.98 1983.65,889.68 1983.65,905.37 1991.53,905.37 1999.42,905.37 1999.42,961.02 1999.42,1016.68 2004.67,1016.68 2009.93,1016.68 2009.93,961.02 2009.93,905.37 2017.82,905.37 2025.7,905.37 2025.7,889.68 2025.7,873.98 "
|
||||||
|
id="polygon4313" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="1305.49,702.38 1305.49,697.53 1300.23,697.53 1294.98,697.53 1294.98,702.38 1279.21,702.38 1279.21,729.67 1279.21,756.96 1287.09,756.96 1294.98,756.96 1294.98,773.19 1294.98,789.42 1300.23,789.42 1305.49,789.42 1305.49,773.19 1305.49,756.96 1313.38,756.96 1321.26,756.96 1321.26,729.67 1321.26,702.38 "
|
||||||
|
id="polygon4315" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="595.79,1327.42 595.79,1322.78 595.79,1315.82 590.54,1315.82 585.28,1315.82 585.28,1322.78 585.28,1327.42 569.51,1327.42 569.51,1350.6 569.51,1373.79 577.4,1373.79 585.28,1373.79 585.28,1385.39 585.28,1396.98 590.54,1396.98 595.79,1396.98 595.79,1385.39 595.79,1373.79 603.68,1373.79 611.57,1373.79 611.57,1350.6 611.57,1327.42 "
|
||||||
|
id="polygon4317" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="543.22,1323.86 543.22,1322.39 543.22,1319.01 537.97,1319.01 532.71,1319.01 532.71,1322.39 532.71,1323.86 516.94,1323.86 516.94,1327.96 516.94,1332.05 524.82,1332.05 532.71,1332.05 532.71,1336.69 532.71,1341.33 537.97,1341.33 543.22,1341.33 543.22,1336.69 543.22,1332.05 551.11,1332.05 559,1332.05 559,1327.96 559,1323.86 "
|
||||||
|
id="polygon4319" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="948.01,1068.78 948.01,1063.92 942.76,1063.92 937.5,1063.92 937.5,1068.78 921.73,1068.78 921.73,1149.4 921.73,1230.02 942.76,1230.02 963.79,1230.02 963.79,1149.4 963.79,1068.78 "
|
||||||
|
id="polygon4321" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="2267.52,923.92 2267.52,919.28 2267.52,912.33 2262.27,912.33 2257.01,912.33 2257.01,919.28 2257.01,923.92 2241.24,923.92 2241.24,930.88 2241.24,937.83 2249.12,937.83 2257.01,937.83 2257.01,942.47 2257.01,947.11 2262.27,947.11 2267.52,947.11 2267.52,942.47 2267.52,937.83 2275.41,937.83 2283.29,937.83 2283.29,930.88 2283.29,923.92 "
|
||||||
|
id="polygon4323" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="2672.5,376.65 2672.5,372.01 2672.5,365.06 2667.24,365.06 2661.99,365.06 2661.99,372.01 2661.99,376.65 2646.03,376.65 2646.03,490.28 2646.03,620.14 2646.03,627.1 2653.91,627.1 2661.8,627.1 2661.8,641.01 2661.8,654.92 2667.06,654.92 2672.31,654.92 2672.31,641.01 2672.31,627.1 2679.75,627.1 2687.19,627.1 2687.83,501.87 2688.46,376.65 "
|
||||||
|
id="polygon4325" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="2162.38,938.92 2162.38,934.06 2157.13,934.06 2151.87,934.06 2151.87,938.92 2136.1,938.92 2136.1,952.29 2136.1,965.66 2143.98,965.66 2151.87,965.66 2151.87,984.21 2151.87,1002.76 2157.13,1002.76 2162.38,1002.76 2162.38,984.21 2162.38,965.66 2170.27,965.66 2178.15,965.66 2178.15,952.29 2178.15,938.92 "
|
||||||
|
id="polygon4327" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="390.77,1245.02 390.77,1240.16 385.51,1240.16 380.26,1240.16 380.26,1245.02 364.49,1245.02 364.49,1293.17 364.49,1341.33 372.37,1341.33 380.26,1341.33 380.26,1357.56 380.26,1373.79 385.51,1373.79 390.77,1373.79 390.77,1357.56 390.77,1341.33 398.66,1341.33 406.54,1341.33 406.54,1293.17 406.54,1245.02 "
|
||||||
|
id="polygon4329" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="290.89,1276.4 290.89,1271.76 290.89,1264.8 285.63,1264.8 280.37,1264.8 280.37,1271.76 280.37,1276.4 264.6,1276.4 264.6,1313.5 264.6,1350.6 272.49,1350.6 280.37,1350.6 280.37,1403.94 280.37,1457.28 285.63,1457.28 290.89,1457.28 290.89,1403.94 290.89,1350.6 298.77,1350.6 306.66,1350.6 306.66,1313.5 306.66,1276.4 "
|
||||||
|
id="polygon4331" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="490.65,1323.86 490.65,1319.01 485.4,1319.01 480.14,1319.01 480.14,1323.86 464.37,1323.86 464.37,1332.59 464.37,1341.33 472.25,1341.33 480.14,1341.33 480.14,1345.97 480.14,1350.6 485.4,1350.6 490.65,1350.6 490.65,1345.97 490.65,1341.33 498.54,1341.33 506.43,1341.33 506.43,1332.59 506.43,1323.86 "
|
||||||
|
id="polygon4333" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="1513.14,1016.68 1505.26,1016.68 1505.26,1009.72 1505.26,1002.76 1500,1002.76 1494.74,1002.76 1494.74,1009.72 1494.74,1016.68 1486.86,1016.68 1478.97,1016.68 1478.97,1023.29 1478.97,1030.59 1494.74,1030.59 1494.74,1034.13 1500,1034.13 1505.26,1034.13 1505.26,1030.59 1521.03,1030.59 1521.03,1023.63 1521.03,1016.68 "
|
||||||
|
id="polygon4335" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="1160.92,919.28 1153.04,919.28 1153.04,903.05 1153.04,886.82 1147.78,886.82 1142.52,886.82 1142.52,903.05 1142.52,919.28 1134.64,919.28 1126.75,919.28 1126.75,925.9 1126.75,933.2 1142.52,933.2 1142.52,936.73 1147.78,936.73 1153.04,936.73 1153.04,933.2 1168.81,933.2 1168.81,926.24 1168.81,919.28 "
|
||||||
|
id="polygon4337" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="1008.47,1044.5 1000.58,1044.5 1000.58,1000.44 1000.58,956.39 995.33,956.39 990.07,956.39 990.07,1000.44 990.07,1044.5 982.18,1044.5 974.3,1044.5 974.3,1081.27 974.3,1118.71 990.07,1118.71 990.07,1122.25 995.33,1122.25 1000.58,1122.25 1000.58,1118.71 1016.36,1118.71 1016.36,1081.61 1016.36,1044.5 "
|
||||||
|
id="polygon4339" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="908.59,1206.83 900.7,1206.83 900.7,1197.55 900.7,1188.28 895.44,1188.28 890.19,1188.28 890.19,1197.55 890.19,1206.83 882.3,1206.83 874.42,1206.83 874.42,1215.77 874.42,1225.38 890.19,1225.38 890.19,1228.92 895.44,1228.92 900.7,1228.92 900.7,1225.38 916.47,1225.38 916.47,1216.11 916.47,1206.83 "
|
||||||
|
id="polygon4341" />
|
||||||
|
<polygon
|
||||||
|
class="st4"
|
||||||
|
points="2519.86,668.84 2519.86,664.2 2519.86,657.24 2514.6,657.24 2509.35,657.24 2509.35,664.2 2509.35,668.84 2493.57,668.84 2493.57,747.34 2493.57,826.52 2509.35,826.52 2509.35,830.06 2514.6,830.06 2519.86,830.06 2519.86,826.52 2535.63,826.52 2535.63,747.68 2535.63,668.84 "
|
||||||
|
id="polygon4343" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 67 KiB |
After Width: | Height: | Size: 265 KiB |
After Width: | Height: | Size: 859 KiB |
After Width: | Height: | Size: 93 KiB |
After Width: | Height: | Size: 5.4 MiB |
After Width: | Height: | Size: 12 KiB |
|
@ -0,0 +1,224 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="300"
|
||||||
|
height="60"
|
||||||
|
viewBox="0 0 300 60"
|
||||||
|
version="1.1"
|
||||||
|
xml:space="preserve"
|
||||||
|
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
|
||||||
|
id="svg2024"
|
||||||
|
sodipodi:docname="b.tc.svg"
|
||||||
|
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||||
|
id="defs2028" /><sodipodi:namedview
|
||||||
|
id="namedview2026"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#eeeeee"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="2.4329897"
|
||||||
|
inkscape:cx="180.02542"
|
||||||
|
inkscape:cy="38.430085"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1164"
|
||||||
|
inkscape:window-x="1920"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg2024" />
|
||||||
|
<g
|
||||||
|
transform="matrix(0.36272439,0,0,0.36272439,-2807.9948,-1149.7272)"
|
||||||
|
id="g2022"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<g
|
||||||
|
id="g2020"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<g
|
||||||
|
transform="matrix(1.01863,0,0,1.01863,3894.85,1092.08)"
|
||||||
|
id="g1946"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="m 4182.98,2146.68 c -3.06,0 -5.43,2.5 -5.43,5.46 0,2.96 2.35,5.43 5.39,5.43 3.06,0 5.45,-2.5 5.45,-5.46 0,-2.98 -2.37,-5.43 -5.41,-5.43 z m -0.04,9.43 c -2.22,0 -3.93,-1.79 -3.93,-3.97 0,-2.17 1.73,-4 3.97,-4 2.22,0 3.95,1.79 3.95,3.97 0,2.18 -1.73,4 -3.99,4 z m 2.29,-4.91 c 0,-1.11 -0.76,-1.75 -2.09,-1.75 h -2.24 v 4.96 h 1.45 v -1.34 h 0.74 l 0.67,1.34 h 1.65 l -1.02,-1.61 c 0.54,-0.31 0.84,-0.85 0.84,-1.6 z m -2.88,0.77 v -1.41 h 0.79 c 0.45,0 0.7,0.25 0.7,0.7 0,0.45 -0.25,0.71 -0.7,0.71 z"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1;fill-rule:nonzero"
|
||||||
|
id="path1944" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(1.55853,0,0,1.55853,5905.75,2083.98)"
|
||||||
|
id="g2018"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<g
|
||||||
|
id="g2016"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<g
|
||||||
|
transform="translate(1213.44,-72.6825)"
|
||||||
|
id="g1950"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="m 97.44,836.68 -7.503,3.711 v -27.876 l 7.503,-3.711 z m 10.187,-5.038 -7.504,3.711 v -27.877 l 7.498,-3.708 h 0.006 z m 2.683,-1.327 v -27.877 l 7.503,-3.711 v 27.877 z"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1"
|
||||||
|
id="path1948" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(1213.44,-72.6995)"
|
||||||
|
id="g1954"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="m 87.321,832.888 v 7.503 l -27.842,-13.77 v -7.504 z m 0,-10.187 v 7.503 l -27.842,-13.77 v -7.503 z m 0,-10.187 v 7.504 L 59.479,806.247 v -7.503 z"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1"
|
||||||
|
id="path1952" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(1213.44,-88.9345)"
|
||||||
|
id="g1958"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="m 135.617,806.173 v 43.024 h 22.033 c 10.311,0 16.94,-4.665 16.94,-12.03 0,-5.462 -3.376,-9.758 -8.654,-10.863 4.48,-1.289 7.303,-4.91 7.303,-9.267 0,-6.629 -6.444,-10.864 -16.509,-10.864 z m 12.705,9.575 h 7.733 c 2.516,0 4.112,1.35 4.112,3.56 0,2.27 -1.596,3.743 -4.112,3.743 h -7.733 z m 0,16.018 h 7.733 c 3.252,0 5.278,1.473 5.278,3.806 0,2.516 -2.026,4.112 -5.278,4.112 h -7.733 z"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1;fill-rule:nonzero"
|
||||||
|
id="path1956" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(1213.44,-88.9336)"
|
||||||
|
id="g1962"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<rect
|
||||||
|
x="182.261"
|
||||||
|
y="806.17297"
|
||||||
|
width="12.766"
|
||||||
|
height="43.022999"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1"
|
||||||
|
id="rect1960" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(1213.44,-88.9345)"
|
||||||
|
id="g1966"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="m 235.84,816.362 v -10.189 h -33.08 v 10.189 h 10.096 v 32.835 h 12.827 v -32.835 z"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1;fill-rule:nonzero"
|
||||||
|
id="path1964" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(1213.44,-88.7505)"
|
||||||
|
id="g1970"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="m 263.5,805.621 c -13.318,0 -23.138,9.268 -23.138,21.788 0,12.704 9.636,22.156 22.709,22.156 6.505,0 13.563,-3.253 18.228,-8.286 l -7.365,-7.855 c -2.946,3.007 -6.935,4.971 -10.249,4.971 -5.831,0 -10.25,-4.787 -10.25,-11.109 0,-6.321 4.419,-11.047 10.25,-11.047 3.559,0 7.549,2.271 10.249,5.708 l 7.365,-8.715 c -4.358,-4.665 -11.293,-7.611 -17.799,-7.611 z"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1;fill-rule:nonzero"
|
||||||
|
id="path1968" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(1213.44,-88.7505)"
|
||||||
|
id="g1974"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="m 307.935,805.621 c -13.502,0 -23.445,9.206 -23.445,21.849 0,12.705 9.943,22.095 23.445,22.095 13.502,0 23.445,-9.452 23.445,-22.095 0,-12.581 -9.943,-21.849 -23.445,-21.849 z m 0.184,10.679 c 5.647,0 10.188,4.726 10.188,11.232 0,6.505 -4.541,11.354 -10.188,11.354 -5.646,0 -10.556,-4.849 -10.556,-11.354 0,-6.506 4.848,-11.232 10.556,-11.232 z"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1;fill-rule:nonzero"
|
||||||
|
id="path1972" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(1213.44,-88.9336)"
|
||||||
|
id="g1978"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<rect
|
||||||
|
x="338.62201"
|
||||||
|
y="806.17297"
|
||||||
|
width="12.766"
|
||||||
|
height="43.022999"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1"
|
||||||
|
id="rect1976" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(1213.44,-88.9345)"
|
||||||
|
id="g1982"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="m 399.935,849.197 v -43.024 h -11.661 v 24.059 l -18.228,-24.059 h -10.925 v 43.024 h 11.722 v -23.936 l 18.228,23.936 z"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1;fill-rule:nonzero"
|
||||||
|
id="path1980" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(1213.44,-20.0835)"
|
||||||
|
id="g1986"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="m 147.814,798.62 v -10.721 h -3.747 l -2.34,5.598 -2.34,-5.598 h -3.747 v 10.721 h 3.089 v -5.873 l 1.836,4.833 h 2.324 l 1.836,-4.833 v 5.873 z"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1;fill-rule:nonzero"
|
||||||
|
id="path1984" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(1213.44,-20.0835)"
|
||||||
|
id="g1990"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="m 157.25,797.106 0.536,1.514 h 3.777 l -4.358,-10.721 h -3.64 l -4.527,10.721 h 3.64 l 0.55,-1.514 z m -0.871,-2.539 h -2.233 l 1.132,-3.135 z"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1;fill-rule:nonzero"
|
||||||
|
id="path1988" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(1213.44,-20.0375)"
|
||||||
|
id="g1994"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="m 169.409,792.931 v 2.493 c -0.52,0.214 -1.04,0.351 -1.407,0.351 -1.392,0 -2.416,-1.07 -2.416,-2.554 0,-1.453 1.009,-2.523 2.386,-2.523 0.887,0 1.927,0.443 2.645,1.132 l 2.004,-2.432 c -1.147,-1.01 -2.967,-1.652 -4.634,-1.652 -3.503,0 -6.041,2.31 -6.041,5.475 0,3.182 2.447,5.506 5.811,5.506 1.53,0 3.503,-0.581 4.696,-1.376 v -4.42 z"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1;fill-rule:nonzero"
|
||||||
|
id="path1992" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(1213.44,-20.0835)"
|
||||||
|
id="g1998"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="m 181.675,797.106 0.535,1.514 h 3.778 l -4.359,-10.721 h -3.64 l -4.527,10.721 h 3.64 l 0.551,-1.514 z m -0.872,-2.539 h -2.233 l 1.132,-3.135 z"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1;fill-rule:nonzero"
|
||||||
|
id="path1996" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(1213.44,-20.0835)"
|
||||||
|
id="g2002"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="m 196.48,790.117 v -2.218 h -9.544 v 2.723 h 4.818 l -5.001,5.781 v 2.217 h 9.834 v -2.722 h -5.109 z"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1;fill-rule:nonzero"
|
||||||
|
id="path2000" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(1213.44,-20.0836)"
|
||||||
|
id="g2006"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<rect
|
||||||
|
x="198.269"
|
||||||
|
y="787.89899"
|
||||||
|
width="3.5480001"
|
||||||
|
height="10.721"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1"
|
||||||
|
id="rect2004" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(1213.44,-20.0835)"
|
||||||
|
id="g2010"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="m 214.374,798.62 v -10.721 h -3.212 v 5.506 l -4.237,-5.506 h -2.967 v 10.721 h 3.227 v -5.475 l 4.222,5.475 z"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1;fill-rule:nonzero"
|
||||||
|
id="path2008" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(1213.44,-20.0835)"
|
||||||
|
id="g2014"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="m 225.584,790.591 v -2.692 h -9.069 v 10.721 h 9.207 v -2.691 h -5.659 v -1.331 h 5.016 v -2.692 h -5.016 v -1.315 z"
|
||||||
|
style="fill:#a0a0a0;fill-opacity:1;fill-rule:nonzero"
|
||||||
|
id="path2012" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 9.3 KiB |
|
@ -0,0 +1,114 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
id="レイヤー_1"
|
||||||
|
data-name="レイヤー 1"
|
||||||
|
viewBox="0 0 236.18 102.3"
|
||||||
|
version="1.1"
|
||||||
|
sodipodi:docname="btcpay.svg"
|
||||||
|
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview33"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#eeeeee"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="6.5250125"
|
||||||
|
inkscape:cx="113.0266"
|
||||||
|
inkscape:cy="18.927167"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1122"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="レイヤー_1" />
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<style
|
||||||
|
id="style2">.cls-1{fill:#cedc21;}.cls-2{fill:#51b13e;}.cls-3{fill:#1e7a44;}.cls-4{fill:#fff;}</style>
|
||||||
|
</defs>
|
||||||
|
<title
|
||||||
|
id="title6">btcpay3</title>
|
||||||
|
<path
|
||||||
|
class="cls-1"
|
||||||
|
d="m 66.254386,38.020666 a 2.2298283,2.2298283 0 0 1 -2.229828,-2.229828 v -33.5552 a 2.2298283,2.2298283 0 0 1 4.459656,0 v 33.5552 a 2.2298283,2.2298283 0 0 1 -2.229828,2.229828 z"
|
||||||
|
id="path8"
|
||||||
|
style="stroke-width:0.371638" />
|
||||||
|
<path
|
||||||
|
class="cls-2"
|
||||||
|
d="M 66.258102,38.020666 A 2.2298283,2.2298283 0 0 1 65.306709,33.776559 L 78.752574,27.395534 64.935071,17.220083 a 2.2298283,2.2298283 0 1 1 2.642347,-3.590023 l 16.812905,12.386697 a 2.2298283,2.2298283 0 0 1 -0.371638,3.809289 l -16.805473,7.97907 a 2.1926645,2.1926645 0 0 1 -0.95511,0.21555 z"
|
||||||
|
id="path10"
|
||||||
|
style="stroke-width:0.371638" />
|
||||||
|
<path
|
||||||
|
class="cls-1"
|
||||||
|
d="M 66.258102,24.831231 A 2.2298283,2.2298283 0 0 1 64.935071,20.806392 L 78.745141,10.619792 65.306709,4.2499161 A 2.2318135,2.2318135 0 1 1 67.213212,0.2139265 L 84.026118,8.192996 a 2.2298283,2.2298283 0 0 1 0.371638,3.80929 L 67.577418,24.396415 a 2.2298283,2.2298283 0 0 1 -1.319316,0.434816 z"
|
||||||
|
id="path12"
|
||||||
|
style="stroke-width:0.371638" />
|
||||||
|
<polygon
|
||||||
|
class="cls-3"
|
||||||
|
points="12,38.46 12,63.84 29.21,51.16 "
|
||||||
|
id="polygon14"
|
||||||
|
transform="matrix(0.37163806,0,0,0.37163806,64.024558,0.0020928)" />
|
||||||
|
<rect
|
||||||
|
class="cls-4"
|
||||||
|
y="10.341063"
|
||||||
|
width="4.4596572"
|
||||||
|
height="10.870413"
|
||||||
|
id="rect16"
|
||||||
|
x="64.024559"
|
||||||
|
style="stroke-width:0.371638" />
|
||||||
|
<path
|
||||||
|
class="cls-1"
|
||||||
|
d="m 68.484214,2.235638 a 2.2298283,2.2298283 0 0 0 -4.459656,0 v 28.080971 h 4.459656 z"
|
||||||
|
id="path18"
|
||||||
|
style="stroke-width:0.371638" />
|
||||||
|
<path
|
||||||
|
class="cls-4"
|
||||||
|
d="m 105.21419,18.661196 c 1.86927,0.530602 2.92074,2.22463 2.92074,4.347034 0,3.315039 -2.02018,4.867898 -4.78027,4.867898 H 97.045857 V 10.161846 h 5.564013 c 2.70655,0 4.80461,1.289993 4.80461,4.653711 0,1.694028 -0.70098,3.261492 -2.20029,3.845639 z m -2.57998,-0.433242 c 1.99584,0 3.61684,-0.705846 3.61684,-3.436737 0,-2.730891 -1.66969,-3.490283 -3.69473,-3.490283 h -4.322696 v 6.941623 z m 0.63282,8.47501 c 2.02018,0 3.64119,-1.061201 3.64119,-3.694734 0,-2.833117 -1.84494,-3.689867 -4.14745,-3.689867 h -4.527146 v 7.384601 z"
|
||||||
|
id="path20"
|
||||||
|
style="stroke-width:0.48679" />
|
||||||
|
<path
|
||||||
|
class="cls-4"
|
||||||
|
d="m 119.95906,10.161846 v 1.085541 h -4.8679 v 16.619005 h -1.18777 V 11.247387 h -4.8679 v -1.085541 z"
|
||||||
|
id="path22"
|
||||||
|
style="stroke-width:0.48679" />
|
||||||
|
<path
|
||||||
|
class="cls-4"
|
||||||
|
d="m 128.27829,9.908715 c 3.01323,0 5.74413,1.518784 6.60574,5.135633 h -1.13909 c -0.80807,-2.959682 -3.18847,-4.050092 -5.49099,-4.050092 -4.17178,0 -6.37207,3.407529 -6.37207,8.017429 0,4.867898 2.20029,7.96875 6.39641,7.96875 2.48263,0 4.70726,-1.114749 5.56888,-4.381109 h 1.13422 a 6.6203418,6.6203418 0 0 1 -6.7031,5.515329 c -4.72673,0 -7.55984,-3.490283 -7.55984,-9.107838 0,-5.379027 2.98402,-9.098102 7.55984,-9.098102 z"
|
||||||
|
id="path24"
|
||||||
|
style="stroke-width:0.48679" />
|
||||||
|
<path
|
||||||
|
class="cls-4"
|
||||||
|
d="m 143.88478,10.161846 c 3.0619,0 5.28653,1.995838 5.28653,5.841478 0,3.641188 -2.22463,5.841478 -5.28653,5.841478 h -4.65372 v 5.997251 h -1.16343 V 10.161846 Z m 0,10.543868 c 2.25384,0 4.09876,-1.46037 4.09876,-4.70239 0,-3.242021 -1.77191,-4.72673 -4.09876,-4.72673 h -4.65372 v 9.42912 z"
|
||||||
|
id="path26"
|
||||||
|
style="stroke-width:0.48679" />
|
||||||
|
<path
|
||||||
|
class="cls-4"
|
||||||
|
d="m 149.37576,27.866392 v -0.150905 l 7.05359,-17.60232 h 0.53547 l 6.98057,17.60232 v 0.150905 h -1.25106 l -1.99583,-5.111293 h -8.06124 l -1.99584,5.111293 z m 7.30185,-15.655161 -3.63632,9.438855 h 7.25803 z"
|
||||||
|
id="path28"
|
||||||
|
style="stroke-width:0.48679" />
|
||||||
|
<path
|
||||||
|
class="cls-4"
|
||||||
|
d="m 174.44058,10.161846 h 1.26565 v 0.175245 L 170.1909,20.50613 v 7.360262 h -1.21211 V 20.50613 l -5.53967,-10.193379 v -0.150905 h 1.29 l 2.39987,4.502806 2.43395,4.678051 v 0 l 2.43394,-4.678051 z"
|
||||||
|
id="path30"
|
||||||
|
style="stroke-width:0.48679" />
|
||||||
|
<metadata
|
||||||
|
id="metadata35">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:title>btcpay3</dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5.3 KiB |
|
@ -0,0 +1,105 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="300"
|
||||||
|
height="60"
|
||||||
|
viewBox="0 0 79.374998 15.875"
|
||||||
|
version="1.1"
|
||||||
|
id="svg5"
|
||||||
|
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||||
|
sodipodi:docname="inspin.svg"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview7"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#eeeeee"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="4.7572176"
|
||||||
|
inkscape:cx="123.07614"
|
||||||
|
inkscape:cy="8.9337936"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1122"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="layer1" />
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1">
|
||||||
|
<g
|
||||||
|
aria-label="inspin.digital"
|
||||||
|
id="text290"
|
||||||
|
style="font-weight:bold;font-size:12.2249px;font-family:'Sofia Pro';-inkscape-font-specification:'Sofia Pro, Bold';fill:#a1a1a1;fill-opacity:0.996078;stroke-width:0.176321"
|
||||||
|
transform="matrix(0.79540017,0,0,0.79540017,8.1200556,1.6240111)">
|
||||||
|
<path
|
||||||
|
d="m 3.8868383,10.871476 h 1.601462 V 5.1624478 H 3.8868383 Z M 3.6667901,3.1942388 c 0,0.5378956 0.4645462,0.9657671 1.0146667,0.9657671 0.5623455,0 1.0146668,-0.4278715 1.0146668,-0.9657671 0,-0.5378956 -0.4523213,-0.9535422 -1.0146668,-0.9535422 -0.5501205,0 -1.0146667,0.4156466 -1.0146667,0.9535422 z"
|
||||||
|
style="-inkscape-font-specification:'Sofia Pro Ultra-Bold';fill:#a1a1a1;fill-opacity:0.996078"
|
||||||
|
id="path716" />
|
||||||
|
<path
|
||||||
|
d="M 7.101993,10.871476 H 8.7034549 V 7.8763756 c 0,-1.0391165 0.7090442,-1.344739 1.2836145,-1.344739 0.5501206,0 1.0880166,0.4034217 1.0880166,1.2958394 v 3.044 h 1.601461 V 7.7419017 c 0.01223,-1.711486 -0.770168,-2.7261527 -2.261606,-2.7261527 -0.5501206,0 -1.4425383,0.3300723 -1.7114861,1.0757912 V 5.1624478 H 7.101993 Z"
|
||||||
|
style="-inkscape-font-specification:'Sofia Pro Ultra-Bold';fill:#a1a1a1;fill-opacity:0.996078"
|
||||||
|
id="path718" />
|
||||||
|
<path
|
||||||
|
d="m 16.234002,11.018175 c 1.173591,0 2.396081,-0.62347 2.396081,-1.8215102 0,-0.4645462 -0.171149,-1.3202892 -1.540338,-1.6870362 l -0.941317,-0.244498 c -0.317848,-0.085574 -0.562346,-0.2200482 -0.562346,-0.488996 0,-0.2933976 0.293398,-0.5012209 0.660145,-0.5012209 0.378972,0 0.696819,0.2078233 0.696819,0.5990201 h 1.528113 C 18.483384,5.5169699 17.260894,5.015749 16.221777,5.015749 c -1.320289,0 -2.237157,0.8312932 -2.237157,1.711486 0,0.5990201 0.195599,1.4180884 1.662587,1.8092852 l 0.757944,0.1833735 c 0.427871,0.1100241 0.62347,0.2322731 0.62347,0.4767711 0,0.3300723 -0.354522,0.5623455 -0.819069,0.5623455 -0.562345,0 -0.843518,-0.3545222 -0.843518,-0.6845945 h -1.503663 c 0.01223,1.2591652 1.173591,1.9437592 2.371631,1.9437592 z"
|
||||||
|
style="-inkscape-font-specification:'Sofia Pro Ultra-Bold';fill:#a1a1a1;fill-opacity:0.996078"
|
||||||
|
id="path720" />
|
||||||
|
<path
|
||||||
|
d="m 19.889257,13.670978 h 1.601462 v -3.508546 c 0.403421,0.586795 1.185815,0.855743 1.833735,0.855743 1.466988,0 2.799502,-1.1613655 2.799502,-3.0073255 0,-1.8215101 -1.332514,-2.9951005 -2.799502,-2.9951005 -0.64792,0 -1.430314,0.2689478 -1.833735,0.8435181 V 5.1624478 h -1.601462 z m 1.650361,-5.6479036 c 0,-0.8679679 0.69682,-1.5158876 1.479213,-1.5158876 0.806844,0 1.466988,0.6723695 1.466988,1.5158876 0,0.8435181 -0.660144,1.5036627 -1.466988,1.5036627 -0.745719,0 -1.479213,-0.6356948 -1.479213,-1.5036627 z"
|
||||||
|
style="-inkscape-font-specification:'Sofia Pro Ultra-Bold';fill:#a1a1a1;fill-opacity:0.996078"
|
||||||
|
id="path722" />
|
||||||
|
<path
|
||||||
|
d="m 27.395349,10.871476 h 1.601462 V 5.1624478 H 27.395349 Z M 27.175301,3.1942388 c 0,0.5378956 0.464546,0.9657671 1.014666,0.9657671 0.562346,0 1.014667,-0.4278715 1.014667,-0.9657671 0,-0.5378956 -0.452321,-0.9535422 -1.014667,-0.9535422 -0.55012,0 -1.014666,0.4156466 -1.014666,0.9535422 z"
|
||||||
|
style="-inkscape-font-specification:'Sofia Pro Ultra-Bold';fill:#a1a1a1;fill-opacity:0.996078"
|
||||||
|
id="path724" />
|
||||||
|
<path
|
||||||
|
d="m 30.610504,10.871476 h 1.601462 V 7.8763756 c 0,-1.0391165 0.709044,-1.344739 1.283614,-1.344739 0.550121,0 1.088016,0.4034217 1.088016,1.2958394 v 3.044 h 1.601462 V 7.7419017 c 0.01223,-1.711486 -0.770169,-2.7261527 -2.261606,-2.7261527 -0.550121,0 -1.442539,0.3300723 -1.711486,1.0757912 V 5.1624478 h -1.601462 z"
|
||||||
|
style="-inkscape-font-specification:'Sofia Pro Ultra-Bold';fill:#a1a1a1;fill-opacity:0.996078"
|
||||||
|
id="path726" />
|
||||||
|
<path
|
||||||
|
d="m 38.520023,10.9815 c 0.562345,0 1.039116,-0.415646 1.039116,-0.9902166 0,-0.5623455 -0.476771,-0.9779921 -1.039116,-0.9779921 -0.550121,0 -1.014667,0.4156466 -1.014667,0.9779921 0,0.5745706 0.464546,0.9902166 1.014667,0.9902166 z"
|
||||||
|
style="-inkscape-font-specification:'Sofia Pro Ultra-Bold';fill:#a1a1a1;fill-opacity:0.996078"
|
||||||
|
id="path728" />
|
||||||
|
<path
|
||||||
|
d="m 43.348869,11.018175 c 0.635695,0 1.430313,-0.268948 1.833735,-0.855743 v 0.709044 h 1.601462 V 2.0573231 h -1.601462 v 3.801944 C 44.779182,5.2724719 44.009013,5.015749 43.348869,5.015749 c -1.466988,0 -2.799502,1.1613655 -2.799502,2.9951005 0,1.8337351 1.332514,3.0073255 2.799502,3.0073255 z M 42.175278,8.0108495 c 0,-0.8435181 0.67237,-1.5036627 1.479213,-1.5036627 0.745719,0 1.479213,0.6234699 1.479213,1.5036627 0,0.8679679 -0.696819,1.5158876 -1.479213,1.5158876 -0.806843,0 -1.479213,-0.6845944 -1.479213,-1.5158876 z"
|
||||||
|
style="-inkscape-font-specification:'Sofia Pro Ultra-Bold';fill:#a1a1a1;fill-opacity:0.996078"
|
||||||
|
id="path730" />
|
||||||
|
<path
|
||||||
|
d="m 48.397756,10.871476 h 1.601462 V 5.1624478 H 48.397756 Z M 48.177708,3.1942388 c 0,0.5378956 0.464546,0.9657671 1.014667,0.9657671 0.562345,0 1.014666,-0.4278715 1.014666,-0.9657671 0,-0.5378956 -0.452321,-0.9535422 -1.014666,-0.9535422 -0.550121,0 -1.014667,0.4156466 -1.014667,0.9535422 z"
|
||||||
|
style="-inkscape-font-specification:'Sofia Pro Ultra-Bold';fill:#a1a1a1;fill-opacity:0.996078"
|
||||||
|
id="path732" />
|
||||||
|
<path
|
||||||
|
d="m 54.229037,13.817677 c 2.017109,0 3.276274,-1.161365 3.276274,-3.655245 V 5.1624478 H 55.903849 V 5.8470422 C 55.488202,5.2846968 54.718033,5.015749 54.070114,5.015749 c -1.466988,0 -2.799502,1.1613655 -2.799502,2.9951005 0,1.8337351 1.332514,3.0073255 2.799502,3.0073255 0.635694,0 1.418088,-0.281173 1.833735,-0.843518 v 0.158924 c 0,1.479212 -0.64792,2.053783 -1.674812,2.053783 -0.611245,0 -1.19804,-0.366747 -1.442538,-0.892418 l -1.332514,0.57457 c 0.488996,1.063567 1.552562,1.748161 2.775052,1.748161 z M 52.896523,8.0108495 c 0,-0.8435181 0.67237,-1.5036627 1.479213,-1.5036627 0.745719,0 1.479213,0.6234699 1.479213,1.5036627 0,0.8679679 -0.696819,1.5158876 -1.479213,1.5158876 -0.806843,0 -1.479213,-0.6845944 -1.479213,-1.5158876 z"
|
||||||
|
style="-inkscape-font-specification:'Sofia Pro Ultra-Bold';fill:#a1a1a1;fill-opacity:0.996078"
|
||||||
|
id="path734" />
|
||||||
|
<path
|
||||||
|
d="m 59.119005,10.871476 h 1.601462 V 5.1624478 H 59.119005 Z M 58.898956,3.1942388 c 0,0.5378956 0.464547,0.9657671 1.014667,0.9657671 0.562346,0 1.014667,-0.4278715 1.014667,-0.9657671 0,-0.5378956 -0.452321,-0.9535422 -1.014667,-0.9535422 -0.55012,0 -1.014667,0.4156466 -1.014667,0.9535422 z"
|
||||||
|
style="-inkscape-font-specification:'Sofia Pro Ultra-Bold';fill:#a1a1a1;fill-opacity:0.996078"
|
||||||
|
id="path736" />
|
||||||
|
<path
|
||||||
|
d="M 62.884278,10.871476 H 64.48574 V 6.4093876 h 1.210265 V 5.1624478 H 64.48574 V 3.0842147 h -1.601462 v 2.0782331 h -1.039117 v 1.2469398 h 1.039117 z"
|
||||||
|
style="-inkscape-font-specification:'Sofia Pro Ultra-Bold';fill:#a1a1a1;fill-opacity:0.996078"
|
||||||
|
id="path738" />
|
||||||
|
<path
|
||||||
|
d="m 69.008965,11.018175 c 0.770169,0 1.503663,-0.378972 1.882635,-0.965767 v 0.819068 h 1.601462 V 5.1624478 H 70.8916 V 5.9203916 C 70.512628,5.3335964 69.779134,5.015749 69.04564,5.015749 c -1.638137,0 -2.787277,1.2347149 -2.787277,3.0073254 0,1.7726106 1.17359,2.9951006 2.750602,2.9951006 z M 67.896499,8.0230744 c 0,-0.8312932 0.62347,-1.5158876 1.454763,-1.5158876 0.794619,0 1.491438,0.6479197 1.491438,1.5158876 0,0.8190683 -0.672369,1.5036627 -1.479213,1.5036627 -0.843518,0 -1.466988,-0.7090442 -1.466988,-1.5036627 z"
|
||||||
|
style="-inkscape-font-specification:'Sofia Pro Ultra-Bold';fill:#a1a1a1;fill-opacity:0.996078"
|
||||||
|
id="path740" />
|
||||||
|
<path
|
||||||
|
d="M 74.106748,10.871476 H 75.70821 V 2.0573231 h -1.601462 z"
|
||||||
|
style="-inkscape-font-specification:'Sofia Pro Ultra-Bold';fill:#a1a1a1;fill-opacity:0.996078"
|
||||||
|
id="path742" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 8.8 KiB |
|
@ -0,0 +1,98 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="300"
|
||||||
|
height="60"
|
||||||
|
viewBox="0 0 79.374998 15.875"
|
||||||
|
version="1.1"
|
||||||
|
id="svg5"
|
||||||
|
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||||
|
sodipodi:docname="sponsor.svg"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview7"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#eeeeee"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="3.3638608"
|
||||||
|
inkscape:cx="127.53203"
|
||||||
|
inkscape:cy="9.0669625"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1164"
|
||||||
|
inkscape:window-x="1920"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="layer1" />
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1">
|
||||||
|
<g
|
||||||
|
id="g574">
|
||||||
|
<path
|
||||||
|
id="rect579"
|
||||||
|
style="color:#000000;fill:#a0a0a0;stroke-width:1.25646;-inkscape-stroke:none"
|
||||||
|
d="M 11.924935,0.64830619 V 1.0658031 3.2876914 h 0.831747 V 1.4800535 h 1.812832 V 0.64830619 Z m 52.880551,0 V 1.4800535 h 1.812832 v 1.8076379 h 0.831747 V 0.64830619 Z M 11.924935,9.9845221 v 2.4361559 h 2.644579 V 11.588282 H 12.756682 V 9.9845221 Z m 54.693383,0 v 1.6037599 h -1.812832 v 0.832396 h 2.644579 V 9.9845221 Z" />
|
||||||
|
<path
|
||||||
|
id="path317"
|
||||||
|
style="color:#000000;font-weight:600;font-size:6.58608px;font-family:'Titillium Web';-inkscape-font-specification:'Titillium Web, Semi-Bold';fill:#a0a0a0;stroke:none;stroke-width:0.179638;-inkscape-stroke:none"
|
||||||
|
d="M 18.420064 3.988387 L 19.894393 6.75566 L 19.894393 8.6795736 L 20.812683 8.6795736 L 20.812683 8.5896566 L 20.812683 6.75566 L 22.275643 3.988387 L 21.254 3.988387 L 20.347595 5.8125651 L 19.449459 3.988387 L 18.420064 3.988387 z " />
|
||||||
|
<path
|
||||||
|
id="path323"
|
||||||
|
style="color:#000000;font-weight:600;font-size:6.58608px;font-family:'Titillium Web';-inkscape-font-specification:'Titillium Web, Semi-Bold';fill:#a0a0a0;stroke:none;stroke-width:0.179638;-inkscape-stroke:none"
|
||||||
|
d="M 23.44353 5.1345703 C 22.900428 5.1345703 22.489358 5.2838101 22.239986 5.5955241 L 22.239986 5.5975911 C 21.998109 5.9058688 21.884969 6.355023 21.884969 6.937561 C 21.884969 7.5198688 21.995559 7.9687359 22.232235 8.2811483 C 22.473177 8.5991927 22.887408 8.7519206 23.44353 8.7519206 C 23.999654 8.7519206 24.413366 8.5991927 24.654309 8.2811483 C 24.890985 7.9687359 25.002091 7.5198688 25.002091 6.937561 C 25.002091 6.3555831 24.884681 5.9057606 24.638806 5.5975911 C 24.393645 5.2861822 23.985863 5.1345703 23.44353 5.1345703 z M 23.44353 5.9200521 C 23.706759 5.9200521 23.861247 5.9924547 23.947375 6.1288249 L 23.947375 6.1308919 C 24.039045 6.2702365 24.097754 6.53848 24.097754 6.9298096 C 24.097754 7.3217972 24.043509 7.5977349 23.957194 7.7478475 C 23.874994 7.8908039 23.719834 7.9669556 23.44353 7.9669556 C 23.167228 7.9669556 23.009999 7.8908034 22.927799 7.7478475 C 22.84149 7.5977349 22.789307 7.3217972 22.789307 6.9298096 C 22.789307 6.5390762 22.845752 6.2706581 22.933484 6.1308919 C 22.933691 6.130561 22.933276 6.1291549 22.933484 6.1288249 C 23.024104 5.9926085 23.181515 5.9200521 23.44353 5.9200521 z " />
|
||||||
|
<path
|
||||||
|
id="path487"
|
||||||
|
style="color:#000000;font-weight:600;font-size:6.58608px;font-family:'Titillium Web';-inkscape-font-specification:'Titillium Web, Semi-Bold';fill:#a0a0a0;stroke:none;stroke-width:0.179638;-inkscape-stroke:none"
|
||||||
|
d="M 25.500252 5.2069173 L 25.500252 7.0155924 C 25.500252 7.6334401 25.572784 8.073608 25.744165 8.3478109 C 25.919265 8.6229687 26.26037 8.7519206 26.728601 8.7519206 C 26.979026 8.7519206 27.251109 8.6438483 27.529069 8.5038737 L 27.529069 8.6795736 L 28.419971 8.6795736 L 28.419971 5.2069173 L 27.529069 5.2069173 L 27.529069 5.2968343 L 27.529069 7.7912557 L 27.484627 7.8088257 L 27.48256 7.810376 C 27.297163 7.8927749 27.093105 7.9333659 26.867094 7.9333659 C 26.754787 7.933366 26.668071 7.9174494 26.607161 7.8904744 C 26.546252 7.8635005 26.511867 7.8301211 26.488306 7.7814372 C 26.437286 7.6760021 26.398389 7.413518 26.398389 7.0233439 L 26.398389 5.2069173 L 25.500252 5.2069173 z " />
|
||||||
|
<path
|
||||||
|
id="path335"
|
||||||
|
style="color:#000000;font-weight:600;font-size:6.58608px;font-family:'Titillium Web';-inkscape-font-specification:'Titillium Web, Semi-Bold';fill:#a0a0a0;stroke:none;stroke-width:0.179638;-inkscape-stroke:none"
|
||||||
|
d="M 31.119031 5.1170003 L 31.013611 5.1366374 C 30.673935 5.2005765 30.336195 5.3600522 30.000236 5.5588338 L 30.000236 5.2069173 L 29.109334 5.2069173 L 29.109334 8.6795736 L 29.199251 8.6795736 L 30.007987 8.6795736 L 30.007987 6.3515503 L 30.097904 6.3143433 C 30.357832 6.1992934 30.673994 6.1048277 31.046684 6.0311564 L 31.119031 6.0156535 L 31.119031 5.1170003 z " />
|
||||||
|
<path
|
||||||
|
id="path341"
|
||||||
|
style="color:#000000;font-weight:600;font-size:6.58608px;font-family:'Titillium Web';-inkscape-font-specification:'Titillium Web, Semi-Bold';fill:#a0a0a0;stroke:none;stroke-width:0.179638;-inkscape-stroke:none"
|
||||||
|
d="M 33.02124 3.988387 L 33.02124 8.6795736 L 35.730636 8.6795736 L 35.730636 8.5896566 L 35.730636 7.847583 L 33.931779 7.847583 L 33.931779 3.988387 L 33.02124 3.988387 z " />
|
||||||
|
<path
|
||||||
|
id="path347"
|
||||||
|
style="color:#000000;font-weight:600;font-size:6.58608px;font-family:'Titillium Web';-inkscape-font-specification:'Titillium Web, Semi-Bold';fill:#a0a0a0;stroke:none;stroke-width:0.179638;-inkscape-stroke:none"
|
||||||
|
d="M 37.464897 5.1345703 C 36.921793 5.1345703 36.51124 5.2838101 36.261869 5.5955241 L 36.261869 5.5975911 C 36.019993 5.9058688 35.906335 6.355023 35.906335 6.937561 C 35.906335 7.5198688 36.017442 7.9687359 36.254118 8.2811483 C 36.495061 8.5991927 36.908773 8.7519206 37.464897 8.7519206 C 38.021018 8.7519206 38.434733 8.5991927 38.675675 8.2811483 C 38.912352 7.9687359 39.023458 7.5198688 39.023458 6.937561 C 39.023458 6.3555831 38.906047 5.9057606 38.660173 5.5975911 C 38.415012 5.2861822 38.007228 5.1345703 37.464897 5.1345703 z M 37.464897 5.9200521 C 37.728125 5.9200521 37.882613 5.9924547 37.968742 6.1288249 L 37.968742 6.1308919 C 38.060412 6.2702365 38.11912 6.53848 38.11912 6.9298096 C 38.11912 7.3217972 38.066939 7.5977349 37.980627 7.7478475 C 37.898428 7.8908039 37.741199 7.9669556 37.464897 7.9669556 C 37.188593 7.9669556 37.031366 7.8908034 36.949166 7.7478475 C 36.862856 7.5977349 36.810673 7.3217972 36.810673 6.9298096 C 36.810673 6.5390761 36.867119 6.2706582 36.95485 6.1308919 C 36.955058 6.130561 36.954642 6.1291549 36.95485 6.1288249 C 37.04548 5.9926083 37.20288 5.9200521 37.464897 5.9200521 z " />
|
||||||
|
<path
|
||||||
|
id="path353"
|
||||||
|
style="color:#000000;font-weight:600;font-size:6.58608px;font-family:'Titillium Web';-inkscape-font-specification:'Titillium Web, Semi-Bold';fill:#a0a0a0;stroke:none;stroke-width:0.179638;-inkscape-stroke:none"
|
||||||
|
d="M 40.849703 5.1407715 C 40.432089 5.1407715 40.090355 5.2378084 39.833744 5.4373942 C 39.572105 5.6408922 39.443587 5.9637441 39.443587 6.3768717 C 39.443587 6.8227117 39.628532 7.1321747 39.913843 7.3458049 L 39.870951 7.4181519 C 39.749381 7.6207679 39.679749 7.7643088 39.679749 7.8925415 C 39.679749 8.0903162 39.775156 8.2263965 39.888521 8.3436768 C 39.73682 8.4663539 39.609275 8.5847105 39.531437 8.6971436 L 39.531437 8.6992106 C 39.441897 8.8335157 39.396562 8.9929613 39.396562 9.1699829 C 39.396562 9.5501027 39.533806 9.8394096 39.804806 9.9921549 C 40.069419 10.1413 40.454192 10.207129 40.962874 10.207129 C 41.493532 10.207129 41.900281 10.117841 42.183472 9.921875 C 42.466661 9.7259124 42.61342 9.4188459 42.61342 9.0371745 C 42.61342 8.6442554 42.510434 8.3519337 42.285274 8.1932983 C 42.061288 8.0354933 41.690479 7.9714137 41.160278 7.9669556 C 40.852442 7.9626156 40.651135 7.938571 40.599589 7.91993 C 40.544799 7.898621 40.537061 7.8889245 40.537061 7.8398315 C 40.537061 7.7906186 40.568043 7.690158 40.605273 7.5861003 C 40.675153 7.5962113 40.743636 7.6052205 40.830066 7.6052205 C 41.301641 7.6052205 41.658451 7.5247863 41.898218 7.3437378 C 42.147369 7.1543836 42.26357 6.8224368 42.26357 6.3768717 C 42.26357 6.2105197 42.189791 6.0713604 42.117326 5.933488 L 42.633057 5.9650106 L 42.633057 5.1970988 L 41.529248 5.2265544 L 41.443465 5.2089844 L 41.441398 5.2089844 C 41.246682 5.1638404 41.04905 5.1407711 40.849703 5.1407715 z M 40.849703 5.880778 C 41.051406 5.880778 41.180794 5.927131 41.253813 6.0001506 L 41.25588 6.0001506 C 41.32878 6.0697385 41.373185 6.189218 41.373185 6.3768717 C 41.373185 6.5645256 41.328274 6.6873984 41.253813 6.7618612 C 41.186303 6.8293671 41.059768 6.8729655 40.857454 6.8729655 C 40.656044 6.8729655 40.526043 6.8284713 40.453345 6.7597941 C 40.379505 6.6852352 40.333972 6.5636564 40.333972 6.3768717 C 40.333972 6.1969595 40.377485 6.0785889 40.456962 6.0017008 C 40.536442 5.9248129 40.662212 5.880778 40.849703 5.880778 z M 40.488485 8.7286662 L 41.09775 8.7658732 L 41.099817 8.7658732 C 41.37528 8.7701732 41.557206 8.800873 41.619165 8.829952 C 41.619394 8.8300597 41.620932 8.8298444 41.621232 8.829952 C 41.678882 8.859662 41.714766 8.9251041 41.714766 9.0779989 C 41.714766 9.203227 41.671208 9.2770226 41.560771 9.3399984 C 41.450335 9.4029743 41.264935 9.4412842 41.007833 9.4412842 C 40.715869 9.4412842 40.514466 9.4050032 40.418205 9.3534342 C 40.320895 9.3013053 40.281262 9.2330436 40.281262 9.1033203 C 40.281262 9.0197374 40.297928 8.9548739 40.328288 8.9002319 L 40.328288 8.8986816 C 40.355628 8.8534457 40.415119 8.7922743 40.488485 8.7286662 z " />
|
||||||
|
<path
|
||||||
|
id="path359"
|
||||||
|
style="color:#000000;font-weight:600;font-size:6.58608px;font-family:'Titillium Web';-inkscape-font-specification:'Titillium Web, Semi-Bold';fill:#a0a0a0;stroke:none;stroke-width:0.179638;-inkscape-stroke:none"
|
||||||
|
d="M 44.412276 5.1345703 C 43.869175 5.1345703 43.460171 5.2838103 43.210799 5.5955241 L 43.208732 5.5975911 C 42.966902 5.9058688 42.855265 6.355023 42.855265 6.937561 C 42.855265 7.5198688 42.964305 7.9687359 43.200981 8.2811483 C 43.441923 8.5991927 43.856154 8.7519206 44.412276 8.7519206 C 44.9684 8.7519206 45.382112 8.5991927 45.623055 8.2811483 C 45.859731 7.9687359 45.970837 7.5198688 45.970837 6.937561 C 45.970837 6.3555836 45.855493 5.9057606 45.609619 5.5975911 C 45.364574 5.2852794 44.95538 5.1345703 44.412276 5.1345703 z M 44.412276 5.9200521 C 44.675505 5.9200521 44.829993 5.9924547 44.916121 6.1288249 L 44.918188 6.1288249 L 44.918188 6.1308919 C 45.009858 6.2702365 45.068567 6.53848 45.068567 6.9298096 C 45.068567 7.3217972 45.014322 7.5977349 44.928007 7.7478475 C 44.845807 7.8908037 44.68858 7.9669556 44.412276 7.9669556 C 44.135973 7.9669556 43.980813 7.8908034 43.898612 7.7478475 C 43.812303 7.5977349 43.758054 7.3217972 43.758053 6.9298096 C 43.758054 6.5390762 43.814498 6.2706581 43.90223 6.1308919 C 43.99266 5.9934452 44.149047 5.9200521 44.412276 5.9200521 z " />
|
||||||
|
<path
|
||||||
|
id="path365"
|
||||||
|
style="color:#000000;font-weight:600;font-size:6.58608px;font-family:'Titillium Web';-inkscape-font-specification:'Titillium Web, Semi-Bold';fill:#a0a0a0;stroke:none;stroke-width:0.179638;-inkscape-stroke:none"
|
||||||
|
d="M 48.036861 3.988387 L 48.036861 8.6795736 L 48.949467 8.6795736 L 48.949467 6.7303385 L 50.718868 6.7303385 L 50.718868 8.6795736 L 50.808785 8.6795736 L 51.634574 8.6795736 L 51.634574 3.988387 L 50.718868 3.988387 L 50.718868 5.9123006 L 48.949467 5.9123006 L 48.949467 3.988387 L 48.036861 3.988387 z " />
|
||||||
|
<path
|
||||||
|
id="path371"
|
||||||
|
style="color:#000000;font-weight:600;font-size:6.58608px;font-family:'Titillium Web';-inkscape-font-specification:'Titillium Web, Semi-Bold';fill:#a0a0a0;stroke:none;stroke-width:0.179638;-inkscape-stroke:none"
|
||||||
|
d="M 53.726436 5.1345703 C 53.231695 5.1345703 52.840607 5.2906338 52.58387 5.6053426 C 52.327135 5.9200515 52.207149 6.3801416 52.207149 6.9763184 C 52.207149 7.5753983 52.312526 8.0233367 52.543046 8.3162882 C 52.778928 8.6099376 53.162152 8.7519206 53.665975 8.7519206 C 54.060183 8.7519206 54.508763 8.7013477 55.013696 8.5994751 L 55.08811 8.5839722 L 55.07054 7.8770386 L 54.788904 7.9080444 C 54.463255 7.9339964 54.146005 7.9473185 53.838057 7.9473185 C 53.538545 7.9473185 53.352514 7.8821288 53.265483 7.7850545 C 53.187983 7.6986036 53.154848 7.528776 53.136808 7.3359863 L 55.144438 7.3359863 L 55.199215 6.7365397 L 55.199215 6.7324056 C 55.199215 6.2159414 55.080917 5.8146157 54.830245 5.5412638 C 54.579573 5.267912 54.203786 5.1345703 53.726436 5.1345703 z M 53.726436 5.9060994 C 53.956277 5.9060994 54.094383 5.9666431 54.173954 6.0704305 L 54.176021 6.0704305 L 54.177572 6.0724976 C 54.247252 6.1566905 54.281574 6.360767 54.294877 6.6037313 L 53.12699 6.6037313 C 53.14375 6.3725309 53.180785 6.1744161 53.256181 6.080249 C 53.256447 6.0799178 53.255916 6.078512 53.256181 6.078182 C 53.350011 5.9674638 53.498272 5.9060994 53.726436 5.9060994 z " />
|
||||||
|
<path
|
||||||
|
id="path377"
|
||||||
|
style="color:#000000;font-weight:600;font-size:6.58608px;font-family:'Titillium Web';-inkscape-font-specification:'Titillium Web, Semi-Bold';fill:#a0a0a0;stroke:none;stroke-width:0.179638;-inkscape-stroke:none"
|
||||||
|
d="M 57.720508 5.1170003 L 57.615088 5.1366374 C 57.275413 5.2005763 56.937673 5.3600522 56.601713 5.5588338 L 56.601713 5.2069173 L 55.710811 5.2069173 L 55.710811 8.6795736 L 55.800728 8.6795736 L 56.607397 8.6795736 L 56.607397 6.3515503 L 56.699382 6.3143433 C 56.959309 6.1992934 57.275989 6.1048277 57.648678 6.0311564 L 57.720508 6.0156535 L 57.720508 5.1170003 z " />
|
||||||
|
<path
|
||||||
|
id="path383"
|
||||||
|
style="color:#000000;font-weight:600;font-size:6.58608px;font-family:'Titillium Web';-inkscape-font-specification:'Titillium Web, Semi-Bold';fill:#a0a0a0;stroke:none;stroke-width:0.179638;-inkscape-stroke:none"
|
||||||
|
d="M 59.421696 5.1345703 C 58.926953 5.1345703 58.537933 5.2906338 58.281197 5.6053426 C 58.024461 5.9200515 57.904476 6.3801416 57.904476 6.9763184 C 57.904476 7.5753983 58.007787 8.0233367 58.238306 8.3162882 L 58.240373 8.3162882 C 58.476255 8.6099376 58.859479 8.7519206 59.363302 8.7519206 C 59.757509 8.7519206 60.20609 8.7013477 60.711023 8.5994751 L 60.785437 8.5839722 L 60.767867 7.8770386 L 60.48623 7.9080444 C 60.159879 7.9341024 59.843962 7.9473185 59.535384 7.9473185 C 59.235872 7.9473185 59.04984 7.8821288 58.962809 7.7850545 C 58.885309 7.6986036 58.852176 7.528776 58.834135 7.3359863 L 60.841764 7.3359863 L 60.896541 6.7365397 L 60.896541 6.7324056 C 60.896541 6.2159414 60.776176 5.8146157 60.525505 5.5412638 C 60.274832 5.267912 59.899044 5.1345703 59.421696 5.1345703 z M 59.421696 5.9060994 C 59.651537 5.9060994 59.79171 5.9666431 59.871281 6.0704305 L 59.873348 6.0704305 L 59.873348 6.0724976 C 59.943028 6.1566995 59.978909 6.3607211 59.992204 6.6037313 L 58.824316 6.6037313 C 58.841076 6.3725309 58.877595 6.1744161 58.952991 6.080249 C 58.953256 6.0799178 58.952725 6.078512 58.952991 6.078182 C 59.046821 5.9674682 59.193536 5.9060994 59.421696 5.9060994 z " />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 3.4 KiB |
|
@ -0,0 +1,40 @@
|
||||||
|
<?xml version="1.0" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
||||||
|
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||||
|
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="700.000000pt" height="700.000000pt" viewBox="0 0 700.000000 700.000000"
|
||||||
|
preserveAspectRatio="xMidYMid meet">
|
||||||
|
<metadata>
|
||||||
|
Created by potrace 1.14, written by Peter Selinger 2001-2017
|
||||||
|
</metadata>
|
||||||
|
<g transform="translate(0.000000,700.000000) scale(0.100000,-0.100000)"
|
||||||
|
fill="#000000" stroke="none">
|
||||||
|
<path d="M3215 6994 c-527 -52 -991 -193 -1418 -433 -575 -321 -1037 -783
|
||||||
|
-1359 -1358 -213 -382 -345 -781 -415 -1258 -14 -95 -18 -187 -18 -445 0 -348
|
||||||
|
7 -419 61 -695 198 -995 833 -1864 1731 -2366 381 -214 782 -346 1258 -416
|
||||||
|
152 -22 706 -25 855 -5 691 95 1270 339 1784 752 639 514 1087 1249 1240 2038
|
||||||
|
55 283 61 346 61 692 0 348 -7 419 -61 695 -153 767 -575 1479 -1179 1986
|
||||||
|
-517 433 -1119 699 -1800 795 -114 16 -633 28 -740 18z m293 -1265 c92 -23
|
||||||
|
171 -45 175 -49 4 -4 -26 -143 -68 -310 -42 -166 -74 -304 -73 -305 5 -4 311
|
||||||
|
-75 313 -73 1 2 35 138 76 303 40 165 74 302 76 304 3 4 351 -81 365 -90 7 -5
|
||||||
|
-15 -110 -66 -315 -42 -169 -73 -310 -69 -314 4 -4 42 -20 83 -35 277 -103
|
||||||
|
503 -261 598 -417 69 -116 98 -258 81 -403 -34 -291 -181 -487 -423 -566 -58
|
||||||
|
-19 -66 -25 -52 -33 229 -137 352 -286 387 -464 27 -140 -3 -342 -78 -521
|
||||||
|
-179 -435 -548 -579 -1205 -472 -62 10 -116 17 -120 15 -3 -2 -41 -145 -83
|
||||||
|
-317 l-78 -314 -186 47 c-165 41 -186 49 -183 66 2 10 35 147 73 302 38 156
|
||||||
|
69 290 69 296 0 11 -259 86 -296 86 -7 0 -45 -133 -89 -310 -45 -179 -82 -310
|
||||||
|
-89 -310 -15 1 -356 87 -361 92 -2 2 32 145 75 318 43 173 78 316 76 317 -1 1
|
||||||
|
-173 46 -382 99 -208 52 -380 97 -382 99 -7 6 181 425 190 425 5 0 73 -16 150
|
||||||
|
-36 183 -47 244 -40 282 35 9 16 67 237 131 492 64 255 120 481 126 502 6 23
|
||||||
|
16 37 27 38 15 1 15 2 1 6 -14 3 -4 52 72 356 49 194 89 369 89 390 0 45 -22
|
||||||
|
103 -53 135 -35 38 -83 57 -242 97 -82 21 -152 40 -155 42 -2 2 18 93 45 202
|
||||||
|
l48 197 384 -95 c270 -67 386 -92 391 -84 4 6 41 147 82 312 50 201 79 301 87
|
||||||
|
301 8 0 89 -19 181 -41z"/>
|
||||||
|
<path d="M3436 4611 c-11 -20 -189 -761 -184 -766 11 -11 273 -73 383 -90 128
|
||||||
|
-20 301 -16 380 9 118 37 200 124 231 246 51 202 -73 374 -349 480 -128 50
|
||||||
|
-453 135 -461 121z"/>
|
||||||
|
<path d="M3145 3448 c-14 -39 -205 -832 -201 -835 10 -11 312 -83 424 -102
|
||||||
|
449 -76 694 7 758 259 61 239 -105 432 -486 565 -94 33 -446 125 -478 125 -7
|
||||||
|
0 -15 -6 -17 -12z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.3 KiB |
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"name": "Capital Region",
|
||||||
|
"short_name": "Capital Region",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "/android-chrome-192x192.png",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/android-chrome-512x512.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"theme_color": "#ffffff",
|
||||||
|
"background_color": "#ffffff",
|
||||||
|
"start_url": "https://crbtc.org",
|
||||||
|
"display": "standalone"
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"extends": "../.nuxt/tsconfig.server.json"
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
// https://nuxt.com/docs/guide/concepts/typescript
|
||||||
|
"extends": "./.nuxt/tsconfig.json"
|
||||||
|
}
|