@nanobpm/nano-workforce 0.162.0 → 0.162.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.
@@ -266,7 +266,7 @@
266
266
  <bpmn:extensionElements>
267
267
  <zeebe:taskDefinition type="senior:plan" />
268
268
  <zeebe:linkedResources>
269
- <zeebe:linkedResource resourceId="plan.md" bindingType="latest" resourceType="GenericScript" linkName="prompt" />
269
+ <zeebe:linkedResource resourceId="prompts/plan.md" bindingType="latest" resourceType="GenericScript" linkName="prompt" />
270
270
  </zeebe:linkedResources>
271
271
  <zeebe:ioMapping>
272
272
  <zeebe:input source="=(if (planFindings = null or planFindings = &#34;&#34;) then &#34;&#34; else &#34;&#10;&#10;---&#10;&#10;A prior review REJECTED your last plan. Address every point, then re-emit the full plan:&#10;&#10;&#34; + planFindings)" target="appendPrompt" />
@@ -286,13 +286,21 @@
286
286
  </zeebe:properties>
287
287
  </bpmn:extensionElements>
288
288
  <bpmn:incoming>f_toRecordPlan</bpmn:incoming>
289
- <bpmn:outgoing>f_toReviewPlan</bpmn:outgoing>
289
+ <bpmn:outgoing>f_toPlanEmptyGw</bpmn:outgoing>
290
290
  </bpmn:serviceTask>
291
+ <bpmn:exclusiveGateway id="gw-plan-empty" name="plan has tasks?" default="f_toReviewPlan">
292
+ <bpmn:incoming>f_toPlanEmptyGw</bpmn:incoming>
293
+ <bpmn:outgoing>f_plan_empty</bpmn:outgoing>
294
+ <bpmn:outgoing>f_toReviewPlan</bpmn:outgoing>
295
+ </bpmn:exclusiveGateway>
296
+ <bpmn:endEvent id="EndTasklessDone" name="Taskless done (no-op epic)">
297
+ <bpmn:incoming>f_plan_empty</bpmn:incoming>
298
+ </bpmn:endEvent>
291
299
  <bpmn:serviceTask id="review-plan" name="Review plan (agent)">
292
300
  <bpmn:extensionElements>
293
301
  <zeebe:taskDefinition type="senior:plan-review" />
294
302
  <zeebe:linkedResources>
295
- <zeebe:linkedResource resourceId="plan-review.md" bindingType="latest" resourceType="GenericScript" linkName="prompt" />
303
+ <zeebe:linkedResource resourceId="prompts/plan-review.md" bindingType="latest" resourceType="GenericScript" linkName="prompt" />
296
304
  </zeebe:linkedResources>
297
305
  </bpmn:extensionElements>
298
306
  <bpmn:incoming>f_toReviewPlan</bpmn:incoming>
@@ -419,7 +427,7 @@
419
427
  <bpmn:extensionElements>
420
428
  <zeebe:taskDefinition type="senior:feature" />
421
429
  <zeebe:linkedResources>
422
- <zeebe:linkedResource resourceId="feature.md" bindingType="latest" resourceType="GenericScript" linkName="prompt" />
430
+ <zeebe:linkedResource resourceId="prompts/feature.md" bindingType="latest" resourceType="GenericScript" linkName="prompt" />
423
431
  </zeebe:linkedResources>
424
432
  <zeebe:ioMapping>
425
433
  <zeebe:input source="=&#34;&#10;&#10;---&#10;&#10;&#34; + task.prompt + (if (blackboardBrief = null) then &#34;&#34; else blackboardBrief) + (if (baseBranchBrief = null) then &#34;&#34; else baseBranchBrief) + (if (resolvedDepsBrief = null) then &#34;&#34; else resolvedDepsBrief) + (if (resolvedArtifacts = null or count(resolvedArtifacts[item != null]) = 0) then &#34;&#34; else (&#34;&#10;&#10;---&#10;&#10;**Bound producer capabilities (inter-epic gate).** This epic depends on capabilities another epic in the set just published. Build/install/clone against EXACTLY these published versions (the ones first carrying the awaited capability), never merely the newest:&#10;&#10;&#34; + string join(resolvedArtifacts[item != null], &#34;&#10;&#34;)))" target="appendPrompt" />
@@ -518,7 +526,7 @@
518
526
  <bpmn:extensionElements>
519
527
  <zeebe:taskDefinition type="senior:trial-merge" />
520
528
  <zeebe:linkedResources>
521
- <zeebe:linkedResource resourceId="trial-merge.md" bindingType="latest" resourceType="GenericScript" linkName="prompt" />
529
+ <zeebe:linkedResource resourceId="prompts/trial-merge.md" bindingType="latest" resourceType="GenericScript" linkName="prompt" />
522
530
  </zeebe:linkedResources>
523
531
  <zeebe:ioMapping>
524
532
  <zeebe:input source="=null" target="result" />
@@ -613,7 +621,11 @@
613
621
  <bpmn:sequenceFlow id="f_readiness_done" sourceRef="readiness-preflight" targetRef="ensure-base-branch" />
614
622
  <bpmn:sequenceFlow id="f_toPlan" sourceRef="ensure-base-branch" targetRef="plan" />
615
623
  <bpmn:sequenceFlow id="f_toRecordPlan" sourceRef="plan" targetRef="record-plan" />
616
- <bpmn:sequenceFlow id="f_toReviewPlan" sourceRef="record-plan" targetRef="review-plan" />
624
+ <bpmn:sequenceFlow id="f_toPlanEmptyGw" sourceRef="record-plan" targetRef="gw-plan-empty" />
625
+ <bpmn:sequenceFlow id="f_plan_empty" name="no tasks" sourceRef="gw-plan-empty" targetRef="EndTasklessDone">
626
+ <bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=taskCount = 0</bpmn:conditionExpression>
627
+ </bpmn:sequenceFlow>
628
+ <bpmn:sequenceFlow id="f_toReviewPlan" name="has tasks" sourceRef="gw-plan-empty" targetRef="review-plan" />
617
629
  <bpmn:sequenceFlow id="f_toRecordPlanReview" sourceRef="review-plan" targetRef="record-plan-review" />
618
630
  <bpmn:sequenceFlow id="f_toGwPlanReview" sourceRef="record-plan-review" targetRef="gw-plan-review" />
619
631
  <bpmn:sequenceFlow id="f_plan_proceed" name="approved" sourceRef="gw-plan-review" targetRef="select-wave">
@@ -685,97 +697,109 @@
685
697
  <bpmndi:BPMNShape id="BPMNShape_record-plan" bpmnElement="record-plan">
686
698
  <dc:Bounds x="966" y="269" width="100" height="80" />
687
699
  </bpmndi:BPMNShape>
