n8n-nodes-servicem8-jobcreation 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/README.md +517 -0
- package/dist/credentials/ServiceM8Api.credentials.d.ts +9 -0
- package/dist/credentials/ServiceM8Api.credentials.js +38 -0
- package/dist/credentials/ServiceM8Api.credentials.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/ServiceM8JobCreation.node.d.ts +18 -0
- package/dist/nodes/ServiceM8JobCreation/ServiceM8JobCreation.node.js +39 -0
- package/dist/nodes/ServiceM8JobCreation/ServiceM8JobCreation.node.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/execute.d.ts +6 -0
- package/dist/nodes/ServiceM8JobCreation/execute.js +47 -0
- package/dist/nodes/ServiceM8JobCreation/execute.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/helpers/addressUtils.d.ts +56 -0
- package/dist/nodes/ServiceM8JobCreation/helpers/addressUtils.js +124 -0
- package/dist/nodes/ServiceM8JobCreation/helpers/addressUtils.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/helpers/api.d.ts +180 -0
- package/dist/nodes/ServiceM8JobCreation/helpers/api.js +418 -0
- package/dist/nodes/ServiceM8JobCreation/helpers/api.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/helpers/clientMatcher.d.ts +67 -0
- package/dist/nodes/ServiceM8JobCreation/helpers/clientMatcher.js +216 -0
- package/dist/nodes/ServiceM8JobCreation/helpers/clientMatcher.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/helpers/phoneUtils.d.ts +35 -0
- package/dist/nodes/ServiceM8JobCreation/helpers/phoneUtils.js +122 -0
- package/dist/nodes/ServiceM8JobCreation/helpers/phoneUtils.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/methods/index.d.ts +13 -0
- package/dist/nodes/ServiceM8JobCreation/methods/index.js +17 -0
- package/dist/nodes/ServiceM8JobCreation/methods/index.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/methods/loadOptions.d.ts +9 -0
- package/dist/nodes/ServiceM8JobCreation/methods/loadOptions.js +61 -0
- package/dist/nodes/ServiceM8JobCreation/methods/loadOptions.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/categoryAssign.d.ts +22 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/categoryAssign.js +61 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/categoryAssign.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/clientCreate.d.ts +36 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/clientCreate.js +66 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/clientCreate.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/clientLookup.d.ts +28 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/clientLookup.js +46 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/clientLookup.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/contactLookup.d.ts +18 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/contactLookup.js +48 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/contactLookup.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/index.d.ts +12 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/index.js +40 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/index.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/inputProcessor.d.ts +63 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/inputProcessor.js +176 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/inputProcessor.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/jobCreate.d.ts +43 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/jobCreate.js +82 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/jobCreate.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/notifications.d.ts +38 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/notifications.js +123 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/notifications.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/orchestrator.d.ts +12 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/orchestrator.js +192 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/orchestrator.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/queueAssign.d.ts +22 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/queueAssign.js +61 -0
- package/dist/nodes/ServiceM8JobCreation/operations/create/queueAssign.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/operations/index.d.ts +8 -0
- package/dist/nodes/ServiceM8JobCreation/operations/index.js +35 -0
- package/dist/nodes/ServiceM8JobCreation/operations/index.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/operations/shared/attachmentsUpload.d.ts +41 -0
- package/dist/nodes/ServiceM8JobCreation/operations/shared/attachmentsUpload.js +243 -0
- package/dist/nodes/ServiceM8JobCreation/operations/shared/attachmentsUpload.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/operations/shared/badgesAssign.d.ts +21 -0
- package/dist/nodes/ServiceM8JobCreation/operations/shared/badgesAssign.js +65 -0
- package/dist/nodes/ServiceM8JobCreation/operations/shared/badgesAssign.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/operations/shared/index.d.ts +7 -0
- package/dist/nodes/ServiceM8JobCreation/operations/shared/index.js +15 -0
- package/dist/nodes/ServiceM8JobCreation/operations/shared/index.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/operations/shared/notesCreate.d.ts +42 -0
- package/dist/nodes/ServiceM8JobCreation/operations/shared/notesCreate.js +103 -0
- package/dist/nodes/ServiceM8JobCreation/operations/shared/notesCreate.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/operations/update/index.d.ts +5 -0
- package/dist/nodes/ServiceM8JobCreation/operations/update/index.js +9 -0
- package/dist/nodes/ServiceM8JobCreation/operations/update/index.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/operations/update/jobUpdate.d.ts +10 -0
- package/dist/nodes/ServiceM8JobCreation/operations/update/jobUpdate.js +239 -0
- package/dist/nodes/ServiceM8JobCreation/operations/update/jobUpdate.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/address.d.ts +5 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/address.js +145 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/address.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/business.d.ts +5 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/business.js +22 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/business.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/contact.d.ts +5 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/contact.js +85 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/contact.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/index.d.ts +10 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/index.js +30 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/index.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/job.d.ts +5 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/job.js +43 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/job.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/additionalOptions.d.ts +5 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/additionalOptions.js +49 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/additionalOptions.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/attachments.d.ts +5 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/attachments.js +151 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/attachments.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/badges.d.ts +5 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/badges.js +65 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/badges.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/category.d.ts +5 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/category.js +65 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/category.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/index.d.ts +12 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/index.js +38 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/index.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/notes.d.ts +5 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/notes.js +49 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/notes.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/notifications.d.ts +5 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/notifications.js +197 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/notifications.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/queue.d.ts +5 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/queue.js +65 -0
- package/dist/nodes/ServiceM8JobCreation/properties/create/options/queue.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/properties/index.d.ts +9 -0
- package/dist/nodes/ServiceM8JobCreation/properties/index.js +23 -0
- package/dist/nodes/ServiceM8JobCreation/properties/index.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/properties/operation.d.ts +5 -0
- package/dist/nodes/ServiceM8JobCreation/properties/operation.js +28 -0
- package/dist/nodes/ServiceM8JobCreation/properties/operation.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/properties/update/fields.d.ts +5 -0
- package/dist/nodes/ServiceM8JobCreation/properties/update/fields.js +74 -0
- package/dist/nodes/ServiceM8JobCreation/properties/update/fields.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/properties/update/index.d.ts +8 -0
- package/dist/nodes/ServiceM8JobCreation/properties/update/index.js +22 -0
- package/dist/nodes/ServiceM8JobCreation/properties/update/index.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/properties/update/jobSelection.d.ts +5 -0
- package/dist/nodes/ServiceM8JobCreation/properties/update/jobSelection.js +63 -0
- package/dist/nodes/ServiceM8JobCreation/properties/update/jobSelection.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/properties/update/options.d.ts +5 -0
- package/dist/nodes/ServiceM8JobCreation/properties/update/options.js +142 -0
- package/dist/nodes/ServiceM8JobCreation/properties/update/options.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/servicem8.svg +75 -0
- package/dist/nodes/ServiceM8JobCreation/types/api.d.ts +59 -0
- package/dist/nodes/ServiceM8JobCreation/types/api.js +34 -0
- package/dist/nodes/ServiceM8JobCreation/types/api.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/types/index.d.ts +7 -0
- package/dist/nodes/ServiceM8JobCreation/types/index.js +21 -0
- package/dist/nodes/ServiceM8JobCreation/types/index.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/types/input.d.ts +119 -0
- package/dist/nodes/ServiceM8JobCreation/types/input.js +6 -0
- package/dist/nodes/ServiceM8JobCreation/types/input.js.map +1 -0
- package/dist/nodes/ServiceM8JobCreation/types/result.d.ts +79 -0
- package/dist/nodes/ServiceM8JobCreation/types/result.js +96 -0
- package/dist/nodes/ServiceM8JobCreation/types/result.js.map +1 -0
- package/package.json +66 -0
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Optional Features Properties (Update Job)
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.updateOptionsProperties = void 0;
|
|
7
|
+
exports.updateOptionsProperties = [
|
|
8
|
+
// Badges
|
|
9
|
+
{
|
|
10
|
+
displayName: 'Add Badges',
|
|
11
|
+
name: 'updateEnableBadges',
|
|
12
|
+
type: 'boolean',
|
|
13
|
+
default: false,
|
|
14
|
+
displayOptions: {
|
|
15
|
+
show: {
|
|
16
|
+
operation: ['update'],
|
|
17
|
+
},
|
|
18
|
+
},
|
|
19
|
+
description: 'Whether to add badges to the job',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
displayName: 'Badges',
|
|
23
|
+
name: 'updateBadges',
|
|
24
|
+
type: 'multiOptions',
|
|
25
|
+
typeOptions: {
|
|
26
|
+
loadOptionsMethod: 'getBadges',
|
|
27
|
+
},
|
|
28
|
+
default: [],
|
|
29
|
+
displayOptions: {
|
|
30
|
+
show: {
|
|
31
|
+
operation: ['update'],
|
|
32
|
+
updateEnableBadges: [true],
|
|
33
|
+
},
|
|
34
|
+
},
|
|
35
|
+
description: 'Badges to add to the job',
|
|
36
|
+
},
|
|
37
|
+
// Attachments
|
|
38
|
+
{
|
|
39
|
+
displayName: 'Upload Attachments',
|
|
40
|
+
name: 'updateEnableAttachments',
|
|
41
|
+
type: 'boolean',
|
|
42
|
+
default: false,
|
|
43
|
+
displayOptions: {
|
|
44
|
+
show: {
|
|
45
|
+
operation: ['update'],
|
|
46
|
+
},
|
|
47
|
+
},
|
|
48
|
+
description: 'Whether to upload attachments to the job',
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
displayName: 'Attachment Mode',
|
|
52
|
+
name: 'updateAttachmentMode',
|
|
53
|
+
type: 'options',
|
|
54
|
+
options: [
|
|
55
|
+
{
|
|
56
|
+
name: 'All Binary Data (Recommended)',
|
|
57
|
+
value: 'allBinary',
|
|
58
|
+
description: 'Automatically upload all binary data from the incoming item',
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
name: 'URL List',
|
|
62
|
+
value: 'urlList',
|
|
63
|
+
description: 'Provide a comma-separated list of URLs to download and attach',
|
|
64
|
+
},
|
|
65
|
+
],
|
|
66
|
+
default: 'allBinary',
|
|
67
|
+
displayOptions: {
|
|
68
|
+
show: {
|
|
69
|
+
operation: ['update'],
|
|
70
|
+
updateEnableAttachments: [true],
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
description: 'How to specify attachments',
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
displayName: 'URL List',
|
|
77
|
+
name: 'updateAttachmentUrlList',
|
|
78
|
+
type: 'string',
|
|
79
|
+
default: '',
|
|
80
|
+
placeholder: 'https://example.com/file1.pdf, https://example.com/file2.jpg',
|
|
81
|
+
displayOptions: {
|
|
82
|
+
show: {
|
|
83
|
+
operation: ['update'],
|
|
84
|
+
updateEnableAttachments: [true],
|
|
85
|
+
updateAttachmentMode: ['urlList'],
|
|
86
|
+
},
|
|
87
|
+
},
|
|
88
|
+
description: 'Comma-separated list of URLs to download and attach',
|
|
89
|
+
},
|
|
90
|
+
// Notes
|
|
91
|
+
{
|
|
92
|
+
displayName: 'Add Note',
|
|
93
|
+
name: 'updateEnableNote',
|
|
94
|
+
type: 'boolean',
|
|
95
|
+
default: false,
|
|
96
|
+
displayOptions: {
|
|
97
|
+
show: {
|
|
98
|
+
operation: ['update'],
|
|
99
|
+
},
|
|
100
|
+
},
|
|
101
|
+
description: 'Whether to add a note to the job',
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
displayName: 'Note Content',
|
|
105
|
+
name: 'updateNoteContent',
|
|
106
|
+
type: 'string',
|
|
107
|
+
typeOptions: {
|
|
108
|
+
rows: 4,
|
|
109
|
+
},
|
|
110
|
+
default: '',
|
|
111
|
+
displayOptions: {
|
|
112
|
+
show: {
|
|
113
|
+
operation: ['update'],
|
|
114
|
+
updateEnableNote: [true],
|
|
115
|
+
},
|
|
116
|
+
},
|
|
117
|
+
description: 'Note content to add to the job',
|
|
118
|
+
},
|
|
119
|
+
// Additional Options
|
|
120
|
+
{
|
|
121
|
+
displayName: 'Additional Options',
|
|
122
|
+
name: 'updateAdditionalOptions',
|
|
123
|
+
type: 'collection',
|
|
124
|
+
placeholder: 'Add Option',
|
|
125
|
+
default: {},
|
|
126
|
+
displayOptions: {
|
|
127
|
+
show: {
|
|
128
|
+
operation: ['update'],
|
|
129
|
+
},
|
|
130
|
+
},
|
|
131
|
+
options: [
|
|
132
|
+
{
|
|
133
|
+
displayName: 'Return Headers',
|
|
134
|
+
name: 'returnHeaders',
|
|
135
|
+
type: 'boolean',
|
|
136
|
+
default: false,
|
|
137
|
+
description: 'Whether to include all created record UUIDs in the output (notes, attachments)',
|
|
138
|
+
},
|
|
139
|
+
],
|
|
140
|
+
},
|
|
141
|
+
];
|
|
142
|
+
//# sourceMappingURL=options.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"options.js","sourceRoot":"","sources":["../../../../../nodes/ServiceM8JobCreation/properties/update/options.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAIU,QAAA,uBAAuB,GAAsB;IACzD,SAAS;IACT;QACC,WAAW,EAAE,YAAY;QACzB,IAAI,EAAE,oBAAoB;QAC1B,IAAI,EAAE,SAAS;QACf,OAAO,EAAE,KAAK;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,SAAS,EAAE,CAAC,QAAQ,CAAC;aACrB;SACD;QACD,WAAW,EAAE,kCAAkC;KAC/C;IACD;QACC,WAAW,EAAE,QAAQ;QACrB,IAAI,EAAE,cAAc;QACpB,IAAI,EAAE,cAAc;QACpB,WAAW,EAAE;YACZ,iBAAiB,EAAE,WAAW;SAC9B;QACD,OAAO,EAAE,EAAE;QACX,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,SAAS,EAAE,CAAC,QAAQ,CAAC;gBACrB,kBAAkB,EAAE,CAAC,IAAI,CAAC;aAC1B;SACD;QACD,WAAW,EAAE,0BAA0B;KACvC;IAED,cAAc;IACd;QACC,WAAW,EAAE,oBAAoB;QACjC,IAAI,EAAE,yBAAyB;QAC/B,IAAI,EAAE,SAAS;QACf,OAAO,EAAE,KAAK;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,SAAS,EAAE,CAAC,QAAQ,CAAC;aACrB;SACD;QACD,WAAW,EAAE,0CAA0C;KACvD;IACD;QACC,WAAW,EAAE,iBAAiB;QAC9B,IAAI,EAAE,sBAAsB;QAC5B,IAAI,EAAE,SAAS;QACf,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,+BAA+B;gBACrC,KAAK,EAAE,WAAW;gBAClB,WAAW,EAAE,6DAA6D;aAC1E;YACD;gBACC,IAAI,EAAE,UAAU;gBAChB,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,+DAA+D;aAC5E;SACD;QACD,OAAO,EAAE,WAAW;QACpB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,SAAS,EAAE,CAAC,QAAQ,CAAC;gBACrB,uBAAuB,EAAE,CAAC,IAAI,CAAC;aAC/B;SACD;QACD,WAAW,EAAE,4BAA4B;KACzC;IACD;QACC,WAAW,EAAE,UAAU;QACvB,IAAI,EAAE,yBAAyB;QAC/B,IAAI,EAAE,QAAQ;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,8DAA8D;QAC3E,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,SAAS,EAAE,CAAC,QAAQ,CAAC;gBACrB,uBAAuB,EAAE,CAAC,IAAI,CAAC;gBAC/B,oBAAoB,EAAE,CAAC,SAAS,CAAC;aACjC;SACD;QACD,WAAW,EAAE,qDAAqD;KAClE;IAED,QAAQ;IACR;QACC,WAAW,EAAE,UAAU;QACvB,IAAI,EAAE,kBAAkB;QACxB,IAAI,EAAE,SAAS;QACf,OAAO,EAAE,KAAK;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,SAAS,EAAE,CAAC,QAAQ,CAAC;aACrB;SACD;QACD,WAAW,EAAE,kCAAkC;KAC/C;IACD;QACC,WAAW,EAAE,cAAc;QAC3B,IAAI,EAAE,mBAAmB;QACzB,IAAI,EAAE,QAAQ;QACd,WAAW,EAAE;YACZ,IAAI,EAAE,CAAC;SACP;QACD,OAAO,EAAE,EAAE;QACX,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,SAAS,EAAE,CAAC,QAAQ,CAAC;gBACrB,gBAAgB,EAAE,CAAC,IAAI,CAAC;aACxB;SACD;QACD,WAAW,EAAE,gCAAgC;KAC7C;IAED,qBAAqB;IACrB;QACC,WAAW,EAAE,oBAAoB;QACjC,IAAI,EAAE,yBAAyB;QAC/B,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,YAAY;QACzB,OAAO,EAAE,EAAE;QACX,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,SAAS,EAAE,CAAC,QAAQ,CAAC;aACrB;SACD;QACD,OAAO,EAAE;YACR;gBACC,WAAW,EAAE,gBAAgB;gBAC7B,IAAI,EAAE,eAAe;gBACrB,IAAI,EAAE,SAAS;gBACf,OAAO,EAAE,KAAK;gBACd,WAAW,EAAE,gFAAgF;aAC7F;SACD;KACD;CACD,CAAC"}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="31.999998"
|
|
6
|
+
height="31.999998"
|
|
7
|
+
viewBox="0 0 8.466666 8.4666661"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
xml:space="preserve"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
|
15
|
+
id="namedview1"
|
|
16
|
+
pagecolor="#ffffff"
|
|
17
|
+
bordercolor="#000000"
|
|
18
|
+
borderopacity="0"
|
|
19
|
+
inkscape:showpageshadow="2"
|
|
20
|
+
inkscape:pageopacity="0.0"
|
|
21
|
+
inkscape:pagecheckerboard="false"
|
|
22
|
+
inkscape:deskcolor="#d1d1d1"
|
|
23
|
+
inkscape:document-units="px"
|
|
24
|
+
showborder="false"
|
|
25
|
+
inkscape:export-bgcolor="#ffffff00"><inkscape:page
|
|
26
|
+
x="0"
|
|
27
|
+
y="0"
|
|
28
|
+
width="8.4666662"
|
|
29
|
+
height="8.4666662"
|
|
30
|
+
id="page2"
|
|
31
|
+
margin="0"
|
|
32
|
+
bleed="0" /></sodipodi:namedview><defs
|
|
33
|
+
id="defs1" /><g
|
|
34
|
+
inkscape:label="Layer 1"
|
|
35
|
+
inkscape:groupmode="layer"
|
|
36
|
+
id="layer1"><g
|
|
37
|
+
id="svgg"
|
|
38
|
+
transform="matrix(0.02166325,0,0,0.02166325,-0.75412387,-0.14412093)"><rect
|
|
39
|
+
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
|
40
|
+
id="rect1"
|
|
41
|
+
width="6.8775558"
|
|
42
|
+
height="7.1535778"
|
|
43
|
+
x="0.69005573"
|
|
44
|
+
y="0.55204457"
|
|
45
|
+
transform="matrix(46.161125,0,0,46.161125,34.811207,6.6527843)" /><path
|
|
46
|
+
id="path0"
|
|
47
|
+
d="m 65.2,8.6 c 0,0.487 -0.649,0.6 -3.437,0.6 -3.101,0 -3.458,0.078 -3.647,0.8 -0.182,0.696 -0.546,0.8 -2.8,0.8 -2.25,0 -2.618,0.105 -2.799,0.796 -0.114,0.437 -0.362,0.7 -0.549,0.584 -0.188,-0.116 -0.571,0.156 -0.851,0.604 -0.399,0.639 -0.93,0.816 -2.451,0.816 -1.604,0 -1.977,0.139 -2.15,0.8 -0.157,0.601 -0.546,0.8 -1.563,0.8 -0.936,0 -1.353,0.185 -1.353,0.6 0,0.404 -0.404,0.6 -1.237,0.6 -0.901,0 -1.295,0.217 -1.447,0.8 C 40.8,17.643 40.37,18 39.953,18 39.539,18 39.2,18.27 39.2,18.6 c 0,0.419 -0.422,0.6 -1.4,0.6 -1.133,0 -1.4,0.152 -1.4,0.8 0,0.444 -0.267,0.8 -0.6,0.8 -0.33,0 -0.6,0.27 -0.6,0.6 0,0.333 -0.356,0.6 -0.8,0.6 -0.533,0 -0.8,0.267 -0.8,0.8 0,0.628 -0.267,0.8 -1.237,0.8 -0.901,0 -1.295,0.217 -1.447,0.8 -0.116,0.443 -0.546,0.8 -0.963,0.8 -0.414,0 -0.753,0.27 -0.753,0.6 0,0.33 -0.27,0.6 -0.6,0.6 -0.333,0 -0.6,0.356 -0.6,0.8 0,0.533 -0.267,0.8 -0.8,0.8 -0.444,0 -0.8,0.267 -0.8,0.6 0,0.33 -0.27,0.6 -0.6,0.6 -0.333,0 -0.6,0.356 -0.6,0.8 0,0.533 -0.267,0.8 -0.8,0.8 -0.533,0 -0.8,0.267 -0.8,0.8 0,0.44 -0.262,0.8 -0.582,0.8 -0.346,0 -0.686,0.557 -0.84,1.378 -0.223,1.186 -0.434,1.394 -1.518,1.5 -1.099,0.106 -1.276,0.289 -1.385,1.422 -0.078,0.805 -0.344,1.3 -0.7,1.3 -0.39,0 -0.575,0.45 -0.575,1.4 0,1.133 -0.152,1.4 -0.8,1.4 -0.533,0 -0.8,0.267 -0.8,0.8 0,0.444 -0.267,0.8 -0.6,0.8 -0.419,0 -0.6,0.422 -0.6,1.4 0,1.133 -0.152,1.4 -0.8,1.4 -0.693,0 -0.8,0.267 -0.8,2 0,1.868 -0.215,2.212 -1.286,2.052 -0.157,-0.023 -0.178,0.236 -0.048,0.577 0.158,0.411 -0.048,0.694 -0.614,0.842 -0.658,0.171 -0.852,0.531 -0.852,1.576 0,0.89 -0.191,1.353 -0.557,1.353 -0.767,0 -1.043,0.896 -1.043,3.39 0,1.519 -0.171,2.19 -0.6,2.355 C 8.132,59.524 8,60.318 8,62.941 8,65.97 7.92,66.328 7.2,66.516 5.935,66.847 5.935,335.935 7.2,337.2 c 0.667,0.667 0.8,1.333 0.8,4.013 0,2.486 0.136,3.264 0.6,3.442 0.422,0.162 0.6,0.821 0.6,2.225 0,1.658 0.135,2.03 0.8,2.204 0.675,0.177 0.8,0.546 0.8,2.363 0,1.875 0.102,2.153 0.787,2.153 0.536,0 0.714,0.192 0.558,0.6 -0.16,0.416 0.027,0.6 0.612,0.6 0.701,0 0.843,0.242 0.843,1.437 0,1.101 0.187,1.487 0.8,1.647 0.601,0.157 0.8,0.546 0.8,1.563 0,0.936 0.185,1.353 0.6,1.353 0.419,0 0.6,0.422 0.6,1.4 0,1.133 0.152,1.4 0.8,1.4 0.589,0 0.8,0.267 0.8,1.013 0,0.556 0.27,1.116 0.6,1.242 0.33,0.127 0.6,0.571 0.6,0.988 0,0.416 0.166,0.757 0.369,0.757 0.481,0 2.831,2.35 2.831,2.831 0,0.203 0.27,0.369 0.6,0.369 0.33,0 0.6,0.27 0.6,0.6 0,0.333 0.356,0.6 0.8,0.6 0.533,0 0.8,0.267 0.8,0.8 0,0.444 0.267,0.8 0.6,0.8 0.33,0 0.6,0.27 0.6,0.6 0,0.333 0.356,0.6 0.8,0.6 0.533,0 0.8,0.267 0.8,0.8 0,0.444 0.267,0.8 0.6,0.8 0.33,0 0.6,0.287 0.6,0.637 0,0.351 0.36,0.732 0.8,0.847 0.44,0.115 0.8,0.458 0.8,0.763 0,0.304 0.27,0.553 0.6,0.553 0.33,0 0.6,0.287 0.6,0.637 0,0.351 0.36,0.732 0.8,0.847 0.44,0.115 0.8,0.458 0.8,0.763 0,0.304 0.27,0.553 0.6,0.553 0.33,0 0.96,0.36 1.4,0.8 0.44,0.44 1.141,0.8 1.557,0.8 0.417,0 0.861,0.27 0.988,0.6 0.134,0.351 0.734,0.6 1.442,0.6 0.946,0 1.213,0.176 1.213,0.8 0,0.648 0.267,0.8 1.4,0.8 1.133,0 1.4,0.152 1.4,0.8 0,0.533 0.267,0.8 0.8,0.8 0.444,0 0.8,0.267 0.8,0.6 0,0.419 0.422,0.6 1.4,0.6 0.925,0 1.4,0.188 1.4,0.553 0,0.608 1.188,1.033 2.913,1.042 0.615,0.003 1.215,0.273 1.342,0.605 0.174,0.453 0.906,0.6 2.988,0.6 2.49,0 2.757,0.077 2.757,0.8 0,0.724 0.267,0.8 2.8,0.8 2.222,0 2.8,0.124 2.8,0.6 0,0.532 15.422,0.6 136.4,0.6 120.978,0 136.4,-0.068 136.4,-0.6 0,-0.476 0.578,-0.6 2.8,-0.6 2.533,0 2.8,-0.076 2.8,-0.8 0,-0.724 0.267,-0.8 2.813,-0.8 2.131,0 2.868,-0.145 3.042,-0.6 0.158,-0.41 0.799,-0.6 2.025,-0.6 1.458,0 1.834,-0.15 2.004,-0.8 0.157,-0.601 0.546,-0.8 1.563,-0.8 0.936,0 1.353,-0.185 1.353,-0.6 0,-0.333 0.356,-0.6 0.8,-0.6 0.533,0 0.8,-0.267 0.8,-0.8 0,-0.648 0.267,-0.8 1.4,-0.8 1.133,0 1.4,-0.152 1.4,-0.8 0,-0.648 0.267,-0.8 1.4,-0.8 0.978,0 1.4,-0.181 1.4,-0.6 0,-0.33 0.345,-0.6 0.767,-0.6 1.192,0 2.033,-0.431 2.033,-1.043 0,-0.306 0.36,-0.557 0.8,-0.557 0.44,0 0.8,-0.249 0.8,-0.553 0,-0.305 0.36,-0.648 0.8,-0.763 0.44,-0.115 0.8,-0.496 0.8,-0.847 0,-0.35 0.27,-0.637 0.6,-0.637 0.33,0 0.6,-0.25 0.6,-0.557 0,-0.306 0.486,-0.678 1.08,-0.827 1.051,-0.264 2.92,-1.922 2.92,-2.59 0,-0.183 0.36,-0.427 0.8,-0.542 0.44,-0.115 0.8,-0.496 0.8,-0.847 0,-0.35 0.275,-0.637 0.61,-0.637 0.354,0 0.708,-0.489 0.843,-1.165 0.136,-0.678 0.549,-1.247 0.99,-1.362 0.416,-0.109 0.757,-0.485 0.757,-0.836 0,-0.35 0.27,-0.637 0.6,-0.637 0.33,0 0.6,-0.27 0.6,-0.6 0,-0.33 0.276,-0.6 0.613,-0.6 0.336,0 0.728,-0.315 0.869,-0.7 0.142,-0.385 0.496,-0.844 0.788,-1.02 0.291,-0.176 0.53,-0.851 0.53,-1.5 0,-0.913 0.181,-1.18 0.8,-1.18 0.537,0 0.8,-0.267 0.8,-0.813 0,-0.446 0.27,-0.916 0.6,-1.042 0.404,-0.155 0.6,-0.79 0.6,-1.941 0,-1.374 0.157,-1.752 0.8,-1.92 0.613,-0.16 0.8,-0.546 0.8,-1.647 0,-1.17 0.148,-1.437 0.8,-1.437 0.444,0 0.8,-0.267 0.8,-0.6 0,-0.33 0.27,-0.6 0.6,-0.6 0.461,0 0.6,-0.511 0.6,-2.2 0,-1.933 0.097,-2.2 0.8,-2.2 0.703,0 0.8,-0.267 0.8,-2.2 0,-1.689 0.139,-2.2 0.6,-2.2 0.486,0 0.6,-0.641 0.6,-3.373 0,-3.022 0.083,-3.4 0.8,-3.627 0.798,-0.253 0.8,-0.605 0.8,-135.794 0,-135.73 -0.008,-136.806 -1.043,-136.806 -0.427,0 -0.557,-0.702 -0.557,-3 0,-2.4 -0.12,-3 -0.6,-3 -0.473,0 -0.6,-0.56 -0.6,-2.637 0,-2.301 -0.102,-2.665 -0.8,-2.847 -0.624,-0.163 -0.8,-0.546 -0.8,-1.734 0,-0.839 -0.27,-1.795 -0.6,-2.125 -0.33,-0.33 -0.6,-0.781 -0.6,-1.001 0,-0.221 -0.36,-0.516 -0.8,-0.656 -0.595,-0.189 -0.8,-0.605 -0.8,-1.627 0,-1.106 -0.155,-1.373 -0.8,-1.373 -0.649,0 -0.8,-0.267 -0.8,-1.413 0,-0.859 -0.225,-1.499 -0.576,-1.633 -0.316,-0.121 -0.69,-0.746 -0.831,-1.387 -0.141,-0.642 -0.512,-1.167 -0.825,-1.167 -0.366,0 -0.568,-0.432 -0.568,-1.213 0,-0.708 -0.249,-1.308 -0.6,-1.442 -0.33,-0.127 -0.6,-0.571 -0.6,-0.988 0,-0.49 -0.282,-0.757 -0.8,-0.757 -0.44,0 -0.8,-0.226 -0.8,-0.502 0,-0.276 -0.63,-1.028 -1.4,-1.67 -0.77,-0.642 -1.4,-1.406 -1.4,-1.698 0,-0.291 -0.36,-0.53 -0.8,-0.53 -0.533,0 -0.8,-0.267 -0.8,-0.8 0,-0.444 -0.267,-0.8 -0.6,-0.8 -0.33,0 -0.6,-0.27 -0.6,-0.6 0,-0.333 -0.356,-0.6 -0.8,-0.6 -0.533,0 -0.8,-0.267 -0.8,-0.8 0,-0.444 -0.267,-0.8 -0.6,-0.8 -0.33,0 -0.6,-0.27 -0.6,-0.6 0,-0.333 -0.356,-0.6 -0.8,-0.6 -0.452,0 -0.8,-0.267 -0.8,-0.613 0,-0.336 -0.301,-0.728 -0.669,-0.869 -0.369,-0.141 -0.999,-0.586 -1.4,-0.987 C 366.729,22.329 366.052,22 365.627,22 c -0.547,0 -0.811,-0.323 -0.9,-1.1 -0.098,-0.849 -0.424,-1.187 -1.427,-1.483 -0.715,-0.21 -1.3,-0.615 -1.3,-0.9 0,-0.324 -0.522,-0.517 -1.4,-0.517 -1.133,0 -1.4,-0.152 -1.4,-0.8 0,-0.648 -0.267,-0.8 -1.4,-0.8 -0.978,0 -1.4,-0.181 -1.4,-0.6 0,-0.415 -0.417,-0.6 -1.353,-0.6 -1.017,0 -1.406,-0.199 -1.563,-0.8 -0.175,-0.668 -0.546,-0.8 -2.247,-0.8 -1.805,0 -2.037,-0.096 -2.037,-0.843 0,-0.606 -0.179,-0.774 -0.637,-0.598 -0.425,0.163 -0.707,-0.023 -0.847,-0.557 -0.183,-0.703 -0.544,-0.802 -2.916,-0.802 -2.37,0 -2.733,-0.099 -2.916,-0.8 C 341.695,9.278 341.338,9.2 338.237,9.2 335.449,9.2 334.8,9.087 334.8,8.6 334.8,8.068 319.556,8 200,8 80.444,8 65.2,8.068 65.2,8.6 m 208.2,40.412 c 0.88,0.317 2.95,0.58 4.6,0.584 1.765,0.005 3.438,0.237 4.064,0.564 0.585,0.305 1.971,0.68 3.08,0.832 1.109,0.153 2.227,0.532 2.485,0.843 0.258,0.311 1.154,0.565 1.991,0.565 0.838,0 1.771,0.248 2.074,0.551 0.303,0.303 1.114,0.675 1.801,0.826 0.687,0.151 1.464,0.533 1.726,0.849 0.262,0.316 0.749,0.574 1.081,0.574 0.646,0 3.237,1.436 3.898,2.161 0.22,0.242 1.21,0.978 2.2,1.638 0.99,0.659 1.89,1.289 2,1.4 0.568,0.571 2.818,2.001 3.148,2.001 0.726,0 11.234,10.787 11.486,11.791 0.139,0.555 0.418,1.009 0.619,1.009 0.202,0 0.538,0.45 0.747,1 0.209,0.55 0.547,1 0.751,1 0.204,0 0.569,0.495 0.811,1.1 0.242,0.605 0.795,1.64 1.229,2.3 1.017,1.546 2.216,3.664 2.987,5.273 0.336,0.7 0.793,1.385 1.016,1.523 0.223,0.138 0.406,0.759 0.406,1.379 0,0.62 0.254,1.338 0.565,1.596 0.311,0.258 0.69,1.376 0.843,2.485 0.152,1.109 0.527,2.495 0.832,3.08 0.305,0.585 0.556,1.986 0.558,3.114 10e-4,1.127 0.272,2.815 0.602,3.75 0.748,2.12 0.869,17.67 0.152,19.474 -0.246,0.619 -0.592,2.62 -0.767,4.446 -0.176,1.826 -0.515,3.554 -0.752,3.84 -0.238,0.287 -0.546,1.356 -0.686,2.376 -0.14,1.02 -0.5,2.059 -0.801,2.309 -0.3,0.249 -0.546,1.025 -0.546,1.724 0,0.87 -0.693,2.317 -2.2,4.595 -1.21,1.829 -2.2,3.553 -2.2,3.831 0,0.279 -0.27,0.731 -0.6,1.005 -0.33,0.274 -0.6,0.701 -0.601,0.949 -0.001,1.046 -4.296,6.601 -6.961,9.003 -0.64,0.577 -1.81,1.682 -2.6,2.457 -2.104,2.062 -5.054,4.391 -5.561,4.391 -0.433,0 -2.529,1.313 -3.69,2.311 -1.988,1.708 -2.597,2.09 -3.348,2.102 -0.462,0.007 -1.188,0.277 -1.615,0.6 -0.428,0.323 -1.15,0.587 -1.606,0.587 -0.457,0 -1.502,0.36 -2.322,0.8 -0.821,0.44 -2.043,0.8 -2.714,0.8 -0.672,0 -1.719,0.257 -2.327,0.572 -0.608,0.314 -2.25,0.701 -3.649,0.859 -1.399,0.158 -3.008,0.53 -3.575,0.826 -0.567,0.296 -2.028,0.539 -3.246,0.541 -1.422,0.001 -2.778,0.289 -3.785,0.802 -0.863,0.44 -2.263,0.8 -3.111,0.8 -0.848,0 -1.922,0.203 -2.386,0.452 -0.465,0.249 -2.156,0.599 -3.758,0.779 -1.603,0.18 -3.737,0.606 -4.743,0.948 -1.007,0.341 -2.432,0.621 -3.167,0.621 -0.735,0 -1.561,0.27 -1.835,0.6 -0.274,0.33 -1.041,0.6 -1.705,0.6 -1.143,0 -2.852,0.664 -6.495,2.524 -0.88,0.449 -1.69,0.93 -1.8,1.068 -0.11,0.139 -1.145,0.858 -2.3,1.598 -1.155,0.739 -2.1,1.494 -2.1,1.677 0,0.183 -0.172,0.333 -0.381,0.333 -0.333,0 -3.063,2.646 -4.225,4.094 -0.223,0.278 -1.056,1.316 -1.85,2.306 -1.834,2.288 -3.544,5.524 -3.544,6.711 0,0.504 -0.315,1.398 -0.7,1.986 -0.977,1.491 -0.996,17.202 -0.023,19.103 0.338,0.66 0.733,2.135 0.879,3.277 0.146,1.142 0.531,2.711 0.855,3.487 0.324,0.776 0.589,1.916 0.589,2.534 0,0.618 0.255,1.488 0.567,1.933 0.312,0.446 0.694,1.485 0.849,2.311 0.154,0.826 0.796,2.509 1.426,3.739 0.629,1.231 1.261,2.886 1.405,3.679 0.143,0.792 0.481,1.89 0.75,2.44 0.27,0.55 0.597,1.818 0.728,2.818 0.13,1 0.515,2.35 0.854,3 0.339,0.65 0.617,1.835 0.619,2.633 0.001,0.798 0.248,2.058 0.549,2.8 0.301,0.742 0.662,2.379 0.802,3.638 0.141,1.259 0.527,3.329 0.859,4.6 0.732,2.798 0.848,20.909 0.152,23.511 -0.236,0.88 -0.656,2.899 -0.933,4.486 -0.278,1.587 -0.688,3.117 -0.912,3.4 -0.223,0.283 -0.519,1.255 -0.657,2.161 -0.138,0.906 -0.521,2.166 -0.852,2.8 -0.33,0.634 -0.602,1.446 -0.604,1.804 -0.001,0.358 -0.272,0.875 -0.602,1.149 -0.33,0.274 -0.6,0.755 -0.6,1.07 0,0.595 -1.593,3.771 -2.076,4.138 -0.351,0.266 -2.324,3.165 -2.324,3.414 0,0.102 -0.607,1.05 -1.348,2.105 -0.742,1.055 -1.476,2.317 -1.63,2.804 -0.155,0.488 -1.716,2.368 -3.469,4.178 -1.753,1.81 -3.822,4.239 -4.596,5.398 -0.775,1.159 -2.236,2.689 -3.246,3.4 -1.011,0.711 -3.111,2.553 -4.668,4.093 -2.774,2.745 -3.426,3.256 -5.443,4.272 -0.55,0.276 -1.791,1.093 -2.758,1.815 -0.966,0.722 -1.902,1.313 -2.079,1.313 -0.177,0 -0.826,0.474 -1.442,1.053 -0.617,0.579 -1.694,1.296 -2.394,1.594 -0.7,0.297 -1.377,0.71 -1.504,0.916 -0.128,0.207 -0.758,0.491 -1.4,0.632 -0.642,0.141 -1.382,0.515 -1.644,0.831 -0.262,0.316 -0.883,0.574 -1.379,0.574 -0.496,0 -1.114,0.256 -1.374,0.569 -0.26,0.313 -1.227,0.695 -2.149,0.85 -0.922,0.155 -2.032,0.529 -2.466,0.831 -0.434,0.303 -1.154,0.551 -1.6,0.552 -0.446,0.002 -1.33,0.274 -1.964,0.604 -0.634,0.331 -1.894,0.714 -2.8,0.851 -0.906,0.137 -1.917,0.475 -2.247,0.752 -0.33,0.276 -1.23,0.633 -2,0.793 -0.77,0.16 -1.593,0.445 -1.83,0.635 -0.236,0.189 -1.766,0.461 -3.4,0.603 -1.633,0.142 -3.953,0.507 -5.154,0.809 -3.209,0.809 -21.396,0.773 -24.551,-0.049 -1.267,-0.33 -3.076,-0.6 -4.02,-0.6 -1.819,0 -8.069,-1.791 -8.46,-2.425 -0.128,-0.206 -0.683,-0.375 -1.234,-0.375 -0.552,0 -1.846,-0.333 -2.877,-0.739 -2.495,-0.984 -4.376,-1.641 -6.074,-2.122 -1.478,-0.418 -7.091,-3.133 -8.824,-4.268 -0.564,-0.369 -1.914,-1.248 -3,-1.952 -1.087,-0.705 -2.261,-1.56 -2.61,-1.9 -0.348,-0.341 -0.821,-0.619 -1.051,-0.619 -0.229,0 -0.626,-0.252 -0.882,-0.561 -0.256,-0.308 -0.953,-0.683 -1.548,-0.832 -1.139,-0.286 -4.201,-2.597 -5.383,-4.063 -0.384,-0.476 -1.939,-1.786 -3.456,-2.91 -1.517,-1.124 -3.532,-3.077 -4.478,-4.339 -0.947,-1.262 -2.721,-3.317 -3.944,-4.565 -2.959,-3.022 -3.86,-4.186 -4.898,-6.33 -0.479,-0.99 -0.986,-1.89 -1.128,-2 -0.141,-0.11 -0.387,-0.47 -0.546,-0.8 -0.16,-0.33 -0.728,-1.32 -1.263,-2.2 -0.535,-0.88 -1.194,-2.05 -1.463,-2.6 -0.27,-0.55 -0.97,-1.63 -1.555,-2.4 -0.585,-0.77 -1.202,-1.85 -1.371,-2.4 -0.169,-0.55 -0.554,-1.355 -0.854,-1.789 -0.3,-0.434 -0.552,-1.064 -0.56,-1.4 -0.007,-0.336 -0.361,-1.331 -0.786,-2.211 -0.425,-0.88 -0.779,-1.969 -0.786,-2.42 -0.008,-0.451 -0.213,-1.019 -0.456,-1.262 -0.242,-0.242 -0.683,-1.493 -0.978,-2.78 -0.969,-4.217 -1.468,-5.915 -2.229,-7.582 -0.413,-0.904 -0.754,-2.074 -0.757,-2.6 -0.003,-0.526 -0.265,-1.676 -0.582,-2.556 -0.317,-0.88 -0.586,-2.95 -0.598,-4.6 -0.011,-1.65 -0.214,-4.62 -0.45,-6.6 -0.454,-3.807 0.057,-15.218 0.86,-19.2 0.222,-1.1 0.566,-2.854 0.765,-3.897 0.199,-1.044 0.643,-2.299 0.986,-2.789 0.344,-0.491 0.626,-1.347 0.627,-1.903 0.002,-0.556 0.254,-1.491 0.56,-2.078 0.306,-0.587 0.682,-1.847 0.836,-2.8 0.153,-0.953 0.532,-2.132 0.84,-2.619 0.309,-0.487 0.562,-1.163 0.562,-1.501 0,-0.339 0.36,-1.288 0.8,-2.109 0.44,-0.82 0.8,-1.995 0.8,-2.611 0,-0.625 0.265,-1.22 0.6,-1.348 0.33,-0.127 0.6,-0.505 0.6,-0.841 0,-0.64 1.513,-3.335 2.101,-3.741 0.188,-0.13 0.834,-1.21 1.434,-2.4 0.601,-1.19 1.622,-2.973 2.27,-3.963 1.808,-2.762 2.124,-3.296 2.806,-4.739 0.348,-0.736 2.107,-2.826 3.911,-4.644 1.803,-1.818 3.548,-3.722 3.878,-4.23 1.248,-1.925 3.338,-4.006 4.251,-4.236 0.522,-0.131 0.949,-0.361 0.949,-0.512 0,-0.151 0.941,-0.987 2.092,-1.857 1.15,-0.87 2.808,-2.251 3.683,-3.069 0.876,-0.817 2.082,-1.594 2.681,-1.725 0.599,-0.132 1.303,-0.498 1.565,-0.814 0.262,-0.316 0.703,-0.574 0.979,-0.574 0.276,0 0.717,-0.258 0.979,-0.574 0.262,-0.316 0.991,-0.688 1.621,-0.826 0.63,-0.138 1.359,-0.51 1.621,-0.826 0.262,-0.316 0.906,-0.574 1.429,-0.574 0.524,0 1.625,-0.36 2.446,-0.8 0.82,-0.44 1.878,-0.8 2.349,-0.8 0.471,0 1.072,-0.258 1.334,-0.574 0.262,-0.316 1.049,-0.697 1.749,-0.846 0.699,-0.15 1.476,-0.436 1.726,-0.637 0.25,-0.2 1.69,-0.468 3.2,-0.595 1.51,-0.127 3.646,-0.513 4.746,-0.857 1.716,-0.537 5.471,-0.633 26.4,-0.674 18.061,-0.034 24.623,-0.171 25.258,-0.523 0.472,-0.263 1.912,-0.598 3.2,-0.746 1.288,-0.148 2.969,-0.602 3.736,-1.009 0.767,-0.406 1.674,-0.739 2.015,-0.739 0.704,0 3.617,-1.413 3.964,-1.922 0.125,-0.184 1.993,-1.733 4.151,-3.443 2.158,-1.71 4.093,-3.497 4.299,-3.972 0.361,-0.831 0.508,-1.11 1.507,-2.863 2.1,-3.687 4.061,-9.266 4.088,-11.628 0.009,-0.865 0.277,-2.292 0.594,-3.172 0.802,-2.227 0.795,-11.768 -0.012,-14.865 -0.336,-1.291 -0.6,-4.031 -0.6,-6.236 0,-2.204 -0.297,-5.288 -0.675,-7.016 -0.997,-4.555 -1.008,-21.119 -0.016,-23.633 0.38,-0.963 0.691,-2.523 0.691,-3.467 0,-1.642 1.533,-5.447 2.413,-5.991 0.213,-0.132 0.387,-0.6 0.387,-1.04 0,-0.91 1.855,-5.015 2.425,-5.368 0.206,-0.127 0.375,-0.559 0.375,-0.959 0,-0.4 0.289,-0.967 0.642,-1.26 0.353,-0.292 0.807,-0.9 1.009,-1.349 0.907,-2.013 2.211,-3.982 2.902,-4.381 0.865,-0.499 2.647,-2.169 2.647,-2.48 0,-0.115 0.588,-0.782 1.307,-1.482 0.718,-0.7 1.823,-2.038 2.454,-2.973 0.631,-0.935 1.375,-1.7 1.652,-1.7 0.277,0 1.786,-0.99 3.352,-2.2 1.566,-1.21 2.951,-2.2 3.078,-2.2 0.127,0 0.688,-0.36 1.248,-0.8 0.559,-0.44 1.353,-0.8 1.763,-0.8 0.41,0 0.746,-0.27 0.746,-0.6 0,-0.33 0.152,-0.6 0.339,-0.6 0.186,0 0.754,-0.36 1.261,-0.8 0.507,-0.44 1.326,-0.8 1.818,-0.8 0.493,0 1,-0.27 1.127,-0.6 0.126,-0.33 0.551,-0.601 0.942,-0.603 0.392,-10e-4 1.253,-0.36 1.913,-0.797 0.66,-0.437 1.83,-0.802 2.6,-0.81 0.77,-0.009 1.739,-0.272 2.154,-0.586 0.415,-0.314 1.585,-0.682 2.6,-0.818 1.015,-0.136 2.525,-0.503 3.354,-0.817 0.83,-0.313 2.81,-0.572 4.4,-0.575 1.591,-0.003 3.612,-0.265 4.492,-0.582 2.135,-0.77 9.065,-0.77 11.2,0 M -25,0 h 20 v 20 h -20 z m 430,0 h 20 v 20 h -20 z"
|
|
48
|
+
stroke="none"
|
|
49
|
+
fill="#6abc4b"
|
|
50
|
+
fill-rule="evenodd"
|
|
51
|
+
transform="translate(30)" /><path
|
|
52
|
+
id="path1"
|
|
53
|
+
d="m 261,50.345 c -1.76,0.153 -3.42,0.415 -3.688,0.582 -0.268,0.168 -1.953,0.472 -3.744,0.677 -1.791,0.204 -3.461,0.536 -3.712,0.737 -0.251,0.202 -1.266,0.554 -2.256,0.783 -2.302,0.532 -5.104,1.521 -6.462,2.281 -0.584,0.327 -1.239,0.595 -1.455,0.595 -0.516,0 -6.387,3.818 -9.644,6.271 -1.408,1.061 -2.922,2.069 -3.364,2.24 -0.442,0.171 -1.36,0.977 -2.039,1.792 -0.68,0.815 -2.812,3.101 -4.738,5.08 -1.926,1.98 -3.609,3.935 -3.739,4.346 -0.13,0.41 -0.779,1.55 -1.442,2.532 -1.607,2.381 -3.117,5.253 -3.117,5.927 0,0.701 -1.905,4.506 -2.413,4.82 -0.213,0.132 -0.387,0.672 -0.387,1.202 0,0.53 -0.261,1.554 -0.579,2.276 -0.715,1.622 -1.921,13.852 -1.608,16.314 0.126,0.99 0.488,5.4 0.805,9.8 0.318,4.4 0.745,8.99 0.95,10.2 0.533,3.142 0.531,20.288 -0.003,22.003 -0.239,0.768 -0.673,2.477 -0.963,3.797 -0.644,2.922 -1.424,5.024 -2.747,7.4 -0.551,0.99 -1.386,2.557 -1.855,3.482 -0.928,1.829 -0.939,1.839 -9,8.493 -1.1,0.908 -2.45,1.748 -3,1.865 -0.55,0.118 -1.74,0.562 -2.644,0.987 -0.904,0.425 -1.951,0.773 -2.326,0.773 -0.375,0 -1.076,0.211 -1.556,0.469 -1.286,0.69 -13.786,1.716 -18.874,1.549 -18.721,-0.614 -38.207,0.047 -41.908,1.422 -0.83,0.308 -2.09,0.563 -2.8,0.566 -0.711,0.003 -1.742,0.266 -2.292,0.584 -0.55,0.318 -1.27,0.687 -1.6,0.82 -0.33,0.132 -1.14,0.487 -1.8,0.788 -0.66,0.301 -1.65,0.662 -2.2,0.802 -3.249,0.828 -11.395,5.184 -13.291,7.107 -1.698,1.722 -4.94,4.293 -5.413,4.293 -0.522,0 -3.516,3.054 -6.04,6.161 -1.18,1.451 -2.35,2.644 -2.6,2.65 -0.251,0.006 -0.906,0.641 -1.456,1.41 -0.55,0.77 -1.315,1.783 -1.7,2.251 -0.385,0.468 -0.7,1.048 -0.701,1.289 -0.001,0.384 -2.563,4.482 -3.545,5.67 -0.196,0.237 -0.487,0.844 -0.648,1.349 -0.414,1.305 -1.825,3.62 -2.206,3.62 -0.177,0 -0.517,0.495 -0.755,1.1 -0.238,0.605 -0.59,1.37 -0.781,1.7 -0.857,1.481 -1.681,3.505 -1.911,4.691 -0.137,0.71 -0.498,1.497 -0.801,1.749 -0.304,0.252 -0.553,0.841 -0.554,1.309 -0.002,0.468 -0.289,1.391 -0.64,2.051 -0.35,0.66 -0.785,2.1 -0.966,3.2 -0.407,2.474 -1.533,5.789 -2.253,6.631 -0.296,0.348 -0.539,1.53 -0.539,2.628 0,1.098 -0.303,2.973 -0.673,4.168 -0.863,2.784 -1.005,23.147 -0.173,24.693 0.273,0.507 0.602,2.217 0.731,3.8 0.131,1.602 0.564,3.498 0.975,4.274 0.407,0.767 0.74,1.766 0.74,2.22 0,0.454 0.185,1.011 0.411,1.237 0.226,0.226 0.587,1.503 0.802,2.838 0.215,1.335 0.659,2.941 0.987,3.569 0.327,0.628 0.596,1.525 0.598,1.993 0.001,0.468 0.272,1.075 0.602,1.349 0.33,0.274 0.6,0.951 0.6,1.505 0,0.892 1.053,3.613 2.05,5.295 0.196,0.33 0.576,1.05 0.844,1.6 0.269,0.55 0.718,1.144 0.998,1.32 0.279,0.176 0.508,0.54 0.508,0.809 0,0.269 0.616,1.425 1.369,2.569 0.754,1.143 1.486,2.444 1.627,2.89 0.142,0.447 0.408,0.812 0.592,0.812 0.183,0 0.537,0.495 0.785,1.1 1.015,2.473 2.808,4.895 5.92,8.001 1.379,1.376 2.508,2.726 2.509,3 0.002,0.568 4.585,5.099 5.157,5.099 0.206,0 1.81,1.35 3.564,3 1.754,1.65 3.366,3 3.584,3 0.217,0 0.619,0.27 0.893,0.6 0.274,0.33 0.74,0.6 1.036,0.6 0.451,0 5.129,2.932 5.764,3.613 0.579,0.621 4.961,3.285 5.998,3.646 0.661,0.231 1.202,0.582 1.202,0.78 0,0.199 0.322,0.361 0.715,0.361 0.394,0 1.422,0.36 2.285,0.8 0.863,0.44 1.892,0.8 2.286,0.8 0.394,0 1.389,0.36 2.21,0.8 0.82,0.44 1.945,0.806 2.498,0.813 0.553,0.007 1.355,0.277 1.782,0.6 0.428,0.323 1.27,0.587 1.872,0.587 0.602,0 1.367,0.272 1.7,0.605 0.333,0.333 1.201,0.702 1.929,0.82 0.728,0.118 2.313,0.469 3.523,0.781 7.679,1.977 29.894,1.953 35.914,-0.039 0.943,-0.312 2.273,-0.567 2.956,-0.567 0.683,0 1.982,-0.337 2.886,-0.749 3.615,-1.647 4.709,-2.051 5.558,-2.053 0.487,-0.002 1.414,-0.278 2.06,-0.615 0.645,-0.337 1.815,-0.773 2.6,-0.97 2.314,-0.582 5.386,-1.775 5.955,-2.313 0.29,-0.275 0.853,-0.5 1.251,-0.5 0.397,0 0.931,-0.252 1.187,-0.561 0.256,-0.308 0.927,-0.676 1.49,-0.818 0.564,-0.141 1.591,-0.793 2.284,-1.448 0.692,-0.655 1.651,-1.294 2.13,-1.418 0.479,-0.125 0.968,-0.481 1.088,-0.791 0.119,-0.31 0.479,-0.564 0.8,-0.564 0.321,0 0.822,-0.232 1.112,-0.515 0.291,-0.283 1.249,-0.939 2.129,-1.457 3.034,-1.786 4.195,-2.629 4.197,-3.05 0.003,-0.39 2.589,-2.778 4.527,-4.178 1.536,-1.111 5.476,-5.344 5.476,-5.884 0,-0.157 1.215,-1.474 2.7,-2.928 2.661,-2.604 4.5,-4.844 4.5,-5.481 0,-0.179 0.63,-1.282 1.4,-2.451 0.77,-1.169 1.4,-2.219 1.4,-2.334 0,-0.114 0.72,-1.112 1.6,-2.217 0.88,-1.105 1.6,-2.324 1.6,-2.708 0,-0.385 0.27,-0.923 0.6,-1.197 0.33,-0.274 0.6,-0.747 0.6,-1.05 0,-0.304 0.36,-1.225 0.8,-2.046 0.44,-0.82 0.8,-1.819 0.8,-2.218 0,-0.399 0.246,-1.212 0.547,-1.806 0.3,-0.594 0.676,-1.8 0.835,-2.68 0.159,-0.88 0.463,-1.81 0.675,-2.066 0.212,-0.257 0.541,-1.967 0.732,-3.8 0.191,-1.834 0.542,-3.841 0.779,-4.46 0.684,-1.783 0.552,-15.25 -0.172,-17.638 -0.328,-1.08 -0.596,-2.901 -0.596,-4.047 0,-1.147 -0.36,-3.212 -0.8,-4.589 -0.44,-1.377 -0.8,-3.12 -0.8,-3.872 0,-0.752 -0.247,-1.854 -0.548,-2.448 -0.301,-0.594 -0.672,-1.931 -0.823,-2.971 -0.151,-1.04 -0.434,-1.989 -0.629,-2.109 -0.195,-0.12 -0.464,-1.069 -0.6,-2.109 -0.135,-1.04 -0.484,-2.341 -0.776,-2.891 -0.293,-0.55 -0.654,-1.573 -0.804,-2.272 -0.149,-0.7 -0.53,-1.487 -0.846,-1.749 -0.316,-0.262 -0.574,-0.824 -0.574,-1.248 0,-0.424 -0.255,-1.263 -0.566,-1.865 -0.311,-0.601 -0.694,-1.807 -0.852,-2.68 -0.157,-0.872 -0.455,-1.799 -0.66,-2.059 -0.206,-0.26 -0.546,-1.686 -0.756,-3.168 -0.21,-1.483 -0.568,-2.921 -0.795,-3.194 -0.227,-0.274 -0.575,-1.998 -0.774,-3.831 -0.198,-1.834 -0.548,-3.963 -0.779,-4.731 -0.596,-1.991 -0.517,-7.508 0.141,-9.83 0.307,-1.085 0.665,-2.714 0.796,-3.62 0.131,-0.906 0.508,-2.166 0.839,-2.8 0.33,-0.634 0.602,-1.446 0.604,-1.804 0.001,-0.358 0.272,-0.875 0.602,-1.149 0.33,-0.274 0.6,-0.724 0.6,-1 0,-0.275 0.72,-1.266 1.6,-2.2 0.88,-0.934 1.6,-1.82 1.6,-1.969 0,-0.227 1.598,-1.869 5.132,-5.275 3.301,-3.181 12.915,-7.956 16.018,-7.956 0.489,0 1.376,-0.247 1.97,-0.549 0.594,-0.302 2.16,-0.676 3.48,-0.83 1.32,-0.155 3.171,-0.538 4.114,-0.851 0.943,-0.314 2.658,-0.57 3.811,-0.57 1.196,0 2.457,-0.252 2.935,-0.587 0.461,-0.323 1.626,-0.702 2.589,-0.842 0.963,-0.139 2.639,-0.505 3.724,-0.812 1.085,-0.308 2.546,-0.559 3.247,-0.559 0.702,0 2.403,-0.36 3.78,-0.8 1.377,-0.44 3.066,-0.806 3.752,-0.813 0.686,-0.007 1.597,-0.277 2.024,-0.6 0.428,-0.323 1.148,-0.593 1.6,-0.601 0.453,-0.007 1.544,-0.361 2.424,-0.786 0.88,-0.425 1.905,-0.779 2.277,-0.786 0.879,-0.018 3.295,-1.451 4.867,-2.887 0.681,-0.622 1.599,-1.245 2.04,-1.385 0.912,-0.29 2.618,-1.453 4.398,-2.999 0.67,-0.582 2.182,-1.874 3.36,-2.871 1.178,-0.998 2.431,-2.232 2.785,-2.743 0.354,-0.511 1.37,-1.854 2.258,-2.985 2.796,-3.559 3.015,-3.891 3.015,-4.576 0,-0.369 0.27,-0.894 0.6,-1.168 0.33,-0.274 0.6,-0.713 0.6,-0.977 0,-0.263 0.72,-1.444 1.6,-2.623 0.88,-1.179 1.606,-2.427 1.613,-2.772 0.007,-0.346 0.277,-0.977 0.6,-1.404 0.323,-0.428 0.587,-1.173 0.587,-1.657 0,-0.484 0.356,-1.664 0.791,-2.623 0.435,-0.959 0.795,-2.325 0.8,-3.036 0.005,-0.71 0.265,-1.97 0.579,-2.8 1.593,-4.217 1.615,-23.441 0.034,-29.108 -0.307,-1.1 -0.73,-2.81 -0.939,-3.8 -0.774,-3.662 -4.382,-11.462 -6.305,-13.631 -0.308,-0.348 -0.56,-0.755 -0.56,-0.905 0,-0.15 -0.63,-1.169 -1.4,-2.264 -0.77,-1.095 -1.4,-2.135 -1.4,-2.309 0,-0.427 -1.614,-2.471 -2.573,-3.257 -1.103,-0.905 -4.997,-4.785 -6.519,-6.496 -0.711,-0.799 -2.26,-1.999 -3.443,-2.666 -1.182,-0.668 -2.401,-1.459 -2.707,-1.758 -0.307,-0.299 -1.233,-0.957 -2.058,-1.462 -0.825,-0.504 -1.5,-1.087 -1.5,-1.295 0,-0.207 -0.495,-0.562 -1.1,-0.788 -1.65,-0.616 -4.673,-2.079 -4.9,-2.371 -0.282,-0.362 -3.864,-1.578 -5.957,-2.022 -0.967,-0.205 -1.971,-0.55 -2.231,-0.766 -0.261,-0.216 -1.81,-0.583 -3.443,-0.814 C 280.336,51.365 278.37,51.007 277.6,50.801 275.713,50.295 264.972,50 261,50.345 M -25,0 h 20 v 20 h -20 z m 430,0 h 20 v 20 h -20 z"
|
|
54
|
+
stroke="none"
|
|
55
|
+
fill="#f3fbfb"
|
|
56
|
+
fill-rule="evenodd"
|
|
57
|
+
transform="translate(490)" /><path
|
|
58
|
+
id="path2"
|
|
59
|
+
d="m 262.2,48.991 c -0.88,0.328 -2.901,0.6 -4.492,0.603 -1.59,0.003 -3.57,0.262 -4.4,0.575 -0.829,0.314 -2.339,0.681 -3.354,0.817 -1.015,0.136 -2.185,0.504 -2.6,0.818 -0.415,0.314 -1.384,0.577 -2.154,0.586 -0.77,0.008 -1.94,0.373 -2.6,0.81 -0.66,0.437 -1.521,0.796 -1.913,0.797 -0.391,0.002 -0.816,0.273 -0.942,0.603 -0.127,0.33 -0.634,0.6 -1.127,0.6 -0.492,0 -1.311,0.36 -1.818,0.8 -0.507,0.44 -1.075,0.8 -1.261,0.8 -0.187,0 -0.339,0.27 -0.339,0.6 0,0.33 -0.336,0.6 -0.746,0.6 -0.41,0 -1.204,0.36 -1.763,0.8 -0.56,0.44 -1.121,0.8 -1.248,0.8 -0.127,0 -1.512,0.99 -3.078,2.2 -1.566,1.21 -3.075,2.2 -3.352,2.2 -0.277,0 -1.021,0.765 -1.652,1.7 -0.631,0.935 -1.736,2.273 -2.454,2.973 -0.719,0.7 -1.307,1.367 -1.307,1.482 0,0.311 -1.782,1.981 -2.647,2.48 -0.691,0.399 -1.995,2.368 -2.902,4.381 -0.202,0.449 -0.656,1.057 -1.009,1.349 -0.353,0.293 -0.642,0.86 -0.642,1.26 0,0.4 -0.169,0.832 -0.375,0.959 -0.57,0.353 -2.425,4.458 -2.425,5.368 0,0.44 -0.174,0.908 -0.387,1.04 -0.88,0.544 -2.413,4.349 -2.413,5.991 0,0.944 -0.312,2.504 -0.693,3.467 -0.974,2.461 -0.944,19.597 0.041,23.55 l 0.648,2.6 -0.188,-3 c -0.103,-1.65 -0.363,-5.312 -0.578,-8.138 -0.398,-5.243 -0.164,-9.357 0.925,-16.262 0.608,-3.857 0.599,-3.828 2.697,-8.292 0.852,-1.811 1.552,-3.521 1.558,-3.8 0.005,-0.279 0.811,-1.768 1.79,-3.308 0.98,-1.54 2.04,-3.342 2.356,-4.005 0.316,-0.662 2.194,-2.848 4.172,-4.857 1.978,-2.008 3.917,-4.14 4.307,-4.736 0.391,-0.596 1.353,-1.502 2.138,-2.013 0.785,-0.511 2.687,-1.845 4.227,-2.964 1.54,-1.119 3.25,-2.25 3.8,-2.514 0.55,-0.264 1.507,-0.89 2.126,-1.391 0.95,-0.77 4.068,-2.391 7.274,-3.782 6.158,-2.672 22.055,-4.976 28.8,-4.173 2.042,0.243 2.281,0.208 1.6,-0.231 -1.226,-0.792 -9.585,-0.895 -11.6,-0.143 m 15,1.015 c 3.208,0.346 7.77,1.372 9.715,2.184 0.803,0.336 1.842,0.61 2.31,0.61 0.469,0 1.329,0.249 1.913,0.553 0.584,0.304 2.772,1.373 4.862,2.375 2.09,1.003 4.374,2.329 5.075,2.948 0.701,0.618 2.886,2.159 4.857,3.425 2.237,1.436 4.127,3.014 5.032,4.2 0.797,1.044 2.209,2.529 3.139,3.299 3.305,2.737 7.154,8.099 10.478,14.6 0.338,0.66 1.057,1.92 1.599,2.8 0.542,0.88 0.994,1.87 1.005,2.2 0.011,0.33 0.282,1.103 0.603,1.717 0.32,0.614 0.694,1.784 0.83,2.6 0.137,0.816 0.496,2.293 0.798,3.283 0.302,0.99 0.618,2.43 0.702,3.2 0.107,0.973 0.173,0.73 0.216,-0.8 0.034,-1.22 -0.186,-2.674 -0.494,-3.264 -0.305,-0.585 -0.68,-1.971 -0.832,-3.08 -0.153,-1.109 -0.532,-2.227 -0.843,-2.485 -0.311,-0.258 -0.565,-0.976 -0.565,-1.596 0,-0.62 -0.183,-1.241 -0.406,-1.379 -0.223,-0.138 -0.68,-0.823 -1.016,-1.523 -0.771,-1.609 -1.97,-3.727 -2.987,-5.273 -0.434,-0.66 -0.987,-1.695 -1.229,-2.3 -0.242,-0.605 -0.607,-1.1 -0.811,-1.1 -0.204,0 -0.542,-0.45 -0.751,-1 -0.209,-0.55 -0.545,-1 -0.747,-1 -0.201,0 -0.48,-0.454 -0.619,-1.009 -0.252,-1.004 -10.76,-11.791 -11.486,-11.791 -0.33,0 -2.58,-1.43 -3.148,-2.001 -0.11,-0.111 -1.01,-0.741 -2,-1.4 -0.99,-0.66 -1.98,-1.396 -2.2,-1.638 -0.661,-0.725 -3.252,-2.161 -3.898,-2.161 -0.332,0 -0.819,-0.258 -1.081,-0.574 -0.262,-0.316 -1.039,-0.698 -1.726,-0.849 -0.687,-0.151 -1.498,-0.523 -1.801,-0.826 -0.303,-0.303 -1.236,-0.551 -2.074,-0.551 -0.837,0 -1.733,-0.254 -1.991,-0.565 -0.258,-0.311 -1.376,-0.69 -2.485,-0.843 -1.109,-0.152 -2.495,-0.527 -3.08,-0.832 -0.685,-0.357 -2.204,-0.534 -4.264,-0.495 l -3.2,0.061 2.6,0.28 m 53.405,53.394 c 1.084,11.136 -0.224,25.61 -2.825,31.26 -0.319,0.694 -0.58,1.556 -0.58,1.916 0,0.797 -1.176,3.151 -2.743,5.491 -0.638,0.953 -1.666,2.723 -2.284,3.933 -2.85,5.578 -11.195,14.454 -15.657,16.652 -1.146,0.564 -2.557,1.465 -3.136,2.002 -2.205,2.043 -7.39,4.226 -13.18,5.548 -1.32,0.302 -3.3,0.755 -4.4,1.007 -1.1,0.252 -3.117,0.713 -4.482,1.025 -1.365,0.311 -3.042,0.566 -3.726,0.566 -0.684,0 -2.087,0.338 -3.118,0.75 -1.759,0.705 -2.928,0.952 -10.474,2.217 -1.65,0.277 -3.81,0.725 -4.8,0.995 -5.096,1.393 -7.554,2.173 -9.044,2.869 -0.904,0.423 -1.765,0.769 -1.913,0.769 -1.467,0 -10.63,7.875 -13.608,11.694 -4.143,5.316 -5.975,13.196 -5.071,21.808 0.811,7.718 3.581,18.653 6.055,23.898 0.623,1.32 1.306,3.12 1.519,4 0.83,3.431 2.05,7.857 2.259,8.195 0.12,0.195 0.471,1.671 0.78,3.28 0.309,1.609 0.737,3.555 0.951,4.325 l 0.39,1.4 0.041,-1.313 c 0.023,-0.722 -0.229,-1.959 -0.559,-2.749 -0.33,-0.789 -0.601,-2.089 -0.602,-2.887 -0.002,-0.798 -0.28,-1.983 -0.619,-2.633 -0.339,-0.65 -0.724,-2 -0.854,-3 -0.131,-1 -0.458,-2.268 -0.728,-2.818 -0.269,-0.55 -0.607,-1.648 -0.75,-2.44 -0.144,-0.793 -0.776,-2.448 -1.405,-3.679 -0.63,-1.23 -1.272,-2.913 -1.426,-3.739 -0.155,-0.826 -0.537,-1.865 -0.849,-2.311 -0.312,-0.445 -0.567,-1.315 -0.567,-1.933 0,-0.618 -0.265,-1.758 -0.589,-2.534 -0.324,-0.776 -0.709,-2.345 -0.855,-3.487 -0.146,-1.142 -0.541,-2.617 -0.879,-3.277 -0.973,-1.901 -0.954,-17.612 0.023,-19.103 0.385,-0.588 0.7,-1.482 0.7,-1.986 0,-1.187 1.71,-4.423 3.544,-6.711 0.794,-0.99 1.627,-2.028 1.85,-2.306 1.162,-1.448 3.892,-4.094 4.225,-4.094 0.209,0 0.381,-0.15 0.381,-0.333 0,-0.183 0.945,-0.938 2.1,-1.677 1.155,-0.74 2.19,-1.459 2.3,-1.598 0.11,-0.138 0.92,-0.619 1.8,-1.068 3.643,-1.86 5.352,-2.524 6.495,-2.524 0.664,0 1.431,-0.27 1.705,-0.6 0.274,-0.33 1.1,-0.6 1.835,-0.6 0.735,0 2.16,-0.28 3.167,-0.621 1.006,-0.342 3.14,-0.768 4.743,-0.948 1.602,-0.18 3.293,-0.53 3.758,-0.779 0.464,-0.249 1.538,-0.452 2.386,-0.452 0.848,0 2.248,-0.36 3.111,-0.8 1.007,-0.513 2.363,-0.801 3.785,-0.802 1.218,-0.002 2.679,-0.245 3.246,-0.541 0.567,-0.296 2.176,-0.668 3.575,-0.826 1.399,-0.158 3.041,-0.545 3.649,-0.859 0.608,-0.315 1.655,-0.572 2.327,-0.572 0.671,0 1.893,-0.36 2.714,-0.8 0.82,-0.44 1.865,-0.8 2.322,-0.8 0.456,0 1.178,-0.264 1.606,-0.587 0.427,-0.323 1.153,-0.593 1.615,-0.6 0.751,-0.012 1.36,-0.394 3.348,-2.102 1.161,-0.998 3.257,-2.311 3.69,-2.311 0.507,0 3.457,-2.329 5.561,-4.391 0.79,-0.775 1.96,-1.88 2.6,-2.457 2.665,-2.402 6.96,-7.957 6.961,-9.003 10e-4,-0.248 0.271,-0.675 0.601,-0.949 0.33,-0.274 0.6,-0.726 0.6,-1.005 0,-0.278 0.99,-2.002 2.2,-3.831 1.507,-2.278 2.2,-3.725 2.2,-4.595 0,-0.699 0.246,-1.475 0.546,-1.724 0.301,-0.25 0.661,-1.289 0.801,-2.309 0.14,-1.02 0.448,-2.089 0.686,-2.376 0.237,-0.286 0.576,-2.014 0.752,-3.84 0.175,-1.826 0.521,-3.827 0.767,-4.446 0.69,-1.734 0.544,-17.684 -0.177,-19.474 l -0.565,-1.4 0.195,2 m -123.733,23.416 c -0.046,2.682 0.146,5.054 0.528,6.519 0.807,3.097 0.814,12.638 0.012,14.865 -0.317,0.88 -0.585,2.307 -0.594,3.172 -0.02,1.771 -1.253,5.832 -2.68,8.828 -0.9,1.89 -1.178,2.423 -2.139,4.1 -0.22,0.385 -0.57,1.088 -0.776,1.563 -0.206,0.475 -2.141,2.262 -4.299,3.972 -2.158,1.71 -4.026,3.259 -4.151,3.443 -0.347,0.509 -3.26,1.922 -3.964,1.922 -0.341,0 -1.248,0.333 -2.015,0.739 -0.767,0.407 -2.448,0.861 -3.736,1.009 -1.288,0.148 -2.728,0.483 -3.2,0.746 -0.635,0.352 -7.197,0.489 -25.258,0.523 -20.929,0.041 -24.684,0.137 -26.4,0.674 -1.1,0.344 -3.236,0.73 -4.746,0.857 -1.51,0.127 -2.95,0.395 -3.2,0.595 -0.25,0.201 -1.027,0.487 -1.726,0.637 -0.7,0.149 -1.487,0.53 -1.749,0.846 -0.262,0.316 -0.863,0.574 -1.334,0.574 -0.471,0 -1.529,0.36 -2.349,0.8 -0.821,0.44 -1.922,0.8 -2.446,0.8 -0.523,0 -1.167,0.258 -1.429,0.574 -0.262,0.316 -0.991,0.688 -1.621,0.826 -0.63,0.138 -1.359,0.51 -1.621,0.826 -0.262,0.316 -0.703,0.574 -0.979,0.574 -0.276,0 -0.717,0.258 -0.979,0.574 -0.262,0.316 -0.966,0.682 -1.565,0.814 -0.599,0.131 -1.805,0.908 -2.681,1.725 -0.875,0.818 -2.533,2.199 -3.683,3.069 -1.151,0.87 -2.092,1.706 -2.092,1.857 0,0.151 -0.427,0.381 -0.949,0.512 -0.913,0.23 -3.003,2.311 -4.251,4.236 -0.33,0.508 -2.075,2.412 -3.878,4.23 -1.804,1.818 -3.563,3.908 -3.911,4.644 -0.682,1.443 -0.998,1.977 -2.806,4.739 -0.648,0.99 -1.669,2.773 -2.27,3.963 -0.6,1.19 -1.246,2.27 -1.434,2.4 -0.588,0.406 -2.101,3.101 -2.101,3.741 0,0.336 -0.27,0.714 -0.6,0.841 -0.335,0.128 -0.6,0.723 -0.6,1.348 0,0.616 -0.36,1.791 -0.8,2.611 -0.44,0.821 -0.8,1.77 -0.8,2.109 0,0.338 -0.253,1.014 -0.562,1.501 -0.308,0.487 -0.687,1.666 -0.84,2.619 -0.154,0.953 -0.53,2.213 -0.836,2.8 -0.306,0.587 -0.558,1.473 -0.56,1.968 -0.001,0.496 -0.362,1.574 -0.802,2.395 -0.44,0.82 -0.803,1.945 -0.806,2.498 -0.003,0.553 -0.265,1.726 -0.582,2.606 -0.329,0.913 -0.559,2.889 -0.536,4.6 l 0.041,3 0.308,-2.8 c 0.431,-3.918 1.413,-8.916 1.867,-9.505 0.422,-0.547 1.925,-5.34 2.327,-7.422 0.141,-0.73 0.508,-1.81 0.816,-2.4 0.308,-0.59 0.561,-1.348 0.563,-1.684 10e-4,-0.336 0.245,-0.966 0.542,-1.4 0.297,-0.434 0.665,-1.329 0.816,-1.989 0.348,-1.514 3.077,-7 3.483,-7 0.167,0 0.865,-1.125 1.552,-2.5 1.365,-2.734 1.653,-3.233 3.412,-5.9 0.653,-0.99 1.399,-2.278 1.658,-2.863 0.418,-0.948 4.12,-5.12 9.703,-10.937 1.056,-1.1 2.997,-2.779 4.315,-3.731 1.318,-0.952 3.278,-2.519 4.357,-3.481 1.079,-0.963 2.412,-1.863 2.963,-2.001 0.55,-0.137 1.271,-0.49 1.601,-0.783 0.773,-0.689 6.193,-3.404 6.793,-3.404 0.508,0 3.733,-1.252 6.207,-2.41 5.68,-2.659 13.763,-3.353 39.4,-3.385 24.214,-0.031 26.197,-0.186 31.06,-2.425 0.694,-0.319 1.482,-0.58 1.753,-0.58 0.57,0 3.11,-1.499 3.979,-2.349 0.326,-0.318 2.134,-1.794 4.018,-3.28 2.554,-2.015 3.711,-3.244 4.552,-4.836 0.621,-1.174 1.566,-2.928 2.1,-3.897 3.612,-6.551 5.068,-18.976 3.546,-30.254 -0.325,-2.411 -0.653,-5.284 -0.727,-6.384 -0.075,-1.1 -0.169,-0.103 -0.209,2.216 M 63.43,259.3 c -0.137,2.475 -0.088,5.76 0.108,7.3 0.306,2.401 0.364,1.759 0.409,-4.5 0.06,-8.286 -0.151,-9.427 -0.517,-2.8 m 178.228,1.1 c -0.016,0.77 0.231,2.48 0.55,3.8 0.319,1.32 0.582,4.234 0.586,6.476 0.003,2.242 0.141,4.161 0.306,4.263 0.387,0.24 -0.035,-11.387 -0.437,-12.036 -0.166,-0.27 -0.454,-1.258 -0.639,-2.197 -0.333,-1.688 -0.337,-1.691 -0.366,-0.306 m -177.58,12.8 c -0.026,2.06 0.184,4.031 0.534,5 0.317,0.88 0.579,2.03 0.582,2.556 0.003,0.526 0.344,1.696 0.757,2.6 0.761,1.667 1.26,3.365 2.229,7.582 0.295,1.287 0.736,2.538 0.978,2.78 0.243,0.243 0.448,0.811 0.456,1.262 0.007,0.451 0.361,1.54 0.786,2.42 0.425,0.88 0.779,1.875 0.786,2.211 0.008,0.336 0.26,0.966 0.56,1.4 0.3,0.434 0.685,1.239 0.854,1.789 0.169,0.55 0.786,1.63 1.371,2.4 0.585,0.77 1.285,1.85 1.555,2.4 0.269,0.55 0.928,1.72 1.463,2.6 0.535,0.88 1.103,1.87 1.263,2.2 0.159,0.33 0.405,0.69 0.546,0.8 0.142,0.11 0.649,1.01 1.128,2 1.038,2.144 1.939,3.308 4.898,6.33 1.223,1.248 2.997,3.303 3.944,4.565 0.946,1.262 2.961,3.215 4.478,4.339 1.517,1.124 3.072,2.434 3.456,2.91 1.182,1.466 4.244,3.777 5.383,4.063 0.595,0.149 1.292,0.524 1.548,0.832 0.256,0.309 0.653,0.561 0.882,0.561 0.23,0 0.703,0.278 1.051,0.619 0.349,0.34 1.523,1.195 2.61,1.9 1.086,0.704 2.436,1.583 3,1.952 1.708,1.119 7.298,3.795 9.424,4.511 3.107,1.047 4.2,1.165 2.256,0.244 -0.959,-0.454 -2.007,-0.826 -2.329,-0.826 -0.676,0 -9.534,-4.279 -10.249,-4.95 -1.017,-0.957 -6.57,-4.546 -8.356,-5.401 -1.033,-0.494 -3.265,-2.238 -4.961,-3.874 -1.696,-1.636 -3.25,-2.975 -3.454,-2.975 -0.498,0 -5.107,-4.631 -5.107,-5.131 0,-0.217 -1.485,-1.923 -3.3,-3.79 -1.815,-1.868 -3.75,-4.261 -4.3,-5.318 -0.55,-1.057 -1.473,-2.651 -2.051,-3.541 -0.578,-0.891 -1.59,-2.636 -2.248,-3.878 -0.657,-1.241 -1.652,-2.861 -2.209,-3.6 -1.294,-1.714 -2.917,-5.569 -4.354,-10.342 -0.232,-0.77 -0.566,-1.58 -0.743,-1.8 -0.176,-0.22 -0.512,-1.436 -0.745,-2.701 -0.233,-1.266 -0.609,-2.649 -0.837,-3.074 -0.227,-0.425 -0.414,-1.099 -0.415,-1.499 -0.002,-0.399 -0.283,-1.264 -0.626,-1.921 -0.72,-1.38 -1.71,-6.268 -2.148,-10.605 l -0.303,-3 -0.043,3.4 m 178.803,6.4 c -0.05,2.31 -0.356,5.19 -0.681,6.4 -0.325,1.21 -0.572,2.83 -0.549,3.6 l 0.041,1.4 0.327,-1.4 c 0.181,-0.77 0.526,-2.216 0.768,-3.213 0.243,-0.998 0.383,-3.878 0.312,-6.4 l -0.128,-4.587 -0.09,4.2 m -2.226,14.072 c -2.089,7.092 -4.432,12.325 -7.288,16.278 -1.014,1.403 -2.24,3.293 -2.725,4.2 -1.498,2.802 -2.202,3.704 -5.678,7.275 -1.85,1.901 -3.364,3.672 -3.364,3.935 0,0.544 -2.063,2.548 -5,4.857 -1.1,0.865 -2.9,2.475 -4,3.578 -1.1,1.103 -3.5,2.905 -5.333,4.005 -1.834,1.1 -4.084,2.555 -5,3.234 -2.574,1.905 -11.336,6.166 -12.681,6.166 -0.256,0 -1.032,0.254 -1.726,0.565 -0.693,0.311 -2.61,0.952 -4.26,1.425 -1.65,0.472 -3.72,1.183 -4.6,1.579 -9.106,4.1 -42.993,4.084 -48.054,-0.022 -0.413,-0.335 -2.791,-1.098 -5.346,-1.715 -0.58,-0.14 -0.328,0.092 0.6,0.553 0.88,0.437 2.084,0.799 2.676,0.805 0.592,0.005 1.181,0.179 1.309,0.385 0.391,0.634 6.641,2.425 8.46,2.425 0.944,0 2.753,0.27 4.02,0.6 3.155,0.822 21.342,0.858 24.551,0.049 1.201,-0.302 3.521,-0.667 5.154,-0.809 1.634,-0.142 3.164,-0.414 3.4,-0.603 0.237,-0.19 1.06,-0.475 1.83,-0.635 0.77,-0.16 1.67,-0.517 2,-0.793 0.33,-0.277 1.341,-0.615 2.247,-0.752 0.906,-0.137 2.166,-0.52 2.8,-0.851 0.634,-0.33 1.518,-0.602 1.964,-0.604 0.446,-0.001 1.166,-0.249 1.6,-0.552 0.434,-0.302 1.544,-0.676 2.466,-0.831 0.922,-0.155 1.889,-0.537 2.149,-0.85 0.26,-0.313 0.878,-0.569 1.374,-0.569 0.496,0 1.117,-0.258 1.379,-0.574 0.262,-0.316 1.002,-0.69 1.644,-0.831 0.642,-0.141 1.272,-0.425 1.4,-0.632 0.127,-0.206 0.804,-0.619 1.504,-0.916 0.7,-0.298 1.777,-1.015 2.394,-1.594 0.616,-0.579 1.265,-1.053 1.442,-1.053 0.177,0 1.113,-0.591 2.079,-1.313 0.967,-0.722 2.208,-1.539 2.758,-1.815 2.017,-1.016 2.669,-1.527 5.443,-4.272 1.557,-1.54 3.657,-3.382 4.668,-4.093 1.01,-0.711 2.471,-2.241 3.246,-3.4 0.774,-1.159 2.843,-3.588 4.596,-5.398 1.753,-1.81 3.314,-3.69 3.469,-4.178 0.154,-0.487 0.888,-1.749 1.63,-2.804 0.741,-1.055 1.348,-2.003 1.348,-2.105 0,-0.249 1.973,-3.148 2.324,-3.414 0.483,-0.367 2.076,-3.543 2.076,-4.138 0,-0.315 0.27,-0.796 0.6,-1.07 0.33,-0.274 0.601,-0.791 0.602,-1.149 0.002,-0.358 0.274,-1.17 0.604,-1.804 0.331,-0.634 0.718,-1.894 0.86,-2.8 0.143,-0.906 0.514,-2.04 0.826,-2.521 0.311,-0.481 0.508,-1.349 0.437,-1.929 -0.099,-0.811 -0.3,-0.472 -0.874,1.475 M -25,0 h 20 v 20 h -20 z m 430,0 h 20 v 20 h -20 z"
|
|
60
|
+
stroke="none"
|
|
61
|
+
fill="#9ed48d"
|
|
62
|
+
fill-rule="evenodd"
|
|
63
|
+
transform="translate(950)" /><path
|
|
64
|
+
id="path3"
|
|
65
|
+
d="m 263,49.636 c -1.76,0.205 -4.28,0.557 -5.6,0.784 -1.32,0.227 -3.48,0.592 -4.8,0.812 -1.32,0.219 -3.12,0.646 -4,0.947 -0.88,0.301 -2.86,0.948 -4.4,1.436 -3.047,0.967 -7.735,3.308 -8.444,4.216 -0.244,0.313 -0.591,0.569 -0.771,0.569 -0.309,0 -3.022,1.813 -7.661,5.12 -1.142,0.814 -3.383,2.92 -4.98,4.68 -1.597,1.76 -3.633,3.934 -4.524,4.832 -1.55,1.561 -3.209,4 -4.672,6.869 -0.374,0.735 -0.845,1.552 -1.045,1.817 -0.201,0.265 -0.688,1.382 -1.082,2.482 -0.394,1.1 -1.068,2.618 -1.498,3.373 -3.874,6.801 -4.326,17.693 -1.71,41.227 1.785,16.057 0.288,26.163 -5.362,36.2 -1.546,2.748 -10.829,10.594 -12.543,10.602 -0.279,0.002 -1.022,0.271 -1.65,0.598 -1.204,0.628 -7.085,2.073 -9.458,2.324 -0.795,0.084 -0.314,0.176 1.113,0.212 1.472,0.037 3.108,-0.185 3.949,-0.536 0.789,-0.33 1.709,-0.6 2.043,-0.6 0.334,0 1.347,-0.348 2.251,-0.773 0.904,-0.425 2.094,-0.869 2.644,-0.987 0.55,-0.117 1.9,-0.957 3,-1.865 8.061,-6.654 8.072,-6.664 9,-8.493 0.469,-0.925 1.304,-2.492 1.855,-3.482 1.323,-2.376 2.103,-4.478 2.747,-7.4 0.29,-1.32 0.724,-3.029 0.963,-3.797 0.534,-1.715 0.536,-18.861 0.003,-22.003 -0.205,-1.21 -0.632,-5.8 -0.95,-10.2 -0.317,-4.4 -0.679,-8.81 -0.805,-9.8 -0.313,-2.462 0.893,-14.692 1.608,-16.314 0.318,-0.722 0.579,-1.746 0.579,-2.276 0,-0.53 0.174,-1.07 0.387,-1.202 0.508,-0.314 2.413,-4.119 2.413,-4.82 0,-0.674 1.51,-3.546 3.117,-5.927 0.663,-0.982 1.312,-2.122 1.442,-2.532 0.13,-0.411 1.813,-2.366 3.739,-4.346 1.926,-1.979 4.058,-4.265 4.738,-5.08 0.679,-0.815 1.597,-1.621 2.039,-1.792 0.442,-0.171 1.956,-1.179 3.364,-2.24 3.257,-2.453 9.128,-6.271 9.644,-6.271 0.216,0 0.871,-0.268 1.455,-0.595 1.358,-0.76 4.16,-1.749 6.462,-2.281 0.99,-0.229 2.005,-0.581 2.256,-0.783 0.251,-0.201 1.871,-0.528 3.6,-0.725 1.729,-0.197 3.684,-0.576 4.344,-0.841 1.939,-0.779 17.341,-0.66 20.6,0.16 1.43,0.359 3.14,0.644 3.8,0.633 2.184,-0.037 -2.594,-1.096 -7.057,-1.564 -6.658,-0.698 -8.75,-0.761 -12.143,-0.368 m 21.2,2.221 c 0.44,0.126 0.999,0.39 1.243,0.587 0.243,0.197 1.233,0.527 2.2,0.732 2.093,0.444 5.675,1.66 5.957,2.022 0.227,0.292 3.25,1.755 4.9,2.371 0.605,0.226 1.1,0.581 1.1,0.788 0,0.208 0.675,0.791 1.5,1.295 0.825,0.505 1.751,1.163 2.058,1.462 0.306,0.299 1.525,1.09 2.707,1.758 1.183,0.667 2.732,1.867 3.443,2.666 1.522,1.711 5.416,5.591 6.519,6.496 0.959,0.786 2.573,2.83 2.573,3.257 0,0.174 0.63,1.214 1.4,2.309 0.77,1.095 1.4,2.114 1.4,2.264 0,0.15 0.252,0.557 0.56,0.905 1.072,1.209 4.682,8.079 5.166,9.831 0.565,2.044 1.506,4.031 1.326,2.8 -0.295,-2.016 -2.13,-6.62 -3.249,-8.152 -0.222,-0.304 -0.943,-1.513 -1.603,-2.688 -3.569,-6.35 -5.791,-9.301 -10.87,-14.434 -2.898,-2.929 -5.508,-5.337 -5.8,-5.351 -0.291,-0.014 -2.06,-1.182 -3.93,-2.595 -1.87,-1.414 -5.11,-3.399 -7.2,-4.412 -4.975,-2.411 -5.005,-2.424 -7.8,-3.168 -2.284,-0.609 -5.329,-1.237 -3.6,-0.743 m 44.232,43.835 c -0.018,0.6 0.221,1.77 0.531,2.6 1.602,4.291 1.607,24.781 0.007,29.016 -0.314,0.83 -0.574,2.09 -0.579,2.8 -0.005,0.711 -0.365,2.077 -0.8,3.036 -0.435,0.959 -0.791,2.139 -0.791,2.623 0,0.484 -0.264,1.229 -0.587,1.657 -0.323,0.427 -0.593,1.058 -0.6,1.404 -0.007,0.345 -0.733,1.593 -1.613,2.772 -0.88,1.179 -1.6,2.36 -1.6,2.623 0,0.264 -0.27,0.703 -0.6,0.977 -0.33,0.274 -0.6,0.799 -0.6,1.168 0,0.685 -0.219,1.017 -3.015,4.576 -0.888,1.131 -1.904,2.474 -2.258,2.985 -0.354,0.511 -1.607,1.745 -2.785,2.743 -1.178,0.997 -2.69,2.289 -3.36,2.871 -1.78,1.546 -3.486,2.709 -4.398,2.999 -0.441,0.14 -1.359,0.763 -2.04,1.385 -1.572,1.436 -3.988,2.869 -4.867,2.887 -0.372,0.007 -1.397,0.361 -2.277,0.786 -0.88,0.425 -1.971,0.779 -2.424,0.786 -0.452,0.008 -1.172,0.278 -1.6,0.601 -0.427,0.323 -1.338,0.593 -2.024,0.6 -0.686,0.007 -2.375,0.373 -3.752,0.813 -1.377,0.44 -3.078,0.8 -3.78,0.8 -0.701,0 -2.162,0.251 -3.247,0.559 -1.085,0.307 -2.761,0.673 -3.724,0.812 -0.963,0.14 -2.128,0.519 -2.589,0.842 -0.478,0.335 -1.739,0.587 -2.935,0.587 -1.153,0 -2.868,0.256 -3.811,0.57 -0.943,0.313 -2.794,0.696 -4.114,0.851 -1.32,0.154 -2.886,0.528 -3.48,0.83 -0.594,0.302 -1.481,0.549 -1.97,0.549 -3.103,0 -12.717,4.775 -16.018,7.956 -3.534,3.406 -5.132,5.048 -5.132,5.275 0,0.149 -0.72,1.035 -1.6,1.969 -0.88,0.934 -1.6,1.925 -1.6,2.2 0,0.276 -0.27,0.726 -0.6,1 -0.33,0.274 -0.601,0.791 -0.602,1.149 -0.002,0.358 -0.274,1.17 -0.604,1.804 -0.331,0.634 -0.708,1.894 -0.839,2.8 -0.131,0.906 -0.489,2.535 -0.796,3.62 -0.658,2.322 -0.737,7.839 -0.141,9.83 0.231,0.768 0.581,2.897 0.779,4.731 0.199,1.833 0.547,3.557 0.774,3.831 0.227,0.273 0.585,1.711 0.795,3.194 0.21,1.482 0.55,2.908 0.756,3.168 0.205,0.26 0.503,1.187 0.66,2.059 0.158,0.873 0.541,2.079 0.852,2.68 0.311,0.602 0.566,1.441 0.566,1.865 0,0.424 0.258,0.986 0.574,1.248 0.316,0.262 0.697,1.049 0.846,1.749 0.15,0.699 0.511,1.722 0.804,2.272 0.292,0.55 0.641,1.851 0.776,2.891 0.136,1.04 0.405,1.989 0.6,2.109 0.195,0.12 0.478,1.069 0.629,2.109 0.151,1.04 0.522,2.377 0.823,2.971 0.301,0.594 0.548,1.696 0.548,2.448 0,0.752 0.36,2.495 0.8,3.872 0.44,1.377 0.8,3.442 0.8,4.589 0,1.146 0.268,2.967 0.596,4.047 0.724,2.388 0.856,15.855 0.172,17.638 -0.237,0.619 -0.588,2.626 -0.779,4.46 -0.191,1.833 -0.52,3.543 -0.732,3.8 -0.212,0.256 -0.516,1.186 -0.675,2.066 -0.159,0.88 -0.535,2.086 -0.835,2.68 -0.301,0.594 -0.547,1.407 -0.547,1.806 0,0.399 -0.36,1.398 -0.8,2.218 -0.44,0.821 -0.8,1.742 -0.8,2.046 0,0.303 -0.27,0.776 -0.6,1.05 -0.33,0.274 -0.6,0.812 -0.6,1.197 0,0.384 -0.72,1.603 -1.6,2.708 -0.88,1.105 -1.6,2.103 -1.6,2.217 0,0.115 -0.63,1.165 -1.4,2.334 -0.77,1.169 -1.4,2.272 -1.4,2.451 0,0.637 -1.839,2.877 -4.5,5.481 -1.485,1.454 -2.7,2.771 -2.7,2.928 0,0.54 -3.94,4.773 -5.476,5.884 -1.938,1.4 -4.524,3.788 -4.527,4.178 -0.002,0.421 -1.163,1.264 -4.197,3.05 -0.88,0.518 -1.838,1.174 -2.129,1.457 -0.29,0.283 -0.791,0.515 -1.112,0.515 -0.321,0 -0.681,0.254 -0.8,0.564 -0.12,0.31 -0.609,0.666 -1.088,0.791 -0.479,0.124 -1.438,0.763 -2.13,1.418 -0.693,0.655 -1.72,1.307 -2.284,1.448 -0.563,0.142 -1.234,0.51 -1.49,0.818 -0.256,0.309 -0.79,0.561 -1.187,0.561 -0.398,0 -0.961,0.225 -1.251,0.5 -0.569,0.538 -3.641,1.731 -5.955,2.313 -0.785,0.197 -1.955,0.633 -2.6,0.97 -0.646,0.337 -1.573,0.613 -2.06,0.615 -0.849,0.002 -1.943,0.406 -5.558,2.053 -0.904,0.412 -2.203,0.749 -2.886,0.749 -0.683,0 -2.013,0.255 -2.956,0.567 -6.02,1.992 -28.235,2.016 -35.914,0.039 -1.21,-0.312 -2.795,-0.663 -3.523,-0.781 -0.728,-0.118 -1.596,-0.487 -1.929,-0.82 -0.333,-0.333 -1.098,-0.605 -1.7,-0.605 -0.602,0 -1.444,-0.264 -1.872,-0.587 -0.427,-0.323 -1.229,-0.593 -1.782,-0.6 -0.553,-0.007 -1.678,-0.373 -2.498,-0.813 -0.821,-0.44 -1.816,-0.8 -2.21,-0.8 -0.394,0 -1.423,-0.36 -2.286,-0.8 -0.863,-0.44 -1.891,-0.8 -2.285,-0.8 -0.393,0 -0.715,-0.162 -0.715,-0.361 0,-0.198 -0.541,-0.549 -1.202,-0.78 -1.037,-0.361 -5.419,-3.025 -5.998,-3.646 -0.635,-0.681 -5.313,-3.613 -5.764,-3.613 -0.296,0 -0.762,-0.27 -1.036,-0.6 -0.274,-0.33 -0.676,-0.6 -0.893,-0.6 -0.218,0 -1.83,-1.35 -3.584,-3 -1.754,-1.65 -3.358,-3 -3.564,-3 -0.572,0 -5.155,-4.531 -5.157,-5.099 -0.001,-0.274 -1.13,-1.624 -2.509,-3 -3.112,-3.106 -4.905,-5.528 -5.92,-8.001 -0.248,-0.605 -0.602,-1.1 -0.785,-1.1 -0.184,0 -0.45,-0.365 -0.592,-0.812 -0.141,-0.446 -0.873,-1.747 -1.627,-2.89 -0.753,-1.144 -1.369,-2.3 -1.369,-2.569 0,-0.269 -0.229,-0.633 -0.508,-0.809 -0.28,-0.176 -0.729,-0.77 -0.998,-1.32 -0.268,-0.55 -0.648,-1.27 -0.844,-1.6 -0.997,-1.682 -2.05,-4.403 -2.05,-5.295 0,-0.554 -0.27,-1.231 -0.6,-1.505 -0.33,-0.274 -0.601,-0.881 -0.602,-1.349 -0.002,-0.468 -0.271,-1.365 -0.598,-1.993 -0.328,-0.628 -0.772,-2.234 -0.987,-3.569 -0.215,-1.335 -0.576,-2.612 -0.802,-2.838 -0.226,-0.226 -0.411,-0.783 -0.411,-1.237 0,-0.454 -0.333,-1.453 -0.74,-2.22 -0.411,-0.776 -0.844,-2.672 -0.975,-4.274 -0.129,-1.583 -0.458,-3.293 -0.731,-3.8 -0.832,-1.546 -0.69,-21.909 0.173,-24.693 0.37,-1.195 0.673,-3.07 0.673,-4.168 0,-1.098 0.243,-2.28 0.539,-2.628 0.767,-0.898 1.919,-4.346 2.082,-6.231 0.076,-0.88 0.04,-1.24 -0.081,-0.8 -0.551,2.016 -1.74,5.31 -2.309,6.4 -0.344,0.66 -0.627,1.684 -0.629,2.275 -0.001,0.592 -0.303,2.302 -0.67,3.8 -0.982,4 -0.984,24.363 -0.004,28.057 0.37,1.393 0.673,3.103 0.674,3.8 0.002,0.698 0.289,1.808 0.64,2.468 0.647,1.221 1.349,3.446 2.332,7.4 0.538,2.167 1.499,5.034 2.212,6.6 0.2,0.44 0.483,1.25 0.628,1.8 0.436,1.645 2.211,5.311 3.232,6.673 0.525,0.701 0.954,1.389 0.954,1.53 0,0.379 3.298,5.909 3.891,6.526 0.28,0.29 0.509,0.75 0.509,1.021 0,0.799 3.362,5.339 5.304,7.165 0.986,0.927 2.62,2.788 3.631,4.137 1.011,1.349 3.059,3.362 4.552,4.474 1.492,1.112 3.316,2.667 4.054,3.457 1.334,1.428 4.529,3.817 5.105,3.817 0.369,0 4.205,2.459 7.053,4.521 3.343,2.421 9.386,5.186 14.701,6.725 0.77,0.223 1.967,0.664 2.66,0.98 0.694,0.316 1.628,0.574 2.078,0.574 0.449,0 1.412,0.333 2.139,0.74 7.408,4.144 38.54,4.172 47.723,0.042 0.88,-0.395 2.95,-1.114 4.6,-1.596 1.65,-0.483 3.45,-1.102 4,-1.376 0.55,-0.275 1.578,-0.608 2.285,-0.742 1.857,-0.35 10.045,-4.321 12.19,-5.912 1.005,-0.746 3.325,-2.256 5.154,-3.356 1.829,-1.1 4.416,-3.082 5.748,-4.405 1.333,-1.322 3.491,-3.212 4.796,-4.2 1.306,-0.987 3.016,-2.72 3.8,-3.85 0.785,-1.13 2.657,-3.29 4.159,-4.8 1.503,-1.51 3.427,-3.928 4.276,-5.373 2.043,-3.479 4.212,-6.829 4.902,-7.572 0.515,-0.554 0.924,-1.37 3.057,-6.1 0.421,-0.935 1.072,-2.78 1.445,-4.1 0.373,-1.32 0.924,-3.12 1.224,-4 0.3,-0.88 0.731,-2.86 0.957,-4.4 0.226,-1.54 0.585,-3.52 0.799,-4.4 0.519,-2.134 0.516,-16.454 -0.003,-18.88 -0.226,-1.056 -0.665,-3.45 -0.977,-5.32 -0.768,-4.614 -1.34,-7.316 -2.203,-10.4 -0.4,-1.43 -1.034,-3.77 -1.41,-5.2 -0.953,-3.625 -2.237,-7.288 -2.806,-8 -0.263,-0.33 -0.674,-1.32 -0.914,-2.2 -0.239,-0.88 -0.815,-2.86 -1.279,-4.4 -0.465,-1.54 -1.081,-3.88 -1.369,-5.2 -0.288,-1.32 -0.722,-3.21 -0.964,-4.2 -0.63,-2.574 -1.632,-10.816 -1.46,-12 0.081,-0.55 0.356,-2.44 0.613,-4.2 0.523,-3.592 1.836,-8.076 2.645,-9.031 0.294,-0.348 0.535,-0.778 0.535,-0.956 0,-0.527 4.437,-5.854 6.6,-7.924 3.432,-3.285 10.166,-7.429 13.525,-8.324 0.701,-0.187 2.625,-0.724 4.275,-1.193 1.65,-0.47 4.44,-1.096 6.2,-1.392 1.76,-0.297 3.829,-0.728 4.597,-0.96 0.769,-0.231 1.968,-0.42 2.665,-0.42 0.697,0 2.228,-0.339 3.402,-0.753 1.175,-0.414 3.846,-1.06 5.936,-1.436 6.015,-1.083 10.728,-2.228 14.4,-3.501 1.87,-0.648 4.05,-1.358 4.845,-1.579 0.795,-0.22 2.415,-1.197 3.6,-2.17 1.185,-0.973 2.515,-1.882 2.955,-2.021 0.863,-0.273 4.337,-2.872 6.6,-4.938 0.77,-0.703 1.76,-1.576 2.2,-1.94 1.614,-1.335 5.476,-6.541 7.092,-9.559 0.913,-1.707 2.24,-3.955 2.948,-4.996 0.709,-1.041 1.55,-2.661 1.869,-3.6 0.32,-0.939 0.804,-2.337 1.076,-3.107 2.755,-7.79 3.921,-20.858 2.768,-31 -0.479,-4.208 -1.864,-10.057 -1.921,-8.108 M 129.8,179.457 c -5.584,0.778 -11.886,2.153 -12.6,2.748 -0.33,0.276 -2.04,0.99 -3.8,1.587 -5.289,1.796 -11.555,5.093 -14,7.366 -2.143,1.993 -5.255,4.439 -5.667,4.455 -0.523,0.02 -2.145,1.605 -4.51,4.407 -1.197,1.419 -3.195,3.572 -4.439,4.784 -1.245,1.212 -2.587,2.832 -2.981,3.6 -0.394,0.768 -1.477,2.566 -2.406,3.996 -0.929,1.43 -2.193,3.59 -2.809,4.8 -0.616,1.21 -1.437,2.56 -1.824,3 -0.909,1.032 -2.644,4.504 -3.344,6.69 -0.301,0.941 -0.942,2.7 -1.424,3.91 -1.21,3.039 -1.483,4.682 -0.431,2.6 0.444,-0.88 0.814,-1.983 0.821,-2.451 0.008,-0.468 0.262,-1.057 0.566,-1.309 0.303,-0.252 0.664,-1.039 0.801,-1.749 0.23,-1.186 1.054,-3.21 1.911,-4.691 0.191,-0.33 0.543,-1.095 0.781,-1.7 0.238,-0.605 0.578,-1.1 0.755,-1.1 0.381,0 1.792,-2.315 2.206,-3.62 0.161,-0.505 0.452,-1.112 0.648,-1.349 0.982,-1.188 3.544,-5.286 3.545,-5.67 10e-4,-0.241 0.316,-0.821 0.701,-1.289 0.385,-0.468 1.15,-1.481 1.7,-2.251 0.55,-0.769 1.205,-1.404 1.456,-1.41 0.25,-0.006 1.42,-1.199 2.6,-2.65 2.524,-3.107 5.518,-6.161 6.04,-6.161 0.473,0 3.715,-2.571 5.413,-4.293 1.896,-1.923 10.042,-6.279 13.291,-7.107 0.55,-0.14 1.54,-0.501 2.2,-0.802 0.66,-0.301 1.47,-0.656 1.8,-0.788 0.33,-0.133 1.05,-0.502 1.6,-0.82 0.55,-0.318 1.581,-0.581 2.292,-0.584 0.71,-0.003 1.97,-0.258 2.8,-0.566 3.713,-1.379 21.249,-1.976 42.108,-1.434 2.53,0.066 6.22,-0.046 8.2,-0.25 2.626,-0.269 -2.3,-0.381 -18.2,-0.413 -16.66,-0.034 -22.743,0.088 -25.8,0.514 M -25,0 h 20 v 20 h -20 z m 430,0 h 20 v 20 h -20 z"
|
|
66
|
+
stroke="none"
|
|
67
|
+
fill="#b4dcac"
|
|
68
|
+
fill-rule="evenodd"
|
|
69
|
+
transform="translate(30,460)" /><path
|
|
70
|
+
id="path4"
|
|
71
|
+
d="m 266.433,48.944 c 0.092,0.08 1.247,0.245 2.567,0.368 1.491,0.139 2.021,0.099 1.4,-0.105 -0.988,-0.323 -4.289,-0.542 -3.967,-0.263 m 11.267,1.332 c 0.385,0.1 1.015,0.1 1.4,0 0.385,-0.101 0.07,-0.183 -0.7,-0.183 -0.77,0 -1.085,0.082 -0.7,0.183 M 205.714,106.6 c 0.003,1.1 0.081,1.503 0.173,0.895 0.092,-0.609 0.09,-1.509 -0.005,-2 -0.095,-0.492 -0.171,0.005 -0.168,1.105 m 125.244,5.6 c 0,3.08 0.063,4.287 0.139,2.682 0.076,-1.604 0.076,-4.124 -10e-4,-5.6 -0.077,-1.475 -0.139,-0.162 -0.138,2.918 M 206.093,114 c 0,0.77 0.082,1.085 0.183,0.7 0.1,-0.385 0.1,-1.015 0,-1.4 -0.101,-0.385 -0.183,-0.07 -0.183,0.7 m 0.808,7.4 c 0.004,0.88 0.086,1.193 0.182,0.695 0.096,-0.497 0.092,-1.217 -0.008,-1.6 -0.1,-0.382 -0.179,0.025 -0.174,0.905 m -63.778,57.299 c 2.708,0.069 7.028,0.069 9.6,0 2.572,-0.07 0.357,-0.127 -4.923,-0.126 -5.28,0 -7.385,0.057 -4.677,0.126 m 32.577,-0.023 c 0.385,0.1 1.015,0.1 1.4,0 0.385,-0.101 0.07,-0.183 -0.7,-0.183 -0.77,0 -1.085,0.082 -0.7,0.183 m -11,0.417 c 0.935,0.084 2.465,0.084 3.4,0 0.935,-0.084 0.17,-0.153 -1.7,-0.153 -1.87,0 -2.635,0.069 -1.7,0.153 M 64.093,255.2 c 0,0.77 0.082,1.085 0.183,0.7 0.1,-0.385 0.1,-1.015 0,-1.4 -0.101,-0.385 -0.183,-0.07 -0.183,0.7 M -25,0 h 20 v 20 h -20 z m 430,0 h 20 v 20 h -20 z"
|
|
72
|
+
stroke="none"
|
|
73
|
+
fill="#b4dc9c"
|
|
74
|
+
fill-rule="evenodd"
|
|
75
|
+
transform="translate(490,460)" /></g></g></svg>
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ServiceM8 API Response Types
|
|
3
|
+
*/
|
|
4
|
+
export interface ServiceM8Client {
|
|
5
|
+
uuid: string;
|
|
6
|
+
name: string;
|
|
7
|
+
is_individual: number;
|
|
8
|
+
address: string;
|
|
9
|
+
address_street: string;
|
|
10
|
+
address_city: string;
|
|
11
|
+
address_state: string;
|
|
12
|
+
address_postcode: string;
|
|
13
|
+
address_country: string;
|
|
14
|
+
active: number;
|
|
15
|
+
}
|
|
16
|
+
export interface ServiceM8Contact {
|
|
17
|
+
uuid: string;
|
|
18
|
+
company_uuid: string;
|
|
19
|
+
first: string;
|
|
20
|
+
last: string;
|
|
21
|
+
email: string;
|
|
22
|
+
phone: string;
|
|
23
|
+
mobile: string;
|
|
24
|
+
type: string;
|
|
25
|
+
active: number;
|
|
26
|
+
}
|
|
27
|
+
export interface ServiceM8Job {
|
|
28
|
+
uuid: string;
|
|
29
|
+
generated_job_id: string;
|
|
30
|
+
status: string;
|
|
31
|
+
company_uuid: string;
|
|
32
|
+
job_address: string;
|
|
33
|
+
billing_address: string;
|
|
34
|
+
job_description: string;
|
|
35
|
+
active: number;
|
|
36
|
+
}
|
|
37
|
+
export interface ServiceM8Category {
|
|
38
|
+
uuid: string;
|
|
39
|
+
name: string;
|
|
40
|
+
active: number;
|
|
41
|
+
}
|
|
42
|
+
export interface ServiceM8Badge {
|
|
43
|
+
uuid: string;
|
|
44
|
+
name: string;
|
|
45
|
+
active: number;
|
|
46
|
+
}
|
|
47
|
+
export interface ServiceM8Queue {
|
|
48
|
+
uuid: string;
|
|
49
|
+
name: string;
|
|
50
|
+
active: number;
|
|
51
|
+
}
|
|
52
|
+
export interface ServiceM8ApiResponse<T = unknown> {
|
|
53
|
+
statusCode?: number;
|
|
54
|
+
headers?: Record<string, string>;
|
|
55
|
+
body?: T;
|
|
56
|
+
}
|
|
57
|
+
export declare function isServiceM8Client(obj: unknown): obj is ServiceM8Client;
|
|
58
|
+
export declare function isServiceM8Contact(obj: unknown): obj is ServiceM8Contact;
|
|
59
|
+
export declare function parseApiResult<T>(result: unknown): T[];
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* ServiceM8 API Response Types
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.parseApiResult = exports.isServiceM8Contact = exports.isServiceM8Client = void 0;
|
|
7
|
+
// Type guards
|
|
8
|
+
function isServiceM8Client(obj) {
|
|
9
|
+
return (typeof obj === 'object' &&
|
|
10
|
+
obj !== null &&
|
|
11
|
+
'uuid' in obj &&
|
|
12
|
+
'name' in obj &&
|
|
13
|
+
'is_individual' in obj);
|
|
14
|
+
}
|
|
15
|
+
exports.isServiceM8Client = isServiceM8Client;
|
|
16
|
+
function isServiceM8Contact(obj) {
|
|
17
|
+
return (typeof obj === 'object' &&
|
|
18
|
+
obj !== null &&
|
|
19
|
+
'uuid' in obj &&
|
|
20
|
+
'company_uuid' in obj &&
|
|
21
|
+
'first' in obj);
|
|
22
|
+
}
|
|
23
|
+
exports.isServiceM8Contact = isServiceM8Contact;
|
|
24
|
+
function parseApiResult(result) {
|
|
25
|
+
if (Array.isArray(result)) {
|
|
26
|
+
return result;
|
|
27
|
+
}
|
|
28
|
+
if (result && typeof result === 'object' && 'uuid' in result) {
|
|
29
|
+
return [result];
|
|
30
|
+
}
|
|
31
|
+
return [];
|
|
32
|
+
}
|
|
33
|
+
exports.parseApiResult = parseApiResult;
|
|
34
|
+
//# sourceMappingURL=api.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../../../nodes/ServiceM8JobCreation/types/api.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AA8DH,cAAc;AACd,SAAgB,iBAAiB,CAAC,GAAY;IAC7C,OAAO,CACN,OAAO,GAAG,KAAK,QAAQ;QACvB,GAAG,KAAK,IAAI;QACZ,MAAM,IAAI,GAAG;QACb,MAAM,IAAI,GAAG;QACb,eAAe,IAAI,GAAG,CACtB,CAAC;AACH,CAAC;AARD,8CAQC;AAED,SAAgB,kBAAkB,CAAC,GAAY;IAC9C,OAAO,CACN,OAAO,GAAG,KAAK,QAAQ;QACvB,GAAG,KAAK,IAAI;QACZ,MAAM,IAAI,GAAG;QACb,cAAc,IAAI,GAAG;QACrB,OAAO,IAAI,GAAG,CACd,CAAC;AACH,CAAC;AARD,gDAQC;AAED,SAAgB,cAAc,CAAI,MAAe;IAChD,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE;QAC1B,OAAO,MAAa,CAAC;KACrB;IACD,IAAI,MAAM,IAAI,OAAO,MAAM,KAAK,QAAQ,IAAI,MAAM,IAAI,MAAM,EAAE;QAC7D,OAAO,CAAC,MAAW,CAAC,CAAC;KACrB;IACD,OAAO,EAAE,CAAC;AACX,CAAC;AARD,wCAQC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Types Index
|
|
3
|
+
* Re-exports all types for the ServiceM8 Smart Job Creation node
|
|
4
|
+
*/
|
|
5
|
+
export { type ServiceM8Client, type ServiceM8Contact, type ServiceM8Job, type ServiceM8Category, type ServiceM8Badge, type ServiceM8Queue, type ServiceM8ApiResponse, isServiceM8Client, isServiceM8Contact, parseApiResult, } from './api';
|
|
6
|
+
export { type ContactInput, type AddressParts, type JobInput, type NotificationRecipient, type AttachmentMode, type AttachmentInputParams, type NameMatchResult, type AddressMatchResult, type MatchResult, type ClientMatchResult, type ClassifiedInput, type ActionDecision, type ProcessedInput, } from './input';
|
|
7
|
+
export { type CreatedRecords, type CreatedRecordsUpdate, type ExecutionSummary, type ExecutionDebug, type ExecutionResult, type JobUpdateResult, createEmptyCreatedRecords, createEmptyCreatedRecordsUpdate, createEmptySummary, createEmptyDebug, createEmptyExecutionResult, createEmptyUpdateResult, } from './result';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Types Index
|
|
4
|
+
* Re-exports all types for the ServiceM8 Smart Job Creation node
|
|
5
|
+
*/
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
exports.createEmptyUpdateResult = exports.createEmptyExecutionResult = exports.createEmptyDebug = exports.createEmptySummary = exports.createEmptyCreatedRecordsUpdate = exports.createEmptyCreatedRecords = exports.parseApiResult = exports.isServiceM8Contact = exports.isServiceM8Client = void 0;
|
|
8
|
+
// API types
|
|
9
|
+
var api_1 = require("./api");
|
|
10
|
+
Object.defineProperty(exports, "isServiceM8Client", { enumerable: true, get: function () { return api_1.isServiceM8Client; } });
|
|
11
|
+
Object.defineProperty(exports, "isServiceM8Contact", { enumerable: true, get: function () { return api_1.isServiceM8Contact; } });
|
|
12
|
+
Object.defineProperty(exports, "parseApiResult", { enumerable: true, get: function () { return api_1.parseApiResult; } });
|
|
13
|
+
// Result types
|
|
14
|
+
var result_1 = require("./result");
|
|
15
|
+
Object.defineProperty(exports, "createEmptyCreatedRecords", { enumerable: true, get: function () { return result_1.createEmptyCreatedRecords; } });
|
|
16
|
+
Object.defineProperty(exports, "createEmptyCreatedRecordsUpdate", { enumerable: true, get: function () { return result_1.createEmptyCreatedRecordsUpdate; } });
|
|
17
|
+
Object.defineProperty(exports, "createEmptySummary", { enumerable: true, get: function () { return result_1.createEmptySummary; } });
|
|
18
|
+
Object.defineProperty(exports, "createEmptyDebug", { enumerable: true, get: function () { return result_1.createEmptyDebug; } });
|
|
19
|
+
Object.defineProperty(exports, "createEmptyExecutionResult", { enumerable: true, get: function () { return result_1.createEmptyExecutionResult; } });
|
|
20
|
+
Object.defineProperty(exports, "createEmptyUpdateResult", { enumerable: true, get: function () { return result_1.createEmptyUpdateResult; } });
|
|
21
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../nodes/ServiceM8JobCreation/types/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEH,YAAY;AACZ,6BAWe;AAHd,wGAAA,iBAAiB,OAAA;AACjB,yGAAA,kBAAkB,OAAA;AAClB,qGAAA,cAAc,OAAA;AAoBf,eAAe;AACf,mCAakB;AANjB,mHAAA,yBAAyB,OAAA;AACzB,yHAAA,+BAA+B,OAAA;AAC/B,4GAAA,kBAAkB,OAAA;AAClB,0GAAA,gBAAgB,OAAA;AAChB,oHAAA,0BAA0B,OAAA;AAC1B,iHAAA,uBAAuB,OAAA"}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Input and Processing Types
|
|
3
|
+
*/
|
|
4
|
+
import type { ServiceM8Client, ServiceM8Contact } from './api';
|
|
5
|
+
export interface ContactInput {
|
|
6
|
+
firstName: string;
|
|
7
|
+
lastName: string;
|
|
8
|
+
email: string;
|
|
9
|
+
phone: string;
|
|
10
|
+
mobile: string;
|
|
11
|
+
}
|
|
12
|
+
export interface AddressParts {
|
|
13
|
+
street: string;
|
|
14
|
+
city: string;
|
|
15
|
+
state: string;
|
|
16
|
+
postcode: string;
|
|
17
|
+
country: string;
|
|
18
|
+
}
|
|
19
|
+
export interface JobInput {
|
|
20
|
+
details: string;
|
|
21
|
+
status: string;
|
|
22
|
+
}
|
|
23
|
+
export interface NotificationRecipient {
|
|
24
|
+
email: string;
|
|
25
|
+
phone?: string;
|
|
26
|
+
name?: string;
|
|
27
|
+
}
|
|
28
|
+
export type AttachmentMode = 'allBinary' | 'urlList' | 'manual';
|
|
29
|
+
export interface AttachmentInputParams {
|
|
30
|
+
sourceType: 'binary' | 'url';
|
|
31
|
+
binaryPropertyName?: string;
|
|
32
|
+
fileUrl?: string;
|
|
33
|
+
fileName?: string;
|
|
34
|
+
fileType?: string;
|
|
35
|
+
}
|
|
36
|
+
export type NameMatchResult = 'exact' | 'partial' | 'none';
|
|
37
|
+
export type AddressMatchResult = 'exact' | 'near' | 'none';
|
|
38
|
+
export interface MatchResult {
|
|
39
|
+
name: NameMatchResult;
|
|
40
|
+
address: AddressMatchResult;
|
|
41
|
+
}
|
|
42
|
+
export interface ClientMatchResult {
|
|
43
|
+
client: ServiceM8Client | null;
|
|
44
|
+
matchType: MatchResult;
|
|
45
|
+
reason: string;
|
|
46
|
+
}
|
|
47
|
+
export interface ClassifiedInput {
|
|
48
|
+
kind: 'business' | 'person';
|
|
49
|
+
isBusiness: boolean;
|
|
50
|
+
isIndividual: number;
|
|
51
|
+
email: string;
|
|
52
|
+
firstName: string;
|
|
53
|
+
lastName: string;
|
|
54
|
+
phone: string | null;
|
|
55
|
+
mobile: string | null;
|
|
56
|
+
hasContactIdentifier: boolean;
|
|
57
|
+
contactLookupField: 'email' | 'mobile' | 'phone' | null;
|
|
58
|
+
contactLookupValue: string | null;
|
|
59
|
+
contactLookupFilter: string | null;
|
|
60
|
+
clientName: string;
|
|
61
|
+
businessName: string | null;
|
|
62
|
+
clientAddress: string;
|
|
63
|
+
clientAddressParts: AddressParts;
|
|
64
|
+
jobAddress: string;
|
|
65
|
+
jobDetails: string;
|
|
66
|
+
jobStatus: string;
|
|
67
|
+
}
|
|
68
|
+
export interface ActionDecision {
|
|
69
|
+
action: 'create_client_and_contact' | 'create_contact_and_job' | 'create_job_only';
|
|
70
|
+
reason: string;
|
|
71
|
+
needsClient: boolean;
|
|
72
|
+
needsContact: boolean;
|
|
73
|
+
existingContact: ServiceM8Contact | null;
|
|
74
|
+
existingClient: ServiceM8Client | null;
|
|
75
|
+
matchType: MatchResult;
|
|
76
|
+
clientUuid: string | null;
|
|
77
|
+
}
|
|
78
|
+
export interface ProcessedInput {
|
|
79
|
+
firstName: string;
|
|
80
|
+
lastName: string;
|
|
81
|
+
email: string;
|
|
82
|
+
phone: string | null;
|
|
83
|
+
mobile: string | null;
|
|
84
|
+
businessName: string;
|
|
85
|
+
clientName: string;
|
|
86
|
+
isBusiness: boolean;
|
|
87
|
+
kind: 'business' | 'person';
|
|
88
|
+
isIndividual: number;
|
|
89
|
+
clientAddressParts: AddressParts;
|
|
90
|
+
clientAddress: string;
|
|
91
|
+
jobAddressParts: AddressParts;
|
|
92
|
+
jobAddress: string;
|
|
93
|
+
jobDetails: string;
|
|
94
|
+
jobStatus: string;
|
|
95
|
+
contactLookupField: 'email' | 'mobile' | 'phone' | null;
|
|
96
|
+
contactLookupFilter: string | null;
|
|
97
|
+
enableCategory: boolean;
|
|
98
|
+
categoryDynamic: boolean;
|
|
99
|
+
categoryUuidInput: string;
|
|
100
|
+
categoryNameInput: string;
|
|
101
|
+
enableBadges: boolean;
|
|
102
|
+
badgesDynamic: boolean;
|
|
103
|
+
badgeUuidsInput: string[];
|
|
104
|
+
badgeNamesInput: string;
|
|
105
|
+
enableQueue: boolean;
|
|
106
|
+
queueDynamic: boolean;
|
|
107
|
+
queueUuidInput: string;
|
|
108
|
+
queueNameInput: string;
|
|
109
|
+
enableNotifications: boolean;
|
|
110
|
+
notificationRecipientsInput: unknown;
|
|
111
|
+
enableAttachments: boolean;
|
|
112
|
+
attachmentMode: AttachmentMode;
|
|
113
|
+
attachmentUrlList: string;
|
|
114
|
+
attachmentsInput: {
|
|
115
|
+
attachment?: AttachmentInputParams[];
|
|
116
|
+
};
|
|
117
|
+
enableCustomNote: boolean;
|
|
118
|
+
customNoteContent: string;
|
|
119
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"input.js","sourceRoot":"","sources":["../../../../nodes/ServiceM8JobCreation/types/input.ts"],"names":[],"mappings":";AAAA;;GAEG"}
|