This also makes two changes to forms: first, forms can be set to rename the entity, just like views can. This is enabled for anything using makeModel. Secondly, when switching, if the new form has a view whose names matches the old form's active view, it will switch to that same-named view, instead of using the default view for the form. So, for example, you'll stay on the "side" view for coins, even when switching between forms.master
| @@ -604,6 +604,7 @@ function pix2pos(coords) { | |||
| function updateEntityElement(entity, element) { | |||
| const position = pos2pix({ x: element.dataset.x, y: element.dataset.y }); | |||
| const view = entity.view; | |||
| const form = entity.form | |||
| element.style.left = position.x + "px"; | |||
| element.style.top = position.y + "px"; | |||
| @@ -628,6 +629,8 @@ function updateEntityElement(entity, element) { | |||
| if (entity.views[view].rename) | |||
| element.querySelector(".entity-name").innerText = entity.name == "" ? "" : entity.views[view].name; | |||
| else if (entity.forms !== undefined && Object.keys(entity.forms).length > 0 && entity.forms[form].rename) | |||
| element.querySelector(".entity-name").innerText = entity.name == "" ? "" : entity.forms[form].name; | |||
| else | |||
| element.querySelector(".entity-name").innerText = entity.name; | |||
| @@ -3696,10 +3699,22 @@ document.addEventListener("DOMContentLoaded", () => { | |||
| formList.addEventListener("input", e => { | |||
| const entity = entities[selected.dataset.key]; | |||
| entity.form = e.target.value; | |||
| entity.view = entity.formViews[entity.form]; | |||
| const oldView = entity.currentView | |||
| entity.view = entity.formViews[entity.form] | |||
| // to set the size properly, even if we use a non-default view | |||
| if (Object.keys(entity.forms).length > 0) | |||
| entity.views[entity.view].height = entity.formSizes[entity.form].height; | |||
| let found = Object.entries(entity.views).find(([key, view]) => { | |||
| return view.form === entity.form && view.name === oldView.name | |||
| }) | |||
| const newView = found ? found[0] : entity.formViews[entity.form] | |||
| entity.view = newView; | |||
| preloadViews(entity); | |||
| configViewList(entity, entity.view); | |||
| @@ -20153,6 +20153,120 @@ const attributionData = { | |||
| "chemicalcrux" | |||
| ], | |||
| }, | |||
| { | |||
| prefix: "./media/objects/Coins/", | |||
| files: [ | |||
| { name: "U.S. Dime-Side.svg", source: null }, | |||
| { name: "U.S. Dime-Top.svg", source: null }, | |||
| { name: "U.S. Dollar-Side.svg", source: null }, | |||
| { name: "U.S. Dollar-Top.svg", source: null }, | |||
| { name: "U.S. Half Dollar-Side.svg", source: null }, | |||
| { name: "U.S. Half Dollar-Top.svg", source: null }, | |||
| { name: "U.S. Nickel-Side.svg", source: null }, | |||
| { name: "U.S. Nickel-Top.svg", source: null }, | |||
| { name: "U.S. Penny-Side.svg", source: null }, | |||
| { name: "U.S. Penny-Top.svg", source: null }, | |||
| { name: "U.S. Quarter-Side.svg", source: null }, | |||
| { name: "U.S. Quarter-Top.svg", source: null }, | |||
| ], | |||
| authors: [ | |||
| "chemicalcrux" | |||
| ], | |||
| owners: [ | |||
| "us-mint" | |||
| ], | |||
| citations: [ | |||
| "https://www.usmint.gov/learn/coin-and-medal-programs/coin-specifications" | |||
| ] | |||
| }, | |||
| { | |||
| prefix: "./media/objects/Coins/", | |||
| files: [ | |||
| { name: "UK 10p-Side.svg", source: null }, | |||
| { name: "UK 10p-Top.svg", source: null }, | |||
| { name: "UK 1p-Side.svg", source: null }, | |||
| { name: "UK 1p-Top.svg", source: null }, | |||
| { name: "UK 20p-Side.svg", source: null }, | |||
| { name: "UK 20p-Top.svg", source: null }, | |||
| { name: "UK 2p-Side.svg", source: null }, | |||
| { name: "UK 2p-Top.svg", source: null }, | |||
| { name: "UK 50p-Side.svg", source: null }, | |||
| { name: "UK 50p-Top.svg", source: null }, | |||
| { name: "UK 5p-Side.svg", source: null }, | |||
| { name: "UK 5p-Top.svg", source: null }, | |||
| { name: "UK £1-Side.svg", source: null }, | |||
| { name: "UK £1-Top.svg", source: null }, | |||
| { name: "UK £2-Side.svg", source: null }, | |||
| { name: "UK £2-Top.svg", source: null }, | |||
| { name: "UK £5-Side.svg", source: null }, | |||
| { name: "UK £5-Top.svg", source: null }, | |||
| ], | |||
| authors: [ | |||
| "chemicalcrux" | |||
| ], | |||
| owners: [ | |||
| "royal-mint" | |||
| ], | |||
| citations: [ | |||
| "https://www.royalmint.com/discover/uk-coins/coin-design-and-specifications/" | |||
| ] | |||
| }, | |||
| { | |||
| prefix: "./media/objects/Coins/", | |||
| files: [ | |||
| { name: "1 Euro-Side.svg", source: null }, | |||
| { name: "1 Euro-Top.svg", source: null }, | |||
| { name: "2 Euro-Side.svg", source: null }, | |||
| { name: "2 Euro-Top.svg", source: null }, | |||
| ], | |||
| authors: [ | |||
| "chemicalcrux" | |||
| ], | |||
| owners: [ | |||
| "european-central-bank" | |||
| ], | |||
| citations: [ | |||
| "https://ec.europa.eu/info/business-economy-euro/euro-area/euro-coins-and-notes/euro-coins/common-sides-euro-coins_en" | |||
| ] | |||
| }, | |||
| { | |||
| prefix: "./media/objects/Coins/", | |||
| files: [ | |||
| { name: "Canadian Dollar-Side.svg", source: null }, | |||
| { name: "Canadian Dollar-Top.svg", source: null }, | |||
| { name: "Canadian Two Dollar-Side.svg", source: null }, | |||
| { name: "Canadian Two Dollar-Top.svg", source: null }, | |||
| ], | |||
| authors: [ | |||
| "chemicalcrux" | |||
| ], | |||
| owners: [ | |||
| "canadian-royal-mint" | |||
| ], | |||
| citations: [ | |||
| "https://www.mint.ca/store/mint/learn/canadian-circulation-1100028" | |||
| ] | |||
| }, | |||
| { | |||
| prefix: "./media/objects/Coins/", | |||
| files: [ | |||
| { name: "5 Yen-Side.svg", source: null }, | |||
| { name: "5 Yen-Top.svg", source: null }, | |||
| { name: "50 Yen-Side.svg", source: null }, | |||
| { name: "50 Yen-Top.svg", source: null }, | |||
| { name: "500 Yen-Side.svg", source: null }, | |||
| { name: "500 Yen-Top.svg", source: null }, | |||
| ], | |||
| authors: [ | |||
| "chemicalcrux" | |||
| ], | |||
| owners: [ | |||
| "japan-mint" | |||
| ], | |||
| citations: [ | |||
| "https://www.mint.go.jp/eng/operations-eng/eng_operations_coin_index.html" | |||
| ] | |||
| }, | |||
| { | |||
| prefix: "./media/real-buildings/", | |||
| all: "https://wiki.openstreetmap.org/wiki/Blender", | |||
| @@ -26812,6 +26926,26 @@ const attributionData = { | |||
| "name": "Loku", | |||
| "url": "https://twitter.com/FoxyLoku" | |||
| }, | |||
| "us-mint": { | |||
| "name": "US Mint", | |||
| "url": "https://www.usmint.gov/" | |||
| }, | |||
| "royal-mint": { | |||
| "name": "Royal Mint", | |||
| "url": "https://www.royalmint.com/" | |||
| }, | |||
| "european-central-bank": { | |||
| "name": "European Central Bank", | |||
| "url": "https://www.ecb.europa.eu/home/html/index.en.html" | |||
| }, | |||
| "canadian-royal-mint": { | |||
| "name": "Canadian Royal Mint", | |||
| "url": "https://www.mint.ca/" | |||
| }, | |||
| "japan-mint": { | |||
| "name": "独立行政法人造幣局", | |||
| "url": "https://www.mint.go.jp/" | |||
| }, | |||
| } | |||
| } | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676 178" | |||
| height="178pt" | |||
| width="1676pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1089)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1642,10874 -22,-15 v -859 -859 l 22,-15 c 20,-14 830,-16 8358,-16 7528,0 8338,2 8358,16 l 22,15 v 859 859 l -22,15 c -20,14 -830,16 -8358,16 -7528,0 -8338,-2 -8358,-16 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1089)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -790 h 8280 8280 v 790 790 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1089)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1675.15 1675.285" | |||
| height="1675.285pt" | |||
| width="1675.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path4" | |||
| d="m 9610,18374 c -476,-33 -714,-60 -1054,-119 C 6239,17852 4184,16478 2924,14490 2190,13333 1761,12048 1643,10652 1618,10360 1618,9640 1643,9348 1815,7320 2658,5492 4075,4075 5492,2658 7320,1815 9348,1643 c 292,-25 1012,-25 1304,0 2028,172 3856,1015 5273,2432 1417,1417 2260,3245 2432,5273 25,292 25,1012 0,1304 -172,2028 -1015,3856 -2432,5273 -1413,1413 -3249,2262 -5260,2431 -178,15 -916,27 -1055,18 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path8" | |||
| d="m 9635,18275 c -16,-2 -113,-9 -215,-15 -102,-6 -292,-25 -423,-41 C 7150,17992 5459,17168 4146,15854 2733,14442 1892,12601 1738,10585 c -17,-224 -17,-946 0,-1170 154,-2016 995,-3857 2408,-5269 1412,-1413 3253,-2254 5269,-2408 224,-17 946,-17 1170,0 2016,154 3857,995 5269,2408 1315,1314 2141,3010 2365,4856 47,382 56,545 56,998 0,453 -9,616 -56,998 -199,1640 -877,3171 -1955,4418 -146,169 -382,423 -449,483 -22,20 -85,79 -140,132 -142,137 -389,348 -589,503 -1283,997 -2791,1583 -4431,1722 -162,14 -937,28 -1020,19 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676.15 152.3" | |||
| height="152.3pt" | |||
| width="1676.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1076.15)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1632,10748 c -17,-17 -17,-1479 0,-1496 18,-18 16718,-18 16736,0 17,17 17,1479 0,1496 -18,18 -16718,18 -16736,0 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1076.15)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -660 h 8280 8280 v 660 660 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1076.15)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1675.15 1675.285" | |||
| height="1675.285pt" | |||
| width="1675.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path4" | |||
| d="m 9610,18374 c -476,-33 -714,-60 -1054,-119 C 6239,17852 4184,16478 2924,14490 2190,13333 1761,12048 1643,10652 1618,10360 1618,9640 1643,9348 1815,7320 2658,5492 4075,4075 5492,2658 7320,1815 9348,1643 c 292,-25 1012,-25 1304,0 2028,172 3856,1015 5273,2432 1417,1417 2260,3245 2432,5273 25,292 25,1012 0,1304 -172,2028 -1015,3856 -2432,5273 -1413,1413 -3249,2262 -5260,2431 -178,15 -916,27 -1055,18 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path8" | |||
| d="m 9635,18275 c -16,-2 -113,-9 -215,-15 -102,-6 -292,-25 -423,-41 C 7150,17992 5459,17168 4146,15854 2733,14442 1892,12601 1738,10585 c -17,-224 -17,-946 0,-1170 154,-2016 995,-3857 2408,-5269 1412,-1413 3253,-2254 5269,-2408 224,-17 946,-17 1170,0 2016,154 3857,995 5269,2408 1315,1314 2141,3010 2365,4856 47,382 56,545 56,998 0,453 -9,616 -56,998 -199,1640 -877,3171 -1955,4418 -146,169 -382,423 -449,483 -22,20 -85,79 -140,132 -142,137 -389,348 -589,503 -1283,997 -2791,1583 -4431,1722 -162,14 -937,28 -1020,19 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676.15 124.3" | |||
| height="124.3pt" | |||
| width="1676.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1062.15)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1632,10608 c -17,-17 -17,-1199 0,-1216 18,-18 16718,-18 16736,0 17,17 17,1199 0,1216 -18,18 -16718,18 -16736,0 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1062.15)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -520 h 8280 8280 v 520 520 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1062.15)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1675.15 1675.285" | |||
| height="1675.285pt" | |||
| width="1675.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path4" | |||
| d="m 9610,18374 c -476,-33 -714,-60 -1054,-119 C 6239,17852 4184,16478 2924,14490 2190,13333 1761,12048 1643,10652 1618,10360 1618,9640 1643,9348 1815,7320 2658,5492 4075,4075 5492,2658 7320,1815 9348,1643 c 292,-25 1012,-25 1304,0 2028,172 3856,1015 5273,2432 1417,1417 2260,3245 2432,5273 25,292 25,1012 0,1304 -172,2028 -1015,3856 -2432,5273 -1413,1413 -3249,2262 -5260,2431 -178,15 -916,27 -1055,18 z m 649,-6550 c 612,-89 1128,-466 1396,-1019 130,-267 185,-509 185,-805 0,-296 -55,-538 -185,-805 -242,-498 -683,-853 -1230,-989 -246,-61 -604,-61 -850,0 -547,136 -988,491 -1230,989 -130,267 -185,509 -185,805 0,296 55,538 185,805 271,560 791,934 1420,1024 104,15 379,12 494,-5 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path8" | |||
| d="m 9635,18275 c -16,-2 -113,-9 -215,-15 -102,-6 -292,-25 -423,-41 C 7150,17992 5459,17168 4146,15854 2733,14442 1892,12601 1738,10585 c -17,-224 -17,-946 0,-1170 154,-2016 995,-3857 2408,-5269 1412,-1413 3253,-2254 5269,-2408 224,-17 946,-17 1170,0 2016,154 3857,995 5269,2408 1315,1314 2141,3010 2365,4856 47,382 56,545 56,998 0,453 -9,616 -56,998 -199,1640 -877,3171 -1955,4418 -146,169 -382,423 -449,483 -22,20 -85,79 -140,132 -142,137 -389,348 -589,503 -1283,997 -2791,1583 -4431,1722 -162,14 -937,28 -1020,19 z m 634,-6351 c 588,-86 1088,-417 1397,-925 181,-297 274,-636 274,-999 0,-514 -186,-976 -540,-1344 -376,-390 -860,-596 -1400,-596 -540,0 -1024,206 -1400,596 -354,368 -540,830 -540,1344 0,540 206,1024 596,1400 295,284 654,461 1064,523 131,21 415,21 549,1 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676 130.03783" | |||
| height="130.03783pt" | |||
| width="1676pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1065.0378)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1638,10639 c -17,-9 -18,-51 -18,-639 0,-612 1,-630 19,-640 14,-7 2630,-10 8361,-10 5731,0 8347,3 8361,10 18,10 19,28 19,640 0,612 -1,630 -19,640 -27,14 -16699,14 -16723,-1 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1065.0378)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -550 h 8280 8280 v 550 550 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1065.0378)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1675.15 1675.285" | |||
| height="1675.285pt" | |||
| width="1675.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path4" | |||
| d="m 9610,18374 c -476,-33 -714,-60 -1054,-119 C 6239,17852 4184,16478 2924,14490 2190,13333 1761,12048 1643,10652 1618,10360 1618,9640 1643,9348 1815,7320 2658,5492 4075,4075 5492,2658 7320,1815 9348,1643 c 292,-25 1012,-25 1304,0 2028,172 3856,1015 5273,2432 1417,1417 2260,3245 2432,5273 25,292 25,1012 0,1304 -172,2028 -1015,3856 -2432,5273 -1413,1413 -3249,2262 -5260,2431 -178,15 -916,27 -1055,18 z m 651,-6860 c 637,-108 1141,-613 1255,-1259 24,-135 24,-375 0,-510 -101,-573 -501,-1032 -1051,-1208 -163,-52 -284,-70 -465,-70 -181,0 -302,18 -465,70 -550,176 -950,635 -1051,1208 -24,135 -24,375 0,510 37,207 121,420 234,590 263,398 671,639 1167,689 72,7 281,-4 376,-20 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path8" | |||
| d="m 9635,18275 c -16,-2 -113,-9 -215,-15 -102,-6 -292,-25 -423,-41 C 7150,17992 5459,17168 4146,15854 2733,14442 1892,12601 1738,10585 c -17,-224 -17,-946 0,-1170 154,-2016 995,-3857 2408,-5269 1412,-1413 3253,-2254 5269,-2408 224,-17 946,-17 1170,0 2016,154 3857,995 5269,2408 1315,1314 2141,3010 2365,4856 47,382 56,545 56,998 0,453 -9,616 -56,998 -199,1640 -877,3171 -1955,4418 -146,169 -382,423 -449,483 -22,20 -85,79 -140,132 -142,137 -389,348 -589,503 -1283,997 -2791,1583 -4431,1722 -162,14 -937,28 -1020,19 z m 516,-6645 c 636,-64 1161,-468 1384,-1065 266,-712 -4,-1522 -645,-1937 -301,-196 -675,-291 -1017,-259 -653,59 -1182,460 -1408,1066 -240,643 -45,1375 485,1820 334,279 777,417 1201,375 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676 124.08783" | |||
| height="124.08783pt" | |||
| width="1676pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1062.0378)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1638,10609 c -17,-9 -18,-49 -18,-609 0,-582 1,-600 19,-610 27,-14 16695,-14 16722,0 18,10 19,28 19,610 0,582 -1,600 -19,610 -27,14 -16699,14 -16723,-1 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1062.0378)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -520 h 8280 8280 v 520 520 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1062.0378)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1675.15 1675.285" | |||
| height="1675.285pt" | |||
| width="1675.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path4" | |||
| d="m 9610,18374 c -476,-33 -714,-60 -1054,-119 C 6239,17852 4184,16478 2924,14490 2190,13333 1761,12048 1643,10652 1618,10360 1618,9640 1643,9348 1815,7320 2658,5492 4075,4075 5492,2658 7320,1815 9348,1643 c 292,-25 1012,-25 1304,0 2028,172 3856,1015 5273,2432 1417,1417 2260,3245 2432,5273 25,292 25,1012 0,1304 -172,2028 -1015,3856 -2432,5273 -1413,1413 -3249,2262 -5260,2431 -178,15 -916,27 -1055,18 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path8" | |||
| d="m 9635,18275 c -16,-2 -113,-9 -215,-15 -102,-6 -292,-25 -423,-41 C 7150,17992 5459,17168 4146,15854 2733,14442 1892,12601 1738,10585 c -17,-224 -17,-946 0,-1170 154,-2016 995,-3857 2408,-5269 1412,-1413 3253,-2254 5269,-2408 224,-17 946,-17 1170,0 2016,154 3857,995 5269,2408 1315,1314 2141,3010 2365,4856 47,382 56,545 56,998 0,453 -9,616 -56,998 -199,1640 -877,3171 -1955,4418 -146,169 -382,423 -449,483 -22,20 -85,79 -140,132 -142,137 -389,348 -589,503 -1283,997 -2791,1583 -4431,1722 -162,14 -937,28 -1020,19 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676.15 132.3" | |||
| height="132.3pt" | |||
| width="1676.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1066.15)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1632,10648 c -17,-17 -17,-1279 0,-1296 18,-18 16718,-18 16736,0 17,17 17,1279 0,1296 -18,18 -16718,18 -16736,0 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1066.15)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -560 h 8280 8280 v 560 560 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1066.15)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676.2001 1676.3019" | |||
| height="1676.3019pt" | |||
| width="1676.2001pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-161.9,1837.9018)"> | |||
| <path | |||
| id="path4" | |||
| d="m 9370,18290 -575,-89 -572,-140 -573,-140 -567,-195 -568,-194 -549,-245 c -301,-135 -560,-257 -575,-270 -14,-14 -215,-190 -446,-392 -411,-359 -429,-376 -835,-803 -410,-431 -419,-441 -787,-906 -369,-465 -376,-475 -699,-969 l -327,-499 -163,-566 -164,-567 -114,-600 -115,-600 -57,-570 -58,-570 -3,-625 -4,-625 171,-565 171,-565 226,-558 225,-559 271,-526 c 269,-525 271,-529 593,-1037 l 324,-510 455,-388 c 450,-383 462,-392 948,-736 490,-346 494,-348 1012,-648 l 520,-301 540,-250 540,-250 595,-81 595,-80 598,-28 597,-27 598,27 597,28 595,80 595,81 540,250 540,250 520,301 c 518,300 522,302 1013,649 487,344 498,352 947,735 l 455,388 324,510 c 322,509 324,512 593,1037 l 271,526 225,559 226,558 171,565 171,565 -4,625 -3,625 -58,570 -57,570 -115,600 -114,600 -164,567 -163,566 -327,499 c -323,494 -330,504 -699,969 -368,465 -377,475 -787,906 -406,427 -424,444 -835,803 -231,202 -432,378 -446,392 -15,13 -274,135 -575,270 l -549,245 -568,194 -567,195 -573,140 -572,140 -589,90 c -324,49 -607,89 -630,88 -23,-1 -300,-41 -616,-89 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-161.9,1837.9018)"> | |||
| <path | |||
| id="path8" | |||
| d="m 9400,18194 -555,-85 -590,-144 -590,-144 -565,-194 -565,-195 -530,-237 -529,-237 -443,-388 c -435,-381 -450,-396 -855,-822 -407,-428 -418,-440 -781,-898 -360,-456 -373,-474 -688,-955 l -321,-490 -163,-570 -164,-570 -110,-580 -110,-580 -57,-565 -58,-565 -4,-617 -3,-616 167,-554 167,-553 219,-545 220,-545 274,-536 275,-536 317,-500 317,-501 447,-381 c 439,-374 456,-387 930,-722 479,-339 487,-344 1003,-643 519,-301 521,-302 1053,-549 l 533,-247 583,-80 584,-79 596,-27 596,-27 595,27 595,27 584,79 584,80 534,247 c 532,247 534,248 1053,549 516,299 524,304 1003,643 474,335 491,348 930,722 l 447,381 317,501 317,500 275,536 274,536 220,545 219,545 167,553 167,554 -3,616 -4,617 -58,565 -57,565 -110,580 -110,580 -164,570 -163,570 -321,490 c -315,481 -328,499 -688,955 -363,458 -374,470 -781,898 -405,426 -420,441 -855,822 l -443,388 -529,237 -530,237 -565,195 -565,194 -590,144 -590,144 -568,86 c -312,47 -582,85 -600,84 -18,-1 -282,-39 -587,-85 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-161.9,1837.9018)" /> | |||
| </svg> | |||
| @@ -0,0 +1,52 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg16" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676 118" | |||
| height="118pt" | |||
| width="1676pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs20" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1059)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1642,10574 -22,-15 v -559 -559 l 22,-15 c 20,-14 830,-16 8358,-16 7528,0 8338,2 8358,16 l 22,15 v 559 559 l -22,15 c -20,14 -830,16 -8358,16 -7528,0 -8338,-2 -8358,-16 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1059)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -490 h 8280 8280 v 490 490 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g14" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1059)"> | |||
| <path | |||
| id="path12" | |||
| d="m 1720,10000 v -490 h 8280 8280 v 490 490 H 10000 1720 Z" /> | |||
| </g> | |||
| </svg> | |||
| @@ -0,0 +1,55 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg18" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676.6001 1676.0127" | |||
| height="1676.0127pt" | |||
| width="1676.6001pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs22" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-161.7,1837.7127)"> | |||
| <path | |||
| id="path4" | |||
| d="m 9495,18359 c -312,-17 -373,-23 -735,-78 -368,-55 -422,-66 -798,-160 -371,-93 -432,-112 -790,-240 -347,-124 -425,-157 -752,-311 -324,-153 -405,-197 -724,-388 -311,-186 -402,-247 -675,-449 -270,-200 -362,-275 -633,-519 -287,-259 -343,-315 -602,-602 -244,-271 -319,-363 -519,-633 -202,-273 -263,-364 -449,-675 -191,-319 -235,-400 -388,-724 -154,-327 -187,-405 -311,-752 -128,-358 -147,-419 -240,-790 -94,-374 -105,-431 -160,-793 -57,-380 -59,-401 -81,-817 l -21,-428 21,-427 c 22,-417 24,-438 81,-818 55,-362 66,-419 160,-793 93,-371 112,-432 240,-790 124,-347 157,-425 311,-752 153,-324 197,-405 388,-724 186,-311 247,-402 449,-675 200,-270 275,-362 519,-633 259,-287 315,-343 602,-602 271,-244 363,-319 633,-519 273,-202 364,-263 675,-449 319,-191 400,-235 724,-388 327,-154 405,-187 752,-311 358,-128 419,-147 790,-240 374,-94 431,-105 793,-160 380,-57 401,-59 817,-81 l 428,-21 427,21 c 417,22 438,24 818,81 362,55 419,66 793,160 371,93 432,112 790,240 347,124 425,157 752,311 324,153 405,197 724,388 311,186 402,247 675,449 270,200 362,275 633,519 287,259 343,315 602,602 244,271 319,363 519,633 202,273 263,364 449,675 191,319 235,400 388,724 154,327 187,405 311,752 128,358 147,419 240,790 94,374 105,431 160,793 57,380 59,401 81,818 l 21,427 -21,428 c -22,416 -24,437 -81,817 -55,362 -66,419 -160,793 -93,371 -112,432 -240,790 -124,347 -157,425 -311,752 -153,324 -197,405 -388,724 -186,311 -247,402 -449,675 -200,270 -275,362 -518,631 -257,285 -314,343 -602,602 -273,247 -362,320 -634,521 -273,202 -364,263 -675,449 -319,191 -400,235 -724,388 -327,154 -405,187 -752,311 -358,128 -419,147 -790,240 -376,94 -429,105 -798,160 -373,56 -416,61 -770,79 -443,23 -528,23 -975,-1 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-161.7,1837.7127)"> | |||
| <path | |||
| id="path8" | |||
| d="m 9505,18260 c -297,-16 -368,-23 -715,-75 -356,-53 -415,-64 -785,-156 -371,-93 -428,-110 -790,-239 -355,-127 -423,-155 -760,-314 -323,-154 -412,-201 -713,-382 -295,-177 -390,-240 -661,-441 -269,-199 -362,-276 -627,-515 -280,-252 -340,-312 -592,-592 -239,-265 -316,-358 -515,-627 -201,-271 -264,-366 -441,-661 -181,-301 -228,-390 -382,-713 -159,-337 -187,-405 -314,-760 -127,-356 -148,-424 -236,-775 -88,-352 -101,-418 -155,-775 -58,-380 -60,-401 -81,-813 l -21,-422 21,-423 c 21,-411 23,-432 81,-812 54,-357 67,-422 155,-775 87,-347 110,-423 232,-765 122,-344 152,-416 312,-755 158,-335 199,-413 387,-725 183,-305 241,-393 450,-674 222,-299 411,-523 768,-911 8,-8 155,-142 328,-297 265,-237 364,-319 630,-516 271,-201 366,-264 661,-441 301,-181 390,-228 713,-382 337,-159 405,-187 760,-314 356,-127 424,-148 775,-236 352,-88 418,-101 775,-155 380,-58 401,-60 812,-81 l 423,-21 422,21 c 412,21 433,23 813,81 357,54 423,67 775,155 351,88 419,109 775,236 355,127 423,155 760,314 323,154 412,201 713,382 295,177 390,240 661,441 269,199 362,276 627,515 280,252 340,312 592,592 239,265 316,358 515,627 201,271 264,366 441,661 181,301 228,390 382,713 159,337 187,405 314,760 127,356 148,424 236,775 88,352 101,418 155,775 58,380 60,401 81,813 l 21,422 -21,423 c -21,411 -23,432 -81,812 -54,357 -67,423 -155,775 -88,351 -109,419 -236,775 -127,355 -155,423 -314,760 -154,323 -201,412 -382,713 -177,295 -240,390 -441,661 -199,269 -276,362 -515,627 -252,280 -312,340 -592,592 -265,239 -358,316 -627,515 -271,201 -366,264 -661,441 -301,181 -390,228 -713,382 -337,159 -405,187 -760,314 -356,127 -424,148 -775,236 -353,88 -418,101 -775,155 -368,56 -411,60 -765,79 -440,23 -526,23 -965,0 z m 820,-3390 c 569,-29 1221,-200 1780,-467 1613,-770 2676,-2363 2769,-4151 102,-1968 -991,-3807 -2769,-4655 -1337,-638 -2873,-638 -4210,0 -1613,770 -2676,2363 -2769,4151 -102,1968 991,3807 2769,4655 578,276 1207,437 1840,472 127,7 271,11 320,8 50,-2 171,-8 270,-13 z" /> | |||
| <path | |||
| id="path10" | |||
| d="M 9740,14775 C 7646,14659 5868,13189 5361,11155 4724,8594 6285,5999 8845,5361 c 2561,-637 5156,924 5794,3484 637,2561 -924,5156 -3484,5794 -317,79 -580,118 -920,136 -143,8 -262,14 -265,13 -3,0 -106,-6 -230,-13 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g16" | |||
| transform="matrix(0.1,0,0,-0.1,-161.7,1837.7127)"> | |||
| <path | |||
| id="path14" | |||
| d="m 9505,18260 c -297,-16 -368,-23 -715,-75 -356,-53 -415,-64 -785,-156 -371,-93 -428,-110 -790,-239 -355,-127 -423,-155 -760,-314 -323,-154 -412,-201 -713,-382 -295,-177 -390,-240 -661,-441 -269,-199 -362,-276 -627,-515 -280,-252 -340,-312 -592,-592 -239,-265 -316,-358 -515,-627 -201,-271 -264,-366 -441,-661 -181,-301 -228,-390 -382,-713 -159,-337 -187,-405 -314,-760 -127,-356 -148,-424 -236,-775 -88,-352 -101,-418 -155,-775 -58,-380 -60,-401 -81,-813 l -21,-422 21,-423 c 21,-411 23,-432 81,-812 54,-357 67,-422 155,-775 87,-347 110,-423 232,-765 122,-344 152,-416 312,-755 158,-335 199,-413 387,-725 183,-305 241,-393 450,-674 222,-299 411,-523 768,-911 8,-8 155,-142 328,-297 265,-237 364,-319 630,-516 271,-201 366,-264 661,-441 301,-181 390,-228 713,-382 337,-159 405,-187 760,-314 356,-127 424,-148 775,-236 352,-88 418,-101 775,-155 380,-58 401,-60 812,-81 l 423,-21 422,21 c 412,21 433,23 813,81 357,54 423,67 775,155 351,88 419,109 775,236 355,127 423,155 760,314 323,154 412,201 713,382 295,177 390,240 661,441 269,199 362,276 627,515 280,252 340,312 592,592 239,265 316,358 515,627 201,271 264,366 441,661 181,301 228,390 382,713 159,337 187,405 314,760 127,356 148,424 236,775 88,352 101,418 155,775 58,380 60,401 81,813 l 21,422 -21,423 c -21,411 -23,432 -81,812 -54,357 -67,423 -155,775 -88,351 -109,419 -236,775 -127,355 -155,423 -314,760 -154,323 -201,412 -382,713 -177,295 -240,390 -441,661 -199,269 -276,362 -515,627 -252,280 -312,340 -592,592 -265,239 -358,316 -627,515 -271,201 -366,264 -661,441 -301,181 -390,228 -713,382 -337,159 -405,187 -760,314 -356,127 -424,148 -775,236 -353,88 -418,101 -775,155 -368,56 -411,60 -765,79 -440,23 -526,23 -965,0 z m 820,-3390 c 569,-29 1221,-200 1780,-467 1613,-770 2676,-2363 2769,-4151 102,-1968 -991,-3807 -2769,-4655 -1337,-638 -2873,-638 -4210,0 -1613,770 -2676,2363 -2769,4151 -102,1968 991,3807 2769,4655 578,276 1207,437 1840,472 127,7 271,11 320,8 50,-2 171,-8 270,-13 z" /> | |||
| </g> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676 136.08783" | |||
| height="136.08783pt" | |||
| width="1676pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1068.0378)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1638,10669 c -17,-9 -18,-52 -18,-669 0,-642 1,-660 19,-670 27,-14 16695,-14 16722,0 18,10 19,28 19,670 0,642 -1,660 -19,670 -27,14 -16699,14 -16723,-1 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1068.0378)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -580 h 8280 8280 v 580 580 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1068.0378)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1675.15 1675.285" | |||
| height="1675.285pt" | |||
| width="1675.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path4" | |||
| d="m 9610,18374 c -476,-33 -714,-60 -1054,-119 C 6239,17852 4184,16478 2924,14490 2190,13333 1761,12048 1643,10652 1618,10360 1618,9640 1643,9348 1815,7320 2658,5492 4075,4075 5492,2658 7320,1815 9348,1643 c 292,-25 1012,-25 1304,0 2028,172 3856,1015 5273,2432 1417,1417 2260,3245 2432,5273 25,292 25,1012 0,1304 -172,2028 -1015,3856 -2432,5273 -1413,1413 -3249,2262 -5260,2431 -178,15 -916,27 -1055,18 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path8" | |||
| d="m 9635,18275 c -16,-2 -113,-9 -215,-15 -102,-6 -292,-25 -423,-41 C 7150,17992 5459,17168 4146,15854 2733,14442 1892,12601 1738,10585 c -17,-224 -17,-946 0,-1170 127,-1663 717,-3201 1728,-4501 155,-200 366,-447 503,-589 53,-55 112,-118 132,-140 60,-67 314,-303 483,-449 1351,-1168 3024,-1860 4831,-1998 224,-17 946,-17 1170,0 2016,154 3857,995 5269,2408 1315,1314 2141,3010 2365,4856 47,382 56,545 56,998 0,453 -9,616 -56,998 -199,1640 -877,3171 -1955,4418 -146,169 -382,423 -449,483 -22,20 -85,79 -140,132 -142,137 -389,348 -589,503 -1283,997 -2791,1583 -4431,1722 -162,14 -937,28 -1020,19 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676 136.08783" | |||
| height="136.08783pt" | |||
| width="1676pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1068.0378)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1638,10669 c -17,-9 -18,-52 -18,-669 0,-642 1,-660 19,-670 27,-14 16695,-14 16722,0 18,10 19,28 19,670 0,642 -1,660 -19,670 -27,14 -16699,14 -16723,-1 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1068.0378)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -580 h 8280 8280 v 580 580 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1068.0378)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1675.15 1675.285" | |||
| height="1675.285pt" | |||
| width="1675.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path4" | |||
| d="m 9610,18374 c -476,-33 -714,-60 -1054,-119 C 6239,17852 4184,16478 2924,14490 2190,13333 1761,12048 1643,10652 1618,10360 1618,9640 1643,9348 1815,7320 2658,5492 4075,4075 5492,2658 7320,1815 9348,1643 c 292,-25 1012,-25 1304,0 2028,172 3856,1015 5273,2432 1417,1417 2260,3245 2432,5273 25,292 25,1012 0,1304 -172,2028 -1015,3856 -2432,5273 -1413,1413 -3249,2262 -5260,2431 -178,15 -916,27 -1055,18 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path8" | |||
| d="m 9635,18275 c -16,-2 -113,-9 -215,-15 -102,-6 -292,-25 -423,-41 C 7150,17992 5459,17168 4146,15854 2733,14442 1892,12601 1738,10585 c -17,-224 -17,-946 0,-1170 127,-1663 717,-3201 1728,-4501 155,-200 366,-447 503,-589 53,-55 112,-118 132,-140 60,-67 314,-303 483,-449 1351,-1168 3024,-1860 4831,-1998 224,-17 946,-17 1170,0 2016,154 3857,995 5269,2408 1315,1314 2141,3010 2365,4856 47,382 56,545 56,998 0,453 -9,616 -56,998 -199,1640 -877,3171 -1955,4418 -146,169 -382,423 -449,483 -22,20 -85,79 -140,132 -142,137 -389,348 -589,503 -1283,997 -2791,1583 -4431,1722 -162,14 -937,28 -1020,19 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676 128" | |||
| height="128pt" | |||
| width="1676pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1064)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1642,10624 -22,-15 v -609 -609 l 22,-15 c 20,-14 830,-16 8358,-16 7528,0 8338,2 8358,16 l 22,15 v 609 609 l -22,15 c -20,14 -830,16 -8358,16 -7528,0 -8338,-2 -8358,-16 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1064)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -540 h 8280 8280 v 540 540 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1064)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1675.15 1675.285" | |||
| height="1675.285pt" | |||
| width="1675.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path4" | |||
| d="m 9610,18374 c -476,-33 -714,-60 -1054,-119 C 6239,17852 4184,16478 2924,14490 2190,13333 1761,12048 1643,10652 1618,10360 1618,9640 1643,9348 1815,7320 2658,5492 4075,4075 5492,2658 7320,1815 9348,1643 c 292,-25 1012,-25 1304,0 2028,172 3856,1015 5273,2432 1417,1417 2260,3245 2432,5273 25,292 25,1012 0,1304 -172,2028 -1015,3856 -2432,5273 -1413,1413 -3249,2262 -5260,2431 -178,15 -916,27 -1055,18 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path8" | |||
| d="m 9635,18275 c -16,-2 -113,-9 -215,-15 -102,-6 -292,-25 -423,-41 C 7150,17992 5459,17168 4146,15854 2733,14442 1892,12601 1738,10585 c -17,-224 -17,-946 0,-1170 154,-2016 995,-3857 2408,-5269 1412,-1413 3253,-2254 5269,-2408 224,-17 946,-17 1170,0 2016,154 3857,995 5269,2408 1315,1314 2141,3010 2365,4856 47,382 56,545 56,998 0,453 -9,616 -56,998 -199,1640 -877,3171 -1955,4418 -146,169 -382,423 -449,483 -22,20 -85,79 -140,132 -142,137 -389,348 -589,503 -1283,997 -2791,1583 -4431,1722 -162,14 -937,28 -1020,19 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676 164" | |||
| height="164pt" | |||
| width="1676pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1082)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1642,10804 -22,-15 v -789 -789 l 22,-15 c 20,-14 830,-16 8358,-16 7528,0 8338,2 8358,16 l 22,15 v 789 789 l -22,15 c -20,14 -830,16 -8358,16 -7528,0 -8338,-2 -8358,-16 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1082)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -720 h 8280 8280 v 720 720 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1082)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1675.15 1675.285" | |||
| height="1675.285pt" | |||
| width="1675.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path4" | |||
| d="m 9610,18374 c -476,-33 -714,-60 -1054,-119 C 6239,17852 4184,16478 2924,14490 2190,13333 1761,12048 1643,10652 1618,10360 1618,9640 1643,9348 1815,7320 2658,5492 4075,4075 5492,2658 7320,1815 9348,1643 c 292,-25 1012,-25 1304,0 2028,172 3856,1015 5273,2432 1417,1417 2260,3245 2432,5273 25,292 25,1012 0,1304 -172,2028 -1015,3856 -2432,5273 -1413,1413 -3249,2262 -5260,2431 -178,15 -916,27 -1055,18 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path8" | |||
| d="m 9635,18275 c -16,-2 -113,-9 -215,-15 -102,-6 -292,-25 -423,-41 C 7150,17992 5459,17168 4146,15854 2733,14442 1892,12601 1738,10585 c -17,-224 -17,-946 0,-1170 154,-2016 995,-3857 2408,-5269 1412,-1413 3253,-2254 5269,-2408 224,-17 946,-17 1170,0 2016,154 3857,995 5269,2408 1315,1314 2141,3010 2365,4856 47,382 56,545 56,998 0,453 -9,616 -56,998 -199,1640 -877,3171 -1955,4418 -146,169 -382,423 -449,483 -22,20 -85,79 -140,132 -142,137 -389,348 -589,503 -1283,997 -2791,1583 -4431,1722 -162,14 -937,28 -1020,19 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676.15 142.3" | |||
| height="142.3pt" | |||
| width="1676.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1071.15)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1632,10698 c -17,-17 -17,-1379 0,-1396 18,-18 16718,-18 16736,0 17,17 17,1379 0,1396 -18,18 -16718,18 -16736,0 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1071.15)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -610 h 8280 8280 v 610 610 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1071.15)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1675.15 1675.285" | |||
| height="1675.285pt" | |||
| width="1675.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path4" | |||
| d="m 9610,18374 c -476,-33 -714,-60 -1054,-119 C 6239,17852 4184,16478 2924,14490 2190,13333 1761,12048 1643,10652 1618,10360 1618,9640 1643,9348 1815,7320 2658,5492 4075,4075 5492,2658 7320,1815 9348,1643 c 292,-25 1012,-25 1304,0 2028,172 3856,1015 5273,2432 1417,1417 2260,3245 2432,5273 25,292 25,1012 0,1304 -172,2028 -1015,3856 -2432,5273 -1413,1413 -3249,2262 -5260,2431 -178,15 -916,27 -1055,18 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path8" | |||
| d="m 9635,18275 c -16,-2 -113,-9 -215,-15 -102,-6 -292,-25 -423,-41 C 7150,17992 5459,17168 4146,15854 2733,14442 1892,12601 1738,10585 c -17,-224 -17,-946 0,-1170 127,-1663 717,-3201 1728,-4501 155,-200 366,-447 503,-589 53,-55 112,-118 132,-140 60,-67 314,-303 483,-449 1351,-1168 3024,-1860 4831,-1998 224,-17 946,-17 1170,0 2016,154 3857,995 5269,2408 1315,1314 2141,3010 2365,4856 47,382 56,545 56,998 0,453 -9,616 -56,998 -199,1640 -877,3171 -1955,4418 -146,169 -382,423 -449,483 -22,20 -85,79 -140,132 -142,137 -389,348 -589,503 -1283,997 -2791,1583 -4431,1722 -162,14 -937,28 -1020,19 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676.15 130.3" | |||
| height="130.3pt" | |||
| width="1676.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1065.15)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1632,10638 c -17,-17 -17,-1259 0,-1276 18,-18 16718,-18 16736,0 17,17 17,1259 0,1276 -18,18 -16718,18 -16736,0 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1065.15)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -550 h 8280 8280 v 550 550 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1065.15)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1675.15 1675.285" | |||
| height="1675.285pt" | |||
| width="1675.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path4" | |||
| d="m 9610,18374 c -476,-33 -714,-60 -1054,-119 C 6239,17852 4184,16478 2924,14490 2190,13333 1761,12048 1643,10652 1618,10360 1618,9640 1643,9348 1815,7320 2658,5492 4075,4075 5492,2658 7320,1815 9348,1643 c 292,-25 1012,-25 1304,0 2028,172 3856,1015 5273,2432 1417,1417 2260,3245 2432,5273 25,292 25,1012 0,1304 -172,2028 -1015,3856 -2432,5273 -1413,1413 -3249,2262 -5260,2431 -178,15 -916,27 -1055,18 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path8" | |||
| d="m 9635,18275 c -16,-2 -113,-9 -215,-15 -102,-6 -292,-25 -423,-41 C 7150,17992 5459,17168 4146,15854 2733,14442 1892,12601 1738,10585 c -17,-224 -17,-946 0,-1170 154,-2016 995,-3857 2408,-5269 1412,-1413 3253,-2254 5269,-2408 224,-17 946,-17 1170,0 2016,154 3857,995 5269,2408 1315,1314 2141,3010 2365,4856 47,382 56,545 56,998 0,453 -9,616 -56,998 -199,1640 -877,3171 -1955,4418 -146,169 -382,423 -449,483 -22,20 -85,79 -140,132 -142,137 -389,348 -589,503 -1283,997 -2791,1583 -4431,1722 -162,14 -937,28 -1020,19 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676 136.08783" | |||
| height="136.08783pt" | |||
| width="1676pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1068.0378)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1638,10669 c -17,-9 -18,-52 -18,-669 0,-642 1,-660 19,-670 27,-14 16695,-14 16722,0 18,10 19,28 19,670 0,642 -1,660 -19,670 -27,14 -16699,14 -16723,-1 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1068.0378)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -580 h 8280 8280 v 580 580 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1068.0378)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1675.15 1675.285" | |||
| height="1675.285pt" | |||
| width="1675.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path4" | |||
| d="m 9610,18374 c -476,-33 -714,-60 -1054,-119 C 6239,17852 4184,16478 2924,14490 2190,13333 1761,12048 1643,10652 1618,10360 1618,9640 1643,9348 1815,7320 2658,5492 4075,4075 5492,2658 7320,1815 9348,1643 c 292,-25 1012,-25 1304,0 2028,172 3856,1015 5273,2432 1417,1417 2260,3245 2432,5273 25,292 25,1012 0,1304 -172,2028 -1015,3856 -2432,5273 -1413,1413 -3249,2262 -5260,2431 -178,15 -916,27 -1055,18 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path8" | |||
| d="m 9635,18275 c -16,-2 -113,-9 -215,-15 -102,-6 -292,-25 -423,-41 C 7150,17992 5459,17168 4146,15854 2733,14442 1892,12601 1738,10585 c -17,-224 -17,-946 0,-1170 154,-2016 995,-3857 2408,-5269 1412,-1413 3253,-2254 5269,-2408 224,-17 946,-17 1170,0 2016,154 3857,995 5269,2408 1315,1314 2141,3010 2365,4856 47,382 56,545 56,998 0,453 -9,616 -56,998 -199,1640 -877,3171 -1955,4418 -146,169 -382,423 -449,483 -22,20 -85,79 -140,132 -142,137 -389,348 -589,503 -1283,997 -2791,1583 -4431,1722 -162,14 -937,28 -1020,19 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676 146" | |||
| height="146pt" | |||
| width="1676pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1073)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1636,10714 c -14,-14 -16,-92 -16,-714 0,-622 2,-700 16,-714 14,-15 788,-16 8364,-16 7576,0 8350,1 8364,16 14,14 16,92 16,714 0,622 -2,700 -16,714 -14,15 -788,16 -8364,16 -7576,0 -8350,-1 -8364,-16 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1073)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -630 h 8280 8280 v 630 630 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1073)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1675.15 1675.285" | |||
| height="1675.285pt" | |||
| width="1675.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path4" | |||
| d="m 9610,18374 c -476,-33 -714,-60 -1054,-119 C 6239,17852 4184,16478 2924,14490 2190,13333 1761,12048 1643,10652 1618,10360 1618,9640 1643,9348 1815,7320 2658,5492 4075,4075 5492,2658 7320,1815 9348,1643 c 292,-25 1012,-25 1304,0 2028,172 3856,1015 5273,2432 1417,1417 2260,3245 2432,5273 25,292 25,1012 0,1304 -172,2028 -1015,3856 -2432,5273 -1413,1413 -3249,2262 -5260,2431 -178,15 -916,27 -1055,18 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path8" | |||
| d="m 9635,18275 c -16,-2 -113,-9 -215,-15 -102,-6 -292,-25 -423,-41 C 7150,17992 5459,17168 4146,15854 2733,14442 1892,12601 1738,10585 c -17,-224 -17,-946 0,-1170 127,-1663 717,-3201 1728,-4501 155,-200 366,-447 503,-589 53,-55 112,-118 132,-140 60,-67 314,-303 483,-449 1351,-1168 3024,-1860 4831,-1998 224,-17 946,-17 1170,0 2016,154 3857,995 5269,2408 1315,1314 2141,3010 2365,4856 47,382 56,545 56,998 0,453 -9,616 -56,998 -199,1640 -877,3171 -1955,4418 -146,169 -382,423 -449,483 -22,20 -85,79 -140,132 -142,137 -389,348 -589,503 -1283,997 -2791,1583 -4431,1722 -162,14 -937,28 -1020,19 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676.15 142.3" | |||
| height="142.3pt" | |||
| width="1676.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1071.15)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1632,10698 c -17,-17 -17,-1379 0,-1396 18,-18 16718,-18 16736,0 17,17 17,1379 0,1396 -18,18 -16718,18 -16736,0 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1071.15)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -610 h 8280 8280 v 610 610 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1071.15)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676.6001 1675.9016" | |||
| height="1675.9016pt" | |||
| width="1676.6001pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-161.7,1837.9015)"> | |||
| <path | |||
| id="path4" | |||
| d="M 9560,18275 C 7402,17725 5355,16737 3605,15397 l -330,-252 -168,-370 C 2179,12740 1663,10469 1624,8259 l -7,-387 190,-373 c 997,-1967 2438,-3777 4123,-5178 168,-140 313,-261 322,-269 30,-25 805,-177 1258,-246 853,-130 1598,-186 2490,-186 892,0 1637,56 2490,186 453,69 1228,221 1258,246 9,8 154,129 322,269 1685,1401 3126,3211 4123,5178 l 190,373 -7,387 c -39,2210 -555,4481 -1483,6516 l -168,370 -330,252 c -1542,1180 -3323,2093 -5200,2667 -394,120 -1144,317 -1202,315 -16,0 -210,-47 -433,-104 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-161.7,1837.9015)"> | |||
| <path | |||
| id="path8" | |||
| d="M 9575,18176 C 7421,17622 5417,16654 3681,15329 l -324,-247 -159,-348 C 2519,13245 2057,11617 1850,9980 1781,9441 1734,8793 1725,8274 l -7,-382 183,-358 c 874,-1714 2056,-3278 3465,-4584 247,-228 741,-655 935,-807 30,-24 791,-172 1215,-237 843,-130 1596,-186 2484,-186 888,0 1641,56 2484,186 424,65 1185,213 1215,237 194,152 688,579 935,807 1409,1306 2591,2870 3465,4584 l 183,358 -7,382 c -9,519 -56,1167 -125,1706 -207,1637 -669,3265 -1348,4754 l -159,348 -324,247 c -1740,1328 -3764,2304 -5910,2850 -217,56 -404,101 -415,100 -10,0 -199,-47 -419,-103 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-161.7,1837.9015)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676.15 140.3" | |||
| height="140.3pt" | |||
| width="1676.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1070.15)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1632,10688 c -17,-17 -17,-1359 0,-1376 18,-18 16718,-18 16736,0 17,17 17,1359 0,1376 -18,18 -16718,18 -16736,0 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1070.15)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -600 h 8280 8280 v 600 600 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1070.15)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1675.15 1675.285" | |||
| height="1675.285pt" | |||
| width="1675.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path4" | |||
| d="m 9610,18374 c -476,-33 -714,-60 -1054,-119 C 6239,17852 4184,16478 2924,14490 2190,13333 1761,12048 1643,10652 1618,10360 1618,9640 1643,9348 1815,7320 2658,5492 4075,4075 5492,2658 7320,1815 9348,1643 c 292,-25 1012,-25 1304,0 2028,172 3856,1015 5273,2432 1417,1417 2260,3245 2432,5273 25,292 25,1012 0,1304 -172,2028 -1015,3856 -2432,5273 -1413,1413 -3249,2262 -5260,2431 -178,15 -916,27 -1055,18 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path8" | |||
| d="m 9635,18275 c -16,-2 -113,-9 -215,-15 -102,-6 -292,-25 -423,-41 C 7150,17992 5459,17168 4146,15854 2733,14442 1892,12601 1738,10585 c -17,-224 -17,-946 0,-1170 154,-2016 995,-3857 2408,-5269 1412,-1413 3253,-2254 5269,-2408 224,-17 946,-17 1170,0 2016,154 3857,995 5269,2408 1315,1314 2141,3010 2365,4856 47,382 56,545 56,998 0,453 -9,616 -56,998 -199,1640 -877,3171 -1955,4418 -146,169 -382,423 -449,483 -22,20 -85,79 -140,132 -142,137 -389,348 -589,503 -1283,997 -2791,1583 -4431,1722 -162,14 -937,28 -1020,19 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676.15 118.3" | |||
| height="118.3pt" | |||
| width="1676.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1059.15)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1632,10578 c -17,-17 -17,-1139 0,-1156 18,-18 16718,-18 16736,0 17,17 17,1139 0,1156 -18,18 -16718,18 -16736,0 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1059.15)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -490 h 8280 8280 v 490 490 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1059.15)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676.6001 1675.9016" | |||
| height="1675.9016pt" | |||
| width="1676.6001pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-161.7,1837.9015)"> | |||
| <path | |||
| id="path4" | |||
| d="M 9560,18275 C 7402,17725 5355,16737 3605,15397 l -330,-252 -168,-370 C 2179,12740 1663,10469 1624,8259 l -7,-387 190,-373 c 997,-1967 2438,-3777 4123,-5178 168,-140 313,-261 322,-269 30,-25 805,-177 1258,-246 853,-130 1598,-186 2490,-186 892,0 1637,56 2490,186 453,69 1228,221 1258,246 9,8 154,129 322,269 1685,1401 3126,3211 4123,5178 l 190,373 -7,387 c -39,2210 -555,4481 -1483,6516 l -168,370 -330,252 c -1542,1180 -3323,2093 -5200,2667 -394,120 -1144,317 -1202,315 -16,0 -210,-47 -433,-104 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-161.7,1837.9015)"> | |||
| <path | |||
| id="path8" | |||
| d="M 9575,18176 C 7421,17622 5417,16654 3681,15329 l -324,-247 -159,-348 C 2519,13245 2057,11617 1850,9980 1781,9441 1734,8793 1725,8274 l -7,-382 183,-358 c 874,-1714 2056,-3278 3465,-4584 247,-228 741,-655 935,-807 30,-24 791,-172 1215,-237 843,-130 1596,-186 2484,-186 888,0 1641,56 2484,186 424,65 1185,213 1215,237 194,152 688,579 935,807 1409,1306 2591,2870 3465,4584 l 183,358 -7,382 c -9,519 -56,1167 -125,1706 -207,1637 -669,3265 -1348,4754 l -159,348 -324,247 c -1740,1328 -3764,2304 -5910,2850 -217,56 -404,101 -415,100 -10,0 -199,-47 -419,-103 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-161.7,1837.9015)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676 168" | |||
| height="168pt" | |||
| width="1676pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1084)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1636,10824 c -14,-14 -16,-102 -16,-824 0,-722 2,-810 16,-824 14,-15 788,-16 8364,-16 7576,0 8350,1 8364,16 14,14 16,102 16,824 0,722 -2,810 -16,824 -14,15 -788,16 -8364,16 -7576,0 -8350,-1 -8364,-16 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1084)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -740 h 8280 8280 v 740 740 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1084)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1675.15 1675.285" | |||
| height="1675.285pt" | |||
| width="1675.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path4" | |||
| d="m 9610,18374 c -476,-33 -714,-60 -1054,-119 C 6239,17852 4184,16478 2924,14490 2190,13333 1761,12048 1643,10652 1618,10360 1618,9640 1643,9348 1815,7320 2658,5492 4075,4075 5492,2658 7320,1815 9348,1643 c 292,-25 1012,-25 1304,0 2028,172 3856,1015 5273,2432 1417,1417 2260,3245 2432,5273 25,292 25,1012 0,1304 -172,2028 -1015,3856 -2432,5273 -1413,1413 -3249,2262 -5260,2431 -178,15 -916,27 -1055,18 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)"> | |||
| <path | |||
| id="path8" | |||
| d="m 9635,18275 c -16,-2 -113,-9 -215,-15 -102,-6 -292,-25 -423,-41 C 7150,17992 5459,17168 4146,15854 2733,14442 1892,12601 1738,10585 c -17,-224 -17,-946 0,-1170 154,-2016 995,-3857 2408,-5269 1412,-1413 3253,-2254 5269,-2408 224,-17 946,-17 1170,0 2016,154 3857,995 5269,2408 1315,1314 2141,3010 2365,4856 47,382 56,545 56,998 0,453 -9,616 -56,998 -199,1640 -877,3171 -1955,4418 -146,169 -382,423 -449,483 -22,20 -85,79 -140,132 -142,137 -389,348 -589,503 -1283,997 -2791,1583 -4431,1722 -162,14 -937,28 -1020,19 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162.425,1837.71)" /> | |||
| </svg> | |||
| @@ -0,0 +1,52 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg16" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676 210" | |||
| height="210pt" | |||
| width="1676pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs20" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1105)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1642,11034 -22,-15 V 10000 8981 l 22,-15 c 20,-14 830,-16 8358,-16 7528,0 8338,2 8358,16 l 22,15 v 1019 1019 l -22,15 c -20,14 -830,16 -8358,16 -7528,0 -8338,-2 -8358,-16 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1105)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -950 h 8280 8280 v 950 950 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g14" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1105)"> | |||
| <path | |||
| id="path12" | |||
| d="m 1720,10000 v -950 h 8280 8280 v 950 950 H 10000 1720 Z" /> | |||
| </g> | |||
| </svg> | |||
| @@ -0,0 +1,55 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg18" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676.8 1676.3022" | |||
| height="1676.3022pt" | |||
| width="1676.8pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs22" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-161.6,1837.9022)"> | |||
| <path | |||
| id="path4" | |||
| d="m 9425,18305 c -506,-71 -534,-77 -1040,-190 -501,-113 -539,-123 -1045,-281 -504,-157 -545,-172 -1028,-368 l -503,-205 -431,-335 c -395,-308 -465,-367 -831,-703 -366,-337 -430,-402 -768,-769 -338,-367 -396,-436 -704,-832 l -336,-431 -205,-503 c -196,-483 -211,-524 -368,-1028 -160,-513 -167,-537 -285,-1065 -119,-534 -121,-545 -192,-1068 l -73,-527 73,-528 c 71,-522 73,-533 192,-1067 118,-528 125,-552 285,-1065 157,-504 172,-545 368,-1028 l 205,-503 345,-442 c 309,-398 377,-478 676,-802 411,-445 372,-406 805,-805 323,-297 406,-368 802,-676 l 442,-345 503,-205 c 483,-196 524,-211 1028,-368 513,-160 537,-167 1065,-285 534,-119 545,-121 1068,-192 l 527,-73 528,73 c 522,71 533,73 1067,192 528,118 552,125 1065,285 504,157 545,172 1028,368 l 503,205 431,335 c 395,308 465,367 831,703 366,337 430,402 768,769 338,367 396,436 704,832 l 336,431 205,503 c 196,483 211,524 368,1028 160,513 167,537 285,1065 119,534 121,545 192,1068 l 73,527 -73,528 c -71,522 -73,533 -192,1067 -118,528 -125,552 -285,1065 -157,504 -172,545 -368,1028 l -205,503 -336,432 c -310,398 -365,463 -711,839 -207,224 -382,408 -389,408 -7,0 -15,7 -17,14 -2,8 -167,166 -368,351 -329,304 -408,371 -807,681 l -442,345 -503,205 c -483,196 -524,211 -1028,368 -506,158 -544,168 -1045,281 -512,115 -528,118 -1054,191 -293,41 -552,74 -575,73 -22,-1 -275,-34 -561,-74 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-161.6,1837.9022)"> | |||
| <path | |||
| id="path8" | |||
| d="m 9430,18205 c -498,-71 -532,-77 -1030,-189 -493,-111 -537,-123 -1030,-277 -488,-153 -541,-172 -1010,-362 l -495,-201 -426,-330 c -390,-303 -460,-362 -823,-696 -364,-335 -428,-398 -764,-764 -336,-365 -394,-434 -697,-825 l -331,-426 -201,-495 c -191,-469 -209,-522 -362,-1010 -156,-499 -165,-532 -280,-1045 -117,-523 -119,-537 -191,-1057 l -73,-528 73,-527 c 72,-521 74,-535 191,-1058 115,-513 124,-546 280,-1045 153,-488 171,-541 362,-1010 l 201,-495 331,-426 c 303,-391 361,-460 697,-825 336,-366 400,-429 764,-764 363,-334 433,-393 823,-696 l 426,-330 495,-201 c 469,-191 522,-209 1010,-362 499,-156 532,-165 1045,-280 523,-117 537,-119 1057,-191 l 528,-73 527,73 c 521,72 535,74 1058,191 513,115 546,124 1045,280 488,153 541,171 1010,362 l 495,201 426,330 c 390,303 460,362 823,696 364,335 428,398 764,764 336,365 394,434 697,825 l 331,426 201,495 c 191,469 209,522 362,1010 156,499 165,532 280,1045 117,523 119,537 191,1058 l 73,527 -73,528 c -72,520 -74,534 -191,1057 -115,513 -124,546 -280,1045 -153,488 -171,541 -362,1010 l -201,495 -331,426 c -303,391 -361,460 -697,825 -336,366 -400,429 -764,764 -363,334 -433,393 -823,696 l -426,330 -495,201 c -469,190 -522,209 -1010,362 -493,154 -537,166 -1030,277 -505,113 -526,117 -1045,190 -291,40 -548,73 -570,73 -22,-1 -272,-34 -555,-74 z m 950,-2656 325,-21 375,-74 375,-73 335,-115 c 318,-108 351,-122 660,-273 314,-154 336,-166 640,-370 298,-199 330,-224 583,-446 248,-218 286,-256 504,-504 222,-253 247,-285 446,-583 204,-304 216,-326 370,-640 151,-309 165,-342 273,-660 l 115,-335 74,-375 74,-375 22,-352 22,-353 -22,-352 -22,-353 -74,-375 -74,-375 -115,-335 c -108,-318 -122,-351 -273,-660 -154,-314 -166,-336 -370,-640 -199,-298 -224,-330 -446,-583 -218,-248 -256,-286 -504,-504 -253,-222 -285,-247 -583,-446 -304,-204 -326,-216 -640,-370 -309,-151 -342,-165 -660,-273 l -335,-115 -375,-74 -375,-74 -353,-22 -352,-22 -353,22 -352,22 -375,74 -375,74 -335,115 c -318,108 -351,122 -660,273 -314,154 -336,166 -640,370 -298,199 -330,224 -583,446 -248,218 -286,256 -504,504 -222,253 -247,285 -446,583 -204,304 -216,326 -370,640 -151,309 -165,342 -273,660 l -115,335 -74,375 -74,375 -22,353 -22,352 22,353 22,352 74,375 74,375 115,335 c 108,318 122,351 273,660 154,314 166,336 370,640 199,298 224,330 446,583 218,248 256,286 504,504 253,222 285,247 583,446 304,204 326,216 640,370 309,151 342,165 660,273 328,112 343,116 685,185 342,69 357,71 665,94 404,29 433,29 820,4 z" /> | |||
| <path | |||
| id="path10" | |||
| d="m 9595,15449 c -268,-18 -295,-22 -645,-90 l -365,-71 -345,-118 c -329,-112 -360,-125 -655,-271 -293,-144 -327,-164 -620,-360 -264,-176 -338,-231 -495,-369 -319,-280 -348,-309 -578,-570 -209,-238 -238,-275 -431,-565 -196,-293 -216,-327 -360,-620 -146,-295 -159,-327 -271,-655 l -118,-345 -70,-360 -71,-360 -22,-347 -22,-348 22,-347 22,-348 71,-360 70,-360 118,-345 c 112,-328 125,-360 271,-655 144,-293 164,-327 360,-620 193,-290 222,-327 431,-565 230,-261 259,-290 578,-570 157,-138 231,-193 495,-369 293,-196 327,-216 620,-360 295,-146 327,-159 655,-271 l 345,-118 360,-70 360,-71 347,-22 348,-22 347,22 348,22 360,71 360,70 345,118 c 328,112 360,125 655,271 293,144 327,164 620,360 264,176 338,231 495,369 319,280 348,309 578,570 209,238 238,275 431,565 196,293 216,327 360,620 146,295 159,327 271,655 l 118,345 70,360 71,360 22,347 22,348 -22,347 -22,348 -71,360 -70,360 -118,345 c -112,328 -125,360 -271,655 -144,293 -164,327 -360,620 -193,290 -222,327 -431,565 -230,261 -259,290 -578,570 -157,138 -231,193 -495,369 -293,196 -327,216 -620,360 -295,146 -327,159 -655,271 l -345,118 -360,70 c -357,70 -363,71 -680,91 -372,24 -408,24 -780,0 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g16" | |||
| transform="matrix(0.1,0,0,-0.1,-161.6,1837.9022)"> | |||
| <path | |||
| id="path14" | |||
| d="m 9430,18205 c -498,-71 -532,-77 -1030,-189 -493,-111 -537,-123 -1030,-277 -488,-153 -541,-172 -1010,-362 l -495,-201 -426,-330 c -390,-303 -460,-362 -823,-696 -364,-335 -428,-398 -764,-764 -336,-365 -394,-434 -697,-825 l -331,-426 -201,-495 c -191,-469 -209,-522 -362,-1010 -156,-499 -165,-532 -280,-1045 -117,-523 -119,-537 -191,-1057 l -73,-528 73,-527 c 72,-521 74,-535 191,-1058 115,-513 124,-546 280,-1045 153,-488 171,-541 362,-1010 l 201,-495 331,-426 c 303,-391 361,-460 697,-825 336,-366 400,-429 764,-764 363,-334 433,-393 823,-696 l 426,-330 495,-201 c 469,-191 522,-209 1010,-362 499,-156 532,-165 1045,-280 523,-117 537,-119 1057,-191 l 528,-73 527,73 c 521,72 535,74 1058,191 513,115 546,124 1045,280 488,153 541,171 1010,362 l 495,201 426,330 c 390,303 460,362 823,696 364,335 428,398 764,764 336,365 394,434 697,825 l 331,426 201,495 c 191,469 209,522 362,1010 156,499 165,532 280,1045 117,523 119,537 191,1058 l 73,527 -73,528 c -72,520 -74,534 -191,1057 -115,513 -124,546 -280,1045 -153,488 -171,541 -362,1010 l -201,495 -331,426 c -303,391 -361,460 -697,825 -336,366 -400,429 -764,764 -363,334 -433,393 -823,696 l -426,330 -495,201 c -469,190 -522,209 -1010,362 -493,154 -537,166 -1030,277 -505,113 -526,117 -1045,190 -291,40 -548,73 -570,73 -22,-1 -272,-34 -555,-74 z m 950,-2656 325,-21 375,-74 375,-73 335,-115 c 318,-108 351,-122 660,-273 314,-154 336,-166 640,-370 298,-199 330,-224 583,-446 248,-218 286,-256 504,-504 222,-253 247,-285 446,-583 204,-304 216,-326 370,-640 151,-309 165,-342 273,-660 l 115,-335 74,-375 74,-375 22,-352 22,-353 -22,-352 -22,-353 -74,-375 -74,-375 -115,-335 c -108,-318 -122,-351 -273,-660 -154,-314 -166,-336 -370,-640 -199,-298 -224,-330 -446,-583 -218,-248 -256,-286 -504,-504 -253,-222 -285,-247 -583,-446 -304,-204 -326,-216 -640,-370 -309,-151 -342,-165 -660,-273 l -335,-115 -375,-74 -375,-74 -353,-22 -352,-22 -353,22 -352,22 -375,74 -375,74 -335,115 c -318,108 -351,122 -660,273 -314,154 -336,166 -640,370 -298,199 -330,224 -583,446 -248,218 -286,256 -504,504 -222,253 -247,285 -446,583 -204,304 -216,326 -370,640 -151,309 -165,342 -273,660 l -115,335 -74,375 -74,375 -22,353 -22,352 22,353 22,352 74,375 74,375 115,335 c 108,318 122,351 273,660 154,314 166,336 370,640 199,298 224,330 446,583 218,248 256,286 504,504 253,222 285,247 583,446 304,204 326,216 640,370 309,151 342,165 660,273 328,112 343,116 685,185 342,69 357,71 665,94 404,29 433,29 820,4 z" /> | |||
| </g> | |||
| </svg> | |||
| @@ -0,0 +1,52 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg16" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676.15 156.3" | |||
| height="156.3pt" | |||
| width="1676.15pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs20" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1078.15)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1632,10768 c -17,-17 -17,-1519 0,-1536 18,-18 16718,-18 16736,0 17,17 17,1519 0,1536 -18,18 -16718,18 -16736,0 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1078.15)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -680 h 8280 8280 v 680 680 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g14" | |||
| transform="matrix(0.1,0,0,-0.1,-161.925,1078.15)"> | |||
| <path | |||
| id="path12" | |||
| d="m 1720,10000 v -680 h 8280 8280 v 680 680 H 10000 1720 Z" /> | |||
| </g> | |||
| </svg> | |||
| @@ -0,0 +1,55 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg18" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676.6001 1676.0127" | |||
| height="1676.0127pt" | |||
| width="1676.6001pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs22" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-161.7,1837.7127)"> | |||
| <path | |||
| id="path4" | |||
| d="m 9495,18359 c -312,-17 -373,-23 -735,-78 -368,-55 -422,-66 -798,-160 -371,-93 -432,-112 -790,-240 -347,-124 -425,-157 -752,-311 -324,-153 -405,-197 -724,-388 -311,-186 -402,-247 -675,-449 -270,-200 -362,-275 -633,-519 -287,-259 -343,-315 -602,-602 -244,-271 -319,-363 -519,-633 -202,-273 -263,-364 -449,-675 -191,-319 -235,-400 -388,-724 -154,-327 -187,-405 -311,-752 -128,-358 -147,-419 -240,-790 -94,-374 -105,-431 -160,-793 -57,-380 -59,-401 -81,-817 l -21,-428 21,-427 c 22,-417 24,-438 81,-818 55,-362 66,-419 160,-793 93,-371 112,-432 240,-790 124,-347 157,-425 311,-752 153,-324 197,-405 388,-724 186,-311 247,-402 449,-675 200,-270 275,-362 519,-633 259,-287 315,-343 602,-602 271,-244 363,-319 633,-519 273,-202 364,-263 675,-449 319,-191 400,-235 724,-388 327,-154 405,-187 752,-311 358,-128 419,-147 790,-240 374,-94 431,-105 793,-160 380,-57 401,-59 817,-81 l 428,-21 427,21 c 417,22 438,24 818,81 362,55 419,66 793,160 371,93 432,112 790,240 347,124 425,157 752,311 324,153 405,197 724,388 311,186 402,247 675,449 270,200 362,275 633,519 287,259 343,315 602,602 244,271 319,363 519,633 202,273 263,364 449,675 191,319 235,400 388,724 154,327 187,405 311,752 128,358 147,419 240,790 94,374 105,431 160,793 57,380 59,401 81,818 l 21,427 -21,428 c -22,416 -24,437 -81,817 -55,362 -66,419 -160,793 -93,371 -112,432 -240,790 -124,347 -157,425 -311,752 -153,324 -197,405 -388,724 -186,311 -247,402 -449,675 -200,270 -275,362 -518,631 -257,285 -314,343 -602,602 -273,247 -362,320 -634,521 -273,202 -364,263 -675,449 -319,191 -400,235 -724,388 -327,154 -405,187 -752,311 -358,128 -419,147 -790,240 -376,94 -429,105 -798,160 -373,56 -416,61 -770,79 -443,23 -528,23 -975,-1 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-161.7,1837.7127)"> | |||
| <path | |||
| id="path8" | |||
| d="m 9505,18260 c -297,-16 -368,-23 -715,-75 -356,-53 -415,-64 -785,-156 -371,-93 -428,-110 -790,-239 -355,-127 -423,-155 -760,-314 -323,-154 -412,-201 -713,-382 -295,-177 -390,-240 -661,-441 -269,-199 -362,-276 -627,-515 -280,-252 -340,-312 -592,-592 -239,-265 -316,-358 -515,-627 -201,-271 -264,-366 -441,-661 -181,-301 -228,-390 -382,-713 -159,-337 -187,-405 -314,-760 -127,-356 -148,-424 -236,-775 -88,-352 -101,-418 -155,-775 -58,-380 -60,-401 -81,-813 l -21,-422 21,-423 c 21,-411 23,-432 81,-812 54,-357 67,-422 155,-775 87,-347 110,-423 232,-765 122,-344 152,-416 312,-755 158,-335 199,-413 387,-725 183,-305 241,-393 450,-674 222,-299 411,-523 768,-911 8,-8 155,-142 328,-297 265,-237 364,-319 630,-516 271,-201 366,-264 661,-441 301,-181 390,-228 713,-382 337,-159 405,-187 760,-314 356,-127 424,-148 775,-236 352,-88 418,-101 775,-155 380,-58 401,-60 812,-81 l 423,-21 422,21 c 412,21 433,23 813,81 357,54 423,67 775,155 351,88 419,109 775,236 355,127 423,155 760,314 323,154 412,201 713,382 295,177 390,240 661,441 269,199 362,276 627,515 280,252 340,312 592,592 239,265 316,358 515,627 201,271 264,366 441,661 181,301 228,390 382,713 159,337 187,405 314,760 127,356 148,424 236,775 88,352 101,418 155,775 58,380 60,401 81,813 l 21,422 -21,423 c -21,411 -23,432 -81,812 -54,357 -67,423 -155,775 -88,351 -109,419 -236,775 -127,355 -155,423 -314,760 -154,323 -201,412 -382,713 -177,295 -240,390 -441,661 -199,269 -276,362 -515,627 -252,280 -312,340 -592,592 -265,239 -358,316 -627,515 -271,201 -366,264 -661,441 -301,181 -390,228 -713,382 -337,159 -405,187 -760,314 -356,127 -424,148 -775,236 -353,88 -418,101 -775,155 -368,56 -411,60 -765,79 -440,23 -526,23 -965,0 z m 785,-2385 c 3027,-156 5429,-2558 5585,-5582 13,-261 13,-325 0,-585 -155,-3024 -2559,-5428 -5583,-5583 -260,-13 -324,-13 -585,0 -3023,155 -5427,2559 -5582,5582 -13,261 -13,325 0,585 144,2810 2240,5117 5020,5528 254,37 462,55 815,69 19,0 168,-6 330,-14 z" /> | |||
| <path | |||
| id="path10" | |||
| d="m 9677,15774 c -187,-10 -318,-24 -525,-54 -2730,-408 -4786,-2674 -4927,-5433 -13,-253 -13,-321 0,-575 152,-2971 2516,-5335 5487,-5487 254,-13 322,-13 575,0 2972,152 5336,2516 5488,5487 13,254 13,322 0,575 -152,2974 -2515,5335 -5490,5488 -159,8 -306,14 -325,14 -19,-1 -147,-8 -283,-15 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g16" | |||
| transform="matrix(0.1,0,0,-0.1,-161.7,1837.7127)"> | |||
| <path | |||
| id="path14" | |||
| d="m 9505,18260 c -297,-16 -368,-23 -715,-75 -356,-53 -415,-64 -785,-156 -371,-93 -428,-110 -790,-239 -355,-127 -423,-155 -760,-314 -323,-154 -412,-201 -713,-382 -295,-177 -390,-240 -661,-441 -269,-199 -362,-276 -627,-515 -280,-252 -340,-312 -592,-592 -239,-265 -316,-358 -515,-627 -201,-271 -264,-366 -441,-661 -181,-301 -228,-390 -382,-713 -159,-337 -187,-405 -314,-760 -127,-356 -148,-424 -236,-775 -88,-352 -101,-418 -155,-775 -58,-380 -60,-401 -81,-813 l -21,-422 21,-423 c 21,-411 23,-432 81,-812 54,-357 67,-422 155,-775 87,-347 110,-423 232,-765 122,-344 152,-416 312,-755 158,-335 199,-413 387,-725 183,-305 241,-393 450,-674 222,-299 411,-523 768,-911 8,-8 155,-142 328,-297 265,-237 364,-319 630,-516 271,-201 366,-264 661,-441 301,-181 390,-228 713,-382 337,-159 405,-187 760,-314 356,-127 424,-148 775,-236 352,-88 418,-101 775,-155 380,-58 401,-60 812,-81 l 423,-21 422,21 c 412,21 433,23 813,81 357,54 423,67 775,155 351,88 419,109 775,236 355,127 423,155 760,314 323,154 412,201 713,382 295,177 390,240 661,441 269,199 362,276 627,515 280,252 340,312 592,592 239,265 316,358 515,627 201,271 264,366 441,661 181,301 228,390 382,713 159,337 187,405 314,760 127,356 148,424 236,775 88,352 101,418 155,775 58,380 60,401 81,813 l 21,422 -21,423 c -21,411 -23,432 -81,812 -54,357 -67,423 -155,775 -88,351 -109,419 -236,775 -127,355 -155,423 -314,760 -154,323 -201,412 -382,713 -177,295 -240,390 -441,661 -199,269 -276,362 -515,627 -252,280 -312,340 -592,592 -265,239 -358,316 -627,515 -271,201 -366,264 -661,441 -301,181 -390,228 -713,382 -337,159 -405,187 -760,314 -356,127 -424,148 -775,236 -353,88 -418,101 -775,155 -368,56 -411,60 -765,79 -440,23 -526,23 -965,0 z m 785,-2385 c 3027,-156 5429,-2558 5585,-5582 13,-261 13,-325 0,-585 -155,-3024 -2559,-5428 -5583,-5583 -260,-13 -324,-13 -585,0 -3023,155 -5427,2559 -5582,5582 -13,261 -13,325 0,585 144,2810 2240,5117 5020,5528 254,37 462,55 815,69 19,0 168,-6 330,-14 z" /> | |||
| </g> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676 180.03783" | |||
| height="180.03783pt" | |||
| width="1676pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1090.0378)"> | |||
| <path | |||
| id="path4" | |||
| d="m 1638,10889 c -17,-9 -18,-62 -18,-889 0,-859 0,-880 19,-890 14,-7 2630,-10 8361,-10 5731,0 8347,3 8361,10 19,10 19,31 19,890 0,859 0,880 -19,890 -27,14 -16699,14 -16723,-1 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1090.0378)"> | |||
| <path | |||
| id="path8" | |||
| d="m 1720,10000 v -800 h 8280 8280 v 800 800 H 10000 1720 Z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-162,1090.0378)" /> | |||
| </svg> | |||
| @@ -0,0 +1,48 @@ | |||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
| <svg | |||
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
| xmlns:cc="http://creativecommons.org/ns#" | |||
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
| xmlns:svg="http://www.w3.org/2000/svg" | |||
| xmlns="http://www.w3.org/2000/svg" | |||
| id="svg14" | |||
| preserveAspectRatio="xMidYMid meet" | |||
| viewBox="0 0 1676.6001 1676.0127" | |||
| height="1676.0127pt" | |||
| width="1676.6001pt" | |||
| version="1.0"> | |||
| <defs | |||
| id="defs18" /> | |||
| <metadata | |||
| id="metadata2"> | |||
| Created by potrace 1.16, written by Peter Selinger 2001-2019 | |||
| <rdf:RDF> | |||
| <cc:Work | |||
| rdf:about=""> | |||
| <dc:format>image/svg+xml</dc:format> | |||
| <dc:type | |||
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
| </cc:Work> | |||
| </rdf:RDF> | |||
| </metadata> | |||
| <g | |||
| style="fill:#000000;stroke:none" | |||
| id="g6" | |||
| transform="matrix(0.1,0,0,-0.1,-161.7,1837.7127)"> | |||
| <path | |||
| id="path4" | |||
| d="m 9495,18359 c -312,-17 -373,-23 -735,-78 -368,-55 -422,-66 -798,-160 -371,-93 -432,-112 -790,-240 -347,-124 -425,-157 -752,-311 -324,-153 -405,-197 -724,-388 -311,-186 -402,-247 -675,-449 -270,-200 -362,-275 -633,-519 -287,-259 -343,-315 -602,-602 -244,-271 -319,-363 -519,-633 -202,-273 -263,-364 -449,-675 -191,-319 -235,-400 -388,-724 -154,-327 -187,-405 -311,-752 -128,-358 -147,-419 -240,-790 -94,-374 -105,-431 -160,-793 -57,-380 -59,-401 -81,-817 l -21,-428 21,-427 c 22,-417 24,-438 81,-818 55,-362 66,-419 160,-793 93,-371 112,-432 240,-790 124,-347 157,-425 311,-752 153,-324 197,-405 388,-724 186,-311 247,-402 449,-675 200,-270 275,-362 519,-633 259,-287 315,-343 602,-602 271,-244 363,-319 633,-519 273,-202 364,-263 675,-449 319,-191 400,-235 724,-388 327,-154 405,-187 752,-311 358,-128 419,-147 790,-240 374,-94 431,-105 793,-160 380,-57 401,-59 817,-81 l 428,-21 427,21 c 417,22 438,24 818,81 362,55 419,66 793,160 371,93 432,112 790,240 347,124 425,157 752,311 324,153 405,197 724,388 311,186 402,247 675,449 270,200 362,275 633,519 287,259 343,315 602,602 244,271 319,363 519,633 202,273 263,364 449,675 191,319 235,400 388,724 154,327 187,405 311,752 128,358 147,419 240,790 94,374 105,431 160,793 57,380 59,401 81,818 l 21,427 -21,428 c -22,416 -24,437 -81,817 -55,362 -66,419 -160,793 -93,371 -112,432 -240,790 -124,347 -157,425 -311,752 -153,324 -197,405 -388,724 -186,311 -247,402 -449,675 -200,270 -275,362 -518,631 -257,285 -314,343 -602,602 -273,247 -362,320 -634,521 -273,202 -364,263 -675,449 -319,191 -400,235 -724,388 -327,154 -405,187 -752,311 -358,128 -419,147 -790,240 -376,94 -429,105 -798,160 -373,56 -416,61 -770,79 -443,23 -528,23 -975,-1 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#1a1a1a;stroke:none" | |||
| id="g10" | |||
| transform="matrix(0.1,0,0,-0.1,-161.7,1837.7127)"> | |||
| <path | |||
| id="path8" | |||
| d="m 9505,18260 c -297,-16 -368,-23 -715,-75 -356,-53 -415,-64 -785,-156 -371,-93 -428,-110 -790,-239 -355,-127 -423,-155 -760,-314 -323,-154 -412,-201 -713,-382 -295,-177 -390,-240 -661,-441 -269,-199 -362,-276 -627,-515 -280,-252 -340,-312 -592,-592 -239,-265 -316,-358 -515,-627 -201,-271 -264,-366 -441,-661 -181,-301 -228,-390 -382,-713 -159,-337 -187,-405 -314,-760 -127,-356 -148,-424 -236,-775 -88,-352 -101,-418 -155,-775 -58,-380 -60,-401 -81,-813 l -21,-422 21,-423 c 21,-411 23,-432 81,-812 54,-357 67,-422 155,-775 87,-347 110,-423 232,-765 122,-344 152,-416 312,-755 158,-335 199,-413 387,-725 183,-305 241,-393 450,-674 222,-299 411,-523 768,-911 8,-8 155,-142 328,-297 265,-237 364,-319 630,-516 271,-201 366,-264 661,-441 301,-181 390,-228 713,-382 337,-159 405,-187 760,-314 356,-127 424,-148 775,-236 352,-88 418,-101 775,-155 380,-58 401,-60 812,-81 l 423,-21 422,21 c 412,21 433,23 813,81 357,54 423,67 775,155 351,88 419,109 775,236 355,127 423,155 760,314 323,154 412,201 713,382 295,177 390,240 661,441 269,199 362,276 627,515 280,252 340,312 592,592 239,265 316,358 515,627 201,271 264,366 441,661 181,301 228,390 382,713 159,337 187,405 314,760 127,356 148,424 236,775 88,352 101,418 155,775 58,380 60,401 81,813 l 21,422 -21,423 c -21,411 -23,432 -81,812 -54,357 -67,423 -155,775 -88,351 -109,419 -236,775 -127,355 -155,423 -314,760 -154,323 -201,412 -382,713 -177,295 -240,390 -441,661 -199,269 -276,362 -515,627 -252,280 -312,340 -592,592 -265,239 -358,316 -627,515 -271,201 -366,264 -661,441 -301,181 -390,228 -713,382 -337,159 -405,187 -760,314 -356,127 -424,148 -775,236 -353,88 -418,101 -775,155 -368,56 -411,60 -765,79 -440,23 -526,23 -965,0 z" /> | |||
| </g> | |||
| <g | |||
| style="fill:#333333;stroke:none" | |||
| id="g12" | |||
| transform="matrix(0.1,0,0,-0.1,-161.7,1837.7127)" /> | |||
| </svg> | |||
| @@ -153,7 +153,7 @@ function makeModel(data) { | |||
| const forms = {}; | |||
| data.forms.forEach(form => { | |||
| forms[form.name] = { name: form.name } | |||
| forms[form.name] = { name: form.name, rename: true } | |||
| form.views.forEach(view => { | |||
| const viewId = form.name + view.name | |||
| views[viewId] = { | |||
| @@ -305,50 +305,6 @@ function makeObjects() { | |||
| ) | |||
| }); | |||
| results.push({ | |||
| name: "Coin", | |||
| constructor: () => makeObject( | |||
| "Coin", | |||
| { | |||
| penny: { | |||
| height: math.unit(0.75, "inches"), | |||
| mass: math.unit(2.5, "g"), | |||
| image: { source: "./media/objects/circle.svg" }, | |||
| name: "Penny", | |||
| rename: true | |||
| }, | |||
| nickel: { | |||
| height: math.unit(0.835, "inches"), | |||
| mass: math.unit(5, "g"), | |||
| image: { source: "./media/objects/circle.svg" }, | |||
| name: "Nickel", | |||
| rename: true | |||
| }, | |||
| dime: { | |||
| height: math.unit(0.705, "inches"), | |||
| mass: math.unit(2.268, "g"), | |||
| image: { source: "./media/objects/circle.svg" }, | |||
| name: "Dime", | |||
| rename: true | |||
| }, | |||
| quarter: { | |||
| height: math.unit(0.955, "inches"), | |||
| mass: math.unit(5.67, "g"), | |||
| image: { source: "./media/objects/circle.svg" }, | |||
| name: "Quarter", | |||
| rename: true | |||
| }, | |||
| dollar: { | |||
| height: math.unit(1.043, "inches"), | |||
| mass: math.unit(8.1, "g"), | |||
| image: { source: "./media/objects/circle.svg" }, | |||
| name: "Dollar Coin", | |||
| rename: true | |||
| }, | |||
| } | |||
| ) | |||
| }); | |||
| results.push({ | |||
| name: "Pencil", | |||
| constructor: () => makeObject( | |||
| @@ -952,6 +908,7 @@ function makeObjects() { | |||
| /* ***Barrels*** */ results.push(makeModel({"name": "Barrels", "kind": "objects", "forms": [{"name": "55 Gallon Drum", "views": [{"name": "Front", "height": 0.8716663122177124, "volume": 0.20819799602031708}, {"name": "Top", "height": 0.617232084274292, "volume": 0.20819799602031708}]}, {"name": "Sixer Keg", "views": [{"name": "Front", "height": 0.5937249660491943, "volume": 0.02345781959593296}, {"name": "Top", "height": 0.2349499762058258, "volume": 0.02345781959593296}]}, {"name": "Half Barrel Keg", "views": [{"name": "Front", "height": 0.5937249660491943, "volume": 0.07046438753604889}, {"name": "Top", "height": 0.42044833302497864, "volume": 0.07046438753604889}]}]})); | |||
| /* ***Pipettes*** */ results.push(makeModel({"name": "Pipettes", "kind": "objects", "forms": [{"name": "Transfer Pipette", "views": [{"name": "Front", "height": 0.1491980254650116, "volume": 0.20819799602031708}, {"name": "Top", "height": 0.010719738900661469, "volume": 0.20819799602031708}, {"name": "Bottom", "height": 0.010719738900661469, "volume": 0.20819799602031708}]}]})); | |||
| /* ***Straws*** */ results.push(makeModel({"name": "Straws", "kind": "objects", "forms": [{"name": "Normal", "views": [{"name": "Front", "height": 0.2159000039100647}, {"name": "Top", "height": 0.006095999851822853}]}, {"name": "Wide", "views": [{"name": "Front", "height": 0.2159000039100647}, {"name": "Top", "height": 0.008127997629344463}]}, {"name": "Smoothie", "views": [{"name": "Front", "height": 0.2159000039100647}, {"name": "Top", "height": 0.00914399977773428}]}, {"name": "Boba", "views": [{"name": "Front", "height": 0.2159000039100647}, {"name": "Top", "height": 0.012191999703645706}]}]})); | |||
| /* ***Coins*** */ results.push(makeModel({"name": "Coins", "kind": "objects", "forms": [{"name": "U.S. Dollar", "views": [{"name": "Top", "height": 0.026492198929190636, "mass": 0.008100000210106373}, {"name": "Side", "height": 0.0020000000949949026, "mass": 0.008100000210106373}]}, {"name": "U.S. Half Dollar", "views": [{"name": "Top", "height": 0.03060699999332428, "mass": 0.011339999735355377}, {"name": "Side", "height": 0.00215000007301569, "mass": 0.011339999735355377}]}, {"name": "U.S. Quarter", "views": [{"name": "Top", "height": 0.024257000535726547, "mass": 0.005669999867677689}, {"name": "Side", "height": 0.0017500000540167093, "mass": 0.005669999867677689}]}, {"name": "U.S. Dime", "views": [{"name": "Top", "height": 0.017906999215483665, "mass": 0.002268000040203333}, {"name": "Side", "height": 0.0013500000350177288, "mass": 0.002268000040203333}]}, {"name": "U.S. Nickel", "views": [{"name": "Top", "height": 0.021208999678492546, "mass": 0.004999999888241291}, {"name": "Side", "height": 0.0019500000635161996, "mass": 0.004999999888241291}]}, {"name": "U.S. Penny", "views": [{"name": "Top", "height": 0.019050000235438347, "mass": 0.0024999999441206455}, {"name": "Side", "height": 0.0015200000489130616, "mass": 0.0024999999441206455}]}, {"name": "UK \u00a35", "views": [{"name": "Top", "height": 0.028400002047419548, "mass": 0.028279999271035194}, {"name": "Side", "height": 0.0028900043107569218, "mass": 0.028279999271035194}]}, {"name": "UK \u00a32", "views": [{"name": "Top", "height": 0.028400002047419548, "mass": 0.012000000104308128}, {"name": "Side", "height": 0.0025000039022415876, "mass": 0.012000000104308128}]}, {"name": "UK \u00a31", "views": [{"name": "Top", "height": 0.023430000990629196, "mass": 0.008750000037252903}, {"name": "Side", "height": 0.0028000001329928637, "mass": 0.008750000037252903}]}, {"name": "UK 50p", "views": [{"name": "Top", "height": 0.027300003916025162, "mass": 0.00800000037997961}, {"name": "Side", "height": 0.0017800000496208668, "mass": 0.00800000037997961}]}, {"name": "UK 20p", "views": [{"name": "Top", "height": 0.021400000900030136, "mass": 0.004999999888241291}, {"name": "Side", "height": 0.0017000001389533281, "mass": 0.004999999888241291}]}, {"name": "UK 10p", "views": [{"name": "Top", "height": 0.024500001221895218, "mass": 0.006500000134110451}, {"name": "Side", "height": 0.0018500001169741154, "mass": 0.006500000134110451}]}, {"name": "UK 5p", "views": [{"name": "Top", "height": 0.018000001087784767, "mass": 0.0032500000670552254}, {"name": "Side", "height": 0.0017000001389533281, "mass": 0.0032500000670552254}]}, {"name": "UK 2p", "views": [{"name": "Top", "height": 0.02590000070631504, "mass": 0.007120000198483467}, {"name": "Side", "height": 0.00203000009059906, "mass": 0.007120000198483467}]}, {"name": "UK 1p", "views": [{"name": "Top", "height": 0.0203000009059906, "mass": 0.0035600000992417336}, {"name": "Side", "height": 0.0016500001074746251, "mass": 0.0035600000992417336}]}, {"name": "Canadian Two Dollar", "views": [{"name": "Top", "height": 0.02800000086426735, "mass": 0.007300000172108412}, {"name": "Side", "height": 0.0018000000854954123, "mass": 0.007300000172108412}]}, {"name": "Canadian Dollar", "views": [{"name": "Top", "height": 0.026500001549720764, "mass": 0.0062699997797608376}, {"name": "Side", "height": 0.0019500007620081306, "mass": 0.0062699997797608376}]}, {"name": "2 Euro", "views": [{"name": "Top", "height": 0.02575000189244747, "mass": 0.008500000461935997}, {"name": "Side", "height": 0.0022000002209097147, "mass": 0.008500000461935997}]}, {"name": "1 Euro", "views": [{"name": "Top", "height": 0.023250000551342964, "mass": 0.007499999832361937}, {"name": "Side", "height": 0.0023300000466406345, "mass": 0.007499999832361937}]}, {"name": "500 Yen", "views": [{"name": "Top", "height": 0.026500001549720764, "mass": 0.0071000000461936}, {"name": "Side", "height": 0.0018100000452250242, "mass": 0.0071000000461936}]}, {"name": "50 Yen", "views": [{"name": "Top", "height": 0.021000003442168236, "mass": 0.004000000189989805}, {"name": "Side", "height": 0.0015100002055987716, "mass": 0.004000000189989805}]}, {"name": "5 Yen", "views": [{"name": "Top", "height": 0.02200000174343586, "mass": 0.0037499999161809683}, {"name": "Side", "height": 0.0015100002055987716, "mass": 0.0037499999161809683}]}]})); | |||
| /* ***INSERT HERE*** */ | |||
| return results; | |||
| } | |||
| @@ -117,6 +117,8 @@ for coll in collections: | |||
| if "Volume" in coll: | |||
| data["views"][-1]["volume"] = coll["Volume"] | |||
| if "Mass" in coll: | |||
| data["views"][-1]["mass"] = coll["Mass"] | |||
| filename = f"{coll.name}-{angles[3]}.png" | |||
| bpy.context.scene.render.filepath = workdir.joinpath(filename).resolve().__str__() | |||