aboutsummaryrefslogtreecommitdiffstats
path: root/boot/sdc_serv.sh
blob: b48c84844fbc7efe449f56b53e3c0699d7856400 (plain)
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
#!/bin/sh
### BEGIN INIT INFO
# Provides:
# Required-Start:    $remote_fs $syslog
# Required-Stop:     $remote_fs $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Start daemon at boot time
# Description:       Enable service provided by daemon.
### END INIT INFO

dir="/opt"
cmd="./sdc_vm_init.sh"
user="root"

name=`basename $0`
pid_file="/var/run/$name.pid"
stdout_log="/var/log/$name.log"
stderr_log="/var/log/$name.err"

get_pid() {
    cat "$pid_file"
}

is_running() {
    [ -f "$pid_file" ] && ps `get_pid` > /dev/null 2>&1
}

case "$1" in
    start)
    if is_running; then
        echo "Already started"
    else
        echo "Starting $name"
        cd "$dir"
        if [ -z "$user" ]; then
            sudo $cmd >> "$stdout_log" 2>> "$stderr_log" &
        else
            sudo -u "$user" $cmd >> "$stdout_log" 2>> "$stderr_log" &
        fi
        echo $! > "$pid_file"
        if ! is_running; then
            echo "Unable to start, see $stdout_log and $stderr_log"
            exit 1
        fi
    fi
    ;;
    stop)
    if is_running; then
        echo -n "Stopping $name.."
        kill `get_pid`
        for i in {1..10}
        do
            if ! is_running; then
                break
            fi

            echo -n "."
            sleep 1
        done
        echo

        if is_running; then
            echo "Not stopped; may still be shutting down or shutdown may have failed"
            exit 1
        else
            echo "Stopped"
            if [ -f "$pid_file" ]; then
                rm "$pid_file"
            fi
        fi
    else
        echo "Not running"
    fi
    ;;
    restart)
    $0 stop
    if is_running; then
        echo "Unable to stop, will not attempt to start"
        exit 1
    fi
    $0 start
    ;;
    status)
    if is_running; then
        echo "Running"
    else
        echo "Stopped"
        exit 1
    fi
    ;;
    *)
    echo "Usage: $0 {start|stop|restart|status}"
    exit 1
    ;;
esac

exit 0
href='#n557'>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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
<?xml version="1.0" encoding="UTF-8"?>
<bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="_F0omAMXGEeW834CKd-K10Q" targetNamespace="http://camunda.org/schema/1.0/bpmn" exporter="Camunda Modeler" exporterVersion="1.4.0" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd">
  <bpmn2:process id="ReplaceVnfInfra" name="ReplaceVnfInfra" isExecutable="true">
    <bpmn2:scriptTask id="ScriptTask_1" name="Send Synch Response" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_5</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_0y0jt4l</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
def uvfm = new ReplaceVnfInfra()
uvfm.sendSynchResponse(execution)]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:sequenceFlow id="SequenceFlow_2" name="" sourceRef="Task_1rxiqe1" targetRef="ExclusiveGateway_045e1uz" />
    <bpmn2:scriptTask id="PreProcessRequest" name="Pre-Process Request" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_4</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_5</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
def uvfm = new ReplaceVnfInfra()
uvfm.preProcessRequest(execution)
]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:sequenceFlow id="SequenceFlow_5" name="" sourceRef="PreProcessRequest" targetRef="ScriptTask_1" />
    <bpmn2:callActivity id="CallActivity_1" name="Completion Handler" calledElement="CompleteMsoProcess">
      <bpmn2:extensionElements>
        <camunda:in source="RPLVnfI_CompletionHandlerRequest" target="CompleteMsoProcessRequest" />
        <camunda:in source="mso-request-id" target="mso-request-id" />
        <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" />
        <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
      </bpmn2:extensionElements>
      <bpmn2:incoming>SequenceFlow_17</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_14</bpmn2:outgoing>
    </bpmn2:callActivity>
    <bpmn2:sequenceFlow id="SequenceFlow_14" name="" sourceRef="CallActivity_1" targetRef="ScriptTask_4" />
    <bpmn2:endEvent id="EndEvent_1" name="TheEnd">
      <bpmn2:incoming>SequenceFlow_6</bpmn2:incoming>
      <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_5" />
    </bpmn2:endEvent>
    <bpmn2:scriptTask id="ScriptTask_4" name="Set Success Indicator" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_14</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_6</bpmn2:outgoing>
      <bpmn2:script><![CDATA[// The following variable is checked by the unit test
execution.setVariable("UpdateVfModuleInfraSuccessIndicator", true)]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:sequenceFlow id="SequenceFlow_6" name="" sourceRef="ScriptTask_4" targetRef="EndEvent_1" />
    <bpmn2:scriptTask id="ScriptTask_10" name="Completion Handler (prep)" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_3</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_17</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
def uvfm = new ReplaceVnfInfra()
uvfm.completionHandlerPrep(execution, 'RPLVnfI_CompletionHandlerRequest')
]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:sequenceFlow id="SequenceFlow_17" name="" sourceRef="ScriptTask_10" targetRef="CallActivity_1" />
    <bpmn2:subProcess id="SubProcess_1" name="Error Handler" triggeredByEvent="true">
      <bpmn2:startEvent id="StartEvent_3" name="Catch All Errors">
        <bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
        <bpmn2:errorEventDefinition id="ErrorEventDefinition_1" />
      </bpmn2:startEvent>
      <bpmn2:sequenceFlow id="SequenceFlow_1" name="" sourceRef="StartEvent_3" targetRef="ScriptTask_3" />
      <bpmn2:scriptTask id="ScriptTask_3" name="Fallout Handler (prep)" scriptFormat="groovy">
        <bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
        <bpmn2:outgoing>SequenceFlow_7</bpmn2:outgoing>
        <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
