intelica-library-components 1.1.178 → 1.1.180

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,10 +1,11 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Injectable, inject, signal, Pipe, Component, TemplateRef, ContentChild, Input, Directive, EventEmitter, ContentChildren, Output, HostListener, forwardRef, ViewChild, PLATFORM_ID, Inject, DestroyRef, output, input, effect, computed, ViewChildren, Optional, Host, InjectionToken } from '@angular/core';
2
+ import { Injectable, inject, signal, Pipe, InjectionToken, Component, TemplateRef, ContentChild, Input, Directive, EventEmitter, ContentChildren, Output, HostListener, forwardRef, ViewChild, PLATFORM_ID, Inject, DestroyRef, output, input, effect, computed, ViewChildren, Optional, Host } from '@angular/core';
3
3
  import { getCookie, setCookie, Cookies } from 'typescript-cookie';
4
4
  import * as i1$4 from '@angular/common/http';
5
5
  import { HttpClient, HttpHeaders, HttpResponse } from '@angular/common/http';
6
6
  import { BehaviorSubject, catchError, throwError, Subject, Subscription, tap as tap$1, of, map, fromEvent, startWith, distinctUntilChanged, firstValueFrom, shareReplay } from 'rxjs';
7
- import Swal from 'sweetalert2';
7
+ import * as i4 from 'primeng/api';
8
+ import { ConfirmationService } from 'primeng/api';
8
9
  import { tap, catchError as catchError$1 } from 'rxjs/operators';
9
10
  import * as i1 from '@angular/common';
10
11
  import { DatePipe, CommonModule, isPlatformBrowser, NgClass } from '@angular/common';
@@ -28,8 +29,6 @@ import * as i4$1 from 'primeng/tooltip';
28
29
  import { TooltipModule, Tooltip } from 'primeng/tooltip';
29
30
  import moment from 'moment';
30
31
  import * as _ from 'lodash';
31
- import * as i4 from 'primeng/api';
32
- import { ConfirmationService } from 'primeng/api';
33
32
  import * as i2$1 from 'primeng/button';
34
33
  import { ButtonModule, Button } from 'primeng/button';
35
34
  import * as i3$1 from 'primeng/radiobutton';
@@ -381,71 +380,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.23", ngImpo
381
380
  args: [{ providedIn: "root" }]
382
381
  }], ctorParameters: () => [{ type: FeatureFlagService }] });
383
382
 
384
- class SweetAlertService {
385
- options = {
386
- text: "",
387
- customClass: {
388
- image: "image-class-custom",
389
- container: "container-class-custom",
390
- confirmButton: "confirm-class-custom",
391
- cancelButton: "cancel-class-custom",
392
- },
393
- showCloseButton: true,
394
- closeButtonHtml: '<i class="fa fa-times"></i>',
395
- imageUrl: `${window.location.origin}/assets/images/logo-incontrol.svg`,
396
- showCancelButton: false,
397
- confirmButtonText: "Ok",
398
- cancelButtonText: "",
399
- html: "",
400
- };
401
- messageBox(message) {
402
- let options = structuredClone(this.options);
403
- options.showCancelButton = false;
404
- options.text = message;
405
- return Swal.fire(options);
406
- }
407
- messageTextBox(message = "", swHtml = false) {
408
- let options = structuredClone(this.options);
409
- options.showCancelButton = false;
410
- if (!swHtml)
411
- options.text = message.length === 0 ? "Something went wrong!" : message;
412
- else
413
- options.html = message;
414
- Swal.fire(options);
415
- }
416
- confirmBox(message, confirmButtonText, cancelButtonText, title, html, popupClass) {
417
- let options = structuredClone(this.options);
418
- options.title = title ?? "";
419
- options.showCancelButton = cancelButtonText == "" ? false : true;
420
- options.text = message;
421
- options.confirmButtonText = confirmButtonText;
422
- options.cancelButtonText = cancelButtonText;
423
- options.html = html;
424
- if (popupClass) {
425
- options.customClass = {
426
- popup: popupClass,
427
- };
428
- }
429
- return Swal.fire(options);
430
- }
431
- messageHTMLBox(title, html, confirmButtonText) {
432
- let options = structuredClone(this.options);
433
- options.showCancelButton = false;
434
- options.title = title;
435
- options.html = html;
436
- options.confirmButtonText = confirmButtonText;
437
- return Swal.fire(options);
438
- }
439
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: SweetAlertService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
440
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: SweetAlertService, providedIn: "root" });
441
- }
442
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: SweetAlertService, decorators: [{
443
- type: Injectable,
444
- args: [{
445
- providedIn: "root",
446
- }]
447
- }] });
448
-
449
383
  class SpinnerService {
450
384
  isLoading = signal(false, ...(ngDevMode ? [{ debugName: "isLoading" }] : []));
451
385
  hide() {
@@ -488,82 +422,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.23", ngImpo
488
422
  args: [{ providedIn: "root" }]
489
423
  }] });
490
424
 
491
- const ErrorInterceptor = (req, next) => {
492
- const skip = req.headers.has("Skip-Interceptor");
493
- if (skip) {
494
- const cleanReq = req.clone({
495
- headers: req.headers.delete("Skip-Interceptor"),
496
- });
497
- return next(cleanReq);
498
- }
499
- const commonFeatureFlagService = inject(GlobalFeatureFlagService);
500
- const spinnerService = inject(SpinnerService);
501
- const sweetAlertService = inject(SweetAlertService);
502
- const closeSessionService = inject(CloseSessionService);
503
- const configService = inject(ConfigService);
504
- const HeaderSettings = {};
505
- const authenticationClientID = configService.environment?.clientID ?? "";
506
- if (!req.url.includes("environment.json")) {
507
- HeaderSettings["Accept"] = "application/json";
508
- HeaderSettings["Content-Type"] = "application/json";
509
- HeaderSettings["Authorization"] = getCookie("token") ?? "";
510
- HeaderSettings["RefreshToken"] = getCookie("refreshToken") ?? "";
511
- HeaderSettings["ClientID"] = configService.environment?.clientID ?? "";
512
- HeaderSettings["PageRoot"] = commonFeatureFlagService.GetPageRoot();
513
- HeaderSettings["LanguageCode"] = getCookie("language") ?? "";
514
- HeaderSettings["Environment"] = configService.environment?.environment ?? "";
515
- HeaderSettings["Access"] = authenticationClientID == "" ? "" : (getCookie(authenticationClientID) ?? "");
516
- }
517
- let _request = req.clone({ headers: new HttpHeaders(HeaderSettings) });
518
- return next(_request).pipe(catchError(handleErrorResponse));
519
- function handleErrorResponse(error) {
520
- console.log(error, "error", error.status);
521
- spinnerService.hide();
522
- const authenticationLocation = `${configService.environment?.authenticationWeb}?callback=${window.location.href}&clientID=${configService.environment?.clientID}`;
523
- if (error.status == 503 || error.status == 0)
524
- sweetAlertService.messageBox("El servicio que se necesita consumir no esta activo o no responde.");
525
- else if (error.status == 405)
526
- sweetAlertService.messageBox("Los parametros enviados al servicio no coinciden.");
527
- else if (error.status == 404)
528
- sweetAlertService.messageBox("Recurso no encontrado.");
529
- else if (error.status == 401) {
530
- //Codigo reservado para vencimiento de refreshtoken
531
- closeSessionService.closeSession();
532
- }
533
- else if (error.status == 403) {
534
- //Codigo reservado para acceso denegado
535
- window.location.href = window.location.origin;
536
- }
537
- else
538
- sweetAlertService.messageBox(error.error.Message);
539
- return throwError(() => {
540
- (error.error, error.message);
541
- });
542
- }
543
- };
544
-
545
- //Recupera el token de la respuesta y lo guarda en una cookie si no es localhost
546
- const ResponseHeadersInterceptor = (req, next) => {
547
- return next(req).pipe(tap(event => {
548
- if (event instanceof HttpResponse) {
549
- const Domain = window.location.hostname.split(".").slice(-2).join(".");
550
- const Secure = !Domain.includes("localhost");
551
- if (!Secure) {
552
- const headers = event.headers;
553
- const newToken = headers.get("TokenNew");
554
- if (newToken != null && newToken != "")
555
- setCookie("token", newToken, CookieAttributesGeneral);
556
- }
557
- }
558
- }));
559
- };
560
-
561
- var TableSortOrder;
562
- (function (TableSortOrder) {
563
- TableSortOrder[TableSortOrder["Asc"] = 1] = "Asc";
564
- TableSortOrder[TableSortOrder["Desc"] = -1] = "Desc";
565
- })(TableSortOrder || (TableSortOrder = {}));
566
-
567
425
  /**
568
426
  * Enum representing the different types of alerts available in the system.
569
427
  * Each type corresponds to a specific visual style and semantic meaning.
@@ -591,81 +449,460 @@ var AlertButtonMode;
591
449
  AlertButtonMode["CONFIRM_ONLY"] = "confirm_only";
592
450
  })(AlertButtonMode || (AlertButtonMode = {}));
593
451
 
594
- //Este guard propaga `pageRoot` del padre al hijo en la jerarquía de rutas
595
- class PageRootChildGuard {
596
- canActivateChild(child, parent) {
597
- const parentData = child.parent?.data;
598
- if (parentData?.["pageRoot"]) {
599
- child.data = {
600
- ...child.data,
601
- pageRoot: parentData["pageRoot"],
602
- };
603
- }
604
- return true;
605
- }
606
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: PageRootChildGuard, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
607
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: PageRootChildGuard, providedIn: "root" });
608
- }
609
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: PageRootChildGuard, decorators: [{
610
- type: Injectable,
611
- args: [{ providedIn: "root" }]
612
- }] });
613
-
614
- class SpinnerComponent {
615
- spinerService = inject(SpinnerService);
616
- isLoading = this.spinerService.isLoading;
617
- LoadingLogo = `${window.location.origin}/assets/images/loading_intelica.gif`;
618
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: SpinnerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
619
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.23", type: SpinnerComponent, isStandalone: true, selector: "app-spinner", ngImport: i0, template: "<div class=\"ptLoading\">\n\t<span class=\"ptLoading__svg\">\n\t\t@if (isLoading()) {\n\t\t\t<svg\n\t\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\t\txmlns:xlink=\"http://www.w3.org/1999/xlink\"\n\t\t\t\tpreserveAspectRatio=\"xMidYMid meet\"\n\t\t\t\twidth=\"540\"\n\t\t\t\theight=\"300\"\n\t\t\t\tviewBox=\"0 0 540 300\"\n\t\t\t\tstyle=\"width: 100%; height: 100%\"\n\t\t\t>\n\t\t\t\t<defs>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_12_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"1\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.04;1\"\n\t\t\t\t\t\tvalues=\"1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_12_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.04;1\"\n\t\t\t\t\t\tpath=\"M173.5 300 C173.5,300 81.5,300 81.5,300 C81.5,300 81.5,300 81.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_12_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_12_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"1\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2333333;0.2333333;1\"\n\t\t\t\t\t\tvalues=\"1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_11_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.0733333;0.1066667;0.1333333;0.16;0.1866667;0.2;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,172 300,172 C300,172 300,347 300,347 C300,347 300,287 300,287 C300,287 300,306.5 300,306.5 C300,306.5 300,301.5 300,301.5 C300,301.5 300,300 300,300 C300,300 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0.33;0.78;0.93;0.98;1;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1;0.167 0.167 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_11_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_11_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_11_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"1\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2;0.2;1\"\n\t\t\t\t\t\tvalues=\"1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_10_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2;0.2733333;0.3066667;0.3333333;0.36;0.3866667;0.4;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,300 300,300 C300,300 300,172 300,172 C300,172 300,347 300,347 C300,347 300,287 300,287 C300,287 300,306.5 300,306.5 C300,306.5 300,301.5 300,301.5 C300,301.5 300,300 300,300 C300,300 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.33;0.78;0.93;0.98;1;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1;0.333 0 0 1;0.167 0.167 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_10_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_10_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_10_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2;0.2000007;0.4;0.4;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_9_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.4;0.4733333;0.5066667;0.5333333;0.56;0.5866667;0.6;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,300 300,300 C300,300 300,172 300,172 C300,172 300,347 300,347 C300,347 300,287 300,287 C300,287 300,306.5 300,306.5 C300,306.5 300,301.5 300,301.5 C300,301.5 300,300 300,300 C300,300 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.33;0.78;0.93;0.98;1;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1;0.333 0 0 1;0.167 0.167 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_9_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_9_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_9_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.4;0.4000007;0.6;0.6;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_8_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.6;0.6733333;0.7066667;0.7333333;0.76;0.7866667;0.8;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,300 300,300 C300,300 300,172 300,172 C300,172 300,347 300,347 C300,347 300,287 300,287 C300,287 300,306.5 300,306.5 C300,306.5 300,301.5 300,301.5 C300,301.5 300,300 300,300 C300,300 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.33;0.78;0.93;0.98;1;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1;0.333 0 0 1;0.167 0.167 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_8_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_8_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_8_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.6;0.6000007;0.8;0.8;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_7_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.8;0.8733333;0.9066667;0.9333333;0.96;0.9866667;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,300 300,300 C300,300 300,172 300,172 C300,172 300,347 300,347 C300,347 300,287 300,287 C300,287 300,306.5 300,306.5 C300,306.5 300,301.5 300,301.5 C300,301.5 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.33;0.78;0.93;0.98;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1;0.333 0 0 1;0.167 0.167 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_7_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_7_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_7_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"1\"\n\t\t\t\t\t\tkeyTimes=\"0;0.8;0.8000007;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_6_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_6_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_6_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_6_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_5_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"1\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2333333;0.2733333;1\"\n\t\t\t\t\t\tvalues=\"1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_5_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.08;0.2333333;0.2733333;1\"\n\t\t\t\t\t\tpath=\"M427 300 C427,300 173.5,300 173.5,300 C173.5,300 173.5,300 173.5,300 C173.5,300 81.5,300 81.5,300 C81.5,300 81.5,300 81.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0.73;0.73;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_5_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_5_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"1\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.28;0.28;1\"\n\t\t\t\t\t\tvalues=\"1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_4_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.04;0.08;0.4666667;0.5066667;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0.833 0.833;0.333 0 0.833 0.833;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_4_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.04;0.08;0.2333333;0.3133333;0.4666667;0.5066667;1\"\n\t\t\t\t\t\tpath=\"M498 300 C498,300 498,300 498,300 C498,300 427,300 427,300 C427,300 427,300 427,300 C427,300 173.5,300 173.5,300 C173.5,300 173.5,300 173.5,300 C173.5,300 81.5,300 81.5,300 C81.5,300 81.5,300 81.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.17;0.17;0.78;0.78;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_4_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_4_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.04;0.0400007;0.5133333;0.5133333;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_3_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2333333;0.2733333;0.66;0.7;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0.833 0.833;0.333 0 0.833 0.833;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_3_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2333333;0.2733333;0.4266667;0.5066667;0.66;0.7;1\"\n\t\t\t\t\t\tpath=\"M498 300 C498,300 498,300 498,300 C498,300 427,300 427,300 C427,300 427,300 427,300 C427,300 173.5,300 173.5,300 C173.5,300 173.5,300 173.5,300 C173.5,300 81.5,300 81.5,300 C81.5,300 81.5,300 81.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.17;0.17;0.78;0.78;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_3_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_3_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2333333;0.233334;0.7066667;0.7066667;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_2_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.4266667;0.4666667;0.8533333;0.8933333;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0.833 0.833;0.333 0 0.833 0.833;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_2_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.4266667;0.4666667;0.62;0.7;0.8533333;0.8933333;1\"\n\t\t\t\t\t\tpath=\"M498 300 C498,300 498,300 498,300 C498,300 427,300 427,300 C427,300 427,300 427,300 C427,300 173.5,300 173.5,300 C173.5,300 173.5,300 173.5,300 C173.5,300 81.5,300 81.5,300 C81.5,300 81.5,300 81.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.17;0.17;0.78;0.78;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_2_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_2_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.4266667;0.4266673;0.9;0.9;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_1_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"1\"\n\t\t\t\t\t\tkeyTimes=\"0;0.62;0.66;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0.833 0.833;0.333 0 0.833 0.833;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_1_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.62;0.66;0.8133333;0.8933333;1\"\n\t\t\t\t\t\tpath=\"M498 300 C498,300 498,300 498,300 C498,300 427,300 427,300 C427,300 427,300 427,300 C427,300 173.5,300 173.5,300 C173.5,300 173.5,300 173.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.22;0.22;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_1_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_1_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"1\"\n\t\t\t\t\t\tkeyTimes=\"0;0.62;0.6200007;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_0_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"1\"\n\t\t\t\t\t\tkeyTimes=\"0;0.8533333;0.8933333;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0.833 0.833;0.333 0 0.833 0.833;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_0_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.8533333;0.8933333;1\"\n\t\t\t\t\t\tpath=\"M498 300 C498,300 498,300 498,300 C498,300 427,300 427,300 C427,300 427,300 427,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_0_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_0_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"1\"\n\t\t\t\t\t\tkeyTimes=\"0;0.8533333;0.853334;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate attributeType=\"XML\" attributeName=\"opacity\" dur=\"5s\" from=\"0\" to=\"1\" xlink:href=\"#time_group\" />\n\t\t\t\t</defs>\n\t\t\t\t<g id=\"_R_G\">\n\t\t\t\t\t<g id=\"_R_G_L_0_G\" transform=\" translate(270, 196) translate(-300, -300)\">\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_12_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_12_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_12_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_11_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_11_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_10_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_10_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_9_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_9_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_8_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_8_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_7_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_7_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_6_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_6_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_5_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_5_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_5_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_4_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_4_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_4_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_3_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_3_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_3_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_2_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_2_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_2_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_1_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_1_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_1_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_0_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_0_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_0_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t</g>\n\t\t\t\t</g>\n\t\t\t\t<g id=\"time_group\" />\n\t\t\t</svg>\n\t\t}\n\t</span>\n</div>\n", styles: ["#overlay{position:fixed;display:block;width:100%;height:100%;inset:0;background-color:#00000080;z-index:9999;cursor:pointer}.loading{height:100vh;width:100%;position:fixed;top:0;left:0;text-align:center;background-color:#d9d9d8f2}.loading img{width:150px}.content-center{left:50%;top:50%;position:absolute;transform:translate(-50%,-50%);width:90%}\n"] });
620
- }
621
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: SpinnerComponent, decorators: [{
622
- type: Component,
623
- args: [{ selector: "app-spinner", imports: [], template: "<div class=\"ptLoading\">\n\t<span class=\"ptLoading__svg\">\n\t\t@if (isLoading()) {\n\t\t\t<svg\n\t\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\t\txmlns:xlink=\"http://www.w3.org/1999/xlink\"\n\t\t\t\tpreserveAspectRatio=\"xMidYMid meet\"\n\t\t\t\twidth=\"540\"\n\t\t\t\theight=\"300\"\n\t\t\t\tviewBox=\"0 0 540 300\"\n\t\t\t\tstyle=\"width: 100%; height: 100%\"\n\t\t\t>\n\t\t\t\t<defs>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_12_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"1\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.04;1\"\n\t\t\t\t\t\tvalues=\"1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_12_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.04;1\"\n\t\t\t\t\t\tpath=\"M173.5 300 C173.5,300 81.5,300 81.5,300 C81.5,300 81.5,300 81.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_12_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_12_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"1\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2333333;0.2333333;1\"\n\t\t\t\t\t\tvalues=\"1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_11_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.0733333;0.1066667;0.1333333;0.16;0.1866667;0.2;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,172 300,172 C300,172 300,347 300,347 C300,347 300,287 300,287 C300,287 300,306.5 300,306.5 C300,306.5 300,301.5 300,301.5 C300,301.5 300,300 300,300 C300,300 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0.33;0.78;0.93;0.98;1;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1;0.167 0.167 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_11_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_11_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_11_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"1\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2;0.2;1\"\n\t\t\t\t\t\tvalues=\"1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_10_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2;0.2733333;0.3066667;0.3333333;0.36;0.3866667;0.4;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,300 300,300 C300,300 300,172 300,172 C300,172 300,347 300,347 C300,347 300,287 300,287 C300,287 300,306.5 300,306.5 C300,306.5 300,301.5 300,301.5 C300,301.5 300,300 300,300 C300,300 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.33;0.78;0.93;0.98;1;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1;0.333 0 0 1;0.167 0.167 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_10_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_10_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_10_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2;0.2000007;0.4;0.4;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_9_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.4;0.4733333;0.5066667;0.5333333;0.56;0.5866667;0.6;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,300 300,300 C300,300 300,172 300,172 C300,172 300,347 300,347 C300,347 300,287 300,287 C300,287 300,306.5 300,306.5 C300,306.5 300,301.5 300,301.5 C300,301.5 300,300 300,300 C300,300 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.33;0.78;0.93;0.98;1;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1;0.333 0 0 1;0.167 0.167 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_9_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_9_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_9_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.4;0.4000007;0.6;0.6;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_8_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.6;0.6733333;0.7066667;0.7333333;0.76;0.7866667;0.8;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,300 300,300 C300,300 300,172 300,172 C300,172 300,347 300,347 C300,347 300,287 300,287 C300,287 300,306.5 300,306.5 C300,306.5 300,301.5 300,301.5 C300,301.5 300,300 300,300 C300,300 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.33;0.78;0.93;0.98;1;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1;0.333 0 0 1;0.167 0.167 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_8_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_8_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_8_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.6;0.6000007;0.8;0.8;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_7_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.8;0.8733333;0.9066667;0.9333333;0.96;0.9866667;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,300 300,300 C300,300 300,172 300,172 C300,172 300,347 300,347 C300,347 300,287 300,287 C300,287 300,306.5 300,306.5 C300,306.5 300,301.5 300,301.5 C300,301.5 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.33;0.78;0.93;0.98;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1;0.333 0 0 1;0.167 0.167 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_7_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_7_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_7_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"1\"\n\t\t\t\t\t\tkeyTimes=\"0;0.8;0.8000007;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_6_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_6_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_6_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_6_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_5_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"1\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2333333;0.2733333;1\"\n\t\t\t\t\t\tvalues=\"1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_5_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.08;0.2333333;0.2733333;1\"\n\t\t\t\t\t\tpath=\"M427 300 C427,300 173.5,300 173.5,300 C173.5,300 173.5,300 173.5,300 C173.5,300 81.5,300 81.5,300 C81.5,300 81.5,300 81.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0.73;0.73;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_5_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_5_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"1\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.28;0.28;1\"\n\t\t\t\t\t\tvalues=\"1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_4_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.04;0.08;0.4666667;0.5066667;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0.833 0.833;0.333 0 0.833 0.833;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_4_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.04;0.08;0.2333333;0.3133333;0.4666667;0.5066667;1\"\n\t\t\t\t\t\tpath=\"M498 300 C498,300 498,300 498,300 C498,300 427,300 427,300 C427,300 427,300 427,300 C427,300 173.5,300 173.5,300 C173.5,300 173.5,300 173.5,300 C173.5,300 81.5,300 81.5,300 C81.5,300 81.5,300 81.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.17;0.17;0.78;0.78;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_4_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_4_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.04;0.0400007;0.5133333;0.5133333;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_3_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2333333;0.2733333;0.66;0.7;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0.833 0.833;0.333 0 0.833 0.833;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_3_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2333333;0.2733333;0.4266667;0.5066667;0.66;0.7;1\"\n\t\t\t\t\t\tpath=\"M498 300 C498,300 498,300 498,300 C498,300 427,300 427,300 C427,300 427,300 427,300 C427,300 173.5,300 173.5,300 C173.5,300 173.5,300 173.5,300 C173.5,300 81.5,300 81.5,300 C81.5,300 81.5,300 81.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.17;0.17;0.78;0.78;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_3_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_3_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2333333;0.233334;0.7066667;0.7066667;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_2_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.4266667;0.4666667;0.8533333;0.8933333;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0.833 0.833;0.333 0 0.833 0.833;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_2_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.4266667;0.4666667;0.62;0.7;0.8533333;0.8933333;1\"\n\t\t\t\t\t\tpath=\"M498 300 C498,300 498,300 498,300 C498,300 427,300 427,300 C427,300 427,300 427,300 C427,300 173.5,300 173.5,300 C173.5,300 173.5,300 173.5,300 C173.5,300 81.5,300 81.5,300 C81.5,300 81.5,300 81.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.17;0.17;0.78;0.78;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_2_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_2_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.4266667;0.4266673;0.9;0.9;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_1_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"1\"\n\t\t\t\t\t\tkeyTimes=\"0;0.62;0.66;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0.833 0.833;0.333 0 0.833 0.833;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_1_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.62;0.66;0.8133333;0.8933333;1\"\n\t\t\t\t\t\tpath=\"M498 300 C498,300 498,300 498,300 C498,300 427,300 427,300 C427,300 427,300 427,300 C427,300 173.5,300 173.5,300 C173.5,300 173.5,300 173.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.22;0.22;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_1_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_1_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"1\"\n\t\t\t\t\t\tkeyTimes=\"0;0.62;0.6200007;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_0_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"1\"\n\t\t\t\t\t\tkeyTimes=\"0;0.8533333;0.8933333;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0.833 0.833;0.333 0 0.833 0.833;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_0_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.8533333;0.8933333;1\"\n\t\t\t\t\t\tpath=\"M498 300 C498,300 498,300 498,300 C498,300 427,300 427,300 C427,300 427,300 427,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_0_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_0_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"1\"\n\t\t\t\t\t\tkeyTimes=\"0;0.8533333;0.853334;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate attributeType=\"XML\" attributeName=\"opacity\" dur=\"5s\" from=\"0\" to=\"1\" xlink:href=\"#time_group\" />\n\t\t\t\t</defs>\n\t\t\t\t<g id=\"_R_G\">\n\t\t\t\t\t<g id=\"_R_G_L_0_G\" transform=\" translate(270, 196) translate(-300, -300)\">\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_12_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_12_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_12_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_11_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_11_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_10_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_10_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_9_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_9_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_8_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_8_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_7_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_7_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_6_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_6_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_5_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_5_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_5_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_4_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_4_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_4_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_3_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_3_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_3_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_2_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_2_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_2_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_1_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_1_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_1_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_0_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_0_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_0_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t</g>\n\t\t\t\t</g>\n\t\t\t\t<g id=\"time_group\" />\n\t\t\t</svg>\n\t\t}\n\t</span>\n</div>\n", styles: ["#overlay{position:fixed;display:block;width:100%;height:100%;inset:0;background-color:#00000080;z-index:9999;cursor:pointer}.loading{height:100vh;width:100%;position:fixed;top:0;left:0;text-align:center;background-color:#d9d9d8f2}.loading img{width:150px}.content-center{left:50%;top:50%;position:absolute;transform:translate(-50%,-50%);width:90%}\n"] }]
624
- }] });
452
+ /**
453
+ * Default configuration values for alerts.
454
+ */
455
+ const ALERT_DEFAULTS = {
456
+ buttonMode: AlertButtonMode.OK_ONLY,
457
+ showCloseButton: true,
458
+ buttons: {
459
+ confirmText: "Ok",
460
+ cancelText: "Cancelar",
461
+ },
462
+ };
463
+ /**
464
+ * Paths to custom SVG icons for alerts.
465
+ * Icons should be placed in: public/assets/icons/alerts/
466
+ */
467
+ const ALERT_ICON_PATHS = {
468
+ error: "/assets/icons/alerts/alert-error.svg",
469
+ // warning: "/assets/icons/alerts/alert-warning.svg",
470
+ // success: "/assets/icons/alerts/alert-success.svg",
471
+ };
472
+ /**
473
+ * InjectionToken to override the default icon CSS class per alert type.
474
+ * Provide a Partial<Record<AlertType, string>> to customize icons project-wide.
475
+ *
476
+ * Example (app.config.ts):
477
+ * { provide: ALERT_ICON_OVERRIDES, useValue: {
478
+ * [AlertType.SUCCESS]: 'icon icon-success',
479
+ * [AlertType.WARNING]: 'icon icon-warning',
480
+ * [AlertType.ERROR]: 'icon icon-alert',
481
+ * }}
482
+ */
483
+ const ALERT_ICON_OVERRIDES = new InjectionToken("ALERT_ICON_OVERRIDES");
484
+ /**
485
+ * Centralized configuration for each alert type using PrimeNG icons.
486
+ */
487
+ const ALERT_TYPE_CONFIG = {
488
+ [AlertType.WARNING]: {
489
+ titleColor: "#c27d00",
490
+ icon: "icon icon-warning",
491
+ iconBackgroundColor: "#fff3cd",
492
+ iconColor: "#c27d00",
493
+ },
494
+ [AlertType.SUCCESS]: {
495
+ titleColor: "#126629",
496
+ icon: "icon icon-success",
497
+ iconBackgroundColor: "#d4edda",
498
+ iconColor: "#126629",
499
+ },
500
+ [AlertType.ERROR]: {
501
+ titleColor: "#960d0d",
502
+ icon: "icon icon-alert",
503
+ iconBackgroundColor: "#f8d7da",
504
+ iconColor: "#960d0d",
505
+ },
506
+ };
625
507
 
