@humanforest/nuxt-layer 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.
- package/LICENSE +67 -0
- package/README.md +208 -0
- package/app.config.ts +10 -0
- package/assets/icons/forest/bike-asterisk.svg +21 -0
- package/assets/icons/forest/bike-down.svg +19 -0
- package/assets/icons/forest/bike-off.svg +20 -0
- package/assets/icons/forest/bike-up.svg +19 -0
- package/assets/icons/forest/bike-x.svg +19 -0
- package/assets/icons/forest/bike.svg +18 -0
- package/assets/icons/forest/mark-fill.svg +6 -0
- package/assets/icons/forest/mark.svg +6 -0
- package/assets/icons/forest/parking.svg +3 -0
- package/assets/icons/forest/star-fill.svg +4 -0
- package/assets/icons/forest/star.svg +4 -0
- package/assets/icons/forest/traffic-light-caution.svg +8 -0
- package/assets/icons/forest/traffic-light-go.svg +8 -0
- package/assets/icons/forest/traffic-light-lit.svg +8 -0
- package/assets/icons/forest/traffic-light-stop.svg +8 -0
- package/assets/icons/forest/traffic-light.svg +8 -0
- package/nuxt.config.ts +81 -0
- package/package.json +35 -0
- package/packages/charts/src/FBoroughShape.vue +52 -0
- package/packages/charts/src/FCalendarGrid.vue +332 -0
- package/packages/charts/src/FCellLegend.vue +54 -0
- package/packages/charts/src/FChartFrame.vue +201 -0
- package/packages/charts/src/FChartFrameSingle.vue +91 -0
- package/packages/charts/src/FChartLegend.vue +26 -0
- package/packages/charts/src/FDistributionBar.vue +224 -0
- package/packages/charts/src/FDottedMap.vue +335 -0
- package/packages/charts/src/FLondonMap.vue +399 -0
- package/packages/charts/src/FSparkline.vue +198 -0
- package/packages/charts/src/FStatusTrack.vue +151 -0
- package/packages/charts/src/cellSize.ts +46 -0
- package/packages/charts/src/distribution.ts +99 -0
- package/packages/charts/src/engine.ts +15 -0
- package/packages/charts/src/forestTooltip.ts +110 -0
- package/packages/charts/src/fromCategories.ts +43 -0
- package/packages/charts/src/index.ts +87 -0
- package/packages/charts/src/londonAreas.ts +75 -0
- package/packages/charts/src/londonGrid.ts +67 -0
- package/packages/charts/src/motionDuration.ts +49 -0
- package/packages/charts/src/presets.ts +143 -0
- package/packages/charts/src/resolveVar.ts +21 -0
- package/packages/charts/src/snapTooltip.ts +154 -0
- package/packages/charts/src/tooltipStandIn.ts +58 -0
- package/packages/charts/src/useCellScale.ts +155 -0
- package/packages/charts/src/useChartPalette.ts +61 -0
- package/packages/charts/src/useChartRepaintKey.ts +22 -0
- package/packages/charts/src/useThemeVersion.ts +17 -0
- package/packages/frames/src/FBrowserFrame.vue +53 -0
- package/packages/frames/src/FDeviceFrame.vue +242 -0
- package/packages/frames/src/FFitFrame.vue +83 -0
- package/packages/frames/src/art/iphone-11.svg +124 -0
- package/packages/frames/src/art/iphone-12.svg +601 -0
- package/packages/frames/src/art/iphone-13-pro.svg +820 -0
- package/packages/frames/src/art/iphone-13.svg +849 -0
- package/packages/frames/src/art/iphone-14.svg +681 -0
- package/packages/frames/src/art/iphone-15-pro.svg +633 -0
- package/packages/frames/src/art/iphone-15.svg +713 -0
- package/packages/frames/src/art/iphone-16-plus.svg +685 -0
- package/packages/frames/src/art/iphone-16-pro-max.svg +611 -0
- package/packages/frames/src/art/iphone-16-pro.svg +631 -0
- package/packages/frames/src/art/iphone-16.svg +713 -0
- package/packages/frames/src/art/iphone-17-pro-max.svg +355 -0
- package/packages/frames/src/art/iphone-17.svg +305 -0
- package/packages/frames/src/art/iphone-air.svg +389 -0
- package/packages/frames/src/art/iphone-se-3.svg +473 -0
- package/packages/frames/src/art/iphone-x.svg +652 -0
- package/packages/frames/src/art/pixel-10-pro-xl.svg +32 -0
- package/packages/frames/src/art/pixel-10-pro.svg +32 -0
- package/packages/frames/src/art/pixel-10.svg +32 -0
- package/packages/frames/src/art/pixel-8-pro.svg +208 -0
- package/packages/frames/src/art/pixel-8.svg +208 -0
- package/packages/frames/src/art/pixel-8a.svg +8 -0
- package/packages/frames/src/art/pixel-9-pro-xl.svg +32 -0
- package/packages/frames/src/art/pixel-9-pro.svg +34 -0
- package/packages/frames/src/art/pixel-9a.svg +25 -0
- package/packages/frames/src/art.ts +29 -0
- package/packages/frames/src/devices.ts +337 -0
- package/packages/frames/src/index.ts +15 -0
- package/packages/tokens/geo/london-boroughs.json +1 -0
- package/packages/tokens/geo/london-dots-coarse.json +1 -0
- package/packages/tokens/geo/london-dots-fine.json +1 -0
- package/packages/tokens/geo/london-dots-medium.json +1 -0
- package/packages/tokens/geo/london-dots-ultra.json +1 -0
- package/packages/tokens/geo/london-wards.json +1 -0
- package/packages/tokens/glyphs/glyphs.json +1 -0
- package/packages/tokens/logos/f-rot.svg +4 -0
- package/packages/tokens/logos/f.svg +4 -0
- package/packages/tokens/logos/favicon-c2w.svg +9 -0
- package/packages/tokens/logos/favicon-console.svg +9 -0
- package/packages/tokens/logos/favicon-ds.svg +9 -0
- package/packages/tokens/logos/favicon-fleet.svg +9 -0
- package/packages/tokens/logos/favicon-flex.svg +9 -0
- package/packages/tokens/logos/favicon-plus.svg +9 -0
- package/packages/tokens/logos/favicon-radar.svg +9 -0
- package/packages/tokens/logos/favicon-tower.svg +9 -0
- package/packages/tokens/logos/lockup-horizontal.svg +17 -0
- package/packages/tokens/logos/lockup-vertical.svg +17 -0
- package/packages/tokens/logos/mark-mono.svg +4 -0
- package/packages/tokens/logos/mark.svg +7 -0
- package/packages/tokens/logos/wordmark.svg +9 -0
- package/packages/tokens/src/colourEngine.ts +604 -0
- package/packages/tokens/src/glyphs.ts +127 -0
- package/packages/tokens/src/logo.ts +50 -0
- package/packages/tokens/src/subbrands.ts +44 -0
- package/packages/tokens/src/sublogo.ts +80 -0
- package/packages/ui/icons/forest/map/forest-place-count.svg +21 -0
- package/packages/ui/icons/forest/map/forest-place-marker.svg +17 -0
- package/packages/ui/icons/forest/map/forest-vehicle-marker.svg +73 -0
- package/packages/ui/icons/forest/map/manifest.json +373 -0
- package/packages/ui/icons/forest/map/place-count-manifest.json +83 -0
- package/packages/ui/icons/forest/map/place-manifest.json +74 -0
- package/packages/ui/src/address/address.ts +125 -0
- package/packages/ui/src/address/autofill.ts +78 -0
- package/packages/ui/src/address/geocode.ts +55 -0
- package/packages/ui/src/address/index.ts +31 -0
- package/packages/ui/src/address/validate.ts +91 -0
- package/packages/ui/src/canvas/FCanvasCard.vue +97 -0
- package/packages/ui/src/canvas/FCanvasControl.vue +121 -0
- package/packages/ui/src/canvas/FCanvasControlGroup.vue +100 -0
- package/packages/ui/src/canvas/FCanvasFlyout.vue +216 -0
- package/packages/ui/src/canvas/FCanvasHud.vue +402 -0
- package/packages/ui/src/canvas/canvasSurface.ts +39 -0
- package/packages/ui/src/canvas/index.ts +17 -0
- package/packages/ui/src/contexts/ForestContext.vue +53 -0
- package/packages/ui/src/contexts/contexts.ts +153 -0
- package/packages/ui/src/contexts/index.ts +23 -0
- package/packages/ui/src/contexts/marketing-theme.ts +214 -0
- package/packages/ui/src/contexts/mobile-theme.ts +402 -0
- package/packages/ui/src/filter/FFilterBar.vue +72 -0
- package/packages/ui/src/filter/FFilterChip.vue +362 -0
- package/packages/ui/src/filter/FFilterClauses.vue +104 -0
- package/packages/ui/src/filter/FFilterTrigger.vue +183 -0
- package/packages/ui/src/filter/filter.theme.ts +27 -0
- package/packages/ui/src/filter/filterClause.ts +265 -0
- package/packages/ui/src/filter/filterPredicate.ts +134 -0
- package/packages/ui/src/filter/filterSchema.ts +82 -0
- package/packages/ui/src/filter/index.ts +36 -0
- package/packages/ui/src/forest-preset.ts +68 -0
- package/packages/ui/src/icons.ts +79 -0
- package/packages/ui/src/index.ts +17 -0
- package/packages/ui/src/kpi/FKpi.vue +253 -0
- package/packages/ui/src/kpi/FKpiGroup.vue +161 -0
- package/packages/ui/src/kpi/index.ts +20 -0
- package/packages/ui/src/kpi/kpi.theme.ts +168 -0
- package/packages/ui/src/kpi/kpiDelta.ts +82 -0
- package/packages/ui/src/kpi/kpiFormat.ts +72 -0
- package/packages/ui/src/kpi/kpiGroupState.ts +63 -0
- package/packages/ui/src/logo/FLogo.vue +52 -0
- package/packages/ui/src/logo/FSubLogo.vue +214 -0
- package/packages/ui/src/logo/index.ts +8 -0
- package/packages/ui/src/map/FMap.vue +355 -0
- package/packages/ui/src/map/FMapCompass.vue +154 -0
- package/packages/ui/src/map/FMapCoordinates.vue +134 -0
- package/packages/ui/src/map/FMapDrawTools.vue +116 -0
- package/packages/ui/src/map/FMapFullscreen.vue +92 -0
- package/packages/ui/src/map/FMapGeolocate.vue +208 -0
- package/packages/ui/src/map/FMapLayers.vue +75 -0
- package/packages/ui/src/map/FMapLegend.vue +45 -0
- package/packages/ui/src/map/FMapPopup.vue +129 -0
- package/packages/ui/src/map/FMapRamp.vue +69 -0
- package/packages/ui/src/map/FMapRegion.vue +77 -0
- package/packages/ui/src/map/FMapScale.vue +107 -0
- package/packages/ui/src/map/FMapSearch.vue +362 -0
- package/packages/ui/src/map/FMapTilt.vue +87 -0
- package/packages/ui/src/map/FMapTools.vue +61 -0
- package/packages/ui/src/map/FMapZoom.vue +81 -0
- package/packages/ui/src/map/FMarker.vue +218 -0
- package/packages/ui/src/map/FTrackScrubber.vue +94 -0
- package/packages/ui/src/map/FVehicleLegend.vue +72 -0
- package/packages/ui/src/map/FVehicleMark.vue +166 -0
- package/packages/ui/src/map/bin.ts +196 -0
- package/packages/ui/src/map/coordinates.ts +83 -0
- package/packages/ui/src/map/density.ts +401 -0
- package/packages/ui/src/map/draw.ts +356 -0
- package/packages/ui/src/map/ease.ts +67 -0
- package/packages/ui/src/map/fullscreen.ts +59 -0
- package/packages/ui/src/map/heat.ts +160 -0
- package/packages/ui/src/map/index.ts +351 -0
- package/packages/ui/src/map/liveMarkers.ts +60 -0
- package/packages/ui/src/map/map.css +116 -0
- package/packages/ui/src/map/mapColor.ts +31 -0
- package/packages/ui/src/map/mapContext.ts +12 -0
- package/packages/ui/src/map/mapLayers.ts +55 -0
- package/packages/ui/src/map/mapLegend.ts +70 -0
- package/packages/ui/src/map/mapSearch.theme.ts +79 -0
- package/packages/ui/src/map/mapSearch.ts +279 -0
- package/packages/ui/src/map/mapUrl.ts +117 -0
- package/packages/ui/src/map/markerAsset.ts +3 -0
- package/packages/ui/src/map/padding.ts +39 -0
- package/packages/ui/src/map/place.ts +192 -0
- package/packages/ui/src/map/ramp.ts +95 -0
- package/packages/ui/src/map/regionSelect.ts +163 -0
- package/packages/ui/src/map/route.ts +167 -0
- package/packages/ui/src/map/scale.ts +329 -0
- package/packages/ui/src/map/scaleBar.ts +67 -0
- package/packages/ui/src/map/selectionModel.ts +50 -0
- package/packages/ui/src/map/sources/coordinates.ts +58 -0
- package/packages/ui/src/map/sources/mapboxPlaces.ts +71 -0
- package/packages/ui/src/map/style.ts +14 -0
- package/packages/ui/src/map/track.ts +279 -0
- package/packages/ui/src/map/useFeatureSelect.ts +230 -0
- package/packages/ui/src/map/useLiveMarkers.ts +84 -0
- package/packages/ui/src/map/useMap.ts +150 -0
- package/packages/ui/src/map/useMapDraw.ts +776 -0
- package/packages/ui/src/map/useMapOverlay.ts +421 -0
- package/packages/ui/src/map/useMapTableSelection.ts +101 -0
- package/packages/ui/src/map/useMapUrlState.ts +155 -0
- package/packages/ui/src/map/useMarkerSource.ts +163 -0
- package/packages/ui/src/map/useRegionSelect.ts +309 -0
- package/packages/ui/src/map/useTokenMode.ts +61 -0
- package/packages/ui/src/map/useTrackPlayback.ts +131 -0
- package/packages/ui/src/map/useVehicleFilter.ts +51 -0
- package/packages/ui/src/map/useVisibleFeatures.ts +124 -0
- package/packages/ui/src/map/vehicle.ts +807 -0
- package/packages/ui/src/map/vehicleFilter.ts +284 -0
- package/packages/ui/src/map/vehicleLegend.ts +155 -0
- package/packages/ui/src/map/visibleFeatures.ts +192 -0
- package/packages/ui/src/map/zone.ts +291 -0
- package/packages/ui/src/shell/FAppNavbar.vue +68 -0
- package/packages/ui/src/shell/FAppShell.vue +163 -0
- package/packages/ui/src/shell/FAppSidebar.vue +215 -0
- package/packages/ui/src/shell/FPageToolbar.vue +126 -0
- package/packages/ui/src/shell/FScrollShadow.vue +43 -0
- package/packages/ui/src/shell/FSidePanel.vue +258 -0
- package/packages/ui/src/shell/FToolbarActions.vue +32 -0
- package/packages/ui/src/shell/index.ts +33 -0
- package/packages/ui/src/shell/nav.ts +37 -0
- package/packages/ui/src/shell/pageToolbar.ts +69 -0
- package/packages/ui/src/shell/shell.ts +74 -0
- package/packages/ui/src/shell/sidePanel.ts +115 -0
- package/packages/ui/src/themes/accordion.ts +36 -0
- package/packages/ui/src/themes/alert.ts +16 -0
- package/packages/ui/src/themes/auth-form.ts +19 -0
- package/packages/ui/src/themes/avatar-group.ts +9 -0
- package/packages/ui/src/themes/avatar.ts +18 -0
- package/packages/ui/src/themes/badge.ts +51 -0
- package/packages/ui/src/themes/banner.ts +21 -0
- package/packages/ui/src/themes/breadcrumb.ts +10 -0
- package/packages/ui/src/themes/button.mechanics.ts +191 -0
- package/packages/ui/src/themes/button.ts +136 -0
- package/packages/ui/src/themes/calendar.ts +29 -0
- package/packages/ui/src/themes/card.ts +67 -0
- package/packages/ui/src/themes/carousel.ts +41 -0
- package/packages/ui/src/themes/checkbox-group.ts +20 -0
- package/packages/ui/src/themes/checkbox.ts +47 -0
- package/packages/ui/src/themes/chip.ts +50 -0
- package/packages/ui/src/themes/collapsible.ts +26 -0
- package/packages/ui/src/themes/color-picker.ts +13 -0
- package/packages/ui/src/themes/command-palette.ts +37 -0
- package/packages/ui/src/themes/container.ts +14 -0
- package/packages/ui/src/themes/context-menu.ts +38 -0
- package/packages/ui/src/themes/dashboard-group.ts +11 -0
- package/packages/ui/src/themes/dashboard-navbar.ts +10 -0
- package/packages/ui/src/themes/dashboard-panel.ts +18 -0
- package/packages/ui/src/themes/dashboard-resize-handle.ts +35 -0
- package/packages/ui/src/themes/dashboard-sidebar-collapse.ts +7 -0
- package/packages/ui/src/themes/dashboard-sidebar-toggle.ts +7 -0
- package/packages/ui/src/themes/dashboard-sidebar.ts +58 -0
- package/packages/ui/src/themes/dashboard-toolbar.ts +15 -0
- package/packages/ui/src/themes/drawer.ts +45 -0
- package/packages/ui/src/themes/dropdown-menu.ts +38 -0
- package/packages/ui/src/themes/empty.ts +43 -0
- package/packages/ui/src/themes/field-group.ts +52 -0
- package/packages/ui/src/themes/file-upload.ts +38 -0
- package/packages/ui/src/themes/footer-columns.ts +13 -0
- package/packages/ui/src/themes/footer.ts +9 -0
- package/packages/ui/src/themes/form-field.ts +25 -0
- package/packages/ui/src/themes/form.ts +22 -0
- package/packages/ui/src/themes/header.ts +12 -0
- package/packages/ui/src/themes/icon.ts +61 -0
- package/packages/ui/src/themes/index.ts +99 -0
- package/packages/ui/src/themes/input-date.ts +73 -0
- package/packages/ui/src/themes/input-menu.ts +66 -0
- package/packages/ui/src/themes/input-number.ts +58 -0
- package/packages/ui/src/themes/input-rating.ts +25 -0
- package/packages/ui/src/themes/input-tags.ts +63 -0
- package/packages/ui/src/themes/input-time.ts +70 -0
- package/packages/ui/src/themes/input.ts +148 -0
- package/packages/ui/src/themes/kbd.ts +27 -0
- package/packages/ui/src/themes/link.ts +27 -0
- package/packages/ui/src/themes/listbox.ts +48 -0
- package/packages/ui/src/themes/main.ts +6 -0
- package/packages/ui/src/themes/marquee.ts +45 -0
- package/packages/ui/src/themes/modal.ts +46 -0
- package/packages/ui/src/themes/navigation-menu.ts +80 -0
- package/packages/ui/src/themes/page-anchors.ts +7 -0
- package/packages/ui/src/themes/page-aside.ts +7 -0
- package/packages/ui/src/themes/page-card.ts +22 -0
- package/packages/ui/src/themes/page-cta.ts +18 -0
- package/packages/ui/src/themes/page-feature.ts +13 -0
- package/packages/ui/src/themes/page-header.ts +16 -0
- package/packages/ui/src/themes/page-hero.ts +15 -0
- package/packages/ui/src/themes/page-links.ts +12 -0
- package/packages/ui/src/themes/page-section.ts +14 -0
- package/packages/ui/src/themes/page.ts +7 -0
- package/packages/ui/src/themes/pagination.ts +17 -0
- package/packages/ui/src/themes/pin-input.ts +73 -0
- package/packages/ui/src/themes/popover.ts +30 -0
- package/packages/ui/src/themes/progress.ts +29 -0
- package/packages/ui/src/themes/prose.ts +45 -0
- package/packages/ui/src/themes/radio-group.ts +39 -0
- package/packages/ui/src/themes/scroll-area.ts +23 -0
- package/packages/ui/src/themes/select-menu.ts +71 -0
- package/packages/ui/src/themes/select.ts +72 -0
- package/packages/ui/src/themes/separator.ts +28 -0
- package/packages/ui/src/themes/sidebar.ts +127 -0
- package/packages/ui/src/themes/skeleton.ts +15 -0
- package/packages/ui/src/themes/slideover.ts +87 -0
- package/packages/ui/src/themes/slider.ts +48 -0
- package/packages/ui/src/themes/stepper.ts +41 -0
- package/packages/ui/src/themes/switch.ts +63 -0
- package/packages/ui/src/themes/table.ts +34 -0
- package/packages/ui/src/themes/tabs.ts +74 -0
- package/packages/ui/src/themes/textarea.ts +77 -0
- package/packages/ui/src/themes/timeline.ts +25 -0
- package/packages/ui/src/themes/toast.ts +29 -0
- package/packages/ui/src/themes/toaster.ts +66 -0
- package/packages/ui/src/themes/tooltip.ts +31 -0
- package/packages/ui/src/themes/tree.ts +41 -0
- package/packages/ui/src/themes/user.ts +28 -0
- package/styles.cdn.gen.css +2047 -0
- package/theme.gen.json +1 -0
|
@@ -0,0 +1,389 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="75.699997mm"
|
|
6
|
+
height="156mm"
|
|
7
|
+
viewBox="0 0 75.699996 156"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
xml:space="preserve"
|
|
11
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
|
14
|
+
id="defs1"><linearGradient
|
|
15
|
+
id="linearGradient93"><stop
|
|
16
|
+
style="stop-color:#f8fafc;stop-opacity:1"
|
|
17
|
+
offset="0"
|
|
18
|
+
id="stop92" /><stop
|
|
19
|
+
style="stop-color:#6b7781;stop-opacity:1;"
|
|
20
|
+
offset="1"
|
|
21
|
+
id="stop93" /></linearGradient><linearGradient
|
|
22
|
+
id="linearGradient68"><stop
|
|
23
|
+
style="stop-color:#2c3840;stop-opacity:1;"
|
|
24
|
+
offset="0"
|
|
25
|
+
id="stop69" /><stop
|
|
26
|
+
style="stop-color:#2c3840;stop-opacity:0;"
|
|
27
|
+
offset="1"
|
|
28
|
+
id="stop70" /></linearGradient><linearGradient
|
|
29
|
+
id="linearGradient25"><stop
|
|
30
|
+
style="stop-color:#b697ff;stop-opacity:1;"
|
|
31
|
+
offset="0"
|
|
32
|
+
id="stop26" /><stop
|
|
33
|
+
style="stop-color:#3600ae;stop-opacity:1;"
|
|
34
|
+
offset="0.56404012"
|
|
35
|
+
id="stop28" /><stop
|
|
36
|
+
style="stop-color:#000000;stop-opacity:0;"
|
|
37
|
+
offset="1"
|
|
38
|
+
id="stop27" /></linearGradient><linearGradient
|
|
39
|
+
id="linearGradient24"><stop
|
|
40
|
+
style="stop-color:#39394e;stop-opacity:1;"
|
|
41
|
+
offset="0"
|
|
42
|
+
id="stop24" /><stop
|
|
43
|
+
style="stop-color:#1e1e21;stop-opacity:1;"
|
|
44
|
+
offset="1"
|
|
45
|
+
id="stop25" /></linearGradient><clipPath
|
|
46
|
+
clipPathUnits="userSpaceOnUse"
|
|
47
|
+
id="clipPath1"><rect
|
|
48
|
+
style="fill:#9320d4;stroke-width:2.90343;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
49
|
+
id="rect2"
|
|
50
|
+
width="207.90259"
|
|
51
|
+
height="430.15308"
|
|
52
|
+
x="66.161987"
|
|
53
|
+
y="-144.36761" /></clipPath><radialGradient
|
|
54
|
+
xlink:href="#linearGradient24"
|
|
55
|
+
id="radialGradient25"
|
|
56
|
+
cx="43.681053"
|
|
57
|
+
cy="7.4308386"
|
|
58
|
+
fx="43.681053"
|
|
59
|
+
fy="7.4308386"
|
|
60
|
+
r="0.92431802"
|
|
61
|
+
gradientUnits="userSpaceOnUse"
|
|
62
|
+
gradientTransform="translate(-13.112137,1.1718216)" /><radialGradient
|
|
63
|
+
xlink:href="#linearGradient25"
|
|
64
|
+
id="radialGradient27"
|
|
65
|
+
cx="48.734295"
|
|
66
|
+
cy="7.8165774"
|
|
67
|
+
fx="48.734295"
|
|
68
|
+
fy="7.8165774"
|
|
69
|
+
r="0.68189663"
|
|
70
|
+
gradientUnits="userSpaceOnUse"
|
|
71
|
+
gradientTransform="matrix(0.99999932,-3.3487284e-7,-2.1771224e-6,1.3555106,-17.562468,-9.8251285)" /><radialGradient
|
|
72
|
+
xlink:href="#linearGradient25"
|
|
73
|
+
id="radialGradient27-6"
|
|
74
|
+
cx="48.734295"
|
|
75
|
+
cy="7.8165774"
|
|
76
|
+
fx="48.734295"
|
|
77
|
+
fy="7.8165774"
|
|
78
|
+
r="0.68189663"
|
|
79
|
+
gradientUnits="userSpaceOnUse"
|
|
80
|
+
gradientTransform="matrix(0.99999932,-3.3487284e-7,-2.1771224e-6,1.3555106,-81.269815,-9.8251275)" /><clipPath
|
|
81
|
+
clipPathUnits="userSpaceOnUse"
|
|
82
|
+
id="clipPath34"><rect
|
|
83
|
+
style="display:inline;fill:#716a7b;fill-opacity:1;stroke:none;stroke-width:21.753;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
|
84
|
+
id="rect35"
|
|
85
|
+
width="71.606865"
|
|
86
|
+
height="150"
|
|
87
|
+
x="0.44656754"
|
|
88
|
+
y="1.4210855e-14"
|
|
89
|
+
ry="12.865973" /></clipPath><clipPath
|
|
90
|
+
clipPathUnits="userSpaceOnUse"
|
|
91
|
+
id="clipPath36"><rect
|
|
92
|
+
style="fill:#050505;fill-opacity:1;stroke:none;stroke-width:37.1245;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:0.465686;paint-order:stroke fill markers"
|
|
93
|
+
id="rect37"
|
|
94
|
+
width="208.40112"
|
|
95
|
+
height="429.8645"
|
|
96
|
+
x="-371.52576"
|
|
97
|
+
y="-240.9048" /></clipPath><clipPath
|
|
98
|
+
clipPathUnits="userSpaceOnUse"
|
|
99
|
+
id="clipPath59"><rect
|
|
100
|
+
style="fill:#26e726;fill-opacity:0.486811;stroke:none;stroke-width:78.341;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:0.465686;paint-order:stroke fill markers"
|
|
101
|
+
id="rect60"
|
|
102
|
+
width="75.455101"
|
|
103
|
+
height="155.49873"
|
|
104
|
+
x="-202.6212"
|
|
105
|
+
y="-26.259895" /></clipPath><linearGradient
|
|
106
|
+
xlink:href="#linearGradient65"
|
|
107
|
+
id="linearGradient50-6"
|
|
108
|
+
x1="2.4391277"
|
|
109
|
+
y1="30.934752"
|
|
110
|
+
x2="2.4391277"
|
|
111
|
+
y2="37.664433"
|
|
112
|
+
gradientUnits="userSpaceOnUse"
|
|
113
|
+
gradientTransform="translate(-9.6689026,-0.11198606)" /><linearGradient
|
|
114
|
+
id="linearGradient65"><stop
|
|
115
|
+
style="stop-color:#f8fafc;stop-opacity:1"
|
|
116
|
+
offset="0"
|
|
117
|
+
id="stop62" /><stop
|
|
118
|
+
style="stop-color:#d7dadc;stop-opacity:1;"
|
|
119
|
+
offset="0.09894031"
|
|
120
|
+
id="stop68" /><stop
|
|
121
|
+
style="stop-color:#46525b;stop-opacity:1"
|
|
122
|
+
offset="0.19788063"
|
|
123
|
+
id="stop63" /><stop
|
|
124
|
+
style="stop-color:#a4b1bd;stop-opacity:1"
|
|
125
|
+
offset="0.29167166"
|
|
126
|
+
id="stop66" /><stop
|
|
127
|
+
style="stop-color:#a4b1bd;stop-opacity:1"
|
|
128
|
+
offset="0.73884344"
|
|
129
|
+
id="stop67" /><stop
|
|
130
|
+
style="stop-color:#2c3840;stop-opacity:1"
|
|
131
|
+
offset="0.91201657"
|
|
132
|
+
id="stop64" /><stop
|
|
133
|
+
style="stop-color:#d5e2ea;stop-opacity:1"
|
|
134
|
+
offset="1"
|
|
135
|
+
id="stop65" /></linearGradient><linearGradient
|
|
136
|
+
xlink:href="#linearGradient68"
|
|
137
|
+
id="linearGradient70"
|
|
138
|
+
x1="-2.9261239"
|
|
139
|
+
y1="33.506413"
|
|
140
|
+
x2="-2.5756409"
|
|
141
|
+
y2="33.506413"
|
|
142
|
+
gradientUnits="userSpaceOnUse" /><linearGradient
|
|
143
|
+
xlink:href="#linearGradient68"
|
|
144
|
+
id="linearGradient70-7"
|
|
145
|
+
x1="-2.9261239"
|
|
146
|
+
y1="33.506413"
|
|
147
|
+
x2="-2.5756409"
|
|
148
|
+
y2="33.506413"
|
|
149
|
+
gradientUnits="userSpaceOnUse"
|
|
150
|
+
gradientTransform="matrix(-1,0,0,1,-8.9281213,11.900178)" /><linearGradient
|
|
151
|
+
xlink:href="#linearGradient65"
|
|
152
|
+
id="linearGradient71"
|
|
153
|
+
gradientUnits="userSpaceOnUse"
|
|
154
|
+
gradientTransform="matrix(-1,0,0,1,0.74078128,11.788192)"
|
|
155
|
+
x1="5.6058593"
|
|
156
|
+
y1="30.93475"
|
|
157
|
+
x2="5.6058593"
|
|
158
|
+
y2="41.850536" /><linearGradient
|
|
159
|
+
xlink:href="#linearGradient65"
|
|
160
|
+
id="linearGradient72"
|
|
161
|
+
gradientUnits="userSpaceOnUse"
|
|
162
|
+
gradientTransform="matrix(-1,0,0,1,83.553802,15.571385)"
|
|
163
|
+
x1="5.6058593"
|
|
164
|
+
y1="30.93475"
|
|
165
|
+
x2="5.6058593"
|
|
166
|
+
y2="48.316792" /><linearGradient
|
|
167
|
+
xlink:href="#linearGradient68"
|
|
168
|
+
id="linearGradient73"
|
|
169
|
+
gradientUnits="userSpaceOnUse"
|
|
170
|
+
gradientTransform="matrix(-1,0,0,1,73.8849,15.683371)"
|
|
171
|
+
x1="-2.9261239"
|
|
172
|
+
y1="33.506413"
|
|
173
|
+
x2="-2.5756409"
|
|
174
|
+
y2="33.506413" /><linearGradient
|
|
175
|
+
xlink:href="#linearGradient65"
|
|
176
|
+
id="linearGradient74"
|
|
177
|
+
gradientUnits="userSpaceOnUse"
|
|
178
|
+
gradientTransform="matrix(-1,0,0,1,0.74078128,11.788192)"
|
|
179
|
+
x1="5.6058593"
|
|
180
|
+
y1="30.93475"
|
|
181
|
+
x2="5.6058593"
|
|
182
|
+
y2="41.850536" /><linearGradient
|
|
183
|
+
xlink:href="#linearGradient68"
|
|
184
|
+
id="linearGradient75"
|
|
185
|
+
gradientUnits="userSpaceOnUse"
|
|
186
|
+
gradientTransform="matrix(-1,0,0,1,-8.9281213,11.900178)"
|
|
187
|
+
x1="-2.9261239"
|
|
188
|
+
y1="33.506413"
|
|
189
|
+
x2="-2.5756409"
|
|
190
|
+
y2="33.506413" /><radialGradient
|
|
191
|
+
xlink:href="#linearGradient93"
|
|
192
|
+
id="radialGradient90"
|
|
193
|
+
cx="1.6102376"
|
|
194
|
+
cy="77.999886"
|
|
195
|
+
fx="1.6102376"
|
|
196
|
+
fy="77.999886"
|
|
197
|
+
r="2.8378112"
|
|
198
|
+
gradientTransform="matrix(1,0,0,55.041634,0,-4215.2414)"
|
|
199
|
+
gradientUnits="userSpaceOnUse" /><radialGradient
|
|
200
|
+
xlink:href="#linearGradient93"
|
|
201
|
+
id="radialGradient91"
|
|
202
|
+
cx="37.849888"
|
|
203
|
+
cy="-24.792839"
|
|
204
|
+
fx="37.849888"
|
|
205
|
+
fy="-24.792839"
|
|
206
|
+
r="34.86454"
|
|
207
|
+
gradientTransform="matrix(-2.3552705,0,0,-0.1427067,126.99661,-2.5386822)"
|
|
208
|
+
gradientUnits="userSpaceOnUse" /><radialGradient
|
|
209
|
+
xlink:href="#linearGradient93"
|
|
210
|
+
id="radialGradient91-5"
|
|
211
|
+
cx="37.849888"
|
|
212
|
+
cy="-37.308289"
|
|
213
|
+
fx="37.849888"
|
|
214
|
+
fy="-37.308289"
|
|
215
|
+
r="34.86454"
|
|
216
|
+
gradientTransform="matrix(2.3552705,0,0,0.05020877,-51.296621,156.24539)"
|
|
217
|
+
gradientUnits="userSpaceOnUse" /><radialGradient
|
|
218
|
+
xlink:href="#linearGradient93"
|
|
219
|
+
id="radialGradient90-5"
|
|
220
|
+
cx="1.6102376"
|
|
221
|
+
cy="77.999886"
|
|
222
|
+
fx="1.6102376"
|
|
223
|
+
fy="77.999886"
|
|
224
|
+
r="2.8378112"
|
|
225
|
+
gradientTransform="matrix(-1,0,0,-55.041634,75.699993,4371.2414)"
|
|
226
|
+
gradientUnits="userSpaceOnUse" /><linearGradient
|
|
227
|
+
xlink:href="#linearGradient31"
|
|
228
|
+
id="linearGradient32"
|
|
229
|
+
x1="36.25"
|
|
230
|
+
y1="0.97257996"
|
|
231
|
+
x2="36.25"
|
|
232
|
+
y2="1.5374033"
|
|
233
|
+
gradientUnits="userSpaceOnUse"
|
|
234
|
+
gradientTransform="translate(1.5999997,0.1017698)" /><linearGradient
|
|
235
|
+
id="linearGradient31"><stop
|
|
236
|
+
style="stop-color:#ffffff;stop-opacity:0.02;"
|
|
237
|
+
offset="0"
|
|
238
|
+
id="stop31" /><stop
|
|
239
|
+
style="stop-color:#ffffff;stop-opacity:0.1;"
|
|
240
|
+
offset="1"
|
|
241
|
+
id="stop32" /></linearGradient></defs><g
|
|
242
|
+
id="layer2"
|
|
243
|
+
style="display:inline"><g
|
|
244
|
+
id="g70"
|
|
245
|
+
transform="matrix(-1,0,0,1,-2.3151011,-0.07015825)"><rect
|
|
246
|
+
style="fill:#2c3840;fill-opacity:1;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
247
|
+
id="rect6"
|
|
248
|
+
width="3.5143571"
|
|
249
|
+
height="6.9724159"
|
|
250
|
+
x="-5.8294582"
|
|
251
|
+
y="30.701397"
|
|
252
|
+
ry="0.26008925" /><rect
|
|
253
|
+
style="display:inline;fill:url(#linearGradient50-6);fill-opacity:1;stroke-width:0.190988;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
254
|
+
id="rect6-2-1-9"
|
|
255
|
+
width="3.1494188"
|
|
256
|
+
height="6.7296791"
|
|
257
|
+
x="-5.5262756"
|
|
258
|
+
y="30.822765"
|
|
259
|
+
ry="0.16982524" /><rect
|
|
260
|
+
style="display:inline;fill:url(#linearGradient70);fill-opacity:1;stroke-width:0.190988;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
261
|
+
id="rect6-2-1-9-4"
|
|
262
|
+
width="3.4417398"
|
|
263
|
+
height="6.7296791"
|
|
264
|
+
x="-5.8186016"
|
|
265
|
+
y="30.822765"
|
|
266
|
+
ry="0.16982524" /></g><g
|
|
267
|
+
id="g74"
|
|
268
|
+
transform="translate(6.6130202,0.02077498)"><path
|
|
269
|
+
id="rect6-4"
|
|
270
|
+
style="fill:#2c3840;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
271
|
+
d="m -3.3587523,42.601574 h -2.9941786 c -0.1440894,0 -0.2600893,0.116 -0.2600893,0.260089 V 53.50001 c 0,0.144089 0.1159999,0.260089 0.2600893,0.260089 h 2.9941786 c 0.1440894,0 0.2600892,-0.116 0.2600892,-0.260089 V 42.861663 c 0,-0.144089 -0.1159998,-0.260089 -0.2600892,-0.260089 z" /><path
|
|
272
|
+
id="rect6-2-1-9-2"
|
|
273
|
+
style="display:inline;fill:url(#linearGradient71);stroke-width:0.190988;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
274
|
+
d="m -3.5716709,42.722942 h -2.8097684 c -0.094083,0 -0.1698252,0.07574 -0.1698252,0.169826 v 10.576137 c 0,0.09408 0.075742,0.169825 0.1698252,0.169825 h 2.8097684 c 0.094083,0 0.1698252,-0.07574 0.1698252,-0.169825 V 42.892768 c 0,-0.09408 -0.075742,-0.169826 -0.1698252,-0.169826 z" /><path
|
|
275
|
+
id="rect6-2-1-9-4-9"
|
|
276
|
+
style="display:inline;fill:url(#linearGradient70-7);stroke-width:0.190988;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
277
|
+
d="m -3.2793449,42.722942 h -3.1020893 c -0.094083,0 -0.1698253,0.07574 -0.1698253,0.169826 v 10.576137 c 0,0.09408 0.075742,0.169825 0.1698253,0.169825 h 3.1020893 c 0.094083,0 0.1698252,-0.07574 0.1698252,-0.169825 V 42.892768 c 0,-0.09408 -0.075742,-0.169826 -0.1698252,-0.169826 z" /></g><g
|
|
278
|
+
id="g74-2"
|
|
279
|
+
transform="translate(6.6130202,14.16233)"
|
|
280
|
+
style="display:inline"><path
|
|
281
|
+
id="rect6-4-5"
|
|
282
|
+
style="fill:#2c3840;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
283
|
+
d="m -3.3587523,42.601574 h -2.9941786 c -0.1440894,0 -0.2600893,0.116 -0.2600893,0.260089 V 53.50001 c 0,0.144089 0.1159999,0.260089 0.2600893,0.260089 h 2.9941786 c 0.1440894,0 0.2600892,-0.116 0.2600892,-0.260089 V 42.861663 c 0,-0.144089 -0.1159998,-0.260089 -0.2600892,-0.260089 z" /><path
|
|
284
|
+
id="rect6-2-1-9-2-3"
|
|
285
|
+
style="display:inline;fill:url(#linearGradient74);stroke-width:0.190988;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
286
|
+
d="m -3.5716709,42.722942 h -2.8097684 c -0.094083,0 -0.1698252,0.07574 -0.1698252,0.169826 v 10.576137 c 0,0.09408 0.075742,0.169825 0.1698252,0.169825 h 2.8097684 c 0.094083,0 0.1698252,-0.07574 0.1698252,-0.169825 V 42.892768 c 0,-0.09408 -0.075742,-0.169826 -0.1698252,-0.169826 z" /><path
|
|
287
|
+
id="rect6-2-1-9-4-9-5"
|
|
288
|
+
style="display:inline;fill:url(#linearGradient75);stroke-width:0.190988;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
289
|
+
d="m -3.2793449,42.722942 h -3.1020893 c -0.094083,0 -0.1698253,0.07574 -0.1698253,0.169826 v 10.576137 c 0,0.09408 0.075742,0.169825 0.1698253,0.169825 h 3.1020893 c 0.094083,0 0.1698252,-0.07574 0.1698252,-0.169825 V 42.892768 c 0,-0.09408 -0.075742,-0.169826 -0.1698252,-0.169826 z" /></g><g
|
|
290
|
+
id="g73"
|
|
291
|
+
transform="matrix(-1,0,0,1,151.9,0)"><path
|
|
292
|
+
id="rect6-4-2"
|
|
293
|
+
style="display:inline;fill:#2c3840;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
294
|
+
d="M 79.454269,46.384767 H 76.46009 c -0.144089,0 -0.260089,0.116 -0.260089,0.260089 v 17.104599 c 0,0.144089 0.116,0.260089 0.260089,0.260089 h 2.994179 c 0.144089,0 0.260089,-0.116 0.260089,-0.260089 V 46.644856 c 0,-0.144089 -0.116,-0.260089 -0.260089,-0.260089 z" /><path
|
|
295
|
+
id="rect6-2-1-9-2-0"
|
|
296
|
+
style="display:inline;fill:url(#linearGradient72);stroke-width:0.190988;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
297
|
+
d="m 79.24135,46.506135 h -2.809768 c -0.09408,0 -0.169826,0.07574 -0.169826,0.169826 V 63.71835 c 0,0.09408 0.07574,0.169825 0.169826,0.169825 h 2.809768 c 0.09408,0 0.169825,-0.07574 0.169825,-0.169825 V 46.675961 c 0,-0.09408 -0.07574,-0.169826 -0.169825,-0.169826 z" /><path
|
|
298
|
+
id="rect6-2-1-9-4-9-3"
|
|
299
|
+
style="display:inline;fill:url(#linearGradient73);stroke-width:0.190988;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
300
|
+
d="m 79.533676,46.506135 h -3.102089 c -0.09408,0 -0.169826,0.07574 -0.169826,0.169826 V 63.71835 c 0,0.09408 0.07574,0.169825 0.169826,0.169825 h 3.102089 c 0.09408,0 0.169825,-0.07574 0.169825,-0.169825 V 46.675961 c 0,-0.09408 -0.07574,-0.169826 -0.169825,-0.169826 z" /></g></g><g
|
|
301
|
+
id="layer9"
|
|
302
|
+
style="display:inline;fill:#6d240c;fill-opacity:1"><rect
|
|
303
|
+
style="display:inline;fill:#2c3840;fill-opacity:1;stroke:none;stroke-width:21.753;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
|
304
|
+
id="rect32"
|
|
305
|
+
width="74.506744"
|
|
306
|
+
height="156"
|
|
307
|
+
x="0.59662628"
|
|
308
|
+
y="-7.1054274e-15"
|
|
309
|
+
ry="13.193378" /></g><g
|
|
310
|
+
id="layer7"
|
|
311
|
+
style="display:inline"><path
|
|
312
|
+
id="rect75"
|
|
313
|
+
style="opacity:1;fill:url(#radialGradient91);stroke:none;stroke-width:77.0978;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:0.465686;paint-order:stroke fill markers"
|
|
314
|
+
d="m 13.33407,0.44700114 c -4.3646586,0 -8.1736983,2.26179046 -10.3487225,5.67562256 C 5.2084968,3.020544 8.8356828,0.9994222 12.959932,0.9994222 H 37.849886 62.73984 c 4.124249,0 7.751435,2.0211218 9.974585,5.1232015 C 70.5394,2.7087916 66.730361,0.44700114 62.365702,0.44700114 H 25.116654 Z" /><path
|
|
315
|
+
id="rect75-7"
|
|
316
|
+
style="display:inline;fill:url(#radialGradient90);stroke:none;stroke-width:77.0978;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:0.465686;paint-order:stroke fill markers"
|
|
317
|
+
d="M 6.7334391,3.0964518 C 3.319607,5.2714765 1.0578166,9.0805151 1.0578166,13.445174 v 24.793319 39.761399 39.761398 24.79332 c 0,4.36466 2.2617904,8.1737 5.6756225,10.34872 -3.1020797,-2.22315 -5.1232015,-5.85034 -5.1232015,-9.97459 V 118.13542 77.999887 37.864355 13.071037 c 0,-4.1242493 2.0211218,-7.7514355 5.1232015,-9.9745852 z" /><path
|
|
318
|
+
id="rect75-8"
|
|
319
|
+
style="display:inline;fill:url(#radialGradient91-5);stroke:none;stroke-width:77.0978;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:0.465686;paint-order:stroke fill markers"
|
|
320
|
+
d="m 62.365923,155.553 c 4.36466,0 8.1737,-2.26179 10.34872,-5.67562 -2.22315,3.10208 -5.85033,5.1232 -9.97458,5.1232 h -24.88995 -24.88996 c -4.1242502,0 -7.7514342,-2.02112 -9.9745842,-5.1232 2.17502,3.41383 5.984064,5.67562 10.3487242,5.67562 h 37.24905 z" /><path
|
|
321
|
+
id="rect75-7-2"
|
|
322
|
+
style="display:inline;fill:url(#radialGradient90-5);stroke:none;stroke-width:77.0978;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:0.465686;paint-order:stroke fill markers"
|
|
323
|
+
d="m 68.966553,152.90355 c 3.41383,-2.17503 5.67562,-5.98406 5.67562,-10.34872 V 117.76151 78.000112 38.238714 13.445394 c 0,-4.3646599 -2.26179,-8.1736999 -5.67562,-10.3487203 3.10208,2.2231504 5.1232,5.8503404 5.1232,9.9745903 v 24.79332 40.135533 40.135533 24.79331 c 0,4.12425 -2.02112,7.75144 -5.1232,9.97459 z" /></g><g
|
|
324
|
+
id="layer8"
|
|
325
|
+
style="display:inline"><rect
|
|
326
|
+
style="display:inline;fill:#919ba4;fill-opacity:0.811275;stroke:none;stroke-width:30.981;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:0.465686;paint-order:stroke fill markers"
|
|
327
|
+
id="rect94"
|
|
328
|
+
width="74.506744"
|
|
329
|
+
height="0.94257814"
|
|
330
|
+
x="0.59662628"
|
|
331
|
+
y="15.834392" /><rect
|
|
332
|
+
style="display:inline;fill:#919ba4;fill-opacity:0.811275;stroke:none;stroke-width:30.981;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:0.465686;paint-order:stroke fill markers"
|
|
333
|
+
id="rect94-2"
|
|
334
|
+
width="74.506744"
|
|
335
|
+
height="0.94257814"
|
|
336
|
+
x="0.59662628"
|
|
337
|
+
y="139.22304" /></g><g
|
|
338
|
+
id="layer6"
|
|
339
|
+
style="display:inline"><path
|
|
340
|
+
id="rect32-9"
|
|
341
|
+
style="display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:21.753;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
|
342
|
+
d="m 13.789192,1.0743498 c -6.7321703,0 -12.1170833,5.386982 -12.1170833,12.1191572 V 142.80678 c 0,6.73218 5.384913,12.11915 12.1170833,12.11915 h 48.1211 c 6.73217,0 12.1176,-5.38697 12.1176,-12.11915 V 13.193507 c 0,-6.7321752 -5.38543,-12.1191572 -12.1176,-12.1191572 z" /><path
|
|
343
|
+
id="path31"
|
|
344
|
+
style="display:inline;fill:url(#linearGradient32);stroke:none;stroke-width:1.784;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
|
345
|
+
d="m 30.668266,1.0743498 c 0.09826,0 0.286648,0.564824 0.400492,0.564824 h 13.56248 c 0.113844,0 0.302237,-0.564824 0.400492,-0.564824 z" /></g><g
|
|
346
|
+
id="layer14"
|
|
347
|
+
style="display:inline"><path
|
|
348
|
+
id="rect32-5"
|
|
349
|
+
style="display:inline;fill:#333333;fill-opacity:1;stroke:none;stroke-width:21.753;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:0.465686;paint-order:stroke fill markers"
|
|
350
|
+
d="m 13.789192,2.7502168 c -5.8331903,0 -10.4432803,4.610091 -10.4432803,10.4432902 V 142.80678 c 0,5.8332 4.61009,10.44329 10.4432803,10.44329 h 48.1211 c 5.8332,0 10.44381,-4.61009 10.44381,-10.44329 V 13.193507 c 0,-5.8331992 -4.61061,-10.4432902 -10.44381,-10.4432902 z m 16.62948,3.224609 h 14.86214 c 1.66928,0 3.01325,1.343979 3.01325,3.013253 0,1.6692752 -1.34397,3.0132532 -3.01325,3.0132532 h -14.86214 c -1.66927,0 -3.01274,-1.343978 -3.01274,-3.0132532 0,-1.669274 1.34347,-3.013253 3.01274,-3.013253 z" /></g><g
|
|
351
|
+
id="layer5"
|
|
352
|
+
style="display:inline"><g
|
|
353
|
+
id="g60"
|
|
354
|
+
transform="translate(-0.14998026)"><path
|
|
355
|
+
id="path21"
|
|
356
|
+
style="fill:#050505;fill-opacity:1;stroke:none;stroke-width:0.184059;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:stroke fill markers"
|
|
357
|
+
d="M 30.568912,6.2154414 A 2.7730749,2.7730756 0 0 1 33.34187,8.9883983 2.7730749,2.7730756 0 0 1 30.568912,11.761356 2.7730749,2.7730756 0 0 1 27.795955,8.9883983 2.7730749,2.7730756 0 0 1 30.568912,6.2154414 Z m 0,1.0407633 a 1.7323073,1.7323078 0 0 0 -1.732194,1.7321936 1.7323073,1.7323078 0 0 0 1.732194,1.7321947 1.7323073,1.7323078 0 0 0 1.732194,-1.7321947 1.7323073,1.7323078 0 0 0 -1.732194,-1.7321936 z" /><path
|
|
358
|
+
id="path21-0"
|
|
359
|
+
style="fill:#050505;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
|
360
|
+
d="m 45.431054,6.2154414 a 2.7730749,2.7730756 0 0 1 2.772958,2.7729569 2.7730749,2.7730756 0 0 1 -2.772958,2.7729577 H 38.138476 A 2.7730749,2.7730756 0 0 1 35.365519,8.9883983 2.7730749,2.7730756 0 0 1 38.138476,6.2154414 Z m 5.17e-4,0.8919352 h -7.293095 c -1.049389,4.46e-5 -1.880461,0.8316326 -1.880505,1.8810217 4.4e-5,1.0493897 0.831116,1.8804607 1.880505,1.8805057 h 7.293095 C 46.48096,10.86886 47.312548,10.037788 47.312593,8.9883983 47.312548,7.939009 46.48096,7.1074208 45.431571,7.1073766 Z" /><circle
|
|
361
|
+
style="fill:#050505;fill-opacity:1;stroke:none;stroke-width:0.241269;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:stroke fill markers"
|
|
362
|
+
id="path22"
|
|
363
|
+
cx="-30.568914"
|
|
364
|
+
cy="8.9883986"
|
|
365
|
+
r="1.5452632"
|
|
366
|
+
transform="scale(-1,1)" /><circle
|
|
367
|
+
style="fill:url(#radialGradient25);fill-opacity:1;stroke:none;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:stroke fill markers"
|
|
368
|
+
id="path23"
|
|
369
|
+
cx="30.568914"
|
|
370
|
+
cy="8.9883986"
|
|
371
|
+
r="0.92431802" /><circle
|
|
372
|
+
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:stroke fill markers"
|
|
373
|
+
id="path24-4"
|
|
374
|
+
cx="31.853672"
|
|
375
|
+
cy="0.77030873"
|
|
376
|
+
r="0.68189663"
|
|
377
|
+
transform="rotate(15)" /><circle
|
|
378
|
+
style="fill:url(#radialGradient27);fill-opacity:0.522059;stroke:none;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:stroke fill markers"
|
|
379
|
+
id="path24"
|
|
380
|
+
cx="31.853672"
|
|
381
|
+
cy="0.77030873"
|
|
382
|
+
r="0.68189663"
|
|
383
|
+
transform="rotate(15)" /><circle
|
|
384
|
+
style="fill:url(#radialGradient27-6);fill-opacity:0.522059;stroke:none;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:stroke fill markers"
|
|
385
|
+
id="path24-42"
|
|
386
|
+
cx="-31.853672"
|
|
387
|
+
cy="0.77030897"
|
|
388
|
+
r="0.68189663"
|
|
389
|
+
transform="matrix(-0.96592583,-0.25881905,-0.25881905,0.96592583,0,0)" /></g></g></svg>
|