@uuv/a11y 0.0.1 → 1.0.0-beta.2

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.
Files changed (84) hide show
  1. package/CHANGELOG.md +59 -0
  2. package/README.md +265 -68
  3. package/bundle/uuv-a11y.bundle.js +2 -2
  4. package/dist/CHANGELOG.md +51 -0
  5. package/dist/README.md +265 -68
  6. package/dist/index.d.ts +1 -1
  7. package/dist/index.js +17 -17
  8. package/dist/lib/engine/engine.d.ts +12 -12
  9. package/dist/lib/engine/engine.js +123 -123
  10. package/dist/lib/index.d.ts +3 -3
  11. package/dist/lib/index.js +19 -19
  12. package/dist/lib/model/checker.d.ts +14 -14
  13. package/dist/lib/model/checker.js +35 -35
  14. package/dist/lib/model/index.d.ts +4 -4
  15. package/dist/lib/model/index.js +20 -20
  16. package/dist/lib/model/reference.d.ts +55 -55
  17. package/dist/lib/model/reference.js +66 -66
  18. package/dist/lib/model/result.d.ts +57 -57
  19. package/dist/lib/model/result.js +144 -144
  20. package/dist/lib/model/rule.d.ts +99 -99
  21. package/dist/lib/model/rule.js +53 -53
  22. package/dist/lib/query/00-query.d.ts +4 -4
  23. package/dist/lib/query/00-query.js +2 -2
  24. package/dist/lib/query/accessible-name.query.d.ts +8 -8
  25. package/dist/lib/query/accessible-name.query.js +34 -34
  26. package/dist/lib/query/by-role.query.d.ts +8 -8
  27. package/dist/lib/query/by-role.query.js +27 -27
  28. package/dist/lib/query/by-tag.query.d.ts +7 -7
  29. package/dist/lib/query/by-tag.query.js +20 -20
  30. package/dist/lib/query/doctype.query.d.ts +5 -5
  31. package/dist/lib/query/doctype.query.js +15 -15
  32. package/dist/lib/query/form.query.d.ts +8 -8
  33. package/dist/lib/query/form.query.js +87 -87
  34. package/dist/lib/query/index.d.ts +6 -6
  35. package/dist/lib/query/index.js +22 -22
  36. package/dist/lib/reference/alix/alix-checker.js +82 -82
  37. package/dist/lib/reference/alix/alix-rules.js +1028 -1028
  38. package/dist/lib/reference/alix/index.js +3 -3
  39. package/dist/lib/reference/index.d.ts +1 -1
  40. package/dist/lib/reference/index.js +18 -18
  41. package/dist/lib/reference/rgaa/common.d.ts +2 -2
  42. package/dist/lib/reference/rgaa/common.js +5 -5
  43. package/dist/lib/reference/rgaa/coverage/coverage-helper.d.ts +2 -2
  44. package/dist/lib/reference/rgaa/coverage/coverage-helper.js +100 -100
  45. package/dist/lib/reference/rgaa/coverage/coverage-statement.json +90 -90
  46. package/dist/lib/reference/rgaa/index.d.ts +2 -2
  47. package/dist/lib/reference/rgaa/index.js +18 -18
  48. package/dist/lib/reference/rgaa/rgaa-checker.d.ts +8 -8
  49. package/dist/lib/reference/rgaa/rgaa-checker.js +31 -31
  50. package/dist/lib/reference/rgaa/rgaa-reference.d.ts +2 -2
  51. package/dist/lib/reference/rgaa/rgaa-reference.js +44 -44
  52. package/dist/lib/reference/rgaa/rgaa_4.1.criteres.json +4144 -4144
  53. package/dist/lib/reference/rgaa/rules/1-image.d.ts +14 -14
  54. package/dist/lib/reference/rgaa/rules/1-image.js +644 -644
  55. package/dist/lib/reference/rgaa/rules/10-display.d.ts +2 -2
  56. package/dist/lib/reference/rgaa/rules/10-display.js +3 -3
  57. package/dist/lib/reference/rgaa/rules/11-form.d.ts +14 -14
  58. package/dist/lib/reference/rgaa/rules/11-form.js +16 -16
  59. package/dist/lib/reference/rgaa/rules/12-navigation.d.ts +2 -2
  60. package/dist/lib/reference/rgaa/rules/12-navigation.js +3 -3
  61. package/dist/lib/reference/rgaa/rules/13-visit.d.ts +2 -2
  62. package/dist/lib/reference/rgaa/rules/13-visit.js +3 -3
  63. package/dist/lib/reference/rgaa/rules/2-frame.d.ts +14 -14
  64. package/dist/lib/reference/rgaa/rules/2-frame.js +34 -34
  65. package/dist/lib/reference/rgaa/rules/3-color.d.ts +14 -14
  66. package/dist/lib/reference/rgaa/rules/3-color.js +50 -50
  67. package/dist/lib/reference/rgaa/rules/4-multimedia.d.ts +2 -2
  68. package/dist/lib/reference/rgaa/rules/4-multimedia.js +3 -3
  69. package/dist/lib/reference/rgaa/rules/5-table.d.ts +2 -2
  70. package/dist/lib/reference/rgaa/rules/5-table.js +3 -3
  71. package/dist/lib/reference/rgaa/rules/6-link.d.ts +2 -2
  72. package/dist/lib/reference/rgaa/rules/6-link.js +3 -3
  73. package/dist/lib/reference/rgaa/rules/7-script.d.ts +2 -2
  74. package/dist/lib/reference/rgaa/rules/7-script.js +3 -3
  75. package/dist/lib/reference/rgaa/rules/8-required-element.d.ts +14 -14
  76. package/dist/lib/reference/rgaa/rules/8-required-element.js +78 -78
  77. package/dist/lib/reference/rgaa/rules/9-structure.d.ts +2 -2
  78. package/dist/lib/reference/rgaa/rules/9-structure.js +3 -3
  79. package/dist/lib/reference/rgaa/selector-helper.d.ts +17 -17
  80. package/dist/lib/reference/rgaa/selector-helper.js +33 -33
  81. package/dist/package.json +3 -1
  82. package/docs/diagram-a11y-rgaa.excalidraw +1654 -0
  83. package/docs/diagram-a11y-rgaa.png +0 -0
  84. package/package.json +3 -1
