@cadit-app/image-extrude 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +99 -0
  3. package/cadit.json +20 -0
  4. package/dist/cli.d.ts +13 -0
  5. package/dist/cli.d.ts.map +1 -0
  6. package/dist/cli.js +160 -0
  7. package/dist/src/crossSectionUtils.d.ts +13 -0
  8. package/dist/src/crossSectionUtils.d.ts.map +1 -0
  9. package/dist/src/crossSectionUtils.js +25 -0
  10. package/dist/src/main.d.ts +16 -0
  11. package/dist/src/main.d.ts.map +1 -0
  12. package/dist/src/main.js +70 -0
  13. package/dist/src/makeCrossSection.d.ts +18 -0
  14. package/dist/src/makeCrossSection.d.ts.map +1 -0
  15. package/dist/src/makeCrossSection.js +42 -0
  16. package/dist/src/manifoldUtils.d.ts +9 -0
  17. package/dist/src/manifoldUtils.d.ts.map +1 -0
  18. package/dist/src/manifoldUtils.js +11 -0
  19. package/dist/src/params.d.ts +60 -0
  20. package/dist/src/params.d.ts.map +1 -0
  21. package/dist/src/params.js +44 -0
  22. package/dist/src/resvg.d.ts +10 -0
  23. package/dist/src/resvg.d.ts.map +1 -0
  24. package/dist/src/resvg.js +47 -0
  25. package/dist/src/threeMfExport.d.ts +9 -0
  26. package/dist/src/threeMfExport.d.ts.map +1 -0
  27. package/dist/src/threeMfExport.js +56 -0
  28. package/dist/src/tracing.d.ts +24 -0
  29. package/dist/src/tracing.d.ts.map +1 -0
  30. package/dist/src/tracing.js +71 -0
  31. package/dist/src/utils.d.ts +13 -0
  32. package/dist/src/utils.d.ts.map +1 -0
  33. package/dist/src/utils.js +53 -0
  34. package/images/cookiecad-logo-dark.svg +73 -0
  35. package/images/preview.png +0 -0
  36. package/package.json +56 -0
  37. package/src/crossSectionUtils.ts +30 -0
  38. package/src/main.ts +77 -0
  39. package/src/makeCrossSection.ts +57 -0
  40. package/src/manifoldUtils.ts +13 -0
  41. package/src/params.ts +70 -0
  42. package/src/resvg.ts +63 -0
  43. package/src/threeMfExport.ts +67 -0
  44. package/src/tracing.ts +94 -0
  45. package/src/types.d.ts +40 -0
  46. package/src/utils.ts +55 -0