700
+ <bpmndi:BPMNShape id="BPMNShape_gw-plan-empty" bpmnElement="gw-plan-empty" isMarkerVisible="true">
701
+ <dc:Bounds x="1166" y="284" width="50" height="50" />
702
+ <bpmndi:BPMNLabel>
703
+ <dc:Bounds x="1123" y="339" width="57" height="28" />
704
+ </bpmndi:BPMNLabel>
705
+ </bpmndi:BPMNShape>
706
+ <bpmndi:BPMNShape id="BPMNShape_EndTasklessDone" bpmnElement="EndTasklessDone">
707
+ <dc:Bounds x="1348" y="451" width="36" height="36" />
708
+ <bpmndi:BPMNLabel>
709
+ <dc:Bounds x="1327" y="492" width="78" height="42" />
710
+ </bpmndi:BPMNLabel>
711
+ </bpmndi:BPMNShape>
688
712
  <bpmndi:BPMNShape id="BPMNShape_review-plan" bpmnElement="review-plan">
689
- <dc:Bounds x="1166" y="269" width="100" height="80" />
713
+ <dc:Bounds x="1316" y="269" width="100" height="80" />
690
714
  </bpmndi:BPMNShape>
691
715
  <bpmndi:BPMNShape id="BPMNShape_record-plan-review" bpmnElement="record-plan-review">
692
- <dc:Bounds x="1366" y="269" width="100" height="80" />
716
+ <dc:Bounds x="1516" y="269" width="100" height="80" />
693
717
  </bpmndi:BPMNShape>
694
718
  <bpmndi:BPMNShape id="BPMNShape_gw-plan-review" bpmnElement="gw-plan-review" isMarkerVisible="true">
695
- <dc:Bounds x="1566" y="284" width="50" height="50" />
719
+ <dc:Bounds x="1716" y="284" width="50" height="50" />
696
720
  <bpmndi:BPMNLabel>
697
- <dc:Bounds x="1518" y="339" width="67" height="28" />
721
+ <dc:Bounds x="1668" y="339" width="67" height="28" />
698
722
  </bpmndi:BPMNLabel>
699
723
  </bpmndi:BPMNShape>
700
724
  <bpmndi:BPMNShape id="BPMNShape_plan-review-decision" bpmnElement="plan-review-decision">
701
- <dc:Bounds x="1716" y="429" width="100" height="80" />
725
+ <dc:Bounds x="1866" y="429" width="100" height="80" />
702
726
  </bpmndi:BPMNShape>
703
727
  <bpmndi:BPMNShape id="BPMNShape_gw-plan-answer" bpmnElement="gw-plan-answer" isMarkerVisible="true">
704
- <dc:Bounds x="1916" y="444" width="50" height="50" />
728
+ <dc:Bounds x="2066" y="444" width="50" height="50" />
705
729
  <bpmndi:BPMNLabel>
706
- <dc:Bounds x="1971" y="455" width="67" height="28" />
730
+ <dc:Bounds x="2121" y="455" width="67" height="28" />
707
731
  </bpmndi:BPMNLabel>
708
732
  </bpmndi:BPMNShape>
709
733
  <bpmndi:BPMNShape id="BPMNShape_select-wave" bpmnElement="select-wave">
710
- <dc:Bounds x="2066" y="269" width="100" height="80" />
734
+ <dc:Bounds x="2216" y="269" width="100" height="80" />
711
735
  </bpmndi:BPMNShape>
712
736
  <bpmndi:BPMNShape id="BPMNShape_implement" bpmnElement="implement" isExpanded="true">
713
- <dc:Bounds x="2266" y="80" width="1788" height="458" />
737
+ <dc:Bounds x="2416" y="80" width="1788" height="458" />
714
738
  </bpmndi:BPMNShape>
715
739
  <bpmndi:BPMNShape id="BPMNShape_record-wave" bpmnElement="record-wave">
716
- <dc:Bounds x="4154" y="269" width="100" height="80" />
740
+ <dc:Bounds x="4304" y="269" width="100" height="80" />
717
741
  </bpmndi:BPMNShape>
718
742
  <bpmndi:BPMNShape id="BPMNShape_gw-trial-needed" bpmnElement="gw-trial-needed" isMarkerVisible="true">
719
- <dc:Bounds x="4354" y="284" width="50" height="50" />
743
+ <dc:Bounds x="4504" y="284" width="50" height="50" />
720
744
  <bpmndi:BPMNLabel>
721
- <dc:Bounds x="4335" y="265" width="88" height="14" />
745
+ <dc:Bounds x="4485" y="265" width="88" height="14" />
722
746
  </bpmndi:BPMNLabel>
723
747
  </bpmndi:BPMNShape>
724
748
  <bpmndi:BPMNShape id="BPMNShape_trial-merge" bpmnElement="trial-merge">
725
- <dc:Bounds x="4504" y="909" width="100" height="80" />
749
+ <dc:Bounds x="4654" y="909" width="100" height="80" />
726
750
  </bpmndi:BPMNShape>
727
751
  <bpmndi:BPMNShape id="BPMNShape_record-trial-merge" bpmnElement="record-trial-merge">
728
- <dc:Bounds x="4704" y="909" width="100" height="80" />
752
+ <dc:Bounds x="4854" y="909" width="100" height="80" />
729
753
  </bpmndi:BPMNShape>
730
754
  <bpmndi:BPMNShape id="BPMNShape_gw-trial" bpmnElement="gw-trial" isMarkerVisible="true">
731
- <dc:Bounds x="4904" y="924" width="50" height="50" />
755
+ <dc:Bounds x="5054" y="924" width="50" height="50" />
732
756
  <bpmndi:BPMNLabel>
733
- <dc:Bounds x="4894" y="979" width="71" height="14" />
757
+ <dc:Bounds x="5044" y="979" width="71" height="14" />
734
758
  </bpmndi:BPMNLabel>
735
759
  </bpmndi:BPMNShape>
736
760
  <bpmndi:BPMNShape id="BPMNShape_trial-merge-decision" bpmnElement="trial-merge-decision">
737
- <dc:Bounds x="5054" y="429" width="100" height="80" />
761
+ <dc:Bounds x="5204" y="429" width="100" height="80" />
738
762
  </bpmndi:BPMNShape>
739
763
  <bpmndi:BPMNShape id="BPMNShape_resolve-trial-attention" bpmnElement="resolve-trial-attention">
740
- <dc:Bounds x="5254" y="429" width="100" height="80" />
764
+ <dc:Bounds x="5404" y="429" width="100" height="80" />
741
765
  </bpmndi:BPMNShape>
742
766
  <bpmndi:BPMNShape id="BPMNShape_gw-trial-answer" bpmnElement="gw-trial-answer" isMarkerVisible="true">
743
- <dc:Bounds x="5454" y="444" width="50" height="50" />
767
+ <dc:Bounds x="5604" y="444" width="50" height="50" />
744
768
  <bpmndi:BPMNLabel>
745
- <dc:Bounds x="5453" y="499" width="53" height="14" />
769
+ <dc:Bounds x="5603" y="499" width="53" height="14" />
746
770
  </bpmndi:BPMNLabel>
