@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,32 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
<svg width="767" height="1616" version="1.1" viewBox="0 0 767 1616" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
|
4
|
+
<metadata>
|
|
5
|
+
<rdf:RDF>
|
|
6
|
+
<cc:Work rdf:about="">
|
|
7
|
+
<dc:format>image/svg+xml</dc:format>
|
|
8
|
+
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
|
9
|
+
<dc:title/>
|
|
10
|
+
</cc:Work>
|
|
11
|
+
</rdf:RDF>
|
|
12
|
+
</metadata>
|
|
13
|
+
<g transform="translate(0 493.48)">
|
|
14
|
+
<g>
|
|
15
|
+
<rect x="727" y="-52.48" width="40" height="115" rx="10" ry="10" fill="#393d46"/>
|
|
16
|
+
<rect x="727" y="137.52" width="40" height="205" rx="10" fill="#393d46"/>
|
|
17
|
+
<rect x="5" y="-487.98" width="752" height="1605.5" rx="120" ry="120" fill="#111" stroke="#a9abab" stroke-width="10"/>
|
|
18
|
+
</g>
|
|
19
|
+
<g fill="none" stroke="#393d46" stroke-width="10">
|
|
20
|
+
<path d="m1.5442e-8 -242.48h10"/>
|
|
21
|
+
<path d="m752-242.48h10"/>
|
|
22
|
+
<path d="m377-487.48h10"/>
|
|
23
|
+
<path d="m1.5442e-8 965.02h10"/>
|
|
24
|
+
<path d="m752 965.02h10"/>
|
|
25
|
+
<path d="m462 1117.5h10"/>
|
|
26
|
+
</g>
|
|
27
|
+
<rect x="27.5" y="-465.48" width="707" height="1560.5" rx="102.5" ry="102.5" fill="#ddd"/>
|
|
28
|
+
<circle cx="381" cy="-409.98" r="22.5" fill="#111"/>
|
|
29
|
+
<circle cx="381" cy="-409.98" r="12.5" fill="#84f" fill-opacity=".13333"/>
|
|
30
|
+
<circle cx="381" cy="-409.98" r="7.5" fill="#04f" fill-opacity=".26667"/>
|
|
31
|
+
</g>
|
|
32
|
+
</svg>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
<svg width="723" height="1525" version="1.1" viewBox="0 0 723 1525" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
|
4
|
+
<metadata>
|
|
5
|
+
<rdf:RDF>
|
|
6
|
+
<cc:Work rdf:about="">
|
|
7
|
+
<dc:format>image/svg+xml</dc:format>
|
|
8
|
+
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
|
9
|
+
<dc:title/>
|
|
10
|
+
</cc:Work>
|
|
11
|
+
</rdf:RDF>
|
|
12
|
+
</metadata>
|
|
13
|
+
<g transform="translate(0 402.48)">
|
|
14
|
+
<g>
|
|
15
|
+
<rect x="682.5" y="22.52" width="40" height="130" rx="10" ry="10" fill="#a9a191"/>
|
|
16
|
+
<rect x="682.5" y="212.52" width="40" height="215" rx="10" ry="17.2" fill="#a9a191"/>
|
|
17
|
+
<rect x="5" y="-397.48" width="707.5" height="1515" rx="120" ry="120" fill="#111" stroke="#dbd3c5" stroke-width="10"/>
|
|
18
|
+
</g>
|
|
19
|
+
<g fill="none" stroke="#a9a191" stroke-width="10">
|
|
20
|
+
<path d="m0-147.48h10"/>
|
|
21
|
+
<path d="m707.5-147.48h10"/>
|
|
22
|
+
<path d="m352.5-397.48h10"/>
|
|
23
|
+
<path d="m0 965.02h10"/>
|
|
24
|
+
<path d="m707.5 965.02h10"/>
|
|
25
|
+
<path d="m437.5 1117.5h10"/>
|
|
26
|
+
</g>
|
|
27
|
+
<rect x="31.25" y="-372.48" width="655" height="1465" rx="92.5" ry="92.5" fill="#ddd"/>
|
|
28
|
+
<circle cx="358.75" cy="-317.69" r="22.5" fill="#111"/>
|
|
29
|
+
<circle cx="358.75" cy="-317.69" r="12.5" fill="#84f" fill-opacity=".13333"/>
|
|
30
|
+
<circle cx="358.75" cy="-317.69" r="7.5" fill="#04f" fill-opacity=".26667"/>
|
|
31
|
+
</g>
|
|
32
|
+
</svg>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
<svg width="723" height="1525" version="1.1" viewBox="0 0 723 1525" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
|
4
|
+
<metadata>
|
|
5
|
+
<rdf:RDF>
|
|
6
|
+
<cc:Work rdf:about="">
|
|
7
|
+
<dc:format>image/svg+xml</dc:format>
|
|
8
|
+
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
|
9
|
+
<dc:title/>
|
|
10
|
+
</cc:Work>
|
|
11
|
+
</rdf:RDF>
|
|
12
|
+
</metadata>
|
|
13
|
+
<g transform="translate(0 106.49)">
|
|
14
|
+
<g>
|
|
15
|
+
<rect x="682.5" y="318.51" width="40" height="125" rx="10" ry="10" fill="#393c3c"/>
|
|
16
|
+
<rect x="682.5" y="508.51" width="40" height="215" rx="10" ry="17.2" fill="#393c3c"/>
|
|
17
|
+
<rect x="5" y="-101.49" width="707.5" height="1515" rx="120" ry="120" fill="#111" stroke="#818282" stroke-width="10"/>
|
|
18
|
+
</g>
|
|
19
|
+
<g fill="none" stroke="#393c3c" stroke-width="10">
|
|
20
|
+
<path d="m5.5157e-7 143.51h10"/>
|
|
21
|
+
<path d="m352.5-101.49h10"/>
|
|
22
|
+
<path d="m707.5 143.51h10"/>
|
|
23
|
+
<path d="m5.5157e-7 1261h10"/>
|
|
24
|
+
<path d="m442.5 1413.5h10"/>
|
|
25
|
+
<path d="m707.5 1261h10"/>
|
|
26
|
+
</g>
|
|
27
|
+
<rect x="33.333" y="-75.49" width="655" height="1465" rx="92.5" ry="92.5" fill="#ddd"/>
|
|
28
|
+
<circle cx="360.83" cy="-20.704" r="22.5" fill="#111"/>
|
|
29
|
+
<circle cx="360.83" cy="-20.704" r="12.5" fill="#84f" fill-opacity=".13333"/>
|
|
30
|
+
<circle cx="360.83" cy="-20.704" r="7.5" fill="#04f" fill-opacity=".26667"/>
|
|
31
|
+
</g>
|
|
32
|
+
</svg>
|
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
<svg viewBox="340 0 341 721" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M679.285 229.76C680.229 229.76 680.99 230.137 680.99 230.606V269.913C680.99 270.382 680.229 270.76 679.285 270.76H666.154C665.209 270.76 664.449 270.382 664.449 269.913V230.606C664.449 230.137 665.209 229.76 666.154 229.76H679.285Z" fill="black"/>
|
|
3
|
+
<mask id="mask0_8_1130" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="664" y="229" width="17" height="42">
|
|
4
|
+
<path d="M679.285 229.76C680.229 229.76 680.99 230.137 680.99 230.606V269.913C680.99 270.382 680.229 270.76 679.285 270.76H666.154C665.209 270.76 664.449 270.382 664.449 269.913V230.606C664.449 230.137 665.209 229.76 666.154 229.76H679.285Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_8_1130)">
|
|
7
|
+
<g filter="url(#filter0_f_8_1130)">
|
|
8
|
+
<path d="M678.922 230.515C679.764 230.515 680.442 230.851 680.442 231.269V269.25C680.442 269.668 679.764 270.005 678.922 270.005H678.45V230.515H678.922Z" fill="url(#paint0_linear_8_1130)"/>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
<path d="M679.285 308.76C680.229 308.76 680.99 309.559 680.99 310.555V393.963C680.99 394.958 680.229 395.76 679.285 395.76H666.154C665.209 395.76 664.449 394.958 664.449 393.963V310.555C664.449 309.559 665.209 308.76 666.154 308.76H679.285Z" fill="black"/>
|
|
12
|
+
<mask id="mask1_8_1130" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="664" y="308" width="17" height="88">
|
|
13
|
+
<path d="M679.285 308.76C680.229 308.76 680.99 309.559 680.99 310.555V393.963C680.99 394.958 680.229 395.76 679.285 395.76H666.154C665.209 395.76 664.449 394.958 664.449 393.963V310.555C664.449 309.559 665.209 308.76 666.154 308.76H679.285Z" fill="white"/>
|
|
14
|
+
</mask>
|
|
15
|
+
<g mask="url(#mask1_8_1130)">
|
|
16
|
+
<g filter="url(#filter1_f_8_1130)">
|
|
17
|
+
<path d="M678.922 310.362C679.764 310.362 680.442 311.076 680.442 311.963V392.556C680.442 393.443 679.764 394.157 678.922 394.157H678.45V310.362H678.922Z" fill="url(#paint1_linear_8_1130)"/>
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
<path d="M640.703 0.76001H379.361C358.567 0.76001 341.71 17.6169 341.71 38.4109V683.349C341.71 704.143 358.567 721 379.361 721H640.703C661.497 721 678.354 704.143 678.354 683.349V38.4109C678.354 17.6169 661.497 0.76001 640.703 0.76001Z" fill="url(#paint2_linear_8_1130)"/>
|
|
21
|
+
<path d="M640.703 0.76001H379.361C358.567 0.76001 341.71 17.6169 341.71 38.4109V683.349C341.71 704.143 358.567 721 379.361 721H640.703C661.497 721 678.354 704.143 678.354 683.349V38.4109C678.354 17.6169 661.497 0.76001 640.703 0.76001Z" fill="url(#paint3_linear_8_1130)"/>
|
|
22
|
+
<path d="M643.562 7.95801H376.502C364.27 7.95801 348.354 21.8402 348.354 38.9647V682.795C348.354 699.92 364.27 713.802 376.502 713.802H643.562C655.794 713.802 671.709 699.92 671.709 682.795V38.9647C671.709 21.8402 655.794 7.95801 643.562 7.95801Z" fill="black"/>
|
|
23
|
+
<path d="M380.469 13.3875H639.596C653.722 13.3875 665.173 24.8388 665.173 38.9646V682.795C665.173 696.921 653.722 708.372 639.596 708.372H380.469C366.343 708.372 354.892 696.921 354.892 682.795V38.9646C354.892 24.8388 366.343 13.3875 380.469 13.3875Z" fill="url(#paint4_linear_8_1130)" stroke="black" stroke-width="2"/>
|
|
24
|
+
<path d="M510.032 38.8539C514.925 38.8539 518.891 34.8876 518.891 29.9948C518.891 25.1021 514.925 21.1358 510.032 21.1358C505.14 21.1358 501.173 25.1021 501.173 29.9948C501.173 34.8876 505.14 38.8539 510.032 38.8539Z" fill="black"/>
|
|
25
|
+
<path d="M510.07 35.48C513.031 35.48 515.43 33.0803 515.43 30.12C515.43 27.1598 513.031 24.76 510.07 24.76C507.11 24.76 504.71 27.1598 504.71 30.12C504.71 33.0803 507.11 35.48 510.07 35.48Z" fill="#2B2B2B"/>
|
|
26
|
+
<path d="M510.071 34.4146C512.442 34.4146 514.365 32.4918 514.365 30.12C514.365 27.7481 512.442 25.8253 510.071 25.8253C507.699 25.8253 505.776 27.7481 505.776 30.12C505.776 32.4918 507.699 34.4146 510.071 34.4146Z" fill="#0A0D13"/>
|
|
27
|
+
<path d="M510.07 33.3921C511.877 33.3921 513.342 31.9271 513.342 30.1199C513.342 28.3127 511.877 26.8477 510.07 26.8477C508.263 26.8477 506.798 28.3127 506.798 30.1199C506.798 31.9271 508.263 33.3921 510.07 33.3921Z" fill="#091427"/>
|
|
28
|
+
<g filter="url(#filter2_f_8_1130)">
|
|
29
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M507.818 27.9308C507.429 27.9716 506.878 28.5639 506.837 29.7279C506.796 30.892 507.307 31.5251 507.593 31.5251C507.879 31.5251 509.063 29.8301 507.818 27.9308Z" fill="#235A91" fill-opacity="0.556075"/>
|
|
30
|
+
</g>
|
|
31
|
+
<g filter="url(#filter3_f_8_1130)">
|
|
32
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M510.604 27.5231C509.992 27.7115 509.874 28.7002 509.898 29.2652C509.921 29.8301 510.722 31.3132 511.687 30.9836C512.652 30.6541 512.817 29.4299 512.417 28.606C512.016 27.7821 511.287 27.1936 510.604 27.5231Z" fill="#235A91" fill-opacity="0.556075"/>
|
|
33
|
+
</g>
|
|
34
|
+
<path d="M379.361 1.56001H640.703C661.055 1.56001 677.554 18.0587 677.554 38.4109V683.349C677.554 703.701 661.055 720.2 640.703 720.2H379.361C359.009 720.2 342.51 703.701 342.51 683.349V38.4109C342.51 18.0587 359.009 1.56001 379.361 1.56001Z" stroke="black" stroke-width="1.6"/>
|
|
35
|
+
<rect x="341.749" y="47.1003" width="5.96143" height="4.948" fill="black" fill-opacity="0.25"/>
|
|
36
|
+
<rect x="341.71" y="148.344" width="5.96143" height="4.948" fill="black" fill-opacity="0.25"/>
|
|
37
|
+
<rect x="341.71" y="662.12" width="5.96143" height="4.948" fill="black" fill-opacity="0.25"/>
|
|
38
|
+
<rect x="672.393" y="47.1003" width="5.96143" height="4.948" fill="black" fill-opacity="0.25"/>
|
|
39
|
+
<rect x="672.354" y="148.344" width="5.96143" height="4.948" fill="black" fill-opacity="0.25"/>
|
|
40
|
+
<rect x="672.354" y="662.12" width="5.96143" height="4.948" fill="black" fill-opacity="0.25"/>
|
|
41
|
+
<path d="M347.71 35.82V682.573C347.71 684.733 347.911 686.888 348.309 689.011V689.011C348.907 692.201 349.947 695.293 351.399 698.196L352.21 699.82V699.82C354.199 702.802 356.635 705.46 359.434 707.699L360.21 708.32L362.914 710.04C364.769 711.221 366.779 712.141 368.885 712.772V712.772C370.1 713.137 371.342 713.404 372.599 713.572L374.661 713.847C377.024 714.162 379.407 714.308 381.792 714.283L421.735 713.871L380.633 713.362C378.359 713.334 376.096 713.041 373.89 712.49V712.49C370.791 711.715 367.84 710.439 365.153 708.712L364.471 708.273C362.967 707.306 361.545 706.215 360.222 705.012L359.596 704.443C357.683 702.704 356.034 700.693 354.704 698.476V698.476C354.042 697.373 353.462 696.224 352.968 695.038L352.887 694.845C351.776 692.176 351.064 689.358 350.777 686.481L350.71 685.82V35.82L350.777 35.1586C351.064 32.282 351.776 29.4637 352.887 26.7951L352.968 26.6024C353.462 25.4157 354.042 24.2666 354.704 23.1643C356.034 20.9467 357.683 18.9361 359.596 17.1965L360.222 16.6277C361.545 15.4247 362.967 14.3339 364.471 13.3668L364.947 13.0605C367.77 11.2457 370.871 9.90481 374.127 9.09086C376.177 8.57832 378.275 8.27827 380.386 8.19546L416.764 8.01008L383.871 7.42132C380.102 7.35387 376.335 7.57011 372.599 8.06818V8.06818C371.342 8.2358 370.1 8.50309 368.885 8.86752C366.779 9.49949 364.769 10.4188 362.914 11.5996L360.21 13.32L359.434 13.9415C356.635 16.1804 354.199 18.8379 352.21 21.82C350.22 25.8006 348.794 30.0391 347.974 34.4133L347.71 35.82Z" fill="url(#paint5_linear_8_1130)" fill-opacity="0.75"/>
|
|
42
|
+
<path d="M672.393 35.7515V682.505C672.393 684.665 672.192 686.82 671.794 688.943V688.943C671.196 692.133 670.156 695.224 668.705 698.128L667.893 699.751V699.751C665.904 702.734 663.468 705.391 660.669 707.63L659.893 708.251L657.189 709.972C655.334 711.153 653.324 712.072 651.218 712.704V712.704C650.003 713.068 648.761 713.336 647.504 713.503L645.443 713.778C643.079 714.093 640.696 714.239 638.311 714.215L598.368 713.802L639.47 713.294C641.744 713.266 644.007 712.973 646.213 712.421V712.421C649.312 711.647 652.263 710.37 654.95 708.643L655.632 708.205C657.136 707.238 658.558 706.147 659.881 704.944L660.507 704.375C662.42 702.635 664.069 700.625 665.399 698.407V698.407C666.061 697.305 666.641 696.156 667.135 694.969L667.216 694.776C668.327 692.108 669.039 689.289 669.326 686.413L669.393 685.751V35.7515L669.326 35.0901C669.039 32.2135 668.327 29.3952 667.216 26.7266L667.135 26.5338C666.641 25.3472 666.061 24.1981 665.399 23.0957C664.069 20.8782 662.42 18.8676 660.507 17.128L659.881 16.5592C658.558 15.3561 657.136 14.2654 655.632 13.2983L655.156 12.992C652.333 11.1772 649.232 9.83627 645.976 9.02232C643.926 8.50978 641.828 8.20973 639.717 8.12692L603.339 7.94153L636.233 7.35278C640.001 7.28533 643.768 7.50156 647.504 7.99964V7.99964C648.761 8.16726 650.003 8.43455 651.218 8.79898C653.324 9.43095 655.334 10.3503 657.189 11.5311L659.893 13.2515L660.669 13.8729C663.468 16.1119 665.904 18.7693 667.893 21.7515C669.883 25.732 671.309 29.9706 672.129 34.3448L672.393 35.7515Z" fill="url(#paint6_linear_8_1130)" fill-opacity="0.75"/>
|
|
43
|
+
<rect x="507.549" y="0.76001" width="4.96582" height="4.948" fill="black" fill-opacity="0.25"/>
|
|
44
|
+
<path d="M356.851 690.46L359.243 693.672C360.65 695.562 362.332 697.232 364.232 698.625V698.625C366.18 700.053 368.334 701.175 370.621 701.952L370.951 702.064C372.981 702.753 375.089 703.188 377.226 703.359L383.682 703.876H636.382L642.839 703.359C644.976 703.188 647.084 702.753 649.114 702.064L649.444 701.952C651.73 701.175 653.885 700.053 655.832 698.625C657.733 697.232 659.414 695.562 660.822 693.672L663.213 690.46L661.976 697.801L657.797 705.223L650.687 708.342L618.13 709.901H472.872H394.785L374.765 708.466L365.222 703.876L358.736 697.053L356.851 690.46Z" fill="black"/>
|
|
45
|
+
<path d="M380.182 8.58645L381.781 8.49371H421.191C421.738 8.49371 422.268 8.68444 422.69 9.03307C423.111 9.38169 423.641 9.57242 424.188 9.57242H427.116H592.839H595.767C596.314 9.57242 596.844 9.38169 597.265 9.03307C597.687 8.68444 598.217 8.49371 598.764 8.49371H638.174L639.773 8.58645C642.017 8.71655 644.245 9.0526 646.427 9.59036L649.497 10.4587L651.572 11.3403L654.113 12.6887L655.254 13.5185L651.883 12.3257C649.673 11.6697 647.418 11.1786 645.135 10.8563L644.156 10.718H592.839H427.116H375.799L374.82 10.8563C372.537 11.1786 370.282 11.6697 368.072 12.3257L364.701 13.5185L365.842 12.6887L368.383 11.3403L370.458 10.4587L373.528 9.59036C375.71 9.0526 377.938 8.71655 380.182 8.58645Z" fill="url(#paint7_linear_8_1130)"/>
|
|
46
|
+
<path d="M385.052 718.901C376.364 718.901 368.283 716.416 361.46 712.127V706.44C367.962 710.705 375.747 713.188 384.138 713.188H483.962H536.103H635.927C644.318 713.188 652.102 710.705 658.604 706.44V712.127C651.782 716.416 643.7 718.901 635.013 718.901H536.103H483.962H385.052Z" fill="url(#paint8_linear_8_1130)"/>
|
|
47
|
+
<path d="M312.403 233.86C313.348 233.86 314.108 234.237 314.108 234.706V274.013C314.108 274.482 313.348 274.86 312.403 274.86H299.272C298.328 274.86 297.567 274.482 297.567 274.013V234.706C297.567 234.237 298.328 233.86 299.272 233.86H312.403Z" fill="black"/>
|
|
48
|
+
<mask id="mask2_8_1130" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="297" y="233" width="18" height="42">
|
|
49
|
+
<path d="M312.403 233.86C313.348 233.86 314.108 234.237 314.108 234.705V274.013C314.108 274.482 313.348 274.86 312.403 274.86H299.272C298.328 274.86 297.567 274.482 297.567 274.013V234.705C297.567 234.237 298.328 233.86 299.272 233.86H312.403Z" fill="white"/>
|
|
50
|
+
</mask>
|
|
51
|
+
<g mask="url(#mask2_8_1130)">
|
|
52
|
+
<g filter="url(#filter4_f_8_1130)">
|
|
53
|
+
<path d="M312.041 234.615C312.883 234.615 313.561 234.951 313.561 235.369V273.35C313.561 273.768 312.883 274.105 312.041 274.105H311.568V234.615H312.041Z" fill="url(#paint9_linear_8_1130)"/>
|
|
54
|
+
</g>
|
|
55
|
+
</g>
|
|
56
|
+
<path d="M312.403 312.86C313.348 312.86 314.108 313.659 314.108 314.654V398.063C314.108 399.058 313.348 399.86 312.403 399.86H299.272C298.328 399.86 297.567 399.058 297.567 398.063V314.654C297.567 313.659 298.328 312.86 299.272 312.86H312.403Z" fill="black"/>
|
|
57
|
+
<mask id="mask3_8_1130" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="297" y="312" width="18" height="88">
|
|
58
|
+
<path d="M312.403 312.86C313.348 312.86 314.108 313.659 314.108 314.654V398.063C314.108 399.058 313.348 399.86 312.403 399.86H299.272C298.328 399.86 297.567 399.058 297.567 398.063V314.654C297.567 313.659 298.328 312.86 299.272 312.86H312.403Z" fill="white"/>
|
|
59
|
+
</mask>
|
|
60
|
+
<g mask="url(#mask3_8_1130)">
|
|
61
|
+
<g filter="url(#filter5_f_8_1130)">
|
|
62
|
+
<path d="M312.041 314.461C312.883 314.461 313.561 315.175 313.561 316.062V396.656C313.561 397.543 312.883 398.257 312.041 398.257H311.568V314.461H312.041Z" fill="url(#paint10_linear_8_1130)"/>
|
|
63
|
+
</g>
|
|
64
|
+
</g>
|
|
65
|
+
<path d="M38.0935 55.1572H274.187C294.539 55.1572 311.038 71.656 311.038 92.0082V683.349C311.038 703.701 294.539 720.2 274.187 720.2H38.0935C17.7413 720.2 1.24263 703.701 1.24263 683.349V92.0082C1.24263 71.656 17.7413 55.1572 38.0935 55.1572Z" fill="url(#paint11_linear_8_1130)" stroke="black" stroke-width="1.6"/>
|
|
66
|
+
<path d="M273.08 58.7876H39.2009C21.4648 58.7876 7.08691 73.1655 7.08691 90.9016V682.243C7.08691 699.979 21.4648 714.357 39.2009 714.357H273.08C290.816 714.357 305.194 699.979 305.194 682.243V90.9016C305.194 73.1655 290.816 58.7876 273.08 58.7876Z" fill="black"/>
|
|
67
|
+
<path d="M270.865 67.6467H41.4157C26.126 67.6467 13.7312 80.0414 13.7312 95.3312V677.813C13.7312 693.103 26.126 705.498 41.4157 705.498H270.865C286.155 705.498 298.549 693.103 298.549 677.813V95.3312C298.549 80.0414 286.155 67.6467 270.865 67.6467Z" fill="url(#paint12_linear_8_1130)"/>
|
|
68
|
+
<path d="M156.14 95.3312C161.033 95.3312 164.999 91.3649 164.999 86.4721C164.999 81.5794 161.033 77.6131 156.14 77.6131C151.248 77.6131 147.281 81.5794 147.281 86.4721C147.281 91.3649 151.248 95.3312 156.14 95.3312Z" fill="black"/>
|
|
69
|
+
<path d="M156.14 91.8321C159.101 91.8321 161.5 89.4324 161.5 86.4721C161.5 83.5119 159.101 81.1121 156.14 81.1121C153.18 81.1121 150.78 83.5119 150.78 86.4721C150.78 89.4324 153.18 91.8321 156.14 91.8321Z" fill="#2B2B2B"/>
|
|
70
|
+
<path d="M156.141 90.7667C158.512 90.7667 160.435 88.844 160.435 86.4721C160.435 84.1002 158.512 82.1774 156.141 82.1774C153.769 82.1774 151.846 84.1002 151.846 86.4721C151.846 88.844 153.769 90.7667 156.141 90.7667Z" fill="#0A0D13"/>
|
|
71
|
+
<path d="M156.14 89.7442C157.947 89.7442 159.412 88.2792 159.412 86.472C159.412 84.6648 157.947 83.1998 156.14 83.1998C154.333 83.1998 152.868 84.6648 152.868 86.472C152.868 88.2792 154.333 89.7442 156.14 89.7442Z" fill="#091427"/>
|
|
72
|
+
<g filter="url(#filter6_f_8_1130)">
|
|
73
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M153.887 84.2829C153.499 84.3237 152.948 84.916 152.907 86.0801C152.866 87.2441 153.377 87.8772 153.663 87.8772C153.949 87.8772 155.133 86.1822 153.887 84.2829Z" fill="#235A91" fill-opacity="0.556075"/>
|
|
74
|
+
</g>
|
|
75
|
+
<g filter="url(#filter7_f_8_1130)">
|
|
76
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M156.674 83.8752C156.062 84.0636 155.944 85.0523 155.968 85.6173C155.991 86.1823 156.792 87.6653 157.757 87.3358C158.722 87.0062 158.887 85.7821 158.487 84.9581C158.087 84.1342 157.357 83.5457 156.674 83.8752Z" fill="#235A91" fill-opacity="0.556075"/>
|
|
77
|
+
</g>
|
|
78
|
+
<path d="M5.08691 86.3021V683.055C5.08691 685.215 5.28722 687.37 5.68525 689.493V689.493C6.28344 692.684 7.32335 695.775 8.77497 698.678L9.58691 700.302V700.302C11.575 703.284 14.0114 705.942 16.8101 708.181L17.5869 708.802L20.2904 710.522C22.1459 711.703 24.1553 712.623 26.2619 713.255V713.255C27.4766 713.619 28.7185 713.886 29.9756 714.054L32.037 714.329C34.4006 714.644 36.7837 714.79 39.1681 714.765L79.1119 714.353L38.0094 713.844C35.7355 713.816 33.4726 713.523 31.2664 712.972V712.972C28.1676 712.197 25.2163 710.921 22.5295 709.194L21.8475 708.755C20.343 707.788 18.9218 706.697 17.5984 705.494L16.9727 704.926C15.0592 703.186 13.4109 701.175 12.0803 698.958V698.958C11.4189 697.855 10.8387 696.706 10.3443 695.52L10.2639 695.327C9.15203 692.658 8.44071 689.84 8.15305 686.963L8.08691 686.302V86.3021L8.15305 85.6407C8.44071 82.7641 9.15203 79.9458 10.2639 77.2772L10.3443 77.0844C10.8387 75.8978 11.4189 74.7487 12.0803 73.6463C13.4109 71.4288 15.0592 69.4182 16.9727 67.6786L17.5984 67.1098C18.9218 65.9067 20.343 64.816 21.8475 63.8488L22.3239 63.5426C25.1469 61.7278 28.2477 60.3869 31.5035 59.5729C33.5537 59.0604 35.6512 58.7603 37.7628 58.6775L74.1401 58.4921L41.247 57.9034C37.4789 57.8359 33.7112 58.0522 29.9756 58.5502V58.5502C28.7185 58.7179 27.4766 58.9851 26.2619 59.3496C24.1553 59.9816 22.1459 60.9009 20.2904 62.0817L17.5869 63.8021L16.8101 64.4235C14.0114 66.6625 11.575 69.3199 9.58691 72.3021C7.59663 76.2826 6.17083 80.5212 5.35067 84.8954L5.08691 86.3021Z" fill="url(#paint13_linear_8_1130)" fill-opacity="0.75"/>
|
|
79
|
+
<path d="M306.769 86.2335V682.987C306.769 685.147 306.569 687.302 306.171 689.425V689.425C305.573 692.615 304.533 695.706 303.081 698.61L302.269 700.234V700.234C300.281 703.216 297.845 705.873 295.046 708.112L294.269 708.734L291.566 710.454C289.71 711.635 287.701 712.554 285.594 713.186V713.186C284.379 713.55 283.137 713.818 281.88 713.985L279.819 714.26C277.455 714.575 275.072 714.721 272.688 714.697L232.744 714.285L273.847 713.776C276.12 713.748 278.383 713.455 280.59 712.903V712.903C283.688 712.129 286.64 710.852 289.326 709.125L290.008 708.687C291.513 707.72 292.934 706.629 294.258 705.426L294.883 704.857C296.797 703.117 298.445 701.107 299.776 698.889V698.889C300.437 697.787 301.017 696.638 301.512 695.451L301.592 695.258C302.704 692.59 303.415 689.772 303.703 686.895L303.769 686.234V86.2335L303.703 85.5722C303.415 82.6955 302.704 79.8772 301.592 77.2087L301.512 77.0159C301.017 75.8292 300.437 74.6801 299.776 73.5778C298.445 71.3603 296.797 69.3496 294.883 67.61L294.258 67.0412C292.934 65.8382 291.513 64.7474 290.008 63.7803L289.532 63.474C286.709 61.6592 283.608 60.3183 280.352 59.5044C278.302 58.9918 276.205 58.6918 274.093 58.609L237.716 58.4236L270.609 57.8348C274.377 57.7674 278.145 57.9836 281.88 58.4817V58.4817C283.137 58.6493 284.379 58.9166 285.594 59.281C287.701 59.913 289.71 60.8324 291.566 62.0131L294.269 63.7335L295.046 64.355C297.845 66.5939 300.281 69.2514 302.269 72.2335C304.259 76.2141 305.685 80.4526 306.505 84.8268L306.769 86.2335Z" fill="url(#paint14_linear_8_1130)" fill-opacity="0.75"/>
|
|
80
|
+
<path d="M35.5315 59.8803L37.0179 59.7876H73.6382C74.1466 59.7876 74.6391 59.9783 75.0308 60.327C75.4226 60.6756 75.9151 60.8663 76.4234 60.8663H79.1441H233.137H235.858C236.366 60.8663 236.859 60.6756 237.25 60.327C237.642 59.9783 238.135 59.7876 238.643 59.7876H275.263L276.75 59.8803C278.835 60.0104 280.905 60.3465 282.933 60.8842L285.785 61.7526L287.713 62.6342L288.905 63.3149C289.683 63.7595 290.429 64.2599 291.135 64.8124V64.8124L288.002 63.6196C285.949 62.9636 283.853 62.4725 281.732 62.1502V62.1502C281.126 62.0581 280.514 62.0119 279.901 62.0119H233.137H79.1441H32.3805C31.7674 62.0119 31.1551 62.0581 30.549 62.1502V62.1502C28.4281 62.4725 26.3324 62.9636 24.2791 63.6196L21.1467 64.8124V64.8124C21.8527 64.2599 22.5978 63.7595 23.3763 63.315L24.5684 62.6342L26.4962 61.7526L29.3485 60.8842C31.3766 60.3465 33.4463 60.0104 35.5315 59.8803Z" fill="url(#paint15_linear_8_1130)"/>
|
|
81
|
+
<rect x="153.482" y="54.8396" width="4.96582" height="4.948" fill="black" fill-opacity="0.25"/>
|
|
82
|
+
<path d="M40.1628 717.959C32.1011 717.959 24.6017 715.474 18.2705 711.185V705.498C24.3043 709.763 31.5281 712.246 39.3146 712.246H131.948H180.332H272.966C280.752 712.246 287.976 709.763 294.01 705.498V711.185C287.679 715.474 280.179 717.959 272.117 717.959H180.332H131.948H40.1628Z" fill="url(#paint16_linear_8_1130)"/>
|
|
83
|
+
<path d="M13.7312 686.057L16.0374 689.388C17.2911 691.199 18.8075 692.813 20.5368 694.177V694.177C22.3839 695.634 24.4512 696.788 26.661 697.595L26.7978 697.645C28.7117 698.345 30.7097 698.787 32.7398 698.962L38.6757 699.473H273.605L279.608 698.956C281.594 698.785 283.554 698.35 285.441 697.661L285.748 697.549C287.874 696.772 289.877 695.65 291.687 694.222C293.454 692.829 295.017 691.159 296.326 689.269L298.549 686.057L297.399 693.398L293.514 700.82L285.748 707.59H256.71L121.593 705.498L49.2164 708.261L30.7417 707.115L21.5137 699.473L15.4834 692.65L13.7312 686.057Z" fill="black"/>
|
|
84
|
+
<defs>
|
|
85
|
+
<filter id="filter0_f_8_1130" x="677.91" y="229.975" width="3.07148" height="40.5692" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
86
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
87
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
88
|
+
<feGaussianBlur stdDeviation="0.269824" result="effect1_foregroundBlur_8_1130"/>
|
|
89
|
+
</filter>
|
|
90
|
+
<filter id="filter1_f_8_1130" x="677.91" y="309.822" width="3.07148" height="84.8751" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
91
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
92
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
93
|
+
<feGaussianBlur stdDeviation="0.269824" result="effect1_foregroundBlur_8_1130"/>
|
|
94
|
+
</filter>
|
|
95
|
+
<filter id="filter2_f_8_1130" x="506.601" y="27.6966" width="2.00992" height="4.06271" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
96
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
97
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
98
|
+
<feGaussianBlur stdDeviation="0.117104" result="effect1_foregroundBlur_8_1130"/>
|
|
99
|
+
</filter>
|
|
100
|
+
<filter id="filter3_f_8_1130" x="509.661" y="27.1958" width="3.19302" height="4.06931" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
101
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
102
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
103
|
+
<feGaussianBlur stdDeviation="0.117104" result="effect1_foregroundBlur_8_1130"/>
|
|
104
|
+
</filter>
|
|
105
|
+
<filter id="filter4_f_8_1130" x="311.029" y="234.075" width="3.07148" height="40.5692" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
106
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
107
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
108
|
+
<feGaussianBlur stdDeviation="0.269824" result="effect1_foregroundBlur_8_1130"/>
|
|
109
|
+
</filter>
|
|
110
|
+
<filter id="filter5_f_8_1130" x="311.029" y="313.922" width="3.07148" height="84.875" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
111
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
112
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
113
|
+
<feGaussianBlur stdDeviation="0.269824" result="effect1_foregroundBlur_8_1130"/>
|
|
114
|
+
</filter>
|
|
115
|
+
<filter id="filter6_f_8_1130" x="152.671" y="84.0487" width="2.00992" height="4.06271" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
116
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
117
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
118
|
+
<feGaussianBlur stdDeviation="0.117104" result="effect1_foregroundBlur_8_1130"/>
|
|
119
|
+
</filter>
|
|
120
|
+
<filter id="filter7_f_8_1130" x="155.731" y="83.5479" width="3.19327" height="4.06931" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
121
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
122
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
123
|
+
<feGaussianBlur stdDeviation="0.117104" result="effect1_foregroundBlur_8_1130"/>
|
|
124
|
+
</filter>
|
|
125
|
+
<linearGradient id="paint0_linear_8_1130" x1="678.45" y1="230.515" x2="678.45" y2="270.005" gradientUnits="userSpaceOnUse">
|
|
126
|
+
<stop stop-color="#CBCBCB" stop-opacity="0.27451"/>
|
|
127
|
+
<stop offset="0.04" stop-color="#CBCBCB"/>
|
|
128
|
+
<stop offset="0.96" stop-color="#CBCBCB"/>
|
|
129
|
+
<stop offset="1" stop-color="#CBCBCB" stop-opacity="0.275701"/>
|
|
130
|
+
</linearGradient>
|
|
131
|
+
<linearGradient id="paint1_linear_8_1130" x1="678.45" y1="310.362" x2="678.45" y2="394.157" gradientUnits="userSpaceOnUse">
|
|
132
|
+
<stop stop-color="#CBCBCB" stop-opacity="0.27451"/>
|
|
133
|
+
<stop offset="0.04" stop-color="#CBCBCB"/>
|
|
134
|
+
<stop offset="0.96" stop-color="#CBCBCB"/>
|
|
135
|
+
<stop offset="1" stop-color="#CBCBCB" stop-opacity="0.275701"/>
|
|
136
|
+
</linearGradient>
|
|
137
|
+
<linearGradient id="paint2_linear_8_1130" x1="510.032" y1="0.76001" x2="510.032" y2="721" gradientUnits="userSpaceOnUse">
|
|
138
|
+
<stop stop-color="#484848"/>
|
|
139
|
+
<stop offset="1" stop-color="#2A2A2A"/>
|
|
140
|
+
</linearGradient>
|
|
141
|
+
<linearGradient id="paint3_linear_8_1130" x1="510.032" y1="0.76001" x2="510.032" y2="4.36344" gradientUnits="userSpaceOnUse">
|
|
142
|
+
<stop stop-color="#838383"/>
|
|
143
|
+
<stop offset="1" stop-color="#666666" stop-opacity="0"/>
|
|
144
|
+
</linearGradient>
|
|
145
|
+
<linearGradient id="paint4_linear_8_1130" x1="510.032" y1="12.3875" x2="510.032" y2="709.372" gradientUnits="userSpaceOnUse">
|
|
146
|
+
<stop stop-color="#414141"/>
|
|
147
|
+
<stop offset="1" stop-color="#151515"/>
|
|
148
|
+
</linearGradient>
|
|
149
|
+
<linearGradient id="paint5_linear_8_1130" x1="420.735" y1="361.32" x2="348.71" y2="361.32" gradientUnits="userSpaceOnUse">
|
|
150
|
+
<stop offset="0.303495" stop-color="#D9D9D9" stop-opacity="0"/>
|
|
151
|
+
<stop offset="1" stop-color="#D9D9D9"/>
|
|
152
|
+
</linearGradient>
|
|
153
|
+
<linearGradient id="paint6_linear_8_1130" x1="599.368" y1="361.251" x2="671.393" y2="361.251" gradientUnits="userSpaceOnUse">
|
|
154
|
+
<stop offset="0.303495" stop-color="#D9D9D9" stop-opacity="0"/>
|
|
155
|
+
<stop offset="1" stop-color="#D9D9D9"/>
|
|
156
|
+
</linearGradient>
|
|
157
|
+
<linearGradient id="paint7_linear_8_1130" x1="509.978" y1="8.49371" x2="509.978" y2="13.5185" gradientUnits="userSpaceOnUse">
|
|
158
|
+
<stop stop-color="#3E3E3E" stop-opacity="0"/>
|
|
159
|
+
<stop offset="0.5" stop-color="#3E3E3E"/>
|
|
160
|
+
<stop offset="1" stop-color="#3E3E3E" stop-opacity="0"/>
|
|
161
|
+
</linearGradient>
|
|
162
|
+
<linearGradient id="paint8_linear_8_1130" x1="361.46" y1="706.44" x2="658.604" y2="706.44" gradientUnits="userSpaceOnUse">
|
|
163
|
+
<stop stop-color="#4F4F4F" stop-opacity="0.130841"/>
|
|
164
|
+
<stop offset="0.07" stop-color="#4F4F4F"/>
|
|
165
|
+
<stop offset="0.937" stop-color="#4F4F4F" stop-opacity="0.953271"/>
|
|
166
|
+
<stop offset="1" stop-color="#4F4F4F" stop-opacity="0"/>
|
|
167
|
+
</linearGradient>
|
|
168
|
+
<linearGradient id="paint9_linear_8_1130" x1="311.568" y1="234.615" x2="311.568" y2="274.105" gradientUnits="userSpaceOnUse">
|
|
169
|
+
<stop stop-color="#CBCBCB" stop-opacity="0.27451"/>
|
|
170
|
+
<stop offset="0.04" stop-color="#CBCBCB"/>
|
|
171
|
+
<stop offset="0.96" stop-color="#CBCBCB"/>
|
|
172
|
+
<stop offset="1" stop-color="#CBCBCB" stop-opacity="0.275701"/>
|
|
173
|
+
</linearGradient>
|
|
174
|
+
<linearGradient id="paint10_linear_8_1130" x1="311.568" y1="314.461" x2="311.568" y2="398.257" gradientUnits="userSpaceOnUse">
|
|
175
|
+
<stop stop-color="#CBCBCB" stop-opacity="0.27451"/>
|
|
176
|
+
<stop offset="0.04" stop-color="#CBCBCB"/>
|
|
177
|
+
<stop offset="0.96" stop-color="#CBCBCB"/>
|
|
178
|
+
<stop offset="1" stop-color="#CBCBCB" stop-opacity="0.275701"/>
|
|
179
|
+
</linearGradient>
|
|
180
|
+
<linearGradient id="paint11_linear_8_1130" x1="156.14" y1="54.3572" x2="156.14" y2="721" gradientUnits="userSpaceOnUse">
|
|
181
|
+
<stop stop-color="#484848"/>
|
|
182
|
+
<stop offset="1" stop-color="#2A2A2A"/>
|
|
183
|
+
</linearGradient>
|
|
184
|
+
<linearGradient id="paint12_linear_8_1130" x1="156.14" y1="67.6467" x2="156.14" y2="705.498" gradientUnits="userSpaceOnUse">
|
|
185
|
+
<stop stop-color="#414141"/>
|
|
186
|
+
<stop offset="1" stop-color="#161616"/>
|
|
187
|
+
</linearGradient>
|
|
188
|
+
<linearGradient id="paint13_linear_8_1130" x1="78.1119" y1="360.802" x2="6.08691" y2="360.802" gradientUnits="userSpaceOnUse">
|
|
189
|
+
<stop offset="0.303495" stop-color="#D9D9D9" stop-opacity="0"/>
|
|
190
|
+
<stop offset="1" stop-color="#D9D9D9"/>
|
|
191
|
+
</linearGradient>
|
|
192
|
+
<linearGradient id="paint14_linear_8_1130" x1="233.744" y1="360.734" x2="305.769" y2="360.734" gradientUnits="userSpaceOnUse">
|
|
193
|
+
<stop offset="0.303495" stop-color="#D9D9D9" stop-opacity="0"/>
|
|
194
|
+
<stop offset="1" stop-color="#D9D9D9"/>
|
|
195
|
+
</linearGradient>
|
|
196
|
+
<linearGradient id="paint15_linear_8_1130" x1="156.141" y1="59.7876" x2="156.141" y2="71.0076" gradientUnits="userSpaceOnUse">
|
|
197
|
+
<stop stop-color="#3E3E3E" stop-opacity="0"/>
|
|
198
|
+
<stop stop-color="#3E3E3E"/>
|
|
199
|
+
<stop offset="1" stop-color="#3E3E3E" stop-opacity="0"/>
|
|
200
|
+
</linearGradient>
|
|
201
|
+
<linearGradient id="paint16_linear_8_1130" x1="18.2705" y1="705.498" x2="294.01" y2="705.498" gradientUnits="userSpaceOnUse">
|
|
202
|
+
<stop stop-color="#4F4F4F" stop-opacity="0.130841"/>
|
|
203
|
+
<stop offset="0.07" stop-color="#4F4F4F"/>
|
|
204
|
+
<stop offset="0.937" stop-color="#4F4F4F" stop-opacity="0.953271"/>
|
|
205
|
+
<stop offset="1" stop-color="#4F4F4F" stop-opacity="0"/>
|
|
206
|
+
</linearGradient>
|
|
207
|
+
</defs>
|
|
208
|
+
</svg>
|
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
<svg viewBox="0 53 314 668" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M679.285 229.76C680.229 229.76 680.99 230.137 680.99 230.606V269.913C680.99 270.382 680.229 270.76 679.285 270.76H666.154C665.209 270.76 664.449 270.382 664.449 269.913V230.606C664.449 230.137 665.209 229.76 666.154 229.76H679.285Z" fill="black"/>
|
|
3
|
+
<mask id="mask0_8_1130" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="664" y="229" width="17" height="42">
|
|
4
|
+
<path d="M679.285 229.76C680.229 229.76 680.99 230.137 680.99 230.606V269.913C680.99 270.382 680.229 270.76 679.285 270.76H666.154C665.209 270.76 664.449 270.382 664.449 269.913V230.606C664.449 230.137 665.209 229.76 666.154 229.76H679.285Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_8_1130)">
|
|
7
|
+
<g filter="url(#filter0_f_8_1130)">
|
|
8
|
+
<path d="M678.922 230.515C679.764 230.515 680.442 230.851 680.442 231.269V269.25C680.442 269.668 679.764 270.005 678.922 270.005H678.45V230.515H678.922Z" fill="url(#paint0_linear_8_1130)"/>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
<path d="M679.285 308.76C680.229 308.76 680.99 309.559 680.99 310.555V393.963C680.99 394.958 680.229 395.76 679.285 395.76H666.154C665.209 395.76 664.449 394.958 664.449 393.963V310.555C664.449 309.559 665.209 308.76 666.154 308.76H679.285Z" fill="black"/>
|
|
12
|
+
<mask id="mask1_8_1130" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="664" y="308" width="17" height="88">
|
|
13
|
+
<path d="M679.285 308.76C680.229 308.76 680.99 309.559 680.99 310.555V393.963C680.99 394.958 680.229 395.76 679.285 395.76H666.154C665.209 395.76 664.449 394.958 664.449 393.963V310.555C664.449 309.559 665.209 308.76 666.154 308.76H679.285Z" fill="white"/>
|
|
14
|
+
</mask>
|
|
15
|
+
<g mask="url(#mask1_8_1130)">
|
|
16
|
+
<g filter="url(#filter1_f_8_1130)">
|
|
17
|
+
<path d="M678.922 310.362C679.764 310.362 680.442 311.076 680.442 311.963V392.556C680.442 393.443 679.764 394.157 678.922 394.157H678.45V310.362H678.922Z" fill="url(#paint1_linear_8_1130)"/>
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
<path d="M640.703 0.76001H379.361C358.567 0.76001 341.71 17.6169 341.71 38.4109V683.349C341.71 704.143 358.567 721 379.361 721H640.703C661.497 721 678.354 704.143 678.354 683.349V38.4109C678.354 17.6169 661.497 0.76001 640.703 0.76001Z" fill="url(#paint2_linear_8_1130)"/>
|
|
21
|
+
<path d="M640.703 0.76001H379.361C358.567 0.76001 341.71 17.6169 341.71 38.4109V683.349C341.71 704.143 358.567 721 379.361 721H640.703C661.497 721 678.354 704.143 678.354 683.349V38.4109C678.354 17.6169 661.497 0.76001 640.703 0.76001Z" fill="url(#paint3_linear_8_1130)"/>
|
|
22
|
+
<path d="M643.562 7.95801H376.502C364.27 7.95801 348.354 21.8402 348.354 38.9647V682.795C348.354 699.92 364.27 713.802 376.502 713.802H643.562C655.794 713.802 671.709 699.92 671.709 682.795V38.9647C671.709 21.8402 655.794 7.95801 643.562 7.95801Z" fill="black"/>
|
|
23
|
+
<path d="M380.469 13.3875H639.596C653.722 13.3875 665.173 24.8388 665.173 38.9646V682.795C665.173 696.921 653.722 708.372 639.596 708.372H380.469C366.343 708.372 354.892 696.921 354.892 682.795V38.9646C354.892 24.8388 366.343 13.3875 380.469 13.3875Z" fill="url(#paint4_linear_8_1130)" stroke="black" stroke-width="2"/>
|
|
24
|
+
<path d="M510.032 38.8539C514.925 38.8539 518.891 34.8876 518.891 29.9948C518.891 25.1021 514.925 21.1358 510.032 21.1358C505.14 21.1358 501.173 25.1021 501.173 29.9948C501.173 34.8876 505.14 38.8539 510.032 38.8539Z" fill="black"/>
|
|
25
|
+
<path d="M510.07 35.48C513.031 35.48 515.43 33.0803 515.43 30.12C515.43 27.1598 513.031 24.76 510.07 24.76C507.11 24.76 504.71 27.1598 504.71 30.12C504.71 33.0803 507.11 35.48 510.07 35.48Z" fill="#2B2B2B"/>
|
|
26
|
+
<path d="M510.071 34.4146C512.442 34.4146 514.365 32.4918 514.365 30.12C514.365 27.7481 512.442 25.8253 510.071 25.8253C507.699 25.8253 505.776 27.7481 505.776 30.12C505.776 32.4918 507.699 34.4146 510.071 34.4146Z" fill="#0A0D13"/>
|
|
27
|
+
<path d="M510.07 33.3921C511.877 33.3921 513.342 31.9271 513.342 30.1199C513.342 28.3127 511.877 26.8477 510.07 26.8477C508.263 26.8477 506.798 28.3127 506.798 30.1199C506.798 31.9271 508.263 33.3921 510.07 33.3921Z" fill="#091427"/>
|
|
28
|
+
<g filter="url(#filter2_f_8_1130)">
|
|
29
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M507.818 27.9308C507.429 27.9716 506.878 28.5639 506.837 29.7279C506.796 30.892 507.307 31.5251 507.593 31.5251C507.879 31.5251 509.063 29.8301 507.818 27.9308Z" fill="#235A91" fill-opacity="0.556075"/>
|
|
30
|
+
</g>
|
|
31
|
+
<g filter="url(#filter3_f_8_1130)">
|
|
32
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M510.604 27.5231C509.992 27.7115 509.874 28.7002 509.898 29.2652C509.921 29.8301 510.722 31.3132 511.687 30.9836C512.652 30.6541 512.817 29.4299 512.417 28.606C512.016 27.7821 511.287 27.1936 510.604 27.5231Z" fill="#235A91" fill-opacity="0.556075"/>
|
|
33
|
+
</g>
|
|
34
|
+
<path d="M379.361 1.56001H640.703C661.055 1.56001 677.554 18.0587 677.554 38.4109V683.349C677.554 703.701 661.055 720.2 640.703 720.2H379.361C359.009 720.2 342.51 703.701 342.51 683.349V38.4109C342.51 18.0587 359.009 1.56001 379.361 1.56001Z" stroke="black" stroke-width="1.6"/>
|
|
35
|
+
<rect x="341.749" y="47.1003" width="5.96143" height="4.948" fill="black" fill-opacity="0.25"/>
|
|
36
|
+
<rect x="341.71" y="148.344" width="5.96143" height="4.948" fill="black" fill-opacity="0.25"/>
|
|
37
|
+
<rect x="341.71" y="662.12" width="5.96143" height="4.948" fill="black" fill-opacity="0.25"/>
|
|
38
|
+
<rect x="672.393" y="47.1003" width="5.96143" height="4.948" fill="black" fill-opacity="0.25"/>
|
|
39
|
+
<rect x="672.354" y="148.344" width="5.96143" height="4.948" fill="black" fill-opacity="0.25"/>
|
|
40
|
+
<rect x="672.354" y="662.12" width="5.96143" height="4.948" fill="black" fill-opacity="0.25"/>
|
|
41
|
+
<path d="M347.71 35.82V682.573C347.71 684.733 347.911 686.888 348.309 689.011V689.011C348.907 692.201 349.947 695.293 351.399 698.196L352.21 699.82V699.82C354.199 702.802 356.635 705.46 359.434 707.699L360.21 708.32L362.914 710.04C364.769 711.221 366.779 712.141 368.885 712.772V712.772C370.1 713.137 371.342 713.404 372.599 713.572L374.661 713.847C377.024 714.162 379.407 714.308 381.792 714.283L421.735 713.871L380.633 713.362C378.359 713.334 376.096 713.041 373.89 712.49V712.49C370.791 711.715 367.84 710.439 365.153 708.712L364.471 708.273C362.967 707.306 361.545 706.215 360.222 705.012L359.596 704.443C357.683 702.704 356.034 700.693 354.704 698.476V698.476C354.042 697.373 353.462 696.224 352.968 695.038L352.887 694.845C351.776 692.176 351.064 689.358 350.777 686.481L350.71 685.82V35.82L350.777 35.1586C351.064 32.282 351.776 29.4637 352.887 26.7951L352.968 26.6024C353.462 25.4157 354.042 24.2666 354.704 23.1643C356.034 20.9467 357.683 18.9361 359.596 17.1965L360.222 16.6277C361.545 15.4247 362.967 14.3339 364.471 13.3668L364.947 13.0605C367.77 11.2457 370.871 9.90481 374.127 9.09086C376.177 8.57832 378.275 8.27827 380.386 8.19546L416.764 8.01008L383.871 7.42132C380.102 7.35387 376.335 7.57011 372.599 8.06818V8.06818C371.342 8.2358 370.1 8.50309 368.885 8.86752C366.779 9.49949 364.769 10.4188 362.914 11.5996L360.21 13.32L359.434 13.9415C356.635 16.1804 354.199 18.8379 352.21 21.82C350.22 25.8006 348.794 30.0391 347.974 34.4133L347.71 35.82Z" fill="url(#paint5_linear_8_1130)" fill-opacity="0.75"/>
|
|
42
|
+
<path d="M672.393 35.7515V682.505C672.393 684.665 672.192 686.82 671.794 688.943V688.943C671.196 692.133 670.156 695.224 668.705 698.128L667.893 699.751V699.751C665.904 702.734 663.468 705.391 660.669 707.63L659.893 708.251L657.189 709.972C655.334 711.153 653.324 712.072 651.218 712.704V712.704C650.003 713.068 648.761 713.336 647.504 713.503L645.443 713.778C643.079 714.093 640.696 714.239 638.311 714.215L598.368 713.802L639.47 713.294C641.744 713.266 644.007 712.973 646.213 712.421V712.421C649.312 711.647 652.263 710.37 654.95 708.643L655.632 708.205C657.136 707.238 658.558 706.147 659.881 704.944L660.507 704.375C662.42 702.635 664.069 700.625 665.399 698.407V698.407C666.061 697.305 666.641 696.156 667.135 694.969L667.216 694.776C668.327 692.108 669.039 689.289 669.326 686.413L669.393 685.751V35.7515L669.326 35.0901C669.039 32.2135 668.327 29.3952 667.216 26.7266L667.135 26.5338C666.641 25.3472 666.061 24.1981 665.399 23.0957C664.069 20.8782 662.42 18.8676 660.507 17.128L659.881 16.5592C658.558 15.3561 657.136 14.2654 655.632 13.2983L655.156 12.992C652.333 11.1772 649.232 9.83627 645.976 9.02232C643.926 8.50978 641.828 8.20973 639.717 8.12692L603.339 7.94153L636.233 7.35278C640.001 7.28533 643.768 7.50156 647.504 7.99964V7.99964C648.761 8.16726 650.003 8.43455 651.218 8.79898C653.324 9.43095 655.334 10.3503 657.189 11.5311L659.893 13.2515L660.669 13.8729C663.468 16.1119 665.904 18.7693 667.893 21.7515C669.883 25.732 671.309 29.9706 672.129 34.3448L672.393 35.7515Z" fill="url(#paint6_linear_8_1130)" fill-opacity="0.75"/>
|
|
43
|
+
<rect x="507.549" y="0.76001" width="4.96582" height="4.948" fill="black" fill-opacity="0.25"/>
|
|
44
|
+
<path d="M356.851 690.46L359.243 693.672C360.65 695.562 362.332 697.232 364.232 698.625V698.625C366.18 700.053 368.334 701.175 370.621 701.952L370.951 702.064C372.981 702.753 375.089 703.188 377.226 703.359L383.682 703.876H636.382L642.839 703.359C644.976 703.188 647.084 702.753 649.114 702.064L649.444 701.952C651.73 701.175 653.885 700.053 655.832 698.625C657.733 697.232 659.414 695.562 660.822 693.672L663.213 690.46L661.976 697.801L657.797 705.223L650.687 708.342L618.13 709.901H472.872H394.785L374.765 708.466L365.222 703.876L358.736 697.053L356.851 690.46Z" fill="black"/>
|
|
45
|
+
<path d="M380.182 8.58645L381.781 8.49371H421.191C421.738 8.49371 422.268 8.68444 422.69 9.03307C423.111 9.38169 423.641 9.57242 424.188 9.57242H427.116H592.839H595.767C596.314 9.57242 596.844 9.38169 597.265 9.03307C597.687 8.68444 598.217 8.49371 598.764 8.49371H638.174L639.773 8.58645C642.017 8.71655 644.245 9.0526 646.427 9.59036L649.497 10.4587L651.572 11.3403L654.113 12.6887L655.254 13.5185L651.883 12.3257C649.673 11.6697 647.418 11.1786 645.135 10.8563L644.156 10.718H592.839H427.116H375.799L374.82 10.8563C372.537 11.1786 370.282 11.6697 368.072 12.3257L364.701 13.5185L365.842 12.6887L368.383 11.3403L370.458 10.4587L373.528 9.59036C375.71 9.0526 377.938 8.71655 380.182 8.58645Z" fill="url(#paint7_linear_8_1130)"/>
|
|
46
|
+
<path d="M385.052 718.901C376.364 718.901 368.283 716.416 361.46 712.127V706.44C367.962 710.705 375.747 713.188 384.138 713.188H483.962H536.103H635.927C644.318 713.188 652.102 710.705 658.604 706.44V712.127C651.782 716.416 643.7 718.901 635.013 718.901H536.103H483.962H385.052Z" fill="url(#paint8_linear_8_1130)"/>
|
|
47
|
+
<path d="M312.403 233.86C313.348 233.86 314.108 234.237 314.108 234.706V274.013C314.108 274.482 313.348 274.86 312.403 274.86H299.272C298.328 274.86 297.567 274.482 297.567 274.013V234.706C297.567 234.237 298.328 233.86 299.272 233.86H312.403Z" fill="black"/>
|
|
48
|
+
<mask id="mask2_8_1130" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="297" y="233" width="18" height="42">
|
|
49
|
+
<path d="M312.403 233.86C313.348 233.86 314.108 234.237 314.108 234.705V274.013C314.108 274.482 313.348 274.86 312.403 274.86H299.272C298.328 274.86 297.567 274.482 297.567 274.013V234.705C297.567 234.237 298.328 233.86 299.272 233.86H312.403Z" fill="white"/>
|
|
50
|
+
</mask>
|
|
51
|
+
<g mask="url(#mask2_8_1130)">
|
|
52
|
+
<g filter="url(#filter4_f_8_1130)">
|
|
53
|
+
<path d="M312.041 234.615C312.883 234.615 313.561 234.951 313.561 235.369V273.35C313.561 273.768 312.883 274.105 312.041 274.105H311.568V234.615H312.041Z" fill="url(#paint9_linear_8_1130)"/>
|
|
54
|
+
</g>
|
|
55
|
+
</g>
|
|
56
|
+
<path d="M312.403 312.86C313.348 312.86 314.108 313.659 314.108 314.654V398.063C314.108 399.058 313.348 399.86 312.403 399.86H299.272C298.328 399.86 297.567 399.058 297.567 398.063V314.654C297.567 313.659 298.328 312.86 299.272 312.86H312.403Z" fill="black"/>
|
|
57
|
+
<mask id="mask3_8_1130" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="297" y="312" width="18" height="88">
|
|
58
|
+
<path d="M312.403 312.86C313.348 312.86 314.108 313.659 314.108 314.654V398.063C314.108 399.058 313.348 399.86 312.403 399.86H299.272C298.328 399.86 297.567 399.058 297.567 398.063V314.654C297.567 313.659 298.328 312.86 299.272 312.86H312.403Z" fill="white"/>
|
|
59
|
+
</mask>
|
|
60
|
+
<g mask="url(#mask3_8_1130)">
|
|
61
|
+
<g filter="url(#filter5_f_8_1130)">
|
|
62
|
+
<path d="M312.041 314.461C312.883 314.461 313.561 315.175 313.561 316.062V396.656C313.561 397.543 312.883 398.257 312.041 398.257H311.568V314.461H312.041Z" fill="url(#paint10_linear_8_1130)"/>
|
|
63
|
+
</g>
|
|
64
|
+
</g>
|
|
65
|
+
<path d="M38.0935 55.1572H274.187C294.539 55.1572 311.038 71.656 311.038 92.0082V683.349C311.038 703.701 294.539 720.2 274.187 720.2H38.0935C17.7413 720.2 1.24263 703.701 1.24263 683.349V92.0082C1.24263 71.656 17.7413 55.1572 38.0935 55.1572Z" fill="url(#paint11_linear_8_1130)" stroke="black" stroke-width="1.6"/>
|
|
66
|
+
<path d="M273.08 58.7876H39.2009C21.4648 58.7876 7.08691 73.1655 7.08691 90.9016V682.243C7.08691 699.979 21.4648 714.357 39.2009 714.357H273.08C290.816 714.357 305.194 699.979 305.194 682.243V90.9016C305.194 73.1655 290.816 58.7876 273.08 58.7876Z" fill="black"/>
|
|
67
|
+
<path d="M270.865 67.6467H41.4157C26.126 67.6467 13.7312 80.0414 13.7312 95.3312V677.813C13.7312 693.103 26.126 705.498 41.4157 705.498H270.865C286.155 705.498 298.549 693.103 298.549 677.813V95.3312C298.549 80.0414 286.155 67.6467 270.865 67.6467Z" fill="url(#paint12_linear_8_1130)"/>
|
|
68
|
+
<path d="M156.14 95.3312C161.033 95.3312 164.999 91.3649 164.999 86.4721C164.999 81.5794 161.033 77.6131 156.14 77.6131C151.248 77.6131 147.281 81.5794 147.281 86.4721C147.281 91.3649 151.248 95.3312 156.14 95.3312Z" fill="black"/>
|
|
69
|
+
<path d="M156.14 91.8321C159.101 91.8321 161.5 89.4324 161.5 86.4721C161.5 83.5119 159.101 81.1121 156.14 81.1121C153.18 81.1121 150.78 83.5119 150.78 86.4721C150.78 89.4324 153.18 91.8321 156.14 91.8321Z" fill="#2B2B2B"/>
|
|
70
|
+
<path d="M156.141 90.7667C158.512 90.7667 160.435 88.844 160.435 86.4721C160.435 84.1002 158.512 82.1774 156.141 82.1774C153.769 82.1774 151.846 84.1002 151.846 86.4721C151.846 88.844 153.769 90.7667 156.141 90.7667Z" fill="#0A0D13"/>
|
|
71
|
+
<path d="M156.14 89.7442C157.947 89.7442 159.412 88.2792 159.412 86.472C159.412 84.6648 157.947 83.1998 156.14 83.1998C154.333 83.1998 152.868 84.6648 152.868 86.472C152.868 88.2792 154.333 89.7442 156.14 89.7442Z" fill="#091427"/>
|
|
72
|
+
<g filter="url(#filter6_f_8_1130)">
|
|
73
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M153.887 84.2829C153.499 84.3237 152.948 84.916 152.907 86.0801C152.866 87.2441 153.377 87.8772 153.663 87.8772C153.949 87.8772 155.133 86.1822 153.887 84.2829Z" fill="#235A91" fill-opacity="0.556075"/>
|
|
74
|
+
</g>
|
|
75
|
+
<g filter="url(#filter7_f_8_1130)">
|
|
76
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M156.674 83.8752C156.062 84.0636 155.944 85.0523 155.968 85.6173C155.991 86.1823 156.792 87.6653 157.757 87.3358C158.722 87.0062 158.887 85.7821 158.487 84.9581C158.087 84.1342 157.357 83.5457 156.674 83.8752Z" fill="#235A91" fill-opacity="0.556075"/>
|
|
77
|
+
</g>
|
|
78
|
+
<path d="M5.08691 86.3021V683.055C5.08691 685.215 5.28722 687.37 5.68525 689.493V689.493C6.28344 692.684 7.32335 695.775 8.77497 698.678L9.58691 700.302V700.302C11.575 703.284 14.0114 705.942 16.8101 708.181L17.5869 708.802L20.2904 710.522C22.1459 711.703 24.1553 712.623 26.2619 713.255V713.255C27.4766 713.619 28.7185 713.886 29.9756 714.054L32.037 714.329C34.4006 714.644 36.7837 714.79 39.1681 714.765L79.1119 714.353L38.0094 713.844C35.7355 713.816 33.4726 713.523 31.2664 712.972V712.972C28.1676 712.197 25.2163 710.921 22.5295 709.194L21.8475 708.755C20.343 707.788 18.9218 706.697 17.5984 705.494L16.9727 704.926C15.0592 703.186 13.4109 701.175 12.0803 698.958V698.958C11.4189 697.855 10.8387 696.706 10.3443 695.52L10.2639 695.327C9.15203 692.658 8.44071 689.84 8.15305 686.963L8.08691 686.302V86.3021L8.15305 85.6407C8.44071 82.7641 9.15203 79.9458 10.2639 77.2772L10.3443 77.0844C10.8387 75.8978 11.4189 74.7487 12.0803 73.6463C13.4109 71.4288 15.0592 69.4182 16.9727 67.6786L17.5984 67.1098C18.9218 65.9067 20.343 64.816 21.8475 63.8488L22.3239 63.5426C25.1469 61.7278 28.2477 60.3869 31.5035 59.5729C33.5537 59.0604 35.6512 58.7603 37.7628 58.6775L74.1401 58.4921L41.247 57.9034C37.4789 57.8359 33.7112 58.0522 29.9756 58.5502V58.5502C28.7185 58.7179 27.4766 58.9851 26.2619 59.3496C24.1553 59.9816 22.1459 60.9009 20.2904 62.0817L17.5869 63.8021L16.8101 64.4235C14.0114 66.6625 11.575 69.3199 9.58691 72.3021C7.59663 76.2826 6.17083 80.5212 5.35067 84.8954L5.08691 86.3021Z" fill="url(#paint13_linear_8_1130)" fill-opacity="0.75"/>
|
|
79
|
+
<path d="M306.769 86.2335V682.987C306.769 685.147 306.569 687.302 306.171 689.425V689.425C305.573 692.615 304.533 695.706 303.081 698.61L302.269 700.234V700.234C300.281 703.216 297.845 705.873 295.046 708.112L294.269 708.734L291.566 710.454C289.71 711.635 287.701 712.554 285.594 713.186V713.186C284.379 713.55 283.137 713.818 281.88 713.985L279.819 714.26C277.455 714.575 275.072 714.721 272.688 714.697L232.744 714.285L273.847 713.776C276.12 713.748 278.383 713.455 280.59 712.903V712.903C283.688 712.129 286.64 710.852 289.326 709.125L290.008 708.687C291.513 707.72 292.934 706.629 294.258 705.426L294.883 704.857C296.797 703.117 298.445 701.107 299.776 698.889V698.889C300.437 697.787 301.017 696.638 301.512 695.451L301.592 695.258C302.704 692.59 303.415 689.772 303.703 686.895L303.769 686.234V86.2335L303.703 85.5722C303.415 82.6955 302.704 79.8772 301.592 77.2087L301.512 77.0159C301.017 75.8292 300.437 74.6801 299.776 73.5778C298.445 71.3603 296.797 69.3496 294.883 67.61L294.258 67.0412C292.934 65.8382 291.513 64.7474 290.008 63.7803L289.532 63.474C286.709 61.6592 283.608 60.3183 280.352 59.5044C278.302 58.9918 276.205 58.6918 274.093 58.609L237.716 58.4236L270.609 57.8348C274.377 57.7674 278.145 57.9836 281.88 58.4817V58.4817C283.137 58.6493 284.379 58.9166 285.594 59.281C287.701 59.913 289.71 60.8324 291.566 62.0131L294.269 63.7335L295.046 64.355C297.845 66.5939 300.281 69.2514 302.269 72.2335C304.259 76.2141 305.685 80.4526 306.505 84.8268L306.769 86.2335Z" fill="url(#paint14_linear_8_1130)" fill-opacity="0.75"/>
|
|
80
|
+
<path d="M35.5315 59.8803L37.0179 59.7876H73.6382C74.1466 59.7876 74.6391 59.9783 75.0308 60.327C75.4226 60.6756 75.9151 60.8663 76.4234 60.8663H79.1441H233.137H235.858C236.366 60.8663 236.859 60.6756 237.25 60.327C237.642 59.9783 238.135 59.7876 238.643 59.7876H275.263L276.75 59.8803C278.835 60.0104 280.905 60.3465 282.933 60.8842L285.785 61.7526L287.713 62.6342L288.905 63.3149C289.683 63.7595 290.429 64.2599 291.135 64.8124V64.8124L288.002 63.6196C285.949 62.9636 283.853 62.4725 281.732 62.1502V62.1502C281.126 62.0581 280.514 62.0119 279.901 62.0119H233.137H79.1441H32.3805C31.7674 62.0119 31.1551 62.0581 30.549 62.1502V62.1502C28.4281 62.4725 26.3324 62.9636 24.2791 63.6196L21.1467 64.8124V64.8124C21.8527 64.2599 22.5978 63.7595 23.3763 63.315L24.5684 62.6342L26.4962 61.7526L29.3485 60.8842C31.3766 60.3465 33.4463 60.0104 35.5315 59.8803Z" fill="url(#paint15_linear_8_1130)"/>
|
|
81
|
+
<rect x="153.482" y="54.8396" width="4.96582" height="4.948" fill="black" fill-opacity="0.25"/>
|
|
82
|
+
<path d="M40.1628 717.959C32.1011 717.959 24.6017 715.474 18.2705 711.185V705.498C24.3043 709.763 31.5281 712.246 39.3146 712.246H131.948H180.332H272.966C280.752 712.246 287.976 709.763 294.01 705.498V711.185C287.679 715.474 280.179 717.959 272.117 717.959H180.332H131.948H40.1628Z" fill="url(#paint16_linear_8_1130)"/>
|
|
83
|
+
<path d="M13.7312 686.057L16.0374 689.388C17.2911 691.199 18.8075 692.813 20.5368 694.177V694.177C22.3839 695.634 24.4512 696.788 26.661 697.595L26.7978 697.645C28.7117 698.345 30.7097 698.787 32.7398 698.962L38.6757 699.473H273.605L279.608 698.956C281.594 698.785 283.554 698.35 285.441 697.661L285.748 697.549C287.874 696.772 289.877 695.65 291.687 694.222C293.454 692.829 295.017 691.159 296.326 689.269L298.549 686.057L297.399 693.398L293.514 700.82L285.748 707.59H256.71L121.593 705.498L49.2164 708.261L30.7417 707.115L21.5137 699.473L15.4834 692.65L13.7312 686.057Z" fill="black"/>
|
|
84
|
+
<defs>
|
|
85
|
+
<filter id="filter0_f_8_1130" x="677.91" y="229.975" width="3.07148" height="40.5692" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
86
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
87
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
88
|
+
<feGaussianBlur stdDeviation="0.269824" result="effect1_foregroundBlur_8_1130"/>
|
|
89
|
+
</filter>
|
|
90
|
+
<filter id="filter1_f_8_1130" x="677.91" y="309.822" width="3.07148" height="84.8751" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
91
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
92
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
93
|
+
<feGaussianBlur stdDeviation="0.269824" result="effect1_foregroundBlur_8_1130"/>
|
|
94
|
+
</filter>
|
|
95
|
+
<filter id="filter2_f_8_1130" x="506.601" y="27.6966" width="2.00992" height="4.06271" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
96
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
97
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
98
|
+
<feGaussianBlur stdDeviation="0.117104" result="effect1_foregroundBlur_8_1130"/>
|
|
99
|
+
</filter>
|
|
100
|
+
<filter id="filter3_f_8_1130" x="509.661" y="27.1958" width="3.19302" height="4.06931" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
101
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
102
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
103
|
+
<feGaussianBlur stdDeviation="0.117104" result="effect1_foregroundBlur_8_1130"/>
|
|
104
|
+
</filter>
|
|
105
|
+
<filter id="filter4_f_8_1130" x="311.029" y="234.075" width="3.07148" height="40.5692" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
106
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
107
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
108
|
+
<feGaussianBlur stdDeviation="0.269824" result="effect1_foregroundBlur_8_1130"/>
|
|
109
|
+
</filter>
|
|
110
|
+
<filter id="filter5_f_8_1130" x="311.029" y="313.922" width="3.07148" height="84.875" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
111
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
112
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
113
|
+
<feGaussianBlur stdDeviation="0.269824" result="effect1_foregroundBlur_8_1130"/>
|
|
114
|
+
</filter>
|
|
115
|
+
<filter id="filter6_f_8_1130" x="152.671" y="84.0487" width="2.00992" height="4.06271" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
116
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
117
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
118
|
+
<feGaussianBlur stdDeviation="0.117104" result="effect1_foregroundBlur_8_1130"/>
|
|
119
|
+
</filter>
|
|
120
|
+
<filter id="filter7_f_8_1130" x="155.731" y="83.5479" width="3.19327" height="4.06931" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
121
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
122
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
123
|
+
<feGaussianBlur stdDeviation="0.117104" result="effect1_foregroundBlur_8_1130"/>
|
|
124
|
+
</filter>
|
|
125
|
+
<linearGradient id="paint0_linear_8_1130" x1="678.45" y1="230.515" x2="678.45" y2="270.005" gradientUnits="userSpaceOnUse">
|
|
126
|
+
<stop stop-color="#CBCBCB" stop-opacity="0.27451"/>
|
|
127
|
+
<stop offset="0.04" stop-color="#CBCBCB"/>
|
|
128
|
+
<stop offset="0.96" stop-color="#CBCBCB"/>
|
|
129
|
+
<stop offset="1" stop-color="#CBCBCB" stop-opacity="0.275701"/>
|
|
130
|
+
</linearGradient>
|
|
131
|
+
<linearGradient id="paint1_linear_8_1130" x1="678.45" y1="310.362" x2="678.45" y2="394.157" gradientUnits="userSpaceOnUse">
|
|
132
|
+
<stop stop-color="#CBCBCB" stop-opacity="0.27451"/>
|
|
133
|
+
<stop offset="0.04" stop-color="#CBCBCB"/>
|
|
134
|
+
<stop offset="0.96" stop-color="#CBCBCB"/>
|
|
135
|
+
<stop offset="1" stop-color="#CBCBCB" stop-opacity="0.275701"/>
|
|
136
|
+
</linearGradient>
|
|
137
|
+
<linearGradient id="paint2_linear_8_1130" x1="510.032" y1="0.76001" x2="510.032" y2="721" gradientUnits="userSpaceOnUse">
|
|
138
|
+
<stop stop-color="#484848"/>
|
|
139
|
+
<stop offset="1" stop-color="#2A2A2A"/>
|
|
140
|
+
</linearGradient>
|
|
141
|
+
<linearGradient id="paint3_linear_8_1130" x1="510.032" y1="0.76001" x2="510.032" y2="4.36344" gradientUnits="userSpaceOnUse">
|
|
142
|
+
<stop stop-color="#838383"/>
|
|
143
|
+
<stop offset="1" stop-color="#666666" stop-opacity="0"/>
|
|
144
|
+
</linearGradient>
|
|
145
|
+
<linearGradient id="paint4_linear_8_1130" x1="510.032" y1="12.3875" x2="510.032" y2="709.372" gradientUnits="userSpaceOnUse">
|
|
146
|
+
<stop stop-color="#414141"/>
|
|
147
|
+
<stop offset="1" stop-color="#151515"/>
|
|
148
|
+
</linearGradient>
|
|
149
|
+
<linearGradient id="paint5_linear_8_1130" x1="420.735" y1="361.32" x2="348.71" y2="361.32" gradientUnits="userSpaceOnUse">
|
|
150
|
+
<stop offset="0.303495" stop-color="#D9D9D9" stop-opacity="0"/>
|
|
151
|
+
<stop offset="1" stop-color="#D9D9D9"/>
|
|
152
|
+
</linearGradient>
|
|
153
|
+
<linearGradient id="paint6_linear_8_1130" x1="599.368" y1="361.251" x2="671.393" y2="361.251" gradientUnits="userSpaceOnUse">
|
|
154
|
+
<stop offset="0.303495" stop-color="#D9D9D9" stop-opacity="0"/>
|
|
155
|
+
<stop offset="1" stop-color="#D9D9D9"/>
|
|
156
|
+
</linearGradient>
|
|
157
|
+
<linearGradient id="paint7_linear_8_1130" x1="509.978" y1="8.49371" x2="509.978" y2="13.5185" gradientUnits="userSpaceOnUse">
|
|
158
|
+
<stop stop-color="#3E3E3E" stop-opacity="0"/>
|
|
159
|
+
<stop offset="0.5" stop-color="#3E3E3E"/>
|
|
160
|
+
<stop offset="1" stop-color="#3E3E3E" stop-opacity="0"/>
|
|
161
|
+
</linearGradient>
|
|
162
|
+
<linearGradient id="paint8_linear_8_1130" x1="361.46" y1="706.44" x2="658.604" y2="706.44" gradientUnits="userSpaceOnUse">
|
|
163
|
+
<stop stop-color="#4F4F4F" stop-opacity="0.130841"/>
|
|
164
|
+
<stop offset="0.07" stop-color="#4F4F4F"/>
|
|
165
|
+
<stop offset="0.937" stop-color="#4F4F4F" stop-opacity="0.953271"/>
|
|
166
|
+
<stop offset="1" stop-color="#4F4F4F" stop-opacity="0"/>
|
|
167
|
+
</linearGradient>
|
|
168
|
+
<linearGradient id="paint9_linear_8_1130" x1="311.568" y1="234.615" x2="311.568" y2="274.105" gradientUnits="userSpaceOnUse">
|
|
169
|
+
<stop stop-color="#CBCBCB" stop-opacity="0.27451"/>
|
|
170
|
+
<stop offset="0.04" stop-color="#CBCBCB"/>
|
|
171
|
+
<stop offset="0.96" stop-color="#CBCBCB"/>
|
|
172
|
+
<stop offset="1" stop-color="#CBCBCB" stop-opacity="0.275701"/>
|
|
173
|
+
</linearGradient>
|
|
174
|
+
<linearGradient id="paint10_linear_8_1130" x1="311.568" y1="314.461" x2="311.568" y2="398.257" gradientUnits="userSpaceOnUse">
|
|
175
|
+
<stop stop-color="#CBCBCB" stop-opacity="0.27451"/>
|
|
176
|
+
<stop offset="0.04" stop-color="#CBCBCB"/>
|
|
177
|
+
<stop offset="0.96" stop-color="#CBCBCB"/>
|
|
178
|
+
<stop offset="1" stop-color="#CBCBCB" stop-opacity="0.275701"/>
|
|
179
|
+
</linearGradient>
|
|
180
|
+
<linearGradient id="paint11_linear_8_1130" x1="156.14" y1="54.3572" x2="156.14" y2="721" gradientUnits="userSpaceOnUse">
|
|
181
|
+
<stop stop-color="#484848"/>
|
|
182
|
+
<stop offset="1" stop-color="#2A2A2A"/>
|
|
183
|
+
</linearGradient>
|
|
184
|
+
<linearGradient id="paint12_linear_8_1130" x1="156.14" y1="67.6467" x2="156.14" y2="705.498" gradientUnits="userSpaceOnUse">
|
|
185
|
+
<stop stop-color="#414141"/>
|
|
186
|
+
<stop offset="1" stop-color="#161616"/>
|
|
187
|
+
</linearGradient>
|
|
188
|
+
<linearGradient id="paint13_linear_8_1130" x1="78.1119" y1="360.802" x2="6.08691" y2="360.802" gradientUnits="userSpaceOnUse">
|
|
189
|
+
<stop offset="0.303495" stop-color="#D9D9D9" stop-opacity="0"/>
|
|
190
|
+
<stop offset="1" stop-color="#D9D9D9"/>
|
|
191
|
+
</linearGradient>
|
|
192
|
+
<linearGradient id="paint14_linear_8_1130" x1="233.744" y1="360.734" x2="305.769" y2="360.734" gradientUnits="userSpaceOnUse">
|
|
193
|
+
<stop offset="0.303495" stop-color="#D9D9D9" stop-opacity="0"/>
|
|
194
|
+
<stop offset="1" stop-color="#D9D9D9"/>
|
|
195
|
+
</linearGradient>
|
|
196
|
+
<linearGradient id="paint15_linear_8_1130" x1="156.141" y1="59.7876" x2="156.141" y2="71.0076" gradientUnits="userSpaceOnUse">
|
|
197
|
+
<stop stop-color="#3E3E3E" stop-opacity="0"/>
|
|
198
|
+
<stop stop-color="#3E3E3E"/>
|
|
199
|
+
<stop offset="1" stop-color="#3E3E3E" stop-opacity="0"/>
|
|
200
|
+
</linearGradient>
|
|
201
|
+
<linearGradient id="paint16_linear_8_1130" x1="18.2705" y1="705.498" x2="294.01" y2="705.498" gradientUnits="userSpaceOnUse">
|
|
202
|
+
<stop stop-color="#4F4F4F" stop-opacity="0.130841"/>
|
|
203
|
+
<stop offset="0.07" stop-color="#4F4F4F"/>
|
|
204
|
+
<stop offset="0.937" stop-color="#4F4F4F" stop-opacity="0.953271"/>
|
|
205
|
+
<stop offset="1" stop-color="#4F4F4F" stop-opacity="0"/>
|
|
206
|
+
</linearGradient>
|
|
207
|
+
</defs>
|
|
208
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<svg viewBox="0 0 800 1701" xmlns="http://www.w3.org/2000/svg" version="1.1" width="800px" height="1701px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
4
|
+
<g><path style="opacity:0.981" fill="#000000" d="M 81.5,-0.5 C 291.5,-0.5 501.5,-0.5 711.5,-0.5C 755.828,8.59781 782.995,35.2645 793,79.5C 794.486,205.144 794.986,330.81 794.5,456.5C 796.167,456.5 797.833,456.5 799.5,456.5C 799.5,492.5 799.5,528.5 799.5,564.5C 797.833,564.5 796.167,564.5 794.5,564.5C 794.5,596.5 794.5,628.5 794.5,660.5C 796.167,660.5 797.833,660.5 799.5,660.5C 799.5,734.167 799.5,807.833 799.5,881.5C 797.833,881.5 796.167,881.5 794.5,881.5C 794.667,1125.17 794.5,1368.83 794,1612.5C 786.205,1662.13 757.705,1691.46 708.5,1700.5C 500.5,1700.5 292.5,1700.5 84.5,1700.5C 37.8272,1692.16 9.49391,1664.83 -0.5,1618.5C -0.5,1106.17 -0.5,593.833 -0.5,81.5C 9.16667,36.5 36.5,9.16667 81.5,-0.5 Z"/></g>
|
|
5
|
+
<g><path style="opacity:1" fill="#323232" d="M 90.5,9.5 C 294.834,9.33333 499.167,9.5 703.5,10C 747.466,17.9669 772.299,44.1336 778,88.5C 778.667,594.167 778.667,1099.83 778,1605.5C 772.205,1650.3 747.038,1676.46 702.5,1684C 498.833,1684.67 295.167,1684.67 91.5,1684C 58.3079,1679.47 34.8079,1661.97 21,1631.5C 18.5509,1625.37 16.8843,1619.04 16,1612.5C 15.3333,1102.17 15.3333,591.833 16,81.5C 21.3952,50.8883 38.2285,29.055 66.5,16C 74.37,12.869 82.37,10.7024 90.5,9.5 Z"/></g>
|
|
6
|
+
<g><path style="opacity:1" fill="#dcdcdc" d="M 95.5,34.5 C 295.834,34.3333 496.167,34.5 696.5,35C 730.373,42.8724 749.54,64.0391 754,98.5C 754.667,590.833 754.667,1083.17 754,1575.5C 749.54,1609.96 730.373,1631.13 696.5,1639C 496.5,1639.67 296.5,1639.67 96.5,1639C 65.3333,1631.83 46.1667,1612.67 39,1581.5C 38.3333,1085.17 38.3333,588.833 39,92.5C 46.2464,61.7549 65.0797,42.4216 95.5,34.5 Z"/></g>
|
|
7
|
+
<g><path style="opacity:1" fill="#343434" d="M 391.5,58.5 C 409.704,57.8755 418.871,66.5421 419,84.5C 414.969,99.6113 405.136,105.778 389.5,103C 374.123,95.4026 370.29,83.9026 378,68.5C 381.767,64.0477 386.267,60.7144 391.5,58.5 Z"/></g>
|
|
8
|
+
</svg>
|