626
- class FormatCellPipe {
627
- datePipe = inject(DatePipe);
628
- transform(value, type) {
629
- if (value == null)
630
- return "";
631
- switch (type) {
632
- case "date":
633
- return this.formatDateValue(value, "day");
634
- case "date2":
635
- return this.formatDateValue(value, "month");
636
- case "date3":
637
- return this.formatDateValue(value, "year");
638
- case "time":
639
- return this.formatTime(value);
640
- case "decimal2":
641
- return this.formatDecimal(value, 2);
642
- case "decimal4":
643
- return this.formatDecimal(value, 4);
644
- case "tarifa":
645
- return this.formatTarifa(value);
646
- default:
647
- return value;
648
- }
508
+ class AlertService {
509
+ confirmationService = inject(ConfirmationService);
510
+ iconOverrides = inject(ALERT_ICON_OVERRIDES, { optional: true });
511
+ DIALOG_KEY = "intelica-alert-dialog";
512
+ /**
513
+ * Displays a warning alert with yellow styling.
514
+ * Can be called with (title, subtitle, buttonMode, buttons) OR (title, subtitle, buttons).
515
+ */
516
+ warning(title, subtitle, modeOrButtons, buttons, size) {
517
+ const { buttonMode, buttonConfig } = this.resolveArgs(modeOrButtons, buttons);
518
+ return this.show({
519
+ type: AlertType.WARNING,
520
+ title,
521
+ subtitle,
522
+ buttonMode,
523
+ buttons: buttonConfig,
524
+ size,
525
+ });
649
526
  }
650
- getDateFormat(mode) {
651
- switch (mode) {
652
- case "month":
653
- return "M/yy";
654
- case "year":
655
- return "yy";
656
- default:
657
- return "d/M/yy";
658
- }
527
+ /**
528
+ * Displays a success alert with green styling.
529
+ * Can be called with (title, subtitle, buttonMode, buttons) OR (title, subtitle, buttons).
530
+ */
531
+ success(title, subtitle, modeOrButtons, buttons, size) {
532
+ const { buttonMode, buttonConfig } = this.resolveArgs(modeOrButtons, buttons);
533
+ return this.show({
534
+ type: AlertType.SUCCESS,
535
+ title,
536
+ subtitle,
537
+ buttonMode,
538
+ buttons: buttonConfig,
539
+ size,
540
+ });
659
541
  }
660
- formatDateValue(value, mode) {
661
- const pattern = this.getDateFormat(mode);
662
- if (Array.isArray(value) && value.length === 2) {
663
- return `${this.datePipe.transform(value[0], pattern)} - ${this.datePipe.transform(value[1], pattern)}`;
664
- }
665
- if (value) {
666
- return this.datePipe.transform(value, pattern) || "";
667
- }
668
- return "";
542
+ /**
543
+ * Displays an error alert with red styling.
544
+ * Can be called with (title, subtitle, buttonMode, buttons) OR (title, subtitle, buttons).
545
+ */
546
+ error(title, subtitle, modeOrButtons, buttons, size) {
547
+ const { buttonMode, buttonConfig } = this.resolveArgs(modeOrButtons, buttons);
548
+ return this.show({
549
+ type: AlertType.ERROR,
550
+ title,
551
+ subtitle,
552
+ buttonMode,
553
+ buttons: buttonConfig,
554
+ size,
555
+ });
556
+ }
557
+ /**
558
+ * Helper to resolve flexible arguments.
559
+ * If 3rd arg is object (not string enum), treat it as buttons config and default mode to OK_ONLY.
560
+ * If 3rd arg is string (enum), treat it as mode and 4th as buttons config.
561
+ */
562
+ resolveArgs(modeOrButtons, buttons) {
563
+ if (modeOrButtons && typeof modeOrButtons === "object") {
564
+ // USAGE: success(title, subtitle, { confirmText: 'Ok', cancelText: 'Cancel' })
565
+ // Auto-detect mode based on presence of cancelText
566
+ const hasCancel = !!modeOrButtons.cancelText;
567
+ return {
568
+ buttonMode: hasCancel ? AlertButtonMode.CONFIRM_CANCEL : AlertButtonMode.OK_ONLY,
569
+ buttonConfig: modeOrButtons,
570
+ };
571
+ }
572
+ // USAGE: success(title, subtitle, AlertButtonMode.CONFIRM_CANCEL, { ... })
573
+ // OR default
574
+ return {
575
+ buttonMode: modeOrButtons ?? AlertButtonMode.OK_ONLY,
576
+ buttonConfig: buttons,
577
+ };
578
+ }
579
+ message(message, type = AlertType.WARNING) {
580
+ return this.show({
581
+ type,
582
+ title: message,
583
+ buttonMode: AlertButtonMode.OK_ONLY,
584
+ });
585
+ }
586
+ confirm(title, subtitle, confirmText = "Confirmar", cancelText = "Cancelar", type = AlertType.WARNING, size) {
587
+ return this.show({
588
+ type,
589
+ title,
590
+ subtitle,
591
+ buttonMode: AlertButtonMode.CONFIRM_CANCEL,
592
+ buttons: { confirmText, cancelText },
593
+ size,
594
+ });
595
+ }
596
+ showHtml(title, htmlContent, type = AlertType.WARNING, buttonMode = AlertButtonMode.OK_ONLY) {
597
+ return this.show({
598
+ type,
599
+ title,
600
+ htmlContent,
601
+ buttonMode,
602
+ });
603
+ }
604
+ showWithStyles(config, styles) {
605
+ return this.show({
606
+ ...config,
607
+ styles,
608
+ });
609
+ }
610
+ show(config) {
611
+ return new Promise(resolve => {
612
+ const mergedConfig = this.mergeWithDefaults(config);
613
+ const typeConfig = ALERT_TYPE_CONFIG[mergedConfig.type];
614
+ // Prepare data object for the view
615
+ const data = {
616
+ config: mergedConfig,
617
+ typeConfig: typeConfig,
618
+ iconClass: this.getIconClass(mergedConfig, typeConfig),
619
+ iconBackgroundColor: this.getIconBackgroundColor(mergedConfig, typeConfig),
620
+ iconColor: this.getIconColor(mergedConfig, typeConfig),
621
+ titleColor: this.getTitleColor(mergedConfig, typeConfig),
622
+ showCancelButton: this.showCancelButton(mergedConfig),
623
+ confirmText: this.getConfirmText(mergedConfig),
624
+ cancelText: this.getCancelText(mergedConfig),
625
+ confirmButtonStyle: this.getConfirmButtonStyle(mergedConfig),
626
+ cancelButtonStyle: this.getCancelButtonStyle(mergedConfig),
627
+ // Add manual dismiss handler to data so template can call it if needed,
628
+ // though explicit close button in template can just use reject or logic.
629
+ // For custom headers/X buttons usually we initiate close.
630
+ };
631
+ const confirmation = {
632
+ key: this.DIALOG_KEY,
633
+ message: mergedConfig.subtitle,
634
+ header: mergedConfig.title,
635
+ icon: data.iconClass,
636
+ dismissableMask: true,
637
+ closeOnEscape: true,
638
+ accept: () => {
639
+ resolve({
640
+ isConfirmed: true,
641
+ isCancelled: false,
642
+ isDismissed: false,
643
+ });
644
+ },
645
+ reject: (type) => {
646
+ resolve({
647
+ isConfirmed: false,
648
+ isCancelled: true,
649
+ isDismissed: false,
650
+ });
651
+ },
652
+ };
653
+ // Cast to any to allow 'data' property if it doesn't exist on type
654
+ confirmation.data = data;
655
+ this.confirmationService.confirm(confirmation);
656
+ });
657
+ }
658
+ // Private Helper Methods (Presentation Logic)
659
+ mergeWithDefaults(config) {
660
+ return {
661
+ ...ALERT_DEFAULTS,
662
+ ...config,
663
+ buttons: {
664
+ ...ALERT_DEFAULTS.buttons,
665
+ ...config.buttons,
666
+ },
667
+ };
668
+ }
669
+ getIconClass(config, typeConfig) {
670
+ if (config?.customIcon) {
671
+ return config.customIcon;
672
+ }
673
+ if (config?.type && this.iconOverrides?.[config.type]) {
674
+ return this.iconOverrides[config.type];
675
+ }
676
+ return typeConfig?.icon ?? "pi pi-info-circle";
677
+ }
678
+ getIconBackgroundColor(config, typeConfig) {
679
+ if (config?.styles?.iconBackgroundColor) {
680
+ return config.styles.iconBackgroundColor;
681
+ }
682
+ return typeConfig?.iconBackgroundColor ?? "#e3f2fd";
683
+ }
684
+ getIconColor(config, typeConfig) {
685
+ if (config?.styles?.iconColor) {
686
+ return config.styles.iconColor;
687
+ }
688
+ return typeConfig?.iconColor ?? "#1976d2";
689
+ }
690
+ getTitleColor(config, typeConfig) {
691
+ if (config?.styles?.titleColor) {
692
+ return config.styles.titleColor;
693
+ }
694
+ return typeConfig?.titleColor ?? "#333";
695
+ }
696
+ showCancelButton(config) {
697
+ return config?.buttonMode === AlertButtonMode.CONFIRM_CANCEL;
698
+ }
699
+ getConfirmText(config) {
700
+ return config?.buttons?.confirmText ?? "Ok";
701
+ }
702
+ getCancelText(config) {
703
+ return config?.buttons?.cancelText ?? "Cancelar";
704
+ }
705
+ getConfirmButtonStyle(config) {
706
+ const styles = config?.styles;
707
+ const baseStyle = {
708
+ minWidth: "120px",
709
+ };
710
+ if (styles?.confirmButtonColor) {
711
+ baseStyle["backgroundColor"] = styles.confirmButtonColor;
712
+ baseStyle["borderColor"] = styles.confirmButtonColor;
713
+ }
714
+ if (styles?.confirmButtonTextColor) {
715
+ baseStyle["color"] = styles.confirmButtonTextColor;
716
+ }
717
+ return baseStyle;
718
+ }
719
+ getCancelButtonStyle(config) {
720
+ const styles = config?.styles;
721
+ const baseStyle = {
722
+ minWidth: "120px",
723
+ };
724
+ if (styles?.cancelButtonColor) {
725
+ baseStyle["backgroundColor"] = styles.cancelButtonColor;
726
+ baseStyle["borderColor"] = styles.cancelButtonColor;
727
+ }
728
+ if (styles?.cancelButtonTextColor) {
729
+ baseStyle["color"] = styles.cancelButtonTextColor;
730
+ }
731
+ return baseStyle;
732
+ }
733
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: AlertService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
734
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: AlertService, providedIn: "root" });
735
+ }
736
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: AlertService, decorators: [{
737
+ type: Injectable,
738
+ args: [{
739
+ providedIn: "root",
740
+ }]
741
+ }] });
742
+
743
+ const ErrorInterceptor = (req, next) => {
744
+ const skip = req.headers.has("Skip-Interceptor");
745
+ if (skip) {
746
+ const cleanReq = req.clone({
747
+ headers: req.headers.delete("Skip-Interceptor"),
748
+ });
749
+ return next(cleanReq);
750
+ }
751
+ const alertService = inject(AlertService);
752
+ const commonFeatureFlagService = inject(GlobalFeatureFlagService);
753
+ const spinnerService = inject(SpinnerService);
754
+ const closeSessionService = inject(CloseSessionService);
755
+ const configService = inject(ConfigService);
756
+ const HeaderSettings = {};
757
+ const authenticationClientID = configService.environment?.clientID ?? "";
758
+ const language = getCookie("language") ?? "EN";
759
+ if (!req.url.includes("environment.json")) {
760
+ HeaderSettings["Accept"] = "application/json";
761
+ HeaderSettings["Content-Type"] = "application/json";
762
+ HeaderSettings["Authorization"] = getCookie("token") ?? "";
763
+ HeaderSettings["RefreshToken"] = getCookie("refreshToken") ?? "";
764
+ HeaderSettings["ClientID"] = configService.environment?.clientID ?? "";
765
+ HeaderSettings["PageRoot"] = commonFeatureFlagService.GetPageRoot();
766
+ HeaderSettings["LanguageCode"] = language;
767
+ HeaderSettings["Environment"] = configService.environment?.environment ?? "";
768
+ HeaderSettings["Access"] = authenticationClientID == "" ? "" : (getCookie(authenticationClientID) ?? "");
769
+ }
770
+ let _request = req.clone({ headers: new HttpHeaders(HeaderSettings) });
771
+ return next(_request).pipe(catchError(handleErrorResponse));
772
+ function handleErrorResponse(error) {
773
+ console.log(error, "error", error.status);
774
+ spinnerService.hide();
775
+ if (error.status == 503 || error.status == 0) {
776
+ if (language == "ES")
777
+ alertService.warning("Alerta", "El servicio que se necesita consumir no esta activo o no responde.", AlertButtonMode.OK_ONLY);
778
+ else
779
+ alertService.warning("Alert", "The service you need is not active or is not responding..", AlertButtonMode.OK_ONLY);
780
+ }
781
+ else if (error.status == 405) {
782
+ if (language == "ES")
783
+ alertService.warning("Alerta", "Los parametros enviados al servicio no coinciden.", AlertButtonMode.OK_ONLY);
784
+ else
785
+ alertService.warning("Alert", "The parameters sent to the service do not match.", AlertButtonMode.OK_ONLY);
786
+ }
787
+ else if (error.status == 404) {
788
+ if (language == "ES")
789
+ alertService.warning("Alerta", "Recurso no encontrado.", AlertButtonMode.OK_ONLY);
790
+ else
791
+ alertService.warning("Alert", "Resource not found.", AlertButtonMode.OK_ONLY);
792
+ }
793
+ else if (error.status == 401) {
794
+ //Codigo reservado para vencimiento de refreshtoken
795
+ closeSessionService.closeSession();
796
+ }
797
+ else if (error.status == 403) {
798
+ //Codigo reservado para acceso denegado
799
+ window.location.href = window.location.origin;
800
+ }
801
+ else
802
+ alertService.error("Error", error.error.Message, AlertButtonMode.OK_ONLY);
803
+ return throwError(() => {
804
+ (error.error, error.message);
805
+ });
806
+ }
807
+ };
808
+
809
+ //Recupera el token de la respuesta y lo guarda en una cookie si no es localhost
810
+ const ResponseHeadersInterceptor = (req, next) => {
811
+ return next(req).pipe(tap(event => {
812
+ if (event instanceof HttpResponse) {
813
+ const Domain = window.location.hostname.split(".").slice(-2).join(".");
814
+ const Secure = !Domain.includes("localhost");
815
+ if (!Secure) {
816
+ const headers = event.headers;
817
+ const newToken = headers.get("TokenNew");
818
+ if (newToken != null && newToken != "")
819
+ setCookie("token", newToken, CookieAttributesGeneral);
820
+ }
821
+ }
822
+ }));
823
+ };
824
+
825
+ var TableSortOrder;
826
+ (function (TableSortOrder) {
827
+ TableSortOrder[TableSortOrder["Asc"] = 1] = "Asc";
828
+ TableSortOrder[TableSortOrder["Desc"] = -1] = "Desc";
829
+ })(TableSortOrder || (TableSortOrder = {}));
830
+
831
+ //Este guard propaga `pageRoot` del padre al hijo en la jerarquía de rutas
832
+ class PageRootChildGuard {
833
+ canActivateChild(child, parent) {
834
+ const parentData = child.parent?.data;
835
+ if (parentData?.["pageRoot"]) {
836
+ child.data = {
837
+ ...child.data,
838
+ pageRoot: parentData["pageRoot"],
839
+ };
840
+ }
841
+ return true;
842
+ }
843
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: PageRootChildGuard, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
844
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: PageRootChildGuard, providedIn: "root" });
845
+ }
846
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: PageRootChildGuard, decorators: [{
847
+ type: Injectable,
848
+ args: [{ providedIn: "root" }]
849
+ }] });
850
+
851
+ class SpinnerComponent {
852
+ spinerService = inject(SpinnerService);
853
+ isLoading = this.spinerService.isLoading;
854
+ LoadingLogo = `${window.location.origin}/assets/images/loading_intelica.gif`;
855
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: SpinnerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
856
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.23", type: SpinnerComponent, isStandalone: true, selector: "app-spinner", ngImport: i0, template: "<div class=\"ptLoading\">\n\t<span class=\"ptLoading__svg\">\n\t\t@if (isLoading()) {\n\t\t\t<svg\n\t\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\t\txmlns:xlink=\"http://www.w3.org/1999/xlink\"\n\t\t\t\tpreserveAspectRatio=\"xMidYMid meet\"\n\t\t\t\twidth=\"540\"\n\t\t\t\theight=\"300\"\n\t\t\t\tviewBox=\"0 0 540 300\"\n\t\t\t\tstyle=\"width: 100%; height: 100%\"\n\t\t\t>\n\t\t\t\t<defs>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_12_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"1\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.04;1\"\n\t\t\t\t\t\tvalues=\"1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_12_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.04;1\"\n\t\t\t\t\t\tpath=\"M173.5 300 C173.5,300 81.5,300 81.5,300 C81.5,300 81.5,300 81.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_12_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_12_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"1\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2333333;0.2333333;1\"\n\t\t\t\t\t\tvalues=\"1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_11_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.0733333;0.1066667;0.1333333;0.16;0.1866667;0.2;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,172 300,172 C300,172 300,347 300,347 C300,347 300,287 300,287 C300,287 300,306.5 300,306.5 C300,306.5 300,301.5 300,301.5 C300,301.5 300,300 300,300 C300,300 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0.33;0.78;0.93;0.98;1;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1;0.167 0.167 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_11_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_11_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_11_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"1\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2;0.2;1\"\n\t\t\t\t\t\tvalues=\"1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_10_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2;0.2733333;0.3066667;0.3333333;0.36;0.3866667;0.4;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,300 300,300 C300,300 300,172 300,172 C300,172 300,347 300,347 C300,347 300,287 300,287 C300,287 300,306.5 300,306.5 C300,306.5 300,301.5 300,301.5 C300,301.5 300,300 300,300 C300,300 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.33;0.78;0.93;0.98;1;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1;0.333 0 0 1;0.167 0.167 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_10_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_10_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_10_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2;0.2000007;0.4;0.4;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_9_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.4;0.4733333;0.5066667;0.5333333;0.56;0.5866667;0.6;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,300 300,300 C300,300 300,172 300,172 C300,172 300,347 300,347 C300,347 300,287 300,287 C300,287 300,306.5 300,306.5 C300,306.5 300,301.5 300,301.5 C300,301.5 300,300 300,300 C300,300 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.33;0.78;0.93;0.98;1;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1;0.333 0 0 1;0.167 0.167 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_9_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_9_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_9_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.4;0.4000007;0.6;0.6;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_8_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.6;0.6733333;0.7066667;0.7333333;0.76;0.7866667;0.8;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,300 300,300 C300,300 300,172 300,172 C300,172 300,347 300,347 C300,347 300,287 300,287 C300,287 300,306.5 300,306.5 C300,306.5 300,301.5 300,301.5 C300,301.5 300,300 300,300 C300,300 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.33;0.78;0.93;0.98;1;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1;0.333 0 0 1;0.167 0.167 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_8_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_8_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_8_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.6;0.6000007;0.8;0.8;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_7_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.8;0.8733333;0.9066667;0.9333333;0.96;0.9866667;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,300 300,300 C300,300 300,172 300,172 C300,172 300,347 300,347 C300,347 300,287 300,287 C300,287 300,306.5 300,306.5 C300,306.5 300,301.5 300,301.5 C300,301.5 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.33;0.78;0.93;0.98;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1;0.333 0 0 1;0.167 0.167 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_7_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_7_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_7_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"1\"\n\t\t\t\t\t\tkeyTimes=\"0;0.8;0.8000007;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_6_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_6_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_6_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_6_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_5_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"1\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2333333;0.2733333;1\"\n\t\t\t\t\t\tvalues=\"1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_5_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.08;0.2333333;0.2733333;1\"\n\t\t\t\t\t\tpath=\"M427 300 C427,300 173.5,300 173.5,300 C173.5,300 173.5,300 173.5,300 C173.5,300 81.5,300 81.5,300 C81.5,300 81.5,300 81.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0.73;0.73;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_5_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_5_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"1\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.28;0.28;1\"\n\t\t\t\t\t\tvalues=\"1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_4_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.04;0.08;0.4666667;0.5066667;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0.833 0.833;0.333 0 0.833 0.833;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_4_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.04;0.08;0.2333333;0.3133333;0.4666667;0.5066667;1\"\n\t\t\t\t\t\tpath=\"M498 300 C498,300 498,300 498,300 C498,300 427,300 427,300 C427,300 427,300 427,300 C427,300 173.5,300 173.5,300 C173.5,300 173.5,300 173.5,300 C173.5,300 81.5,300 81.5,300 C81.5,300 81.5,300 81.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.17;0.17;0.78;0.78;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_4_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_4_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.04;0.0400007;0.5133333;0.5133333;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_3_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2333333;0.2733333;0.66;0.7;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0.833 0.833;0.333 0 0.833 0.833;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_3_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2333333;0.2733333;0.4266667;0.5066667;0.66;0.7;1\"\n\t\t\t\t\t\tpath=\"M498 300 C498,300 498,300 498,300 C498,300 427,300 427,300 C427,300 427,300 427,300 C427,300 173.5,300 173.5,300 C173.5,300 173.5,300 173.5,300 C173.5,300 81.5,300 81.5,300 C81.5,300 81.5,300 81.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.17;0.17;0.78;0.78;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_3_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_3_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2333333;0.233334;0.7066667;0.7066667;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_2_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.4266667;0.4666667;0.8533333;0.8933333;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0.833 0.833;0.333 0 0.833 0.833;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_2_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.4266667;0.4666667;0.62;0.7;0.8533333;0.8933333;1\"\n\t\t\t\t\t\tpath=\"M498 300 C498,300 498,300 498,300 C498,300 427,300 427,300 C427,300 427,300 427,300 C427,300 173.5,300 173.5,300 C173.5,300 173.5,300 173.5,300 C173.5,300 81.5,300 81.5,300 C81.5,300 81.5,300 81.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.17;0.17;0.78;0.78;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_2_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_2_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.4266667;0.4266673;0.9;0.9;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_1_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"1\"\n\t\t\t\t\t\tkeyTimes=\"0;0.62;0.66;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0.833 0.833;0.333 0 0.833 0.833;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_1_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.62;0.66;0.8133333;0.8933333;1\"\n\t\t\t\t\t\tpath=\"M498 300 C498,300 498,300 498,300 C498,300 427,300 427,300 C427,300 427,300 427,300 C427,300 173.5,300 173.5,300 C173.5,300 173.5,300 173.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.22;0.22;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_1_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_1_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"1\"\n\t\t\t\t\t\tkeyTimes=\"0;0.62;0.6200007;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_0_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"1\"\n\t\t\t\t\t\tkeyTimes=\"0;0.8533333;0.8933333;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0.833 0.833;0.333 0 0.833 0.833;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_0_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.8533333;0.8933333;1\"\n\t\t\t\t\t\tpath=\"M498 300 C498,300 498,300 498,300 C498,300 427,300 427,300 C427,300 427,300 427,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_0_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_0_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"1\"\n\t\t\t\t\t\tkeyTimes=\"0;0.8533333;0.853334;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate attributeType=\"XML\" attributeName=\"opacity\" dur=\"5s\" from=\"0\" to=\"1\" xlink:href=\"#time_group\" />\n\t\t\t\t</defs>\n\t\t\t\t<g id=\"_R_G\">\n\t\t\t\t\t<g id=\"_R_G_L_0_G\" transform=\" translate(270, 196) translate(-300, -300)\">\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_12_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_12_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_12_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_11_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_11_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_10_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_10_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_9_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_9_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_8_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_8_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_7_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_7_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_6_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_6_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_5_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_5_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_5_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_4_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_4_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_4_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_3_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_3_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_3_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_2_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_2_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_2_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_1_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_1_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_1_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_0_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_0_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_0_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t</g>\n\t\t\t\t</g>\n\t\t\t\t<g id=\"time_group\" />\n\t\t\t</svg>\n\t\t}\n\t</span>\n</div>\n", styles: ["#overlay{position:fixed;display:block;width:100%;height:100%;inset:0;background-color:#00000080;z-index:9999;cursor:pointer}.loading{height:100vh;width:100%;position:fixed;top:0;left:0;text-align:center;background-color:#d9d9d8f2}.loading img{width:150px}.content-center{left:50%;top:50%;position:absolute;transform:translate(-50%,-50%);width:90%}\n"] });
857
+ }
858
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: SpinnerComponent, decorators: [{
859
+ type: Component,
860
+ args: [{ selector: "app-spinner", imports: [], template: "<div class=\"ptLoading\">\n\t<span class=\"ptLoading__svg\">\n\t\t@if (isLoading()) {\n\t\t\t<svg\n\t\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\t\txmlns:xlink=\"http://www.w3.org/1999/xlink\"\n\t\t\t\tpreserveAspectRatio=\"xMidYMid meet\"\n\t\t\t\twidth=\"540\"\n\t\t\t\theight=\"300\"\n\t\t\t\tviewBox=\"0 0 540 300\"\n\t\t\t\tstyle=\"width: 100%; height: 100%\"\n\t\t\t>\n\t\t\t\t<defs>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_12_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"1\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.04;1\"\n\t\t\t\t\t\tvalues=\"1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_12_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.04;1\"\n\t\t\t\t\t\tpath=\"M173.5 300 C173.5,300 81.5,300 81.5,300 C81.5,300 81.5,300 81.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_12_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_12_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"1\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2333333;0.2333333;1\"\n\t\t\t\t\t\tvalues=\"1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_11_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.0733333;0.1066667;0.1333333;0.16;0.1866667;0.2;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,172 300,172 C300,172 300,347 300,347 C300,347 300,287 300,287 C300,287 300,306.5 300,306.5 C300,306.5 300,301.5 300,301.5 C300,301.5 300,300 300,300 C300,300 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0.33;0.78;0.93;0.98;1;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1;0.167 0.167 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_11_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_11_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_11_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"1\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2;0.2;1\"\n\t\t\t\t\t\tvalues=\"1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_10_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2;0.2733333;0.3066667;0.3333333;0.36;0.3866667;0.4;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,300 300,300 C300,300 300,172 300,172 C300,172 300,347 300,347 C300,347 300,287 300,287 C300,287 300,306.5 300,306.5 C300,306.5 300,301.5 300,301.5 C300,301.5 300,300 300,300 C300,300 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.33;0.78;0.93;0.98;1;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1;0.333 0 0 1;0.167 0.167 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_10_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_10_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_10_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2;0.2000007;0.4;0.4;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_9_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.4;0.4733333;0.5066667;0.5333333;0.56;0.5866667;0.6;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,300 300,300 C300,300 300,172 300,172 C300,172 300,347 300,347 C300,347 300,287 300,287 C300,287 300,306.5 300,306.5 C300,306.5 300,301.5 300,301.5 C300,301.5 300,300 300,300 C300,300 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.33;0.78;0.93;0.98;1;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1;0.333 0 0 1;0.167 0.167 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_9_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_9_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_9_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.4;0.4000007;0.6;0.6;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_8_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.6;0.6733333;0.7066667;0.7333333;0.76;0.7866667;0.8;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,300 300,300 C300,300 300,172 300,172 C300,172 300,347 300,347 C300,347 300,287 300,287 C300,287 300,306.5 300,306.5 C300,306.5 300,301.5 300,301.5 C300,301.5 300,300 300,300 C300,300 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.33;0.78;0.93;0.98;1;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1;0.333 0 0 1;0.167 0.167 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_8_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_8_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_8_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.6;0.6000007;0.8;0.8;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_7_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.8;0.8733333;0.9066667;0.9333333;0.96;0.9866667;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,300 300,300 C300,300 300,172 300,172 C300,172 300,347 300,347 C300,347 300,287 300,287 C300,287 300,306.5 300,306.5 C300,306.5 300,301.5 300,301.5 C300,301.5 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.33;0.78;0.93;0.98;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1;0.333 0 0 1;0.167 0.167 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1;0.333 0 0.667 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_7_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_7_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_7_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"1\"\n\t\t\t\t\t\tkeyTimes=\"0;0.8;0.8000007;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_6_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tpath=\"M300 300 C300,300 300,300 300,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_6_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tto=\"3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"3.3000000000000003 3.3000000000000003;3.3000000000000003 3.3000000000000003\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_6_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"-14.5 -14.5\"\n\t\t\t\t\t\tto=\"-14.5 -14.5\"\n\t\t\t\t\t\ttype=\"translate\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"-14.5 -14.5;-14.5 -14.5\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_6_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_5_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"1\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2333333;0.2733333;1\"\n\t\t\t\t\t\tvalues=\"1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_5_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.08;0.2333333;0.2733333;1\"\n\t\t\t\t\t\tpath=\"M427 300 C427,300 173.5,300 173.5,300 C173.5,300 173.5,300 173.5,300 C173.5,300 81.5,300 81.5,300 C81.5,300 81.5,300 81.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0.73;0.73;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_5_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_5_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"1\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.28;0.28;1\"\n\t\t\t\t\t\tvalues=\"1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_4_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.04;0.08;0.4666667;0.5066667;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0.833 0.833;0.333 0 0.833 0.833;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_4_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.04;0.08;0.2333333;0.3133333;0.4666667;0.5066667;1\"\n\t\t\t\t\t\tpath=\"M498 300 C498,300 498,300 498,300 C498,300 427,300 427,300 C427,300 427,300 427,300 C427,300 173.5,300 173.5,300 C173.5,300 173.5,300 173.5,300 C173.5,300 81.5,300 81.5,300 C81.5,300 81.5,300 81.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.17;0.17;0.78;0.78;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_4_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_4_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.04;0.0400007;0.5133333;0.5133333;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_3_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2333333;0.2733333;0.66;0.7;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0.833 0.833;0.333 0 0.833 0.833;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_3_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2333333;0.2733333;0.4266667;0.5066667;0.66;0.7;1\"\n\t\t\t\t\t\tpath=\"M498 300 C498,300 498,300 498,300 C498,300 427,300 427,300 C427,300 427,300 427,300 C427,300 173.5,300 173.5,300 C173.5,300 173.5,300 173.5,300 C173.5,300 81.5,300 81.5,300 C81.5,300 81.5,300 81.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.17;0.17;0.78;0.78;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_3_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_3_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.2333333;0.233334;0.7066667;0.7066667;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_2_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.4266667;0.4666667;0.8533333;0.8933333;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0.833 0.833;0.333 0 0.833 0.833;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_2_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.4266667;0.4666667;0.62;0.7;0.8533333;0.8933333;1\"\n\t\t\t\t\t\tpath=\"M498 300 C498,300 498,300 498,300 C498,300 427,300 427,300 C427,300 427,300 427,300 C427,300 173.5,300 173.5,300 C173.5,300 173.5,300 173.5,300 C173.5,300 81.5,300 81.5,300 C81.5,300 81.5,300 81.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.17;0.17;0.78;0.78;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_2_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_2_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"0\"\n\t\t\t\t\t\tkeyTimes=\"0;0.4266667;0.4266673;0.9;0.9;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1;0;0\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_1_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"1\"\n\t\t\t\t\t\tkeyTimes=\"0;0.62;0.66;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0.833 0.833;0.333 0 0.833 0.833;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_1_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.62;0.66;0.8133333;0.8933333;1\"\n\t\t\t\t\t\tpath=\"M498 300 C498,300 498,300 498,300 C498,300 427,300 427,300 C427,300 427,300 427,300 C427,300 173.5,300 173.5,300 C173.5,300 173.5,300 173.5,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;0.22;0.22;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0.167 0.167 0.833 0.833;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_1_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_1_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"1\"\n\t\t\t\t\t\tkeyTimes=\"0;0.62;0.6200007;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_0_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"1\"\n\t\t\t\t\t\tkeyTimes=\"0;0.8533333;0.8933333;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.333 0 0.833 0.833;0.333 0 0.833 0.833;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateMotion\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_0_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tkeyTimes=\"0;0.8533333;0.8933333;1\"\n\t\t\t\t\t\tpath=\"M498 300 C498,300 498,300 498,300 C498,300 427,300 427,300 C427,300 427,300 427,300 \"\n\t\t\t\t\t\tkeyPoints=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0.167 0.167 0.667 1;0.167 0.167 0.667 1;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animateTransform\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_0_G\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"transform\"\n\t\t\t\t\t\tfrom=\"0.89062 0.89062\"\n\t\t\t\t\t\tto=\"0.89062 0.89062\"\n\t\t\t\t\t\ttype=\"scale\"\n\t\t\t\t\t\tadditive=\"sum\"\n\t\t\t\t\t\tkeyTimes=\"0;1\"\n\t\t\t\t\t\tvalues=\"0.89062 0.89062;0.89062 0.89062\"\n\t\t\t\t\t\tkeySplines=\"0 0 1 1\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate\n\t\t\t\t\t\trepeatCount=\"indefinite\"\n\t\t\t\t\t\tdur=\"5s\"\n\t\t\t\t\t\tbegin=\"0s\"\n\t\t\t\t\t\txlink:href=\"#_R_G_L_0_G_L_0_G_M\"\n\t\t\t\t\t\tfill=\"freeze\"\n\t\t\t\t\t\tattributeName=\"opacity\"\n\t\t\t\t\t\tfrom=\"0\"\n\t\t\t\t\t\tto=\"1\"\n\t\t\t\t\t\tkeyTimes=\"0;0.8533333;0.853334;1\"\n\t\t\t\t\t\tvalues=\"0;0;1;1\"\n\t\t\t\t\t\tkeySplines=\"0 0 0 0;0 0 0 0;0 0 0 0\"\n\t\t\t\t\t\tcalcMode=\"spline\"\n\t\t\t\t\t/>\n\t\t\t\t\t<animate attributeType=\"XML\" attributeName=\"opacity\" dur=\"5s\" from=\"0\" to=\"1\" xlink:href=\"#time_group\" />\n\t\t\t\t</defs>\n\t\t\t\t<g id=\"_R_G\">\n\t\t\t\t\t<g id=\"_R_G_L_0_G\" transform=\" translate(270, 196) translate(-300, -300)\">\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_12_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_12_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_12_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_11_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_11_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_11_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_10_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_10_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_10_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_9_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_9_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_9_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_8_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_8_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_8_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_7_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_7_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_7_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_6_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_6_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M3.63 23.8 C3.63,23.8 8.05,27.83 24.33,20.28 C24.33,20.28 26.42,16.28 26.42,16.28 C26.42,16.28 27,14.81 27,14.81 C27,14.81 16.7,22.26 5.84,19.04 C2.26,17.97 3.63,23.8 3.63,23.8z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_1_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M9.41 27.76 C9.41,27.76 14.46,29.73 21.79,25.65 C21.79,25.65 23.71,24.43 23.71,24.43 C23.71,24.43 24.71,23.23 24.71,23.23 C24.71,23.23 17.24,26.84 10.74,24.91 C8.59,24.28 9.41,27.76 9.41,27.76z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_2_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0.09 15.87 C0.09,15.87 11.11,22.24 26.48,10.22 C26.48,10.22 24.78,5.86 24.78,5.86 C24.78,5.86 15.46,14.09 3.98,10.46 C0.1,9.23 0.09,15.87 0.09,15.87z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_3_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M2.09 6.86 C2.09,6.86 10.72,10.88 22.35,3.43 C22.35,3.43 18.54,1.51 18.54,1.51 C18.54,1.51 15.04,5.07 5.34,3.53 C5.34,3.53 2.09,6.86 2.09,6.86z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_4_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M23.39 3.26 C22.15,2.23 20.73,1.42 19.19,0.86 C16.82,2.31 13.88,3.87 10.5,5.21 C6.5,6.81 3.12,8.7 0.55,10.37 C0.19,11.62 0,12.94 0,14.31 C0,14.84 0.03,15.36 0.09,15.87 C2.76,13.92 7.09,11.14 12.63,8.94 C17.07,7.17 20.74,5.04 23.39,3.26 C23.39,3.26 23.39,3.26 23.39,3.26z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_5_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M16.12 0.11 C15.52,0.04 14.92,0 14.31,0 C9.14,0 4.61,2.74 2.09,6.85 C4.2,5.65 6.65,4.41 9.41,3.31 C11.9,2.32 14.15,1.21 16.12,0.11z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_6_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.01 18.42 C28.4,17.12 28.61,15.74 28.61,14.31 C28.61,13.97 28.6,13.63 28.58,13.3 C25.91,15.1 22.2,17.28 17.68,19.08 C12.45,21.16 8.31,23.74 5.61,25.67 C6.79,26.57 8.12,27.3 9.56,27.81 C11.97,26.32 14.96,24.71 18.43,23.33 C22.25,21.82 25.49,20.03 28.01,18.42z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_7_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M28.08 10.43 C27.52,8.42 26.53,6.6 25.22,5.06 C22.53,6.9 18.67,9.21 13.93,11.1 C7.84,13.52 3.22,16.63 0.65,18.58 C1.26,20.55 2.29,22.33 3.63,23.83 C6.31,21.88 10.6,19.16 16.06,16.98 C21.25,14.92 25.38,12.35 28.08,10.43 C28.08,10.43 28.08,10.43 28.08,10.43z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_6_G_D_8_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M19.61 25.03 C16.91,26.1 14.51,27.31 12.44,28.49 C13.05,28.57 13.67,28.61 14.31,28.61 C19.5,28.61 24.05,25.84 26.56,21.7 C24.54,22.84 22.21,24 19.61,25.03 C19.61,25.03 19.61,25.03 19.61,25.03z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_5_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_5_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_5_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_4_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_4_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_4_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_3_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_3_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_3_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_2_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_2_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_2_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_1_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_1_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_1_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#ff860d\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_0_G_M\">\n\t\t\t\t\t\t\t<g id=\"_R_G_L_0_G_L_0_G\">\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tid=\"_R_G_L_0_G_L_0_G_D_0_P_0\"\n\t\t\t\t\t\t\t\t\tfill=\"#21409a\"\n\t\t\t\t\t\t\t\t\tfill-opacity=\"1\"\n\t\t\t\t\t\t\t\t\tfill-rule=\"nonzero\"\n\t\t\t\t\t\t\t\t\td=\" M0 -30 C16.56,-30 30,-16.56 30,0 C30,16.56 16.56,30 0,30 C-16.56,30 -30,16.56 -30,0 C-30,-16.56 -16.56,-30 0,-30z \"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t</g>\n\t\t\t\t</g>\n\t\t\t\t<g id=\"time_group\" />\n\t\t\t</svg>\n\t\t}\n\t</span>\n</div>\n", styles: ["#overlay{position:fixed;display:block;width:100%;height:100%;inset:0;background-color:#00000080;z-index:9999;cursor:pointer}.loading{height:100vh;width:100%;position:fixed;top:0;left:0;text-align:center;background-color:#d9d9d8f2}.loading img{width:150px}.content-center{left:50%;top:50%;position:absolute;transform:translate(-50%,-50%);width:90%}\n"] }]
861
+ }] });
862
+
863
+ class FormatCellPipe {
864
+ datePipe = inject(DatePipe);
865
+ transform(value, type) {
866
+ if (value == null)
867
+ return "";
868
+ switch (type) {
869
+ case "date":
870
+ return this.formatDateValue(value, "day");
871
+ case "date2":
872
+ return this.formatDateValue(value, "month");
873
+ case "date3":
874
+ return this.formatDateValue(value, "year");
875
+ case "time":
876
+ return this.formatTime(value);
877
+ case "decimal2":
878
+ return this.formatDecimal(value, 2);
879
+ case "decimal4":
880
+ return this.formatDecimal(value, 4);
881
+ case "tarifa":
882
+ return this.formatTarifa(value);
883
+ default:
884
+ return value;
885
+ }
886
+ }
887
+ getDateFormat(mode) {
888
+ switch (mode) {
889
+ case "month":
890
+ return "M/yy";
891
+ case "year":
892
+ return "yy";
893
+ default:
894
+ return "d/M/yy";
895
+ }
896
+ }
897
+ formatDateValue(value, mode) {
898
+ const pattern = this.getDateFormat(mode);
899
+ if (Array.isArray(value) && value.length === 2) {
900
+ return `${this.datePipe.transform(value[0], pattern)} - ${this.datePipe.transform(value[1], pattern)}`;
901
+ }
902
+ if (value) {
903
+ return this.datePipe.transform(value, pattern) || "";
904
+ }
905
+ return "";
669
906
  }
670
907
  formatTime(value) {
671
908
  const date = new Date(value);
@@ -5688,6 +5925,7 @@ class TableFetchComponent {
5688
5925
  this.SortField = field;
5689
5926
  this.SortOrder = 1;
5690
5927
  }
5928
+ this.CurrentPage = 1;
5691
5929
  this.ExecuteSearch({});
5692
5930
  }
5693
5931
  UpdatePages() {
@@ -5745,6 +5983,8 @@ class TableFetchComponent {
5745
5983
  }
5746
5984
  ClearSearch() {
5747
5985
  this.SearchInput = "";
5986
+ this.CurrentPage = 1;
5987
+ this.ExecuteSearch({});
5748
5988
  }
5749
5989
  get TotalPages() {
5750
5990
  return Math.ceil(this.TotalRecords / this.RowsPerPage);
@@ -5766,8 +6006,12 @@ class TableFetchComponent {
5766
6006
  }
5767
6007
  this.ExecuteSearch({});
5768
6008
  }
6009
+ OnSearch() {
6010
+ this.CurrentPage = 1;
6011
+ this.ExecuteSearch({});
6012
+ }
5769
6013
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: TableFetchComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
5770
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.23", type: TableFetchComponent, isStandalone: true, selector: "intelica-table-fetch", inputs: { ComponentId: "ComponentId", ShowRowPerPage: "ShowRowPerPage", ShowSearch: "ShowSearch", ShowPagination: "ShowPagination", RowsPerPage: "RowsPerPage", ShowCheckbox: "ShowCheckbox", ShowIndex: "ShowIndex", ClassName: "ClassName", DefaultSortField: "DefaultSortField", scrollHeight: "scrollHeight", scrollable: "scrollable", AllowedPageSizes: "AllowedPageSizes", tableStyle: "tableStyle", FilteredList: "FilteredList", TotalItems: "TotalItems", CurrentPage: "CurrentPage", SortOrder: "SortOrder", SortField: "SortField" }, outputs: { EmitQueryParametersChange: "EmitQueryParametersChange", EmitSortEvent: "EmitSortEvent" }, providers: [FormatCellPipe, DatePipe], queries: [{ propertyName: "AdditionalTemplate", first: true, predicate: ["additionalTemplate"], descendants: true }, { propertyName: "AdditionalCentralTemplate", first: true, predicate: ["additionalCentralTemplate"], descendants: true }, { propertyName: "AdditionalExtendedTemplate", first: true, predicate: ["additionalExtendedTemplate"], descendants: true }, { propertyName: "Columns", predicate: ColumnComponent }, { propertyName: "ColumnGroups", predicate: ColumnGroupComponent }, { propertyName: "RowResumenGroups", predicate: RowResumenComponent }], usesOnChanges: true, ngImport: i0, template: "<div class=\"prTable\">\n\t@if (RenderPanel) {\n\t<div class=\" \">\n\t\t<div class=\"prCard__row justify-content-end\">\n\t\t\t<div class=\"prCard__actionflex\">\n\t\t\t\t@if (AdditionalTemplate) {\n\t\t\t\t<ng-container *ngTemplateOutlet=\"AdditionalTemplate\"></ng-container>\n\t\t\t\t}\n\t\t\t</div>\n\n\t\t\t@if (ShowSearch) {\n\t\t\t<div class=\"ptSearch searchTableGA\">\n\t\t\t\t<p-iconfield>\n\t\t\t\t\t<input type=\"text\" class=\"prInputText\" pInputText placeholder=\"{{ 'LBL_SEARCH_SELECT' | term : GlobalTermService.languageCode }}\" [(ngModel)]=\"SearchInput\" (keydown.enter)=\"ExecuteSearch()\" />\n\t\t\t\t\t<p-inputicon>\n\t\t\t\t\t\t<button class=\"ptSearch__icon ptSearch__icon--close\">\n\t\t\t\t\t\t\t<i class=\"icon icon-cancel\" *ngIf=\"SearchInput\" (click)=\"ClearSearch()\"></i>\n\t\t\t\t\t\t</button>\n\t\t\t\t\t\t<span class=\"ptSearch__icon ptSearch__icon--divider\" *ngIf=\"SearchInput\"></span>\n\t\t\t\t\t\t<button class=\"ptSearch__icon ptSearch__icon--search\">\n\t\t\t\t\t\t\t<i class=\"icon icon-search\"></i>\n\t\t\t\t\t\t</button>\n\t\t\t\t\t</p-inputicon>\n\t\t\t\t</p-iconfield>\n\t\t\t</div>\n\t\t\t}\n\t\t\t<!-- -->\n\t\t\t@if (AdditionalCentralTemplate) {\n\t\t\t<div class=\"prTableTools__new prTableTools__new--right\">\n\t\t\t\t<ng-container *ngTemplateOutlet=\"AdditionalCentralTemplate\"></ng-container>\n\t\t\t</div>\n\t\t\t}\n\t\t</div>\n\t</div>\n\t@if (AdditionalExtendedTemplate) {\n\t<div class=\"prTableTools justify-content-start\">\n\t\t<ng-container *ngTemplateOutlet=\"AdditionalExtendedTemplate\"></ng-container>\n\t</div>\n\t} }\n\t<p-table\n\t\tclass=\"prTable\"\n\t\t[ngClass]=\"ClassName\"\n\t\t[value]=\"FilteredList\"\n\t\tresponsiveLayout=\"scroll\"\n\t\t[sortField]=\"DefaultSortField\"\n\t\t[sortOrder]=\"SortOrder\"\n\t\t[scrollable]=\"scrollable\"\n\t\t[scrollHeight]=\"scrollable ? scrollHeight : 'auto'\"\n\t\t[tableStyle]=\"tableStyle\"\n\t>\n\t\t<!-- Cabecera con columnas agrupadas -->\n\t\t<ng-template pTemplate=\"header\">\n\t\t\t@for (level of Levels; track $index) {\n\t\t\t<tr>\n\t\t\t\t@for (col of ColumnGroupList; track $index) { @if (col.level === level) {\n\t\t\t\t<th [attr.colspan]=\"col.colspan\" [attr.rowspan]=\"col.rowspan\" [pSortableColumn]=\"col.sortable ? col.field : ''\" [style.min-width]=\"col.minWidth\" (click)=\"col.sortable && OnSort(col.field)\">\n\t\t\t\t\t<div>\n\t\t\t\t\t\t<span tooltipStyleClass=\"prTooltip\" F [pTooltip]=\"col.headerTooltip || col.header\" [tooltipPosition]=\"col.headerTooltipPosition || 'top'\">\n\t\t\t\t\t\t\t{{ col.header }}\n\t\t\t\t\t\t</span>\n\t\t\t\t\t\t<p-sortIcon *ngIf=\"col.sortable\" [field]=\"col.field\"></p-sortIcon>\n\t\t\t\t\t</div>\n\t\t\t\t</th>\n\t\t\t\t} } @if (ShowCheckbox && level === 0 && ColumnGroupList.length != 0) {\n\t\t\t\t<th class=\"text-center\" style=\"width: 4%\" [attr.rowspan]=\"MaxLevel === 1 ? 2 : MaxLevel\">\n\t\t\t\t\t<p-tableHeaderCheckbox class=\"prCheckbox\" />\n\t\t\t\t</th>\n\t\t\t\t}\n\t\t\t</tr>\n\t\t\t}\n\n\t\t\t<tr>\n\t\t\t\t@for (col of ColumnList; track $index) { @if (col.showHeader) {\n\t\t\t\t<th\n\t\t\t\t\t[class]=\"col.className\"\n\t\t\t\t\t[pSortableColumn]=\"!col.isChecboxColumn && col.sortable ? col.field : ''\"\n\t\t\t\t\t[style.width]=\"col.width\"\n\t\t\t\t\t[style.min-width]=\"col.minWidth\"\n\t\t\t\t\t(click)=\"!col.isChecboxColumn && col.sortable && OnSort(col.field)\"\n\t\t\t\t>\n\t\t\t\t\t<div class=\"prTable__header\">\n\t\t\t\t\t\t<span tooltipStyleClass=\"prTooltip\" [pTooltip]=\"col.headerTooltip || col.header\" [tooltipPosition]=\"col.headerTooltipPosition || 'top'\">\n\t\t\t\t\t\t\t{{ col.header }}\n\t\t\t\t\t\t</span>\n\t\t\t\t\t\t@if (!col.showIndex) {\n\t\t\t\t\t\t<p-sortIcon *ngIf=\"col.sortable\" [field]=\"col.field\"></p-sortIcon>\n\t\t\t\t\t\t}\n\t\t\t\t\t</div>\n\t\t\t\t</th>\n\t\t\t\t} } @if (ShowCheckbox && ColumnGroupList.length == 0) {\n\t\t\t\t<th class=\"text-center\" style=\"width: 4%\">\n\t\t\t\t\t<p-tableHeaderCheckbox class=\"prCheckbox\" />\n\t\t\t\t</th>\n\t\t\t\t}\n\t\t\t</tr>\n\n\t\t\t@if (FilteredList.length > 0 && RowResumenList.length > 0) {\n\t\t\t<tr class=\"fixedRow\">\n\t\t\t\t@for (col of RowResumenList; track $index) {\n\t\t\t\t<td [ngClass]=\"col.className\" [attr.colspan]=\"col.colspan\" [attr.rowspan]=\"col.rowspan\">\n\t\t\t\t\t@if (col.templateRef) {\n\t\t\t\t\t<span>\n\t\t\t\t\t\t<ng-container *ngTemplateOutlet=\"col.templateRef\"></ng-container>\n\t\t\t\t\t</span>\n\t\t\t\t\t}\n\t\t\t\t</td>\n\t\t\t\t}\n\t\t\t</tr>\n\t\t\t}\n\t\t</ng-template>\n\n\t\t<!-- Cuerpo de la tabla -->\n\t\t<ng-template pTemplate=\"body\" let-rowData let-rowIndex=\"rowIndex\">\n\t\t\t<tr>\n\t\t\t\t@for (col of ColumnList; track $index) {\n\t\t\t\t<td [ngClass]=\"col.className\">\n\t\t\t\t\t@if (col.showIndex) {\n\t\t\t\t\t{{ rowIndex + 1 + (CurrentPage - 1) * RowsPerPage }}\n\t\t\t\t\t} @else { @if (col.templateRef) {\n\t\t\t\t\t<ng-container *ngTemplateOutlet=\"col.templateRef; context: { $implicit: rowData }\"></ng-container>\n\t\t\t\t\t} @else {\n\t\t\t\t\t<span class=\"text-breakWord\" tooltipStyleClass=\"prTooltip\" pTooltip=\"{{ col.tooltip }}\" tooltipPosition=\"{{ col.tooltipPosition }}\">\n\t\t\t\t\t\t{{ rowData[col.field] | formatCell : col.formatType }}\n\t\t\t\t\t</span>\n\t\t\t\t\t} }\n\t\t\t\t</td>\n\t\t\t\t} @if (ShowCheckbox) {\n\t\t\t\t<td class=\"text-center\">\n\t\t\t\t\t<p-tableCheckbox [value]=\"rowData\" class=\"prCheckbox\" />\n\t\t\t\t</td>\n\t\t\t\t}\n\t\t\t</tr>\n\t\t</ng-template>\n\n\t\t<!-- Mensaje cuando no hay datos -->\n\t\t<ng-template pTemplate=\"emptymessage\">\n\t\t\t<tr>\n\t\t\t\t<td [attr.colspan]=\"ColumnList.length + (ShowCheckbox ? 1 : 0)\" class=\"text-center\">\n\t\t\t\t\t{{ \"Nodata\" | term : GlobalTermService.languageCode }}\n\t\t\t\t</td>\n\t\t\t</tr>\n\t\t</ng-template>\n\t</p-table>\n\n\t<!-- <div class=\"prTableToolsBottom\"> -->\n\t<div class=\"d-flex justify-content-end\">\n\t\t@if (TotalRecords !== 0 && ShowPagination) {\n\t\t<div class=\"ptTablePaginator\">\n\t\t\t<p-paginator\n\t\t\t\tclass=\"prPaginator paginatorTableGA\"\n\t\t\t\t[first]=\"(CurrentPage - 1) * RowsPerPage\"\n\t\t\t\t[rows]=\"RowsPerPage\"\n\t\t\t\t[totalRecords]=\"TotalRecords\"\n\t\t\t\t(onPageChange)=\"OnPageChange($event)\"\n\t\t\t\t[showJumpToPageInput]=\"false\"\n\t\t\t\t[showCurrentPageReport]=\"false\"\n\t\t\t\t[showPageLinks]=\"false\"\n\t\t\t\t[showFirstLastIcon]=\"false\"\n\t\t\t\t[templateLeft]=\"templateLeft\"\n\t\t\t>\n\t\t\t\t<ng-template #previouspagelinkicon>\n\t\t\t\t\t<i class=\"icon icon-arrow-left paginatorArrowGA\"></i>\n\t\t\t\t</ng-template>\n\t\t\t\t<ng-template #nextpagelinkicon>\n\t\t\t\t\t<i class=\"icon icon-arrow-right paginatorArrowGA\"></i>\n\t\t\t\t</ng-template>\n\t\t\t\t<ng-template pTemplate=\"templateLeft\" let-state #templateLeft>\n\t\t\t\t\t<span>{{ \"ROWS_PER_PAGE\" | term : GlobalTermService.languageCode }}</span>\n\t\t\t\t\t<p-select panelStyleClass=\"prSelect paginatorSelectTableGA\" class=\"prSelect\" [options]=\"AllowedPageSizes\" [ngModel]=\"RowsPerPage\" appendTo=\"body\" (onChange)=\"OnRowsPerPageChange($event.value)\" />\n\t\t\t\t\t<span>\n\t\t\t\t\t\t{{ \"Page\" | term : GlobalTermService.languageCode }}\n\t\t\t\t\t\t<p-inputnumber class=\"p-paginator-jtp-input\" inputId=\"integeronly\" [(ngModel)]=\"CurrentPage\" [allowEmpty]=\"false\" [min]=\"1\" (keyup.enter)=\"onChangeSelectPage($event)\" />\n\t\t\t\t\t\t{{ \"Of\" | term : GlobalTermService.languageCode }} {{ TotalPages }}\n\t\t\t\t\t</span>\n\t\t\t\t</ng-template>\n\t\t\t</p-paginator>\n\t\t</div>\n\t\t}\n\t</div>\n</div>\n", dependencies: [{ kind: "component", type: InputIcon, selector: "p-inputicon, p-inputIcon", inputs: ["hostName", "styleClass"] }, { kind: "component", type: IconField, selector: "p-iconfield, p-iconField, p-icon-field", inputs: ["hostName", "iconPosition", "styleClass"] }, { kind: "directive", type: InputText, selector: "[pInputText]", inputs: ["hostName", "ptInputText", "pSize", "variant", "fluid", "invalid"] }, { kind: "ngmodule", type: InputTextModule }, { kind: "component", type: InputNumber, selector: "p-inputNumber, p-inputnumber, p-input-number", inputs: ["showButtons", "format", "buttonLayout", "inputId", "styleClass", "placeholder", "tabindex", "title", "ariaLabelledBy", "ariaDescribedBy", "ariaLabel", "ariaRequired", "autocomplete", "incrementButtonClass", "decrementButtonClass", "incrementButtonIcon", "decrementButtonIcon", "readonly", "allowEmpty", "locale", "localeMatcher", "mode", "currency", "currencyDisplay", "useGrouping", "minFractionDigits", "maxFractionDigits", "prefix", "suffix", "inputStyle", "inputStyleClass", "showClear", "autofocus"], outputs: ["onInput", "onFocus", "onBlur", "onKeyDown", "onClear"] }, { kind: "component", type: Paginator, selector: "p-paginator", inputs: ["pageLinkSize", "styleClass", "alwaysShow", "dropdownAppendTo", "templateLeft", "templateRight", "dropdownScrollHeight", "currentPageReportTemplate", "showCurrentPageReport", "showFirstLastIcon", "totalRecords", "rows", "rowsPerPageOptions", "showJumpToPageDropdown", "showJumpToPageInput", "jumpToPageItemTemplate", "showPageLinks", "locale", "dropdownItemTemplate", "first", "appendTo"], outputs: ["onPageChange"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: TableModule }, { kind: "component", type: i3.Table, selector: "p-table", inputs: ["frozenColumns", "frozenValue", "styleClass", "tableStyle", "tableStyleClass", "paginator", "pageLinks", "rowsPerPageOptions", "alwaysShowPaginator", "paginatorPosition", "paginatorStyleClass", "paginatorDropdownAppendTo", "paginatorDropdownScrollHeight", "currentPageReportTemplate", "showCurrentPageReport", "showJumpToPageDropdown", "showJumpToPageInput", "showFirstLastIcon", "showPageLinks", "defaultSortOrder", "sortMode", "resetPageOnSort", "selectionMode", "selectionPageOnly", "contextMenuSelection", "contextMenuSelectionMode", "dataKey", "metaKeySelection", "rowSelectable", "rowTrackBy", "lazy", "lazyLoadOnInit", "compareSelectionBy", "csvSeparator", "exportFilename", "filters", "globalFilterFields", "filterDelay", "filterLocale", "expandedRowKeys", "editingRowKeys", "rowExpandMode", "scrollable", "rowGroupMode", "scrollHeight", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "virtualScrollDelay", "frozenWidth", "contextMenu", "resizableColumns", "columnResizeMode", "reorderableColumns", "loading", "loadingIcon", "showLoader", "rowHover", "customSort", "showInitialSortBadge", "exportFunction", "exportHeader", "stateKey", "stateStorage", "editMode", "groupRowsBy", "size", "showGridlines", "stripedRows", "groupRowsByOrder", "responsiveLayout", "breakpoint", "paginatorLocale", "value", "columns", "first", "rows", "totalRecords", "sortField", "sortOrder", "multiSortMeta", "selection", "selectAll"], outputs: ["contextMenuSelectionChange", "selectAllChange", "selectionChange", "onRowSelect", "onRowUnselect", "onPage", "onSort", "onFilter", "onLazyLoad", "onRowExpand", "onRowCollapse", "onContextMenuSelect", "onColResize", "onColReorder", "onRowReorder", "onEditInit", "onEditComplete", "onEditCancel", "onHeaderCheckboxToggle", "sortFunction", "firstChange", "rowsChange", "onStateSave", "onStateRestore"] }, { kind: "directive", type: i4.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "directive", type: i3.SortableColumn, selector: "[pSortableColumn]", inputs: ["pSortableColumn", "pSortableColumnDisabled"] }, { kind: "component", type: i3.SortIcon, selector: "p-sortIcon", inputs: ["field"] }, { kind: "component", type: i3.TableCheckbox, selector: "p-tableCheckbox", inputs: ["value", "disabled", "required", "index", "inputId", "name", "ariaLabel"] }, { kind: "component", type: i3.TableHeaderCheckbox, selector: "p-tableHeaderCheckbox", inputs: ["disabled", "inputId", "name", "ariaLabel"] }, { kind: "component", type: Select, selector: "p-select", inputs: ["id", "scrollHeight", "filter", "panelStyle", "styleClass", "panelStyleClass", "readonly", "editable", "tabindex", "placeholder", "loadingIcon", "filterPlaceholder", "filterLocale", "inputId", "dataKey", "filterBy", "filterFields", "autofocus", "resetFilterOnHide", "checkmark", "dropdownIcon", "loading", "optionLabel", "optionValue", "optionDisabled", "optionGroupLabel", "optionGroupChildren", "group", "showClear", "emptyFilterMessage", "emptyMessage", "lazy", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "overlayOptions", "ariaFilterLabel", "ariaLabel", "ariaLabelledBy", "filterMatchMode", "tooltip", "tooltipPosition", "tooltipPositionStyle", "tooltipStyleClass", "focusOnHover", "selectOnFocus", "autoOptionFocus", "autofocusFilter", "filterValue", "options", "appendTo"], outputs: ["onChange", "onFilter", "onFocus", "onBlur", "onClick", "onShow", "onHide", "onClear", "onLazyLoad"] }, { kind: "ngmodule", type: BadgeModule }, { kind: "ngmodule", type: TooltipModule }, { kind: "directive", type: i4$1.Tooltip, selector: "[pTooltip]", inputs: ["tooltipPosition", "tooltipEvent", "positionStyle", "tooltipStyleClass", "tooltipZIndex", "escape", "showDelay", "hideDelay", "life", "positionTop", "positionLeft", "autoHide", "fitContent", "hideOnEscape", "pTooltip", "tooltipDisabled", "tooltipOptions", "appendTo", "ptTooltip"] }, { kind: "ngmodule", type: CheckboxModule }, { kind: "pipe", type: TermPipe, name: "term" }, { kind: "pipe", type: FormatCellPipe, name: "formatCell" }] });
6014
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.23", type: TableFetchComponent, isStandalone: true, selector: "intelica-table-fetch", inputs: { ComponentId: "ComponentId", ShowRowPerPage: "ShowRowPerPage", ShowSearch: "ShowSearch", ShowPagination: "ShowPagination", RowsPerPage: "RowsPerPage", ShowCheckbox: "ShowCheckbox", ShowIndex: "ShowIndex", ClassName: "ClassName", DefaultSortField: "DefaultSortField", scrollHeight: "scrollHeight", scrollable: "scrollable", AllowedPageSizes: "AllowedPageSizes", tableStyle: "tableStyle", FilteredList: "FilteredList", TotalItems: "TotalItems", CurrentPage: "CurrentPage", SortOrder: "SortOrder", SortField: "SortField" }, outputs: { EmitQueryParametersChange: "EmitQueryParametersChange", EmitSortEvent: "EmitSortEvent" }, providers: [FormatCellPipe, DatePipe], queries: [{ propertyName: "AdditionalTemplate", first: true, predicate: ["additionalTemplate"], descendants: true }, { propertyName: "AdditionalCentralTemplate", first: true, predicate: ["additionalCentralTemplate"], descendants: true }, { propertyName: "AdditionalExtendedTemplate", first: true, predicate: ["additionalExtendedTemplate"], descendants: true }, { propertyName: "Columns", predicate: ColumnComponent }, { propertyName: "ColumnGroups", predicate: ColumnGroupComponent }, { propertyName: "RowResumenGroups", predicate: RowResumenComponent }], usesOnChanges: true, ngImport: i0, template: "<div class=\"prTable\">\n\t@if (RenderPanel) {\n\t\t<div class=\" \">\n\t\t\t<div class=\"prCard__row justify-content-end\">\n\t\t\t\t<div class=\"prCard__actionflex\">\n\t\t\t\t\t@if (AdditionalTemplate) {\n\t\t\t\t\t\t<ng-container *ngTemplateOutlet=\"AdditionalTemplate\"></ng-container>\n\t\t\t\t\t}\n\t\t\t\t</div>\n\n\t\t\t\t@if (ShowSearch) {\n\t\t\t\t\t<div class=\"ptSearch searchTableGA\">\n\t\t\t\t\t\t<p-iconfield>\n\t\t\t\t\t\t\t<input type=\"text\" class=\"prInputText\" pInputText placeholder=\"{{ 'LBL_SEARCH_SELECT' | term: GlobalTermService.languageCode }}\" [(ngModel)]=\"SearchInput\" (keydown.enter)=\"OnSearch()\" />\n\t\t\t\t\t\t\t<p-inputicon>\n\t\t\t\t\t\t\t\t<button class=\"ptSearch__icon ptSearch__icon--close\" *ngIf=\"SearchInput\" (click)=\"ClearSearch()\">\n\t\t\t\t\t\t\t\t\t<i class=\"icon icon-cancel\"></i>\n\t\t\t\t\t\t\t\t</button>\n\t\t\t\t\t\t\t\t<span class=\"ptSearch__icon ptSearch__icon--divider\" *ngIf=\"SearchInput\"></span>\n\t\t\t\t\t\t\t\t<button class=\"ptSearch__icon ptSearch__icon--search\" (click)=\"OnSearch()\">\n\t\t\t\t\t\t\t\t\t<i class=\"icon icon-search\"></i>\n\t\t\t\t\t\t\t\t</button>\n\t\t\t\t\t\t\t</p-inputicon>\n\t\t\t\t\t\t</p-iconfield>\n\t\t\t\t\t</div>\n\t\t\t\t}\n\t\t\t\t<!-- -->\n\t\t\t\t@if (AdditionalCentralTemplate) {\n\t\t\t\t\t<div class=\"prTableTools__new prTableTools__new--right\">\n\t\t\t\t\t\t<ng-container *ngTemplateOutlet=\"AdditionalCentralTemplate\"></ng-container>\n\t\t\t\t\t</div>\n\t\t\t\t}\n\t\t\t</div>\n\t\t</div>\n\t\t@if (AdditionalExtendedTemplate) {\n\t\t\t<div class=\"prTableTools justify-content-start\">\n\t\t\t\t<ng-container *ngTemplateOutlet=\"AdditionalExtendedTemplate\"></ng-container>\n\t\t\t</div>\n\t\t}\n\t}\n\t<p-table\n\t\tclass=\"prTable\"\n\t\t[ngClass]=\"ClassName\"\n\t\t[value]=\"FilteredList\"\n\t\tresponsiveLayout=\"scroll\"\n\t\t[sortField]=\"DefaultSortField\"\n\t\t[sortOrder]=\"SortOrder\"\n\t\t[scrollable]=\"scrollable\"\n\t\t[scrollHeight]=\"scrollable ? scrollHeight : 'auto'\"\n\t\t[tableStyle]=\"tableStyle\"\n\t>\n\t\t<!-- Cabecera con columnas agrupadas -->\n\t\t<ng-template pTemplate=\"header\">\n\t\t\t@for (level of Levels; track $index) {\n\t\t\t\t<tr>\n\t\t\t\t\t@for (col of ColumnGroupList; track $index) {\n\t\t\t\t\t\t@if (col.level === level) {\n\t\t\t\t\t\t\t<th [attr.colspan]=\"col.colspan\" [attr.rowspan]=\"col.rowspan\" [pSortableColumn]=\"col.sortable ? col.field : ''\" [style.min-width]=\"col.minWidth\" (click)=\"col.sortable && OnSort(col.field)\">\n\t\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t\t\t<span tooltipStyleClass=\"prTooltip\" F [pTooltip]=\"col.headerTooltip || col.header\" [tooltipPosition]=\"col.headerTooltipPosition || 'top'\">\n\t\t\t\t\t\t\t\t\t\t{{ col.header }}\n\t\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t\t\t<p-sortIcon *ngIf=\"col.sortable\" [field]=\"col.field\"></p-sortIcon>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</th>\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t@if (ShowCheckbox && level === 0 && ColumnGroupList.length != 0) {\n\t\t\t\t\t\t<th class=\"text-center\" style=\"width: 4%\" [attr.rowspan]=\"MaxLevel === 1 ? 2 : MaxLevel\">\n\t\t\t\t\t\t\t<p-tableHeaderCheckbox class=\"prCheckbox\" />\n\t\t\t\t\t\t</th>\n\t\t\t\t\t}\n\t\t\t\t</tr>\n\t\t\t}\n\n\t\t\t<tr>\n\t\t\t\t@for (col of ColumnList; track $index) {\n\t\t\t\t\t@if (col.showHeader) {\n\t\t\t\t\t\t<th\n\t\t\t\t\t\t\t[class]=\"col.className\"\n\t\t\t\t\t\t\t[pSortableColumn]=\"!col.isChecboxColumn && col.sortable ? col.field : ''\"\n\t\t\t\t\t\t\t[style.width]=\"col.width\"\n\t\t\t\t\t\t\t[style.min-width]=\"col.minWidth\"\n\t\t\t\t\t\t\t(click)=\"!col.isChecboxColumn && col.sortable && OnSort(col.field)\"\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t<div class=\"prTable__header\">\n\t\t\t\t\t\t\t\t<span tooltipStyleClass=\"prTooltip\" [pTooltip]=\"col.headerTooltip || col.header\" [tooltipPosition]=\"col.headerTooltipPosition || 'top'\">\n\t\t\t\t\t\t\t\t\t{{ col.header }}\n\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t\t@if (!col.showIndex) {\n\t\t\t\t\t\t\t\t\t<p-sortIcon *ngIf=\"col.sortable\" [field]=\"col.field\"></p-sortIcon>\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</th>\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t@if (ShowCheckbox && ColumnGroupList.length == 0) {\n\t\t\t\t\t<th class=\"text-center\" style=\"width: 4%\">\n\t\t\t\t\t\t<p-tableHeaderCheckbox class=\"prCheckbox\" />\n\t\t\t\t\t</th>\n\t\t\t\t}\n\t\t\t</tr>\n\n\t\t\t@if (FilteredList.length > 0 && RowResumenList.length > 0) {\n\t\t\t\t<tr class=\"fixedRow\">\n\t\t\t\t\t@for (col of RowResumenList; track $index) {\n\t\t\t\t\t\t<td [ngClass]=\"col.className\" [attr.colspan]=\"col.colspan\" [attr.rowspan]=\"col.rowspan\">\n\t\t\t\t\t\t\t@if (col.templateRef) {\n\t\t\t\t\t\t\t\t<span>\n\t\t\t\t\t\t\t\t\t<ng-container *ngTemplateOutlet=\"col.templateRef\"></ng-container>\n\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t</td>\n\t\t\t\t\t}\n\t\t\t\t</tr>\n\t\t\t}\n\t\t</ng-template>\n\n\t\t<!-- Cuerpo de la tabla -->\n\t\t<ng-template pTemplate=\"body\" let-rowData let-rowIndex=\"rowIndex\">\n\t\t\t<tr>\n\t\t\t\t@for (col of ColumnList; track $index) {\n\t\t\t\t\t<td [ngClass]=\"col.className\">\n\t\t\t\t\t\t@if (col.showIndex) {\n\t\t\t\t\t\t\t{{ rowIndex + 1 + (CurrentPage - 1) * RowsPerPage }}\n\t\t\t\t\t\t} @else {\n\t\t\t\t\t\t\t@if (col.templateRef) {\n\t\t\t\t\t\t\t\t<ng-container *ngTemplateOutlet=\"col.templateRef; context: { $implicit: rowData }\"></ng-container>\n\t\t\t\t\t\t\t} @else {\n\t\t\t\t\t\t\t\t<span class=\"text-breakWord\" tooltipStyleClass=\"prTooltip\" pTooltip=\"{{ col.tooltip }}\" tooltipPosition=\"{{ col.tooltipPosition }}\">\n\t\t\t\t\t\t\t\t\t{{ rowData[col.field] | formatCell: col.formatType }}\n\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t</td>\n\t\t\t\t}\n\t\t\t\t@if (ShowCheckbox) {\n\t\t\t\t\t<td class=\"text-center\">\n\t\t\t\t\t\t<p-tableCheckbox [value]=\"rowData\" class=\"prCheckbox\" />\n\t\t\t\t\t</td>\n\t\t\t\t}\n\t\t\t</tr>\n\t\t</ng-template>\n\n\t\t<!-- Mensaje cuando no hay datos -->\n\t\t<ng-template pTemplate=\"emptymessage\">\n\t\t\t<tr>\n\t\t\t\t<td [attr.colspan]=\"ColumnList.length + (ShowCheckbox ? 1 : 0)\" class=\"text-center\">\n\t\t\t\t\t{{ \"Nodata\" | term: GlobalTermService.languageCode }}\n\t\t\t\t</td>\n\t\t\t</tr>\n\t\t</ng-template>\n\t</p-table>\n\n\t<!-- <div class=\"prTableToolsBottom\"> -->\n\t<div class=\"d-flex justify-content-end\">\n\t\t@if (TotalRecords !== 0 && ShowPagination) {\n\t\t\t<div class=\"ptTablePaginator\">\n\t\t\t\t<p-paginator\n\t\t\t\t\tclass=\"prPaginator paginatorTableGA\"\n\t\t\t\t\t[first]=\"(CurrentPage - 1) * RowsPerPage\"\n\t\t\t\t\t[rows]=\"RowsPerPage\"\n\t\t\t\t\t[totalRecords]=\"TotalRecords\"\n\t\t\t\t\t(onPageChange)=\"OnPageChange($event)\"\n\t\t\t\t\t[showJumpToPageInput]=\"false\"\n\t\t\t\t\t[showCurrentPageReport]=\"false\"\n\t\t\t\t\t[showPageLinks]=\"false\"\n\t\t\t\t\t[showFirstLastIcon]=\"false\"\n\t\t\t\t\t[templateLeft]=\"templateLeft\"\n\t\t\t\t>\n\t\t\t\t\t<ng-template #previouspagelinkicon>\n\t\t\t\t\t\t<i class=\"icon icon-arrow-left paginatorArrowGA\"></i>\n\t\t\t\t\t</ng-template>\n\t\t\t\t\t<ng-template #nextpagelinkicon>\n\t\t\t\t\t\t<i class=\"icon icon-arrow-right paginatorArrowGA\"></i>\n\t\t\t\t\t</ng-template>\n\t\t\t\t\t<ng-template pTemplate=\"templateLeft\" let-state #templateLeft>\n\t\t\t\t\t\t<span>{{ \"ROWS_PER_PAGE\" | term: GlobalTermService.languageCode }}</span>\n\t\t\t\t\t\t<p-select\n\t\t\t\t\t\t\tpanelStyleClass=\"prSelect paginatorSelectTableGA\"\n\t\t\t\t\t\t\tclass=\"prSelect\"\n\t\t\t\t\t\t\t[options]=\"AllowedPageSizes\"\n\t\t\t\t\t\t\t[ngModel]=\"RowsPerPage\"\n\t\t\t\t\t\t\tappendTo=\"body\"\n\t\t\t\t\t\t\t(onChange)=\"OnRowsPerPageChange($event.value)\"\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t<span>\n\t\t\t\t\t\t\t{{ \"Page\" | term: GlobalTermService.languageCode }}\n\t\t\t\t\t\t\t<p-inputnumber class=\"p-paginator-jtp-input\" inputId=\"integeronly\" [(ngModel)]=\"CurrentPage\" [allowEmpty]=\"false\" [min]=\"1\" (keyup.enter)=\"onChangeSelectPage($event)\" />\n\t\t\t\t\t\t\t{{ \"Of\" | term: GlobalTermService.languageCode }} {{ TotalPages }}\n\t\t\t\t\t\t</span>\n\t\t\t\t\t</ng-template>\n\t\t\t\t</p-paginator>\n\t\t\t</div>\n\t\t}\n\t</div>\n</div>\n", dependencies: [{ kind: "component", type: InputIcon, selector: "p-inputicon, p-inputIcon", inputs: ["hostName", "styleClass"] }, { kind: "component", type: IconField, selector: "p-iconfield, p-iconField, p-icon-field", inputs: ["hostName", "iconPosition", "styleClass"] }, { kind: "directive", type: InputText, selector: "[pInputText]", inputs: ["hostName", "ptInputText", "pSize", "variant", "fluid", "invalid"] }, { kind: "ngmodule", type: InputTextModule }, { kind: "component", type: InputNumber, selector: "p-inputNumber, p-inputnumber, p-input-number", inputs: ["showButtons", "format", "buttonLayout", "inputId", "styleClass", "placeholder", "tabindex", "title", "ariaLabelledBy", "ariaDescribedBy", "ariaLabel", "ariaRequired", "autocomplete", "incrementButtonClass", "decrementButtonClass", "incrementButtonIcon", "decrementButtonIcon", "readonly", "allowEmpty", "locale", "localeMatcher", "mode", "currency", "currencyDisplay", "useGrouping", "minFractionDigits", "maxFractionDigits", "prefix", "suffix", "inputStyle", "inputStyleClass", "showClear", "autofocus"], outputs: ["onInput", "onFocus", "onBlur", "onKeyDown", "onClear"] }, { kind: "component", type: Paginator, selector: "p-paginator", inputs: ["pageLinkSize", "styleClass", "alwaysShow", "dropdownAppendTo", "templateLeft", "templateRight", "dropdownScrollHeight", "currentPageReportTemplate", "showCurrentPageReport", "showFirstLastIcon", "totalRecords", "rows", "rowsPerPageOptions", "showJumpToPageDropdown", "showJumpToPageInput", "jumpToPageItemTemplate", "showPageLinks", "locale", "dropdownItemTemplate", "first", "appendTo"], outputs: ["onPageChange"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: TableModule }, { kind: "component", type: i3.Table, selector: "p-table", inputs: ["frozenColumns", "frozenValue", "styleClass", "tableStyle", "tableStyleClass", "paginator", "pageLinks", "rowsPerPageOptions", "alwaysShowPaginator", "paginatorPosition", "paginatorStyleClass", "paginatorDropdownAppendTo", "paginatorDropdownScrollHeight", "currentPageReportTemplate", "showCurrentPageReport", "showJumpToPageDropdown", "showJumpToPageInput", "showFirstLastIcon", "showPageLinks", "defaultSortOrder", "sortMode", "resetPageOnSort", "selectionMode", "selectionPageOnly", "contextMenuSelection", "contextMenuSelectionMode", "dataKey", "metaKeySelection", "rowSelectable", "rowTrackBy", "lazy", "lazyLoadOnInit", "compareSelectionBy", "csvSeparator", "exportFilename", "filters", "globalFilterFields", "filterDelay", "filterLocale", "expandedRowKeys", "editingRowKeys", "rowExpandMode", "scrollable", "rowGroupMode", "scrollHeight", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "virtualScrollDelay", "frozenWidth", "contextMenu", "resizableColumns", "columnResizeMode", "reorderableColumns", "loading", "loadingIcon", "showLoader", "rowHover", "customSort", "showInitialSortBadge", "exportFunction", "exportHeader", "stateKey", "stateStorage", "editMode", "groupRowsBy", "size", "showGridlines", "stripedRows", "groupRowsByOrder", "responsiveLayout", "breakpoint", "paginatorLocale", "value", "columns", "first", "rows", "totalRecords", "sortField", "sortOrder", "multiSortMeta", "selection", "selectAll"], outputs: ["contextMenuSelectionChange", "selectAllChange", "selectionChange", "onRowSelect", "onRowUnselect", "onPage", "onSort", "onFilter", "onLazyLoad", "onRowExpand", "onRowCollapse", "onContextMenuSelect", "onColResize", "onColReorder", "onRowReorder", "onEditInit", "onEditComplete", "onEditCancel", "onHeaderCheckboxToggle", "sortFunction", "firstChange", "rowsChange", "onStateSave", "onStateRestore"] }, { kind: "directive", type: i4.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "directive", type: i3.SortableColumn, selector: "[pSortableColumn]", inputs: ["pSortableColumn", "pSortableColumnDisabled"] }, { kind: "component", type: i3.SortIcon, selector: "p-sortIcon", inputs: ["field"] }, { kind: "component", type: i3.TableCheckbox, selector: "p-tableCheckbox", inputs: ["value", "disabled", "required", "index", "inputId", "name", "ariaLabel"] }, { kind: "component", type: i3.TableHeaderCheckbox, selector: "p-tableHeaderCheckbox", inputs: ["disabled", "inputId", "name", "ariaLabel"] }, { kind: "component", type: Select, selector: "p-select", inputs: ["id", "scrollHeight", "filter", "panelStyle", "styleClass", "panelStyleClass", "readonly", "editable", "tabindex", "placeholder", "loadingIcon", "filterPlaceholder", "filterLocale", "inputId", "dataKey", "filterBy", "filterFields", "autofocus", "resetFilterOnHide", "checkmark", "dropdownIcon", "loading", "optionLabel", "optionValue", "optionDisabled", "optionGroupLabel", "optionGroupChildren", "group", "showClear", "emptyFilterMessage", "emptyMessage", "lazy", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "overlayOptions", "ariaFilterLabel", "ariaLabel", "ariaLabelledBy", "filterMatchMode", "tooltip", "tooltipPosition", "tooltipPositionStyle", "tooltipStyleClass", "focusOnHover", "selectOnFocus", "autoOptionFocus", "autofocusFilter", "filterValue", "options", "appendTo"], outputs: ["onChange", "onFilter", "onFocus", "onBlur", "onClick", "onShow", "onHide", "onClear", "onLazyLoad"] }, { kind: "ngmodule", type: BadgeModule }, { kind: "ngmodule", type: TooltipModule }, { kind: "directive", type: i4$1.Tooltip, selector: "[pTooltip]", inputs: ["tooltipPosition", "tooltipEvent", "positionStyle", "tooltipStyleClass", "tooltipZIndex", "escape", "showDelay", "hideDelay", "life", "positionTop", "positionLeft", "autoHide", "fitContent", "hideOnEscape", "pTooltip", "tooltipDisabled", "tooltipOptions", "appendTo", "ptTooltip"] }, { kind: "ngmodule", type: CheckboxModule }, { kind: "pipe", type: TermPipe, name: "term" }, { kind: "pipe", type: FormatCellPipe, name: "formatCell" }] });
5771
6015
  }