747
771
  </bpmndi:BPMNShape>
748
772
  <bpmndi:BPMNShape id="BPMNShape_gw-more" bpmnElement="gw-more" isMarkerVisible="true">
749
- <dc:Bounds x="5604" y="284" width="50" height="50" />
773
+ <dc:Bounds x="5754" y="284" width="50" height="50" />
750
774
  <bpmndi:BPMNLabel>
751
- <dc:Bounds x="5527" y="339" width="84" height="14" />
775
+ <dc:Bounds x="5677" y="339" width="84" height="14" />
752
776
  </bpmndi:BPMNLabel>
753
777
  </bpmndi:BPMNShape>
754
778
  <bpmndi:BPMNShape id="BPMNShape_wait-wave-merged" bpmnElement="wait-wave-merged">
755
- <dc:Bounds x="5786" y="451" width="36" height="36" />
779
+ <dc:Bounds x="5936" y="451" width="36" height="36" />
756
780
  <bpmndi:BPMNLabel>
757
- <dc:Bounds x="5765" y="418" width="78" height="28" />
781
+ <dc:Bounds x="5915" y="418" width="78" height="28" />
758
782
  </bpmndi:BPMNLabel>
759
783
  </bpmndi:BPMNShape>
760
784
  <bpmndi:BPMNShape id="BPMNShape_record-results" bpmnElement="record-results">
761
- <dc:Bounds x="5754" y="269" width="100" height="80" />
785
+ <dc:Bounds x="5904" y="269" width="100" height="80" />
762
786
  </bpmndi:BPMNShape>
763
787
  <bpmndi:BPMNShape id="BPMNShape_End" bpmnElement="End">
764
- <dc:Bounds x="5954" y="291" width="36" height="36" />
788
+ <dc:Bounds x="6104" y="291" width="36" height="36" />
765
789
  <bpmndi:BPMNLabel>
766
- <dc:Bounds x="5935" y="332" width="74" height="28" />
790
+ <dc:Bounds x="6085" y="332" width="74" height="28" />
767
791
  </bpmndi:BPMNLabel>
768
792
  </bpmndi:BPMNShape>
769
793
  <bpmndi:BPMNShape id="BPMNShape_be_plan_sla" bpmnElement="be_plan_sla">
770
- <dc:Bounds x="1748" y="491" width="36" height="36" />
794
+ <dc:Bounds x="1898" y="491" width="36" height="36" />
771
795
  <bpmndi:BPMNLabel>
772
- <dc:Bounds x="1724" y="572" width="84" height="14" />
796
+ <dc:Bounds x="1874" y="572" width="84" height="14" />
773
797
  </bpmndi:BPMNLabel>
774
798
  </bpmndi:BPMNShape>
775
799
  <bpmndi:BPMNShape id="BPMNShape_be_trial_sla" bpmnElement="be_trial_sla">
776
- <dc:Bounds x="5086" y="491" width="36" height="36" />
800
+ <dc:Bounds x="5236" y="491" width="36" height="36" />
777
801
  <bpmndi:BPMNLabel>
778
- <dc:Bounds x="5002" y="532" width="84" height="14" />
802
+ <dc:Bounds x="5152" y="532" width="84" height="14" />
779
803
  </bpmndi:BPMNLabel>
780
804
  </bpmndi:BPMNShape>
781
805
  <bpmndi:BPMNEdge id="BPMNEdge_f_toReadinessGw" bpmnElement="f_toReadinessGw">
@@ -797,87 +821,103 @@
797
821
  <di:waypoint x="866" y="309" />
798
822
  <di:waypoint x="966" y="309" />
799
823
  </bpmndi:BPMNEdge>
800
- <bpmndi:BPMNEdge id="BPMNEdge_f_toReviewPlan" bpmnElement="f_toReviewPlan">
824
+ <bpmndi:BPMNEdge id="BPMNEdge_f_toPlanEmptyGw" bpmnElement="f_toPlanEmptyGw">
801
825
  <di:waypoint x="1066" y="309" />
802
826
  <di:waypoint x="1166" y="309" />
803
827
  </bpmndi:BPMNEdge>
828
+ <bpmndi:BPMNEdge id="BPMNEdge_f_toReviewPlan" bpmnElement="f_toReviewPlan">
829
+ <di:waypoint x="1216" y="309" />
830
+ <di:waypoint x="1316" y="309" />
831
+ <bpmndi:BPMNLabel>
832
+ <dc:Bounds x="1234" y="287" width="64" height="14" />
833
+ </bpmndi:BPMNLabel>
834
+ </bpmndi:BPMNEdge>
804
835
  <bpmndi:BPMNEdge id="BPMNEdge_f_toRecordPlanReview" bpmnElement="f_toRecordPlanReview">
805
- <di:waypoint x="1266" y="309" />
806
- <di:waypoint x="1366" y="309" />
836
+ <di:waypoint x="1416" y="309" />
837
+ <di:waypoint x="1516" y="309" />
807
838
  </bpmndi:BPMNEdge>
808
839
  <bpmndi:BPMNEdge id="BPMNEdge_f_toGwPlanReview" bpmnElement="f_toGwPlanReview">
809
- <di:waypoint x="1466" y="309" />
810
- <di:waypoint x="1566" y="309" />
840
+ <di:waypoint x="1616" y="309" />
841
+ <di:waypoint x="1716" y="309" />
811
842
  </bpmndi:BPMNEdge>
812
843
  <bpmndi:BPMNEdge id="BPMNEdge_f_plan_proceed" bpmnElement="f_plan_proceed">
813
- <di:waypoint x="1616" y="309" />
814
- <di:waypoint x="2066" y="309" />
844
+ <di:waypoint x="1766" y="309" />
845
+ <di:waypoint x="2216" y="309" />
815
846
  <bpmndi:BPMNLabel>
816
- <dc:Bounds x="1749" y="287" width="60" height="14" />
847
+ <dc:Bounds x="1899" y="287" width="60" height="14" />
817
848
  </bpmndi:BPMNLabel>
818
849
  </bpmndi:BPMNEdge>
819
850
  <bpmndi:BPMNEdge id="BPMNEdge_f_toImplement" bpmnElement="f_toImplement">
820
- <di:waypoint x="2166" y="309" />
821
- <di:waypoint x="2266" y="309" />
851
+ <di:waypoint x="2316" y="309" />
852
+ <di:waypoint x="2416" y="309" />
822
853
  </bpmndi:BPMNEdge>
823
854
  <bpmndi:BPMNEdge id="BPMNEdge_f_toRecordWave" bpmnElement="f_toRecordWave">
824
- <di:waypoint x="4054" y="309" />
825
- <di:waypoint x="4154" y="309" />
855
+ <di:waypoint x="4204" y="309" />
856
+ <di:waypoint x="4304" y="309" />
826
857
  </bpmndi:BPMNEdge>
827
858
  <bpmndi:BPMNEdge id="BPMNEdge_f_toTrialNeeded" bpmnElement="f_toTrialNeeded">