@@ -0,0 +1,47 @@
1
+ /**
2
+ * SVG to bitmap rendering using resvg-wasm
3
+ */
4
+ import * as resvg from '@resvg/resvg-wasm';
5
+ import { svgDataUrlToString } from './utils';
6
+ let wasmInitialized = false;
7
+ /**
8
+ * Initialize resvg WASM module
9
+ * In CLI context, we need to load from file system
10
+ * In browser context (via bundler), the WASM is loaded differently
11
+ */
12
+ async function initializeResvgWasm() {
13
+ if (wasmInitialized)
14
+ return;
15
+ // For CLI usage, load WASM from node_modules
16
+ const { readFile } = await import('fs/promises');
17
+ const { resolve, dirname } = await import('path');
18
+ const { fileURLToPath } = await import('url');
19
+ // Find the wasm file in node_modules
20
+ const wasmPath = resolve(dirname(fileURLToPath(import.meta.url)), '../node_modules/@resvg/resvg-wasm/index_bg.wasm');
21
+ const wasmBuffer = await readFile(wasmPath);
22
+ await resvg.initWasm(wasmBuffer);
23
+ wasmInitialized = true;
24
+ }
25
+ /**
26
+ * Renders an SVG Data URL to a PNG Data URL using resvg-wasm.
27
+ */
28
+ export const renderSvgToBitmapDataUrl = async (svgDataUrl, options) => {
29
+ await initializeResvgWasm();
30
+ const svgString = svgDataUrlToString(svgDataUrl);
31
+ if (!svgString) {
32
+ throw new Error("Could not decode SVG Data URL");
33
+ }
34
+ const opts = {};
35
+ if (options?.maxWidth && options.maxWidth > 0 && isFinite(options.maxWidth)) {
36
+ opts.fitTo = {
37
+ mode: 'width',
38
+ value: options.maxWidth
39
+ };
40
+ }
41
+ const resvgInstance = new resvg.Resvg(svgString, opts);
42
+ const pngData = resvgInstance.render();
43
+ const pngBuffer = pngData.asPng();
44
+ // Convert to data URL
45
+ const base64 = Buffer.from(pngBuffer).toString('base64');
46
+ return `data:image/png;base64,${base64}`;
47
+ };
@@ -0,0 +1,9 @@
1
+ /**
2
+ * 3MF Export for image-extrude
3
+ */
4
+ import type { Manifold } from '@cadit-app/manifold-3d/manifoldCAD';
5
+ /**
6
+ * Creates a 3MF ArrayBuffer from manifolds
7
+ */
8
+ export declare function create3mfArrayBuffer(manifolds: Manifold[]): Promise<ArrayBuffer>;
9
+ //# sourceMappingURL=threeMfExport.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"threeMfExport.d.ts","sourceRoot":"","sources":["../../src/threeMfExport.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oCAAoC,CAAC;AAKnE;;GAEG;AACH,wBAAsB,oBAAoB,CAAC,SAAS,EAAE,QAAQ,EAAE,GAAG,OAAO,CAAC,WAAW,CAAC,CAsDtF"}
@@ -0,0 +1,56 @@
1
+ /**
2
+ * 3MF Export for image-extrude
3
+ */
4
+ // @ts-ignore - No type declarations available
5
+ import { to3dmodel, fileForContentTypes, FileForRelThumbnail } from '@jscadui/3mf-export';
6
+ import { strToU8, zipSync } from 'fflate';
7
+ /**
8
+ * Creates a 3MF ArrayBuffer from manifolds
9
+ */
10
+ export async function create3mfArrayBuffer(manifolds) {
11
+ const meshes = manifolds.map((m, index) => {
12
+ const mesh = m.getMesh();
13
+ return {
14
+ id: String(index + 1),
15
+ vertices: mesh.vertProperties,
16
+ indices: mesh.triVerts,
17
+ name: `Part-${index + 1}`,
18
+ };
19
+ });
20
+ // Generate a single component with all meshes as children
21
+ const components = [
22
+ {
23
+ id: meshes.length + 1,
24
+ children: meshes.map((mesh) => ({ objectID: mesh.id })),
25
+ name: 'ImageExtrude-Assembly',
26
+ },
27
+ ];
28
+ // The main item should reference the component
29
+ const items = components.map((component) => ({
30
+ objectID: component.id,
31
+ }));
32
+ const header = {
33
+ unit: 'millimeter',
34
+ title: 'CADit Image Extrude',
35
+ description: 'Image Extrude 3MF export',
36
+ application: 'CADit',
37
+ };
38
+ const to3mf = {
39
+ meshes,
40
+ components,
41
+ items,
42
+ precision: 7,
43
+ header,
44
+ };
45
+ // Generate the 3D model XML
46
+ const model = to3dmodel(to3mf);
47
+ // Package the 3MF file using fflate
48
+ const fileForRelThumbnail = new FileForRelThumbnail();
49
+ fileForRelThumbnail.add3dModel('3D/3dmodel.model');
50
+ const files = {};
51
+ files['3D/3dmodel.model'] = strToU8(model);
52
+ files[fileForContentTypes.name] = strToU8(fileForContentTypes.content);
53
+ files[fileForRelThumbnail.name] = strToU8(fileForRelThumbnail.content);
54
+ const zipData = zipSync(files);
55
+ return zipData.buffer;
56
+ }
@@ -0,0 +1,24 @@
1
+ /**
2
+ * Image tracing and SVG sampling utilities
3
+ */
4
+ import { CrossSection } from '@cadit-app/manifold-3d/manifoldCAD';
5
+ /**
6
+ * Converts SVG content to polygons
7
+ */
8
+ export declare const svgContentToPolygons: (svgContent: string, maxError: number) => Promise<[number, number][][]>;
9
+ /**
10
+ * Converts an SVG string to a CrossSection with optional scaling
11
+ */
12
+ export declare const svgStringToCrossSection: (svgContent: string, maxWidth?: number, maxError?: number) => Promise<CrossSection>;
13
+ /**
14
+ * Samples an SVG data URL and returns a centered CrossSection
15
+ */
16
+ export declare const sampleSvg: (svgDataUrl: string, maxWidth?: number) => Promise<CrossSection>;
17
+ /**
18
+ * Traces a bitmap image and returns a centered CrossSection
19
+ */
20
+ export declare const traceImage: (imageDataUrl: string, options: {
21
+ maxWidth?: number;
22
+ despeckleSize?: number;
23
+ }) => Promise<CrossSection>;
24
+ //# sourceMappingURL=tracing.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tracing.d.ts","sourceRoot":"","sources":["../../src/tracing.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAKlE;;GAEG;AACH,eAAO,MAAM,oBAAoB,GAC/B,YAAY,MAAM,EAClB,UAAU,MAAM,kCAWjB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,uBAAuB,GAClC,YAAY,MAAM,EAClB,WAAW,MAAM,EACjB,WAAU,MAAa,KACtB,OAAO,CAAC,YAAY,CAgBtB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,SAAS,GAAU,YAAY,MAAM,EAAE,WAAW,MAAM,KAAG,OAAO,CAAC,YAAY,CAO3F,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,UAAU,GACrB,cAAc,MAAM,EACpB,SAAS;IACP,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB,KACA,OAAO,CAAC,YAAY,CAmBtB,CAAC"}
@@ -0,0 +1,71 @@
1
+ /**
2
+ * Image tracing and SVG sampling utilities
3
+ */
4
+ import { svgToPolygons } from '@cadit-app/svg-sampler';
5
+ import { CrossSection } from '@cadit-app/manifold-3d/manifoldCAD';
6
+ import { Potrace } from 'potrace';
7
+ import { svgDataUrlToString } from './utils';
8
+ import { centerCrossSection } from './crossSectionUtils';
9
+ /**
10
+ * Converts SVG content to polygons
11
+ */
12
+ export const svgContentToPolygons = async (svgContent, maxError) => {
13
+ // Sample the SVG into polygons
14
+ const polygons = await svgToPolygons(svgContent, { maxError });
15
+ // Flip the Y-axis for SVG paths (SVG uses Y-down, but 3D modeling uses Y-up)
16
+ const flippedPolygons = polygons.map((polygon) => {
17
+ return polygon.points.map(([x, y]) => [x, -y]);
18
+ });
19
+ return flippedPolygons;
20
+ };
21
+ /**
22
+ * Converts an SVG string to a CrossSection with optional scaling
23
+ */
24
+ export const svgStringToCrossSection = async (svgContent, maxWidth, maxError = 0.01) => {
25
+ const polygons = await svgContentToPolygons(svgContent, maxError);
26
+ const crossSection = new CrossSection(polygons, 'EvenOdd').simplify(maxError);
27
+ if (!maxWidth)
28
+ return crossSection;
29
+ // Check the width of the resulting CrossSection
30
+ const boundingBox = crossSection.bounds();
31
+ const width = boundingBox.max[0] - boundingBox.min[0];
32
+ const scaleFactor = maxWidth / width;
33
+ const scaledError = maxError / scaleFactor;
34
+ // Sample again with new error
35
+ const newPolygons = await svgContentToPolygons(svgContent, scaledError);
36
+ const newCrossSection = new CrossSection(newPolygons, 'EvenOdd').simplify(scaledError);
37
+ return newCrossSection.scale([scaleFactor, scaleFactor]);
38
+ };
39
+ /**
40
+ * Samples an SVG data URL and returns a centered CrossSection
41
+ */
42
+ export const sampleSvg = async (svgDataUrl, maxWidth) => {
43
+ const svgContent = svgDataUrlToString(svgDataUrl);
44
+ if (!svgContent) {
45
+ throw new Error('Failed to parse SVG data URL');
46
+ }
47
+ const crossSection = await svgStringToCrossSection(svgContent, maxWidth);
48
+ return centerCrossSection(crossSection);
49
+ };
50
+ /**
51
+ * Traces a bitmap image and returns a centered CrossSection
52
+ */
53
+ export const traceImage = async (imageDataUrl, options) => {
54
+ const tracer = new Potrace({
55
+ turdSize: options.despeckleSize || 2,
56
+ });
57
+ // Promisify tracer.loadImage
58
+ await new Promise((resolve, reject) => {
59
+ tracer.loadImage(imageDataUrl, (err) => {
60
+ if (err) {
61
+ reject(err);
62
+ }
63
+ else {
64
+ resolve();
65
+ }
66
+ });
67
+ });
68
+ const svgContent = tracer.getSVG();
69
+ const crossSection = await svgStringToCrossSection(svgContent, options.maxWidth);
70
+ return centerCrossSection(crossSection);
71
+ };
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Utility functions for image processing
3
+ */
4
+ /**
5
+ * Extracts the plain SVG XML string from a Data URL.
6
+ * Handles both Base64 encoded and URL-encoded SVG data URLs.
7
+ */
8
+ export declare function svgDataUrlToString(dataUrl: string): string | null;
9
+ /**
10
+ * Fetches an image URL and converts it to a data URL
11
+ */
12
+ export declare function fetchImageAsDataUrl(imageUrl: string): Promise<string>;
13
+ //# sourceMappingURL=utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../src/utils.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;;GAGG;AACH,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAgCjE;AAED;;GAEG;AACH,wBAAsB,mBAAmB,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAS3E"}
@@ -0,0 +1,53 @@
1
+ /**
2
+ * Utility functions for image processing
3
+ */
4
+ /**
5
+ * Extracts the plain SVG XML string from a Data URL.
6
+ * Handles both Base64 encoded and URL-encoded SVG data URLs.
7
+ */
8
+ export function svgDataUrlToString(dataUrl) {
9
+ if (!dataUrl || !dataUrl.startsWith('data:image/svg+xml')) {
10
+ console.error("Invalid SVG Data URL format.");
11
+ return null;
12
+ }
13
+ const commaIndex = dataUrl.indexOf(',');
14
+ if (commaIndex === -1) {
15
+ console.error("Invalid Data URL: Missing comma separator.");
16
+ return null;
17
+ }
18
+ const header = dataUrl.substring(0, commaIndex);
19
+ const encodedData = dataUrl.substring(commaIndex + 1);
20
+ if (header.includes(';base64')) {
21
+ try {
22
+ // Decode Base64
23
+ return atob(encodedData);
24
+ }
25
+ catch (e) {
26
+ console.error("Error decoding Base64 SVG data:", e);
27
+ return null;
28
+ }
29
+ }
30
+ else {
31
+ try {
32
+ // Decode URL-encoded string
33
+ return decodeURIComponent(encodedData);
34
+ }
35
+ catch (e) {
36
+ console.error("Error decoding URL-encoded SVG data:", e);
37
+ return null;
38
+ }
39
+ }
40
+ }
41
+ /**
42
+ * Fetches an image URL and converts it to a data URL
43
+ */
44
+ export async function fetchImageAsDataUrl(imageUrl) {
45
+ const response = await fetch(imageUrl);
46
+ const blob = await response.blob();
47
+ return new Promise((resolve, reject) => {
48
+ const reader = new FileReader();
49
+ reader.onloadend = () => resolve(reader.result);
50
+ reader.onerror = reject;
51
+ reader.readAsDataURL(blob);
52
+ });
53
+ }
@@ -0,0 +1,73 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ version="1.1"
6
+ id="svg2"
7
+ width="1344"
8
+ height="422.33334"
9
+ viewBox="0 0 1344 422.33334"
10
+ sodipodi:docname="Cookiecad logo type.svg"
11
+ inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg">
16
+ <defs
17
+ id="defs6" />
18
+ <sodipodi:namedview
19
+ id="namedview4"
20
+ pagecolor="#ffffff"
21
+ bordercolor="#666666"
22
+ borderopacity="1.0"
23
+ inkscape:pageshadow="2"
24
+ inkscape:pageopacity="0.0"
25
+ inkscape:pagecheckerboard="0"
26
+ showgrid="false"
27
+ inkscape:zoom="0.49739583"
28
+ inkscape:cx="824.29319"
29
+ inkscape:cy="786.09424"
30
+ inkscape:window-width="1916"
31
+ inkscape:window-height="1461"
32
+ inkscape:window-x="1920"
33
+ inkscape:window-y="672"
34
+ inkscape:window-maximized="1"
35
+ inkscape:current-layer="g8" />
36
+ <g
37
+ inkscape:groupmode="layer"
38
+ inkscape:label="Image"
39
+ id="g8">
40
+ <g
41
+ id="g905"
42
+ transform="translate(-0.6822644,-2.3081643)">
43
+ <path
44
+ style="fill:#d0d0d0;fill-opacity:1;stroke-width:0.333333"
45
+ d="m 131.25597,324.4251 c 0.59912,-0.0742 1.49912,-0.0727 2,0.003 0.50088,0.0761 0.0107,0.13675 -1.0893,0.13488 -1.1,-0.002 -1.50982,-0.0641 -0.9107,-0.13828 z m 94.68153,0.0139 c 0.24062,-0.0963 0.52813,-0.0845 0.63889,0.0263 0.11076,0.11077 -0.0861,0.18955 -0.4375,0.17508 -0.38832,-0.016 -0.4673,-0.095 -0.20139,-0.20139 z m 180.33333,-46.66667 c 0.24064,-0.0963 0.52814,-0.0845 0.6389,0.0263 0.11077,0.11077 -0.0861,0.18955 -0.4375,0.17508 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z m 11.66667,0 c 0.24063,-0.0963 0.52813,-0.0845 0.6389,0.0263 0.11077,0.11077 -0.0861,0.18955 -0.4375,0.17508 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z m 197,0 c 0.24063,-0.0963 0.52813,-0.0845 0.6389,0.0263 0.11077,0.11077 -0.0861,0.18955 -0.4375,0.17508 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z m 10,0 c 0.24063,-0.0963 0.52813,-0.0845 0.6389,0.0263 0.11077,0.11077 -0.0861,0.18955 -0.4375,0.17508 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z m 339.33333,0 c 0.24064,-0.0963 0.52814,-0.0845 0.6389,0.0263 0.11077,0.11077 -0.0861,0.18955 -0.4375,0.17508 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z M 1092.0833,275.087 c 1.0542,-0.0661 2.7792,-0.0661 3.8334,0 1.0541,0.0661 0.1916,0.12027 -1.9167,0.12027 -2.1083,0 -2.9708,-0.0541 -1.9167,-0.12027 z M 507.08333,260.09051 c 0.6875,-0.0719 1.8125,-0.0719 2.5,0 0.6875,0.0719 0.125,0.13075 -1.25,0.13075 -1.375,0 -1.9375,-0.0588 -1.25,-0.13075 z m 111.8259,0.002 c 0.59174,-0.0736 1.64174,-0.0749 2.33334,-0.003 0.6916,0.0722 0.20743,0.13241 -1.0759,0.13389 -1.28334,10e-4 -1.84917,-0.0576 -1.25744,-0.1312 z m 339.50744,-0.002 c 0.6875,-0.0719 1.8125,-0.0719 2.5,0 0.6875,0.0719 0.125,0.13075 -1.25,0.13075 -1.375,0 -1.9375,-0.0588 -1.25,-0.13075 z m 87.18753,0.0151 c 0.2406,-0.0963 0.5281,-0.0845 0.6389,0.0263 0.1107,0.11076 -0.086,0.18955 -0.4375,0.17507 -0.3884,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z m 4.6666,0 c 0.2407,-0.0963 0.5282,-0.0845 0.6389,0.0263 0.1108,0.11076 -0.086,0.18955 -0.4375,0.17507 -0.3883,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z M 408.25,257.44591 c 0.22917,-0.0925 0.60417,-0.0925 0.83333,0 0.22917,0.0925 0.0417,0.16813 -0.41666,0.16813 -0.45834,0 -0.64584,-0.0757 -0.41667,-0.16813 z m 6.35417,-0.007 c 0.24063,-0.0963 0.52813,-0.0845 0.6389,0.0263 0.11076,0.11076 -0.0861,0.18954 -0.4375,0.17507 -0.38834,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z m 481.42213,-9.96674 c 0.016,-0.38832 0.095,-0.4673 0.2014,-0.20139 0.0963,0.24062 0.0845,0.52812 -0.0263,0.63889 -0.11077,0.11076 -0.18957,-0.0861 -0.1751,-0.4375 z M 117.27083,242.4389 c 0.24063,-0.0963 0.52813,-0.0845 0.63889,0.0263 0.11077,0.11076 -0.0861,0.18954 -0.4375,0.17507 -0.38831,-0.016 -0.4673,-0.095 -0.20139,-0.20139 z m 5.33334,0 c 0.24062,-0.0963 0.52812,-0.0845 0.63889,0.0263 0.11076,0.11076 -0.0861,0.18954 -0.4375,0.17507 -0.38832,-0.016 -0.4673,-0.095 -0.20139,-0.20139 z M 707.423,238.4356 c 0.32433,-0.0845 0.77433,-0.0789 1,0.0124 0.2257,0.0913 -0.0397,0.16046 -0.58967,0.15366 -0.55,-0.007 -0.73463,-0.0815 -0.41033,-0.16601 z m 132.49367,-7.35227 c 9.7625,-0.0491 25.7375,-0.0491 35.5,0 9.7625,0.0491 1.775,0.0892 -17.75,0.0892 -19.525,0 -27.5125,-0.0402 -17.75,-0.0892 z m -167.2237,-1.61117 c 0.016,-0.38832 0.095,-0.4673 0.2014,-0.20139 0.0963,0.24062 0.0845,0.52812 -0.0263,0.63889 -0.11076,0.11076 -0.18956,-0.0861 -0.1751,-0.4375 z m 322.66666,-0.33334 c 0.016,-0.38831 0.095,-0.4673 0.2014,-0.20139 0.0963,0.24063 0.0845,0.52813 -0.0263,0.63889 -0.11077,0.11077 -0.18957,-0.0861 -0.1751,-0.4375 z M 926.7193,228 c 0,-0.45833 0.0757,-0.64583 0.16813,-0.41666 0.0925,0.22916 0.0925,0.60416 0,0.83333 -0.0925,0.22917 -0.16813,0.0417 -0.16813,-0.41667 z m -385.66667,-0.33333 c 0,-0.45833 0.0757,-0.64583 0.16814,-0.41667 0.0925,0.22917 0.0925,0.60417 0,0.83334 -0.0925,0.22916 -0.16814,0.0417 -0.16814,-0.41667 z m 20.03144,-0.5 c 0.004,-0.73333 0.072,-0.99408 0.1517,-0.57945 0.0797,0.41464 0.0767,1.01464 -0.007,1.33334 -0.0834,0.31869 -0.14867,-0.0206 -0.14497,-0.75389 z m 567.27553,0.63889 c 0.016,-0.38832 0.095,-0.4673 0.2014,-0.20139 0.096,0.24062 0.085,0.52813 -0.026,0.63889 -0.1108,0.11076 -0.1896,-0.0861 -0.1751,-0.4375 z m -332.57867,-2.63889 c 0,-1.46667 0.0598,-2.0252 0.13024,-1.24119 0.0704,0.78401 0.0694,1.98401 -0.003,2.66667 -0.0716,0.68265 -0.12923,0.0412 -0.12803,-1.42548 z m 110.9951,0 c 0,-1.28333 0.0617,-1.76749 0.1339,-1.0759 0.0722,0.69159 0.0709,1.74159 -0.003,2.33333 -0.0736,0.59175 -0.13267,0.0259 -0.1312,-1.25743 z m 108.33067,0.16667 c 0,-1.19167 0.06,-1.67917 0.1344,-1.08334 0.074,0.59584 0.074,1.57084 0,2.16667 -0.074,0.59583 -0.1344,0.10833 -0.1344,-1.08333 z m -539.67347,0 c 0,-1.00834 0.0625,-1.42084 0.13887,-0.91667 0.0764,0.50417 0.0764,1.32917 0,1.83333 -0.0764,0.50417 -0.13887,0.0917 -0.13887,-0.91666 z m 85.6441,-2 c 0,-0.64167 0.0686,-0.90417 0.15244,-0.58334 0.0839,0.32084 0.0839,0.84584 0,1.16667 -0.0838,0.32083 -0.15244,0.0583 -0.15244,-0.58333 z M 926.73163,223.5 c 0.007,-0.55 0.0815,-0.73464 0.16604,-0.41032 0.0845,0.32432 0.079,0.77432 -0.0123,1 -0.0913,0.22568 -0.16043,-0.0397 -0.15366,-0.58968 z m 68.66667,-0.33333 c 0.007,-0.55 0.0815,-0.73465 0.16603,-0.41032 0.0845,0.32432 0.079,0.77432 -0.0123,1 -0.0913,0.22567 -0.16043,-0.0397 -0.15367,-0.58968 z m -454.34567,-0.5 c 0,-0.45833 0.0757,-0.64583 0.16814,-0.41667 0.0925,0.22917 0.0925,0.60417 0,0.83334 -0.0925,0.22916 -0.16814,0.0417 -0.16814,-0.41667 z m 587.30697,-0.19444 c 0.016,-0.38832 0.095,-0.4673 0.2014,-0.20139 0.096,0.24062 0.085,0.52812 -0.026,0.63889 -0.1108,0.11076 -0.1896,-0.0861 -0.1751,-0.4375 z m -560.99997,-1.33334 c 0.016,-0.38831 0.095,-0.4673 0.2014,-0.20139 0.0963,0.24063 0.0845,0.52813 -0.0263,0.63889 -0.11077,0.11077 -0.18957,-0.0861 -0.1751,-0.4375 z m 105.33334,-0.33333 c 0.016,-0.38832 0.095,-0.4673 0.2014,-0.20139 0.0963,0.24062 0.0845,0.52813 -0.0263,0.63889 -0.11076,0.11076 -0.18956,-0.0861 -0.1751,-0.4375 z m 435.66663,0 c 0.016,-0.38832 0.095,-0.4673 0.2014,-0.20139 0.096,0.24062 0.085,0.52813 -0.026,0.63889 -0.1108,0.11076 -0.1896,-0.0861 -0.1751,-0.4375 z M 341.3983,210.5 c 0.007,-0.55 0.0815,-0.73464 0.16603,-0.41032 0.0845,0.32432 0.079,0.77432 -0.0123,1 -0.0913,0.22568 -0.16043,-0.0397 -0.15367,-0.58968 z m 538.33333,-0.66666 c 0.007,-0.55 0.0815,-0.73465 0.16604,-0.41033 0.0845,0.32433 0.079,0.77433 -0.0123,1 -0.0913,0.22568 -0.16043,-0.0397 -0.15366,-0.58967 z m -515.6543,-2.16667 c 0,-0.64167 0.0686,-0.90417 0.15244,-0.58333 0.0839,0.32083 0.0839,0.84583 0,1.16666 -0.0838,0.32084 -0.15244,0.0583 -0.15244,-0.58333 z m -22.67903,-3.83333 c 0.007,-0.55 0.0815,-0.73465 0.16603,-0.41033 0.0845,0.32433 0.079,0.77433 -0.0123,1 -0.0913,0.22568 -0.16043,-0.0397 -0.15367,-0.58967 z m 709.5392,-13.39437 c 0.2406,-0.0963 0.5281,-0.0845 0.6389,0.0263 0.1108,0.11076 -0.086,0.18954 -0.4375,0.17507 -0.3883,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z m 107,0 c 0.2406,-0.0963 0.5281,-0.0845 0.6389,0.0263 0.1108,0.11076 -0.086,0.18954 -0.4375,0.17507 -0.3883,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z M 848.75,188.43689 c 0.32083,-0.0838 0.84583,-0.0838 1.16667,0 0.32083,0.0838 0.0583,0.15245 -0.58334,0.15245 -0.64166,0 -0.90416,-0.0686 -0.58333,-0.15245 z m 229.8372,-8.67264 c 0.4147,-0.0797 1.0147,-0.0767 1.3334,0.007 0.3186,0.0834 -0.021,0.14867 -0.7539,0.14497 -0.7334,-0.004 -0.9941,-0.072 -0.5795,-0.15169 z m -334.8178,-5.01346 c 2.34817,-0.0574 6.09817,-0.0572 8.33333,3.3e-4 2.23517,0.0576 0.31394,0.10453 -4.2694,0.10433 -4.58333,-2e-4 -6.4121,-0.0473 -4.06393,-0.1047 z m 31.81393,6.7e-4 c 1.87917,-0.0594 4.95417,-0.0594 6.83334,0 1.87916,0.0594 0.34166,0.10803 -3.41667,0.10803 -3.75833,0 -5.29583,-0.0486 -3.41667,-0.10803 z m 316.16667,0.001 c 1.2375,-0.0641 3.2625,-0.0641 4.5,0 1.2375,0.0641 0.225,0.11661 -2.25,0.11661 -2.475,0 -3.4875,-0.0525 -2.25,-0.11661 z m -586.8125,-2.31385 c 0.24063,-0.0963 0.52813,-0.0845 0.6389,0.0263 0.11077,0.11076 -0.0861,0.18954 -0.4375,0.17507 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z m 6.3125,0.007 c 0.22917,-0.0925 0.60417,-0.0925 0.83333,0 0.22917,0.0925 0.0417,0.16813 -0.41666,0.16813 -0.45834,0 -0.64584,-0.0757 -0.41667,-0.16813 z m 105.33333,0 c 0.22917,-0.0925 0.60417,-0.0925 0.83334,0 0.22916,0.0925 0.0417,0.16813 -0.41667,0.16813 -0.45833,0 -0.64583,-0.0757 -0.41667,-0.16813 z m 6.33334,0 c 0.22916,-0.0925 0.60416,-0.0925 0.83333,0 0.22917,0.0925 0.0417,0.16813 -0.41667,0.16813 -0.45833,0 -0.64583,-0.0757 -0.41666,-0.16813 z m 333.33333,0 c 0.22917,-0.0925 0.60417,-0.0925 0.83333,0 0.22917,0.0925 0.0417,0.16813 -0.41666,0.16813 -0.45834,0 -0.64584,-0.0757 -0.41667,-0.16813 z m 5.83967,-0.0102 c 0.32433,-0.0845 0.77433,-0.079 1,0.0124 0.2257,0.0913 -0.0397,0.16046 -0.58967,0.15367 -0.55,-0.007 -0.73463,-0.0815 -0.41033,-0.16602 z m 82.66663,0 c 0.3244,-0.0845 0.7744,-0.079 1,0.0124 0.2257,0.0913 -0.04,0.16046 -0.5896,0.15367 -0.55,-0.007 -0.7347,-0.0815 -0.4104,-0.16602 z m 4.1643,-0.005 c 0.4146,-0.0797 1.0146,-0.0767 1.3333,0.007 0.3187,0.0834 -0.021,0.14867 -0.7539,0.14497 -0.7333,-0.004 -0.9941,-0.072 -0.5794,-0.15169 z m 107.9961,0.015 c 0.2291,-0.0925 0.6041,-0.0925 0.8333,0 0.2292,0.0925 0.042,0.16813 -0.4167,0.16813 -0.4583,0 -0.6458,-0.0757 -0.4166,-0.16813 z m 6.5063,-0.0102 c 0.3243,-0.0845 0.7743,-0.079 1,0.0124 0.2257,0.0913 -0.04,0.16046 -0.5897,0.15367 -0.55,-0.007 -0.7346,-0.0815 -0.4103,-0.16602 z m -938.173,-9.6564 c 0.22917,-0.0925 0.60417,-0.0925 0.83333,0 0.22917,0.0925 0.0417,0.16813 -0.41666,0.16813 -0.45834,0 -0.64584,-0.0757 -0.41667,-0.16813 z m 3.66667,0 c 0.22916,-0.0925 0.60416,-0.0925 0.83333,0 0.22917,0.0925 0.0417,0.16813 -0.41667,0.16813 -0.45833,0 -0.64583,-0.0757 -0.41666,-0.16813 z m 182.33723,-6.34832 c 0.41463,-0.0797 1.01463,-0.0767 1.33333,0.007 0.31867,0.0834 -0.0207,0.14867 -0.7539,0.14497 -0.73333,-0.004 -0.9941,-0.072 -0.57943,-0.1517 z m 830.5705,-9.34742 0.01,-8.25016 2.2514,-0.0247 2.2513,-0.0247 -2.1622,0.12316 -2.1622,0.12315 -0.098,8.15173 -0.098,8.15173 0.01,-8.25016 z m 12.2597,7.08317 c 0,-0.73333 0.072,-0.99408 0.1517,-0.57945 0.08,0.41464 0.077,1.01464 -0.01,1.33334 -0.083,0.31869 -0.1487,-0.0206 -0.145,-0.75389 z m -9.3401,-9.83333 c 0,-0.64167 0.069,-0.90417 0.1524,-0.58334 0.084,0.32084 0.084,0.84584 0,1.16667 -0.084,0.32083 -0.1524,0.0583 -0.1524,-0.58333 z m -17.2767,-4.08086 0.033,-1.41914 h 6.1666 6.1667 l 0.029,1.33333 0.028,1.33333 -0.131,-1.25 -0.131,-1.25 h -5.9617 -5.9616 l -0.1352,1.33581 -0.1352,1.33581 0.033,-1.41914 z m -541.05063,-1.50121 c 1.97083,-0.0589 5.19583,-0.0589 7.16666,0 1.97084,0.0589 0.35834,0.10715 -3.58333,0.10715 -3.94167,0 -5.55417,-0.0482 -3.58333,-0.10715 z m 514.85103,-9e-5 c 1.889,-0.0595 4.889,-0.0593 6.6667,6.7e-4 1.7777,0.0598 0.2323,0.10852 -3.4344,0.10822 -3.6667,-2.9e-4 -5.1212,-0.0492 -3.2323,-0.10876 z m 52.6415,0.008 c 0.5918,-0.0736 1.6418,-0.0748 2.3334,-0.003 0.6916,0.0722 0.2074,0.1324 -1.0759,0.13388 -1.2834,10e-4 -1.8492,-0.0576 -1.2575,-0.13119 z m -846.63837,-2.32046 c 0.24064,-0.0963 0.52814,-0.0845 0.6389,0.0263 0.11077,0.11077 -0.0861,0.18955 -0.4375,0.17508 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z m 9.3125,0.007 c 0.22917,-0.0925 0.60417,-0.0925 0.83334,0 0.22916,0.0925 0.0417,0.16813 -0.41667,0.16813 -0.45833,0 -0.64583,-0.0757 -0.41667,-0.16813 z m -177.22368,-9.97366 c 0.016,-0.38832 0.095,-0.4673 0.20139,-0.20139 0.0963,0.24062 0.0845,0.52812 -0.0263,0.63889 -0.11077,0.11076 -0.18955,-0.0861 -0.17508,-0.4375 z m 0,-6.66667 c 0.016,-0.38832 0.095,-0.4673 0.20139,-0.20139 0.0963,0.24062 0.0845,0.52813 -0.0263,0.63889 -0.11077,0.11076 -0.18955,-0.0861 -0.17508,-0.4375 z"
46
+ id="path919" />
47
+ <path
48
+ style="fill:#b9b9b9;fill-opacity:1;stroke-width:0.333333"
49
+ d="m 109.62415,315.75001 c -0.41463,-0.52869 -0.40284,-0.54048 0.12585,-0.12586 0.32083,0.25162 0.58333,0.51412 0.58333,0.58334 0,0.27434 -0.27373,0.0978 -0.70918,-0.45748 z M 271.66667,292.5 c 12.74067,-12.74166 23.23986,-23.16666 23.33153,-23.16666 0.0917,0 -10.25752,10.425 -22.9982,23.16666 -12.74068,12.74167 -23.23987,23.16667 -23.33153,23.16667 -0.0917,0 10.25752,-10.425 22.9982,-23.16667 z m -172.640353,1.63889 c 0.016,-0.38831 0.09498,-0.4673 0.201386,-0.20139 0.09629,0.24063 0.08445,0.52813 -0.0263,0.63889 -0.110763,0.11077 -0.189546,-0.0861 -0.175073,-0.4375 z m 0,-6 c 0.016,-0.38831 0.09498,-0.4673 0.201386,-0.20139 0.09629,0.24063 0.08445,0.52813 -0.0263,0.63889 -0.110763,0.11077 -0.189546,-0.0861 -0.175073,-0.4375 z m 94.000003,-0.66666 c 0.016,-0.38832 0.095,-0.4673 0.20138,-0.20139 0.0963,0.24062 0.0845,0.52812 -0.0263,0.63889 -0.11076,0.11076 -0.18954,-0.0861 -0.17507,-0.4375 z M 1012.9575,264.75 c -0.4146,-0.52868 -0.4029,-0.54047 0.1258,-0.12585 0.3209,0.25162 0.5834,0.51412 0.5834,0.58333 0,0.27435 -0.2738,0.0978 -0.7092,-0.45748 z m 110.6839,-2 -0.8081,-0.91666 0.9167,0.8081 c 0.5042,0.44446 0.9167,0.85696 0.9167,0.91667 0,0.26142 -0.27,0.0487 -1.0253,-0.80811 z m -542.3506,-1.66666 c -0.4146,-0.52869 -0.40283,-0.54048 0.12587,-0.12586 0.32083,0.25162 0.58333,0.51412 0.58333,0.58334 0,0.27434 -0.27373,0.0978 -0.7092,-0.45748 z m 77.37587,0.12414 c 0,-0.0692 0.2625,-0.33171 0.58333,-0.58333 0.5287,-0.41462 0.54047,-0.40283 0.12587,0.12585 -0.43547,0.55525 -0.7092,0.73183 -0.7092,0.45748 z m -298.7092,-6.12414 c -0.4146,-0.52869 -0.40284,-0.54048 0.12586,-0.12586 0.32084,0.25162 0.58334,0.51412 0.58334,0.58334 0,0.27434 -0.27374,0.0978 -0.7092,-0.45748 z m 665.19353,-4.16667 -1.3177,-1.41667 1.4167,1.31765 c 1.3175,1.2254 1.5698,1.51569 1.3176,1.51569 -0.054,0 -0.6919,-0.6375 -1.4166,-1.41667 z m -539.67197,0 -0.97903,-1.08333 1.08333,0.97903 c 1.00984,0.91259 1.23657,1.18763 0.97904,1.18763 -0.0574,0 -0.54487,-0.4875 -1.08334,-1.08333 z m 338.47844,0.5 c -0.4146,-0.52869 -0.40284,-0.54048 0.12586,-0.12585 0.32084,0.25161 0.58334,0.51411 0.58334,0.58333 0,0.27435 -0.27374,0.0978 -0.7092,-0.45748 z M 1138.2908,250.75 c -0.4146,-0.52868 -0.4028,-0.54047 0.1259,-0.12585 0.3208,0.25162 0.5833,0.51412 0.5833,0.58333 0,0.27435 -0.2737,0.0978 -0.7092,-0.45748 z M 118.90923,242.42609 c 0.59175,-0.0736 1.64175,-0.0748 2.33334,-0.003 0.69158,0.0722 0.20743,0.1324 -1.0759,0.13388 -1.28334,0.001 -1.84918,-0.0576 -1.25744,-0.13119 z M 293.81765,223.25 292.5,221.83334 l 1.41667,1.31765 c 1.31748,1.2254 1.56984,1.51568 1.31765,1.51568 -0.0545,0 -0.69196,-0.6375 -1.41667,-1.41667 z M 87.026317,212.13889 c 0.016,-0.38831 0.09498,-0.4673 0.201386,-0.20139 0.09629,0.24063 0.08445,0.52813 -0.0263,0.63889 -0.110763,0.11077 -0.189546,-0.0861 -0.175073,-0.4375 z m 0,-5.66666 c 0.016,-0.38832 0.09498,-0.4673 0.201386,-0.20139 0.09629,0.24062 0.08445,0.52812 -0.0263,0.63889 -0.110763,0.11076 -0.189546,-0.0861 -0.175073,-0.4375 z M 737,200.83334 c 0.62193,-0.64167 1.20577,-1.16667 1.29743,-1.16667 0.0917,0 -0.34216,0.525 -0.9641,1.16667 C 736.7114,201.475 736.12757,202 736.0359,202 c -0.0917,0 0.34217,-0.525 0.9641,-1.16666 z m 446.6487,-1.41667 -1.1487,-1.25 1.25,1.14872 c 0.6875,0.6318 1.25,1.1943 1.25,1.25 0,0.25454 -0.2821,0.0147 -1.3513,-1.14872 z M 937,199.16667 C 937.62193,198.525 938.20577,198 938.29743,198 c 0.0917,0 -0.34216,0.525 -0.9641,1.16667 -0.62193,0.64167 -1.20576,1.16667 -1.29743,1.16667 -0.0917,0 0.34217,-0.525 0.9641,-1.16667 z m -406.04253,0.25 c -0.4146,-0.52869 -0.40284,-0.54048 0.12586,-0.12585 0.32084,0.25161 0.58334,0.51411 0.58334,0.58333 0,0.27435 -0.27374,0.0978 -0.7092,-0.45748 z m -270.59782,-0.61111 c 0.016,-0.38832 0.095,-0.4673 0.20139,-0.20139 0.0963,0.24062 0.0845,0.52813 -0.0263,0.63889 -0.11077,0.11076 -0.18955,-0.0861 -0.17508,-0.4375 z m 0,-5.66667 c 0.016,-0.38831 0.095,-0.4673 0.20139,-0.20139 0.0963,0.24063 0.0845,0.52813 -0.0263,0.63889 -0.11077,0.11077 -0.18955,-0.0861 -0.17508,-0.4375 z m 484.97368,-0.90986 c 0,-0.0574 0.4875,-0.54486 1.08334,-1.08333 L 747.5,190.16667 746.52097,191.25 c -0.9126,1.00982 -1.18764,1.23655 -1.18764,0.97903 z m 263.99997,-2.68821 c 0,-0.0692 0.2625,-0.33172 0.5834,-0.58334 0.5287,-0.41462 0.5404,-0.40283 0.1258,0.12586 -0.4354,0.55525 -0.7092,0.73182 -0.7092,0.45748 z m -198.99997,-1.31179 c 0,-0.0574 0.4875,-0.54486 1.08334,-1.08333 L 812.5,186.16667 811.52097,187.25 c -0.9126,1.00982 -1.18764,1.23655 -1.18764,0.97903 z M 885.64873,186.75 884.5,185.5 l 1.25,1.14873 c 0.6875,0.63179 1.25,1.19429 1.25,1.25 0,0.25454 -0.28207,0.0147 -1.35127,-1.14873 z M 95,187.54082 c 0,-0.0692 0.2625,-0.33172 0.583333,-0.58334 0.528687,-0.41462 0.540477,-0.40283 0.125854,0.12586 C 95.27373,187.63859 95,187.81516 95,187.54082 Z m 377,-0.66667 c 0,-0.0692 0.2625,-0.33172 0.58333,-0.58333 0.5287,-0.41463 0.54047,-0.40284 0.12587,0.12585 -0.43547,0.55525 -0.7092,0.73183 -0.7092,0.45748 z m 540,0 c 0,-0.0692 0.2625,-0.33172 0.5833,-0.58333 0.5287,-0.41463 0.5405,-0.40284 0.1259,0.12585 -0.4355,0.55525 -0.7092,0.73183 -0.7092,0.45748 z M 754.33333,182.8957 c 0,-0.0574 0.4875,-0.54487 1.08334,-1.08333 l 1.08333,-0.97903 -0.97903,1.08333 c -0.9126,1.00982 -1.18764,1.23655 -1.18764,0.97903 z m -17.66666,-6.06236 c 0.62193,-0.64167 1.20576,-1.16667 1.29743,-1.16667 0.0917,0 -0.34217,0.525 -0.9641,1.16667 C 736.37807,177.475 735.79423,178 735.70257,178 c -0.0917,0 0.34216,-0.525 0.9641,-1.16666 z M 378.83333,170 c 0.71607,-0.73333 1.37697,-1.33333 1.46864,-1.33333 0.0917,0 -0.41924,0.6 -1.1353,1.33333 -0.71607,0.73334 -1.37697,1.33334 -1.46864,1.33334 -0.0917,0 0.41924,-0.6 1.1353,-1.33334 z m -151.91278,-7.23575 c 0.41464,-0.0797 1.01464,-0.0767 1.33334,0.007 0.31869,0.0834 -0.0206,0.14867 -0.75389,0.14497 -0.73333,-0.004 -0.99408,-0.072 -0.57945,-0.15169 z m 12.4391,-37.29202 c 0.016,-0.38832 0.095,-0.4673 0.20139,-0.20139 0.0963,0.24062 0.0845,0.52812 -0.0263,0.63889 -0.11077,0.11076 -0.18955,-0.0861 -0.17508,-0.4375 z m 0,-4.66667 c 0.016,-0.38832 0.095,-0.4673 0.20139,-0.20139 0.0963,0.24062 0.0845,0.52813 -0.0263,0.63889 -0.11077,0.11076 -0.18955,-0.0861 -0.17508,-0.4375 z"
50
+ id="path917" />
51
+ <path
52
+ style="fill:#a3a3a3;fill-opacity:1;stroke-width:0.333333"
53
+ d="m 177.319,292.9301 c 12.73378,-12.7801 23.22473,-23.16415 23.31322,-23.07566 0.0885,0.0885 -0.17007,0.39271 -0.57457,0.67604 -0.40939,0.28674 -0.63541,0.68976 -0.50978,0.909 0.12412,0.21662 0.0956,0.27531 -0.0634,0.13043 -0.159,-0.14489 -10.42055,9.83011 -22.80344,22.16665 l -22.51435,22.43009 z m 25.16003,21.65324 -0.97903,-1.08333 1.08333,0.97903 c 1.00982,0.91259 1.23655,1.18763 0.97903,1.18763 -0.0574,0 -0.54486,-0.4875 -1.08333,-1.08333 z m -94.0107,0 -0.635,-0.75 0.75,0.635 c 0.70482,0.59674 0.90175,0.865 0.635,0.865 -0.0632,0 -0.40075,-0.3375 -0.75,-0.75 z m 298.8025,-36.81104 c 0.24064,-0.0963 0.52814,-0.0844 0.6389,0.0263 0.11077,0.11076 -0.0861,0.18955 -0.4375,0.17507 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z m 9.3125,0.007 c 0.22917,-0.0925 0.60417,-0.0925 0.83334,0 0.22916,0.0925 0.0417,0.16813 -0.41667,0.16813 -0.45833,0 -0.64583,-0.0757 -0.41667,-0.16813 z m 87.35417,-0.007 c 0.24063,-0.0963 0.52813,-0.0844 0.6389,0.0263 0.11077,0.11076 -0.0861,0.18955 -0.4375,0.17507 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z m 8.33333,0 c 0.24064,-0.0963 0.52814,-0.0844 0.6389,0.0263 0.11077,0.11076 -0.0861,0.18955 -0.4375,0.17507 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z m 103.66667,0 c 0.24063,-0.0963 0.52813,-0.0844 0.6389,0.0263 0.11077,0.11076 -0.0861,0.18955 -0.4375,0.17507 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z m 8,0 c 0.24063,-0.0963 0.52813,-0.0844 0.6389,0.0263 0.11077,0.11076 -0.0861,0.18955 -0.4375,0.17507 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z m 220.33333,0 c 0.24064,-0.0963 0.52814,-0.0844 0.6389,0.0263 0.11077,0.11076 -0.0861,0.18955 -0.4375,0.17507 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z m 8.66667,0 c 0.24063,-0.0963 0.52813,-0.0844 0.6389,0.0263 0.11077,0.11076 -0.0861,0.18955 -0.4375,0.17507 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z m 102.33333,0 c 0.24064,-0.0963 0.52814,-0.0844 0.6389,0.0263 0.11077,0.11076 -0.0861,0.18955 -0.4375,0.17507 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z m 8,0 c 0.24064,-0.0963 0.52814,-0.0844 0.6389,0.0263 0.11077,0.11076 -0.0861,0.18955 -0.4375,0.17507 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z m 79.66667,0 c 0.2406,-0.0963 0.5281,-0.0844 0.6389,0.0263 0.1108,0.11076 -0.086,0.18955 -0.4375,0.17507 -0.3883,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z m 8.3333,0 c 0.2407,-0.0963 0.5282,-0.0844 0.6389,0.0263 0.1108,0.11076 -0.086,0.18955 -0.4375,0.17507 -0.3883,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z m 104.6667,0 c 0.2406,-0.0963 0.5281,-0.0844 0.6389,0.0263 0.1108,0.11076 -0.086,0.18955 -0.4375,0.17507 -0.3883,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z m 8,0 c 0.2406,-0.0963 0.5281,-0.0844 0.6389,0.0263 0.1108,0.11076 -0.086,0.18955 -0.4375,0.17507 -0.3883,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z m -403.55153,-5.43896 c 0,-0.45834 0.0757,-0.64584 0.16813,-0.41667 0.0925,0.22917 0.0925,0.60417 0,0.83333 -0.0925,0.22917 -0.16813,0.0417 -0.16813,-0.41666 z M 788.49553,225 c 0,-26.30833 0.0395,-37.07083 0.0878,-23.91666 0.0483,13.15416 0.0483,34.67916 0,47.83333 -0.0483,13.15417 -0.0878,2.39167 -0.0878,-23.91667 z m -664.91341,28 c 9.21182,-9.25833 16.74931,-16.98333 16.74999,-17.16666 6.6e-4,-0.18334 0.15669,-0.33334 0.34671,-0.33334 0.19003,0 0.48773,-0.225 0.66157,-0.5 0.17384,-0.275 0.31837,-0.34946 0.32117,-0.16546 0.003,0.18399 -7.83239,8.13399 -17.41155,17.66667 l -17.41665,17.33213 z m 723.50121,8.43689 c 0.32084,-0.0838 0.84584,-0.0838 1.16667,0 0.32083,0.0838 0.0583,0.15245 -0.58333,0.15245 -0.64167,0 -0.90417,-0.0686 -0.58334,-0.15245 z m 2.5039,-0.006 c 0.41464,-0.0797 1.01464,-0.0767 1.33334,0.007 0.31866,0.0834 -0.0207,0.14867 -0.7539,0.14497 -0.73334,-0.004 -0.9941,-0.072 -0.57944,-0.1517 z M 510.9375,260.10564 c 0.24063,-0.0963 0.52813,-0.0845 0.6389,0.0263 0.11077,0.11077 -0.0861,0.18955 -0.4375,0.17508 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z m 106.33333,0 c 0.24064,-0.0963 0.52814,-0.0845 0.6389,0.0263 0.11077,0.11077 -0.0861,0.18955 -0.4375,0.17508 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z m 5.33334,0 c 0.24063,-0.0963 0.52813,-0.0845 0.6389,0.0263 0.11076,0.11077 -0.0861,0.18955 -0.4375,0.17508 -0.38834,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z m 334,0 c 0.24063,-0.0963 0.52813,-0.0845 0.6389,0.0263 0.11076,0.11077 -0.0861,0.18955 -0.4375,0.17508 -0.38834,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z m 5.66666,0 c 0.24064,-0.0963 0.52814,-0.0845 0.6389,0.0263 0.11077,0.11077 -0.0861,0.18955 -0.4375,0.17508 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z m -555,-2.66666 c 0.24064,-0.0963 0.52814,-0.0845 0.6389,0.0263 0.11077,0.11076 -0.0861,0.18954 -0.4375,0.17507 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z M 96.666667,232.83334 c -0.809677,-0.825 -1.39714,-1.5 -1.305474,-1.5 0.09167,0 0.82913,0.675 1.638807,1.5 0.809677,0.825 1.39714,1.5 1.305473,1.5 -0.09167,0 -0.82913,-0.675 -1.638806,-1.5 z M 541.0263,228.80556 c 0.016,-0.38832 0.095,-0.4673 0.2014,-0.20139 0.0963,0.24062 0.0845,0.52813 -0.0263,0.63889 -0.11077,0.11076 -0.18957,-0.0861 -0.1751,-0.4375 z m 567.3597,-0.13889 c 0,-0.45833 0.076,-0.64583 0.1681,-0.41667 0.092,0.22917 0.092,0.60417 0,0.83334 -0.092,0.22916 -0.1681,0.0417 -0.1681,-0.41667 z m -435.6667,-0.33333 c 0,-0.45834 0.0757,-0.64584 0.16813,-0.41667 0.0925,0.22917 0.0925,0.60417 0,0.83333 -0.0925,0.22917 -0.16813,0.0417 -0.16813,-0.41666 z M 567.38597,228 c 0,-0.45833 0.0757,-0.64583 0.16813,-0.41666 0.0925,0.22916 0.0925,0.60416 0,0.83333 -0.0925,0.22917 -0.16813,0.0417 -0.16813,-0.41667 z m 428.05943,-1.66666 c 0,-1.375 0.0588,-1.9375 0.13077,-1.25 0.0719,0.6875 0.0719,1.8125 0,2.5 -0.0719,0.6875 -0.13077,0.125 -0.13077,-1.25 z m -520.05943,1.33333 c 0,-0.45833 0.0757,-0.64583 0.16813,-0.41667 0.0925,0.22917 0.0925,0.60417 0,0.83334 -0.0925,0.22916 -0.16813,0.0417 -0.16813,-0.41667 z m 539.64033,0.13889 c 0.016,-0.38832 0.095,-0.4673 0.2014,-0.20139 0.096,0.24062 0.084,0.52813 -0.026,0.63889 -0.1108,0.11076 -0.1896,-0.0861 -0.1751,-0.4375 z M 295.95748,225.75 c -0.41462,-0.52868 -0.40283,-0.54047 0.12585,-0.12585 0.55525,0.43546 0.73183,0.70919 0.45748,0.70919 -0.0692,0 -0.33171,-0.2625 -0.58333,-0.58334 z m 265.09515,-0.41666 c 0,-0.45834 0.0757,-0.64584 0.16814,-0.41667 0.0925,0.22917 0.0925,0.60417 0,0.83333 -0.0925,0.22917 -0.16814,0.0417 -0.16814,-0.41666 z m 91.97367,-0.19445 c 0.016,-0.38831 0.095,-0.4673 0.2014,-0.20139 0.0963,0.24063 0.0845,0.52813 -0.0263,0.63889 -0.11077,0.11077 -0.18957,-0.0861 -0.1751,-0.4375 z m -177.66667,-2.33333 c 0.016,-0.38832 0.095,-0.4673 0.2014,-0.20139 0.0963,0.24062 0.0845,0.52813 -0.0263,0.63889 -0.11077,0.11076 -0.18957,-0.0861 -0.1751,-0.4375 z m 539.66667,0 c 0.016,-0.38832 0.095,-0.4673 0.2014,-0.20139 0.096,0.24062 0.084,0.52813 -0.026,0.63889 -0.1108,0.11076 -0.1896,-0.0861 -0.1751,-0.4375 z m -447.64033,-0.47222 c 0,-0.45834 0.0757,-0.64584 0.16813,-0.41667 0.0925,0.22917 0.0925,0.60417 0,0.83333 -0.0925,0.22917 -0.16813,0.0417 -0.16813,-0.41666 z M 672.7193,222 c 0,-0.45833 0.0757,-0.64583 0.16813,-0.41666 0.0925,0.22916 0.0925,0.60416 0,0.83333 -0.0925,0.22917 -0.16813,0.0417 -0.16813,-0.41667 z m 435.6403,-0.19444 c 0.016,-0.38832 0.095,-0.4673 0.2014,-0.20139 0.096,0.24062 0.085,0.52813 -0.026,0.63889 -0.1108,0.11076 -0.1896,-0.0861 -0.1751,-0.4375 z m -817.06879,-0.72222 c -0.41462,-0.52869 -0.40283,-0.54048 0.12586,-0.12586 0.32083,0.25162 0.58333,0.51412 0.58333,0.58334 0,0.27434 -0.27373,0.0978 -0.70919,-0.45748 z m -40.95748,-1.25 c 1.50222,-1.53065 2.37588,-2.13123 1.05506,-0.72527 -0.4003,0.4261 -0.61395,0.90015 -0.47477,1.05344 0.13917,0.15329 0.0704,0.17384 -0.15272,0.0457 -0.23375,-0.13425 -0.58569,0.0551 -0.83018,0.44656 -0.23343,0.37378 -0.56957,0.6796 -0.74697,0.6796 -0.17741,0 0.33991,-0.675 1.14958,-1.5 z m 585.58334,-3.74988 c 7.0125,-0.0503 18.4875,-0.0503 25.5,0 7.0125,0.0503 1.275,0.0914 -12.75,0.0914 -14.025,0 -19.7625,-0.0411 -12.75,-0.0914 z M 364.07733,210 c 0,-0.64166 0.0686,-0.90416 0.15244,-0.58333 0.0839,0.32083 0.0839,0.84583 0,1.16667 -0.0838,0.32083 -0.15244,0.0583 -0.15244,-0.58334 z m -22.63193,-2.66666 c 0,-1.375 0.0588,-1.9375 0.13077,-1.25 0.0719,0.6875 0.0719,1.8125 0,2.5 -0.0719,0.6875 -0.13077,0.125 -0.13077,-1.25 z m 22.63193,-1.66667 c 0,-0.64167 0.0686,-0.90417 0.15244,-0.58333 0.0839,0.32083 0.0839,0.84583 0,1.16666 -0.0838,0.32084 -0.15244,0.0583 -0.15244,-0.58333 z m 343.506,-2.88743 c 0.22917,-0.0925 0.60417,-0.0925 0.83334,0 0.22916,0.0925 0.0417,0.16813 -0.41667,0.16813 -0.45833,0 -0.64583,-0.0757 -0.41667,-0.16813 z M 507.92057,190.09758 c 0.41463,-0.0797 1.01463,-0.0767 1.33333,0.007 0.31867,0.0834 -0.0207,0.14866 -0.7539,0.14496 -0.73333,-0.004 -0.9941,-0.072 -0.57943,-0.15169 z m 111.66666,0 c 0.41464,-0.0797 1.01464,-0.0767 1.33334,0.007 0.31866,0.0834 -0.0207,0.14866 -0.7539,0.14496 -0.73334,-0.004 -0.9941,-0.072 -0.57944,-0.15169 z m 339.66667,0 c 0.41463,-0.0797 1.01463,-0.0767 1.33333,0.007 0.31867,0.0834 -0.0207,0.14866 -0.7539,0.14496 -0.73333,-0.004 -0.9941,-0.072 -0.57943,-0.15169 z m -112.49757,-1.66191 c 0.32434,-0.0845 0.77434,-0.0789 1,0.0124 0.2257,0.0913 -0.0397,0.16046 -0.58966,0.15366 -0.55,-0.007 -0.73464,-0.0815 -0.41034,-0.16601 z m 3.827,0.0102 c 0.22917,-0.0925 0.60417,-0.0925 0.83334,0 0.22916,0.0925 0.0417,0.16813 -0.41667,0.16813 -0.45833,0 -0.64583,-0.0757 -0.41667,-0.16813 z m -710.75,-45.77924 c 24.19948,-24.2 44.07406,-44.000002 44.16572,-44.000002 0.0917,0 -19.6329,19.800002 -43.83238,44.000002 -24.19948,24.2 -44.074057,44 -44.165723,44 -0.09167,0 19.632903,-19.8 43.832383,-44 z m 1046.58337,35.10356 c 0.3208,-0.0838 0.8458,-0.0838 1.1666,0 0.3209,0.0838 0.058,0.15244 -0.5833,0.15244 -0.6417,0 -0.9042,-0.0686 -0.5833,-0.15244 z m -935.60434,-5.18689 -0.97903,-1.08334 1.08334,0.97903 c 1.00982,0.9126 1.23655,1.18764 0.97903,1.18764 -0.0574,0 -0.54487,-0.4875 -1.08334,-1.08333 z m 256.10431,-0.16074 c 0.77916,-0.0702 2.05416,-0.0702 2.83333,0 0.77917,0.0702 0.14167,0.1276 -1.41667,0.1276 -1.55833,0 -2.19583,-0.0574 -1.41666,-0.1276 z m 112.0088,-3.3e-4 c 0.78403,-0.0704 1.98403,-0.0694 2.66666,0.002 0.68267,0.0716 0.0412,0.12924 -1.42546,0.12803 -1.46667,-10e-4 -2.0252,-0.0598 -1.2412,-0.13023 z m 339.3171,0.004 c 0.59173,-0.0736 1.64173,-0.0748 2.33333,-0.003 0.6916,0.0722 0.20743,0.13241 -1.0759,0.13389 -1.28333,0.001 -1.84917,-0.0576 -1.25743,-0.1312 z m 88.50743,0.0108 c 0.3208,-0.0838 0.8458,-0.0838 1.1667,0 0.3208,0.0838 0.058,0.15244 -0.5834,0.15244 -0.6416,0 -0.9041,-0.0686 -0.5833,-0.15244 z m 112.5088,-0.0147 c 0.784,-0.0704 1.984,-0.0694 2.6667,0.002 0.6826,0.0716 0.041,0.12924 -1.4255,0.12803 -1.4667,-0.001 -2.0252,-0.0598 -1.2412,-0.13023 z m -314.98797,-0.31654 c 0.24064,-0.0963 0.52814,-0.0845 0.6389,0.0263 0.11077,0.11076 -0.0861,0.18955 -0.4375,0.17507 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z M 445.9375,168.43906 c 0.24063,-0.0963 0.52813,-0.0845 0.6389,0.0263 0.11077,0.11077 -0.0861,0.18955 -0.4375,0.17508 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z m 342.5392,-19.10572 c 0,-4.30834 0.0475,-6.07084 0.10557,-3.91667 0.0581,2.15417 0.0581,5.67917 0,7.83333 -0.0581,2.15417 -0.10557,0.39167 -0.10557,-3.91666 z m -379.0537,7.10233 c 0.32433,-0.0845 0.77433,-0.0789 1,0.0124 0.2257,0.0913 -0.0397,0.16046 -0.58967,0.15366 -0.55,-0.007 -0.73463,-0.0815 -0.41033,-0.16601 z m 4.33333,0 c 0.32434,-0.0845 0.77434,-0.0789 1,0.0124 0.2257,0.0913 -0.0397,0.16046 -0.58966,0.15366 -0.55,-0.007 -0.73464,-0.0815 -0.41034,-0.16601 z m 819.65347,-1.00295 1.5765,-0.13535 0.09,-6.73202 0.09,-6.73201 2.1666,-0.0228 2.1667,-0.0228 -2.0765,0.1212 -2.0765,0.1212 -0.09,6.73493 -0.09,6.73492 -1.6667,0.034 -1.6667,0.034 1.5765,-0.13535 z m 9.3448,-0.005 c 0.5067,-0.0766 1.2567,-0.0746 1.6666,0.005 0.41,0.0791 0,0.14181 -0.9212,0.13931 -0.9167,-0.003 -1.2521,-0.0672 -0.7454,-0.14386 z m 5.7454,0.0704 c 0.7619,-0.26559 2.7741,-0.33834 2.6236,-0.0949 -0.09,0.14502 -0.7916,0.25183 -1.5599,0.23735 -0.7684,-0.0145 -1.247,-0.0786 -1.0637,-0.1425 z m 6.5879,-0.0704 c 0.5067,-0.0766 1.2567,-0.0746 1.6667,0.005 0.41,0.0791 0,0.14181 -0.9213,0.13931 -0.9166,-0.003 -1.2521,-0.0672 -0.7454,-0.14386 z m -10.3213,-8.09415 c 0,-1.00834 0.062,-1.42084 0.1388,-0.91667 0.076,0.50417 0.076,1.32917 0,1.83333 -0.076,0.50417 -0.1388,0.0917 -0.1388,-0.91666 z m -1013.93327,-2 c 0.33183,-0.36667 0.67833,-0.66667 0.77,-0.66667 0.0917,0 -0.10483,0.3 -0.43666,0.66667 -0.33183,0.36666 -0.67833,0.66666 -0.77,0.66666 -0.0917,0 0.10483,-0.3 0.43666,-0.66666 z M 1254.4174,144.1669 c 0,-0.73333 0.072,-0.99408 0.1517,-0.57945 0.08,0.41464 0.077,1.01464 -0.01,1.33334 -0.083,0.31869 -0.1486,-0.0206 -0.1449,-0.75389 z m -25.8415,-2.40724 c 0.5917,-0.0736 1.6417,-0.0748 2.3333,-0.003 0.6916,0.0722 0.2075,0.13241 -1.0759,0.13389 -1.2833,0.001 -1.8491,-0.0576 -1.2574,-0.1312 z m -453.51103,-2.67464 c 1.96066,-0.0588 5.26066,-0.059 7.33333,-3.4e-4 2.07267,0.0586 0.46847,0.10672 -3.56487,0.10697 -4.03333,2.5e-4 -5.72913,-0.0477 -3.76846,-0.10651 z m -366.6482,-2.6479 c 0.32083,-0.0838 0.84583,-0.0838 1.16666,0 0.32084,0.0838 0.0583,0.15245 -0.58333,0.15245 -0.64167,0 -0.90417,-0.0686 -0.58333,-0.15245 z m 6.673,-0.001 c 0.32433,-0.0845 0.77433,-0.079 1,0.0124 0.2257,0.0913 -0.0397,0.16045 -0.58967,0.15366 -0.55,-0.007 -0.73463,-0.0815 -0.41033,-0.16601 z M 231.29081,101.41667 c -0.41462,-0.52869 -0.40283,-0.54048 0.12586,-0.12586 0.55525,0.43546 0.73182,0.70919 0.45748,0.70919 -0.0692,0 -0.33172,-0.2625 -0.58334,-0.58333 z m -3.33333,-3.333335 c -0.41462,-0.528687 -0.40283,-0.540477 0.12585,-0.125853 0.32084,0.251616 0.58334,0.514116 0.58334,0.583333 0,0.274347 -0.27373,0.09777 -0.70919,-0.45748 z"
54
+ id="path915" />
55
+ <path
56
+ style="fill:#c027b9;fill-opacity:1;stroke-width:0.333333"
57
+ d="m 126.30289,323.81534 c -18.80192,-3.40438 -30.842377,-22.12941 -26.14262,-40.65639 0.8713,-3.43477 2.48559,-7.15337 4.36562,-10.05642 0.77494,-1.19662 8.10568,-8.81209 19.19722,-19.94282 9.86896,-9.90384 17.94356,-18.11971 17.94356,-18.25751 0,-0.13779 -1.18755,0.5816 -2.639,1.59866 -3.06734,2.14934 -5.83931,3.46963 -9.93298,4.73106 -2.72249,0.83892 -3.34919,0.90226 -8.92802,0.90226 -5.60936,0 -6.19532,-0.06 -9,-0.92234 -11.550547,-3.55114 -20.145363,-12.39877 -22.9958,-23.67221 -2.286037,-9.04124 -0.723547,-18.50176 4.33838,-26.26791 1.246893,-1.91301 11.32819,-12.19248 46.79004,-47.70979 24.86039,-24.89927 46.17571,-46.012602 47.36738,-46.918512 6.46027,-4.911116 15.80309,-7.39937 23.78817,-6.335457 11.07505,1.475614 20.67033,8.308587 25.54638,18.192039 5.36342,10.87133 4.55152,23.01187 -2.22343,33.2474 -1.10594,1.67084 -5.62456,6.48282 -14.60623,15.5545 -7.15269,7.22438 -12.77989,13.00716 -12.50489,12.85062 0.275,-0.15654 1.18782,-0.77623 2.02849,-1.3771 3.6299,-2.59447 8.83899,-4.66403 13.71785,-5.45008 3.58023,-0.57683 10.00251,-0.25676 13.42032,0.66882 5.8288,1.57851 11.51528,4.9907 15.66056,9.39715 12.09524,12.85732 12.07471,32.38189 -0.0476,45.26799 -1.38355,1.47072 -2.43215,2.67404 -2.33022,2.67404 0.10193,0 1.15826,-0.68014 2.34741,-1.51141 2.98015,-2.08327 7.78861,-4.27818 11.36985,-5.18997 3.97604,-1.01231 10.70375,-1.09135 14.66667,-0.17232 12.3306,2.85957 21.84528,12.01257 25.06874,24.1158 1.13347,4.25591 1.27084,11.10479 0.30603,15.2579 -1.19177,5.13007 -3.32598,9.5661 -6.57514,13.66666 -0.87161,1.1 -12.35809,12.73861 -25.52552,25.86358 -25.35133,25.26958 -25.92912,25.78774 -31.39856,28.15795 -4.63655,2.00927 -7.85008,2.62716 -13.54222,2.60384 -5.51444,-0.0226 -7.87017,-0.48337 -12.65528,-2.47542 -7.76243,-3.23151 -14.80639,-10.49005 -17.85728,-18.40127 -1.72089,-4.46242 -2.10713,-6.63343 -2.1198,-11.91534 -0.009,-3.87606 0.13054,-5.3945 0.70603,-7.66667 1.01926,-4.02425 2.43463,-7.24091 4.66066,-10.59209 1.06237,-1.59935 1.98583,-3.05791 2.05214,-3.24124 0.0663,-0.18334 -10.65853,10.41019 -23.83296,23.54117 -14.81837,14.76949 -24.71625,24.38148 -25.95351,25.20385 -7.35003,4.8854 -16.1254,6.75884 -24.53044,5.23698 z"
58
+ id="path913" />
59
+ <path
60
+ style="fill:#767676;fill-opacity:1;stroke-width:0.333333"
61
+ d="m 1011.3154,263.08334 -1.1487,-1.25 1.25,1.14872 c 0.6875,0.6318 1.25,1.1943 1.25,1.25 0,0.25454 -0.2821,0.0147 -1.3513,-1.14872 z M 657.33333,262.5 c 0.62194,-0.64166 1.20577,-1.16666 1.29744,-1.16666 0.0917,0 -0.34217,0.525 -0.9641,1.16666 -0.62194,0.64167 -1.20577,1.16667 -1.29744,1.16667 -0.0917,0 0.34217,-0.525 0.9641,-1.16667 z m -74.6919,-0.0833 -0.8081,-0.91667 0.91667,0.80811 c 0.50417,0.44446 0.91667,0.85696 0.91667,0.91666 0,0.26143 -0.26994,0.0487 -1.02524,-0.8081 z m -220.49046,-5.1667 -1.31764,-1.41666 1.41667,1.31765 c 1.3175,1.2254 1.56983,1.51568 1.31763,1.51568 -0.0544,0 -0.69193,-0.6375 -1.41666,-1.41667 z m 280.5157,-6.08333 c 0.43056,-0.45833 0.85786,-0.83333 0.94953,-0.83333 0.0917,0 -0.18563,0.375 -0.6162,0.83333 C 642.56943,251.625 642.14213,252 642.05047,252 c -0.0917,0 0.18563,-0.375 0.6162,-0.83333 z m -45.53167,-0.25 -0.635,-0.75 0.75,0.635 c 0.7048,0.59674 0.90173,0.865 0.635,0.865 -0.0633,0 -0.40077,-0.3375 -0.75,-0.75 z M 1070.8333,251 c 0.3319,-0.36666 0.6784,-0.66666 0.77,-0.66666 0.092,0 -0.1048,0.3 -0.4366,0.66666 -0.3319,0.36667 -0.6784,0.66667 -0.77,0.66667 -0.092,0 0.1048,-0.3 0.4366,-0.66667 z m -692.6876,-6.75 -0.97903,-1.08333 1.08333,0.97903 c 1.00983,0.91259 1.23657,1.18764 0.97903,1.18764 -0.0574,0 -0.54486,-0.4875 -1.08333,-1.08334 z m 355.52097,-40.02097 c 0,-0.0574 0.4875,-0.54486 1.08333,-1.08333 l 1.08333,-0.97903 -0.97903,1.08333 c -0.9126,1.00982 -1.18763,1.23655 -1.18763,0.97903 z M 713,200.90833 c 0,-0.0504 1.1625,-1.21292 2.58333,-2.58334 l 2.58334,-2.49165 -2.49167,2.58333 c -2.3142,2.39934 -2.675,2.73542 -2.675,2.49166 z m 357.8176,-1.32499 -1.3176,-1.41667 1.4167,1.31765 c 1.3175,1.2254 1.5698,1.51568 1.3176,1.51568 -0.054,0 -0.6919,-0.6375 -1.4167,-1.41666 z m 67.5157,-0.0833 c 0.622,-0.64166 1.2058,-1.16666 1.2975,-1.16666 0.092,0 -0.3422,0.525 -0.9641,1.16666 -0.622,0.64167 -1.2058,1.16667 -1.2975,1.16667 -0.092,0 0.3422,-0.525 0.9641,-1.16667 z M 485,199.87415 c 0,-0.0692 0.2625,-0.33172 0.58333,-0.58333 0.5287,-0.41463 0.54047,-0.40284 0.12587,0.12585 -0.43547,0.55525 -0.7092,0.73183 -0.7092,0.45748 z m 258.66667,-6.04081 c 0.62193,-0.64167 1.20576,-1.16667 1.29743,-1.16667 0.0917,0 -0.34217,0.525 -0.9641,1.16667 C 743.37807,194.475 742.79423,195 742.70257,195 c -0.0917,0 0.34216,-0.525 0.9641,-1.16666 z M 1123.8333,188 c 0.9029,-0.91666 1.7166,-1.66666 1.8083,-1.66666 0.092,0 -0.5721,0.75 -1.4749,1.66666 -0.9029,0.91667 -1.7166,1.66667 -1.8083,1.66667 -0.092,0 0.5721,-0.75 1.4749,-1.66667 z m -201.49997,-0.16666 c 0.62194,-0.64167 1.20577,-1.16667 1.29744,-1.16667 0.0917,0 -0.34217,0.525 -0.9641,1.16667 C 922.04473,188.475 921.4609,189 921.36923,189 c -0.0917,0 0.34217,-0.525 0.9641,-1.16666 z M 470.83333,188 c 0.33184,-0.36666 0.67834,-0.66666 0.77,-0.66666 0.0917,0 -0.10483,0.3 -0.43666,0.66666 -0.33184,0.36667 -0.67834,0.66667 -0.77,0.66667 -0.0917,0 0.10483,-0.3 0.43666,-0.66667 z m 539.83337,0.20748 c 0,-0.0692 0.2625,-0.33171 0.5833,-0.58333 0.5287,-0.41462 0.5405,-0.40283 0.1259,0.12585 -0.4355,0.55525 -0.7092,0.73183 -0.7092,0.45748 z m -466.70923,-1.79081 c -0.4146,-0.52869 -0.40284,-0.54048 0.12586,-0.12585 0.32084,0.25161 0.58334,0.51411 0.58334,0.58333 0,0.27435 -0.27374,0.0978 -0.7092,-0.45748 z M 752,185.22903 c 0,-0.0574 0.4875,-0.54486 1.08333,-1.08333 l 1.08334,-0.97903 -0.97904,1.08333 C 752.27503,185.25982 752,185.48655 752,185.22903 Z"
62
+ id="path911" />
63
+ <path
64
+ style="fill:#606060;fill-opacity:1;stroke-width:0.333333"
65
+ d="m 408.75,277.77023 c 0.32083,-0.0838 0.84583,-0.0838 1.16667,0 0.32083,0.0838 0.0583,0.15244 -0.58334,0.15244 -0.64166,0 -0.90416,-0.0686 -0.58333,-0.15244 z m 6,0 c 0.32083,-0.0838 0.84583,-0.0838 1.16667,0 0.32083,0.0838 0.0583,0.15244 -0.58334,0.15244 -0.64166,0 -0.90416,-0.0686 -0.58333,-0.15244 z m 90.673,-0.001 c 0.32433,-0.0845 0.77433,-0.079 1,0.0124 0.2257,0.0913 -0.0397,0.16046 -0.58967,0.15366 -0.55,-0.007 -0.73463,-0.0815 -0.41033,-0.16601 z m 5,0 c 0.32433,-0.0845 0.77433,-0.079 1,0.0124 0.2257,0.0913 -0.0397,0.16046 -0.58967,0.15366 -0.55,-0.007 -0.73463,-0.0815 -0.41033,-0.16601 z m 106.66667,0 c 0.32433,-0.0845 0.77433,-0.079 1,0.0124 0.2257,0.0913 -0.0397,0.16046 -0.58967,0.15366 -0.55,-0.007 -0.73463,-0.0815 -0.41033,-0.16601 z m 5.33333,0 c 0.32433,-0.0845 0.77433,-0.079 1,0.0124 0.2257,0.0913 -0.0397,0.16046 -0.58967,0.15366 -0.55,-0.007 -0.73463,-0.0815 -0.41033,-0.16601 z m 223.33333,0 c 0.32434,-0.0845 0.77434,-0.079 1,0.0124 0.2257,0.0913 -0.0397,0.16046 -0.58966,0.15366 -0.55,-0.007 -0.73464,-0.0815 -0.41034,-0.16601 z m 5.33334,0 c 0.32433,-0.0845 0.77433,-0.079 1,0.0124 0.2257,0.0913 -0.0397,0.16046 -0.58967,0.15366 -0.55,-0.007 -0.73463,-0.0815 -0.41033,-0.16601 z m 105.66666,0 c 0.32434,-0.0845 0.77434,-0.079 1,0.0124 0.2257,0.0913 -0.0397,0.16046 -0.58966,0.15366 -0.55,-0.007 -0.73464,-0.0815 -0.41034,-0.16601 z m 5,0 c 0.32434,-0.0845 0.77434,-0.079 1,0.0124 0.2257,0.0913 -0.0397,0.16046 -0.58966,0.15366 -0.55,-0.007 -0.73464,-0.0815 -0.41034,-0.16601 z m 82.33337,0 c 0.3243,-0.0845 0.7743,-0.079 1,0.0124 0.2257,0.0913 -0.04,0.16046 -0.5897,0.15366 -0.55,-0.007 -0.7346,-0.0815 -0.4103,-0.16601 z m 5.3333,0 c 0.3243,-0.0845 0.7743,-0.079 1,0.0124 0.2257,0.0913 -0.04,0.16046 -0.5897,0.15366 -0.55,-0.007 -0.7346,-0.0815 -0.4103,-0.16601 z m 108,0 c 0.3243,-0.0845 0.7743,-0.079 1,0.0124 0.2257,0.0913 -0.04,0.16046 -0.5897,0.15366 -0.55,-0.007 -0.7346,-0.0815 -0.4103,-0.16601 z m 4.827,0.0102 c 0.2292,-0.0925 0.6042,-0.0925 0.8333,0 0.2292,0.0925 0.042,0.16813 -0.4166,0.16813 -0.4584,0 -0.6459,-0.0757 -0.4167,-0.16813 z m -742.64583,-0.34028 c 0.24063,-0.0963 0.52813,-0.0845 0.6389,0.0263 0.11076,0.11076 -0.0861,0.18955 -0.4375,0.17507 -0.38834,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z m 659.48553,-7.00318 c 0.3243,-0.0845 0.7743,-0.079 1,0.0124 0.2257,0.0913 -0.04,0.16046 -0.5897,0.15366 -0.55,-0.007 -0.7346,-0.0815 -0.4103,-0.16601 z m 113,0 c 0.3243,-0.0845 0.7743,-0.079 1,0.0124 0.2257,0.0913 -0.04,0.16046 -0.5897,0.15366 -0.55,-0.007 -0.7346,-0.0815 -0.4103,-0.16601 z M 543,264.87415 c 0,-0.0692 0.2625,-0.33172 0.58333,-0.58333 0.5287,-0.41463 0.54047,-0.40284 0.12587,0.12585 -0.43547,0.55525 -0.7092,0.73183 -0.7092,0.45748 z m 380.80167,-0.95748 -0.635,-0.75 0.75,0.635 c 0.7048,0.59674 0.90173,0.865 0.635,0.865 -0.0633,0 -0.40077,-0.3375 -0.75,-0.75 z m -112.46834,-1.08333 c -0.80966,-0.825 -1.39713,-1.5 -1.30546,-1.5 0.0917,0 0.82913,0.675 1.6388,1.5 0.80966,0.825 1.39713,1.5 1.30546,1.5 -0.0917,0 -0.82913,-0.675 -1.6388,-1.5 z M 885.16667,263 c 0.71606,-0.73333 1.37696,-1.33333 1.46863,-1.33333 0.0917,0 -0.41923,0.6 -1.1353,1.33333 -0.71607,0.73334 -1.37697,1.33334 -1.46863,1.33334 -0.0917,0 0.41923,-0.6 1.1353,-1.33334 z M 471,262.5 c -0.80967,-0.825 -1.39713,-1.5 -1.30547,-1.5 0.0917,0 0.82914,0.675 1.6388,1.5 0.80967,0.825 1.39714,1.5 1.30547,1.5 -0.0917,0 -0.82913,-0.675 -1.6388,-1.5 z m 524.05263,0.5 c 0,-0.45833 0.0757,-0.64583 0.16814,-0.41666 0.0925,0.22916 0.0925,0.60416 0,0.83333 -0.0925,0.22917 -0.16814,0.0417 -0.16814,-0.41667 z M 456.0263,261.13889 c 0.016,-0.38831 0.095,-0.4673 0.2014,-0.20139 0.0963,0.24063 0.0845,0.52813 -0.0263,0.63889 -0.11077,0.11077 -0.18957,-0.0861 -0.1751,-0.4375 z m 395.9112,0.30008 c 0.24063,-0.0963 0.52813,-0.0845 0.6389,0.0263 0.11077,0.11076 -0.0861,0.18954 -0.4375,0.17507 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z M 920.62413,260.75 c -0.4146,-0.52868 -0.40283,-0.54047 0.12587,-0.12585 0.32083,0.25162 0.58333,0.51412 0.58333,0.58333 0,0.27435 -0.27373,0.0978 -0.7092,-0.45748 z m 239.28507,-0.65724 c 0.5918,-0.0736 1.6418,-0.0749 2.3334,-0.003 0.6916,0.0722 0.2074,0.13241 -1.0759,0.13389 -1.2834,10e-4 -1.8492,-0.0576 -1.2575,-0.1312 z m -561.6184,-8.00942 c -0.4146,-0.52869 -0.40283,-0.54048 0.12587,-0.12586 0.55523,0.43546 0.73183,0.70919 0.45746,0.70919 -0.0692,0 -0.3317,-0.2625 -0.58333,-0.58333 z m 471.0425,0.45748 c 0,-0.0692 0.2625,-0.33172 0.5834,-0.58334 0.5287,-0.41462 0.5404,-0.40283 0.1258,0.12586 -0.4354,0.55525 -0.7092,0.73182 -0.7092,0.45748 z m -132.85427,-1.62415 -0.97903,-1.08333 1.08333,0.97903 c 0.59584,0.53846 1.08334,1.02596 1.08334,1.08333 0,0.25752 -0.27504,0.0308 -1.18764,-0.97903 z m -292.81236,-0.70919 c 0,-0.0692 0.2625,-0.33171 0.58333,-0.58333 0.5287,-0.41462 0.54047,-0.40283 0.12587,0.12585 -0.43547,0.55525 -0.7092,0.73183 -0.7092,0.45748 z m 428.00003,0 c 0,-0.0692 0.2625,-0.33171 0.5833,-0.58333 0.5287,-0.41462 0.5405,-0.40283 0.1259,0.12585 -0.4355,0.55525 -0.7092,0.73183 -0.7092,0.45748 z M 379.62413,245.75 c -0.4146,-0.52868 -0.40283,-0.54047 0.12587,-0.12585 0.55523,0.43546 0.73183,0.70919 0.45747,0.70919 -0.0692,0 -0.3317,-0.2625 -0.58334,-0.58334 z m -3,-3 c -0.4146,-0.52868 -0.40283,-0.54047 0.12587,-0.12585 0.32083,0.25162 0.58333,0.51412 0.58333,0.58333 0,0.27435 -0.27373,0.0978 -0.7092,-0.45748 z M 796.0263,229.47223 c 0.016,-0.38832 0.095,-0.4673 0.2014,-0.20139 0.0963,0.24062 0.0845,0.52812 -0.0263,0.63889 -0.11077,0.11076 -0.18957,-0.0861 -0.1751,-0.4375 z m 111,0 c 0.016,-0.38832 0.095,-0.4673 0.2014,-0.20139 0.0963,0.24062 0.0845,0.52812 -0.0263,0.63889 -0.11077,0.11076 -0.18957,-0.0861 -0.1751,-0.4375 z m -451.33333,-0.66667 c 0.016,-0.38832 0.095,-0.4673 0.2014,-0.20139 0.0963,0.24062 0.0845,0.52813 -0.0263,0.63889 -0.11076,0.11076 -0.18956,-0.0861 -0.1751,-0.4375 z m 19.66666,0 c 0.016,-0.38832 0.095,-0.4673 0.2014,-0.20139 0.0963,0.24062 0.0845,0.52813 -0.0263,0.63889 -0.11077,0.11076 -0.18957,-0.0861 -0.1751,-0.4375 z m 422.30704,0.0686 c 0,-0.0692 0.2625,-0.33172 0.58333,-0.58333 0.5287,-0.41463 0.54047,-0.40284 0.12587,0.12585 -0.43547,0.55525 -0.7092,0.73183 -0.7092,0.45748 z M 653.07733,227 c 0,-0.64166 0.0686,-0.90416 0.15244,-0.58333 0.0839,0.32083 0.0839,0.84583 0,1.16667 -0.0838,0.32083 -0.15244,0.0583 -0.15244,-0.58334 z m -65.96306,-1.83333 c 0,-1.46667 0.0598,-2.0252 0.13023,-1.24119 0.0704,0.78401 0.0694,1.98401 -0.003,2.66667 -0.0716,0.68265 -0.12924,0.0412 -0.12804,-1.42548 z m 85.66446,0.16667 c 0,-1.375 0.0588,-1.9375 0.13077,-1.25 0.0719,0.6875 0.0719,1.8125 0,2.5 -0.0719,0.6875 -0.13077,0.125 -0.13077,-1.25 z m 408.33337,0 c 0,-1.375 0.059,-1.9375 0.1307,-1.25 0.072,0.6875 0.072,1.8125 0,2.5 -0.072,0.6875 -0.1307,0.125 -0.1307,-1.25 z m 27.3355,-0.16667 c 0,-1.46667 0.06,-2.0252 0.1302,-1.24119 0.07,0.78401 0.07,1.98401 0,2.66667 -0.072,0.68265 -0.1292,0.0412 -0.128,-1.42548 z m 85.6667,0 c 0,-1.46667 0.06,-2.0252 0.1302,-1.24119 0.07,0.78401 0.069,1.98401 0,2.66667 -0.072,0.68265 -0.1293,0.0412 -0.1281,-1.42548 z m -626.67767,0 c 0.003,-1.1 0.0641,-1.50981 0.13827,-0.9107 0.0742,0.59912 0.0727,1.49912 -0.003,2 -0.076,0.50089 -0.13674,0.0107 -0.13487,-1.0893 z M 653.06497,223.5 c 0.007,-0.55 0.0815,-0.73464 0.16603,-0.41032 0.0845,0.32432 0.079,0.77432 -0.0123,1 -0.0913,0.22568 -0.16044,-0.0397 -0.15367,-0.58968 z M 455.7193,221.66667 c 0,-0.45833 0.0757,-0.64583 0.16813,-0.41667 0.0925,0.22917 0.0925,0.60417 0,0.83334 -0.0925,0.22916 -0.16813,0.0417 -0.16813,-0.41667 z m 19.64033,-0.19444 c 0.016,-0.38832 0.095,-0.4673 0.2014,-0.20139 0.0963,0.24062 0.0845,0.52812 -0.0263,0.63889 -0.11077,0.11076 -0.18957,-0.0861 -0.1751,-0.4375 z M 724.42413,220 c 0,-0.825 0.065,-1.1625 0.14444,-0.75 0.0795,0.4125 0.0795,1.0875 0,1.5 -0.0794,0.4125 -0.14444,0.075 -0.14444,-0.75 z m 71.60217,0.80556 c 0.016,-0.38832 0.095,-0.4673 0.2014,-0.20139 0.0963,0.24062 0.0845,0.52813 -0.0263,0.63889 -0.11077,0.11076 -0.18957,-0.0861 -0.1751,-0.4375 z m -235.33333,-0.33333 c 0.016,-0.38832 0.095,-0.4673 0.2014,-0.20139 0.0963,0.24062 0.0845,0.52812 -0.0263,0.63889 -0.11076,0.11076 -0.18956,-0.0861 -0.1751,-0.4375 z m 340,0 c 0.016,-0.38832 0.095,-0.4673 0.2014,-0.20139 0.0963,0.24062 0.0845,0.52812 -0.0263,0.63889 -0.11076,0.11076 -0.18956,-0.0861 -0.1751,-0.4375 z m -559,-7.33334 c 0.016,-0.38831 0.095,-0.4673 0.2014,-0.20139 0.0963,0.24063 0.0845,0.52813 -0.0263,0.63889 -0.11076,0.11077 -0.18956,-0.0861 -0.1751,-0.4375 z m 22.33333,-1.33333 c 0.016,-0.38832 0.095,-0.4673 0.2014,-0.20139 0.0963,0.24062 0.0845,0.52813 -0.0263,0.63889 -0.11077,0.11076 -0.18957,-0.0861 -0.1751,-0.4375 z M 732.33333,205.5 c 0.62194,-0.64166 1.20577,-1.16666 1.29744,-1.16666 0.0917,0 -0.34217,0.525 -0.9641,1.16666 -0.62194,0.64167 -1.20577,1.16667 -1.29744,1.16667 -0.0917,0 0.34217,-0.525 0.9641,-1.16667 z m -368.2807,-1.83333 c 0,-0.45833 0.0757,-0.64583 0.16814,-0.41667 0.0925,0.22917 0.0925,0.60417 0,0.83334 -0.0925,0.22916 -0.16814,0.0417 -0.16814,-0.41667 z m -22.35966,-2.52778 c 0.016,-0.38831 0.095,-0.4673 0.2014,-0.20139 0.0963,0.24063 0.0845,0.52813 -0.0263,0.63889 -0.11076,0.11077 -0.18956,-0.0861 -0.1751,-0.4375 z M 484,200.87415 c 0,-0.0692 0.2625,-0.33172 0.58333,-0.58333 0.5287,-0.41463 0.54047,-0.40284 0.12587,0.12585 -0.43547,0.55525 -0.7092,0.73183 -0.7092,0.45748 z m 340,-2.70748 C 824.62193,197.525 825.20577,197 825.29743,197 c 0.0917,0 -0.34216,0.525 -0.9641,1.16667 -0.62193,0.64167 -1.20576,1.16667 -1.29743,1.16667 -0.0917,0 0.34217,-0.525 0.9641,-1.16667 z m -338,0.70748 c 0,-0.0692 0.2625,-0.33172 0.58333,-0.58333 0.5287,-0.41463 0.54047,-0.40284 0.12587,0.12585 -0.43547,0.55525 -0.7092,0.73183 -0.7092,0.45748 z m 255.33333,-2.70748 C 741.95527,195.525 742.5391,195 742.63077,195 c 0.0917,0 -0.34217,0.525 -0.9641,1.16667 -0.62194,0.64167 -1.20577,1.16667 -1.29744,1.16667 -0.0917,0 0.34217,-0.525 0.9641,-1.16667 z m -19.16666,-4.5 c 2.37803,-2.38333 4.3987,-4.33333 4.49036,-4.33333 0.0917,0 -1.779,1.95 -4.15703,4.33333 C 720.12197,194.05 718.1013,196 718.00963,196 c -0.0917,0 1.779,-1.95 4.15704,-4.33333 z m -216.25,-1.55409 c 0.22916,-0.0925 0.60416,-0.0925 0.83333,0 0.22917,0.0925 0.0417,0.16813 -0.41667,0.16813 -0.45833,0 -0.64583,-0.0757 -0.41666,-0.16813 z m 4,0 c 0.22916,-0.0925 0.60416,-0.0925 0.83333,0 0.22917,0.0925 0.0417,0.16813 -0.41667,0.16813 -0.45833,0 -0.64583,-0.0757 -0.41666,-0.16813 z m 70.75,0.0949 c 0,-0.0692 0.2625,-0.33171 0.58333,-0.58333 0.5287,-0.41462 0.54047,-0.40283 0.12587,0.12585 -0.43547,0.55525 -0.7092,0.73183 -0.7092,0.45748 z m 36.91666,-0.0949 c 0.22917,-0.0925 0.60417,-0.0925 0.83334,0 0.22916,0.0925 0.0417,0.16813 -0.41667,0.16813 -0.45833,0 -0.64583,-0.0757 -0.41667,-0.16813 z m 4.33334,0 c 0.22916,-0.0925 0.60416,-0.0925 0.83333,0 0.22917,0.0925 0.0417,0.16813 -0.41667,0.16813 -0.45833,0 -0.64583,-0.0757 -0.41666,-0.16813 z m 335.33333,0 c 0.22917,-0.0925 0.60417,-0.0925 0.83333,0 0.22917,0.0925 0.0417,0.16813 -0.41666,0.16813 -0.45834,0 -0.64584,-0.0757 -0.41667,-0.16813 z m 4.33333,0 c 0.22917,-0.0925 0.60417,-0.0925 0.83334,0 0.22916,0.0925 0.0417,0.16813 -0.41667,0.16813 -0.45833,0 -0.64583,-0.0757 -0.41667,-0.16813 z m 86.17297,-0.0102 c 0.3244,-0.0845 0.7744,-0.0789 1,0.0124 0.2257,0.0913 -0.04,0.16046 -0.5896,0.15366 -0.55,-0.007 -0.7347,-0.0815 -0.4104,-0.16601 z m 113,0 c 0.3244,-0.0845 0.7744,-0.0789 1,0.0124 0.2257,0.0913 -0.04,0.16046 -0.5896,0.15366 -0.55,-0.007 -0.7347,-0.0815 -0.4104,-0.16601 z m -615.27727,-2.18567 -0.97903,-1.08333 1.08333,0.97903 c 1.00984,0.91259 1.23657,1.18763 0.97904,1.18763 -0.0574,0 -0.54487,-0.4875 -1.08334,-1.08333 z m 299.7918,0.5223 c 0.24064,-0.0963 0.52814,-0.0845 0.6389,0.0263 0.11077,0.11076 -0.0861,0.18954 -0.4375,0.17507 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z m 7,0 c 0.24064,-0.0963 0.52814,-0.0845 0.6389,0.0263 0.11077,0.11076 -0.0861,0.18954 -0.4375,0.17507 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z M 750.66667,186.5 c 0.62193,-0.64166 1.20576,-1.16666 1.29743,-1.16666 0.0917,0 -0.34217,0.525 -0.9641,1.16666 -0.62193,0.64167 -1.20577,1.16667 -1.29743,1.16667 -0.0917,0 0.34216,-0.525 0.9641,-1.16667 z m -166.33334,0.0408 c 0,-0.0692 0.2625,-0.33172 0.58334,-0.58334 0.5287,-0.41462 0.54046,-0.40283 0.12586,0.12586 -0.43546,0.55525 -0.7092,0.73182 -0.7092,0.45748 z m 30.27084,-13.76852 c 0.24063,-0.0963 0.52813,-0.0845 0.6389,0.0263 0.11076,0.11076 -0.0861,0.18955 -0.4375,0.17507 -0.38834,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z m 10.66666,0 c 0.24064,-0.0963 0.52814,-0.0845 0.6389,0.0263 0.11077,0.11076 -0.0861,0.18955 -0.4375,0.17507 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z m 426.99997,0 c 0.2407,-0.0963 0.5282,-0.0845 0.6389,0.0263 0.1108,0.11076 -0.086,0.18955 -0.4375,0.17507 -0.3883,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z m 113.6667,0 c 0.2406,-0.0963 0.5281,-0.0845 0.6389,0.0263 0.1108,0.11076 -0.086,0.18955 -0.4375,0.17507 -0.3883,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z m -320.35417,-0.65972 c 0.22917,-0.0925 0.60417,-0.0925 0.83334,0 0.22916,0.0925 0.0417,0.16813 -0.41667,0.16813 -0.45833,0 -0.64583,-0.0757 -0.41667,-0.16813 z m 5.50634,-0.0102 c 0.32433,-0.0845 0.77433,-0.0789 1,0.0124 0.2257,0.0913 -0.0397,0.16046 -0.58967,0.15366 -0.55,-0.007 -0.73463,-0.0815 -0.41033,-0.16601 z m 343.73033,-15.269 c 10e-5,-8.25 0.043,-11.57726 0.096,-7.39391 0.053,4.18335 0.053,10.93335 -10e-5,15 -0.053,4.06665 -0.096,0.64391 -0.096,-7.60609 z M 360,159.54082 c 0,-0.0692 0.2625,-0.33172 0.58333,-0.58334 0.5287,-0.41462 0.54047,-0.40283 0.12587,0.12586 -0.43547,0.55525 -0.7092,0.73182 -0.7092,0.45748 z m 415.41667,-0.12289 c 1.97083,-0.0589 5.19583,-0.0589 7.16666,0 1.97084,0.0589 0.35834,0.10715 -3.58333,0.10715 -3.94167,0 -5.55417,-0.0482 -3.58333,-0.10715 z M 407.9375,156.43897 c 0.24063,-0.0963 0.52813,-0.0845 0.6389,0.0263 0.11077,0.11076 -0.0861,0.18954 -0.4375,0.17507 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z m 7.66667,0 c 0.24063,-0.0963 0.52813,-0.0845 0.6389,0.0263 0.11076,0.11076 -0.0861,0.18954 -0.4375,0.17507 -0.38834,-0.016 -0.4673,-0.095 -0.2014,-0.20139 z m -51.4375,-1.10563 c 0.33183,-0.36667 0.67833,-0.66667 0.77,-0.66667 0.0917,0 -0.10484,0.3 -0.43667,0.66667 C 364.16817,155.7 363.82167,156 363.73,156 c -0.0917,0 0.10483,-0.3 0.43667,-0.66666 z M 1244.77,151.16667 c 0,-1.1 0.064,-1.50981 0.1382,-0.9107 0.074,0.59912 0.073,1.49912 0,2 -0.076,0.50089 -0.1367,0.0107 -0.1349,-1.0893 z m 9.6666,-3.66667 c 0,-1.1 0.064,-1.50981 0.1383,-0.91069 0.074,0.59911 0.073,1.49911 0,2 -0.076,0.50088 -0.1368,0.0107 -0.1349,-1.08931 z M 405.27083,136.7723 c 0.24064,-0.0963 0.52814,-0.0845 0.6389,0.0263 0.11077,0.11076 -0.0861,0.18955 -0.4375,0.17507 -0.38833,-0.016 -0.4673,-0.095 -0.2014,-0.20138 z m 5.6384,-0.34621 c 0.59174,-0.0736 1.64174,-0.0748 2.33334,-0.003 0.6916,0.0722 0.20743,0.1324 -1.0759,0.13388 -1.28334,0.001 -1.84917,-0.0576 -1.25744,-0.13119 z"
66
+ id="path909" />
67
+ <path
68
+ style="fill:#aeaeae;fill-opacity:1;stroke-width:0.333333"
69
+ d="m 407,277.64727 c -30.09577,-2.20341 -55.74617,-23.70688 -63.15827,-52.9474 -1.6604,-6.55027 -1.97863,-9.37023 -1.97863,-17.5332 0,-8.39418 0.3417,-11.27037 2.14663,-18.06953 6.60694,-24.88808 26.66304,-44.49743 51.7538,-50.601 5.83154,-1.41858 11.3021,-1.93115 18.5569,-1.73871 11.0867,0.29409 19.36894,2.30807 29.21657,7.10456 4.14937,2.02104 11.5941,6.80397 12.12,7.7866 0.7888,1.47393 0.3635,2.66349 -3.1972,8.94219 -1.9471,3.43341 -3.90547,6.58006 -4.3519,6.99256 -1.39623,1.29003 -2.58307,1.00381 -5.94123,-1.43283 -3.43334,-2.49116 -10.42637,-6.06446 -14.31177,-7.31305 -5.67707,-1.82433 -8.8721,-2.29457 -15.68823,-2.30892 -6.96364,-0.0147 -9.79907,0.38408 -15.13864,2.12897 -6.72843,2.19875 -12.5074,5.82955 -18.05156,11.34142 -9.4656,9.41045 -14.2906,20.87572 -14.87,35.33441 -1.06107,26.47825 14.74466,47.50672 38.84333,51.67843 4.29603,0.74369 11.7079,0.88125 15.9196,0.29546 8.30057,-1.15451 16.2487,-4.39706 23.30243,-9.50657 2.98607,-2.16301 4.5979,-2.52198 5.80617,-1.29308 0.3564,0.3625 2.30717,3.56235 4.335,7.11077 3.8436,6.72571 4.21403,7.8142 3.1677,9.30805 -0.2856,0.40778 -2.0949,1.78202 -4.02067,3.05387 -10.51236,6.94286 -21.70816,10.73907 -34.46003,11.68449 -4.8685,0.36095 -4.83017,0.36101 -10,-0.0175 z m 96.68,-0.006 c -8.9814,-0.8343 -17.54473,-3.92483 -25.18,-9.08753 -4.33317,-2.92994 -10.76487,-9.46133 -13.77007,-13.98346 -10.4655,-15.74814 -11.85793,-35.07537 -3.7539,-52.10445 7.0229,-14.75724 20.60547,-25.36989 36.8573,-28.79816 4.3245,-0.91224 12.26024,-1.23969 16.65074,-0.68706 12.49816,1.57316 23.28306,6.96479 31.88953,15.94239 6.37167,6.64639 10.65113,14.32775 12.9494,23.24334 6.41453,24.88369 -6.3502,51.08597 -29.823,61.21795 -8.25493,3.56323 -17.2764,5.05061 -25.82,4.25698 z m 13.08127,-18.26587 c 3.2728,-0.86726 7.69476,-2.92883 10.35323,-4.82679 2.51803,-1.7977 6.61183,-6.04784 8.3335,-8.65176 1.92143,-2.906 3.8269,-7.20486 4.79983,-10.82857 0.78557,-2.9259 0.87104,-3.84089 0.89374,-9.5686 0.0273,-6.91135 -0.24814,-8.69938 -2.1387,-13.87966 -4.4989,-12.32732 -15.3436,-20.51399 -28.4473,-21.47494 -6.90657,-0.50649 -14.6128,1.50828 -20.22224,5.28702 -9.30906,6.27097 -15.0035,17.54486 -14.99866,29.69457 0.007,18.04937 11.48856,32.31226 28.16533,34.9887 2.4805,0.3981 10.69657,-0.0604 13.26127,-0.73997 z M 617,277.79325 C 609.31057,277.157 602.5455,275.30093 596.30097,272.11424 581.07723,264.34531 570.622,249.7911 568.13623,232.90757 567.3429,227.51896 567.6359,218.82535 568.7735,214 c 1.20483,-5.11059 2.0066,-7.32964 4.39593,-12.16666 2.66337,-5.39175 5.72594,-9.68496 9.85244,-13.81147 7.18096,-7.18097 16.48766,-12.19654 26.7622,-14.4227 2.8815,-0.62432 4.4196,-0.73289 10.3826,-0.73289 5.963,0 7.5011,0.10857 10.3826,0.73289 20.94886,4.53894 36.55413,20.01466 41.15233,40.81069 1.07783,4.87472 1.24727,14.21503 0.35283,19.45118 -3.83463,22.44848 -21.28496,39.79361 -43.55443,43.29184 -3.26223,0.51246 -9.11027,0.8381 -11.5,0.64037 z m 9.3498,-17.98287 c 21.1291,-4.00812 32.61853,-27.45243 24.084,-49.14371 -2.94157,-7.47619 -9.54073,-14.48986 -16.67887,-17.72644 -4.19393,-1.90162 -8.02653,-2.69199 -13.25493,-2.73346 -7.0294,-0.0558 -12.50233,1.44368 -17.7362,4.85925 -4.97813,3.2487 -9.03633,7.79832 -11.68557,13.10065 -2.75366,5.51124 -3.91703,10.78052 -3.8638,17.5 0.15694,19.80166 14.04024,34.52557 32.6654,34.64321 2.08477,0.0132 4.92217,-0.20589 6.46997,-0.4995 z m 217.81687,17.84599 c -9.1252,-0.75625 -17.5486,-3.6411 -24.97524,-8.5535 -4.54946,-3.00926 -10.94716,-9.40461 -13.9507,-13.94555 -8.5386,-12.90915 -11.2662,-28.40208 -7.57613,-43.03269 7.06817,-28.02413 34.2979,-44.86907 62.63087,-38.7449 11.08093,2.39514 21.22883,8.3295 27.96686,16.35464 4.56097,5.43221 7.6267,10.85307 9.74164,17.22521 2.71093,8.16783 3.48193,15.21601 2.05356,18.773 -0.5376,1.33876 -2.66203,3.55089 -4.20146,4.3749 L 894.5,230.83334 857.4754,231 l -37.0246,0.16667 -1.19613,0.81972 c -3.69014,2.5289 -3.81057,6.41481 -0.3915,12.63501 9.2651,16.85578 33.5563,22.38079 49.3035,11.21402 2.5185,-1.78594 6.6394,-6.11777 8.16666,-8.58473 0.64167,-1.03646 1.51124,-2.04187 1.93237,-2.23425 0.46043,-0.21034 3.68927,-0.34977 8.09987,-0.34977 5.78493,0 7.5334,0.10302 8.27726,0.48767 1.98457,1.02627 1.83097,2.29526 -0.8101,6.69268 -2.99043,4.97913 -5.27573,7.86532 -9.28686,11.72874 -8.68027,8.36058 -19.20987,13.07377 -31.4792,14.09051 -4.26467,0.3534 -4.5198,0.35312 -8.9,-0.01 z M 876.63133,215.5 c 2.02037,-1.19055 3.14217,-2.92748 3.3,-5.10949 0.12277,-1.69749 -0.003,-2.21392 -1.02473,-4.24505 -1.51333,-3.00505 -3.62257,-5.78196 -6.45757,-8.50166 -6.94346,-6.66108 -15.28523,-9.68263 -25.42853,-9.21074 -10.1728,0.47326 -19.22913,4.88698 -25.11067,12.23799 -5.00053,6.24988 -5.86853,10.75216 -2.65513,13.77198 2.04673,1.92345 1.25,1.8756 29.91197,1.7964 25.66546,-0.0709 26.36203,-0.0897 27.46466,-0.73943 z m 78.33214,62.15457 c -18.247,-1.58548 -34.66287,-12.93806 -42.6486,-29.49417 -8.56617,-17.75945 -6.51097,-38.76806 5.33476,-54.53283 7.76877,-10.33895 18.6355,-17.25455 31.46777,-20.02607 4.60677,-0.99497 15.53977,-1.08756 19.8826,-0.16838 8.46497,1.79165 15.27387,4.8628 22.83063,10.29774 2.7397,1.97041 3.66494,3.20943 3.39634,4.548 -0.22297,1.11097 -5.9863,11.0667 -6.86887,11.8654 -1.17597,1.06424 -2.84493,0.76183 -4.9616,-0.89905 -2.91487,-2.28719 -7.48583,-5.17638 -9.9755,-6.30526 -8.9096,-4.0398 -20.61797,-3.73503 -29.029,0.75563 -9.35197,4.99302 -15.6972,14.57602 -17.41073,26.29491 -0.5655,3.86765 -0.2386,11.4317 0.63713,14.74221 2.7235,10.29536 8.7973,18.00537 17.54827,22.27555 4.5059,2.19874 7.6954,2.99705 12.90593,3.23027 8.89243,0.39802 16.55697,-2.09703 23.46293,-7.63791 3.1659,-2.54009 3.8063,-2.93394 4.77064,-2.93394 1.17996,0 2.53683,1.67001 5.6635,6.97051 3.69246,6.25967 3.8296,7.0318 1.61366,9.08725 -0.77916,0.72275 -2.61666,2.11436 -4.08333,3.09248 -9.7972,6.53375 -22.7894,9.85837 -34.53653,8.83766 z m 87.66413,0.0103 c -21.6163,-2.02917 -39.6211,-17.71696 -45.42727,-39.58119 -1.25463,-4.72455 -1.6579,-8.83976 -1.42646,-14.55617 0.41756,-10.31338 3.26053,-19.02532 9.03353,-27.68243 7.6488,-11.46993 19.163,-19.25856 32.8593,-22.22729 2.9681,-0.64335 4.4878,-0.75882 10,-0.75984 8.9375,-0.002 13.7945,0.97406 21.3205,4.28304 5.6996,2.50597 10.3271,3.3864 13.0464,2.48221 0.6232,-0.20721 2.189,-1.17393 3.4796,-2.14825 1.2906,-0.97432 2.7628,-1.92978 3.2717,-2.12324 0.5088,-0.19347 2.8729,-0.35175 5.2534,-0.35175 5.1142,0 6.0732,0.32569 6.6307,2.25194 0.2539,0.87738 0.3319,15.28943 0.2628,48.52543 l -0.099,47.27737 -1.1219,1.00243 -1.122,1.00242 -4.9264,-0.11313 -4.9264,-0.11313 -2.285,-1.54329 c -2.9118,-1.96667 -3.3679,-2.19375 -5.2557,-2.61682 -2.1188,-0.47484 -5.2025,0.0533 -9.0058,1.5425 -6.7184,2.63053 -11.5218,4.13078 -15.1901,4.74436 -4.666,0.78047 -10.5124,1.06718 -14.3724,0.70483 z m 14.5391,-18.46893 c 17.1472,-5.10207 26.8652,-22.49485 23.2804,-41.66593 -1.9951,-10.66984 -9.1191,-20.00837 -18.6081,-24.39255 -7.3794,-3.40948 -16.7839,-3.86909 -24.5072,-1.19769 -10.6299,3.67678 -18.3936,12.61731 -21.412,24.65774 -1.061,4.23205 -1.0556,13.26008 0.01,17.51577 3.3577,13.40396 12.5963,22.83286 25.0698,25.58615 4.3318,0.95616 12.0711,0.71513 16.1666,-0.50349 z m 98.6666,18.4708 c -6.1406,-0.56165 -12.7675,-2.44558 -18.2606,-5.19125 -14.4259,-7.21071 -24.2861,-20.09344 -27.971,-36.54527 -0.6723,-3.00134 -0.7682,-4.32635 -0.7674,-10.59691 0,-7.82375 0.2839,-9.84585 2.2388,-16 3.2163,-10.12509 10.1172,-19.75385 18.8988,-26.36947 4.3053,-3.24333 11.4206,-6.85987 16.2872,-8.27834 5.4472,-1.5877 10.0285,-2.13064 16.2409,-1.92478 7.6198,0.2525 11.0152,0.98318 20.3333,4.37569 3.9157,1.42559 7.1301,1.02677 9.6578,-1.19828 2.4844,-2.18683 2.5089,-2.38019 2.5089,-19.8134 v -15.08758 l 0.8039,-0.93526 0.8039,-0.93525 7.5045,-0.10087 7.5046,-0.10088 1.1082,0.9902 1.1082,0.9902 v 66.01976 66.01977 l -0.9233,0.92424 c -0.8869,0.88772 -1.0767,0.92873 -4.8025,1.03756 -5.4785,0.16002 -6.3006,-0.0235 -9.4274,-2.10434 -3.2605,-2.16987 -5.1272,-2.66335 -8.211,-2.17071 -2.1208,0.3388 -2.8249,0.57377 -9.9478,3.31948 -7.5801,2.92194 -17.2264,4.35814 -24.688,3.67569 z m 12.4491,-18.19446 c 10.0071,-2.0403 19.2841,-9.97668 23.1514,-19.80564 2.8215,-7.17102 3.5292,-14.89054 2.0323,-22.16667 -3.125,-15.19015 -14.455,-25.76159 -29.0739,-27.12724 -15.647,-1.46167 -29.1543,7.48477 -34.1905,22.64573 -1.5758,4.74387 -1.9945,8.02972 -1.7761,13.93713 0.2049,5.53927 0.9056,8.79689 2.8775,13.37772 4.616,10.72338 14.2614,18.14688 25.5302,19.64922 2.9558,0.39406 8.1489,0.16262 11.4491,-0.51025 z m -486.33037,15.02223 c -0.48473,-0.26333 -1.04723,-0.95471 -1.25,-1.5364 -0.5504,-1.57881 -0.52146,-130.9248 0.0297,-132.13412 C 681.4852,139.16998 682.34893,139 690,139 c 7.65107,0 8.5148,0.16998 9.26843,1.82402 0.29837,0.65482 0.39824,7.69465 0.39824,28.06966 0,19.67476 0.10696,27.55272 0.38686,28.48684 0.5026,1.67753 2.32454,3.78573 4.0656,4.70441 1.79234,0.94572 5.4843,1.01669 7.2142,0.13867 0.64167,-0.32567 7.04154,-6.54672 14.22194,-13.82453 l 13.05526,-13.2324 8.58617,-0.0997 c 5.86107,-0.0681 8.87603,0.0204 9.49947,0.2786 1.28876,0.53382 1.88173,2.0753 1.2703,3.30234 -0.25657,0.51485 -7.26017,7.9672 -15.56357,16.56077 -13.0463,13.50216 -15.2491,15.92715 -16.21597,17.85141 -2.24123,4.46054 -2.26456,9.42564 -0.0644,13.71957 0.58337,1.13853 8.44027,11.52622 17.63157,23.31091 17.61686,22.58759 17.36086,22.20293 15.94253,23.95585 -0.63457,0.78426 -0.66527,0.78727 -9.05743,0.88691 -5.593,0.0664 -8.70927,-0.023 -9.27994,-0.26632 -0.51273,-0.21857 -6.3585,-7.22227 -14.4958,-17.36712 -10.75523,-13.40862 -13.95246,-17.18596 -15.1315,-17.87693 -4.01676,-2.35398 -9.4827,-0.57702 -11.43283,3.71678 -0.56947,1.25388 -0.61837,2.44756 -0.6251,15.26126 -0.008,14.93483 -0.0421,15.25512 -1.72233,16.12401 -1.3305,0.68803 -14.724,0.66253 -15.99964,-0.0305 z m 89,0.01 c -0.48473,-0.26859 -1.04723,-0.96429 -1.25,-1.54598 -0.26263,-0.75333 -0.3687,-14.56879 -0.3687,-48.01858 0,-39.12456 0.0766,-47.14428 0.459,-48.0595 0.74347,-1.77939 1.54774,-1.93016 9.68487,-1.81551 l 7.2484,0.10212 0.80387,0.93526 0.80386,0.93525 v 47.96283 47.96282 l -0.8039,0.93526 -0.80386,0.93525 -7.44614,0.0796 c -6.02806,0.0644 -7.61393,-0.0134 -8.3274,-0.40879 z M 770.3081,158.47313 769.5,157.61294 v -8.33534 -8.33534 l 0.93527,-0.80447 c 0.92953,-0.79954 0.9817,-0.80445 8.53786,-0.80445 h 7.60264 l 0.87876,0.87878 0.8788,0.87879 v 8.30303 8.30303 l -0.81816,0.81818 -0.8182,0.81819 h -7.79037 -7.7904 l -0.8081,-0.86019 z M 1232,148.5 v -6.83333 h -2.1667 -2.1666 V 140.33334 139 h 6 6 v 1.33334 1.33333 H 1237.3333 1235 v 6.83333 6.83334 h -1.5 -1.5 z m 10,-1.33333 V 139 h 2.1538 2.1537 l 0.4589,1.58334 c 0.2524,0.87083 0.97,3.57083 1.5945,6 0.6246,2.42916 1.2114,4.41621 1.304,4.41566 0.093,-6.6e-4 0.8479,-2.66305 1.6783,-5.91666 l 1.5098,-5.91567 2.2402,-0.0986 2.2401,-0.0986 v 8.1819 8.1819 h -1.5338 -1.5339 l 0.2163,-6.41667 c 0.1369,-4.05963 0.101,-6.233 -0.098,-5.91667 -0.1728,0.275 -0.9372,2.9 -1.6989,5.83334 -0.7616,2.93333 -1.465,5.60384 -1.5631,5.93446 -0.1409,0.47506 -0.462,0.57991 -1.5309,0.5 l -1.3525,-0.10113 -1.6207,-6.1402 c -0.8913,-3.37712 -1.7129,-6.22712 -1.8257,-6.33334 -0.1128,-0.10622 -0.1386,2.69437 -0.057,6.22354 l 0.1477,6.41667 H 1243.4413 1242 Z"
70
+ id="path907" />
71
+ </g>
72
+ </g>
73
+ </svg>
Binary file
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@cadit-app/image-extrude",
3
+ "version": "0.1.0",
4
+ "description": "Image Extrude for CADit - Extrude shapes from SVG or bitmap images",
5
+ "type": "module",
6
+ "main": "dist/main.js",
7
+ "types": "dist/main.d.ts",
8
+ "scripts": {
9
+ "typecheck": "tsc --noEmit",
10
+ "build": "tsc",
11
+ "prepublishOnly": "npm run build",
12
+ "generate": "npx tsx cli.ts",
13
+ "build:glb": "npx tsx cli.ts output.glb",
14
+ "build:3mf": "npx tsx cli.ts output.3mf"
15
+ },
16
+ "dependencies": {
17
+ "@cadit-app/script-params": "0.4.1",
18
+ "@cadit-app/svg-sampler": "^0.1.0",
19
+ "@resvg/resvg-wasm": "^2.6.2",
20
+ "@types/potrace": "^2.1.5",
21
+ "potrace": "^2.1.8"
22
+ },
23
+ "peerDependencies": {
24
+ "@cadit-app/manifold-3d": "^3.0.0"
25
+ },
26
+ "devDependencies": {
27
+ "@cadit-app/manifold-3d": "^3.3.2",
28
+ "@gltf-transform/core": "^4.1.1",
29
+ "@jscadui/3mf-export": "^0.5.0",
30
+ "@types/node": "^25.0.3",
31
+ "fflate": "^0.8.2",
32
+ "tsx": "^4.0.0",
33
+ "typescript": "^5.0.0"
34
+ },
35
+ "keywords": [
36
+ "cadit",
37
+ "image-extrude",
38
+ "svg",
39
+ "3d-printing",
40
+ "parametric"
41
+ ],
42
+ "author": {
43
+ "name": "CADit"
44
+ },
45
+ "license": "MIT",
46
+ "files": [
47
+ "dist/**/*",
48
+ "src/**/*",
49
+ "images/**/*",
50
+ "cadit.json",
51
+ "README.md"
52
+ ],
53
+ "publishConfig": {
54
+ "access": "public"
55
+ }
56
+ }
@@ -0,0 +1,30 @@
1
+ /**
2
+ * CrossSection utility functions
3
+ */
4
+
5
+ import { CrossSection } from '@cadit-app/manifold-3d/manifoldCAD';
6
+
7
+ /**
8
+ * Centers a CrossSection at the origin based on its bounding box
9
+ */
10
+ export function centerCrossSection(crossSection: CrossSection): CrossSection {
11
+ const bounds = crossSection.bounds();
12
+ const centerX = (bounds.min[0] + bounds.max[0]) / 2;
13
+ const centerY = (bounds.min[1] + bounds.max[1]) / 2;
14
+ return crossSection.translate([-centerX, -centerY]);
15
+ }
16
+
17
+ /**
18
+ * Scales a CrossSection to fit within a maximum size while maintaining aspect ratio
19
+ */
20
+ export function scaleToMaxSize(crossSection: CrossSection, maxSize: number): CrossSection {
21
+ const bounds = crossSection.bounds();
22
+ const width = bounds.max[0] - bounds.min[0];
23
+ const height = bounds.max[1] - bounds.min[1];
24
+ const maxDim = Math.max(width, height);
25
+
26
+ if (maxDim <= 0) return crossSection;
27
+
28
+ const scale = maxSize / maxDim;
29
+ return crossSection.scale([scale, scale]);
30
+ }