@camunda/connectors-element-templates 1.0.10 → 1.0.12
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/package.json +6 -2
- package/src/connectors.js +10 -0
- package/src/element-templates/agenticai-a2a-client-outbound-connector.json +832 -0
- package/src/element-templates/agenticai-a2a-client-polling-inbound-connector-intermediate.json +340 -0
- package/src/element-templates/agenticai-a2a-client-polling-inbound-connector-receive.json +339 -0
- package/src/element-templates/agenticai-a2a-client-webhook-inbound-connector-intermediate.json +558 -0
- package/src/element-templates/agenticai-a2a-client-webhook-inbound-connector-receive.json +557 -0
- package/src/element-templates/agenticai-aiagent-job-worker.json +3307 -9
- package/src/element-templates/agenticai-aiagent-outbound-connector.json +3397 -137
- package/src/element-templates/agenticai-mcp-client-outbound-connector.json +360 -1
- package/src/element-templates/agenticai-mcp-remote-client-outbound-connector.json +1123 -1
- package/src/element-templates/aws-textract-outbound-connector.json +627 -0
- package/src/element-templates/azure-blobstorage-outbound-connector.json +463 -0
- package/src/element-templates/email-outbound-connector.json +1532 -4
- package/src/element-templates/embeddings-vector-database-outbound-connector.json +4 -1
- package/src/element-templates/hubspot-outbound-connector.json +2347 -0
package/src/element-templates/agenticai-a2a-client-polling-inbound-connector-intermediate.json
ADDED
|
@@ -0,0 +1,340 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"$schema": "https://unpkg.com/@camunda/zeebe-element-templates-json-schema/resources/schema.json",
|
|
4
|
+
"name": "A2A Client Polling Intermediate Catch Event Connector (early access)",
|
|
5
|
+
"id": "io.camunda.connectors.agenticai.a2a.client.polling.intermediate.v0",
|
|
6
|
+
"description": "Agent-to-Agent (A2A) polling inbound connector. Supports polling asynchronous tasks, but can also directly correlate messages and synchronously completed tasks.",
|
|
7
|
+
"metadata": {
|
|
8
|
+
"keywords": []
|
|
9
|
+
},
|
|
10
|
+
"version": 0,
|
|
11
|
+
"category": {
|
|
12
|
+
"id": "connectors",
|
|
13
|
+
"name": "Connectors"
|
|
14
|
+
},
|
|
15
|
+
"appliesTo": ["bpmn:IntermediateCatchEvent", "bpmn:IntermediateThrowEvent"],
|
|
16
|
+
"elementType": {
|
|
17
|
+
"value": "bpmn:IntermediateCatchEvent",
|
|
18
|
+
"eventDefinition": "bpmn:MessageEventDefinition"
|
|
19
|
+
},
|
|
20
|
+
"engines": {
|
|
21
|
+
"camunda": "^8.9"
|
|
22
|
+
},
|
|
23
|
+
"groups": [
|
|
24
|
+
{
|
|
25
|
+
"id": "connection",
|
|
26
|
+
"label": "Connection"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"id": "clientResponse",
|
|
30
|
+
"label": "Client Response"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"id": "options",
|
|
34
|
+
"label": "Options",
|
|
35
|
+
"openByDefault": false
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"id": "polling",
|
|
39
|
+
"label": "Polling",
|
|
40
|
+
"openByDefault": false
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"id": "activation",
|
|
44
|
+
"label": "Activation"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"id": "correlation",
|
|
48
|
+
"label": "Correlation",
|
|
49
|
+
"tooltip": "Learn more about message correlation in the <a href=\"https://docs.camunda.io/docs/components/concepts/messages/#message-correlation-overview\">documentation</a>."
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"id": "deduplication",
|
|
53
|
+
"label": "Deduplication",
|
|
54
|
+
"tooltip": "Deduplication allows you to configure multiple inbound connector elements to reuse the same backend (consumer/thread/endpoint) by sharing the same deduplication ID."
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"id": "output",
|
|
58
|
+
"label": "Output mapping"
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
"properties": [
|
|
62
|
+
{
|
|
63
|
+
"value": "io.camunda.agenticai:a2aclient:polling:0",
|
|
64
|
+
"binding": {
|
|
65
|
+
"name": "inbound.type",
|
|
66
|
+
"type": "zeebe:property"
|
|
67
|
+
},
|
|
68
|
+
"type": "Hidden"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"id": "data.connection.url",
|
|
72
|
+
"label": "A2A server URL",
|
|
73
|
+
"description": "The base URL of the A2A server.",
|
|
74
|
+
"optional": false,
|
|
75
|
+
"constraints": {
|
|
76
|
+
"notEmpty": true
|
|
77
|
+
},
|
|
78
|
+
"feel": "optional",
|
|
79
|
+
"group": "connection",
|
|
80
|
+
"binding": {
|
|
81
|
+
"name": "data.connection.url",
|
|
82
|
+
"type": "zeebe:property"
|
|
83
|
+
},
|
|
84
|
+
"type": "String"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"id": "data.connection.agentCardLocation",
|
|
88
|
+
"label": "Agent card location",
|
|
89
|
+
"description": "Optional path to the agent card endpoint relative to the base server URL, defaults to <code>.well-known/agent-card.json</code>.",
|
|
90
|
+
"optional": true,
|
|
91
|
+
"feel": "optional",
|
|
92
|
+
"group": "connection",
|
|
93
|
+
"binding": {
|
|
94
|
+
"name": "data.connection.agentCardLocation",
|
|
95
|
+
"type": "zeebe:property"
|
|
96
|
+
},
|
|
97
|
+
"type": "String"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"id": "internal_clientResponse",
|
|
101
|
+
"label": "A2A Client Response",
|
|
102
|
+
"description": "The response returned by the A2A client connector. Should contain a task, a message, or an agent card.",
|
|
103
|
+
"optional": false,
|
|
104
|
+
"constraints": {
|
|
105
|
+
"notEmpty": true
|
|
106
|
+
},
|
|
107
|
+
"feel": "required",
|
|
108
|
+
"group": "clientResponse",
|
|
109
|
+
"binding": {
|
|
110
|
+
"name": "internal_clientResponse",
|
|
111
|
+
"type": "zeebe:input"
|
|
112
|
+
},
|
|
113
|
+
"type": "String"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"id": "data.clientResponse",
|
|
117
|
+
"value": "=internal_clientResponse",
|
|
118
|
+
"binding": {
|
|
119
|
+
"name": "data.clientResponse",
|
|
120
|
+
"type": "zeebe:property"
|
|
121
|
+
},
|
|
122
|
+
"type": "Hidden"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"id": "data.historyLength",
|
|
126
|
+
"label": "History length",
|
|
127
|
+
"description": "The number of messages to return as part of the history when polling a task.",
|
|
128
|
+
"optional": false,
|
|
129
|
+
"value": "3",
|
|
130
|
+
"feel": "optional",
|
|
131
|
+
"group": "options",
|
|
132
|
+
"binding": {
|
|
133
|
+
"name": "data.historyLength",
|
|
134
|
+
"type": "zeebe:property"
|
|
135
|
+
},
|
|
136
|
+
"type": "String"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"id": "data.processPollingInterval",
|
|
140
|
+
"label": "Process polling interval",
|
|
141
|
+
"optional": false,
|
|
142
|
+
"value": "PT5S",
|
|
143
|
+
"group": "polling",
|
|
144
|
+
"binding": {
|
|
145
|
+
"name": "data.processPollingInterval",
|
|
146
|
+
"type": "zeebe:property"
|
|
147
|
+
},
|
|
148
|
+
"type": "Hidden"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"id": "data.taskPollingInterval",
|
|
152
|
+
"label": "Task polling interval",
|
|
153
|
+
"description": "The delay between A2A task polling requests, defined as ISO 8601 durations format. <a href='https://docs.camunda.io/docs/components/modeler/bpmn/timer-events/#time-duration' target='_blank'>How to configure a time duration</a>",
|
|
154
|
+
"optional": false,
|
|
155
|
+
"value": "PT10S",
|
|
156
|
+
"feel": "optional",
|
|
157
|
+
"group": "polling",
|
|
158
|
+
"binding": {
|
|
159
|
+
"name": "data.taskPollingInterval",
|
|
160
|
+
"type": "zeebe:property"
|
|
161
|
+
},
|
|
162
|
+
"type": "String"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"id": "activationCondition",
|
|
166
|
+
"label": "Activation condition",
|
|
167
|
+
"description": "Condition under which the Connector triggers. Leave empty to catch all events",
|
|
168
|
+
"optional": true,
|
|
169
|
+
"feel": "required",
|
|
170
|
+
"group": "activation",
|
|
171
|
+
"binding": {
|
|
172
|
+
"name": "activationCondition",
|
|
173
|
+
"type": "zeebe:property"
|
|
174
|
+
},
|
|
175
|
+
"type": "String",
|
|
176
|
+
"value": "=if result.kind = \"task\" then\n is defined(result.status.state) and not(list contains([\"submitted\", \"working\"], result.status.state))\nelse\n true"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"id": "correlationKeyProcess",
|
|
180
|
+
"label": "Correlation key (process)",
|
|
181
|
+
"description": "Sets up the correlation key from process variables",
|
|
182
|
+
"group": "correlation",
|
|
183
|
+
"binding": {
|
|
184
|
+
"name": "correlationKey",
|
|
185
|
+
"type": "bpmn:Message#zeebe:subscription#property"
|
|
186
|
+
},
|
|
187
|
+
"type": "Hidden",
|
|
188
|
+
"value": "=internal_clientResponse.pollingData.id"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"id": "correlationKeyPayload",
|
|
192
|
+
"label": "Correlation key (payload)",
|
|
193
|
+
"description": "Extracts the correlation key from the incoming message payload",
|
|
194
|
+
"group": "correlation",
|
|
195
|
+
"binding": {
|
|
196
|
+
"name": "correlationKeyExpression",
|
|
197
|
+
"type": "zeebe:property"
|
|
198
|
+
},
|
|
199
|
+
"type": "Hidden",
|
|
200
|
+
"value": "=pollingData.id"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"id": "messageIdExpression",
|
|
204
|
+
"label": "Message ID expression",
|
|
205
|
+
"description": "Expression to extract unique identifier of a message",
|
|
206
|
+
"optional": true,
|
|
207
|
+
"feel": "required",
|
|
208
|
+
"group": "correlation",
|
|
209
|
+
"binding": {
|
|
210
|
+
"name": "messageIdExpression",
|
|
211
|
+
"type": "zeebe:property"
|
|
212
|
+
},
|
|
213
|
+
"type": "String"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"id": "messageTtl",
|
|
217
|
+
"label": "Message TTL",
|
|
218
|
+
"description": "Time-to-live for the message in the broker (ISO-8601 duration)",
|
|
219
|
+
"optional": true,
|
|
220
|
+
"constraints": {
|
|
221
|
+
"notEmpty": false,
|
|
222
|
+
"pattern": {
|
|
223
|
+
"value": "^(PT.*|)$",
|
|
224
|
+
"message": "must be an ISO-8601 duration"
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
"feel": "optional",
|
|
228
|
+
"group": "correlation",
|
|
229
|
+
"binding": {
|
|
230
|
+
"name": "messageTtl",
|
|
231
|
+
"type": "zeebe:property"
|
|
232
|
+
},
|
|
233
|
+
"type": "String"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"id": "messageNameUuid",
|
|
237
|
+
"generatedValue": {
|
|
238
|
+
"type": "uuid"
|
|
239
|
+
},
|
|
240
|
+
"group": "correlation",
|
|
241
|
+
"binding": {
|
|
242
|
+
"name": "name",
|
|
243
|
+
"type": "bpmn:Message#property"
|
|
244
|
+
},
|
|
245
|
+
"type": "Hidden"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"id": "deduplicationModeManualFlag",
|
|
249
|
+
"label": "Manual mode",
|
|
250
|
+
"description": "By default, similar connectors receive the same deduplication ID. Customize by activating manual mode",
|
|
251
|
+
"value": false,
|
|
252
|
+
"group": "deduplication",
|
|
253
|
+
"binding": {
|
|
254
|
+
"name": "deduplicationModeManualFlag",
|
|
255
|
+
"type": "zeebe:property"
|
|
256
|
+
},
|
|
257
|
+
"type": "Boolean"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"id": "deduplicationId",
|
|
261
|
+
"label": "Deduplication ID",
|
|
262
|
+
"constraints": {
|
|
263
|
+
"notEmpty": true,
|
|
264
|
+
"pattern": {
|
|
265
|
+
"value": "^[a-zA-Z0-9_-]+$",
|
|
266
|
+
"message": "can only contain alphanumeric characters, dashes, and underscores"
|
|
267
|
+
}
|
|
268
|
+
},
|
|
269
|
+
"group": "deduplication",
|
|
270
|
+
"binding": {
|
|
271
|
+
"name": "deduplicationId",
|
|
272
|
+
"type": "zeebe:property"
|
|
273
|
+
},
|
|
274
|
+
"condition": {
|
|
275
|
+
"property": "deduplicationModeManualFlag",
|
|
276
|
+
"equals": true,
|
|
277
|
+
"type": "simple"
|
|
278
|
+
},
|
|
279
|
+
"type": "String"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"id": "deduplicationModeManual",
|
|
283
|
+
"value": "MANUAL",
|
|
284
|
+
"group": "deduplication",
|
|
285
|
+
"binding": {
|
|
286
|
+
"name": "deduplicationMode",
|
|
287
|
+
"type": "zeebe:property"
|
|
288
|
+
},
|
|
289
|
+
"condition": {
|
|
290
|
+
"property": "deduplicationId",
|
|
291
|
+
"isActive": true,
|
|
292
|
+
"type": "simple"
|
|
293
|
+
},
|
|
294
|
+
"type": "Hidden"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"id": "deduplicationModeAuto",
|
|
298
|
+
"value": "AUTO",
|
|
299
|
+
"group": "deduplication",
|
|
300
|
+
"binding": {
|
|
301
|
+
"name": "deduplicationMode",
|
|
302
|
+
"type": "zeebe:property"
|
|
303
|
+
},
|
|
304
|
+
"condition": {
|
|
305
|
+
"property": "deduplicationId",
|
|
306
|
+
"isActive": false,
|
|
307
|
+
"type": "simple"
|
|
308
|
+
},
|
|
309
|
+
"type": "Hidden"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"id": "resultVariable",
|
|
313
|
+
"label": "Result variable",
|
|
314
|
+
"description": "Name of variable to store the response in",
|
|
315
|
+
"group": "output",
|
|
316
|
+
"binding": {
|
|
317
|
+
"name": "resultVariable",
|
|
318
|
+
"type": "zeebe:property"
|
|
319
|
+
},
|
|
320
|
+
"type": "String"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"id": "resultExpression",
|
|
324
|
+
"label": "Result expression",
|
|
325
|
+
"description": "Expression to map the response into process variables",
|
|
326
|
+
"feel": "required",
|
|
327
|
+
"group": "output",
|
|
328
|
+
"binding": {
|
|
329
|
+
"name": "resultExpression",
|
|
330
|
+
"type": "zeebe:property"
|
|
331
|
+
},
|
|
332
|
+
"type": "Text",
|
|
333
|
+
"value": "={response: result}"
|
|
334
|
+
}
|
|
335
|
+
],
|
|
336
|
+
"icon": {
|
|
337
|
+
"contents": "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMTguNSIgdmlld0JveD0iMyA5IDMwIDE4LjUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggZD0iTTguNyAxNC43MjVDOC41MTY2NyAxNC45MDgzIDguMjgzMzMgMTUgOCAxNUM3LjcxNjY3IDE1IDcuNDc1IDE0LjkwODMgNy4yNzUgMTQuNzI1QzcuMDkxNjcgMTQuNTI1IDcgMTQuMjgzMyA3IDE0QzcgMTMuNzE2NyA3LjA5MTY3IDEzLjQ4MzMgNy4yNzUgMTMuM0M3LjQ3NSAxMy4xIDcuNzE2NjcgMTMgOCAxM0M4LjI4MzMzIDEzIDguNTE2NjcgMTMuMSA4LjcgMTMuM0M4LjkgMTMuNDgzMyA5IDEzLjcxNjcgOSAxNEM5IDE0LjI4MzMgOC45IDE0LjUyNSA4LjcgMTQuNzI1WiIgZmlsbD0iYmxhY2siLz4KICA8cGF0aCBkPSJNMTQuNyAxNC43MjVDMTQuNTE2NyAxNC45MDgzIDE0LjI4MzMgMTUgMTQgMTVDMTMuNzE2NyAxNSAxMy40NzUgMTQuOTA4MyAxMy4yNzUgMTQuNzI1QzEzLjA5MTcgMTQuNTI1IDEzIDE0LjI4MzMgMTMgMTRDMTMgMTMuNzE2NyAxMy4wOTE3IDEzLjQ4MzMgMTMuMjc1IDEzLjNDMTMuNDc1IDEzLjEgMTMuNzE2NyAxMyAxNCAxM0MxNC4yODMzIDEzIDE0LjUxNjcgMTMuMSAxNC43IDEzLjNDMTQuOSAxMy40ODMzIDE1IDEzLjcxNjcgMTUgMTRDMTUgMTQuMjgzMyAxNC45IDE0LjUyNSAxNC43IDE0LjcyNVoiIGZpbGw9ImJsYWNrIi8+CiAgPHBhdGggZD0iTTIyLjcgMTQuNzI1QzIyLjUxNjcgMTQuOTA4MyAyMi4yODMzIDE1IDIyIDE1QzIxLjcxNjcgMTUgMjEuNDc1IDE0LjkwODMgMjEuMjc1IDE0LjcyNUMyMS4wOTE3IDE0LjUyNSAyMSAxNC4yODMzIDIxIDE0QzIxIDEzLjcxNjcgMjEuMDkxNyAxMy40ODMzIDIxLjI3NSAxMy4zQzIxLjQ3NSAxMy4xIDIxLjcxNjcgMTMgMjIgMTNDMjIuMjgzMyAxMyAyMi41MTY3IDEzLjEgMjIuNyAxMy4zQzIyLjkgMTMuNDgzMyAyMyAxMy43MTY3IDIzIDE0QzIzIDE0LjI4MzMgMjIuOSAxNC41MjUgMjIuNyAxNC43MjVaIiBmaWxsPSJibGFjayIvPgogIDxwYXRoIGQ9Ik0yOC43IDE0LjcyNUMyOC41MTY3IDE0LjkwODMgMjguMjgzMyAxNSAyOCAxNUMyNy43MTY3IDE1IDI3LjQ3NSAxNC45MDgzIDI3LjI3NSAxNC43MjVDMjcuMDkxNyAxNC41MjUgMjcgMTQuMjgzMyAyNyAxNEMyNyAxMy43MTY3IDI3LjA5MTcgMTMuNDgzMyAyNy4yNzUgMTMuM0MyNy40NzUgMTMuMSAyNy43MTY3IDEzIDI4IDEzQzI4LjI4MzMgMTMgMjguNTE2NyAxMy4xIDI4LjcgMTMuM0MyOC45IDEzLjQ4MzMgMjkgMTMuNzE2NyAyOSAxNEMyOSAxNC4yODMzIDI4LjkgMTQuNTI1IDI4LjcgMTQuNzI1WiIgZmlsbD0iYmxhY2siLz4KICA8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTUgMTRDNSAxMi4zNDMxIDYuMzQzMTUgMTEgOCAxMUgxNEMxNC43NzYgMTEgMTUuMjg0IDExLjE1MzcgMTUuNjQgMTEuMzgxOEMxNS44NTg5IDEwLjc5NCAxNi4xNTE3IDEwLjE3MDkgMTYuNTU1IDkuNTk3OTVDMTUuODc5NyA5LjIxMTUzIDE1LjAzODYgOSAxNCA5SDhDNS4yMzg1OCA5IDMgMTEuMjM4NiAzIDE0QzMgMTYuNzYxMiA1LjIzNzU5IDE5IDcuOTk5MjYgMTlIMTRDMTUuNzYzNCAxOSAxNi45NTczIDE4LjM5MDIgMTcuNzM3NSAxNy4zNUMxOC40MjI4IDE2LjQzNjMgMTguNzE0OCAxNS4yNjYgMTguOTQ4MyAxNC4zMjk5TDE4Ljk3MDEgMTQuMjQyNUMxOS4yMzI3IDEzLjE5MjQgMTkuNDQ0MiAxMi40MDc3IDE5Ljg2MjUgMTEuODVDMjAuMjA3MyAxMS4zOTAyIDIwLjc2MzQgMTEgMjIgMTFIMjguMDAwNUMyOS42NTcyIDExIDMxIDEyLjM0MyAzMSAxNEMzMSAxNS42NTY5IDI5LjY1NjkgMTcgMjggMTdIMjJDMjEuMjI0IDE3IDIwLjcxNiAxNi44NDYzIDIwLjM2IDE2LjYxODJDMjAuMTQxMSAxNy4yMDYgMTkuODQ4MyAxNy44MjkxIDE5LjQ0NSAxOC40MDJDMjAuMTIwMyAxOC43ODg1IDIwLjk2MTQgMTkgMjIgMTlIMjhDMzAuNzYxNCAxOSAzMyAxNi43NjE0IDMzIDE0QzMzIDExLjIzODggMzAuNzYyMSA5IDI4LjAwMDUgOUgyMkMyMC4yMzY2IDkgMTkuMDQyNyA5LjYwOTc5IDE4LjI2MjUgMTAuNjVDMTcuNTc3MiAxMS41NjM3IDE3LjI4NTIgMTIuNzM0IDE3LjA1MTcgMTMuNjcwMUwxNy4wMjk5IDEzLjc1NzVDMTYuNzY3MyAxNC44MDc2IDE2LjU1NTggMTUuNTkyMyAxNi4xMzc1IDE2LjE1QzE1Ljc5MjcgMTYuNjA5OCAxNS4yMzY2IDE3IDE0IDE3SDcuOTk5MjZDNi4zNDI2NSAxNyA1IDE1LjY1NzEgNSAxNFoiIGZpbGw9ImJsYWNrIi8+CiAgPHBhdGggZD0iTTcgMjMuNUM2LjcxNjY3IDIzLjUgNi40NzUgMjMuNDA4MyA2LjI3NSAyMy4yMjVDNi4wOTE2NyAyMy4wMjUgNiAyMi43ODMzIDYgMjIuNUM2IDIyLjIxNjcgNi4wOTE2NyAyMS45ODMzIDYuMjc1IDIxLjhDNi40NzUgMjEuNiA2LjcxNjY3IDIxLjUgNyAyMS41SDEyQzEyLjI4MzMgMjEuNSAxMi41MTY3IDIxLjYgMTIuNyAyMS44QzEyLjkgMjEuOTgzMyAxMyAyMi4yMTY3IDEzIDIyLjVDMTMgMjIuNzgzMyAxMi45IDIzLjAyNSAxMi43IDIzLjIyNUMxMi41MTY3IDIzLjQwODMgMTIuMjgzMyAyMy41IDEyIDIzLjVIN1pNNSAyNy41QzQuNzE2NjcgMjcuNSA0LjQ3NSAyNy40MDgzIDQuMjc1IDI3LjIyNUM0LjA5MTY3IDI3LjAyNSA0IDI2Ljc4MzMgNCAyNi41QzQgMjYuMjE2NyA0LjA5MTY3IDI1Ljk4MzMgNC4yNzUgMjUuOEM0LjQ3NSAyNS42IDQuNzE2NjcgMjUuNSA1IDI1LjVIOEM4LjI4MzMzIDI1LjUgOC41MTY2NyAyNS42IDguNyAyNS44QzguOSAyNS45ODMzIDkgMjYuMjE2NyA5IDI2LjVDOSAyNi43ODMzIDguOSAyNy4wMjUgOC43IDI3LjIyNUM4LjUxNjY3IDI3LjQwODMgOC4yODMzMyAyNy41IDggMjcuNUg1Wk0xMiAyNy41QzExLjcxNjcgMjcuNSAxMS40NzUgMjcuNDA4MyAxMS4yNzUgMjcuMjI1QzExLjA5MTcgMjcuMDI1IDExIDI2Ljc4MzMgMTEgMjYuNUMxMSAyNi4yMTY3IDExLjA5MTcgMjUuOTgzMyAxMS4yNzUgMjUuOEMxMS40NzUgMjUuNiAxMS43MTY3IDI1LjUgMTIgMjUuNUgyMEMyMC4yODMzIDI1LjUgMjAuNTE2NyAyNS42IDIwLjcgMjUuOEMyMC45IDI1Ljk4MzMgMjEgMjYuMjE2NyAyMSAyNi41QzIxIDI2Ljc4MzMgMjAuOSAyNy4wMjUgMjAuNyAyNy4yMjVDMjAuNTE2NyAyNy40MDgzIDIwLjI4MzMgMjcuNSAyMCAyNy41SDEyWk0yOCAyNy41QzI3LjcxNjcgMjcuNSAyNy40NzUgMjcuNDA4MyAyNy4yNzUgMjcuMjI1QzI3LjA5MTcgMjcuMDI1IDI3IDI2Ljc4MzMgMjcgMjYuNUMyNyAyNi4yMTY3IDI3LjA5MTcgMjUuOTgzMyAyNy4yNzUgMjUuOEMyNy40NzUgMjUuNiAyNy43MTY3IDI1LjUgMjggMjUuNUgzMkMzMi4yODMzIDI1LjUgMzIuNTE2NyAyNS42IDMyLjcgMjUuOEMzMi45IDI1Ljk4MzMgMzMgMjYuMjE2NyAzMyAyNi41QzMzIDI2Ljc4MzMzMi45IDI3LjAyNSAzMi43IDI3LjIyNUMzMi41MTY3IDI3LjQwODMgMzIuMjgzMyAyNy41IDMyIDI3LjVIMjhaTTE2IDIzLjVDMTUuNzE2NyAyMy41IDE1LjQ3NSAyMy40MDgzIDE1LjI3NSAyMy4yMjVDMTUuMDkxNyAyMy4wMjUgMTUgMjIuNzgzMyAxNSAyMi41QzE1IDIyLjIxNjcgMTUuMDkxNyAyMS45ODMzIDE1LjI3NSAyMS44QzE1LjQ3NSAyMS42IDE1LjcxNjcgMjEuNSAxNiAyMS41QzE2LjI4MzMgMjEuNSAxNi41MTY3IDIxLjYgMTYuNyAyMS44QzE2LjkgMjEuOTgzMyAxNyAyMi4yMTY3IDE3IDIyLjVDMTcgMjIuNzgzMyAxNi45IDIzLjAyNSAxNi43IDIzLjIyNUMxNi41MTY3IDIzLjQwODMgMTYuMjgzMyAyMy41IDE2IDIzLjVaTTI0IDI3LjVDMjMuNzE2NyAyNy41IDIzLjQ3NSAyNy40MDgzIDIzLjI3NSAyNy4yMjVDMjMuMDkxNyAyNy4wMjUgMjMgMjYuNzgzMyAyMyAyNi41QzIzIDI2LjIxNjcgMjMuMDkxNyAyNS45ODMzIDIzLjI3NSAyNS44QzIzLjQ3NSAyNS42IDIzLjcxNjcgMjUuNSAyNCAyNS41QzI0LjI4MzMgMjUuNSAyNC41MTY3IDI1LjYgMjQuNyAyNS44QzI0LjkgMjUuOTgzMyAyNSAyNi4yMTY3IDI1IDI2LjVDMjUgMjYuNzgzMyAyNC45IDI3LjAyNSAyNC43IDI3LjIyNUMyNC41MTY3IDI3LjQwODMgMjQuMjgzMyAyNy41IDI0IDI3LjVaIiBmaWxsPSJibGFjayIvPgogIDxwYXRoIGQ9Ik0xOS4yNzUgMjMuMjI1QzE5LjQ3NSAyMy40MDgzIDE5LjcxNjcgMjMuNSAyMCAyMy41SDIzQzIzLjI4MzMgMjMuNSAyMy41MTY3IDIzLjQwODMgMjMuNyAyMy4yMjVDMjMuOSAyMy4wMjUgMjQgMjIuNzgzMyAyNCAyMi41QzI0IDIyLjIxNjcgMjMuOSAyMS45ODMzIDIzLjcgMjEuOEMyMy41MTY3IDIxLjYgMjMuMjgzMyAyMS41IDIzIDIxLjVIMjBDMTkuNzE2NyAyMS41IDE5LjQ3NSAyMS42IDE5LjI3NSAyMS44QzE5LjA5MTcgMjEuOTgzMyAxOSAyMi4yMTY3IDE5IDIyLjVDMTkgMjIuNzgzMyAxOS4wOTE3IDIzLjAyNSAxOS4yNzUgMjMuMjI1WiIgZmlsbD0iYmxhY2siLz4KICA8cGF0aCBkPSJNMjYuMjc1IDIzLjIyNUMyNi40NzUgMjMuNDA4MyAyNi43MTY3IDIzLjUgMjcgMjMuNUgzMEMzMC4yODMzIDIzLjUgMzAuNTE2NyAyMy40MDgzIDMwLjcgMjMuMjI1QzMwLjkgMjMuMDI1IDMxIDIyLjc4MzMgMzEgMjIuNUMzMSAyMi4yMTY3IDMwLjkgMjEuOTgzMyAzMC43IDIxLjhDMzAuNTE2NyAyMS42IDMwLjI4MzMgMjEuNSAzMCAyMS41SDI3QzI2LjcxNjcgMjEuNSAyNi40NzUgMjEuNiAyNi4yNzUgMjEuOEMyNi4wOTE3IDIxLjk4MzMgMjYgMjIuMjE2NyAyNiAyMi41QzI2IDIyLjc4MzMgMjYuMDkxNyAyMy4wMjUgMjYuMjc1IDIzLjIyNVoiIGZpbGw9ImJsYWNrIi8+Cjwvc3ZnPg=="
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
]
|