def uvfm = new UpdateVfModuleInfra()
uvfm.falloutHandlerPrep(execution, 'RPLVnfI_FalloutHandlerRequest')
]]></bpmn2:script>
      </bpmn2:scriptTask>
      <bpmn2:sequenceFlow id="SequenceFlow_7" sourceRef="ScriptTask_3" targetRef="CallActivity_2" />
      <bpmn2:callActivity id="CallActivity_2" name="Fallout Handler" calledElement="FalloutHandler">
        <bpmn2:extensionElements>
          <camunda:in source="RPLVnfI_FalloutHandlerRequest" target="FalloutHandlerRequest" />
          <camunda:in source="mso-request-id" target="mso-request-id" />
          <camunda:in source="mso-service-instance-id" target="mso-service-instance-id" />
          <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
        </bpmn2:extensionElements>
        <bpmn2:incoming>SequenceFlow_7</bpmn2:incoming>
        <bpmn2:outgoing>SequenceFlow_19</bpmn2:outgoing>
      </bpmn2:callActivity>
      <bpmn2:endEvent id="EndEvent_2">
        <bpmn2:incoming>SequenceFlow_19</bpmn2:incoming>
        <bpmn2:terminateEventDefinition id="TerminateEventDefinition_1" />
      </bpmn2:endEvent>
      <bpmn2:sequenceFlow id="SequenceFlow_19" name="" sourceRef="CallActivity_2" targetRef="EndEvent_2" />
    </bpmn2:subProcess>
    <bpmn2:endEvent id="EndEvent_3">
      <bpmn2:incoming>SequenceFlow_12</bpmn2:incoming>
      <bpmn2:terminateEventDefinition id="TerminateEventDefinition_2" />
    </bpmn2:endEvent>
    <bpmn2:boundaryEvent id="BoundaryEvent_1" name="" attachedToRef="SubProcess_1">
      <bpmn2:outgoing>SequenceFlow_12</bpmn2:outgoing>
      <bpmn2:errorEventDefinition id="ErrorEventDefinition_2" />
    </bpmn2:boundaryEvent>
    <bpmn2:sequenceFlow id="SequenceFlow_12" name="" sourceRef="BoundaryEvent_1" targetRef="EndEvent_3" />
    <bpmn2:startEvent id="StartEvent_1" name="Start">
      <bpmn2:outgoing>SequenceFlow_4</bpmn2:outgoing>
    </bpmn2:startEvent>
    <bpmn2:sequenceFlow id="SequenceFlow_4" name="" sourceRef="StartEvent_1" targetRef="PreProcessRequest" />
    <bpmn2:callActivity id="ScriptTask_6" name="DoDeleteVnfAndModules" calledElement="DoDeleteVnfAndModules">
      <bpmn2:extensionElements>
        <camunda:in source="RPLVnfI_requestId" target="msoRequestId" />
        <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
        <camunda:out source="WorkflowException" target="WorkflowException" />
        <camunda:in source="RPLVnfI_vnfId" target="vnfId" />
        <camunda:in source="RPLVnfI_serviceInstanceId" target="serviceInstanceId" />
        <camunda:in source="RPLVnfI_sdncVersion" target="sdncVersion" />
        <camunda:in source="RPLVnfI_cloudConfiguration" target="cloudConfiguration" />
      </bpmn2:extensionElements>
      <bpmn2:incoming>SequenceFlow_19ba94v</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_0gzzeru</bpmn2:outgoing>
    </bpmn2:callActivity>
    <bpmn2:sequenceFlow id="SequenceFlow_3" name="no" sourceRef="ExclusiveGateway_0l2z6wc" targetRef="ScriptTask_10" />
    <bpmn2:sequenceFlow id="SequenceFlow_1w35ov3" sourceRef="Task_1gg76h7" targetRef="Task_1opcb4j" />
    <bpmn2:callActivity id="Task_1gg76h7" name="Decompose Service" calledElement="DecomposeService">
      <bpmn2:extensionElements>
        <camunda:in source="msoRequestId" target="msoRequestId" />
        <camunda:in source="serviceInstanceId" target="serviceInstanceId" />
        <camunda:in source="RPLVnfI_serviceModelInfo" target="serviceModelInfo" />
        <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
        <camunda:out source="WorkflowException" target="WorkflowException" />
        <camunda:out source="serviceDecomposition" target="serviceDecomposition" />
      </bpmn2:extensionElements>
      <bpmn2:incoming>SequenceFlow_0y0jt4l</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_1w35ov3</bpmn2:outgoing>
    </bpmn2:callActivity>
    <bpmn2:sequenceFlow id="SequenceFlow_053qjfy" sourceRef="Task_1opcb4j" targetRef="Task_0vy2zge" />
    <bpmn2:scriptTask id="Task_1opcb4j" name="Get VnfResourceDecomposition" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_1w35ov3</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_053qjfy</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
def uvfm = new ReplaceVnfInfra()
uvfm.getVnfResourceDecomposition(execution)]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:sequenceFlow id="SequenceFlow_0y0jt4l" sourceRef="ScriptTask_1" targetRef="Task_1gg76h7" />
    <bpmn2:scriptTask id="Task_1rxiqe1" name="Check If VNF Is In Maintenance in A&#38;AI" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_16mo99z</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_193t8ts</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_2</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
def uvfm = new ReplaceVnfInfra()
uvfm.checkIfVnfInMaintInAAI(execution)
]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:sequenceFlow id="SequenceFlow_0usxnlk" sourceRef="Task_0vy2zge" targetRef="ExclusiveGateway_0q323wc" />
    <bpmn2:sequenceFlow id="SequenceFlow_1bkhs8m" name="no" sourceRef="ExclusiveGateway_0ud5uwa" targetRef="Task_1dtbnuy" />
    <bpmn2:sequenceFlow id="SequenceFlow_0gzzeru" sourceRef="ScriptTask_6" targetRef="ExclusiveGateway_0ulrq9g" />
    <bpmn2:scriptTask id="Task_0ap39ka" name="Set VNF inMaintenance Flag in A&#38;AI" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_0baosqi</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_18u8p2k</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_0k3fx7p</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
def uvfm = new ReplaceVnfInfra()
uvfm.setVnfInMaintFlagInAAI(execution, true)
]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:scriptTask id="Task_1drglpt" name="Unset VNF In Maintenance Flag in A&#38;AI" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_19lg15d</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_1lsfn19</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_12mfil6</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
def uvfm = new ReplaceVnfInfra()
uvfm.setVnfInMaintFlagInAAI(execution, false)
]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:scriptTask id="Task_0vy2zge" name="Check If Physical Servers Are Locked in A&#38;AI" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_053qjfy</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_0usxnlk</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
def uvfm = new ReplaceVnfInfra()
uvfm.checkIfPserversInMaintInAAI(execution)
]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:sequenceFlow id="SequenceFlow_0xx8y1s" sourceRef="Task_1dtbnuy" targetRef="ExclusiveGateway_1slvyx2" />
    <bpmn2:sequenceFlow id="SequenceFlow_0a6pdza" sourceRef="Task_1fj63ov" targetRef="ExclusiveGateway_1ichg7h" />
    <bpmn2:sequenceFlow id="SequenceFlow_13h26h9" sourceRef="Task_1cfkcss" targetRef="ExclusiveGateway_1etgtgi" />
    <bpmn2:scriptTask id="Task_1dtbnuy" name="Call APP-C VNF Lock" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_1bkhs8m</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_0eueu1t</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_0xx8y1s</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.appc.client.lcm.model.Action
import org.openecomp.mso.bpmn.infrastructure.scripts.*
def uvfm = new ReplaceVnfInfra()
uvfm.runAppcCommand(execution, Action.Lock)
]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:scriptTask id="Task_1fj63ov" name="Call APP-C Health Check" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_0qy68ib</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_1sla5dr</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_0a6pdza</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.appc.client.lcm.model.Action
import org.openecomp.mso.bpmn.infrastructure.scripts.*
def uvfm = new ReplaceVnfInfra()
uvfm.runAppcCommand(execution, Action.HealthCheck)]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:scriptTask id="Task_1cfkcss" name="Call APP-C VNF Graceful Stop" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_0q0qan8</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_0iektwg</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_13h26h9</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.appc.client.lcm.model.Action
import org.openecomp.mso.bpmn.infrastructure.scripts.*
def uvfm = new ReplaceVnfInfra()
uvfm.runAppcCommand(execution, Action.Stop)]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:sequenceFlow id="SequenceFlow_1uno5rs" sourceRef="Task_1hdg951" targetRef="ExclusiveGateway_02tj4dw" />
    <bpmn2:sequenceFlow id="SequenceFlow_1c79909" sourceRef="Task_1ca5ctq" targetRef="ExclusiveGateway_1gn5lab" />
    <bpmn2:scriptTask id="Task_1hdg951" name="Call APP-C VNF Start" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_04zwhw4</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_1uno5rs</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.appc.client.lcm.model.Action
import org.openecomp.mso.bpmn.infrastructure.scripts.*
def uvfm = new ReplaceVnfInfra()
uvfm.runAppcCommand(execution, Action.Start)]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:scriptTask id="Task_1ca5ctq" name="Call APP-C Health Check" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_162mm0m</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_1hx1ur7</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_1c79909</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.appc.client.lcm.model.Action
import org.openecomp.mso.bpmn.infrastructure.scripts.*
def uvfm = new ReplaceVnfInfra()
uvfm.runAppcCommand(execution, Action.HealthCheck)]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:sequenceFlow id="SequenceFlow_1xfbwpi" sourceRef="Task_1sove95" targetRef="ExclusiveGateway_06mv93h" />
    <bpmn2:scriptTask id="Task_1sove95" name="Call APP-C VNF Unlock" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_197t3qk</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_0ukzynj</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_1xfbwpi</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.appc.client.lcm.model.Action
