n8n-nodes-customje 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE.md ADDED
@@ -0,0 +1,19 @@
1
+ Copyright 2022 n8n
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
4
+ this software and associated documentation files (the "Software"), to deal in
5
+ the Software without restriction, including without limitation the rights to
6
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7
+ of the Software, and to permit persons to whom the Software is furnished to do
8
+ so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,47 @@
1
+ # Customje API For Newbie
2
+
3
+ ![npm version](https://img.shields.io/npm/v/n8n-nodes-customje)
4
+ ![npm downloads](https://img.shields.io/npm/dm/n8n-nodes-customje)
5
+ ![license](https://img.shields.io/npm/l/n8n-nodes-customje)
6
+
7
+ <p align="center">
8
+ <img src="https://api.customje.com/file/actions-customje.jpg" alt="Actions Image">
9
+ </p>
10
+
11
+
12
+ This is an n8n community node. It lets you use Customje API in your n8n workflows.
13
+
14
+ ## Description
15
+
16
+ [n8n](https://n8n.io/) is a [fair-code licensed](https://docs.n8n.io/reference/license/) workflow automation platform.
17
+
18
+ ## Table of Contents
19
+
20
+ - [Installation](#installation)
21
+ - [Prerequisites](#prerequisites)
22
+ - [Operations](#operations)
23
+ - [Credentials Setup](#credentials-setup)
24
+ - [Usage Examples](#usage-examples)
25
+ - [API Reference](#api-reference)
26
+ - [Troubleshooting](#troubleshooting)
27
+ - [Resources](#resources)
28
+
29
+ ## Installation
30
+
31
+ Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes/installation/) in the n8n community nodes documentation.
32
+
33
+ ## Operations
34
+ The following operations are supported by the App node:
35
+
36
+ #### Personal
37
+ - [ ✅] Extract Content
38
+
39
+
40
+
41
+
42
+ **INFO** : To obtain a CustomJe API Key, please visit https://customje.com .If you need a complete video tutorial on how to build an AI WhatsApp chatbot, visit [Whop Tuan Pakya](https://whop.com/tuanpakya).
43
+
44
+
45
+ ## Resources
46
+
47
+ * [n8n community nodes documentation](https://docs.n8n.io/integrations/community-nodes/)
@@ -0,0 +1,7 @@
1
+ import type { ICredentialType, INodeProperties } from 'n8n-workflow';
2
+ export declare class AppCustomApi implements ICredentialType {
3
+ name: string;
4
+ displayName: string;
5
+ documentationUrl: string;
6
+ properties: INodeProperties[];
7
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AppCustomApi = void 0;
4
+ class AppCustomApi {
5
+ constructor() {
6
+ this.name = 'appCustomApi';
7
+ this.displayName = 'Wasenderapi API';
8
+ this.documentationUrl = 'https://api.customje.com/';
9
+ this.properties = [];
10
+ }
11
+ }
12
+ exports.AppCustomApi = AppCustomApi;
13
+ //# sourceMappingURL=AppCustomApi.credentials.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AppCustomApi.credentials.js","sourceRoot":"","sources":["../../credentials/AppCustomApi.credentials.ts"],"names":[],"mappings":";;;AAEA,MAAa,YAAY;IAAzB;QACC,SAAI,GAAG,cAAc,CAAC;QACtB,gBAAW,GAAG,iBAAiB,CAAC;QAC7B,qBAAgB,GAAG,2BAA2B,CAAC;QAC/C,eAAU,GAAsB,EAAE,CAAC;IACvC,CAAC;CAAA;AALD,oCAKC"}
@@ -0,0 +1,5 @@
1
+ import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
2
+ export declare class App implements INodeType {
3
+ description: INodeTypeDescription;
4
+ execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
5
+ }
@@ -0,0 +1,96 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.App = void 0;
4
+ const n8n_workflow_1 = require("n8n-workflow");
5
+ const GenericFunctions_1 = require("./GenericFunctions");
6
+ const ModuleDetails_1 = require("./ModuleDetails");
7
+ class App {
8
+ constructor() {
9
+ this.description = {
10
+ displayName: 'Wasenderapi',
11
+ name: 'app',
12
+ icon: 'file:app.svg',
13
+ group: ['transform'],
14
+ version: 1,
15
+ subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
16
+ description: 'Custom operations',
17
+ defaults: {
18
+ name: 'Wasenderapi',
19
+ },
20
+ inputs: ['main'],
21
+ outputs: ['main'],
22
+ credentials: [
23
+ {
24
+ name: 'appCustomApi',
25
+ required: false,
26
+ },
27
+ ],
28
+ properties: [
29
+ {
30
+ displayName: 'Resource',
31
+ name: 'resource',
32
+ type: 'options',
33
+ noDataExpression: true,
34
+ options: [
35
+ {
36
+ name: 'Action',
37
+ value: 'actions',
38
+ },
39
+ ],
40
+ default: 'actions',
41
+ },
42
+ ...ModuleDetails_1.sendTextOperations,
43
+ ...ModuleDetails_1.sendTextFields,
44
+ ],
45
+ };
46
+ }
47
+ async execute() {
48
+ const items = this.getInputData();
49
+ const returnData = [];
50
+ let operation;
51
+ let resource;
52
+ let body;
53
+ for (let i = 0; i < items.length; i++) {
54
+ try {
55
+ body = {};
56
+ resource = this.getNodeParameter('resource', i);
57
+ operation = this.getNodeParameter('operation', i);
58
+ if (resource === 'actions') {
59
+ if (operation === 'send-text') {
60
+ const apiKey = this.getNodeParameter('apiKey', i);
61
+ const wasenderApikey = this.getNodeParameter('wasenderApikey', i);
62
+ const to = this.getNodeParameter('to', i);
63
+ const text = this.getNodeParameter('text', i);
64
+ body = {
65
+ api_key: apiKey,
66
+ wasender_apikey: wasenderApikey,
67
+ to: to,
68
+ text: text,
69
+ };
70
+ const response = await GenericFunctions_1.appCustomApiRequest.call(this, 'POST', 'https://api.customje.com/wsa-send-text.php', body);
71
+ returnData.push(response);
72
+ continue;
73
+ }
74
+ else {
75
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), `The operation "${operation}" is not implemented yet!`, { itemIndex: i });
76
+ }
77
+ }
78
+ else {
79
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), `The resource "${resource}" is not known!`, {
80
+ itemIndex: i,
81
+ });
82
+ }
83
+ }
84
+ catch (error) {
85
+ if (this.continueOnFail()) {
86
+ returnData.push({ error: error.message });
87
+ continue;
88
+ }
89
+ throw error;
90
+ }
91
+ }
92
+ return [this.helpers.returnJsonArray(returnData)];
93
+ }
94
+ }
95
+ exports.App = App;
96
+ //# sourceMappingURL=App.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"App.node.js","sourceRoot":"","sources":["../../../nodes/App/App.node.ts"],"names":[],"mappings":";;;AAOA,+CAAkD;AAElD,yDAAyD;AACzD,mDAAqE;AAErE,MAAa,GAAG;IAAhB;QACI,gBAAW,GAAyB;YAChC,WAAW,EAAE,aAAa;YAC1B,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,cAAc;YACpB,KAAK,EAAE,CAAC,WAAW,CAAC;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,8DAA8D;YACxE,WAAW,EAAE,mBAAmB;YAChC,QAAQ,EAAE;gBACN,IAAI,EAAE,aAAa;aACtB;YACD,MAAM,EAAE,CAAC,MAAM,CAAQ;YACvB,OAAO,EAAE,CAAC,MAAM,CAAQ;YACxB,WAAW,EAAE;gBACT;oBACI,IAAI,EAAE,cAAc;oBACpB,QAAQ,EAAE,KAAK;iBAClB;aACJ;YACD,UAAU,EAAE;gBASR;oBACI,WAAW,EAAE,UAAU;oBACvB,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,SAAS;oBACf,gBAAgB,EAAE,IAAI;oBACtB,OAAO,EAAE;wBACL;4BACI,IAAI,EAAE,QAAQ;4BACd,KAAK,EAAE,SAAS;yBACnB;qBACJ;oBACD,OAAO,EAAE,SAAS;iBACrB;gBAID,GAAG,kCAAkB;gBAIrB,GAAG,8BAAc;aACpB;SACJ,CAAC;IAgEN,CAAC;IA9DG,KAAK,CAAC,OAAO;QACT,MAAM,KAAK,GAAG,IAAI,CAAC,YAAY,EAAE,CAAC;QAClC,MAAM,UAAU,GAAkB,EAAE,CAAC;QAErC,IAAI,SAAiB,CAAC;QACtB,IAAI,QAAgB,CAAC;QACrB,IAAI,IAAiB,CAAC;QAEtB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;YACnC,IAAI;gBACA,IAAI,GAAG,EAAE,CAAC;gBACV,QAAQ,GAAG,IAAI,CAAC,gBAAgB,CAAC,UAAU,EAAE,CAAC,CAAC,CAAC;gBAChD,SAAS,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC;gBAElD,IAAI,QAAQ,KAAK,SAAS,EAAE;oBACxB,IAAI,SAAS,KAAK,WAAW,EAAE;wBAE3B,MAAM,MAAM,GAAG,IAAI,CAAC,gBAAgB,CAAC,QAAQ,EAAE,CAAC,CAAW,CAAC;wBAC5D,MAAM,cAAc,GAAG,IAAI,CAAC,gBAAgB,CAAC,gBAAgB,EAAE,CAAC,CAAW,CAAC;wBAC5E,MAAM,EAAE,GAAG,IAAI,CAAC,gBAAgB,CAAC,IAAI,EAAE,CAAC,CAAW,CAAC;wBACpD,MAAM,IAAI,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,CAAC,CAAW,CAAC;wBAGxD,IAAI,GAAG;4BACH,OAAO,EAAE,MAAM;4BACf,eAAe,EAAE,cAAc;4BAC/B,EAAE,EAAE,EAAE;4BACN,IAAI,EAAE,IAAI;yBACb,CAAC;wBAGF,MAAM,QAAQ,GAAG,MAAM,sCAAmB,CAAC,IAAI,CAC3C,IAAI,EACJ,MAAM,EACN,4CAA4C,EAC5C,IAAI,CACP,CAAC;wBAEF,UAAU,CAAC,IAAI,CAAC,QAAuB,CAAC,CAAC;wBACzC,SAAS;qBACZ;yBAAM;wBACH,MAAM,IAAI,iCAAkB,CACxB,IAAI,CAAC,OAAO,EAAE,EACd,kBAAkB,SAAS,2BAA2B,EACtD,EAAE,SAAS,EAAE,CAAC,EAAE,CACnB,CAAC;qBACL;iBACJ;qBAAM;oBACH,MAAM,IAAI,iCAAkB,CAAC,IAAI,CAAC,OAAO,EAAE,EAAE,iBAAiB,QAAQ,iBAAiB,EAAE;wBACrF,SAAS,EAAE,CAAC;qBACf,CAAC,CAAC;iBACN;aACJ;YAAC,OAAO,KAAK,EAAE;gBACZ,IAAI,IAAI,CAAC,cAAc,EAAE,EAAE;oBACvB,UAAU,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,KAAK,CAAC,OAAO,EAAE,CAAC,CAAC;oBAC1C,SAAS;iBACZ;gBACD,MAAM,KAAK,CAAC;aACf;SACJ;QACD,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,UAAU,CAAC,CAAC,CAAC;IACtD,CAAC;CACJ;AAnHD,kBAmHC"}
@@ -0,0 +1,21 @@
1
+ {
2
+ "node": "n8n-nodes-base.App",
3
+ "nodeVersion": "1.0",
4
+ "codexVersion": "1.0",
5
+ "categories": [
6
+ "Communication",
7
+ "Development"
8
+ ],
9
+ "resources": {
10
+ "credentialDocumentation": [
11
+ {
12
+ "url": "https://api.customje.com/"
13
+ }
14
+ ],
15
+ "primaryDocumentation": [
16
+ {
17
+ "url": "https://api.customje.com/"
18
+ }
19
+ ]
20
+ }
21
+ }
@@ -0,0 +1,2 @@
1
+ import type { IExecuteFunctions, IHookFunctions, IDataObject, IHttpRequestMethods } from 'n8n-workflow';
2
+ export declare function appCustomApiRequest(this: IHookFunctions | IExecuteFunctions, method: IHttpRequestMethods, endpoint: string, body: IDataObject, baseUrl?: string, headers?: IDataObject): Promise<any>;
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.appCustomApiRequest = void 0;
4
+ async function appCustomApiRequest(method, endpoint, body, baseUrl, headers) {
5
+ const options = {
6
+ method,
7
+ body,
8
+ uri: baseUrl ? `${baseUrl}/${endpoint}` : endpoint,
9
+ json: true,
10
+ headers: headers || {},
11
+ };
12
+ return await this.helpers.request.call(this, options);
13
+ }
14
+ exports.appCustomApiRequest = appCustomApiRequest;
15
+ //# sourceMappingURL=GenericFunctions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GenericFunctions.js","sourceRoot":"","sources":["../../../nodes/App/GenericFunctions.ts"],"names":[],"mappings":";;;AAYO,KAAK,UAAU,mBAAmB,CAErC,MAA2B,EAC3B,QAAgB,EAChB,IAAiB,EACjB,OAAgB,EAChB,OAAqB;IAErB,MAAM,OAAO,GAAoB;QAC7B,MAAM;QACN,IAAI;QACJ,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,GAAG,OAAO,IAAI,QAAQ,EAAE,CAAC,CAAC,CAAC,QAAQ;QAClD,IAAI,EAAE,IAAI;QACV,OAAO,EAAE,OAAO,IAAI,EAAE;KACzB,CAAC;IAEF,OAAO,MAAM,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;AAC1D,CAAC;AAjBD,kDAiBC"}
@@ -0,0 +1,3 @@
1
+ import type { INodeProperties } from 'n8n-workflow';
2
+ export declare const sendTextOperations: INodeProperties[];
3
+ export declare const sendTextFields: INodeProperties[];
@@ -0,0 +1,96 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.sendTextFields = exports.sendTextOperations = void 0;
4
+ exports.sendTextOperations = [
5
+ {
6
+ displayName: 'Operation',
7
+ name: 'operation',
8
+ type: 'options',
9
+ noDataExpression: true,
10
+ displayOptions: {
11
+ show: {
12
+ resource: ['actions'],
13
+ },
14
+ },
15
+ options: [
16
+ {
17
+ name: 'Send Text',
18
+ value: 'send-text',
19
+ description: 'Send a text message to WhatsApp number',
20
+ action: 'Send a text message',
21
+ },
22
+ ],
23
+ default: 'send-text',
24
+ },
25
+ ];
26
+ exports.sendTextFields = [
27
+ {
28
+ displayName: 'API Key',
29
+ name: 'apiKey',
30
+ type: 'string',
31
+ typeOptions: {
32
+ password: true,
33
+ },
34
+ displayOptions: {
35
+ show: {
36
+ resource: ['actions'],
37
+ operation: ['send-text'],
38
+ },
39
+ },
40
+ default: '',
41
+ placeholder: 'ak_abc',
42
+ description: 'API key for authentication',
43
+ required: true,
44
+ },
45
+ {
46
+ displayName: 'Wasender API Key',
47
+ name: 'wasenderApikey',
48
+ type: 'string',
49
+ typeOptions: {
50
+ password: true,
51
+ },
52
+ displayOptions: {
53
+ show: {
54
+ resource: ['actions'],
55
+ operation: ['send-text'],
56
+ },
57
+ },
58
+ default: '',
59
+ placeholder: '79379ea4cda2',
60
+ required: true,
61
+ },
62
+ {
63
+ displayName: 'To',
64
+ name: 'to',
65
+ type: 'string',
66
+ displayOptions: {
67
+ show: {
68
+ resource: ['actions'],
69
+ operation: ['send-text'],
70
+ },
71
+ },
72
+ default: '',
73
+ placeholder: '+60123456789',
74
+ description: 'WhatsApp number to send message to (with country code and +)',
75
+ required: true,
76
+ },
77
+ {
78
+ displayName: 'Text',
79
+ name: 'text',
80
+ type: 'string',
81
+ typeOptions: {
82
+ rows: 4,
83
+ },
84
+ displayOptions: {
85
+ show: {
86
+ resource: ['actions'],
87
+ operation: ['send-text'],
88
+ },
89
+ },
90
+ default: '',
91
+ placeholder: 'Hello World!',
92
+ description: 'Text message content to send',
93
+ required: true,
94
+ },
95
+ ];
96
+ //# sourceMappingURL=ModuleDetails.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ModuleDetails.js","sourceRoot":"","sources":["../../../nodes/App/ModuleDetails.ts"],"names":[],"mappings":";;;AAEa,QAAA,kBAAkB,GAAsB;IACjD;QACI,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,gBAAgB,EAAE,IAAI;QACtB,cAAc,EAAE;YACZ,IAAI,EAAE;gBACF,QAAQ,EAAE,CAAC,SAAS,CAAC;aACxB;SACJ;QACD,OAAO,EAAE;YACL;gBACI,IAAI,EAAE,WAAW;gBACjB,KAAK,EAAE,WAAW;gBAClB,WAAW,EAAE,wCAAwC;gBACrD,MAAM,EAAE,qBAAqB;aAChC;SACJ;QACD,OAAO,EAAE,WAAW;KACvB;CACJ,CAAC;AAEW,QAAA,cAAc,GAAsB;IAE7C;QACI,WAAW,EAAE,SAAS;QACtB,IAAI,EAAE,QAAQ;QACd,IAAI,EAAE,QAAQ;QACd,WAAW,EAAE;YACT,QAAQ,EAAE,IAAI;SACjB;QACD,cAAc,EAAE;YACZ,IAAI,EAAE;gBACF,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,WAAW,CAAC;aAC3B;SACJ;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,QAAQ;QACrB,WAAW,EAAE,4BAA4B;QACzC,QAAQ,EAAE,IAAI;KACjB;IAED;QACI,WAAW,EAAE,kBAAkB;QAC/B,IAAI,EAAE,gBAAgB;QACtB,IAAI,EAAE,QAAQ;QACd,WAAW,EAAE;YACT,QAAQ,EAAE,IAAI;SACjB;QACD,cAAc,EAAE;YACZ,IAAI,EAAE;gBACF,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,WAAW,CAAC;aAC3B;SACJ;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,cAAc;QAC3B,QAAQ,EAAE,IAAI;KACjB;IAED;QACI,WAAW,EAAE,IAAI;QACjB,IAAI,EAAE,IAAI;QACV,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACZ,IAAI,EAAE;gBACF,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,WAAW,CAAC;aAC3B;SACJ;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,cAAc;QAC3B,WAAW,EAAE,8DAA8D;QAC3E,QAAQ,EAAE,IAAI;KACjB;IAED;QACI,WAAW,EAAE,MAAM;QACnB,IAAI,EAAE,MAAM;QACZ,IAAI,EAAE,QAAQ;QACd,WAAW,EAAE;YACT,IAAI,EAAE,CAAC;SACV;QACD,cAAc,EAAE;YACZ,IAAI,EAAE;gBACF,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,WAAW,CAAC;aAC3B;SACJ;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,cAAc;QAC3B,WAAW,EAAE,8BAA8B;QAC3C,QAAQ,EAAE,IAAI;KACjB;CACJ,CAAC"}
@@ -0,0 +1,88 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Generator: https://ezgif.com/png-to-svg -->
3
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1667" height="1667">
4
+ <path d="M0 0 C0.69 -0 1.39 -0 2.1 -0.01 C4.42 -0.01 6.74 -0.01 9.05 -0 C10.74 -0.01 12.43 -0.01 14.12 -0.01 C18.77 -0.02 23.42 -0.01 28.07 -0.01 C33.13 -0.01 38.19 -0.02 43.24 -0.02 C53.27 -0.03 63.31 -0.03 73.34 -0.03 C85.36 -0.03 97.37 -0.04 109.39 -0.05 C137.74 -0.06 166.1 -0.07 194.45 -0.07 C208.88 -0.08 223.31 -0.08 237.74 -0.08 C284.03 -0.1 330.32 -0.11 376.61 -0.11 C378.82 -0.11 381.04 -0.11 383.25 -0.11 C387.69 -0.11 392.12 -0.11 396.56 -0.11 C401.75 -0.11 406.95 -0.11 412.14 -0.11 C413.63 -0.11 415.12 -0.11 416.6 -0.11 C464.34 -0.12 512.07 -0.13 559.81 -0.15 C594.11 -0.17 628.41 -0.19 662.71 -0.19 C663.77 -0.19 663.77 -0.19 664.85 -0.19 C680.35 -0.19 695.84 -0.19 711.34 -0.2 C716.89 -0.2 722.43 -0.2 727.98 -0.2 C729.36 -0.2 730.73 -0.2 732.11 -0.2 C754.07 -0.2 776.04 -0.21 798 -0.22 C820.74 -0.24 843.48 -0.24 866.23 -0.23 C879.34 -0.23 892.44 -0.23 905.55 -0.25 C914.31 -0.26 923.07 -0.26 931.83 -0.25 C936.82 -0.24 941.81 -0.24 946.79 -0.25 C951.34 -0.26 955.89 -0.26 960.44 -0.25 C962.06 -0.25 963.69 -0.25 965.31 -0.26 C980.54 -0.33 995.63 1.45 1010.26 5.82 C1011.12 6.07 1011.99 6.32 1012.88 6.58 C1021.85 9.32 1030.29 12.99 1038.69 17.13 C1039.36 17.45 1040.02 17.77 1040.7 18.1 C1065.03 30.07 1085.63 48.41 1101.69 70.13 C1102.12 70.7 1102.54 71.27 1102.98 71.85 C1121.15 96.59 1133.81 129.47 1133.82 160.43 C1133.82 161.48 1133.82 161.48 1133.83 162.54 C1133.83 164.85 1133.83 167.17 1133.82 169.49 C1133.83 171.18 1133.83 172.87 1133.83 174.55 C1133.84 179.21 1133.84 183.86 1133.83 188.51 C1133.83 193.56 1133.84 198.62 1133.84 203.68 C1133.85 213.71 1133.85 223.74 1133.85 233.78 C1133.85 245.79 1133.86 257.81 1133.87 269.82 C1133.88 298.18 1133.89 326.53 1133.89 354.89 C1133.9 369.31 1133.9 383.74 1133.9 398.17 C1133.92 444.46 1133.93 490.76 1133.93 537.05 C1133.93 539.26 1133.93 541.47 1133.93 543.68 C1133.93 548.12 1133.93 552.56 1133.93 556.99 C1133.93 562.19 1133.93 567.38 1133.93 572.58 C1133.93 574.06 1133.93 575.55 1133.93 577.04 C1133.94 624.77 1133.95 672.51 1133.98 720.24 C1133.99 754.54 1134.01 788.85 1134.01 823.15 C1134.01 824.21 1134.01 824.21 1134.01 825.29 C1134.01 840.78 1134.02 856.28 1134.02 871.77 C1134.02 877.32 1134.02 882.87 1134.02 888.41 C1134.02 889.79 1134.02 891.17 1134.02 892.55 C1134.02 914.51 1134.03 936.47 1134.04 958.43 C1134.06 981.17 1134.06 1003.92 1134.05 1026.66 C1134.05 1039.77 1134.05 1052.88 1134.07 1065.98 C1134.08 1074.74 1134.08 1083.5 1134.07 1092.27 C1134.06 1097.25 1134.06 1102.24 1134.07 1107.23 C1134.08 1111.78 1134.08 1116.33 1134.07 1120.87 C1134.07 1122.5 1134.07 1124.12 1134.08 1125.75 C1134.15 1141.03 1132.35 1156.14 1127.94 1170.82 C1127.69 1171.69 1127.43 1172.56 1127.17 1173.46 C1124.66 1181.67 1121.48 1189.43 1117.69 1197.13 C1117.35 1197.82 1117.02 1198.52 1116.67 1199.24 C1104.29 1224.36 1086.22 1245.52 1063.69 1262.13 C1062.84 1262.76 1062.84 1262.76 1061.97 1263.41 C1037.24 1281.59 1004.36 1294.24 973.39 1294.26 C972.35 1294.26 972.35 1294.26 971.28 1294.26 C968.97 1294.26 966.65 1294.26 964.33 1294.26 C962.64 1294.26 960.95 1294.26 959.27 1294.27 C954.62 1294.27 949.96 1294.27 945.31 1294.27 C940.26 1294.27 935.2 1294.27 930.14 1294.28 C920.11 1294.28 910.08 1294.29 900.05 1294.29 C888.03 1294.29 876.01 1294.3 864 1294.3 C835.64 1294.32 807.29 1294.32 778.93 1294.33 C764.51 1294.33 750.08 1294.33 735.65 1294.34 C689.36 1294.35 643.07 1294.36 596.77 1294.37 C594.56 1294.37 592.35 1294.37 590.14 1294.37 C585.7 1294.37 581.26 1294.37 576.83 1294.37 C571.63 1294.37 566.44 1294.37 561.24 1294.37 C559.76 1294.37 558.27 1294.37 556.78 1294.37 C509.05 1294.37 461.31 1294.39 413.58 1294.41 C379.28 1294.43 344.97 1294.44 310.67 1294.45 C309.61 1294.45 309.61 1294.45 308.53 1294.45 C293.04 1294.45 277.54 1294.45 262.05 1294.45 C256.5 1294.45 250.96 1294.45 245.41 1294.45 C244.03 1294.45 242.65 1294.45 241.27 1294.45 C219.31 1294.45 197.35 1294.46 175.39 1294.48 C152.65 1294.49 129.9 1294.5 107.16 1294.49 C94.05 1294.48 80.94 1294.49 67.84 1294.5 C59.08 1294.51 50.32 1294.51 41.56 1294.5 C36.57 1294.5 31.58 1294.5 26.59 1294.51 C22.04 1294.52 17.5 1294.52 12.95 1294.5 C11.32 1294.5 9.7 1294.5 8.07 1294.51 C-7.15 1294.58 -22.24 1292.8 -36.87 1288.44 C-37.73 1288.19 -38.6 1287.93 -39.49 1287.67 C-48.46 1284.94 -56.91 1281.27 -65.31 1277.13 C-65.97 1276.81 -66.63 1276.48 -67.31 1276.15 C-91.65 1264.18 -112.25 1245.84 -128.31 1224.13 C-128.73 1223.56 -129.16 1222.99 -129.59 1222.4 C-147.77 1197.67 -160.42 1164.79 -160.43 1133.82 C-160.44 1133.13 -160.44 1132.43 -160.44 1131.72 C-160.44 1129.4 -160.44 1127.08 -160.44 1124.77 C-160.44 1123.08 -160.44 1121.39 -160.44 1119.7 C-160.45 1115.05 -160.45 1110.4 -160.45 1105.75 C-160.45 1100.69 -160.45 1095.64 -160.46 1090.58 C-160.46 1080.55 -160.47 1070.51 -160.47 1060.48 C-160.47 1048.46 -160.47 1036.45 -160.48 1024.43 C-160.5 996.08 -160.5 967.72 -160.51 939.37 C-160.51 924.94 -160.51 910.51 -160.52 896.08 C-160.53 849.79 -160.54 803.5 -160.54 757.21 C-160.54 755 -160.54 752.78 -160.54 750.57 C-160.55 746.13 -160.55 741.7 -160.55 737.26 C-160.55 732.07 -160.55 726.87 -160.55 721.68 C-160.55 720.19 -160.55 718.71 -160.55 717.22 C-160.55 669.48 -160.57 621.75 -160.59 574.01 C-160.61 539.71 -160.62 505.41 -160.63 471.11 C-160.63 470.05 -160.63 470.05 -160.63 468.97 C-160.63 453.47 -160.63 437.98 -160.63 422.48 C-160.63 416.94 -160.63 411.39 -160.63 405.85 C-160.63 404.47 -160.63 403.09 -160.63 401.71 C-160.63 379.75 -160.64 357.79 -160.66 335.82 C-160.67 313.08 -160.68 290.34 -160.67 267.59 C-160.66 254.49 -160.67 241.38 -160.68 228.27 C-160.69 219.51 -160.69 210.75 -160.68 201.99 C-160.68 197 -160.67 192.01 -160.69 187.03 C-160.7 182.48 -160.7 177.93 -160.68 173.38 C-160.68 171.76 -160.68 170.13 -160.69 168.51 C-160.76 153.28 -158.98 138.2 -154.62 123.57 C-154.37 122.7 -154.11 121.83 -153.85 120.94 C-151.12 111.97 -147.45 103.53 -143.31 95.13 C-142.98 94.47 -142.66 93.8 -142.33 93.12 C-130.36 68.79 -112.02 48.19 -90.31 32.13 C-89.74 31.7 -89.17 31.28 -88.58 30.84 C-63.85 12.67 -30.97 0.01 0 0 Z " fill="#100F14" transform="translate(347.3068102002144,186.87234950065613)"/>
5
+ <path d="M0 0 C16.9 -0.12 33.8 -0.2 50.69 -0.26 C58.54 -0.28 66.39 -0.32 74.23 -0.38 C81.07 -0.43 87.91 -0.46 94.74 -0.47 C98.36 -0.48 101.99 -0.49 105.61 -0.53 C109.65 -0.57 113.69 -0.57 117.73 -0.57 C119.53 -0.59 119.53 -0.59 121.38 -0.62 C123.02 -0.61 123.02 -0.61 124.7 -0.6 C125.66 -0.61 126.62 -0.61 127.6 -0.62 C130 0 130 0 131.8 2.4 C133.47 6.02 133.66 9.04 134 13 C134.66 13 135.32 13 136 13 C139.97 24.21 139.97 24.21 140.88 29.75 C142.09 36.5 144.79 42.77 147.27 49.13 C150.34 57 152.89 64.87 155.07 73.03 C155.89 76.14 155.89 76.14 158 79 C158.52 81.3 158.97 83.62 159.38 85.94 C161.14 95.37 164.05 104.07 168.06 112.79 C170.29 118.02 171.69 123.49 172.86 129.04 C174.15 134.9 175.86 140.63 177.56 146.38 C178.04 147.99 178.04 147.99 178.52 149.64 C180.19 155.34 180.19 155.34 182 161 C182.66 161.33 183.32 161.66 184 162 C184.86 158.64 185.62 155.26 186.38 151.88 C188.34 143.34 190.85 135.17 194 127 C194.33 126.01 194.66 125.02 195 124 C195.66 124 196.32 124 197 124 C197.13 122.71 197.13 122.71 197.26 121.39 C198.15 113.94 199.7 107.55 202.57 100.63 C204.61 95.44 206.22 90.13 207.86 84.8 C209.2 80.44 210.65 76.17 212.28 71.91 C213.42 68.88 214.42 65.82 215.44 62.75 C215.87 61.45 216.3 60.15 216.73 58.86 C217.04 57.89 217.04 57.89 217.37 56.91 C218.34 53.96 219.33 51.01 220.31 48.06 C220.64 47.08 220.96 46.11 221.3 45.1 C221.65 44.06 221.65 44.06 222 43 C222.66 43 223.32 43 224 43 C224.36 41.21 224.36 41.21 224.73 39.38 C227.81 24.63 227.81 24.63 230.99 18.36 C232.69 14.38 233.65 10.16 234.69 5.96 C235.91 1.09 235.91 1.09 237 0 C238.4 -0.1 239.81 -0.12 241.22 -0.12 C242.13 -0.12 243.04 -0.12 243.98 -0.12 C244.98 -0.12 245.99 -0.12 247.03 -0.11 C248.08 -0.11 249.13 -0.11 250.22 -0.11 C253.72 -0.11 257.22 -0.11 260.72 -0.1 C263.14 -0.1 265.56 -0.09 267.98 -0.09 C274.37 -0.09 280.75 -0.08 287.13 -0.07 C293.64 -0.06 300.15 -0.05 306.66 -0.05 C319.44 -0.04 332.22 -0.02 345 0 C346.45 2.69 347.13 4.62 347.75 7.69 C348.75 12.48 350.3 17.02 351.94 21.62 C352.32 22.7 352.32 22.7 352.7 23.8 C353.9 27.13 355.16 30.38 356.57 33.63 C357.93 36.83 358.97 39.98 359.94 43.31 C361.65 49.03 363.73 54.49 366 60 C367.63 64.23 368.22 67.47 368 72 C368.66 72 369.32 72 370 72 C370.19 72.54 370.37 73.08 370.56 73.63 C374.95 86.35 374.95 86.35 379.69 98.94 C382.62 106.42 384.91 114.08 387.06 121.81 C388.52 126.75 390.32 131.49 392.44 136.19 C394.37 140.6 395.66 145.21 397.04 149.82 C397.69 151.96 398.38 154.1 399.12 156.21 C400 159 400 159 400 162 C400.99 162 401.98 162 403 162 C403.16 160.97 403.16 160.97 403.33 159.91 C404.26 154.44 405.47 149.37 407.34 144.15 C408.37 140.79 408.68 137.49 409 134 C409.66 134 410.32 134 411 134 C411.11 132.85 411.23 131.69 411.35 130.5 C411.9 126.12 413.05 122.12 414.44 117.94 C414.87 116.59 415.31 115.25 415.75 113.9 C416.06 112.93 416.06 112.93 416.39 111.94 C417.32 108.98 418.16 105.99 419 103 C419.33 102.01 419.66 101.02 420 100 C420.99 100 421.98 100 423 100 C423.05 99.42 423.1 98.84 423.15 98.24 C423.6 93.52 424.44 89.49 426 85 C426.31 83.49 426.6 81.98 426.88 80.46 C427.94 75.03 429.44 69.79 431.06 64.5 C431.33 63.61 431.6 62.72 431.88 61.8 C433.85 55.3 433.85 55.3 435 53 C435.66 53 436.32 53 437 53 C437.12 52.43 437.24 51.86 437.37 51.28 C437.53 50.51 437.7 49.73 437.88 48.94 C438.04 48.18 438.2 47.43 438.37 46.65 C440.07 39.53 442.43 32.65 444.78 25.72 C445.95 22.17 446.99 18.6 448 15 C448.68 12.71 449.37 10.41 450.06 8.12 C450.4 6.99 450.75 5.86 451.1 4.7 C452 2 452 2 453 1 C454.67 0.9 456.34 0.88 458.02 0.88 C459.1 0.88 460.19 0.88 461.31 0.88 C462.51 0.88 463.72 0.88 464.96 0.89 C466.21 0.89 467.47 0.89 468.77 0.89 C472.23 0.89 475.69 0.89 479.15 0.9 C482.76 0.9 486.38 0.91 489.99 0.91 C496.83 0.91 503.68 0.92 510.53 0.93 C518.32 0.94 526.11 0.94 533.9 0.95 C549.93 0.96 565.97 0.98 582 1 C581.39 6.22 580.61 10.76 578.88 15.75 C578.66 16.38 578.45 17 578.23 17.65 C576.92 21.44 575.57 25.22 574.22 29 C573.6 30.73 572.99 32.46 572.38 34.19 C572.07 35.04 571.77 35.9 571.45 36.78 C569.56 42.19 567.95 47.57 566.8 53.2 C566.09 55.67 565.23 57.75 564.15 60.07 C561.63 65.6 559.96 71.31 558.25 77.12 C555.55 86.1 552.71 95.02 549.62 103.88 C549.29 104.84 548.96 105.8 548.61 106.79 C546.26 113.48 546.26 113.48 544.91 116.15 C543.86 118.29 543.74 119.88 543.62 122.25 C543.24 126.38 542.09 129.17 540.11 132.77 C537.23 138.55 535.43 144.97 533.94 151.25 C532.92 155.3 531.49 159.11 530 163 C525.51 174.67 525.51 174.67 521.71 186.58 C520.6 190.35 519.28 194.04 517.96 197.75 C517.19 200.37 516.65 202.82 516.17 205.49 C514.87 212.24 512.6 218.64 510.38 225.12 C509.74 226.99 509.74 226.99 509.1 228.89 C508.07 231.93 507.04 234.97 506 238 C505.34 238 504.68 238 504 238 C503.74 239.13 503.74 239.13 503.48 240.27 C502.05 246.32 500.32 251.93 497.9 257.64 C497.04 259.9 496.51 262.01 496.06 264.38 C495.33 268.1 494.08 271.33 492.56 274.81 C490.34 279.9 488.91 284.88 487.77 290.31 C487 293 487 293 485.53 295.31 C483.12 299.54 482.58 304.13 481.71 308.88 C480.33 315.78 478.11 320.16 475 327 C426.82 327 378.64 327 329 327 C327.35 322.05 325.7 317.1 324 312 C322.14 307.45 322.14 307.45 320.23 302.92 C318.56 298.97 317.05 294.97 315.53 290.96 C314.3 287.76 313.03 284.57 311.75 281.38 C311.35 280.37 310.95 279.36 310.54 278.33 C309.74 276.32 308.93 274.31 308.12 272.31 C306.13 267.29 304.57 262.47 303.51 257.18 C302.59 253.28 301.02 249.63 299.5 245.94 C297.73 241.63 296.03 237.42 294.97 232.88 C294 228.99 292.63 225.65 291 222 C289.9 219.26 288.85 216.51 287.81 213.75 C287.4 212.69 287.4 212.69 286.99 211.61 C285.85 208.6 285 206.24 285 203 C284.34 203 283.68 203 283 203 C282.85 202.22 282.71 201.45 282.55 200.65 C281.24 194.32 279.58 188.25 277.19 182.25 C276.5 180.49 276.5 180.49 275.79 178.7 C274.21 175.68 274.21 175.68 270.8 175.11 C269.88 175.07 268.95 175.04 268 175 C269.79 182.4 271.73 189.73 274 197 C274.66 197 275.32 197 276 197 C276.3 197.84 276.6 198.68 276.9 199.54 C278.01 202.64 279.11 205.75 280.22 208.85 C280.7 210.2 281.17 211.54 281.65 212.89 C282.34 214.82 283.03 216.75 283.71 218.68 C284.13 219.84 284.54 221 284.97 222.2 C285.91 224.91 285.91 224.91 287 227 C287.93 234.07 285.56 238.76 282.41 245.05 C281.27 247.43 280.49 249.43 280 252 C279.34 252 278.68 252 278 252 C277.87 252.73 277.73 253.45 277.6 254.2 C277.04 256.82 276.31 259.24 275.44 261.77 C275.14 262.66 274.83 263.55 274.52 264.46 C273.89 266.31 273.25 268.15 272.62 269.99 C270.92 274.96 269.52 279.85 268.45 284.99 C267.83 287.77 266.89 290.4 265.88 293.06 C265.52 294 265.17 294.94 264.8 295.91 C264.54 296.6 264.27 297.29 264 298 C263.34 298 262.68 298 262 298 C261.75 299.24 261.5 300.48 261.25 301.75 C259.95 307.65 257.99 313.3 256 319 C255.34 319 254.68 319 254 319 C253.78 320.7 253.78 320.7 253.56 322.44 C253 326 253 326 252 327 C250.15 327.1 248.3 327.12 246.45 327.12 C245.25 327.12 244.04 327.12 242.8 327.12 C241.45 327.12 240.11 327.12 238.76 327.11 C237.35 327.11 235.94 327.11 234.53 327.11 C230.7 327.11 226.86 327.11 223.02 327.1 C219.02 327.1 215.01 327.09 211.01 327.09 C203.42 327.09 195.83 327.08 188.24 327.07 C179.6 327.06 170.96 327.06 162.32 327.05 C144.55 327.04 126.77 327.02 109 327 C108.16 325.11 107.34 323.22 106.52 321.33 C106.06 320.28 105.6 319.22 105.12 318.14 C103.58 313.83 103.62 310.53 104 306 C103.01 305.67 102.02 305.34 101 305 C101 304.34 101 303.68 101 303 C100.34 303 99.68 303 99 303 C97.87 299.38 96.74 295.75 95.62 292.12 C95.31 291.11 94.99 290.1 94.66 289.05 C92.94 283.45 91.54 277.92 90.47 272.16 C89.86 269.34 88.84 266.86 87.62 264.25 C85.2 258.72 83.52 253.16 81.99 247.32 C81.13 244.44 80.06 241.8 78.84 239.06 C77 234.54 75.64 229.84 74.19 225.19 C73.48 222.94 72.76 220.69 72.05 218.44 C71.7 217.34 71.35 216.24 70.99 215.11 C69.66 210.94 68.27 206.78 66.88 202.62 C64.54 195.68 62.31 188.71 60.12 181.72 C58.38 176.17 56.56 170.65 54.66 165.15 C54 163 54 163 54 161 C53.34 161 52.68 161 52 161 C50.46 156.67 48.93 152.33 47.41 147.99 C46.89 146.52 46.37 145.05 45.85 143.58 C43.02 135.62 40.48 127.99 39.44 119.57 C38.53 114.23 36.06 109.38 33.88 104.46 C33 102 33 102 33 98 C32.34 98 31.68 98 31 98 C30.32 96.13 29.66 94.25 29 92.38 C28.63 91.33 28.26 90.29 27.88 89.21 C27 85.98 26.84 83.33 27 80 C26.34 80 25.68 80 25 80 C21.98 72.2 19.63 64.99 18.46 56.68 C17.93 53.57 16.99 50.86 15.8 47.95 C14.88 45.7 14.09 43.43 13.31 41.12 C13.06 40.39 12.81 39.65 12.55 38.88 C12 37 12 37 12 35 C11.34 35 10.68 35 10 35 C3.23 14.66 3.23 14.66 2 4 C1.34 4 0.68 4 0 4 C0 2.68 0 1.36 0 0 Z " fill="#FCFCFC" transform="translate(405,670)"/>
6
+ <path d="M0 0 C1.67 -0 3.33 -0 5 -0.01 C9.48 -0.01 13.96 -0 18.44 0.01 C23.14 0.02 27.83 0.01 32.53 0.01 C40.41 0.01 48.28 0.02 56.16 0.04 C65.27 0.05 74.38 0.06 83.49 0.06 C92.27 0.06 101.04 0.06 109.82 0.07 C113.55 0.07 117.29 0.08 121.02 0.08 C125.4 0.08 129.79 0.08 134.17 0.09 C135.78 0.1 137.39 0.1 139.01 0.1 C141.2 0.1 143.39 0.1 145.58 0.11 C146.81 0.11 148.03 0.11 149.3 0.11 C152.03 0.24 152.03 0.24 153.03 1.24 C153.12 2.61 153.15 3.98 153.15 5.35 C153.15 6.68 153.15 6.68 153.15 8.03 C153.15 9.01 153.14 9.99 153.14 11 C153.14 12.02 153.14 13.04 153.14 14.1 C153.14 17.5 153.13 20.91 153.12 24.31 C153.12 26.66 153.12 29.01 153.12 31.37 C153.12 37.57 153.11 43.78 153.1 49.99 C153.08 56.31 153.08 62.64 153.08 68.97 C153.06 81.39 153.05 93.82 153.03 106.24 C152.32 106.25 151.61 106.25 150.89 106.25 C133.67 106.31 116.45 106.39 99.23 106.48 C90.9 106.52 82.57 106.56 74.24 106.59 C66.98 106.61 59.72 106.65 52.46 106.69 C48.62 106.72 44.77 106.73 40.93 106.74 C37.31 106.75 33.68 106.77 30.06 106.8 C28.11 106.81 26.16 106.81 24.22 106.81 C11.74 106.86 11.74 106.86 0.79 112.09 C-6.65 119.84 -6.43 129.02 -6.97 139.24 C-5.98 139.57 -4.99 139.9 -3.97 140.24 C-2.96 141.95 -1.95 143.65 -1 145.4 C1.16 149.28 2.83 151.77 7.03 153.43 C8.51 153.83 8.51 153.83 10.03 154.24 C10.93 154.75 10.93 154.75 11.86 155.27 C16.92 157.54 23.39 156.97 28.64 155.52 C33.87 153.35 38.41 150.47 41.03 145.24 C41.69 145.24 42.35 145.24 43.03 145.24 C43.08 141.87 43.12 138.49 43.15 135.12 C43.18 133.69 43.18 133.69 43.2 132.24 C43.24 127.21 43.2 122.89 41.03 118.24 C39.06 117.09 39.06 117.09 37.03 116.24 C35.9 114.19 35.9 114.19 35.03 112.24 C46.74 112.01 58.44 111.83 70.15 111.72 C75.59 111.67 81.03 111.6 86.47 111.49 C91.72 111.38 96.97 111.32 102.22 111.29 C104.22 111.28 106.22 111.24 108.22 111.19 C123.87 110.78 123.87 110.78 129.22 114.41 C131.5 116.92 133.28 119.34 135.03 122.24 C135.92 123.42 136.82 124.59 137.73 125.75 C142.44 132.85 145.33 139.16 147.17 147.48 C147.84 150.41 148.64 153.04 149.6 155.87 C151.48 162.04 151.52 168.03 151.46 174.43 C151.46 175.62 151.45 176.8 151.45 178.02 C151.3 186.78 150.59 195.14 147.03 203.24 C146.37 203.57 145.71 203.9 145.03 204.24 C144.29 206.16 143.56 208.07 142.86 210 C138.54 221.6 131.27 229.44 121.7 236.98 C119.02 239.07 119.02 239.07 117.4 241.45 C115.79 243.55 114.79 243.95 112.28 244.68 C109.31 245.54 107.25 246.78 104.82 248.64 C100.87 251.54 96.79 253.01 92.15 254.49 C87.21 255.75 87.21 255.75 83.03 258.24 C81.22 258.6 79.41 258.9 77.59 259.18 C73.82 259.77 70.12 260.44 66.4 261.31 C48.04 264.9 28.38 263.39 9.73 263.38 C5.41 263.37 1.09 263.38 -3.23 263.38 C-10.46 263.38 -17.69 263.38 -24.93 263.37 C-33.29 263.37 -41.66 263.37 -50.03 263.38 C-57.23 263.38 -64.44 263.38 -71.64 263.38 C-75.94 263.38 -80.23 263.38 -84.53 263.38 C-88.55 263.38 -92.57 263.38 -96.59 263.37 C-98.07 263.37 -99.55 263.37 -101.03 263.38 C-103.03 263.38 -105.04 263.37 -107.05 263.37 C-108.74 263.37 -108.74 263.37 -110.46 263.37 C-112.97 263.24 -112.97 263.24 -113.97 262.24 C-114.07 260.84 -114.1 259.43 -114.1 258.03 C-114.1 257.12 -114.11 256.21 -114.11 255.28 C-114.11 254.27 -114.11 253.27 -114.1 252.23 C-114.1 251.18 -114.11 250.13 -114.11 249.04 C-114.11 245.55 -114.11 242.05 -114.11 238.56 C-114.11 236.14 -114.11 233.72 -114.11 231.3 C-114.11 226.23 -114.11 221.15 -114.1 216.08 C-114.1 209.56 -114.1 203.04 -114.11 196.52 C-114.11 191.52 -114.11 186.53 -114.11 181.53 C-114.11 179.13 -114.11 176.72 -114.11 174.32 C-114.11 170.96 -114.11 167.61 -114.1 164.25 C-114.11 163.25 -114.11 162.25 -114.11 161.21 C-114.1 159.85 -114.1 159.85 -114.1 158.46 C-114.1 157.66 -114.1 156.87 -114.1 156.05 C-113.97 154.24 -113.97 154.24 -112.97 153.24 C-111.29 153.15 -109.59 153.13 -107.9 153.13 C-106.82 153.13 -105.74 153.13 -104.63 153.13 C-102.86 153.14 -102.86 153.14 -101.06 153.15 C-99.87 153.15 -98.67 153.15 -97.44 153.15 C-93.59 153.16 -89.75 153.17 -85.91 153.18 C-83.31 153.19 -80.72 153.19 -78.12 153.19 C-71.74 153.21 -65.36 153.22 -58.97 153.24 C-59.63 151.26 -60.29 149.28 -60.97 147.24 C-61.89 147.22 -62.81 147.2 -63.76 147.18 C-67.17 147.1 -70.58 147.02 -74 146.93 C-75.47 146.89 -76.95 146.85 -78.43 146.82 C-80.55 146.78 -82.68 146.72 -84.8 146.66 C-86.08 146.63 -87.36 146.59 -88.67 146.56 C-91.73 146.27 -93.52 146.05 -95.97 144.24 C-97.22 140.62 -97.22 140.62 -97.97 137.24 C-98.63 137.24 -99.29 137.24 -99.97 137.24 C-100.77 135.7 -101.56 134.16 -102.35 132.62 C-102.79 131.76 -103.23 130.9 -103.68 130.02 C-106.18 124.65 -107.47 119.23 -108.54 113.43 C-109.02 108.97 -109.02 108.97 -110.97 105.24 C-112.38 87.45 -111.31 70.29 -102.97 54.24 C-102.64 53.58 -102.31 52.92 -101.97 52.24 C-101.31 52.24 -100.65 52.24 -99.97 52.24 C-99.71 51.03 -99.44 49.81 -99.16 48.56 C-96.73 41.2 -91.12 35.83 -85.97 30.24 C-85.34 29.54 -84.7 28.83 -84.05 28.1 C-63.11 5.91 -29.15 -0.11 0 0 Z " fill="#FBFBFB" transform="translate(1103.9736328125,734.757080078125)"/>
7
+ <path d="M0 0 C0.69 -0 1.39 -0 2.1 -0.01 C4.42 -0.01 6.74 -0.01 9.05 -0 C10.74 -0.01 12.43 -0.01 14.12 -0.01 C18.77 -0.02 23.42 -0.01 28.07 -0.01 C33.13 -0.01 38.19 -0.02 43.24 -0.02 C53.27 -0.03 63.31 -0.03 73.34 -0.03 C85.36 -0.03 97.37 -0.04 109.39 -0.05 C137.74 -0.06 166.1 -0.07 194.45 -0.07 C208.88 -0.08 223.31 -0.08 237.74 -0.08 C284.03 -0.1 330.32 -0.11 376.61 -0.11 C378.82 -0.11 381.04 -0.11 383.25 -0.11 C387.69 -0.11 392.12 -0.11 396.56 -0.11 C401.75 -0.11 406.95 -0.11 412.14 -0.11 C413.63 -0.11 415.12 -0.11 416.6 -0.11 C464.34 -0.12 512.07 -0.13 559.81 -0.15 C594.11 -0.17 628.41 -0.19 662.71 -0.19 C663.77 -0.19 663.77 -0.19 664.85 -0.19 C680.35 -0.19 695.84 -0.19 711.34 -0.2 C716.89 -0.2 722.43 -0.2 727.98 -0.2 C729.36 -0.2 730.73 -0.2 732.11 -0.2 C754.07 -0.2 776.04 -0.21 798 -0.22 C820.74 -0.24 843.48 -0.24 866.23 -0.23 C879.34 -0.23 892.44 -0.23 905.55 -0.25 C914.31 -0.26 923.07 -0.26 931.83 -0.25 C936.82 -0.24 941.81 -0.24 946.79 -0.25 C951.34 -0.26 955.89 -0.26 960.44 -0.25 C962.06 -0.25 963.69 -0.25 965.31 -0.26 C980.54 -0.33 995.63 1.45 1010.26 5.82 C1011.12 6.07 1011.99 6.32 1012.88 6.58 C1021.85 9.32 1030.29 12.99 1038.69 17.13 C1039.36 17.45 1040.02 17.77 1040.7 18.1 C1065.03 30.07 1085.63 48.41 1101.69 70.13 C1102.12 70.7 1102.54 71.27 1102.98 71.85 C1121.15 96.59 1133.81 129.47 1133.82 160.43 C1133.82 161.48 1133.82 161.48 1133.83 162.54 C1133.83 164.85 1133.83 167.17 1133.82 169.49 C1133.83 171.18 1133.83 172.87 1133.83 174.55 C1133.84 179.21 1133.84 183.86 1133.83 188.51 C1133.83 193.56 1133.84 198.62 1133.84 203.68 C1133.85 213.71 1133.85 223.74 1133.85 233.78 C1133.85 245.79 1133.86 257.81 1133.87 269.82 C1133.88 298.18 1133.89 326.53 1133.89 354.89 C1133.9 369.31 1133.9 383.74 1133.9 398.17 C1133.92 444.46 1133.93 490.76 1133.93 537.05 C1133.93 539.26 1133.93 541.47 1133.93 543.68 C1133.93 548.12 1133.93 552.56 1133.93 556.99 C1133.93 562.19 1133.93 567.38 1133.93 572.58 C1133.93 574.06 1133.93 575.55 1133.93 577.04 C1133.94 624.77 1133.95 672.51 1133.98 720.24 C1133.99 754.54 1134.01 788.85 1134.01 823.15 C1134.01 824.21 1134.01 824.21 1134.01 825.29 C1134.01 840.78 1134.02 856.28 1134.02 871.77 C1134.02 877.32 1134.02 882.87 1134.02 888.41 C1134.02 889.79 1134.02 891.17 1134.02 892.55 C1134.02 914.51 1134.03 936.47 1134.04 958.43 C1134.06 981.17 1134.06 1003.92 1134.05 1026.66 C1134.05 1039.77 1134.05 1052.88 1134.07 1065.98 C1134.08 1074.74 1134.08 1083.5 1134.07 1092.27 C1134.06 1097.25 1134.06 1102.24 1134.07 1107.23 C1134.08 1111.78 1134.08 1116.33 1134.07 1120.87 C1134.07 1122.5 1134.07 1124.12 1134.08 1125.75 C1134.15 1141.03 1132.35 1156.14 1127.94 1170.82 C1127.69 1171.69 1127.43 1172.56 1127.17 1173.46 C1124.66 1181.67 1121.48 1189.43 1117.69 1197.13 C1117.35 1197.82 1117.02 1198.52 1116.67 1199.24 C1104.29 1224.36 1086.22 1245.52 1063.69 1262.13 C1062.84 1262.76 1062.84 1262.76 1061.97 1263.41 C1037.24 1281.59 1004.36 1294.24 973.39 1294.26 C972.35 1294.26 972.35 1294.26 971.28 1294.26 C968.97 1294.26 966.65 1294.26 964.33 1294.26 C962.64 1294.26 960.95 1294.26 959.27 1294.27 C954.62 1294.27 949.96 1294.27 945.31 1294.27 C940.26 1294.27 935.2 1294.27 930.14 1294.28 C920.11 1294.28 910.08 1294.29 900.05 1294.29 C888.03 1294.29 876.01 1294.3 864 1294.3 C835.64 1294.32 807.29 1294.32 778.93 1294.33 C764.51 1294.33 750.08 1294.33 735.65 1294.34 C689.36 1294.35 643.07 1294.36 596.77 1294.37 C594.56 1294.37 592.35 1294.37 590.14 1294.37 C585.7 1294.37 581.26 1294.37 576.83 1294.37 C571.63 1294.37 566.44 1294.37 561.24 1294.37 C559.76 1294.37 558.27 1294.37 556.78 1294.37 C509.05 1294.37 461.31 1294.39 413.58 1294.41 C379.28 1294.43 344.97 1294.44 310.67 1294.45 C309.61 1294.45 309.61 1294.45 308.53 1294.45 C293.04 1294.45 277.54 1294.45 262.05 1294.45 C256.5 1294.45 250.96 1294.45 245.41 1294.45 C244.03 1294.45 242.65 1294.45 241.27 1294.45 C219.31 1294.45 197.35 1294.46 175.39 1294.48 C152.65 1294.49 129.9 1294.5 107.16 1294.49 C94.05 1294.48 80.94 1294.49 67.84 1294.5 C59.08 1294.51 50.32 1294.51 41.56 1294.5 C36.57 1294.5 31.58 1294.5 26.59 1294.51 C22.04 1294.52 17.5 1294.52 12.95 1294.5 C11.32 1294.5 9.7 1294.5 8.07 1294.51 C-7.15 1294.58 -22.24 1292.8 -36.87 1288.44 C-37.73 1288.19 -38.6 1287.93 -39.49 1287.67 C-48.46 1284.94 -56.91 1281.27 -65.31 1277.13 C-65.97 1276.81 -66.63 1276.48 -67.31 1276.15 C-91.65 1264.18 -112.25 1245.84 -128.31 1224.13 C-128.73 1223.56 -129.16 1222.99 -129.59 1222.4 C-147.77 1197.67 -160.42 1164.79 -160.43 1133.82 C-160.44 1133.13 -160.44 1132.43 -160.44 1131.72 C-160.44 1129.4 -160.44 1127.08 -160.44 1124.77 C-160.44 1123.08 -160.44 1121.39 -160.44 1119.7 C-160.45 1115.05 -160.45 1110.4 -160.45 1105.75 C-160.45 1100.69 -160.45 1095.64 -160.46 1090.58 C-160.46 1080.55 -160.47 1070.51 -160.47 1060.48 C-160.47 1048.46 -160.47 1036.45 -160.48 1024.43 C-160.5 996.08 -160.5 967.72 -160.51 939.37 C-160.51 924.94 -160.51 910.51 -160.52 896.08 C-160.53 849.79 -160.54 803.5 -160.54 757.21 C-160.54 755 -160.54 752.78 -160.54 750.57 C-160.55 746.13 -160.55 741.7 -160.55 737.26 C-160.55 732.07 -160.55 726.87 -160.55 721.68 C-160.55 720.19 -160.55 718.71 -160.55 717.22 C-160.55 669.48 -160.57 621.75 -160.59 574.01 C-160.61 539.71 -160.62 505.41 -160.63 471.11 C-160.63 470.05 -160.63 470.05 -160.63 468.97 C-160.63 453.47 -160.63 437.98 -160.63 422.48 C-160.63 416.94 -160.63 411.39 -160.63 405.85 C-160.63 404.47 -160.63 403.09 -160.63 401.71 C-160.63 379.75 -160.64 357.79 -160.66 335.82 C-160.67 313.08 -160.68 290.34 -160.67 267.59 C-160.66 254.49 -160.67 241.38 -160.68 228.27 C-160.69 219.51 -160.69 210.75 -160.68 201.99 C-160.68 197 -160.67 192.01 -160.69 187.03 C-160.7 182.48 -160.7 177.93 -160.68 173.38 C-160.68 171.76 -160.68 170.13 -160.69 168.51 C-160.76 153.28 -158.98 138.2 -154.62 123.57 C-154.37 122.7 -154.11 121.83 -153.85 120.94 C-151.12 111.97 -147.45 103.53 -143.31 95.13 C-142.98 94.47 -142.66 93.8 -142.33 93.12 C-130.36 68.79 -112.02 48.19 -90.31 32.13 C-89.74 31.7 -89.17 31.28 -88.58 30.84 C-63.85 12.67 -30.97 0.01 0 0 Z M-29.24 5.38 C-30.09 5.59 -30.93 5.81 -31.8 6.03 C-45.74 9.73 -58.64 15.27 -71.31 22.13 C-71.93 22.47 -72.56 22.81 -73.21 23.15 C-112.64 44.77 -140.73 82.74 -153.62 125.38 C-156.92 137.74 -159.43 150.56 -159.44 163.38 C-159.44 164.06 -159.44 164.75 -159.44 165.46 C-159.45 167.75 -159.44 170.05 -159.44 172.34 C-159.44 174.02 -159.45 175.69 -159.45 177.36 C-159.45 181.97 -159.45 186.58 -159.45 191.18 C-159.45 196.19 -159.46 201.2 -159.47 206.21 C-159.47 216.15 -159.48 226.09 -159.48 236.03 C-159.48 247.93 -159.49 259.84 -159.5 271.74 C-159.52 300.52 -159.53 329.29 -159.54 358.07 C-159.54 367.6 -159.55 377.14 -159.55 386.67 C-159.55 387.34 -159.55 388.01 -159.55 388.71 C-159.55 391.43 -159.55 394.15 -159.56 396.87 C-159.57 443.44 -159.59 490.01 -159.6 536.57 C-159.6 540.23 -159.6 543.89 -159.6 547.55 C-159.6 548.27 -159.6 549 -159.6 549.74 C-159.6 557.09 -159.6 564.44 -159.6 571.79 C-159.6 573.27 -159.6 574.74 -159.6 576.21 C-159.61 623.51 -159.63 670.81 -159.67 718.11 C-159.69 752.1 -159.71 786.09 -159.72 820.07 C-159.72 820.77 -159.72 821.47 -159.72 822.2 C-159.72 837.56 -159.72 852.92 -159.72 868.29 C-159.72 874.47 -159.72 880.65 -159.73 886.83 C-159.73 887.51 -159.73 888.19 -159.73 888.88 C-159.73 910.64 -159.74 932.4 -159.76 954.15 C-159.78 976.69 -159.79 999.24 -159.78 1021.78 C-159.78 1034.76 -159.78 1047.75 -159.8 1060.73 C-159.82 1069.42 -159.82 1078.1 -159.8 1086.79 C-159.8 1091.73 -159.79 1096.67 -159.81 1101.61 C-159.9 1127.7 -159.61 1153.35 -150.31 1178.13 C-150.03 1178.89 -149.76 1179.65 -149.48 1180.43 C-141.24 1203.23 -128.99 1222.55 -112.31 1240.13 C-111.61 1240.87 -111.61 1240.87 -110.91 1241.63 C-83 1271.34 -41.87 1291.79 -0.74 1293.25 C1.08 1293.26 1.08 1293.26 2.94 1293.26 C3.63 1293.26 4.32 1293.26 5.02 1293.26 C7.32 1293.27 9.61 1293.26 11.91 1293.26 C13.58 1293.26 15.26 1293.27 16.93 1293.27 C21.54 1293.28 26.14 1293.28 30.75 1293.27 C35.76 1293.27 40.77 1293.28 45.78 1293.29 C55.72 1293.3 65.66 1293.3 75.6 1293.3 C87.5 1293.3 99.4 1293.31 111.31 1293.32 C140.08 1293.34 168.86 1293.35 197.64 1293.36 C207.17 1293.36 216.7 1293.37 226.23 1293.37 C227.24 1293.37 227.24 1293.37 228.27 1293.37 C231 1293.37 233.72 1293.37 236.44 1293.38 C283.01 1293.39 329.57 1293.41 376.14 1293.42 C379.8 1293.42 383.45 1293.42 387.11 1293.42 C388.2 1293.42 388.2 1293.42 389.31 1293.42 C396.66 1293.42 404.01 1293.42 411.36 1293.42 C412.83 1293.42 414.31 1293.42 415.78 1293.42 C463.08 1293.43 510.38 1293.45 557.68 1293.49 C591.66 1293.51 625.65 1293.53 659.64 1293.54 C660.34 1293.54 661.04 1293.54 661.76 1293.54 C677.12 1293.54 692.49 1293.54 707.85 1293.54 C714.03 1293.54 720.22 1293.55 726.4 1293.55 C727.08 1293.55 727.75 1293.55 728.45 1293.55 C750.21 1293.55 771.96 1293.56 793.72 1293.58 C816.26 1293.6 838.8 1293.61 861.34 1293.6 C874.33 1293.6 887.31 1293.6 900.29 1293.62 C908.98 1293.64 917.67 1293.64 926.36 1293.62 C931.3 1293.62 936.24 1293.62 941.18 1293.63 C967.27 1293.72 992.91 1293.4 1017.69 1284.13 C1018.93 1283.68 1020.16 1283.22 1021.43 1282.76 C1035.37 1277.49 1048.63 1270.91 1060.69 1262.13 C1061.76 1261.36 1062.82 1260.6 1063.91 1259.81 C1092.81 1238.4 1113.5 1209.2 1124.69 1175.13 C1125.07 1173.97 1125.07 1173.97 1125.46 1172.8 C1133.21 1148.68 1133.13 1124.46 1133.07 1099.41 C1133.06 1094.39 1133.07 1089.37 1133.08 1084.35 C1133.09 1075.57 1133.09 1066.78 1133.08 1058 C1133.06 1044.94 1133.07 1031.87 1133.07 1018.81 C1133.09 996.83 1133.08 974.85 1133.07 952.87 C1133.06 931.11 1133.05 909.35 1133.06 887.58 C1133.06 886.21 1133.06 884.84 1133.06 883.47 C1133.06 877.97 1133.06 872.47 1133.06 866.97 C1133.06 851.6 1133.06 836.22 1133.06 820.85 C1133.06 819.8 1133.06 819.8 1133.06 818.73 C1133.06 796.44 1133.05 774.14 1133.04 751.85 C1133.04 751.13 1133.04 750.41 1133.04 749.66 C1133.04 737.93 1133.03 726.19 1133.03 714.46 C1133.01 667.91 1133 621.36 1133.01 574.81 C1133.01 571.86 1133.01 568.92 1133.01 565.98 C1133.01 565.25 1133.01 564.52 1133.01 563.77 C1133.01 555.72 1133.01 547.66 1133.01 539.6 C1133.01 538.88 1133.01 538.15 1133.01 537.41 C1133.02 498.39 1133.01 459.36 1133 420.34 C1133 418.96 1133 417.59 1133 416.21 C1133 415.53 1133 414.85 1133 414.15 C1133 412.78 1133 411.4 1133 410.03 C1133 406.61 1133 403.19 1133 399.78 C1133 384.8 1132.99 369.82 1132.99 354.85 C1132.99 354.17 1132.99 353.5 1132.99 352.8 C1133 349.41 1133 346.01 1133 342.62 C1133 318.07 1132.99 293.52 1132.98 268.97 C1132.97 255.99 1132.97 243.01 1132.97 230.03 C1132.98 221.36 1132.97 212.69 1132.96 204.02 C1132.96 199.08 1132.95 194.14 1132.96 189.2 C1132.97 184.7 1132.96 180.2 1132.95 175.7 C1132.95 174.09 1132.95 172.47 1132.95 170.86 C1132.99 157.36 1131.85 144.32 1128.44 131.19 C1128.23 130.35 1128.01 129.51 1127.79 128.64 C1121.64 105.44 1110.5 82.3 1094.69 64.13 C1094.02 63.34 1093.34 62.56 1092.65 61.75 C1090.38 59.17 1088.05 56.64 1085.69 54.13 C1085 53.38 1085 53.38 1084.28 52.62 C1065.66 32.78 1043.2 19.3 1017.69 10.13 C1017.03 9.88 1016.36 9.63 1015.68 9.37 C990.85 0.11 964.45 0.54 938.37 0.63 C933.34 0.64 928.32 0.63 923.3 0.62 C914.52 0.61 905.75 0.61 896.97 0.62 C883.92 0.64 870.86 0.64 857.81 0.63 C835.84 0.62 813.88 0.63 791.91 0.64 C770.16 0.66 748.42 0.67 726.67 0.67 C725.3 0.67 723.94 0.67 722.57 0.67 C717.07 0.67 711.57 0.67 706.07 0.67 C690.7 0.67 675.33 0.67 659.96 0.67 C658.91 0.67 658.91 0.67 657.84 0.67 C635.56 0.67 613.28 0.68 591.01 0.7 C590.28 0.7 589.56 0.7 588.82 0.7 C577.1 0.7 565.37 0.71 553.65 0.72 C507.13 0.75 460.61 0.76 414.1 0.76 C412.63 0.76 411.16 0.76 409.68 0.76 C406.75 0.76 403.81 0.76 400.87 0.76 C394.28 0.76 387.69 0.76 381.1 0.76 C379.64 0.76 378.18 0.76 376.72 0.76 C337.71 0.76 298.71 0.76 259.7 0.78 C259.02 0.78 258.34 0.78 257.64 0.78 C248.39 0.78 248.39 0.78 239.15 0.78 C224.18 0.79 209.22 0.79 194.25 0.79 C193.57 0.79 192.9 0.79 192.21 0.79 C189.49 0.79 186.78 0.79 184.06 0.79 C158.85 0.79 133.65 0.8 108.44 0.82 C95.47 0.83 82.5 0.84 69.53 0.83 C60.87 0.83 52.2 0.84 43.54 0.85 C38.61 0.86 33.67 0.86 28.73 0.86 C24.24 0.85 19.74 0.85 15.25 0.87 C13.64 0.87 12.03 0.87 10.42 0.86 C-3.08 0.83 -16.12 1.97 -29.24 5.38 Z " fill="#000000" transform="translate(347.3068102002144,186.87234950065613)"/>
8
+ <path d="M0 0 C0.99 0.66 1.98 1.32 3 2 C3 2.99 3 3.98 3 5 C-15.15 5 -33.3 5 -52 5 C-52 40.31 -52 75.62 -52 112 C-26.12 111.88 -26.12 111.88 -0.24 111.74 C10.34 111.68 20.92 111.62 31.5 111.58 C39.21 111.54 46.92 111.5 54.63 111.46 C58.7 111.43 62.77 111.41 66.84 111.4 C84.64 111.33 102.34 110.95 120.1 109.6 C121.97 109.47 121.97 109.47 123.87 109.33 C124.96 109.24 126.05 109.15 127.18 109.06 C129.72 109.01 131.6 109.23 134 110 C114.47 117.14 90.28 114.15 69.71 114.13 C65.39 114.13 61.06 114.13 56.74 114.14 C49.51 114.14 42.28 114.14 35.05 114.13 C26.68 114.12 18.31 114.13 9.95 114.13 C2.74 114.14 -4.46 114.14 -11.67 114.13 C-15.96 114.13 -20.26 114.13 -24.55 114.14 C-28.58 114.14 -32.6 114.14 -36.62 114.13 C-38.1 114.13 -39.57 114.13 -41.05 114.13 C-43.06 114.14 -45.07 114.13 -47.08 114.13 C-48.77 114.13 -48.77 114.13 -50.49 114.13 C-53 114 -53 114 -54 113 C-54.1 111.6 -54.13 110.19 -54.13 108.79 C-54.13 107.88 -54.13 106.97 -54.14 106.03 C-54.13 105.03 -54.13 104.02 -54.13 102.99 C-54.13 101.94 -54.13 100.88 -54.13 99.8 C-54.14 96.3 -54.14 92.81 -54.13 89.31 C-54.13 86.89 -54.13 84.48 -54.14 82.06 C-54.14 76.99 -54.14 71.91 -54.13 66.84 C-54.12 60.32 -54.13 53.8 -54.13 47.27 C-54.14 42.28 -54.14 37.29 -54.13 32.29 C-54.13 29.89 -54.13 27.48 -54.14 25.08 C-54.14 21.72 -54.13 18.37 -54.13 15.01 C-54.13 14.01 -54.13 13 -54.14 11.97 C-54.13 10.6 -54.13 10.6 -54.13 9.21 C-54.13 8.42 -54.13 7.63 -54.13 6.81 C-54 5 -54 5 -53 4 C-51.31 3.91 -49.62 3.88 -47.93 3.89 C-46.85 3.89 -45.77 3.89 -44.65 3.89 C-42.89 3.89 -42.89 3.89 -41.09 3.9 C-39.89 3.9 -38.7 3.91 -37.46 3.91 C-33.62 3.91 -29.78 3.92 -25.94 3.94 C-23.34 3.94 -20.74 3.95 -18.15 3.95 C-11.76 3.96 -5.38 3.98 1 4 C0.51 2.02 0.51 2.02 0 0 Z " fill="#79797B" transform="translate(1044,884)"/>
9
+ <path d="M0 0 C43.23 0 86.46 0 131 0 C129.88 11.25 129.88 11.25 127 17 C125.75 13.45 126.28 11.28 127.44 7.75 C127.72 6.86 128.01 5.97 128.31 5.05 C128.54 4.37 128.76 3.7 129 3 C112.21 3.06 95.43 3.14 78.65 3.24 C70.85 3.28 63.06 3.32 55.27 3.35 C48.47 3.37 41.68 3.4 34.89 3.45 C31.3 3.47 27.7 3.49 24.1 3.5 C20.09 3.5 16.08 3.54 12.07 3.57 C10.87 3.57 9.67 3.56 8.44 3.56 C6.8 3.58 6.8 3.58 5.14 3.6 C4.19 3.61 3.24 3.61 2.26 3.62 C1.51 3.74 0.77 3.87 0 4 C-0.66 4.99 -1.32 5.98 -2 7 C-1.12 2.25 -1.12 2.25 0 0 Z " fill="#5E5D60" transform="translate(858,668)"/>
10
+ <path d="M0 0 C1.25 -0 2.5 -0 3.79 -0 C5.17 -0 6.55 0 7.93 0.01 C9.39 0.01 10.85 0.01 12.31 0.01 C16.26 0.01 20.22 0.01 24.17 0.02 C28.31 0.03 32.44 0.03 36.58 0.03 C44.4 0.03 52.23 0.04 60.06 0.05 C70.64 0.06 81.21 0.07 91.79 0.07 C108.45 0.08 125.12 0.1 141.78 0.12 C141.78 35.43 141.78 70.74 141.78 107.12 C141.45 107.12 141.12 107.12 140.78 107.12 C140.45 72.8 140.12 38.48 139.78 3.12 C65.04 2.63 65.04 2.63 -11.22 2.12 C-11.22 1.79 -11.22 1.46 -11.22 1.12 C-7.42 0.23 -3.9 -0 0 0 Z " fill="#4A494D" transform="translate(1116.2199249267578,732.8797454833984)"/>
11
+ <path d="M0 0 C16.9 -0.12 33.8 -0.2 50.69 -0.26 C58.54 -0.28 66.39 -0.32 74.23 -0.38 C81.07 -0.43 87.91 -0.46 94.74 -0.47 C98.36 -0.48 101.99 -0.49 105.61 -0.53 C109.65 -0.57 113.69 -0.57 117.73 -0.57 C119.53 -0.59 119.53 -0.59 121.38 -0.62 C123.02 -0.61 123.02 -0.61 124.7 -0.6 C125.66 -0.61 126.62 -0.61 127.6 -0.62 C130 0 130 0 131.8 2.4 C133.47 6.02 133.66 9.04 134 13 C131.05 10.57 130.68 8.68 130 5 C129.01 4.5 129.01 4.5 128 4 C128 3.34 128 2.68 128 2 C86.42 2 44.84 2 2 2 C2 2.66 2 3.32 2 4 C1.34 4 0.68 4 0 4 C0 2.68 0 1.36 0 0 Z " fill="#C1C0C2" transform="translate(405,670)"/>
12
+ <path d="M0 0 C-6.79 2.48 -13.21 3.13 -20.41 3.12 C-21.48 3.12 -21.48 3.12 -22.57 3.12 C-24.94 3.12 -27.31 3.12 -29.68 3.11 C-31.38 3.11 -33.09 3.11 -34.79 3.11 C-39.41 3.11 -44.03 3.11 -48.64 3.1 C-53.47 3.1 -58.3 3.09 -63.13 3.09 C-72.27 3.09 -81.41 3.08 -90.56 3.07 C-100.96 3.06 -111.37 3.06 -121.78 3.05 C-143.19 3.04 -164.59 3.02 -186 3 C-186 2.67 -186 2.34 -186 2 C-185.26 2 -184.51 1.99 -183.75 1.99 C-165.49 1.91 -147.24 1.82 -128.99 1.71 C-120.16 1.66 -111.33 1.62 -102.5 1.58 C-94.79 1.54 -87.08 1.5 -79.37 1.46 C-75.3 1.43 -71.23 1.41 -67.16 1.4 C-49.36 1.33 -31.66 0.95 -13.9 -0.4 C-12.03 -0.53 -12.03 -0.53 -10.13 -0.67 C-9.04 -0.76 -7.95 -0.85 -6.82 -0.94 C-4.28 -0.99 -2.4 -0.77 0 0 Z " fill="#ADADAF" transform="translate(1178,994)"/>
13
+ <path d="M0 0 C1.04 -0 1.04 -0 2.11 -0 C4.42 -0 6.74 0 9.05 0.01 C10.72 0.01 12.38 0.01 14.05 0.01 C18.56 0.01 23.07 0.01 27.58 0.02 C32.3 0.03 37.01 0.03 41.73 0.03 C50.66 0.03 59.59 0.04 68.52 0.05 C78.68 0.06 88.85 0.06 99.02 0.07 C119.93 0.08 140.83 0.1 161.74 0.12 C161.74 0.45 161.74 0.78 161.74 1.12 C160.93 1.12 160.12 1.13 159.28 1.13 C139.48 1.24 119.68 1.35 99.88 1.46 C90.31 1.51 80.73 1.57 71.16 1.62 C62.81 1.66 54.46 1.71 46.1 1.76 C41.69 1.78 37.27 1.81 32.85 1.83 C28.69 1.85 24.52 1.87 20.35 1.9 C18.83 1.91 17.31 1.92 15.79 1.92 C-2.72 1.91 -2.72 1.91 -20.77 5.49 C-24.37 6.4 -27.57 6.33 -31.26 6.12 C-27.92 4.25 -24.67 3.39 -20.95 2.56 C-19.86 2.31 -18.77 2.06 -17.64 1.8 C-11.72 0.61 -6.05 -0 0 0 Z " fill="#C5C5C6" transform="translate(1094.2576751708984,734.8797454833984)"/>
14
+ <path d="M0 0 C2.78 1.64 3.85 2.47 4.72 5.64 C4.83 6.64 4.95 7.65 5.06 8.69 C5.7 14.17 6.93 17.47 9 23 C56.19 23 103.38 23 152 23 C152.66 20.69 153.32 18.38 154 16 C154.66 16 155.32 16 156 16 C156.33 14.02 156.66 12.04 157 10 C158.35 13.66 157.63 15.67 156.12 19.19 C155.76 20.07 155.39 20.95 155.01 21.86 C154 24 154 24 153 25 C151.13 25.1 149.25 25.12 147.37 25.12 C145.54 25.12 145.54 25.12 143.67 25.12 C142.31 25.12 140.94 25.12 139.58 25.11 C138.15 25.11 136.72 25.11 135.29 25.11 C131.4 25.11 127.51 25.11 123.62 25.1 C119.56 25.1 115.5 25.09 111.44 25.09 C103.74 25.09 96.04 25.08 88.35 25.07 C79.59 25.06 70.83 25.06 62.07 25.05 C44.05 25.04 26.02 25.02 8 25 C7.2 23.1 6.41 21.21 5.61 19.31 C5.17 18.26 4.73 17.2 4.27 16.11 C0 5.65 0 5.65 0 0 Z " fill="#5D5C60" transform="translate(505,973)"/>
15
+ <path d="M0 0 C30.36 0 60.72 0 92 0 C92.49 0.99 92.49 0.99 93 2 C62.97 2 32.94 2 2 2 C2 2.66 2 3.32 2 4 C1.34 4 0.68 4 0 4 C0 2.68 0 1.36 0 0 Z " fill="#4A494D" transform="translate(1137,845)"/>
16
+ <path d="M0 0 C42.57 0 85.14 0 129 0 C128.67 2.64 128.34 5.28 128 8 C127.67 8 127.34 8 127 8 C126.67 6.02 126.34 4.04 126 2 C84.75 2 43.5 2 1 2 C0.34 3.98 -0.32 5.96 -1 8 C-1.62 6.25 -1.62 6.25 -2 4 C-1.34 2.68 -0.68 1.36 0 0 Z " fill="#E6E6E7" transform="translate(858,671)"/>
17
+ <path d="M0 0 C1.03 2.79 1.05 3.87 0.06 6.75 C-0.29 7.49 -0.64 8.24 -1 9 C-0.34 9 0.32 9 1 9 C0.67 9.99 0.34 10.98 0 12 C-1.32 12 -2.64 12 -4 12 C-7.39 30.36 -7.77 49.54 -2.78 67.59 C-2.07 70.68 -1.83 72.12 -3 75 C-4.63 70.46 -5.69 65.92 -6.56 61.19 C-7.04 56.73 -7.04 56.73 -9 53 C-10.4 35.2 -9.34 18.05 -1 2 C-0.67 1.34 -0.34 0.68 0 0 Z " fill="#949496" transform="translate(1002,787)"/>
18
+ <path d="M0 0 C3.55 2.68 3.73 5.7 4.44 9.94 C6.14 19.39 9.05 28.06 13.05 36.79 C15.85 43.33 17.35 49.93 18 57 C17.34 57 16.68 57 16 57 C14.62 52.25 13.35 47.48 12.12 42.69 C10.53 36.57 8.5 30.8 6 25 C2.69 17.14 0 8.57 0 0 Z " fill="#C3C3C4" transform="translate(560,746)"/>
19
+ <path d="M0 0 C1.98 0 3.96 0 6 0 C7.35 2.66 8.69 5.32 10 8 C10.32 8.64 10.64 9.29 10.97 9.95 C12.62 13.46 13.18 15.32 12 19 C10.99 16.73 9.99 14.46 9 12.19 C8.71 11.54 8.43 10.9 8.13 10.24 C6.86 7.32 6 5.22 6 2 C4.68 2 3.36 2 2 2 C2.86 6.47 3.73 10.69 5.69 14.81 C7.06 18.16 7.05 18.77 6 22 C2.57 14.64 0.2 8.16 0 0 Z " fill="#767578" transform="translate(673,845)"/>
20
+ <path d="M0 0 C0.66 0.33 1.32 0.66 2 1 C1.24 1.71 0.48 2.43 -0.3 3.16 C-1.31 4.13 -2.31 5.09 -3.31 6.06 C-3.81 6.53 -4.31 6.99 -4.83 7.47 C-8.49 11.04 -10.12 14.27 -12 19 C-14.19 20.44 -14.19 20.44 -16 21 C-15.67 21.99 -15.34 22.98 -15 24 C-16.65 24.99 -18.3 25.98 -20 27 C-18.74 21.24 -16.73 17.85 -12.81 13.5 C-12.32 12.94 -11.83 12.38 -11.33 11.8 C-7.72 7.7 -3.95 3.78 0 0 Z " fill="#AEAEB0" transform="translate(1025,758)"/>
21
+ <path d="M0 0 C0 0.66 0 1.32 0 2 C-2.65 3.46 -3.89 4 -7 4 C-7 4.66 -7 5.32 -7 6 C-7.99 6.33 -8.98 6.66 -10 7 C-10.33 7.66 -10.66 8.32 -11 9 C-17.97 7.87 -24.69 6.27 -31 3 C-31.33 2.34 -31.66 1.68 -32 1 C-29.51 1.42 -27.4 1.77 -25.18 3.02 C-20.09 5.31 -13.49 4.83 -8.29 3.1 C-6.75 2.4 -5.23 1.66 -3.74 0.88 C-2 0 -2 0 0 0 Z " fill="#A8A7A9" transform="translate(1141,887)"/>
22
+ <path d="M0 0 C1.17 4.69 0.5 6.25 -1.09 10.73 C-1.31 11.37 -1.54 12.01 -1.77 12.67 C-2.48 14.7 -3.21 16.72 -3.94 18.75 C-4.42 20.13 -4.91 21.51 -5.4 22.89 C-6.59 26.26 -7.79 29.63 -9 33 C-10.1 29.23 -9.69 27 -8.62 23.19 C-7.44 18.78 -6.52 14.53 -6 10 C-5.01 10 -4.02 10 -3 10 C-2.01 6.7 -1.02 3.4 0 0 Z " fill="#929294" transform="translate(920,875)"/>
23
+ <path d="M0 0 C3.38 4.18 4.67 8.43 6.25 13.5 C6.53 14.35 6.81 15.21 7.1 16.09 C7.36 16.92 7.62 17.74 7.89 18.59 C8.13 19.34 8.37 20.09 8.61 20.87 C9.04 23.24 8.75 24.73 8 27 C7.21 25.1 6.42 23.21 5.62 21.31 C5.18 20.26 4.74 19.2 4.29 18.11 C3.65 16.57 3.65 16.57 3 15 C2.44 13.73 2.44 13.73 1.88 12.44 C0.93 9.8 0.6 7.48 0.38 4.69 C0.26 3.36 0.26 3.36 0.15 2.01 C0.1 1.35 0.05 0.68 0 0 Z " fill="#949496" transform="translate(551,719)"/>
24
+ <path d="M0 0 C3.18 3.18 3.87 6.08 4.5 10.5 C4.4 16.82 0.81 22.5 -2 28 C-2.33 27.34 -2.66 26.68 -3 26 C-2.53 24.82 -2.05 23.65 -1.56 22.44 C1.03 15.26 0.23 7.51 0 0 Z " fill="#9D9D9F" transform="translate(688,890)"/>
25
+ <path d="M0 0 C6.31 6.31 6.98 17.58 8 26 C7.34 26 6.68 26 6 26 C4.6 21.11 3.21 16.22 1.88 11.31 C1.6 10.34 1.6 10.34 1.32 9.34 C0.43 6.06 0 3.44 0 0 Z " fill="#88888A" transform="translate(570,777)"/>
26
+ <path d="M0 0 C3.35 1.68 3.77 5.36 5 8.75 C5.78 11.16 5.78 11.16 8 12 C8 13.65 8 15.3 8 17 C8.66 17 9.32 17 10 17 C10 19.64 10 22.28 10 25 C8.28 22.42 7.2 20.25 6.05 17.4 C5.52 16.08 5.52 16.08 4.98 14.72 C4.62 13.8 4.25 12.89 3.88 11.94 C3.32 10.55 3.32 10.55 2.75 9.14 C2.39 8.26 2.04 7.37 1.68 6.46 C1.36 5.66 1.03 4.85 0.7 4.02 C0 2 0 2 0 0 Z " fill="#929294" transform="translate(710,932)"/>
27
+ <path d="M0 0 C0 0.33 0 0.66 0 1 C-1.06 1.19 -2.12 1.39 -3.22 1.59 C-4.65 1.85 -6.07 2.11 -7.5 2.38 C-8.24 2.51 -8.97 2.65 -9.73 2.79 C-13.36 3.47 -16.94 4.19 -20.5 5.19 C-24.51 6.12 -27.9 6.15 -32 6 C-22.71 0.78 -10.48 -0.18 0 0 Z " fill="#89898B" transform="translate(1095,735)"/>
28
+ <path d="M0 0 C7.59 0 15.18 0 23 0 C26 8 26 8 25 12 C23 9 23 9 22.5 6.38 C22.25 5.2 22.25 5.2 22 4 C21.34 3.67 20.68 3.34 20 3 C20 2.34 20 1.68 20 1 C13.4 1 6.8 1 0 1 C0 0.67 0 0.34 0 0 Z " fill="#E9E9EA" transform="translate(513,671)"/>
29
+ <path d="M0 0 C2 1.12 2 1.12 4 3 C4.25 6.19 4.25 6.19 4 9 C4.66 9 5.32 9 6 9 C6.33 12.96 6.66 16.92 7 21 C4.84 17.75 3.69 14.73 2.38 11.06 C1.93 9.84 1.48 8.61 1.02 7.35 C0 4 0 4 0 0 Z " fill="#A5A5A6" transform="translate(451,810)"/>
30
+ <path d="M0 0 C1.93 1.61 2.9 2.51 3.4 5.02 C3.34 10.43 2.46 14.17 0 19 C-1.36 15.1 -0.89 11.29 -0.56 7.25 C-0.48 6.2 -0.48 6.2 -0.4 5.14 C-0.28 3.42 -0.14 1.71 0 0 Z " fill="#A4A4A6" transform="translate(1148,861)"/>
31
+ <path d="M0 0 C1.76 3.52 0.02 7.37 -1 11 C-2.25 14.7 -3.6 18.36 -5 22 C-6.17 17.9 -6.07 14.25 -6 10 C-4.68 9.67 -3.36 9.34 -2 9 C-1.86 7.7 -1.71 6.4 -1.56 5.06 C-1.12 1.12 -1.12 1.12 0 0 Z " fill="#A3A3A5" transform="translate(674,946)"/>
32
+ <path d="M0 0 C0.43 0.6 0.87 1.2 1.31 1.81 C2.85 4 2.85 4 4.69 5.31 C6.79 8.01 6.19 10.71 6 14 C6.66 14 7.32 14 8 14 C8 15.98 8 17.96 8 20 C5.41 17.41 4.29 14.44 2.88 11.12 C2.6 10.5 2.32 9.87 2.04 9.23 C0.59 5.86 0 3.74 0 0 Z " fill="#BCBCBD" transform="translate(720,957)"/>
33
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C0.86 1.9 0.71 3.79 0.56 5.69 C0.48 6.74 0.4 7.8 0.32 8.89 C0.04 11.65 -0.43 14.28 -1 17 C-1 17.66 -1 18.32 -1 19 C-2.32 19.33 -3.64 19.66 -5 20 C-4.59 17.08 -4.17 14.43 -3.06 11.69 C-1.56 7.9 -0.82 3.99 0 0 Z " fill="#B1B1B2" transform="translate(825,770)"/>
34
+ <path d="M0 0 C2.8 1.65 3.86 2.49 4.76 5.67 C4.88 6.69 5 7.7 5.12 8.75 C5.75 13.35 6.59 17.58 8 22 C4.53 19.3 3.59 15.59 2.31 11.56 C2.09 10.89 1.86 10.23 1.63 9.54 C0.53 6.15 0 3.6 0 0 Z " fill="#77777A" transform="translate(505,973)"/>
35
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1.04 2 1.04 4 1 6 C0.67 6.33 0.34 6.66 0 7 C-0.04 9.33 -0.04 11.67 0 14 C-0.64 14.12 -1.28 14.25 -1.94 14.38 C-2.62 14.58 -3.3 14.79 -4 15 C-4.33 15.66 -4.66 16.32 -5 17 C-3.18 3.18 -3.18 3.18 0 0 Z " fill="#9F9FA1" transform="translate(597,804)"/>
36
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C2.44 7.97 2.44 7.97 0.69 12.06 C-0.15 13.02 -0.15 13.02 -1 14 C-1.66 14 -2.32 14 -3 14 C-3.33 14.66 -3.66 15.32 -4 16 C-3.48 10.13 -2.24 5.45 0 0 Z " fill="#C0BFC1" transform="translate(840,723)"/>
37
+ <path d="M0 0 C0.99 0.5 0.99 0.5 2 1 C2.63 3.04 3.02 5.09 3.44 7.19 C3.62 7.79 3.81 8.38 4 9 C4.66 9.33 5.32 9.66 6 10 C6.41 12.94 6.41 12.94 6.62 16.56 C6.7 17.76 6.77 18.96 6.85 20.19 C6.9 21.12 6.95 22.05 7 23 C4.78 20.78 4.48 19.7 3.71 16.72 C3.49 15.88 3.27 15.04 3.05 14.17 C2.83 13.29 2.6 12.41 2.38 11.5 C2.15 10.62 1.92 9.74 1.68 8.83 C0 2.3 0 2.3 0 0 Z " fill="#ACACAE" transform="translate(498,950)"/>
38
+ <path d="M0 0 C2.47 2.47 3.07 4.57 4.19 7.88 C4.55 8.92 4.92 9.97 5.29 11.05 C5.98 13.94 6.03 15.28 5 18 C2.51 15.06 1.49 12.78 0.81 9 C0.65 8.15 0.5 7.31 0.33 6.44 C0 4 0 4 0 0 Z " fill="#6F6E71" transform="translate(458,831)"/>
39
+ <path d="M0 0 C0.66 0.33 1.32 0.66 2 1 C0.19 3.5 0.19 3.5 -2 6 C-2.99 6 -3.98 6 -5 6 C-5.66 7.32 -6.32 8.64 -7 10 C-8.32 9.34 -9.64 8.68 -11 8 C-9.73 7.04 -8.46 6.08 -7.19 5.12 C-6.48 4.59 -5.77 4.06 -5.04 3.51 C-3.4 2.29 -1.7 1.14 0 0 Z " fill="#AEADAF" transform="translate(1038,749)"/>
40
+ <path d="M0 0 C2.09 7.63 -1.37 14.35 -5 21 C-6.06 17.8 -5.95 16.03 -4.79 12.89 C-4.51 12.14 -4.24 11.38 -3.96 10.61 C-3.51 9.44 -3.51 9.44 -3.06 8.25 C-2.77 7.46 -2.48 6.66 -2.18 5.85 C-1.46 3.89 -0.73 1.95 0 0 Z " fill="#58575B" transform="translate(945,800)"/>
41
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1 1.65 1 3.3 1 5 C1.66 5 2.32 5 3 5 C3.33 9.29 3.66 13.58 4 18 C0.93 14.93 -0.07 11.2 -1 7 C-0.96 4.49 -0.58 2.46 0 0 Z " fill="#A9A9AA" transform="translate(447,792)"/>
42
+ <path d="M0 0 C4.55 4.55 6.32 12.74 7 19 C5.21 16.81 3.98 14.96 2.94 12.31 C2.23 9.84 2.23 9.84 0 9 C0 6.03 0 3.06 0 0 Z " fill="#A5A4A6" transform="translate(781,762)"/>
43
+ <path d="M0 0 C2.55 7.23 -1.86 16.41 -5 23 C-6.02 19.84 -5.95 17.89 -5.04 14.71 C-4.81 13.91 -4.59 13.12 -4.36 12.3 C-4.12 11.48 -3.87 10.66 -3.62 9.81 C-3.39 8.98 -3.16 8.15 -2.91 7.29 C-1.15 1.15 -1.15 1.15 0 0 Z " fill="#7A797C" transform="translate(855,675)"/>
44
+ <path d="M0 0 C1.72 2.58 2.69 4.55 3.69 7.44 C3.96 8.2 4.23 8.96 4.51 9.75 C5.05 12.22 4.8 13.63 4 16 C4 15.34 4 14.68 4 14 C3.01 14 2.02 14 1 14 C0.05 9.24 -0.08 4.83 0 0 Z " fill="#A09FA1" transform="translate(540,683)"/>
45
+ <path d="M0 0 C0.66 0 1.32 0 2 0 C1.01 3.96 0.02 7.92 -1 12 C-1.66 12 -2.32 12 -3 12 C-3.33 14.31 -3.66 16.62 -4 19 C-6 16 -6 16 -5.81 13.5 C-5 11 -5 11 -3.56 9.69 C-1.01 6.93 -0.77 3.63 0 0 Z " fill="#D3D2D3" transform="translate(662,977)"/>
46
+ <path d="M0 0 C2 2 2 2 2 5 C2.99 5 3.98 5 5 5 C5.33 9.29 5.66 13.58 6 18 C3.53 15.53 2.97 13.44 1.88 10.12 C1.52 9.08 1.17 8.03 0.8 6.95 C0 4 0 4 0 0 Z " fill="#99989A" transform="translate(425,732)"/>
47
+ <path d="M0 0 C0 0.33 0 0.66 0 1 C-5.62 2.92 -10.52 3.25 -16.44 3.12 C-17.26 3.12 -18.09 3.11 -18.94 3.1 C-20.96 3.07 -22.98 3.04 -25 3 C-21.46 0.64 -19.52 0.62 -15.31 0.38 C-13.45 0.26 -13.45 0.26 -11.54 0.15 C-7.68 -0.01 -3.86 -0.08 0 0 Z " fill="#E6E6E6" transform="translate(1104,736)"/>
48
+ <path d="M0 0 C1.68 3.28 3.21 6.62 4.69 10 C5.15 11.03 5.6 12.06 6.07 13.12 C7.01 16.04 7.11 17.21 6 20 C5.33 18.38 4.66 16.75 4 15.12 C3.63 14.22 3.26 13.32 2.88 12.38 C2 10 2 10 2 8 C1.34 8 0.68 8 0 8 C0 5.36 0 2.72 0 0 Z " fill="#AAAAAB" transform="translate(774,742)"/>
49
+ <path d="M0 0 C1.31 3.67 0.7 6.27 -0.25 10 C-0.5 11.03 -0.76 12.06 -1.02 13.12 C-1.98 15.94 -3.08 17.75 -5 20 C-4.35 15.86 -3.52 11.82 -2.5 7.75 C-2.24 6.71 -1.98 5.68 -1.72 4.61 C-1 2 -1 2 0 0 Z " fill="#818183" transform="translate(846,703)"/>
50
+ <path d="M0 0 C1.5 1.31 1.5 1.31 3 3 C3 3.99 3 4.98 3 6 C3.66 6 4.32 6 5 6 C5 8.31 5 10.62 5 13 C4.34 13 3.68 13 3 13 C2.49 11.59 1.99 10.17 1.5 8.75 C1.08 7.57 1.08 7.57 0.66 6.36 C0 4 0 4 0 0 Z " fill="#A3A3A4" transform="translate(412,692)"/>
51
+ <path d="M0 0 C3.08 3.5 4.93 6.44 6 11 C5.62 13.38 5.62 13.38 5 15 C4.67 13.02 4.34 11.04 4 9 C2.68 9 1.36 9 0 9 C0 6.03 0 3.06 0 0 Z " fill="#BBBBBC" transform="translate(793,799)"/>
52
+ <path d="M0 0 C1.06 3.62 0.8 4.68 -1 8 C-1.33 9.2 -1.66 10.39 -2 11.62 C-3 15 -3 15 -5 17 C-4.53 10.6 -2.85 5.73 0 0 Z " fill="#88888A" transform="translate(608,771)"/>
53
+ <path d="M0 0 C1.32 0.33 2.64 0.66 4 1 C3.98 2.18 3.96 3.35 3.94 4.56 C3.93 8.47 4.36 12.14 5 16 C3.26 13.4 2.35 11.48 1.38 8.56 C1.11 7.8 0.85 7.04 0.59 6.25 C0 4 0 4 0 0 Z " fill="#A2A2A4" transform="translate(432,752)"/>
54
+ <path d="M0 0 C0.95 2.17 1.14 3.56 0.4 5.82 C-0.36 7.57 -1.18 9.29 -2 11 C-2.99 10.67 -3.98 10.34 -5 10 C-5.33 7.69 -5.66 5.38 -6 3 C-5.01 3.99 -4.02 4.98 -3 6 C-2.01 4.02 -1.02 2.04 0 0 Z " fill="#79797B" transform="translate(591,821)"/>
55
+ <path d="M0 0 C0.99 0.5 0.99 0.5 2 1 C2 2.32 2 3.64 2 5 C2.99 5 3.98 5 5 5 C4.67 6.65 4.34 8.3 4 10 C4.66 10 5.32 10 6 10 C6 11.98 6 13.96 6 16 C2.47 10.71 0.64 6.37 0 0 Z " fill="#D4D4D5" transform="translate(709,925)"/>
56
+ <path d="M0 0 C2.68 1.34 2.75 2.52 3.69 5.31 C4.1 6.48 4.1 6.48 4.51 7.68 C5.04 10.18 4.82 11.6 4 14 C2 13 2 13 0.88 9.81 C0.08 6.36 -0.17 3.52 0 0 Z " fill="#67676A" transform="translate(485,913)"/>
57
+ <path d="M0 0 C2.44 1.31 2.44 1.31 5 4 C5.75 7.66 5.93 11.27 6 15 C4.2 12.3 3.07 9.93 1.88 6.94 C1.52 6.06 1.17 5.18 0.8 4.28 C0 2 0 2 0 0 Z " fill="#C0BFC1" transform="translate(701,905)"/>
58
+ <path d="M0 0 C0.83 2.34 1.22 3.5 0.19 5.81 C-0.2 6.53 -0.6 7.26 -1 8 C-1.33 9.2 -1.66 10.39 -2 11.62 C-3 15 -3 15 -5 17 C-4.25 11.14 -2.65 5.3 0 0 Z " fill="#89888B" transform="translate(617,744)"/>
59
+ <path d="M0 0 C-5.36 2.68 -9.01 3.32 -15 3 C-10.78 -0.88 -5.44 -1.96 0 0 Z " fill="#8F8F91" transform="translate(1194,990)"/>
60
+ <path d="M0 0 C1.66 3.32 0.02 6.61 -1 10 C-1.63 11.68 -2.28 13.36 -3 15 C-3.12 14.36 -3.25 13.72 -3.38 13.06 C-3.58 12.38 -3.79 11.7 -4 11 C-4.66 10.67 -5.32 10.34 -6 10 C-5.38 9.46 -4.76 8.93 -4.12 8.38 C-1.72 5.69 -0.94 3.45 0 0 Z " fill="#C7C7C8" transform="translate(885,978)"/>
61
+ <path d="M0 0 C1.59 2.39 2.65 4.31 3.69 6.94 C3.96 7.61 4.23 8.28 4.51 8.96 C5.08 11.33 4.76 12.72 4 15 C4 14.34 4 13.68 4 13 C3.34 13 2.68 13 2 13 C1.66 11.58 1.33 10.17 1 8.75 C0.81 7.96 0.63 7.17 0.44 6.36 C0 4 0 4 0 0 Z " fill="#626164" transform="translate(467,859)"/>
62
+ <path d="M0 0 C1.07 3.27 0.89 5.43 0.06 8.75 C-0.23 9.95 -0.23 9.95 -0.53 11.17 C-0.68 11.78 -0.84 12.38 -1 13 C-1.66 13 -2.32 13 -3 13 C-3.33 13.66 -3.66 14.32 -4 15 C-3.5 9.34 -2.45 5.12 0 0 Z " fill="#656467" transform="translate(927,854)"/>
63
+ <path d="M0 0 C2.04 2.04 2.64 3.23 3.62 5.88 C3.89 6.55 4.15 7.23 4.41 7.93 C5 10 5 10 5 14 C4.34 14 3.68 14 3 14 C2.49 12.42 1.99 10.83 1.5 9.25 C1.22 8.37 0.94 7.49 0.66 6.58 C0 4 0 4 0 0 Z " fill="#6B6A6D" transform="translate(441,781)"/>
64
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1 3.3 1 6.6 1 10 C0.01 10 -0.98 10 -2 10 C-2.33 10.66 -2.66 11.32 -3 12 C-2.4 7.81 -1.43 3.99 0 0 Z " fill="#A8A7A9" transform="translate(835,739)"/>
65
+ <path d="M0 0 C1.03 2.79 1.05 3.87 0.06 6.75 C-0.29 7.49 -0.64 8.24 -1 9 C-0.34 9 0.32 9 1 9 C0.67 9.99 0.34 10.98 0 12 C-0.99 12 -1.98 12 -3 12 C-2.14 3.43 -2.14 3.43 0 0 Z " fill="#B4B4B6" transform="translate(1002,787)"/>
66
+ <path d="M0 0 C0 3.91 -1.32 6.51 -3 10 C-3.99 10.5 -3.99 10.5 -5 11 C-5 9.02 -5 7.04 -5 5 C-4.01 5 -3.02 5 -2 5 C-2.33 3.68 -2.66 2.36 -3 1 C-2.01 0.67 -1.02 0.34 0 0 Z " fill="#C2C2C4" transform="translate(1245,945)"/>
67
+ <path d="M0 0 C0.89 0.32 0.89 0.32 1.8 0.64 C1.27 0.96 0.74 1.29 0.2 1.62 C-3.38 3.84 -6.9 6.02 -10.2 8.64 C-8.68 4.54 -4.77 -0.79 0 0 Z " fill="#7B7A7D" transform="translate(1111.1953125,843.36328125)"/>
68
+ <path d="M0 0 C0 3.59 -0.66 4.11 -3 6.69 C-3.56 7.31 -4.11 7.93 -4.69 8.57 C-5.12 9.04 -5.55 9.52 -6 10 C-6 7 -6 7 -4 5 C-4 3.68 -4 2.36 -4 1 C-2.68 0.67 -1.36 0.34 0 0 Z " fill="#A09FA1" transform="translate(1239,956)"/>
69
+ <path d="M0 0 C2.18 1.76 2.94 2.69 3.51 5.48 C3.57 6.37 3.63 7.27 3.69 8.19 C3.75 9.09 3.82 9.99 3.89 10.92 C3.92 11.61 3.96 12.29 4 13 C1.28 10.28 0.89 7.7 0 4 C0 2.68 0 1.36 0 0 Z " fill="#78787A" transform="translate(560,746)"/>
70
+ <path d="M0 0 C0.99 0 1.98 0 3 0 C2.48 4.62 1.93 6.1 -1 10 C-0.67 6.7 -0.34 3.4 0 0 Z " fill="#B3B3B4" transform="translate(945,793)"/>
71
+ <path d="M0 0 C2.46 3.69 3.01 6.7 4 11 C2 10 2 10 1 7 C0.01 6.67 -0.98 6.34 -2 6 C-1.34 4.02 -0.68 2.04 0 0 Z " fill="#D2D2D2" transform="translate(547,708)"/>
72
+ <path d="M0 0 C0.66 0.33 1.32 0.66 2 1 C-2.3 5 -2.3 5 -4 6 C-6.2 5.65 -6.2 5.65 -8 5 C-6.71 4.14 -5.42 3.28 -4.12 2.44 C-3.05 1.72 -3.05 1.72 -1.95 1 C-1.3 0.67 -0.66 0.34 0 0 Z " fill="#68676A" transform="translate(1216,978)"/>
73
+ <path d="M0 0 C2 1 2 1 3.19 4.31 C3.91 7.58 4.2 8.99 3 12 C0.98 8.96 0.68 7.81 0.38 4.31 C0.3 3.5 0.23 2.7 0.15 1.86 C0.1 1.25 0.05 0.63 0 0 Z " fill="#B7B7B8" transform="translate(535,671)"/>
74
+ <path d="M0 0 C3.96 0 7.92 0 12 0 C8.96 2.02 7.81 2.32 4.31 2.62 C3.5 2.7 2.7 2.77 1.86 2.85 C1.25 2.9 0.63 2.95 0 3 C0 2.01 0 1.02 0 0 Z " fill="#D9D9DA" transform="translate(1187,987)"/>
75
+ <path d="M0 0 C2.72 2.35 3.81 4.62 5 8 C3.68 8 2.36 8 1 8 C1.33 6.68 1.66 5.36 2 4 C1.34 4 0.68 4 0 4 C0 2.68 0 1.36 0 0 Z " fill="#C7C7C8" transform="translate(1239,859)"/>
76
+ <path d="M0 0 C1.98 0.99 1.98 0.99 4 2 C3.67 2.99 3.34 3.98 3 5 C3.66 5 4.32 5 5 5 C5 6.65 5 8.3 5 10 C1.56 7.34 1 4.1 0 0 Z " fill="#B6B6B7" transform="translate(1000,862)"/>
77
+ <path d="M0 0 C1.06 1.88 1.06 1.88 2 4 C1.67 4.66 1.34 5.32 1 6 C0.01 6 -0.98 6 -2 6 C-2.33 6.66 -2.66 7.32 -3 8 C-2.67 6.02 -2.34 4.04 -2 2 C-1.34 2 -0.68 2 0 2 C0 1.34 0 0.68 0 0 Z " fill="#C1C1C2" transform="translate(595,813)"/>
78
+ <path d="M0 0 C3.25 2.83 4.52 4.69 5 9 C3.06 8.44 3.06 8.44 1 7 C0.25 3.38 0.25 3.38 0 0 Z " fill="#939395" transform="translate(1244,867)"/>
79
+ <path d="M0 0 C1.32 0.33 2.64 0.66 4 1 C3.67 3.64 3.34 6.28 3 9 C0.87 5.81 0.5 3.73 0 0 Z " fill="#E6E6E6" transform="translate(685,858)"/>
80
+ <path d="M0 0 C1.37 2.74 0.94 4.12 0 7 C-2.06 8.31 -2.06 8.31 -4 9 C-2.25 2.25 -2.25 2.25 0 0 Z " fill="#B6B6B7" transform="translate(1009,776)"/>
81
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1 2.64 1 5.28 1 8 C0.34 8 -0.32 8 -1 8 C-1.33 8.66 -1.66 9.32 -2 10 C-1.12 2.25 -1.12 2.25 0 0 Z " fill="#A5A4A6" transform="translate(611,761)"/>
82
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1 2.64 1 5.28 1 8 C0.34 8 -0.32 8 -1 8 C-1.33 8.66 -1.66 9.32 -2 10 C-1.12 2.25 -1.12 2.25 0 0 Z " fill="#A0A0A2" transform="translate(620,734)"/>
83
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1 2.64 1 5.28 1 8 C0.34 8 -0.32 8 -1 8 C-1.33 8.66 -1.66 9.32 -2 10 C-1.12 2.25 -1.12 2.25 0 0 Z " fill="#979799" transform="translate(838,729)"/>
84
+ <path d="M0 0 C3.01 3.01 2.6 5.82 3 10 C2.67 9.34 2.34 8.68 2 8 C1.34 8 0.68 8 0 8 C0 5.36 0 2.72 0 0 Z " fill="#68676A" transform="translate(406,674)"/>
85
+ <path d="M0 0 C2 1.12 2 1.12 4 3 C4.25 6.19 4.25 6.19 4 9 C3.67 8.01 3.34 7.02 3 6 C2.34 6 1.68 6 1 6 C0.67 4.02 0.34 2.04 0 0 Z " fill="#ACACAD" transform="translate(505,973)"/>
86
+ <path d="M0 0 C0.66 0 1.32 0 2 0 C1.25 2.94 1.25 2.94 0 6 C-2.12 6.88 -2.12 6.88 -4 7 C-2.68 4.69 -1.36 2.38 0 0 Z " fill="#ABABAD" transform="translate(1145,880)"/>
87
+ <path d="M0 0 C0.66 0 1.32 0 2 0 C2.33 1.65 2.66 3.3 3 5 C1.68 5.33 0.36 5.66 -1 6 C-0.67 4.02 -0.34 2.04 0 0 Z " fill="#CAC9CB" transform="translate(821,784)"/>
88
+ </svg>
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "n8n-nodes-customje",
3
+ "version": "1.0.0",
4
+ "description": "Custom n8n node for Customje.",
5
+ "keywords": [
6
+ "n8n-community-node-package",
7
+ "customje.com",
8
+ "custom"
9
+ ],
10
+ "license": "MIT",
11
+ "homepage": "https://whop.com/tuanpakya",
12
+ "author": {
13
+ "name": "Tuan Pakya",
14
+ "url": "https://whop.com/tuanpakya"
15
+ },
16
+ "main": "index.js",
17
+ "scripts": {
18
+ "build": "tsc && gulp build:icons",
19
+ "dev": "tsc --watch",
20
+ "format": "prettier nodes credentials --write",
21
+ "lint": "eslint nodes credentials package.json",
22
+ "lintfix": "eslint nodes credentials package.json --fix",
23
+ "prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
24
+ },
25
+ "files": [
26
+ "dist"
27
+ ],
28
+ "n8n": {
29
+ "n8nNodesApiVersion": 1,
30
+ "credentials": [
31
+ "dist/credentials/AppCustomApi.credentials.js"
32
+ ],
33
+ "nodes": [
34
+ "dist/nodes/App/App.node.js"
35
+ ]
36
+ },
37
+ "devDependencies": {
38
+ "@typescript-eslint/parser": "~5.45",
39
+ "eslint-plugin-n8n-nodes-base": "^1.11.0",
40
+ "gulp": "^5.0.1",
41
+ "n8n-workflow": "^1.82.0",
42
+ "prettier": "^2.7.1",
43
+ "typescript": "~4.8.4"
44
+ },
45
+ "peerDependencies": {
46
+ "n8n-workflow": "*"
47
+ }
48
+ }
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/axios/index.d.ts","../node_modules/form-data/index.d.ts","../node_modules/n8n-workflow/dist/constants.d.ts","../node_modules/n8n-workflow/dist/deferredpromise.d.ts","../node_modules/n8n-workflow/dist/errors/error.types.d.ts","../node_modules/n8n-workflow/dist/errors/base/base.error.d.ts","../node_modules/n8n-workflow/dist/errors/base/operational.error.d.ts","../node_modules/n8n-workflow/dist/errors/base/unexpected.error.d.ts","../node_modules/n8n-workflow/dist/errors/base/user.error.d.ts","../node_modules/n8n-workflow/dist/errors/application.error.d.ts","../node_modules/n8n-workflow/dist/errors/abstract/execution-base.error.d.ts","../node_modules/n8n-workflow/dist/errors/expression.error.d.ts","../node_modules/n8n-workflow/dist/errors/execution-cancelled.error.d.ts","../node_modules/n8n-workflow/dist/errors/abstract/node.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-api.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-ssl.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-activation.error.d.ts","../node_modules/n8n-workflow/dist/errors/webhook-taken.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-deactivation.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/cli-subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/trigger-close.error.d.ts","../node_modules/n8n-workflow/dist/errors/expression-extension.error.d.ts","../node_modules/n8n-workflow/dist/errors/db-connection-timeout-error.d.ts","../node_modules/n8n-workflow/dist/errors/ensure-error.d.ts","../node_modules/n8n-workflow/dist/errors/index.d.ts","../node_modules/n8n-workflow/dist/executionstatus.d.ts","../node_modules/n8n-workflow/dist/result.d.ts","../node_modules/n8n-workflow/dist/expression.d.ts","../node_modules/n8n-workflow/dist/workflow.d.ts","../node_modules/n8n-workflow/dist/workflowdataproxyenvprovider.d.ts","../node_modules/n8n-workflow/dist/interfaces.d.ts","../node_modules/n8n-workflow/dist/loggerproxy.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/types.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/namedtypes.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/kinds.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/builders.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/types.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/path.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/scope.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/node-path.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/path-visitor.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/visitor.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/main.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/options.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/parser.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/printer.d.ts","../node_modules/@n8n/tournament/node_modules/recast/main.d.ts","../node_modules/@n8n/tournament/dist/expressionsplitter.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/namedtypes.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/kinds.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/builders.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/types.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/path.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/scope.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/node-path.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/path-visitor.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/visitor.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/main.d.ts","../node_modules/@n8n/tournament/dist/ast.d.ts","../node_modules/@n8n/tournament/dist/expressionbuilder.d.ts","../node_modules/@n8n/tournament/dist/evaluator.d.ts","../node_modules/@n8n/tournament/dist/analysis.d.ts","../node_modules/@n8n/tournament/dist/index.d.ts","../node_modules/n8n-workflow/dist/expressionevaluatorproxy.d.ts","../node_modules/n8n-workflow/dist/nodehelpers.d.ts","../node_modules/n8n-workflow/dist/observableobject.d.ts","../node_modules/n8n-workflow/dist/telemetryhelpers.d.ts","../node_modules/n8n-workflow/dist/cron.d.ts","../node_modules/n8n-workflow/dist/globalstate.d.ts","../node_modules/n8n-workflow/dist/messageeventbus.d.ts","../node_modules/zod/lib/helpers/typealiases.d.ts","../node_modules/zod/lib/helpers/util.d.ts","../node_modules/zod/lib/zoderror.d.ts","../node_modules/zod/lib/locales/en.d.ts","../node_modules/zod/lib/errors.d.ts","../node_modules/zod/lib/helpers/parseutil.d.ts","../node_modules/zod/lib/helpers/enumutil.d.ts","../node_modules/zod/lib/helpers/errorutil.d.ts","../node_modules/zod/lib/helpers/partialutil.d.ts","../node_modules/zod/lib/standard-schema.d.ts","../node_modules/zod/lib/types.d.ts","../node_modules/zod/lib/external.d.ts","../node_modules/zod/lib/index.d.ts","../node_modules/zod/index.d.ts","../node_modules/n8n-workflow/dist/fromaiparseutils.d.ts","../node_modules/n8n-workflow/dist/metadatautils.d.ts","../node_modules/n8n-workflow/dist/workflowdataproxy.d.ts","../node_modules/n8n-workflow/dist/versionednodetype.d.ts","../node_modules/n8n-workflow/dist/typevalidation.d.ts","../node_modules/n8n-workflow/dist/utils.d.ts","../node_modules/n8n-workflow/dist/type-guards.d.ts","../node_modules/n8n-workflow/dist/extensions/extensions.d.ts","../node_modules/n8n-workflow/dist/extensions/expressionextension.d.ts","../node_modules/n8n-workflow/dist/extensions/index.d.ts","../node_modules/n8n-workflow/dist/extensions/expressionparser.d.ts","../node_modules/n8n-workflow/dist/nativemethods/index.d.ts","../node_modules/n8n-workflow/dist/nodeparameters/filterparameter.d.ts","../node_modules/n8n-workflow/dist/index.d.ts","../credentials/appcustomapi.credentials.ts","../nodes/app/genericfunctions.ts","../nodes/app/moduledetails.ts","../nodes/app/app.node.ts","../nodes/app/app.node.json","../package.json","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},"dc602ef9638db2163c461ec64133fe76f890f6e03b69b1c96f5c5e59592025e8","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","8093df4b6de7728cd3327b33ce2846cb808e3b738b55f380578ab47fb1a0a82f","a0981ee0c7ac06bdb575558bd09bac190e1c0c7888ddcb63d8bf648f23a30e8c","b047c5f4612ebd6f142d2eda135939c6808ac082b2251a36e9e002b96f04ca18","816c068d57010d183fa4dce821e6552a912cb654cf9f0e840f49f0a0fb3d2157","5ca59af607163e4c0b2350019394132c6fd5d643ecc13d5d2692084c23eb74fc","ebc356c4f81035935ebddc0e1c7818038b78043d349d58e1042aa1c0579b5600","fc73b467be17d21f268b1dae8e63c269e8eba711d6d3faf3c5e525383ac5b461","4ba081d644e7e33dc2fa68f4bf7b963cbf9838092a10f0f7d5dcc98095012bfb","7c1d9666b46748a09c7c290f2cad37d32d0a395c4fc49357f0f7b32cd2dc7d97","054eafa956d5592e6a91c2553e5657ee3032ed50121a65da1079c96d82631459","01d56fcd8d2968c9545f42ab80c1e6a43be249dadeb2d38262b888370ebbdf32","cf53b1ef37bdf9eacfe04a5c0977793a87fbdd8d6893aa513075fa656c2f7638","bfccff2a7a1a17431408d48ec6ef5f54c42d1a1650b97e291c63de8b07333ccb","ab8790af6d4be130bd0faaba17d6a1d6394b21a643af03be4827fd7f8664caac","37020cf15e16fa6e1c6e2485cd51d6cbe74adee3b860ab49fb7528ca7e8e518e","2f83df884805baffce941efa67d2e459f09d82ae5f03b35771eea7bb9875346b","1950d2a49c05c7aa6decfe409b552c4ea5fb156894cf0541b34999819bd778ea","32fe829960ff7120843f6dd20197e863aee3e81ecded415641a7500654d1bda7","0b8d5b22b236fff7e23f3a5d1ddeb80bee6630bd35b1bf1c3efae226f08a1c3d","393b1ed0dca4f0aac333e65f2e40dfedfa8b37ac60571e02b152d32d8c84d340","f46d50c283425bcc59d68ccf067b3672fb727f802652dc7d60d2e470fb956370","38e7ca4f87ae169831eee751ad1b043b672bc9f328c0d44ec5a1bed98756a0b4","0b4b6ca509cdb152e18ceeed526d17bb416e7e518508d859a0174977195f9a35","124e0f6c51420174212b8d23f9a53d5d781d4777995164f1fb64957eac658ce7","c7da212302d6bfa21317461599d24e8077b34664b4ed409c4c02a3d5fe31efaf","bf070df468371021e0dd0ad9ab7918b3f94254044136bf711c7e0e855f75309e","3226c2a2af36d14aa551babd4154ad18042c0deb1509a61058c6b066cfddc30a","191d027b3924d5046fbf118bae0987969b9e03eba478ad34d2572244720ddb3c","14f2edd0618d9adaf83d22b55155ec41faddac678b4d158c8380e4325c8b36b6","72c9243dfd255afefe50d511f215053083a79db363d12e7e394ba78462be9e1b","2fbcb6bb6ffd69437452ca3029458f3c81a92b72aa71922df931cc4d373fffc1","8515d09f98ff2e7251cc970e74af5a0790caa52abc02d412ae87cbc6e47239ca","6d5438d567004aa049a2cdcad7aa2c3d671c9e74a0209297935b12bc16c3cf38","e78705f977ecfcc36de9ab57841ad7a617ef649b07a995577fd857f1d175f730","5083850590c7890ffb680f0c9838f48b07eb8b2f7dbe02874858fcac0691705d","02a4a2284d423d8ccc3a77aa9257c34fdac28cddfb46f73178e60f6a1b1b31e9","3ee8e014aab37dbd755401967fbb9602221550038f6b8da6cedd5291a918ae0a","826f3c6a6d737e0d330522094a21cde94a202c5373448240ba483709cb829aec","7e4a23f6f3763da4a06900935d22acfd463c375cada5ab325e3980bd6c95d5b3","f3e045e81b47113fa02aaf9637b9ef84347610aaceda60a0d8316aabc3f03638","1bfe6db4f3dffacd1da82748cb8f0acec04e8a4d7bd36c09573d5d80a7dec28b","6a8d6deca8ec4250630fea4e5f23bd9bf0face98739ccd22e08a17173117155b","226dbfe4506447111bd898161d47850f8c57f04cbb6a3a6d487b7939dbf89b1b","13f846a45f738733c8a63a06eaa9f580e9c07eb7aed5d8a2c674114846a42175","9d14fcf0b69094271127c7b6acb36987be5d1bffa4eb948359549f040fb50349","e3a5287471fb08f053c06fd998632792aa5f022e45278f1e6dd55fb2fa9e7362","28a6c8eeb48e165920067b9193555649fc43c2a28c450f23f622e5eb043d9463","1147c3efa5a256bcd6a3d2cfaf764185b7120bf985f8412d9bae596a0348f77b","0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","0295c7a5d5d956391ab9bf0410e73a89e25fe26810f9a1d823cc794d682cdafc","19826a846db870c2261a3c4cf0695df889d9fe3eebe7775f3f5bc76fe7ad07a7","e04cafd03370139cdb0c846273cb19eb4264be0073c7baf78e9b2c16ffb74813","7c01c77fb7d8664daa64819245d785e106e0a3cb6e43da64346e4400d7fa9401","8c2ca98f4713d989d610fbd38a44316bc43c50aa26983e62dc31002f32ce63fa","ee931610d1cf7a6e666fad138187751392fc88bee931b94ac8c4571208dc7370","53543b3b64e624a81fc5876da6d72c94dd87655e7afc10988cf82ce7cbc74180","967e68e99b8a80551837321442a0e2f12ef50aa1ce567ec991ac6bf062a0c7cf","144ab2f3ef7404caf39c6acc88d248d7e55ab3dd1c4c0d89367ad12169aec113","759002d4454b851c51b3585e0837c77d159c59957fc519c876449ee5d80a6643","1ff2be5eb8b9b508603019df9f851240e57360a9417e672bf4de9d3495833f81","8263aed8d77f5b9a10de995c8efd14ea0e5bc54e2b4525178b643f5b24f90f1d","a7e7df52af8795560306e4b354e6670d978c59a87dd78b81e58656890c5ed451","d6220bee7bd245bc2a377f1a8ef31c496132cc9c7e7e3937e7dd4cbbcec0b38d","7686d52e8cbd036b9ca265490c31e36945a52ef3a9e726523d36b02befec7331","0f55c8c4605355ddea9fdd104ea0cb089e6ce7f41165fdc72d08247665dba0d4","9cc46a5cf6e8b232bb86abfd0c0ed4e0fd25d95aa3d2930e4705b078d29e51ec","edd5e20e9eb8cb2eaf941d431af3ab69a9b94e7f5d8699b4c938fee1be8d53c4","edcb8d46132756662651f6a42656aaeced2e221d0929411fb0a62c906f9873dd","382d2239e60b72282adfeb672e22e6df4de3737ce7e5df2151823dab489496ba","304b0d21771513c0a36ed7179a9d1069bfa776e95f50b789ce898f3ef2b71514","a42e1c2eec0e747163afa705044664a39065215a8d66c930f8d43f118a9bc044","d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","b542939a35357458e62f8229c2d7578ae888d63d3ab837395d7bb8a3064c205e","3a5af4fba7b27b815bb40f52715aedebaa4b371da3e5a664e7e0798c9b638825","8485b6da53ec35637d072e516631d25dae53984500de70a6989058f24354666f","ebe80346928736532e4a822154eb77f57ef3389dbe2b3ba4e571366a15448ef2","49c632082dc8a916353288d3d8b2dc82b3471794249a381d090d960c8ceac908","f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","71addb585c2db7b8e53dc1b0bcfa58c6c67c6e4fa2b968942046749d66f82e7e","c76b0c5727302341d0bdfa2cc2cee4b19ff185b554edb6e8543f0661d8487116","25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","0320c5b275beb43649be5a818dfa83a2586ae110ac5bbb2c5eb7184e1fe3ca60","f5ef066942e4f0bd98200aa6a6694b831e73200c9b3ade77ad0aa2409e8fe1b1","b9e99cd94f4166a245f5158f7286c05406e2a4c694619bceb7a4f3519d1d768e","5568d7c32e5cf5f35e092649f4e5e168c3114c800b1d7545b7ae5e0415704802","378e26daa6ec402b81f5aea1ab47262d4f8ad8966037c26be75e8185366d09a1","4788f58342a67af140858e23a24cdf62457ec1ff79af68ac71b9d3c0c89bb53b","efb8488e3acac79cac5927eaa8069fffc1d37cc3b2c3213d0256e9e1be8276bc","951baa882e6e3e5026cb8a16f80a8bebec1caa35c3fa016c9a3ce6a338bd3123","361547594eb0fdbb5316523e4668c26ec483de464f53c4a0f65bbca573abae3e","afcef07b51d43cdd4e1bc0b92a3d84734cded5f12d764af090666afefb5a3676","3f6f70c077ed8d600aa24d8c0e83ba0dd5d2c5300d524cd2181efd30c0a62c72","b773bcdaeda86c0f58910cecd6c77a0bd60be763127c42cad5a64fe66799b1f6","0ca63470234437191f454f7f66b5815d79b59ebc636faa1de1194d282563e431","6d3b514475ee51ab5e99e4fc82ffcd6191d40c19dd197a1743111e0757c6f9c6","0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","716c6fce977a188f23ee5165e4179944a63e8620784a7054fc0dd81f6c348bb4","cf2324583854e9b5dd489e537e2d46375ffb66169fbd947dea112898210ed9ff","b4b08a04e1861c2494437fad74c5c71f38a2f3d3cdd51fba70fcb072f3337b58",{"version":"577646c9199b04b47bb34d25377ad04af340327c6be44b1b915534cc2272a79d","signature":"428a93a2bfd5edbe2cd15784839669bb618f776543995b4bbcd1caf08a6c5bdc"},{"version":"e54113b2c6b860e97f7e8c00e80c8e58df17b6696fe9b2e2607052fceebb5643","signature":"1dbd43410adc714feb842ae0b639d6d9cd7ab77317a8b29e7a03cb2f321f64bc"},{"version":"4bdac53525b934beea1b4bb5ca932d0460b016138efbeb8392508fc06c742bda","signature":"656f7d81457a557091106d4c54f2c8865e4bc7eaf95987883401d3312628ff91"},{"version":"9b2a184217090f75ca33cb6a21297b5028405c41fde85fd52f77d451f2dec7c9","signature":"1ad3634df548e15d0851c911cf96c84c5001c46673634e76bf9aa4629d3c8563"},{"version":"f44da3337289b3d6e1b6205346f4731d8a873870b03962f311098635cd5b130e","signature":"c88b9a6fd82975942d64d8d0899be75c49446e8e76ad0e2ea8af806c733885c6"},{"version":"f57ad7c0ae0a74a1f7579b9a83ea836f785f1db14dee08d9c9d323b23d704108","signature":"e59b0559558fdf75425a7ceea2af26d9b79bf36108037a3238d95994e2de9ca4"},"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","844ab83672160ca57a2a2ea46da4c64200d8c18d4ebb2087819649cad099ff0e"],"options":{"declaration":true,"esModuleInterop":true,"module":1,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":6,"useUnknownInCatchVariables":false},"fileIdsList":[[141],[103],[90,101],[106],[90,91,102],[102,103,104,105],[92,93],[92],[93,95],[92,98,99],[92,94,95,96,98,99,100],[95,96,97],[95,98,100],[95],[95,98],[92,94],[76],[87],[86,87,88,89],[77,78],[77],[76,78,80],[77,83,84],[76,80,81,82],[76,80,83,85],[76,80],[76,83],[76,77,79],[76,77,79,80,81,83,84,85],[149,188],[149,173,188],[188],[149],[149,174,188],[149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187],[174,188],[74],[45,50,74],[51,74],[45],[46],[62],[50],[51],[52],[45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67],[45,54,74],[54,55,74],[61],[58],[50,51,74],[72,74],[74,106],[135],[135,136],[127],[43,44,68,69,70,71,72,73,74,75,107,108,109,110,111,112,113,128,129,130,131,132,133,134,137,138,139,140],[41,42,43,44,52,55,56,58,61,68,69,70,72,73],[50,74],[71,74],[72,73,74],[126],[116,117],[114,115,116,118,119,124],[115,116],[125],[116],[114,115,116,119,120,121,122,123],[114,115,126],[141,143,144]],"referencedMap":[[142,1],[105,2],[102,3],[104,4],[103,5],[106,6],[94,7],[93,8],[92,9],[100,10],[101,11],[98,12],[99,13],[96,14],[97,15],[95,16],[87,17],[88,18],[90,19],[79,20],[78,21],[77,22],[85,23],[83,24],[84,25],[81,26],[82,27],[80,28],[86,29],[173,30],[174,31],[149,32],[152,32],[171,30],[172,30],[162,30],[161,33],[159,30],[154,30],[167,30],[165,30],[169,30],[153,30],[166,30],[170,30],[155,30],[156,30],[168,30],[150,30],[157,30],[158,30],[160,30],[164,30],[175,34],[163,30],[151,30],[188,35],[182,34],[184,36],[183,34],[176,34],[177,34],[179,34],[181,34],[185,36],[186,36],[178,36],[180,36],[111,37],[51,38],[54,39],[46,40],[47,41],[48,41],[49,41],[63,42],[66,43],[53,44],[65,45],[52,44],[68,46],[55,47],[56,48],[57,44],[62,49],[64,38],[59,50],[58,51],[60,50],[61,39],[71,52],[107,53],[136,54],[137,55],[128,56],[141,57],[74,58],[75,37],[113,37],[129,1],[139,54],[108,52],[140,59],[109,37],[110,37],[134,37],[132,37],[133,37],[131,37],[72,60],[130,61],[127,62],[118,63],[125,64],[119,65],[122,62],[126,66],[117,67],[124,68],[116,69],[145,70],[143,1],[144,1]],"exportedModulesMap":[[142,1],[105,2],[102,3],[104,4],[103,5],[106,6],[94,7],[93,8],[92,9],[100,10],[101,11],[98,12],[99,13],[96,14],[97,15],[95,16],[87,17],[88,18],[90,19],[79,20],[78,21],[77,22],[85,23],[83,24],[84,25],[81,26],[82,27],[80,28],[86,29],[173,30],[174,31],[149,32],[152,32],[171,30],[172,30],[162,30],[161,33],[159,30],[154,30],[167,30],[165,30],[169,30],[153,30],[166,30],[170,30],[155,30],[156,30],[168,30],[150,30],[157,30],[158,30],[160,30],[164,30],[175,34],[163,30],[151,30],[188,35],[182,34],[184,36],[183,34],[176,34],[177,34],[179,34],[181,34],[185,36],[186,36],[178,36],[180,36],[111,37],[51,38],[54,39],[46,40],[47,41],[48,41],[49,41],[63,42],[66,43],[53,44],[65,45],[52,44],[68,46],[55,47],[56,48],[57,44],[62,49],[64,38],[59,50],[58,51],[60,50],[61,39],[71,52],[107,53],[136,54],[137,55],[128,56],[141,57],[74,58],[75,37],[113,37],[129,1],[139,54],[108,52],[140,59],[109,37],[110,37],[134,37],[132,37],[133,37],[131,37],[72,60],[130,61],[127,62],[118,63],[125,64],[119,65],[122,62],[126,66],[117,67],[124,68],[116,69],[145,1],[143,1],[144,1]],"semanticDiagnosticsPerFile":[142,105,102,104,103,91,106,94,93,92,100,101,98,99,96,97,95,87,88,89,90,79,78,77,85,83,84,81,82,80,86,76,148,173,174,149,152,171,172,162,161,159,154,167,165,169,153,166,170,155,156,168,150,157,158,160,164,175,163,151,188,187,182,184,183,176,177,179,181,185,186,178,180,41,42,43,111,44,51,54,50,46,47,48,49,63,66,67,45,53,65,52,68,55,56,57,62,64,59,58,60,61,69,71,107,136,138,135,137,128,112,141,74,75,113,129,139,108,140,109,70,110,134,132,133,131,72,130,73,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,7,33,38,39,34,35,36,37,40,1,127,118,125,120,121,119,122,114,115,126,117,123,124,116,146,145,143,144,147]},"version":"4.8.4"}
package/index.js ADDED
File without changes
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "n8n-nodes-customje",
3
+ "version": "1.0.0",
4
+ "description": "Custom n8n node for Customje.",
5
+ "keywords": [
6
+ "n8n-community-node-package",
7
+ "customje.com",
8
+ "custom"
9
+ ],
10
+ "license": "MIT",
11
+ "homepage": "https://whop.com/tuanpakya",
12
+ "author": {
13
+ "name": "Tuan Pakya",
14
+ "url": "https://whop.com/tuanpakya"
15
+ },
16
+ "main": "index.js",
17
+ "scripts": {
18
+ "build": "tsc && gulp build:icons",
19
+ "dev": "tsc --watch",
20
+ "format": "prettier nodes credentials --write",
21
+ "lint": "eslint nodes credentials package.json",
22
+ "lintfix": "eslint nodes credentials package.json --fix",
23
+ "prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
24
+ },
25
+ "files": [
26
+ "dist"
27
+ ],
28
+ "n8n": {
29
+ "n8nNodesApiVersion": 1,
30
+ "credentials": [
31
+ "dist/credentials/AppCustomApi.credentials.js"
32
+ ],
33
+ "nodes": [
34
+ "dist/nodes/App/App.node.js"
35
+ ]
36
+ },
37
+ "devDependencies": {
38
+ "@typescript-eslint/parser": "~5.45",
39
+ "eslint-plugin-n8n-nodes-base": "^1.11.0",
40
+ "gulp": "^5.0.1",
41
+ "n8n-workflow": "^1.82.0",
42
+ "prettier": "^2.7.1",
43
+ "typescript": "~4.8.4"
44
+ },
45
+ "peerDependencies": {
46
+ "n8n-workflow": "*"
47
+ }
48
+ }