update m00
BIN
m00/Assets/Fonts/FiraCodeNerdFontMono-Regular.ttf
Normal file
BIN
m00/Assets/Fonts/LektonNFM.woff
Normal file
BIN
m00/Assets/Fonts/LektonNFM.woff2
Normal file
BIN
m00/Assets/Fonts/LektonNerdFontMono-Regular.ttf
Normal file
BIN
m00/Assets/Fonts/SauceCodeProNerdFontMono-Regular.ttf
Normal file
192
m00/Assets/Fonts/demo.html
Normal file
@@ -0,0 +1,192 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="robots" content="noindex, noarchive">
|
||||
<meta name="format-detection" content="telephone=no">
|
||||
<title>Transfonter demo</title>
|
||||
<link href="stylesheet.css" rel="stylesheet">
|
||||
<style>
|
||||
/*
|
||||
http://meyerweb.com/eric/tools/css/reset/
|
||||
v2.0 | 20110126
|
||||
License: none (public domain)
|
||||
*/
|
||||
html, body, div, span, applet, object, iframe,
|
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||
a, abbr, acronym, address, big, cite, code,
|
||||
del, dfn, em, img, ins, kbd, q, s, samp,
|
||||
small, strike, strong, sub, sup, tt, var,
|
||||
b, u, i, center,
|
||||
dl, dt, dd, ol, ul, li,
|
||||
fieldset, form, label, legend,
|
||||
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||
article, aside, canvas, details, embed,
|
||||
figure, figcaption, footer, header, hgroup,
|
||||
menu, nav, output, ruby, section, summary,
|
||||
time, mark, audio, video {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
font-size: 100%;
|
||||
font: inherit;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
/* HTML5 display-role reset for older browsers */
|
||||
article, aside, details, figcaption, figure,
|
||||
footer, header, hgroup, menu, nav, section {
|
||||
display: block;
|
||||
}
|
||||
body {
|
||||
line-height: 1;
|
||||
}
|
||||
ol, ul {
|
||||
list-style: none;
|
||||
}
|
||||
blockquote, q {
|
||||
quotes: none;
|
||||
}
|
||||
blockquote:before, blockquote:after,
|
||||
q:before, q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
/* demo styles */
|
||||
body {
|
||||
background: #f0f0f0;
|
||||
color: #000;
|
||||
}
|
||||
.page {
|
||||
background: #fff;
|
||||
width: 920px;
|
||||
margin: 0 auto;
|
||||
padding: 20px 20px 0 20px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.font-container {
|
||||
overflow-x: auto;
|
||||
overflow-y: hidden;
|
||||
margin-bottom: 40px;
|
||||
line-height: 1.3;
|
||||
white-space: nowrap;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
h1 {
|
||||
position: relative;
|
||||
background: #444;
|
||||
font-size: 32px;
|
||||
color: #fff;
|
||||
padding: 10px 20px;
|
||||
margin: 0 -20px 12px -20px;
|
||||
}
|
||||
.letters {
|
||||
font-size: 25px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.s10:before {
|
||||
content: '10px';
|
||||
}
|
||||
.s11:before {
|
||||
content: '11px';
|
||||
}
|
||||
.s12:before {
|
||||
content: '12px';
|
||||
}
|
||||
.s14:before {
|
||||
content: '14px';
|
||||
}
|
||||
.s18:before {
|
||||
content: '18px';
|
||||
}
|
||||
.s24:before {
|
||||
content: '24px';
|
||||
}
|
||||
.s30:before {
|
||||
content: '30px';
|
||||
}
|
||||
.s36:before {
|
||||
content: '36px';
|
||||
}
|
||||
.s48:before {
|
||||
content: '48px';
|
||||
}
|
||||
.s60:before {
|
||||
content: '60px';
|
||||
}
|
||||
.s72:before {
|
||||
content: '72px';
|
||||
}
|
||||
.s10:before, .s11:before, .s12:before, .s14:before,
|
||||
.s18:before, .s24:before, .s30:before, .s36:before,
|
||||
.s48:before, .s60:before, .s72:before {
|
||||
font-family: Arial, sans-serif;
|
||||
font-size: 10px;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
color: #999;
|
||||
padding-right: 6px;
|
||||
}
|
||||
pre {
|
||||
display: block;
|
||||
padding: 9px;
|
||||
margin: 0 0 12px;
|
||||
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
|
||||
font-size: 13px;
|
||||
line-height: 1.428571429;
|
||||
color: #333;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
background-color: #f5f5f5;
|
||||
border: 1px solid #ccc;
|
||||
overflow-x: auto;
|
||||
border-radius: 4px;
|
||||
}
|
||||
/* responsive */
|
||||
@media (max-width: 959px) {
|
||||
.page {
|
||||
width: auto;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="page">
|
||||
<div class="demo">
|
||||
<h1 style="font-family: 'Lekton Nerd Font Mono'; font-weight: normal; font-style: normal;">Lekton Nerd Font Mono</h1>
|
||||
<pre title="Usage">.your-style {
|
||||
font-family: 'Lekton Nerd Font Mono';
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}</pre>
|
||||
<pre title="Preload (optional)">
|
||||
<link rel="preload" href="LektonNFM.woff2" as="font" type="font/woff2" crossorigin></pre>
|
||||
<div class="font-container" style="font-family: 'Lekton Nerd Font Mono'; font-weight: normal; font-style: normal;">
|
||||
<p class="letters">
|
||||
abcdefghijklmnopqrstuvwxyz<br>
|
||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
||||
</p>
|
||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
m00/Assets/Fonts/osifont.ttf
Normal file
9
m00/Assets/Fonts/stylesheet.css
Normal file
@@ -0,0 +1,9 @@
|
||||
@font-face {
|
||||
font-family: 'Lekton Nerd Font Mono';
|
||||
src: url('LektonNFM.woff2') format('woff2'),
|
||||
url('LektonNFM.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
BIN
m00/Assets/Img/Extruder.jpg
Normal file
|
After Width: | Height: | Size: 3.7 MiB |
BIN
m00/Assets/Img/FrameBliss_01.png
Normal file
|
After Width: | Height: | Size: 592 KiB |
BIN
m00/Assets/Img/FrameBliss_02.png
Normal file
|
After Width: | Height: | Size: 532 KiB |
BIN
m00/Assets/Img/FrameBliss_03.png
Normal file
|
After Width: | Height: | Size: 849 KiB |
BIN
m00/Assets/Img/FrameBliss_04.png
Normal file
|
After Width: | Height: | Size: 716 KiB |
BIN
m00/Assets/Img/FrameBliss_05.png
Normal file
|
After Width: | Height: | Size: 1.6 MiB |
BIN
m00/Assets/Img/FrameBliss_06.png
Normal file
|
After Width: | Height: | Size: 7.3 MiB |
BIN
m00/Assets/Img/LeonoraTrippTrapp_01.png
Normal file
|
After Width: | Height: | Size: 1.1 MiB |
BIN
m00/Assets/Img/LeonoraTrippTrapp_02.jpg
Normal file
|
After Width: | Height: | Size: 174 KiB |
BIN
m00/Assets/Img/LeonoraTrippTrapp_03.jpg
Normal file
|
After Width: | Height: | Size: 2.4 MiB |
BIN
m00/Assets/Img/MontacargasCU_01.png
Normal file
|
After Width: | Height: | Size: 169 KiB |
BIN
m00/Assets/Img/MontacargasCU_02.png
Normal file
|
After Width: | Height: | Size: 1.6 MiB |
BIN
m00/Assets/Img/PCGamerCarton_01.jpg
Normal file
|
After Width: | Height: | Size: 110 KiB |
BIN
m00/Assets/Img/PCGamerCarton_02.gif
Normal file
|
After Width: | Height: | Size: 3.8 MiB |
BIN
m00/Assets/Img/PCGamerCarton_03.jpg
Normal file
|
After Width: | Height: | Size: 197 KiB |
BIN
m00/Assets/Img/PCGamerCarton_04.jpg
Normal file
|
After Width: | Height: | Size: 326 KiB |
BIN
m00/Assets/Img/PCGamerCarton_05.jpg
Normal file
|
After Width: | Height: | Size: 93 KiB |
BIN
m00/Assets/Img/PCGamerCarton_06.jpg
Normal file
|
After Width: | Height: | Size: 98 KiB |
BIN
m00/Assets/Img/PCGamerCarton_07.jpg
Normal file
|
After Width: | Height: | Size: 156 KiB |
BIN
m00/Assets/Img/PCGamerCarton_08.jpg
Normal file
|
After Width: | Height: | Size: 242 KiB |
BIN
m00/Assets/Img/PCGamerCarton_09.jpg
Normal file
|
After Width: | Height: | Size: 62 KiB |
BIN
m00/Assets/Img/PCGamerCarton_10.jpg
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
m00/Assets/Img/PCGamerGoma_01.jpg
Normal file
|
After Width: | Height: | Size: 91 KiB |
BIN
m00/Assets/Img/PCGamerGoma_02.jpg
Normal file
|
After Width: | Height: | Size: 155 KiB |
BIN
m00/Assets/Img/PCGamerGoma_03.jpg
Normal file
|
After Width: | Height: | Size: 209 KiB |
BIN
m00/Assets/Img/PCGamerGoma_04.jpg
Normal file
|
After Width: | Height: | Size: 110 KiB |
BIN
m00/Assets/Img/PetResistor_01.png
Normal file
|
After Width: | Height: | Size: 102 KiB |
BIN
m00/Assets/Img/PetResistor_02.png
Normal file
|
After Width: | Height: | Size: 204 KiB |
BIN
m00/Assets/Img/PetResistor_03.gif
Normal file
|
After Width: | Height: | Size: 2.3 MiB |
BIN
m00/Assets/Img/PetResistor_04.png
Normal file
|
After Width: | Height: | Size: 725 KiB |
BIN
m00/Assets/Img/PetResistor_05.png
Normal file
|
After Width: | Height: | Size: 1.0 MiB |
BIN
m00/Assets/Img/PetResistor_06.gif
Normal file
|
After Width: | Height: | Size: 30 MiB |
BIN
m00/Assets/Img/Profile.jpg
Normal file
|
After Width: | Height: | Size: 356 KiB |
BIN
m00/Assets/Img/SolidFitter_01.webp
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
m00/Assets/Img/SolidFitter_02.webp
Normal file
|
After Width: | Height: | Size: 67 KiB |
BIN
m00/Assets/Img/SolidFitter_03.webp
Normal file
|
After Width: | Height: | Size: 42 KiB |
BIN
m00/Assets/Img/SolidFitter_04.webp
Normal file
|
After Width: | Height: | Size: 59 KiB |
BIN
m00/Assets/Img/SolidFitter_05.webp
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
m00/Assets/Img/SolidFitter_06.webp
Normal file
|
After Width: | Height: | Size: 18 KiB |
100
m00/Assets/Img/SolidFitter_Icon.svg
Normal file
@@ -0,0 +1,100 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="80"
|
||||
height="80"
|
||||
viewBox="0 0 21.166667 21.166667"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
sodipodi:docname="SolidFitter_Icon.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:showpageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#505050"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="true"
|
||||
inkscape:zoom="5.6568543"
|
||||
inkscape:cx="11.048543"
|
||||
inkscape:cy="35.532116"
|
||||
inkscape:window-width="2048"
|
||||
inkscape:window-height="1183"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid396"
|
||||
originx="0"
|
||||
originy="31.750002"
|
||||
empspacing="4"
|
||||
spacingy="2.6458333"
|
||||
spacingx="2.6458333" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs2" />
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
id="path3139"
|
||||
style="fill:none;stroke:#808080;stroke-width:1.05833333;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="M 5.2916666,13.229169 H 15.875" />
|
||||
<path
|
||||
id="path3127"
|
||||
style="fill:none;stroke:#808080;stroke-width:1.05833333;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="M 16.93755,11.118125 12.170399,4.7619239" />
|
||||
<path
|
||||
id="path3123"
|
||||
style="fill:none;stroke:#808080;stroke-width:1.05833333;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="M 12.784152,17.053622 16.321921,14.69511" />
|
||||
<path
|
||||
id="path3119"
|
||||
style="fill:none;stroke:#808080;stroke-width:1.05833333;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="m 4.8466528,14.696382 3.5377686,2.358512" />
|
||||
<path
|
||||
id="path3115"
|
||||
style="fill:none;stroke:#808080;stroke-width:1.05833333;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="M 9.00005,4.75688 4.2328994,11.113081" />
|
||||
<path
|
||||
id="path3145"
|
||||
style="fill:none;stroke:#808080;stroke-width:1.05833333;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="M 10.583333,5.291669 V 15.875002" />
|
||||
<path
|
||||
id="path1282"
|
||||
style="fill:none;stroke:#f9f9f9;stroke-width:1.05833333;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
||||
d="m 15.875,13.229169 h 2.645833 m -2.198912,1.465941 2.198912,-1.465941 -1.583283,-2.111044" />
|
||||
<path
|
||||
id="path3137"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.05833333;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
||||
d="M 2.6458333,13.229169 H 5.2916666 M 4.2328994,11.113081 2.6458333,13.229169 4.8466528,14.696382" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.05833333;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
||||
d="M 12.170399,4.7619239 10.583333,2.6458357 9.00005,4.75688"
|
||||
id="path3179" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.05833333;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
||||
d="M 10.583333,2.6458357 V 5.291669"
|
||||
id="path3143" />
|
||||
<path
|
||||
id="path1284"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.05833333;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
||||
d="m 10.583333,15.875002 v 2.645833 m -2.1989116,-1.465941 2.1989116,1.465941 2.200819,-1.467213" />
|
||||
<path
|
||||
style="color:#000000;fill:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.05833333;stroke-dasharray:none"
|
||||
d="M 4.4707031,10.794922 A 0.39687499,0.39687499 0 0 0 3.9160156,10.875 L 2.328125,12.990234 a 0.39691468,0.39691468 0 0 0 -0.027344,0.111329 0.39687499,0.39687499 0 0 0 -0.052734,0.126953 0.39687499,0.39687499 0 0 0 0.013672,0.0332 0.39691468,0.39691468 0 0 0 0.054687,0.128906 0.39687499,0.39687499 0 0 0 0.087891,0.134766 0.39691468,0.39691468 0 0 0 0.021484,0.0332 l 2.2011718,1.46875 A 0.39687499,0.39687499 0 0 0 5.1777344,14.916016 0.39687499,0.39687499 0 0 0 5.0664062,14.365234 L 3.9589844,13.626953 H 5.2910156 A 0.39687499,0.39687499 0 0 0 5.6894531,13.228516 0.39687499,0.39687499 0 0 0 5.2910156,12.832031 H 3.4394531 l 1.1113281,-1.480468 a 0.39687499,0.39687499 0 0 0 -0.080078,-0.556641 z"
|
||||
id="path5800" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.8 KiB |
BIN
m00/Assets/Img/StepSlicer_00.gif
Normal file
|
After Width: | Height: | Size: 7.6 MiB |
68
m00/Assets/Img/TrippTrappLeonora_Icon.svg
Normal file
@@ -0,0 +1,68 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="80"
|
||||
height="80"
|
||||
viewBox="0 0 21.166667 21.166667"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
sodipodi:docname="TrippTrappLeonora_Icon.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:showpageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#505050"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="true"
|
||||
inkscape:zoom="8"
|
||||
inkscape:cx="19.3125"
|
||||
inkscape:cy="23.25"
|
||||
inkscape:window-width="2048"
|
||||
inkscape:window-height="1183"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1"
|
||||
showguides="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid396"
|
||||
originx="0"
|
||||
originy="31.750002"
|
||||
empspacing="4"
|
||||
spacingy="2.6458333"
|
||||
spacingx="2.6458333" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs2" />
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
id="path3123"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="m 13.229166,2.6458357 -5.2916661,15.8749993 7.9375001,0"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
<path
|
||||
id="path5497"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="M 7.9375007,7.9375023 H 13.229166"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
id="path5497-3"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.05833;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="M 5.2916666,10.583336 H 13.229166"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
BIN
m00/Assets/Img/Workshop_PetResistor_1.jpg
Normal file
|
After Width: | Height: | Size: 1.4 MiB |
BIN
m00/Assets/Img/copincha-caracteristica-opensource.png
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
m00/Assets/Img/copincha_01.jpg
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
m00/Assets/Img/pph_01.jpg
Normal file
|
After Width: | Height: | Size: 24 KiB |