namespace App\Http\Controllers;
+use App\Models\AdCampaign;
use Illuminate\Http\Request;
class AdCampaignController extends Controller
{
+ public function search()
+ {
+ return view('adCampaigns.search');
+ }
+
public function index()
{
- return view('ad_campaigns');
+ \View::share('campaigns', AdCampaign::query()->orderByDesc('id')->take(3)->get());
+ return view('adCampaigns.index');
}
+
}
'current' => 0
]);
$i = 0;
+ $this->batch->file->publish();
foreach($chunks as $chunk) {
'organization'
];
+ public $appends = [
+ 'image'
+ ];
+
public $slugAttributes = [
'title',
];
'organization' => $this->organization,
];
}
+
+
+ /**
+ * @return string|null
+ */
+ public function getImageAttribute(): ?string
+ {
+ return $this->image('image', 'preview');
+ }
}
'slug' => Str::slug("{$collection->slug}_{$ref}"),
'title' => "{$collection->short_name} - $ref",
'headlines' => $headlines,
+ 'published' => 0,
]);
}
+ /**
+ * Sets published to true
+ */
+ public function publish(): void
+ {
+ $this->update(['published' => true]);
+ }
+
/**
* @return string
*/
- public function getUrl()
+ public function getUrl(): string
{
return route('flowpaper.view', ['file' => $this->slug]);
}
- public function getUrlWithToken(User $user)
+ /**
+ * @param User $user
+ * @return string
+ * Returns an URL with an auth token (for emails)
+ */
+ public function getUrlWithToken(User $user): string
{
return $user->routeWithToken('flowpaper.view', ['file' => $this->slug]);
}
* @param \App\PdfFile $pdfFile
* @return mixed
* @throws AuthenticationException
+ * @todo Redirect with proper error message
*/
public function view($user = null, PdfFile $pdfFile)
{
+
if($user instanceof TwillUser) {
return true;
}
+
if($pdfFile->is_free || ($user instanceof \App\User ? $user->isSubscribed : false)) {
return true;
}
--- /dev/null
+<?php
+
+namespace App\View\Components;
+
+use Illuminate\View\Component;
+
+class Headline extends Component
+{
+ public string $title;
+ public string $content;
+
+ /**
+ * Create a new component instance.
+ *
+ * @param $headline
+ */
+ public function __construct($headline)
+ {
+ $this->title = $headline['headline'] ?? '';
+ $this->content = nl2br($headline['content'] ?? '');
+
+ }
+
+ /**
+ * Get the view / contents that represent the component.
+ *
+ * @return \Illuminate\View\View|string
+ */
+ public function render()
+ {
+ return view('components.headline');
+ }
+}
return [
'nova' => [
- 'title' => 'CRM',
+ 'title' => 'Clients (CRM)',
'route' => '/crm',
'raw' => true,
],
'publish' => [
- 'title' => 'Publier',
+ 'title' => 'Publier une lettre',
'route' => 'admin.publish',
],
'content' => [
- 'title' => 'Contenu',
+ 'title' => 'Gestion du Contenu',
'route' => 'admin.content.homepage',
'primary_navigation' => [
'homepage' => [
//
//
//
+//
+//
+//
+//
+//
+//
/* harmony default export */ __webpack_exports__["default"] = ({
name: "CampaignHit",
props: ['hit']
//
//
//
+//
+//
/* harmony default export */ __webpack_exports__["default"] = ({
name: "HeadlineRepeater",
props: {
value: {
- type: String,
required: true
}
},
+ data: function data() {
+ return {
+ headline: '',
+ content: ''
+ };
+ },
computed: {
- headline: {
+ val: {
get: function get() {
- return this.value;
+ return {
+ headline: this.headline,
+ content: this.content
+ };
},
set: function set(v) {
this.$emit('input', v);
}
}
+ },
+ watch: {
+ val: function val(value) {
+ this.$emit('input', value);
+ }
}
});
_c(
"h3",
[
- _c("ais-highlight", {
- attrs: { attribute: "organization", hit: _vm.hit }
- })
+ _vm.hit._highlightResult === undefined
+ ? _c("span", {
+ domProps: { innerHTML: _vm._s(_vm.hit.organization) }
+ })
+ : _c("ais-highlight", {
+ attrs: { attribute: "organization", hit: _vm.hit }
+ })
],
1
),
_vm._v(" "),
_c(
"h4",
- [_c("ais-highlight", { attrs: { attribute: "title", hit: _vm.hit } })],
+ [
+ _vm.hit._highlightResult === undefined
+ ? _c("span", { domProps: { innerHTML: _vm._s(_vm.hit.title) } })
+ : _vm._e(),
+ _vm._v(" "),
+ _c("ais-highlight", { attrs: { attribute: "title", hit: _vm.hit } })
+ ],
1
),
_vm._v(" "),
}),
_vm._v(" "),
_c("textarea", {
+ directives: [
+ {
+ name: "model",
+ rawName: "v-model",
+ value: _vm.content,
+ expression: "content"
+ }
+ ],
staticClass: "form-control mt-1",
- attrs: { placeholder: "Description rapide", rows: "4" }
+ attrs: { placeholder: "Description rapide", rows: "4" },
+ domProps: { value: _vm.content },
+ on: {
+ input: function($event) {
+ if ($event.target.composing) {
+ return
+ }
+ _vm.content = $event.target.value
+ }
+ }
})
])
}
position: absolute;
}
-div.cover p {
+div.cover .cover-title {
+ width: -webkit-fit-content;
+ width: -moz-fit-content;
+ width: fit-content;
+ margin: auto;
+ position: relative;
+ height: 30px;
+}
+
+div.cover .cover-title img {
+ position: absolute;
+ width: 50px;
+ z-index: 5;
+ top: -12px;
+ left: -30px;
+}
+
+div.cover .cover-title p {
text-transform: uppercase;
color: #074e9c;
- background-color: rgba(7, 78, 156, 0.3);
+ background-color: #cddceb;
text-align: center;
font-weight: 900;
display: table;
margin: auto;
padding: 0 6px;
font-size: small;
+ z-index: 10;
+ position: relative;
}
div.pill-box {
position: relative;
+ margin-top: 2rem;
+ margin-bottom: 2rem;
}
div.pill-box img {
--- /dev/null
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 41.04 34.81"><defs><style>.cls-1{fill:#0a4f9c;}.cls-2{fill:#cedceb;}.cls-3{fill:#4d88c7;}.cls-4{fill:#1b2b4b;}.cls-5{fill:#dce7f5;}.cls-6{fill:#1b2a4a;}.cls-7{clip-path:url(#clip-path);}.cls-8{clip-path:url(#clip-path-2);}.cls-9{clip-path:url(#clip-path-3);}.cls-10{clip-path:url(#clip-path-4);}.cls-11{clip-path:url(#clip-path-5);}.cls-12{clip-path:url(#clip-path-6);}</style><clipPath id="clip-path" transform="translate(4.47 6.22)"><path class="cls-1" d="M23.68,21.76A10.7,10.7,0,0,1,22.5,22a22.07,22.07,0,0,1-7.94.08A22.57,22.57,0,0,1,8,20a15,15,0,0,1-6-5.29c-.07-.11-.14-.22-.2-.33A8.21,8.21,0,0,1,.75,9.06L.08,13.48a8.26,8.26,0,0,0,1.08,5.29l.2.34a15,15,0,0,0,6,5.28,22.29,22.29,0,0,0,6.53,2.15,22.13,22.13,0,0,0,8-.08q.6-.12,1.17-.27c5-1.31,8.13-4.39,8.67-8l.67-4.43C31.81,17.38,28.65,20.45,23.68,21.76Z"/></clipPath><clipPath id="clip-path-2" transform="translate(4.47 6.22)"><path class="cls-2" d="M23.22,20.16,12.06.3C18.74-1,27.41,2.2,30.49,7.68S29.89,18.84,23.22,20.16Z"/></clipPath><clipPath id="clip-path-3" transform="translate(4.47 6.22)"><path class="cls-2" d="M2.92,13.15C-.16,7.66,3.52,2,10.19.67L21.34,20.53C14.67,21.85,6,18.63,2.92,13.15Z"/></clipPath><clipPath id="clip-path-4" transform="translate(4.47 6.22)"><path class="cls-3" d="M30.26,7.3a7.75,7.75,0,0,1,.36,8,10.8,10.8,0,0,1-7.4,4.87L22.5,22a13.58,13.58,0,0,0,8.25-4.57,7.93,7.93,0,0,0,1.65-4.08,8.27,8.27,0,0,0-.76-4.15,11.71,11.71,0,0,0-2.33-3.29l-.66-.66a11.8,11.8,0,0,1,1.61,2Z"/></clipPath><clipPath id="clip-path-5" transform="translate(4.47 6.22)"><path class="cls-3" d="M4.69,3.21A9.75,9.75,0,0,0,1.5,6.74a7.55,7.55,0,0,0-.75,4.55C1.22,14.4,3.43,17,5.93,18.7A22.1,22.1,0,0,0,22.5,22l-1.16-1.5a18.7,18.7,0,0,1-9-.59A17.6,17.6,0,0,1,4.42,15.2a9.09,9.09,0,0,1-2.6-6.31A8.12,8.12,0,0,1,5.26,2.78Z"/></clipPath><clipPath id="clip-path-6" transform="translate(4.47 6.22)"><path class="cls-4" d="M28,23.92a15.18,15.18,0,0,1-5.41,2.38h0l-.58.13c.24-.05,0,0-.08,0,.22-.05-.05,0-.08,0l-.26.05-.49.09c-.34,0-.68.1-1,.13-.65.07-1.31.11-2,.12a23.34,23.34,0,0,1-3.92-.27A22.33,22.33,0,0,1,7,24.19,16.81,16.81,0,0,1,3.1,21.31l.66.67A17.13,17.13,0,0,0,10,25.9a20.3,20.3,0,0,0,7.5,1.38,22.66,22.66,0,0,0,4.35-.5,15.71,15.71,0,0,0,3.58-1.2c.32-.16.65-.33,1-.52a10.08,10.08,0,0,0,1-.7Zm-5.47,2.4h0Z"/></clipPath></defs><g id="Calque_2" data-name="Calque 2"><g id="Calque_1-2" data-name="Calque 1"><polygon class="cls-5" points="15.06 7.04 16.53 6.51 27.68 26.38 26.97 28.25 15.06 7.04"/><polygon class="cls-6" points="26.97 28.25 25.8 26.75 14.65 6.89 15.06 7.04 26.97 28.25"/><path class="cls-1" d="M23.68,21.76A10.7,10.7,0,0,1,22.5,22a22.07,22.07,0,0,1-7.94.08A22.57,22.57,0,0,1,8,20a15,15,0,0,1-6-5.29c-.07-.11-.14-.22-.2-.33A8.21,8.21,0,0,1,.75,9.06L.08,13.48a8.26,8.26,0,0,0,1.08,5.29l.2.34a15,15,0,0,0,6,5.28,22.29,22.29,0,0,0,6.53,2.15,22.13,22.13,0,0,0,8-.08q.6-.12,1.17-.27c5-1.31,8.13-4.39,8.67-8l.67-4.43C31.81,17.38,28.65,20.45,23.68,21.76Z" transform="translate(4.47 6.22)"/><g class="cls-7"><polygon class="cls-1" points="3.61 17.11 2.69 23.61 0 21.27 3.61 17.11"/><polygon class="cls-1" points="4.31 16.32 3.21 24.06 2.69 23.61 3.61 17.11 4.31 16.32"/><polygon class="cls-1" points="5 15.52 3.73 24.51 3.21 24.06 4.31 16.32 5 15.52"/><polygon class="cls-1" points="5.33 15.15 5.63 15.19 4.24 24.96 3.73 24.51 5 15.52 5.33 15.15"/><polygon class="cls-1" points="5.63 15.19 6.2 15.27 4.76 25.41 4.24 24.96 5.63 15.19"/><polygon class="cls-1" points="6.2 15.27 6.76 15.35 5.28 25.86 4.76 25.41 6.2 15.27"/><polygon class="cls-1" points="6.76 15.35 7.33 15.43 5.79 26.31 5.28 25.86 6.76 15.35"/><polygon class="cls-1" points="7.33 15.43 7.9 15.51 6.31 26.76 5.79 26.31 7.33 15.43"/><polygon class="cls-1" points="7.9 15.51 8.47 15.59 6.83 27.2 6.31 26.76 7.9 15.51"/><polygon class="cls-1" points="8.47 15.59 9.04 15.67 7.34 27.65 6.83 27.2 8.47 15.59"/><polygon class="cls-1" points="9.04 15.67 9.61 15.75 7.86 28.1 7.34 27.65 9.04 15.67"/><polygon class="cls-1" points="9.61 15.75 10.18 15.83 8.37 28.55 7.86 28.1 9.61 15.75"/><polygon class="cls-1" points="10.18 15.83 10.74 15.91 8.89 29 8.37 28.55 10.18 15.83"/><polygon class="cls-1" points="10.74 15.91 11.31 15.99 9.41 29.45 8.89 29 10.74 15.91"/><polygon class="cls-1" points="11.31 15.99 11.88 16.07 9.92 29.9 9.41 29.45 11.31 15.99"/><polygon class="cls-1" points="11.88 16.07 12.45 16.16 10.44 30.35 9.92 29.9 11.88 16.07"/><polygon class="cls-1" points="12.45 16.16 13.02 16.24 10.96 30.8 10.44 30.35 12.45 16.16"/><polygon class="cls-1" points="13.02 16.24 13.59 16.32 11.47 31.25 10.96 30.8 13.02 16.24"/><polygon class="cls-1" points="13.59 16.32 14.15 16.4 11.99 31.7 11.47 31.25 13.59 16.32"/><polygon class="cls-1" points="14.15 16.4 14.72 16.48 12.51 32.14 12.49 32.13 11.99 31.7 14.15 16.4"/><rect class="cls-1" x="1.52" y="17.84" width="15.82" height="0.57" transform="translate(-5.37 31.15) rotate(-81.94)"/><rect class="cls-1" x="2.09" y="17.92" width="15.82" height="0.57" transform="translate(-4.97 31.78) rotate(-81.94)"/><rect class="cls-1" x="2.68" y="17.98" width="15.82" height="0.62" transform="translate(-4.54 32.43) rotate(-81.94)"/><rect class="cls-1" x="3.3" y="18.07" width="15.82" height="0.62" transform="translate(-4.1 33.12) rotate(-81.94)"/><rect class="cls-1" x="3.91" y="18.16" width="15.82" height="0.62" transform="matrix(0.14, -0.99, 0.99, 0.14, -3.66, 33.8)"/><rect class="cls-1" x="4.52" y="18.24" width="15.82" height="0.62" transform="translate(-3.22 34.48) rotate(-81.94)"/><rect class="cls-1" x="5.13" y="18.33" width="15.82" height="0.62" transform="translate(-2.78 35.16) rotate(-81.94)"/><rect class="cls-1" x="5.75" y="18.42" width="15.82" height="0.62" transform="translate(-2.34 35.84) rotate(-81.94)"/><rect class="cls-1" x="6.36" y="18.5" width="15.82" height="0.62" transform="translate(-1.89 36.52) rotate(-81.94)"/><rect class="cls-1" x="6.97" y="18.59" width="15.82" height="0.62" transform="translate(-1.45 37.2) rotate(-81.94)"/><rect class="cls-1" x="7.59" y="18.68" width="15.82" height="0.62" transform="translate(-1.01 37.88) rotate(-81.94)"/><rect class="cls-1" x="8.2" y="18.77" width="15.82" height="0.62" transform="translate(-0.57 38.57) rotate(-81.94)"/><rect class="cls-1" x="8.81" y="18.85" width="15.82" height="0.62" transform="translate(-0.13 39.25) rotate(-81.94)"/><rect class="cls-1" x="9.42" y="18.94" width="15.82" height="0.62" transform="translate(0.31 39.93) rotate(-81.94)"/><rect class="cls-1" x="10.04" y="19.03" width="15.82" height="0.62" transform="translate(0.75 40.61) rotate(-81.94)"/><rect class="cls-1" x="10.65" y="19.11" width="15.82" height="0.62" transform="translate(1.19 41.29) rotate(-81.94)"/><rect class="cls-1" x="11.13" y="19.31" width="15.82" height="0.35" transform="translate(1.54 41.82) rotate(-81.94)"/><rect class="cls-1" x="11.48" y="19.36" width="15.82" height="0.35" transform="translate(1.79 42.21) rotate(-81.94)"/><rect class="cls-1" x="11.82" y="19.41" width="15.82" height="0.35" transform="translate(2.03 42.59) rotate(-81.94)"/><rect class="cls-1" x="12.17" y="19.46" width="15.82" height="0.35" transform="translate(2.28 42.98) rotate(-81.94)"/><rect class="cls-1" x="12.51" y="19.51" width="15.82" height="0.35" transform="translate(2.53 43.36) rotate(-81.94)"/><rect class="cls-1" x="12.86" y="19.56" width="15.82" height="0.35" transform="translate(2.78 43.75) rotate(-81.94)"/><rect class="cls-1" x="13.21" y="19.61" width="15.82" height="0.35" transform="matrix(0.14, -0.99, 0.99, 0.14, 3.03, 44.13)"/><rect class="cls-1" x="13.55" y="19.66" width="15.82" height="0.35" transform="translate(3.28 44.52) rotate(-81.94)"/><rect class="cls-1" x="13.9" y="19.71" width="15.82" height="0.35" transform="translate(3.53 44.9) rotate(-81.94)"/><rect class="cls-1" x="14.24" y="19.76" width="15.82" height="0.35" transform="translate(3.78 45.29) rotate(-81.94)"/><rect class="cls-1" x="14.59" y="19.8" width="15.82" height="0.35" transform="translate(4.03 45.67) rotate(-81.94)"/><rect class="cls-1" x="14.94" y="19.85" width="15.82" height="0.35" transform="translate(4.28 46.06) rotate(-81.94)"/><rect class="cls-1" x="15.28" y="19.9" width="15.82" height="0.35" transform="translate(4.53 46.44) rotate(-81.94)"/><rect class="cls-1" x="15.63" y="19.95" width="15.82" height="0.35" transform="translate(4.77 46.83) rotate(-81.94)"/><rect class="cls-1" x="15.97" y="20" width="15.82" height="0.35" transform="translate(5.02 47.21) rotate(-81.94)"/><rect class="cls-1" x="16.32" y="20.05" width="15.82" height="0.35" transform="translate(5.27 47.6) rotate(-81.94)"/><rect class="cls-1" x="16.67" y="20.1" width="15.82" height="0.35" transform="matrix(0.14, -0.99, 0.99, 0.14, 5.52, 47.98)"/><rect class="cls-1" x="17.01" y="20.15" width="15.82" height="0.35" transform="translate(5.77 48.37) rotate(-81.94)"/><rect class="cls-1" x="17.36" y="20.2" width="15.82" height="0.35" transform="matrix(0.14, -0.99, 0.99, 0.14, 6.02, 48.75)"/><rect class="cls-1" x="17.7" y="20.25" width="15.82" height="0.35" transform="translate(6.27 49.13) rotate(-81.94)"/><rect class="cls-1" x="18.05" y="20.29" width="15.82" height="0.35" transform="translate(6.52 49.52) rotate(-81.94)"/><rect class="cls-1" x="18.4" y="20.34" width="15.82" height="0.35" transform="translate(6.77 49.9) rotate(-81.94)"/><polygon class="cls-1" points="32.05 18.93 32.4 18.98 30.24 34.19 29.89 34.6 29.83 34.59 32.05 18.93"/><polygon class="cls-1" points="32.4 18.98 32.74 19.03 30.66 33.71 30.24 34.19 32.4 18.98"/><polygon class="cls-1" points="32.74 19.03 33.09 19.08 31.09 33.22 30.66 33.71 32.74 19.03"/><polygon class="cls-1" points="33.09 19.08 33.44 19.13 31.51 32.74 31.09 33.22 33.09 19.08"/><polygon class="cls-1" points="33.44 19.13 33.78 19.18 31.93 32.25 31.51 32.74 33.44 19.13"/><polygon class="cls-1" points="33.78 19.18 34.13 19.23 32.35 31.77 31.93 32.25 33.78 19.18"/><polygon class="cls-1" points="34.13 19.23 34.47 19.27 32.77 31.28 32.35 31.77 34.13 19.23"/><polygon class="cls-1" points="34.47 19.27 34.82 19.32 33.2 30.8 32.77 31.28 34.47 19.27"/><polygon class="cls-1" points="34.82 19.32 35.17 19.37 33.62 30.31 33.2 30.8 34.82 19.32"/><polygon class="cls-1" points="35.17 19.37 35.51 19.42 34.04 29.83 33.62 30.31 35.17 19.37"/><polygon class="cls-1" points="35.51 19.42 35.86 19.47 34.46 29.34 34.04 29.83 35.51 19.42"/><polygon class="cls-1" points="35.86 19.47 36.2 19.52 34.88 28.86 34.46 29.34 35.86 19.47"/><polygon class="cls-1" points="36.2 19.52 36.25 19.53 36.52 19.76 35.3 28.38 34.88 28.86 36.2 19.52"/><polygon class="cls-1" points="36.84 20.04 35.73 27.89 35.3 28.38 36.52 19.76 36.84 20.04"/><polygon class="cls-1" points="37.15 20.31 36.15 27.41 35.73 27.89 36.84 20.04 37.15 20.31"/><polygon class="cls-1" points="37.47 20.58 36.57 26.92 36.15 27.41 37.15 20.31 37.47 20.58"/><polygon class="cls-1" points="37.78 20.86 36.99 26.44 36.57 26.92 37.47 20.58 37.78 20.86"/><polygon class="cls-1" points="38.09 21.13 37.41 25.95 36.99 26.44 37.78 20.86 38.09 21.13"/><polygon class="cls-1" points="38.41 21.4 37.83 25.47 37.41 25.95 38.09 21.13 38.41 21.4"/><polygon class="cls-1" points="38.72 21.68 38.26 24.98 37.83 25.47 38.41 21.4 38.72 21.68"/><polygon class="cls-1" points="39.04 21.95 38.68 24.5 38.26 24.98 38.72 21.68 39.04 21.95"/><polygon class="cls-1" points="39.35 22.22 39.1 24.01 38.68 24.5 39.04 21.95 39.35 22.22"/><polygon class="cls-1" points="39.67 22.5 39.52 23.53 39.1 24.01 39.35 22.22 39.67 22.5"/><polygon class="cls-1" points="39.98 22.77 39.94 23.04 39.52 23.53 39.67 22.5 39.98 22.77"/><polygon class="cls-1" points="39.94 23.04 39.98 22.77 40.09 22.87 39.94 23.04"/></g><path class="cls-2" d="M23.22,20.16,12.06.3C18.74-1,27.41,2.2,30.49,7.68S29.89,18.84,23.22,20.16Z" transform="translate(4.47 6.22)"/><g class="cls-8"><polygon class="cls-2" points="24.57 23.67 31.22 28.66 30.83 29.11 24.57 23.67"/><polygon class="cls-2" points="13.12 13.71 31.94 27.83 31.22 28.66 24.57 23.67 13.12 13.71"/><polygon class="cls-2" points="11.81 12.57 12.39 11.8 32.66 27 31.94 27.83 13.12 13.71 11.81 12.57"/><polygon class="cls-2" points="12.39 11.8 13.05 10.92 33.38 26.18 32.66 27 12.39 11.8"/><polygon class="cls-2" points="13.05 10.92 13.7 10.05 34.1 25.35 33.38 26.18 13.05 10.92"/><polygon class="cls-2" points="13.7 10.05 14.36 9.17 34.82 24.52 34.1 25.35 13.7 10.05"/><polygon class="cls-2" points="14.36 9.17 15.02 8.3 35.53 23.7 34.82 24.52 14.36 9.17"/><polygon class="cls-2" points="15.02 8.3 15.25 7.99 15.71 7.45 36.2 22.83 35.63 23.58 35.53 23.7 15.02 8.3"/><polygon class="cls-2" points="16.43 6.63 36.86 21.95 36.2 22.83 15.71 7.45 16.43 6.63"/><polygon class="cls-2" points="17.15 5.8 37.51 21.08 36.86 21.95 16.43 6.63 17.15 5.8"/><polygon class="cls-2" points="17.87 4.97 38.17 20.2 37.51 21.08 17.15 5.8 17.87 4.97"/><polygon class="cls-2" points="18.59 4.14 38.83 19.33 38.17 20.2 17.87 4.97 18.59 4.14"/><polygon class="cls-2" points="19.31 3.32 39.48 18.45 38.83 19.33 18.59 4.14 19.31 3.32"/><polygon class="cls-2" points="20.03 2.49 40.14 17.58 39.48 18.45 19.31 3.32 20.03 2.49"/><polygon class="cls-2" points="20.75 1.66 40.8 16.71 40.14 17.58 20.03 2.49 20.75 1.66"/><polygon class="cls-2" points="41.04 16.39 40.8 16.71 20.75 1.66 22.2 0 41.04 16.39"/></g><path class="cls-2" d="M2.92,13.15C-.16,7.66,3.52,2,10.19.67L21.34,20.53C14.67,21.85,6,18.63,2.92,13.15Z" transform="translate(4.47 6.22)"/><g class="cls-9"><polygon class="cls-2" points="1.3 16.88 1.83 16.17 21.9 31.24 20.14 33.26 1.3 16.88"/><polygon class="cls-2" points="1.83 16.17 2.48 15.3 22.62 30.41 21.9 31.24 1.83 16.17"/><polygon class="cls-2" points="2.48 15.3 3.14 14.42 23.34 29.58 22.62 30.41 2.48 15.3"/><polygon class="cls-2" points="3.14 14.42 3.8 13.55 24.06 28.75 23.34 29.58 3.14 14.42"/><polygon class="cls-2" points="3.8 13.55 4.45 12.68 24.78 27.93 24.06 28.75 3.8 13.55"/><polygon class="cls-2" points="4.45 12.68 5.11 11.8 25.5 27.1 24.78 27.93 4.45 12.68"/><polygon class="cls-2" points="5.11 11.8 5.77 10.93 26.22 26.27 25.5 27.1 5.11 11.8"/><polygon class="cls-2" points="5.77 10.93 6.42 10.05 26.94 25.45 26.22 26.27 5.77 10.93"/><polygon class="cls-2" points="6.42 10.05 6.7 9.68 7.12 9.2 27.61 24.58 27.09 25.28 26.94 25.45 6.42 10.05"/><polygon class="cls-2" points="7.83 8.38 28.26 23.71 27.61 24.58 7.12 9.2 7.83 8.38"/><polygon class="cls-2" points="8.55 7.55 28.92 22.83 28.26 23.71 7.83 8.38 8.55 7.55"/><polygon class="cls-2" points="9.27 6.72 29.58 21.96 28.92 22.83 8.55 7.55 9.27 6.72"/><polygon class="cls-2" points="9.99 5.9 30.23 21.08 29.58 21.96 9.27 6.72 9.99 5.9"/><polygon class="cls-2" points="10.71 5.07 24.21 15.2 30.53 20.69 30.23 21.08 9.99 5.9 10.71 5.07"/><polygon class="cls-2" points="11.43 4.24 12.75 5.23 24.21 15.2 10.71 5.07 11.43 4.24"/><polygon class="cls-2" points="12.75 5.23 11.43 4.24 11.51 4.15 12.75 5.23"/></g><path class="cls-3" d="M30.26,7.3a7.75,7.75,0,0,1,.36,8,10.8,10.8,0,0,1-7.4,4.87L22.5,22a13.58,13.58,0,0,0,8.25-4.57,7.93,7.93,0,0,0,1.65-4.08,8.27,8.27,0,0,0-.76-4.15,11.71,11.71,0,0,0-2.33-3.29l-.66-.66a11.8,11.8,0,0,1,1.61,2Z" transform="translate(4.47 6.22)"/><g class="cls-10"><polygon class="cls-3" points="24.45 26.06 24.88 25.32 30.95 28.86 29.54 30.49 24.45 26.06"/><polygon class="cls-3" points="24.88 25.32 25.01 25.11 31.11 28.68 30.95 28.86 24.88 25.32"/><polygon class="cls-3" points="25.01 25.11 25.13 24.9 31.28 28.49 31.11 28.68 25.01 25.11"/><polygon class="cls-3" points="25.13 24.9 25.25 24.69 31.44 28.3 31.28 28.49 25.13 24.9"/><polygon class="cls-3" points="25.25 24.69 25.37 24.48 31.6 28.12 31.44 28.3 25.25 24.69"/><polygon class="cls-3" points="25.37 24.48 25.5 24.27 31.77 27.93 31.6 28.12 25.37 24.48"/><polygon class="cls-3" points="25.5 24.27 25.62 24.06 31.93 27.74 31.77 27.93 25.5 24.27"/><polygon class="cls-3" points="25.62 24.06 25.74 23.85 32.09 27.56 31.93 27.74 25.62 24.06"/><polygon class="cls-3" points="25.74 23.85 25.86 23.64 32.25 27.37 32.09 27.56 25.74 23.85"/><polygon class="cls-3" points="25.86 23.64 25.99 23.43 32.41 27.18 32.25 27.37 25.86 23.64"/><polygon class="cls-3" points="25.99 23.43 26.11 23.22 32.58 27 32.41 27.18 25.99 23.43"/><polygon class="cls-3" points="26.11 23.22 26.23 23.01 32.74 26.81 32.58 27 26.11 23.22"/><polygon class="cls-3" points="26.23 23.01 26.35 22.8 32.9 26.62 32.74 26.81 26.23 23.01"/><polygon class="cls-3" points="26.35 22.8 26.47 22.59 33.06 26.44 32.9 26.62 26.35 22.8"/><polygon class="cls-3" points="26.47 22.59 26.59 22.39 33.22 26.26 33.06 26.44 26.47 22.59"/><polygon class="cls-3" points="26.59 22.39 26.71 22.18 33.38 26.08 33.22 26.26 26.59 22.39"/><polygon class="cls-3" points="26.71 22.18 26.83 21.98 33.53 25.89 33.38 26.08 26.71 22.18"/><polygon class="cls-3" points="26.83 21.98 26.95 21.77 33.69 25.71 33.53 25.89 26.83 21.98"/><polygon class="cls-3" points="26.95 21.77 27.07 21.57 33.85 25.53 33.69 25.71 26.95 21.77"/><polygon class="cls-3" points="27.07 21.57 27.19 21.36 34.01 25.35 33.85 25.53 27.07 21.57"/><polygon class="cls-3" points="27.19 21.36 27.31 21.16 34.17 25.16 34.01 25.35 27.19 21.36"/><polygon class="cls-3" points="27.31 21.16 27.43 20.95 34.33 24.98 34.17 25.16 27.31 21.16"/><polygon class="cls-3" points="27.43 20.95 27.55 20.75 34.49 24.8 34.33 24.98 27.43 20.95"/><polygon class="cls-3" points="27.55 20.75 27.67 20.55 34.65 24.62 34.49 24.8 27.55 20.75"/><polygon class="cls-3" points="27.67 20.55 27.79 20.34 34.8 24.43 34.65 24.62 27.67 20.55"/><polygon class="cls-3" points="27.79 20.34 27.91 20.14 34.96 24.25 34.8 24.43 27.79 20.34"/><polygon class="cls-3" points="27.91 20.14 28.03 19.93 35.12 24.07 34.96 24.25 27.91 20.14"/><polygon class="cls-3" points="28.03 19.93 28.15 19.73 35.28 23.89 35.12 24.07 28.03 19.93"/><polygon class="cls-3" points="28.15 19.73 28.27 19.52 35.44 23.71 35.28 23.89 28.15 19.73"/><polygon class="cls-3" points="28.27 19.52 28.39 19.32 35.6 23.52 35.44 23.71 28.27 19.52"/><polygon class="cls-3" points="28.39 19.32 28.51 19.11 35.76 23.34 35.6 23.52 28.39 19.32"/><polygon class="cls-3" points="28.51 19.11 28.63 18.91 35.9 23.15 35.87 23.21 35.76 23.34 28.51 19.11"/><rect class="cls-3" x="27.74" y="10.5" width="0.24" height="8.43" transform="translate(5.58 37.57) rotate(-59.72)"/><rect class="cls-3" x="27.86" y="10.29" width="0.24" height="8.43" transform="translate(5.81 37.57) rotate(-59.72)"/><rect class="cls-3" x="27.98" y="10.09" width="0.24" height="8.43" transform="translate(6.05 37.57) rotate(-59.72)"/><rect class="cls-3" x="28.1" y="9.88" width="0.24" height="8.43" transform="translate(6.29 37.57) rotate(-59.72)"/><rect class="cls-3" x="28.22" y="9.68" width="0.24" height="8.43" transform="translate(6.52 37.58) rotate(-59.72)"/><rect class="cls-3" x="28.34" y="9.47" width="0.24" height="8.43" transform="translate(6.76 37.58) rotate(-59.72)"/><rect class="cls-3" x="28.46" y="9.27" width="0.24" height="8.43" transform="translate(6.99 37.58) rotate(-59.72)"/><rect class="cls-3" x="28.58" y="9.06" width="0.24" height="8.43" transform="translate(7.23 37.58) rotate(-59.72)"/><rect class="cls-3" x="28.7" y="8.86" width="0.24" height="8.43" transform="translate(7.47 37.58) rotate(-59.72)"/><rect class="cls-3" x="28.82" y="8.65" width="0.24" height="8.43" transform="translate(7.7 37.58) rotate(-59.72)"/><rect class="cls-3" x="28.94" y="8.45" width="0.24" height="8.43" transform="translate(7.94 37.59) rotate(-59.72)"/><rect class="cls-3" x="29.06" y="8.24" width="0.24" height="8.43" transform="translate(8.18 37.59) rotate(-59.72)"/><rect class="cls-3" x="29.18" y="8.04" width="0.24" height="8.43" transform="translate(8.41 37.59) rotate(-59.72)"/><rect class="cls-3" x="29.3" y="7.83" width="0.24" height="8.43" transform="matrix(0.5, -0.86, 0.86, 0.5, 8.65, 37.59)"/><rect class="cls-3" x="29.42" y="7.63" width="0.24" height="8.43" transform="translate(8.88 37.59) rotate(-59.72)"/><rect class="cls-3" x="29.54" y="7.42" width="0.24" height="8.43" transform="translate(9.12 37.6) rotate(-59.72)"/><rect class="cls-3" x="29.66" y="7.22" width="0.24" height="8.43" transform="translate(9.36 37.6) rotate(-59.72)"/><rect class="cls-3" x="29.78" y="7.01" width="0.24" height="8.43" transform="translate(9.59 37.6) rotate(-59.72)"/><rect class="cls-3" x="29.9" y="6.81" width="0.24" height="8.43" transform="translate(9.83 37.6) rotate(-59.72)"/><rect class="cls-3" x="30.01" y="6.6" width="0.24" height="8.43" transform="matrix(0.5, -0.86, 0.86, 0.5, 10.07, 37.6)"/><rect class="cls-3" x="30.13" y="6.4" width="0.24" height="8.43" transform="translate(10.3 37.6) rotate(-59.72)"/><rect class="cls-3" x="30.25" y="6.19" width="0.24" height="8.43" transform="translate(10.54 37.61) rotate(-59.72)"/><rect class="cls-3" x="30.37" y="5.99" width="0.24" height="8.43" transform="matrix(0.5, -0.86, 0.86, 0.5, 10.78, 37.61)"/><rect class="cls-3" x="30.49" y="5.78" width="0.24" height="8.43" transform="translate(11.01 37.61) rotate(-59.72)"/><rect class="cls-3" x="30.61" y="5.58" width="0.24" height="8.43" transform="translate(11.25 37.61) rotate(-59.72)"/><rect class="cls-3" x="30.73" y="5.37" width="0.24" height="8.43" transform="matrix(0.5, -0.86, 0.86, 0.5, 11.48, 37.61)"/><rect class="cls-3" x="30.85" y="5.17" width="0.24" height="8.43" transform="translate(11.72 37.61) rotate(-59.72)"/><rect class="cls-3" x="30.97" y="4.96" width="0.24" height="8.43" transform="translate(11.96 37.62) rotate(-59.72)"/><rect class="cls-3" x="31.09" y="4.76" width="0.24" height="8.43" transform="matrix(0.5, -0.86, 0.86, 0.5, 12.19, 37.62)"/><polygon class="cls-3" points="32.1 12.96 32.22 12.76 39.37 16.93 39.48 17.03 39.38 17.21 32.1 12.96"/><polygon class="cls-3" points="32.22 12.76 32.34 12.55 38.41 16.09 39.37 16.93 32.22 12.76"/><polygon class="cls-3" points="32.34 12.55 32.46 12.35 37.45 15.26 38.41 16.09 32.34 12.55"/><polygon class="cls-3" points="32.46 12.35 32.62 12.06 33.12 11.49 37.45 15.26 32.46 12.35"/></g><path class="cls-3" d="M4.69,3.21A9.75,9.75,0,0,0,1.5,6.74a7.55,7.55,0,0,0-.75,4.55C1.22,14.4,3.43,17,5.93,18.7A22.1,22.1,0,0,0,22.5,22l-1.16-1.5a18.7,18.7,0,0,1-9-.59A17.6,17.6,0,0,1,4.42,15.2a9.09,9.09,0,0,1-2.6-6.31A8.12,8.12,0,0,1,5.26,2.78Z" transform="translate(4.47 6.22)"/><g class="cls-11"><polygon class="cls-3" points="9.47 8.78 1.53 17.64 1.44 17.56 9.25 8.59 9.47 8.78"/><polygon class="cls-3" points="9.87 9.12 1.92 17.98 1.53 17.64 9.47 8.78 9.87 9.12"/><polygon class="cls-3" points="10.27 9.47 2.32 18.32 1.92 17.98 9.87 9.12 10.27 9.47"/><polygon class="cls-3" points="10.66 9.81 2.72 18.67 2.32 18.32 10.27 9.47 10.66 9.81"/><polygon class="cls-3" points="11.06 10.16 3.11 19.02 2.72 18.67 10.66 9.81 11.06 10.16"/><polygon class="cls-3" points="11.46 10.5 3.51 19.36 3.11 19.02 11.06 10.16 11.46 10.5"/><polygon class="cls-3" points="11.85 10.85 3.91 19.7 3.51 19.36 11.46 10.5 11.85 10.85"/><polygon class="cls-3" points="12.25 11.19 4.3 20.05 3.91 19.7 11.85 10.85 12.25 11.19"/><polygon class="cls-3" points="12.64 11.54 4.7 20.39 4.3 20.05 12.25 11.19 12.64 11.54"/><polygon class="cls-3" points="13.04 11.88 5.1 20.74 4.7 20.39 12.64 11.54 13.04 11.88"/><polygon class="cls-3" points="13.44 12.23 5.49 21.08 5.1 20.74 13.04 11.88 13.44 12.23"/><polygon class="cls-3" points="13.83 12.57 5.89 21.43 5.49 21.08 13.44 12.23 13.83 12.57"/><polygon class="cls-3" points="14.23 12.92 6.29 21.77 5.89 21.43 13.83 12.57 14.23 12.92"/><polygon class="cls-3" points="14.63 13.26 6.68 22.12 6.29 21.77 14.23 12.92 14.63 13.26"/><polygon class="cls-3" points="15.02 13.61 7.08 22.46 6.68 22.12 14.63 13.26 15.02 13.61"/><polygon class="cls-3" points="15.42 13.95 7.47 22.81 7.08 22.46 15.02 13.61 15.42 13.95"/><polygon class="cls-3" points="15.82 14.3 7.87 23.15 7.47 22.81 15.42 13.95 15.82 14.3"/><polygon class="cls-3" points="16.21 14.64 8.27 23.5 7.87 23.15 15.82 14.3 16.21 14.64"/><polygon class="cls-3" points="16.61 14.99 8.66 23.84 8.27 23.5 16.21 14.64 16.61 14.99"/><polygon class="cls-3" points="16.65 15.02 17 15.34 9.06 24.19 8.66 23.84 16.61 14.99 16.65 15.02"/><polygon class="cls-3" points="17 15.34 17.39 15.69 9.46 24.53 9.06 24.19 17 15.34"/><polygon class="cls-3" points="17.39 15.69 17.78 16.04 9.85 24.88 9.46 24.53 17.39 15.69"/><polygon class="cls-3" points="17.78 16.04 18.18 16.39 10.25 25.22 9.85 24.88 17.78 16.04"/><polygon class="cls-3" points="18.18 16.39 18.57 16.74 10.65 25.57 10.25 25.22 18.18 16.39"/><polygon class="cls-3" points="18.57 16.74 23.75 21.39 15.9 30.14 10.65 25.57 18.57 16.74"/><rect class="cls-3" x="9.57" y="19.51" width="11.75" height="0.22" transform="translate(-5.01 24.23) rotate(-48.11)"/><rect class="cls-3" x="9.73" y="19.65" width="11.75" height="0.22" transform="translate(-5.06 24.4) rotate(-48.11)"/><rect class="cls-3" x="9.9" y="19.8" width="11.74" height="0.22" transform="translate(-5.11 24.57) rotate(-48.11)"/><rect class="cls-3" x="10.07" y="19.95" width="11.74" height="0.22" transform="translate(-5.17 24.74) rotate(-48.11)"/><rect class="cls-3" x="10.23" y="20.09" width="11.74" height="0.22" transform="translate(-5.22 24.92) rotate(-48.11)"/><rect class="cls-3" x="10.4" y="20.24" width="11.73" height="0.22" transform="translate(-5.28 25.09) rotate(-48.11)"/><rect class="cls-3" x="10.57" y="20.38" width="11.73" height="0.22" transform="translate(-5.33 25.26) rotate(-48.11)"/><rect class="cls-3" x="10.73" y="20.53" width="11.73" height="0.22" transform="translate(-5.38 25.43) rotate(-48.11)"/><rect class="cls-3" x="10.9" y="20.67" width="11.72" height="0.22" transform="translate(-5.44 25.6) rotate(-48.11)"/><rect class="cls-3" x="11.07" y="20.82" width="11.72" height="0.22" transform="translate(-5.49 25.77) rotate(-48.11)"/><rect class="cls-3" x="11.23" y="20.97" width="11.72" height="0.22" transform="translate(-5.54 25.94) rotate(-48.11)"/><rect class="cls-3" x="11.4" y="21.11" width="11.71" height="0.22" transform="translate(-5.6 26.11) rotate(-48.11)"/><rect class="cls-3" x="11.57" y="21.26" width="11.71" height="0.22" transform="translate(-5.65 26.29) rotate(-48.11)"/><rect class="cls-3" x="11.73" y="21.4" width="11.71" height="0.22" transform="translate(-5.7 26.46) rotate(-48.11)"/><rect class="cls-3" x="11.9" y="21.55" width="11.7" height="0.22" transform="translate(-5.76 26.63) rotate(-48.11)"/><rect class="cls-3" x="12.07" y="21.69" width="11.7" height="0.22" transform="translate(-5.81 26.8) rotate(-48.11)"/><rect class="cls-3" x="12.23" y="21.84" width="11.7" height="0.22" transform="translate(-5.87 26.97) rotate(-48.11)"/><rect class="cls-3" x="12.4" y="21.99" width="11.69" height="0.22" transform="translate(-5.92 27.14) rotate(-48.11)"/><rect class="cls-3" x="12.57" y="22.13" width="11.69" height="0.22" transform="translate(-5.97 27.31) rotate(-48.11)"/><rect class="cls-3" x="12.73" y="22.28" width="11.69" height="0.22" transform="translate(-6.03 27.48) rotate(-48.11)"/><rect class="cls-3" x="12.9" y="22.42" width="11.68" height="0.22" transform="translate(-6.08 27.66) rotate(-48.11)"/><rect class="cls-3" x="13.07" y="22.57" width="11.68" height="0.22" transform="translate(-6.13 27.83) rotate(-48.11)"/><polygon class="cls-3" points="27.35 24.62 28.91 26.02 21.27 34.81 19.56 33.32 27.35 24.62"/></g><path class="cls-4" d="M28,23.92a15.18,15.18,0,0,1-5.41,2.38h0l-.58.13c.24-.05,0,0-.08,0,.22-.05-.05,0-.08,0l-.26.05-.49.09c-.34,0-.68.1-1,.13-.65.07-1.31.11-2,.12a23.34,23.34,0,0,1-3.92-.27A22.33,22.33,0,0,1,7,24.19,16.81,16.81,0,0,1,3.1,21.31l.66.67A17.13,17.13,0,0,0,10,25.9a20.3,20.3,0,0,0,7.5,1.38,22.66,22.66,0,0,0,4.35-.5,15.71,15.71,0,0,0,3.58-1.2c.32-.16.65-.33,1-.52a10.08,10.08,0,0,0,1-.7Zm-5.47,2.4h0Z" transform="translate(4.47 6.22)"/><g class="cls-12"><rect class="cls-4" x="22.49" y="26.31" width="0.02" height="0.02" transform="translate(-7.66 32.24) rotate(-48.98)"/><polygon class="cls-4" points="7.69 27.38 12.33 27.08 12.67 32.33 7.39 27.73 7.69 27.38"/><polygon class="cls-4" points="12.33 27.08 12.46 27.07 12.8 32.45 12.67 32.33 12.33 27.08"/><polygon class="cls-4" points="12.46 27.07 12.58 27.07 12.94 32.56 12.8 32.45 12.46 27.07"/><polygon class="cls-4" points="12.58 27.07 12.71 27.06 13.07 32.68 12.94 32.56 12.58 27.07"/><polygon class="cls-4" points="12.71 27.06 12.84 27.05 13.21 32.8 13.07 32.68 12.71 27.06"/><polygon class="cls-4" points="12.84 27.05 12.96 27.04 13.34 32.92 13.21 32.8 12.84 27.05"/><polygon class="cls-4" points="12.96 27.04 13.09 27.03 13.48 33.03 13.34 32.92 12.96 27.04"/><polygon class="cls-4" points="13.09 27.03 13.22 27.02 13.61 33.15 13.48 33.03 13.09 27.03"/><polygon class="cls-4" points="13.22 27.02 13.34 27.02 13.75 33.27 13.61 33.15 13.22 27.02"/><polygon class="cls-4" points="13.34 27.02 13.47 27.01 13.88 33.39 13.75 33.27 13.34 27.02"/><polygon class="cls-4" points="13.47 27.01 13.6 27 14.02 33.5 13.88 33.39 13.47 27.01"/><polygon class="cls-4" points="13.6 27 13.72 26.99 14.15 33.62 14.02 33.5 13.6 27"/><polygon class="cls-4" points="13.72 26.99 13.85 26.98 14.29 33.74 14.15 33.62 13.72 26.99"/><polygon class="cls-4" points="13.85 26.98 13.98 26.98 14.43 33.86 14.29 33.74 13.85 26.98"/><polygon class="cls-4" points="13.98 26.98 14.11 26.97 14.56 33.97 14.43 33.86 13.98 26.98"/><polygon class="cls-4" points="14.11 26.97 14.23 26.96 14.7 34.09 14.56 33.97 14.11 26.97"/><polygon class="cls-4" points="14.23 26.96 14.36 26.95 14.83 34.18 14.79 34.18 14.7 34.09 14.23 26.96"/><rect class="cls-4" x="10.13" y="20.72" width="0.13" height="7.24" transform="translate(2.91 6.93) rotate(-3.71)"/><rect class="cls-4" x="10.25" y="20.71" width="0.13" height="7.24" transform="translate(2.91 6.94) rotate(-3.71)"/><rect class="cls-4" x="10.38" y="20.7" width="0.13" height="7.24" transform="translate(2.91 6.94) rotate(-3.71)"/><rect class="cls-4" x="10.51" y="20.7" width="0.13" height="7.24" transform="translate(2.92 6.95) rotate(-3.71)"/><rect class="cls-4" x="10.63" y="20.69" width="0.13" height="7.24" transform="translate(2.92 6.96) rotate(-3.71)"/><rect class="cls-4" x="10.76" y="20.68" width="0.13" height="7.24" transform="translate(2.92 6.97) rotate(-3.71)"/><rect class="cls-4" x="10.89" y="20.67" width="0.13" height="7.24" transform="translate(2.92 6.98) rotate(-3.71)"/><rect class="cls-4" x="11.02" y="20.66" width="0.13" height="7.24" transform="translate(2.92 6.99) rotate(-3.71)"/><rect class="cls-4" x="11.14" y="20.66" width="0.13" height="7.24" transform="translate(2.92 6.99) rotate(-3.71)"/><rect class="cls-4" x="11.27" y="20.65" width="0.13" height="7.24" transform="translate(2.92 7) rotate(-3.71)"/><rect class="cls-4" x="11.4" y="20.64" width="0.13" height="7.24" transform="translate(2.92 7.01) rotate(-3.71)"/><rect class="cls-4" x="11.52" y="20.63" width="0.13" height="7.24" transform="matrix(1, -0.06, 0.06, 1, 2.92, 7.02)"/><rect class="cls-4" x="11.65" y="20.62" width="0.13" height="7.24" transform="translate(2.92 7.03) rotate(-3.71)"/><rect class="cls-4" x="11.78" y="20.61" width="0.13" height="7.24" transform="translate(2.92 7.03) rotate(-3.71)"/><rect class="cls-4" x="11.9" y="20.61" width="0.13" height="7.24" transform="translate(2.92 7.04) rotate(-3.71)"/><rect class="cls-4" x="12.03" y="20.6" width="0.13" height="7.24" transform="translate(2.92 7.05) rotate(-3.71)"/><rect class="cls-4" x="12.16" y="20.59" width="0.13" height="7.24" transform="translate(2.93 7.06) rotate(-3.71)"/><rect class="cls-4" x="12.28" y="20.58" width="0.13" height="7.24" transform="translate(2.93 7.07) rotate(-3.71)"/><rect class="cls-4" x="12.41" y="20.57" width="0.13" height="7.24" transform="matrix(1, -0.06, 0.06, 1, 2.93, 7.08)"/><rect class="cls-4" x="12.54" y="20.57" width="0.13" height="7.24" transform="translate(2.93 7.08) rotate(-3.71)"/><rect class="cls-4" x="12.66" y="20.56" width="0.13" height="7.24" transform="translate(2.93 7.09) rotate(-3.71)"/><rect class="cls-4" x="12.79" y="20.55" width="0.13" height="7.24" transform="translate(2.93 7.1) rotate(-3.71)"/><rect class="cls-4" x="12.92" y="20.54" width="0.13" height="7.24" transform="translate(2.93 7.11) rotate(-3.71)"/><rect class="cls-4" x="13.05" y="20.53" width="0.13" height="7.24" transform="translate(2.93 7.12) rotate(-3.71)"/><rect class="cls-4" x="13.17" y="20.52" width="0.13" height="7.24" transform="translate(2.93 7.12) rotate(-3.71)"/><rect class="cls-4" x="13.3" y="20.52" width="0.13" height="7.24" transform="matrix(1, -0.06, 0.06, 1, 2.93, 7.13)"/><rect class="cls-4" x="13.43" y="20.5" width="0.3" height="7.24" transform="translate(2.93 7.15) rotate(-3.71)"/><rect class="cls-4" x="13.73" y="20.48" width="0.3" height="7.24" transform="translate(2.94 7.17) rotate(-3.71)"/><rect class="cls-4" x="14.02" y="20.46" width="0.3" height="7.24" transform="translate(2.94 7.19) rotate(-3.71)"/><rect class="cls-4" x="14.32" y="20.44" width="0.3" height="7.24" transform="translate(2.94 7.2) rotate(-3.71)"/><rect class="cls-4" x="14.62" y="20.42" width="0.3" height="7.24" transform="translate(2.94 7.22) rotate(-3.71)"/><rect class="cls-4" x="14.92" y="20.4" width="0.3" height="7.24" transform="translate(2.94 7.24) rotate(-3.71)"/><rect class="cls-4" x="15.22" y="20.39" width="0.3" height="7.24" transform="translate(2.95 7.26) rotate(-3.71)"/><rect class="cls-4" x="15.52" y="20.37" width="0.3" height="7.24" transform="translate(2.95 7.28) rotate(-3.71)"/><rect class="cls-4" x="15.82" y="20.35" width="0.3" height="7.24" transform="translate(2.95 7.3) rotate(-3.71)"/><rect class="cls-4" x="16.12" y="20.33" width="0.3" height="7.24" transform="matrix(1, -0.06, 0.06, 1, 2.95, 7.32)"/><rect class="cls-4" x="16.42" y="20.31" width="0.3" height="7.24" transform="translate(2.95 7.34) rotate(-3.71)"/><rect class="cls-4" x="16.72" y="20.29" width="0.3" height="7.24" transform="translate(2.95 7.36) rotate(-3.71)"/><rect class="cls-4" x="17.02" y="20.27" width="0.3" height="7.24" transform="translate(2.96 7.38) rotate(-3.71)"/><rect class="cls-4" x="17.32" y="20.25" width="0.3" height="7.24" transform="translate(2.96 7.4) rotate(-3.71)"/><rect class="cls-4" x="17.62" y="20.24" width="0.14" height="7.24" transform="translate(2.96 7.41) rotate(-3.71)"/><rect class="cls-4" x="17.76" y="20.23" width="0.14" height="7.24" transform="translate(2.96 7.42) rotate(-3.71)"/><rect class="cls-4" x="17.9" y="20.22" width="0.14" height="7.24" transform="translate(2.96 7.43) rotate(-3.71)"/><rect class="cls-4" x="18.04" y="20.21" width="0.14" height="7.24" transform="translate(2.96 7.44) rotate(-3.71)"/><rect class="cls-4" x="18.18" y="20.2" width="0.14" height="7.24" transform="translate(2.96 7.45) rotate(-3.71)"/><rect class="cls-4" x="18.32" y="20.19" width="0.14" height="7.24" transform="matrix(1, -0.06, 0.06, 1, 2.96, 7.46)"/><rect class="cls-4" x="18.46" y="20.18" width="0.14" height="7.24" transform="translate(2.97 7.47) rotate(-3.71)"/><rect class="cls-4" x="18.6" y="20.17" width="0.14" height="7.24" transform="translate(2.97 7.48) rotate(-3.71)"/><rect class="cls-4" x="18.74" y="20.16" width="0.14" height="7.24" transform="translate(2.97 7.48) rotate(-3.71)"/><rect class="cls-4" x="18.88" y="20.15" width="0.14" height="7.24" transform="translate(2.97 7.49) rotate(-3.71)"/><rect class="cls-4" x="19.02" y="20.14" width="0.14" height="7.24" transform="translate(2.97 7.5) rotate(-3.71)"/><rect class="cls-4" x="19.16" y="20.14" width="0.14" height="7.24" transform="translate(2.97 7.51) rotate(-3.71)"/><rect class="cls-4" x="19.3" y="20.13" width="0.14" height="7.24" transform="translate(2.97 7.52) rotate(-3.71)"/><rect class="cls-4" x="19.44" y="20.12" width="0.14" height="7.24" transform="translate(2.97 7.53) rotate(-3.71)"/><rect class="cls-4" x="19.58" y="20.11" width="0.14" height="7.24" transform="translate(2.97 7.54) rotate(-3.71)"/><rect class="cls-4" x="19.72" y="20.1" width="0.14" height="7.24" transform="translate(2.97 7.55) rotate(-3.71)"/><rect class="cls-4" x="19.86" y="20.09" width="0.14" height="7.24" transform="translate(2.97 7.56) rotate(-3.71)"/><rect class="cls-4" x="20" y="20.08" width="0.14" height="7.24" transform="translate(2.97 7.57) rotate(-3.71)"/><rect class="cls-4" x="20.14" y="20.07" width="0.14" height="7.24" transform="translate(2.98 7.57) rotate(-3.71)"/><rect class="cls-4" x="20.28" y="20.06" width="0.14" height="7.24" transform="translate(2.98 7.58) rotate(-3.71)"/><rect class="cls-4" x="20.42" y="20.05" width="0.14" height="7.24" transform="translate(2.98 7.59) rotate(-3.71)"/><rect class="cls-4" x="20.56" y="20.04" width="0.14" height="7.24" transform="matrix(1, -0.06, 0.06, 1, 2.98, 7.6)"/><rect class="cls-4" x="20.7" y="20.04" width="0.14" height="7.24" transform="matrix(1, -0.06, 0.06, 1, 2.98, 7.61)"/><rect class="cls-4" x="20.84" y="20.03" width="0.14" height="7.24" transform="translate(2.98 7.62) rotate(-3.71)"/><rect class="cls-4" x="20.98" y="20.02" width="0.14" height="7.24" transform="translate(2.98 7.63) rotate(-3.71)"/><rect class="cls-4" x="21.12" y="20.01" width="0.14" height="7.24" transform="translate(2.98 7.64) rotate(-3.71)"/><rect class="cls-4" x="21.26" y="20" width="0.14" height="7.24" transform="translate(2.98 7.65) rotate(-3.71)"/><rect class="cls-4" x="21.4" y="19.99" width="0.14" height="7.24" transform="matrix(1, -0.06, 0.06, 1, 2.98, 7.66)"/><rect class="cls-4" x="21.54" y="19.98" width="0.14" height="7.24" transform="translate(2.98 7.67) rotate(-3.71)"/><rect class="cls-4" x="21.68" y="19.97" width="0.14" height="7.24" transform="translate(2.99 7.67) rotate(-3.71)"/><rect class="cls-4" x="21.82" y="19.96" width="0.14" height="7.24" transform="translate(2.99 7.68) rotate(-3.71)"/><rect class="cls-4" x="21.96" y="19.95" width="0.14" height="7.24" transform="translate(2.99 7.69) rotate(-3.71)"/><rect class="cls-4" x="22.1" y="19.94" width="0.14" height="7.24" transform="translate(2.99 7.7) rotate(-3.71)"/><rect class="cls-4" x="22.24" y="19.94" width="0.14" height="7.24" transform="translate(2.99 7.71) rotate(-3.71)"/><rect class="cls-4" x="22.38" y="19.93" width="0.14" height="7.24" transform="translate(2.99 7.72) rotate(-3.71)"/><rect class="cls-4" x="22.52" y="19.92" width="0.14" height="7.24" transform="translate(2.99 7.73) rotate(-3.71)"/><rect class="cls-4" x="22.66" y="19.91" width="0.14" height="7.24" transform="translate(2.99 7.74) rotate(-3.71)"/><rect class="cls-4" x="22.8" y="19.9" width="0.14" height="7.24" transform="translate(2.99 7.75) rotate(-3.71)"/><rect class="cls-4" x="22.94" y="19.89" width="0.14" height="7.24" transform="translate(2.99 7.76) rotate(-3.71)"/><rect class="cls-4" x="23.08" y="19.88" width="0.14" height="7.24" transform="translate(2.99 7.76) rotate(-3.71)"/><rect class="cls-4" x="23.22" y="19.87" width="0.14" height="7.24" transform="translate(3 7.77) rotate(-3.71)"/><rect class="cls-4" x="23.36" y="19.86" width="0.14" height="7.24" transform="translate(3 7.78) rotate(-3.71)"/><polygon class="cls-4" points="27.73 26.08 27.76 26.08 27.88 26.19 28.34 33.3 28.2 33.31 27.73 26.08"/><polygon class="cls-4" points="28.03 26.32 28.48 33.29 28.34 33.3 27.88 26.19 28.03 26.32"/><polygon class="cls-4" points="28.18 26.45 28.62 33.28 28.48 33.29 28.03 26.32 28.18 26.45"/><polygon class="cls-4" points="28.33 26.58 28.76 33.27 28.62 33.28 28.18 26.45 28.33 26.58"/><polygon class="cls-4" points="28.48 26.71 28.9 33.26 28.76 33.27 28.33 26.58 28.48 26.71"/><polygon class="cls-4" points="28.63 26.84 29.04 33.26 28.9 33.26 28.48 26.71 28.63 26.84"/><polygon class="cls-4" points="28.77 26.97 29.18 33.25 29.04 33.26 28.63 26.84 28.77 26.97"/><polygon class="cls-4" points="28.92 27.1 29.32 33.24 29.18 33.25 28.77 26.97 28.92 27.1"/><polygon class="cls-4" points="29.07 27.23 29.46 33.23 29.32 33.24 28.92 27.1 29.07 27.23"/><polygon class="cls-4" points="29.22 27.36 29.6 33.22 29.46 33.23 29.07 27.23 29.22 27.36"/><polygon class="cls-4" points="29.37 27.49 29.74 33.21 29.6 33.22 29.22 27.36 29.37 27.49"/><polygon class="cls-4" points="29.52 27.62 29.87 33.07 29.75 33.21 29.74 33.21 29.37 27.49 29.52 27.62"/><polygon class="cls-4" points="29.67 27.75 30 32.92 29.87 33.07 29.52 27.62 29.67 27.75"/><polygon class="cls-4" points="29.82 27.88 30.14 32.77 30 32.92 29.67 27.75 29.82 27.88"/><polygon class="cls-4" points="29.97 28 30.27 32.62 30.14 32.77 29.82 27.88 29.97 28"/><polygon class="cls-4" points="30.12 28.14 30.4 32.47 30.27 32.62 29.97 28 30.12 28.14"/><polygon class="cls-4" points="30.27 28.27 30.53 32.32 30.4 32.47 30.12 28.14 30.27 28.27"/><polygon class="cls-4" points="30.41 28.39 30.66 32.17 30.53 32.32 30.27 28.27 30.41 28.39"/><polygon class="cls-4" points="30.56 28.52 30.79 32.02 30.66 32.17 30.41 28.39 30.56 28.52"/><polygon class="cls-4" points="30.71 28.65 30.92 31.87 30.79 32.02 30.56 28.52 30.71 28.65"/><polygon class="cls-4" points="30.86 28.78 31.05 31.72 30.92 31.87 30.71 28.65 30.86 28.78"/><polygon class="cls-4" points="31.01 28.91 31.18 31.57 31.05 31.72 30.86 28.78 31.01 28.91"/><polygon class="cls-4" points="31.16 29.04 31.31 31.41 31.18 31.57 31.01 28.91 31.16 29.04"/><polygon class="cls-4" points="31.31 29.17 31.45 31.27 31.31 31.41 31.16 29.04 31.31 29.17"/><polygon class="cls-4" points="31.45 31.27 31.31 29.17 32.42 30.14 31.45 31.27"/></g></g></g></svg>
\ No newline at end of file
+++ /dev/null
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 53.79 59.9"><defs><style>.cls-1{fill:#682726;}.cls-2{fill:#f0d6d5;}.cls-3{fill:#e1adab;}.cls-4{fill:#882623;}.cls-5{fill:#fae6e6;}.cls-6{fill:#681310;}.cls-7{clip-path:url(#clip-path);}.cls-8{clip-path:url(#clip-path-2);}.cls-9{clip-path:url(#clip-path-3);}.cls-10{clip-path:url(#clip-path-4);}.cls-11{clip-path:url(#clip-path-5);}.cls-12{clip-path:url(#clip-path-6);}</style><clipPath id="clip-path" transform="translate(5.22 6.23)"><path class="cls-1" d="M38.31,19c-.1.59-.23,1.19-.37,1.8A33.79,33.79,0,0,1,33,31.8a33.74,33.74,0,0,1-7.11,7.68,22.75,22.75,0,0,1-11.11,5l-.59.06a12.46,12.46,0,0,1-8-1.86l5.71,3.73a12.45,12.45,0,0,0,8,1.86l.59-.06a22.79,22.79,0,0,0,11.11-5,34.18,34.18,0,0,0,7.11-7.68,33.74,33.74,0,0,0,4.93-11c.14-.6.26-1.2.36-1.79,1.33-7.72-.91-14-5.53-17l-5.7-3.73C37.39,4.92,39.64,11.24,38.31,19Z"/></clipPath><clipPath id="clip-path-2" transform="translate(5.22 6.23)"><path class="cls-2" d="M35.79,18.58,1.23,21.43C3.63,11.36,13.58,1.4,23.13.61S38.19,8.51,35.79,18.58Z"/></clipPath><clipPath id="clip-path-3" transform="translate(5.22 6.23)"><path class="cls-2" d="M13.23,42.23C3.68,43-1.84,34.34.56,24.27l34.56-2.86C32.72,31.49,22.77,41.44,13.23,42.23Z"/></clipPath><clipPath id="clip-path-4" transform="translate(5.22 6.23)"><path class="cls-3" d="M22.46.68A11.83,11.83,0,0,1,33.75,5.25c2.75,3.81,3.11,8.87,2,13.33l2.15,2.18c1.11-4.69,1.18-10-1.11-14.31a12.14,12.14,0,0,0-4.6-4.88A12.44,12.44,0,0,0,26,0a17.81,17.81,0,0,0-6,1.14l-1.33.49A18.1,18.1,0,0,1,22.46.68Z"/></clipPath><clipPath id="clip-path-5" transform="translate(5.22 6.23)"><path class="cls-3" d="M.59,33.48a14.83,14.83,0,0,0,2.87,6.66,11.51,11.51,0,0,0,5.83,3.92c4.59,1.32,9.54-.12,13.53-2.47A33.66,33.66,0,0,0,37.94,20.76l-2.82.65a28.48,28.48,0,0,1-6.5,12,26.92,26.92,0,0,1-11.6,8,13.81,13.81,0,0,1-10.38-.41A12.37,12.37,0,0,1,.36,32.43Z"/></clipPath><clipPath id="clip-path-6" transform="translate(5.22 6.23)"><path class="cls-4" d="M44,14.41a23,23,0,0,1-.13,9h0c-.06.29-.12.59-.19.88.09-.36,0,.06,0,.12.07-.33,0,.08,0,.12s-.06.26-.1.39-.12.49-.19.74c-.14.5-.29,1-.46,1.49-.31.95-.67,1.88-1.07,2.8a35.66,35.66,0,0,1-2.87,5.25,33.89,33.89,0,0,1-7.86,8.43,25.22,25.22,0,0,1-6.43,3.54L26,46.67a26.28,26.28,0,0,0,9.35-6.09A30.86,30.86,0,0,0,42,31.08a35.59,35.59,0,0,0,2.07-6.34A24.35,24.35,0,0,0,44.66,19c0-.56,0-1.11-.1-1.67a14.17,14.17,0,0,0-.33-1.84Zm-.14,9.09v-.05h0v0Z"/></clipPath></defs><g id="Calque_2" data-name="Calque 2"><g id="Calque_1-2" data-name="Calque 1"><polygon class="cls-5" points="6.25 30.04 6.45 27.67 41.01 24.81 43.16 26.99 6.25 30.04"/><polygon class="cls-6" points="43.16 26.99 40.34 27.65 5.78 30.5 6.25 30.04 43.16 26.99"/><path class="cls-1" d="M38.31,19c-.1.59-.23,1.19-.37,1.8A33.79,33.79,0,0,1,33,31.8a33.74,33.74,0,0,1-7.11,7.68,22.75,22.75,0,0,1-11.11,5l-.59.06a12.46,12.46,0,0,1-8-1.86l5.71,3.73a12.45,12.45,0,0,0,8,1.86l.59-.06a22.79,22.79,0,0,0,11.11-5,34.18,34.18,0,0,0,7.11-7.68,33.74,33.74,0,0,0,4.93-11c.14-.6.26-1.2.36-1.79,1.33-7.72-.91-14-5.53-17l-5.7-3.73C37.39,4.92,39.64,11.24,38.31,19Z" transform="translate(5.22 6.23)"/><g class="cls-7"><polygon class="cls-1" points="12.94 52.26 21.35 57.65 16.4 59.9 12.94 52.26"/><polygon class="cls-1" points="12.28 50.8 22.3 57.22 21.35 57.65 12.94 52.26 12.28 50.8"/><polygon class="cls-1" points="11.62 49.33 23.25 56.79 22.3 57.22 12.28 50.8 11.62 49.33"/><polygon class="cls-1" points="11.3 48.65 11.55 48.26 24.2 56.36 23.25 56.79 11.62 49.33 11.3 48.65"/><polygon class="cls-1" points="11.55 48.26 12.02 47.52 25.15 55.93 24.2 56.36 11.55 48.26"/><polygon class="cls-1" points="12.02 47.52 12.5 46.78 26.1 55.5 25.15 55.93 12.02 47.52"/><polygon class="cls-1" points="12.5 46.78 12.97 46.05 27.05 55.07 26.1 55.5 12.5 46.78"/><polygon class="cls-1" points="12.97 46.05 13.44 45.31 28 54.64 27.05 55.07 12.97 46.05"/><polygon class="cls-1" points="13.44 45.31 13.91 44.58 28.94 54.21 28 54.64 13.44 45.31"/><polygon class="cls-1" points="13.91 44.58 14.38 43.84 29.89 53.78 28.94 54.21 13.91 44.58"/><polygon class="cls-1" points="14.38 43.84 14.85 43.1 30.84 53.35 29.89 53.78 14.38 43.84"/><polygon class="cls-1" points="14.85 43.1 15.33 42.37 31.79 52.92 30.84 53.35 14.85 43.1"/><polygon class="cls-1" points="15.33 42.37 15.8 41.63 32.74 52.49 31.79 52.92 15.33 42.37"/><polygon class="cls-1" points="15.8 41.63 16.27 40.9 33.69 52.06 32.74 52.49 15.8 41.63"/><polygon class="cls-1" points="16.27 40.9 16.74 40.16 34.64 51.63 33.69 52.06 16.27 40.9"/><polygon class="cls-1" points="16.74 40.16 17.21 39.42 35.59 51.2 34.64 51.63 16.74 40.16"/><polygon class="cls-1" points="17.21 39.42 17.68 38.69 36.53 50.77 35.59 51.2 17.21 39.42"/><polygon class="cls-1" points="17.68 38.69 18.16 37.95 37.48 50.34 36.53 50.77 17.68 38.69"/><polygon class="cls-1" points="18.16 37.95 18.63 37.22 38.43 49.91 37.48 50.34 18.16 37.95"/><polygon class="cls-1" points="18.63 37.22 19.1 36.48 39.37 49.47 39.36 49.49 38.43 49.91 18.63 37.22"/><rect class="cls-1" x="23.82" y="24.34" width="0.87" height="24.08" transform="translate(-14.24 43.4) rotate(-57.35)"/><rect class="cls-1" x="24.29" y="23.6" width="0.87" height="24.08" transform="translate(-13.4 43.46) rotate(-57.35)"/><rect class="cls-1" x="24.74" y="22.84" width="0.94" height="24.08" transform="translate(-12.53 43.52) rotate(-57.35)"/><rect class="cls-1" x="25.25" y="22.04" width="0.94" height="24.08" transform="translate(-11.63 43.58) rotate(-57.35)"/><rect class="cls-1" x="25.76" y="21.25" width="0.94" height="24.08" transform="translate(-10.73 43.64) rotate(-57.35)"/><rect class="cls-1" x="26.27" y="20.46" width="0.94" height="24.08" transform="translate(-9.83 43.71) rotate(-57.35)"/><rect class="cls-1" x="26.78" y="19.66" width="0.94" height="24.08" transform="translate(-8.93 43.77) rotate(-57.35)"/><rect class="cls-1" x="27.28" y="18.87" width="0.94" height="24.08" transform="translate(-8.03 43.83) rotate(-57.35)"/><rect class="cls-1" x="27.79" y="18.08" width="0.94" height="24.08" transform="translate(-7.12 43.9) rotate(-57.35)"/><rect class="cls-1" x="28.3" y="17.28" width="0.94" height="24.08" transform="translate(-6.22 43.96) rotate(-57.35)"/><rect class="cls-1" x="28.81" y="16.49" width="0.94" height="24.08" transform="translate(-5.32 44.02) rotate(-57.35)"/><rect class="cls-1" x="29.32" y="15.7" width="0.94" height="24.08" transform="translate(-4.42 44.08) rotate(-57.35)"/><rect class="cls-1" x="29.83" y="14.9" width="0.94" height="24.08" transform="translate(-3.52 44.15) rotate(-57.35)"/><rect class="cls-1" x="30.33" y="14.11" width="0.94" height="24.08" transform="translate(-2.61 44.21) rotate(-57.35)"/><rect class="cls-1" x="30.84" y="13.32" width="0.94" height="24.08" transform="matrix(0.54, -0.84, 0.84, 0.54, -1.71, 44.27)"/><rect class="cls-1" x="31.35" y="12.52" width="0.94" height="24.08" transform="translate(-0.81 44.34) rotate(-57.35)"/><rect class="cls-1" x="31.95" y="11.9" width="0.53" height="24.08" transform="translate(-0.11 44.38) rotate(-57.35)"/><rect class="cls-1" x="32.24" y="11.46" width="0.53" height="24.08" transform="translate(0.4 44.42) rotate(-57.35)"/><rect class="cls-1" x="32.53" y="11.01" width="0.53" height="24.08" transform="translate(0.91 44.46) rotate(-57.35)"/><rect class="cls-1" x="32.82" y="10.56" width="0.53" height="24.08" transform="translate(1.42 44.49) rotate(-57.35)"/><rect class="cls-1" x="33.1" y="10.11" width="0.53" height="24.08" transform="translate(1.93 44.53) rotate(-57.35)"/><rect class="cls-1" x="33.39" y="9.66" width="0.53" height="24.08" transform="matrix(0.54, -0.84, 0.84, 0.54, 2.44, 44.56)"/><rect class="cls-1" x="33.68" y="9.22" width="0.53" height="24.08" transform="translate(2.95 44.6) rotate(-57.35)"/><rect class="cls-1" x="33.96" y="8.77" width="0.53" height="24.08" transform="translate(3.46 44.63) rotate(-57.35)"/><rect class="cls-1" x="34.25" y="8.32" width="0.53" height="24.08" transform="translate(3.97 44.67) rotate(-57.35)"/><rect class="cls-1" x="34.54" y="7.87" width="0.53" height="24.08" transform="translate(4.48 44.7) rotate(-57.35)"/><rect class="cls-1" x="34.82" y="7.42" width="0.53" height="24.08" transform="translate(4.99 44.74) rotate(-57.35)"/><rect class="cls-1" x="35.11" y="6.98" width="0.53" height="24.08" transform="translate(5.5 44.77) rotate(-57.35)"/><rect class="cls-1" x="35.4" y="6.53" width="0.53" height="24.08" transform="translate(6.01 44.81) rotate(-57.35)"/><rect class="cls-1" x="35.69" y="6.08" width="0.53" height="24.08" transform="translate(6.52 44.85) rotate(-57.35)"/><rect class="cls-1" x="35.97" y="5.63" width="0.53" height="24.08" transform="translate(7.03 44.88) rotate(-57.35)"/><rect class="cls-1" x="36.26" y="5.18" width="0.53" height="24.08" transform="translate(7.54 44.92) rotate(-57.35)"/><rect class="cls-1" x="36.55" y="4.74" width="0.53" height="24.08" transform="translate(8.04 44.95) rotate(-57.35)"/><rect class="cls-1" x="36.83" y="4.29" width="0.53" height="24.08" transform="translate(8.55 44.99) rotate(-57.35)"/><rect class="cls-1" x="37.12" y="3.84" width="0.53" height="24.08" transform="translate(9.06 45.02) rotate(-57.35)"/><rect class="cls-1" x="37.41" y="3.39" width="0.53" height="24.08" transform="translate(9.57 45.06) rotate(-57.35)"/><rect class="cls-1" x="37.7" y="2.94" width="0.53" height="24.08" transform="translate(10.08 45.09) rotate(-57.35)"/><rect class="cls-1" x="37.98" y="2.5" width="0.53" height="24.08" transform="translate(10.59 45.13) rotate(-57.35)"/><polygon class="cls-1" points="33.48 14.05 33.76 13.6 53.45 26.22 53.79 26.97 53.75 27.04 33.48 14.05"/><polygon class="cls-1" points="33.76 13.6 34.05 13.15 53.05 25.33 53.45 26.22 33.76 13.6"/><polygon class="cls-1" points="34.05 13.15 34.34 12.71 52.65 24.44 53.05 25.33 34.05 13.15"/><polygon class="cls-1" points="34.34 12.71 34.62 12.26 52.24 23.55 52.65 24.44 34.34 12.71"/><polygon class="cls-1" points="34.62 12.26 34.91 11.81 51.84 22.66 52.24 23.55 34.62 12.26"/><polygon class="cls-1" points="34.91 11.81 35.2 11.36 51.44 21.77 51.84 22.66 34.91 11.81"/><polygon class="cls-1" points="35.2 11.36 35.48 10.91 51.03 20.88 51.44 21.77 35.2 11.36"/><polygon class="cls-1" points="35.48 10.91 35.77 10.46 50.63 19.98 51.03 20.88 35.48 10.91"/><polygon class="cls-1" points="35.77 10.46 36.06 10.02 50.22 19.09 50.63 19.98 35.77 10.46"/><polygon class="cls-1" points="36.06 10.02 36.35 9.57 49.82 18.2 50.22 19.09 36.06 10.02"/><polygon class="cls-1" points="36.35 9.57 36.63 9.12 49.41 17.31 49.82 18.2 36.35 9.57"/><polygon class="cls-1" points="36.63 9.12 36.92 8.67 49.01 16.42 49.41 17.31 36.63 9.12"/><polygon class="cls-1" points="36.92 8.67 36.96 8.61 37.46 8.38 48.61 15.53 49.01 16.42 36.92 8.67"/><polygon class="cls-1" points="38.03 8.12 48.2 14.64 48.61 15.53 37.46 8.38 38.03 8.12"/><polygon class="cls-1" points="38.61 7.86 47.8 13.75 48.2 14.64 38.03 8.12 38.61 7.86"/><polygon class="cls-1" points="39.19 7.6 47.4 12.86 47.8 13.75 38.61 7.86 39.19 7.6"/><polygon class="cls-1" points="39.77 7.34 46.99 11.97 47.4 12.86 39.19 7.6 39.77 7.34"/><polygon class="cls-1" points="40.34 7.08 46.59 11.08 46.99 11.97 39.77 7.34 40.34 7.08"/><polygon class="cls-1" points="40.92 6.81 46.19 10.19 46.59 11.08 40.34 7.08 40.92 6.81"/><polygon class="cls-1" points="41.5 6.55 45.78 9.3 46.19 10.19 40.92 6.81 41.5 6.55"/><polygon class="cls-1" points="42.08 6.29 45.38 8.4 45.78 9.3 41.5 6.55 42.08 6.29"/><polygon class="cls-1" points="42.66 6.03 44.97 7.51 45.38 8.4 42.08 6.29 42.66 6.03"/><polygon class="cls-1" points="43.23 5.77 44.57 6.62 44.97 7.51 42.66 6.03 43.23 5.77"/><polygon class="cls-1" points="43.81 5.5 44.16 5.73 44.57 6.62 43.23 5.77 43.81 5.5"/><polygon class="cls-1" points="44.16 5.73 43.81 5.5 44.02 5.41 44.16 5.73"/></g><path class="cls-2" d="M35.79,18.58,1.23,21.43C3.63,11.36,13.58,1.4,23.13.61S38.19,8.51,35.79,18.58Z" transform="translate(5.22 6.23)"/><g class="cls-8"><polygon class="cls-2" points="35.3 27.4 46.41 21.37 46.79 22.2 35.3 27.4"/><polygon class="cls-2" points="14.26 36.94 45.72 19.85 46.41 21.37 35.3 27.4 14.26 36.94"/><polygon class="cls-2" points="11.84 38.04 11.14 36.74 45.03 18.32 45.72 19.85 14.26 36.94 11.84 38.04"/><polygon class="cls-2" points="11.14 36.74 10.35 35.28 44.34 16.8 45.03 18.32 11.14 36.74"/><polygon class="cls-2" points="10.35 35.28 9.55 33.82 43.66 15.29 44.34 16.8 10.35 35.28"/><polygon class="cls-2" points="9.55 33.82 8.76 32.35 42.97 13.77 43.66 15.29 9.55 33.82"/><polygon class="cls-2" points="8.76 32.35 7.96 30.89 42.28 12.24 42.97 13.77 8.76 32.35"/><polygon class="cls-2" points="7.96 30.89 7.68 30.37 7.23 29.39 41.5 10.78 42.18 12.04 42.28 12.24 7.96 30.89"/><polygon class="cls-2" points="6.54 27.87 40.7 9.31 41.5 10.78 7.23 29.39 6.54 27.87"/><polygon class="cls-2" points="5.86 26.35 39.91 7.85 40.7 9.31 6.54 27.87 5.86 26.35"/><polygon class="cls-2" points="5.17 24.83 39.11 6.39 39.91 7.85 5.86 26.35 5.17 24.83"/><polygon class="cls-2" points="4.48 23.31 38.32 4.92 39.11 6.39 5.17 24.83 4.48 23.31"/><polygon class="cls-2" points="3.79 21.79 37.52 3.46 38.32 4.92 4.48 23.31 3.79 21.79"/><polygon class="cls-2" points="3.1 20.27 36.73 2 37.52 3.46 3.79 21.79 3.1 20.27"/><polygon class="cls-2" points="2.41 18.75 35.93 0.54 36.73 2 3.1 20.27 2.41 18.75"/><polygon class="cls-2" points="35.64 0 35.93 0.54 2.41 18.75 1.02 15.7 35.64 0"/></g><path class="cls-2" d="M13.23,42.23C3.68,43-1.84,34.34.56,24.27l34.56-2.86C32.72,31.49,22.77,41.44,13.23,42.23Z" transform="translate(5.22 6.23)"/><g class="cls-9"><polygon class="cls-2" points="11.14 55.31 10.51 54.14 44.08 35.9 45.76 39.62 11.14 55.31"/><polygon class="cls-2" points="10.51 54.14 9.71 52.67 43.39 34.38 44.08 35.9 10.51 54.14"/><polygon class="cls-2" points="9.71 52.67 8.92 51.21 42.7 32.86 43.39 34.38 9.71 52.67"/><polygon class="cls-2" points="8.92 51.21 8.12 49.75 42.01 31.34 42.7 32.86 8.92 51.21"/><polygon class="cls-2" points="8.12 49.75 7.33 48.29 41.32 29.82 42.01 31.34 8.12 49.75"/><polygon class="cls-2" points="7.33 48.29 6.53 46.82 40.63 28.3 41.32 29.82 7.33 48.29"/><polygon class="cls-2" points="6.53 46.82 5.74 45.36 39.94 26.78 40.63 28.3 6.53 46.82"/><polygon class="cls-2" points="5.74 45.36 4.94 43.9 39.25 25.26 39.94 26.78 5.74 45.36"/><polygon class="cls-2" points="4.94 43.9 4.61 43.27 4.21 42.4 38.48 23.78 39.11 24.94 39.25 25.26 4.94 43.9"/><polygon class="cls-2" points="3.52 40.88 37.68 22.32 38.48 23.78 4.21 42.4 3.52 40.88"/><polygon class="cls-2" points="2.83 39.36 36.89 20.86 37.68 22.32 3.52 40.88 2.83 39.36"/><polygon class="cls-2" points="2.14 37.84 36.09 19.39 36.89 20.86 2.83 39.36 2.14 37.84"/><polygon class="cls-2" points="1.45 36.32 35.3 17.93 36.09 19.39 2.14 37.84 1.45 36.32"/><polygon class="cls-2" points="0.76 34.8 23.33 22.54 34.94 17.27 35.3 17.93 1.45 36.32 0.76 34.8"/><polygon class="cls-2" points="0.07 33.28 2.29 32.08 23.33 22.54 0.76 34.8 0.07 33.28"/><polygon class="cls-2" points="2.29 32.08 0.07 33.28 0 33.12 2.29 32.08"/></g><path class="cls-3" d="M22.46.68A11.83,11.83,0,0,1,33.75,5.25c2.75,3.81,3.11,8.87,2,13.33l2.15,2.18c1.11-4.69,1.18-10-1.11-14.31a12.14,12.14,0,0,0-4.6-4.88A12.44,12.44,0,0,0,26,0a17.81,17.81,0,0,0-6,1.14l-1.33.49A18.1,18.1,0,0,1,22.46.68Z" transform="translate(5.22 6.23)"/><g class="cls-10"><polygon class="cls-3" points="38.53 29.09 37.77 28.02 46.53 21.86 47.88 24.85 38.53 29.09"/><polygon class="cls-3" points="37.77 28.02 37.56 27.72 46.37 21.52 46.53 21.86 37.77 28.02"/><polygon class="cls-3" points="37.56 27.72 37.35 27.41 46.22 21.18 46.37 21.52 37.56 27.72"/><polygon class="cls-3" points="37.35 27.41 37.14 27.11 46.06 20.83 46.22 21.18 37.35 27.41"/><polygon class="cls-3" points="37.14 27.11 36.92 26.81 45.9 20.49 46.06 20.83 37.14 27.11"/><polygon class="cls-3" points="36.92 26.81 36.71 26.51 45.75 20.15 45.9 20.49 36.92 26.81"/><polygon class="cls-3" points="36.71 26.51 36.5 26.2 45.59 19.8 45.75 20.15 36.71 26.51"/><polygon class="cls-3" points="36.5 26.2 36.28 25.9 45.44 19.46 45.59 19.8 36.5 26.2"/><polygon class="cls-3" points="36.28 25.9 36.07 25.6 45.28 19.12 45.44 19.46 36.28 25.9"/><polygon class="cls-3" points="36.07 25.6 35.86 25.3 45.13 18.77 45.28 19.12 36.07 25.6"/><polygon class="cls-3" points="35.86 25.3 35.65 24.99 44.97 18.43 45.13 18.77 35.86 25.3"/><polygon class="cls-3" points="35.65 24.99 35.43 24.69 44.81 18.09 44.97 18.43 35.65 24.99"/><polygon class="cls-3" points="35.43 24.69 35.22 24.39 44.66 17.75 44.81 18.09 35.43 24.69"/><polygon class="cls-3" points="35.22 24.39 35.01 24.09 44.51 17.41 44.66 17.75 35.22 24.39"/><polygon class="cls-3" points="35.01 24.09 34.8 23.8 44.36 17.08 44.51 17.41 35.01 24.09"/><polygon class="cls-3" points="34.8 23.8 34.6 23.5 44.2 16.74 44.36 17.08 34.8 23.8"/><polygon class="cls-3" points="34.6 23.5 34.39 23.2 44.05 16.41 44.2 16.74 34.6 23.5"/><polygon class="cls-3" points="34.39 23.2 34.18 22.91 43.9 16.07 44.05 16.41 34.39 23.2"/><polygon class="cls-3" points="34.18 22.91 33.97 22.61 43.75 15.74 43.9 16.07 34.18 22.91"/><polygon class="cls-3" points="33.97 22.61 33.76 22.32 43.6 15.4 43.75 15.74 33.97 22.61"/><polygon class="cls-3" points="33.76 22.32 33.56 22.02 43.45 15.07 43.6 15.4 33.76 22.32"/><polygon class="cls-3" points="33.56 22.02 33.35 21.73 43.29 14.73 43.45 15.07 33.56 22.02"/><polygon class="cls-3" points="33.35 21.73 33.14 21.43 43.14 14.4 43.29 14.73 33.35 21.73"/><polygon class="cls-3" points="33.14 21.43 32.93 21.14 42.99 14.06 43.14 14.4 33.14 21.43"/><polygon class="cls-3" points="32.93 21.14 32.73 20.84 42.84 13.73 42.99 14.06 32.93 21.14"/><polygon class="cls-3" points="32.73 20.84 32.52 20.55 42.69 13.39 42.84 13.73 32.73 20.84"/><polygon class="cls-3" points="32.52 20.55 32.31 20.25 42.53 13.06 42.69 13.39 32.52 20.55"/><polygon class="cls-3" points="32.31 20.25 32.1 19.95 42.38 12.72 42.53 13.06 32.31 20.25"/><polygon class="cls-3" points="32.1 19.95 31.89 19.66 42.23 12.39 42.38 12.72 32.1 19.95"/><polygon class="cls-3" points="31.89 19.66 31.68 19.36 42.08 12.05 42.23 12.39 31.89 19.66"/><polygon class="cls-3" points="31.68 19.36 31.48 19.07 41.93 11.72 42.08 12.05 31.68 19.36"/><polygon class="cls-3" points="31.48 19.07 31.27 18.77 41.76 11.39 41.81 11.47 41.93 11.72 31.48 19.07"/><rect class="cls-3" x="24.78" y="8.52" width="12.83" height="0.36" transform="translate(5.89 25.77) rotate(-35.13)"/><rect class="cls-3" x="24.57" y="8.22" width="12.83" height="0.36" transform="translate(6.03 25.59) rotate(-35.13)"/><rect class="cls-3" x="24.36" y="7.93" width="12.83" height="0.36" transform="translate(6.16 25.42) rotate(-35.13)"/><rect class="cls-3" x="24.16" y="7.63" width="12.83" height="0.36" transform="translate(6.29 25.25) rotate(-35.13)"/><rect class="cls-3" x="23.95" y="7.34" width="12.83" height="0.36" transform="translate(6.42 25.07) rotate(-35.13)"/><rect class="cls-3" x="23.74" y="7.04" width="12.83" height="0.36" transform="translate(6.55 24.9) rotate(-35.13)"/><rect class="cls-3" x="23.53" y="6.75" width="12.83" height="0.36" transform="translate(6.69 24.72) rotate(-35.13)"/><rect class="cls-3" x="23.32" y="6.45" width="12.83" height="0.36" transform="translate(6.82 24.55) rotate(-35.13)"/><rect class="cls-3" x="23.12" y="6.16" width="12.83" height="0.36" transform="translate(6.95 24.38) rotate(-35.13)"/><rect class="cls-3" x="22.91" y="5.86" width="12.83" height="0.36" transform="translate(7.08 24.2) rotate(-35.13)"/><rect class="cls-3" x="22.7" y="5.56" width="12.83" height="0.36" transform="translate(7.21 24.03) rotate(-35.13)"/><rect class="cls-3" x="22.49" y="5.27" width="12.83" height="0.36" transform="translate(7.35 23.86) rotate(-35.13)"/><rect class="cls-3" x="22.28" y="4.97" width="12.83" height="0.36" transform="translate(7.48 23.68) rotate(-35.13)"/><rect class="cls-3" x="22.08" y="4.68" width="12.83" height="0.36" transform="translate(7.61 23.51) rotate(-35.13)"/><rect class="cls-3" x="21.87" y="4.38" width="12.83" height="0.36" transform="translate(7.74 23.34) rotate(-35.13)"/><rect class="cls-3" x="21.66" y="4.09" width="12.83" height="0.36" transform="translate(7.88 23.16) rotate(-35.13)"/><rect class="cls-3" x="21.45" y="3.79" width="12.83" height="0.36" transform="matrix(0.82, -0.58, 0.58, 0.82, 8.01, 22.99)"/><rect class="cls-3" x="21.24" y="3.5" width="12.83" height="0.36" transform="translate(8.14 22.82) rotate(-35.13)"/><rect class="cls-3" x="21.04" y="3.2" width="12.83" height="0.36" transform="translate(8.27 22.64) rotate(-35.13)"/><rect class="cls-3" x="20.83" y="2.9" width="12.83" height="0.36" transform="translate(8.4 22.47) rotate(-35.13)"/><rect class="cls-3" x="20.62" y="2.61" width="12.83" height="0.36" transform="matrix(0.82, -0.58, 0.58, 0.82, 8.54, 22.3)"/><rect class="cls-3" x="20.41" y="2.31" width="12.83" height="0.36" transform="translate(8.67 22.12) rotate(-35.13)"/><rect class="cls-3" x="20.2" y="2.02" width="12.83" height="0.36" transform="translate(8.8 21.95) rotate(-35.13)"/><rect class="cls-3" x="20" y="1.72" width="12.83" height="0.36" transform="translate(8.93 21.78) rotate(-35.13)"/><rect class="cls-3" x="19.79" y="1.43" width="12.83" height="0.36" transform="translate(9.07 21.6) rotate(-35.13)"/><rect class="cls-3" x="19.58" y="1.13" width="12.83" height="0.36" transform="translate(9.2 21.43) rotate(-35.13)"/><rect class="cls-3" x="19.37" y="0.84" width="12.83" height="0.36" transform="translate(9.33 21.26) rotate(-35.13)"/><rect class="cls-3" x="19.16" y="0.54" width="12.83" height="0.36" transform="translate(9.46 21.08) rotate(-35.13)"/><rect class="cls-3" x="18.96" y="0.25" width="12.83" height="0.36" transform="translate(9.59 20.91) rotate(-35.13)"/><polygon class="cls-3" points="25.24 10.2 25.03 9.9 35.34 2.65 35.55 2.56 35.73 2.82 25.24 10.2"/><polygon class="cls-3" points="25.03 9.9 24.82 9.61 33.58 3.45 35.34 2.65 25.03 9.9"/><polygon class="cls-3" points="24.82 9.61 24.62 9.31 31.81 4.25 33.58 3.45 24.82 9.61"/><polygon class="cls-3" points="24.62 9.31 24.33 8.9 23.85 7.86 31.81 4.25 24.62 9.31"/></g><path class="cls-3" d="M.59,33.48a14.83,14.83,0,0,0,2.87,6.66,11.51,11.51,0,0,0,5.83,3.92c4.59,1.32,9.54-.12,13.53-2.47A33.66,33.66,0,0,0,37.94,20.76l-2.82.65a28.48,28.48,0,0,1-6.5,12,26.92,26.92,0,0,1-11.6,8,13.81,13.81,0,0,1-10.38-.41A12.37,12.37,0,0,1,.36,32.43Z" transform="translate(5.22 6.23)"/><g class="cls-11"><polygon class="cls-3" points="5.11 38.87 12.34 55.48 12.18 55.55 4.71 39.06 5.11 38.87"/><polygon class="cls-3" points="5.84 38.54 13.07 55.15 12.34 55.48 5.11 38.87 5.84 38.54"/><polygon class="cls-3" points="6.57 38.21 13.8 54.82 13.07 55.15 5.84 38.54 6.57 38.21"/><polygon class="cls-3" points="7.3 37.88 14.53 54.49 13.8 54.82 6.57 38.21 7.3 37.88"/><polygon class="cls-3" points="8.03 37.55 15.26 54.16 14.53 54.49 7.3 37.88 8.03 37.55"/><polygon class="cls-3" points="8.76 37.22 15.98 53.83 15.26 54.16 8.03 37.55 8.76 37.22"/><polygon class="cls-3" points="9.49 36.89 16.71 53.5 15.98 53.83 8.76 37.22 9.49 36.89"/><polygon class="cls-3" points="10.21 36.56 17.44 53.17 16.71 53.5 9.49 36.89 10.21 36.56"/><polygon class="cls-3" points="10.94 36.23 18.17 52.84 17.44 53.17 10.21 36.56 10.94 36.23"/><polygon class="cls-3" points="11.67 35.9 18.9 52.51 18.17 52.84 10.94 36.23 11.67 35.9"/><polygon class="cls-3" points="12.4 35.57 19.63 52.18 18.9 52.51 11.67 35.9 12.4 35.57"/><polygon class="cls-3" points="13.13 35.24 20.36 51.85 19.63 52.18 12.4 35.57 13.13 35.24"/><polygon class="cls-3" points="13.86 34.91 21.08 51.52 20.36 51.85 13.13 35.24 13.86 34.91"/><polygon class="cls-3" points="14.59 34.58 21.81 51.19 21.08 51.52 13.86 34.91 14.59 34.58"/><polygon class="cls-3" points="15.31 34.24 22.54 50.85 21.81 51.19 14.59 34.58 15.31 34.24"/><polygon class="cls-3" points="16.04 33.91 23.27 50.52 22.54 50.85 15.31 34.24 16.04 33.91"/><polygon class="cls-3" points="16.77 33.59 24 50.19 23.27 50.52 16.04 33.91 16.77 33.59"/><polygon class="cls-3" points="17.5 33.25 24.73 49.86 24 50.19 16.77 33.59 17.5 33.25"/><polygon class="cls-3" points="18.23 32.92 25.46 49.53 24.73 49.86 17.5 33.25 18.23 32.92"/><polygon class="cls-3" points="18.31 32.89 18.96 32.6 26.18 49.2 25.46 49.53 18.23 32.92 18.31 32.89"/><polygon class="cls-3" points="18.96 32.6 19.7 32.28 26.91 48.87 26.18 49.2 18.96 32.6"/><polygon class="cls-3" points="19.7 32.28 20.43 31.96 27.64 48.54 26.91 48.87 19.7 32.28"/><polygon class="cls-3" points="20.43 31.96 21.16 31.65 28.37 48.21 27.64 48.54 20.43 31.96"/><polygon class="cls-3" points="21.16 31.65 21.9 31.33 29.1 47.88 28.37 48.21 21.16 31.65"/><polygon class="cls-3" points="21.9 31.33 31.62 27.1 38.75 43.51 29.1 47.88 21.9 31.33"/><rect class="cls-3" x="29.95" y="20.06" width="0.34" height="17.89" transform="translate(-3.85 20.66) rotate(-23.51)"/><rect class="cls-3" x="30.26" y="19.92" width="0.34" height="17.88" transform="translate(-3.77 20.77) rotate(-23.51)"/><rect class="cls-3" x="30.56" y="19.79" width="0.34" height="17.88" transform="translate(-3.69 20.88) rotate(-23.51)"/><rect class="cls-3" x="30.87" y="19.66" width="0.34" height="17.87" transform="translate(-3.61 20.99) rotate(-23.51)"/><rect class="cls-3" x="31.18" y="19.52" width="0.34" height="17.87" transform="translate(-3.53 21.1) rotate(-23.51)"/><rect class="cls-3" x="31.48" y="19.39" width="0.34" height="17.86" transform="translate(-3.45 21.21) rotate(-23.51)"/><rect class="cls-3" x="31.79" y="19.26" width="0.34" height="17.86" transform="translate(-3.37 21.32) rotate(-23.51)"/><rect class="cls-3" x="32.1" y="19.12" width="0.34" height="17.85" transform="translate(-3.29 21.43) rotate(-23.51)"/><rect class="cls-3" x="32.4" y="18.99" width="0.34" height="17.85" transform="translate(-3.21 21.54) rotate(-23.51)"/><rect class="cls-3" x="32.71" y="18.86" width="0.34" height="17.84" transform="translate(-3.13 21.65) rotate(-23.51)"/><rect class="cls-3" x="33.02" y="18.72" width="0.34" height="17.84" transform="translate(-3.05 21.77) rotate(-23.51)"/><rect class="cls-3" x="33.32" y="18.59" width="0.34" height="17.83" transform="translate(-2.97 21.88) rotate(-23.51)"/><rect class="cls-3" x="33.63" y="18.45" width="0.34" height="17.83" transform="translate(-2.89 21.99) rotate(-23.51)"/><rect class="cls-3" x="33.93" y="18.32" width="0.34" height="17.82" transform="translate(-2.81 22.1) rotate(-23.51)"/><rect class="cls-3" x="34.24" y="18.19" width="0.34" height="17.82" transform="translate(-2.73 22.21) rotate(-23.51)"/><rect class="cls-3" x="34.55" y="18.05" width="0.34" height="17.81" transform="translate(-2.65 22.32) rotate(-23.51)"/><rect class="cls-3" x="34.85" y="17.92" width="0.34" height="17.81" transform="matrix(0.92, -0.4, 0.4, 0.92, -2.58, 22.43)"/><rect class="cls-3" x="35.16" y="17.79" width="0.34" height="17.8" transform="translate(-2.5 22.54) rotate(-23.51)"/><rect class="cls-3" x="35.47" y="17.65" width="0.34" height="17.8" transform="translate(-2.42 22.65) rotate(-23.51)"/><rect class="cls-3" x="35.77" y="17.52" width="0.34" height="17.79" transform="translate(-2.34 22.76) rotate(-23.51)"/><rect class="cls-3" x="36.08" y="17.39" width="0.34" height="17.79" transform="translate(-2.26 22.87) rotate(-23.51)"/><rect class="cls-3" x="36.38" y="17.25" width="0.34" height="17.78" transform="translate(-2.18 22.98) rotate(-23.51)"/><polygon class="cls-3" points="38.38 24.16 41.3 22.89 48.62 39.03 45.47 40.46 38.38 24.16"/></g><path class="cls-4" d="M44,14.41a23,23,0,0,1-.13,9h0c-.06.29-.12.59-.19.88.09-.36,0,.06,0,.12.07-.33,0,.08,0,.12s-.06.26-.1.39-.12.49-.19.74c-.14.5-.29,1-.46,1.49-.31.95-.67,1.88-1.07,2.8a35.66,35.66,0,0,1-2.87,5.25,33.89,33.89,0,0,1-7.86,8.43,25.22,25.22,0,0,1-6.43,3.54L26,46.67a26.28,26.28,0,0,0,9.35-6.09A30.86,30.86,0,0,0,42,31.08a35.59,35.59,0,0,0,2.07-6.34A24.35,24.35,0,0,0,44.66,19c0-.56,0-1.11-.1-1.67a14.17,14.17,0,0,0-.33-1.84Zm-.14,9.09v-.05h0v0Z" transform="translate(5.22 6.23)"/><g class="cls-12"><rect class="cls-4" x="43.86" y="23.46" width="0.02" height="0.04" transform="matrix(0.91, -0.41, 0.41, 0.91, -0.56, 26.44)"/><polygon class="cls-4" points="29.74 53.12 32.26 46.51 39.74 49.37 30.04 53.77 29.74 53.12"/><polygon class="cls-4" points="32.26 46.51 32.33 46.33 39.99 49.26 39.74 49.37 32.26 46.51"/><polygon class="cls-4" points="32.33 46.33 32.4 46.15 40.24 49.14 39.99 49.26 32.33 46.33"/><polygon class="cls-4" points="32.4 46.15 32.47 45.97 40.49 49.03 40.24 49.14 32.4 46.15"/><polygon class="cls-4" points="32.47 45.97 32.54 45.79 40.73 48.92 40.49 49.03 32.47 45.97"/><polygon class="cls-4" points="32.54 45.79 32.61 45.61 40.98 48.8 40.73 48.92 32.54 45.79"/><polygon class="cls-4" points="32.61 45.61 32.68 45.43 41.23 48.69 40.98 48.8 32.61 45.61"/><polygon class="cls-4" points="32.68 45.43 32.75 45.25 41.48 48.58 41.23 48.69 32.68 45.43"/><polygon class="cls-4" points="32.75 45.25 32.81 45.07 41.73 48.47 41.48 48.58 32.75 45.25"/><polygon class="cls-4" points="32.81 45.07 32.88 44.89 41.98 48.35 41.73 48.47 32.81 45.07"/><polygon class="cls-4" points="32.88 44.89 32.95 44.7 42.22 48.24 41.98 48.35 32.88 44.89"/><polygon class="cls-4" points="32.95 44.7 33.02 44.52 42.47 48.13 42.22 48.24 32.95 44.7"/><polygon class="cls-4" points="33.02 44.52 33.09 44.34 42.72 48.02 42.47 48.13 33.02 44.52"/><polygon class="cls-4" points="33.09 44.34 33.16 44.16 42.97 47.91 42.72 48.02 33.09 44.34"/><polygon class="cls-4" points="33.16 44.16 33.23 43.98 43.22 47.79 42.97 47.91 33.16 44.16"/><polygon class="cls-4" points="33.23 43.98 33.3 43.8 43.46 47.68 43.22 47.79 33.23 43.98"/><polygon class="cls-4" points="33.3 43.8 33.37 43.62 43.67 47.55 43.65 47.6 43.46 47.68 33.3 43.8"/><rect class="cls-4" x="33.24" y="33.75" width="0.19" height="11.02" transform="translate(-10.01 62.64) rotate(-69.11)"/><rect class="cls-4" x="33.3" y="33.57" width="0.19" height="11.02" transform="translate(-9.8 62.59) rotate(-69.11)"/><rect class="cls-4" x="33.37" y="33.39" width="0.19" height="11.02" transform="translate(-9.59 62.54) rotate(-69.11)"/><rect class="cls-4" x="33.44" y="33.21" width="0.19" height="11.02" transform="translate(-9.37 62.48) rotate(-69.11)"/><rect class="cls-4" x="33.51" y="33.03" width="0.19" height="11.02" transform="translate(-9.16 62.43) rotate(-69.11)"/><rect class="cls-4" x="33.58" y="32.85" width="0.19" height="11.02" transform="translate(-8.95 62.38) rotate(-69.11)"/><rect class="cls-4" x="33.65" y="32.67" width="0.19" height="11.02" transform="translate(-8.73 62.33) rotate(-69.11)"/><rect class="cls-4" x="33.72" y="32.48" width="0.19" height="11.02" transform="translate(-8.52 62.28) rotate(-69.11)"/><rect class="cls-4" x="33.79" y="32.3" width="0.19" height="11.02" transform="translate(-8.31 62.22) rotate(-69.11)"/><rect class="cls-4" x="33.86" y="32.12" width="0.19" height="11.02" transform="translate(-8.09 62.17) rotate(-69.11)"/><rect class="cls-4" x="33.93" y="31.94" width="0.19" height="11.02" transform="translate(-7.88 62.12) rotate(-69.11)"/><rect class="cls-4" x="33.99" y="31.76" width="0.19" height="11.02" transform="translate(-7.67 62.07) rotate(-69.11)"/><rect class="cls-4" x="34.06" y="31.58" width="0.19" height="11.02" transform="translate(-7.45 62.02) rotate(-69.11)"/><rect class="cls-4" x="34.13" y="31.4" width="0.19" height="11.02" transform="translate(-7.24 61.96) rotate(-69.11)"/><rect class="cls-4" x="34.2" y="31.22" width="0.19" height="11.02" transform="translate(-7.03 61.91) rotate(-69.11)"/><rect class="cls-4" x="34.27" y="31.04" width="0.19" height="11.02" transform="translate(-6.81 61.86) rotate(-69.11)"/><rect class="cls-4" x="34.34" y="30.86" width="0.19" height="11.02" transform="translate(-6.6 61.81) rotate(-69.11)"/><rect class="cls-4" x="34.41" y="30.68" width="0.19" height="11.02" transform="translate(-6.39 61.76) rotate(-69.11)"/><rect class="cls-4" x="34.48" y="30.49" width="0.19" height="11.02" transform="translate(-6.17 61.71) rotate(-69.11)"/><rect class="cls-4" x="34.55" y="30.31" width="0.19" height="11.02" transform="matrix(0.36, -0.93, 0.93, 0.36, -5.96, 61.65)"/><rect class="cls-4" x="34.62" y="30.13" width="0.19" height="11.02" transform="translate(-5.75 61.6) rotate(-69.11)"/><rect class="cls-4" x="34.68" y="29.95" width="0.19" height="11.02" transform="translate(-5.53 61.55) rotate(-69.11)"/><rect class="cls-4" x="34.75" y="29.77" width="0.19" height="11.02" transform="translate(-5.32 61.5) rotate(-69.11)"/><rect class="cls-4" x="34.82" y="29.59" width="0.19" height="11.02" transform="translate(-5.11 61.45) rotate(-69.11)"/><rect class="cls-4" x="34.89" y="29.41" width="0.19" height="11.02" transform="translate(-4.89 61.39) rotate(-69.11)"/><rect class="cls-4" x="34.96" y="29.23" width="0.19" height="11.02" transform="translate(-4.68 61.34) rotate(-69.11)"/><rect class="cls-4" x="34.94" y="28.93" width="0.46" height="11.02" transform="translate(-4.32 61.25) rotate(-69.11)"/><rect class="cls-4" x="35.11" y="28.5" width="0.46" height="11.02" transform="matrix(0.36, -0.93, 0.93, 0.36, -3.82, 61.13)"/><rect class="cls-4" x="35.27" y="28.07" width="0.46" height="11.02" transform="translate(-3.32 61.01) rotate(-69.11)"/><rect class="cls-4" x="35.43" y="27.65" width="0.46" height="11.02" transform="translate(-2.81 60.89) rotate(-69.11)"/><rect class="cls-4" x="35.6" y="27.22" width="0.46" height="11.02" transform="translate(-2.31 60.77) rotate(-69.11)"/><rect class="cls-4" x="35.76" y="26.79" width="0.46" height="11.02" transform="translate(-1.81 60.64) rotate(-69.11)"/><rect class="cls-4" x="35.92" y="26.37" width="0.46" height="11.02" transform="translate(-1.3 60.52) rotate(-69.11)"/><rect class="cls-4" x="36.08" y="25.94" width="0.46" height="11.02" transform="translate(-0.8 60.4) rotate(-69.11)"/><rect class="cls-4" x="36.25" y="25.51" width="0.46" height="11.02" transform="translate(-0.3 60.28) rotate(-69.11)"/><rect class="cls-4" x="36.41" y="25.09" width="0.46" height="11.02" transform="matrix(0.36, -0.93, 0.93, 0.36, 0.21, 60.15)"/><rect class="cls-4" x="36.57" y="24.66" width="0.46" height="11.02" transform="translate(0.71 60.03) rotate(-69.11)"/><rect class="cls-4" x="36.74" y="24.23" width="0.46" height="11.02" transform="translate(1.21 59.91) rotate(-69.11)"/><rect class="cls-4" x="36.9" y="23.81" width="0.46" height="11.02" transform="translate(1.72 59.79) rotate(-69.11)"/><rect class="cls-4" x="37.06" y="23.38" width="0.46" height="11.02" transform="translate(2.22 59.66) rotate(-69.11)"/><rect class="cls-4" x="37.3" y="23.07" width="0.21" height="11.02" transform="translate(2.59 59.57) rotate(-69.11)"/><rect class="cls-4" x="37.38" y="22.87" width="0.21" height="11.02" transform="translate(2.83 59.52) rotate(-69.11)"/><rect class="cls-4" x="37.45" y="22.67" width="0.21" height="11.02" transform="translate(3.06 59.46) rotate(-69.11)"/><rect class="cls-4" x="37.53" y="22.47" width="0.21" height="11.02" transform="translate(3.3 59.4) rotate(-69.11)"/><rect class="cls-4" x="37.61" y="22.27" width="0.21" height="11.02" transform="translate(3.53 59.34) rotate(-69.11)"/><rect class="cls-4" x="37.68" y="22.07" width="0.21" height="11.02" transform="translate(3.77 59.29) rotate(-69.11)"/><rect class="cls-4" x="37.76" y="21.87" width="0.21" height="11.02" transform="translate(4 59.23) rotate(-69.11)"/><rect class="cls-4" x="37.84" y="21.67" width="0.21" height="11.02" transform="translate(4.24 59.17) rotate(-69.11)"/><rect class="cls-4" x="37.91" y="21.47" width="0.21" height="11.02" transform="translate(4.48 59.11) rotate(-69.11)"/><rect class="cls-4" x="37.99" y="21.27" width="0.21" height="11.02" transform="translate(4.71 59.06) rotate(-69.11)"/><rect class="cls-4" x="38.06" y="21.07" width="0.21" height="11.02" transform="translate(4.95 59) rotate(-69.11)"/><rect class="cls-4" x="38.14" y="20.87" width="0.21" height="11.02" transform="translate(5.18 58.94) rotate(-69.11)"/><rect class="cls-4" x="38.22" y="20.67" width="0.21" height="11.02" transform="translate(5.42 58.89) rotate(-69.11)"/><rect class="cls-4" x="38.29" y="20.47" width="0.21" height="11.02" transform="translate(5.65 58.83) rotate(-69.11)"/><rect class="cls-4" x="38.37" y="20.27" width="0.21" height="11.02" transform="translate(5.89 58.77) rotate(-69.11)"/><rect class="cls-4" x="38.44" y="20.07" width="0.21" height="11.02" transform="translate(6.12 58.71) rotate(-69.11)"/><rect class="cls-4" x="38.52" y="19.87" width="0.21" height="11.02" transform="translate(6.36 58.66) rotate(-69.11)"/><rect class="cls-4" x="38.6" y="19.67" width="0.21" height="11.02" transform="translate(6.6 58.6) rotate(-69.11)"/><rect class="cls-4" x="38.67" y="19.47" width="0.21" height="11.02" transform="translate(6.83 58.54) rotate(-69.11)"/><rect class="cls-4" x="38.75" y="19.27" width="0.21" height="11.02" transform="translate(7.07 58.48) rotate(-69.11)"/><rect class="cls-4" x="38.83" y="19.07" width="0.21" height="11.02" transform="translate(7.3 58.43) rotate(-69.11)"/><rect class="cls-4" x="38.9" y="18.87" width="0.21" height="11.02" transform="translate(7.54 58.37) rotate(-69.11)"/><rect class="cls-4" x="38.98" y="18.67" width="0.21" height="11.02" transform="translate(7.77 58.31) rotate(-69.11)"/><rect class="cls-4" x="39.05" y="18.47" width="0.21" height="11.02" transform="translate(8.01 58.26) rotate(-69.11)"/><rect class="cls-4" x="39.13" y="18.27" width="0.21" height="11.02" transform="translate(8.24 58.2) rotate(-69.11)"/><rect class="cls-4" x="39.21" y="18.07" width="0.21" height="11.02" transform="translate(8.48 58.14) rotate(-69.11)"/><rect class="cls-4" x="39.28" y="17.88" width="0.21" height="11.02" transform="translate(8.72 58.08) rotate(-69.11)"/><rect class="cls-4" x="39.36" y="17.68" width="0.21" height="11.02" transform="translate(8.95 58.03) rotate(-69.11)"/><rect class="cls-4" x="39.44" y="17.48" width="0.21" height="11.02" transform="translate(9.19 57.97) rotate(-69.11)"/><rect class="cls-4" x="39.51" y="17.28" width="0.21" height="11.02" transform="translate(9.42 57.91) rotate(-69.11)"/><rect class="cls-4" x="39.59" y="17.08" width="0.21" height="11.02" transform="translate(9.66 57.85) rotate(-69.11)"/><rect class="cls-4" x="39.66" y="16.88" width="0.21" height="11.02" transform="translate(9.89 57.8) rotate(-69.11)"/><rect class="cls-4" x="39.74" y="16.68" width="0.21" height="11.02" transform="translate(10.13 57.74) rotate(-69.11)"/><rect class="cls-4" x="39.82" y="16.48" width="0.21" height="11.02" transform="translate(10.36 57.68) rotate(-69.11)"/><rect class="cls-4" x="39.89" y="16.28" width="0.21" height="11.02" transform="translate(10.6 57.63) rotate(-69.11)"/><rect class="cls-4" x="39.97" y="16.08" width="0.21" height="11.02" transform="translate(10.84 57.57) rotate(-69.11)"/><rect class="cls-4" x="40.04" y="15.88" width="0.21" height="11.02" transform="translate(11.07 57.51) rotate(-69.11)"/><rect class="cls-4" x="40.12" y="15.68" width="0.21" height="11.02" transform="translate(11.31 57.45) rotate(-69.11)"/><rect class="cls-4" x="40.2" y="15.48" width="0.21" height="11.02" transform="translate(11.54 57.4) rotate(-69.11)"/><rect class="cls-4" x="40.27" y="15.28" width="0.21" height="11.02" transform="translate(11.78 57.34) rotate(-69.11)"/><rect class="cls-4" x="40.35" y="15.08" width="0.21" height="11.02" transform="translate(12.01 57.28) rotate(-69.11)"/><rect class="cls-4" x="40.43" y="14.88" width="0.21" height="11.02" transform="translate(12.25 57.22) rotate(-69.11)"/><polygon class="cls-4" points="40.64 24.56 40.65 24.52 40.88 24.42 51.02 28.29 50.94 28.49 40.64 24.56"/><polygon class="cls-4" points="41.15 24.3 51.09 28.09 51.02 28.29 40.88 24.42 41.15 24.3"/><polygon class="cls-4" points="41.43 24.17 51.17 27.89 51.09 28.09 41.15 24.3 41.43 24.17"/><polygon class="cls-4" points="41.7 24.05 51.24 27.69 51.17 27.89 41.43 24.17 41.7 24.05"/><polygon class="cls-4" points="41.98 23.93 51.32 27.49 51.24 27.69 41.7 24.05 41.98 23.93"/><polygon class="cls-4" points="42.25 23.8 51.4 27.29 51.32 27.49 41.98 23.93 42.25 23.8"/><polygon class="cls-4" points="42.52 23.68 51.47 27.09 51.4 27.29 42.25 23.8 42.52 23.68"/><polygon class="cls-4" points="42.8 23.55 51.55 26.89 51.47 27.09 42.52 23.68 42.8 23.55"/><polygon class="cls-4" points="43.07 23.43 51.62 26.69 51.55 26.89 42.8 23.55 43.07 23.43"/><polygon class="cls-4" points="43.34 23.3 51.7 26.49 51.62 26.69 43.07 23.43 43.34 23.3"/><polygon class="cls-4" points="43.62 23.18 51.78 26.29 51.7 26.49 43.34 23.3 43.62 23.18"/><polygon class="cls-4" points="43.89 23.06 51.67 26.02 51.78 26.28 51.78 26.29 43.62 23.18 43.89 23.06"/><polygon class="cls-4" points="44.17 22.93 51.54 25.75 51.67 26.02 43.89 23.06 44.17 22.93"/><polygon class="cls-4" points="44.44 22.81 51.42 25.47 51.54 25.75 44.17 22.93 44.44 22.81"/><polygon class="cls-4" points="44.72 22.68 51.29 25.19 51.42 25.47 44.44 22.81 44.72 22.68"/><polygon class="cls-4" points="44.99 22.56 51.17 24.92 51.29 25.19 44.72 22.68 44.99 22.56"/><polygon class="cls-4" points="45.26 22.43 51.04 24.64 51.17 24.92 44.99 22.56 45.26 22.43"/><polygon class="cls-4" points="45.54 22.31 50.92 24.36 51.04 24.64 45.26 22.43 45.54 22.31"/><polygon class="cls-4" points="45.81 22.19 50.79 24.09 50.92 24.36 45.54 22.31 45.81 22.19"/><polygon class="cls-4" points="46.09 22.06 50.66 23.81 50.79 24.09 45.81 22.19 46.09 22.06"/><polygon class="cls-4" points="46.36 21.94 50.54 23.53 50.66 23.81 46.09 22.06 46.36 21.94"/><polygon class="cls-4" points="46.63 21.81 50.41 23.26 50.54 23.53 46.36 21.94 46.63 21.81"/><polygon class="cls-4" points="46.91 21.69 50.29 22.98 50.41 23.26 46.63 21.81 46.91 21.69"/><polygon class="cls-4" points="47.18 21.57 50.16 22.7 50.29 22.98 46.91 21.69 47.18 21.57"/><polygon class="cls-4" points="50.16 22.7 47.18 21.57 49.23 20.64 50.16 22.7"/></g></g></g></svg>
\ No newline at end of file
--- /dev/null
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 53.79 59.9"><defs><style>.cls-1{fill:#682726;}.cls-2{fill:#f0d6d5;}.cls-3{fill:#e1adab;}.cls-4{fill:#882623;}.cls-5{fill:#fae6e6;}.cls-6{fill:#681310;}.cls-7{clip-path:url(#clip-path);}.cls-8{clip-path:url(#clip-path-2);}.cls-9{clip-path:url(#clip-path-3);}.cls-10{clip-path:url(#clip-path-4);}.cls-11{clip-path:url(#clip-path-5);}.cls-12{clip-path:url(#clip-path-6);}</style><clipPath id="clip-path" transform="translate(5.22 6.23)"><path class="cls-1" d="M38.31,19c-.1.59-.23,1.19-.37,1.8A33.79,33.79,0,0,1,33,31.8a33.74,33.74,0,0,1-7.11,7.68,22.75,22.75,0,0,1-11.11,5l-.59.06a12.46,12.46,0,0,1-8-1.86l5.71,3.73a12.45,12.45,0,0,0,8,1.86l.59-.06a22.79,22.79,0,0,0,11.11-5,34.18,34.18,0,0,0,7.11-7.68,33.74,33.74,0,0,0,4.93-11c.14-.6.26-1.2.36-1.79,1.33-7.72-.91-14-5.53-17l-5.7-3.73C37.39,4.92,39.64,11.24,38.31,19Z"/></clipPath><clipPath id="clip-path-2" transform="translate(5.22 6.23)"><path class="cls-2" d="M35.79,18.58,1.23,21.43C3.63,11.36,13.58,1.4,23.13.61S38.19,8.51,35.79,18.58Z"/></clipPath><clipPath id="clip-path-3" transform="translate(5.22 6.23)"><path class="cls-2" d="M13.23,42.23C3.68,43-1.84,34.34.56,24.27l34.56-2.86C32.72,31.49,22.77,41.44,13.23,42.23Z"/></clipPath><clipPath id="clip-path-4" transform="translate(5.22 6.23)"><path class="cls-3" d="M22.46.68A11.83,11.83,0,0,1,33.75,5.25c2.75,3.81,3.11,8.87,2,13.33l2.15,2.18c1.11-4.69,1.18-10-1.11-14.31a12.14,12.14,0,0,0-4.6-4.88A12.44,12.44,0,0,0,26,0a17.81,17.81,0,0,0-6,1.14l-1.33.49A18.1,18.1,0,0,1,22.46.68Z"/></clipPath><clipPath id="clip-path-5" transform="translate(5.22 6.23)"><path class="cls-3" d="M.59,33.48a14.83,14.83,0,0,0,2.87,6.66,11.51,11.51,0,0,0,5.83,3.92c4.59,1.32,9.54-.12,13.53-2.47A33.66,33.66,0,0,0,37.94,20.76l-2.82.65a28.48,28.48,0,0,1-6.5,12,26.92,26.92,0,0,1-11.6,8,13.81,13.81,0,0,1-10.38-.41A12.37,12.37,0,0,1,.36,32.43Z"/></clipPath><clipPath id="clip-path-6" transform="translate(5.22 6.23)"><path class="cls-4" d="M44,14.41a23,23,0,0,1-.13,9h0c-.06.29-.12.59-.19.88.09-.36,0,.06,0,.12.07-.33,0,.08,0,.12s-.06.26-.1.39-.12.49-.19.74c-.14.5-.29,1-.46,1.49-.31.95-.67,1.88-1.07,2.8a35.66,35.66,0,0,1-2.87,5.25,33.89,33.89,0,0,1-7.86,8.43,25.22,25.22,0,0,1-6.43,3.54L26,46.67a26.28,26.28,0,0,0,9.35-6.09A30.86,30.86,0,0,0,42,31.08a35.59,35.59,0,0,0,2.07-6.34A24.35,24.35,0,0,0,44.66,19c0-.56,0-1.11-.1-1.67a14.17,14.17,0,0,0-.33-1.84Zm-.14,9.09v-.05h0v0Z"/></clipPath></defs><g id="Calque_2" data-name="Calque 2"><g id="Calque_1-2" data-name="Calque 1"><polygon class="cls-5" points="6.25 30.04 6.45 27.67 41.01 24.81 43.16 26.99 6.25 30.04"/><polygon class="cls-6" points="43.16 26.99 40.34 27.65 5.78 30.5 6.25 30.04 43.16 26.99"/><path class="cls-1" d="M38.31,19c-.1.59-.23,1.19-.37,1.8A33.79,33.79,0,0,1,33,31.8a33.74,33.74,0,0,1-7.11,7.68,22.75,22.75,0,0,1-11.11,5l-.59.06a12.46,12.46,0,0,1-8-1.86l5.71,3.73a12.45,12.45,0,0,0,8,1.86l.59-.06a22.79,22.79,0,0,0,11.11-5,34.18,34.18,0,0,0,7.11-7.68,33.74,33.74,0,0,0,4.93-11c.14-.6.26-1.2.36-1.79,1.33-7.72-.91-14-5.53-17l-5.7-3.73C37.39,4.92,39.64,11.24,38.31,19Z" transform="translate(5.22 6.23)"/><g class="cls-7"><polygon class="cls-1" points="12.94 52.26 21.35 57.65 16.4 59.9 12.94 52.26"/><polygon class="cls-1" points="12.28 50.8 22.3 57.22 21.35 57.65 12.94 52.26 12.28 50.8"/><polygon class="cls-1" points="11.62 49.33 23.25 56.79 22.3 57.22 12.28 50.8 11.62 49.33"/><polygon class="cls-1" points="11.3 48.65 11.55 48.26 24.2 56.36 23.25 56.79 11.62 49.33 11.3 48.65"/><polygon class="cls-1" points="11.55 48.26 12.02 47.52 25.15 55.93 24.2 56.36 11.55 48.26"/><polygon class="cls-1" points="12.02 47.52 12.5 46.78 26.1 55.5 25.15 55.93 12.02 47.52"/><polygon class="cls-1" points="12.5 46.78 12.97 46.05 27.05 55.07 26.1 55.5 12.5 46.78"/><polygon class="cls-1" points="12.97 46.05 13.44 45.31 28 54.64 27.05 55.07 12.97 46.05"/><polygon class="cls-1" points="13.44 45.31 13.91 44.58 28.94 54.21 28 54.64 13.44 45.31"/><polygon class="cls-1" points="13.91 44.58 14.38 43.84 29.89 53.78 28.94 54.21 13.91 44.58"/><polygon class="cls-1" points="14.38 43.84 14.85 43.1 30.84 53.35 29.89 53.78 14.38 43.84"/><polygon class="cls-1" points="14.85 43.1 15.33 42.37 31.79 52.92 30.84 53.35 14.85 43.1"/><polygon class="cls-1" points="15.33 42.37 15.8 41.63 32.74 52.49 31.79 52.92 15.33 42.37"/><polygon class="cls-1" points="15.8 41.63 16.27 40.9 33.69 52.06 32.74 52.49 15.8 41.63"/><polygon class="cls-1" points="16.27 40.9 16.74 40.16 34.64 51.63 33.69 52.06 16.27 40.9"/><polygon class="cls-1" points="16.74 40.16 17.21 39.42 35.59 51.2 34.64 51.63 16.74 40.16"/><polygon class="cls-1" points="17.21 39.42 17.68 38.69 36.53 50.77 35.59 51.2 17.21 39.42"/><polygon class="cls-1" points="17.68 38.69 18.16 37.95 37.48 50.34 36.53 50.77 17.68 38.69"/><polygon class="cls-1" points="18.16 37.95 18.63 37.22 38.43 49.91 37.48 50.34 18.16 37.95"/><polygon class="cls-1" points="18.63 37.22 19.1 36.48 39.37 49.47 39.36 49.49 38.43 49.91 18.63 37.22"/><rect class="cls-1" x="23.82" y="24.34" width="0.87" height="24.08" transform="translate(-14.24 43.4) rotate(-57.35)"/><rect class="cls-1" x="24.29" y="23.6" width="0.87" height="24.08" transform="translate(-13.4 43.46) rotate(-57.35)"/><rect class="cls-1" x="24.74" y="22.84" width="0.94" height="24.08" transform="translate(-12.53 43.52) rotate(-57.35)"/><rect class="cls-1" x="25.25" y="22.04" width="0.94" height="24.08" transform="translate(-11.63 43.58) rotate(-57.35)"/><rect class="cls-1" x="25.76" y="21.25" width="0.94" height="24.08" transform="translate(-10.73 43.64) rotate(-57.35)"/><rect class="cls-1" x="26.27" y="20.46" width="0.94" height="24.08" transform="translate(-9.83 43.71) rotate(-57.35)"/><rect class="cls-1" x="26.78" y="19.66" width="0.94" height="24.08" transform="translate(-8.93 43.77) rotate(-57.35)"/><rect class="cls-1" x="27.28" y="18.87" width="0.94" height="24.08" transform="translate(-8.03 43.83) rotate(-57.35)"/><rect class="cls-1" x="27.79" y="18.08" width="0.94" height="24.08" transform="translate(-7.12 43.9) rotate(-57.35)"/><rect class="cls-1" x="28.3" y="17.28" width="0.94" height="24.08" transform="translate(-6.22 43.96) rotate(-57.35)"/><rect class="cls-1" x="28.81" y="16.49" width="0.94" height="24.08" transform="translate(-5.32 44.02) rotate(-57.35)"/><rect class="cls-1" x="29.32" y="15.7" width="0.94" height="24.08" transform="translate(-4.42 44.08) rotate(-57.35)"/><rect class="cls-1" x="29.83" y="14.9" width="0.94" height="24.08" transform="translate(-3.52 44.15) rotate(-57.35)"/><rect class="cls-1" x="30.33" y="14.11" width="0.94" height="24.08" transform="translate(-2.61 44.21) rotate(-57.35)"/><rect class="cls-1" x="30.84" y="13.32" width="0.94" height="24.08" transform="matrix(0.54, -0.84, 0.84, 0.54, -1.71, 44.27)"/><rect class="cls-1" x="31.35" y="12.52" width="0.94" height="24.08" transform="translate(-0.81 44.34) rotate(-57.35)"/><rect class="cls-1" x="31.95" y="11.9" width="0.53" height="24.08" transform="translate(-0.11 44.38) rotate(-57.35)"/><rect class="cls-1" x="32.24" y="11.46" width="0.53" height="24.08" transform="translate(0.4 44.42) rotate(-57.35)"/><rect class="cls-1" x="32.53" y="11.01" width="0.53" height="24.08" transform="translate(0.91 44.46) rotate(-57.35)"/><rect class="cls-1" x="32.82" y="10.56" width="0.53" height="24.08" transform="translate(1.42 44.49) rotate(-57.35)"/><rect class="cls-1" x="33.1" y="10.11" width="0.53" height="24.08" transform="translate(1.93 44.53) rotate(-57.35)"/><rect class="cls-1" x="33.39" y="9.66" width="0.53" height="24.08" transform="matrix(0.54, -0.84, 0.84, 0.54, 2.44, 44.56)"/><rect class="cls-1" x="33.68" y="9.22" width="0.53" height="24.08" transform="translate(2.95 44.6) rotate(-57.35)"/><rect class="cls-1" x="33.96" y="8.77" width="0.53" height="24.08" transform="translate(3.46 44.63) rotate(-57.35)"/><rect class="cls-1" x="34.25" y="8.32" width="0.53" height="24.08" transform="translate(3.97 44.67) rotate(-57.35)"/><rect class="cls-1" x="34.54" y="7.87" width="0.53" height="24.08" transform="translate(4.48 44.7) rotate(-57.35)"/><rect class="cls-1" x="34.82" y="7.42" width="0.53" height="24.08" transform="translate(4.99 44.74) rotate(-57.35)"/><rect class="cls-1" x="35.11" y="6.98" width="0.53" height="24.08" transform="translate(5.5 44.77) rotate(-57.35)"/><rect class="cls-1" x="35.4" y="6.53" width="0.53" height="24.08" transform="translate(6.01 44.81) rotate(-57.35)"/><rect class="cls-1" x="35.69" y="6.08" width="0.53" height="24.08" transform="translate(6.52 44.85) rotate(-57.35)"/><rect class="cls-1" x="35.97" y="5.63" width="0.53" height="24.08" transform="translate(7.03 44.88) rotate(-57.35)"/><rect class="cls-1" x="36.26" y="5.18" width="0.53" height="24.08" transform="translate(7.54 44.92) rotate(-57.35)"/><rect class="cls-1" x="36.55" y="4.74" width="0.53" height="24.08" transform="translate(8.04 44.95) rotate(-57.35)"/><rect class="cls-1" x="36.83" y="4.29" width="0.53" height="24.08" transform="translate(8.55 44.99) rotate(-57.35)"/><rect class="cls-1" x="37.12" y="3.84" width="0.53" height="24.08" transform="translate(9.06 45.02) rotate(-57.35)"/><rect class="cls-1" x="37.41" y="3.39" width="0.53" height="24.08" transform="translate(9.57 45.06) rotate(-57.35)"/><rect class="cls-1" x="37.7" y="2.94" width="0.53" height="24.08" transform="translate(10.08 45.09) rotate(-57.35)"/><rect class="cls-1" x="37.98" y="2.5" width="0.53" height="24.08" transform="translate(10.59 45.13) rotate(-57.35)"/><polygon class="cls-1" points="33.48 14.05 33.76 13.6 53.45 26.22 53.79 26.97 53.75 27.04 33.48 14.05"/><polygon class="cls-1" points="33.76 13.6 34.05 13.15 53.05 25.33 53.45 26.22 33.76 13.6"/><polygon class="cls-1" points="34.05 13.15 34.34 12.71 52.65 24.44 53.05 25.33 34.05 13.15"/><polygon class="cls-1" points="34.34 12.71 34.62 12.26 52.24 23.55 52.65 24.44 34.34 12.71"/><polygon class="cls-1" points="34.62 12.26 34.91 11.81 51.84 22.66 52.24 23.55 34.62 12.26"/><polygon class="cls-1" points="34.91 11.81 35.2 11.36 51.44 21.77 51.84 22.66 34.91 11.81"/><polygon class="cls-1" points="35.2 11.36 35.48 10.91 51.03 20.88 51.44 21.77 35.2 11.36"/><polygon class="cls-1" points="35.48 10.91 35.77 10.46 50.63 19.98 51.03 20.88 35.48 10.91"/><polygon class="cls-1" points="35.77 10.46 36.06 10.02 50.22 19.09 50.63 19.98 35.77 10.46"/><polygon class="cls-1" points="36.06 10.02 36.35 9.57 49.82 18.2 50.22 19.09 36.06 10.02"/><polygon class="cls-1" points="36.35 9.57 36.63 9.12 49.41 17.31 49.82 18.2 36.35 9.57"/><polygon class="cls-1" points="36.63 9.12 36.92 8.67 49.01 16.42 49.41 17.31 36.63 9.12"/><polygon class="cls-1" points="36.92 8.67 36.96 8.61 37.46 8.38 48.61 15.53 49.01 16.42 36.92 8.67"/><polygon class="cls-1" points="38.03 8.12 48.2 14.64 48.61 15.53 37.46 8.38 38.03 8.12"/><polygon class="cls-1" points="38.61 7.86 47.8 13.75 48.2 14.64 38.03 8.12 38.61 7.86"/><polygon class="cls-1" points="39.19 7.6 47.4 12.86 47.8 13.75 38.61 7.86 39.19 7.6"/><polygon class="cls-1" points="39.77 7.34 46.99 11.97 47.4 12.86 39.19 7.6 39.77 7.34"/><polygon class="cls-1" points="40.34 7.08 46.59 11.08 46.99 11.97 39.77 7.34 40.34 7.08"/><polygon class="cls-1" points="40.92 6.81 46.19 10.19 46.59 11.08 40.34 7.08 40.92 6.81"/><polygon class="cls-1" points="41.5 6.55 45.78 9.3 46.19 10.19 40.92 6.81 41.5 6.55"/><polygon class="cls-1" points="42.08 6.29 45.38 8.4 45.78 9.3 41.5 6.55 42.08 6.29"/><polygon class="cls-1" points="42.66 6.03 44.97 7.51 45.38 8.4 42.08 6.29 42.66 6.03"/><polygon class="cls-1" points="43.23 5.77 44.57 6.62 44.97 7.51 42.66 6.03 43.23 5.77"/><polygon class="cls-1" points="43.81 5.5 44.16 5.73 44.57 6.62 43.23 5.77 43.81 5.5"/><polygon class="cls-1" points="44.16 5.73 43.81 5.5 44.02 5.41 44.16 5.73"/></g><path class="cls-2" d="M35.79,18.58,1.23,21.43C3.63,11.36,13.58,1.4,23.13.61S38.19,8.51,35.79,18.58Z" transform="translate(5.22 6.23)"/><g class="cls-8"><polygon class="cls-2" points="35.3 27.4 46.41 21.37 46.79 22.2 35.3 27.4"/><polygon class="cls-2" points="14.26 36.94 45.72 19.85 46.41 21.37 35.3 27.4 14.26 36.94"/><polygon class="cls-2" points="11.84 38.04 11.14 36.74 45.03 18.32 45.72 19.85 14.26 36.94 11.84 38.04"/><polygon class="cls-2" points="11.14 36.74 10.35 35.28 44.34 16.8 45.03 18.32 11.14 36.74"/><polygon class="cls-2" points="10.35 35.28 9.55 33.82 43.66 15.29 44.34 16.8 10.35 35.28"/><polygon class="cls-2" points="9.55 33.82 8.76 32.35 42.97 13.77 43.66 15.29 9.55 33.82"/><polygon class="cls-2" points="8.76 32.35 7.96 30.89 42.28 12.24 42.97 13.77 8.76 32.35"/><polygon class="cls-2" points="7.96 30.89 7.68 30.37 7.23 29.39 41.5 10.78 42.18 12.04 42.28 12.24 7.96 30.89"/><polygon class="cls-2" points="6.54 27.87 40.7 9.31 41.5 10.78 7.23 29.39 6.54 27.87"/><polygon class="cls-2" points="5.86 26.35 39.91 7.85 40.7 9.31 6.54 27.87 5.86 26.35"/><polygon class="cls-2" points="5.17 24.83 39.11 6.39 39.91 7.85 5.86 26.35 5.17 24.83"/><polygon class="cls-2" points="4.48 23.31 38.32 4.92 39.11 6.39 5.17 24.83 4.48 23.31"/><polygon class="cls-2" points="3.79 21.79 37.52 3.46 38.32 4.92 4.48 23.31 3.79 21.79"/><polygon class="cls-2" points="3.1 20.27 36.73 2 37.52 3.46 3.79 21.79 3.1 20.27"/><polygon class="cls-2" points="2.41 18.75 35.93 0.54 36.73 2 3.1 20.27 2.41 18.75"/><polygon class="cls-2" points="35.64 0 35.93 0.54 2.41 18.75 1.02 15.7 35.64 0"/></g><path class="cls-2" d="M13.23,42.23C3.68,43-1.84,34.34.56,24.27l34.56-2.86C32.72,31.49,22.77,41.44,13.23,42.23Z" transform="translate(5.22 6.23)"/><g class="cls-9"><polygon class="cls-2" points="11.14 55.31 10.51 54.14 44.08 35.9 45.76 39.62 11.14 55.31"/><polygon class="cls-2" points="10.51 54.14 9.71 52.67 43.39 34.38 44.08 35.9 10.51 54.14"/><polygon class="cls-2" points="9.71 52.67 8.92 51.21 42.7 32.86 43.39 34.38 9.71 52.67"/><polygon class="cls-2" points="8.92 51.21 8.12 49.75 42.01 31.34 42.7 32.86 8.92 51.21"/><polygon class="cls-2" points="8.12 49.75 7.33 48.29 41.32 29.82 42.01 31.34 8.12 49.75"/><polygon class="cls-2" points="7.33 48.29 6.53 46.82 40.63 28.3 41.32 29.82 7.33 48.29"/><polygon class="cls-2" points="6.53 46.82 5.74 45.36 39.94 26.78 40.63 28.3 6.53 46.82"/><polygon class="cls-2" points="5.74 45.36 4.94 43.9 39.25 25.26 39.94 26.78 5.74 45.36"/><polygon class="cls-2" points="4.94 43.9 4.61 43.27 4.21 42.4 38.48 23.78 39.11 24.94 39.25 25.26 4.94 43.9"/><polygon class="cls-2" points="3.52 40.88 37.68 22.32 38.48 23.78 4.21 42.4 3.52 40.88"/><polygon class="cls-2" points="2.83 39.36 36.89 20.86 37.68 22.32 3.52 40.88 2.83 39.36"/><polygon class="cls-2" points="2.14 37.84 36.09 19.39 36.89 20.86 2.83 39.36 2.14 37.84"/><polygon class="cls-2" points="1.45 36.32 35.3 17.93 36.09 19.39 2.14 37.84 1.45 36.32"/><polygon class="cls-2" points="0.76 34.8 23.33 22.54 34.94 17.27 35.3 17.93 1.45 36.32 0.76 34.8"/><polygon class="cls-2" points="0.07 33.28 2.29 32.08 23.33 22.54 0.76 34.8 0.07 33.28"/><polygon class="cls-2" points="2.29 32.08 0.07 33.28 0 33.12 2.29 32.08"/></g><path class="cls-3" d="M22.46.68A11.83,11.83,0,0,1,33.75,5.25c2.75,3.81,3.11,8.87,2,13.33l2.15,2.18c1.11-4.69,1.18-10-1.11-14.31a12.14,12.14,0,0,0-4.6-4.88A12.44,12.44,0,0,0,26,0a17.81,17.81,0,0,0-6,1.14l-1.33.49A18.1,18.1,0,0,1,22.46.68Z" transform="translate(5.22 6.23)"/><g class="cls-10"><polygon class="cls-3" points="38.53 29.09 37.77 28.02 46.53 21.86 47.88 24.85 38.53 29.09"/><polygon class="cls-3" points="37.77 28.02 37.56 27.72 46.37 21.52 46.53 21.86 37.77 28.02"/><polygon class="cls-3" points="37.56 27.72 37.35 27.41 46.22 21.18 46.37 21.52 37.56 27.72"/><polygon class="cls-3" points="37.35 27.41 37.14 27.11 46.06 20.83 46.22 21.18 37.35 27.41"/><polygon class="cls-3" points="37.14 27.11 36.92 26.81 45.9 20.49 46.06 20.83 37.14 27.11"/><polygon class="cls-3" points="36.92 26.81 36.71 26.51 45.75 20.15 45.9 20.49 36.92 26.81"/><polygon class="cls-3" points="36.71 26.51 36.5 26.2 45.59 19.8 45.75 20.15 36.71 26.51"/><polygon class="cls-3" points="36.5 26.2 36.28 25.9 45.44 19.46 45.59 19.8 36.5 26.2"/><polygon class="cls-3" points="36.28 25.9 36.07 25.6 45.28 19.12 45.44 19.46 36.28 25.9"/><polygon class="cls-3" points="36.07 25.6 35.86 25.3 45.13 18.77 45.28 19.12 36.07 25.6"/><polygon class="cls-3" points="35.86 25.3 35.65 24.99 44.97 18.43 45.13 18.77 35.86 25.3"/><polygon class="cls-3" points="35.65 24.99 35.43 24.69 44.81 18.09 44.97 18.43 35.65 24.99"/><polygon class="cls-3" points="35.43 24.69 35.22 24.39 44.66 17.75 44.81 18.09 35.43 24.69"/><polygon class="cls-3" points="35.22 24.39 35.01 24.09 44.51 17.41 44.66 17.75 35.22 24.39"/><polygon class="cls-3" points="35.01 24.09 34.8 23.8 44.36 17.08 44.51 17.41 35.01 24.09"/><polygon class="cls-3" points="34.8 23.8 34.6 23.5 44.2 16.74 44.36 17.08 34.8 23.8"/><polygon class="cls-3" points="34.6 23.5 34.39 23.2 44.05 16.41 44.2 16.74 34.6 23.5"/><polygon class="cls-3" points="34.39 23.2 34.18 22.91 43.9 16.07 44.05 16.41 34.39 23.2"/><polygon class="cls-3" points="34.18 22.91 33.97 22.61 43.75 15.74 43.9 16.07 34.18 22.91"/><polygon class="cls-3" points="33.97 22.61 33.76 22.32 43.6 15.4 43.75 15.74 33.97 22.61"/><polygon class="cls-3" points="33.76 22.32 33.56 22.02 43.45 15.07 43.6 15.4 33.76 22.32"/><polygon class="cls-3" points="33.56 22.02 33.35 21.73 43.29 14.73 43.45 15.07 33.56 22.02"/><polygon class="cls-3" points="33.35 21.73 33.14 21.43 43.14 14.4 43.29 14.73 33.35 21.73"/><polygon class="cls-3" points="33.14 21.43 32.93 21.14 42.99 14.06 43.14 14.4 33.14 21.43"/><polygon class="cls-3" points="32.93 21.14 32.73 20.84 42.84 13.73 42.99 14.06 32.93 21.14"/><polygon class="cls-3" points="32.73 20.84 32.52 20.55 42.69 13.39 42.84 13.73 32.73 20.84"/><polygon class="cls-3" points="32.52 20.55 32.31 20.25 42.53 13.06 42.69 13.39 32.52 20.55"/><polygon class="cls-3" points="32.31 20.25 32.1 19.95 42.38 12.72 42.53 13.06 32.31 20.25"/><polygon class="cls-3" points="32.1 19.95 31.89 19.66 42.23 12.39 42.38 12.72 32.1 19.95"/><polygon class="cls-3" points="31.89 19.66 31.68 19.36 42.08 12.05 42.23 12.39 31.89 19.66"/><polygon class="cls-3" points="31.68 19.36 31.48 19.07 41.93 11.72 42.08 12.05 31.68 19.36"/><polygon class="cls-3" points="31.48 19.07 31.27 18.77 41.76 11.39 41.81 11.47 41.93 11.72 31.48 19.07"/><rect class="cls-3" x="24.78" y="8.52" width="12.83" height="0.36" transform="translate(5.89 25.77) rotate(-35.13)"/><rect class="cls-3" x="24.57" y="8.22" width="12.83" height="0.36" transform="translate(6.03 25.59) rotate(-35.13)"/><rect class="cls-3" x="24.36" y="7.93" width="12.83" height="0.36" transform="translate(6.16 25.42) rotate(-35.13)"/><rect class="cls-3" x="24.16" y="7.63" width="12.83" height="0.36" transform="translate(6.29 25.25) rotate(-35.13)"/><rect class="cls-3" x="23.95" y="7.34" width="12.83" height="0.36" transform="translate(6.42 25.07) rotate(-35.13)"/><rect class="cls-3" x="23.74" y="7.04" width="12.83" height="0.36" transform="translate(6.55 24.9) rotate(-35.13)"/><rect class="cls-3" x="23.53" y="6.75" width="12.83" height="0.36" transform="translate(6.69 24.72) rotate(-35.13)"/><rect class="cls-3" x="23.32" y="6.45" width="12.83" height="0.36" transform="translate(6.82 24.55) rotate(-35.13)"/><rect class="cls-3" x="23.12" y="6.16" width="12.83" height="0.36" transform="translate(6.95 24.38) rotate(-35.13)"/><rect class="cls-3" x="22.91" y="5.86" width="12.83" height="0.36" transform="translate(7.08 24.2) rotate(-35.13)"/><rect class="cls-3" x="22.7" y="5.56" width="12.83" height="0.36" transform="translate(7.21 24.03) rotate(-35.13)"/><rect class="cls-3" x="22.49" y="5.27" width="12.83" height="0.36" transform="translate(7.35 23.86) rotate(-35.13)"/><rect class="cls-3" x="22.28" y="4.97" width="12.83" height="0.36" transform="translate(7.48 23.68) rotate(-35.13)"/><rect class="cls-3" x="22.08" y="4.68" width="12.83" height="0.36" transform="translate(7.61 23.51) rotate(-35.13)"/><rect class="cls-3" x="21.87" y="4.38" width="12.83" height="0.36" transform="translate(7.74 23.34) rotate(-35.13)"/><rect class="cls-3" x="21.66" y="4.09" width="12.83" height="0.36" transform="translate(7.88 23.16) rotate(-35.13)"/><rect class="cls-3" x="21.45" y="3.79" width="12.83" height="0.36" transform="matrix(0.82, -0.58, 0.58, 0.82, 8.01, 22.99)"/><rect class="cls-3" x="21.24" y="3.5" width="12.83" height="0.36" transform="translate(8.14 22.82) rotate(-35.13)"/><rect class="cls-3" x="21.04" y="3.2" width="12.83" height="0.36" transform="translate(8.27 22.64) rotate(-35.13)"/><rect class="cls-3" x="20.83" y="2.9" width="12.83" height="0.36" transform="translate(8.4 22.47) rotate(-35.13)"/><rect class="cls-3" x="20.62" y="2.61" width="12.83" height="0.36" transform="matrix(0.82, -0.58, 0.58, 0.82, 8.54, 22.3)"/><rect class="cls-3" x="20.41" y="2.31" width="12.83" height="0.36" transform="translate(8.67 22.12) rotate(-35.13)"/><rect class="cls-3" x="20.2" y="2.02" width="12.83" height="0.36" transform="translate(8.8 21.95) rotate(-35.13)"/><rect class="cls-3" x="20" y="1.72" width="12.83" height="0.36" transform="translate(8.93 21.78) rotate(-35.13)"/><rect class="cls-3" x="19.79" y="1.43" width="12.83" height="0.36" transform="translate(9.07 21.6) rotate(-35.13)"/><rect class="cls-3" x="19.58" y="1.13" width="12.83" height="0.36" transform="translate(9.2 21.43) rotate(-35.13)"/><rect class="cls-3" x="19.37" y="0.84" width="12.83" height="0.36" transform="translate(9.33 21.26) rotate(-35.13)"/><rect class="cls-3" x="19.16" y="0.54" width="12.83" height="0.36" transform="translate(9.46 21.08) rotate(-35.13)"/><rect class="cls-3" x="18.96" y="0.25" width="12.83" height="0.36" transform="translate(9.59 20.91) rotate(-35.13)"/><polygon class="cls-3" points="25.24 10.2 25.03 9.9 35.34 2.65 35.55 2.56 35.73 2.82 25.24 10.2"/><polygon class="cls-3" points="25.03 9.9 24.82 9.61 33.58 3.45 35.34 2.65 25.03 9.9"/><polygon class="cls-3" points="24.82 9.61 24.62 9.31 31.81 4.25 33.58 3.45 24.82 9.61"/><polygon class="cls-3" points="24.62 9.31 24.33 8.9 23.85 7.86 31.81 4.25 24.62 9.31"/></g><path class="cls-3" d="M.59,33.48a14.83,14.83,0,0,0,2.87,6.66,11.51,11.51,0,0,0,5.83,3.92c4.59,1.32,9.54-.12,13.53-2.47A33.66,33.66,0,0,0,37.94,20.76l-2.82.65a28.48,28.48,0,0,1-6.5,12,26.92,26.92,0,0,1-11.6,8,13.81,13.81,0,0,1-10.38-.41A12.37,12.37,0,0,1,.36,32.43Z" transform="translate(5.22 6.23)"/><g class="cls-11"><polygon class="cls-3" points="5.11 38.87 12.34 55.48 12.18 55.55 4.71 39.06 5.11 38.87"/><polygon class="cls-3" points="5.84 38.54 13.07 55.15 12.34 55.48 5.11 38.87 5.84 38.54"/><polygon class="cls-3" points="6.57 38.21 13.8 54.82 13.07 55.15 5.84 38.54 6.57 38.21"/><polygon class="cls-3" points="7.3 37.88 14.53 54.49 13.8 54.82 6.57 38.21 7.3 37.88"/><polygon class="cls-3" points="8.03 37.55 15.26 54.16 14.53 54.49 7.3 37.88 8.03 37.55"/><polygon class="cls-3" points="8.76 37.22 15.98 53.83 15.26 54.16 8.03 37.55 8.76 37.22"/><polygon class="cls-3" points="9.49 36.89 16.71 53.5 15.98 53.83 8.76 37.22 9.49 36.89"/><polygon class="cls-3" points="10.21 36.56 17.44 53.17 16.71 53.5 9.49 36.89 10.21 36.56"/><polygon class="cls-3" points="10.94 36.23 18.17 52.84 17.44 53.17 10.21 36.56 10.94 36.23"/><polygon class="cls-3" points="11.67 35.9 18.9 52.51 18.17 52.84 10.94 36.23 11.67 35.9"/><polygon class="cls-3" points="12.4 35.57 19.63 52.18 18.9 52.51 11.67 35.9 12.4 35.57"/><polygon class="cls-3" points="13.13 35.24 20.36 51.85 19.63 52.18 12.4 35.57 13.13 35.24"/><polygon class="cls-3" points="13.86 34.91 21.08 51.52 20.36 51.85 13.13 35.24 13.86 34.91"/><polygon class="cls-3" points="14.59 34.58 21.81 51.19 21.08 51.52 13.86 34.91 14.59 34.58"/><polygon class="cls-3" points="15.31 34.24 22.54 50.85 21.81 51.19 14.59 34.58 15.31 34.24"/><polygon class="cls-3" points="16.04 33.91 23.27 50.52 22.54 50.85 15.31 34.24 16.04 33.91"/><polygon class="cls-3" points="16.77 33.59 24 50.19 23.27 50.52 16.04 33.91 16.77 33.59"/><polygon class="cls-3" points="17.5 33.25 24.73 49.86 24 50.19 16.77 33.59 17.5 33.25"/><polygon class="cls-3" points="18.23 32.92 25.46 49.53 24.73 49.86 17.5 33.25 18.23 32.92"/><polygon class="cls-3" points="18.31 32.89 18.96 32.6 26.18 49.2 25.46 49.53 18.23 32.92 18.31 32.89"/><polygon class="cls-3" points="18.96 32.6 19.7 32.28 26.91 48.87 26.18 49.2 18.96 32.6"/><polygon class="cls-3" points="19.7 32.28 20.43 31.96 27.64 48.54 26.91 48.87 19.7 32.28"/><polygon class="cls-3" points="20.43 31.96 21.16 31.65 28.37 48.21 27.64 48.54 20.43 31.96"/><polygon class="cls-3" points="21.16 31.65 21.9 31.33 29.1 47.88 28.37 48.21 21.16 31.65"/><polygon class="cls-3" points="21.9 31.33 31.62 27.1 38.75 43.51 29.1 47.88 21.9 31.33"/><rect class="cls-3" x="29.95" y="20.06" width="0.34" height="17.89" transform="translate(-3.85 20.66) rotate(-23.51)"/><rect class="cls-3" x="30.26" y="19.92" width="0.34" height="17.88" transform="translate(-3.77 20.77) rotate(-23.51)"/><rect class="cls-3" x="30.56" y="19.79" width="0.34" height="17.88" transform="translate(-3.69 20.88) rotate(-23.51)"/><rect class="cls-3" x="30.87" y="19.66" width="0.34" height="17.87" transform="translate(-3.61 20.99) rotate(-23.51)"/><rect class="cls-3" x="31.18" y="19.52" width="0.34" height="17.87" transform="translate(-3.53 21.1) rotate(-23.51)"/><rect class="cls-3" x="31.48" y="19.39" width="0.34" height="17.86" transform="translate(-3.45 21.21) rotate(-23.51)"/><rect class="cls-3" x="31.79" y="19.26" width="0.34" height="17.86" transform="translate(-3.37 21.32) rotate(-23.51)"/><rect class="cls-3" x="32.1" y="19.12" width="0.34" height="17.85" transform="translate(-3.29 21.43) rotate(-23.51)"/><rect class="cls-3" x="32.4" y="18.99" width="0.34" height="17.85" transform="translate(-3.21 21.54) rotate(-23.51)"/><rect class="cls-3" x="32.71" y="18.86" width="0.34" height="17.84" transform="translate(-3.13 21.65) rotate(-23.51)"/><rect class="cls-3" x="33.02" y="18.72" width="0.34" height="17.84" transform="translate(-3.05 21.77) rotate(-23.51)"/><rect class="cls-3" x="33.32" y="18.59" width="0.34" height="17.83" transform="translate(-2.97 21.88) rotate(-23.51)"/><rect class="cls-3" x="33.63" y="18.45" width="0.34" height="17.83" transform="translate(-2.89 21.99) rotate(-23.51)"/><rect class="cls-3" x="33.93" y="18.32" width="0.34" height="17.82" transform="translate(-2.81 22.1) rotate(-23.51)"/><rect class="cls-3" x="34.24" y="18.19" width="0.34" height="17.82" transform="translate(-2.73 22.21) rotate(-23.51)"/><rect class="cls-3" x="34.55" y="18.05" width="0.34" height="17.81" transform="translate(-2.65 22.32) rotate(-23.51)"/><rect class="cls-3" x="34.85" y="17.92" width="0.34" height="17.81" transform="matrix(0.92, -0.4, 0.4, 0.92, -2.58, 22.43)"/><rect class="cls-3" x="35.16" y="17.79" width="0.34" height="17.8" transform="translate(-2.5 22.54) rotate(-23.51)"/><rect class="cls-3" x="35.47" y="17.65" width="0.34" height="17.8" transform="translate(-2.42 22.65) rotate(-23.51)"/><rect class="cls-3" x="35.77" y="17.52" width="0.34" height="17.79" transform="translate(-2.34 22.76) rotate(-23.51)"/><rect class="cls-3" x="36.08" y="17.39" width="0.34" height="17.79" transform="translate(-2.26 22.87) rotate(-23.51)"/><rect class="cls-3" x="36.38" y="17.25" width="0.34" height="17.78" transform="translate(-2.18 22.98) rotate(-23.51)"/><polygon class="cls-3" points="38.38 24.16 41.3 22.89 48.62 39.03 45.47 40.46 38.38 24.16"/></g><path class="cls-4" d="M44,14.41a23,23,0,0,1-.13,9h0c-.06.29-.12.59-.19.88.09-.36,0,.06,0,.12.07-.33,0,.08,0,.12s-.06.26-.1.39-.12.49-.19.74c-.14.5-.29,1-.46,1.49-.31.95-.67,1.88-1.07,2.8a35.66,35.66,0,0,1-2.87,5.25,33.89,33.89,0,0,1-7.86,8.43,25.22,25.22,0,0,1-6.43,3.54L26,46.67a26.28,26.28,0,0,0,9.35-6.09A30.86,30.86,0,0,0,42,31.08a35.59,35.59,0,0,0,2.07-6.34A24.35,24.35,0,0,0,44.66,19c0-.56,0-1.11-.1-1.67a14.17,14.17,0,0,0-.33-1.84Zm-.14,9.09v-.05h0v0Z" transform="translate(5.22 6.23)"/><g class="cls-12"><rect class="cls-4" x="43.86" y="23.46" width="0.02" height="0.04" transform="matrix(0.91, -0.41, 0.41, 0.91, -0.56, 26.44)"/><polygon class="cls-4" points="29.74 53.12 32.26 46.51 39.74 49.37 30.04 53.77 29.74 53.12"/><polygon class="cls-4" points="32.26 46.51 32.33 46.33 39.99 49.26 39.74 49.37 32.26 46.51"/><polygon class="cls-4" points="32.33 46.33 32.4 46.15 40.24 49.14 39.99 49.26 32.33 46.33"/><polygon class="cls-4" points="32.4 46.15 32.47 45.97 40.49 49.03 40.24 49.14 32.4 46.15"/><polygon class="cls-4" points="32.47 45.97 32.54 45.79 40.73 48.92 40.49 49.03 32.47 45.97"/><polygon class="cls-4" points="32.54 45.79 32.61 45.61 40.98 48.8 40.73 48.92 32.54 45.79"/><polygon class="cls-4" points="32.61 45.61 32.68 45.43 41.23 48.69 40.98 48.8 32.61 45.61"/><polygon class="cls-4" points="32.68 45.43 32.75 45.25 41.48 48.58 41.23 48.69 32.68 45.43"/><polygon class="cls-4" points="32.75 45.25 32.81 45.07 41.73 48.47 41.48 48.58 32.75 45.25"/><polygon class="cls-4" points="32.81 45.07 32.88 44.89 41.98 48.35 41.73 48.47 32.81 45.07"/><polygon class="cls-4" points="32.88 44.89 32.95 44.7 42.22 48.24 41.98 48.35 32.88 44.89"/><polygon class="cls-4" points="32.95 44.7 33.02 44.52 42.47 48.13 42.22 48.24 32.95 44.7"/><polygon class="cls-4" points="33.02 44.52 33.09 44.34 42.72 48.02 42.47 48.13 33.02 44.52"/><polygon class="cls-4" points="33.09 44.34 33.16 44.16 42.97 47.91 42.72 48.02 33.09 44.34"/><polygon class="cls-4" points="33.16 44.16 33.23 43.98 43.22 47.79 42.97 47.91 33.16 44.16"/><polygon class="cls-4" points="33.23 43.98 33.3 43.8 43.46 47.68 43.22 47.79 33.23 43.98"/><polygon class="cls-4" points="33.3 43.8 33.37 43.62 43.67 47.55 43.65 47.6 43.46 47.68 33.3 43.8"/><rect class="cls-4" x="33.24" y="33.75" width="0.19" height="11.02" transform="translate(-10.01 62.64) rotate(-69.11)"/><rect class="cls-4" x="33.3" y="33.57" width="0.19" height="11.02" transform="translate(-9.8 62.59) rotate(-69.11)"/><rect class="cls-4" x="33.37" y="33.39" width="0.19" height="11.02" transform="translate(-9.59 62.54) rotate(-69.11)"/><rect class="cls-4" x="33.44" y="33.21" width="0.19" height="11.02" transform="translate(-9.37 62.48) rotate(-69.11)"/><rect class="cls-4" x="33.51" y="33.03" width="0.19" height="11.02" transform="translate(-9.16 62.43) rotate(-69.11)"/><rect class="cls-4" x="33.58" y="32.85" width="0.19" height="11.02" transform="translate(-8.95 62.38) rotate(-69.11)"/><rect class="cls-4" x="33.65" y="32.67" width="0.19" height="11.02" transform="translate(-8.73 62.33) rotate(-69.11)"/><rect class="cls-4" x="33.72" y="32.48" width="0.19" height="11.02" transform="translate(-8.52 62.28) rotate(-69.11)"/><rect class="cls-4" x="33.79" y="32.3" width="0.19" height="11.02" transform="translate(-8.31 62.22) rotate(-69.11)"/><rect class="cls-4" x="33.86" y="32.12" width="0.19" height="11.02" transform="translate(-8.09 62.17) rotate(-69.11)"/><rect class="cls-4" x="33.93" y="31.94" width="0.19" height="11.02" transform="translate(-7.88 62.12) rotate(-69.11)"/><rect class="cls-4" x="33.99" y="31.76" width="0.19" height="11.02" transform="translate(-7.67 62.07) rotate(-69.11)"/><rect class="cls-4" x="34.06" y="31.58" width="0.19" height="11.02" transform="translate(-7.45 62.02) rotate(-69.11)"/><rect class="cls-4" x="34.13" y="31.4" width="0.19" height="11.02" transform="translate(-7.24 61.96) rotate(-69.11)"/><rect class="cls-4" x="34.2" y="31.22" width="0.19" height="11.02" transform="translate(-7.03 61.91) rotate(-69.11)"/><rect class="cls-4" x="34.27" y="31.04" width="0.19" height="11.02" transform="translate(-6.81 61.86) rotate(-69.11)"/><rect class="cls-4" x="34.34" y="30.86" width="0.19" height="11.02" transform="translate(-6.6 61.81) rotate(-69.11)"/><rect class="cls-4" x="34.41" y="30.68" width="0.19" height="11.02" transform="translate(-6.39 61.76) rotate(-69.11)"/><rect class="cls-4" x="34.48" y="30.49" width="0.19" height="11.02" transform="translate(-6.17 61.71) rotate(-69.11)"/><rect class="cls-4" x="34.55" y="30.31" width="0.19" height="11.02" transform="matrix(0.36, -0.93, 0.93, 0.36, -5.96, 61.65)"/><rect class="cls-4" x="34.62" y="30.13" width="0.19" height="11.02" transform="translate(-5.75 61.6) rotate(-69.11)"/><rect class="cls-4" x="34.68" y="29.95" width="0.19" height="11.02" transform="translate(-5.53 61.55) rotate(-69.11)"/><rect class="cls-4" x="34.75" y="29.77" width="0.19" height="11.02" transform="translate(-5.32 61.5) rotate(-69.11)"/><rect class="cls-4" x="34.82" y="29.59" width="0.19" height="11.02" transform="translate(-5.11 61.45) rotate(-69.11)"/><rect class="cls-4" x="34.89" y="29.41" width="0.19" height="11.02" transform="translate(-4.89 61.39) rotate(-69.11)"/><rect class="cls-4" x="34.96" y="29.23" width="0.19" height="11.02" transform="translate(-4.68 61.34) rotate(-69.11)"/><rect class="cls-4" x="34.94" y="28.93" width="0.46" height="11.02" transform="translate(-4.32 61.25) rotate(-69.11)"/><rect class="cls-4" x="35.11" y="28.5" width="0.46" height="11.02" transform="matrix(0.36, -0.93, 0.93, 0.36, -3.82, 61.13)"/><rect class="cls-4" x="35.27" y="28.07" width="0.46" height="11.02" transform="translate(-3.32 61.01) rotate(-69.11)"/><rect class="cls-4" x="35.43" y="27.65" width="0.46" height="11.02" transform="translate(-2.81 60.89) rotate(-69.11)"/><rect class="cls-4" x="35.6" y="27.22" width="0.46" height="11.02" transform="translate(-2.31 60.77) rotate(-69.11)"/><rect class="cls-4" x="35.76" y="26.79" width="0.46" height="11.02" transform="translate(-1.81 60.64) rotate(-69.11)"/><rect class="cls-4" x="35.92" y="26.37" width="0.46" height="11.02" transform="translate(-1.3 60.52) rotate(-69.11)"/><rect class="cls-4" x="36.08" y="25.94" width="0.46" height="11.02" transform="translate(-0.8 60.4) rotate(-69.11)"/><rect class="cls-4" x="36.25" y="25.51" width="0.46" height="11.02" transform="translate(-0.3 60.28) rotate(-69.11)"/><rect class="cls-4" x="36.41" y="25.09" width="0.46" height="11.02" transform="matrix(0.36, -0.93, 0.93, 0.36, 0.21, 60.15)"/><rect class="cls-4" x="36.57" y="24.66" width="0.46" height="11.02" transform="translate(0.71 60.03) rotate(-69.11)"/><rect class="cls-4" x="36.74" y="24.23" width="0.46" height="11.02" transform="translate(1.21 59.91) rotate(-69.11)"/><rect class="cls-4" x="36.9" y="23.81" width="0.46" height="11.02" transform="translate(1.72 59.79) rotate(-69.11)"/><rect class="cls-4" x="37.06" y="23.38" width="0.46" height="11.02" transform="translate(2.22 59.66) rotate(-69.11)"/><rect class="cls-4" x="37.3" y="23.07" width="0.21" height="11.02" transform="translate(2.59 59.57) rotate(-69.11)"/><rect class="cls-4" x="37.38" y="22.87" width="0.21" height="11.02" transform="translate(2.83 59.52) rotate(-69.11)"/><rect class="cls-4" x="37.45" y="22.67" width="0.21" height="11.02" transform="translate(3.06 59.46) rotate(-69.11)"/><rect class="cls-4" x="37.53" y="22.47" width="0.21" height="11.02" transform="translate(3.3 59.4) rotate(-69.11)"/><rect class="cls-4" x="37.61" y="22.27" width="0.21" height="11.02" transform="translate(3.53 59.34) rotate(-69.11)"/><rect class="cls-4" x="37.68" y="22.07" width="0.21" height="11.02" transform="translate(3.77 59.29) rotate(-69.11)"/><rect class="cls-4" x="37.76" y="21.87" width="0.21" height="11.02" transform="translate(4 59.23) rotate(-69.11)"/><rect class="cls-4" x="37.84" y="21.67" width="0.21" height="11.02" transform="translate(4.24 59.17) rotate(-69.11)"/><rect class="cls-4" x="37.91" y="21.47" width="0.21" height="11.02" transform="translate(4.48 59.11) rotate(-69.11)"/><rect class="cls-4" x="37.99" y="21.27" width="0.21" height="11.02" transform="translate(4.71 59.06) rotate(-69.11)"/><rect class="cls-4" x="38.06" y="21.07" width="0.21" height="11.02" transform="translate(4.95 59) rotate(-69.11)"/><rect class="cls-4" x="38.14" y="20.87" width="0.21" height="11.02" transform="translate(5.18 58.94) rotate(-69.11)"/><rect class="cls-4" x="38.22" y="20.67" width="0.21" height="11.02" transform="translate(5.42 58.89) rotate(-69.11)"/><rect class="cls-4" x="38.29" y="20.47" width="0.21" height="11.02" transform="translate(5.65 58.83) rotate(-69.11)"/><rect class="cls-4" x="38.37" y="20.27" width="0.21" height="11.02" transform="translate(5.89 58.77) rotate(-69.11)"/><rect class="cls-4" x="38.44" y="20.07" width="0.21" height="11.02" transform="translate(6.12 58.71) rotate(-69.11)"/><rect class="cls-4" x="38.52" y="19.87" width="0.21" height="11.02" transform="translate(6.36 58.66) rotate(-69.11)"/><rect class="cls-4" x="38.6" y="19.67" width="0.21" height="11.02" transform="translate(6.6 58.6) rotate(-69.11)"/><rect class="cls-4" x="38.67" y="19.47" width="0.21" height="11.02" transform="translate(6.83 58.54) rotate(-69.11)"/><rect class="cls-4" x="38.75" y="19.27" width="0.21" height="11.02" transform="translate(7.07 58.48) rotate(-69.11)"/><rect class="cls-4" x="38.83" y="19.07" width="0.21" height="11.02" transform="translate(7.3 58.43) rotate(-69.11)"/><rect class="cls-4" x="38.9" y="18.87" width="0.21" height="11.02" transform="translate(7.54 58.37) rotate(-69.11)"/><rect class="cls-4" x="38.98" y="18.67" width="0.21" height="11.02" transform="translate(7.77 58.31) rotate(-69.11)"/><rect class="cls-4" x="39.05" y="18.47" width="0.21" height="11.02" transform="translate(8.01 58.26) rotate(-69.11)"/><rect class="cls-4" x="39.13" y="18.27" width="0.21" height="11.02" transform="translate(8.24 58.2) rotate(-69.11)"/><rect class="cls-4" x="39.21" y="18.07" width="0.21" height="11.02" transform="translate(8.48 58.14) rotate(-69.11)"/><rect class="cls-4" x="39.28" y="17.88" width="0.21" height="11.02" transform="translate(8.72 58.08) rotate(-69.11)"/><rect class="cls-4" x="39.36" y="17.68" width="0.21" height="11.02" transform="translate(8.95 58.03) rotate(-69.11)"/><rect class="cls-4" x="39.44" y="17.48" width="0.21" height="11.02" transform="translate(9.19 57.97) rotate(-69.11)"/><rect class="cls-4" x="39.51" y="17.28" width="0.21" height="11.02" transform="translate(9.42 57.91) rotate(-69.11)"/><rect class="cls-4" x="39.59" y="17.08" width="0.21" height="11.02" transform="translate(9.66 57.85) rotate(-69.11)"/><rect class="cls-4" x="39.66" y="16.88" width="0.21" height="11.02" transform="translate(9.89 57.8) rotate(-69.11)"/><rect class="cls-4" x="39.74" y="16.68" width="0.21" height="11.02" transform="translate(10.13 57.74) rotate(-69.11)"/><rect class="cls-4" x="39.82" y="16.48" width="0.21" height="11.02" transform="translate(10.36 57.68) rotate(-69.11)"/><rect class="cls-4" x="39.89" y="16.28" width="0.21" height="11.02" transform="translate(10.6 57.63) rotate(-69.11)"/><rect class="cls-4" x="39.97" y="16.08" width="0.21" height="11.02" transform="translate(10.84 57.57) rotate(-69.11)"/><rect class="cls-4" x="40.04" y="15.88" width="0.21" height="11.02" transform="translate(11.07 57.51) rotate(-69.11)"/><rect class="cls-4" x="40.12" y="15.68" width="0.21" height="11.02" transform="translate(11.31 57.45) rotate(-69.11)"/><rect class="cls-4" x="40.2" y="15.48" width="0.21" height="11.02" transform="translate(11.54 57.4) rotate(-69.11)"/><rect class="cls-4" x="40.27" y="15.28" width="0.21" height="11.02" transform="translate(11.78 57.34) rotate(-69.11)"/><rect class="cls-4" x="40.35" y="15.08" width="0.21" height="11.02" transform="translate(12.01 57.28) rotate(-69.11)"/><rect class="cls-4" x="40.43" y="14.88" width="0.21" height="11.02" transform="translate(12.25 57.22) rotate(-69.11)"/><polygon class="cls-4" points="40.64 24.56 40.65 24.52 40.88 24.42 51.02 28.29 50.94 28.49 40.64 24.56"/><polygon class="cls-4" points="41.15 24.3 51.09 28.09 51.02 28.29 40.88 24.42 41.15 24.3"/><polygon class="cls-4" points="41.43 24.17 51.17 27.89 51.09 28.09 41.15 24.3 41.43 24.17"/><polygon class="cls-4" points="41.7 24.05 51.24 27.69 51.17 27.89 41.43 24.17 41.7 24.05"/><polygon class="cls-4" points="41.98 23.93 51.32 27.49 51.24 27.69 41.7 24.05 41.98 23.93"/><polygon class="cls-4" points="42.25 23.8 51.4 27.29 51.32 27.49 41.98 23.93 42.25 23.8"/><polygon class="cls-4" points="42.52 23.68 51.47 27.09 51.4 27.29 42.25 23.8 42.52 23.68"/><polygon class="cls-4" points="42.8 23.55 51.55 26.89 51.47 27.09 42.52 23.68 42.8 23.55"/><polygon class="cls-4" points="43.07 23.43 51.62 26.69 51.55 26.89 42.8 23.55 43.07 23.43"/><polygon class="cls-4" points="43.34 23.3 51.7 26.49 51.62 26.69 43.07 23.43 43.34 23.3"/><polygon class="cls-4" points="43.62 23.18 51.78 26.29 51.7 26.49 43.34 23.3 43.62 23.18"/><polygon class="cls-4" points="43.89 23.06 51.67 26.02 51.78 26.28 51.78 26.29 43.62 23.18 43.89 23.06"/><polygon class="cls-4" points="44.17 22.93 51.54 25.75 51.67 26.02 43.89 23.06 44.17 22.93"/><polygon class="cls-4" points="44.44 22.81 51.42 25.47 51.54 25.75 44.17 22.93 44.44 22.81"/><polygon class="cls-4" points="44.72 22.68 51.29 25.19 51.42 25.47 44.44 22.81 44.72 22.68"/><polygon class="cls-4" points="44.99 22.56 51.17 24.92 51.29 25.19 44.72 22.68 44.99 22.56"/><polygon class="cls-4" points="45.26 22.43 51.04 24.64 51.17 24.92 44.99 22.56 45.26 22.43"/><polygon class="cls-4" points="45.54 22.31 50.92 24.36 51.04 24.64 45.26 22.43 45.54 22.31"/><polygon class="cls-4" points="45.81 22.19 50.79 24.09 50.92 24.36 45.54 22.31 45.81 22.19"/><polygon class="cls-4" points="46.09 22.06 50.66 23.81 50.79 24.09 45.81 22.19 46.09 22.06"/><polygon class="cls-4" points="46.36 21.94 50.54 23.53 50.66 23.81 46.09 22.06 46.36 21.94"/><polygon class="cls-4" points="46.63 21.81 50.41 23.26 50.54 23.53 46.36 21.94 46.63 21.81"/><polygon class="cls-4" points="46.91 21.69 50.29 22.98 50.41 23.26 46.63 21.81 46.91 21.69"/><polygon class="cls-4" points="47.18 21.57 50.16 22.7 50.29 22.98 46.91 21.69 47.18 21.57"/><polygon class="cls-4" points="50.16 22.7 47.18 21.57 49.23 20.64 50.16 22.7"/></g></g></g></svg>
\ No newline at end of file
//
//
//
+//
+//
+//
+//
+//
+//
/* harmony default export */ __webpack_exports__["default"] = ({
name: "CampaignHit",
props: ['hit']
//
//
//
+//
+//
/* harmony default export */ __webpack_exports__["default"] = ({
name: "HeadlineRepeater",
props: {
value: {
- type: String,
required: true
}
},
+ data: function data() {
+ return {
+ headline: '',
+ content: ''
+ };
+ },
computed: {
- headline: {
+ val: {
get: function get() {
- return this.value;
+ return {
+ headline: this.headline,
+ content: this.content
+ };
},
set: function set(v) {
this.$emit('input', v);
}
}
+ },
+ watch: {
+ val: function val(value) {
+ this.$emit('input', value);
+ }
}
});
_c(
"h3",
[
- _c("ais-highlight", {
- attrs: { attribute: "organization", hit: _vm.hit }
- })
+ _vm.hit._highlightResult === undefined
+ ? _c("span", {
+ domProps: { innerHTML: _vm._s(_vm.hit.organization) }
+ })
+ : _c("ais-highlight", {
+ attrs: { attribute: "organization", hit: _vm.hit }
+ })
],
1
),
_vm._v(" "),
_c(
"h4",
- [_c("ais-highlight", { attrs: { attribute: "title", hit: _vm.hit } })],
+ [
+ _vm.hit._highlightResult === undefined
+ ? _c("span", { domProps: { innerHTML: _vm._s(_vm.hit.title) } })
+ : _vm._e(),
+ _vm._v(" "),
+ _c("ais-highlight", { attrs: { attribute: "title", hit: _vm.hit } })
+ ],
1
),
_vm._v(" "),
}),
_vm._v(" "),
_c("textarea", {
+ directives: [
+ {
+ name: "model",
+ rawName: "v-model",
+ value: _vm.content,
+ expression: "content"
+ }
+ ],
staticClass: "form-control mt-1",
- attrs: { placeholder: "Description rapide", rows: "4" }
+ attrs: { placeholder: "Description rapide", rows: "4" },
+ domProps: { value: _vm.content },
+ on: {
+ input: function($event) {
+ if ($event.target.composing) {
+ return
+ }
+ _vm.content = $event.target.value
+ }
+ }
})
])
}
</div>
<div class="col-sm-8 pt-3">
- <h3><ais-highlight attribute="organization" :hit="hit" /></h3>
- <h4><ais-highlight attribute="title" :hit="hit" /></h4>
+ <h3>
+ <span v-if="hit._highlightResult === undefined" v-html="hit.organization"></span>
+ <ais-highlight v-else attribute="organization" :hit="hit" />
+ </h3>
+ <h4>
+ <span v-if="hit._highlightResult === undefined" v-html="hit.title"></span>
+ <ais-highlight attribute="title" :hit="hit" />
+ </h4>
<p v-html="hit.description"></p>
</div>
+
+
<template>
<div>
<input type="text" class="form-control" placeholder="Tapez le titre ici..." v-model="headline">
- <textarea placeholder="Description rapide" rows="4" class="form-control mt-1"></textarea>
+ <textarea placeholder="Description rapide" rows="4" class="form-control mt-1" v-model="content"></textarea>
</div>
</template>
name: "HeadlineRepeater",
props: {
value: {
- type: String,
required: true
}
},
+ data() {
+ return {
+ headline: '',
+ content : ''
+ }
+
+ },
computed: {
- headline: {
- get() { return this.value },
+ val: {
+ get() {
+ return {
+ headline: this.headline,
+ content : this.content
+ }
+ },
set(v) { this.$emit('input', v) }
}
+ },
+ watch: {
+ val: function(value) {
+ this.$emit('input', value)
+ }
}
}
</script>
$psq_red: #d04d4a;
$psq_blue: #074e9c;
+$psq_light_blue: #cddceb; //$psq_blue, opacity 0.3 white bg
$psq_purple: #AD5ED3;
+
$blue: $psq_blue;
$red: $psq_red;
position: absolute;
}
- p {
- text-transform: uppercase;
- color: $psq_blue;
- background-color: rgba($psq_blue, 0.3);
- text-align: center;
- font-weight: 900;
- display: table;
+ .cover-title {
+
+ width: fit-content;
margin: auto;
- padding: 0 6px;
- font-size: small;
+ position: relative;
+ height: 30px;
+
+ img {
+ position: absolute;
+ width: 50px;
+ z-index: 5;
+ top: -12px;
+ left: -30px;
+
+ }
+
+ p {
+ text-transform: uppercase;
+ color: $psq_blue;
+ background-color: $psq_light_blue;
+ text-align: center;
+ font-weight: 900;
+ display: table;
+ margin: auto;
+ padding: 0 6px;
+ font-size: small;
+ z-index: 10;
+ position: relative;
+ }
}
}
div.pill-box {
position: relative;
+ margin-top: 2rem;
+ margin-bottom: 2rem;
+
img {
width: 50px;
--- /dev/null
+@extends('layouts.app')
+
+@section('content')
+<div class="container">
+ <h1 class="highlight-purple">CAMPAGNES & COMMUNICATION DES ACTEURS DE LA SANTÉ</h1>
+
+ <ul class="leaders">
+ <li><span>MARKETING & COM : LES CAMPAGNES DE LA SEMAINE</span></li>
+ </ul>
+
+ <div class="row">
+ @foreach($campaigns as $campaign)
+ <div class="col-12 mb-4">
+ <campaign-hit :hit='@json($campaign)'></campaign-hit>
+ </div>
+
+ @endforeach
+ </div>
+
+
+</div>
+@endsection
+<script>
+ import CampaignHit from "../../js/components/AdCampaign/CampaignHit";
+ export default {
+ components: {CampaignHit},
+ data() {
+ return {
+ hit: {
+ organization: 'test orga',
+ title: 'test title',
+ image: '#',
+ description: 'descr'
+ }
+ }
+ }
+ }
+</script>
--- /dev/null
+@extends('layouts.app')
+
+@section('content')
+<div class="container">
+ <h1 class="highlight-purple">ARCHIVES : CAMPAGNES & COMMUNICATION DES ACTEURS DE LA SANTÉ</h1>
+
+
+ <campaign-instant-search></campaign-instant-search>
+</div>
+@endsection
+++ /dev/null
-@extends('layouts.app')
-
-@section('content')
-<div class="container">
- <h1 class="highlight-purple">CAMPAGNES & COMMUNICATION DES ACTEURS DE LA SANTÉ</h1>
-
- <ul class="leaders">
- <li><span>MARKETING & COM : LES CAMPAGNES DE LA SEMAINE</span></li>
- </ul>
-
- <campaign-instant-search></campaign-instant-search>
-</div>
-@endsection
<div class="cover {{$class}}">
- <img class="cover-bg" src="{{$file}}" alt="">
- <img class="cover-over" src="{{$pdf->coverUrl}}" alt="">
- <p>{{$pdf->title}} - {{$pdf->created_at->format('d/m/Y')}}</p>
+
+ <a href="{{$pdf->getUrl()}}" target="_blank">
+ <img class="cover-bg" src="{{$file}}" alt="">
+ <img class="cover-over" src="{{$pdf->coverUrl}}" alt="">
+ <div class="cover-title">
+ <img src="{{asset('img/blue-pill.svg')}}" alt="">
+ <p>{{$pdf->title}} - {{$pdf->created_at->format('d/m/Y')}}</p>
+ </div>
+ </a>
</div>
--- /dev/null
+<div {{$attributes->merge(['class' => 'spotlight-news'])}}>
+ <h2>{{$title}}</h2>
+ <div>
+ {!! $content !!}
+ </div>
+</div>
-<div class="pill-box">
- <img src="{{asset('img/pill-icon.svg')}}" alt="Pill Icon" class="pill-icon">
+<div {{$attributes->merge(['class' => 'pill-box'])}}>
+
+ <img src="{{asset('img/red-pill.svg')}}" alt="Pill Icon" class="pill-icon">
<div>
<h2 class="bold">{{$title}}</h2>
<p>{{$slot}}</p>
+++ /dev/null
-<div {{$attributes->merge(['class' => 'spotlight-news'])}}>
- <h2>{{$title}}</h2>
- <div>
- {{$slot}}
- </div>
-</div>
--- /dev/null
+@extends('errors::minimal')
+
+@section('title', __('Unauthorized'))
+@section('code', '401')
+@section('message', __('Unauthorized'))
--- /dev/null
+@extends('layouts.app')
+
+@section('content')
+
+ <div class="container">
+ <h1>Vous ne pouvez pas accéder à cette page !</h1>
+
+
+ @auth
+ <h2>Il semblerait que votre abonnement n'est plus actif...</h2>
+ @elseauth
+ <p>Vous n'êtes pas connecté, <a href="{{route('login')}}">cliquez ici pour vous connecter</a></p>
+
+ @endauth
+ </div>
+@endsection
--- /dev/null
+@extends('errors::minimal')
+
+@section('title', __('Not Found'))
+@section('code', '404')
+@section('message', __('Not Found'))
--- /dev/null
+@extends('errors::minimal')
+
+@section('title', __('Page Expired'))
+@section('code', '419')
+@section('message', __('Page Expired'))
--- /dev/null
+@extends('errors::minimal')
+
+@section('title', __('Too Many Requests'))
+@section('code', '429')
+@section('message', __('Too Many Requests'))
--- /dev/null
+@extends('errors::minimal')
+
+@section('title', __('Server Error'))
+@section('code', '500')
+@section('message', __('Server Error'))
--- /dev/null
+@extends('errors::minimal')
+
+@section('title', __('Service Unavailable'))
+@section('code', '503')
+@section('message', __($exception->getMessage() ?: 'Service Unavailable'))
--- /dev/null
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+
+ <title>@yield('title')</title>
+
+ <!-- Fonts -->
+ <link rel="dns-prefetch" href="//fonts.gstatic.com">
+ <link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
+
+ <!-- Styles -->
+ <style>
+ html {
+ line-height: 1.15;
+ -ms-text-size-adjust: 100%;
+ -webkit-text-size-adjust: 100%;
+ }
+
+ body {
+ margin: 0;
+ }
+
+ header,
+ nav,
+ section {
+ display: block;
+ }
+
+ figcaption,
+ main {
+ display: block;
+ }
+
+ a {
+ background-color: transparent;
+ -webkit-text-decoration-skip: objects;
+ }
+
+ strong {
+ font-weight: inherit;
+ }
+
+ strong {
+ font-weight: bolder;
+ }
+
+ code {
+ font-family: monospace, monospace;
+ font-size: 1em;
+ }
+
+ dfn {
+ font-style: italic;
+ }
+
+ svg:not(:root) {
+ overflow: hidden;
+ }
+
+ button,
+ input {
+ font-family: sans-serif;
+ font-size: 100%;
+ line-height: 1.15;
+ margin: 0;
+ }
+
+ button,
+ input {
+ overflow: visible;
+ }
+
+ button {
+ text-transform: none;
+ }
+
+ button,
+ html [type="button"],
+ [type="reset"],
+ [type="submit"] {
+ -webkit-appearance: button;
+ }
+
+ button::-moz-focus-inner,
+ [type="button"]::-moz-focus-inner,
+ [type="reset"]::-moz-focus-inner,
+ [type="submit"]::-moz-focus-inner {
+ border-style: none;
+ padding: 0;
+ }
+
+ button:-moz-focusring,
+ [type="button"]:-moz-focusring,
+ [type="reset"]:-moz-focusring,
+ [type="submit"]:-moz-focusring {
+ outline: 1px dotted ButtonText;
+ }
+
+ legend {
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ color: inherit;
+ display: table;
+ max-width: 100%;
+ padding: 0;
+ white-space: normal;
+ }
+
+ [type="checkbox"],
+ [type="radio"] {
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ padding: 0;
+ }
+
+ [type="number"]::-webkit-inner-spin-button,
+ [type="number"]::-webkit-outer-spin-button {
+ height: auto;
+ }
+
+ [type="search"] {
+ -webkit-appearance: textfield;
+ outline-offset: -2px;
+ }
+
+ [type="search"]::-webkit-search-cancel-button,
+ [type="search"]::-webkit-search-decoration {
+ -webkit-appearance: none;
+ }
+
+ ::-webkit-file-upload-button {
+ -webkit-appearance: button;
+ font: inherit;
+ }
+
+ menu {
+ display: block;
+ }
+
+ canvas {
+ display: inline-block;
+ }
+
+ template {
+ display: none;
+ }
+
+ [hidden] {
+ display: none;
+ }
+
+ html {
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ font-family: sans-serif;
+ }
+
+ *,
+ *::before,
+ *::after {
+ -webkit-box-sizing: inherit;
+ box-sizing: inherit;
+ }
+
+ p {
+ margin: 0;
+ }
+
+ button {
+ background: transparent;
+ padding: 0;
+ }
+
+ button:focus {
+ outline: 1px dotted;
+ outline: 5px auto -webkit-focus-ring-color;
+ }
+
+ *,
+ *::before,
+ *::after {
+ border-width: 0;
+ border-style: solid;
+ border-color: #dae1e7;
+ }
+
+ button,
+ [type="button"],
+ [type="reset"],
+ [type="submit"] {
+ border-radius: 0;
+ }
+
+ button,
+ input {
+ font-family: inherit;
+ }
+
+ input::-webkit-input-placeholder {
+ color: inherit;
+ opacity: .5;
+ }
+
+ input:-ms-input-placeholder {
+ color: inherit;
+ opacity: .5;
+ }
+
+ input::-ms-input-placeholder {
+ color: inherit;
+ opacity: .5;
+ }
+
+ input::placeholder {
+ color: inherit;
+ opacity: .5;
+ }
+
+ button,
+ [role=button] {
+ cursor: pointer;
+ }
+
+ .bg-transparent {
+ background-color: transparent;
+ }
+
+ .bg-white {
+ background-color: #fff;
+ }
+
+ .bg-teal-light {
+ background-color: #64d5ca;
+ }
+
+ .bg-blue-dark {
+ background-color: #2779bd;
+ }
+
+ .bg-indigo-light {
+ background-color: #7886d7;
+ }
+
+ .bg-purple-light {
+ background-color: #a779e9;
+ }
+
+ .bg-no-repeat {
+ background-repeat: no-repeat;
+ }
+
+ .bg-cover {
+ background-size: cover;
+ }
+
+ .border-grey-light {
+ border-color: #dae1e7;
+ }
+
+ .hover\:border-grey:hover {
+ border-color: #b8c2cc;
+ }
+
+ .rounded-lg {
+ border-radius: .5rem;
+ }
+
+ .border-2 {
+ border-width: 2px;
+ }
+
+ .hidden {
+ display: none;
+ }
+
+ .flex {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ }
+
+ .items-center {
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ }
+
+ .justify-center {
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ }
+
+ .font-sans {
+ font-family: Nunito, sans-serif;
+ }
+
+ .font-light {
+ font-weight: 300;
+ }
+
+ .font-bold {
+ font-weight: 700;
+ }
+
+ .font-black {
+ font-weight: 900;
+ }
+
+ .h-1 {
+ height: .25rem;
+ }
+
+ .leading-normal {
+ line-height: 1.5;
+ }
+
+ .m-8 {
+ margin: 2rem;
+ }
+
+ .my-3 {
+ margin-top: .75rem;
+ margin-bottom: .75rem;
+ }
+
+ .mb-8 {
+ margin-bottom: 2rem;
+ }
+
+ .max-w-sm {
+ max-width: 30rem;
+ }
+
+ .min-h-screen {
+ min-height: 100vh;
+ }
+
+ .py-3 {
+ padding-top: .75rem;
+ padding-bottom: .75rem;
+ }
+
+ .px-6 {
+ padding-left: 1.5rem;
+ padding-right: 1.5rem;
+ }
+
+ .pb-full {
+ padding-bottom: 100%;
+ }
+
+ .absolute {
+ position: absolute;
+ }
+
+ .relative {
+ position: relative;
+ }
+
+ .pin {
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ }
+
+ .text-black {
+ color: #22292f;
+ }
+
+ .text-grey-darkest {
+ color: #3d4852;
+ }
+
+ .text-grey-darker {
+ color: #606f7b;
+ }
+
+ .text-2xl {
+ font-size: 1.5rem;
+ }
+
+ .text-5xl {
+ font-size: 3rem;
+ }
+
+ .uppercase {
+ text-transform: uppercase;
+ }
+
+ .antialiased {
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ }
+
+ .tracking-wide {
+ letter-spacing: .05em;
+ }
+
+ .w-16 {
+ width: 4rem;
+ }
+
+ .w-full {
+ width: 100%;
+ }
+
+ @media (min-width: 768px) {
+ .md\:bg-left {
+ background-position: left;
+ }
+
+ .md\:bg-right {
+ background-position: right;
+ }
+
+ .md\:flex {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ }
+
+ .md\:my-6 {
+ margin-top: 1.5rem;
+ margin-bottom: 1.5rem;
+ }
+
+ .md\:min-h-screen {
+ min-height: 100vh;
+ }
+
+ .md\:pb-0 {
+ padding-bottom: 0;
+ }
+
+ .md\:text-3xl {
+ font-size: 1.875rem;
+ }
+
+ .md\:text-15xl {
+ font-size: 9rem;
+ }
+
+ .md\:w-1\/2 {
+ width: 50%;
+ }
+ }
+
+ @media (min-width: 992px) {
+ .lg\:bg-center {
+ background-position: center;
+ }
+ }
+ </style>
+ </head>
+ <body class="antialiased font-sans">
+ <div class="md:flex min-h-screen">
+ <div class="w-full md:w-1/2 bg-white flex items-center justify-center">
+ <div class="max-w-sm m-8">
+ <div class="text-black text-5xl md:text-15xl font-black">
+ @yield('code', __('Oh no'))
+ </div>
+
+ <div class="w-16 h-1 bg-purple-light my-3 md:my-6"></div>
+
+ <p class="text-grey-darker text-2xl md:text-3xl font-light mb-8 leading-normal">
+ @yield('message')
+ </p>
+
+ <a href="{{ app('router')->has('home') ? route('home') : url('/') }}">
+ <button class="bg-transparent text-grey-darkest font-bold uppercase tracking-wide py-3 px-6 border-2 border-grey-light hover:border-grey rounded-lg">
+ {{ __('Go Home') }}
+ </button>
+ </a>
+ </div>
+ </div>
+
+ <div class="relative pb-full md:flex md:pb-0 md:min-h-screen w-full md:w-1/2">
+ @yield('image')
+ </div>
+ </div>
+ </body>
+</html>
--- /dev/null
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+
+ <title>@yield('title')</title>
+
+ <!-- Fonts -->
+ <link rel="dns-prefetch" href="//fonts.gstatic.com">
+ <link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet" type="text/css">
+
+ <!-- Styles -->
+ <style>
+ html, body {
+ background-color: #fff;
+ color: #636b6f;
+ font-family: 'Nunito', sans-serif;
+ font-weight: 100;
+ height: 100vh;
+ margin: 0;
+ }
+
+ .full-height {
+ height: 100vh;
+ }
+
+ .flex-center {
+ align-items: center;
+ display: flex;
+ justify-content: center;
+ }
+
+ .position-ref {
+ position: relative;
+ }
+
+ .content {
+ text-align: center;
+ }
+
+ .title {
+ font-size: 36px;
+ padding: 20px;
+ }
+ </style>
+ </head>
+ <body>
+ <div class="flex-center position-ref full-height">
+ <div class="content">
+ <div class="title">
+ @yield('message')
+ </div>
+ </div>
+ </div>
+ </body>
+</html>
--- /dev/null
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+
+ <title>@yield('title')</title>
+
+ <!-- Fonts -->
+ <link rel="dns-prefetch" href="//fonts.gstatic.com">
+ <link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
+
+ <!-- Styles -->
+ <style>
+ html, body {
+ background-color: #fff;
+ color: #636b6f;
+ font-family: 'Nunito', sans-serif;
+ font-weight: 100;
+ height: 100vh;
+ margin: 0;
+ }
+
+ .full-height {
+ height: 100vh;
+ }
+
+ .flex-center {
+ align-items: center;
+ display: flex;
+ justify-content: center;
+ }
+
+ .position-ref {
+ position: relative;
+ }
+
+ .code {
+ border-right: 2px solid;
+ font-size: 26px;
+ padding: 0 15px 0 15px;
+ text-align: center;
+ }
+
+ .message {
+ font-size: 18px;
+ text-align: center;
+ }
+ </style>
+ </head>
+ <body>
+ <div class="flex-center position-ref full-height">
+ <div class="code">
+ @yield('code')
+ </div>
+
+ <div class="message" style="padding: 10px;">
+ @yield('message')
+ </div>
+ </div>
+ </body>
+</html>
<x-cover :pdf="$last_pdf->first()" type="3">
</x-cover>
- @foreach([1, 2, 3] as $i)
-
- <x-spotlight-news title="À SEULEMENT J+1 DAVID LOEW NOUVEAU" class="mt-3">
- <ul>
- <li>Nouveau Boss d’IPSEN face à la presse</li>
- <li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</li>
- </ul>
- </x-spotlight-news>
+ @foreach($last_pdf->first()->headlines as $headline)
+
+ <x-headline :headline="$headline" class="mt-3">
+ </x-headline>
@endforeach
<body>
<div id="app">
@if(!isset($hideNav))
- <img src="{{ asset('img/logo_top.svg') }}" class="header-logo" alt="">
+ <a href="/">
+ <img src="{{ asset('img/logo_top.svg') }}" class="header-logo" alt="">
+ </a>
<nav class="container">
<div>
- <img src="{{asset('img/pill-icon.svg')}}" alt="Pill Icon">
+ <img src="{{asset('img/blue-pill.svg')}}" alt="Pill Icon">
<p>Lorem Ipsum</p>
</div>
<div>
- <img src="{{asset('img/pill-icon.svg')}}" alt="Pill Icon">
+ <img src="{{asset('img/blue-pill.svg')}}" alt="Pill Icon">
<p>Lorem Ipsum</p>
</div>
<div>
- <img src="{{asset('img/pill-icon.svg')}}" alt="Pill Icon">
+ <img src="{{asset('img/blue-pill.svg')}}" alt="Pill Icon">
<p>Lorem Ipsum</p>
</div>
<div>
- <img src="{{asset('img/pill-icon.svg')}}" alt="Pill Icon">
+ <img src="{{asset('img/blue-pill.svg')}}" alt="Pill Icon">
<p>Lorem Ipsum</p>
-
</div>
- <div>
- <img src="{{asset('img/pill-icon.svg')}}" alt="Pill Icon">
- <p>Lorem Ipsum</p>
- </div>
+ @guest
+ <div>
+ <img src="{{asset('img/blue-pill.svg')}}" alt="Pill Icon">
+ <a class="" href="{{ route('login') }}">{{ __('Login') }}</a>
+ </div>
+
+
+ @else
+ <div>
+ <img src="{{asset('img/blue-pill.svg')}}" alt="Pill Icon">
+
+ <a class="" href="{{ route('logout') }}"
+ onclick="event.preventDefault();
+ document.getElementById('logout-form').submit();">
+ {{ __('Logout') }}
+ </a>
+ <form id="logout-form" action="{{ route('logout') }}" method="POST" style="display: none;">
+ @csrf
+ </form>
+ </div>
+
+ @endguest
+
</nav>
Route::get('/search', 'FileController@search');
+
Route::get('/campaigns', 'AdCampaignController@index');
+ Route::get('/campaigns/search', 'AdCampaignController@search');
/** Metadata */
Route::prefix('/files/{file:slug}')->group(function () {