828
- <di:waypoint x="4254" y="309" />
829
- <di:waypoint x="4354" y="309" />
859
+ <di:waypoint x="4404" y="309" />
860
+ <di:waypoint x="4504" y="309" />
830
861
  </bpmndi:BPMNEdge>
831
862
  <bpmndi:BPMNEdge id="BPMNEdge_f_skipTrialMerge" bpmnElement="f_skipTrialMerge">
832
- <di:waypoint x="4404" y="309" />
833
- <di:waypoint x="5604" y="309" />
863
+ <di:waypoint x="4554" y="309" />
864
+ <di:waypoint x="5754" y="309" />
834
865
  <bpmndi:BPMNLabel>
835
- <dc:Bounds x="4926" y="287" width="32" height="14" />
866
+ <dc:Bounds x="5076" y="287" width="32" height="14" />
836
867
  </bpmndi:BPMNLabel>
837
868
  </bpmndi:BPMNEdge>
838
869
  <bpmndi:BPMNEdge id="BPMNEdge_f_done" bpmnElement="f_done">
839
- <di:waypoint x="5654" y="309" />
840
- <di:waypoint x="5754" y="309" />
870
+ <di:waypoint x="5804" y="309" />
871
+ <di:waypoint x="5904" y="309" />
841
872
  <bpmndi:BPMNLabel>
842
- <dc:Bounds x="5688" y="287" width="32" height="14" />
873
+ <dc:Bounds x="5838" y="287" width="32" height="14" />
843
874
  </bpmndi:BPMNLabel>
844
875
  </bpmndi:BPMNEdge>
845
876
  <bpmndi:BPMNEdge id="BPMNEdge_f_toEnd" bpmnElement="f_toEnd">
846
- <di:waypoint x="5854" y="309" />
847
- <di:waypoint x="5954" y="309" />
877
+ <di:waypoint x="6004" y="309" />
878
+ <di:waypoint x="6104" y="309" />
879
+ </bpmndi:BPMNEdge>
880
+ <bpmndi:BPMNEdge id="BPMNEdge_f_plan_revise" bpmnElement="f_plan_revise">
881
+ <di:waypoint x="1741" y="284" />
882
+ <di:waypoint x="1741" y="249" />
883
+ <di:waypoint x="816" y="249" />
884
+ <di:waypoint x="816" y="269" />
885
+ <bpmndi:BPMNLabel>
886
+ <dc:Bounds x="1256" y="227" width="46" height="14" />
887
+ </bpmndi:BPMNLabel>
848
888
  </bpmndi:BPMNEdge>
849
889
  <bpmndi:BPMNEdge id="BPMNEdge_f_plan_answer_revise" bpmnElement="f_plan_answer_revise">
850
- <di:waypoint x="1941" y="494" />
851
- <di:waypoint x="1941" y="549" />
890
+ <di:waypoint x="2091" y="494" />
891
+ <di:waypoint x="2091" y="549" />
852
892
  <di:waypoint x="816" y="549" />
853
893
  <di:waypoint x="816" y="349" />
854
894
  <bpmndi:BPMNLabel>
855
- <dc:Bounds x="1356" y="527" width="46" height="14" />
895
+ <dc:Bounds x="1431" y="557" width="46" height="14" />
856
896
  </bpmndi:BPMNLabel>
857
897
  </bpmndi:BPMNEdge>
858
898
  <bpmndi:BPMNEdge id="BPMNEdge_f_toRecordTrialMerge" bpmnElement="f_toRecordTrialMerge">
859
- <di:waypoint x="4604" y="949" />
860
- <di:waypoint x="4704" y="949" />
899
+ <di:waypoint x="4754" y="949" />
900
+ <di:waypoint x="4854" y="949" />
861
901
  </bpmndi:BPMNEdge>
862
902
  <bpmndi:BPMNEdge id="BPMNEdge_f_toGwTrial" bpmnElement="f_toGwTrial">
863
- <di:waypoint x="4804" y="949" />
864
- <di:waypoint x="4904" y="949" />
903
+ <di:waypoint x="4954" y="949" />
904
+ <di:waypoint x="5054" y="949" />
865
905
  </bpmndi:BPMNEdge>
866
906
  <bpmndi:BPMNEdge id="BPMNEdge_f_trialProceed" bpmnElement="f_trialProceed">
867
- <di:waypoint x="4954" y="949" />
868
- <di:waypoint x="5629" y="949" />
869
- <di:waypoint x="5629" y="334" />
907
+ <di:waypoint x="5104" y="949" />
908
+ <di:waypoint x="5779" y="949" />
909
+ <di:waypoint x="5779" y="334" />
870
910
  <bpmndi:BPMNLabel>
871
- <dc:Bounds x="5265" y="927" width="53" height="14" />
911
+ <dc:Bounds x="5415" y="927" width="53" height="14" />
872
912
  </bpmndi:BPMNLabel>
873
913
  </bpmndi:BPMNEdge>
874
914
  <bpmndi:BPMNEdge id="BPMNEdge_f_trialAnswerRerun" bpmnElement="f_trialAnswerRerun">
875
- <di:waypoint x="5479" y="444" />
876
- <di:waypoint x="5479" y="409" />
877
- <di:waypoint x="4554" y="409" />
878
- <di:waypoint x="4554" y="909" />
915
+ <di:waypoint x="5629" y="444" />
916
+ <di:waypoint x="5629" y="409" />
917
+ <di:waypoint x="4704" y="409" />
918
+ <di:waypoint x="4704" y="909" />
879
919
  <bpmndi:BPMNLabel>
880
- <dc:Bounds x="4994" y="387" width="46" height="14" />
920
+ <dc:Bounds x="5144" y="387" width="46" height="14" />
881
921
  </bpmndi:BPMNLabel>
882
922
  </bpmndi:BPMNEdge>
883
923
  <bpmndi:BPMNEdge id="BPMNEdge_f_readiness_gate" bpmnElement="f_readiness_gate">
@@ -888,68 +928,76 @@
888
928
  <dc:Bounds x="246" y="395" width="67" height="14" />
889
929
  </bpmndi:BPMNLabel>
890
930
  </bpmndi:BPMNEdge>
931
+ <bpmndi:BPMNEdge id="BPMNEdge_f_plan_empty" bpmnElement="f_plan_empty">
932
+ <di:waypoint x="1191" y="334" />
933
+ <di:waypoint x="1191" y="469" />
934
+ <di:waypoint x="1348" y="469" />
935
+ <bpmndi:BPMNLabel>
936
+ <dc:Bounds x="1196" y="395" width="57" height="14" />
937
+ </bpmndi:BPMNLabel>
938
+ </bpmndi:BPMNEdge>
891
939
  <bpmndi:BPMNEdge id="BPMNEdge_f_plan_escalate" bpmnElement="f_plan_escalate">