5772
6016
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: TableFetchComponent, decorators: [{
5773
6017
  type: Component,
@@ -5788,7 +6032,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.23", ngImpo
5788
6032
  CheckboxModule,
5789
6033
  FormsModule,
5790
6034
  FormatCellPipe,
5791
- ], providers: [FormatCellPipe, DatePipe], template: "<div class=\"prTable\">\n\t@if (RenderPanel) {\n\t<div class=\" \">\n\t\t<div class=\"prCard__row justify-content-end\">\n\t\t\t<div class=\"prCard__actionflex\">\n\t\t\t\t@if (AdditionalTemplate) {\n\t\t\t\t<ng-container *ngTemplateOutlet=\"AdditionalTemplate\"></ng-container>\n\t\t\t\t}\n\t\t\t</div>\n\n\t\t\t@if (ShowSearch) {\n\t\t\t<div class=\"ptSearch searchTableGA\">\n\t\t\t\t<p-iconfield>\n\t\t\t\t\t<input type=\"text\" class=\"prInputText\" pInputText placeholder=\"{{ 'LBL_SEARCH_SELECT' | term : GlobalTermService.languageCode }}\" [(ngModel)]=\"SearchInput\" (keydown.enter)=\"ExecuteSearch()\" />\n\t\t\t\t\t<p-inputicon>\n\t\t\t\t\t\t<button class=\"ptSearch__icon ptSearch__icon--close\">\n\t\t\t\t\t\t\t<i class=\"icon icon-cancel\" *ngIf=\"SearchInput\" (click)=\"ClearSearch()\"></i>\n\t\t\t\t\t\t</button>\n\t\t\t\t\t\t<span class=\"ptSearch__icon ptSearch__icon--divider\" *ngIf=\"SearchInput\"></span>\n\t\t\t\t\t\t<button class=\"ptSearch__icon ptSearch__icon--search\">\n\t\t\t\t\t\t\t<i class=\"icon icon-search\"></i>\n\t\t\t\t\t\t</button>\n\t\t\t\t\t</p-inputicon>\n\t\t\t\t</p-iconfield>\n\t\t\t</div>\n\t\t\t}\n\t\t\t<!-- -->\n\t\t\t@if (AdditionalCentralTemplate) {\n\t\t\t<div class=\"prTableTools__new prTableTools__new--right\">\n\t\t\t\t<ng-container *ngTemplateOutlet=\"AdditionalCentralTemplate\"></ng-container>\n\t\t\t</div>\n\t\t\t}\n\t\t</div>\n\t</div>\n\t@if (AdditionalExtendedTemplate) {\n\t<div class=\"prTableTools justify-content-start\">\n\t\t<ng-container *ngTemplateOutlet=\"AdditionalExtendedTemplate\"></ng-container>\n\t</div>\n\t} }\n\t<p-table\n\t\tclass=\"prTable\"\n\t\t[ngClass]=\"ClassName\"\n\t\t[value]=\"FilteredList\"\n\t\tresponsiveLayout=\"scroll\"\n\t\t[sortField]=\"DefaultSortField\"\n\t\t[sortOrder]=\"SortOrder\"\n\t\t[scrollable]=\"scrollable\"\n\t\t[scrollHeight]=\"scrollable ? scrollHeight : 'auto'\"\n\t\t[tableStyle]=\"tableStyle\"\n\t>\n\t\t<!-- Cabecera con columnas agrupadas -->\n\t\t<ng-template pTemplate=\"header\">\n\t\t\t@for (level of Levels; track $index) {\n\t\t\t<tr>\n\t\t\t\t@for (col of ColumnGroupList; track $index) { @if (col.level === level) {\n\t\t\t\t<th [attr.colspan]=\"col.colspan\" [attr.rowspan]=\"col.rowspan\" [pSortableColumn]=\"col.sortable ? col.field : ''\" [style.min-width]=\"col.minWidth\" (click)=\"col.sortable && OnSort(col.field)\">\n\t\t\t\t\t<div>\n\t\t\t\t\t\t<span tooltipStyleClass=\"prTooltip\" F [pTooltip]=\"col.headerTooltip || col.header\" [tooltipPosition]=\"col.headerTooltipPosition || 'top'\">\n\t\t\t\t\t\t\t{{ col.header }}\n\t\t\t\t\t\t</span>\n\t\t\t\t\t\t<p-sortIcon *ngIf=\"col.sortable\" [field]=\"col.field\"></p-sortIcon>\n\t\t\t\t\t</div>\n\t\t\t\t</th>\n\t\t\t\t} } @if (ShowCheckbox && level === 0 && ColumnGroupList.length != 0) {\n\t\t\t\t<th class=\"text-center\" style=\"width: 4%\" [attr.rowspan]=\"MaxLevel === 1 ? 2 : MaxLevel\">\n\t\t\t\t\t<p-tableHeaderCheckbox class=\"prCheckbox\" />\n\t\t\t\t</th>\n\t\t\t\t}\n\t\t\t</tr>\n\t\t\t}\n\n\t\t\t<tr>\n\t\t\t\t@for (col of ColumnList; track $index) { @if (col.showHeader) {\n\t\t\t\t<th\n\t\t\t\t\t[class]=\"col.className\"\n\t\t\t\t\t[pSortableColumn]=\"!col.isChecboxColumn && col.sortable ? col.field : ''\"\n\t\t\t\t\t[style.width]=\"col.width\"\n\t\t\t\t\t[style.min-width]=\"col.minWidth\"\n\t\t\t\t\t(click)=\"!col.isChecboxColumn && col.sortable && OnSort(col.field)\"\n\t\t\t\t>\n\t\t\t\t\t<div class=\"prTable__header\">\n\t\t\t\t\t\t<span tooltipStyleClass=\"prTooltip\" [pTooltip]=\"col.headerTooltip || col.header\" [tooltipPosition]=\"col.headerTooltipPosition || 'top'\">\n\t\t\t\t\t\t\t{{ col.header }}\n\t\t\t\t\t\t</span>\n\t\t\t\t\t\t@if (!col.showIndex) {\n\t\t\t\t\t\t<p-sortIcon *ngIf=\"col.sortable\" [field]=\"col.field\"></p-sortIcon>\n\t\t\t\t\t\t}\n\t\t\t\t\t</div>\n\t\t\t\t</th>\n\t\t\t\t} } @if (ShowCheckbox && ColumnGroupList.length == 0) {\n\t\t\t\t<th class=\"text-center\" style=\"width: 4%\">\n\t\t\t\t\t<p-tableHeaderCheckbox class=\"prCheckbox\" />\n\t\t\t\t</th>\n\t\t\t\t}\n\t\t\t</tr>\n\n\t\t\t@if (FilteredList.length > 0 && RowResumenList.length > 0) {\n\t\t\t<tr class=\"fixedRow\">\n\t\t\t\t@for (col of RowResumenList; track $index) {\n\t\t\t\t<td [ngClass]=\"col.className\" [attr.colspan]=\"col.colspan\" [attr.rowspan]=\"col.rowspan\">\n\t\t\t\t\t@if (col.templateRef) {\n\t\t\t\t\t<span>\n\t\t\t\t\t\t<ng-container *ngTemplateOutlet=\"col.templateRef\"></ng-container>\n\t\t\t\t\t</span>\n\t\t\t\t\t}\n\t\t\t\t</td>\n\t\t\t\t}\n\t\t\t</tr>\n\t\t\t}\n\t\t</ng-template>\n\n\t\t<!-- Cuerpo de la tabla -->\n\t\t<ng-template pTemplate=\"body\" let-rowData let-rowIndex=\"rowIndex\">\n\t\t\t<tr>\n\t\t\t\t@for (col of ColumnList; track $index) {\n\t\t\t\t<td [ngClass]=\"col.className\">\n\t\t\t\t\t@if (col.showIndex) {\n\t\t\t\t\t{{ rowIndex + 1 + (CurrentPage - 1) * RowsPerPage }}\n\t\t\t\t\t} @else { @if (col.templateRef) {\n\t\t\t\t\t<ng-container *ngTemplateOutlet=\"col.templateRef; context: { $implicit: rowData }\"></ng-container>\n\t\t\t\t\t} @else {\n\t\t\t\t\t<span class=\"text-breakWord\" tooltipStyleClass=\"prTooltip\" pTooltip=\"{{ col.tooltip }}\" tooltipPosition=\"{{ col.tooltipPosition }}\">\n\t\t\t\t\t\t{{ rowData[col.field] | formatCell : col.formatType }}\n\t\t\t\t\t</span>\n\t\t\t\t\t} }\n\t\t\t\t</td>\n\t\t\t\t} @if (ShowCheckbox) {\n\t\t\t\t<td class=\"text-center\">\n\t\t\t\t\t<p-tableCheckbox [value]=\"rowData\" class=\"prCheckbox\" />\n\t\t\t\t</td>\n\t\t\t\t}\n\t\t\t</tr>\n\t\t</ng-template>\n\n\t\t<!-- Mensaje cuando no hay datos -->\n\t\t<ng-template pTemplate=\"emptymessage\">\n\t\t\t<tr>\n\t\t\t\t<td [attr.colspan]=\"ColumnList.length + (ShowCheckbox ? 1 : 0)\" class=\"text-center\">\n\t\t\t\t\t{{ \"Nodata\" | term : GlobalTermService.languageCode }}\n\t\t\t\t</td>\n\t\t\t</tr>\n\t\t</ng-template>\n\t</p-table>\n\n\t<!-- <div class=\"prTableToolsBottom\"> -->\n\t<div class=\"d-flex justify-content-end\">\n\t\t@if (TotalRecords !== 0 && ShowPagination) {\n\t\t<div class=\"ptTablePaginator\">\n\t\t\t<p-paginator\n\t\t\t\tclass=\"prPaginator paginatorTableGA\"\n\t\t\t\t[first]=\"(CurrentPage - 1) * RowsPerPage\"\n\t\t\t\t[rows]=\"RowsPerPage\"\n\t\t\t\t[totalRecords]=\"TotalRecords\"\n\t\t\t\t(onPageChange)=\"OnPageChange($event)\"\n\t\t\t\t[showJumpToPageInput]=\"false\"\n\t\t\t\t[showCurrentPageReport]=\"false\"\n\t\t\t\t[showPageLinks]=\"false\"\n\t\t\t\t[showFirstLastIcon]=\"false\"\n\t\t\t\t[templateLeft]=\"templateLeft\"\n\t\t\t>\n\t\t\t\t<ng-template #previouspagelinkicon>\n\t\t\t\t\t<i class=\"icon icon-arrow-left paginatorArrowGA\"></i>\n\t\t\t\t</ng-template>\n\t\t\t\t<ng-template #nextpagelinkicon>\n\t\t\t\t\t<i class=\"icon icon-arrow-right paginatorArrowGA\"></i>\n\t\t\t\t</ng-template>\n\t\t\t\t<ng-template pTemplate=\"templateLeft\" let-state #templateLeft>\n\t\t\t\t\t<span>{{ \"ROWS_PER_PAGE\" | term : GlobalTermService.languageCode }}</span>\n\t\t\t\t\t<p-select panelStyleClass=\"prSelect paginatorSelectTableGA\" class=\"prSelect\" [options]=\"AllowedPageSizes\" [ngModel]=\"RowsPerPage\" appendTo=\"body\" (onChange)=\"OnRowsPerPageChange($event.value)\" />\n\t\t\t\t\t<span>\n\t\t\t\t\t\t{{ \"Page\" | term : GlobalTermService.languageCode }}\n\t\t\t\t\t\t<p-inputnumber class=\"p-paginator-jtp-input\" inputId=\"integeronly\" [(ngModel)]=\"CurrentPage\" [allowEmpty]=\"false\" [min]=\"1\" (keyup.enter)=\"onChangeSelectPage($event)\" />\n\t\t\t\t\t\t{{ \"Of\" | term : GlobalTermService.languageCode }} {{ TotalPages }}\n\t\t\t\t\t</span>\n\t\t\t\t</ng-template>\n\t\t\t</p-paginator>\n\t\t</div>\n\t\t}\n\t</div>\n</div>\n" }]
6035
+ ], providers: [FormatCellPipe, DatePipe], template: "<div class=\"prTable\">\n\t@if (RenderPanel) {\n\t\t<div class=\" \">\n\t\t\t<div class=\"prCard__row justify-content-end\">\n\t\t\t\t<div class=\"prCard__actionflex\">\n\t\t\t\t\t@if (AdditionalTemplate) {\n\t\t\t\t\t\t<ng-container *ngTemplateOutlet=\"AdditionalTemplate\"></ng-container>\n\t\t\t\t\t}\n\t\t\t\t</div>\n\n\t\t\t\t@if (ShowSearch) {\n\t\t\t\t\t<div class=\"ptSearch searchTableGA\">\n\t\t\t\t\t\t<p-iconfield>\n\t\t\t\t\t\t\t<input type=\"text\" class=\"prInputText\" pInputText placeholder=\"{{ 'LBL_SEARCH_SELECT' | term: GlobalTermService.languageCode }}\" [(ngModel)]=\"SearchInput\" (keydown.enter)=\"OnSearch()\" />\n\t\t\t\t\t\t\t<p-inputicon>\n\t\t\t\t\t\t\t\t<button class=\"ptSearch__icon ptSearch__icon--close\" *ngIf=\"SearchInput\" (click)=\"ClearSearch()\">\n\t\t\t\t\t\t\t\t\t<i class=\"icon icon-cancel\"></i>\n\t\t\t\t\t\t\t\t</button>\n\t\t\t\t\t\t\t\t<span class=\"ptSearch__icon ptSearch__icon--divider\" *ngIf=\"SearchInput\"></span>\n\t\t\t\t\t\t\t\t<button class=\"ptSearch__icon ptSearch__icon--search\" (click)=\"OnSearch()\">\n\t\t\t\t\t\t\t\t\t<i class=\"icon icon-search\"></i>\n\t\t\t\t\t\t\t\t</button>\n\t\t\t\t\t\t\t</p-inputicon>\n\t\t\t\t\t\t</p-iconfield>\n\t\t\t\t\t</div>\n\t\t\t\t}\n\t\t\t\t<!-- -->\n\t\t\t\t@if (AdditionalCentralTemplate) {\n\t\t\t\t\t<div class=\"prTableTools__new prTableTools__new--right\">\n\t\t\t\t\t\t<ng-container *ngTemplateOutlet=\"AdditionalCentralTemplate\"></ng-container>\n\t\t\t\t\t</div>\n\t\t\t\t}\n\t\t\t</div>\n\t\t</div>\n\t\t@if (AdditionalExtendedTemplate) {\n\t\t\t<div class=\"prTableTools justify-content-start\">\n\t\t\t\t<ng-container *ngTemplateOutlet=\"AdditionalExtendedTemplate\"></ng-container>\n\t\t\t</div>\n\t\t}\n\t}\n\t<p-table\n\t\tclass=\"prTable\"\n\t\t[ngClass]=\"ClassName\"\n\t\t[value]=\"FilteredList\"\n\t\tresponsiveLayout=\"scroll\"\n\t\t[sortField]=\"DefaultSortField\"\n\t\t[sortOrder]=\"SortOrder\"\n\t\t[scrollable]=\"scrollable\"\n\t\t[scrollHeight]=\"scrollable ? scrollHeight : 'auto'\"\n\t\t[tableStyle]=\"tableStyle\"\n\t>\n\t\t<!-- Cabecera con columnas agrupadas -->\n\t\t<ng-template pTemplate=\"header\">\n\t\t\t@for (level of Levels; track $index) {\n\t\t\t\t<tr>\n\t\t\t\t\t@for (col of ColumnGroupList; track $index) {\n\t\t\t\t\t\t@if (col.level === level) {\n\t\t\t\t\t\t\t<th [attr.colspan]=\"col.colspan\" [attr.rowspan]=\"col.rowspan\" [pSortableColumn]=\"col.sortable ? col.field : ''\" [style.min-width]=\"col.minWidth\" (click)=\"col.sortable && OnSort(col.field)\">\n\t\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t\t\t<span tooltipStyleClass=\"prTooltip\" F [pTooltip]=\"col.headerTooltip || col.header\" [tooltipPosition]=\"col.headerTooltipPosition || 'top'\">\n\t\t\t\t\t\t\t\t\t\t{{ col.header }}\n\t\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t\t\t<p-sortIcon *ngIf=\"col.sortable\" [field]=\"col.field\"></p-sortIcon>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</th>\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t@if (ShowCheckbox && level === 0 && ColumnGroupList.length != 0) {\n\t\t\t\t\t\t<th class=\"text-center\" style=\"width: 4%\" [attr.rowspan]=\"MaxLevel === 1 ? 2 : MaxLevel\">\n\t\t\t\t\t\t\t<p-tableHeaderCheckbox class=\"prCheckbox\" />\n\t\t\t\t\t\t</th>\n\t\t\t\t\t}\n\t\t\t\t</tr>\n\t\t\t}\n\n\t\t\t<tr>\n\t\t\t\t@for (col of ColumnList; track $index) {\n\t\t\t\t\t@if (col.showHeader) {\n\t\t\t\t\t\t<th\n\t\t\t\t\t\t\t[class]=\"col.className\"\n\t\t\t\t\t\t\t[pSortableColumn]=\"!col.isChecboxColumn && col.sortable ? col.field : ''\"\n\t\t\t\t\t\t\t[style.width]=\"col.width\"\n\t\t\t\t\t\t\t[style.min-width]=\"col.minWidth\"\n\t\t\t\t\t\t\t(click)=\"!col.isChecboxColumn && col.sortable && OnSort(col.field)\"\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t<div class=\"prTable__header\">\n\t\t\t\t\t\t\t\t<span tooltipStyleClass=\"prTooltip\" [pTooltip]=\"col.headerTooltip || col.header\" [tooltipPosition]=\"col.headerTooltipPosition || 'top'\">\n\t\t\t\t\t\t\t\t\t{{ col.header }}\n\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t\t@if (!col.showIndex) {\n\t\t\t\t\t\t\t\t\t<p-sortIcon *ngIf=\"col.sortable\" [field]=\"col.field\"></p-sortIcon>\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</th>\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t@if (ShowCheckbox && ColumnGroupList.length == 0) {\n\t\t\t\t\t<th class=\"text-center\" style=\"width: 4%\">\n\t\t\t\t\t\t<p-tableHeaderCheckbox class=\"prCheckbox\" />\n\t\t\t\t\t</th>\n\t\t\t\t}\n\t\t\t</tr>\n\n\t\t\t@if (FilteredList.length > 0 && RowResumenList.length > 0) {\n\t\t\t\t<tr class=\"fixedRow\">\n\t\t\t\t\t@for (col of RowResumenList; track $index) {\n\t\t\t\t\t\t<td [ngClass]=\"col.className\" [attr.colspan]=\"col.colspan\" [attr.rowspan]=\"col.rowspan\">\n\t\t\t\t\t\t\t@if (col.templateRef) {\n\t\t\t\t\t\t\t\t<span>\n\t\t\t\t\t\t\t\t\t<ng-container *ngTemplateOutlet=\"col.templateRef\"></ng-container>\n\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t</td>\n\t\t\t\t\t}\n\t\t\t\t</tr>\n\t\t\t}\n\t\t</ng-template>\n\n\t\t<!-- Cuerpo de la tabla -->\n\t\t<ng-template pTemplate=\"body\" let-rowData let-rowIndex=\"rowIndex\">\n\t\t\t<tr>\n\t\t\t\t@for (col of ColumnList; track $index) {\n\t\t\t\t\t<td [ngClass]=\"col.className\">\n\t\t\t\t\t\t@if (col.showIndex) {\n\t\t\t\t\t\t\t{{ rowIndex + 1 + (CurrentPage - 1) * RowsPerPage }}\n\t\t\t\t\t\t} @else {\n\t\t\t\t\t\t\t@if (col.templateRef) {\n\t\t\t\t\t\t\t\t<ng-container *ngTemplateOutlet=\"col.templateRef; context: { $implicit: rowData }\"></ng-container>\n\t\t\t\t\t\t\t} @else {\n\t\t\t\t\t\t\t\t<span class=\"text-breakWord\" tooltipStyleClass=\"prTooltip\" pTooltip=\"{{ col.tooltip }}\" tooltipPosition=\"{{ col.tooltipPosition }}\">\n\t\t\t\t\t\t\t\t\t{{ rowData[col.field] | formatCell: col.formatType }}\n\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t</td>\n\t\t\t\t}\n\t\t\t\t@if (ShowCheckbox) {\n\t\t\t\t\t<td class=\"text-center\">\n\t\t\t\t\t\t<p-tableCheckbox [value]=\"rowData\" class=\"prCheckbox\" />\n\t\t\t\t\t</td>\n\t\t\t\t}\n\t\t\t</tr>\n\t\t</ng-template>\n\n\t\t<!-- Mensaje cuando no hay datos -->\n\t\t<ng-template pTemplate=\"emptymessage\">\n\t\t\t<tr>\n\t\t\t\t<td [attr.colspan]=\"ColumnList.length + (ShowCheckbox ? 1 : 0)\" class=\"text-center\">\n\t\t\t\t\t{{ \"Nodata\" | term: GlobalTermService.languageCode }}\n\t\t\t\t</td>\n\t\t\t</tr>\n\t\t</ng-template>\n\t</p-table>\n\n\t<!-- <div class=\"prTableToolsBottom\"> -->\n\t<div class=\"d-flex justify-content-end\">\n\t\t@if (TotalRecords !== 0 && ShowPagination) {\n\t\t\t<div class=\"ptTablePaginator\">\n\t\t\t\t<p-paginator\n\t\t\t\t\tclass=\"prPaginator paginatorTableGA\"\n\t\t\t\t\t[first]=\"(CurrentPage - 1) * RowsPerPage\"\n\t\t\t\t\t[rows]=\"RowsPerPage\"\n\t\t\t\t\t[totalRecords]=\"TotalRecords\"\n\t\t\t\t\t(onPageChange)=\"OnPageChange($event)\"\n\t\t\t\t\t[showJumpToPageInput]=\"false\"\n\t\t\t\t\t[showCurrentPageReport]=\"false\"\n\t\t\t\t\t[showPageLinks]=\"false\"\n\t\t\t\t\t[showFirstLastIcon]=\"false\"\n\t\t\t\t\t[templateLeft]=\"templateLeft\"\n\t\t\t\t>\n\t\t\t\t\t<ng-template #previouspagelinkicon>\n\t\t\t\t\t\t<i class=\"icon icon-arrow-left paginatorArrowGA\"></i>\n\t\t\t\t\t</ng-template>\n\t\t\t\t\t<ng-template #nextpagelinkicon>\n\t\t\t\t\t\t<i class=\"icon icon-arrow-right paginatorArrowGA\"></i>\n\t\t\t\t\t</ng-template>\n\t\t\t\t\t<ng-template pTemplate=\"templateLeft\" let-state #templateLeft>\n\t\t\t\t\t\t<span>{{ \"ROWS_PER_PAGE\" | term: GlobalTermService.languageCode }}</span>\n\t\t\t\t\t\t<p-select\n\t\t\t\t\t\t\tpanelStyleClass=\"prSelect paginatorSelectTableGA\"\n\t\t\t\t\t\t\tclass=\"prSelect\"\n\t\t\t\t\t\t\t[options]=\"AllowedPageSizes\"\n\t\t\t\t\t\t\t[ngModel]=\"RowsPerPage\"\n\t\t\t\t\t\t\tappendTo=\"body\"\n\t\t\t\t\t\t\t(onChange)=\"OnRowsPerPageChange($event.value)\"\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t<span>\n\t\t\t\t\t\t\t{{ \"Page\" | term: GlobalTermService.languageCode }}\n\t\t\t\t\t\t\t<p-inputnumber class=\"p-paginator-jtp-input\" inputId=\"integeronly\" [(ngModel)]=\"CurrentPage\" [allowEmpty]=\"false\" [min]=\"1\" (keyup.enter)=\"onChangeSelectPage($event)\" />\n\t\t\t\t\t\t\t{{ \"Of\" | term: GlobalTermService.languageCode }} {{ TotalPages }}\n\t\t\t\t\t\t</span>\n\t\t\t\t\t</ng-template>\n\t\t\t\t</p-paginator>\n\t\t\t</div>\n\t\t}\n\t</div>\n</div>\n" }]
5792
6036
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }], propDecorators: { ComponentId: [{
5793
6037
  type: Input
5794
6038
  }], ShowRowPerPage: [{
@@ -6888,83 +7132,27 @@ class IntelicaCellCheckboxDirective {
6888
7132
  }
6889
7133
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: IntelicaCellCheckboxDirective, decorators: [{
6890
7134
  type: Directive,
6891
- args: [{
6892
- selector: "[intelicaCellCheckbox]",
6893
- standalone: true,
6894
- }]
6895
- }], ctorParameters: () => [{ type: TableComponent, decorators: [{
6896
- type: Optional
6897
- }, {
6898
- type: Host
6899
- }] }], propDecorators: { field: [{
6900
- type: Input,
6901
- args: ["intelicaCellCheckbox"]
6902
- }], row: [{
6903
- type: Input,
6904
- args: ["intelicaCellCheckboxRow"]
6905
- }], onNgModelChange: [{
6906
- type: HostListener,
6907
- args: ["ngModelChange", ["$event"]]
6908
- }], onPrimeChange: [{
6909
- type: HostListener,
6910
- args: ["onChange", ["$event"]]
6911
- }] } });
6912
-
6913
- /**
6914
- * Default configuration values for alerts.
6915
- */
6916
- const ALERT_DEFAULTS = {
6917
- buttonMode: AlertButtonMode.OK_ONLY,
6918
- showCloseButton: true,
6919
- buttons: {
6920
- confirmText: "Ok",
6921
- cancelText: "Cancelar",
6922
- },
6923
- };
6924
- /**
6925
- * Paths to custom SVG icons for alerts.
6926
- * Icons should be placed in: public/assets/icons/alerts/
6927
- */
6928
- const ALERT_ICON_PATHS = {
6929
- error: "/assets/icons/alerts/alert-error.svg",
6930
- // warning: "/assets/icons/alerts/alert-warning.svg",
6931
- // success: "/assets/icons/alerts/alert-success.svg",
6932
- };
6933
- /**
6934
- * InjectionToken to override the default icon CSS class per alert type.
6935
- * Provide a Partial<Record<AlertType, string>> to customize icons project-wide.
6936
- *
6937
- * Example (app.config.ts):
6938
- * { provide: ALERT_ICON_OVERRIDES, useValue: {
6939
- * [AlertType.SUCCESS]: 'icon icon-success',
6940
- * [AlertType.WARNING]: 'icon icon-warning',
6941
- * [AlertType.ERROR]: 'icon icon-alert',
6942
- * }}
6943
- */
6944
- const ALERT_ICON_OVERRIDES = new InjectionToken("ALERT_ICON_OVERRIDES");
6945
- /**
6946
- * Centralized configuration for each alert type using PrimeNG icons.
6947
- */
6948
- const ALERT_TYPE_CONFIG = {
6949
- [AlertType.WARNING]: {
6950
- titleColor: "#c27d00",
6951
- icon: "icon icon-warning",
6952
- iconBackgroundColor: "#fff3cd",
6953
- iconColor: "#c27d00",
6954
- },
6955
- [AlertType.SUCCESS]: {
6956
- titleColor: "#126629",
6957
- icon: "icon icon-success",
6958
- iconBackgroundColor: "#d4edda",
6959
- iconColor: "#126629",
6960
- },
6961
- [AlertType.ERROR]: {
6962
- titleColor: "#960d0d",
6963
- icon: "icon icon-alert",
6964
- iconBackgroundColor: "#f8d7da",
6965
- iconColor: "#960d0d",
6966
- },
6967
- };
7135
+ args: [{
7136
+ selector: "[intelicaCellCheckbox]",
7137
+ standalone: true,
7138
+ }]
7139
+ }], ctorParameters: () => [{ type: TableComponent, decorators: [{
7140
+ type: Optional
7141
+ }, {
7142
+ type: Host
7143
+ }] }], propDecorators: { field: [{
7144
+ type: Input,
7145
+ args: ["intelicaCellCheckbox"]
7146
+ }], row: [{
7147
+ type: Input,
7148
+ args: ["intelicaCellCheckboxRow"]
7149
+ }], onNgModelChange: [{
7150
+ type: HostListener,
7151
+ args: ["ngModelChange", ["$event"]]
7152
+ }], onPrimeChange: [{
7153
+ type: HostListener,
7154
+ args: ["onChange", ["$event"]]
7155
+ }] } });
6968
7156
 