import org.openecomp.mso.bpmn.infrastructure.scripts.*
def uvfm = new ReplaceVnfInfra()
uvfm.runAppcCommand(execution, Action.Unlock)]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:exclusiveGateway id="ExclusiveGateway_0q323wc" name="Error on PServers Check?" default="SequenceFlow_16mo99z">
      <bpmn2:incoming>SequenceFlow_0usxnlk</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_16mo99z</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_1qmz2ez</bpmn2:outgoing>
    </bpmn2:exclusiveGateway>
    <bpmn2:sequenceFlow id="SequenceFlow_16mo99z" name="no" sourceRef="ExclusiveGateway_0q323wc" targetRef="Task_1rxiqe1" />
    <bpmn2:exclusiveGateway id="ExclusiveGateway_045e1uz" name="Error On inMaintenance Check?" default="SequenceFlow_0baosqi">
      <bpmn2:incoming>SequenceFlow_2</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_0baosqi</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_03rkfbo</bpmn2:outgoing>
    </bpmn2:exclusiveGateway>
    <bpmn2:sequenceFlow id="SequenceFlow_0baosqi" name="no" sourceRef="ExclusiveGateway_045e1uz" targetRef="Task_0ap39ka" />
    <bpmn2:callActivity id="Task_0q5cdit" name="Rainy Day Handler" calledElement="RainyDayHandler">
      <bpmn2:extensionElements>
        <camunda:in source="msoRequestId" target="msoRequestId" />
        <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" />
        <camunda:in source="RPLVnfI_serviceType" target="serviceType" />
        <camunda:in source="RPLVnfI_nfRole" target="vnfType" />
        <camunda:in source="RPLVnfI_currentActivity" target="currentActivity" />
        <camunda:in source="RPLVnfI_workStep" target="workStep" />
        <camunda:in source="RPLVnfI_failedActivity" target="failedActivity" />
        <camunda:in source="RPLVnfI_errorCode" target="errorCode" />
        <camunda:in source="RPLVnfI_errorText" target="errorText" />
        <camunda:out source="WorkflowException" target="WorkflowException" />
        <camunda:out source="handlingCode" target="RPLVnfI_disposition" />
        <camunda:in source="RPLVnfI_requestorId" target="requestorId" />
        <camunda:out source="taskId" target="RPLVnfI_taskId" />
      </bpmn2:extensionElements>
      <bpmn2:incoming>SequenceFlow_1qmz2ez</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_03rkfbo</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_1lsm3bn</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_0bduwog</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_0uwar5b</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_0i7hfj2</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_13yjc85</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_0waedj5</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_1hg9c2l</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_0gej71y</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_0pfydeg</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_10ek8l4</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_0v0u7mf</bpmn2:outgoing>
    </bpmn2:callActivity>
    <bpmn2:sequenceFlow id="SequenceFlow_1qmz2ez" name="yes" sourceRef="ExclusiveGateway_0q323wc" targetRef="Task_0q5cdit">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_errorCode") != "0"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:sequenceFlow id="SequenceFlow_03rkfbo" name="yes" sourceRef="ExclusiveGateway_045e1uz" targetRef="Task_0q5cdit">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_errorCode") != "0"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:sequenceFlow id="SequenceFlow_0v0u7mf" sourceRef="Task_0q5cdit" targetRef="ExclusiveGateway_0xlxgl0" />
    <bpmn2:task id="Task_0zbogrm" name="Rollback Processing">
      <bpmn2:incoming>SequenceFlow_1qr8msw</bpmn2:incoming>
    </bpmn2:task>
    <bpmn2:sequenceFlow id="SequenceFlow_0vpd06n" name="Abort" sourceRef="ExclusiveGateway_0xlxgl0" targetRef="Task_1tg549h">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_disposition") == "Abort"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:sequenceFlow id="SequenceFlow_1qr8msw" name="Rollback" sourceRef="ExclusiveGateway_0xlxgl0" targetRef="Task_0zbogrm">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_disposition") == "Rollback"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:exclusiveGateway id="ExclusiveGateway_0ud5uwa" name="Eror on inMaintenance Set?" default="SequenceFlow_1bkhs8m">
      <bpmn2:incoming>SequenceFlow_0k3fx7p</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_1bkhs8m</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_1lsm3bn</bpmn2:outgoing>
    </bpmn2:exclusiveGateway>
    <bpmn2:sequenceFlow id="SequenceFlow_0k3fx7p" sourceRef="Task_0ap39ka" targetRef="ExclusiveGateway_0ud5uwa" />
    <bpmn2:sequenceFlow id="SequenceFlow_1lsm3bn" name="yes" sourceRef="ExclusiveGateway_0ud5uwa" targetRef="Task_0q5cdit">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_errorCode") != "0"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:exclusiveGateway id="ExclusiveGateway_1slvyx2" name="Error on VNF Lock?" default="SequenceFlow_0qy68ib">
      <bpmn2:incoming>SequenceFlow_0xx8y1s</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_0qy68ib</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_0bduwog</bpmn2:outgoing>
    </bpmn2:exclusiveGateway>
    <bpmn2:sequenceFlow id="SequenceFlow_0qy68ib" name="no" sourceRef="ExclusiveGateway_1slvyx2" targetRef="Task_1fj63ov" />
    <bpmn2:exclusiveGateway id="ExclusiveGateway_1ichg7h" name="Error on Pre Health Check?" default="SequenceFlow_0q0qan8">
      <bpmn2:incoming>SequenceFlow_0a6pdza</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_0q0qan8</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_0uwar5b</bpmn2:outgoing>
    </bpmn2:exclusiveGateway>
    <bpmn2:sequenceFlow id="SequenceFlow_0q0qan8" name="no" sourceRef="ExclusiveGateway_1ichg7h" targetRef="Task_1cfkcss" />
    <bpmn2:exclusiveGateway id="ExclusiveGateway_1etgtgi" name="Error on VNF Stop?" default="SequenceFlow_1c0vdki">
      <bpmn2:incoming>SequenceFlow_13h26h9</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_1c0vdki</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_0i7hfj2</bpmn2:outgoing>
    </bpmn2:exclusiveGateway>
    <bpmn2:sequenceFlow id="SequenceFlow_1c0vdki" name="no" sourceRef="ExclusiveGateway_1etgtgi" targetRef="Task_0eae8go" />
    <bpmn2:sequenceFlow id="SequenceFlow_0bduwog" name="yes" sourceRef="ExclusiveGateway_1slvyx2" targetRef="Task_0q5cdit">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_errorCode") != "0"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:sequenceFlow id="SequenceFlow_0uwar5b" name="yes" sourceRef="ExclusiveGateway_1ichg7h" targetRef="Task_0q5cdit">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_errorCode") != "0"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:sequenceFlow id="SequenceFlow_0i7hfj2" name="yes" sourceRef="ExclusiveGateway_1etgtgi" targetRef="Task_0q5cdit">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_errorCode") != "0"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:exclusiveGateway id="ExclusiveGateway_0ulrq9g" name="Error on DoDeleteVnfAndNModules?" default="SequenceFlow_0bxgny0">
      <bpmn2:incoming>SequenceFlow_0gzzeru</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_10ek8l4</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_0bxgny0</bpmn2:outgoing>
    </bpmn2:exclusiveGateway>
    <bpmn2:sequenceFlow id="SequenceFlow_04zwhw4" name="no" sourceRef="ExclusiveGateway_084iffr" targetRef="Task_1hdg951" />
    <bpmn2:sequenceFlow id="SequenceFlow_10ek8l4" name="yes" sourceRef="ExclusiveGateway_0ulrq9g" targetRef="Task_0q5cdit">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_errorCode") != "0"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:exclusiveGateway id="ExclusiveGateway_02tj4dw" name="Error on VNF Start?" default="SequenceFlow_162mm0m">
      <bpmn2:incoming>SequenceFlow_1uno5rs</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_162mm0m</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_0waedj5</bpmn2:outgoing>
    </bpmn2:exclusiveGateway>
    <bpmn2:sequenceFlow id="SequenceFlow_162mm0m" name="no" sourceRef="ExclusiveGateway_02tj4dw" targetRef="Task_1ca5ctq" />
    <bpmn2:exclusiveGateway id="ExclusiveGateway_1gn5lab" name="Error on Post Health Check?" default="SequenceFlow_197t3qk">
      <bpmn2:incoming>SequenceFlow_1c79909</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_197t3qk</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_1hg9c2l</bpmn2:outgoing>
    </bpmn2:exclusiveGateway>
    <bpmn2:sequenceFlow id="SequenceFlow_197t3qk" name="no" sourceRef="ExclusiveGateway_1gn5lab" targetRef="Task_1sove95" />
    <bpmn2:exclusiveGateway id="ExclusiveGateway_06mv93h" name="Error on VNF Unlock?" default="SequenceFlow_19lg15d">
      <bpmn2:incoming>SequenceFlow_1xfbwpi</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_19lg15d</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_0gej71y</bpmn2:outgoing>
    </bpmn2:exclusiveGateway>
    <bpmn2:sequenceFlow id="SequenceFlow_19lg15d" name="no" sourceRef="ExclusiveGateway_06mv93h" targetRef="Task_1drglpt" />
    <bpmn2:exclusiveGateway id="ExclusiveGateway_0l2z6wc" name="Erorr on inMaintenance Unset?" default="SequenceFlow_3">
      <bpmn2:incoming>SequenceFlow_12mfil6</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_13yjc85</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_3</bpmn2:outgoing>
    </bpmn2:exclusiveGateway>
    <bpmn2:sequenceFlow id="SequenceFlow_12mfil6" sourceRef="Task_1drglpt" targetRef="ExclusiveGateway_0l2z6wc" />
    <bpmn2:sequenceFlow id="SequenceFlow_13yjc85" name="yes" sourceRef="ExclusiveGateway_0l2z6wc" targetRef="Task_0q5cdit">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_errorCode") != "0"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:sequenceFlow id="SequenceFlow_0waedj5" name="yes" sourceRef="ExclusiveGateway_02tj4dw" targetRef="Task_0q5cdit">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_errorCode") != "0"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:sequenceFlow id="SequenceFlow_1hg9c2l" name="yes" sourceRef="ExclusiveGateway_1gn5lab" targetRef="Task_0q5cdit">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_errorCode") != "0"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:sequenceFlow id="SequenceFlow_0gej71y" name="yes" sourceRef="ExclusiveGateway_06mv93h" targetRef="Task_0q5cdit">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_errorCode") != "0"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:scriptTask id="Task_1tg549h" name="Abort Processing" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_0vpd06n</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_051zp79</bpmn2:incoming>
      <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