892
- <di:waypoint x="1591" y="334" />
893
- <di:waypoint x="1591" y="469" />
894
- <di:waypoint x="1716" y="469" />
940
+ <di:waypoint x="1741" y="334" />
941
+ <di:waypoint x="1741" y="469" />
942
+ <di:waypoint x="1866" y="469" />
895
943
  <bpmndi:BPMNLabel>
896
- <dc:Bounds x="1596" y="395" width="67" height="14" />
944
+ <dc:Bounds x="1746" y="395" width="67" height="14" />
897
945
  </bpmndi:BPMNLabel>
898
946
  </bpmndi:BPMNEdge>
899
947
  <bpmndi:BPMNEdge id="BPMNEdge_f_plan_answer_proceed" bpmnElement="f_plan_answer_proceed">
900
- <di:waypoint x="1941" y="444" />
901
- <di:waypoint x="1941" y="309" />
902
- <di:waypoint x="2066" y="309" />
948
+ <di:waypoint x="2091" y="444" />
949
+ <di:waypoint x="2091" y="309" />
950
+ <di:waypoint x="2216" y="309" />
903
951
  <bpmndi:BPMNLabel>
904
- <dc:Bounds x="1946" y="370" width="53" height="14" />
952
+ <dc:Bounds x="2096" y="370" width="53" height="14" />
905
953
  </bpmndi:BPMNLabel>
906
954
  </bpmndi:BPMNEdge>
907
955
  <bpmndi:BPMNEdge id="BPMNEdge_f_runTrialMerge" bpmnElement="f_runTrialMerge">
908
- <di:waypoint x="4379" y="334" />
909
- <di:waypoint x="4379" y="949" />
910
- <di:waypoint x="4504" y="949" />
956
+ <di:waypoint x="4529" y="334" />
957
+ <di:waypoint x="4529" y="949" />
958
+ <di:waypoint x="4654" y="949" />
911
959
  <bpmndi:BPMNLabel>
912
- <dc:Bounds x="4384" y="635" width="25" height="14" />
960
+ <dc:Bounds x="4534" y="635" width="25" height="14" />
913
961
  </bpmndi:BPMNLabel>
914
962
  </bpmndi:BPMNEdge>
915
963
  <bpmndi:BPMNEdge id="BPMNEdge_f_trialEscalate" bpmnElement="f_trialEscalate">
916
- <di:waypoint x="4929" y="924" />
917
- <di:waypoint x="4929" y="469" />
918
- <di:waypoint x="5054" y="469" />
964
+ <di:waypoint x="5079" y="924" />
965
+ <di:waypoint x="5079" y="469" />
966
+ <di:waypoint x="5204" y="469" />
919
967
  <bpmndi:BPMNLabel>
920
- <dc:Bounds x="4934" y="690" width="85" height="14" />
968
+ <dc:Bounds x="5084" y="690" width="85" height="14" />
921
969
  </bpmndi:BPMNLabel>
922
970
  </bpmndi:BPMNEdge>
923
971
  <bpmndi:BPMNEdge id="BPMNEdge_f_trialAnswerProceed" bpmnElement="f_trialAnswerProceed">
924
- <di:waypoint x="5479" y="444" />
925
- <di:waypoint x="5479" y="309" />
926
- <di:waypoint x="5604" y="309" />
972
+ <di:waypoint x="5629" y="444" />
973
+ <di:waypoint x="5629" y="309" />
974
+ <di:waypoint x="5754" y="309" />
927
975
  <bpmndi:BPMNLabel>
928
- <dc:Bounds x="5484" y="370" width="53" height="14" />
976
+ <dc:Bounds x="5634" y="370" width="53" height="14" />
929
977
  </bpmndi:BPMNLabel>
930
978
  </bpmndi:BPMNEdge>
931
979
  <bpmndi:BPMNEdge id="BPMNEdge_f_trialAnswerAbandon" bpmnElement="f_trialAnswerAbandon">
932
- <di:waypoint x="5479" y="444" />
933
- <di:waypoint x="5479" y="282" />
934
- <di:waypoint x="5734" y="282" />
935
- <di:waypoint x="5734" y="309" />
936
- <di:waypoint x="5754" y="309" />
980
+ <di:waypoint x="5629" y="444" />
981
+ <di:waypoint x="5629" y="282" />
982
+ <di:waypoint x="5884" y="282" />
983
+ <di:waypoint x="5884" y="309" />
984
+ <di:waypoint x="5904" y="309" />
937
985
  <bpmndi:BPMNLabel>
938
- <dc:Bounds x="5580" y="260" width="53" height="14" />
986
+ <dc:Bounds x="5730" y="260" width="53" height="14" />
939
987
  </bpmndi:BPMNLabel>
940
988
  </bpmndi:BPMNEdge>
941
989
  <bpmndi:BPMNEdge id="BPMNEdge_f_moreWaves" bpmnElement="f_moreWaves">
942
- <di:waypoint x="5654" y="309" />
943
- <di:waypoint x="5674" y="309" />
944
- <di:waypoint x="5674" y="334" />
945
- <di:waypoint x="5708" y="334" />
946
- <di:waypoint x="5708" y="489" />
947
- <di:waypoint x="5786" y="489" />
948
- <di:waypoint x="5786" y="507" />
949
- <di:waypoint x="5804" y="507" />
950
- <di:waypoint x="5804" y="487" />
990
+ <di:waypoint x="5804" y="309" />
991
+ <di:waypoint x="5824" y="309" />
992
+ <di:waypoint x="5824" y="334" />
993
+ <di:waypoint x="5858" y="334" />
994
+ <di:waypoint x="5858" y="489" />
995
+ <di:waypoint x="5936" y="489" />
996
+ <di:waypoint x="5936" y="507" />
997
+ <di:waypoint x="5954" y="507" />
998
+ <di:waypoint x="5954" y="487" />
951
999
  <bpmndi:BPMNLabel>
952
- <dc:Bounds x="5713" y="405" width="35" height="14" />
1000
+ <dc:Bounds x="5863" y="405" width="35" height="14" />
953
1001
  </bpmndi:BPMNLabel>
954
1002
  </bpmndi:BPMNEdge>
955
1003
  <bpmndi:BPMNEdge id="BPMNEdge_f_readiness_done" bpmnElement="f_readiness_done">
@@ -958,214 +1006,205 @@
958
1006
  <di:waypoint x="616" y="349" />
959
1007
  </bpmndi:BPMNEdge>
960
1008
  <bpmndi:BPMNEdge id="BPMNEdge_f_toGwPlanAnswer" bpmnElement="f_toGwPlanAnswer">
961
- <di:waypoint x="1816" y="469" />
962
- <di:waypoint x="1916" y="469" />
1009
+ <di:waypoint x="1966" y="469" />
1010
+ <di:waypoint x="2066" y="469" />
963
1011
  </bpmndi:BPMNEdge>
964
1012
  <bpmndi:BPMNEdge id="BPMNEdge_f_toGwTrialAnswer" bpmnElement="f_toGwTrialAnswer">
