mirror of
https://github.com/peter-tanner/neptunium-explorer.git
synced 2024-11-30 12:50:17 +08:00
Neptunium website
This commit is contained in:
commit
93197e6a8b
37
index.html
Normal file
37
index.html
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>Neptunium</title>
|
||||||
|
<link rel="stylesheet" href="style.css">
|
||||||
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||||
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||||
|
<link
|
||||||
|
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link rel="icon" href="neptunium.svg" sizes="any" type="image/svg+xml">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<img id="logo" src="neptunium-inverted.svg" alt="Logo" />
|
||||||
|
<button id="resetButton">📷</button>
|
||||||
|
<div id="links" >
|
||||||
|
<a href="https://github.com/peter-tanner">GitHub</a> |
|
||||||
|
<a href="https://uwaaero.space">UWA Aerospace</a> | 2024
|
||||||
|
</div>
|
||||||
|
<div id="loadingOverlay">
|
||||||
|
<div id="loadingSpinner"></div>
|
||||||
|
</div>
|
||||||
|
<script type="importmap">
|
||||||
|
{
|
||||||
|
"imports": {
|
||||||
|
"three": "https://unpkg.com/three@0.161.0/build/three.module.js",
|
||||||
|
"three/addons/": "https://unpkg.com/three@0.161.0/examples/jsm/"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script type="module" src="main.js" ></script>
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
92
main.js
Normal file
92
main.js
Normal file
|
@ -0,0 +1,92 @@
|
||||||
|
import * as THREE from "three";
|
||||||
|
import { GLTFLoader } from "three/addons/loaders/GLTFLoader.js";
|
||||||
|
import { DRACOLoader } from "three/addons/loaders/DRACOLoader.js";
|
||||||
|
import { OrbitControls } from "three/addons/controls/OrbitControls.js";
|
||||||
|
|
||||||
|
var scene, camera, renderer, controls;
|
||||||
|
var model;
|
||||||
|
|
||||||
|
init();
|
||||||
|
animate();
|
||||||
|
|
||||||
|
function init() {
|
||||||
|
showLoadingOverlay();
|
||||||
|
scene = new THREE.Scene();
|
||||||
|
|
||||||
|
camera = new THREE.PerspectiveCamera(
|
||||||
|
60,
|
||||||
|
window.innerWidth / window.innerHeight,
|
||||||
|
0.1,
|
||||||
|
1000
|
||||||
|
);
|
||||||
|
camera.position.z = -10.5 * Math.SQRT1_2;
|
||||||
|
camera.position.x = 10.5 * Math.SQRT1_2;
|
||||||
|
|
||||||
|
renderer = new THREE.WebGLRenderer({ antialias: true });
|
||||||
|
renderer.setSize(window.innerWidth, window.innerHeight);
|
||||||
|
document.body.appendChild(renderer.domElement);
|
||||||
|
|
||||||
|
var loader = new GLTFLoader();
|
||||||
|
var dracoLoader = new DRACOLoader();
|
||||||
|
dracoLoader.setDecoderConfig({ type: "js" });
|
||||||
|
dracoLoader.setDecoderPath("https://www.gstatic.com/draco/v1/decoders/");
|
||||||
|
loader.setDRACOLoader(dracoLoader);
|
||||||
|
|
||||||
|
loader.load("neptunium_web.draco.gltf", function (gltf) {
|
||||||
|
model = gltf.scene;
|
||||||
|
model.position.set(0, 0.25, 0);
|
||||||
|
// model.rotateY(Math.PI);
|
||||||
|
// model.rotateX(Math.PI);
|
||||||
|
model.rotateZ(-Math.PI / 2);
|
||||||
|
model.scale.set(100, 100, 100);
|
||||||
|
scene.add(model);
|
||||||
|
hideLoadingOverlay();
|
||||||
|
});
|
||||||
|
|
||||||
|
var global_illumination = new THREE.AmbientLight(0xffffff, 1);
|
||||||
|
scene.add(global_illumination);
|
||||||
|
|
||||||
|
controls = new OrbitControls(camera, renderer.domElement);
|
||||||
|
controls.autoRotate = true;
|
||||||
|
controls.autoRotateSpeed = 2;
|
||||||
|
|
||||||
|
renderer.setClearColor(0x000000, 1);
|
||||||
|
window.addEventListener("resize", onWindowResize, false);
|
||||||
|
document.addEventListener(
|
||||||
|
"mousedown",
|
||||||
|
() => (controls.autoRotate = false),
|
||||||
|
false
|
||||||
|
);
|
||||||
|
document.addEventListener(
|
||||||
|
"mouseup",
|
||||||
|
() => (controls.autoRotate = true),
|
||||||
|
false
|
||||||
|
);
|
||||||
|
document
|
||||||
|
.getElementById("resetButton")
|
||||||
|
.addEventListener("click", () => controls.reset());
|
||||||
|
}
|
||||||
|
|
||||||
|
function onWindowResize() {
|
||||||
|
camera.aspect = window.innerWidth / window.innerHeight;
|
||||||
|
camera.updateProjectionMatrix();
|
||||||
|
renderer.setSize(window.innerWidth, window.innerHeight);
|
||||||
|
}
|
||||||
|
|
||||||
|
function animate() {
|
||||||
|
requestAnimationFrame(animate);
|
||||||
|
controls.update();
|
||||||
|
renderer.render(scene, camera);
|
||||||
|
}
|
||||||
|
|
||||||
|
function showLoadingOverlay() {
|
||||||
|
document.getElementById("loadingOverlay").style.display = "flex";
|
||||||
|
}
|
||||||
|
|
||||||
|
function hideLoadingOverlay() {
|
||||||
|
document.getElementById("loadingOverlay").classList.add("fade-out");
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
document.getElementById("loadingOverlay").style.display = "none";
|
||||||
|
}, 1000);
|
||||||
|
}
|
284
neptunium-inverted.svg
Normal file
284
neptunium-inverted.svg
Normal file
|
@ -0,0 +1,284 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="99.333336mm"
|
||||||
|
height="99.333336mm"
|
||||||
|
viewBox="0 0 99.333336 99.333336"
|
||||||
|
version="1.1"
|
||||||
|
id="svg5"
|
||||||
|
inkscape:version="1.1 (c68e22c387, 2021-05-23)"
|
||||||
|
sodipodi:docname="neptunium-inverted.svg"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview7"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="1.28"
|
||||||
|
inkscape:cx="107.8125"
|
||||||
|
inkscape:cy="168.35938"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1017"
|
||||||
|
inkscape:window-x="-8"
|
||||||
|
inkscape:window-y="-8"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="layer2"
|
||||||
|
units="mm"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0" />
|
||||||
|
<defs
|
||||||
|
id="defs2">
|
||||||
|
<pattern
|
||||||
|
id="EMFhbasepattern"
|
||||||
|
patternUnits="userSpaceOnUse"
|
||||||
|
width="6"
|
||||||
|
height="6"
|
||||||
|
x="0"
|
||||||
|
y="0" />
|
||||||
|
</defs>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
style="display:none"
|
||||||
|
sodipodi:insensitive="true">
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="M 0,0 V 4.9666595 H 99.333337 V 0 Z"
|
||||||
|
id="path966" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="M 99.333337,99.333337 V 94.366664 H 0 v 4.966673 z"
|
||||||
|
id="path968" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="M 4.96667,0 H 0 v 99.333337 h 4.96667 z"
|
||||||
|
id="path970" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 99.333337,5e-7 h -4.96667 V 99.333337 h 4.96667 z"
|
||||||
|
id="path970-9" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 17.631667,88.90333 h -1.73833 l -4.22167,-7.20167 -1.49,-2.48333 v 0 9.685 h -1.49 V 77.23166 h 1.73833 l 4.22167,7.20167 1.49,2.48333 v 0 -9.685 h 1.49 z"
|
||||||
|
id="path972" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 23.839997,81.205 h -0.24833 v 0 h -0.24833 -0.24834 l -0.24833,0.24833 v 0 h -0.24833 v 0 0 l -0.24834,0.24833 -0.24833,0.24834 v 0 h -0.24833 v 0.24833 0 0 l -0.24834,0.24833 v 0.24834 0 l -0.24833,0.24833 v 0 0.24833 0 0.24834 0.49666 0 h 4.71833 v -0.24833 0 0 0 0 V 83.44 83.19166 82.695 l -0.24833,-0.24834 -0.24833,-0.24833 V 81.95 v 0 l -0.24834,-0.24834 v 0 l -0.24833,-0.24833 h -0.24833 L 24.584997,81.205 h -0.49666 z m 0.24834,-1.24167 0.24833,0.24833 h 0.24833 0.24834 0.24833 l 0.24833,0.24834 v 0 h 0.24834 v 0 l 0.24833,0.24833 h 0.24833 v 0.24833 l 0.24834,0.24834 h 0.24833 v 0 0.24833 h 0.24833 v 0.24833 l 0.24834,0.24834 v 0.24833 l 0.24833,0.24833 v 0.24834 0 0 0.24833 l 0.24833,0.24833 V 83.44 83.68833 83.93666 84.43333 84.93 h -6.20833 v 0.49666 0 0 0.24834 0 0.24833 0.24833 l 0.24833,0.24834 v 0 0 0.24833 0 l 0.24834,0.24833 0.24833,0.24834 v 0.24833 0 0 0 l 0.24833,0.24833 v 0 l 0.49667,0.24834 v 0 0 0 h 0.24833 0.24834 v 0 h 0.49666 0.24834 v 0 h 0.24833 0.24833 0.24834 l 0.24833,-0.24834 h 0.24833 v 0 0 l 0.24834,-0.24833 v 0 l 0.24833,-0.24833 0.24833,-0.24834 v -0.24833 l 0.24834,-0.24833 0.99333,0.745 v 0 l -0.24833,0.24833 v 0 l -0.24834,0.24833 V 87.91 l -0.24833,0.24833 -0.24833,0.24833 -0.49667,0.24834 v 0 0 l -0.24833,0.24833 h -0.24834 -0.24833 l -0.49667,0.24833 h -0.24833 -0.49667 -0.24833 v 0 h -0.24833 -0.24834 -0.24833 l -0.49667,-0.24833 h -0.24833 v 0 0 L 21.853337,88.655 v 0 h -0.24834 l -0.24833,-0.24834 -0.24833,-0.24833 -0.24834,-0.24833 v 0 0 -0.24834 h -0.24833 V 87.41333 L 20.363337,87.165 V 86.91666 L 20.114997,86.42 v 0 0 -0.24834 -0.24833 L 19.866667,85.675 V 85.42666 84.93 v -0.24834 0 0 -0.24833 0 V 84.185 83.93666 83.68833 L 20.114997,83.44 v -0.24834 -0.49666 0 0 l 0.24834,-0.24834 V 82.19833 81.95 l 0.24833,-0.24834 0.24833,-0.24833 v -0.24833 0 h 0.24834 v 0 l 0.24833,-0.24834 h 0.24833 V 80.70833 L 21.853337,80.46 h 0.24833 0.24833 v -0.24834 0 h 0.24834 0.24833 0.24833 l 0.49667,-0.24833 h 0.24833 v 0 z"
|
||||||
|
id="path974" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 34.021667,79.96333 0.24833,0.24833 h 0.24834 0.24833 0.24833 l 0.24834,0.24834 v 0 0 h 0.24833 l 0.24833,0.24833 v 0 l 0.24834,0.24833 0.24833,0.24834 h 0.24833 v 0 0.24833 0 l 0.24834,0.24833 V 81.95 l 0.24833,0.24833 v 0.24833 0.24834 0 l 0.24833,0.24833 v 0.24833 0 0.49667 0.24833 0.24834 0.49666 0 0 0 0.24834 0 0.24833 0.49667 0.24833 0.24833 l -0.24833,0.49667 v 0 0 0.24833 0.24834 h -0.24833 v 0.24833 l -0.24834,0.24833 V 87.91 h -0.24833 v 0.24833 0 l -0.24833,0.24833 v 0 l -0.24834,0.24834 h -0.24833 l -0.24833,0.24833 v 0 h -0.24834 v 0 l -0.24833,0.24833 h -0.24833 -0.24834 -0.24833 -0.24833 v 0 h -0.24834 v 0 h -0.24833 v 0 l -0.49667,-0.24833 h -0.24833 -0.24833 V 88.655 h -0.24834 l -0.24833,-0.24834 -0.24833,-0.24833 -0.24834,-0.24833 v -0.24834 0 4.718344 h -1.49 V 80.21166 h 1.49 v 1.49 0 0 -0.24833 0 l 0.24834,-0.24833 v -0.24834 l 0.24833,-0.24833 h 0.24833 L 32.283337,80.46 v 0 0 h 0.24833 l 0.24833,-0.24834 h 0.24834 0.24833 l 0.24833,-0.24833 h 0.24834 z m -0.49667,1.24167 h -0.24833 -0.24833 -0.24834 l -0.24833,0.24833 v 0 0 h -0.24833 v 0 l -0.24834,0.24833 h -0.24833 v 0 0 L 31.538337,81.95 v 0.24833 h -0.24834 v 0.24833 0 0 0 0.24834 0.24833 3.22833 0 0.24834 0 0 0.24833 0.24833 0 0.24834 h 0.24834 v 0 0.24833 l 0.24833,0.24833 v 0 0 h 0.24833 v 0 l 0.24834,0.24834 h 0.24833 v 0 0 h 0.24833 v 0 h 0.24834 v 0 h 0.49666 v 0 0 h 0.24834 0.24833 0.24833 l 0.49667,-0.24834 h 0.24833 l 0.24834,-0.24833 v -0.24833 0 l 0.24833,-0.24834 V 86.66833 L 35.759997,86.42 v -0.24834 -0.24833 -0.49667 -1.49 0 0 -0.24833 0 V 83.44 83.19166 82.94333 L 35.511667,82.695 V 82.19833 L 35.263337,81.95 v 0 h -0.24834 v -0.24834 h -0.24833 l -0.24833,-0.24833 h -0.24834 L 33.773337,81.205 Z"
|
||||||
|
id="path976" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 41.471667,80.21166 h 1.98667 v 1.24167 h -1.98667 V 87.91 h 1.73833 v 0.99333 h -1.73833 -0.24833 v 0 h -0.24834 -0.24833 V 88.655 h -0.24833 v 0 0 -0.24834 h -0.24834 V 88.15833 87.91 v 0 -0.24834 -6.20833 h -1.49 v -1.24167 h 0.99334 v 0 h 0.24833 v 0 0 l 0.24833,-0.24833 v 0 0 0 -0.24833 0 -0.24834 -1.73833 h 1.24167 z"
|
||||||
|
id="path978" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 52.398337,88.90333 h -1.49 v -1.24167 0 0 0 0 0 L 50.659997,87.91 v 0.24833 0 h -0.24833 v 0.24833 l -0.24833,0.24834 v 0 0 h -0.24834 v 0.24833 0 h -0.24833 l -0.24833,0.24833 v 0 0 h -0.24834 v 0 h -0.24833 v 0 h -0.49667 v 0 h -0.24833 v 0 h -0.24833 -0.24834 l -0.24833,-0.24833 h -0.49667 l -0.24833,-0.24833 -0.49667,-0.24834 v 0 0 -0.24833 L 45.941667,87.91 v -0.24834 l -0.24833,-0.24833 V 86.91666 L 45.444997,86.42 v -0.49667 -5.71167 h 1.49 v 5.46334 0 0 0.24833 0 0.24833 0.24834 0.24833 l 0.24834,0.24833 V 87.165 h 0.24833 v 0.24833 l 0.24833,0.24833 h 0.24834 l 0.24833,0.24834 h 0.24833 0.49667 v 0 h 0.24833 0.24834 0.24833 v 0 0 0 h 0.24833 l 0.24834,-0.24834 h 0.24833 v 0 0 -0.24833 h 0.24833 v -0.24833 0 l 0.24834,-0.24834 v 0 0 -0.24833 0 V 86.42 80.21166 h 1.49 z"
|
||||||
|
id="path980" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 59.351667,79.96333 v 0 l 0.24833,0.24833 h 0.24834 0.24833 l 0.49667,0.24834 0.24833,0.24833 h 0.24833 v 0.24833 h 0.24834 v 0.24834 0 l 0.24833,0.24833 0.24833,0.49667 v 0.49666 l 0.24834,0.49667 V 83.44 88.90333 h -1.49 v -5.215 0 -0.24833 0 -0.24834 0 -0.24833 -0.24833 l -0.24834,-0.24834 V 82.19833 L 60.096667,81.95 v -0.24834 h -0.24833 l -0.24834,-0.24833 h -0.24833 L 59.103337,81.205 h -0.49667 v 0 h -0.24833 -0.24834 l -0.24833,0.24833 v 0 0 0 h -0.24833 -0.24834 l -0.24833,0.24833 v 0 0 0 l -0.24833,0.24834 -0.24834,0.24833 v 0 0 0.24833 0 0.24834 0.24833 5.96 h -1.49 v -8.69167 h 1.49 v 1.49 0 0 -0.24833 h 0.24834 V 81.205 80.95666 h 0.24833 l 0.24833,-0.24833 0.24834,-0.24833 v 0 0 h 0.24833 v -0.24834 h 0.24833 0.24834 l 0.24833,-0.24833 h 0.49667 v 0 z"
|
||||||
|
id="path982" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 65.559997,76.48666 h 0.24834 0.24833 v 0.24834 0 0 h 0.24833 v 0.24833 0.24833 0.24834 0 0 0 0.24833 0.24833 h -0.24833 v 0 0.24834 h -0.24833 v 0 h -0.24834 -0.24833 v 0 0 h -0.24833 l -0.24834,-0.24834 v 0 0 0 l -0.24833,-0.24833 V 77.48 v -0.24834 0 0 0 -0.24833 h 0.24833 v -0.24833 0 0 0 l 0.24834,-0.24834 v 0 h 0.24833 v 0 z m 0.49667,12.41667 h -1.24167 v -8.69167 h 1.24167 z"
|
||||||
|
id="path984" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 75.741667,88.90333 h -1.24167 v -1.24167 h -0.24833 v 0 0 0 0 0.24834 l -0.24833,0.24833 v 0 0 l -0.24834,0.24833 V 88.655 h -0.24833 v 0 0 0.24833 h -0.24833 -0.24834 l -0.24833,0.24833 v 0 0 0 h -0.24833 v 0 h -0.24834 -0.24833 -0.24833 v 0 h -0.24834 v 0 h -0.49666 l -0.24834,-0.24833 h -0.24833 l -0.49667,-0.24833 -0.24833,-0.24834 v 0 0 l -0.24833,-0.24833 V 87.91 l -0.24834,-0.24834 v -0.24833 l -0.24833,-0.49667 V 86.42 85.92333 80.21166 h 1.24167 v 5.46334 0 0 0.24833 0 0.24833 0.24834 l 0.24833,0.24833 v 0.24833 l 0.24833,0.24834 v 0 l 0.24834,0.24833 0.24833,0.24833 v 0 l 0.24833,0.24834 h 0.49667 0.24833 0.24834 v 0 h 0.24833 0.24833 v 0 h 0.24834 v 0 0 l 0.24833,-0.24834 h 0.24833 v 0 0 l 0.24834,-0.24833 v 0 l 0.24833,-0.24833 v 0 -0.24834 0 0 -0.24833 h 0.24833 V 86.42 80.21166 h 1.24167 z"
|
||||||
|
id="path986" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 87.909997,79.96333 0.24834,0.24833 h 0.49666 0.24834 l 0.24833,0.24834 0.49667,0.24833 v 0 l 0.24833,0.24833 v 0 0.24834 h 0.24833 v 0.24833 l 0.24834,0.49667 v 0.49666 l 0.24833,0.49667 V 83.44 88.90333 h -1.49 v -5.215 0 0 -0.24833 0 -0.24834 -0.24833 -0.24833 -0.24834 l -0.24833,-0.24833 V 81.95 v 0 l -0.24834,-0.24834 v 0 l -0.24833,-0.24833 h -0.24833 -0.24834 L 87.661667,81.205 h -0.24833 -0.24834 v 0 h -0.24833 l -0.24833,0.24833 v 0 h -0.24834 v 0 0 h -0.24833 l -0.24833,0.24833 v 0 0 h -0.24834 V 81.95 l -0.24833,0.24833 v 0 0 0.24833 0 0.24834 0.24833 5.96 h -1.49 v -5.215 0 0 -0.24833 0 -0.24834 -0.24833 -0.24833 l -0.24833,-0.24834 V 82.19833 L 83.439997,81.95 v 0 -0.24834 h -0.24833 v -0.24833 h -0.24833 -0.24834 L 82.446667,81.205 h -0.24833 -0.24834 v 0 h -0.49666 l -0.24834,0.24833 v 0 0 0 h -0.24833 v 0 l -0.24833,0.24833 v 0 0 h -0.24834 L 80.211667,81.95 v 0.24833 0 0 0.24833 0 l -0.24833,0.24834 v 0.24833 5.96 h -1.24167 v -8.69167 h 1.24167 v 1.49 0 0 h 0.24833 v -0.24833 0 -0.24833 l 0.24833,-0.24834 v 0 0 0 l 0.24834,-0.24833 0.24833,-0.24833 v 0 0 0 0 l 0.24833,-0.24834 h 0.24834 v 0 h 0.24833 v 0 0 h 0.24833 v -0.24833 h 0.49667 v 0 h 0.24833 l 0.24834,0.24833 h 0.24833 0.24833 l 0.24834,0.24834 h 0.24833 v 0 h 0.24833 v 0.24833 h 0.24834 l 0.24833,0.24833 V 81.205 l 0.24833,0.24833 0.24834,0.49667 v 0 -0.24834 0 0 l 0.24833,-0.24833 V 81.205 l 0.24833,-0.24834 v -0.24833 h 0.24834 L 86.171667,80.46 v 0 0 l 0.24833,-0.24834 h 0.24834 0.24833 l 0.49667,-0.24833 z"
|
||||||
|
id="path988" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 73.009997,11.175 h -0.24833 -0.24833 l -0.24834,0.24833 h -0.49666 l -0.24834,0.24833 h -0.49666 L 70.774997,11.92 v 0.24833 0 l -0.24833,0.24833 -0.24833,0.24834 v 0.24833 L 70.029997,13.41 v 0.24833 0.49667 0.24833 0 0 0.24833 0 0.24834 0.49666 l 0.24834,0.24834 v 0.49666 l 0.24833,0.24834 0.24833,0.24833 v 0 l 0.24834,0.24833 v 0 l 0.24833,0.24834 h 0.49667 l 0.24833,0.24833 h 0.49667 0.49666 0.24834 0.24833 0.24833 0.49667 l 0.24833,-0.24833 0.24834,-0.24834 0.49666,-0.24833 v 0 0 L 75.493337,16.39 v -0.24834 l 0.24833,-0.24833 0.24833,-0.49667 V 14.9 14.40333 14.155 v 0 0 0 0 V 13.65833 13.41 l -0.24833,-0.24834 V 12.665 L 75.493337,12.41666 75.244997,11.92 v 0 h -0.24833 l -0.24833,-0.24834 h -0.24834 l -0.24833,-0.24833 h -0.24833 L 73.506667,11.175 Z m 0.49667,-1.9866701 h 0.24833 0.24834 l 0.49666,0.24833 h 0.24834 l 0.49666,0.24834 v 0 0 h 0.24834 l 0.24833,0.2483297 0.24833,0.2483304 0.24834,0.24834 0.49666,0.24833 0.24834,0.24833 v 0 0 l 0.24833,0.24834 v 0.24833 l 0.24833,0.24833 0.24834,0.24834 v 0.49666 l 0.24833,0.49667 v 0 0 0.24833 l 0.24833,0.49667 V 13.90666 14.40333 14.9 l 0.24834,0.49666 v 0 0 0 0.24834 l -0.24834,0.24833 v 0 0.49667 0.49666 0.49667 l -0.24833,0.745 -0.24833,0.49667 v 0 0 0.24833 0 0.24833 l -0.24834,0.49667 -0.24833,0.49667 -0.24833,0.24833 -0.24834,0.49667 -0.24833,0.49666 v 0.24834 0 h -0.24833 v 0.24833 l -0.24834,0.49667 -0.24833,0.24833 -0.24833,0.24833 -0.49667,0.49667 -0.24833,0.49667 v 0 h -0.24834 l -0.24833,0.24833 -0.24833,0.24833 -0.24834,0.24834 -0.24833,0.24833 -0.49667,0.24833 -0.24833,0.24834 h -2.73167 v 0 0 l 0.24834,-0.24834 0.24833,-0.24833 0.24833,-0.24833 0.24834,-0.24834 0.49666,-0.49666 0.49667,-0.24834 0.24833,-0.49666 v 0 h 0.24834 v -0.24834 l 0.24833,-0.24833 0.24833,-0.24833 0.49667,-0.24834 0.49667,-0.745 v 0 0 l 0.24833,-0.24833 0.24833,-0.24833 v -0.24834 l 0.24834,-0.49666 0.24833,-0.24834 0.24833,-0.49666 v 0 0 -0.24834 l 0.24834,-0.24833 v -0.49667 l 0.24833,-0.24833 V 17.88 18.12833 l -0.24833,0.24833 -0.49667,0.24834 -0.24833,0.24833 v 0 h -0.24834 v 0.24833 h -0.24833 L 73.754997,19.37 h -0.49666 -0.24834 -0.745 v 0 h -0.24833 -0.24833 -0.24834 -0.49666 -0.24834 l -0.24833,-0.24834 v 0 h -0.24833 -0.24834 v -0.24833 h -0.24833 l -0.24833,-0.24833 -0.24834,-0.24834 -0.24833,-0.24833 v 0 h -0.24833 V 17.88 l -0.24834,-0.24834 v -0.24833 l -0.24833,-0.24833 -0.24833,-0.24834 v -0.24833 h -0.24834 V 16.39 16.14166 15.89333 15.645 l -0.24833,-0.24834 V 14.9 v -0.49667 0 0 0 V 14.155 13.90666 L 67.794997,13.41 V 13.16166 12.665 l 0.24834,-0.24834 v 0 V 12.16833 11.92 h 0.24833 v -0.49667 l 0.24833,-0.24833 0.24834,-0.24834 0.24833,-0.24833 v 0 h 0.24833 V 10.43 l 0.24834,-0.24834 h 0.24833 l 0.24833,-0.2483304 0.24834,-0.2483297 h 0.49666 v -0.24834 h 0.24834 v 0 h 0.24833 l 0.49667,-0.24833 h 0.24833 0.49667 0.49666 0.24834 z"
|
||||||
|
id="path990" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 86.668337,9.1883299 h 0.24833 0.49667 l 0.49666,0.24833 v 0 h 0.24834 0.24833 v 0.24834 h 0.24833 l 0.49667,0.2483297 0.49667,0.2483304 v 0 0.24834 h 0.24833 v 0.24833 h 0.24833 l 0.24834,0.24833 V 11.175 l 0.24833,0.49666 v 0 0 0.24834 l 0.24833,0.24833 v 0.24833 0.24834 0.24833 0.49667 0 0 0.24833 0 0.24833 0.24834 l -0.24833,0.49666 v 0 0.24834 0 0.24833 l -0.24833,0.24833 -0.24834,0.49667 v 0 h -0.24833 v 0 0.24833 h -0.24833 l -0.24834,0.24834 -0.24833,0.24833 v 0 h -0.24833 v 0 l -0.24834,0.24833 h -0.24833 v 0 l 0.24833,0.24834 0.49667,0.24833 v 0 0 h 0.24833 v 0 l 0.49667,0.24833 0.24833,0.49667 v 0 h 0.24834 v 0.24833 0 l 0.24833,0.24834 v 0.24833 l 0.24833,0.24833 V 19.37 h 0.24834 v 0 0.24833 0.24833 0.24834 0.24833 l 0.24833,0.24833 v 0.24834 0 0.24833 l -0.24833,0.24833 V 21.605 21.85333 22.10166 22.35 l -0.24834,0.49666 v 0 0 l -0.24833,0.24834 v 0.24833 l -0.24833,0.24833 -0.24834,0.24834 v 0.24833 l -0.49666,0.24833 v 0 0 l -0.24834,0.24834 v 0 l -0.24833,0.24833 -0.49667,0.24833 h -0.24833 L 87.909997,25.33 v 0 0 h -0.24833 -0.24833 l -0.24834,0.24833 h -0.49666 -0.49667 -0.24833 -0.49667 -0.24833 -0.24834 -0.24833 l -0.745,-0.24833 v 0 0 h -0.24833 -0.24834 l -0.24833,-0.24834 h -0.24833 l -0.49667,-0.24833 v 0 -0.24833 0 h -0.24833 L 81.701667,24.33666 81.453337,23.84 v 0 0 l -0.24834,-0.24834 v 0 l -0.24833,-0.24833 V 23.095 l -0.24833,-0.49667 1.49,-0.99333 v 0 h 0.24833 v 0 0.24833 l 0.24833,0.24833 0.24834,0.24834 v 0 0 l 0.24833,0.24833 0.24833,0.24833 0.24834,0.24834 v 0 0 h 0.24833 v 0 l 0.24833,0.24833 h 0.49667 v 0 0 0 h 0.24833 l 0.24834,0.24833 h 0.24833 0.24833 0.24834 0.49666 l 0.24834,-0.24833 h 0.24833 l 0.49667,-0.24833 h 0.24833 l 0.49667,-0.24834 v 0 -0.24833 h 0.24833 V 22.35 l 0.24833,-0.24834 V 21.605 l 0.24834,-0.24834 V 20.86 v -0.24834 0 0 0 -0.24833 l -0.24834,-0.49667 V 19.61833 19.37 l -0.24833,-0.24834 -0.24833,-0.24833 V 18.625 h -0.24834 -0.24833 l -0.24833,-0.24834 h -0.24834 l -0.49666,-0.24833 h -0.24834 -0.745 -1.98666 v -2.235 h 2.235 0.24833 0.24833 0.49667 l 0.24833,-0.24833 h 0.49667 l 0.24833,-0.24834 v 0 -0.24833 h 0.24834 V 14.9 l 0.24833,-0.24834 V 14.40333 L 88.654997,14.155 V 13.65833 13.41 v 0 0 -0.24834 l -0.24833,-0.24833 V 12.665 l -0.24833,-0.24834 V 12.16833 L 87.909997,11.92 v 0 l -0.24833,-0.24834 v 0 l -0.24833,-0.24833 h -0.24834 -0.24833 L 86.419997,11.175 h -0.49666 v 0 h -0.24834 l -0.24833,0.24833 h -0.24833 -0.49667 l -0.24833,0.24833 h -0.24834 v 0 0.24834 h -0.24833 l -0.24833,0.24833 v 0.24833 l -0.24834,0.24834 -0.24833,0.24833 -0.24833,0.24833 -1.73834,-1.24166 v 0 0 l 0.24834,-0.24834 v 0 l 0.24833,-0.49666 0.24833,-0.24834 v 0 l 0.24834,-0.24833 v 0 0 l 0.49666,-0.24833 0.24834,-0.4966704 v 0 h 0.24833 v 0 l 0.24833,-0.2483297 h 0.24834 0.24833 l 0.49667,-0.24834 v 0 0 h 0.24833 l 0.24833,-0.24833 h 0.24834 0.24833 0.24833 0.745 z"
|
||||||
|
id="path992" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 46.686667,64.07 h -6.45667 l -14.155,-24.08834 -3.725,-6.705 V 64.07 h -5.71166 V 24.33666 h 6.20833 l 14.40333,24.08834 3.725,6.705 V 24.33666 h 5.71167 z"
|
||||||
|
id="path994" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 70.774997,33.77333 h 0.49667 l 0.99333,0.24833 0.745,0.24834 0.745,0.24833 0.99334,0.24833 0.24833,0.24834 h 0.24833 l 0.24834,0.24833 0.49666,0.49667 0.745,0.24833 0.49667,0.745 0.745,0.49667 0.745,0.745 v 0 l 0.24833,0.24833 0.24834,0.49667 0.24833,0.49666 0.49667,0.745 0.24833,0.99334 0.49667,0.99333 0.24833,0.99333 h 0.24833 v 0.49667 l 0.24834,0.49667 V 44.7 l 0.24833,0.99333 v 0.99333 l 0.24833,1.24167 v 1.24167 0 0.24833 0 0.49667 0.49666 l -0.24833,0.99334 v 0.99333 0.99333 l -0.24833,0.99334 -0.49667,1.24166 v 0 0.49667 l -0.24833,0.49667 -0.24834,0.745 -0.24833,0.745 -0.49667,0.745 -0.49666,0.745 -0.49667,0.745 -0.24833,0.24833 -0.24834,0.24833 -0.24833,0.24834 -0.49667,0.49666 -0.49666,0.49667 -0.745,0.49667 -0.745,0.49666 -0.745,0.49667 v 0 l -0.49667,0.24833 h -0.49667 l -0.49666,0.24834 -0.745,0.24833 -0.99334,0.24833 h -0.745 -1.24166 -0.24834 -0.24833 -0.49667 -0.49666 l -0.49667,-0.24833 -1.24167,-0.24833 -0.745,-0.24834 -0.745,-0.49666 -0.745,-0.24834 -0.745,-0.745 -0.49666,-0.49666 -0.745,-0.745 -0.24834,-0.49667 v 14.40333 h -5.71166 V 34.27 h 5.71166 v 3.47666 -0.24833 l 0.24834,-0.49667 0.745,-0.745 0.49666,-0.49666 0.99334,-0.745 v 0 h 0.24833 l 0.49667,-0.24834 0.745,-0.49666 h 0.745 l 0.99333,-0.24834 0.99333,-0.24833 h 0.99334 0.49666 z m -2.235,4.96667 h -0.49666 -0.49667 l -0.745,0.24833 -0.99333,0.24833 v 0 h -0.24834 -0.24833 l -0.24833,0.24834 -0.745,0.24833 -0.745,0.49667 v 0 0.24833 l -0.49667,0.24833 -0.49667,0.49667 -0.49666,0.49667 v 0.24833 0 0.24833 l -0.24834,0.745 v 0.745 10.67834 0 0.24833 0.24833 0.24834 0.745 l 0.24834,0.745 v 0 l 0.24833,0.24833 0.24833,0.24833 0.49667,0.745 0.49667,0.49667 v 0 h 0.24833 l 0.24833,0.24833 h 0.24834 l 0.49666,0.49667 0.99334,0.24833 v 0 h 0.24833 0.24833 0.24834 L 67.546667,59.6 h 0.99333 v 0 h 0.49667 0.745 l 0.745,-0.24834 0.745,-0.24833 0.99333,-0.49667 0.99334,-0.49666 0.745,-0.745 v 0 l 0.24833,-0.24834 0.49667,-0.49666 0.24833,-0.745 0.49667,-0.745 0.24833,-0.99334 0.24833,-1.24166 v -1.24167 -4.96667 0 0 V 46.43833 46.19 45.445 l -0.24833,-0.745 -0.24833,-0.99334 -0.24834,-0.99333 -0.49666,-0.745 -0.745,-0.99333 v 0 l -0.24834,-0.24834 -0.49666,-0.49666 -0.745,-0.49667 -0.745,-0.24833 -0.99334,-0.49667 -0.99333,-0.24833 z"
|
||||||
|
id="path996" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Layer 2"
|
||||||
|
style="display:none">
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-weight:normal;font-size:56.4444px;line-height:1.25;font-family:sans-serif;fill:#fffffd;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||||
|
x="11.867607"
|
||||||
|
y="63.750084"
|
||||||
|
id="text2216"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan2214"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:56.4444px;font-family:'IBM Plex Sans';-inkscape-font-specification:'IBM Plex Sans';fill:#fffffd;fill-opacity:1;stroke-width:0.264583"
|
||||||
|
x="11.867607"
|
||||||
|
y="63.750084">Np</tspan></text>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.9333px;line-height:1.25;font-family:'IBM Plex Sans';-inkscape-font-specification:'IBM Plex Sans';fill:#fffffd;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||||
|
x="7.1413736"
|
||||||
|
y="89.013885"
|
||||||
|
id="text10807"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan10805"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.9333px;font-family:'IBM Plex Sans';-inkscape-font-specification:'IBM Plex Sans';fill:#fffffd;fill-opacity:1;stroke-width:0.264583"
|
||||||
|
x="7.1413736"
|
||||||
|
y="89.013885"
|
||||||
|
rotate="0 0 0 0 0 0 0 0 0 0">Neptunium</tspan></text>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-weight:normal;font-size:22.9306px;line-height:1.25;font-family:sans-serif;fill:#fffffd;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||||
|
x="65.939125"
|
||||||
|
y="25.528156"
|
||||||
|
id="text14055"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan14053"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.9306px;font-family:'IBM Plex Sans';-inkscape-font-specification:'IBM Plex Sans';fill:#fffffd;fill-opacity:1;stroke-width:0.264583"
|
||||||
|
x="65.939125"
|
||||||
|
y="25.528156">93</tspan></text>
|
||||||
|
<rect
|
||||||
|
id="rect17345"
|
||||||
|
width="4.9666696"
|
||||||
|
height="99.333336"
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
style="fill:#fffffd;fill-opacity:1;stroke-width:0.264583" />
|
||||||
|
<rect
|
||||||
|
id="rect17347"
|
||||||
|
width="4.9666696"
|
||||||
|
height="99.333336"
|
||||||
|
x="94.366661"
|
||||||
|
y="5e-07"
|
||||||
|
style="fill:#fffffd;fill-opacity:1;stroke-width:0.264583" />
|
||||||
|
<rect
|
||||||
|
id="rect17351"
|
||||||
|
width="99.333336"
|
||||||
|
height="4.9666729"
|
||||||
|
x="0"
|
||||||
|
y="94.366661"
|
||||||
|
style="fill:#fffffd;fill-opacity:1;stroke-width:0.264583" />
|
||||||
|
<rect
|
||||||
|
id="rect17535"
|
||||||
|
width="99.333336"
|
||||||
|
height="4.9666591"
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
style="fill:#fffffd;fill-opacity:1;stroke-width:0.264583" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="g19263"
|
||||||
|
inkscape:label="Layer 2 path">
|
||||||
|
<g
|
||||||
|
aria-label="Np"
|
||||||
|
id="text19245"
|
||||||
|
style="font-size:56.4444px;line-height:1.25;fill:#fffffd;stroke-width:0.264583">
|
||||||
|
<path
|
||||||
|
d="M 26.65604,39.704769 21.91471,30.955887 H 21.745377 V 63.750084 H 17.116936 V 24.351892 h 5.475107 l 14.393322,24.045315 4.74133,8.748882 h 0.169333 V 24.351892 h 4.628441 v 39.398192 h -5.475107 z"
|
||||||
|
style="font-family:'IBM Plex Sans';-inkscape-font-specification:'IBM Plex Sans'"
|
||||||
|
id="path19265" />
|
||||||
|
<path
|
||||||
|
d="m 56.571505,34.624773 h 4.515552 v 4.74133 h 0.225778 q 1.128888,-2.765776 3.273775,-4.063997 2.201332,-1.354666 5.249329,-1.354666 2.709332,0 4.910663,1.072444 2.201332,1.072444 3.725331,3.047998 1.580443,1.975554 2.370665,4.797774 0.846666,2.82222 0.846666,6.321773 0,3.499552 -0.846666,6.321772 -0.790222,2.82222 -2.370665,4.797774 -1.523999,1.975555 -3.725331,3.047998 -2.201331,1.072444 -4.910663,1.072444 -5.926662,0 -8.523104,-5.418663 h -0.225778 v 16.03021 H 56.571505 Z M 68.594163,60.36342 q 3.838219,0 6.039551,-2.370665 2.201331,-2.427109 2.201331,-6.321773 v -4.967107 q 0,-3.894664 -2.201331,-6.265329 -2.201332,-2.427109 -6.039551,-2.427109 -1.523999,0 -2.935109,0.451555 -1.354666,0.395111 -2.370665,1.128888 -1.015999,0.733778 -1.636888,1.806221 -0.564444,1.015999 -0.564444,2.201332 v 10.837325 q 0,1.41111 0.564444,2.539998 0.620889,1.072443 1.636888,1.862665 1.015999,0.733777 2.370665,1.128888 1.41111,0.395111 2.935109,0.395111 z"
|
||||||
|
style="font-family:'IBM Plex Sans';-inkscape-font-specification:'IBM Plex Sans'"
|
||||||
|
id="path19267" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
aria-label="Neptunium"
|
||||||
|
id="text19249"
|
||||||
|
style="font-size:16.9333px;line-height:1.25;font-family:'IBM Plex Sans';-inkscape-font-specification:'IBM Plex Sans';fill:#fffffd;stroke-width:0.264583">
|
||||||
|
<path
|
||||||
|
d="m 11.577898,81.8003 -1.422397,-2.624662 h -0.0508 v 9.838247 H 8.7161705 V 77.194442 h 1.6425305 l 4.317991,7.213586 1.422397,2.624661 h 0.0508 v -9.838247 h 1.388531 v 11.819443 h -1.64253 z"
|
||||||
|
id="path19275" />
|
||||||
|
<path
|
||||||
|
d="m 23.837588,89.217085 q -0.897465,0 -1.625597,-0.321733 -0.711198,-0.321732 -1.236131,-0.914398 -0.507999,-0.609599 -0.795865,-1.43933 -0.270933,-0.846665 -0.270933,-1.89653 0,-1.032931 0.270933,-1.879596 0.287866,-0.846665 0.795865,-1.439331 0.524933,-0.609599 1.236131,-0.931331 0.728132,-0.321733 1.625597,-0.321733 0.880532,0 1.574797,0.321733 0.694265,0.321732 1.185331,0.897465 0.491066,0.558799 0.745065,1.33773 0.270933,0.778932 0.270933,1.710264 V 84.98376 H 21.33146 v 0.406399 q 0,0.558799 0.169333,1.049865 0.186266,0.474132 0.507999,0.829732 0.338666,0.355599 0.812798,0.558798 0.491066,0.2032 1.100665,0.2032 0.829731,0 1.43933,-0.389466 0.626532,-0.389466 0.965198,-1.117598 l 0.965198,0.694266 q -0.423332,0.897465 -1.320797,1.456263 -0.897465,0.541866 -2.133596,0.541866 z m 0,-8.009451 q -0.558799,0 -1.015998,0.2032 -0.457199,0.186266 -0.795865,0.541865 -0.321733,0.3556 -0.507999,0.846665 -0.186266,0.474133 -0.186266,1.049865 v 0.118533 h 4.82599 v -0.186266 q 0,-1.168398 -0.643465,-1.862663 -0.626532,-0.711199 -1.676397,-0.711199 z"
|
||||||
|
id="path19277" />
|
||||||
|
<path
|
||||||
|
d="M 29.848906,80.276303 H 31.20357 V 81.6987 h 0.06773 q 0.338666,-0.829732 0.982132,-1.219198 0.660398,-0.406399 1.574796,-0.406399 0.812799,0 1.473198,0.321733 0.660398,0.321732 1.117597,0.914398 0.474133,0.592665 0.711199,1.43933 0.253999,0.846665 0.253999,1.89653 0,1.049865 -0.253999,1.89653 -0.237066,0.846665 -0.711199,1.43933 -0.457199,0.592666 -1.117597,0.914398 -0.660399,0.321733 -1.473198,0.321733 -1.777996,0 -2.556928,-1.625597 h -0.06773 v 4.809058 h -1.354664 z m 3.606793,7.721584 q 1.151464,0 1.811863,-0.711198 0.660399,-0.728132 0.660399,-1.89653 v -1.49013 q 0,-1.168398 -0.660399,-1.879596 -0.660399,-0.728132 -1.811863,-0.728132 -0.457199,0 -0.880532,0.135466 -0.406399,0.118533 -0.711198,0.338666 -0.3048,0.220133 -0.491066,0.541866 -0.169333,0.304799 -0.169333,0.660398 v 3.251194 q 0,0.423332 0.169333,0.761998 0.186266,0.321733 0.491066,0.558799 0.304799,0.220133 0.711198,0.338666 0.423333,0.118533 0.880532,0.118533 z"
|
||||||
|
id="path19279" />
|
||||||
|
<path
|
||||||
|
d="m 41.499006,89.013885 q -0.711199,0 -1.083731,-0.389465 -0.3556,-0.4064 -0.3556,-1.049865 v -6.112921 h -1.43933 v -1.185331 h 0.812798 q 0.440266,0 0.592666,-0.169333 0.169333,-0.186267 0.169333,-0.626532 v -1.625597 h 1.219197 v 2.421462 h 1.913463 v 1.185331 h -1.913463 v 6.36692 h 1.777997 v 1.185331 z"
|
||||||
|
id="path19281" />
|
||||||
|
<path
|
||||||
|
d="m 50.896985,87.591488 h -0.06773 q -0.135466,0.3048 -0.338666,0.609599 -0.186266,0.287866 -0.474132,0.524932 -0.287866,0.220133 -0.694266,0.3556 -0.406399,0.135466 -0.948264,0.135466 -1.354664,0 -2.150529,-0.863598 -0.795866,-0.880532 -0.795866,-2.472262 v -5.604922 h 1.354664 v 5.367856 q 0,2.353728 1.99813,2.353728 0.406399,0 0.778932,-0.101599 0.389466,-0.1016 0.677332,-0.3048 0.304799,-0.203199 0.474132,-0.507999 0.186266,-0.321732 0.186266,-0.761998 v -6.045188 h 1.354664 v 8.737582 h -1.354664 z"
|
||||||
|
id="path19283" />
|
||||||
|
<path
|
||||||
|
d="m 55.130291,89.013885 v -8.737582 h 1.354664 V 81.6987 h 0.06773 q 0.321732,-0.745065 0.897464,-1.185331 0.592666,-0.440266 1.574797,-0.440266 1.354664,0 2.133596,0.880532 0.795865,0.863598 0.795865,2.455328 v 5.604922 h -1.354664 v -5.367856 q 0,-2.353728 -1.981196,-2.353728 -0.406399,0 -0.795865,0.101599 -0.372533,0.1016 -0.677332,0.3048 -0.304799,0.203199 -0.491066,0.524932 -0.169333,0.3048 -0.169333,0.728132 v 6.062121 z"
|
||||||
|
id="path19285" />
|
||||||
|
<path
|
||||||
|
d="m 65.425719,78.227373 q -0.440266,0 -0.643466,-0.203199 -0.186266,-0.220133 -0.186266,-0.558799 v -0.220133 q 0,-0.338666 0.186266,-0.541866 0.2032,-0.220133 0.643466,-0.220133 0.440266,0 0.626532,0.220133 0.203199,0.2032 0.203199,0.541866 v 0.220133 q 0,0.338666 -0.203199,0.558799 -0.186266,0.203199 -0.626532,0.203199 z m -0.677332,2.04893 h 1.354664 v 8.737582 h -1.354664 z"
|
||||||
|
id="path19287" />
|
||||||
|
<path
|
||||||
|
d="m 74.366468,87.591488 h -0.06773 q -0.135467,0.3048 -0.338666,0.609599 -0.186267,0.287866 -0.474133,0.524932 -0.287866,0.220133 -0.694265,0.3556 -0.406399,0.135466 -0.948265,0.135466 -1.354664,0 -2.150529,-0.863598 -0.795865,-0.880532 -0.795865,-2.472262 v -5.604922 h 1.354664 v 5.367856 q 0,2.353728 1.998129,2.353728 0.4064,0 0.778932,-0.101599 0.389466,-0.1016 0.677332,-0.3048 0.3048,-0.203199 0.474133,-0.507999 0.186266,-0.321732 0.186266,-0.761998 v -6.045188 h 1.354664 v 8.737582 h -1.354664 z"
|
||||||
|
id="path19289" />
|
||||||
|
<path
|
||||||
|
d="m 78.599778,89.013885 v -8.737582 h 1.354664 V 81.6987 h 0.06773 q 0.1524,-0.338666 0.338666,-0.626532 0.203199,-0.3048 0.474132,-0.524933 0.287866,-0.220132 0.660399,-0.338666 0.372533,-0.135466 0.880532,-0.135466 0.863598,0 1.59173,0.423333 0.728132,0.406399 1.083731,1.354664 h 0.03387 q 0.237066,-0.711199 0.880531,-1.236131 0.660399,-0.541866 1.777997,-0.541866 1.33773,0 2.082796,0.880532 0.761998,0.863598 0.761998,2.455328 v 5.604922 H 89.23389 v -5.367856 q 0,-1.168397 -0.457199,-1.761063 -0.457199,-0.592665 -1.456264,-0.592665 -0.406399,0 -0.778932,0.101599 -0.355599,0.1016 -0.643465,0.3048 -0.287866,0.203199 -0.457199,0.524932 -0.169333,0.3048 -0.169333,0.728132 v 6.062121 h -1.354664 v -5.367856 q 0,-1.168397 -0.457199,-1.761063 -0.457199,-0.592665 -1.422397,-0.592665 -0.4064,0 -0.778932,0.101599 -0.372533,0.1016 -0.660399,0.3048 -0.287866,0.203199 -0.474132,0.524932 -0.169333,0.3048 -0.169333,0.728132 v 6.062121 z"
|
||||||
|
id="path19291" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
aria-label="93"
|
||||||
|
id="text19253"
|
||||||
|
style="font-size:22.9306px;line-height:1.25;fill:#fffffd;stroke-width:0.264583">
|
||||||
|
<path
|
||||||
|
d="m 78.161134,15.392831 q 0,1.788587 -0.527403,3.370799 -0.527404,1.55928 -1.375836,2.866324 -0.825502,1.284114 -1.834448,2.29306 -1.008947,0.986016 -1.972032,1.605142 h -2.476504 q 1.284113,-0.940154 2.293059,-1.834448 1.008947,-0.894293 1.765657,-1.857378 0.756709,-0.986016 1.284113,-2.086685 0.527404,-1.123599 0.848432,-2.522366 l -0.114653,-0.04586 q -0.573265,0.986016 -1.490489,1.651003 -0.894293,0.642057 -2.361851,0.642057 -1.031877,0 -1.90324,-0.343959 -0.871363,-0.343959 -1.490489,-0.986016 -0.619126,-0.642056 -0.986016,-1.53635 -0.343959,-0.917224 -0.343959,-2.063754 0,-1.16946 0.36689,-2.132545 0.38982,-0.986016 1.077738,-1.673934 0.710849,-0.710849 1.673934,-1.100669 0.986015,-0.3898202 2.201337,-0.3898202 1.238253,0 2.224268,0.4356814 1.008947,0.4127508 1.696865,1.2153218 0.710848,0.77964 1.077738,1.92617 0.366889,1.14653 0.366889,2.568227 z m -5.342829,2.453575 q 1.582211,0 2.453574,-0.871363 0.894293,-0.871363 0.894293,-2.499436 v -0.183444 q 0,-1.628073 -0.894293,-2.499436 -0.871363,-0.871362 -2.453574,-0.871362 -1.582212,0 -2.476505,0.871362 -0.871363,0.871363 -0.871363,2.499436 v 0.183444 q 0,1.628073 0.871363,2.499436 0.894293,0.871363 2.476505,0.871363 z"
|
||||||
|
style="font-family:'IBM Plex Sans';-inkscape-font-specification:'IBM Plex Sans'"
|
||||||
|
id="path19270" />
|
||||||
|
<path
|
||||||
|
d="m 85.682336,16.310055 q 1.628073,0 2.430644,-0.733779 0.825501,-0.75671 0.825501,-1.92617 v -0.160514 q 0,-1.261183 -0.802571,-1.880309 -0.77964,-0.642057 -2.063754,-0.642057 -1.238252,0 -2.017892,0.550334 -0.779641,0.527404 -1.284114,1.444628 l -1.421697,-1.100669 q 0.298098,-0.481542 0.710848,-0.940154 0.435682,-0.481543 1.008947,-0.848433 0.573265,-0.3668892 1.329975,-0.5961952 0.756709,-0.229306 1.719794,-0.229306 1.008947,0 1.90324,0.2751672 0.894294,0.2522366 1.53635,0.77964 0.664988,0.504474 1.031877,1.261183 0.38982,0.75671 0.38982,1.719795 0,0.779641 -0.252236,1.398767 -0.229306,0.619126 -0.642057,1.077738 -0.412751,0.458612 -0.986016,0.77964 -0.550334,0.321029 -1.192391,0.481543 v 0.09172 q 0.642057,0.137584 1.238253,0.458612 0.619126,0.298098 1.077738,0.802571 0.481542,0.481543 0.756709,1.192391 0.298098,0.687918 0.298098,1.582212 0,1.031877 -0.38982,1.90324 -0.38982,0.848432 -1.100669,1.467558 -0.710848,0.596195 -1.719795,0.940154 -1.008946,0.343959 -2.224268,0.343959 -1.031877,0 -1.834448,-0.229306 -0.802571,-0.229306 -1.421697,-0.619126 -0.619126,-0.38982 -1.100669,-0.871362 -0.458612,-0.481543 -0.825501,-1.008947 l 1.444628,-1.100669 q 0.298097,0.481543 0.642056,0.871363 0.36689,0.38982 0.802571,0.664988 0.435682,0.275167 0.986016,0.435681 0.550334,0.137584 1.284114,0.137584 1.696864,0 2.568227,-0.75671 0.871363,-0.779641 0.871363,-2.201338 v -0.183445 q 0,-1.421697 -0.871363,-2.178406 -0.871363,-0.779641 -2.568227,-0.779641 h -1.880309 v -1.673934 z"
|
||||||
|
style="font-family:'IBM Plex Sans';-inkscape-font-specification:'IBM Plex Sans'"
|
||||||
|
id="path19272" />
|
||||||
|
</g>
|
||||||
|
<rect
|
||||||
|
id="rect19255"
|
||||||
|
width="4.9666696"
|
||||||
|
height="99.333336"
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
style="fill:#fffffd;fill-opacity:1;stroke-width:0.264583" />
|
||||||
|
<rect
|
||||||
|
id="rect19257"
|
||||||
|
width="4.9666696"
|
||||||
|
height="99.333336"
|
||||||
|
x="94.366661"
|
||||||
|
y="5e-07"
|
||||||
|
style="fill:#fffffd;fill-opacity:1;stroke-width:0.264583" />
|
||||||
|
<rect
|
||||||
|
id="rect19259"
|
||||||
|
width="99.333336"
|
||||||
|
height="4.9666729"
|
||||||
|
x="0"
|
||||||
|
y="94.366661"
|
||||||
|
style="fill:#fffffd;fill-opacity:1;stroke-width:0.264583" />
|
||||||
|
<rect
|
||||||
|
id="rect19261"
|
||||||
|
width="99.333336"
|
||||||
|
height="4.9666591"
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
style="fill:#fffffd;fill-opacity:1;stroke-width:0.264583" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 34 KiB |
272
neptunium.svg
Normal file
272
neptunium.svg
Normal file
|
@ -0,0 +1,272 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="99.333336mm"
|
||||||
|
height="99.333336mm"
|
||||||
|
viewBox="0 0 99.333336 99.333336"
|
||||||
|
version="1.1"
|
||||||
|
id="svg5"
|
||||||
|
inkscape:version="1.1 (c68e22c387, 2021-05-23)"
|
||||||
|
sodipodi:docname="neptunium.svg"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview7"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="0.90509668"
|
||||||
|
inkscape:cx="243.62038"
|
||||||
|
inkscape:cy="248.0398"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1017"
|
||||||
|
inkscape:window-x="-8"
|
||||||
|
inkscape:window-y="-8"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="text19460"
|
||||||
|
units="mm"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0" />
|
||||||
|
<defs
|
||||||
|
id="defs2">
|
||||||
|
<pattern
|
||||||
|
id="EMFhbasepattern"
|
||||||
|
patternUnits="userSpaceOnUse"
|
||||||
|
width="6"
|
||||||
|
height="6"
|
||||||
|
x="0"
|
||||||
|
y="0" />
|
||||||
|
</defs>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
style="display:none"
|
||||||
|
sodipodi:insensitive="true">
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="M 0,0 V 4.9666595 H 99.333337 V 0 Z"
|
||||||
|
id="path966" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="M 99.333337,99.333337 V 94.366664 H 0 v 4.966673 z"
|
||||||
|
id="path968" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="M 4.96667,0 H 0 v 99.333337 h 4.96667 z"
|
||||||
|
id="path970" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 99.333337,5e-7 h -4.96667 V 99.333337 h 4.96667 z"
|
||||||
|
id="path970-9" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 17.631667,88.90333 h -1.73833 l -4.22167,-7.20167 -1.49,-2.48333 v 0 9.685 h -1.49 V 77.23166 h 1.73833 l 4.22167,7.20167 1.49,2.48333 v 0 -9.685 h 1.49 z"
|
||||||
|
id="path972" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 23.839997,81.205 h -0.24833 v 0 h -0.24833 -0.24834 l -0.24833,0.24833 v 0 h -0.24833 v 0 0 l -0.24834,0.24833 -0.24833,0.24834 v 0 h -0.24833 v 0.24833 0 0 l -0.24834,0.24833 v 0.24834 0 l -0.24833,0.24833 v 0 0.24833 0 0.24834 0.49666 0 h 4.71833 v -0.24833 0 0 0 0 V 83.44 83.19166 82.695 l -0.24833,-0.24834 -0.24833,-0.24833 V 81.95 v 0 l -0.24834,-0.24834 v 0 l -0.24833,-0.24833 h -0.24833 L 24.584997,81.205 h -0.49666 z m 0.24834,-1.24167 0.24833,0.24833 h 0.24833 0.24834 0.24833 l 0.24833,0.24834 v 0 h 0.24834 v 0 l 0.24833,0.24833 h 0.24833 v 0.24833 l 0.24834,0.24834 h 0.24833 v 0 0.24833 h 0.24833 v 0.24833 l 0.24834,0.24834 v 0.24833 l 0.24833,0.24833 v 0.24834 0 0 0.24833 l 0.24833,0.24833 V 83.44 83.68833 83.93666 84.43333 84.93 h -6.20833 v 0.49666 0 0 0.24834 0 0.24833 0.24833 l 0.24833,0.24834 v 0 0 0.24833 0 l 0.24834,0.24833 0.24833,0.24834 v 0.24833 0 0 0 l 0.24833,0.24833 v 0 l 0.49667,0.24834 v 0 0 0 h 0.24833 0.24834 v 0 h 0.49666 0.24834 v 0 h 0.24833 0.24833 0.24834 l 0.24833,-0.24834 h 0.24833 v 0 0 l 0.24834,-0.24833 v 0 l 0.24833,-0.24833 0.24833,-0.24834 v -0.24833 l 0.24834,-0.24833 0.99333,0.745 v 0 l -0.24833,0.24833 v 0 l -0.24834,0.24833 V 87.91 l -0.24833,0.24833 -0.24833,0.24833 -0.49667,0.24834 v 0 0 l -0.24833,0.24833 h -0.24834 -0.24833 l -0.49667,0.24833 h -0.24833 -0.49667 -0.24833 v 0 h -0.24833 -0.24834 -0.24833 l -0.49667,-0.24833 h -0.24833 v 0 0 L 21.853337,88.655 v 0 h -0.24834 l -0.24833,-0.24834 -0.24833,-0.24833 -0.24834,-0.24833 v 0 0 -0.24834 h -0.24833 V 87.41333 L 20.363337,87.165 V 86.91666 L 20.114997,86.42 v 0 0 -0.24834 -0.24833 L 19.866667,85.675 V 85.42666 84.93 v -0.24834 0 0 -0.24833 0 V 84.185 83.93666 83.68833 L 20.114997,83.44 v -0.24834 -0.49666 0 0 l 0.24834,-0.24834 V 82.19833 81.95 l 0.24833,-0.24834 0.24833,-0.24833 v -0.24833 0 h 0.24834 v 0 l 0.24833,-0.24834 h 0.24833 V 80.70833 L 21.853337,80.46 h 0.24833 0.24833 v -0.24834 0 h 0.24834 0.24833 0.24833 l 0.49667,-0.24833 h 0.24833 v 0 z"
|
||||||
|
id="path974" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 34.021667,79.96333 0.24833,0.24833 h 0.24834 0.24833 0.24833 l 0.24834,0.24834 v 0 0 h 0.24833 l 0.24833,0.24833 v 0 l 0.24834,0.24833 0.24833,0.24834 h 0.24833 v 0 0.24833 0 l 0.24834,0.24833 V 81.95 l 0.24833,0.24833 v 0.24833 0.24834 0 l 0.24833,0.24833 v 0.24833 0 0.49667 0.24833 0.24834 0.49666 0 0 0 0.24834 0 0.24833 0.49667 0.24833 0.24833 l -0.24833,0.49667 v 0 0 0.24833 0.24834 h -0.24833 v 0.24833 l -0.24834,0.24833 V 87.91 h -0.24833 v 0.24833 0 l -0.24833,0.24833 v 0 l -0.24834,0.24834 h -0.24833 l -0.24833,0.24833 v 0 h -0.24834 v 0 l -0.24833,0.24833 h -0.24833 -0.24834 -0.24833 -0.24833 v 0 h -0.24834 v 0 h -0.24833 v 0 l -0.49667,-0.24833 h -0.24833 -0.24833 V 88.655 h -0.24834 l -0.24833,-0.24834 -0.24833,-0.24833 -0.24834,-0.24833 v -0.24834 0 4.718344 h -1.49 V 80.21166 h 1.49 v 1.49 0 0 -0.24833 0 l 0.24834,-0.24833 v -0.24834 l 0.24833,-0.24833 h 0.24833 L 32.283337,80.46 v 0 0 h 0.24833 l 0.24833,-0.24834 h 0.24834 0.24833 l 0.24833,-0.24833 h 0.24834 z m -0.49667,1.24167 h -0.24833 -0.24833 -0.24834 l -0.24833,0.24833 v 0 0 h -0.24833 v 0 l -0.24834,0.24833 h -0.24833 v 0 0 L 31.538337,81.95 v 0.24833 h -0.24834 v 0.24833 0 0 0 0.24834 0.24833 3.22833 0 0.24834 0 0 0.24833 0.24833 0 0.24834 h 0.24834 v 0 0.24833 l 0.24833,0.24833 v 0 0 h 0.24833 v 0 l 0.24834,0.24834 h 0.24833 v 0 0 h 0.24833 v 0 h 0.24834 v 0 h 0.49666 v 0 0 h 0.24834 0.24833 0.24833 l 0.49667,-0.24834 h 0.24833 l 0.24834,-0.24833 v -0.24833 0 l 0.24833,-0.24834 V 86.66833 L 35.759997,86.42 v -0.24834 -0.24833 -0.49667 -1.49 0 0 -0.24833 0 V 83.44 83.19166 82.94333 L 35.511667,82.695 V 82.19833 L 35.263337,81.95 v 0 h -0.24834 v -0.24834 h -0.24833 l -0.24833,-0.24833 h -0.24834 L 33.773337,81.205 Z"
|
||||||
|
id="path976" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 41.471667,80.21166 h 1.98667 v 1.24167 h -1.98667 V 87.91 h 1.73833 v 0.99333 h -1.73833 -0.24833 v 0 h -0.24834 -0.24833 V 88.655 h -0.24833 v 0 0 -0.24834 h -0.24834 V 88.15833 87.91 v 0 -0.24834 -6.20833 h -1.49 v -1.24167 h 0.99334 v 0 h 0.24833 v 0 0 l 0.24833,-0.24833 v 0 0 0 -0.24833 0 -0.24834 -1.73833 h 1.24167 z"
|
||||||
|
id="path978" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 52.398337,88.90333 h -1.49 v -1.24167 0 0 0 0 0 L 50.659997,87.91 v 0.24833 0 h -0.24833 v 0.24833 l -0.24833,0.24834 v 0 0 h -0.24834 v 0.24833 0 h -0.24833 l -0.24833,0.24833 v 0 0 h -0.24834 v 0 h -0.24833 v 0 h -0.49667 v 0 h -0.24833 v 0 h -0.24833 -0.24834 l -0.24833,-0.24833 h -0.49667 l -0.24833,-0.24833 -0.49667,-0.24834 v 0 0 -0.24833 L 45.941667,87.91 v -0.24834 l -0.24833,-0.24833 V 86.91666 L 45.444997,86.42 v -0.49667 -5.71167 h 1.49 v 5.46334 0 0 0.24833 0 0.24833 0.24834 0.24833 l 0.24834,0.24833 V 87.165 h 0.24833 v 0.24833 l 0.24833,0.24833 h 0.24834 l 0.24833,0.24834 h 0.24833 0.49667 v 0 h 0.24833 0.24834 0.24833 v 0 0 0 h 0.24833 l 0.24834,-0.24834 h 0.24833 v 0 0 -0.24833 h 0.24833 v -0.24833 0 l 0.24834,-0.24834 v 0 0 -0.24833 0 V 86.42 80.21166 h 1.49 z"
|
||||||
|
id="path980" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 59.351667,79.96333 v 0 l 0.24833,0.24833 h 0.24834 0.24833 l 0.49667,0.24834 0.24833,0.24833 h 0.24833 v 0.24833 h 0.24834 v 0.24834 0 l 0.24833,0.24833 0.24833,0.49667 v 0.49666 l 0.24834,0.49667 V 83.44 88.90333 h -1.49 v -5.215 0 -0.24833 0 -0.24834 0 -0.24833 -0.24833 l -0.24834,-0.24834 V 82.19833 L 60.096667,81.95 v -0.24834 h -0.24833 l -0.24834,-0.24833 h -0.24833 L 59.103337,81.205 h -0.49667 v 0 h -0.24833 -0.24834 l -0.24833,0.24833 v 0 0 0 h -0.24833 -0.24834 l -0.24833,0.24833 v 0 0 0 l -0.24833,0.24834 -0.24834,0.24833 v 0 0 0.24833 0 0.24834 0.24833 5.96 h -1.49 v -8.69167 h 1.49 v 1.49 0 0 -0.24833 h 0.24834 V 81.205 80.95666 h 0.24833 l 0.24833,-0.24833 0.24834,-0.24833 v 0 0 h 0.24833 v -0.24834 h 0.24833 0.24834 l 0.24833,-0.24833 h 0.49667 v 0 z"
|
||||||
|
id="path982" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 65.559997,76.48666 h 0.24834 0.24833 v 0.24834 0 0 h 0.24833 v 0.24833 0.24833 0.24834 0 0 0 0.24833 0.24833 h -0.24833 v 0 0.24834 h -0.24833 v 0 h -0.24834 -0.24833 v 0 0 h -0.24833 l -0.24834,-0.24834 v 0 0 0 l -0.24833,-0.24833 V 77.48 v -0.24834 0 0 0 -0.24833 h 0.24833 v -0.24833 0 0 0 l 0.24834,-0.24834 v 0 h 0.24833 v 0 z m 0.49667,12.41667 h -1.24167 v -8.69167 h 1.24167 z"
|
||||||
|
id="path984" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 75.741667,88.90333 h -1.24167 v -1.24167 h -0.24833 v 0 0 0 0 0.24834 l -0.24833,0.24833 v 0 0 l -0.24834,0.24833 V 88.655 h -0.24833 v 0 0 0.24833 h -0.24833 -0.24834 l -0.24833,0.24833 v 0 0 0 h -0.24833 v 0 h -0.24834 -0.24833 -0.24833 v 0 h -0.24834 v 0 h -0.49666 l -0.24834,-0.24833 h -0.24833 l -0.49667,-0.24833 -0.24833,-0.24834 v 0 0 l -0.24833,-0.24833 V 87.91 l -0.24834,-0.24834 v -0.24833 l -0.24833,-0.49667 V 86.42 85.92333 80.21166 h 1.24167 v 5.46334 0 0 0.24833 0 0.24833 0.24834 l 0.24833,0.24833 v 0.24833 l 0.24833,0.24834 v 0 l 0.24834,0.24833 0.24833,0.24833 v 0 l 0.24833,0.24834 h 0.49667 0.24833 0.24834 v 0 h 0.24833 0.24833 v 0 h 0.24834 v 0 0 l 0.24833,-0.24834 h 0.24833 v 0 0 l 0.24834,-0.24833 v 0 l 0.24833,-0.24833 v 0 -0.24834 0 0 -0.24833 h 0.24833 V 86.42 80.21166 h 1.24167 z"
|
||||||
|
id="path986" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 87.909997,79.96333 0.24834,0.24833 h 0.49666 0.24834 l 0.24833,0.24834 0.49667,0.24833 v 0 l 0.24833,0.24833 v 0 0.24834 h 0.24833 v 0.24833 l 0.24834,0.49667 v 0.49666 l 0.24833,0.49667 V 83.44 88.90333 h -1.49 v -5.215 0 0 -0.24833 0 -0.24834 -0.24833 -0.24833 -0.24834 l -0.24833,-0.24833 V 81.95 v 0 l -0.24834,-0.24834 v 0 l -0.24833,-0.24833 h -0.24833 -0.24834 L 87.661667,81.205 h -0.24833 -0.24834 v 0 h -0.24833 l -0.24833,0.24833 v 0 h -0.24834 v 0 0 h -0.24833 l -0.24833,0.24833 v 0 0 h -0.24834 V 81.95 l -0.24833,0.24833 v 0 0 0.24833 0 0.24834 0.24833 5.96 h -1.49 v -5.215 0 0 -0.24833 0 -0.24834 -0.24833 -0.24833 l -0.24833,-0.24834 V 82.19833 L 83.439997,81.95 v 0 -0.24834 h -0.24833 v -0.24833 h -0.24833 -0.24834 L 82.446667,81.205 h -0.24833 -0.24834 v 0 h -0.49666 l -0.24834,0.24833 v 0 0 0 h -0.24833 v 0 l -0.24833,0.24833 v 0 0 h -0.24834 L 80.211667,81.95 v 0.24833 0 0 0.24833 0 l -0.24833,0.24834 v 0.24833 5.96 h -1.24167 v -8.69167 h 1.24167 v 1.49 0 0 h 0.24833 v -0.24833 0 -0.24833 l 0.24833,-0.24834 v 0 0 0 l 0.24834,-0.24833 0.24833,-0.24833 v 0 0 0 0 l 0.24833,-0.24834 h 0.24834 v 0 h 0.24833 v 0 0 h 0.24833 v -0.24833 h 0.49667 v 0 h 0.24833 l 0.24834,0.24833 h 0.24833 0.24833 l 0.24834,0.24834 h 0.24833 v 0 h 0.24833 v 0.24833 h 0.24834 l 0.24833,0.24833 V 81.205 l 0.24833,0.24833 0.24834,0.49667 v 0 -0.24834 0 0 l 0.24833,-0.24833 V 81.205 l 0.24833,-0.24834 v -0.24833 h 0.24834 L 86.171667,80.46 v 0 0 l 0.24833,-0.24834 h 0.24834 0.24833 l 0.49667,-0.24833 z"
|
||||||
|
id="path988" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 73.009997,11.175 h -0.24833 -0.24833 l -0.24834,0.24833 h -0.49666 l -0.24834,0.24833 h -0.49666 L 70.774997,11.92 v 0.24833 0 l -0.24833,0.24833 -0.24833,0.24834 v 0.24833 L 70.029997,13.41 v 0.24833 0.49667 0.24833 0 0 0.24833 0 0.24834 0.49666 l 0.24834,0.24834 v 0.49666 l 0.24833,0.24834 0.24833,0.24833 v 0 l 0.24834,0.24833 v 0 l 0.24833,0.24834 h 0.49667 l 0.24833,0.24833 h 0.49667 0.49666 0.24834 0.24833 0.24833 0.49667 l 0.24833,-0.24833 0.24834,-0.24834 0.49666,-0.24833 v 0 0 L 75.493337,16.39 v -0.24834 l 0.24833,-0.24833 0.24833,-0.49667 V 14.9 14.40333 14.155 v 0 0 0 0 V 13.65833 13.41 l -0.24833,-0.24834 V 12.665 L 75.493337,12.41666 75.244997,11.92 v 0 h -0.24833 l -0.24833,-0.24834 h -0.24834 l -0.24833,-0.24833 h -0.24833 L 73.506667,11.175 Z m 0.49667,-1.9866701 h 0.24833 0.24834 l 0.49666,0.24833 h 0.24834 l 0.49666,0.24834 v 0 0 h 0.24834 l 0.24833,0.2483297 0.24833,0.2483304 0.24834,0.24834 0.49666,0.24833 0.24834,0.24833 v 0 0 l 0.24833,0.24834 v 0.24833 l 0.24833,0.24833 0.24834,0.24834 v 0.49666 l 0.24833,0.49667 v 0 0 0.24833 l 0.24833,0.49667 V 13.90666 14.40333 14.9 l 0.24834,0.49666 v 0 0 0 0.24834 l -0.24834,0.24833 v 0 0.49667 0.49666 0.49667 l -0.24833,0.745 -0.24833,0.49667 v 0 0 0.24833 0 0.24833 l -0.24834,0.49667 -0.24833,0.49667 -0.24833,0.24833 -0.24834,0.49667 -0.24833,0.49666 v 0.24834 0 h -0.24833 v 0.24833 l -0.24834,0.49667 -0.24833,0.24833 -0.24833,0.24833 -0.49667,0.49667 -0.24833,0.49667 v 0 h -0.24834 l -0.24833,0.24833 -0.24833,0.24833 -0.24834,0.24834 -0.24833,0.24833 -0.49667,0.24833 -0.24833,0.24834 h -2.73167 v 0 0 l 0.24834,-0.24834 0.24833,-0.24833 0.24833,-0.24833 0.24834,-0.24834 0.49666,-0.49666 0.49667,-0.24834 0.24833,-0.49666 v 0 h 0.24834 v -0.24834 l 0.24833,-0.24833 0.24833,-0.24833 0.49667,-0.24834 0.49667,-0.745 v 0 0 l 0.24833,-0.24833 0.24833,-0.24833 v -0.24834 l 0.24834,-0.49666 0.24833,-0.24834 0.24833,-0.49666 v 0 0 -0.24834 l 0.24834,-0.24833 v -0.49667 l 0.24833,-0.24833 V 17.88 18.12833 l -0.24833,0.24833 -0.49667,0.24834 -0.24833,0.24833 v 0 h -0.24834 v 0.24833 h -0.24833 L 73.754997,19.37 h -0.49666 -0.24834 -0.745 v 0 h -0.24833 -0.24833 -0.24834 -0.49666 -0.24834 l -0.24833,-0.24834 v 0 h -0.24833 -0.24834 v -0.24833 h -0.24833 l -0.24833,-0.24833 -0.24834,-0.24834 -0.24833,-0.24833 v 0 h -0.24833 V 17.88 l -0.24834,-0.24834 v -0.24833 l -0.24833,-0.24833 -0.24833,-0.24834 v -0.24833 h -0.24834 V 16.39 16.14166 15.89333 15.645 l -0.24833,-0.24834 V 14.9 v -0.49667 0 0 0 V 14.155 13.90666 L 67.794997,13.41 V 13.16166 12.665 l 0.24834,-0.24834 v 0 V 12.16833 11.92 h 0.24833 v -0.49667 l 0.24833,-0.24833 0.24834,-0.24834 0.24833,-0.24833 v 0 h 0.24833 V 10.43 l 0.24834,-0.24834 h 0.24833 l 0.24833,-0.2483304 0.24834,-0.2483297 h 0.49666 v -0.24834 h 0.24834 v 0 h 0.24833 l 0.49667,-0.24833 h 0.24833 0.49667 0.49666 0.24834 z"
|
||||||
|
id="path990" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 86.668337,9.1883299 h 0.24833 0.49667 l 0.49666,0.24833 v 0 h 0.24834 0.24833 v 0.24834 h 0.24833 l 0.49667,0.2483297 0.49667,0.2483304 v 0 0.24834 h 0.24833 v 0.24833 h 0.24833 l 0.24834,0.24833 V 11.175 l 0.24833,0.49666 v 0 0 0.24834 l 0.24833,0.24833 v 0.24833 0.24834 0.24833 0.49667 0 0 0.24833 0 0.24833 0.24834 l -0.24833,0.49666 v 0 0.24834 0 0.24833 l -0.24833,0.24833 -0.24834,0.49667 v 0 h -0.24833 v 0 0.24833 h -0.24833 l -0.24834,0.24834 -0.24833,0.24833 v 0 h -0.24833 v 0 l -0.24834,0.24833 h -0.24833 v 0 l 0.24833,0.24834 0.49667,0.24833 v 0 0 h 0.24833 v 0 l 0.49667,0.24833 0.24833,0.49667 v 0 h 0.24834 v 0.24833 0 l 0.24833,0.24834 v 0.24833 l 0.24833,0.24833 V 19.37 h 0.24834 v 0 0.24833 0.24833 0.24834 0.24833 l 0.24833,0.24833 v 0.24834 0 0.24833 l -0.24833,0.24833 V 21.605 21.85333 22.10166 22.35 l -0.24834,0.49666 v 0 0 l -0.24833,0.24834 v 0.24833 l -0.24833,0.24833 -0.24834,0.24834 v 0.24833 l -0.49666,0.24833 v 0 0 l -0.24834,0.24834 v 0 l -0.24833,0.24833 -0.49667,0.24833 h -0.24833 L 87.909997,25.33 v 0 0 h -0.24833 -0.24833 l -0.24834,0.24833 h -0.49666 -0.49667 -0.24833 -0.49667 -0.24833 -0.24834 -0.24833 l -0.745,-0.24833 v 0 0 h -0.24833 -0.24834 l -0.24833,-0.24834 h -0.24833 l -0.49667,-0.24833 v 0 -0.24833 0 h -0.24833 L 81.701667,24.33666 81.453337,23.84 v 0 0 l -0.24834,-0.24834 v 0 l -0.24833,-0.24833 V 23.095 l -0.24833,-0.49667 1.49,-0.99333 v 0 h 0.24833 v 0 0.24833 l 0.24833,0.24833 0.24834,0.24834 v 0 0 l 0.24833,0.24833 0.24833,0.24833 0.24834,0.24834 v 0 0 h 0.24833 v 0 l 0.24833,0.24833 h 0.49667 v 0 0 0 h 0.24833 l 0.24834,0.24833 h 0.24833 0.24833 0.24834 0.49666 l 0.24834,-0.24833 h 0.24833 l 0.49667,-0.24833 h 0.24833 l 0.49667,-0.24834 v 0 -0.24833 h 0.24833 V 22.35 l 0.24833,-0.24834 V 21.605 l 0.24834,-0.24834 V 20.86 v -0.24834 0 0 0 -0.24833 l -0.24834,-0.49667 V 19.61833 19.37 l -0.24833,-0.24834 -0.24833,-0.24833 V 18.625 h -0.24834 -0.24833 l -0.24833,-0.24834 h -0.24834 l -0.49666,-0.24833 h -0.24834 -0.745 -1.98666 v -2.235 h 2.235 0.24833 0.24833 0.49667 l 0.24833,-0.24833 h 0.49667 l 0.24833,-0.24834 v 0 -0.24833 h 0.24834 V 14.9 l 0.24833,-0.24834 V 14.40333 L 88.654997,14.155 V 13.65833 13.41 v 0 0 -0.24834 l -0.24833,-0.24833 V 12.665 l -0.24833,-0.24834 V 12.16833 L 87.909997,11.92 v 0 l -0.24833,-0.24834 v 0 l -0.24833,-0.24833 h -0.24834 -0.24833 L 86.419997,11.175 h -0.49666 v 0 h -0.24834 l -0.24833,0.24833 h -0.24833 -0.49667 l -0.24833,0.24833 h -0.24834 v 0 0.24834 h -0.24833 l -0.24833,0.24833 v 0.24833 l -0.24834,0.24834 -0.24833,0.24833 -0.24833,0.24833 -1.73834,-1.24166 v 0 0 l 0.24834,-0.24834 v 0 l 0.24833,-0.49666 0.24833,-0.24834 v 0 l 0.24834,-0.24833 v 0 0 l 0.49666,-0.24833 0.24834,-0.4966704 v 0 h 0.24833 v 0 l 0.24833,-0.2483297 h 0.24834 0.24833 l 0.49667,-0.24834 v 0 0 h 0.24833 l 0.24833,-0.24833 h 0.24834 0.24833 0.24833 0.745 z"
|
||||||
|
id="path992" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 46.686667,64.07 h -6.45667 l -14.155,-24.08834 -3.725,-6.705 V 64.07 h -5.71166 V 24.33666 h 6.20833 l 14.40333,24.08834 3.725,6.705 V 24.33666 h 5.71167 z"
|
||||||
|
id="path994" />
|
||||||
|
<path
|
||||||
|
style="fill:#808000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583"
|
||||||
|
d="m 70.774997,33.77333 h 0.49667 l 0.99333,0.24833 0.745,0.24834 0.745,0.24833 0.99334,0.24833 0.24833,0.24834 h 0.24833 l 0.24834,0.24833 0.49666,0.49667 0.745,0.24833 0.49667,0.745 0.745,0.49667 0.745,0.745 v 0 l 0.24833,0.24833 0.24834,0.49667 0.24833,0.49666 0.49667,0.745 0.24833,0.99334 0.49667,0.99333 0.24833,0.99333 h 0.24833 v 0.49667 l 0.24834,0.49667 V 44.7 l 0.24833,0.99333 v 0.99333 l 0.24833,1.24167 v 1.24167 0 0.24833 0 0.49667 0.49666 l -0.24833,0.99334 v 0.99333 0.99333 l -0.24833,0.99334 -0.49667,1.24166 v 0 0.49667 l -0.24833,0.49667 -0.24834,0.745 -0.24833,0.745 -0.49667,0.745 -0.49666,0.745 -0.49667,0.745 -0.24833,0.24833 -0.24834,0.24833 -0.24833,0.24834 -0.49667,0.49666 -0.49666,0.49667 -0.745,0.49667 -0.745,0.49666 -0.745,0.49667 v 0 l -0.49667,0.24833 h -0.49667 l -0.49666,0.24834 -0.745,0.24833 -0.99334,0.24833 h -0.745 -1.24166 -0.24834 -0.24833 -0.49667 -0.49666 l -0.49667,-0.24833 -1.24167,-0.24833 -0.745,-0.24834 -0.745,-0.49666 -0.745,-0.24834 -0.745,-0.745 -0.49666,-0.49666 -0.745,-0.745 -0.24834,-0.49667 v 14.40333 h -5.71166 V 34.27 h 5.71166 v 3.47666 -0.24833 l 0.24834,-0.49667 0.745,-0.745 0.49666,-0.49666 0.99334,-0.745 v 0 h 0.24833 l 0.49667,-0.24834 0.745,-0.49666 h 0.745 l 0.99333,-0.24834 0.99333,-0.24833 h 0.99334 0.49666 z m -2.235,4.96667 h -0.49666 -0.49667 l -0.745,0.24833 -0.99333,0.24833 v 0 h -0.24834 -0.24833 l -0.24833,0.24834 -0.745,0.24833 -0.745,0.49667 v 0 0.24833 l -0.49667,0.24833 -0.49667,0.49667 -0.49666,0.49667 v 0.24833 0 0.24833 l -0.24834,0.745 v 0.745 10.67834 0 0.24833 0.24833 0.24834 0.745 l 0.24834,0.745 v 0 l 0.24833,0.24833 0.24833,0.24833 0.49667,0.745 0.49667,0.49667 v 0 h 0.24833 l 0.24833,0.24833 h 0.24834 l 0.49666,0.49667 0.99334,0.24833 v 0 h 0.24833 0.24833 0.24834 L 67.546667,59.6 h 0.99333 v 0 h 0.49667 0.745 l 0.745,-0.24834 0.745,-0.24833 0.99333,-0.49667 0.99334,-0.49666 0.745,-0.745 v 0 l 0.24833,-0.24834 0.49667,-0.49666 0.24833,-0.745 0.49667,-0.745 0.24833,-0.99334 0.24833,-1.24166 v -1.24167 -4.96667 0 0 V 46.43833 46.19 45.445 l -0.24833,-0.745 -0.24833,-0.99334 -0.24834,-0.99333 -0.49666,-0.745 -0.745,-0.99333 v 0 l -0.24834,-0.24834 -0.49666,-0.49666 -0.745,-0.49667 -0.745,-0.24833 -0.99334,-0.49667 -0.99333,-0.24833 z"
|
||||||
|
id="path996" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Layer 2"
|
||||||
|
style="display:none">
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-weight:normal;font-size:56.4444px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||||
|
x="11.867607"
|
||||||
|
y="63.750084"
|
||||||
|
id="text2216"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan2214"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:56.4444px;font-family:'IBM Plex Sans';-inkscape-font-specification:'IBM Plex Sans';stroke-width:0.264583"
|
||||||
|
x="11.867607"
|
||||||
|
y="63.750084">Np</tspan></text>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.9333px;line-height:1.25;font-family:'IBM Plex Sans';-inkscape-font-specification:'IBM Plex Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||||
|
x="7.1413736"
|
||||||
|
y="89.013885"
|
||||||
|
id="text10807"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan10805"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.9333px;font-family:'IBM Plex Sans';-inkscape-font-specification:'IBM Plex Sans';stroke-width:0.264583"
|
||||||
|
x="7.1413736"
|
||||||
|
y="89.013885"
|
||||||
|
rotate="0 0 0 0 0 0 0 0 0 0">Neptunium</tspan></text>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-weight:normal;font-size:22.9306px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||||
|
x="65.939125"
|
||||||
|
y="25.528156"
|
||||||
|
id="text14055"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan14053"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.9306px;font-family:'IBM Plex Sans';-inkscape-font-specification:'IBM Plex Sans';stroke-width:0.264583"
|
||||||
|
x="65.939125"
|
||||||
|
y="25.528156">93</tspan></text>
|
||||||
|
<rect
|
||||||
|
id="rect17345"
|
||||||
|
width="4.9666696"
|
||||||
|
height="99.333336"
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
style="stroke-width:0.264583" />
|
||||||
|
<rect
|
||||||
|
id="rect17347"
|
||||||
|
width="4.9666696"
|
||||||
|
height="99.333336"
|
||||||
|
x="94.366661"
|
||||||
|
y="5e-07"
|
||||||
|
style="stroke-width:0.264583" />
|
||||||
|
<rect
|
||||||
|
id="rect17351"
|
||||||
|
width="99.333336"
|
||||||
|
height="4.9666729"
|
||||||
|
x="0"
|
||||||
|
y="94.366661"
|
||||||
|
style="stroke-width:0.264583" />
|
||||||
|
<rect
|
||||||
|
id="rect17535"
|
||||||
|
width="99.333336"
|
||||||
|
height="4.9666591"
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
style="stroke-width:0.264583" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="g19478"
|
||||||
|
inkscape:label="Layer 2 path">
|
||||||
|
<g
|
||||||
|
aria-label="Np"
|
||||||
|
id="text19460"
|
||||||
|
style="font-size:56.4444px;line-height:1.25;stroke-width:0.264583">
|
||||||
|
<path
|
||||||
|
d="M 26.65604,39.704769 21.91471,30.955887 H 21.745377 V 63.750084 H 17.116936 V 24.351892 h 5.475107 l 14.393322,24.045315 4.74133,8.748882 h 0.169333 V 24.351892 h 4.628441 v 39.398192 h -5.475107 z"
|
||||||
|
style="font-family:'IBM Plex Sans';-inkscape-font-specification:'IBM Plex Sans'"
|
||||||
|
id="path19480" />
|
||||||
|
<path
|
||||||
|
d="m 56.571505,34.624773 h 4.515552 v 4.74133 h 0.225778 q 1.128888,-2.765776 3.273775,-4.063997 2.201332,-1.354666 5.249329,-1.354666 2.709332,0 4.910663,1.072444 2.201332,1.072444 3.725331,3.047998 1.580443,1.975554 2.370665,4.797774 0.846666,2.82222 0.846666,6.321773 0,3.499552 -0.846666,6.321772 -0.790222,2.82222 -2.370665,4.797774 -1.523999,1.975555 -3.725331,3.047998 -2.201331,1.072444 -4.910663,1.072444 -5.926662,0 -8.523104,-5.418663 h -0.225778 v 16.03021 H 56.571505 Z M 68.594163,60.36342 q 3.838219,0 6.039551,-2.370665 2.201331,-2.427109 2.201331,-6.321773 v -4.967107 q 0,-3.894664 -2.201331,-6.265329 -2.201332,-2.427109 -6.039551,-2.427109 -1.523999,0 -2.935109,0.451555 -1.354666,0.395111 -2.370665,1.128888 -1.015999,0.733778 -1.636888,1.806221 -0.564444,1.015999 -0.564444,2.201332 v 10.837325 q 0,1.41111 0.564444,2.539998 0.620889,1.072443 1.636888,1.862665 1.015999,0.733777 2.370665,1.128888 1.41111,0.395111 2.935109,0.395111 z"
|
||||||
|
style="font-family:'IBM Plex Sans';-inkscape-font-specification:'IBM Plex Sans'"
|
||||||
|
id="path19482" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
aria-label="Neptunium"
|
||||||
|
id="text19464"
|
||||||
|
style="font-size:16.9333px;line-height:1.25;font-family:'IBM Plex Sans';-inkscape-font-specification:'IBM Plex Sans';stroke-width:0.264583">
|
||||||
|
<path
|
||||||
|
d="m 11.577898,81.8003 -1.422397,-2.624662 h -0.0508 v 9.838247 H 8.7161705 V 77.194442 h 1.6425305 l 4.317991,7.213586 1.422397,2.624661 h 0.0508 v -9.838247 h 1.388531 v 11.819443 h -1.64253 z"
|
||||||
|
id="path19485" />
|
||||||
|
<path
|
||||||
|
d="m 23.837588,89.217085 q -0.897465,0 -1.625597,-0.321733 -0.711198,-0.321732 -1.236131,-0.914398 -0.507999,-0.609599 -0.795865,-1.43933 -0.270933,-0.846665 -0.270933,-1.89653 0,-1.032931 0.270933,-1.879596 0.287866,-0.846665 0.795865,-1.439331 0.524933,-0.609599 1.236131,-0.931331 0.728132,-0.321733 1.625597,-0.321733 0.880532,0 1.574797,0.321733 0.694265,0.321732 1.185331,0.897465 0.491066,0.558799 0.745065,1.33773 0.270933,0.778932 0.270933,1.710264 V 84.98376 H 21.33146 v 0.406399 q 0,0.558799 0.169333,1.049865 0.186266,0.474132 0.507999,0.829732 0.338666,0.355599 0.812798,0.558798 0.491066,0.2032 1.100665,0.2032 0.829731,0 1.43933,-0.389466 0.626532,-0.389466 0.965198,-1.117598 l 0.965198,0.694266 q -0.423332,0.897465 -1.320797,1.456263 -0.897465,0.541866 -2.133596,0.541866 z m 0,-8.009451 q -0.558799,0 -1.015998,0.2032 -0.457199,0.186266 -0.795865,0.541865 -0.321733,0.3556 -0.507999,0.846665 -0.186266,0.474133 -0.186266,1.049865 v 0.118533 h 4.82599 v -0.186266 q 0,-1.168398 -0.643465,-1.862663 -0.626532,-0.711199 -1.676397,-0.711199 z"
|
||||||
|
id="path19487" />
|
||||||
|
<path
|
||||||
|
d="M 29.848906,80.276303 H 31.20357 V 81.6987 h 0.06773 q 0.338666,-0.829732 0.982132,-1.219198 0.660398,-0.406399 1.574796,-0.406399 0.812799,0 1.473198,0.321733 0.660398,0.321732 1.117597,0.914398 0.474133,0.592665 0.711199,1.43933 0.253999,0.846665 0.253999,1.89653 0,1.049865 -0.253999,1.89653 -0.237066,0.846665 -0.711199,1.43933 -0.457199,0.592666 -1.117597,0.914398 -0.660399,0.321733 -1.473198,0.321733 -1.777996,0 -2.556928,-1.625597 h -0.06773 v 4.809058 h -1.354664 z m 3.606793,7.721584 q 1.151464,0 1.811863,-0.711198 0.660399,-0.728132 0.660399,-1.89653 v -1.49013 q 0,-1.168398 -0.660399,-1.879596 -0.660399,-0.728132 -1.811863,-0.728132 -0.457199,0 -0.880532,0.135466 -0.406399,0.118533 -0.711198,0.338666 -0.3048,0.220133 -0.491066,0.541866 -0.169333,0.304799 -0.169333,0.660398 v 3.251194 q 0,0.423332 0.169333,0.761998 0.186266,0.321733 0.491066,0.558799 0.304799,0.220133 0.711198,0.338666 0.423333,0.118533 0.880532,0.118533 z"
|
||||||
|
id="path19489" />
|
||||||
|
<path
|
||||||
|
d="m 41.499006,89.013885 q -0.711199,0 -1.083731,-0.389465 -0.3556,-0.4064 -0.3556,-1.049865 v -6.112921 h -1.43933 v -1.185331 h 0.812798 q 0.440266,0 0.592666,-0.169333 0.169333,-0.186267 0.169333,-0.626532 v -1.625597 h 1.219197 v 2.421462 h 1.913463 v 1.185331 h -1.913463 v 6.36692 h 1.777997 v 1.185331 z"
|
||||||
|
id="path19491" />
|
||||||
|
<path
|
||||||
|
d="m 50.896985,87.591488 h -0.06773 q -0.135466,0.3048 -0.338666,0.609599 -0.186266,0.287866 -0.474132,0.524932 -0.287866,0.220133 -0.694266,0.3556 -0.406399,0.135466 -0.948264,0.135466 -1.354664,0 -2.150529,-0.863598 -0.795866,-0.880532 -0.795866,-2.472262 v -5.604922 h 1.354664 v 5.367856 q 0,2.353728 1.99813,2.353728 0.406399,0 0.778932,-0.101599 0.389466,-0.1016 0.677332,-0.3048 0.304799,-0.203199 0.474132,-0.507999 0.186266,-0.321732 0.186266,-0.761998 v -6.045188 h 1.354664 v 8.737582 h -1.354664 z"
|
||||||
|
id="path19493" />
|
||||||
|
<path
|
||||||
|
d="m 55.130291,89.013885 v -8.737582 h 1.354664 V 81.6987 h 0.06773 q 0.321732,-0.745065 0.897464,-1.185331 0.592666,-0.440266 1.574797,-0.440266 1.354664,0 2.133596,0.880532 0.795865,0.863598 0.795865,2.455328 v 5.604922 h -1.354664 v -5.367856 q 0,-2.353728 -1.981196,-2.353728 -0.406399,0 -0.795865,0.101599 -0.372533,0.1016 -0.677332,0.3048 -0.304799,0.203199 -0.491066,0.524932 -0.169333,0.3048 -0.169333,0.728132 v 6.062121 z"
|
||||||
|
id="path19495" />
|
||||||
|
<path
|
||||||
|
d="m 65.425719,78.227373 q -0.440266,0 -0.643466,-0.203199 -0.186266,-0.220133 -0.186266,-0.558799 v -0.220133 q 0,-0.338666 0.186266,-0.541866 0.2032,-0.220133 0.643466,-0.220133 0.440266,0 0.626532,0.220133 0.203199,0.2032 0.203199,0.541866 v 0.220133 q 0,0.338666 -0.203199,0.558799 -0.186266,0.203199 -0.626532,0.203199 z m -0.677332,2.04893 h 1.354664 v 8.737582 h -1.354664 z"
|
||||||
|
id="path19497" />
|
||||||
|
<path
|
||||||
|
d="m 74.366468,87.591488 h -0.06773 q -0.135467,0.3048 -0.338666,0.609599 -0.186267,0.287866 -0.474133,0.524932 -0.287866,0.220133 -0.694265,0.3556 -0.406399,0.135466 -0.948265,0.135466 -1.354664,0 -2.150529,-0.863598 -0.795865,-0.880532 -0.795865,-2.472262 v -5.604922 h 1.354664 v 5.367856 q 0,2.353728 1.998129,2.353728 0.4064,0 0.778932,-0.101599 0.389466,-0.1016 0.677332,-0.3048 0.3048,-0.203199 0.474133,-0.507999 0.186266,-0.321732 0.186266,-0.761998 v -6.045188 h 1.354664 v 8.737582 h -1.354664 z"
|
||||||
|
id="path19499" />
|
||||||
|
<path
|
||||||
|
d="m 78.599778,89.013885 v -8.737582 h 1.354664 V 81.6987 h 0.06773 q 0.1524,-0.338666 0.338666,-0.626532 0.203199,-0.3048 0.474132,-0.524933 0.287866,-0.220132 0.660399,-0.338666 0.372533,-0.135466 0.880532,-0.135466 0.863598,0 1.59173,0.423333 0.728132,0.406399 1.083731,1.354664 h 0.03387 q 0.237066,-0.711199 0.880531,-1.236131 0.660399,-0.541866 1.777997,-0.541866 1.33773,0 2.082796,0.880532 0.761998,0.863598 0.761998,2.455328 v 5.604922 H 89.23389 v -5.367856 q 0,-1.168397 -0.457199,-1.761063 -0.457199,-0.592665 -1.456264,-0.592665 -0.406399,0 -0.778932,0.101599 -0.355599,0.1016 -0.643465,0.3048 -0.287866,0.203199 -0.457199,0.524932 -0.169333,0.3048 -0.169333,0.728132 v 6.062121 h -1.354664 v -5.367856 q 0,-1.168397 -0.457199,-1.761063 -0.457199,-0.592665 -1.422397,-0.592665 -0.4064,0 -0.778932,0.101599 -0.372533,0.1016 -0.660399,0.3048 -0.287866,0.203199 -0.474132,0.524932 -0.169333,0.3048 -0.169333,0.728132 v 6.062121 z"
|
||||||
|
id="path19501" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
aria-label="93"
|
||||||
|
id="text19468"
|
||||||
|
style="font-size:22.9306px;line-height:1.25;stroke-width:0.264583">
|
||||||
|
<path
|
||||||
|
d="m 78.161134,15.392831 q 0,1.788587 -0.527403,3.370799 -0.527404,1.55928 -1.375836,2.866324 -0.825502,1.284114 -1.834448,2.29306 -1.008947,0.986016 -1.972032,1.605142 h -2.476504 q 1.284113,-0.940154 2.293059,-1.834448 1.008947,-0.894293 1.765657,-1.857378 0.756709,-0.986016 1.284113,-2.086685 0.527404,-1.123599 0.848432,-2.522366 l -0.114653,-0.04586 q -0.573265,0.986016 -1.490489,1.651003 -0.894293,0.642057 -2.361851,0.642057 -1.031877,0 -1.90324,-0.343959 -0.871363,-0.343959 -1.490489,-0.986016 -0.619126,-0.642056 -0.986016,-1.53635 -0.343959,-0.917224 -0.343959,-2.063754 0,-1.16946 0.36689,-2.132545 0.38982,-0.986016 1.077738,-1.673934 0.710849,-0.710849 1.673934,-1.100669 0.986015,-0.3898202 2.201337,-0.3898202 1.238253,0 2.224268,0.4356814 1.008947,0.4127508 1.696865,1.2153218 0.710848,0.77964 1.077738,1.92617 0.366889,1.14653 0.366889,2.568227 z m -5.342829,2.453575 q 1.582211,0 2.453574,-0.871363 0.894293,-0.871363 0.894293,-2.499436 v -0.183444 q 0,-1.628073 -0.894293,-2.499436 -0.871363,-0.871362 -2.453574,-0.871362 -1.582212,0 -2.476505,0.871362 -0.871363,0.871363 -0.871363,2.499436 v 0.183444 q 0,1.628073 0.871363,2.499436 0.894293,0.871363 2.476505,0.871363 z"
|
||||||
|
style="font-family:'IBM Plex Sans';-inkscape-font-specification:'IBM Plex Sans'"
|
||||||
|
id="path19504" />
|
||||||
|
<path
|
||||||
|
d="m 85.682336,16.310055 q 1.628073,0 2.430644,-0.733779 0.825501,-0.75671 0.825501,-1.92617 v -0.160514 q 0,-1.261183 -0.802571,-1.880309 -0.77964,-0.642057 -2.063754,-0.642057 -1.238252,0 -2.017892,0.550334 -0.779641,0.527404 -1.284114,1.444628 l -1.421697,-1.100669 q 0.298098,-0.481542 0.710848,-0.940154 0.435682,-0.481543 1.008947,-0.848433 0.573265,-0.3668892 1.329975,-0.5961952 0.756709,-0.229306 1.719794,-0.229306 1.008947,0 1.90324,0.2751672 0.894294,0.2522366 1.53635,0.77964 0.664988,0.504474 1.031877,1.261183 0.38982,0.75671 0.38982,1.719795 0,0.779641 -0.252236,1.398767 -0.229306,0.619126 -0.642057,1.077738 -0.412751,0.458612 -0.986016,0.77964 -0.550334,0.321029 -1.192391,0.481543 v 0.09172 q 0.642057,0.137584 1.238253,0.458612 0.619126,0.298098 1.077738,0.802571 0.481542,0.481543 0.756709,1.192391 0.298098,0.687918 0.298098,1.582212 0,1.031877 -0.38982,1.90324 -0.38982,0.848432 -1.100669,1.467558 -0.710848,0.596195 -1.719795,0.940154 -1.008946,0.343959 -2.224268,0.343959 -1.031877,0 -1.834448,-0.229306 -0.802571,-0.229306 -1.421697,-0.619126 -0.619126,-0.38982 -1.100669,-0.871362 -0.458612,-0.481543 -0.825501,-1.008947 l 1.444628,-1.100669 q 0.298097,0.481543 0.642056,0.871363 0.36689,0.38982 0.802571,0.664988 0.435682,0.275167 0.986016,0.435681 0.550334,0.137584 1.284114,0.137584 1.696864,0 2.568227,-0.75671 0.871363,-0.779641 0.871363,-2.201338 v -0.183445 q 0,-1.421697 -0.871363,-2.178406 -0.871363,-0.779641 -2.568227,-0.779641 h -1.880309 v -1.673934 z"
|
||||||
|
style="font-family:'IBM Plex Sans';-inkscape-font-specification:'IBM Plex Sans'"
|
||||||
|
id="path19506" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
id="rect19470"
|
||||||
|
style="stroke-width:0.264583"
|
||||||
|
d="M 0,0 H 4.9666696 V 99.333336 H 0 Z" />
|
||||||
|
<path
|
||||||
|
id="rect19472"
|
||||||
|
style="stroke-width:0.264583"
|
||||||
|
d="m 94.366661,5e-7 h 4.96667 V 99.333336 h -4.96667 z" />
|
||||||
|
<path
|
||||||
|
id="rect19474"
|
||||||
|
style="stroke-width:0.264583"
|
||||||
|
d="m 0,94.366661 h 99.333336 v 4.966673 H 0 Z" />
|
||||||
|
<path
|
||||||
|
id="rect19476"
|
||||||
|
style="stroke-width:0.264583"
|
||||||
|
d="M 0,0 H 99.333336 V 4.9666591 H 0 Z" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 34 KiB |
107796
neptunium_web.draco.gltf
Normal file
107796
neptunium_web.draco.gltf
Normal file
File diff suppressed because one or more lines are too long
BIN
neptunium_web.draco_0001.bin
Normal file
BIN
neptunium_web.draco_0001.bin
Normal file
Binary file not shown.
BIN
neptunium_web.draco_Texture_0001.png
Normal file
BIN
neptunium_web.draco_Texture_0001.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 488 KiB |
BIN
neptunium_web.draco_Texture_0002.png
Normal file
BIN
neptunium_web.draco_Texture_0002.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 610 KiB |
BIN
neptunium_web.draco_Texture_0003.png
Normal file
BIN
neptunium_web.draco_Texture_0003.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 480 KiB |
BIN
neptunium_web.draco_Texture_0004.png
Normal file
BIN
neptunium_web.draco_Texture_0004.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 566 KiB |
75
style.css
Normal file
75
style.css
Normal file
|
@ -0,0 +1,75 @@
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
canvas {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
#logo {
|
||||||
|
position: absolute;
|
||||||
|
top: 10px;
|
||||||
|
left: 10px;
|
||||||
|
width: max(10%, 100px);
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#resetButton {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 10px;
|
||||||
|
left: 10px;
|
||||||
|
padding: 10px;
|
||||||
|
font-size: 16px;
|
||||||
|
background-color: #222222;
|
||||||
|
border: 0px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
#links {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 10px;
|
||||||
|
right: 10px;
|
||||||
|
padding: 10px;
|
||||||
|
font-size: 16px;
|
||||||
|
font-family: "Courier New", Courier, monospace;
|
||||||
|
filter: invert(1);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loadingOverlay {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background-color: #222222;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
z-index: 9999;
|
||||||
|
transition: opacity 1s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loadingSpinner {
|
||||||
|
border: 4px solid #f3f3f3;
|
||||||
|
border-top: 4px solid #3498db;
|
||||||
|
border-radius: 50%;
|
||||||
|
width: 50px;
|
||||||
|
height: 50px;
|
||||||
|
animation: spin 1s linear infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes spin {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.fade-out {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user