6969
7157
  class PageInformation {
6970
7158
  pageTitle;
@@ -7368,241 +7556,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.23", ngImpo
7368
7556
  }]
7369
7557
  }] });
7370
7558
 
7371
- class AlertService {
7372
- confirmationService = inject(ConfirmationService);
7373
- iconOverrides = inject(ALERT_ICON_OVERRIDES, { optional: true });
7374
- DIALOG_KEY = "intelica-alert-dialog";
7375
- /**
7376
- * Displays a warning alert with yellow styling.
7377
- * Can be called with (title, subtitle, buttonMode, buttons) OR (title, subtitle, buttons).
7378
- */
7379
- warning(title, subtitle, modeOrButtons, buttons, size) {
7380
- const { buttonMode, buttonConfig } = this.resolveArgs(modeOrButtons, buttons);
7381
- return this.show({
7382
- type: AlertType.WARNING,
7383
- title,
7384
- subtitle,
7385
- buttonMode,
7386
- buttons: buttonConfig,
7387
- size,
7388
- });
7389
- }
7390
- /**
7391
- * Displays a success alert with green styling.
7392
- * Can be called with (title, subtitle, buttonMode, buttons) OR (title, subtitle, buttons).
7393
- */
7394
- success(title, subtitle, modeOrButtons, buttons, size) {
7395
- const { buttonMode, buttonConfig } = this.resolveArgs(modeOrButtons, buttons);
7396
- return this.show({
7397
- type: AlertType.SUCCESS,
7398
- title,
7399
- subtitle,
7400
- buttonMode,
7401
- buttons: buttonConfig,
7402
- size,
7403
- });
7404
- }
7405
- /**
7406
- * Displays an error alert with red styling.
7407
- * Can be called with (title, subtitle, buttonMode, buttons) OR (title, subtitle, buttons).
7408
- */
7409
- error(title, subtitle, modeOrButtons, buttons, size) {
7410
- const { buttonMode, buttonConfig } = this.resolveArgs(modeOrButtons, buttons);
7411
- return this.show({
7412
- type: AlertType.ERROR,
7413
- title,
7414
- subtitle,
7415
- buttonMode,
7416
- buttons: buttonConfig,
7417
- size,
7418
- });
7419
- }
7420
- /**
7421
- * Helper to resolve flexible arguments.
7422
- * If 3rd arg is object (not string enum), treat it as buttons config and default mode to OK_ONLY.
7423
- * If 3rd arg is string (enum), treat it as mode and 4th as buttons config.
7424
- */
7425
- resolveArgs(modeOrButtons, buttons) {
7426
- if (modeOrButtons && typeof modeOrButtons === "object") {
7427
- // USAGE: success(title, subtitle, { confirmText: 'Ok', cancelText: 'Cancel' })
7428
- // Auto-detect mode based on presence of cancelText
7429
- const hasCancel = !!modeOrButtons.cancelText;
7430
- return {
7431
- buttonMode: hasCancel ? AlertButtonMode.CONFIRM_CANCEL : AlertButtonMode.OK_ONLY,
7432
- buttonConfig: modeOrButtons,
7433
- };
7434
- }
7435
- // USAGE: success(title, subtitle, AlertButtonMode.CONFIRM_CANCEL, { ... })
7436
- // OR default
7437
- return {
7438
- buttonMode: modeOrButtons ?? AlertButtonMode.OK_ONLY,
7439
- buttonConfig: buttons,
7440
- };
7441
- }
7442
- message(message, type = AlertType.WARNING) {
7443
- return this.show({
7444
- type,
7445
- title: message,
7446
- buttonMode: AlertButtonMode.OK_ONLY,
7447
- });
7448
- }
7449
- confirm(title, subtitle, confirmText = "Confirmar", cancelText = "Cancelar", type = AlertType.WARNING, size) {
7450
- return this.show({
7451
- type,
7452
- title,
7453
- subtitle,
7454
- buttonMode: AlertButtonMode.CONFIRM_CANCEL,
7455
- buttons: { confirmText, cancelText },
7456
- size,
7457
- });
7458
- }
7459
- showHtml(title, htmlContent, type = AlertType.WARNING, buttonMode = AlertButtonMode.OK_ONLY) {
7460
- return this.show({
7461
- type,
7462
- title,
7463
- htmlContent,
7464
- buttonMode,
7465
- });
7466
- }
7467
- showWithStyles(config, styles) {
7468
- return this.show({
7469
- ...config,
7470
- styles,
7471
- });
7472
- }
7473
- show(config) {
7474
- return new Promise(resolve => {
7475
- const mergedConfig = this.mergeWithDefaults(config);
7476
- const typeConfig = ALERT_TYPE_CONFIG[mergedConfig.type];
7477
- // Prepare data object for the view
7478
- const data = {
7479
- config: mergedConfig,
7480
- typeConfig: typeConfig,
7481
- iconClass: this.getIconClass(mergedConfig, typeConfig),
7482
- iconBackgroundColor: this.getIconBackgroundColor(mergedConfig, typeConfig),
7483
- iconColor: this.getIconColor(mergedConfig, typeConfig),
7484
- titleColor: this.getTitleColor(mergedConfig, typeConfig),
7485
- showCancelButton: this.showCancelButton(mergedConfig),
7486
- confirmText: this.getConfirmText(mergedConfig),
7487
- cancelText: this.getCancelText(mergedConfig),
7488
- confirmButtonStyle: this.getConfirmButtonStyle(mergedConfig),
7489
- cancelButtonStyle: this.getCancelButtonStyle(mergedConfig),
7490
- // Add manual dismiss handler to data so template can call it if needed,
7491
- // though explicit close button in template can just use reject or logic.
7492
- // For custom headers/X buttons usually we initiate close.
7493
- };
7494
- const confirmation = {
7495
- key: this.DIALOG_KEY,
7496
- message: mergedConfig.subtitle,
7497
- header: mergedConfig.title,
7498
- icon: data.iconClass,
7499
- dismissableMask: true,
7500
- closeOnEscape: true,
7501
- accept: () => {
7502
- resolve({
7503
- isConfirmed: true,
7504
- isCancelled: false,
7505
- isDismissed: false,
7506
- });
7507
- },
7508
- reject: (type) => {
7509
- resolve({
7510
- isConfirmed: false,
7511
- isCancelled: true,
7512
- isDismissed: false,
7513
- });
7514
- },
7515
- };
7516
- // Cast to any to allow 'data' property if it doesn't exist on type
7517
- confirmation.data = data;
7518
- this.confirmationService.confirm(confirmation);
7519
- });
7520
- }
7521
- // Private Helper Methods (Presentation Logic)
7522
- mergeWithDefaults(config) {
7523
- return {
7524
- ...ALERT_DEFAULTS,
7525
- ...config,
7526
- buttons: {
7527
- ...ALERT_DEFAULTS.buttons,
7528
- ...config.buttons,
7529
- },
7530
- };
7531
- }
7532
- getIconClass(config, typeConfig) {
7533
- if (config?.customIcon) {
7534
- return config.customIcon;
7535
- }
7536
- if (config?.type && this.iconOverrides?.[config.type]) {
7537
- return this.iconOverrides[config.type];
7538
- }
7539
- return typeConfig?.icon ?? "pi pi-info-circle";
7540
- }
7541
- getIconBackgroundColor(config, typeConfig) {
7542
- if (config?.styles?.iconBackgroundColor) {
7543
- return config.styles.iconBackgroundColor;
7544
- }
7545
- return typeConfig?.iconBackgroundColor ?? "#e3f2fd";
7546
- }
7547
- getIconColor(config, typeConfig) {
7548
- if (config?.styles?.iconColor) {
7549
- return config.styles.iconColor;
7550
- }
7551
- return typeConfig?.iconColor ?? "#1976d2";
7552
- }
7553
- getTitleColor(config, typeConfig) {
7554
- if (config?.styles?.titleColor) {
7555
- return config.styles.titleColor;
7556
- }
7557
- return typeConfig?.titleColor ?? "#333";
7558
- }
7559
- showCancelButton(config) {
7560
- return config?.buttonMode === AlertButtonMode.CONFIRM_CANCEL;
7561
- }
7562
- getConfirmText(config) {
7563
- return config?.buttons?.confirmText ?? "Ok";
7564
- }
7565
- getCancelText(config) {
7566
- return config?.buttons?.cancelText ?? "Cancelar";
7567
- }
7568
- getConfirmButtonStyle(config) {
7569
- const styles = config?.styles;
7570
- const baseStyle = {
7571
- minWidth: "120px",
7572
- };
7573
- if (styles?.confirmButtonColor) {
7574
- baseStyle["backgroundColor"] = styles.confirmButtonColor;
7575
- baseStyle["borderColor"] = styles.confirmButtonColor;
7576
- }
7577
- if (styles?.confirmButtonTextColor) {
7578
- baseStyle["color"] = styles.confirmButtonTextColor;
7579
- }
7580
- return baseStyle;
7581
- }
7582
- getCancelButtonStyle(config) {
7583
- const styles = config?.styles;
7584
- const baseStyle = {
7585
- minWidth: "120px",
7586
- };
7587
- if (styles?.cancelButtonColor) {
7588
- baseStyle["backgroundColor"] = styles.cancelButtonColor;
7589
- baseStyle["borderColor"] = styles.cancelButtonColor;
7590
- }
7591
- if (styles?.cancelButtonTextColor) {
7592
- baseStyle["color"] = styles.cancelButtonTextColor;
7593
- }
7594
- return baseStyle;
7595
- }
7596
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: AlertService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
7597
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: AlertService, providedIn: "root" });
7598
- }
7599
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: AlertService, decorators: [{
7600
- type: Injectable,
7601
- args: [{
7602
- providedIn: "root",
7603
- }]
7604
- }] });
7605
-
7606
7559
  class LanguageService {
7607
7560
  _http = inject(HttpClient);
7608
7561
  _configService = inject(ConfigService);
@@ -9325,5 +9278,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.23", ngImpo
9325
9278
  * Generated bundle index. Do not edit.
9326
9279
  */
9327
9280
 
9328
- export { ALERT_DEFAULTS, ALERT_ICON_OVERRIDES, ALERT_ICON_PATHS, ALERT_TYPE_CONFIG, ActionDirective, ActionsMenuComponent, AddFavoritesComponent, AlertButtonMode, AlertService, AlertType, BreadCrumbComponent, ButtonSplitComponent, CheckboxFilterDirective, ClientContextSelector, CloseSessionService, Color, ColumnComponent, ColumnGroupComponent, CompareByField, ConfigService, CookieAttributesGeneral, DATEPICKER_BUTTON_TYPES, DashboardQsComponent, DashboardQsInteractiveComponent, DataDirective, DateFilterDirective, DateModeOptions, DatepickerComponent, DynamicInputValidation, EchartComponent, EchartService, ElementService, EmailInputValidation, ErrorInterceptor, FeatureFlagService, FilterChipsComponent, FiltersComponent, FormatAmountPipe, GetCookieAttributes, GlobalFavoriteService, GlobalFeatureFlagService, GlobalMenuService, GlobalTermService, GoogleTaskManagerService, HtmlToExcelService, InitializeConfigService, InputValidation, IntelicaAlertComponent, IntelicaCellCheckboxDirective, IntelicaSessionService, ItemSplitDirective, LanguageService, MatrixColumnComponent, MatrixColumnGroupComponent, MatrixTableComponent, ModalDialogComponent, MultiSelectComponent, NotificationJobService, NotificationOrchestratorService, NotificationService, NotificationSignalRService, OrderConstants, PageInformation, PageRootChildGuard, PaginatorComponent, Patterns, PopoverComponent, ProfileService, QuicksightEventName, RecordPerPageComponent, RequestCacheService, ResponseHeadersInterceptor, RowResumenComponent, RowResumenTreeComponent, SearchComponent, SelectDetailFilterDirective, SelectFilterDirective, SetsesioninformationComponent, Shared, SharedService, SkeletonChartComponent, SkeletonComponent, SkeletonService, SkeletonTableComponent, SortingComponent, SpinnerComponent, SpinnerService, SweetAlertService, TableComponent, TableFetchComponent, TableSortOrder, TemplateDirective, TemplateMenuComponent, TermPipe, TermService, TextAreaFilterDirective, TextFilterDirective, TextRangeFilterDirective, TitleComponent, TreeColumnComponent, TreeColumnGroupComponent, TreeTableComponent, TruncatePipe, decryptData, dispatchQuicksightEvent, encryptData, getColor, isQuicksightSessionExpiredEvent };
9281
+ export { ALERT_DEFAULTS, ALERT_ICON_OVERRIDES, ALERT_ICON_PATHS, ALERT_TYPE_CONFIG, ActionDirective, ActionsMenuComponent, AddFavoritesComponent, AlertButtonMode, AlertService, AlertType, BreadCrumbComponent, ButtonSplitComponent, CheckboxFilterDirective, ClientContextSelector, CloseSessionService, Color, ColumnComponent, ColumnGroupComponent, CompareByField, ConfigService, CookieAttributesGeneral, DATEPICKER_BUTTON_TYPES, DashboardQsComponent, DashboardQsInteractiveComponent, DataDirective, DateFilterDirective, DateModeOptions, DatepickerComponent, DynamicInputValidation, EchartComponent, EchartService, ElementService, EmailInputValidation, ErrorInterceptor, FeatureFlagService, FilterChipsComponent, FiltersComponent, FormatAmountPipe, GetCookieAttributes, GlobalFavoriteService, GlobalFeatureFlagService, GlobalMenuService, GlobalTermService, GoogleTaskManagerService, HtmlToExcelService, InitializeConfigService, InputValidation, IntelicaAlertComponent, IntelicaCellCheckboxDirective, IntelicaSessionService, ItemSplitDirective, LanguageService, MatrixColumnComponent, MatrixColumnGroupComponent, MatrixTableComponent, ModalDialogComponent, MultiSelectComponent, NotificationJobService, NotificationOrchestratorService, NotificationService, NotificationSignalRService, OrderConstants, PageInformation, PageRootChildGuard, PaginatorComponent, Patterns, PopoverComponent, ProfileService, QuicksightEventName, RecordPerPageComponent, RequestCacheService, ResponseHeadersInterceptor, RowResumenComponent, RowResumenTreeComponent, SearchComponent, SelectDetailFilterDirective, SelectFilterDirective, SetsesioninformationComponent, Shared, SharedService, SkeletonChartComponent, SkeletonComponent, SkeletonService, SkeletonTableComponent, SortingComponent, SpinnerComponent, SpinnerService, TableComponent, TableFetchComponent, TableSortOrder, TemplateDirective, TemplateMenuComponent, TermPipe, TermService, TextAreaFilterDirective, TextFilterDirective, TextRangeFilterDirective, TitleComponent, TreeColumnComponent, TreeColumnGroupComponent, TreeTableComponent, TruncatePipe, decryptData, dispatchQuicksightEvent, encryptData, getColor, isQuicksightSessionExpiredEvent };
9329
9282
  //# sourceMappingURL=intelica-library-components.mjs.map