965
- <di:waypoint x="5154" y="469" />
966
- <di:waypoint x="5254" y="469" />
1013
+ <di:waypoint x="5304" y="469" />
1014
+ <di:waypoint x="5404" y="469" />
967
1015
  </bpmndi:BPMNEdge>
968
1016
  <bpmndi:BPMNEdge id="BPMNEdge_f_resolveToTrialAnswer" bpmnElement="f_resolveToTrialAnswer">
969
- <di:waypoint x="5354" y="469" />
970
- <di:waypoint x="5454" y="469" />
971
- </bpmndi:BPMNEdge>
972
- <bpmndi:BPMNEdge id="BPMNEdge_f_plan_revise" bpmnElement="f_plan_revise">
973
- <di:waypoint x="1591" y="284" />
974
- <di:waypoint x="1591" y="249" />
975
- <di:waypoint x="816" y="249" />
976
- <di:waypoint x="816" y="269" />
977
- <bpmndi:BPMNLabel>
978
- <dc:Bounds x="1181" y="227" width="46" height="14" />
979
- </bpmndi:BPMNLabel>
1017
+ <di:waypoint x="5504" y="469" />
1018
+ <di:waypoint x="5604" y="469" />
980
1019
  </bpmndi:BPMNEdge>
981
1020
  <bpmndi:BPMNEdge id="BPMNEdge_f_waveMerged" bpmnElement="f_waveMerged">
982
- <di:waypoint x="5804" y="487" />
983
- <di:waypoint x="5804" y="558" />
984
- <di:waypoint x="2116" y="558" />
985
- <di:waypoint x="2116" y="349" />
1021
+ <di:waypoint x="5954" y="487" />
1022
+ <di:waypoint x="5954" y="558" />
1023
+ <di:waypoint x="2266" y="558" />
1024
+ <di:waypoint x="2266" y="349" />
986
1025
  </bpmndi:BPMNEdge>
987
1026
  <bpmndi:BPMNEdge id="BPMNEdge_f_plan_sla" bpmnElement="f_plan_sla">
988
- <di:waypoint x="1766" y="527" />
989
- <di:waypoint x="1766" y="547" />
1027
+ <di:waypoint x="1916" y="527" />
1028
+ <di:waypoint x="1916" y="547" />
990
1029
  <di:waypoint x="816" y="547" />
991
1030
  <di:waypoint x="816" y="349" />
992
1031
  <bpmndi:BPMNLabel>
993
- <dc:Bounds x="1251" y="514" width="81" height="28" />
1032
+ <dc:Bounds x="1426" y="514" width="81" height="28" />
994
1033
  </bpmndi:BPMNLabel>
995
1034
  </bpmndi:BPMNEdge>
996
1035
  <bpmndi:BPMNEdge id="BPMNEdge_f_trial_sla" bpmnElement="f_trial_sla">
997
- <di:waypoint x="5104" y="527" />
998
- <di:waypoint x="5104" y="889" />
999
- <di:waypoint x="4554" y="889" />
1000
- <di:waypoint x="4554" y="909" />
1036
+ <di:waypoint x="5254" y="527" />
1037
+ <di:waypoint x="5254" y="889" />
1038
+ <di:waypoint x="4704" y="889" />
1039
+ <di:waypoint x="4704" y="909" />
1001
1040
  <bpmndi:BPMNLabel>
1002
- <dc:Bounds x="4792" y="856" width="74" height="28" />
1041
+ <dc:Bounds x="4942" y="856" width="74" height="28" />
1003
1042
  </bpmndi:BPMNLabel>
1004
1043
  </bpmndi:BPMNEdge>
1005
1044
  <bpmndi:BPMNShape id="BPMNShape_w_start" bpmnElement="w_start">
1006
- <dc:Bounds x="2306" y="142" width="36" height="36" />
1045
+ <dc:Bounds x="2456" y="142" width="36" height="36" />
1007
1046
  <bpmndi:BPMNLabel>
1008
- <dc:Bounds x="2307" y="183" width="34" height="14" />
1047
+ <dc:Bounds x="2457" y="183" width="34" height="14" />
1009
1048
  </bpmndi:BPMNLabel>
1010
1049
  </bpmndi:BPMNShape>
1011
1050
  <bpmndi:BPMNShape id="BPMNShape_caps-prepare" bpmnElement="caps-prepare">
1012
- <dc:Bounds x="2442" y="120" width="100" height="80" />
1051
+ <dc:Bounds x="2592" y="120" width="100" height="80" />
1013
1052
  </bpmndi:BPMNShape>
1014
1053
  <bpmndi:BPMNShape id="BPMNShape_w_gw_needs" bpmnElement="w_gw_needs" isMarkerVisible="true">
1015
- <dc:Bounds x="2642" y="135" width="50" height="50" />
1054
+ <dc:Bounds x="2792" y="135" width="50" height="50" />
1016
1055
  <bpmndi:BPMNLabel>
1017
- <dc:Bounds x="2630" y="102" width="74" height="28" />
1056
+ <dc:Bounds x="2780" y="102" width="74" height="28" />
1018
1057
  </bpmndi:BPMNLabel>
1019
1058
  </bpmndi:BPMNShape>
1020
1059
  <bpmndi:BPMNShape id="BPMNShape_w_gw_caps" bpmnElement="w_gw_caps" isMarkerVisible="true">
1021
- <dc:Bounds x="2792" y="295" width="50" height="50" />
1060
+ <dc:Bounds x="2942" y="295" width="50" height="50" />
1022
1061
  <bpmndi:BPMNLabel>
1023
- <dc:Bounds x="2778" y="262" width="78" height="28" />
1062
+ <dc:Bounds x="2928" y="262" width="78" height="28" />
1024
1063
  </bpmndi:BPMNLabel>
1025
1064
  </bpmndi:BPMNShape>
1026
1065
  <bpmndi:BPMNShape id="BPMNShape_wait-caps-resolved" bpmnElement="wait-caps-resolved">
1027
- <dc:Bounds x="2942" y="302" width="36" height="36" />
1066
+ <dc:Bounds x="3092" y="302" width="36" height="36" />
1028
1067
  <bpmndi:BPMNLabel>
1029
- <dc:Bounds x="2916" y="343" width="88" height="42" />
1068
+ <dc:Bounds x="3066" y="343" width="88" height="42" />
1030
1069
  </bpmndi:BPMNLabel>
1031
1070
  </bpmndi:BPMNShape>
1032
1071
  <bpmndi:BPMNShape id="BPMNShape_wait-caps-timeout" bpmnElement="wait-caps-timeout">
1033
- <dc:Bounds x="2942" y="462" width="36" height="36" />
1072
+ <dc:Bounds x="3092" y="462" width="36" height="36" />
1034
1073
  <bpmndi:BPMNLabel>
1035
- <dc:Bounds x="2918" y="415" width="84" height="42" />
1074
+ <dc:Bounds x="3068" y="415" width="84" height="42" />
1036
1075
  </bpmndi:BPMNLabel>