@@ -0,0 +1,1654 @@
1
+ {
2
+ "type": "excalidraw",
3
+ "version": 2,
4
+ "source": "https://excalidraw.com",
5
+ "elements": [
6
+ {
7
+ "id": "x_G3nTZ6bbf7GXEctcV5q",
8
+ "type": "rectangle",
9
+ "x": 464.25713239397317,
10
+ "y": -93.57142857142853,
11
+ "width": 364.9142979213168,
12
+ "height": 89.28571428571428,
13
+ "angle": 0,
14
+ "strokeColor": "#1e1e1e",
15
+ "backgroundColor": "transparent",
16
+ "fillStyle": "solid",
17
+ "strokeWidth": 2,
18
+ "strokeStyle": "solid",
19
+ "roughness": 1,
20
+ "opacity": 100,
21
+ "groupIds": [],
22
+ "frameId": null,
23
+ "roundness": {
24
+ "type": 3
25
+ },
26
+ "seed": 2111056315,
27
+ "version": 250,
28
+ "versionNonce": 1000448635,
29
+ "isDeleted": false,
30
+ "boundElements": [
31
+ {
32
+ "type": "text",
33
+ "id": "wPNGpgYrFPcwcMr_w8JJV"
34
+ },
35
+ {
36
+ "id": "Zcz3PUbwGhAlydEJp1CQC",
37
+ "type": "arrow"
38
+ },
39
+ {
40
+ "id": "OeXV90C_Akv10964alz4D",
41
+ "type": "arrow"
42
+ }
43
+ ],
44
+ "updated": 1703887724247,
45
+ "link": null,
46
+ "locked": false
47
+ },
48
+ {
49
+ "id": "wPNGpgYrFPcwcMr_w8JJV",
50
+ "type": "text",
51
+ "x": 498.49635532924094,
52
+ "y": -83.92857142857139,
53
+ "width": 296.43585205078125,
54
+ "height": 70,
55
+ "angle": 0,
56
+ "strokeColor": "#1e1e1e",
57
+ "backgroundColor": "transparent",
58
+ "fillStyle": "solid",
59
+ "strokeWidth": 2,
60
+ "strokeStyle": "solid",
61
+ "roughness": 1,
62
+ "opacity": 100,
63
+ "groupIds": [],
64
+ "frameId": null,
65
+ "roundness": null,
66
+ "seed": 1715892539,
67
+ "version": 259,
68
+ "versionNonce": 43783861,
69
+ "isDeleted": false,
70
+ "boundElements": null,
71
+ "updated": 1703887724247,
72
+ "link": null,
73
+ "locked": false,
74
+ "text": "Search for nodes \nmatching the criterion",
75
+ "fontSize": 28,
76
+ "fontFamily": 1,
77
+ "textAlign": "center",
78
+ "verticalAlign": "middle",
79
+ "baseline": 60,
80
+ "containerId": "x_G3nTZ6bbf7GXEctcV5q",
81
+ "originalText": "Search for nodes matching the criterion",
82
+ "lineHeight": 1.25
83
+ },
84
+ {
85
+ "id": "HrI_QtW3I4jdYrVHxRz0Y",
86
+ "type": "diamond",
87
+ "x": 438.8571384974889,
88
+ "y": 198.35714285714283,
89
+ "width": 415.71428571428544,
90
+ "height": 160,
91
+ "angle": 0,
92
+ "strokeColor": "#1e1e1e",
93
+ "backgroundColor": "transparent",
94
+ "fillStyle": "solid",
95
+ "strokeWidth": 2,
96
+ "strokeStyle": "solid",
97
+ "roughness": 1,
98
+ "opacity": 100,
99
+ "groupIds": [],
100
+ "frameId": null,
101
+ "roundness": {
102
+ "type": 2
103
+ },
104
+ "seed": 1071825339,
105
+ "version": 675,
106
+ "versionNonce": 1957787669,
107
+ "isDeleted": false,
108
+ "boundElements": [
109
+ {
110
+ "type": "text",
111
+ "id": "joApEj-OrT84PRGtUkN6K"
112
+ },
113
+ {
114
+ "id": "Zcz3PUbwGhAlydEJp1CQC",
115
+ "type": "arrow"
116
+ },
117
+ {
118
+ "id": "nmMw8kwkoztwn9pHlePDw",
119
+ "type": "arrow"
120
+ },
121
+ {
122
+ "id": "eK7dGPBokHQrzQ3d-RWVD",
123
+ "type": "arrow"
124
+ }
125
+ ],
126
+ "updated": 1703887724247,
127
+ "link": null,
128
+ "locked": false
129
+ },
130
+ {
131
+ "id": "joApEj-OrT84PRGtUkN6K",
132
+ "type": "text",
133
+ "x": 551.7257581438337,
134
+ "y": 243.35714285714283,
135
+ "width": 190.11990356445312,
136
+ "height": 70,
137
+ "angle": 0,
138
+ "strokeColor": "#1e1e1e",
139
+ "backgroundColor": "transparent",
140
+ "fillStyle": "solid",
141
+ "strokeWidth": 2,
142
+ "strokeStyle": "solid",
143
+ "roughness": 1,
144
+ "opacity": 100,
145
+ "groupIds": [],
146
+ "frameId": null,
147
+ "roundness": null,
148
+ "seed": 1833241877,
149
+ "version": 622,
150
+ "versionNonce": 55672763,
151
+ "isDeleted": false,
152
+ "boundElements": null,
153
+ "updated": 1703887724247,
154
+ "link": null,
155
+ "locked": false,
156
+ "text": "one or more \nnodes found ?",
157
+ "fontSize": 28,
158
+ "fontFamily": 1,
159
+ "textAlign": "center",
160
+ "verticalAlign": "middle",
161
+ "baseline": 60,
162
+ "containerId": "HrI_QtW3I4jdYrVHxRz0Y",
163
+ "originalText": "one or more nodes found ?",
164
+ "lineHeight": 1.25
165
+ },
166
+ {
167
+ "id": "Zcz3PUbwGhAlydEJp1CQC",
168
+ "type": "arrow",
169
+ "x": 648.449969327905,
170
+ "y": 8.128583635602695,
171
+ "width": 1.141251839969641,
172
+ "height": 187.36660789174556,
173
+ "angle": 0,
174
+ "strokeColor": "#1e1e1e",
175
+ "backgroundColor": "transparent",
176
+ "fillStyle": "solid",
177
+ "strokeWidth": 2,
178
+ "strokeStyle": "solid",
179
+ "roughness": 1,
180
+ "opacity": 100,
181
+ "groupIds": [],
182
+ "frameId": null,
183
+ "roundness": {
184
+ "type": 2
185
+ },
186
+ "seed": 961075323,
187
+ "version": 182,
188
+ "versionNonce": 893372123,
189
+ "isDeleted": false,
190
+ "boundElements": null,
191
+ "updated": 1703888012898,
192
+ "link": null,
193
+ "locked": false,
194
+ "points": [
195
+ [
196
+ 0,
197
+ 0
198
+ ],
199
+ [
200
+ -1.141251839969641,
201
+ 187.36660789174556
202
+ ]
203
+ ],
204
+ "lastCommittedPoint": null,
205
+ "startBinding": {
206
+ "elementId": "x_G3nTZ6bbf7GXEctcV5q",
207
+ "focus": -0.011400614436368124,
208
+ "gap": 12.414297921316944
209
+ },
210
+ "endBinding": {
211
+ "elementId": "HrI_QtW3I4jdYrVHxRz0Y",
212
+ "focus": 0.00043165790040675534,
213
+ "gap": 2.8844709471788974
214
+ },
215
+ "startArrowhead": null,
216
+ "endArrowhead": "triangle"
217
+ },
218
+ {
219
+ "id": "rZOByIRhln6m3Hc3m6jV_",
220
+ "type": "ellipse",
221
+ "x": 619.5237780374192,
222
+ "y": -324.34126984126976,
223
+ "width": 42.85714285714289,
224
+ "height": 42.571428571428555,
225
+ "angle": 0,
226
+ "strokeColor": "#1e1e1e",
227
+ "backgroundColor": "transparent",
228
+ "fillStyle": "solid",
229
+ "strokeWidth": 2,
230
+ "strokeStyle": "solid",
231
+ "roughness": 1,
232
+ "opacity": 100,
233
+ "groupIds": [
234
+ "VLs4PYyCCkpSiAEbkWZrf"
235
+ ],
236
+ "frameId": null,
237
+ "roundness": {
238
+ "type": 2
239
+ },
240
+ "seed": 946959259,
241
+ "version": 236,
242
+ "versionNonce": 1652710619,
243
+ "isDeleted": false,
244
+ "boundElements": [
245
+ {
246
+ "id": "OeXV90C_Akv10964alz4D",
247
+ "type": "arrow"
248
+ }
249
+ ],
250
+ "updated": 1703887735215,
251
+ "link": null,
252
+ "locked": false
253
+ },
254
+ {
255
+ "id": "peVx5ywzvFLpS_U1VBDyj",
256
+ "type": "text",
257
+ "x": 599.5237780374192,
258
+ "y": -358.626984126984,
259
+ "width": 79.37995910644531,
260
+ "height": 35,
261
+ "angle": 0,
262
+ "strokeColor": "#1e1e1e",
263
+ "backgroundColor": "transparent",
264
+ "fillStyle": "solid",
265
+ "strokeWidth": 2,
266
+ "strokeStyle": "solid",
267
+ "roughness": 1,
268
+ "opacity": 100,
269
+ "groupIds": [
270
+ "VLs4PYyCCkpSiAEbkWZrf"
271
+ ],
272
+ "frameId": null,
273
+ "roundness": null,
274
+ "seed": 153290293,
275
+ "version": 140,
276
+ "versionNonce": 227092949,
277
+ "isDeleted": false,
278
+ "boundElements": null,
279
+ "updated": 1703887730413,
280
+ "link": null,
281
+ "locked": false,
282
+ "text": "Start",
283
+ "fontSize": 28,
284
+ "fontFamily": 1,
285
+ "textAlign": "left",
286
+ "verticalAlign": "top",
287
+ "baseline": 25,
288
+ "containerId": null,
289
+ "originalText": "Start",
290
+ "lineHeight": 1.25
291
+ },
292
+ {
293
+ "type": "ellipse",
294
+ "version": 463,
295
+ "versionNonce": 695913205,
296
+ "isDeleted": false,
297
+ "id": "d9zfNuFllcgUEg62RwJw1",
298
+ "fillStyle": "solid",
299
+ "strokeWidth": 2,
300
+ "strokeStyle": "solid",
301
+ "roughness": 1,
302
+ "opacity": 100,
303
+ "angle": 0,
304
+ "x": 628.5714067731583,
305
+ "y": 1392.785670689174,
306
+ "strokeColor": "#1e1e1e",
307
+ "backgroundColor": "#1e1e1e",
308
+ "width": 42.85714285714289,
309
+ "height": 42.571428571428555,
310
+ "seed": 2119823253,
311
+ "groupIds": [
312
+ "07kdgS8RO36yALuHO3SoU"
313
+ ],
314
+ "frameId": null,
315
+ "roundness": {
316
+ "type": 2
317
+ },
318
+ "boundElements": [
319
+ {
320
+ "id": "BBm6dW3uej8FwulHOiSBL",
321
+ "type": "arrow"
322
+ },
323
+ {
324
+ "id": "vyMldXBM-PUfSCqrO-t_i",
325
+ "type": "arrow"
326
+ }
327
+ ],
328
+ "updated": 1703887724247,
329
+ "link": null,
330
+ "locked": false
331
+ },
332
+ {
333
+ "id": "CYWsELg-ACYvNQEBbNayl",
334
+ "type": "text",
335
+ "x": 628.8569641113277,
336
+ "y": 1433.7856532505577,
337
+ "width": 44.323974609375,
338
+ "height": 35,
339
+ "angle": 0,
340
+ "strokeColor": "#1e1e1e",
341
+ "backgroundColor": "transparent",
342
+ "fillStyle": "solid",
343
+ "strokeWidth": 2,
344
+ "strokeStyle": "solid",
345
+ "roughness": 1,
346
+ "opacity": 100,
347
+ "groupIds": [
348
+ "07kdgS8RO36yALuHO3SoU"
349
+ ],
350
+ "frameId": null,
351
+ "roundness": null,
352
+ "seed": 2118583253,
353
+ "version": 220,
354
+ "versionNonce": 1487096539,
355
+ "isDeleted": false,
356
+ "boundElements": null,
357
+ "updated": 1703887724247,
358
+ "link": null,
359
+ "locked": false,
360
+ "text": "end",
361
+ "fontSize": 28,
362
+ "fontFamily": 1,
363
+ "textAlign": "left",
364
+ "verticalAlign": "top",
365
+ "baseline": 24,
366
+ "containerId": null,
367
+ "originalText": "end",
368
+ "lineHeight": 1.25
369
+ },
370
+ {
371
+ "type": "rectangle",
372
+ "version": 296,
373
+ "versionNonce": 1841451445,
374
+ "isDeleted": false,
375
+ "id": "54i6oovfkG2920SGn_k2O",
376
+ "fillStyle": "solid",
377
+ "strokeWidth": 2,
378
+ "strokeStyle": "solid",
379
+ "roughness": 1,
380
+ "opacity": 100,
381
+ "angle": 0,
382
+ "x": 13.638139997209862,
383
+ "y": 575.7142769949777,
384
+ "strokeColor": "#1e1e1e",
385
+ "backgroundColor": "transparent",
386
+ "width": 364.9142979213168,
387
+ "height": 89.28571428571428,
388
+ "seed": 895582107,
389
+ "groupIds": [],
390
+ "frameId": null,
391
+ "roundness": {
392
+ "type": 3
393
+ },
394
+ "boundElements": [
395
+ {
396
+ "type": "text",
397
+ "id": "KFTzPWPfP5m3xFmTvU6XE"
398
+ },
399
+ {
400
+ "id": "nmMw8kwkoztwn9pHlePDw",
401
+ "type": "arrow"
402
+ },
403
+ {
404
+ "id": "4EFTRA2V-X4x4lggLrpre",
405
+ "type": "arrow"
406
+ }
407
+ ],
408
+ "updated": 1703887724247,
409
+ "link": null,
410
+ "locked": false
411
+ },
412
+ {
413
+ "type": "text",
414
+ "version": 329,
415
+ "versionNonce": 59543579,
416
+ "isDeleted": false,
417
+ "id": "KFTzPWPfP5m3xFmTvU6XE",
418
+ "fillStyle": "solid",
419
+ "strokeWidth": 2,
420
+ "strokeStyle": "solid",
421
+ "roughness": 1,
422
+ "opacity": 100,
423
+ "angle": 0,
424
+ "x": 94.30133601597373,
425
+ "y": 585.3571341378348,
426
+ "strokeColor": "#1e1e1e",
427
+ "backgroundColor": "transparent",
428
+ "width": 203.58790588378906,
429
+ "height": 70,
430
+ "seed": 1105515579,
431
+ "groupIds": [],
432
+ "frameId": null,
433
+ "roundness": null,
434
+ "boundElements": [],
435
+ "updated": 1703887724247,
436
+ "link": null,
437
+ "locked": false,
438
+ "fontSize": 28,
439
+ "fontFamily": 1,
440
+ "text": "Return Status\n\"Success\"",
441
+ "textAlign": "center",
442
+ "verticalAlign": "middle",
443
+ "containerId": "54i6oovfkG2920SGn_k2O",
444
+ "originalText": "Return Status\n\"Success\"",
445
+ "lineHeight": 1.25,
446
+ "baseline": 59
447
+ },
448
+ {
449
+ "id": "nmMw8kwkoztwn9pHlePDw",
450
+ "type": "arrow",
451
+ "x": 432.9524143763951,
452
+ "y": 276.35715157645086,
453
+ "width": 237.7143205915179,
454
+ "height": 285.71428571428567,
455
+ "angle": 0,
456
+ "strokeColor": "#1e1e1e",
457
+ "backgroundColor": "#1e1e1e",
458
+ "fillStyle": "solid",
459
+ "strokeWidth": 2,
460
+ "strokeStyle": "solid",
461
+ "roughness": 1,
462
+ "opacity": 100,
463
+ "groupIds": [],
464
+ "frameId": null,
465
+ "roundness": null,
466
+ "seed": 728289339,
467
+ "version": 236,
468
+ "versionNonce": 894980885,
469
+ "isDeleted": false,
470
+ "boundElements": null,
471
+ "updated": 1703887724247,
472
+ "link": null,
473
+ "locked": false,
474
+ "points": [
475
+ [
476
+ 0,
477
+ 0
478
+ ],
479
+ [
480
+ -237.7143205915179,
481
+ 0.000021798270040562784
482
+ ],
483
+ [
484
+ -237.7142769949777,
485
+ 285.71428571428567
486
+ ]
487
+ ],
488
+ "lastCommittedPoint": null,
489
+ "startBinding": {
490
+ "elementId": "HrI_QtW3I4jdYrVHxRz0Y",
491
+ "focus": 0.02500013603169293,
492
+ "gap": 3.987459056656334
493
+ },
494
+ "endBinding": {
495
+ "elementId": "54i6oovfkG2920SGn_k2O",
496
+ "focus": -0.00469777509755129,
497
+ "gap": 13.642839704241226
498
+ },
499
+ "startArrowhead": null,
500
+ "endArrowhead": "triangle"
501
+ },
502
+ {
503
+ "id": "kmgcicFXgpiHKCyfQra4Y",
504
+ "type": "text",
505
+ "x": 370.0953151157924,
506
+ "y": 243.2142987932477,
507
+ "width": 38.3599853515625,
508
+ "height": 35,
509
+ "angle": 0,
510
+ "strokeColor": "#1e1e1e",
511
+ "backgroundColor": "#1e1e1e",
512
+ "fillStyle": "solid",
513
+ "strokeWidth": 2,
514
+ "strokeStyle": "solid",
515
+ "roughness": 1,
516
+ "opacity": 100,
517
+ "groupIds": [],
518
+ "frameId": null,
519
+ "roundness": null,
520
+ "seed": 699968795,
521
+ "version": 50,
522
+ "versionNonce": 693753019,
523
+ "isDeleted": false,
524
+ "boundElements": null,
525
+ "updated": 1703887724247,
526
+ "link": null,
527
+ "locked": false,
528
+ "text": "NO",
529
+ "fontSize": 28,
530
+ "fontFamily": 1,
531
+ "textAlign": "left",
532
+ "verticalAlign": "top",
533
+ "baseline": 24,
534
+ "containerId": null,
535
+ "originalText": "NO",
536
+ "lineHeight": 1.25
537
+ },
538
+ {
539
+ "type": "rectangle",
540
+ "version": 495,
541
+ "versionNonce": 291973237,
542
+ "isDeleted": false,
543
+ "id": "1XZr9zTHcjJNQf-a_E2iF",
544
+ "fillStyle": "solid",
545
+ "strokeWidth": 2,
546
+ "strokeStyle": "solid",
547
+ "roughness": 1,
548
+ "opacity": 100,
549
+ "angle": 0,
550
+ "x": 896.4952828543526,
551
+ "y": 408.85715157645086,
552
+ "strokeColor": "#1e1e1e",
553
+ "backgroundColor": "transparent",
554
+ "width": 364.9142979213168,
555
+ "height": 89.28571428571428,
556
+ "seed": 1542002933,
557
+ "groupIds": [],
558
+ "frameId": null,
559
+ "roundness": {
560
+ "type": 3
561
+ },
562
+ "boundElements": [
563
+ {
564
+ "type": "text",
565
+ "id": "EFy46zVmgHy5oAlyuYG6-"
566
+ },
567
+ {
568
+ "id": "eK7dGPBokHQrzQ3d-RWVD",
569
+ "type": "arrow"
570
+ },
571
+ {
572
+ "id": "vcyuLxhpo1c_UO2AU7lRW",
573
+ "type": "arrow"
574
+ }
575
+ ],
576
+ "updated": 1703887724247,
577
+ "link": null,
578
+ "locked": false
579
+ },
580
+ {
581
+ "type": "text",
582
+ "version": 565,
583
+ "versionNonce": 2052425051,
584
+ "isDeleted": false,
585
+ "id": "EFy46zVmgHy5oAlyuYG6-",
586
+ "fillStyle": "solid",
587
+ "strokeWidth": 2,
588
+ "strokeStyle": "solid",
589
+ "roughness": 1,
590
+ "opacity": 100,
591
+ "angle": 0,
592
+ "x": 982.4364787510461,
593
+ "y": 418.50000871930797,
594
+ "strokeColor": "#1e1e1e",
595
+ "backgroundColor": "transparent",
596
+ "width": 193.0319061279297,
597
+ "height": 70,
598
+ "seed": 430191189,
599
+ "groupIds": [],
600
+ "frameId": null,
601
+ "roundness": null,
602
+ "boundElements": [],
603
+ "updated": 1703887724247,
604
+ "link": null,
605
+ "locked": false,
606
+ "fontSize": 28,
607
+ "fontFamily": 1,
608
+ "text": "Read criterion\ncheck type",
609
+ "textAlign": "center",
610
+ "verticalAlign": "middle",
611
+ "containerId": "1XZr9zTHcjJNQf-a_E2iF",
612
+ "originalText": "Read criterion\ncheck type",
613
+ "lineHeight": 1.25,
614
+ "baseline": 59
615
+ },
616
+ {
617
+ "type": "arrow",
618
+ "version": 836,
619
+ "versionNonce": 599019989,
620
+ "isDeleted": false,
621
+ "id": "4EFTRA2V-X4x4lggLrpre",
622
+ "fillStyle": "solid",
623
+ "strokeWidth": 2,
624
+ "strokeStyle": "solid",
625
+ "roughness": 1,
626
+ "opacity": 100,
627
+ "angle": 0,
628
+ "x": 196.71378037949108,
629
+ "y": 681.365508809969,
630
+ "strokeColor": "#1e1e1e",
631
+ "backgroundColor": "#1e1e1e",
632
+ "width": 419.2513652320621,
633
+ "height": 713.8209205659136,
634
+ "seed": 1503879227,
635
+ "groupIds": [],
636
+ "frameId": null,
637
+ "roundness": null,
638
+ "boundElements": [],
639
+ "updated": 1703887724247,
640
+ "link": null,
641
+ "locked": false,
642
+ "startBinding": {
643
+ "elementId": "54i6oovfkG2920SGn_k2O",
644
+ "focus": -0.004185415916830247,
645
+ "gap": 16.36551752927693
646
+ },
647
+ "endBinding": null,
648
+ "lastCommittedPoint": null,
649
+ "startArrowhead": null,
650
+ "endArrowhead": "triangle",
651
+ "points": [
652
+ [
653
+ 0,
654
+ 0
655
+ ],
656
+ [
657
+ -1.142926897321729,
658
+ 478.85713849748845
659
+ ],
660
+ [
661
+ 418.10843833474036,
662
+ 713.8209205659136
663
+ ]
664
+ ]
665
+ },
666
+ {
667
+ "id": "eK7dGPBokHQrzQ3d-RWVD",
668
+ "type": "arrow",
669
+ "x": 853.5238778250557,
670
+ "y": 277.500013078962,
671
+ "width": 225.1429094587054,
672
+ "height": 113.14285278320312,
673
+ "angle": 0,
674
+ "strokeColor": "#1e1e1e",
675
+ "backgroundColor": "#1e1e1e",
676
+ "fillStyle": "solid",
677
+ "strokeWidth": 2,
678
+ "strokeStyle": "solid",
679
+ "roughness": 1,
680
+ "opacity": 100,
681
+ "groupIds": [],
682
+ "frameId": null,
683
+ "roundness": null,
684
+ "seed": 268914235,
685
+ "version": 211,
686
+ "versionNonce": 751970971,
687
+ "isDeleted": false,
688
+ "boundElements": null,
689
+ "updated": 1703887724247,
690
+ "link": null,
691
+ "locked": false,
692
+ "points": [
693
+ [
694
+ 0,
695
+ 0
696
+ ],
697
+ [
698
+ 222.8570556640625,
699
+ 1.142839704241112
700
+ ],
701
+ [
702
+ 225.1429094587054,
703
+ 113.14285278320312
704
+ ]
705
+ ],
706
+ "lastCommittedPoint": null,
707
+ "startBinding": {
708
+ "elementId": "HrI_QtW3I4jdYrVHxRz0Y",
709
+ "focus": -0.023970950542624454,
710
+ "gap": 1
711
+ },
712
+ "endBinding": {
713
+ "elementId": "1XZr9zTHcjJNQf-a_E2iF",
714
+ "focus": 0.005438412964861747,
715
+ "gap": 18.214285714285694
716
+ },
717
+ "startArrowhead": null,
718
+ "endArrowhead": "triangle"
719
+ },
720
+ {
721
+ "type": "text",
722
+ "version": 94,
723
+ "versionNonce": 2080907067,
724
+ "isDeleted": false,
725
+ "id": "563xDV8nQpuE5j_pXhn7g",
726
+ "fillStyle": "solid",
727
+ "strokeWidth": 2,
728
+ "strokeStyle": "solid",
729
+ "roughness": 1,
730
+ "opacity": 100,
731
+ "angle": 0,
732
+ "x": 883.4866899762833,
733
+ "y": 243.9999520438058,
734
+ "strokeColor": "#1e1e1e",
735
+ "backgroundColor": "#1e1e1e",
736
+ "width": 44.967987060546875,
737
+ "height": 35,
738
+ "seed": 561926069,
739
+ "groupIds": [],
740
+ "frameId": null,
741
+ "roundness": null,
742
+ "boundElements": [],
743
+ "updated": 1703887724247,
744
+ "link": null,
745
+ "locked": false,
746
+ "fontSize": 28,
747
+ "fontFamily": 1,
748
+ "text": "Yes",
749
+ "textAlign": "left",
750
+ "verticalAlign": "top",
751
+ "containerId": null,
752
+ "originalText": "Yes",
753
+ "lineHeight": 1.25,
754
+ "baseline": 24
755
+ },
756
+ {
757
+ "type": "diamond",
758
+ "version": 757,
759
+ "versionNonce": 1064879605,
760
+ "isDeleted": false,
761
+ "id": "mxIhfkxPIFVJod91Ezz86",
762
+ "fillStyle": "solid",
763
+ "strokeWidth": 2,
764
+ "strokeStyle": "solid",
765
+ "roughness": 1,
766
+ "opacity": 100,
767
+ "angle": 0,
768
+ "x": 881.3809334891184,
769
+ "y": 634.6429356166295,
770
+ "strokeColor": "#1e1e1e",
771
+ "backgroundColor": "transparent",
772
+ "width": 415.71428571428544,
773
+ "height": 160,
774
+ "seed": 1479845275,
775
+ "groupIds": [],
776
+ "frameId": null,
777
+ "roundness": {
778
+ "type": 2
779
+ },
780
+ "boundElements": [
781
+ {
782
+ "type": "text",
783
+ "id": "VHsk0tx49Nd7QvqYLT3Rv"
784
+ },
785
+ {
786
+ "id": "vcyuLxhpo1c_UO2AU7lRW",
787
+ "type": "arrow"
788
+ },
789
+ {
790
+ "id": "BdFfjfQuZjRvEL4xLSacl",
791
+ "type": "arrow"
792
+ },
793
+ {
794
+ "id": "fxZGO6r_B1GWLdZujv11w",
795
+ "type": "arrow"
796
+ }
797
+ ],
798
+ "updated": 1703887724247,
799
+ "link": null,
800
+ "locked": false
801
+ },
802
+ {
803
+ "type": "text",
804
+ "version": 723,
805
+ "versionNonce": 634814427,
806
+ "isDeleted": false,
807
+ "id": "VHsk0tx49Nd7QvqYLT3Rv",
808
+ "fillStyle": "solid",
809
+ "strokeWidth": 2,
810
+ "strokeStyle": "solid",
811
+ "roughness": 1,
812
+ "opacity": 100,
813
+ "angle": 0,
814
+ "x": 1014.3675264630999,
815
+ "y": 679.6429356166295,
816
+ "strokeColor": "#1e1e1e",
817
+ "backgroundColor": "transparent",
818
+ "width": 149.8839569091797,
819
+ "height": 70,
820
+ "seed": 727923259,
821
+ "groupIds": [],
822
+ "frameId": null,
823
+ "roundness": null,
824
+ "boundElements": [],
825
+ "updated": 1703887724247,
826
+ "link": null,
827
+ "locked": false,
828
+ "fontSize": 28,
829
+ "fontFamily": 1,
830
+ "text": "Is manual \ncheck ?",
831
+ "textAlign": "center",
832
+ "verticalAlign": "middle",
833
+ "containerId": "mxIhfkxPIFVJod91Ezz86",
834
+ "originalText": "Is manual check ?",
835
+ "lineHeight": 1.25,
836
+ "baseline": 59
837
+ },
838
+ {
839
+ "type": "arrow",
840
+ "version": 264,
841
+ "versionNonce": 683032405,
842
+ "isDeleted": false,
843
+ "id": "vcyuLxhpo1c_UO2AU7lRW",
844
+ "fillStyle": "solid",
845
+ "strokeWidth": 2,
846
+ "strokeStyle": "solid",
847
+ "roughness": 1,
848
+ "opacity": 100,
849
+ "angle": 0,
850
+ "x": 1083.6350025884394,
851
+ "y": 506.23632118459875,
852
+ "strokeColor": "#1e1e1e",
853
+ "backgroundColor": "transparent",
854
+ "width": 2.287354465833687,
855
+ "height": 123.13806610882159,
856
+ "seed": 1070039541,
857
+ "groupIds": [],
858
+ "frameId": null,
859
+ "roundness": {
860
+ "type": 2
861
+ },
862
+ "boundElements": [],
863
+ "updated": 1703887724247,
864
+ "link": null,
865
+ "locked": false,
866
+ "startBinding": {
867
+ "elementId": "1XZr9zTHcjJNQf-a_E2iF",
868
+ "focus": -0.020203166770617308,
869
+ "gap": 8.093455322433641
870
+ },
871
+ "endBinding": {
872
+ "elementId": "mxIhfkxPIFVJod91Ezz86",
873
+ "focus": -0.008331737127908872,
874
+ "gap": 6.1079272179626685
875
+ },
876
+ "lastCommittedPoint": null,
877
+ "startArrowhead": null,
878
+ "endArrowhead": "triangle",
879
+ "points": [
880
+ [
881
+ 0,
882
+ 0
883
+ ],
884
+ [
885
+ 2.287354465833687,
886
+ 123.13806610882159
887
+ ]
888
+ ]
889
+ },
890
+ {
891
+ "type": "arrow",
892
+ "version": 446,
893
+ "versionNonce": 340774011,
894
+ "isDeleted": false,
895
+ "id": "BdFfjfQuZjRvEL4xLSacl",
896
+ "fillStyle": "solid",
897
+ "strokeWidth": 2,
898
+ "strokeStyle": "solid",
899
+ "roughness": 1,
900
+ "opacity": 100,
901
+ "angle": 0,
902
+ "x": 875.2852961439999,
903
+ "y": 711.7857382638114,
904
+ "strokeColor": "#1e1e1e",
905
+ "backgroundColor": "#1e1e1e",
906
+ "width": 237.7143205915179,
907
+ "height": 115.42859758649558,
908
+ "seed": 1757570197,
909
+ "groupIds": [],
910
+ "frameId": null,
911
+ "roundness": null,
912
+ "boundElements": [],
913
+ "updated": 1703887724247,
914
+ "link": null,
915
+ "locked": false,
916
+ "startBinding": {
917
+ "elementId": "mxIhfkxPIFVJod91Ezz86",
918
+ "focus": 0.03571521215210324,
919
+ "gap": 4.856032582806961
920
+ },
921
+ "endBinding": {
922
+ "elementId": "Y56tEkf21t12ItSbikIUp",
923
+ "focus": 0.006552589036690636,
924
+ "gap": 13.928538731166043
925
+ },
926
+ "lastCommittedPoint": null,
927
+ "startArrowhead": null,
928
+ "endArrowhead": "triangle",
929
+ "points": [
930
+ [
931
+ 0,
932
+ 0
933
+ ],
934
+ [
935
+ -237.7143205915179,
936
+ 0.000021798270040562784
937
+ ],
938
+ [
939
+ -236.57143729073653,
940
+ 115.42859758649558
941
+ ]
942
+ ]
943
+ },
944
+ {
945
+ "type": "text",
946
+ "version": 128,
947
+ "versionNonce": 1925024949,
948
+ "isDeleted": false,
949
+ "id": "n7qu7ofDD93rwaDiCPRN0",
950
+ "fillStyle": "solid",
951
+ "strokeWidth": 2,
952
+ "strokeStyle": "solid",
953
+ "roughness": 1,
954
+ "opacity": 100,
955
+ "angle": 0,
956
+ "x": 812.4281968833973,
957
+ "y": 678.6428854806082,
958
+ "strokeColor": "#1e1e1e",
959
+ "backgroundColor": "#1e1e1e",
960
+ "width": 38.3599853515625,
961
+ "height": 35,
962
+ "seed": 1083378165,
963
+ "groupIds": [],
964
+ "frameId": null,
965
+ "roundness": null,
966
+ "boundElements": [],
967
+ "updated": 1703887724247,
968
+ "link": null,
969
+ "locked": false,
970
+ "fontSize": 28,
971
+ "fontFamily": 1,
972
+ "text": "NO",
973
+ "textAlign": "left",
974
+ "verticalAlign": "top",
975
+ "containerId": null,
976
+ "originalText": "NO",
977
+ "lineHeight": 1.25,
978
+ "baseline": 24
979
+ },
980
+ {
981
+ "type": "arrow",
982
+ "version": 578,
983
+ "versionNonce": 1261864219,
984
+ "isDeleted": false,
985
+ "id": "fxZGO6r_B1GWLdZujv11w",
986
+ "fillStyle": "solid",
987
+ "strokeWidth": 2,
988
+ "strokeStyle": "solid",
989
+ "roughness": 1,
990
+ "opacity": 100,
991
+ "angle": 0,
992
+ "x": 1292.8566549609639,
993
+ "y": 712.9285997663225,
994
+ "strokeColor": "#1e1e1e",
995
+ "backgroundColor": "#1e1e1e",
996
+ "width": 121.14301409040195,
997
+ "height": 113.14285278320324,
998
+ "seed": 367526741,
999
+ "groupIds": [],
1000
+ "frameId": null,
1001
+ "roundness": null,
1002
+ "boundElements": [],
1003
+ "updated": 1703887724247,
1004
+ "link": null,
1005
+ "locked": false,
1006
+ "startBinding": {
1007
+ "elementId": "mxIhfkxPIFVJod91Ezz86",
1008
+ "focus": -0.045902207956660404,
1009
+ "gap": 1
1010
+ },
1011
+ "endBinding": {
1012
+ "elementId": "72t1s_V15x-C8B6YKXjiT",
1013
+ "focus": 0.021047141234010674,
1014
+ "gap": 9.14877091903162
1015
+ },
1016
+ "lastCommittedPoint": null,
1017
+ "startArrowhead": null,
1018
+ "endArrowhead": "triangle",
1019
+ "points": [
1020
+ [
1021
+ 0,
1022
+ 0
1023
+ ],
1024
+ [
1025
+ 118.85716029575906,
1026
+ 1.142839704241112
1027
+ ],
1028
+ [
1029
+ 121.14301409040195,
1030
+ 113.14285278320324
1031
+ ]
1032
+ ]
1033
+ },
1034
+ {
1035
+ "type": "text",
1036
+ "version": 172,
1037
+ "versionNonce": 221523477,
1038
+ "isDeleted": false,
1039
+ "id": "vO1uk6USj6uBYYqihuIsc",
1040
+ "fillStyle": "solid",
1041
+ "strokeWidth": 2,
1042
+ "strokeStyle": "solid",
1043
+ "roughness": 1,
1044
+ "opacity": 100,
1045
+ "angle": 0,
1046
+ "x": 1325.8195717438882,
1047
+ "y": 679.4285387311662,
1048
+ "strokeColor": "#1e1e1e",
1049
+ "backgroundColor": "#1e1e1e",
1050
+ "width": 44.967987060546875,
1051
+ "height": 35,
1052
+ "seed": 1561776309,
1053
+ "groupIds": [],
1054
+ "frameId": null,
1055
+ "roundness": null,
1056
+ "boundElements": [],
1057
+ "updated": 1703887724247,
1058
+ "link": null,
1059
+ "locked": false,
1060
+ "fontSize": 28,
1061
+ "fontFamily": 1,
1062
+ "text": "Yes",
1063
+ "textAlign": "left",
1064
+ "verticalAlign": "top",
1065
+ "containerId": null,
1066
+ "originalText": "Yes",
1067
+ "lineHeight": 1.25,
1068
+ "baseline": 24
1069
+ },
1070
+ {
1071
+ "type": "rectangle",
1072
+ "version": 365,
1073
+ "versionNonce": 838674875,
1074
+ "isDeleted": false,
1075
+ "id": "Y56tEkf21t12ItSbikIUp",
1076
+ "fillStyle": "solid",
1077
+ "strokeWidth": 2,
1078
+ "strokeStyle": "solid",
1079
+ "roughness": 1,
1080
+ "opacity": 100,
1081
+ "angle": 0,
1082
+ "x": 455.63817487444175,
1083
+ "y": 841.1428745814729,
1084
+ "strokeColor": "#1e1e1e",
1085
+ "backgroundColor": "transparent",
1086
+ "width": 364.9142979213168,
1087
+ "height": 89.28571428571428,
1088
+ "seed": 943825013,
1089
+ "groupIds": [],
1090
+ "frameId": null,
1091
+ "roundness": {
1092
+ "type": 3
1093
+ },
1094
+ "boundElements": [
1095
+ {
1096
+ "type": "text",
1097
+ "id": "7Onbg1p89lHszP8uwqo2H"
1098
+ },
1099
+ {
1100
+ "id": "BdFfjfQuZjRvEL4xLSacl",
1101
+ "type": "arrow"
1102
+ },
1103
+ {
1104
+ "id": "dGCQAjN1qKNGEEMOVJ6pI",
1105
+ "type": "arrow"
1106
+ }
1107
+ ],
1108
+ "updated": 1703887724247,
1109
+ "link": null,
1110
+ "locked": false
1111
+ },
1112
+ {
1113
+ "type": "text",
1114
+ "version": 418,
1115
+ "versionNonce": 1460642677,
1116
+ "isDeleted": false,
1117
+ "id": "7Onbg1p89lHszP8uwqo2H",
1118
+ "fillStyle": "solid",
1119
+ "strokeWidth": 2,
1120
+ "strokeStyle": "solid",
1121
+ "roughness": 1,
1122
+ "opacity": 100,
1123
+ "angle": 0,
1124
+ "x": 553.6753561837329,
1125
+ "y": 850.78573172433,
1126
+ "strokeColor": "#1e1e1e",
1127
+ "backgroundColor": "transparent",
1128
+ "width": 168.83993530273438,
1129
+ "height": 70,
1130
+ "seed": 2021640661,
1131
+ "groupIds": [],
1132
+ "frameId": null,
1133
+ "roundness": null,
1134
+ "boundElements": [],
1135
+ "updated": 1703887724247,
1136
+ "link": null,
1137
+ "locked": false,
1138
+ "fontSize": 28,
1139
+ "fontFamily": 1,
1140
+ "text": "Mark nodes \nas error",
1141
+ "textAlign": "center",
1142
+ "verticalAlign": "middle",
1143
+ "containerId": "Y56tEkf21t12ItSbikIUp",
1144
+ "originalText": "Mark nodes \nas error",
1145
+ "lineHeight": 1.25,
1146
+ "baseline": 59
1147
+ },
1148
+ {
1149
+ "type": "rectangle",
1150
+ "version": 450,
1151
+ "versionNonce": 459552507,
1152
+ "isDeleted": false,
1153
+ "id": "gbA6-Fo3nwjWxwu9qwZtC",
1154
+ "fillStyle": "solid",
1155
+ "strokeWidth": 2,
1156
+ "strokeStyle": "solid",
1157
+ "roughness": 1,
1158
+ "opacity": 100,
1159
+ "angle": 0,
1160
+ "x": 462.78085763113825,
1161
+ "y": 1077.4284711565288,
1162
+ "strokeColor": "#1e1e1e",
1163
+ "backgroundColor": "transparent",
1164
+ "width": 364.9142979213168,
1165
+ "height": 89.28571428571428,
1166
+ "seed": 653222139,
1167
+ "groupIds": [],
1168
+ "frameId": null,
1169
+ "roundness": {
1170
+ "type": 3
1171
+ },
1172
+ "boundElements": [
1173
+ {
1174
+ "type": "text",
1175
+ "id": "oetmxzMigYnPwUlvkMzxz"
1176
+ },
1177
+ {
1178
+ "id": "dGCQAjN1qKNGEEMOVJ6pI",
1179
+ "type": "arrow"
1180
+ },
1181
+ {
1182
+ "id": "BBm6dW3uej8FwulHOiSBL",
1183
+ "type": "arrow"
1184
+ }
1185
+ ],
1186
+ "updated": 1703887724247,
1187
+ "link": null,
1188
+ "locked": false
1189
+ },
1190
+ {
1191
+ "type": "text",
1192
+ "version": 487,
1193
+ "versionNonce": 1700465205,
1194
+ "isDeleted": false,
1195
+ "id": "oetmxzMigYnPwUlvkMzxz",
1196
+ "fillStyle": "solid",
1197
+ "strokeWidth": 2,
1198
+ "strokeStyle": "solid",
1199
+ "roughness": 1,
1200
+ "opacity": 100,
1201
+ "angle": 0,
1202
+ "x": 543.4440536499021,
1203
+ "y": 1087.0713282993859,
1204
+ "strokeColor": "#1e1e1e",
1205
+ "backgroundColor": "transparent",
1206
+ "width": 203.58790588378906,
1207
+ "height": 70,
1208
+ "seed": 2112850331,
1209
+ "groupIds": [],
1210
+ "frameId": null,
1211
+ "roundness": null,
1212
+ "boundElements": [],
1213
+ "updated": 1703887724247,
1214
+ "link": null,
1215
+ "locked": false,
1216
+ "fontSize": 28,
1217
+ "fontFamily": 1,
1218
+ "text": "Return Status\n\"error\"",
1219
+ "textAlign": "center",
1220
+ "verticalAlign": "middle",
1221
+ "containerId": "gbA6-Fo3nwjWxwu9qwZtC",
1222
+ "originalText": "Return Status\n\"error\"",
1223
+ "lineHeight": 1.25,
1224
+ "baseline": 59
1225
+ },
1226
+ {
1227
+ "type": "arrow",
1228
+ "version": 324,
1229
+ "versionNonce": 2035916699,
1230
+ "isDeleted": false,
1231
+ "id": "dGCQAjN1qKNGEEMOVJ6pI",
1232
+ "fillStyle": "solid",
1233
+ "strokeWidth": 2,
1234
+ "strokeStyle": "solid",
1235
+ "roughness": 1,
1236
+ "opacity": 100,
1237
+ "angle": 0,
1238
+ "x": 643.540426860194,
1239
+ "y": 939.0109881050997,
1240
+ "strokeColor": "#1e1e1e",
1241
+ "backgroundColor": "transparent",
1242
+ "width": 1.5180343097924833,
1243
+ "height": 123.13806610882159,
1244
+ "seed": 1931536981,
1245
+ "groupIds": [],
1246
+ "frameId": null,
1247
+ "roundness": {
1248
+ "type": 2
1249
+ },
1250
+ "boundElements": [],
1251
+ "updated": 1703887724247,
1252
+ "link": null,
1253
+ "locked": false,
1254
+ "startBinding": {
1255
+ "elementId": "Y56tEkf21t12ItSbikIUp",
1256
+ "focus": -0.024313945339330942,
1257
+ "gap": 8.582399237912398
1258
+ },
1259
+ "endBinding": {
1260
+ "elementId": "gbA6-Fo3nwjWxwu9qwZtC",
1261
+ "focus": 0.0030554520459426695,
1262
+ "gap": 15.27941694260744
1263
+ },
1264
+ "lastCommittedPoint": null,
1265
+ "startArrowhead": null,
1266
+ "endArrowhead": "triangle",
1267
+ "points": [
1268
+ [
1269
+ 0,
1270
+ 0
1271
+ ],
1272
+ [
1273
+ 1.5180343097924833,
1274
+ 123.13806610882159
1275
+ ]
1276
+ ]
1277
+ },
1278
+ {
1279
+ "type": "arrow",
1280
+ "version": 419,
1281
+ "versionNonce": 440794005,
1282
+ "isDeleted": false,
1283
+ "id": "BBm6dW3uej8FwulHOiSBL",
1284
+ "fillStyle": "solid",
1285
+ "strokeWidth": 2,
1286
+ "strokeStyle": "solid",
1287
+ "roughness": 1,
1288
+ "opacity": 100,
1289
+ "angle": 0,
1290
+ "x": 647.0354218696658,
1291
+ "y": 1176.4266334749138,
1292
+ "strokeColor": "#1e1e1e",
1293
+ "backgroundColor": "transparent",
1294
+ "width": 3.8038009113549833,
1295
+ "height": 204.28090581306287,
1296
+ "seed": 1751871989,
1297
+ "groupIds": [],
1298
+ "frameId": null,
1299
+ "roundness": {
1300
+ "type": 2
1301
+ },
1302
+ "boundElements": [],
1303
+ "updated": 1703887724247,
1304
+ "link": null,
1305
+ "locked": false,
1306
+ "startBinding": {
1307
+ "elementId": "gbA6-Fo3nwjWxwu9qwZtC",
1308
+ "focus": -0.00428447926614702,
1309
+ "gap": 9.712448032670864
1310
+ },
1311
+ "endBinding": {
1312
+ "elementId": "d9zfNuFllcgUEg62RwJw1",
1313
+ "focus": 0.06814473841417511,
1314
+ "gap": 12.088595176267653
1315
+ },
1316
+ "lastCommittedPoint": null,
1317
+ "startArrowhead": null,
1318
+ "endArrowhead": "triangle",
1319
+ "points": [
1320
+ [
1321
+ 0,
1322
+ 0
1323
+ ],
1324
+ [
1325
+ 3.8038009113549833,
1326
+ 204.28090581306287
1327
+ ]
1328
+ ]
1329
+ },
1330
+ {
1331
+ "type": "rectangle",
1332
+ "version": 562,
1333
+ "versionNonce": 299430971,
1334
+ "isDeleted": false,
1335
+ "id": "72t1s_V15x-C8B6YKXjiT",
1336
+ "fillStyle": "solid",
1337
+ "strokeWidth": 2,
1338
+ "strokeStyle": "solid",
1339
+ "roughness": 1,
1340
+ "opacity": 100,
1341
+ "angle": 0,
1342
+ "x": 1228.7809971400668,
1343
+ "y": 835.2202234685573,
1344
+ "strokeColor": "#1e1e1e",
1345
+ "backgroundColor": "transparent",
1346
+ "width": 364.9142979213168,
1347
+ "height": 89.28571428571428,
1348
+ "seed": 1241980955,
1349
+ "groupIds": [],
1350
+ "frameId": null,
1351
+ "roundness": {
1352
+ "type": 3
1353
+ },
1354
+ "boundElements": [
1355
+ {
1356
+ "type": "text",
1357
+ "id": "CdnlMuR9YUwvOh38onLKE"
1358
+ },
1359
+ {
1360
+ "id": "s7yNo4ctRbx4edil-LUzL",
1361
+ "type": "arrow"
1362
+ },
1363
+ {
1364
+ "id": "fxZGO6r_B1GWLdZujv11w",
1365
+ "type": "arrow"
1366
+ }
1367
+ ],
1368
+ "updated": 1703887724247,
1369
+ "link": null,
1370
+ "locked": false
1371
+ },
1372
+ {
1373
+ "type": "text",
1374
+ "version": 633,
1375
+ "versionNonce": 1267450101,
1376
+ "isDeleted": false,
1377
+ "id": "CdnlMuR9YUwvOh38onLKE",
1378
+ "fillStyle": "solid",
1379
+ "strokeWidth": 2,
1380
+ "strokeStyle": "solid",
1381
+ "roughness": 1,
1382
+ "opacity": 100,
1383
+ "angle": 0,
1384
+ "x": 1290.166193280901,
1385
+ "y": 844.8630806114144,
1386
+ "strokeColor": "#1e1e1e",
1387
+ "backgroundColor": "transparent",
1388
+ "width": 242.14390563964844,
1389
+ "height": 70,
1390
+ "seed": 1644324027,
1391
+ "groupIds": [],
1392
+ "frameId": null,
1393
+ "roundness": null,
1394
+ "boundElements": [],
1395
+ "updated": 1703887724247,
1396
+ "link": null,
1397
+ "locked": false,
1398
+ "fontSize": 28,
1399
+ "fontFamily": 1,
1400
+ "text": "Mark nodes \nto check manually",
1401
+ "textAlign": "center",
1402
+ "verticalAlign": "middle",
1403
+ "containerId": "72t1s_V15x-C8B6YKXjiT",
1404
+ "originalText": "Mark nodes \nto check manually",
1405
+ "lineHeight": 1.25,
1406
+ "baseline": 59
1407
+ },
1408
+ {
1409
+ "type": "rectangle",
1410
+ "version": 646,
1411
+ "versionNonce": 1422177499,
1412
+ "isDeleted": false,
1413
+ "id": "o81lLeSn_TG6HiE2So7ss",
1414
+ "fillStyle": "solid",
1415
+ "strokeWidth": 2,
1416
+ "strokeStyle": "solid",
1417
+ "roughness": 1,
1418
+ "opacity": 100,
1419
+ "angle": 0,
1420
+ "x": 1235.9236798967634,
1421
+ "y": 1071.5058200436133,
1422
+ "strokeColor": "#1e1e1e",
1423
+ "backgroundColor": "transparent",
1424
+ "width": 364.9142979213168,
1425
+ "height": 89.28571428571428,
1426
+ "seed": 795612507,
1427
+ "groupIds": [],
1428
+ "frameId": null,
1429
+ "roundness": {
1430
+ "type": 3
1431
+ },
1432
+ "boundElements": [
1433
+ {
1434
+ "type": "text",
1435
+ "id": "ZCr78YAXNiA4fZ0zUQf7d"
1436
+ },
1437
+ {
1438
+ "id": "s7yNo4ctRbx4edil-LUzL",
1439
+ "type": "arrow"
1440
+ },
1441
+ {
1442
+ "id": "vyMldXBM-PUfSCqrO-t_i",
1443
+ "type": "arrow"
1444
+ }
1445
+ ],
1446
+ "updated": 1703887724247,
1447
+ "link": null,
1448
+ "locked": false
1449
+ },
1450
+ {
1451
+ "type": "text",
1452
+ "version": 690,
1453
+ "versionNonce": 1320278613,
1454
+ "isDeleted": false,
1455
+ "id": "ZCr78YAXNiA4fZ0zUQf7d",
1456
+ "fillStyle": "solid",
1457
+ "strokeWidth": 2,
1458
+ "strokeStyle": "solid",
1459
+ "roughness": 1,
1460
+ "opacity": 100,
1461
+ "angle": 0,
1462
+ "x": 1316.5868759155273,
1463
+ "y": 1081.1486771864704,
1464
+ "strokeColor": "#1e1e1e",
1465
+ "backgroundColor": "transparent",
1466
+ "width": 203.58790588378906,
1467
+ "height": 70,
1468
+ "seed": 1368830459,
1469
+ "groupIds": [],
1470
+ "frameId": null,
1471
+ "roundness": null,
1472
+ "boundElements": [],
1473
+ "updated": 1703887724247,
1474
+ "link": null,
1475
+ "locked": false,
1476
+ "fontSize": 28,
1477
+ "fontFamily": 1,
1478
+ "text": "Return Status\n\"Manual\"",
1479
+ "textAlign": "center",
1480
+ "verticalAlign": "middle",
1481
+ "containerId": "o81lLeSn_TG6HiE2So7ss",
1482
+ "originalText": "Return Status\n\"Manual\"",
1483
+ "lineHeight": 1.25,
1484
+ "baseline": 59
1485
+ },
1486
+ {
1487
+ "type": "arrow",
1488
+ "version": 946,
1489
+ "versionNonce": 296706427,
1490
+ "isDeleted": false,
1491
+ "id": "s7yNo4ctRbx4edil-LUzL",
1492
+ "fillStyle": "solid",
1493
+ "strokeWidth": 2,
1494
+ "strokeStyle": "solid",
1495
+ "roughness": 1,
1496
+ "opacity": 100,
1497
+ "angle": 0,
1498
+ "x": 1416.6832491258187,
1499
+ "y": 933.0883369921839,
1500
+ "strokeColor": "#1e1e1e",
1501
+ "backgroundColor": "transparent",
1502
+ "width": 1.5180343097924833,
1503
+ "height": 123.13806610882148,
1504
+ "seed": 1501870747,
1505
+ "groupIds": [],
1506
+ "frameId": null,
1507
+ "roundness": {
1508
+ "type": 2
1509
+ },
1510
+ "boundElements": [],
1511
+ "updated": 1703887724247,
1512
+ "link": null,
1513
+ "locked": false,
1514
+ "startBinding": {
1515
+ "elementId": "72t1s_V15x-C8B6YKXjiT",
1516
+ "focus": -0.02616803739460128,
1517
+ "gap": 8.582399237912284
1518
+ },
1519
+ "endBinding": {
1520
+ "elementId": "o81lLeSn_TG6HiE2So7ss",
1521
+ "focus": 0.0030554520459393692,
1522
+ "gap": 15.279416942607895
1523
+ },
1524
+ "lastCommittedPoint": null,
1525
+ "startArrowhead": null,
1526
+ "endArrowhead": "triangle",
1527
+ "points": [
1528
+ [
1529
+ 0,
1530
+ 0
1531
+ ],
1532
+ [
1533
+ 1.5180343097924833,
1534
+ 123.13806610882148
1535
+ ]
1536
+ ]
1537
+ },
1538
+ {
1539
+ "type": "arrow",
1540
+ "version": 1167,
1541
+ "versionNonce": 747489205,
1542
+ "isDeleted": false,
1543
+ "id": "vyMldXBM-PUfSCqrO-t_i",
1544
+ "fillStyle": "solid",
1545
+ "strokeWidth": 2,
1546
+ "strokeStyle": "solid",
1547
+ "roughness": 1,
1548
+ "opacity": 100,
1549
+ "angle": 0,
1550
+ "x": 1420.178244135291,
1551
+ "y": 1170.5039823619982,
1552
+ "strokeColor": "#1e1e1e",
1553
+ "backgroundColor": "transparent",
1554
+ "width": 738.541850217026,
1555
+ "height": 227.13796147712537,
1556
+ "seed": 334016315,
1557
+ "groupIds": [],
1558
+ "frameId": null,
1559
+ "roundness": null,
1560
+ "boundElements": [],
1561
+ "updated": 1703887724247,
1562
+ "link": null,
1563
+ "locked": false,
1564
+ "startBinding": {
1565
+ "elementId": "o81lLeSn_TG6HiE2So7ss",
1566
+ "focus": -0.003716835257041584,
1567
+ "gap": 9.712448032670636
1568
+ },
1569
+ "endBinding": {
1570
+ "elementId": "d9zfNuFllcgUEg62RwJw1",
1571
+ "focus": 0.09920113412618585,
1572
+ "gap": 15.830982812273302
1573
+ },
1574
+ "lastCommittedPoint": null,
1575
+ "startArrowhead": null,
1576
+ "endArrowhead": "triangle",
1577
+ "points": [
1578
+ [
1579
+ 0,
1580
+ 0
1581
+ ],
1582
+ [
1583
+ 1.7741876797201712,
1584
+ 86.42458906657293
1585
+ ],
1586
+ [
1587
+ -479.3686520245209,
1588
+ 81.85314305652832
1589
+ ],
1590
+ [
1591
+ -736.7676625373058,
1592
+ 227.13796147712537
1593
+ ]
1594
+ ]
1595
+ },
1596
+ {
1597
+ "type": "arrow",
1598
+ "version": 370,
1599
+ "versionNonce": 1549494133,
1600
+ "isDeleted": false,
1601
+ "id": "OeXV90C_Akv10964alz4D",
1602
+ "fillStyle": "solid",
1603
+ "strokeWidth": 2,
1604
+ "strokeStyle": "solid",
1605
+ "roughness": 1,
1606
+ "opacity": 100,
1607
+ "angle": 0,
1608
+ "x": 644.2699910402005,
1609
+ "y": -268.11290841609554,
1610
+ "strokeColor": "#1e1e1e",
1611
+ "backgroundColor": "transparent",
1612
+ "width": 1.525374136592859,
1613
+ "height": 156.2554628722143,
1614
+ "seed": 740692763,
1615
+ "groupIds": [],
1616
+ "frameId": null,
1617
+ "roundness": {
1618
+ "type": 2
1619
+ },
1620
+ "boundElements": [],
1621
+ "updated": 1703888016257,
1622
+ "link": null,
1623
+ "locked": false,
1624
+ "startBinding": {
1625
+ "elementId": "rZOByIRhln6m3Hc3m6jV_",
1626
+ "focus": -0.13889818419732217,
1627
+ "gap": 13.812806546883916
1628
+ },
1629
+ "endBinding": {
1630
+ "elementId": "x_G3nTZ6bbf7GXEctcV5q",
1631
+ "focus": -0.0016654614333340883,
1632
+ "gap": 18.2860169724527
1633
+ },
1634
+ "lastCommittedPoint": null,
1635
+ "startArrowhead": null,
1636
+ "endArrowhead": "triangle",
1637
+ "points": [
1638
+ [
1639
+ 0,
1640
+ 0
1641
+ ],
1642
+ [
1643
+ 1.525374136592859,
1644
+ 156.2554628722143
1645
+ ]
1646
+ ]
1647
+ }
1648
+ ],
1649
+ "appState": {
1650
+ "gridSize": null,
1651
+ "viewBackgroundColor": "#ffffff"
1652
+ },
1653
+ "files": {}
1654
+ }