def uvfm = new ReplaceVnfInfra()
uvfm.abortProcessing(execution)]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:exclusiveGateway id="ExclusiveGateway_0xlxgl0" name="Check Disposition">
      <bpmn2:incoming>SequenceFlow_0v0u7mf</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_0vpd06n</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_1qr8msw</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_05gpym3</bpmn2:outgoing>
    </bpmn2:exclusiveGateway>
    <bpmn2:exclusiveGateway id="ExclusiveGateway_0y82zzx" name="Which step to skip?" default="SequenceFlow_051zp79">
      <bpmn2:incoming>SequenceFlow_05gpym3</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_1sla5dr</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_0iektwg</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_1ttepat</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_1hx1ur7</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_0ukzynj</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_1lsfn19</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_051zp79</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_193t8ts</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_18u8p2k</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_0eueu1t</bpmn2:outgoing>
    </bpmn2:exclusiveGateway>
    <bpmn2:sequenceFlow id="SequenceFlow_05gpym3" name="Skip" sourceRef="ExclusiveGateway_0xlxgl0" targetRef="ExclusiveGateway_0y82zzx">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_disposition") == "Skip"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:sequenceFlow id="SequenceFlow_1sla5dr" name="Skip APP-C VNF Lock" sourceRef="ExclusiveGateway_0y82zzx" targetRef="Task_1fj63ov">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_workStep") == "LockVNF"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:sequenceFlow id="SequenceFlow_0iektwg" name="Skip APP-C VNF Pre Health Check" sourceRef="ExclusiveGateway_0y82zzx" targetRef="Task_1cfkcss">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_workStep") == "HealthCheckVNF1"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:sequenceFlow id="SequenceFlow_1ttepat" name="Skip APP-C VNF Stop" sourceRef="ExclusiveGateway_0y82zzx" targetRef="Task_0eae8go">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_workStep") == "StopVNF"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:sequenceFlow id="SequenceFlow_1hx1ur7" name="Skip APP-C VNF Start" sourceRef="ExclusiveGateway_0y82zzx" targetRef="Task_1ca5ctq">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_workStep") == "StartVNF"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:sequenceFlow id="SequenceFlow_0ukzynj" name="Skip APP-C Post Health Check" sourceRef="ExclusiveGateway_0y82zzx" targetRef="Task_1sove95">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_workStep") == "HealthCheckVNF2"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:sequenceFlow id="SequenceFlow_1lsfn19" name="Skip APP-C VNF Unlock" sourceRef="ExclusiveGateway_0y82zzx" targetRef="Task_1drglpt">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_workStep") == "UnlockVNF"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:sequenceFlow id="SequenceFlow_19ba94v" sourceRef="Task_0eae8go" targetRef="ScriptTask_6" />
    <bpmn2:scriptTask id="Task_0eae8go" name="Prepare DoDeleteVnfAndModules" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_1c0vdki</bpmn2:incoming>
      <bpmn2:incoming>SequenceFlow_1ttepat</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_19ba94v</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
def uvfm = new ReplaceVnfInfra()
uvfm.prepDoDeleteVnfAndModules(execution)]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:scriptTask id="Task_040hi91" name="Prepare DoCreateVnfAndModules" scriptFormat="groovy">
      <bpmn2:incoming>SequenceFlow_0bxgny0</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_1qm0ygo</bpmn2:outgoing>
      <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.infrastructure.scripts.*