1037
1076
  </bpmndi:BPMNShape>
1038
1077
  <bpmndi:BPMNShape id="BPMNShape_implement-task" bpmnElement="implement-task">
1039
- <dc:Bounds x="3078" y="120" width="100" height="80" />
1078
+ <dc:Bounds x="3228" y="120" width="100" height="80" />
1040
1079
  </bpmndi:BPMNShape>
1041
1080
  <bpmndi:BPMNShape id="BPMNShape_w_gw" bpmnElement="w_gw" isMarkerVisible="true">
1042
- <dc:Bounds x="3278" y="135" width="50" height="50" />
1081
+ <dc:Bounds x="3428" y="135" width="50" height="50" />
1043
1082
  <bpmndi:BPMNLabel>
1044
- <dc:Bounds x="3268" y="102" width="70" height="28" />
1083
+ <dc:Bounds x="3418" y="102" width="70" height="28" />
1045
1084
  </bpmndi:BPMNLabel>
1046
1085
  </bpmndi:BPMNShape>
1047
1086
  <bpmndi:BPMNShape id="BPMNShape_record-wave-escalation" bpmnElement="record-wave-escalation">
1048
- <dc:Bounds x="3428" y="120" width="100" height="80" />
1087
+ <dc:Bounds x="3578" y="120" width="100" height="80" />
1049
1088
  </bpmndi:BPMNShape>
1050
1089
  <bpmndi:BPMNShape id="BPMNShape_feature-escalation" bpmnElement="feature-escalation">
1051
- <dc:Bounds x="3628" y="120" width="100" height="80" />
1090
+ <dc:Bounds x="3778" y="120" width="100" height="80" />
1052
1091
  </bpmndi:BPMNShape>
1053
1092
  <bpmndi:BPMNShape id="BPMNShape_w_gw_answer" bpmnElement="w_gw_answer" isMarkerVisible="true">
1054
- <dc:Bounds x="3828" y="135" width="50" height="50" />
1093
+ <dc:Bounds x="3978" y="135" width="50" height="50" />
1055
1094
  <bpmndi:BPMNLabel>
1056
- <dc:Bounds x="3825" y="116" width="56" height="14" />
1095
+ <dc:Bounds x="3975" y="116" width="56" height="14" />
1057
1096
  </bpmndi:BPMNLabel>
1058
1097
  </bpmndi:BPMNShape>
1059
1098
  <bpmndi:BPMNShape id="BPMNShape_w_end" bpmnElement="w_end">
1060
- <dc:Bounds x="3978" y="142" width="36" height="36" />
1099
+ <dc:Bounds x="4128" y="142" width="36" height="36" />
1061
1100
  <bpmndi:BPMNLabel>
1062
- <dc:Bounds x="3963" y="123" width="66" height="14" />
1101
+ <dc:Bounds x="4113" y="123" width="66" height="14" />
1063
1102
  </bpmndi:BPMNLabel>
1064
1103
  </bpmndi:BPMNShape>
1065
1104
  <bpmndi:BPMNShape id="BPMNShape_be_feature_sla" bpmnElement="be_feature_sla">
1066
- <dc:Bounds x="3660" y="182" width="36" height="36" />
1105
+ <dc:Bounds x="3810" y="182" width="36" height="36" />
1067
1106
  <bpmndi:BPMNLabel>
1068
- <dc:Bounds x="3636" y="263" width="84" height="14" />
1107
+ <dc:Bounds x="3786" y="263" width="84" height="14" />
1069
1108
  </bpmndi:BPMNLabel>
1070
1109
  </bpmndi:BPMNShape>
1071
1110
  <bpmndi:BPMNEdge id="BPMNEdge_w_toCapsPrepare" bpmnElement="w_toCapsPrepare">
1072
- <di:waypoint x="2342" y="160" />
1073
- <di:waypoint x="2442" y="160" />
1111
+ <di:waypoint x="2492" y="160" />
1112
+ <di:waypoint x="2592" y="160" />
1074
1113
  </bpmndi:BPMNEdge>
1075
1114
  <bpmndi:BPMNEdge id="BPMNEdge_w_toNeedsGw" bpmnElement="w_toNeedsGw">
1076
- <di:waypoint x="2542" y="160" />
1077
- <di:waypoint x="2642" y="160" />
1115
+ <di:waypoint x="2692" y="160" />
1116
+ <di:waypoint x="2792" y="160" />
1078
1117
  </bpmndi:BPMNEdge>
1079
1118
  <bpmndi:BPMNEdge id="BPMNEdge_w_noNeeds" bpmnElement="w_noNeeds">
1080
- <di:waypoint x="2692" y="160" />
1081
- <di:waypoint x="3078" y="160" />
1119
+ <di:waypoint x="2842" y="160" />
1120
+ <di:waypoint x="3228" y="160" />
1082
1121
  <bpmndi:BPMNLabel>
1083
- <dc:Bounds x="2869" y="138" width="32" height="14" />
1122
+ <dc:Bounds x="3019" y="138" width="32" height="14" />
1084
1123
  </bpmndi:BPMNLabel>
1085
1124
  </bpmndi:BPMNEdge>
1086
1125
  <bpmndi:BPMNEdge id="BPMNEdge_w_toGw" bpmnElement="w_toGw">
1087
- <di:waypoint x="3178" y="160" />
1088
- <di:waypoint x="3278" y="160" />
1089
- </bpmndi:BPMNEdge>
1090
- <bpmndi:BPMNEdge id="BPMNEdge_w_escalate" bpmnElement="w_escalate">
1091
1126
  <di:waypoint x="3328" y="160" />
1092
1127
  <di:waypoint x="3428" y="160" />
1128
+ </bpmndi:BPMNEdge>
1129
+ <bpmndi:BPMNEdge id="BPMNEdge_w_escalate" bpmnElement="w_escalate">
1130
+ <di:waypoint x="3478" y="160" />
1131
+ <di:waypoint x="3578" y="160" />
1093
1132
  <bpmndi:BPMNLabel>
1094
- <dc:Bounds x="3346" y="168" width="64" height="14" />
1133
+ <dc:Bounds x="3496" y="168" width="64" height="14" />
1095
1134
  </bpmndi:BPMNLabel>
1096
1135
  </bpmndi:BPMNEdge>
1097
1136
  <bpmndi:BPMNEdge id="BPMNEdge_w_toEscalationTask" bpmnElement="w_toEscalationTask">
1098
- <di:waypoint x="3528" y="160" />
1099
- <di:waypoint x="3628" y="160" />
1137
+ <di:waypoint x="3678" y="160" />
1138
+ <di:waypoint x="3778" y="160" />
1100
1139
  </bpmndi:BPMNEdge>
1101
1140
  <bpmndi:BPMNEdge id="BPMNEdge_w_toAnswerGw" bpmnElement="w_toAnswerGw">
