-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path26. Process documentation.bpmn
1829 lines (1829 loc) · 96.8 KB
/
26. Process documentation.bpmn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:modeler="http://camunda.org/schema/modeler/1.0" id="Definitions_1ktk9gw" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="5.12.1" modeler:executionPlatform="Camunda Cloud" modeler:executionPlatformVersion="8.2.0">
<bpmn:category id="Category_1kjb2u7">
<bpmn:categoryValue id="CategoryValue_0w5qqnx" value="Strategic process model" />
</bpmn:category>
<bpmn:category id="Category_14ctxdq">
<bpmn:categoryValue id="CategoryValue_03hr29q" value="Operational process model " />
</bpmn:category>
<bpmn:category id="Category_066wrpt">
<bpmn:categoryValue id="CategoryValue_0184ez4" value="Human process flow " />
</bpmn:category>
<bpmn:category id="Category_1i6gc07">
<bpmn:categoryValue id="CategoryValue_0im1imi" value="Technical process flow" />
</bpmn:category>
<bpmn:collaboration id="Collaboration_1oyd3t3">
<bpmn:participant id="Participant_1dkdmln" processRef="Process_1urcutl" />
<bpmn:participant id="Participant_0kepukt" name="Software company" processRef="Process_08a74h6" />
<bpmn:participant id="Participant_1p59bul" name="Employee" processRef="Process_0obvs6c" />
<bpmn:participant id="Participant_1jzoonm" name="Back Office" processRef="Process_14m8fzi" />
<bpmn:participant id="Participant_1xt838u" processRef="Process_1ozwnc6" />
<bpmn:participant id="Participant_0gs3wvj" processRef="Process_1re0d1w" />
<bpmn:participant id="Participant_1awrkj9" name="Employeee report demand" processRef="Process_1n8313m" />
<bpmn:participant id="Participant_1ak5eo9" name="Boss: approve order request" processRef="Process_08aer2c" />
<bpmn:participant id="Participant_1esx541" name="Purchaser: process order request" processRef="Process_11mbnwc" />
<bpmn:participant id="Participant_0o19vjs" name="Purchaser: order" processRef="Process_0q91y4n" />
<bpmn:messageFlow id="Flow_05102xd" sourceRef="Activity_1pj093k" targetRef="Event_0jiha24" />
<bpmn:messageFlow id="Flow_0e97l9c" sourceRef="Activity_1na7bpl" targetRef="Event_1hm454r" />
<bpmn:messageFlow id="Flow_15udvpk" sourceRef="Activity_17gifam" targetRef="Event_1q5jcrm" />
<bpmn:messageFlow id="Flow_1qzff6h" sourceRef="Activity_05tcckf" targetRef="Event_1q5jcrm" />
<bpmn:messageFlow id="Flow_1szjv7f" sourceRef="Participant_1p59bul" targetRef="Activity_0sp7rr1" />
<bpmn:messageFlow id="Flow_1f8sg6b" sourceRef="Activity_0sp7rr1" targetRef="Participant_1p59bul" />
<bpmn:messageFlow id="Flow_0mdhm84" sourceRef="Activity_0vippvl" targetRef="Event_0pyw8nj" />
<bpmn:messageFlow id="Flow_0kq7ksr" sourceRef="Activity_1eu96cq" targetRef="Activity_0u2e6ms" />
<bpmn:messageFlow id="Flow_1g3yutw" sourceRef="Activity_0u2e6ms" targetRef="Event_08kf4tf" />
<bpmn:group id="Group_164hmaz" />
<bpmn:group id="Group_17crxiz" categoryValueRef="CategoryValue_0w5qqnx" />
<bpmn:group id="Group_0mhr2ed" categoryValueRef="CategoryValue_03hr29q" />
<bpmn:group id="Group_02xx7gc" categoryValueRef="CategoryValue_0184ez4" />
<bpmn:group id="Group_19b9z15" categoryValueRef="CategoryValue_0im1imi" />
<bpmn:textAnnotation id="TextAnnotation_19ez0nm">
<bpmn:text>"Sick leave process" at strategic level</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_19a35cf" sourceRef="Participant_0kepukt" targetRef="TextAnnotation_19ez0nm" />
<bpmn:association id="Association_0a3kbn0" sourceRef="Group_164hmaz" targetRef="TextAnnotation_1hrg7vr" />
<bpmn:association id="Association_0m1ywf8" sourceRef="Group_164hmaz" targetRef="TextAnnotation_18yx6pn" />
<bpmn:association id="Association_1wkqopp" sourceRef="Group_17crxiz" targetRef="TextAnnotation_10nqilh" />
<bpmn:association id="Association_1w476k6" sourceRef="Group_17crxiz" targetRef="TextAnnotation_0yv86iu" />
<bpmn:association id="Association_08jk6ph" sourceRef="Group_17crxiz" targetRef="TextAnnotation_0zdbzww" />
<bpmn:association id="Association_1hom2l8" sourceRef="Group_17crxiz" targetRef="TextAnnotation_1t8khso" />
<bpmn:association id="Association_17wum7f" sourceRef="Group_0mhr2ed" targetRef="TextAnnotation_1139ndf" />
<bpmn:association id="Association_03kocjy" sourceRef="Group_02xx7gc" targetRef="TextAnnotation_07j0u1p" />
<bpmn:association id="Association_0m1czrb" sourceRef="Group_02xx7gc" targetRef="TextAnnotation_1lfbrwi" />
<bpmn:association id="Association_1a85289" sourceRef="Group_19b9z15" targetRef="TextAnnotation_0kj9d5r" />
<bpmn:textAnnotation id="TextAnnotation_0o4f1l9">
<bpmn:text>bird's eye view of the process for the "sick leave" in the company</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_16e7e0t" sourceRef="Participant_0kepukt" targetRef="TextAnnotation_0o4f1l9" />
<bpmn:textAnnotation id="TextAnnotation_1e5si03">
<bpmn:text>"Sick leave process" at operational level</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_1jhasvn" sourceRef="Participant_1p59bul" targetRef="TextAnnotation_1e5si03" />
<bpmn:textAnnotation id="TextAnnotation_0j2q14n">
<bpmn:text>this allows for escalation, after 4 days we dont receive the doctor note we bother employee</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0sla3td" sourceRef="Event_0rjlok9" targetRef="TextAnnotation_0j2q14n" />
<bpmn:textAnnotation id="TextAnnotation_1lq7dvm">
<bpmn:text>Procurement process at strategic level</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_1otkl5x" sourceRef="Participant_0gs3wvj" targetRef="TextAnnotation_1lq7dvm" />
<bpmn:textAnnotation id="TextAnnotation_1asvjvh">
<bpmn:text>average idle time 15 days idle time range between 1-30 days</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_13bcxe3" sourceRef="Activity_0h5gt5o" targetRef="TextAnnotation_1asvjvh" />
</bpmn:collaboration>
<bpmn:process id="Process_1urcutl" isExecutable="true">
<bpmn:startEvent id="Event_06p90j4">
<bpmn:outgoing>Flow_05yh3hq</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:exclusiveGateway id="Gateway_0cp7717" name="Weak points">
<bpmn:incoming>Flow_0nn0rnc</bpmn:incoming>
<bpmn:outgoing>Flow_1kvbyaz</bpmn:outgoing>
<bpmn:outgoing>Flow_15k5g7g</bpmn:outgoing>
</bpmn:exclusiveGateway>
<bpmn:dataObjectReference id="DataObjectReference_1rpchvw" name="Target state process model" dataObjectRef="DataObject_1nipckj" />
<bpmn:dataObject id="DataObject_1nipckj" />
<bpmn:dataObjectReference id="DataObjectReference_1t3xe0n" dataObjectRef="DataObject_0ke6l1z" />
<bpmn:dataObject id="DataObject_0ke6l1z" />
<bpmn:startEvent id="Event_12pbcgu" name="New process">
<bpmn:outgoing>Flow_0ez6ziw</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:dataObjectReference id="DataObjectReference_15wwvkc" name="Current state process model" dataObjectRef="DataObject_0wfur1a" />
<bpmn:dataObject id="DataObject_0wfur1a" />
<bpmn:task id="Activity_0k315ph" name="GOALS" />
<bpmn:task id="Activity_039k4vo" name="ROLES" />
<bpmn:task id="Activity_07b9mzf" name="PROCESSES" />
<bpmn:task id="Activity_1il7p3a" name="METHODS" />
<bpmn:task id="Activity_1ozxtzi" name="TOOLS" />
<bpmn:task id="Activity_0qx5503" />
<bpmn:subProcess id="Activity_0r9tnuq" name="Process survey">
<bpmn:incoming>Flow_05yh3hq</bpmn:incoming>
<bpmn:outgoing>Flow_1v8908c</bpmn:outgoing>
</bpmn:subProcess>
<bpmn:subProcess id="Activity_1ltn2dv" name="Process documentation">
<bpmn:incoming>Flow_1v8908c</bpmn:incoming>
<bpmn:outgoing>Flow_0nn0rnc</bpmn:outgoing>
<bpmn:dataOutputAssociation id="DataOutputAssociation_1itat8f">
<bpmn:targetRef>DataObjectReference_15wwvkc</bpmn:targetRef>
</bpmn:dataOutputAssociation>
</bpmn:subProcess>
<bpmn:subProcess id="Activity_1f2erao" name="Process analysis">
<bpmn:incoming>Flow_1kvbyaz</bpmn:incoming>
<bpmn:incoming>Flow_145q7e7</bpmn:incoming>
<bpmn:outgoing>Flow_0ww54uw</bpmn:outgoing>
<bpmn:property id="Property_123h7jp" name="__targetRef_placeholder" />
<bpmn:dataInputAssociation id="DataInputAssociation_12sb75z">
<bpmn:sourceRef>DataObjectReference_1t3xe0n</bpmn:sourceRef>
<bpmn:targetRef>Property_123h7jp</bpmn:targetRef>
</bpmn:dataInputAssociation>
</bpmn:subProcess>
<bpmn:subProcess id="Activity_0ue75rh" name="Process controling">
<bpmn:incoming>Flow_15k5g7g</bpmn:incoming>
<bpmn:incoming>Flow_0bq2rcr</bpmn:incoming>
<bpmn:outgoing>Flow_145q7e7</bpmn:outgoing>
<bpmn:property id="Property_05k2xf9" name="__targetRef_placeholder" />
<bpmn:dataInputAssociation id="DataInputAssociation_06qmjgp">
<bpmn:sourceRef>DataObjectReference_1t3xe0n</bpmn:sourceRef>
<bpmn:targetRef>Property_05k2xf9</bpmn:targetRef>
</bpmn:dataInputAssociation>
<bpmn:dataOutputAssociation id="DataOutputAssociation_1x8f2jo">
<bpmn:targetRef>DataObjectReference_1t3xe0n</bpmn:targetRef>
</bpmn:dataOutputAssociation>
<bpmn:standardLoopCharacteristics />
</bpmn:subProcess>
<bpmn:subProcess id="Activity_1ntnu9l" name="Process design">
<bpmn:incoming>Flow_0ww54uw</bpmn:incoming>
<bpmn:incoming>Flow_0ez6ziw</bpmn:incoming>
<bpmn:property id="Property_17z0n0k" name="__targetRef_placeholder" />
<bpmn:dataInputAssociation id="DataInputAssociation_1k3hgag">
<bpmn:sourceRef>DataObjectReference_1t3xe0n</bpmn:sourceRef>
<bpmn:targetRef>Property_17z0n0k</bpmn:targetRef>
</bpmn:dataInputAssociation>
<bpmn:dataOutputAssociation id="DataOutputAssociation_1ogw7ek">
<bpmn:targetRef>DataObjectReference_1rpchvw</bpmn:targetRef>
</bpmn:dataOutputAssociation>
</bpmn:subProcess>
<bpmn:subProcess id="Activity_0ztpt52" name="Process implementation">
<bpmn:outgoing>Flow_0bq2rcr</bpmn:outgoing>
<bpmn:property id="Property_0o5umqm" name="__targetRef_placeholder" />
<bpmn:dataInputAssociation id="DataInputAssociation_0evwy0l">
<bpmn:sourceRef>DataObjectReference_1rpchvw</bpmn:sourceRef>
<bpmn:targetRef>Property_0o5umqm</bpmn:targetRef>
</bpmn:dataInputAssociation>
<bpmn:dataOutputAssociation id="DataOutputAssociation_1gf0jo8">
<bpmn:targetRef>DataObjectReference_1t3xe0n</bpmn:targetRef>
</bpmn:dataOutputAssociation>
</bpmn:subProcess>
<bpmn:sequenceFlow id="Flow_05yh3hq" sourceRef="Event_06p90j4" targetRef="Activity_0r9tnuq" />
<bpmn:sequenceFlow id="Flow_0nn0rnc" sourceRef="Activity_1ltn2dv" targetRef="Gateway_0cp7717" />
<bpmn:sequenceFlow id="Flow_1kvbyaz" sourceRef="Gateway_0cp7717" targetRef="Activity_1f2erao" />
<bpmn:sequenceFlow id="Flow_15k5g7g" sourceRef="Gateway_0cp7717" targetRef="Activity_0ue75rh" />
<bpmn:sequenceFlow id="Flow_0ez6ziw" sourceRef="Event_12pbcgu" targetRef="Activity_1ntnu9l" />
<bpmn:sequenceFlow id="Flow_1v8908c" sourceRef="Activity_0r9tnuq" targetRef="Activity_1ltn2dv" />
<bpmn:sequenceFlow id="Flow_145q7e7" sourceRef="Activity_0ue75rh" targetRef="Activity_1f2erao" />
<bpmn:sequenceFlow id="Flow_0ww54uw" sourceRef="Activity_1f2erao" targetRef="Activity_1ntnu9l" />
<bpmn:sequenceFlow id="Flow_0bq2rcr" sourceRef="Activity_0ztpt52" targetRef="Activity_0ue75rh" />
<bpmn:textAnnotation id="TextAnnotation_0gwb2mt">
<bpmn:text>Camunda BPM lifecycle</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_0q8s4dn">
<bpmn:text>collapsed subprocess</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_0doumqe">
<bpmn:text>Continuous until process improvement is required</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_0nw0mar">
<bpmn:text>Change management conventional IT projects, process automation</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_0m9rgej">
<bpmn:text>Modelling, process maps, flow diagrams</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_1glt2i3">
<bpmn:text>Workshops, interviews, monitoring</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_0ecawyo">
<bpmn:text>BPM Governence = Continuous analysis and design</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_1qzyipu">
<bpmn:text>Process has no ending, it is always being done</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_1hrg7vr">
<bpmn:text>Process documentation</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_18yx6pn">
<bpmn:text>This part of BPM lifecycle is about gathering all the information necessary to capture AS-IS model or TO-BE models, or both. This can be done with workshops, interviewing, subject matter experts or in some cases looking into code to see how things are really done under the hood. The result are some artifacts, the most important of those is the resulting BPMN and also general documentation.</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_0f3rrqb">
<bpmn:text>Roles</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_19pk08h">
<bpmn:text>Tools</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_1bwmnkm">
<bpmn:text>Methods</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_0io3qh3">
<bpmn:text>Processes</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_12cau7w">
<bpmn:text>Clarifying goals is critical</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_02cqeod">
<bpmn:text>Let's see how documentation goals apply to documentation gathering for creating our process models</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_1gf71xs">
<bpmn:text>Systematic clarification of all aspects: Goals</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_1hcsy4x">
<bpmn:text>Achieveing visibility of the company processes: you commint to BPMN, you start modeling the business procesess and suddenly you have documentation</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_1cqytml">
<bpmn:text>Increase the comprehensibility of process for employees; Suddenly anyone can look at these models and understand what is suppose to happen</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_0d6aoyv">
<bpmn:text>Achieving an ISO certification</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_1c9jj4h">
<bpmn:text>ANOTHER GOALS: Create transparency; Requitements engineering; Process automation</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_03opq05">
<bpmn:text>Center of excellence (BPM CoE ,Center of Excellence), - Defining the methodology, tools and meta-processes; - Support the departments (decentralized teams); - Establishing QA</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_0c8ymhz">
<bpmn:text>Departments: Decentralized documentation (business analysis)</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_1gyxbli">
<bpmn:text>Some other possible roles, Business Analyst, Subject matter experts, Process modeler, process engineer, Technical consultant, Quality Assurance</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_0ucyjb6">
<bpmn:text>Systematic clarification of all aspects: Processes: - Process discovery and documentation, - Maintainance and housekeeping of the model repository, - Approval of process models (based on content/ based on underlying methodology)</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_10yheli">
<bpmn:text>Process recovery, Feedback loops with creation, Testing and QA</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_0e43n8w">
<bpmn:text>Systematic clarification of all aspects: Methods - BPMN + Guidelines (conventions), - Define the process architecture (e.g., process landscapes), - Textual descriptiopns</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_1fjze8p">
<bpmn:text>User stories, Acceptance tests</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_0frd7dv">
<bpmn:text>Systematic clarification of all aspects: Tools</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_0pjeuji">
<bpmn:text>- Collaborative BPMN-modelling; e.g. Cawemo; - Support for administration of extensive documentation - Support for customization (e.g. custom artifacts and attributes); - Integration of the BPMN tool with other business applications (e.g. Wiki, Shgarepoint)</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_10nqilh">
<bpmn:text>CAMUNDA HOUSE</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_07j0u1p">
<bpmn:text>Human process flow, Work procedures User Experience</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_1lfbrwi">
<bpmn:text>interaction flow, interaction between user and system</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_0kj9d5r">
<bpmn:text>Automated control flow, Code</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_1139ndf">
<bpmn:text>Precise description, Physically specific</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_0yv86iu">
<bpmn:text>Fast comprehension, Logically abstract</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_0zdbzww">
<bpmn:text>Relation to the Camunda House</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_0uy3tn4">
<bpmn:text>When everyone can read and understand BPMN, there are process models that tend to document themselves</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_1t8khso">
<bpmn:text>The strategic models, the first description of every business process at high level; Your BPMN artifact simply becomes the documentation. The more details we provide in the operational process models the more detailed the documentation becomes</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0pg0wg4" sourceRef="Event_06p90j4" targetRef="TextAnnotation_0gwb2mt" />
<bpmn:association id="Association_0csc4k7" sourceRef="Activity_0r9tnuq" targetRef="TextAnnotation_0q8s4dn" />
<bpmn:association id="Association_1v4nxd3" sourceRef="Activity_0ue75rh" targetRef="TextAnnotation_0doumqe" />
<bpmn:association id="Association_14gpq1k" sourceRef="Activity_0ztpt52" targetRef="TextAnnotation_0nw0mar" />
<bpmn:association id="Association_13fqh6s" sourceRef="Activity_1ltn2dv" targetRef="TextAnnotation_0m9rgej" />
<bpmn:association id="Association_0tz75jm" sourceRef="Activity_0r9tnuq" targetRef="TextAnnotation_1glt2i3" />
<bpmn:association id="Association_1pmtwhv" sourceRef="Event_06p90j4" targetRef="TextAnnotation_0ecawyo" />
<bpmn:association id="Association_0kr6jrn" sourceRef="Event_06p90j4" targetRef="TextAnnotation_1qzyipu" />
<bpmn:association id="Association_1o2jce2" sourceRef="Activity_0k315ph" targetRef="TextAnnotation_0f3rrqb" />
<bpmn:association id="Association_1i99qhq" sourceRef="Activity_0k315ph" targetRef="TextAnnotation_19pk08h" />
<bpmn:association id="Association_1996a5c" sourceRef="Activity_0k315ph" targetRef="TextAnnotation_1bwmnkm" />
<bpmn:association id="Association_14i7qnc" sourceRef="Activity_0k315ph" targetRef="TextAnnotation_0io3qh3" />
<bpmn:association id="Association_0m1546z" sourceRef="Activity_0k315ph" targetRef="TextAnnotation_12cau7w" />
<bpmn:association id="Association_0u38h2u" sourceRef="Activity_0k315ph" targetRef="TextAnnotation_02cqeod" />
<bpmn:association id="Association_0dvzego" sourceRef="Activity_0k315ph" targetRef="TextAnnotation_1gf71xs" />
<bpmn:association id="Association_10u5ynk" sourceRef="Activity_0k315ph" targetRef="TextAnnotation_1hcsy4x" />
<bpmn:association id="Association_1l1p0he" sourceRef="Activity_0k315ph" targetRef="TextAnnotation_1cqytml" />
<bpmn:association id="Association_0xlt3dt" sourceRef="Activity_0k315ph" targetRef="TextAnnotation_0d6aoyv" />
<bpmn:association id="Association_1n6hf03" sourceRef="Activity_0k315ph" targetRef="TextAnnotation_1c9jj4h" />
<bpmn:association id="Association_0rzvorl" sourceRef="Activity_039k4vo" targetRef="TextAnnotation_03opq05" />
<bpmn:association id="Association_1ks7w32" sourceRef="Activity_039k4vo" targetRef="TextAnnotation_0c8ymhz" />
<bpmn:association id="Association_11nrxrm" sourceRef="Activity_039k4vo" targetRef="TextAnnotation_1gyxbli" />
<bpmn:association id="Association_0x4q1x0" sourceRef="Activity_07b9mzf" targetRef="TextAnnotation_0ucyjb6" />
<bpmn:association id="Association_1s6lyep" sourceRef="Activity_07b9mzf" targetRef="TextAnnotation_10yheli" />
<bpmn:association id="Association_05dmvp9" sourceRef="Activity_1il7p3a" targetRef="TextAnnotation_0e43n8w" />
<bpmn:association id="Association_02ujkta" sourceRef="Activity_1il7p3a" targetRef="TextAnnotation_1fjze8p" />
<bpmn:association id="Association_1vqjgkx" sourceRef="Activity_1ozxtzi" targetRef="TextAnnotation_0frd7dv" />
<bpmn:association id="Association_14pse01" sourceRef="Activity_1ozxtzi" targetRef="TextAnnotation_0pjeuji" />
<bpmn:association id="Association_1sofjqj" sourceRef="Activity_0qx5503" targetRef="TextAnnotation_0uy3tn4" />
</bpmn:process>
<bpmn:process id="Process_08a74h6" isExecutable="false">
<bpmn:laneSet id="LaneSet_1t9b57g">
<bpmn:lane id="Lane_13dgoda" name="Employee">
<bpmn:flowNodeRef>Event_0mkclcm</bpmn:flowNodeRef>
<bpmn:flowNodeRef>Gateway_183cisy</bpmn:flowNodeRef>
<bpmn:flowNodeRef>Activity_0t84s5r</bpmn:flowNodeRef>
<bpmn:flowNodeRef>Gateway_0fihjfp</bpmn:flowNodeRef>
<bpmn:flowNodeRef>Activity_04z6hmo</bpmn:flowNodeRef>
<bpmn:flowNodeRef>Event_09x6uh5</bpmn:flowNodeRef>
</bpmn:lane>
<bpmn:lane id="Lane_18exckj" name="Back office">
<bpmn:flowNodeRef>Activity_1iydqa0</bpmn:flowNodeRef>
<bpmn:flowNodeRef>Event_0rdv4qw</bpmn:flowNodeRef>
<bpmn:flowNodeRef>Activity_1oj8kd5</bpmn:flowNodeRef>
<bpmn:flowNodeRef>Event_1905tc3</bpmn:flowNodeRef>
</bpmn:lane>
<bpmn:lane id="Lane_0zusdik" name="Finance">
<bpmn:flowNodeRef>Activity_02q1s3a</bpmn:flowNodeRef>
<bpmn:flowNodeRef>Event_1wo1h6g</bpmn:flowNodeRef>
</bpmn:lane>
</bpmn:laneSet>
<bpmn:startEvent id="Event_0mkclcm" name="I am sick">
<bpmn:outgoing>Flow_0f1oo7l</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:parallelGateway id="Gateway_183cisy">
<bpmn:incoming>Flow_0f1oo7l</bpmn:incoming>
<bpmn:outgoing>Flow_0b1j5pq</bpmn:outgoing>
<bpmn:outgoing>Flow_15w13st</bpmn:outgoing>
</bpmn:parallelGateway>
<bpmn:task id="Activity_0t84s5r" name="Get a sick certificate">
<bpmn:incoming>Flow_0b1j5pq</bpmn:incoming>
<bpmn:outgoing>Flow_1p7dlb1</bpmn:outgoing>
</bpmn:task>
<bpmn:task id="Activity_1iydqa0" name="Inform the team">
<bpmn:incoming>Flow_15w13st</bpmn:incoming>
<bpmn:outgoing>Flow_1hbp5ii</bpmn:outgoing>
</bpmn:task>
<bpmn:endEvent id="Event_0rdv4qw" name="Team is informed">
<bpmn:incoming>Flow_1hbp5ii</bpmn:incoming>
</bpmn:endEvent>
<bpmn:parallelGateway id="Gateway_0fihjfp">
<bpmn:incoming>Flow_1p7dlb1</bpmn:incoming>
<bpmn:outgoing>Flow_144vyze</bpmn:outgoing>
<bpmn:outgoing>Flow_1aqnwcb</bpmn:outgoing>
<bpmn:outgoing>Flow_1oepiyy</bpmn:outgoing>
</bpmn:parallelGateway>
<bpmn:task id="Activity_04z6hmo" name="Send sick certificate to the health insurance">
<bpmn:incoming>Flow_144vyze</bpmn:incoming>
<bpmn:outgoing>Flow_0xzhb5w</bpmn:outgoing>
</bpmn:task>
<bpmn:task id="Activity_1oj8kd5" name="Archive sick certificate">
<bpmn:incoming>Flow_1aqnwcb</bpmn:incoming>
<bpmn:outgoing>Flow_1qswg4k</bpmn:outgoing>
</bpmn:task>
<bpmn:task id="Activity_02q1s3a" name="Report abscense to the social security fund">
<bpmn:incoming>Flow_1oepiyy</bpmn:incoming>
<bpmn:outgoing>Flow_1fupkx2</bpmn:outgoing>
</bpmn:task>
<bpmn:endEvent id="Event_09x6uh5" name="Sick certificate sent">
<bpmn:incoming>Flow_0xzhb5w</bpmn:incoming>
</bpmn:endEvent>
<bpmn:endEvent id="Event_1905tc3" name="Sick certificate archived">
<bpmn:incoming>Flow_1qswg4k</bpmn:incoming>
</bpmn:endEvent>
<bpmn:endEvent id="Event_1wo1h6g" name="Abscence reported">
<bpmn:incoming>Flow_1fupkx2</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_0f1oo7l" sourceRef="Event_0mkclcm" targetRef="Gateway_183cisy" />
<bpmn:sequenceFlow id="Flow_0b1j5pq" sourceRef="Gateway_183cisy" targetRef="Activity_0t84s5r" />
<bpmn:sequenceFlow id="Flow_15w13st" sourceRef="Gateway_183cisy" targetRef="Activity_1iydqa0" />
<bpmn:sequenceFlow id="Flow_1p7dlb1" sourceRef="Activity_0t84s5r" targetRef="Gateway_0fihjfp" />
<bpmn:sequenceFlow id="Flow_1hbp5ii" sourceRef="Activity_1iydqa0" targetRef="Event_0rdv4qw" />
<bpmn:sequenceFlow id="Flow_144vyze" sourceRef="Gateway_0fihjfp" targetRef="Activity_04z6hmo" />
<bpmn:sequenceFlow id="Flow_1aqnwcb" sourceRef="Gateway_0fihjfp" targetRef="Activity_1oj8kd5" />
<bpmn:sequenceFlow id="Flow_1oepiyy" sourceRef="Gateway_0fihjfp" targetRef="Activity_02q1s3a" />
<bpmn:sequenceFlow id="Flow_0xzhb5w" sourceRef="Activity_04z6hmo" targetRef="Event_09x6uh5" />
<bpmn:sequenceFlow id="Flow_1qswg4k" sourceRef="Activity_1oj8kd5" targetRef="Event_1905tc3" />
<bpmn:sequenceFlow id="Flow_1fupkx2" sourceRef="Activity_02q1s3a" targetRef="Event_1wo1h6g" />
</bpmn:process>
<bpmn:process id="Process_0obvs6c" isExecutable="false">
<bpmn:startEvent id="Event_1w4s5ok" name="I am sick">
<bpmn:outgoing>Flow_1j3xoit</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:task id="Activity_1na7bpl" name="Inform the back office">
<bpmn:incoming>Flow_1j3xoit</bpmn:incoming>
<bpmn:outgoing>Flow_0wucdk5</bpmn:outgoing>
</bpmn:task>
<bpmn:task id="Activity_0pewx22" name="See a doctor and get a sick certificate">
<bpmn:incoming>Flow_0wucdk5</bpmn:incoming>
<bpmn:outgoing>Flow_0gg4vna</bpmn:outgoing>
</bpmn:task>
<bpmn:eventBasedGateway id="Gateway_03fa1zw">
<bpmn:incoming>Flow_0gg4vna</bpmn:incoming>
<bpmn:outgoing>Flow_0dmy2v6</bpmn:outgoing>
<bpmn:outgoing>Flow_1ulcm4h</bpmn:outgoing>
</bpmn:eventBasedGateway>
<bpmn:task id="Activity_17gifam" name="Take sick ceritficate to the Back Office">
<bpmn:incoming>Flow_12onue0</bpmn:incoming>
<bpmn:outgoing>Flow_0kw134y</bpmn:outgoing>
</bpmn:task>
<bpmn:exclusiveGateway id="Gateway_0a92ltt">
<bpmn:incoming>Flow_0kw134y</bpmn:incoming>
<bpmn:incoming>Flow_07i0lzk</bpmn:incoming>
<bpmn:outgoing>Flow_0yiolrg</bpmn:outgoing>
</bpmn:exclusiveGateway>
<bpmn:task id="Activity_1i4enw9" name="Send the copy of sick certificate to the health insurance">
<bpmn:incoming>Flow_0yiolrg</bpmn:incoming>
<bpmn:outgoing>Flow_0920tvj</bpmn:outgoing>
</bpmn:task>
<bpmn:endEvent id="Event_0navaco" name="Absence reported">
<bpmn:incoming>Flow_0920tvj</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_1j3xoit" sourceRef="Event_1w4s5ok" targetRef="Activity_1na7bpl" />
<bpmn:sequenceFlow id="Flow_0wucdk5" sourceRef="Activity_1na7bpl" targetRef="Activity_0pewx22" />
<bpmn:sequenceFlow id="Flow_0gg4vna" sourceRef="Activity_0pewx22" targetRef="Gateway_03fa1zw" />
<bpmn:sequenceFlow id="Flow_0dmy2v6" sourceRef="Gateway_03fa1zw" targetRef="Event_18bpd2x" />
<bpmn:sequenceFlow id="Flow_0kw134y" sourceRef="Activity_17gifam" targetRef="Gateway_0a92ltt" />
<bpmn:sequenceFlow id="Flow_0yiolrg" sourceRef="Gateway_0a92ltt" targetRef="Activity_1i4enw9" />
<bpmn:sequenceFlow id="Flow_0920tvj" sourceRef="Activity_1i4enw9" targetRef="Event_0navaco" />
<bpmn:sequenceFlow id="Flow_1ulcm4h" sourceRef="Gateway_03fa1zw" targetRef="Event_05cv8v8" />
<bpmn:sequenceFlow id="Flow_12onue0" sourceRef="Event_05cv8v8" targetRef="Activity_17gifam" />
<bpmn:intermediateCatchEvent id="Event_05cv8v8" name="Back in the office">
<bpmn:incoming>Flow_1ulcm4h</bpmn:incoming>
<bpmn:outgoing>Flow_12onue0</bpmn:outgoing>
<bpmn:messageEventDefinition id="MessageEventDefinition_0oelase" />
</bpmn:intermediateCatchEvent>
<bpmn:intermediateCatchEvent id="Event_18bpd2x" name="3 days">
<bpmn:incoming>Flow_0dmy2v6</bpmn:incoming>
<bpmn:outgoing>Flow_03ntynv</bpmn:outgoing>
<bpmn:timerEventDefinition id="TimerEventDefinition_0vfehm4" />
</bpmn:intermediateCatchEvent>
<bpmn:sequenceFlow id="Flow_03ntynv" sourceRef="Event_18bpd2x" targetRef="Activity_05tcckf" />
<bpmn:task id="Activity_05tcckf" name="Send sick certificate to the Back Office">
<bpmn:incoming>Flow_03ntynv</bpmn:incoming>
<bpmn:outgoing>Flow_07i0lzk</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_07i0lzk" sourceRef="Activity_05tcckf" targetRef="Gateway_0a92ltt" />
</bpmn:process>
<bpmn:process id="Process_14m8fzi" isExecutable="false">
<bpmn:startEvent id="Event_1hm454r" name="Employee has reported sick leave">
<bpmn:outgoing>Flow_1u0yeak</bpmn:outgoing>
<bpmn:messageEventDefinition id="MessageEventDefinition_0rv111a" />
</bpmn:startEvent>
<bpmn:task id="Activity_1wfleb3" name="Inform the team about the absence">
<bpmn:incoming>Flow_1u0yeak</bpmn:incoming>
<bpmn:outgoing>Flow_1uw28ql</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_1u0yeak" sourceRef="Event_1hm454r" targetRef="Activity_1wfleb3" />
<bpmn:sequenceFlow id="Flow_1uw28ql" sourceRef="Activity_1wfleb3" targetRef="Gateway_1sdl09h" />
<bpmn:eventBasedGateway id="Gateway_1sdl09h">
<bpmn:incoming>Flow_1uw28ql</bpmn:incoming>
<bpmn:outgoing>Flow_05mhkiu</bpmn:outgoing>
<bpmn:outgoing>Flow_0z51l26</bpmn:outgoing>
</bpmn:eventBasedGateway>
<bpmn:sequenceFlow id="Flow_05mhkiu" sourceRef="Gateway_1sdl09h" targetRef="Event_1q5jcrm" />
<bpmn:sequenceFlow id="Flow_0jb7o6x" sourceRef="Event_1q5jcrm" targetRef="Gateway_1qu2t1n" />
<bpmn:exclusiveGateway id="Gateway_1qu2t1n">
<bpmn:incoming>Flow_0jb7o6x</bpmn:incoming>
<bpmn:incoming>Flow_1qrj2tf</bpmn:incoming>
<bpmn:outgoing>Flow_1yfnjds</bpmn:outgoing>
</bpmn:exclusiveGateway>
<bpmn:sequenceFlow id="Flow_0z51l26" sourceRef="Gateway_1sdl09h" targetRef="Event_0rjlok9" />
<bpmn:sequenceFlow id="Flow_1i76vry" sourceRef="Event_0rjlok9" targetRef="Activity_0sp7rr1" />
<bpmn:sequenceFlow id="Flow_1qrj2tf" sourceRef="Activity_0sp7rr1" targetRef="Gateway_1qu2t1n" />
<bpmn:intermediateCatchEvent id="Event_0rjlok9" name="4 days">
<bpmn:incoming>Flow_0z51l26</bpmn:incoming>
<bpmn:outgoing>Flow_1i76vry</bpmn:outgoing>
<bpmn:timerEventDefinition id="TimerEventDefinition_1iygq2z" />
</bpmn:intermediateCatchEvent>
<bpmn:task id="Activity_0sp7rr1" name="Bother employee">
<bpmn:incoming>Flow_1i76vry</bpmn:incoming>
<bpmn:outgoing>Flow_1qrj2tf</bpmn:outgoing>
<bpmn:standardLoopCharacteristics />
</bpmn:task>
<bpmn:intermediateCatchEvent id="Event_1q5jcrm" name="Sick certificate received">
<bpmn:incoming>Flow_05mhkiu</bpmn:incoming>
<bpmn:outgoing>Flow_0jb7o6x</bpmn:outgoing>
<bpmn:messageEventDefinition id="MessageEventDefinition_12heiox" />
</bpmn:intermediateCatchEvent>
<bpmn:sequenceFlow id="Flow_1yfnjds" sourceRef="Gateway_1qu2t1n" targetRef="Activity_1pj093k" />
<bpmn:task id="Activity_1pj093k" name="Scan sick certificate and send it to Finance">
<bpmn:incoming>Flow_1yfnjds</bpmn:incoming>
<bpmn:outgoing>Flow_09mecj5</bpmn:outgoing>
</bpmn:task>
<bpmn:task id="Activity_1dqikbq" name="Archive hard copy of sick certificate">
<bpmn:incoming>Flow_09mecj5</bpmn:incoming>
<bpmn:outgoing>Flow_1gittdm</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_09mecj5" sourceRef="Activity_1pj093k" targetRef="Activity_1dqikbq" />
<bpmn:endEvent id="Event_1u04hzt" name="Sick certificate processed">
<bpmn:incoming>Flow_1gittdm</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_1gittdm" sourceRef="Activity_1dqikbq" targetRef="Event_1u04hzt" />
<bpmn:textAnnotation id="TextAnnotation_0wuy9u2">
<bpmn:text>Until receiving sick certificate</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0ps4h3j" sourceRef="Activity_0sp7rr1" targetRef="TextAnnotation_0wuy9u2" />
</bpmn:process>
<bpmn:process id="Process_1ozwnc6" isExecutable="false">
<bpmn:startEvent id="Event_0jiha24" name="Sick certificate received">
<bpmn:outgoing>Flow_0k76iri</bpmn:outgoing>
<bpmn:messageEventDefinition id="MessageEventDefinition_0yp74gd" />
</bpmn:startEvent>
<bpmn:task id="Activity_1r53g7x" name="Record absence in progress">
<bpmn:incoming>Flow_0k76iri</bpmn:incoming>
<bpmn:outgoing>Flow_1hyzlsd</bpmn:outgoing>
</bpmn:task>
<bpmn:task id="Activity_15rwwlx" name="Send absence to Dakota system">
<bpmn:incoming>Flow_1hyzlsd</bpmn:incoming>
<bpmn:outgoing>Flow_18xzc02</bpmn:outgoing>
</bpmn:task>
<bpmn:task id="Activity_0bz33vq" name="File transmission confirmation as PDF">
<bpmn:incoming>Flow_18xzc02</bpmn:incoming>
<bpmn:outgoing>Flow_1w093zu</bpmn:outgoing>
</bpmn:task>
<bpmn:endEvent id="Event_1vipd1w" name="Sick certificate processed">
<bpmn:incoming>Flow_1w093zu</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_0k76iri" sourceRef="Event_0jiha24" targetRef="Activity_1r53g7x" />
<bpmn:sequenceFlow id="Flow_1hyzlsd" sourceRef="Activity_1r53g7x" targetRef="Activity_15rwwlx" />
<bpmn:sequenceFlow id="Flow_18xzc02" sourceRef="Activity_15rwwlx" targetRef="Activity_0bz33vq" />
<bpmn:sequenceFlow id="Flow_1w093zu" sourceRef="Activity_0bz33vq" targetRef="Event_1vipd1w" />
</bpmn:process>
<bpmn:process id="Process_1re0d1w" isExecutable="false">
<bpmn:laneSet id="LaneSet_0l9efi2">
<bpmn:lane id="Lane_0v0cugl" name="Employee">
<bpmn:flowNodeRef>Event_0z1k0qm</bpmn:flowNodeRef>
<bpmn:flowNodeRef>Activity_1w2a6n9</bpmn:flowNodeRef>
</bpmn:lane>
<bpmn:lane id="Lane_18bs63v" name="Boss">
<bpmn:flowNodeRef>Activity_1fnkcjc</bpmn:flowNodeRef>
</bpmn:lane>
<bpmn:lane id="Lane_1y1pc4f" name="Purchaser">
<bpmn:flowNodeRef>Activity_0h5gt5o</bpmn:flowNodeRef>
<bpmn:flowNodeRef>Event_0olgolk</bpmn:flowNodeRef>
</bpmn:lane>
</bpmn:laneSet>
<bpmn:startEvent id="Event_0z1k0qm" name="Demand occured">
<bpmn:outgoing>Flow_07e7ajv</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:task id="Activity_1w2a6n9" name="Report demand">
<bpmn:incoming>Flow_07e7ajv</bpmn:incoming>
<bpmn:outgoing>Flow_0tjebl0</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_07e7ajv" sourceRef="Event_0z1k0qm" targetRef="Activity_1w2a6n9" />
<bpmn:sequenceFlow id="Flow_0tjebl0" sourceRef="Activity_1w2a6n9" targetRef="Activity_1fnkcjc" />
<bpmn:sequenceFlow id="Flow_0lvglk5" sourceRef="Activity_1fnkcjc" targetRef="Activity_0h5gt5o" />
<bpmn:task id="Activity_1fnkcjc" name="Approve demand">
<bpmn:incoming>Flow_0tjebl0</bpmn:incoming>
<bpmn:outgoing>Flow_0lvglk5</bpmn:outgoing>
</bpmn:task>
<bpmn:task id="Activity_0h5gt5o" name="Place order">
<bpmn:incoming>Flow_0lvglk5</bpmn:incoming>
<bpmn:outgoing>Flow_03sdgw8</bpmn:outgoing>
</bpmn:task>
<bpmn:endEvent id="Event_0olgolk" name="Order placed">
<bpmn:incoming>Flow_03sdgw8</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_03sdgw8" sourceRef="Activity_0h5gt5o" targetRef="Event_0olgolk" />
</bpmn:process>
<bpmn:process id="Process_1n8313m" isExecutable="false">
<bpmn:startEvent id="Event_1xse425" name="Demand occured">
<bpmn:outgoing>Flow_13qlhy7</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:task id="Activity_0u2e6ms" name="Report demand">
<bpmn:incoming>Flow_13qlhy7</bpmn:incoming>
<bpmn:outgoing>Flow_0ooftv2</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_13qlhy7" sourceRef="Event_1xse425" targetRef="Activity_0u2e6ms" />
<bpmn:endEvent id="Event_0zuq24z" name="Demand reported">
<bpmn:incoming>Flow_0ooftv2</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_0ooftv2" sourceRef="Activity_0u2e6ms" targetRef="Event_0zuq24z" />
</bpmn:process>
<bpmn:process id="Process_08aer2c" isExecutable="false">
<bpmn:startEvent id="Event_08kf4tf" name="Order request received">
<bpmn:outgoing>Flow_1k5ztfa</bpmn:outgoing>
<bpmn:messageEventDefinition id="MessageEventDefinition_0cv32a5" />
</bpmn:startEvent>
<bpmn:task id="Activity_1eu96cq" name="Approve order request">
<bpmn:incoming>Flow_1k5ztfa</bpmn:incoming>
<bpmn:outgoing>Flow_1fjx6iy</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_1k5ztfa" sourceRef="Event_08kf4tf" targetRef="Activity_1eu96cq" />
<bpmn:task id="Activity_0vippvl" name="Forward order request">
<bpmn:incoming>Flow_1fjx6iy</bpmn:incoming>
<bpmn:outgoing>Flow_1g9ijpq</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_1fjx6iy" sourceRef="Activity_1eu96cq" targetRef="Activity_0vippvl" />
<bpmn:endEvent id="Event_1ku7wsu" name="Order request approved">
<bpmn:incoming>Flow_1g9ijpq</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_1g9ijpq" sourceRef="Activity_0vippvl" targetRef="Event_1ku7wsu" />
</bpmn:process>
<bpmn:process id="Process_11mbnwc" isExecutable="false">
<bpmn:task id="Activity_0rdjh2i" name="Put order on purchase requisition list">
<bpmn:incoming>Flow_19wc9wu</bpmn:incoming>
<bpmn:outgoing>Flow_0ikkvio</bpmn:outgoing>
<bpmn:dataOutputAssociation id="DataOutputAssociation_0ted7ow">
<bpmn:targetRef>DataStoreReference_0plhwz8</bpmn:targetRef>
</bpmn:dataOutputAssociation>
</bpmn:task>
<bpmn:endEvent id="Event_1cg47tz" name="Order listed">
<bpmn:incoming>Flow_0ikkvio</bpmn:incoming>
</bpmn:endEvent>
<bpmn:startEvent id="Event_0pyw8nj" name="Order approval received">
<bpmn:outgoing>Flow_19wc9wu</bpmn:outgoing>
<bpmn:messageEventDefinition id="MessageEventDefinition_0sosuck" />
</bpmn:startEvent>
<bpmn:sequenceFlow id="Flow_19wc9wu" sourceRef="Event_0pyw8nj" targetRef="Activity_0rdjh2i" />
<bpmn:sequenceFlow id="Flow_0ikkvio" sourceRef="Activity_0rdjh2i" targetRef="Event_1cg47tz" />
</bpmn:process>
<bpmn:process id="Process_0q91y4n" isExecutable="false">
<bpmn:task id="Activity_1cztmi7" name="Put order on purchase requisition list">
<bpmn:incoming>Flow_085xnlg</bpmn:incoming>
<bpmn:outgoing>Flow_0gpdpxq</bpmn:outgoing>
<bpmn:property id="Property_091y4cg" name="__targetRef_placeholder" />
<bpmn:dataInputAssociation id="DataInputAssociation_13w3ysp">
<bpmn:sourceRef>DataStoreReference_0plhwz8</bpmn:sourceRef>
<bpmn:targetRef>Property_091y4cg</bpmn:targetRef>
</bpmn:dataInputAssociation>
</bpmn:task>
<bpmn:task id="Activity_1imoyqk" name="Trigger collective purchase order">
<bpmn:incoming>Flow_0gpdpxq</bpmn:incoming>
<bpmn:outgoing>Flow_0e3zx7q</bpmn:outgoing>
</bpmn:task>
<bpmn:endEvent id="Event_1nejdho" name="Collective purchase order triggered">
<bpmn:incoming>Flow_0e3zx7q</bpmn:incoming>
</bpmn:endEvent>
<bpmn:dataStoreReference id="DataStoreReference_0plhwz8" />
<bpmn:sequenceFlow id="Flow_085xnlg" sourceRef="Event_0md67o1" targetRef="Activity_1cztmi7" />
<bpmn:sequenceFlow id="Flow_0gpdpxq" sourceRef="Activity_1cztmi7" targetRef="Activity_1imoyqk" />
<bpmn:sequenceFlow id="Flow_0e3zx7q" sourceRef="Activity_1imoyqk" targetRef="Event_1nejdho" />
<bpmn:startEvent id="Event_0md67o1" name="First working day of the month">
<bpmn:outgoing>Flow_085xnlg</bpmn:outgoing>
<bpmn:timerEventDefinition id="TimerEventDefinition_0yqv6yl" />
</bpmn:startEvent>
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Collaboration_1oyd3t3">
<bpmndi:BPMNShape id="Participant_1dkdmln_di" bpmnElement="Participant_1dkdmln" isHorizontal="true">
<dc:Bounds x="330" y="48" width="1250" height="2880" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0gwb2mt_di" bpmnElement="TextAnnotation_0gwb2mt">
<dc:Bounds x="440" y="350" width="100" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0q8s4dn_di" bpmnElement="TextAnnotation_0q8s4dn">
<dc:Bounds x="500" y="520" width="100" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0doumqe_di" bpmnElement="TextAnnotation_0doumqe">
<dc:Bounds x="840" y="625" width="165" height="45" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0nw0mar_di" bpmnElement="TextAnnotation_0nw0mar">
<dc:Bounds x="1040" y="720" width="150" height="60" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0m9rgej_di" bpmnElement="TextAnnotation_0m9rgej">
<dc:Bounds x="700" y="520" width="150" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1glt2i3_di" bpmnElement="TextAnnotation_1glt2i3">
<dc:Bounds x="670" y="320" width="100" height="55" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0ecawyo_di" bpmnElement="TextAnnotation_0ecawyo">
<dc:Bounds x="500" y="810" width="120" height="55" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1qzyipu_di" bpmnElement="TextAnnotation_1qzyipu">
<dc:Bounds x="655" y="812" width="145" height="53" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1hrg7vr_di" bpmnElement="TextAnnotation_1hrg7vr">
<dc:Bounds x="655" y="80" width="100" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_18yx6pn_di" bpmnElement="TextAnnotation_18yx6pn">
<dc:Bounds x="950" y="70" width="280" height="142" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0f3rrqb_di" bpmnElement="TextAnnotation_0f3rrqb">
<dc:Bounds x="620" y="1090" width="100" height="30" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_19pk08h_di" bpmnElement="TextAnnotation_19pk08h">
<dc:Bounds x="745" y="1165" width="100" height="30" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1bwmnkm_di" bpmnElement="TextAnnotation_1bwmnkm">
<dc:Bounds x="540" y="1165" width="60" height="30" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0io3qh3_di" bpmnElement="TextAnnotation_0io3qh3">
<dc:Bounds x="620" y="1240" width="100" height="30" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_12cau7w_di" bpmnElement="TextAnnotation_12cau7w">
<dc:Bounds x="380" y="1090" width="150" height="30" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_02cqeod_di" bpmnElement="TextAnnotation_02cqeod">
<dc:Bounds x="840" y="1020" width="270" height="55" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1gf71xs_di" bpmnElement="TextAnnotation_1gf71xs">
<dc:Bounds x="1130" y="1110" width="270" height="26" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1hcsy4x_di" bpmnElement="TextAnnotation_1hcsy4x">
<dc:Bounds x="1130" y="1165" width="340" height="55" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1cqytml_di" bpmnElement="TextAnnotation_1cqytml">
<dc:Bounds x="1130" y="1250" width="320" height="55" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0d6aoyv_di" bpmnElement="TextAnnotation_0d6aoyv">
<dc:Bounds x="1130" y="1330" width="340" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1c9jj4h_di" bpmnElement="TextAnnotation_1c9jj4h">
<dc:Bounds x="1130" y="1390" width="298" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_03opq05_di" bpmnElement="TextAnnotation_03opq05">
<dc:Bounds x="880" y="1520" width="680" height="55" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0c8ymhz_di" bpmnElement="TextAnnotation_0c8ymhz">
<dc:Bounds x="880" y="1590" width="390" height="40" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1gyxbli_di" bpmnElement="TextAnnotation_1gyxbli">
<dc:Bounds x="840" y="1670" width="310" height="55" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0ucyjb6_di" bpmnElement="TextAnnotation_0ucyjb6">
<dc:Bounds x="873" y="1785" width="547" height="55" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_10yheli_di" bpmnElement="TextAnnotation_10yheli">
<dc:Bounds x="873" y="1870" width="387" height="26" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0e43n8w_di" bpmnElement="TextAnnotation_0e43n8w">
<dc:Bounds x="873" y="1960" width="537" height="70" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1fjze8p_di" bpmnElement="TextAnnotation_1fjze8p">
<dc:Bounds x="873" y="2050" width="347" height="30" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0frd7dv_di" bpmnElement="TextAnnotation_0frd7dv">
<dc:Bounds x="873" y="2130" width="439" height="30" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0pjeuji_di" bpmnElement="TextAnnotation_0pjeuji">
<dc:Bounds x="873" y="2180" width="487" height="55" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_10nqilh_di" bpmnElement="TextAnnotation_10nqilh">
<dc:Bounds x="700" y="2369" width="100" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_07j0u1p_di" bpmnElement="TextAnnotation_07j0u1p">
<dc:Bounds x="600" y="2640" width="100" height="84" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1lfbrwi_di" bpmnElement="TextAnnotation_1lfbrwi">
<dc:Bounds x="890" y="2683" width="120" height="67" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0kj9d5r_di" bpmnElement="TextAnnotation_0kj9d5r">
<dc:Bounds x="830" y="2850" width="100" height="55" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1139ndf_di" bpmnElement="TextAnnotation_1139ndf">
<dc:Bounds x="600" y="2530" width="80" height="90" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0yv86iu_di" bpmnElement="TextAnnotation_0yv86iu">
<dc:Bounds x="600" y="2440" width="100" height="70" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0zdbzww_di" bpmnElement="TextAnnotation_0zdbzww">
<dc:Bounds x="380" y="2350" width="282" height="40" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0uy3tn4_di" bpmnElement="TextAnnotation_0uy3tn4">
<dc:Bounds x="1150" y="2400" width="162" height="90" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1t8khso_di" bpmnElement="TextAnnotation_1t8khso">
<dc:Bounds x="1150" y="2554" width="250" height="116" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_06p90j4_di" bpmnElement="Event_06p90j4">
<dc:Bounds x="622" y="422" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_0cp7717_di" bpmnElement="Gateway_0cp7717" isMarkerVisible="true">
<dc:Bounds x="955" y="415" width="50" height="50" />
<bpmndi:BPMNLabel>
<dc:Bounds x="950" y="391" width="60" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="DataObjectReference_1rpchvw_di" bpmnElement="DataObjectReference_1rpchvw">
<dc:Bounds x="1392" y="635" width="36" height="50" />
<bpmndi:BPMNLabel>
<dc:Bounds x="1374" y="692" width="73" height="27" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="DataObjectReference_1t3xe0n_di" bpmnElement="DataObjectReference_1t3xe0n">
<dc:Bounds x="1202" y="535" width="36" height="50" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_12pbcgu_di" bpmnElement="Event_12pbcgu">
<dc:Bounds x="1312" y="302" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="1337" y="343" width="65" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="DataObjectReference_15wwvkc_di" bpmnElement="DataObjectReference_15wwvkc">
<dc:Bounds x="862" y="305" width="36" height="50" />
<bpmndi:BPMNLabel>
<dc:Bounds x="844" y="362" width="73" height="27" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0k315ph_di" bpmnElement="Activity_0k315ph">
<dc:Bounds x="620" y="1140" width="100" height="80" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_039k4vo_di" bpmnElement="Activity_039k4vo">
<dc:Bounds x="745" y="1550" width="100" height="80" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_07b9mzf_di" bpmnElement="Activity_07b9mzf">
<dc:Bounds x="745" y="1780" width="100" height="80" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_1il7p3a_di" bpmnElement="Activity_1il7p3a">
<dc:Bounds x="745" y="1960" width="100" height="80" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_1ozxtzi_di" bpmnElement="Activity_1ozxtzi">
<dc:Bounds x="745" y="2140" width="100" height="80" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0qx5503_di" bpmnElement="Activity_0qx5503">
<dc:Bounds x="1370" y="2470" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0r9tnuq_di" bpmnElement="Activity_0r9tnuq">
<dc:Bounds x="700" y="400" width="100" height="80" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_1ltn2dv_di" bpmnElement="Activity_1ltn2dv">
<dc:Bounds x="820" y="400" width="100" height="80" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_1kkegk6" bpmnElement="Activity_1f2erao">
<dc:Bounds x="1170" y="400" width="100" height="80" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_17o7m9a" bpmnElement="Activity_0ue75rh">
<dc:Bounds x="1000" y="520" width="100" height="80" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_1w3cdyz" bpmnElement="Activity_1ntnu9l">
<dc:Bounds x="1280" y="520" width="100" height="80" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_0a9wu5u" bpmnElement="Activity_0ztpt52">
<dc:Bounds x="1170" y="620" width="100" height="80" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Association_0pg0wg4_di" bpmnElement="Association_0pg0wg4">
<di:waypoint x="624" y="432" />
<di:waypoint x="540" y="390" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_0csc4k7_di" bpmnElement="Association_0csc4k7">
<di:waypoint x="700" y="464" />
<di:waypoint x="582" y="520" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_1v4nxd3_di" bpmnElement="Association_1v4nxd3">
<di:waypoint x="1000" y="585" />
<di:waypoint x="920" y="625" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_14gpq1k_di" bpmnElement="Association_14gpq1k">
<di:waypoint x="1170" y="689" />
<di:waypoint x="1116" y="720" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_13fqh6s_di" bpmnElement="Association_13fqh6s">
<di:waypoint x="823" y="477" />
<di:waypoint x="769" y="520" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_0tz75jm_di" bpmnElement="Association_0tz75jm">
<di:waypoint x="739" y="400" />
<di:waypoint x="731" y="375" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_1pmtwhv_di" bpmnElement="Association_1pmtwhv">
<di:waypoint x="637" y="458" />
<di:waypoint x="573" y="810" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_0kr6jrn_di" bpmnElement="Association_0kr6jrn">
<di:waypoint x="643" y="457" />
<di:waypoint x="712" y="812" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_1o2jce2_di" bpmnElement="Association_1o2jce2">
<di:waypoint x="670" y="1140" />
<di:waypoint x="670" y="1120" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_1i99qhq_di" bpmnElement="Association_1i99qhq">
<di:waypoint x="720" y="1180" />
<di:waypoint x="745" y="1180" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_1996a5c_di" bpmnElement="Association_1996a5c">
<di:waypoint x="620" y="1180" />
<di:waypoint x="600" y="1180" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_14i7qnc_di" bpmnElement="Association_14i7qnc">
<di:waypoint x="670" y="1220" />
<di:waypoint x="670" y="1240" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_0m1546z_di" bpmnElement="Association_0m1546z">
<di:waypoint x="620" y="1164" />
<di:waypoint x="478" y="1120" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_0u38h2u_di" bpmnElement="Association_0u38h2u">
<di:waypoint x="719" y="1147" />
<di:waypoint x="840" y="1068" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_0dvzego_di" bpmnElement="Association_0dvzego">
<di:waypoint x="720" y="1175" />
<di:waypoint x="1130" y="1130" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_10u5ynk_di" bpmnElement="Association_10u5ynk">
<di:waypoint x="720" y="1180" />
<di:waypoint x="1130" y="1180" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_1l1p0he_di" bpmnElement="Association_1l1p0he">
<di:waypoint x="720" y="1188" />
<di:waypoint x="1130" y="1257" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_0xlt3dt_di" bpmnElement="Association_0xlt3dt">
<di:waypoint x="720" y="1196" />
<di:waypoint x="1134" y="1330" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_1n6hf03_di" bpmnElement="Association_1n6hf03">
<di:waypoint x="720" y="1202" />
<di:waypoint x="1146" y="1390" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_0rzvorl_di" bpmnElement="Association_0rzvorl">
<di:waypoint x="845" y="1570" />
<di:waypoint x="880" y="1555" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_1ks7w32_di" bpmnElement="Association_1ks7w32">
<di:waypoint x="845" y="1596" />
<di:waypoint x="880" y="1599" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_11nrxrm_di" bpmnElement="Association_11nrxrm">
<di:waypoint x="835" y="1630" />
<di:waypoint x="875" y="1670" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_0x4q1x0_di" bpmnElement="Association_0x4q1x0">
<di:waypoint x="845" y="1812" />
<di:waypoint x="873" y="1808" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_1s6lyep_di" bpmnElement="Association_1s6lyep">
<di:waypoint x="845" y="1845" />
<di:waypoint x="893" y="1870" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_05dmvp9_di" bpmnElement="Association_05dmvp9">
<di:waypoint x="845" y="1990" />
<di:waypoint x="873" y="1985" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_02ujkta_di" bpmnElement="Association_02ujkta">
<di:waypoint x="845" y="2025" />
<di:waypoint x="893" y="2050" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_1vqjgkx_di" bpmnElement="Association_1vqjgkx">
<di:waypoint x="845" y="2166" />
<di:waypoint x="873" y="2159" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Association_14pse01_di" bpmnElement="Association_14pse01">
<di:waypoint x="845" y="2186" />
<di:waypoint x="873" y="2189" />
</bpmndi:BPMNEdge>