def uvfm = new ReplaceVnfInfra()
uvfm.prepDoCreateVnfAndModules(execution)]]></bpmn2:script>
    </bpmn2:scriptTask>
    <bpmn2:callActivity id="Task_15hpowt" name="DoCreateVnfAndModules" calledElement="DoCreateVnfAndModules">
      <bpmn2:incoming>SequenceFlow_1qm0ygo</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_0he2w4b</bpmn2:outgoing>
    </bpmn2:callActivity>
    <bpmn2:exclusiveGateway id="ExclusiveGateway_084iffr" name="Error on DoCreateVnfModules?">
      <bpmn2:incoming>SequenceFlow_0he2w4b</bpmn2:incoming>
      <bpmn2:outgoing>SequenceFlow_0pfydeg</bpmn2:outgoing>
      <bpmn2:outgoing>SequenceFlow_04zwhw4</bpmn2:outgoing>
    </bpmn2:exclusiveGateway>
    <bpmn2:sequenceFlow id="SequenceFlow_0pfydeg" name="yes" sourceRef="ExclusiveGateway_084iffr" targetRef="Task_0q5cdit">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_errorCode") != "0"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:sequenceFlow id="SequenceFlow_0bxgny0" name="no" sourceRef="ExclusiveGateway_0ulrq9g" targetRef="Task_040hi91" />
    <bpmn2:sequenceFlow id="SequenceFlow_1qm0ygo" sourceRef="Task_040hi91" targetRef="Task_15hpowt" />
    <bpmn2:sequenceFlow id="SequenceFlow_0he2w4b" sourceRef="Task_15hpowt" targetRef="ExclusiveGateway_084iffr" />
    <bpmn2:sequenceFlow id="SequenceFlow_051zp79" name="" sourceRef="ExclusiveGateway_0y82zzx" targetRef="Task_1tg549h" />
    <bpmn2:sequenceFlow id="SequenceFlow_193t8ts" name="Skip Check if PServers Locked in AAI" sourceRef="ExclusiveGateway_0y82zzx" targetRef="Task_1rxiqe1">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_workStep") == "checkIfPserversInMaintInAAI"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:sequenceFlow id="SequenceFlow_18u8p2k" name="Skip If VNF Is in Maint in AAI" sourceRef="ExclusiveGateway_0y82zzx" targetRef="Task_0ap39ka">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_workStep") == "checkIfVnfInMaintInAAI"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
    <bpmn2:sequenceFlow id="SequenceFlow_0eueu1t" name="Skip Set VNF In Maint in AAI" sourceRef="ExclusiveGateway_0y82zzx" targetRef="Task_1dtbnuy">
      <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"><![CDATA[execution.getVariable("RPLVnfI_workStep") == "setVnfInMaintFlagInAAI"]]></bpmn2:conditionExpression>
    </bpmn2:sequenceFlow>
  </bpmn2:process>
  <bpmn2:error id="Error_1" name="MSOWorkflowException" errorCode="MSOWorkflowException" />
  <bpmndi:BPMNDiagram id="BPMNDiagram_1">
    <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="ReplaceVnfInfra">
      <bpmndi:BPMNShape id="_BPMNShape_StartEvent_50" bpmnElement="StartEvent_1">
        <dc:Bounds x="97" y="72" width="36" height="36" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="103" y="113" width="23" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="_BPMNShape_EndEvent_125" bpmnElement="EndEvent_1">
        <dc:Bounds x="595" y="975" width="36" height="36" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="594" y="1016" width="38" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_4" bpmnElement="SequenceFlow_4" sourceElement="_BPMNShape_StartEvent_50" targetElement="_BPMNShape_ScriptTask_124">
        <di:waypoint xsi:type="dc:Point" x="133" y="90" />
        <di:waypoint xsi:type="dc:Point" x="209" y="90" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="171" y="75" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_124" bpmnElement="PreProcessRequest">
        <dc:Bounds x="209" y="50" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_5" bpmnElement="SequenceFlow_5" sourceElement="_BPMNShape_ScriptTask_124" targetElement="_BPMNShape_ScriptTask_125">
        <di:waypoint xsi:type="dc:Point" x="309" y="90" />
        <di:waypoint xsi:type="dc:Point" x="373" y="90" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="341" y="75" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_125" bpmnElement="ScriptTask_1">
        <dc:Bounds x="373" y="50" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="SequenceFlow_2" sourceElement="_BPMNShape_ScriptTask_125">
        <di:waypoint xsi:type="dc:Point" x="525" y="237" />
        <di:waypoint xsi:type="dc:Point" x="601" y="237" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="563" y="222" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_127" bpmnElement="ScriptTask_4">
        <dc:Bounds x="439" y="953" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_6" bpmnElement="SequenceFlow_6" sourceElement="_BPMNShape_ScriptTask_127" targetElement="_BPMNShape_EndEvent_125">
        <di:waypoint xsi:type="dc:Point" x="539" y="993" />
        <di:waypoint xsi:type="dc:Point" x="595" y="993" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="716" y="834" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_133" bpmnElement="ScriptTask_10">
        <dc:Bounds x="139" y="953" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="_BPMNShape_CallActivity_27" bpmnElement="CallActivity_1">
        <dc:Bounds x="289" y="953" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_17" bpmnElement="SequenceFlow_17" sourceElement="_BPMNShape_ScriptTask_133" targetElement="_BPMNShape_CallActivity_27">
        <di:waypoint xsi:type="dc:Point" x="239" y="993" />
        <di:waypoint xsi:type="dc:Point" x="289" y="993" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="264" y="999" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="_BPMNShape_SubProcess_17" bpmnElement="SubProcess_1" isExpanded="true">
        <dc:Bounds x="85" y="1189" width="565" height="241" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="_BPMNShape_StartEvent_52" bpmnElement="StartEvent_3">
        <dc:Bounds x="149" y="1283" width="36" height="36" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="128" y="1324" width="77" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_136" bpmnElement="ScriptTask_3">
        <dc:Bounds x="229" y="1261" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_52" targetElement="_BPMNShape_ScriptTask_136">
        <di:waypoint xsi:type="dc:Point" x="185" y="1301" />
        <di:waypoint xsi:type="dc:Point" x="229" y="1301" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="232" y="1601" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_7" bpmnElement="SequenceFlow_7" sourceElement="_BPMNShape_ScriptTask_136" targetElement="_BPMNShape_CallActivity_28">
        <di:waypoint xsi:type="dc:Point" x="329" y="1301" />
        <di:waypoint xsi:type="dc:Point" x="397" y="1301" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="345" y="1301" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="_BPMNShape_EndEvent_126" bpmnElement="EndEvent_2">
        <dc:Bounds x="553" y="1283" width="36" height="36" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="571" y="1324" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="_BPMNShape_BoundaryEvent_43" bpmnElement="BoundaryEvent_1">
        <dc:Bounds x="632" y="1283" width="36" height="36" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="650" y="1324" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="_BPMNShape_EndEvent_127" bpmnElement="EndEvent_3">
        <dc:Bounds x="726" y="1283" width="36" height="36" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="744" y="1324" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_12" bpmnElement="SequenceFlow_12" sourceElement="_BPMNShape_BoundaryEvent_43" targetElement="_BPMNShape_EndEvent_127">
        <di:waypoint xsi:type="dc:Point" x="668" y="1301" />
        <di:waypoint xsi:type="dc:Point" x="726" y="1301" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="697" y="1286" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="_BPMNShape_CallActivity_28" bpmnElement="CallActivity_2">
        <dc:Bounds x="397" y="1261" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_14" bpmnElement="SequenceFlow_14" sourceElement="_BPMNShape_CallActivity_27" targetElement="_BPMNShape_ScriptTask_127">
        <di:waypoint xsi:type="dc:Point" x="389" y="993" />
        <di:waypoint xsi:type="dc:Point" x="439" y="993" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="432" y="961" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_19" bpmnElement="SequenceFlow_19" sourceElement="_BPMNShape_CallActivity_28" targetElement="_BPMNShape_EndEvent_126">
        <di:waypoint xsi:type="dc:Point" x="497" y="1301" />
        <di:waypoint xsi:type="dc:Point" x="553" y="1301" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="390" y="1361" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_181" bpmnElement="ScriptTask_6">
        <dc:Bounds x="289" y="559" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_3" bpmnElement="SequenceFlow_3" sourceElement="_BPMNShape_ScriptTask_181" targetElement="_BPMNShape_ScriptTask_133">
        <di:waypoint xsi:type="dc:Point" x="1130" y="835" />
        <di:waypoint xsi:type="dc:Point" x="1130" y="900" />
        <di:waypoint xsi:type="dc:Point" x="99" y="900" />
        <di:waypoint xsi:type="dc:Point" x="99" y="993" />
        <di:waypoint xsi:type="dc:Point" x="139" y="993" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1109" y="862" width="12" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_1w35ov3_di" bpmnElement="SequenceFlow_1w35ov3">
        <di:waypoint xsi:type="dc:Point" x="655" y="90" />
        <di:waypoint xsi:type="dc:Point" x="718" y="90" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="687" y="75" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="CallActivity_0qfx7sz_di" bpmnElement="Task_1gg76h7">
        <dc:Bounds x="555" y="50" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_053qjfy_di" bpmnElement="SequenceFlow_053qjfy">
        <di:waypoint xsi:type="dc:Point" x="818" y="90" />
        <di:waypoint xsi:type="dc:Point" x="982" y="90" />
        <di:waypoint xsi:type="dc:Point" x="982" y="156" />
        <di:waypoint xsi:type="dc:Point" x="103" y="156" />
        <di:waypoint xsi:type="dc:Point" x="103" y="237" />
        <di:waypoint xsi:type="dc:Point" x="131" y="237" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="543" y="141" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ScriptTask_08xzuox_di" bpmnElement="Task_1opcb4j">
        <dc:Bounds x="718" y="50" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_0y0jt4l_di" bpmnElement="SequenceFlow_0y0jt4l">
        <di:waypoint xsi:type="dc:Point" x="473" y="90" />
        <di:waypoint xsi:type="dc:Point" x="555" y="90" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="514" y="75" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ScriptTask_19pf9z8_di" bpmnElement="Task_1rxiqe1">
        <dc:Bounds x="425" y="197" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_0usxnlk_di" bpmnElement="SequenceFlow_0usxnlk">
        <di:waypoint xsi:type="dc:Point" x="231" y="237" />
        <di:waypoint xsi:type="dc:Point" x="292" y="237" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="262" y="222" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_1bkhs8m_di" bpmnElement="SequenceFlow_1bkhs8m">
        <di:waypoint xsi:type="dc:Point" x="896" y="264" />
        <di:waypoint xsi:type="dc:Point" x="896" y="339" />
        <di:waypoint xsi:type="dc:Point" x="98" y="339" />
        <di:waypoint xsi:type="dc:Point" x="98" y="427" />
        <di:waypoint xsi:type="dc:Point" x="139" y="427" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="905" y="313.95238095238096" width="12" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_0gzzeru_di" bpmnElement="SequenceFlow_0gzzeru">
        <di:waypoint xsi:type="dc:Point" x="389" y="599" />
        <di:waypoint xsi:type="dc:Point" x="441" y="599" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="415" y="584" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ScriptTask_0wa4zya_di" bpmnElement="Task_0ap39ka">
        <dc:Bounds x="714" y="197" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="ScriptTask_0sgm9bu_di" bpmnElement="Task_1drglpt">
        <dc:Bounds x="960" y="770" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="ScriptTask_16jtt5t_di" bpmnElement="Task_0vy2zge">
        <dc:Bounds x="131" y="197" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_0xx8y1s_di" bpmnElement="SequenceFlow_0xx8y1s">
        <di:waypoint xsi:type="dc:Point" x="239" y="427" />
        <di:waypoint xsi:type="dc:Point" x="292" y="427" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="266" y="412" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_0a6pdza_di" bpmnElement="SequenceFlow_0a6pdza">
        <di:waypoint xsi:type="dc:Point" x="525" y="427" />
        <di:waypoint xsi:type="dc:Point" x="601" y="427" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="563" y="412" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_13h26h9_di" bpmnElement="SequenceFlow_13h26h9">
        <di:waypoint xsi:type="dc:Point" x="814" y="427" />
        <di:waypoint xsi:type="dc:Point" x="871" y="427" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="843" y="412" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ScriptTask_02wc9i0_di" bpmnElement="Task_1dtbnuy">
        <dc:Bounds x="139" y="387" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="ScriptTask_0mz2hdm_di" bpmnElement="Task_1fj63ov">
        <dc:Bounds x="425" y="387" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="ScriptTask_1wagy2o_di" bpmnElement="Task_1cfkcss">
        <dc:Bounds x="714" y="387" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_1uno5rs_di" bpmnElement="SequenceFlow_1uno5rs">
        <di:waypoint xsi:type="dc:Point" x="239" y="810" />
        <di:waypoint xsi:type="dc:Point" x="292" y="810" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="266" y="795" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_1c79909_di" bpmnElement="SequenceFlow_1c79909">
        <di:waypoint xsi:type="dc:Point" x="525" y="810" />
        <di:waypoint xsi:type="dc:Point" x="601" y="810" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="563" y="795" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ScriptTask_13zephm_di" bpmnElement="Task_1hdg951">
        <dc:Bounds x="139" y="770" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="ScriptTask_11xqphb_di" bpmnElement="Task_1ca5ctq">
        <dc:Bounds x="425" y="770" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_1xfbwpi_di" bpmnElement="SequenceFlow_1xfbwpi">
        <di:waypoint xsi:type="dc:Point" x="814" y="810" />
        <di:waypoint xsi:type="dc:Point" x="871" y="810" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="843" y="795" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ScriptTask_0a4ovfa_di" bpmnElement="Task_1sove95">
        <dc:Bounds x="714" y="770" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="ExclusiveGateway_0q323wc_di" bpmnElement="ExclusiveGateway_0q323wc" isMarkerVisible="true">
        <dc:Bounds x="291.803" y="212" width="50" height="50" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="274" y="262" width="86" height="24" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_16mo99z_di" bpmnElement="SequenceFlow_16mo99z">
        <di:waypoint xsi:type="dc:Point" x="342" y="237" />
        <di:waypoint xsi:type="dc:Point" x="425" y="237" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="373" y="213" width="12" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ExclusiveGateway_045e1uz_di" bpmnElement="ExclusiveGateway_045e1uz" isMarkerVisible="true">
        <dc:Bounds x="601" y="212" width="50" height="50" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="589" y="262" width="73" height="36" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_0baosqi_di" bpmnElement="SequenceFlow_0baosqi">
        <di:waypoint xsi:type="dc:Point" x="651" y="237" />
        <di:waypoint xsi:type="dc:Point" x="714" y="237" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="673" y="214" width="12" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="CallActivity_1k5n5d1_di" bpmnElement="Task_0q5cdit">
        <dc:Bounds x="1132" y="470" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_1qmz2ez_di" bpmnElement="SequenceFlow_1qmz2ez">
        <di:waypoint xsi:type="dc:Point" x="317" y="212" />
        <di:waypoint xsi:type="dc:Point" x="317" y="191" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="191" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="470" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="378" y="196" width="18" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_03rkfbo_di" bpmnElement="SequenceFlow_03rkfbo">
        <di:waypoint xsi:type="dc:Point" x="626" y="212" />
        <di:waypoint xsi:type="dc:Point" x="626" y="187" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="187" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="470" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="683" y="166" width="18" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_0v0u7mf_di" bpmnElement="SequenceFlow_0v0u7mf">
        <di:waypoint xsi:type="dc:Point" x="1232" y="510" />
        <di:waypoint xsi:type="dc:Point" x="1314" y="510" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1273" y="495" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="Task_0zbogrm_di" bpmnElement="Task_0zbogrm">
        <dc:Bounds x="1438" y="470" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_0vpd06n_di" bpmnElement="SequenceFlow_0vpd06n">
        <di:waypoint xsi:type="dc:Point" x="1339" y="485" />
        <di:waypoint xsi:type="dc:Point" x="1339" y="373" />
        <di:waypoint xsi:type="dc:Point" x="1438" y="373" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1390" y="377" width="26" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_1qr8msw_di" bpmnElement="SequenceFlow_1qr8msw">
        <di:waypoint xsi:type="dc:Point" x="1364" y="510" />
        <di:waypoint xsi:type="dc:Point" x="1405" y="510" />
        <di:waypoint xsi:type="dc:Point" x="1405" y="510" />
        <di:waypoint xsi:type="dc:Point" x="1438" y="510" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1380" y="515" width="42" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ExclusiveGateway_0ud5uwa_di" bpmnElement="ExclusiveGateway_0ud5uwa" isMarkerVisible="true">
        <dc:Bounds x="871.1194471865745" y="211.86673247778873" width="50" height="50" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="904" y="257.86673247778873" width="73" height="36" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_0k3fx7p_di" bpmnElement="SequenceFlow_0k3fx7p">
        <di:waypoint xsi:type="dc:Point" x="814" y="237" />
        <di:waypoint xsi:type="dc:Point" x="871" y="237" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="843" y="222" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_1lsm3bn_di" bpmnElement="SequenceFlow_1lsm3bn">
        <di:waypoint xsi:type="dc:Point" x="921" y="237" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="237" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="470" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1044" y="214" width="18" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ExclusiveGateway_1slvyx2_di" bpmnElement="ExclusiveGateway_1slvyx2" isMarkerVisible="true">
        <dc:Bounds x="292" y="402" width="50" height="50" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="283" y="452" width="68" height="24" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_0qy68ib_di" bpmnElement="SequenceFlow_0qy68ib">
        <di:waypoint xsi:type="dc:Point" x="342" y="427" />
        <di:waypoint xsi:type="dc:Point" x="425" y="427" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="378" y="412" width="12" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ExclusiveGateway_1ichg7h_di" bpmnElement="ExclusiveGateway_1ichg7h" isMarkerVisible="true">
        <dc:Bounds x="601" y="402" width="50" height="50" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="590" y="452" width="72" height="24" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_0q0qan8_di" bpmnElement="SequenceFlow_0q0qan8">
        <di:waypoint xsi:type="dc:Point" x="651" y="427" />
        <di:waypoint xsi:type="dc:Point" x="714" y="427" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="677" y="412" width="12" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ExclusiveGateway_1etgtgi_di" bpmnElement="ExclusiveGateway_1etgtgi" isMarkerVisible="true">
        <dc:Bounds x="870.9141164856861" y="402" width="50" height="50" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="909" y="445" width="68" height="24" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_1c0vdki_di" bpmnElement="SequenceFlow_1c0vdki">
        <di:waypoint xsi:type="dc:Point" x="896" y="452" />
        <di:waypoint xsi:type="dc:Point" x="896" y="507" />
        <di:waypoint xsi:type="dc:Point" x="90" y="507" />
        <di:waypoint xsi:type="dc:Point" x="90" y="599" />
        <di:waypoint xsi:type="dc:Point" x="131" y="599" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="906" y="484" width="12" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_0bduwog_di" bpmnElement="SequenceFlow_0bduwog">
        <di:waypoint xsi:type="dc:Point" x="317" y="402" />
        <di:waypoint xsi:type="dc:Point" x="317" y="354" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="354" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="470" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="375" y="356" width="18" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_0uwar5b_di" bpmnElement="SequenceFlow_0uwar5b">
        <di:waypoint xsi:type="dc:Point" x="626" y="402" />
        <di:waypoint xsi:type="dc:Point" x="626" y="359" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="359" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="470" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="676" y="367" width="18" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_0i7hfj2_di" bpmnElement="SequenceFlow_0i7hfj2">
        <di:waypoint xsi:type="dc:Point" x="921" y="427" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="427" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="470" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1044" y="412" width="18" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ExclusiveGateway_0ulrq9g_di" bpmnElement="ExclusiveGateway_0ulrq9g" isMarkerVisible="true">
        <dc:Bounds x="441" y="574" width="50" height="50" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="445" y="631" width="88" height="36" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_04zwhw4_di" bpmnElement="SequenceFlow_04zwhw4">
        <di:waypoint xsi:type="dc:Point" x="896" y="625" />
        <di:waypoint xsi:type="dc:Point" x="896" y="683" />
        <di:waypoint xsi:type="dc:Point" x="91" y="683" />
        <di:waypoint xsi:type="dc:Point" x="91" y="810" />
        <di:waypoint xsi:type="dc:Point" x="139" y="810" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="94" y="740.2320415029827" width="12" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_10ek8l4_di" bpmnElement="SequenceFlow_10ek8l4">
        <di:waypoint xsi:type="dc:Point" x="466" y="574" />
        <di:waypoint xsi:type="dc:Point" x="466" y="530" />
        <di:waypoint xsi:type="dc:Point" x="1132" y="530" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1039" y="503.5367415795749" width="18" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ExclusiveGateway_02tj4dw_di" bpmnElement="ExclusiveGateway_02tj4dw" isMarkerVisible="true">
        <dc:Bounds x="292.1076011846002" y="785" width="50" height="50" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="284" y="835" width="68" height="24" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_162mm0m_di" bpmnElement="SequenceFlow_162mm0m">
        <di:waypoint xsi:type="dc:Point" x="342" y="810" />
        <di:waypoint xsi:type="dc:Point" x="425" y="810" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="378" y="795" width="12" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ExclusiveGateway_1gn5lab_di" bpmnElement="ExclusiveGateway_1gn5lab" isMarkerVisible="true">
        <dc:Bounds x="601.1076011846002" y="785" width="50" height="50" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="591" y="835" width="72" height="24" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_197t3qk_di" bpmnElement="SequenceFlow_197t3qk">
        <di:waypoint xsi:type="dc:Point" x="651.1076011846002" y="810" />
        <di:waypoint xsi:type="dc:Point" x="714" y="810" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="677" y="795" width="12" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ExclusiveGateway_06mv93h_di" bpmnElement="ExclusiveGateway_06mv93h" isMarkerVisible="true">
        <dc:Bounds x="871" y="785" width="50" height="50" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="862" y="835" width="68" height="24" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_19lg15d_di" bpmnElement="SequenceFlow_19lg15d">
        <di:waypoint xsi:type="dc:Point" x="921" y="810" />
        <di:waypoint xsi:type="dc:Point" x="960" y="810" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="935" y="795" width="12" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ExclusiveGateway_0l2z6wc_di" bpmnElement="ExclusiveGateway_0l2z6wc" isMarkerVisible="true">
        <dc:Bounds x="1105.1076011846003" y="785" width="50" height="50" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1145" y="833" width="73" height="36" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_12mfil6_di" bpmnElement="SequenceFlow_12mfil6">
        <di:waypoint xsi:type="dc:Point" x="1060" y="810" />
        <di:waypoint xsi:type="dc:Point" x="1105" y="810" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1083" y="785" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_13yjc85_di" bpmnElement="SequenceFlow_13yjc85">
        <di:waypoint xsi:type="dc:Point" x="1155" y="810" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="810" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="550" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1160" y="795" width="18" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_0waedj5_di" bpmnElement="SequenceFlow_0waedj5">
        <di:waypoint xsi:type="dc:Point" x="317" y="785" />
        <di:waypoint xsi:type="dc:Point" x="317" y="711" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="711" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="550" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="370" y="716" width="18" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_1hg9c2l_di" bpmnElement="SequenceFlow_1hg9c2l">
        <di:waypoint xsi:type="dc:Point" x="626" y="785" />
        <di:waypoint xsi:type="dc:Point" x="626" y="714" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="714" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="550" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="669" y="717" width="18" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_0gej71y_di" bpmnElement="SequenceFlow_0gej71y">
        <di:waypoint xsi:type="dc:Point" x="896" y="785" />
        <di:waypoint xsi:type="dc:Point" x="896" y="720" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="720" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="550" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="905" y="738" width="18" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ScriptTask_1lb0lk5_di" bpmnElement="Task_1tg549h">
        <dc:Bounds x="1438" y="333" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="ExclusiveGateway_1gmvi7n_di" bpmnElement="ExclusiveGateway_0xlxgl0" isMarkerVisible="true">
        <dc:Bounds x="1314" y="485" width="50" height="50" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1295" y="534.2201382033564" width="87" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="ExclusiveGateway_0y82zzx_di" bpmnElement="ExclusiveGateway_0y82zzx" isMarkerVisible="true">
        <dc:Bounds x="1463" y="671" width="50" height="50" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1522" y="684" width="69" height="24" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_05gpym3_di" bpmnElement="SequenceFlow_05gpym3">
        <di:waypoint xsi:type="dc:Point" x="1339" y="535" />
        <di:waypoint xsi:type="dc:Point" x="1339" y="648" />
        <di:waypoint xsi:type="dc:Point" x="1490" y="648" />
        <di:waypoint xsi:type="dc:Point" x="1489" y="672" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1404" y="633" width="21" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_1sla5dr_di" bpmnElement="SequenceFlow_1sla5dr">
        <di:waypoint xsi:type="dc:Point" x="1463" y="696" />
        <di:waypoint xsi:type="dc:Point" x="440" y="696" />
        <di:waypoint xsi:type="dc:Point" x="440" y="467" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1227" y="699.0112438804176" width="85" height="24" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_0iektwg_di" bpmnElement="SequenceFlow_0iektwg">
        <di:waypoint xsi:type="dc:Point" x="1467" y="692" />
        <di:waypoint xsi:type="dc:Point" x="1323" y="667" />
        <di:waypoint xsi:type="dc:Point" x="764" y="667" />
        <di:waypoint xsi:type="dc:Point" x="764" y="467" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1214" y="631" width="87" height="24" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_1ttepat_di" bpmnElement="SequenceFlow_1ttepat">
        <di:waypoint xsi:type="dc:Point" x="1468" y="701" />
        <di:waypoint xsi:type="dc:Point" x="1346" y="735" />
        <di:waypoint xsi:type="dc:Point" x="189" y="735" />
        <di:waypoint xsi:type="dc:Point" x="189" y="639" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1230" y="743" width="85" height="24" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_1hx1ur7_di" bpmnElement="SequenceFlow_1hx1ur7">
        <di:waypoint xsi:type="dc:Point" x="1488" y="721" />
        <di:waypoint xsi:type="dc:Point" x="1488" y="789" />
        <di:waypoint xsi:type="dc:Point" x="1322" y="883" />
        <di:waypoint xsi:type="dc:Point" x="475" y="883" />
        <di:waypoint xsi:type="dc:Point" x="475" y="850" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1316" y="811" width="85" height="24" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_0ukzynj_di" bpmnElement="SequenceFlow_0ukzynj">
        <di:waypoint xsi:type="dc:Point" x="1488" y="721" />
        <di:waypoint xsi:type="dc:Point" x="1488" y="818" />
        <di:waypoint xsi:type="dc:Point" x="1346" y="918" />
        <di:waypoint xsi:type="dc:Point" x="764" y="918" />
        <di:waypoint xsi:type="dc:Point" x="764" y="850" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1374" y="853.0052048946286" width="85" height="24" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_1lsfn19_di" bpmnElement="SequenceFlow_1lsfn19">
        <di:waypoint xsi:type="dc:Point" x="1488" y="721" />
        <di:waypoint xsi:type="dc:Point" x="1488" y="858" />
        <di:waypoint xsi:type="dc:Point" x="1368" y="952" />
        <di:waypoint xsi:type="dc:Point" x="1010" y="952" />
        <di:waypoint xsi:type="dc:Point" x="1010" y="850" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1402" y="937.143889853408" width="85" height="24" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_19ba94v_di" bpmnElement="SequenceFlow_19ba94v">
        <di:waypoint xsi:type="dc:Point" x="231" y="599" />
        <di:waypoint xsi:type="dc:Point" x="289" y="599" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="260" y="584" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNShape id="ScriptTask_0rqgdju_di" bpmnElement="Task_0eae8go">
        <dc:Bounds x="131" y="559" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="ScriptTask_13zzxzd_di" bpmnElement="Task_040hi91">
        <dc:Bounds x="513" y="559" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="CallActivity_1qpajth_di" bpmnElement="Task_15hpowt">
        <dc:Bounds x="645" y="559" width="100" height="80" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="ExclusiveGateway_084iffr_di" bpmnElement="ExclusiveGateway_084iffr" isMarkerVisible="true">
        <dc:Bounds x="871" y="574" width="50" height="50" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="924" y="599" width="84" height="36" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="SequenceFlow_0pfydeg_di" bpmnElement="SequenceFlow_0pfydeg">
        <di:waypoint xsi:type="dc:Point" x="921" y="599" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="599" />
        <di:waypoint xsi:type="dc:Point" x="1182" y="550" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1043" y="584" width="18" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_0bxgny0_di" bpmnElement="SequenceFlow_0bxgny0">
        <di:waypoint xsi:type="dc:Point" x="491" y="599" />
        <di:waypoint xsi:type="dc:Point" x="513" y="599" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="496" y="574" width="12" height="12" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_1qm0ygo_di" bpmnElement="SequenceFlow_1qm0ygo">
        <di:waypoint xsi:type="dc:Point" x="613" y="599" />
        <di:waypoint xsi:type="dc:Point" x="645" y="599" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="629" y="574" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_0he2w4b_di" bpmnElement="SequenceFlow_0he2w4b">
        <di:waypoint xsi:type="dc:Point" x="745" y="599" />
        <di:waypoint xsi:type="dc:Point" x="871" y="599" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="808" y="574" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_051zp79_di" bpmnElement="SequenceFlow_051zp79">
        <di:waypoint xsi:type="dc:Point" x="1499" y="682" />
        <di:waypoint xsi:type="dc:Point" x="1627" y="512" />
        <di:waypoint xsi:type="dc:Point" x="1627" y="373" />
        <di:waypoint xsi:type="dc:Point" x="1538" y="373" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1728" y="551.5" width="0" height="0" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_193t8ts_di" bpmnElement="SequenceFlow_193t8ts">
        <di:waypoint xsi:type="dc:Point" x="1505" y="688" />
        <di:waypoint xsi:type="dc:Point" x="1677" y="614" />
        <di:waypoint xsi:type="dc:Point" x="1677" y="310" />
        <di:waypoint xsi:type="dc:Point" x="475" y="310" />
        <di:waypoint xsi:type="dc:Point" x="475" y="277" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1575" y="581" width="88" height="36" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_18u8p2k_di" bpmnElement="SequenceFlow_18u8p2k">
        <di:waypoint xsi:type="dc:Point" x="1508" y="691" />
        <di:waypoint xsi:type="dc:Point" x="1776" y="618" />
        <di:waypoint xsi:type="dc:Point" x="1776" y="311" />
        <di:waypoint xsi:type="dc:Point" x="764" y="311" />
        <di:waypoint xsi:type="dc:Point" x="764" y="277" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1689" y="577.5" width="81" height="24" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="SequenceFlow_0eueu1t_di" bpmnElement="SequenceFlow_0eueu1t">
        <di:waypoint xsi:type="dc:Point" x="1510" y="693" />
        <di:waypoint xsi:type="dc:Point" x="1865" y="635" />
        <di:waypoint xsi:type="dc:Point" x="1865" y="309" />
        <di:waypoint xsi:type="dc:Point" x="189" y="309" />
        <di:waypoint xsi:type="dc:Point" x="189" y="387" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="1784" y="579" width="80" height="24" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
    </bpmndi:BPMNPlane>
  </bpmndi:BPMNDiagram>
</bpmn2:definitions>