1102
- <di:waypoint x="3728" y="160" />
1103
- <di:waypoint x="3828" y="160" />
1104
- </bpmndi:BPMNEdge>
1105
- <bpmndi:BPMNEdge id="BPMNEdge_w_abandon" bpmnElement="w_abandon">
1106
1141
  <di:waypoint x="3878" y="160" />
1107
1142
  <di:waypoint x="3978" y="160" />
1143
+ </bpmndi:BPMNEdge>
1144
+ <bpmndi:BPMNEdge id="BPMNEdge_w_abandon" bpmnElement="w_abandon">
1145
+ <di:waypoint x="4028" y="160" />
1146
+ <di:waypoint x="4128" y="160" />
1108
1147
  <bpmndi:BPMNLabel>
1109
- <dc:Bounds x="3902" y="168" width="53" height="14" />
1148
+ <dc:Bounds x="4052" y="168" width="53" height="14" />
1110
1149
  </bpmndi:BPMNLabel>
1111
1150
  </bpmndi:BPMNEdge>
1112
1151
  <bpmndi:BPMNEdge id="BPMNEdge_w_capsToWait" bpmnElement="w_capsToWait">
1113
- <di:waypoint x="2842" y="320" />
1114
- <di:waypoint x="2942" y="320" />
1152
+ <di:waypoint x="2992" y="320" />
1153
+ <di:waypoint x="3092" y="320" />
1115
1154
  </bpmndi:BPMNEdge>
1116
1155
  <bpmndi:BPMNEdge id="BPMNEdge_w_capsResolved" bpmnElement="w_capsResolved">
1117
- <di:waypoint x="2978" y="320" />
1118
1156
  <di:waypoint x="3128" y="320" />
1119
- <di:waypoint x="3128" y="200" />
1157
+ <di:waypoint x="3278" y="320" />
1158
+ <di:waypoint x="3278" y="200" />
1120
1159
  </bpmndi:BPMNEdge>
1121
1160
  <bpmndi:BPMNEdge id="BPMNEdge_w_toWaitCaps" bpmnElement="w_toWaitCaps">
1122
- <di:waypoint x="2667" y="185" />
1123
- <di:waypoint x="2667" y="320" />
1124
- <di:waypoint x="2792" y="320" />
1161
+ <di:waypoint x="2817" y="185" />
1162
+ <di:waypoint x="2817" y="320" />
1163
+ <di:waypoint x="2942" y="320" />
1125
1164
  <bpmndi:BPMNLabel>
1126
- <dc:Bounds x="2672" y="246" width="39" height="14" />
1165
+ <dc:Bounds x="2822" y="246" width="39" height="14" />
1127
1166
  </bpmndi:BPMNLabel>
1128
1167
  </bpmndi:BPMNEdge>
1129
1168
  <bpmndi:BPMNEdge id="BPMNEdge_w_capsToTimeout" bpmnElement="w_capsToTimeout">
1130
- <di:waypoint x="2817" y="345" />
1131
- <di:waypoint x="2817" y="480" />
1132
- <di:waypoint x="2942" y="480" />
1169
+ <di:waypoint x="2967" y="345" />
1170
+ <di:waypoint x="2967" y="480" />
1171
+ <di:waypoint x="3092" y="480" />
1133
1172
  </bpmndi:BPMNEdge>
1134
1173
  <bpmndi:BPMNEdge id="BPMNEdge_w_capsTimeout" bpmnElement="w_capsTimeout">
1135
- <di:waypoint x="2978" y="480" />
1136
- <di:waypoint x="4034" y="480" />
1137
- <di:waypoint x="4034" y="100" />
1138
- <di:waypoint x="3678" y="100" />
1139
- <di:waypoint x="3678" y="120" />
1174
+ <di:waypoint x="3128" y="480" />
1175
+ <di:waypoint x="4184" y="480" />
1176
+ <di:waypoint x="4184" y="100" />
1177
+ <di:waypoint x="3828" y="100" />
1178
+ <di:waypoint x="3828" y="120" />
1140
1179
  <bpmndi:BPMNLabel>
1141
- <dc:Bounds x="3966" y="283" width="63" height="14" />
1180
+ <dc:Bounds x="4116" y="283" width="63" height="14" />
1142
1181
  </bpmndi:BPMNLabel>
1143
1182
  </bpmndi:BPMNEdge>
1144
1183
  <bpmndi:BPMNEdge id="BPMNEdge_w_done" bpmnElement="w_done">
1145
- <di:waypoint x="3303" y="185" />
1146
- <di:waypoint x="3303" y="240" />
1147
- <di:waypoint x="3996" y="240" />
1148
- <di:waypoint x="3996" y="178" />
1184
+ <di:waypoint x="3453" y="185" />
1185
+ <di:waypoint x="3453" y="240" />
1186
+ <di:waypoint x="4146" y="240" />
1187
+ <di:waypoint x="4146" y="178" />
1149
1188
  <bpmndi:BPMNLabel>
1150
- <dc:Bounds x="3909" y="218" width="32" height="14" />
1189
+ <dc:Bounds x="4059" y="218" width="32" height="14" />
1151
1190
  </bpmndi:BPMNLabel>
1152
1191
  </bpmndi:BPMNEdge>
1153
1192
  <bpmndi:BPMNEdge id="BPMNEdge_w_sla" bpmnElement="w_sla">
1154
- <di:waypoint x="3678" y="218" />
1155
- <di:waypoint x="3678" y="238" />
1156
- <di:waypoint x="3996" y="238" />
1157
- <di:waypoint x="3996" y="178" />
1193
+ <di:waypoint x="3828" y="218" />
1194
+ <di:waypoint x="3828" y="238" />
1195
+ <di:waypoint x="4146" y="238" />
1196
+ <di:waypoint x="4146" y="178" />
1158
1197
  <bpmndi:BPMNLabel>
1159
- <dc:Bounds x="3753" y="205" width="88" height="28" />
1198
+ <dc:Bounds x="3903" y="205" width="88" height="28" />
1160
1199
  </bpmndi:BPMNLabel>
1161
1200
  </bpmndi:BPMNEdge>
1162
1201
  <bpmndi:BPMNEdge id="BPMNEdge_w_answerLoop" bpmnElement="w_answerLoop">
1163
- <di:waypoint x="3853" y="185" />
1164
- <di:waypoint x="3853" y="240" />
1165
- <di:waypoint x="3128" y="240" />
1166
- <di:waypoint x="3128" y="200" />
1202
+ <di:waypoint x="4003" y="185" />
1203
+ <di:waypoint x="4003" y="240" />
1204
+ <di:waypoint x="3278" y="240" />
1205
+ <di:waypoint x="3278" y="200" />
1167
1206
  <bpmndi:BPMNLabel>
1168
- <dc:Bounds x="3191" y="218" width="49" height="14" />
1207
+ <dc:Bounds x="3341" y="218" width="49" height="14" />
1169
1208
  </bpmndi:BPMNLabel>
1170
1209
  </bpmndi:BPMNEdge>
1171
1210
  </bpmndi:BPMNPlane>