tecitheme 0.3.4 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -1
- package/dist/components/CountrySelector.svelte +2 -2
- package/dist/index.d.ts +31 -0
- package/dist/index.js +31 -0
- package/dist/utils.d.ts +1 -1
- package/dist/utils.js +2 -1
- package/dist/variables.d.ts +3 -3
- package/dist/variables.js +3 -1
- package/package.json +28 -27
- package/.eslintrc.cjs +0 -24
- package/.frontmatter/content/mediaDb.json +0 -1
- package/.frontmatter/templates/article.md +0 -11
- package/.gitpod.yml +0 -19
- package/.vscode/ltex.dictionary.en-US.txt +0 -3
- package/.vscode/settings.json +0 -7
- package/frontmatter.json +0 -17
- package/mdsvex.config.js +0 -19
- package/netlify.toml +0 -7
- package/postcss.config.cjs +0 -13
- package/src/app.css +0 -49
- package/src/app.html +0 -22
- package/src/global.d.ts +0 -5
- package/src/lib/assets/TECi_logo.svelte +0 -177
- package/src/lib/assets/js/store.js +0 -4
- package/src/lib/components/Banner.svelte +0 -91
- package/src/lib/components/Button.svelte +0 -12
- package/src/lib/components/CTA.svelte +0 -36
- package/src/lib/components/CTABranded.svelte +0 -15
- package/src/lib/components/CTASplitImage.svelte +0 -27
- package/src/lib/components/Card.svelte +0 -93
- package/src/lib/components/ContentTwoColumns.svelte +0 -47
- package/src/lib/components/CountrySelector.svelte +0 -167
- package/src/lib/components/FeatureGrid.svelte +0 -40
- package/src/lib/components/Figure.svelte +0 -37
- package/src/lib/components/Footer.svelte +0 -270
- package/src/lib/components/Header.svelte +0 -1230
- package/src/lib/components/HeadingCentered.svelte +0 -33
- package/src/lib/components/Hero.svelte +0 -72
- package/src/lib/components/Icon.svelte +0 -138
- package/src/lib/components/LogoCloud.svelte +0 -25
- package/src/lib/components/Math.svelte +0 -24
- package/src/lib/components/MediaFeature.svelte +0 -66
- package/src/lib/components/Modal.svelte +0 -68
- package/src/lib/components/NewsGrid.svelte +0 -182
- package/src/lib/components/PricingTable.svelte +0 -92
- package/src/lib/components/SidebarContent.svelte +0 -122
- package/src/lib/components/Stats.svelte +0 -34
- package/src/lib/components/Subscribe.svelte +0 -24
- package/src/lib/components/Testimonial.svelte +0 -169
- package/src/lib/components/ThreeColumn.svelte +0 -19
- package/src/lib/components/TrialForm.svelte +0 -302
- package/src/lib/components/Video.svelte +0 -118
- package/src/lib/components/Wrap.svelte +0 -12
- package/src/lib/get-content.js +0 -98
- package/src/lib/layouts/blocks.svelte +0 -93
- package/src/lib/req_utils.js +0 -63
- package/src/lib/site_config.json +0 -11
- package/src/lib/utils.js +0 -92
- package/src/lib/variables.ts +0 -3
- package/src/routes/+layout.server.js +0 -20
- package/src/routes/+layout.svelte +0 -24
- package/src/routes/+page.md +0 -61
- package/src/routes/features/+page.md +0 -78
- package/src/routes/news/+page.md +0 -21
- package/src/routes/news/[slug]/+page.svelte +0 -33
- package/src/routes/news/[slug]/+page.ts +0 -16
- package/src/routes/news/filter/[tag]/+page.svelte +0 -36
- package/src/routes/news/filter/[tag]/+page.ts +0 -14
- package/src/routes/news/post1.md +0 -45
- package/src/routes/news/post2.md +0 -46
- package/src/routes/pathfinder/+page.md +0 -240
- package/src/routes/pathfinder/news/+page.md +0 -20
- package/src/routes/posts.json/+server.js +0 -9
- package/src/routes/product/+page.md +0 -240
- package/src/routes/product/news/+page.md +0 -20
- package/src/routes/product/trial/+page.svelte +0 -7
- package/src/routes/sidebar/+page.md +0 -357
- package/static/favicon.ico +0 -0
- package/static/uploads/company_pathfinder.png +0 -0
- package/static/uploads/company_petrasim.png +0 -0
- package/static/uploads/company_pyrosim.jpg +0 -0
- package/static/uploads/fire.jpg +0 -0
- package/static/uploads/pyrosim_libraries_386x395.png +0 -0
- package/static/uploads/rocks.jpg +0 -0
- package/static/uploads/water.jpg +0 -0
- package/svelte.config.js +0 -32
- package/tailwind.config.cjs +0 -26
- package/tsconfig.json +0 -32
- package/vite.config.js +0 -20
package/README.md
CHANGED
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
['IT', 'HU'],
|
|
22
22
|
['JP'],
|
|
23
23
|
['KR'],
|
|
24
|
-
['PL'
|
|
25
|
-
['RU', 'AM', 'AZ', 'BY', 'GE', 'KZ', 'KG', 'MD', 'TJ', 'TM', 'UZ'],
|
|
24
|
+
['PL'],
|
|
25
|
+
['RU', 'AM', 'AZ', 'BY', 'GE', 'KZ', 'KG', 'MD', 'TJ', 'TM', 'UA', 'UZ'],
|
|
26
26
|
['RO'],
|
|
27
27
|
['SG', 'MY', 'ID', 'VN'],
|
|
28
28
|
['ES'],
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export * from "./utils.js";
|
|
2
|
+
export { default as getContent } from "./get-content.js";
|
|
3
|
+
export { default as Banner } from "./components/Banner.svelte";
|
|
4
|
+
export { default as Button } from "./components/Button.svelte";
|
|
5
|
+
export { default as Card } from "./components/Card.svelte";
|
|
6
|
+
export { default as ContentTwoColumns } from "./components/ContentTwoColumns.svelte";
|
|
7
|
+
export { default as CountrySelector } from "./components/CountrySelector.svelte";
|
|
8
|
+
export { default as CTA } from "./components/CTA.svelte";
|
|
9
|
+
export { default as CTABranded } from "./components/CTABranded.svelte";
|
|
10
|
+
export { default as CTASplitImage } from "./components/CTASplitImage.svelte";
|
|
11
|
+
export { default as FeatureGrid } from "./components/FeatureGrid.svelte";
|
|
12
|
+
export { default as Figure } from "./components/Figure.svelte";
|
|
13
|
+
export { default as Footer } from "./components/Footer.svelte";
|
|
14
|
+
export { default as Header } from "./components/Header.svelte";
|
|
15
|
+
export { default as HeadingCentered } from "./components/HeadingCentered.svelte";
|
|
16
|
+
export { default as Hero } from "./components/Hero.svelte";
|
|
17
|
+
export { default as Icon } from "./components/Icon.svelte";
|
|
18
|
+
export { default as LogoCloud } from "./components/LogoCloud.svelte";
|
|
19
|
+
export { default as Math } from "./components/Math.svelte";
|
|
20
|
+
export { default as MediaFeature } from "./components/MediaFeature.svelte";
|
|
21
|
+
export { default as Modal } from "./components/Modal.svelte";
|
|
22
|
+
export { default as NewsGrid } from "./components/NewsGrid.svelte";
|
|
23
|
+
export { default as PricingTable } from "./components/PricingTable.svelte";
|
|
24
|
+
export { default as SidebarContent } from "./components/SidebarContent.svelte";
|
|
25
|
+
export { default as Stats } from "./components/Stats.svelte";
|
|
26
|
+
export { default as Subscribe } from "./components/Subscribe.svelte";
|
|
27
|
+
export { default as Testimonial } from "./components/Testimonial.svelte";
|
|
28
|
+
export { default as ThreeColumns } from "./components/ThreeColumns.svelte";
|
|
29
|
+
export { default as TrialForm } from "./components/TrialForm.svelte";
|
|
30
|
+
export { default as Video } from "./components/Video.svelte";
|
|
31
|
+
export { default as Wrap } from "./components/Wrap.svelte";
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export * from './utils.js';
|
|
2
|
+
export { default as getContent } from './get-content.js';
|
|
3
|
+
export { default as Banner } from './components/Banner.svelte';
|
|
4
|
+
export { default as Button } from './components/Button.svelte';
|
|
5
|
+
export { default as Card } from './components/Card.svelte';
|
|
6
|
+
export { default as ContentTwoColumns } from './components/ContentTwoColumns.svelte';
|
|
7
|
+
export { default as CountrySelector } from './components/CountrySelector.svelte';
|
|
8
|
+
export { default as CTA } from './components/CTA.svelte';
|
|
9
|
+
export { default as CTABranded } from './components/CTABranded.svelte';
|
|
10
|
+
export { default as CTASplitImage } from './components/CTASplitImage.svelte';
|
|
11
|
+
export { default as FeatureGrid } from './components/FeatureGrid.svelte';
|
|
12
|
+
export { default as Figure } from './components/Figure.svelte';
|
|
13
|
+
export { default as Footer } from './components/Footer.svelte';
|
|
14
|
+
export { default as Header } from './components/Header.svelte';
|
|
15
|
+
export { default as HeadingCentered } from './components/HeadingCentered.svelte';
|
|
16
|
+
export { default as Hero } from './components/Hero.svelte';
|
|
17
|
+
export { default as Icon } from './components/Icon.svelte';
|
|
18
|
+
export { default as LogoCloud } from './components/LogoCloud.svelte';
|
|
19
|
+
export { default as Math } from './components/Math.svelte';
|
|
20
|
+
export { default as MediaFeature } from './components/MediaFeature.svelte';
|
|
21
|
+
export { default as Modal } from './components/Modal.svelte';
|
|
22
|
+
export { default as NewsGrid } from './components/NewsGrid.svelte';
|
|
23
|
+
export { default as PricingTable } from './components/PricingTable.svelte';
|
|
24
|
+
export { default as SidebarContent } from './components/SidebarContent.svelte';
|
|
25
|
+
export { default as Stats } from './components/Stats.svelte';
|
|
26
|
+
export { default as Subscribe } from './components/Subscribe.svelte';
|
|
27
|
+
export { default as Testimonial } from './components/Testimonial.svelte';
|
|
28
|
+
export { default as ThreeColumns } from './components/ThreeColumns.svelte';
|
|
29
|
+
export { default as TrialForm } from './components/TrialForm.svelte';
|
|
30
|
+
export { default as Video } from './components/Video.svelte';
|
|
31
|
+
export { default as Wrap } from './components/Wrap.svelte';
|
package/dist/utils.d.ts
CHANGED
package/dist/utils.js
CHANGED
|
@@ -10,8 +10,9 @@ export function validateEmail(email) {
|
|
|
10
10
|
return re.test(String(email).toLowerCase());
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
export
|
|
13
|
+
export function slugFromPath(path) {
|
|
14
14
|
path.match(/([\w-]+)\.(svelte\.md|md|svx)/i)?.[1] ?? null;
|
|
15
|
+
}
|
|
15
16
|
|
|
16
17
|
export function buildToC() {
|
|
17
18
|
// Based on https://projectcodeed.blogspot.com/2020/04/an-automatic-table-of-contents.html
|
package/dist/variables.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export
|
|
2
|
-
trialEndpoint
|
|
3
|
-
}
|
|
1
|
+
export namespace variables {
|
|
2
|
+
export { PUBLIC_TRIAL_ENDPOINT as trialEndpoint };
|
|
3
|
+
}
|
package/dist/variables.js
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tecitheme",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"
|
|
5
|
-
".": {
|
|
6
|
-
"types": "./dist/index.d.ts",
|
|
7
|
-
"svelte": "./dist/index.js"
|
|
8
|
-
}
|
|
9
|
-
},
|
|
3
|
+
"version": "0.4.1",
|
|
4
|
+
"license": "MIT",
|
|
10
5
|
"scripts": {
|
|
11
6
|
"dev": "vite dev",
|
|
12
7
|
"build": "vite build",
|
|
@@ -17,19 +12,33 @@
|
|
|
17
12
|
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
|
|
18
13
|
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. ."
|
|
19
14
|
},
|
|
15
|
+
"main": "./dist/index.js",
|
|
16
|
+
"svelte": "./dist/index.js",
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"type": "module",
|
|
19
|
+
"exports": {
|
|
20
|
+
".": {
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"svelte": "./dist/index.js"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"dist"
|
|
27
|
+
],
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"@sveltejs/kit": "^1.9.3",
|
|
30
|
+
"svelte": "^3.55.1"
|
|
31
|
+
},
|
|
20
32
|
"devDependencies": {
|
|
21
|
-
"@jsdevtools/rehype-toc": "^3.0.2",
|
|
22
33
|
"@sveltejs/adapter-static": "2.0.1",
|
|
23
|
-
"@sveltejs/kit": "1.
|
|
24
|
-
"@sveltejs/package": "^2.0.
|
|
34
|
+
"@sveltejs/kit": "^1.9.3",
|
|
35
|
+
"@sveltejs/package": "^2.0.2",
|
|
25
36
|
"@tailwindcss/forms": "^0.5.3",
|
|
26
37
|
"@tailwindcss/typography": "^0.5.9",
|
|
27
|
-
"@
|
|
38
|
+
"@tsconfig/svelte": "^3.0.0",
|
|
28
39
|
"@typescript-eslint/eslint-plugin": "^5.52.0",
|
|
29
40
|
"@typescript-eslint/parser": "^5.52.0",
|
|
30
41
|
"autoprefixer": "^10.4.13",
|
|
31
|
-
"dotenv": "^16.0.3",
|
|
32
|
-
"encoding": "^0.1.13",
|
|
33
42
|
"eslint": "^8.34.0",
|
|
34
43
|
"eslint-config-prettier": "^8.6.0",
|
|
35
44
|
"eslint-plugin-svelte3": "^4.0.0",
|
|
@@ -38,28 +47,20 @@
|
|
|
38
47
|
"mdsvex": "^0.10.6",
|
|
39
48
|
"postcss": "^8.4.21",
|
|
40
49
|
"prettier": "^2.8.4",
|
|
41
|
-
"prettier-plugin-tailwindcss": "^0.2.
|
|
42
|
-
"rehype-parse": "^8.0.4",
|
|
50
|
+
"prettier-plugin-tailwindcss": "^0.2.4",
|
|
43
51
|
"rehype-slug": "^5.1.0",
|
|
44
|
-
"rehype-stringify": "^9.0.3",
|
|
45
|
-
"stream": "^0.0.2",
|
|
46
52
|
"svelte": "^3.55.1",
|
|
47
|
-
"svelte-check": "^3.0.
|
|
53
|
+
"svelte-check": "^3.0.4",
|
|
48
54
|
"svelte-paginate": "^0.1.0",
|
|
49
55
|
"svelte-preprocess": "^5.0.1",
|
|
50
|
-
"svelte2tsx": "^0.6.
|
|
51
|
-
"
|
|
56
|
+
"svelte2tsx": "^0.6.2",
|
|
57
|
+
"sveltekit-autoimport": "^1.6.10",
|
|
58
|
+
"tailwindcss": "^3.2.7",
|
|
52
59
|
"tslib": "^2.5.0",
|
|
53
60
|
"typescript": "^4.9.5",
|
|
54
|
-
"
|
|
55
|
-
"vite": "^4.1.1",
|
|
56
|
-
"vite-plugin-autoimport": "^1.6.6"
|
|
61
|
+
"vite": "^4.1.4"
|
|
57
62
|
},
|
|
58
|
-
"type": "module",
|
|
59
63
|
"dependencies": {
|
|
60
|
-
"@lukeed/uuid": "^2.0.0",
|
|
61
|
-
"@sveltejs/kit": "1.7.1",
|
|
62
|
-
"cookie": "^0.5.0",
|
|
63
64
|
"katex": "^0.16.4",
|
|
64
65
|
"svelte": "^3.55.1"
|
|
65
66
|
}
|
package/.eslintrc.cjs
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
root: true,
|
|
3
|
-
parser: "@typescript-eslint/parser",
|
|
4
|
-
extends: [
|
|
5
|
-
"eslint:recommended",
|
|
6
|
-
"plugin:@typescript-eslint/recommended",
|
|
7
|
-
"prettier",
|
|
8
|
-
],
|
|
9
|
-
plugins: ["svelte3", "@typescript-eslint"],
|
|
10
|
-
ignorePatterns: ["*.cjs"],
|
|
11
|
-
overrides: [{ files: ["*.svelte"], processor: "svelte3/svelte3" }],
|
|
12
|
-
settings: {
|
|
13
|
-
"svelte3/typescript": () => require("typescript"),
|
|
14
|
-
},
|
|
15
|
-
parserOptions: {
|
|
16
|
-
sourceType: "module",
|
|
17
|
-
ecmaVersion: 2020,
|
|
18
|
-
},
|
|
19
|
-
env: {
|
|
20
|
-
browser: true,
|
|
21
|
-
es2017: true,
|
|
22
|
-
node: true,
|
|
23
|
-
},
|
|
24
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{}
|
package/.gitpod.yml
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
ports:
|
|
2
|
-
- port: 5173
|
|
3
|
-
onOpen: open-browser
|
|
4
|
-
|
|
5
|
-
# List the start up tasks. You can start them in parallel in multiple terminals. See https://www.gitpod.io/docs/config-start-tasks/
|
|
6
|
-
tasks:
|
|
7
|
-
- init: npm install
|
|
8
|
-
command: |
|
|
9
|
-
export HMR_HOST=`gp url 5173`
|
|
10
|
-
npm run dev
|
|
11
|
-
|
|
12
|
-
vscode:
|
|
13
|
-
extensions:
|
|
14
|
-
- svelte.svelte-vscode
|
|
15
|
-
- bradlc.vscode-tailwindcss
|
|
16
|
-
- csstools.postcss
|
|
17
|
-
- carlocardella.vscode-texttoolbox
|
|
18
|
-
- PKief.material-icon-theme
|
|
19
|
-
- fivethree.vscode-svelte-snippets
|
package/.vscode/settings.json
DELETED
package/frontmatter.json
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://beta.frontmatter.codes/frontmatter.schema.json",
|
|
3
|
-
"frontMatter.framework.id": "other",
|
|
4
|
-
"frontMatter.content.publicFolder": "",
|
|
5
|
-
"frontMatter.content.autoUpdateDate": true,
|
|
6
|
-
"frontMatter.content.pageFolders": [
|
|
7
|
-
{
|
|
8
|
-
"title": "Pages",
|
|
9
|
-
"path": "[[workspace]]/src/routes",
|
|
10
|
-
"excludeSubdir": true
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"title": "News",
|
|
14
|
-
"path": "[[workspace]]/src/routes/news"
|
|
15
|
-
}
|
|
16
|
-
]
|
|
17
|
-
}
|
package/mdsvex.config.js
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import slug from "rehype-slug";
|
|
2
|
-
|
|
3
|
-
const config = {
|
|
4
|
-
extensions: [".svelte.md", ".md", ".svx"],
|
|
5
|
-
|
|
6
|
-
layout: {
|
|
7
|
-
blocks: "./src/lib/layouts/blocks.svelte",
|
|
8
|
-
},
|
|
9
|
-
|
|
10
|
-
smartypants: {
|
|
11
|
-
dashes: "oldschool",
|
|
12
|
-
quotes: false,
|
|
13
|
-
},
|
|
14
|
-
|
|
15
|
-
remarkPlugins: [],
|
|
16
|
-
rehypePlugins: [[slug]],
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
export default config;
|
package/netlify.toml
DELETED
package/postcss.config.cjs
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
const tailwindcss = require("tailwindcss");
|
|
2
|
-
const autoprefixer = require("autoprefixer");
|
|
3
|
-
|
|
4
|
-
const config = {
|
|
5
|
-
plugins: [
|
|
6
|
-
//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
|
|
7
|
-
tailwindcss(),
|
|
8
|
-
//But others, like autoprefixer, need to run after,
|
|
9
|
-
autoprefixer,
|
|
10
|
-
],
|
|
11
|
-
};
|
|
12
|
-
|
|
13
|
-
module.exports = config;
|
package/src/app.css
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
/* Write your global styles here, in PostCSS syntax */
|
|
2
|
-
@tailwind base;
|
|
3
|
-
@tailwind components;
|
|
4
|
-
|
|
5
|
-
.btn {
|
|
6
|
-
@apply justify-center whitespace-nowrap border border-transparent bg-teci-blue-light py-2 px-4 font-medium tracking-wider text-white shadow-sm hover:bg-teci-blue-dark focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
/* The navigation container element. */
|
|
10
|
-
.paginator .pagination-nav {
|
|
11
|
-
@apply relative z-0 flex -space-x-px rounded-md shadow-sm;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
/* Each option in the navigation (including ellipsis, next and prev buttons). */
|
|
15
|
-
.paginator .option {
|
|
16
|
-
@apply relative inline-flex cursor-pointer items-center border border-gray-300 bg-white px-4 py-2 text-gray-500 hover:bg-gray-50;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
/* The currently active page number. */
|
|
20
|
-
.paginator .option.active {
|
|
21
|
-
@apply z-10 border-teci-blue-light bg-gray-50 text-teci-blue-dark;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
/* The ellipsis option. */
|
|
25
|
-
.paginator .option.ellipsis {
|
|
26
|
-
@apply text-gray-700;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
/* Only page numbers. */
|
|
30
|
-
.paginator .option.number {
|
|
31
|
-
@apply text-sm font-medium;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
/* The prev option. */
|
|
35
|
-
.paginator .option.prev {
|
|
36
|
-
@apply rounded-l-md px-2 py-2;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
/* The next option. */
|
|
40
|
-
.paginator .option.next {
|
|
41
|
-
@apply rounded-r-md px-2 py-2;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
/* Targets the prev and next options when they are disabled (when you're on the first or last page). */
|
|
45
|
-
.paginator .option.disabled {
|
|
46
|
-
@apply cursor-not-allowed opacity-30;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
@tailwind utilities;
|
package/src/app.html
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en" class="scroll-p-8 scroll-smooth">
|
|
3
|
-
<head prefix="og: http://ogp.me/ns#">
|
|
4
|
-
<meta charset="UTF-8" />
|
|
5
|
-
<link rel="icon" type="image/x-icon" href="%sveltekit.assets%/favicon.ico" />
|
|
6
|
-
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
7
|
-
|
|
8
|
-
%sveltekit.head%
|
|
9
|
-
|
|
10
|
-
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
11
|
-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
12
|
-
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" />
|
|
13
|
-
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons+Outlined" />
|
|
14
|
-
<script nonce="%sveltekit.nonce%" src="https://app.mailjet.com/statics/js/widget.modal.js" async></script>
|
|
15
|
-
</head>
|
|
16
|
-
|
|
17
|
-
<body id="top" class="m-0 flex min-h-screen flex-col">
|
|
18
|
-
<div id="svelte" style="display: contents">
|
|
19
|
-
%sveltekit.body%
|
|
20
|
-
</div>
|
|
21
|
-
</body>
|
|
22
|
-
</html>
|
package/src/global.d.ts
DELETED
|
@@ -1,177 +0,0 @@
|
|
|
1
|
-
<svg
|
|
2
|
-
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
3
|
-
xmlns:cc="http://creativecommons.org/ns#"
|
|
4
|
-
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
5
|
-
xmlns:svg="http://www.w3.org/2000/svg"
|
|
6
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
-
id="svg2"
|
|
8
|
-
version="1.1"
|
|
9
|
-
width="217.3913"
|
|
10
|
-
height="40"
|
|
11
|
-
>
|
|
12
|
-
<defs id="defs59" />
|
|
13
|
-
<g
|
|
14
|
-
id="cvpage5_top"
|
|
15
|
-
width="612px"
|
|
16
|
-
height="792px"
|
|
17
|
-
transform="translate(44.657227,-982.59069)"
|
|
18
|
-
>
|
|
19
|
-
<g
|
|
20
|
-
id="g3110"
|
|
21
|
-
transform="matrix(0.41093833,0,0,0.40953505,-73.98795,960.4758)"
|
|
22
|
-
>
|
|
23
|
-
<polyline
|
|
24
|
-
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
25
|
-
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
26
|
-
id="polyline7"
|
|
27
|
-
points="122.225,61.914 117.799,61.914 117.799,73.463 114.891,73.463 114.891,61.914 110.465,61.914 110.465,59.68 122.225,59.68 122.225,61.914 122.225,61.914 "
|
|
28
|
-
/>
|
|
29
|
-
<polyline
|
|
30
|
-
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
31
|
-
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
32
|
-
id="polyline9"
|
|
33
|
-
points="136.472,73.463 133.563,73.463 133.563,67.562 126.482,67.562 126.482,73.463 123.574,73.463 123.574,59.68 126.482,59.68 126.482,65.286 133.563,65.286 133.563,59.68 136.472,59.68 136.472,73.463 136.472,73.463 "
|
|
34
|
-
/>
|
|
35
|
-
<path
|
|
36
|
-
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
37
|
-
inkscape:connector-curvature="0"
|
|
38
|
-
id="path11"
|
|
39
|
-
d="m 288.40438,96.001764 c 0,3.872388 -1.13766,6.720606 -3.5319,8.541956 -1.48085,1.02687 -3.4157,1.59435 -5.80723,1.93754 -2.39153,0.227 -5.35324,0.34049 -8.77165,0.34049 -2.50502,0 -4.66956,-0.11349 -6.49361,-0.34049 -1.93484,-0.22699 -3.5292,-0.68368 -4.89656,-1.36736 -1.59435,-0.79718 -2.61852,-2.05104 -3.4184,-3.75889 -0.68098,-1.594354 -1.13767,-3.531899 -1.13767,-5.580239 0,0 0,-26.425738 0,-26.425738 0,0 7.97447,0 7.97447,0 0,0 0,26.99322 0,26.99322 0,1.597056 0.45399,2.621226 1.59436,3.304906 1.13766,0.683681 3.5292,1.137671 6.9476,1.137671 0.68368,0 1.13766,0 1.48086,0 1.82134,0 2.96171,-0.1135 3.64539,-0.1135 1.36736,-0.22699 2.50503,-0.683681 3.3022,-1.251163 0.91068,-0.683681 1.36737,-2.164538 1.36737,-4.442572 0,0 0,-25.628562 0,-25.628562 0,0 7.74477,0 7.74477,0 0,0 0,26.652731 0,26.652731 0,0 0,0 0,0"
|
|
40
|
-
/>
|
|
41
|
-
<path
|
|
42
|
-
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
43
|
-
inkscape:connector-curvature="0"
|
|
44
|
-
id="path13"
|
|
45
|
-
d="m 329.5225,80.16902 c 0,-3.985884 -1.25117,-6.834103 -3.5292,-8.541953 -1.48086,-1.026872 -3.4184,-1.70785 -5.80993,-1.937545 -2.50503,-0.226993 -5.35325,-0.340489 -8.88515,-0.340489 -2.50503,0 -4.66956,0.113496 -6.49091,0.226993 -1.82405,0.226993 -3.4184,0.797177 -4.89926,1.480857 -1.48086,0.797177 -2.61852,2.051042 -3.3022,3.645396 -0.79718,1.70785 -1.14037,3.531898 -1.14037,5.693734 0,0 0,26.425737 0,26.425737 0,0 7.86097,0 7.86097,0 0,0 0,-26.993219 0,-26.993219 0,-1.594354 0.57019,-2.734722 1.59436,-3.304906 1.25386,-0.797177 3.5319,-1.137666 7.06109,-1.137666 0.68368,0 1.14037,0 1.36736,-0.113496 1.82405,0.113496 3.07521,0.226992 3.6454,0.226992 1.48086,0.226993 2.61852,0.570185 3.3022,1.251163 0.91068,0.68368 1.36736,2.164538 1.36736,4.329076 0,0 0,25.742056 0,25.742056 0,0 7.85828,0 7.85828,0 0,0 0,-26.65273 0,-26.65273 0,0 0,0 0,0"
|
|
46
|
-
/>
|
|
47
|
-
<path
|
|
48
|
-
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
49
|
-
inkscape:connector-curvature="0"
|
|
50
|
-
id="path15"
|
|
51
|
-
d="m 372.01067,91.672688 c 0,6.60711 -2.05104,11.049682 -6.15042,13.214222 -2.05104,1.13766 -4.78576,1.70785 -8.20146,1.70785 0,0 -3.5319,0 -3.5319,0 0,0 0,-6.15042 0,-6.15042 0,0 1.93754,0 1.93754,0 1.59436,0 2.73202,-0.1135 3.6427,-0.456691 1.02687,-0.34049 2.05104,-1.02417 2.84821,-2.04834 1.02417,-1.367361 1.59436,-3.758891 1.59436,-7.177294 0,0 0,-6.720607 0,-6.720607 0,-2.051041 -0.1135,-3.531898 -0.34049,-4.329075 -0.34319,-1.594354 -1.25387,-2.73202 -2.50503,-3.415701 -1.25386,-0.570184 -3.19141,-0.910673 -5.80993,-0.910673 0,0 -1.36736,0 -1.36736,0 0,0 0,-6.036926 0,-6.036926 0,0 1.93754,0 1.93754,0 7.17459,0 11.95766,1.70785 14.0087,5.239749 1.25386,2.161836 1.93754,5.239749 1.93754,9.112137 0,0 0,7.971769 0,7.971769 0,0 0,0 0,0 m -17.88378,14.922072 c 0,0 -17.76759,0 -17.76759,0 0,0 0,-37.245727 0,-37.245727 0,0 17.76759,0 17.76759,0 0,0 0,6.036926 0,6.036926 0,0 -9.90932,0 -9.90932,0 0,0 0,25.058381 0,25.058381 0,0 9.90932,0 9.90932,0 0,0 0,6.15042 0,6.15042 0,0 0,0 0,0"
|
|
52
|
-
/>
|
|
53
|
-
<polyline
|
|
54
|
-
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
55
|
-
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
56
|
-
id="polyline17"
|
|
57
|
-
points="196.494,73.463 185.071,73.463 185.071,59.68 196.452,59.68 196.452,61.914 187.938,61.914 187.938,65.37 196.03,65.37 196.03,67.52 187.938,67.52 187.938,71.187 196.494,71.187 196.494,73.463 196.494,73.463 "
|
|
58
|
-
/>
|
|
59
|
-
<path
|
|
60
|
-
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
61
|
-
inkscape:connector-curvature="0"
|
|
62
|
-
id="path19"
|
|
63
|
-
d="m 439.55453,80.396013 c 0,4.102083 -0.57019,6.834103 -1.82405,8.087968 -1.13767,1.253864 -1.93485,1.821346 -4.43987,2.164538 0,0 -0.45669,0.226992 -0.45669,0.226992 2.39153,0.229695 3.75889,1.140369 4.89656,2.505027 1.14036,1.253865 1.48085,3.531899 1.48085,6.266621 0,0 0,6.947601 0,6.947601 0,0 -7.85827,0 -7.85827,0 -0.22699,-0.1135 0.34319,-8.885146 -0.68368,-12.073853 -0.79718,-2.278035 -2.39153,-3.645396 -3.75889,-3.758892 0,0 -14.46538,-0.226993 -14.46538,-0.226993 0,0 0,-5.58294 0,-5.58294 0,0 14.23839,0.113496 14.23839,0.113496 3.3022,0 4.55606,0.229695 4.89655,-3.529197 0.3432,-2.39153 -0.22699,-3.985884 -0.91067,-4.785763 -0.68368,-0.910673 -2.61852,-1.364659 -5.58024,-1.364659 0,0 -12.41704,0 -12.41704,0 0,0 0,-6.036926 0,-6.036926 0,0 13.6682,0 13.6682,0 5.35595,0 8.88515,0.910673 10.7092,2.73202 1.70785,1.710552 2.50503,4.442572 2.50503,8.31496 0,0 0,0 0,0"
|
|
64
|
-
/>
|
|
65
|
-
<polyline
|
|
66
|
-
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
67
|
-
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
68
|
-
id="polyline21"
|
|
69
|
-
points="222.796,73.463 219.93,73.463 219.93,67.562 212.849,67.562 212.849,73.463 209.94,73.463 209.94,59.68 212.849,59.68 212.849,65.286 219.93,65.286 219.93,59.68 222.796,59.68 222.796,73.463 222.796,73.463 "
|
|
70
|
-
/>
|
|
71
|
-
<polyline
|
|
72
|
-
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
73
|
-
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
74
|
-
id="polyline23"
|
|
75
|
-
points="252.807,73.463 249.857,73.463 248.887,70.85 242.312,70.85 241.342,73.463 238.35,73.463 242.143,63.094 245.052,63.094 242.986,68.869 248.171,68.869 245.052,59.68 247.623,59.68 252.807,73.463 252.807,73.463 "
|
|
76
|
-
/>
|
|
77
|
-
<path
|
|
78
|
-
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
79
|
-
inkscape:connector-curvature="0"
|
|
80
|
-
id="path25"
|
|
81
|
-
d="m 600.38699,91.672688 c 0,6.60711 -2.05104,11.049682 -6.15042,13.214222 -2.05104,1.13766 -4.78577,1.70785 -8.20147,1.70785 0,0 -3.5319,0 -3.5319,0 0,0 0,-6.15042 0,-6.15042 0,0 1.93755,0 1.93755,0 1.59435,0 2.73202,-0.1135 3.64269,-0.456691 1.02687,-0.34049 2.05104,-1.02417 2.84822,-2.04834 1.02417,-1.367361 1.59435,-3.758891 1.59435,-7.177294 0,0 0,-6.720607 0,-6.720607 0,-2.051041 -0.11349,-3.531898 -0.34048,-4.329075 -0.3432,-1.594354 -1.25387,-2.73202 -2.50773,-3.415701 -1.25117,-0.570184 -3.18871,-0.910673 -5.80723,-0.910673 0,0 -1.36737,0 -1.36737,0 0,0 0,-6.036926 0,-6.036926 0,0 1.93755,0 1.93755,0 7.17459,0 11.95765,1.70785 14.00869,5.239749 1.25387,2.161836 1.93755,5.239749 1.93755,9.112137 0,0 0,7.971769 0,7.971769 0,0 0,0 0,0 M 582.5032,106.59476 c 0,0 -17.76758,0 -17.76758,0 0,0 0,-37.245727 0,-37.245727 0,0 17.76758,0 17.76758,0 0,0 0,6.036926 0,6.036926 0,0 -9.90931,0 -9.90931,0 0,0 0,25.058381 0,25.058381 0,0 9.90931,0 9.90931,0 0,0 0,6.15042 0,6.15042 0,0 0,0 0,0"
|
|
82
|
-
/>
|
|
83
|
-
<polyline
|
|
84
|
-
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
85
|
-
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
86
|
-
id="polyline27"
|
|
87
|
-
points="236.622,73.463 225.199,73.463 225.199,59.68 236.579,59.68 236.579,61.914 228.107,61.914 228.107,65.37 236.116,65.37 236.116,67.52 228.107,67.52 228.107,71.187 236.622,71.187 236.622,73.463 236.622,73.463 "
|
|
88
|
-
/>
|
|
89
|
-
<polyline
|
|
90
|
-
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
91
|
-
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
92
|
-
id="polyline29"
|
|
93
|
-
points="214.408,84.211 210.067,84.211 210.067,75.95 214.408,75.95 214.408,77.088 212.048,77.088 212.048,79.153 214.366,79.153 214.366,80.249 212.048,80.249 212.048,83.073 214.408,83.073 214.408,84.211 214.408,84.211 "
|
|
94
|
-
/>
|
|
95
|
-
<path
|
|
96
|
-
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
97
|
-
inkscape:connector-curvature="0"
|
|
98
|
-
id="path31"
|
|
99
|
-
d="m 473.61154,135.52552 c 0,0 -5.35324,0 -5.35324,0 0,0 0,-18.56476 0,-18.56476 0,-1.02687 -0.57019,-1.48086 -1.59436,-1.48086 -1.02687,0 -1.59435,0.45399 -1.59435,1.48086 0,0 0,18.56476 0,18.56476 0,0 -5.35325,0 -5.35325,0 0,0 0,-18.45126 0,-18.45126 0,-1.48086 0.91068,-2.62123 2.50503,-3.5319 1.25387,-0.57019 2.73472,-0.91068 4.44257,-0.91068 1.70785,0 3.18871,0.34049 4.44258,0.91068 1.59435,0.91067 2.50502,2.05104 2.50502,3.5319 0,0 0,18.45126 0,18.45126 0,0 0,0 0,0"
|
|
100
|
-
/>
|
|
101
|
-
<path
|
|
102
|
-
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
103
|
-
inkscape:connector-curvature="0"
|
|
104
|
-
id="path33"
|
|
105
|
-
d="m 489.55778,135.63902 c 0,0 -2.73472,0 -2.73472,0 0,0 -0.45398,-1.36466 -0.45398,-1.36466 -1.14037,1.36466 -2.73473,2.04834 -4.78307,2.04834 -1.48085,0 -2.84821,-0.45398 -3.87509,-1.13766 -1.25116,-0.91068 -1.93484,-2.05105 -1.93484,-3.41841 0,0 0,-14.69237 0,-14.69237 0,-1.48086 0.91067,-2.62123 2.50503,-3.41841 1.25386,-0.56748 2.73472,-0.91067 4.44257,-0.91067 1.70785,0 3.18871,0.34319 4.44257,0.91067 1.59436,0.79718 2.39153,1.93755 2.39153,3.41841 0,0 0,4.44257 0,4.44257 0,0 -5.23975,0 -5.23975,0 0,0 0,-4.66957 0,-4.66957 0,-0.91337 -0.57018,-1.36736 -1.59435,-1.36736 -1.02417,0 -1.59435,0.45399 -1.59435,1.36736 0,0 0,15.03287 0,15.03287 0,1.02687 0.57018,1.48086 1.59435,1.48086 1.02417,0 1.59435,-0.45399 1.59435,-1.48086 0,0 0,-4.78306 0,-4.78306 0,0 -2.27803,0 -2.27803,0 0,0 0,-2.84822 0,-2.84822 0,0 7.51778,0 7.51778,0 0,0 0,11.39017 0,11.39017 0,0 0,0 0,0"
|
|
106
|
-
/>
|
|
107
|
-
<polyline
|
|
108
|
-
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
109
|
-
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
110
|
-
id="polyline35"
|
|
111
|
-
points="228.908,84.211 226.969,84.211 226.969,75.95 228.908,75.95 228.908,84.211 228.908,84.211 "
|
|
112
|
-
/>
|
|
113
|
-
<path
|
|
114
|
-
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
115
|
-
inkscape:connector-curvature="0"
|
|
116
|
-
id="path37"
|
|
117
|
-
d="m 513.2488,135.52552 c 0,0 -5.23975,0 -5.23975,0 0,0 0,-18.56476 0,-18.56476 0,-1.02687 -0.56748,-1.48086 -1.59435,-1.48086 -1.02417,0 -1.59436,0.45399 -1.59436,1.48086 0,0 0,18.56476 0,18.56476 0,0 -5.23975,0 -5.23975,0 0,0 0,-18.45126 0,-18.45126 0,-1.48086 0.91338,-2.62123 2.39153,-3.5319 1.25387,-0.57019 2.73473,-0.91068 4.44258,-0.91068 1.71055,0 3.19141,0.34049 4.44257,0.91068 1.59435,0.91067 2.39153,2.05104 2.39153,3.5319 0,0 0,18.45126 0,18.45126 0,0 0,0 0,0"
|
|
118
|
-
/>
|
|
119
|
-
<polyline
|
|
120
|
-
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
121
|
-
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
122
|
-
id="polyline39"
|
|
123
|
-
points="240.162,84.211 235.821,84.211 235.821,75.95 240.162,75.95 240.162,77.088 237.76,77.088 237.76,79.153 240.12,79.153 240.12,80.249 237.76,80.249 237.76,83.073 240.162,83.073 240.162,84.211 240.162,84.211 "
|
|
124
|
-
/>
|
|
125
|
-
<polyline
|
|
126
|
-
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
127
|
-
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
128
|
-
id="polyline41"
|
|
129
|
-
points="245.052,84.211 240.71,84.211 240.71,75.95 245.052,75.95 245.052,77.088 242.649,77.088 242.649,79.153 245.01,79.153 245.01,80.249 242.649,80.249 242.649,83.073 245.052,83.073 245.052,84.211 245.052,84.211 "
|
|
130
|
-
/>
|
|
131
|
-
<path
|
|
132
|
-
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
133
|
-
inkscape:connector-curvature="0"
|
|
134
|
-
id="path43"
|
|
135
|
-
d="m 555.73698,135.52552 c 0,0 -5.35325,0 -5.35325,0 0,0 0,-7.85827 0,-7.85827 0,-0.79718 -0.22969,-1.25386 -0.79988,-1.59435 -0.11349,0 -0.34049,-0.1135 -0.56748,-0.1135 0,0 0,-2.84822 0,-2.84822 1.02417,-0.34319 1.59435,-1.02687 1.59435,-2.05104 0,0 0,-2.73202 0,-2.73202 0,-1.82405 -0.57018,-2.73472 -1.59435,-2.84822 0,0 0,-2.73472 0,-2.73472 1.59435,0 3.07521,0.34319 4.21288,0.91067 1.59435,0.79718 2.50773,1.93755 2.50773,3.41841 0,0 0,3.98588 0,3.98588 0,2.05104 -1.36736,3.18871 -4.10209,3.4184 2.73473,0.227 4.10209,1.25117 4.10209,3.18871 0,0 0,7.85827 0,7.85827 0,0 0,0 0,0 m -6.72061,-9.56612 c -0.34319,-0.1162 -0.79718,-0.1162 -1.25386,-0.1162 -0.1135,0 -0.227,0 -0.45669,0 0,0 0,9.68232 0,9.68232 0,0 -5.35325,0 -5.35325,0 0,0 0,-18.45126 0,-18.45126 0,-1.48086 0.91068,-2.62123 2.50773,-3.41841 1.25116,-0.56748 2.73202,-0.91067 4.44257,-0.91067 0,0 0.1135,0 0.1135,0 0,0 0,2.73472 0,2.73472 0,0 -0.1135,0 -0.1135,0 -1.02687,0 -1.59705,0.45399 -1.59705,1.36736 0,0 0,6.49092 0,6.49092 0,0 0.1162,0 0.1162,0 0.56748,0 1.13766,-0.1135 1.59435,-0.227 0,0 0,2.84822 0,2.84822 0,0 0,0 0,0"
|
|
136
|
-
/>
|
|
137
|
-
<polyline
|
|
138
|
-
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
139
|
-
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
140
|
-
id="polyline45"
|
|
141
|
-
points="253.44,84.211 251.459,84.211 251.459,75.95 253.44,75.95 253.44,84.211 253.44,84.211 "
|
|
142
|
-
/>
|
|
143
|
-
<path
|
|
144
|
-
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
145
|
-
inkscape:connector-curvature="0"
|
|
146
|
-
id="path47"
|
|
147
|
-
d="m 579.65499,135.52552 c 0,0 -5.23975,0 -5.23975,0 0,0 0,-18.56476 0,-18.56476 0,-1.02687 -0.56749,-1.48086 -1.59436,-1.48086 -1.02417,0 -1.59435,0.45399 -1.59435,1.48086 0,0 0,18.56476 0,18.56476 0,0 -5.35325,0 -5.35325,0 0,0 0,-18.45126 0,-18.45126 0,-1.48086 0.79718,-2.62123 2.50503,-3.5319 1.25387,-0.57019 2.73472,-0.91068 4.44257,-0.91068 1.59436,0 3.07521,0.34049 4.44258,0.91068 1.59435,0.91067 2.39153,2.05104 2.39153,3.5319 0,0 0,18.45126 0,18.45126 0,0 0,0 0,0"
|
|
148
|
-
/>
|
|
149
|
-
<path
|
|
150
|
-
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
151
|
-
inkscape:connector-curvature="0"
|
|
152
|
-
id="path49"
|
|
153
|
-
d="m 595.71472,135.63902 c 0,0 -2.73202,0 -2.73202,0 0,0 -0.45669,-1.36466 -0.45669,-1.36466 -1.25116,1.36466 -2.84821,2.04834 -4.89655,2.04834 -1.48086,0 -2.73472,-0.45398 -3.87239,-1.13766 -1.25387,-0.91068 -1.82405,-2.05105 -1.82405,-3.41841 0,0 0,-14.69237 0,-14.69237 0,-1.48086 0.79718,-2.62123 2.50773,-3.41841 1.25116,-0.56748 2.73202,-0.91067 4.43987,-0.91067 1.59435,0 3.07521,0.34319 4.44257,0.91067 1.59436,0.79718 2.39153,1.93755 2.39153,3.41841 0,0 0,4.44257 0,4.44257 0,0 -5.35324,0 -5.35324,0 0,0 0,-4.66957 0,-4.66957 0,-0.91337 -0.45399,-1.36736 -1.48086,-1.36736 -1.02417,0 -1.59435,0.45399 -1.59435,1.36736 0,0 0,15.03287 0,15.03287 0,1.02687 0.57018,1.48086 1.59435,1.48086 1.02687,0 1.48086,-0.45399 1.48086,-1.48086 0,0 0,-4.78306 0,-4.78306 0,0 -2.27804,0 -2.27804,0 0,0 0,-2.84822 0,-2.84822 0,0 7.63128,0 7.63128,0 0,0 0,11.39017 0,11.39017 0,0 0,0 0,0"
|
|
154
|
-
/>
|
|
155
|
-
<rect
|
|
156
|
-
style="fill:#0c3879;fill-rule:evenodd;stroke:none"
|
|
157
|
-
id="rect51"
|
|
158
|
-
height="97.671738"
|
|
159
|
-
width="97.671738"
|
|
160
|
-
y="54"
|
|
161
|
-
x="71.375"
|
|
162
|
-
/>
|
|
163
|
-
<path
|
|
164
|
-
style="fill:#ffffff;fill-rule:evenodd;stroke:none"
|
|
165
|
-
inkscape:connector-curvature="0"
|
|
166
|
-
id="path53"
|
|
167
|
-
d="m 129.12574,93.639959 c 0,0 22.04261,0 22.04261,0 2.79147,0 4.88305,0.835009 6.55847,2.650951 1.5322,1.67272 2.2321,3.7643 2.2321,6.27743 0,2.36991 -0.6999,4.46419 -2.2321,6.27743 -1.67542,1.67542 -3.767,2.65095 -6.55847,2.65095 0,0 -22.04261,0 -22.04261,0 0,0 0,-17.856761 0,-17.856761 0,0 0,0 0,0 0,0 0,0 0,0 m 0,23.158661 c 0,0 22.04261,0 22.04261,0 2.79147,0 4.88305,0.83771 6.55847,2.65095 1.5322,1.67272 2.2321,3.767 2.2321,6.27743 0,2.37262 -0.6999,4.46419 -2.2321,6.27743 -1.67542,1.67543 -3.767,2.65096 -6.55847,2.65096 0,0 -22.04261,0 -22.04261,0 0,0 0,-17.85677 0,-17.85677 0,0 0,0 0,0"
|
|
168
|
-
/>
|
|
169
|
-
<path
|
|
170
|
-
style="fill:#ffffff;fill-rule:evenodd;stroke:none"
|
|
171
|
-
inkscape:connector-curvature="0"
|
|
172
|
-
id="path55"
|
|
173
|
-
d="m 115.73316,134.65539 c -5.86127,0 -8.79056,-3.06981 -8.79056,-8.92839 0,0 -0.13782,-37.388943 -0.13782,-37.388943 0,0 -20.648229,-0.14052 -20.648229,-0.14052 -7.115141,-1.253864 -10.184948,-9.625573 -5.164085,-15.205811 1.534904,-1.534903 3.629182,-2.372615 6.139614,-2.650951 0,0 26.92566,0 26.92566,0 0,0 1.67542,0.140519 1.67542,0.140519 0,0 35.43519,0 35.43519,0 2.79147,0 4.88305,0.835009 6.55847,2.648249 1.5322,1.675423 2.2321,3.766999 2.2321,6.280133 0,2.369912 -0.6999,4.46419 -2.2321,6.27743 -1.67542,1.67272 -3.767,2.650951 -6.55847,2.650951 0,0 -26.64732,0 -26.64732,0 0,0 0,0.418855 0,0.418855 0,0 0,0 0,0 0,0 0,45.898478 0,45.898478 0,0 -8.78787,0 -8.78787,0 0,0 0,0 0,0"
|
|
174
|
-
/>
|
|
175
|
-
</g>
|
|
176
|
-
</g>
|
|
177
|
-
</svg>
|