nzk-react-components 0.4.3 → 0.4.4
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/dist/assets/icons/bear.svg +177 -0
- package/dist/assets/icons/bear.svg.js +606 -0
- package/dist/assets/icons/bear.svg.js.map +1 -0
- package/dist/assets/icons/flamingo.svg +85 -0
- package/dist/assets/icons/flamingo.svg.js +287 -0
- package/dist/assets/icons/flamingo.svg.js.map +1 -0
- package/dist/assets/icons/giraffe.svg +259 -0
- package/dist/assets/icons/giraffe.svg.js +756 -0
- package/dist/assets/icons/giraffe.svg.js.map +1 -0
- package/dist/assets/icons/penguin.svg +231 -0
- package/dist/assets/icons/penguin.svg.js +718 -0
- package/dist/assets/icons/penguin.svg.js.map +1 -0
- package/dist/components/DrawingTool/DrawingTool.d.ts +29 -0
- package/dist/components/DrawingTool/DrawingTool.js +277 -0
- package/dist/components/DrawingTool/DrawingTool.js.map +1 -0
- package/dist/components/DrawingTool/DrawingTool.stories.d.ts +6 -0
- package/dist/components/DrawingTool/DrawingTool.styles.d.ts +41 -0
- package/dist/components/DrawingTool/DrawingTool.styles.js +54 -0
- package/dist/components/DrawingTool/DrawingTool.styles.js.map +1 -0
- package/dist/components/DrawingTool/DrawingToolProvider.d.ts +56 -0
- package/dist/components/DrawingTool/DrawingToolProvider.js +182 -0
- package/dist/components/DrawingTool/DrawingToolProvider.js.map +1 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.d.ts +21 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.js +89 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.js.map +1 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.styles.d.ts +9 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.styles.js +18 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.styles.js.map +1 -0
- package/dist/components/DrawingTool/components/ColourToolbar/index.d.ts +2 -0
- package/dist/components/DrawingTool/components/ColourToolbar/index.js +8 -0
- package/dist/components/DrawingTool/components/ColourToolbar/index.js.map +1 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.d.ts +9 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.js +88 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.js.map +1 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.styles.d.ts +4 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.styles.js +22 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.styles.js.map +1 -0
- package/dist/components/DrawingTool/components/FileInput/index.d.ts +2 -0
- package/dist/components/DrawingTool/components/FileInput/index.js +8 -0
- package/dist/components/DrawingTool/components/FileInput/index.js.map +1 -0
- package/dist/components/DrawingTool/components/Header/Header.d.ts +9 -0
- package/dist/components/DrawingTool/components/Header/Header.js +38 -0
- package/dist/components/DrawingTool/components/Header/Header.js.map +1 -0
- package/dist/components/DrawingTool/components/Header/index.d.ts +2 -0
- package/dist/components/DrawingTool/components/Header/index.js +8 -0
- package/dist/components/DrawingTool/components/Header/index.js.map +1 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.d.ts +8 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.js +31 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.js.map +1 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.styles.d.ts +9 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.styles.js +18 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.styles.js.map +1 -0
- package/dist/components/DrawingTool/components/OpacityToggle/index.d.ts +2 -0
- package/dist/components/DrawingTool/components/OpacityToggle/index.js +8 -0
- package/dist/components/DrawingTool/components/OpacityToggle/index.js.map +1 -0
- package/dist/components/DrawingTool/components/Placeable/index.d.ts +9 -0
- package/dist/components/DrawingTool/components/Placeable/index.js +22 -0
- package/dist/components/DrawingTool/components/Placeable/index.js.map +1 -0
- package/dist/components/DrawingTool/index.d.ts +2 -0
- package/dist/components/DrawingTool/lib/Sketch.d.ts +90 -0
- package/dist/components/DrawingTool/lib/Sketch.js +414 -0
- package/dist/components/DrawingTool/lib/Sketch.js.map +1 -0
- package/dist/components/DrawingTool/lib/SketchCut.d.ts +22 -0
- package/dist/components/DrawingTool/lib/SketchCut.js +98 -0
- package/dist/components/DrawingTool/lib/SketchCut.js.map +1 -0
- package/dist/components/DrawingTool/lib/SketchCutModel.d.ts +6 -0
- package/dist/components/DrawingTool/lib/SketchCutModel.js +20 -0
- package/dist/components/DrawingTool/lib/SketchCutModel.js.map +1 -0
- package/dist/components/DrawingTool/lib/SketchLayer.d.ts +27 -0
- package/dist/components/DrawingTool/lib/SketchLayer.js +59 -0
- package/dist/components/DrawingTool/lib/SketchLayer.js.map +1 -0
- package/dist/components/DrawingTool/lib/SketchModel.d.ts +65 -0
- package/dist/components/DrawingTool/lib/SketchModel.js +137 -0
- package/dist/components/DrawingTool/lib/SketchModel.js.map +1 -0
- package/dist/components/DrawingTool/lib/SketchStrokeModel.d.ts +33 -0
- package/dist/components/DrawingTool/lib/SketchStrokeModel.js +48 -0
- package/dist/components/DrawingTool/lib/SketchStrokeModel.js.map +1 -0
- package/dist/components/DrawingTool/lib/createInteractionSurface.d.ts +16 -0
- package/dist/components/DrawingTool/lib/createInteractionSurface.js +56 -0
- package/dist/components/DrawingTool/lib/createInteractionSurface.js.map +1 -0
- package/dist/components/DrawingTool/lib/trace.d.ts +3 -0
- package/dist/components/DrawingTool/lib/trace.js +24 -0
- package/dist/components/DrawingTool/lib/trace.js.map +1 -0
- package/dist/components/DrawingTool/lib/trimCanvas.d.ts +2 -0
- package/dist/components/DrawingTool/lib/trimCanvas.js +42 -0
- package/dist/components/DrawingTool/lib/trimCanvas.js.map +1 -0
- package/dist/components/Icon/icons.d.ts +4 -0
- package/dist/components/Icon/icons.js +8 -0
- package/dist/components/Icon/icons.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,606 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
|
|
5
|
+
function _interopNamespace(e) {
|
|
6
|
+
if (e && e.__esModule) return e;
|
|
7
|
+
var n = Object.create(null);
|
|
8
|
+
if (e) {
|
|
9
|
+
Object.keys(e).forEach(function (k) {
|
|
10
|
+
if (k !== 'default') {
|
|
11
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
12
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return e[k];
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
n['default'] = e;
|
|
22
|
+
return Object.freeze(n);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
26
|
+
|
|
27
|
+
var _defs, _g;
|
|
28
|
+
|
|
29
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
30
|
+
|
|
31
|
+
function SvgBear(props) {
|
|
32
|
+
return /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
33
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
34
|
+
width: 119.964,
|
|
35
|
+
height: 119.929,
|
|
36
|
+
viewBox: "0 0 119.964 119.929"
|
|
37
|
+
}, props), _defs || (_defs = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
38
|
+
id: "bear_svg__a"
|
|
39
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
40
|
+
"data-name": "Rectangle 1735",
|
|
41
|
+
fill: "none",
|
|
42
|
+
d: "M0 0h119.964v119.929H0z"
|
|
43
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
44
|
+
id: "bear_svg__b"
|
|
45
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
46
|
+
"data-name": "Rectangle 1728",
|
|
47
|
+
transform: "translate(9.902 9.419)",
|
|
48
|
+
fill: "none",
|
|
49
|
+
d: "M0 0h99.56v100.968H0z"
|
|
50
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
51
|
+
id: "bear_svg__c"
|
|
52
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
53
|
+
"data-name": "Rectangle 1729",
|
|
54
|
+
transform: "translate(29.693 19.129)",
|
|
55
|
+
fill: "none",
|
|
56
|
+
d: "M0 0h5.835v14.085H0z"
|
|
57
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
58
|
+
id: "bear_svg__d"
|
|
59
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
60
|
+
"data-name": "Rectangle 1730",
|
|
61
|
+
transform: "translate(14.127 39.538)",
|
|
62
|
+
fill: "none",
|
|
63
|
+
d: "M0 0h87.987v40.156H0z"
|
|
64
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
65
|
+
id: "bear_svg__e"
|
|
66
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
67
|
+
"data-name": "Rectangle 1731",
|
|
68
|
+
transform: "translate(0 12.256)",
|
|
69
|
+
fill: "none",
|
|
70
|
+
d: "M0 0h101.03v54.798H0z"
|
|
71
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
72
|
+
id: "bear_svg__f"
|
|
73
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
74
|
+
"data-name": "Rectangle 1732",
|
|
75
|
+
transform: "translate(36.792 53.623)",
|
|
76
|
+
fill: "none",
|
|
77
|
+
d: "M0 0h65.548v39.047H0z"
|
|
78
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
79
|
+
id: "bear_svg__g"
|
|
80
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
81
|
+
"data-name": "Rectangle 1733",
|
|
82
|
+
transform: "translate(61.288 66.568)",
|
|
83
|
+
fill: "none",
|
|
84
|
+
d: "M0 0h41.703v34.29H0z"
|
|
85
|
+
})))), _g || (_g = /*#__PURE__*/React__namespace.createElement("g", {
|
|
86
|
+
"data-name": "Group 1988"
|
|
87
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
88
|
+
"data-name": "Group 1987",
|
|
89
|
+
clipPath: "url(#bear_svg__a)"
|
|
90
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
91
|
+
"data-name": "Group 1986",
|
|
92
|
+
clipPath: "url(#bear_svg__a)"
|
|
93
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
94
|
+
"data-name": "Group 1970"
|
|
95
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
96
|
+
"data-name": "Group 1969",
|
|
97
|
+
opacity: 0.3
|
|
98
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
99
|
+
"data-name": "Group 1968",
|
|
100
|
+
clipPath: "url(#bear_svg__b)"
|
|
101
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
102
|
+
"data-name": "Path 2686",
|
|
103
|
+
d: "M96.416 81.582c.183-.4.3-.675.362-.818l.012-.028a6.18 6.18 0 01.038-.093q-.4-.615-.8-1.171c-.055-.076-.109-.142-.164-.217l-.289-.385c-.233-.307-.463-.6-.693-.879-.094-.115-.188-.232-.282-.342-.3-.354-.6-.691-.887-1l-.028-.031c-.3-.315-.587-.6-.871-.871-.085-.08-.166-.154-.249-.23q-.319-.3-.622-.553l-.208-.177a19.912 19.912 0 00-.326-.263 29.571 29.571 0 001.356-3.016c6.963-4.122 11.763-8.25 14.334-11.35.051-.061.1-.123.153-.184.132-.163.259-.322.379-.479.1-.137.2-.269.3-.4.1-.148.208-.293.3-.434q.183-.273.335-.53c.042-.072.083-.142.122-.212.123-.22.235-.434.322-.633a2.971 2.971 0 00.122-.364l.031-.121q.042-.171.078-.372l.022-.119c.028-.176.054-.365.076-.569 0-.047.009-.1.014-.146a17.6 17.6 0 00.045-.533l.014-.207c.013-.222.024-.452.033-.7v-.067c.008-.267.013-.549.016-.839V53v-.714-.242c0-.315-.01-.639-.019-.974 0-.071 0-.145-.006-.218a90.801 90.801 0 00-.028-.841c0-.111-.009-.222-.014-.335a54.865 54.865 0 00-.025-.546 50.8 50.8 0 00-33.03-37.009 3.131 3.131 0 00-.461.227 3.2 3.2 0 00-.321.221 2.659 2.659 0 00-.539.557 2.215 2.215 0 00-.195.333 1.774 1.774 0 00-.1 1.3 1.422 1.422 0 00.088.2.277.277 0 00.086.108.223.223 0 00.116.021.438.438 0 00.063.012 4.23 4.23 0 00.435-.026 1.38 1.38 0 00.415-.112c.148-.07.279-.174.429-.241a1 1 0 01.29-.079 1.181 1.181 0 01.3 0 1.578 1.578 0 01.294.065 1.911 1.911 0 01.276.115c.272.138.575.471.893.492.025 0 .044-.014.068-.017.108.177.227.366.356.564l.006.011.006.009c.408.628.883 1.318 1.25 1.84v.02a.243.243 0 01-.142.108 11.817 11.817 0 00-1.707 1.187 10.609 10.609 0 00-.92.787 2.2 2.2 0 00-.833-.109 2.922 2.922 0 00-1.607.634 2.477 2.477 0 00-.841 1.147 1.642 1.642 0 00.064 1.2 1.45 1.45 0 00.1.178.264.264 0 00.092.09.293.293 0 00.169.009 1.956 1.956 0 00.766-.226c.129-.082.237-.193.368-.272a1.265 1.265 0 011.077-.042 5.292 5.292 0 00.759.332 14.1 14.1 0 001.074 1.282l.009.01c.3.329.561.591.73.741l.012.011a.243.243 0 01.052.3l-.066.139-.006.013a9.956 9.956 0 00-.5 1.27 2.7 2.7 0 00-1.645.955 2.976 2.976 0 00-.21.281 2.472 2.472 0 00-.444 1.351 1.642 1.642 0 00.433 1.124 1.344 1.344 0 00.155.137.26.26 0 00.115.057.283.283 0 00.163-.044 1.942 1.942 0 00.659-.452c.1-.118.166-.257.265-.373a1.029 1.029 0 01.461-.3 1.664 1.664 0 01.551-.075 4.681 4.681 0 01.509.077l.172.1a4 4 0 001.453.5c.13.027.267.049.409.07H81.841c.125.018.252.034.386.048.109.013.2.027.324.039a.136.136 0 01.03 0 .124.124 0 01.061.011c.041.019.069.071.024.2a5.73 5.73 0 00-.406 1.49v.018c0 .017-.006.04 0 .056s0 .026.006.041a1.2 1.2 0 000 .135 1.047 1.047 0 00.167.435c.012.021.027.051.037.065a.208.208 0 00.027.037L73.874 41.4c0-.016-.005-.031-.009-.057l-.012-.084-.023-.141v-.028a34.152 34.152 0 00-.161-.9v-.017a37.089 37.089 0 00-.922-3.706l-.013-.042a19.426 19.426 0 00-.2-.623V35.8s1.356-.67-.95-2.506a20.155 20.155 0 00-1.358-2.613 8.937 8.937 0 00-2-2.172c-.89-1.108-1.745-2.06-2.024-2.39a61.652 61.652 0 01-2.96-5.54l-.009-.076a39.31 39.31 0 00-.3-2.873l-.019-.132c-.077-.5-.167-.983-.272-1.4l-.014-.054a6.097 6.097 0 00-.177-.578 2.703 2.703 0 00-.112-.269 19.616 19.616 0 00-1.591-2.6c-.1-.151-.2-.3-.309-.423l-.279-.338-1.983-2.416a50.5 50.5 0 00-35.827 16.7 43.828 43.828 0 00-1.075 3.039c-.07.225-.134.454-.2.681l-.053.181c-.128.452-.25.907-.358 1.364l1.658 3.731.032.07s-3.8 1.2-4.365 1.76a3.885 3.885 0 00-.774 4.364 5.234 5.234 0 002.285 2.337l.016.007a4.943 4.943 0 00.654.285c.051.018.1.026.154.042a4.576 4.576 0 00.534.141c.113.02.224.021.336.032s.236.032.352.032a3.292 3.292 0 00.669-.063c1.76-.351 3.66-.844 3.66-.844l.182.463.442 1.137.362.943c.184.485.369.976.528 1.41.053.144.1.282.149.412a6.533 6.533 0 01.308.984c0 .22-.275 1.238-.481 2.09a7.337 7.337 0 00-.223 1.148 65.949 65.949 0 001.822 6.479L9.9 67.781a50.723 50.723 0 0045.17 42.606c.05 0 .1-.006.148-.011.144-.013.291-.032.436-.046a51.71 51.71 0 001.247-.14c.2-.025.406-.056.61-.084.368-.051.738-.1 1.111-.164.231-.037.464-.079.7-.12.354-.062.709-.127 1.067-.2q.369-.072.739-.152.53-.112 1.065-.239c.253-.06.507-.12.763-.185.358-.09.719-.187 1.081-.286.255-.07.51-.14.766-.214.376-.11.753-.228 1.132-.348.247-.078.492-.153.74-.236.418-.139.839-.29 1.26-.443.211-.076.42-.146.632-.226a53.937 53.937 0 001.914-.761A51.408 51.408 0 0094.45 85.289l.022-.037c.464-.788.854-1.5 1.175-2.115.322-.618.574-1.137.761-1.54l.007-.014M71.994 43.347l-.35.361v-.019l.472-.472-.4.412zm10.353-10.388"
|
|
104
|
+
})))), /*#__PURE__*/React__namespace.createElement("path", {
|
|
105
|
+
"data-name": "Path 2687",
|
|
106
|
+
d: "M84.637 22.48c-.13.079-.239.19-.367.272a1.949 1.949 0 01-.767.226.293.293 0 01-.169-.009.256.256 0 01-.092-.09 1.379 1.379 0 01-.1-.178 1.641 1.641 0 01-.064-1.2 2.476 2.476 0 01.841-1.146 2.632 2.632 0 012.618-.465.916.916 0 01.4.3 1.19 1.19 0 01.133.736c-.014.4.108 1.837-.469 1.871-.3.018-.615-.255-.882-.35a1.27 1.27 0 00-1.078.042",
|
|
107
|
+
fill: "#589137"
|
|
108
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
109
|
+
"data-name": "Path 2688",
|
|
110
|
+
d: "M83.947 20.616a2.362 2.362 0 012.045-.493 1.961 1.961 0 01.83.656l-.1-.791a1.367 1.367 0 00-.188-.1 2.634 2.634 0 00-2.618.465 2.469 2.469 0 00-.841 1.146 1.641 1.641 0 00.064 1.2s-.026-1.562.808-2.085",
|
|
111
|
+
fill: "#76ba4a"
|
|
112
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
113
|
+
"data-name": "Path 2689",
|
|
114
|
+
d: "M86.182 22.314c-.833-.678-1.62-.481-1.954 0a2.142 2.142 0 01-.874.656.325.325 0 00.149.008 1.944 1.944 0 00.767-.226c.129-.082.237-.193.367-.273a1.278 1.278 0 011.078-.041 3.866 3.866 0 00.8.338 1.024 1.024 0 00-.333-.462",
|
|
115
|
+
fill: "#3d6b21"
|
|
116
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
117
|
+
"data-name": "Path 2690",
|
|
118
|
+
d: "M85.388 14.721c-.15.067-.281.171-.43.241a2.077 2.077 0 01-.849.137.306.306 0 01-.18-.032.282.282 0 01-.085-.108 1.471 1.471 0 01-.088-.2 1.769 1.769 0 01.1-1.3 2.673 2.673 0 011.044-1.111 2.837 2.837 0 012.86-.143.994.994 0 01.388.37 1.29 1.29 0 01.043.805c-.07.427-.134 1.978-.756 1.936-.318-.021-.622-.356-.9-.494a1.365 1.365 0 00-1.157-.1",
|
|
119
|
+
fill: "#f28c7d"
|
|
120
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
121
|
+
"data-name": "Path 2691",
|
|
122
|
+
d: "M84.9 12.635a2.541 2.541 0 012.252-.249 2.11 2.11 0 01.8.812v-.858a1.455 1.455 0 00-.187-.135 2.839 2.839 0 00-2.86.142 2.657 2.657 0 00-1.054 1.112 1.766 1.766 0 00-.1 1.294s.184-1.672 1.146-2.118",
|
|
123
|
+
fill: "#f6bbb5"
|
|
124
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
125
|
+
"data-name": "Path 2692",
|
|
126
|
+
d: "M87.061 14.754c-.8-.838-1.666-.734-2.088-.265a2.315 2.315 0 01-1.023.582.355.355 0 00.159.029 2.1 2.1 0 00.85-.138c.148-.07.279-.174.429-.241a1.366 1.366 0 011.157.1 4.2 4.2 0 00.81.469 1.106 1.106 0 00-.294-.538",
|
|
127
|
+
fill: "#883f36"
|
|
128
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
129
|
+
"data-name": "Path 2693",
|
|
130
|
+
d: "M97.367 72.655s4.195 1.429 8.488 7.988A51.379 51.379 0 0179.5 106.534a50.629 50.629 0 01-37.468.935c-1.693-.673 1.889-15.216 1.889-15.216l12.074-14.061 10.956-8.822s24.58 1.877 30.416 3.285",
|
|
131
|
+
fill: "#9cd0e1"
|
|
132
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
133
|
+
"data-name": "Path 2694",
|
|
134
|
+
d: "M47.15 103.532c-.54-4.465.381-12.72.785-15.951l-4.009 4.671s-3.582 14.543-1.888 15.217a40.765 40.765 0 005.984 1.829c-.286-1.576-.6-3.543-.872-5.766",
|
|
135
|
+
fill: "#5da6c5"
|
|
136
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
137
|
+
"data-name": "Path 2695",
|
|
138
|
+
d: "M98.62 73.275a16.955 16.955 0 00-6.231 2.875s-12.837 8.8-19.407 17.15-6.851 10.23-12.107 7.977a9.783 9.783 0 01-5.912-7.133 46.139 46.139 0 00-2.957 15.9 50.72 50.72 0 0053.849-29.4 22.6 22.6 0 00-7.235-7.368",
|
|
139
|
+
fill: "#c5e7eb"
|
|
140
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
141
|
+
"data-name": "Path 2696",
|
|
142
|
+
d: "M97.367 72.655c-1.778-.429-5.3-.9-9.329-1.351.007 0 7.377 4.455 10.848 8.908a32.2 32.2 0 013.848 6.3 39.683 39.683 0 003.121-5.868c-4.293-6.559-8.488-7.988-8.488-7.988",
|
|
143
|
+
fill: "#6ab2cf"
|
|
144
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
145
|
+
"data-name": "Path 2697",
|
|
146
|
+
d: "M86.98 14.129a9.454 9.454 0 00.89 1.744c.559.84 1.183 1.6 1.183 1.6s.24.267-.071.381S86 19.8 85.666 20.772s1.881 3.28 1.881 3.28l.751.762a.243.243 0 01.053.3 6.6 6.6 0 00-.726 2.289 1.825 1.825 0 00.881 1.685 5.173 5.173 0 003.077.955s.206-.048.115.2a5.249 5.249 0 00-.413 1.563 1.274 1.274 0 00.246.724.47.47 0 01-.157.421c-.211.228-10.352 10.388-10.352 10.388l-2.97 3.06L73.4 63.128 61.579 77.769l1.455 1.775S81.851 81.63 95.3 75.019s21.139-14.073 22.736-17.733-1.338-29.441-3.308-36.928a22.8 22.8 0 00-6.087-5.241c-4.194-2.616-7.921-4.781-7.921-4.781s-7.6-.573-9.431-.181-4.389 2.136-4.309 3.974",
|
|
147
|
+
fill: "#5c98b9"
|
|
148
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
149
|
+
"data-name": "Path 2698",
|
|
150
|
+
d: "M76.176 67.931l-5.549-1.363-9.048 11.2 1.455 1.775a80.653 80.653 0 0017.582-.368 34.359 34.359 0 01-3.41-4.158c-2.041-3.032-1.03-7.088-1.03-7.088",
|
|
151
|
+
fill: "#4d87a0"
|
|
152
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
153
|
+
"data-name": "Path 2699",
|
|
154
|
+
d: "M62.073 78.839c10.792 2.471 22.264.052 32.56-3.532.029-.012.049.036.018.047-10.37 3.932-21.783 6.671-32.864 4.443a.5.5 0 11.286-.958",
|
|
155
|
+
fill: "#335e70"
|
|
156
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
157
|
+
"data-name": "Path 2700",
|
|
158
|
+
d: "M107.12 14.177c-3.535-2.175-6.4-3.841-6.4-3.841s-7.6-.573-9.431-.181-4.386 2.136-4.305 3.974a9.454 9.454 0 00.89 1.744c.558.84 1.183 1.6 1.183 1.6s.24.267-.071.381S86 19.8 85.666 20.772s1.882 3.28 1.882 3.28l.751.762a.242.242 0 01.052.3 6.621 6.621 0 00-.725 2.29 1.823 1.823 0 00.881 1.685 5.182 5.182 0 003.077.954s.206-.048.115.2a5.226 5.226 0 00-.413 1.564 1.277 1.277 0 00.245.723.469.469 0 01-.156.422c-.212.227-10.353 10.387-10.353 10.387l-2.969 3.06L73.4 63.128l-5.86 7.256a17.272 17.272 0 007.68-.782s17.05-6.488 24.722-14.048c0 0 7.954-20.417 8.518-28.876a39.818 39.818 0 00-1.34-12.5",
|
|
159
|
+
fill: "#72aec9"
|
|
160
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
161
|
+
"data-name": "Path 2701",
|
|
162
|
+
d: "M108.459 26.678a39.818 39.818 0 00-1.34-12.5c-3.535-2.174-6.4-3.84-6.4-3.84s-7.6-.575-9.431-.181-4.388 2.135-4.308 3.973a9.4 9.4 0 00.891 1.743c.558.841 1.182 1.6 1.182 1.6s.241.269-.071.383S86 19.8 85.666 20.772s1.881 3.28 1.881 3.28l.751.762a.242.242 0 01.053.3 6.59 6.59 0 00-.726 2.289 1.823 1.823 0 00.882 1.684 5.166 5.166 0 003.076.956s.206-.05.116.2a5.234 5.234 0 00-.414 1.563 1.27 1.27 0 00.246.724.472.472 0 01-.157.422 6233.54 6233.54 0 01-10.352 10.387l-2.969 3.06L73.4 63.128l-5.861 7.256a17.264 17.264 0 007.681-.783s17.044-6.488 24.717-14.047c0 0 7.954-20.417 8.517-28.876",
|
|
163
|
+
fill: "#6ab2cf"
|
|
164
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
165
|
+
"data-name": "Path 2702",
|
|
166
|
+
d: "M34.479 19.557a50.578 50.578 0 00-4.787 11.826l1.69 3.8s-3.8 1.2-4.364 1.759a3.886 3.886 0 00-.775 4.364 4.9 4.9 0 005 2.816c1.76-.352 3.66-.845 3.66-.845s1.971 5 1.971 5.35-.7 2.745-.7 3.238 2.182 8.306 2.957 9.291S60.946 52.5 60.946 52.5l19.568-8.657 2.393-2.394s-.844-6.264-3.66-10.769-11.4-6.335-11.4-6.335-11.966-13.515-20.2-10.277-13.163 5.49-13.163 5.49",
|
|
167
|
+
fill: "#87d3e8"
|
|
168
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
169
|
+
"data-name": "Path 2703",
|
|
170
|
+
d: "M75.225 26.117c.644.761 4.344 4.827 4.493 6.489s-8.289-1.5-8.289-1.5",
|
|
171
|
+
fill: "#97c0c6"
|
|
172
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
173
|
+
"data-name": "Path 2704",
|
|
174
|
+
d: "M71.429 31.1s-2.565-8.463.832-10.532a62.165 62.165 0 002.964 5.548",
|
|
175
|
+
fill: "#97c0c6"
|
|
176
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
177
|
+
"data-name": "Path 2705",
|
|
178
|
+
d: "M34.775 19.754s.585 2.091 4.1 3.217 5 .933 5 .933a12.305 12.305 0 004.012-6.177c.81-3.66-.818-3.434-.818-3.434z",
|
|
179
|
+
fill: "#72acc7"
|
|
180
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
181
|
+
"data-name": "Path 2706",
|
|
182
|
+
d: "M35.852 20.214a11.555 11.555 0 007.532 1.842s3.353-3.754 3.506-5.572-12.27 2.134-11.038 3.73",
|
|
183
|
+
fill: "#2a586c"
|
|
184
|
+
}), /*#__PURE__*/React__namespace.createElement("g", {
|
|
185
|
+
"data-name": "Group 1973"
|
|
186
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
187
|
+
"data-name": "Group 1972",
|
|
188
|
+
opacity: 0.5
|
|
189
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
190
|
+
"data-name": "Group 1971",
|
|
191
|
+
clipPath: "url(#bear_svg__c)"
|
|
192
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
193
|
+
"data-name": "Path 2707",
|
|
194
|
+
d: "M29.693 31.383l.814 1.831s4.282-11.679 4.793-12.532a2.037 2.037 0 00.135-1.553c-.625.277-.957.428-.957.428a50.62 50.62 0 00-4.786 11.826",
|
|
195
|
+
fill: "#fff"
|
|
196
|
+
})))), /*#__PURE__*/React__namespace.createElement("path", {
|
|
197
|
+
"data-name": "Path 2708",
|
|
198
|
+
d: "M39.037 19.754s.933 1.164 1.355 1.118 4.7-2.077 4.7-2.077a2.162 2.162 0 001.024-1.648c.211-1.267-7.426 2.363-7.074 2.607",
|
|
199
|
+
fill: "#123544"
|
|
200
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
201
|
+
"data-name": "Path 2709",
|
|
202
|
+
d: "M40.24 20.672s-.176.129-.211.059a4.477 4.477 0 01.786-1.549 6.145 6.145 0 013.05-.915 5.882 5.882 0 011.244.246c.176.106.11.293-.021.282s-1.845.023-1.845.023l-1.337.311-.821.6z",
|
|
203
|
+
fill: "#081d26"
|
|
204
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
205
|
+
"data-name": "Path 2710",
|
|
206
|
+
d: "M40.24 20.672a5.009 5.009 0 011.666-1.543 4.8 4.8 0 011.742-.346l1.056.093h.359l-.57.852-1.2.481-1.812.739-.69.172z",
|
|
207
|
+
fill: "#f5fbfb"
|
|
208
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
209
|
+
"data-name": "Path 2711",
|
|
210
|
+
d: "M40.392 20.871a2.98 2.98 0 011.7-1.572 7 7 0 012.945-.34l.07-.235a10.761 10.761 0 00-2.628 0 3.259 3.259 0 00-1.795 1.185 3.2 3.2 0 00-.5.716c0 .058-.012.258.211.246",
|
|
211
|
+
fill: "#97c0c6"
|
|
212
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
213
|
+
"data-name": "Path 2712",
|
|
214
|
+
d: "M41.636 20.73a1.158 1.158 0 01.481-1.314c.751-.446 1.267.481 1.267.481a5.669 5.669 0 01-.833.528 7.759 7.759 0 01-.915.305",
|
|
215
|
+
fill: "#417993"
|
|
216
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
217
|
+
"data-name": "Path 2713",
|
|
218
|
+
d: "M41.976 20.519a.612.612 0 01.317-.7A.49.49 0 0143 20s-.786.551-1.021.516",
|
|
219
|
+
fill: "#081d26"
|
|
220
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
221
|
+
"data-name": "Path 2714",
|
|
222
|
+
d: "M40.533 20.872a2.84 2.84 0 01.34.058 1.694 1.694 0 001.1-.41 4.717 4.717 0 011.607-.681 1.433 1.433 0 001-.543c.26-.353.223-.36.458-.337s-.211.616-.352.771-.176.273-1.361.707-1.6.622-1.842.681-1.056.071-.95-.246",
|
|
223
|
+
fill: "#081d26"
|
|
224
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
225
|
+
"data-name": "Path 2715",
|
|
226
|
+
d: "M47.227 16.651s-6.835 2.807-8.19 3.1-4.029 1.282-4.733-.161 1.143-2.763 3.73-3.133l2.587-.369 5-3.837a12.834 12.834 0 012.912 0c1.382.194.371 2.5.371 2.5s-.032 1.1-1.675 1.893",
|
|
227
|
+
fill: "#517c8a"
|
|
228
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
229
|
+
"data-name": "Path 2716",
|
|
230
|
+
d: "M40.8 16.354s-4.523.651-5.455 1.408a1.74 1.74 0 00-.739 1.83c.07.246 1.443.821 3.713.138s8.13-3.077 8.13-3.077l1.02-.39.951-3.692-2.693-.194z",
|
|
231
|
+
fill: "#d5eef2"
|
|
232
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
233
|
+
"data-name": "Path 2717",
|
|
234
|
+
d: "M36.375 17.292a3.556 3.556 0 00-1.033.47 1.744 1.744 0 00-.74 1.83c.018.063.122.147.3.225a2.2 2.2 0 011.472-2.125z",
|
|
235
|
+
fill: "#fff"
|
|
236
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
237
|
+
"data-name": "Path 2718",
|
|
238
|
+
d: "M40.8 16.354h.493l4.962-3.766a3.463 3.463 0 00-.385-.2l-.143-.01z",
|
|
239
|
+
fill: "#fff"
|
|
240
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
241
|
+
"data-name": "Path 2719",
|
|
242
|
+
d: "M45.724 12.377a2.968 2.968 0 011.966 2.563 2.059 2.059 0 00.054.243l.672-2.612z",
|
|
243
|
+
fill: "#97c0c6"
|
|
244
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
245
|
+
"data-name": "Path 2720",
|
|
246
|
+
d: "M80.515 43.842l2.393-2.393a35.57 35.57 0 00-1.825-6.981l-29.357 6.206 5.717 13.408c2.095-.937 3.5-1.582 3.5-1.582z",
|
|
247
|
+
fill: "#6ab2cf"
|
|
248
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
249
|
+
"data-name": "Path 2721",
|
|
250
|
+
d: "M67.07 47.009a51.686 51.686 0 01-15.345-6.335S50.176 39.2 47.15 16.952c0 0 1.337-5.349 2.147-6.37a27.269 27.269 0 013.484-2.991s8.552-4.752 12.283-.775l4.4 5.35a20.852 20.852 0 011.9 3.027c.739 1.513.95 6.264.95 6.264s.669 5.209.634 5.315.442 1.274 3.977 3.731 4.793 3.833 4.631 5.3a42.688 42.688 0 01-1.147 6.143c-.282.457-2.745 1.337-2.745 1.337z",
|
|
251
|
+
fill: "#d5eef2"
|
|
252
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
253
|
+
"data-name": "Path 2722",
|
|
254
|
+
d: "M36.1 41.308s-.352.141-4.223 1.76a4.233 4.233 0 01-5.543-1.61 4.874 4.874 0 004.909 2.666c1.76-.352 3.66-.845 3.66-.845s1.971 5 1.971 5.35-.7 2.745-.7 3.237 2.183 8.307 2.957 9.292c.073.093.33.091.733.01l2.927-5.078z",
|
|
255
|
+
fill: "#6ab2cf"
|
|
256
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
257
|
+
"data-name": "Path 2723",
|
|
258
|
+
d: "M33.236 37.155s1.29 0 1.642 2.6l-2.674 1.2a1.742 1.742 0 01-1.807-.633c-.845-.962.469-2.042.985-2.347a18.762 18.762 0 011.854-.821",
|
|
259
|
+
fill: "#73adc7"
|
|
260
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
261
|
+
"data-name": "Path 2724",
|
|
262
|
+
d: "M50.693 10.524a22.9 22.9 0 012.956-2.393l.238-1.087c-.679.314-1.106.547-1.106.547a27.216 27.216 0 00-3.481 2.992c-.81 1.02-2.147 6.37-2.147 6.37l2.135-2.675s.563-2.815 1.408-3.754",
|
|
263
|
+
fill: "#fff"
|
|
264
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
265
|
+
"data-name": "Path 2725",
|
|
266
|
+
d: "M57.638 16.483a17.14 17.14 0 013.238-2.593 24.48 24.48 0 014.908-2.238s2.742.327 3.68 1.688 1.439 1.6 1.54 2.44 1.463 11.4 1.463 11.4a4.574 4.574 0 002.482 2.581 12.7 12.7 0 013.1 2.071l1.453 1.473a4.832 4.832 0 01-2.769 2.879c-2.3 1.039-6.053 2.288-6.053 2.288a19.844 19.844 0 01-6.812-2.658 10.92 10.92 0 01-3.602-3.514s-4.083-9.667-2.628-15.815",
|
|
267
|
+
fill: "#270a27"
|
|
268
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
269
|
+
"data-name": "Path 2726",
|
|
270
|
+
d: "M58.708 18.842l-1.071-1.01.809-2.323 3.483-2.322 4.507-1.795h1.619l1.129.435.574.753-2.935.985-2.639 1.381-1.514.775-1.478.915z",
|
|
271
|
+
fill: "#c8d9dc"
|
|
272
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
273
|
+
"data-name": "Path 2727",
|
|
274
|
+
d: "M57.638 20.214s4.341-2.228 7.45-.821 5.177 5.563 5.859 6.727.44 5.99.44 5.99l-10.644 1.2s-3.1-7.252-3.1-13.094",
|
|
275
|
+
fill: "#170516"
|
|
276
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
277
|
+
"data-name": "Path 2728",
|
|
278
|
+
d: "M58.2 25.071a4.288 4.288 0 013.942-1.079c2.581.469 5.725 8.638 5.725 8.638l-6.992.982s-2.6-5.854-2.675-8.184"
|
|
279
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
280
|
+
"data-name": "Path 2729",
|
|
281
|
+
d: "M60.876 32.72s.456-.751 3-1.314c0 0 1.086-1.971 4.558-1.924s9.069 4.7 9.532 5.543-1.013 1.682-1.013 1.682l-3.732 1.767s-4.486.035-7.555-1.765a18.408 18.408 0 01-4.787-3.989",
|
|
282
|
+
fill: "#702b4f"
|
|
283
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
284
|
+
"data-name": "Path 2730",
|
|
285
|
+
d: "M80.511 33.214c-2.448-1.9-4.334-3.136-5.384-4.053a19.738 19.738 0 01-2.18-2.388l-1.02-9.257s-1.149-3.75-2.464-5.349a27.5 27.5 0 00.938 3.1c.329.657 1.267 9.338 1.361 11.168s2.394 3.329 3.238 3.939 5.4 3.15 5.4 3.15c-.939 1.976-6.429 4.546-6.429 4.546-7.3.231-13.093-5.349-13.093-5.349a65.648 65.648 0 01-2.436-7.743c-.653-3.1-.755-7.368 0-8.613s6-4.2 7.786-4.668a4.386 4.386 0 013.238.47 3.239 3.239 0 00-4.153-1.2c-1.76.563-6.828 3.308-7.673 4.435 0 0-.7.622-.633 3.725s1.478 11.762 3.1 14.084 9.25 6.889 14.993 6.968a16 16 0 006.456-4.379s1.4-.687-1.045-2.585",
|
|
286
|
+
fill: "#123544"
|
|
287
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
288
|
+
"data-name": "Path 2731",
|
|
289
|
+
d: "M80.219 32.63s.387.846.156 1.076-3.275 3.343-3.275 3.343l-4.558 1.425-2.006-.387-.44-.326L70 37.4l.676-.559 2.537.125.085.121 2.059-.844.37.035.281-.211 1.32-.792.433-.07.218.087-.32-.314.6-.724.264-.9.684-.253z",
|
|
290
|
+
fill: "#c8d9dc"
|
|
291
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
292
|
+
"data-name": "Path 2732",
|
|
293
|
+
d: "M70.09 37.67s-1.049-3.026-.3-3.448c0 0 1.182-.359 3.354 2.646.05.07.1.142.154.216 0 0-.088-.932.475-1.284s1.689.193 1.953.475c0 0-.44-.986 0-1.373s2.252.387 2.252.387a2.164 2.164 0 01-.7-1 .581.581 0 01.422-.763s-1.126-2.14-.933-2.879 1.725.351 2.5.9 1.337 1.566 1.021 1.83a2.534 2.534 0 01-1.426.317s.511.722-.14.986l-.757.351-.581.511a3.541 3.541 0 01-1.478.7c-.722.088-.616.4-1.443.668s-1.073.018-1.073.018a1.134 1.134 0 00-.546.229 3.74 3.74 0 01-2.752.515",
|
|
294
|
+
fill: "#f5fbfb"
|
|
295
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
296
|
+
"data-name": "Path 2733",
|
|
297
|
+
d: "M60.876 32.72s5.8 5.581 13.093 5.35c0 0 5.49-2.571 6.428-4.547l.736 1.068-2.554 3.338-4.892 1.724-3.52-1.179-7.813-3.674z",
|
|
298
|
+
fill: "#123544"
|
|
299
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
300
|
+
"data-name": "Path 2734",
|
|
301
|
+
d: "M67.563 13.75s1.423 2.409 2.217 2.323.969-2.344-.316-3.907c0 0-.81-.739-2.112.775 0 0-.81-.74-1.408-.528s-.809 1.153-.809 1.153-.669-.907-1.338-.414a1.237 1.237 0 00-.493 1.232 1.356 1.356 0 00-1.374.211c-.843.528-.456 1.2-.456 1.2a2.837 2.837 0 00-2.448.945 2.338 2.338 0 00-.543 1.906s2.1 1.987 3.273 1.493.174-3.6.174-3.6.917.951 1.55.6.247-1.69.247-1.69.774.951 1.548.458.352-1.513.352-1.513.88 1.126 1.478.844a1.186 1.186 0 00.458-1.478",
|
|
302
|
+
fill: "#f5fbfb"
|
|
303
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
304
|
+
"data-name": "Path 2735",
|
|
305
|
+
d: "M62.335 11.2a4.225 4.225 0 01.6 1.181",
|
|
306
|
+
fill: "none",
|
|
307
|
+
stroke: "#123544",
|
|
308
|
+
strokeMiterlimit: 10,
|
|
309
|
+
strokeWidth: 0.5
|
|
310
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
311
|
+
"data-name": "Path 2736",
|
|
312
|
+
d: "M53.273 4.916a3.173 3.173 0 00-.825 2.924c.508 1.581 5.879 4.924 10.092 3.552a4.63 4.63 0 002.488-3.942c.352-3.1-.985-3.836-.985-3.836a14.634 14.634 0 00-10.77 1.3",
|
|
313
|
+
fill: "#2a586c"
|
|
314
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
315
|
+
"data-name": "Path 2737",
|
|
316
|
+
d: "M56.019 7.42c-.544-.059-3.137.188-3.606.234.015.062.015.123.036.186.387 1.2 3.6 3.426 6.966 3.812-.374-.592-2.8-4.167-3.4-4.232",
|
|
317
|
+
fill: "#123544"
|
|
318
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
319
|
+
"data-name": "Path 2738",
|
|
320
|
+
d: "M64.893 4.971c-.026.015-.874.512-.885.754a20.643 20.643 0 000 4.43 5.387 5.387 0 001.022-2.7 6.306 6.306 0 00-.135-2.479",
|
|
321
|
+
fill: "#123544"
|
|
322
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
323
|
+
"data-name": "Path 2739",
|
|
324
|
+
d: "M64.476 4.058a1.618 1.618 0 00-.433-.444 14.64 14.64 0 00-10.77 1.3 3.385 3.385 0 00-.912 2.47l1.792-2.154a21.722 21.722 0 0110.323-1.172",
|
|
325
|
+
fill: "#577c8b"
|
|
326
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
327
|
+
"data-name": "Path 2740",
|
|
328
|
+
d: "M59.406 11.657a49.835 49.835 0 00-3.238-3.876c-.164-.11-.14-.124-.363-.126-1.122.012-2.258.082-3.39.025l-.005-.053a12.341 12.341 0 013.754-.413 13.575 13.575 0 013.242 4.443",
|
|
329
|
+
fill: "#417993"
|
|
330
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
331
|
+
"data-name": "Path 2741",
|
|
332
|
+
d: "M64.9 4.983c-.21.283-.5.5-.681.771.011-.068-.015.2-.015.21A36.174 36.174 0 0064 10.157a12.74 12.74 0 01-.22-4.226.737.737 0 01.11-.444 1.456 1.456 0 011.012-.5",
|
|
333
|
+
fill: "#417993"
|
|
334
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
335
|
+
"data-name": "Path 2742",
|
|
336
|
+
d: "M53.349 5.016c-1.655 1.814-.938 3.484 1.012 4.659 2.39 1.549 5.521 2.555 8.308 1.59 1.766-.959 2.429-3.1 2.366-5a3.362 3.362 0 00-1.01-2.594 14.436 14.436 0 00-10.676 1.345m-.151-.2a14.832 14.832 0 0110.863-1.257 3.378 3.378 0 011.067 2.7c.073 1.943-.6 4.121-2.4 5.109-2.847 1.006-6 0-8.449-1.564C52.225 8.6 51.5 6.756 53.2 4.816",
|
|
337
|
+
fill: "#417993"
|
|
338
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
339
|
+
"data-name": "Path 2743",
|
|
340
|
+
d: "M43 25.294a11.071 11.071 0 00.211 4.4 4.579 4.579 0 01-1.035-3.423c.082-.4.307-.913.824-.976",
|
|
341
|
+
fill: "#589bbb"
|
|
342
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
343
|
+
"data-name": "Path 2744",
|
|
344
|
+
d: "M34.721 24.655a11.059 11.059 0 001.738 4.045 4.579 4.579 0 01-2.169-2.844 1.092 1.092 0 01.431-1.2",
|
|
345
|
+
fill: "#589bbb"
|
|
346
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
347
|
+
"data-name": "Path 2745",
|
|
348
|
+
d: "M32.27 25.036a11.086 11.086 0 001.119 4.26 4.582 4.582 0 01-1.723-3.134 1.093 1.093 0 01.6-1.126",
|
|
349
|
+
fill: "#589bbb"
|
|
350
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
351
|
+
"data-name": "Path 2746",
|
|
352
|
+
d: "M41.056 26.394a5.382 5.382 0 00.106 2.2c-.387-.526-.981-1.85-.106-2.2",
|
|
353
|
+
fill: "#589bbb"
|
|
354
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
355
|
+
"data-name": "Path 2747",
|
|
356
|
+
d: "M32.39 30.564a5.381 5.381 0 00.825 2.043c-.539-.369-1.536-1.423-.825-2.043",
|
|
357
|
+
fill: "#589bbb"
|
|
358
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
359
|
+
"data-name": "Path 2748",
|
|
360
|
+
d: "M32.852 22.734a5.383 5.383 0 00.825 2.042c-.539-.369-1.536-1.423-.825-2.042",
|
|
361
|
+
fill: "#589bbb"
|
|
362
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
363
|
+
"data-name": "Path 2749",
|
|
364
|
+
d: "M44.374 24.76a4.013 4.013 0 00.21 1.629c-.325-.388-.839-1.289-.21-1.629",
|
|
365
|
+
fill: "#589bbb"
|
|
366
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
367
|
+
"data-name": "Path 2750",
|
|
368
|
+
d: "M27.8 37.409a6.921 6.921 0 01.674.944c.215.356.556.554.734.963-.729-.041-1.958-1.174-1.408-1.907",
|
|
369
|
+
fill: "#a8dce8"
|
|
370
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
371
|
+
"data-name": "Path 2751",
|
|
372
|
+
d: "M29.574 37.366c.334.1.532.234.492.612-.392.215-.716-.282-.492-.612",
|
|
373
|
+
fill: "#a8dce8"
|
|
374
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
375
|
+
"data-name": "Path 2752",
|
|
376
|
+
d: "M26.869 39.827A9.177 9.177 0 0029 40.8a1.481 1.481 0 01-2.132-.969",
|
|
377
|
+
fill: "#a8dce8"
|
|
378
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
379
|
+
"data-name": "Path 2753",
|
|
380
|
+
d: "M60.638 4.632a3.751 3.751 0 01.091 1.2",
|
|
381
|
+
fill: "none",
|
|
382
|
+
stroke: "#417993",
|
|
383
|
+
strokeLinecap: "round",
|
|
384
|
+
strokeMiterlimit: 10,
|
|
385
|
+
strokeWidth: 0.25
|
|
386
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
387
|
+
"data-name": "Path 2754",
|
|
388
|
+
d: "M62.417 4.188a3.8 3.8 0 01.232 1.179",
|
|
389
|
+
fill: "none",
|
|
390
|
+
stroke: "#417993",
|
|
391
|
+
strokeLinecap: "round",
|
|
392
|
+
strokeMiterlimit: 10,
|
|
393
|
+
strokeWidth: 0.25
|
|
394
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
395
|
+
"data-name": "Path 2755",
|
|
396
|
+
d: "M63.144 4.309a3.789 3.789 0 01.164.58",
|
|
397
|
+
fill: "none",
|
|
398
|
+
stroke: "#417993",
|
|
399
|
+
strokeLinecap: "round",
|
|
400
|
+
strokeMiterlimit: 10,
|
|
401
|
+
strokeWidth: 0.25
|
|
402
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
403
|
+
"data-name": "Path 2756",
|
|
404
|
+
d: "M61.34 4.188a7.174 7.174 0 01.26 1.643",
|
|
405
|
+
fill: "none",
|
|
406
|
+
stroke: "#417993",
|
|
407
|
+
strokeLinecap: "round",
|
|
408
|
+
strokeMiterlimit: 10,
|
|
409
|
+
strokeWidth: 0.25
|
|
410
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
411
|
+
"data-name": "Path 2757",
|
|
412
|
+
d: "M11.393 71.512s11.144 1.236 19.848-5.521 12.6-11.9 17.176-14.724 6.546-1.325 6.546-1.325a11.755 11.755 0 0112.107-2.933s6.392-7.391 13.379-4.294c0 0 2.768 9.855-2.4 21.68s-13.242 13.8-13.242 13.8S46.1 91.508 42.038 107.469a50.926 50.926 0 01-21.31-15.642c-8.844-11.383-9.335-20.315-9.335-20.315",
|
|
413
|
+
fill: "#405b8b"
|
|
414
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
415
|
+
"data-name": "Path 2758",
|
|
416
|
+
d: "M78.053 64.4c5.164-11.826 2.4-21.681 2.4-21.681-6.987-3.1-13.379 4.295-13.379 4.295a11.756 11.756 0 00-12.107 2.933s-1.971-1.5-6.546 1.325-8.47 7.966-17.175 14.724-19.849 5.521-19.849 5.521.327 5.8 5.077 14.011c20.022 6.289 43.665-4.887 47.99-7.074.221-.164.351-.258.351-.258s8.078-1.97 13.242-13.8",
|
|
417
|
+
fill: "#517db8"
|
|
418
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
419
|
+
"data-name": "Path 2759",
|
|
420
|
+
d: "M14.656 82.084s12.053 3.867 31.635.938c0 0-18.447 6.059-30.369 1.529z",
|
|
421
|
+
fill: "#658bbf"
|
|
422
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
423
|
+
"data-name": "Path 2760",
|
|
424
|
+
d: "M66.951 46.978a11.763 11.763 0 00-11.988 2.964s-1.971-1.5-6.546 1.326-8.471 7.966-17.175 14.723-19.849 5.521-19.849 5.521.031.493.183 1.371c.042.018.077.036.121.053 0 0 8.939 2.815 20.366-5.068S45.578 53.7 52.241 52.57c0 0-4.411 5.538-2.815 6.194S66.695 47.69 66.695 47.69z",
|
|
425
|
+
fill: "#658bbf"
|
|
426
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
427
|
+
"data-name": "Path 2761",
|
|
428
|
+
d: "M80.449 44.275a10.668 10.668 0 00.09-1.194c-.054-.236-.09-.365-.09-.365-6.987-3.1-13.379 4.293-13.379 4.293-.041-.013-.079-.018-.119-.031 0 0-6.169 7.845-.82 9.346s13.406-5 14.318-12.049",
|
|
429
|
+
fill: "#658bbf"
|
|
430
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
431
|
+
"data-name": "Path 2762",
|
|
432
|
+
d: "M61.93 59.915L35.723 80.726a24.625 24.625 0 0014.36-1.971c6.945-3.473 10.273-11.213 11.847-18.84",
|
|
433
|
+
fill: "#446dac"
|
|
434
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
435
|
+
"data-name": "Path 2763",
|
|
436
|
+
d: "M37.694 85.231c6.991-2.092 13.985-4.1 20.947-6.236 4.171-.848 8.507-1.724 11.637-4.767a34.408 34.408 0 009.662-31.406l.231.333c-3.856-2.14-8.614-.046-11.512 2.917-3.333 3.028-4.429 7.428-5.486 11.652-1.1 4.288-2.1 8.77-4.294 12.809-2.248 3.951-5.728 7.406-10.053 8.8.887-.694 1.872-1.21 2.738-1.91.478-.4 1.458-1.182 1.9-1.569.341-.356 1.346-1.393 1.705-1.765l1.455-1.971a33.071 33.071 0 003.5-8.281c1.4-4.817 2.075-9.988 4.652-14.418a16.7 16.7 0 019.023-7.668 9.045 9.045 0 017.111.633l.041.235A34.756 34.756 0 0171.16 75.2c-3.3 3.2-7.917 4.213-12.247 4.98-7.023 1.888-14.1 3.6-21.219 5.048",
|
|
437
|
+
fill: "#404d7e"
|
|
438
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
439
|
+
"data-name": "Path 2764",
|
|
440
|
+
d: "M27.283 98.645a50.8 50.8 0 0014.754 8.824c2.35-9.232 9.6-17.573 15.293-22.97h-.006c-17.329 11.464-30.013 14.14-30.041 14.146",
|
|
441
|
+
fill: "#406493"
|
|
442
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
443
|
+
"data-name": "Path 2765",
|
|
444
|
+
d: "M66.741 46.26c-5.627-1.94-11.308 1.519-14.851 5.792-8.937 12.59-23.558 24.842-39.972 21.317a.556.556 0 00-.25.011l.218 1c10.874 2.453 21.939-2.46 30.02-9.553a68.1 68.1 0 0010.928-12.058c3.14-3.773 8.45-7.122 13.487-5.333a.624.624 0 10.42-1.176",
|
|
445
|
+
fill: "#404d7e"
|
|
446
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
447
|
+
"data-name": "Path 2766",
|
|
448
|
+
d: "M54.817 50.42c-4.038-.6-7.852 2.018-10.624 4.765-2.97 2.934-5.863 6.068-9.163 8.766-6.442 5.32-15.149 9.336-23.638 7.577a.016.016 0 010-.032c8.913-.268 16.122-2.54 22.892-8.446 3.232-2.644 6.073-5.718 9.093-8.7 3.038-2.973 7.253-5.7 11.729-4.882a.5.5 0 11-.292.957",
|
|
449
|
+
fill: "#404d7e"
|
|
450
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
451
|
+
"data-name": "Path 2767",
|
|
452
|
+
d: "M87.268 29.575c-.1.116-.168.255-.265.372a1.945 1.945 0 01-.659.453.283.283 0 01-.163.044.26.26 0 01-.115-.057 1.445 1.445 0 01-.155-.137 1.642 1.642 0 01-.433-1.125 2.474 2.474 0 01.444-1.351 2.633 2.633 0 012.344-1.254.932.932 0 01.472.157 1.2 1.2 0 01.355.659c.111.386.672 1.713.134 1.924-.276.109-.664-.051-.947-.059a1.27 1.27 0 00-1.012.374",
|
|
453
|
+
fill: "#fcf09d"
|
|
454
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
455
|
+
"data-name": "Path 2768",
|
|
456
|
+
d: "M86.033 28.017c.631-.756 1.221-1.138 1.792-1.1a1.967 1.967 0 01.992.366l-.341-.72a1.388 1.388 0 00-.21-.04 2.634 2.634 0 00-2.344 1.254 2.474 2.474 0 00-.444 1.351 1.642 1.642 0 00.433 1.125s-.509-1.477.122-2.233",
|
|
457
|
+
fill: "#fdf6c3"
|
|
458
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
459
|
+
"data-name": "Path 2769",
|
|
460
|
+
d: "M88.685 28.939c-1-.387-1.689.045-1.858.606a2.143 2.143 0 01-.628.894.312.312 0 00.145-.039 1.956 1.956 0 00.656-.452c.1-.118.165-.257.265-.373a1.269 1.269 0 011.011-.374 3.914 3.914 0 00.866.073 1.023 1.023 0 00-.46-.335",
|
|
461
|
+
fill: "#ddcf7c"
|
|
462
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
463
|
+
"data-name": "Path 2770",
|
|
464
|
+
d: "M90.743 33.6l.025.014.606-.652a68.28 68.28 0 01-.631.638",
|
|
465
|
+
fill: "#5c98b9"
|
|
466
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
467
|
+
"data-name": "Path 2771",
|
|
468
|
+
d: "M94.037 28.035a2.578 2.578 0 01-1.862-2.049s.631-2.786 1.385-5 .633-5.584-.493-6.278c-.923-.568-4.726-.829-6.073-.9a1.952 1.952 0 00-.014.324 9.479 9.479 0 00.89 1.745c.559.839 1.183 1.6 1.183 1.6s.24.268-.071.381S86 19.8 85.666 20.772s1.881 3.28 1.881 3.28l.751.762a.242.242 0 01.053.3 6.6 6.6 0 00-.726 2.29 1.826 1.826 0 00.882 1.685 5.175 5.175 0 003.076.954s.206-.048.116.2a5.224 5.224 0 00-.414 1.564 1.279 1.279 0 00.246.724.469.469 0 01-.156.42c.947-1.018 2.74-2.948 3.4-3.662.919-.988.851-.916-.741-1.261",
|
|
469
|
+
fill: "#5c98b9"
|
|
470
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
471
|
+
"data-name": "Path 2772",
|
|
472
|
+
d: "M94.037 28.035a2.578 2.578 0 01-1.862-2.049s.631-2.786 1.385-5a9.453 9.453 0 00.437-2.2h-.005a6.791 6.791 0 00-3.084 6.382 5.739 5.739 0 003.177 4.877l.693-.746c.919-.988.851-.916-.741-1.261",
|
|
473
|
+
fill: "#8abfd2"
|
|
474
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
475
|
+
"data-name": "Path 2773",
|
|
476
|
+
d: "M89.456 16.319s.608 1.83 1.663 2.252a2.465 2.465 0 001.9 0 1.476 1.476 0 00-.516-2.58c-2.135-.986-2.722-.718-2.957-.7s-.318.471-.091 1.027",
|
|
477
|
+
fill: "#336685"
|
|
478
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
479
|
+
"data-name": "Path 2774",
|
|
480
|
+
d: "M87.467 21.876s.392-.9 2.456-.671 2.37 1.731 1.807 2.388-2.285 1.47-4.263-1.717",
|
|
481
|
+
fill: "#336685"
|
|
482
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
483
|
+
"data-name": "Path 2775",
|
|
484
|
+
d: "M92.846 27.085c-2.124-1.158-3.39 1.3-3.39 1.3a2.5 2.5 0 003.048.656s.676-.106.948-1.214z",
|
|
485
|
+
fill: "#336685"
|
|
486
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
487
|
+
"data-name": "Path 2776",
|
|
488
|
+
d: "M89.219 17.871c-1.206.852-2.78 1.63-3.427 3 .186 1.484 1.535 2.679 2.515 3.752.272.329.716.324 1.149.538a1.239 1.239 0 01-.7.027c-.7-.163-1.1-.877-1.584-1.351-.7-.971-2.334-2.426-1.319-3.671a14.037 14.037 0 013.221-2.542l.148.243",
|
|
489
|
+
fill: "#487a92"
|
|
490
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
491
|
+
"data-name": "Path 2777",
|
|
492
|
+
d: "M88.585 25a6.124 6.124 0 00-.756 2.783c.387 1.6 2.663 2 3.915 2.095.253-.056.5-.053.76-.119a.99.99 0 01-.695.443c-3.643-.161-5.6-1.785-3.5-5.351l.28.149",
|
|
493
|
+
fill: "#487a92"
|
|
494
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
495
|
+
"data-name": "Path 2778",
|
|
496
|
+
d: "M91.851 30.075c-.163.835-.7 1.819-.062 2.553l-.1.184c-1.138-.534-.365-1.991.009-2.8l.149.059",
|
|
497
|
+
fill: "#487a92"
|
|
498
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
499
|
+
"data-name": "Path 2779",
|
|
500
|
+
d: "M80.551 43.439c5.64-5.613 11.292-11.2 16.816-16.927-5.154 6.074-10.775 11.71-16.439 17.306l-.377-.379",
|
|
501
|
+
fill: "#487a92"
|
|
502
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
503
|
+
"data-name": "Path 2780",
|
|
504
|
+
d: "M95.643 28.509a3.884 3.884 0 01-3.664-2.435 22.247 22.247 0 011.064-4.055c.458-1.253 1.238-2.461 1.053-3.839-.012-.034.048-.054.054-.014a4.413 4.413 0 01-.205 2.02 25.749 25.749 0 00-1.557 5.838l-.016-.125a4.166 4.166 0 001.265 1.694 3.223 3.223 0 001.994.659.129.129 0 01.012.257",
|
|
505
|
+
fill: "#487a92"
|
|
506
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
507
|
+
"data-name": "Path 2781",
|
|
508
|
+
d: "M100.716 10.336s-7.6-.573-9.431-.181-4.385 2.136-4.305 3.974c0 0 .1.258.267.622.628-1.55 1.568-2.445 4.284-3.546 3.209-1.3 9.972-.133 10.643-.012-.911-.539-1.458-.857-1.458-.857",
|
|
509
|
+
fill: "#d5eef2"
|
|
510
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
511
|
+
"data-name": "Path 2782",
|
|
512
|
+
d: "M115.411 23.5a5.552 5.552 0 00.188 1.014c-.063-.35-.126-.687-.188-1.014",
|
|
513
|
+
fill: "#c0d8e4"
|
|
514
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
515
|
+
"data-name": "Path 2783",
|
|
516
|
+
d: "M116.812 53.321a21.253 21.253 0 01-2.406 8.72 17.733 17.733 0 003.626-4.755c1.147-2.628-.043-16.663-1.535-27.14a180.044 180.044 0 01.315 23.175",
|
|
517
|
+
fill: "#c0d8e4"
|
|
518
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
519
|
+
"data-name": "Path 2784",
|
|
520
|
+
d: "M90.768 33.612l.606-.652a68.28 68.28 0 01-.631.638z",
|
|
521
|
+
fill: "none",
|
|
522
|
+
stroke: "#487a92",
|
|
523
|
+
strokeLinecap: "round",
|
|
524
|
+
strokeLinejoin: "round",
|
|
525
|
+
strokeWidth: 0.25
|
|
526
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
527
|
+
"data-name": "Path 2785",
|
|
528
|
+
d: "M104.729 63.51c1.041-1.612 2.687-3.79 3.8-5.379a9.5 9.5 0 01-3.8 5.379",
|
|
529
|
+
fill: "#8abfd2"
|
|
530
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
531
|
+
"data-name": "Path 2786",
|
|
532
|
+
d: "M110.42 56.653c.678-1.795 1.829-4.271 2.583-6.059a9.5 9.5 0 01-2.583 6.059",
|
|
533
|
+
fill: "#8abfd2"
|
|
534
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
535
|
+
"data-name": "Path 2787",
|
|
536
|
+
d: "M105.188 58.322c.738-1.139 1.9-2.677 2.688-3.8a6.769 6.769 0 01-2.688 3.8",
|
|
537
|
+
fill: "#8abfd2"
|
|
538
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
539
|
+
"data-name": "Path 2788",
|
|
540
|
+
d: "M87.317 55.708c1.377-2.14 3.524-4.965 4.991-7.064-.568 2.928-2.706 5.288-4.991 7.064",
|
|
541
|
+
fill: "#8abfd2"
|
|
542
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
543
|
+
"data-name": "Path 2789",
|
|
544
|
+
d: "M94.791 46.7c.895-2.382 2.4-5.6 3.392-7.956.061 2.981-1.532 5.738-3.392 7.956",
|
|
545
|
+
fill: "#8abfd2"
|
|
546
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
547
|
+
"data-name": "Path 2790",
|
|
548
|
+
d: "M87.92 48.9c1.112-1.711 2.373-3.325 3.53-4.995a8.844 8.844 0 01-3.53 4.995",
|
|
549
|
+
fill: "#8abfd2"
|
|
550
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
551
|
+
"data-name": "Path 2791",
|
|
552
|
+
d: "M89.712 18.548c-.98-1.447-2.275-2.733-2.86-4.4-.053-1.815 2-3.107 3.43-3.851 1.412-.839 3.671-.618 5.241-.636a42.76 42.76 0 015.445.24 119.928 119.928 0 0110.727 7.375 12.27 12.27 0 013.029 3.079 13.676 13.676 0 00-3.235-2.806c-2.007-1.455-5.075-3.412-7.17-4.813-1.208-.788-2.4-1.6-3.6-2.4-1.728-.183-3.47-.2-5.206-.252-1.725.023-3.526-.31-5.092.528-1.347.668-3.3 1.865-3.308 3.507.507 1.6 1.773 2.96 2.6 4.429",
|
|
553
|
+
fill: "#487a92"
|
|
554
|
+
}), /*#__PURE__*/React__namespace.createElement("g", {
|
|
555
|
+
"data-name": "Group 1976"
|
|
556
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
557
|
+
"data-name": "Group 1975",
|
|
558
|
+
opacity: 0.5
|
|
559
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
560
|
+
"data-name": "Group 1974",
|
|
561
|
+
clipPath: "url(#bear_svg__d)"
|
|
562
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
563
|
+
"data-name": "Path 2792",
|
|
564
|
+
d: "M14.127 72.561a88.171 88.171 0 0037.361.488c19.667-4.743 39.22-16.332 50.626-33.511-2.012 8.594-7.593 16.1-13.973 22.082a71.727 71.727 0 01-19.475 12.667c-1.464.554-4.051 1.59-5.488 2.13A79.7 79.7 0 0152.578 79c-13.048 1.85-26.922.118-38.451-6.436",
|
|
565
|
+
fill: "#c1ff00"
|
|
566
|
+
})))), /*#__PURE__*/React__namespace.createElement("g", {
|
|
567
|
+
"data-name": "Group 1979"
|
|
568
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
569
|
+
"data-name": "Group 1978",
|
|
570
|
+
opacity: 0.5
|
|
571
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
572
|
+
"data-name": "Group 1977",
|
|
573
|
+
clipPath: "url(#bear_svg__e)"
|
|
574
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
575
|
+
"data-name": "Path 2793",
|
|
576
|
+
d: "M0 57.223c21.564 6.171 44.732 6.574 65.182-2.935 9.892-4.407 19.207-10.429 25.989-18.943 2.285-3.151 4.764-6.127 5.506-10.132.91-4.8.12-11.235-5.836-11.564a18.081 18.081 0 00-4.213.156 14.141 14.141 0 014.172-1.414c9.122-1.516 11.591 10.156 9.564 16.958C92.671 49.8 71.778 62.416 50.995 66.055A80.305 80.305 0 010 57.223",
|
|
577
|
+
fill: "#ff0068"
|
|
578
|
+
})))), /*#__PURE__*/React__namespace.createElement("g", {
|
|
579
|
+
"data-name": "Group 1982"
|
|
580
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
581
|
+
"data-name": "Group 1981",
|
|
582
|
+
opacity: 0.6
|
|
583
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
584
|
+
"data-name": "Group 1980",
|
|
585
|
+
clipPath: "url(#bear_svg__f)"
|
|
586
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
587
|
+
"data-name": "Path 2794",
|
|
588
|
+
d: "M36.792 91.935C56.807 90.6 77.07 83.841 92.186 70.48c4.8-4.535 9-10.083 9.928-16.857A18.537 18.537 0 01100.56 64c-9.567 21.163-42.121 31.644-63.768 27.935",
|
|
589
|
+
fill: "#ffed00"
|
|
590
|
+
})))), /*#__PURE__*/React__namespace.createElement("g", {
|
|
591
|
+
"data-name": "Group 1985"
|
|
592
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
593
|
+
"data-name": "Group 1984",
|
|
594
|
+
opacity: 0.6
|
|
595
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
596
|
+
"data-name": "Group 1983",
|
|
597
|
+
clipPath: "url(#bear_svg__g)"
|
|
598
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
599
|
+
"data-name": "Path 2795",
|
|
600
|
+
d: "M61.288 100.858c10.053-3.234 20.179-7.244 28.266-14.11a57.97 57.97 0 0010.84-13.63 23.042 23.042 0 002.565-6.55 12.3 12.3 0 01-.313 3.611C100.93 77.3 96.3 83.485 90.964 88.361c-8.385 6.986-19.049 10.747-29.676 12.5",
|
|
601
|
+
fill: "#64e2ff"
|
|
602
|
+
})))))))));
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
module.exports = SvgBear;
|
|
606
|
+
//# sourceMappingURL=bear.svg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bear.svg.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|