diff --git a/clang/docs/SYCLSupport.rst b/clang/docs/SYCLSupport.rst new file mode 100644 --- /dev/null +++ b/clang/docs/SYCLSupport.rst @@ -0,0 +1,240 @@ + +SYCL Compiler and Runtime architecture design +============================================= + +Introduction +------------ + +This document describes the architecture of the SYCL compiler and runtime +library. More details are provided in +`external document <https://github.com/intel/llvm/blob/sycl/sycl/doc/CompilerAndRuntimeDesign.md>`_\ , +which are going to be added to clang documentation in the future. + +SYCL Compiler architecture +-------------------------- + +SYCL application compilation flow for ``spir``/``spir64`` target: + + +.. image:: images/Compiler-HLD.svg + :target: images/Compiler-HLD.svg + :alt: High level component diagram for SYCL Compiler + + +*Diagram 1. Application build flow.* + +SYCL compiler logically can be split into the host compiler and a number of +device compilers—one per each supported target. Clang driver orchestrates the +compilation process, it will invoke the device compiler once per each requested +target, then it will invoke the host compiler to compile the host part of a +SYCL source. In the simplest case, when compilation and linkage are done in one +compiler driver invocation, once compilation is finished, the device object +files (which are really LLVM IR files) are linked with the ``llvm-link`` tool. +The resulting LLVM IR module can additionally processed to get program format +suitable for execution by specific back-end. For instance, ``llvm-spirv`` tool +translates LLVM bitcode to SPIR-V module for OpenCL back-end or ``ptxas``/ +``fatbin`` tools prepare LLVM for execution via CUDA back-end. After that +``clang-offload-wrapper`` tool wraps device module in a host object file. Once +all the host object files and the wrapped object with device code are ready, the +driver invokes the usual platform linker and the final executable called "fat +binary" is produced. This is a host executable or library with embedded linked +images for each target specified at the command line. + +There are many variations of the compilation process depending on whether user +chose to do one or more of the following: + +* perform compilation separately from linkage +* compile the device module ahead-of-time for one or more targets +* perform device code splitting so that device code is distributed across + multiple modules rather than enclosed in a single one +* perform linkage of static device libraries + Sections below provide more details on some of those scenarios. + +SYCL sources can be also compiled as a regular C++ code, in this mode there is +no "device part" of the code — everything is executed on the host. + +Device compiler is further split into the following major components: + + +* **Front-end** - parses input source, "outlines" device part of the code, + applies additional restrictions on the device code (e.g. no exceptions or + virtual calls), generates LLVM IR for the device code only and an "integration + header" which provides information like kernel name, parameters order and data + type for the runtime library. +* **Middle-end** - transforms the initial LLVM IR to get consumed by the + back-end. Today middle-end transformations include subset of LLVM standard + passes: + + * Any LLVM IR transformation can be applied with only one limitation: + the back-end compiler should be able to handle the transformed LLVM IR. + NOTE: the performance impact of transformation passes depends on accurate + target information, so it makes sense to disable such transformation for + "virtual" targets like SPIR. + * Optionally: Address space inference pass + * Optionally: LLVM IR -> SPIR-V translator or LLVM -> PTX. + +* **Back-end** - produces native "device" code. It is shown as + "Target-specific LLVM compiler" box on Diagram 1. It is invoked either at + compile time (in ahead-of-time compilation scenario) or at runtime + (in just-in-time compilation scenario). + +*Design note: in current design we use SYCL device front-end compiler to produce +the integration header for two reasons. First, it must be possible to use any +host compiler to produce SYCL heterogeneous applications. Second, even if the +same Clang compiler is used for the host compilation, information provided in +the integration header is used (included) by the SYCL runtime implementation, so +the header must be available before the host compilation starts.* + +SYCL support in Clang front-end +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +SYCL support in Clang front-end can be split into the following components: + +* Device code outlining. This component is responsible for identifying and + outlining "device code" in the single source. +* SYCL kernel function object (functor or lambda) lowering. This component + creates a SPIR kernel function interface for SYCL kernels. +* Device code diagnostics. This component enforces language restrictions on + device code. +* Integration header generation. This component emits information required for + binding host and device parts of the SYCL code. + +Device code outlining +~~~~~~~~~~~~~~~~~~~~~ + +Here is a code example of a SYCL program that demonstrates compiler outlining +work: + +.. code-block:: C++ + + int foo(int x) { return ++x; } + int bar(int x) { throw std::exception{"CPU code only!"}; } + ... + using namespace sycl; + queue Q; + buffer<int, 1> a{range<1>{1024}}; + Q.submit([&](handler& cgh) { + auto A = a.get_access<access::mode::write>(cgh); + cgh.parallel_for<init_a>(range<1>{1024}, [=](id<1> index) { + A[index] = index[0] * 2 + foo(42); + }); + } + ... + +In this example, the compiler needs to compile the lambda expression passed +to the ``sycl::handler::parallel_for`` method, as well as the function ``foo`` +called from the lambda expression for the device. + +The compiler must also ignore the ``bar`` function when we compile the +"device" part of the single source code, as it's unused inside the device +portion of the source code (the contents of the lambda expression passed to the +``sycl::handler::parallel_for`` and any function called from this lambda +expression). + +The current approach is to use the SYCL kernel attribute in the runtime to +mark code passed to ``sycl::handler::parallel_for`` as "kernel functions". The +runtime library can't mark foo as "device" code - this is a compiler job: to +traverse all symbols accessible from kernel functions and add them to the +"device part" of the code marking them with the new SYCL device attribute. + +Lowering of lambda function objects and named function objects +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +SYCL memory objects shared between host and device can be accessed either +through the use of raw pointers to unified memory (known as USM +https://www.khronos.org/registry/SYCL/specs/sycl-2020/html/sycl-2020.html#sec:usm) +or special ``accessor`` classes. SYCL device compiler sets address space +attribute for raw pointers captured by SYCL kernels. ``accessor`` classes +require additional processing as the "device" implementation of this class +contains pointers to the device memory as a class member. +`OpenCL SPIR-V environment specification <https://www.khronos.org/registry/OpenCL/specs/3.0-unified/html/OpenCL_Env.html#_kernels>`_ +doesn't allow passing structures with pointer type members as kernel parameters. + +SYCL also has a special mechanism for passing kernel arguments from host to the +device. In OpenCL kernel arguments are set by calling ``clSetKernelArg`` +function for each kernel argument, meanwhile in SYCL all the kernel arguments +are fields of "SYCL kernel function" which can be defined as a lambda function +or a named function object and passed as an argument to SYCL function for +invoking kernels (such as ``parallel_for`` or ``single_task``\ ). For example, +in the previous code snippet above ``accessor`` ``A`` is one such captured +kernel argument. + +To facilitate the mapping of SYCL kernel data members to SPIR-like kernel +arguments we added the generation of an SPIR kernel function inside the +compiler. A SPIR-like kernel function contains the body of the SYCL kernel +function, receives OpenCL-like parameters and additionally does some +manipulation to initialize SYCL kernel data members with these parameters. +A PTX / CUDA backend uses the same lowering logic, but generated LLVM IR has +minor differences (e.g. the identification of PTX kernels is different). + +The pseudo code for SPIR kernel function generated by the compiler looks like +this: + +.. code-block:: C++ + + // Generated kernel function (expressed in OpenCL-like pseudo-code) + __kernel KernelName(global int* a) { + KernelType KernelFuncObj; // Actually kernel function object declaration + // doesn't have a name in AST. + // Let the kernel function object have one captured field - accessor A. + // We need to init it with global pointer from arguments: + KernelFuncObj.A.__init(a); + // Body of the SYCL kernel from SYCL headers: + { + KernelFuncObj(); + } + } + +The compiler generates such kernel function for an instantiation of a function +template with ``sycl_kernel`` attribute. SYCL kernel invocation methods can use +following helper function template to lower SYCL kernel function object to +SPIR-like kernel function: + +.. code-block:: C++ + + // SYCL accessor class template + namespace sycl { + template <typename T> + class accessor { + #ifdef __SYCL_DEVICE_ONLY__ + private: + __global T* p; + // accessor initialization method + __init(__global int* a/*, ...*/) { p = a; [...] } + #endif // __SYCL_DEVICE_ONLY__ + }; + } + + // SYCL kernel is a function object + class MyObj { + accessor<int> A; // accessor<int> contains a pointer to the global address space. + public: + void operator()(); // Body of the kernel + }; + + // Helper function template for kernel detection by the compiler + template <typename KernelName, typename KernelType/*, ...*/> + __attribute__((sycl_kernel)) void sycl_kernel_function(KernelType KernelFuncObj) { + // ... + KernelFuncObj(); + } + + [...] + MyObj Obj{/*some init*/}; + // The compiler will generate kernel function for MyOjb similar to the example above + sycl_kernel_function<MyObj>(Obj); + +The compiler also emits the integration header with the information required for +marshalling SPIR-like kernel arguments by the runtime library. Kernel function +and integration header are generated by the compiler from ``Sema`` library using +AST nodes. + +Additional details of kernel parameter passing may be found in the document +`SYCL Kernel Parameter Handling and Array Support <https://github.com/intel/llvm/blob/sycl/sycl/doc/KernelParameterPassing.md>`_. + +TODO +---- + +* Consider unifying the design among GPGPU programming models like SYCL, HIP, + CUDA and OpenMP-offload. In particular, device code outlining is the area + where the difference among programming models might be minimal. diff --git a/clang/docs/images/Compiler-HLD.svg b/clang/docs/images/Compiler-HLD.svg new file mode 100644 --- /dev/null +++ b/clang/docs/images/Compiler-HLD.svg @@ -0,0 +1,16522 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="8.26772in" + height="11.6929in" + viewBox="0 0 595.276 841.89" + xml:space="preserve" + color-interpolation-filters="sRGB" + class="st20" + version="1.1" + id="svg1657" + sodipodi:docname="Compiler-HLD.svg" + inkscape:version="1.0rc1 (09960d6f05, 2020-04-09)" + inkscape:export-filename="C:\Users\kbobrovs\ws\kbobrovs_llvm\sycl\doc\images\Compiler-HLD.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"><metadata + id="metadata1661"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="2472" + inkscape:window-height="1411" + id="namedview1659" + showgrid="false" + inkscape:zoom="1.5273506" + inkscape:cx="534.40403" + inkscape:cy="731.61075" + inkscape:window-x="79" + inkscape:window-y="-9" + inkscape:window-maximized="1" + inkscape:current-layer="g11483" + inkscape:document-rotation="0" + showguides="true"><inkscape:grid + type="xygrid" + id="grid6772" /></sodipodi:namedview> + <v:documentProperties + v:langID="1033" + v:metric="true" + v:viewMarkup="false"> + <v:custProps> + <v:cp + v:nameU="BpmnElementType" + v:lbl="BPMN Element Type" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Process Diagram)" /> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):26" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnVersion" + v:lbl="Version" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnAuthor" + v:lbl="Author" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnLanguage" + v:lbl="Language" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnQueryLanguage" + v:lbl="Query Language" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCreationDate" + v:lbl="Creation Date" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnModificationDate" + v:lbl="Modification Date" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="msvSubprocessMaster" + v:prompt="" + v:val="VT4(Collapsed Sub-Process)" /> + <v:ud + v:nameU="msvNoAutoConnect" + v:prompt="" + v:val="VT0(0):26" /> + </v:userDefs> + </v:documentProperties> + + <style + type="text/css" + id="style815"> + <![CDATA[ + .st1 {visibility:visible} + .st2 {fill:#000000;fill-opacity:0.6;filter:url(#filter_3.3333334922791);stroke:#000000;stroke-linecap:butt;stroke-opacity:0.6} + .st3 {fill:#0070c0;stroke:#15383a;stroke-linecap:butt;stroke-width:0.24} + .st4 {fill:#15383a;font-family:Calibri;font-size:1.00001em} + .st5 {marker-end:url(#mrkr4-16);stroke:#000000;stroke-linecap:butt;stroke-width:0.72} + .st6 {fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1;stroke-width:0.28571428571429} + .st7 {fill:url(#grad0-24);stroke:#15383a;stroke-linecap:butt;stroke-width:0.24} + .st8 {fill:url(#grad0-24);stroke:#15383a;stroke-linecap:butt;stroke-width:0.24;visibility:hidden} + .st9 {fill:#ffffff;stroke:#15383a;stroke-linecap:butt;stroke-width:0.72;visibility:hidden} + .st10 {fill:#15383a;fill-opacity:1;stroke:#15383a;stroke-opacity:1;stroke-width:0.35714285714286} + .st11 {fill:#000000;stroke:#15383b;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.72;visibility:hidden} + .st12 {fill:#ffffff;font-family:Calibri;font-size:1.00001em} + .st13 {font-size:1em} + .st14 {marker-end:url(#mrkr4-75);stroke:#000000;stroke-linecap:butt;stroke-width:0.72} + .st15 {fill:#ffc000;stroke:#15383a;stroke-linecap:butt;stroke-width:0.24} + .st16 {fill:#ffc000;stroke:#15383b;stroke-linecap:butt;stroke-width:1} + .st17 {fill:#ffffff;font-family:Calibri;font-size:0.666664em} + .st18 {fill:#0070c0;stroke:#15383b;stroke-linecap:butt;stroke-width:1} + .st19 {fill:none;stroke:none;stroke-linecap:butt;stroke-width:1} + .st20 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} + ]]> + </style> + + <defs + id="Patterns_And_Gradients"><rect + id="rect12025" + height="52.050994" + width="187.58" + y="159.59031" + x="379.08799" /><marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"><path + id="path7569" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /></marker><marker + inkscape:stockid="EmptyTriangleOutL" + orient="auto" + refY="0.0" + refX="0.0" + id="EmptyTriangleOutL" + style="overflow:visible" + inkscape:isstock="true"><path + id="path7708" + d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z " + style="fill-rule:evenodd;fill:#ffffff;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="scale(0.8) translate(-6,0)" /></marker><marker + inkscape:stockid="TriangleOutL" + orient="auto" + refY="0.0" + refX="0.0" + id="marker8773" + style="overflow:visible" + inkscape:isstock="true"><path + id="path8771" + d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8)" /></marker><marker + inkscape:stockid="TriangleInL" + orient="auto" + refY="0.0" + refX="0.0" + id="TriangleInL" + style="overflow:visible" + inkscape:isstock="true"><path + id="path7681" + d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="scale(-0.8)" /></marker><marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker8545" + style="overflow:visible;" + inkscape:isstock="true"><path + id="path8543" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(0.6) rotate(180) translate(0,0)" /></marker><marker + inkscape:stockid="TriangleOutL" + orient="auto" + refY="0.0" + refX="0.0" + id="marker8191" + style="overflow:visible" + inkscape:isstock="true"><path + id="path7690" + d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="scale(0.8)" /></marker><marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Mend" + style="overflow:visible;" + inkscape:isstock="true"><path + id="path7575" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(0.6) rotate(180) translate(0,0)" /></marker><marker + inkscape:stockid="TriangleOutL" + orient="auto" + refY="0.0" + refX="0.0" + id="TriangleOutL" + style="overflow:visible" + inkscape:isstock="true"><path + id="path1651" + d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8)" /></marker> + <linearGradient + id="grad0-24" + x1="0" + y1="0" + x2="1" + y2="0" + gradientTransform="rotate(90 0.5 0.5)"> + <stop + offset="0" + stop-color="#2c757b" + stop-opacity="1" + id="stop817" /> + <stop + offset="1" + stop-color="#1c4b4e" + stop-opacity="1" + id="stop819" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#grad0-24" + id="linearGradient6203" + gradientTransform="matrix(1.1175623,0,0,0.71025284,0,161.34776)" + x1="-0.10737656" + y1="877.37252" + x2="63.51869" + y2="877.37252" + gradientUnits="userSpaceOnUse" /><linearGradient + inkscape:collect="always" + xlink:href="#grad0-24" + id="linearGradient6215" + gradientTransform="scale(1.2639113,0.79119477)" + x1="-0.09494337" + y1="992.26771" + x2="71.863194" + y2="992.26771" + gradientUnits="userSpaceOnUse" /><linearGradient + inkscape:collect="always" + xlink:href="#grad0-24" + id="linearGradient6219" + gradientTransform="matrix(1.2797662,0,0,0.78139273,45.000068,59.284275)" + x1="-0.093767125" + y1="1009.3222" + x2="68.159875" + y2="1009.3222" + gradientUnits="userSpaceOnUse" /><linearGradient + inkscape:collect="always" + xlink:href="#grad0-24" + id="linearGradient6221" + gradientTransform="scale(1.1175623,0.89480467)" + x1="-0.10737656" + y1="877.37252" + x2="63.51869" + y2="877.37252" + gradientUnits="userSpaceOnUse" /><linearGradient + inkscape:collect="always" + xlink:href="#grad0-24" + id="linearGradient6223" + gradientTransform="scale(1.1175623,0.89480467)" + x1="-0.10737656" + y1="877.37252" + x2="63.51869" + y2="877.37252" + gradientUnits="userSpaceOnUse" /><linearGradient + inkscape:collect="always" + xlink:href="#grad0-24" + id="linearGradient6225" + gradientTransform="scale(1.1250554,0.88884512)" + x1="-0.10666141" + y1="887.30531" + x2="59.895805" + y2="887.30531" + gradientUnits="userSpaceOnUse" /><linearGradient + inkscape:collect="always" + xlink:href="#grad0-24" + id="linearGradient6227" + gradientTransform="scale(1.1175623,0.89480467)" + x1="-0.10737656" + y1="877.37252" + x2="63.51869" + y2="877.37252" + gradientUnits="userSpaceOnUse" /><linearGradient + inkscape:collect="always" + xlink:href="#grad0-24" + id="linearGradient6229" + gradientTransform="scale(1.1175623,0.89480467)" + x1="-0.10737656" + y1="877.37252" + x2="63.51869" + y2="877.37252" + gradientUnits="userSpaceOnUse" /><linearGradient + inkscape:collect="always" + xlink:href="#grad0-24" + id="linearGradient6231" + gradientTransform="scale(1.1250554,0.88884512)" + x1="-0.10666141" + y1="887.30531" + x2="59.895805" + y2="887.30531" + gradientUnits="userSpaceOnUse" /><linearGradient + inkscape:collect="always" + xlink:href="#grad0-24" + id="linearGradient6233" + gradientTransform="scale(1.1175623,0.89480467)" + x1="-0.10737656" + y1="877.37252" + x2="63.51869" + y2="877.37252" + gradientUnits="userSpaceOnUse" /><linearGradient + inkscape:collect="always" + xlink:href="#grad0-24" + id="linearGradient6235" + gradientTransform="scale(1.1175623,0.89480467)" + x1="-0.10737656" + y1="877.37252" + x2="63.51869" + y2="877.37252" + gradientUnits="userSpaceOnUse" /><linearGradient + inkscape:collect="always" + xlink:href="#grad0-24" + id="linearGradient6237" + gradientTransform="scale(1.1250554,0.88884512)" + x1="-0.10666141" + y1="887.30531" + x2="59.895805" + y2="887.30531" + gradientUnits="userSpaceOnUse" /><marker + style="overflow:visible" + id="mrkr4-16-4" + class="st6" + v:arrowType="4" + v:arrowSize="1" + v:setback="7" + refX="-7" + orient="auto" + markerUnits="strokeWidth" + overflow="visible"><use + height="100%" + width="100%" + y="0" + x="0" + xlink:href="#lend4" + transform="scale(-3.5)" + id="use826-4" /></marker><filter + id="filter_3.3333334922791-3"><feGaussianBlur + stdDeviation="3.3333334922791" + id="feGaussianBlur839-7" /></filter><filter + id="filter_3.3333334922791-8"><feGaussianBlur + stdDeviation="3.3333334922791" + id="feGaussianBlur839-4" /></filter><filter + id="filter_3.3333334922791-7"><feGaussianBlur + stdDeviation="3.3333334922791" + id="feGaussianBlur839-8" /></filter><linearGradient + inkscape:collect="always" + xlink:href="#grad0-24" + id="linearGradient6764" + gradientUnits="userSpaceOnUse" + gradientTransform="scale(1.1175623,0.89480467)" + x1="-0.10737656" + y1="877.37252" + x2="63.51869" + y2="877.37252" /><marker + style="overflow:visible" + id="mrkr4-75-6" + class="st6" + v:arrowType="4" + v:arrowSize="1" + v:setback="6.5" + refX="-6.5" + orient="auto" + markerUnits="strokeWidth" + overflow="visible"><use + height="100%" + width="100%" + y="0" + x="0" + xlink:href="#lend4" + transform="scale(-3.5)" + id="use835-5" /></marker><filter + id="filter_3.3333334922791-3-0"><feGaussianBlur + stdDeviation="3.3333334922791" + id="feGaussianBlur839-7-4" /></filter><filter + id="filter_3.3333334922791-7-9"><feGaussianBlur + stdDeviation="3.3333334922791" + id="feGaussianBlur839-8-8" /></filter><linearGradient + inkscape:collect="always" + xlink:href="#grad0-24" + id="linearGradient7149" + gradientUnits="userSpaceOnUse" + gradientTransform="scale(1.1175623,0.89480467)" + x1="-0.10737656" + y1="877.37252" + x2="63.51869" + y2="877.37252" /><marker + style="overflow:visible" + id="mrkr4-16-7" + class="st6" + v:arrowType="4" + v:arrowSize="1" + v:setback="7" + refX="-7" + orient="auto" + markerUnits="strokeWidth" + overflow="visible"><use + height="100%" + width="100%" + y="0" + x="0" + xlink:href="#lend4" + transform="scale(-3.5)" + id="use826-5" /></marker><marker + style="overflow:visible" + id="mrkr4-16-7-3" + class="st6" + v:arrowType="4" + v:arrowSize="1" + v:setback="7" + refX="-7" + orient="auto" + markerUnits="strokeWidth" + overflow="visible"><use + height="100%" + width="100%" + y="0" + x="0" + xlink:href="#lend4" + transform="scale(-3.5)" + id="use826-5-0" /></marker><marker + style="overflow:visible" + id="mrkr4-75-4" + class="st6" + v:arrowType="4" + v:arrowSize="1" + v:setback="6.5" + refX="-6.5" + orient="auto" + markerUnits="strokeWidth" + overflow="visible"><use + height="100%" + width="100%" + y="0" + x="0" + xlink:href="#lend4" + transform="scale(-3.5)" + id="use835-0" /></marker><marker + style="overflow:visible" + id="mrkr4-75-6-9" + class="st6" + v:arrowType="4" + v:arrowSize="1" + v:setback="6.5" + refX="-6.5" + orient="auto" + markerUnits="strokeWidth" + overflow="visible"><use + height="100%" + width="100%" + y="0" + x="0" + xlink:href="#lend4" + transform="scale(-3.5)" + id="use835-5-5" /></marker><marker + style="overflow:visible" + id="mrkr4-75-2" + class="st6" + v:arrowType="4" + v:arrowSize="1" + v:setback="6.5" + refX="-6.5" + orient="auto" + markerUnits="strokeWidth" + overflow="visible"><use + height="100%" + width="100%" + y="0" + x="0" + xlink:href="#lend4" + transform="scale(-3.5)" + id="use835-6" /></marker><marker + style="overflow:visible" + id="mrkr4-16-7-3-4" + class="st6" + v:arrowType="4" + v:arrowSize="1" + v:setback="7" + refX="-7" + orient="auto" + markerUnits="strokeWidth" + overflow="visible"><use + height="100%" + width="100%" + y="0" + x="0" + xlink:href="#lend4" + transform="scale(-3.5)" + id="use826-5-0-9" /></marker><marker + style="overflow:visible" + id="mrkr4-16-7-3-1" + class="st6" + v:arrowType="4" + v:arrowSize="1" + v:setback="7" + refX="-7" + orient="auto" + markerUnits="strokeWidth" + overflow="visible"><use + height="100%" + width="100%" + y="0" + x="0" + xlink:href="#lend4" + transform="scale(-3.5)" + id="use826-5-0-4" /></marker><marker + style="overflow:visible" + id="mrkr4-16-8" + class="st6" + v:arrowType="4" + v:arrowSize="1" + v:setback="7" + refX="-7" + orient="auto" + markerUnits="strokeWidth" + overflow="visible"><use + height="100%" + width="100%" + y="0" + x="0" + xlink:href="#lend4" + transform="scale(-3.5)" + id="use826-7" /></marker><marker + style="overflow:visible" + id="mrkr4-16-82" + class="st6" + v:arrowType="4" + v:arrowSize="1" + v:setback="7" + refX="-7" + orient="auto" + markerUnits="strokeWidth" + overflow="visible"><use + height="100%" + width="100%" + y="0" + x="0" + xlink:href="#lend4" + transform="scale(-3.5)" + id="use826-47" /></marker><marker + style="overflow:visible" + id="mrkr4-16-5" + class="st6" + v:arrowType="4" + v:arrowSize="1" + v:setback="7" + refX="-7" + orient="auto" + markerUnits="strokeWidth" + overflow="visible"><use + height="100%" + width="100%" + y="0" + x="0" + xlink:href="#lend4" + transform="scale(-3.5)" + id="use826-74" /></marker><marker + style="overflow:visible" + id="mrkr4-16-0" + class="st6" + v:arrowType="4" + v:arrowSize="1" + v:setback="7" + refX="-7" + orient="auto" + markerUnits="strokeWidth" + overflow="visible"><use + height="100%" + width="100%" + y="0" + x="0" + xlink:href="#lend4" + transform="scale(-3.5)" + id="use826-8" /></marker><filter + id="filter_3.3333334922791-4"><feGaussianBlur + id="feGaussianBlur839-80" + stdDeviation="3.3333334922791" /></filter><filter + id="filter_3.3333334922791-2"><feGaussianBlur + id="feGaussianBlur839-6" + stdDeviation="3.3333334922791" /></filter><linearGradient + y2="877.37252" + x2="63.51869" + y1="877.37252" + x1="-0.10737656" + gradientTransform="matrix(1.1175623,0,0,0.71025284,0,161.34776)" + gradientUnits="userSpaceOnUse" + id="linearGradient11167" + xlink:href="#grad0-24" + inkscape:collect="always" /><rect + x="379.08799" + y="159.59031" + width="187.58" + height="52.050994" + id="rect12189" /></defs> + <defs + id="Markers"> + <g + id="lend4"> + <path + d="M 2 1 L 0 0 L 2 -1 L 2 1 " + style="stroke:none" + id="path823" /> + </g> + <marker + id="mrkr4-16" + class="st6" + v:arrowType="4" + v:arrowSize="1" + v:setback="7" + refX="-7" + orient="auto" + markerUnits="strokeWidth" + overflow="visible"> + <use + xlink:href="#lend4" + transform="scale(-3.5,-3.5) " + id="use826" /> + </marker> + <g + id="lend1"> + <path + d="M 1 -1 L 0 0 L 1 1 " + style="stroke-linecap:round;stroke-linejoin:round;fill:none" + id="path829" /> + </g> + <marker + id="mrkr1-47" + class="st10" + v:arrowType="1" + v:arrowSize="1" + orient="auto" + markerUnits="strokeWidth" + overflow="visible"> + <use + xlink:href="#lend1" + transform="scale(-2.8,-2.8) " + id="use832" /> + </marker> + <marker + id="mrkr4-75" + class="st6" + v:arrowType="4" + v:arrowSize="1" + v:setback="6.5" + refX="-6.5" + orient="auto" + markerUnits="strokeWidth" + overflow="visible"> + <use + xlink:href="#lend4" + transform="scale(-3.5,-3.5) " + id="use835" /> + </marker> + </defs> + <defs + id="Filters"> + <filter + id="filter_3.3333334922791"> + <feGaussianBlur + stdDeviation="3.3333334922791" + id="feGaussianBlur839" /> + </filter> + </defs> + <g + v:mID="0" + v:index="1" + v:groupContext="foregroundPage" + id="g1655"> + <v:userDefs> + <v:ud + v:nameU="msvThemeOrder" + v:val="VT0(0):26" /> + </v:userDefs> + <title + id="title843">Page-1</title> + <v:pageProperties + v:drawingScale="0.0393701" + v:pageScale="0.0393701" + v:drawingUnits="24" + v:shadowOffsetX="8.50394" + v:shadowOffsetY="-8.50394" /> + <v:layer + v:name="Flowchart" + v:index="0" /><g + id="group136-265-2" + transform="translate(335.9664,-321.57408)" + v:mID="136" + v:groupContext="group" + v:layerMember="0" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"><v:custProps><v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnActivityType" + v:lbl="ActivityType" + v:prompt="" + v:type="1" + v:format="Task;Sub-Process" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Task)" /><v:cp + v:nameU="BpmnLoopType" + v:lbl="LoopType" + v:prompt="" + v:type="1" + v:format="None;Standard;Parallel MultiInstance;Sequential MultiInstance" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /><v:cp + v:nameU="BpmnTaskType" + v:lbl="TaskType" + v:prompt="" + v:type="1" + v:format="None;Service;Receive;Send;User;Script;Abstract;Manual;Instantiating Receive;Business Rule" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /><v:cp + v:nameU="BpmnScript" + v:lbl="Script" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnInstantiate" + v:lbl="Instantiate" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /><v:cp + v:nameU="BpmnSubProcessType" + v:lbl="SubProcessType" + v:prompt="" + v:type="1" + v:format="Embedded;Reusable;Reference" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Embedded)" /><v:cp + v:nameU="BpmnIsCollapsed" + v:lbl="IsCollapsed" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /><v:cp + v:nameU="BpmnIsATransaction" + v:lbl="IsATransaction" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /><v:cp + v:nameU="BpmnIsForCompensation" + v:lbl="IsForCompensation" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /><v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Sub-Process)" /><v:cp + v:nameU="BpmnAdHoc" + v:lbl="AdHoc" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /><v:cp + v:nameU="BpmnAdHocOrdering" + v:lbl="AdHocOrdering" + v:prompt="" + v:type="1" + v:format="Sequential;Parallel" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Parallel)" /><v:cp + v:nameU="BpmnBoundaryType" + v:lbl="BoundaryType" + v:prompt="" + v:type="1" + v:format="Default;Call" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Default)" /><v:cp + v:nameU="BpmnName" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(Offload-bundler)" /></v:custProps><v:userDefs><v:ud + v:nameU="BpmnNumIconsVisible" + v:prompt="" + v:val="VT0(0):26" /><v:ud + v:nameU="BpmnIsExtendedSubProcess" + v:prompt="" + v:val="VT0(0):5" /><v:ud + v:nameU="msvStructureType" + v:prompt="" + v:val="VT0(0):26" /><v:ud + v:nameU="msvSDContainerResize" + v:prompt="" + v:val="VT0(0):26" /><v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /><v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Task)" /><v:ud + v:nameU="BpmnIconHeight" + v:prompt="" + v:val="VT0(0.15748031496063):24" /><v:ud + v:nameU="BpmnIconPinY" + v:prompt="" + v:val="VT0(0.11811023622047):24" /><v:ud + v:nameU="BpmnBoundaryType" + v:prompt="" + v:val="VT0(0):26" /><v:ud + v:nameU="DefaultWidth" + v:prompt="" + v:val="VT0(0.98425196850394):24" /><v:ud + v:nameU="DefaultHeight" + v:prompt="" + v:val="VT0(0.78740157480315):24" /><v:ud + v:nameU="ResizeTxtHeight" + v:prompt="" + v:val="VT0(0.78740157480315):24" /><v:ud + v:nameU="IsInstance" + v:prompt="" + v:val="VT0(0):5" /><v:ud + v:nameU="IsInstance" + v:prompt="" + v:val="VT0(1):5" /></v:userDefs><title + id="title1285-4">Task.136</title><desc + id="desc1287-2">llvm-link</desc><g + id="shape141-279-7" + v:mID="141" + v:groupContext="shape" + v:layerMember="0" + transform="translate(36.2438,-2.12598)"><title + id="title1310-1">Sheet.141</title><v:userDefs><v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /><v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /></v:userDefs></g><g + id="shape145-286-8" + v:mID="145" + v:groupContext="shape" + v:layerMember="0" + transform="translate(36.6038,-3.68504)"><title + id="title1324-7">Sheet.145</title><v:userDefs><v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /><v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.19):26" /></v:userDefs></g><g + id="shape146-288-5" + v:mID="146" + v:groupContext="shape" + v:layerMember="0" + transform="translate(37.7178,-3.68504)"><title + id="title1327-7">Sheet.146</title><v:userDefs><v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /><v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /></v:userDefs></g><g + id="group147-290-7" + transform="translate(36.2438,-2.83465)" + v:mID="147" + v:groupContext="group" + v:layerMember="0"><v:userDefs><v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /><v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /></v:userDefs><title + id="title1330-3">Sheet.147</title><g + id="shape148-291-6" + v:mID="148" + v:groupContext="shape" + v:layerMember="0" + transform="rotate(179.753,3.6955626,836.73185)"><title + id="title1332-6">Sheet.148</title></g></g><g + id="shape149-294-5" + v:mID="149" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.50394,-43.189)"><title + id="title1336-5">Sheet.149</title></g><g + id="shape150-296-2" + v:mID="150" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.00394,-42.689)"><title + id="title1339-7">Sheet.150</title></g><g + id="shape154-303-9" + v:mID="154" + v:groupContext="shape" + v:layerMember="0" + transform="translate(2.50394,-44.189)"><title + id="title1353-8">Sheet.154</title></g><g + id="shape155-305-7" + v:mID="155" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.50394,-43.189)"><title + id="title1356-3">Sheet.155</title></g><g + id="shape156-307-6" + v:mID="156" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.00394,-44.189)"><title + id="title1359-3">Sheet.156</title></g><g + id="shape157-309-5" + v:mID="157" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.00394,-44.189)"><title + id="title1362-8">Sheet.157</title></g><g + id="shape158-311-4" + v:mID="158" + v:groupContext="shape" + v:layerMember="0" + transform="rotate(-90,21.2115,816.3695)"><title + id="title1365-2">Sheet.158</title><v:userDefs><v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /><v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /></v:userDefs></g><g + id="g6842" + transform="translate(30.000045,-14.249128)"><g + v:layerMember="0" + v:groupContext="group" + v:mID="176" + transform="translate(-21.584367,-160.76626)" + id="group176-341-6"><v:custProps><v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Id" + v:nameU="BpmnId" /><v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Categories" + v:nameU="BpmnCategories" /><v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Documentation" + v:nameU="BpmnDocumentation" /><v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Name" + v:nameU="BpmnName" /><v:cp + v:val="VT4(Task)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Task;Sub-Process" + v:type="1" + v:prompt="" + v:lbl="ActivityType" + v:nameU="BpmnActivityType" /><v:cp + v:val="VT4(None)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="None;Standard;Parallel MultiInstance;Sequential MultiInstance" + v:type="1" + v:prompt="" + v:lbl="LoopType" + v:nameU="BpmnLoopType" /><v:cp + v:val="VT4(None)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="None;Service;Receive;Send;User;Script;Abstract;Manual;Instantiating Receive;Business Rule" + v:type="1" + v:prompt="" + v:lbl="TaskType" + v:nameU="BpmnTaskType" /><v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Script" + v:nameU="BpmnScript" /><v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl="Instantiate" + v:nameU="BpmnInstantiate" /><v:cp + v:val="VT4(Embedded)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Embedded;Reusable;Reference" + v:type="1" + v:prompt="" + v:lbl="SubProcessType" + v:nameU="BpmnSubProcessType" /><v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl="IsCollapsed" + v:nameU="BpmnIsCollapsed" /><v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl="IsATransaction" + v:nameU="BpmnIsATransaction" /><v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl="IsForCompensation" + v:nameU="BpmnIsForCompensation" /><v:cp + v:val="VT4(Sub-Process)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:type="1" + v:prompt="" + v:lbl="ElementType" + v:nameU="BpmnElementType" /><v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl="AdHoc" + v:nameU="BpmnAdHoc" /><v:cp + v:val="VT4(Parallel)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Sequential;Parallel" + v:type="1" + v:prompt="" + v:lbl="AdHocOrdering" + v:nameU="BpmnAdHocOrdering" /><v:cp + v:val="VT4(Default)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="Default;Call" + v:type="1" + v:prompt="" + v:lbl="BoundaryType" + v:nameU="BpmnBoundaryType" /><v:cp + v:val="VT4(Offload-wrapper)" + v:cal="0" + v:langID="0" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="" + v:nameU="BpmnName" /></v:custProps><v:userDefs><v:ud + v:val="VT0(0):26" + v:prompt="" + v:nameU="BpmnNumIconsVisible" /><v:ud + v:val="VT0(0):5" + v:prompt="" + v:nameU="BpmnIsExtendedSubProcess" /><v:ud + v:val="VT0(0):26" + v:prompt="" + v:nameU="msvStructureType" /><v:ud + v:val="VT0(0):26" + v:prompt="" + v:nameU="msvSDContainerResize" /><v:ud + v:val="VT0(15):26" + v:prompt="" + v:nameU="visVersion" /><v:ud + v:val="VT4(Task)" + v:prompt="" + v:nameU="msvShapeCategories" /><v:ud + v:val="VT0(0.15748031496063):24" + v:prompt="" + v:nameU="BpmnIconHeight" /><v:ud + v:val="VT0(0.11811023622047):24" + v:prompt="" + v:nameU="BpmnIconPinY" /><v:ud + v:val="VT0(0):26" + v:prompt="" + v:nameU="BpmnBoundaryType" /><v:ud + v:val="VT0(0.98425196850394):24" + v:prompt="" + v:nameU="DefaultWidth" /><v:ud + v:val="VT0(0.78740157480315):24" + v:prompt="" + v:nameU="DefaultHeight" /><v:ud + v:val="VT0(0.78740157480315):24" + v:prompt="" + v:nameU="ResizeTxtHeight" /><v:ud + v:val="VT0(0):5" + v:prompt="" + v:nameU="IsInstance" /><v:ud + v:val="VT0(1):5" + v:prompt="" + v:nameU="IsInstance" /></v:userDefs><title + id="title1408-4">Task.176</title><desc + id="desc1410-1">Offload-wrapper</desc><g + transform="translate(36.2438,-2.12598)" + v:layerMember="0" + v:groupContext="shape" + v:mID="181" + id="shape181-355-2"><title + id="title1433-1">Sheet.181</title><v:userDefs><v:ud + v:val="VT0(1):26" + v:prompt="" + v:nameU="BpmnIconPosition" /><v:ud + v:val="VT0(0.18):26" + v:prompt="" + v:nameU="BpmnIconWidth" /></v:userDefs></g><g + transform="translate(36.6038,-3.68504)" + v:layerMember="0" + v:groupContext="shape" + v:mID="185" + id="shape185-362-2"><title + id="title1447-9">Sheet.185</title><v:userDefs><v:ud + v:val="VT0(1):26" + v:prompt="" + v:nameU="BpmnIconPosition" /><v:ud + v:val="VT0(0.19):26" + v:prompt="" + v:nameU="BpmnIconWidth" /></v:userDefs></g><g + transform="translate(37.7178,-3.68504)" + v:layerMember="0" + v:groupContext="shape" + v:mID="186" + id="shape186-364-9"><title + id="title1450-7">Sheet.186</title><v:userDefs><v:ud + v:val="VT0(1):26" + v:prompt="" + v:nameU="BpmnIconPosition" /><v:ud + v:val="VT0(0.18):26" + v:prompt="" + v:nameU="BpmnIconWidth" /></v:userDefs></g><g + v:layerMember="0" + v:groupContext="group" + v:mID="187" + transform="translate(36.2438,-2.83465)" + id="group187-366-5"><v:userDefs><v:ud + v:val="VT0(1):26" + v:prompt="" + v:nameU="BpmnIconPosition" /><v:ud + v:val="VT0(0.18):26" + v:prompt="" + v:nameU="BpmnIconWidth" /></v:userDefs><title + id="title1453-7">Sheet.187</title><g + transform="rotate(179.753,3.6955626,836.73185)" + v:layerMember="0" + v:groupContext="shape" + v:mID="188" + id="shape188-367-3"><title + id="title1455-2">Sheet.188</title></g></g><g + transform="translate(3.50394,-43.189)" + v:layerMember="0" + v:groupContext="shape" + v:mID="189" + id="shape189-370-1"><title + id="title1459-8">Sheet.189</title></g><g + transform="translate(3.00394,-42.689)" + v:layerMember="0" + v:groupContext="shape" + v:mID="190" + id="shape190-372-5"><title + id="title1462-0">Sheet.190</title></g><g + transform="translate(2.50394,-44.189)" + v:layerMember="0" + v:groupContext="shape" + v:mID="194" + id="shape194-379-2"><title + id="title1476-5">Sheet.194</title></g><g + transform="translate(3.50394,-43.189)" + v:layerMember="0" + v:groupContext="shape" + v:mID="195" + id="shape195-381-5"><title + id="title1479-2">Sheet.195</title></g><g + transform="translate(3.00394,-44.189)" + v:layerMember="0" + v:groupContext="shape" + v:mID="196" + id="shape196-383-3"><title + id="title1482-9">Sheet.196</title></g><g + transform="translate(3.00394,-44.189)" + v:layerMember="0" + v:groupContext="shape" + v:mID="197" + id="shape197-385-5"><title + id="title1485-4">Sheet.197</title></g><g + transform="rotate(-90,21.2115,816.3695)" + v:layerMember="0" + v:groupContext="shape" + v:mID="198" + id="shape198-387-4"><title + id="title1488-1">Sheet.198</title><v:userDefs><v:ud + v:val="VT0(1):26" + v:prompt="" + v:nameU="BpmnIconPosition" /><v:ud + v:val="VT0(0.18):26" + v:prompt="" + v:nameU="BpmnIconWidth" /></v:userDefs></g><g + v:layerMember="0" + v:groupContext="groupContent" + v:mID="176" + id="shape176-389-4"><v:textBlock + v:tabSpace="42.5197" + v:margins="rect(2,2,2,2)" /><v:textRect + height="0" + width="70.87" + cy="813.543" + cx="35.4331" /><text + style="font-size:12.00012016px;font-family:Calibri;fill:#ffffff" + id="text1493-4" + v:langID="1033" + class="st12" + y="809.94" + x="15.39"><v:paragraph + v:horizAlign="1" /><v:tabList />Offload-<tspan + style="font-size:12.00012016px" + id="tspan1491-3" + class="st13" + dy="1.2em" + x="14.8">wrapper</tspan></text> + + +</g></g><g + transform="matrix(0.84666848,0,0,0.59998088,-13.466302,157.7933)" + v:layerMember="0" + v:groupContext="shape" + v:mID="137" + id="shape137-266-7"><title + id="title1289-2">Sheet.137</title><g + style="visibility:visible" + class="st1" + transform="translate(0,3.00236)" + v:shadowType="1" + v:shadowOffsetY="-3.00236" + v:shadowOffsetX="1.83842E-016" + v:groupContext="shadow" + id="shadow137-267-4"><rect + style="fill:#000000;fill-opacity:0.6;stroke:#000000;stroke-linecap:butt;stroke-opacity:0.6;filter:url(#filter_3.3333334922791-7)" + id="rect1291-4" + class="st2" + ry="5.6692901" + rx="5.6692901" + height="56.692902" + width="70.866096" + y="785.19702" + x="0" /></g><rect + style="fill:url(#linearGradient6764);stroke:#15383a;stroke-width:0.23999999;stroke-linecap:butt" + id="rect1294-8" + class="st7" + ry="5.6692901" + rx="5.6692901" + height="56.692902" + width="70.866096" + y="785.19702" + x="0" /></g><g + transform="translate(-20.840071,-156.30053)" + v:layerMember="0" + v:groupContext="groupContent" + v:mID="136" + id="shape136-313-8"><v:textBlock + v:tabSpace="42.5197" + v:margins="rect(2,2,2,2)" /><v:textRect + height="0" + width="70.87" + cy="813.543" + cx="35.4331" /><text + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.00001812px;font-family:Calibri;-inkscape-font-specification:'Calibri, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff" + id="text1370-7" + v:langID="1033" + class="st12" + y="804.72998" + x="16.134289"><v:paragraph + v:horizAlign="1" /><v:tabList /><tspan + y="804.72998" + x="16.134289" + id="tspan6770" + sodipodi:role="line">llvm-link</tspan></text> + + +</g></g></g> + <v:layer + v:name="Connector" + v:index="1" /> + <v:layer + v:name="Callout" + v:index="2" /> + <g + id="group1-1" + transform="translate(141.732,-792.591)" + v:mID="1" + v:groupContext="group" + v:layerMember="0" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnArtifactType" + v:lbl="ArtifactType" + v:prompt="" + v:type="1" + v:format="Data Object;Group;Annotation" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Data Object)" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnState" + v:lbl="State" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnText" + v:lbl="Text" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategoryRef" + v:lbl="CategoryRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Artifact)" /> + <v:cp + v:nameU="BpmnCollection" + v:lbl="Collection" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnName" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(SourceFile.cpp)" /> + <v:cp + v:nameU="BpmnText" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(SourceFile.cpp)" /> + <v:cp + v:nameU="BpmnCategoryRef" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(SourceFile.cpp)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Data Object)" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + </v:userDefs> + <title + id="title845">Data Object</title> + <desc + id="desc847">SourceFile.cpp</desc> + <g + id="shape2-2" + v:mID="2" + v:groupContext="shape" + v:layerMember="0"> + <title + id="title849">Sheet.2</title> + <g + id="shadow2-3" + v:groupContext="shadow" + v:shadowOffsetX="1.83842E-016" + v:shadowOffsetY="-3.00236" + v:shadowType="1" + transform="translate(0,3.00236)" + class="st1" + style="visibility:visible"> + <path + d="M 34.02,809.6 H 21.77 V 796.54 H 0 v 45.35 h 34.02 z m 0,-1.09 -12.25,-11.97 v 13.06 h 12.25 z" + class="st2" + id="path851" + inkscape:connector-curvature="0" + style="fill:#000000;fill-opacity:0.6;stroke:#000000;stroke-linecap:butt;stroke-opacity:0.6;filter:url(#filter_3.3333334922791)" /> + </g> + <path + d="M 34.02,809.6 H 21.77 V 796.54 H 0 v 45.35 h 34.02 z m 0,-1.09 -12.25,-11.97 v 13.06 h 12.25 z" + class="st3" + id="path854" + inkscape:connector-curvature="0" + style="fill:#0070c0;stroke:#15383a;stroke-width:0.23999999;stroke-linecap:butt" /> + </g> + <g + id="shape3-7" + v:mID="3" + v:groupContext="shape" + v:layerMember="0" + transform="translate(14.8819)"> + <title + id="title857">Sheet.3</title> + </g> + <g + id="shape1-9" + v:mID="1" + v:groupContext="groupContent" + v:layerMember="0"> + <v:textBlock + v:margins="rect(2,2,2,2)" + v:tabSpace="42.5197" + v:verticalAlign="0" /> + <v:textRect + cx="17.0079" + cy="851.092" + width="77.8" + height="18.4037" /> + <text + x="-18.530001" + y="854.69" + class="st4" + v:langID="1033" + id="text860" + style="font-size:12.00012016px;font-family:Calibri;fill:#15383a"><v:paragraph + v:horizAlign="1" /><v:tabList />SourceFile.cpp</text> + + + </g> + </g> + <g + id="shape27-11" + v:mID="27" + v:groupContext="shape" + v:layerMember="1" + transform="translate(151.654,-792.591)" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <title + id="title864">Dynamic Connector</title> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConnectingObjectType" + v:lbl="ConnectingObjectType" + v:prompt="" + v:type="1" + v:format="Sequence Flow;Message Flow;Association" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Sequence Flow)" /> + <v:cp + v:nameU="BpmnConditionType" + v:lbl="ConditionType" + v:prompt="" + v:type="1" + v:format="None;Expression;Default" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnConditionExpression" + v:lbl="ConditionExpression" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef" + v:lbl="MessageRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnMessageRef_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties" + v:lbl=" Properties" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Type" + v:lbl=" Type" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value" + v:lbl=" Value" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Correlation" + v:lbl=" Correlation" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef" + v:lbl=" FromRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef" + v:lbl=" ToRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDirection" + v:lbl="Direction" + v:prompt="" + v:type="1" + v:format="None;One;Both" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(One)" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Connecting Object)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Connecting Object)" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + </v:userDefs> + <path + d="m 7.09,841.89 c 0,4.96 0,13.79 0,20.47" + class="st5" + id="path866" + inkscape:connector-curvature="0" + style="stroke:#000000;stroke-width:0.72000003;stroke-linecap:butt;marker-end:url(#mrkr4-16)" /> + </g> + <g + id="group4-17" + transform="translate(123.307,-710.386)" + v:mID="4" + v:groupContext="group" + v:layerMember="0" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnActivityType" + v:lbl="ActivityType" + v:prompt="" + v:type="1" + v:format="Task;Sub-Process" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Task)" /> + <v:cp + v:nameU="BpmnLoopType" + v:lbl="LoopType" + v:prompt="" + v:type="1" + v:format="None;Standard;Parallel MultiInstance;Sequential MultiInstance" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnTaskType" + v:lbl="TaskType" + v:prompt="" + v:type="1" + v:format="None;Service;Receive;Send;User;Script;Abstract;Manual;Instantiating Receive;Business Rule" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnScript" + v:lbl="Script" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnInstantiate" + v:lbl="Instantiate" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnSubProcessType" + v:lbl="SubProcessType" + v:prompt="" + v:type="1" + v:format="Embedded;Reusable;Reference" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Embedded)" /> + <v:cp + v:nameU="BpmnIsCollapsed" + v:lbl="IsCollapsed" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnIsATransaction" + v:lbl="IsATransaction" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnIsForCompensation" + v:lbl="IsForCompensation" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Sub-Process)" /> + <v:cp + v:nameU="BpmnAdHoc" + v:lbl="AdHoc" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnAdHocOrdering" + v:lbl="AdHocOrdering" + v:prompt="" + v:type="1" + v:format="Sequential;Parallel" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Parallel)" /> + <v:cp + v:nameU="BpmnBoundaryType" + v:lbl="BoundaryType" + v:prompt="" + v:type="1" + v:format="Default;Call" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Default)" /> + <v:cp + v:nameU="BpmnName" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(Compiler driver)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="BpmnNumIconsVisible" + v:prompt="" + v:val="VT0(0):26" /> + <v:ud + v:nameU="BpmnIsExtendedSubProcess" + v:prompt="" + v:val="VT0(0):5" /> + <v:ud + v:nameU="msvStructureType" + v:prompt="" + v:val="VT0(0):26" /> + <v:ud + v:nameU="msvSDContainerResize" + v:prompt="" + v:val="VT0(0):26" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Task)" /> + <v:ud + v:nameU="BpmnIconHeight" + v:prompt="" + v:val="VT0(0.15748031496063):24" /> + <v:ud + v:nameU="BpmnIconPinY" + v:prompt="" + v:val="VT0(0.11811023622047):24" /> + <v:ud + v:nameU="BpmnBoundaryType" + v:prompt="" + v:val="VT0(0):26" /> + <v:ud + v:nameU="DefaultWidth" + v:prompt="" + v:val="VT0(0.98425196850394):24" /> + <v:ud + v:nameU="DefaultHeight" + v:prompt="" + v:val="VT0(0.78740157480315):24" /> + <v:ud + v:nameU="ResizeTxtHeight" + v:prompt="" + v:val="VT0(0.78740157480315):24" /> + <v:ud + v:nameU="IsInstance" + v:prompt="" + v:val="VT0(0):5" /> + <v:ud + v:nameU="IsInstance" + v:prompt="" + v:val="VT0(1):5" /> + </v:userDefs> + <title + id="title869">Task</title> + <desc + id="desc871">Compiler driver</desc> + <g + id="shape5-18" + v:mID="5" + v:groupContext="shape" + v:layerMember="0"> + <title + id="title873">Sheet.5</title> + <g + id="shadow5-19" + v:groupContext="shadow" + v:shadowOffsetX="1.83842E-016" + v:shadowOffsetY="-3.00236" + v:shadowType="1" + transform="translate(0,3.00236)" + class="st1" + style="visibility:visible"> + <rect + x="0" + y="785.19702" + width="70.866096" + height="56.692902" + rx="5.6692901" + ry="5.6692901" + class="st2" + id="rect875" + style="fill:#000000;fill-opacity:0.6;stroke:#000000;stroke-linecap:butt;stroke-opacity:0.6;filter:url(#filter_3.3333334922791)" /> + </g> + <rect + x="0" + y="785.19702" + width="70.866096" + height="56.692902" + rx="5.6692901" + ry="5.6692901" + class="st7" + id="rect878" + style="fill:url(#linearGradient6233);stroke:#15383a;stroke-width:0.23999999;stroke-linecap:butt" /> + </g> + <g + id="group6-25" + v:mID="6" + v:groupContext="group" + v:layerMember="0"> + <title + id="title881">Sheet.6</title> + <g + id="shape7-26" + v:mID="7" + v:groupContext="shape" + v:layerMember="0"> + <title + id="title883">Sheet.7</title> + <rect + x="0" + y="785.19702" + width="70.866096" + height="56.692902" + rx="2.1259799" + ry="2.1259799" + class="st8" + id="rect885" + style="visibility:hidden;fill:url(#linearGradient6235);stroke:#15383a;stroke-width:0.23999999;stroke-linecap:butt" /> + </g> + <g + id="shape8-29" + v:mID="8" + v:groupContext="shape" + v:layerMember="0" + transform="translate(1.8,-1.8)"> + <title + id="title888">Sheet.8</title> + <rect + x="0" + y="788.797" + width="67.266098" + height="53.092899" + rx="2.1259799" + ry="2.1259799" + class="st8" + id="rect890" + style="visibility:hidden;fill:url(#linearGradient6237);stroke:#15383a;stroke-width:0.23999999;stroke-linecap:butt" /> + </g> + </g> + <g + id="shape9-32" + v:mID="9" + v:groupContext="shape" + v:layerMember="0" + transform="translate(36.2438,-2.12598)"> + <title + id="title894">Sheet.9</title> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /> + </v:userDefs> + </g> + <g + id="group10-34" + transform="translate(36.6038,-2.83465)" + v:mID="10" + v:groupContext="group" + v:layerMember="0"> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.19):26" /> + </v:userDefs> + <title + id="title897">Sheet.10</title> + <g + id="shape11-35" + v:mID="11" + v:groupContext="shape" + v:layerMember="0"> + <title + id="title899">Sheet.11</title> + <rect + x="0" + y="830.55103" + width="11.3386" + height="11.3386" + class="st9" + id="rect901" + style="visibility:hidden;fill:#ffffff;stroke:#15383a;stroke-width:0.72000003;stroke-linecap:butt" /> + </g> + <g + id="shape12-37" + v:mID="12" + v:groupContext="shape" + v:layerMember="0" + transform="translate(2.83465,-2.83465)"> + <title + id="title904">Sheet.12</title> + </g> + </g> + <g + id="shape13-39" + v:mID="13" + v:groupContext="shape" + v:layerMember="0" + transform="translate(36.6038,-3.68504)"> + <title + id="title908">Sheet.13</title> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.19):26" /> + </v:userDefs> + </g> + <g + id="shape14-41" + v:mID="14" + v:groupContext="shape" + v:layerMember="0" + transform="translate(37.7178,-3.68504)"> + <title + id="title911">Sheet.14</title> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /> + </v:userDefs> + </g> + <g + id="group15-43" + transform="translate(36.2438,-2.83465)" + v:mID="15" + v:groupContext="group" + v:layerMember="0"> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /> + </v:userDefs> + <title + id="title914">Sheet.15</title> + <g + id="shape16-44" + v:mID="16" + v:groupContext="shape" + v:layerMember="0" + transform="rotate(179.753,3.6955626,836.73185)"> + <title + id="title916">Sheet.16</title> + </g> + </g> + <g + id="shape17-48" + v:mID="17" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.50394,-43.189)"> + <title + id="title920">Sheet.17</title> + </g> + <g + id="shape18-50" + v:mID="18" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.00394,-42.689)"> + <title + id="title923">Sheet.18</title> + </g> + <g + id="group19-52" + transform="translate(2.50394,-44.189)" + v:mID="19" + v:groupContext="group" + v:layerMember="0"> + <title + id="title926">Sheet.19</title> + <g + id="shape20-53" + v:mID="20" + v:groupContext="shape" + v:layerMember="0"> + <title + id="title928">Sheet.20</title> + <rect + x="0" + y="833.89001" + width="12" + height="8" + class="st11" + id="rect930" + style="visibility:hidden;fill:#000000;stroke:#15383b;stroke-width:0.72000003;stroke-linecap:round;stroke-linejoin:round" /> + </g> + <g + id="shape21-55" + v:mID="21" + v:groupContext="shape" + v:layerMember="0" + transform="translate(0,-4.20339)"> + <title + id="title933">Sheet.21</title> + </g> + </g> + <g + id="shape22-57" + v:mID="22" + v:groupContext="shape" + v:layerMember="0" + transform="translate(2.50394,-44.189)"> + <title + id="title937">Sheet.22</title> + </g> + <g + id="shape23-59" + v:mID="23" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.50394,-43.189)"> + <title + id="title940">Sheet.23</title> + </g> + <g + id="shape24-61" + v:mID="24" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.00394,-44.189)"> + <title + id="title943">Sheet.24</title> + </g> + <g + id="shape25-63" + v:mID="25" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.00394,-44.189)"> + <title + id="title946">Sheet.25</title> + </g> + <g + id="shape26-65" + v:mID="26" + v:groupContext="shape" + v:layerMember="0" + transform="rotate(-90,21.2115,816.3695)"> + <title + id="title949">Sheet.26</title> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /> + </v:userDefs> + </g> + <g + id="shape4-67" + v:mID="4" + v:groupContext="groupContent" + v:layerMember="0"> + <v:textBlock + v:margins="rect(2,2,2,2)" + v:tabSpace="42.5197" /> + <v:textRect + cx="35.4331" + cy="813.543" + width="70.87" + height="0" /> + <text + x="13.29" + y="809.94" + class="st12" + v:langID="1033" + id="text954" + style="font-size:12.00012016px;font-family:Calibri;fill:#ffffff"><v:paragraph + v:horizAlign="1" /><v:tabList />Compiler <tspan + x="21.02" + dy="1.2em" + class="st13" + id="tspan952" + style="font-size:12.00012016px">driver</tspan></text> + + + </g> + </g> + <g + id="shape51-70" + v:mID="51" + v:groupContext="shape" + v:layerMember="1" + transform="translate(158.74,-710.386)" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <title + id="title958">Dynamic Connector.51</title> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConnectingObjectType" + v:lbl="ConnectingObjectType" + v:prompt="" + v:type="1" + v:format="Sequence Flow;Message Flow;Association" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Sequence Flow)" /> + <v:cp + v:nameU="BpmnConditionType" + v:lbl="ConditionType" + v:prompt="" + v:type="1" + v:format="None;Expression;Default" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnConditionExpression" + v:lbl="ConditionExpression" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef" + v:lbl="MessageRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnMessageRef_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties" + v:lbl=" Properties" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Type" + v:lbl=" Type" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value" + v:lbl=" Value" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Correlation" + v:lbl=" Correlation" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef" + v:lbl=" FromRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef" + v:lbl=" ToRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDirection" + v:lbl="Direction" + v:prompt="" + v:type="1" + v:format="None;One;Both" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(One)" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Connecting Object)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Connecting Object)" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + </v:userDefs> + <path + d="m 0,841.89 c 0,9 36.41,9 72.83,9 32.55,0 65.1,0 71.87,11.64 l 0.09,0.35" + class="st14" + id="path960" + inkscape:connector-curvature="0" + style="stroke:#000000;stroke-width:0.72000003;stroke-linecap:butt;marker-end:url(#mrkr4-75)" /> + </g> + <g + id="group28-76" + transform="translate(269.291,-628.181)" + v:mID="28" + v:groupContext="group" + v:layerMember="0" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnActivityType" + v:lbl="ActivityType" + v:prompt="" + v:type="1" + v:format="Task;Sub-Process" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Task)" /> + <v:cp + v:nameU="BpmnLoopType" + v:lbl="LoopType" + v:prompt="" + v:type="1" + v:format="None;Standard;Parallel MultiInstance;Sequential MultiInstance" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnTaskType" + v:lbl="TaskType" + v:prompt="" + v:type="1" + v:format="None;Service;Receive;Send;User;Script;Abstract;Manual;Instantiating Receive;Business Rule" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnScript" + v:lbl="Script" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnInstantiate" + v:lbl="Instantiate" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnSubProcessType" + v:lbl="SubProcessType" + v:prompt="" + v:type="1" + v:format="Embedded;Reusable;Reference" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Embedded)" /> + <v:cp + v:nameU="BpmnIsCollapsed" + v:lbl="IsCollapsed" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnIsATransaction" + v:lbl="IsATransaction" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnIsForCompensation" + v:lbl="IsForCompensation" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Sub-Process)" /> + <v:cp + v:nameU="BpmnAdHoc" + v:lbl="AdHoc" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnAdHocOrdering" + v:lbl="AdHocOrdering" + v:prompt="" + v:type="1" + v:format="Sequential;Parallel" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Parallel)" /> + <v:cp + v:nameU="BpmnBoundaryType" + v:lbl="BoundaryType" + v:prompt="" + v:type="1" + v:format="Default;Call" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Default)" /> + <v:cp + v:nameU="BpmnName" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(SYCL device 
front-end compiler)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="BpmnNumIconsVisible" + v:prompt="" + v:val="VT0(0):26" /> + <v:ud + v:nameU="BpmnIsExtendedSubProcess" + v:prompt="" + v:val="VT0(0):5" /> + <v:ud + v:nameU="msvStructureType" + v:prompt="" + v:val="VT0(0):26" /> + <v:ud + v:nameU="msvSDContainerResize" + v:prompt="" + v:val="VT0(0):26" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Task)" /> + <v:ud + v:nameU="BpmnIconHeight" + v:prompt="" + v:val="VT0(0.15748031496063):24" /> + <v:ud + v:nameU="BpmnIconPinY" + v:prompt="" + v:val="VT0(0.11811023622047):24" /> + <v:ud + v:nameU="BpmnBoundaryType" + v:prompt="" + v:val="VT0(0):26" /> + <v:ud + v:nameU="DefaultWidth" + v:prompt="" + v:val="VT0(0.98425196850394):24" /> + <v:ud + v:nameU="DefaultHeight" + v:prompt="" + v:val="VT0(0.78740157480315):24" /> + <v:ud + v:nameU="ResizeTxtHeight" + v:prompt="" + v:val="VT0(0.78740157480315):24" /> + <v:ud + v:nameU="IsInstance" + v:prompt="" + v:val="VT0(0):5" /> + <v:ud + v:nameU="IsInstance" + v:prompt="" + v:val="VT0(1):5" /> + </v:userDefs> + <title + id="title963">Task.28</title> + <desc + id="desc965">SYCL device front-end compiler</desc> + <g + id="shape29-77" + v:mID="29" + v:groupContext="shape" + v:layerMember="0"> + <title + id="title967">Sheet.29</title> + <g + id="shadow29-78" + v:groupContext="shadow" + v:shadowOffsetX="1.83842E-016" + v:shadowOffsetY="-3.00236" + v:shadowType="1" + transform="translate(0,3.00236)" + class="st1" + style="visibility:visible"> + <rect + x="0" + y="785.19702" + width="70.866096" + height="56.692902" + rx="5.6692901" + ry="5.6692901" + class="st2" + id="rect969" + style="fill:#000000;fill-opacity:0.6;stroke:#000000;stroke-linecap:butt;stroke-opacity:0.6;filter:url(#filter_3.3333334922791)" /> + </g> + <rect + x="0" + y="785.19702" + width="70.866096" + height="56.692902" + rx="5.6692901" + ry="5.6692901" + class="st7" + id="rect972" + style="fill:url(#linearGradient6227);stroke:#15383a;stroke-width:0.23999999;stroke-linecap:butt" /> + </g> + <g + id="group30-83" + v:mID="30" + v:groupContext="group" + v:layerMember="0"> + <title + id="title975">Sheet.30</title> + <g + id="shape31-84" + v:mID="31" + v:groupContext="shape" + v:layerMember="0"> + <title + id="title977">Sheet.31</title> + <rect + x="0" + y="785.19702" + width="70.866096" + height="56.692902" + rx="2.1259799" + ry="2.1259799" + class="st8" + id="rect979" + style="visibility:hidden;fill:url(#linearGradient6229);stroke:#15383a;stroke-width:0.23999999;stroke-linecap:butt" /> + </g> + <g + id="shape32-87" + v:mID="32" + v:groupContext="shape" + v:layerMember="0" + transform="translate(1.8,-1.8)"> + <title + id="title982">Sheet.32</title> + <rect + x="0" + y="788.797" + width="67.266098" + height="53.092899" + rx="2.1259799" + ry="2.1259799" + class="st8" + id="rect984" + style="visibility:hidden;fill:url(#linearGradient6231);stroke:#15383a;stroke-width:0.23999999;stroke-linecap:butt" /> + </g> + </g> + <g + id="shape33-90" + v:mID="33" + v:groupContext="shape" + v:layerMember="0" + transform="translate(36.2438,-2.12598)"> + <title + id="title988">Sheet.33</title> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /> + </v:userDefs> + </g> + <g + id="group34-92" + transform="translate(36.6038,-2.83465)" + v:mID="34" + v:groupContext="group" + v:layerMember="0"> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.19):26" /> + </v:userDefs> + <title + id="title991">Sheet.34</title> + <g + id="shape35-93" + v:mID="35" + v:groupContext="shape" + v:layerMember="0"> + <title + id="title993">Sheet.35</title> + <rect + x="0" + y="830.55103" + width="11.3386" + height="11.3386" + class="st9" + id="rect995" + style="visibility:hidden;fill:#ffffff;stroke:#15383a;stroke-width:0.72000003;stroke-linecap:butt" /> + </g> + <g + id="shape36-95" + v:mID="36" + v:groupContext="shape" + v:layerMember="0" + transform="translate(2.83465,-2.83465)"> + <title + id="title998">Sheet.36</title> + </g> + </g> + <g + id="shape37-97" + v:mID="37" + v:groupContext="shape" + v:layerMember="0" + transform="translate(36.6038,-3.68504)"> + <title + id="title1002">Sheet.37</title> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.19):26" /> + </v:userDefs> + </g> + <g + id="shape38-99" + v:mID="38" + v:groupContext="shape" + v:layerMember="0" + transform="translate(37.7178,-3.68504)"> + <title + id="title1005">Sheet.38</title> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /> + </v:userDefs> + </g> + <g + id="group39-101" + transform="translate(36.2438,-2.83465)" + v:mID="39" + v:groupContext="group" + v:layerMember="0"> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /> + </v:userDefs> + <title + id="title1008">Sheet.39</title> + <g + id="shape40-102" + v:mID="40" + v:groupContext="shape" + v:layerMember="0" + transform="rotate(179.753,3.6955626,836.73185)"> + <title + id="title1010">Sheet.40</title> + </g> + </g> + <g + id="shape41-105" + v:mID="41" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.50394,-43.189)"> + <title + id="title1014">Sheet.41</title> + </g> + <g + id="shape42-107" + v:mID="42" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.00394,-42.689)"> + <title + id="title1017">Sheet.42</title> + </g> + <g + id="group43-109" + transform="translate(2.50394,-44.189)" + v:mID="43" + v:groupContext="group" + v:layerMember="0"> + <title + id="title1020">Sheet.43</title> + <g + id="shape44-110" + v:mID="44" + v:groupContext="shape" + v:layerMember="0"> + <title + id="title1022">Sheet.44</title> + <rect + x="0" + y="833.89001" + width="12" + height="8" + class="st11" + id="rect1024" + style="visibility:hidden;fill:#000000;stroke:#15383b;stroke-width:0.72000003;stroke-linecap:round;stroke-linejoin:round" /> + </g> + <g + id="shape45-112" + v:mID="45" + v:groupContext="shape" + v:layerMember="0" + transform="translate(0,-4.20339)"> + <title + id="title1027">Sheet.45</title> + </g> + </g> + <g + id="shape46-114" + v:mID="46" + v:groupContext="shape" + v:layerMember="0" + transform="translate(2.50394,-44.189)"> + <title + id="title1031">Sheet.46</title> + </g> + <g + id="shape47-116" + v:mID="47" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.50394,-43.189)"> + <title + id="title1034">Sheet.47</title> + </g> + <g + id="shape48-118" + v:mID="48" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.00394,-44.189)"> + <title + id="title1037">Sheet.48</title> + </g> + <g + id="shape49-120" + v:mID="49" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.00394,-44.189)"> + <title + id="title1040">Sheet.49</title> + </g> + <g + id="shape50-122" + v:mID="50" + v:groupContext="shape" + v:layerMember="0" + transform="rotate(-90,21.2115,816.3695)"> + <title + id="title1043">Sheet.50</title> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /> + </v:userDefs> + </g> + <g + id="shape28-124" + v:mID="28" + v:groupContext="groupContent" + v:layerMember="0"> + <v:textBlock + v:margins="rect(2,2,2,2)" + v:tabSpace="42.5197" /> + <v:textRect + cx="35.4331" + cy="813.543" + width="70.87" + height="0" /> + <text + x="6.9299998" + y="802.73999" + class="st12" + v:langID="1033" + id="text1050" + style="font-size:12.00012016px;font-family:Calibri;fill:#ffffff"><v:paragraph + v:horizAlign="1" /><v:tabList />SYCL device <v:lf /><tspan + x="12.06" + dy="1.2em" + class="st13" + id="tspan1046" + style="font-size:12.00012016px">front</tspan>-end <tspan + x="13.96" + dy="1.2em" + class="st13" + id="tspan1048" + style="font-size:12.00012016px">compiler</tspan></text> + + + </g> + </g> + <g + id="group52-128" + transform="translate(66.6142,-628.181)" + v:mID="52" + v:groupContext="group" + v:layerMember="0" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnActivityType" + v:lbl="ActivityType" + v:prompt="" + v:type="1" + v:format="Task;Sub-Process" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Task)" /> + <v:cp + v:nameU="BpmnLoopType" + v:lbl="LoopType" + v:prompt="" + v:type="1" + v:format="None;Standard;Parallel MultiInstance;Sequential MultiInstance" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnTaskType" + v:lbl="TaskType" + v:prompt="" + v:type="1" + v:format="None;Service;Receive;Send;User;Script;Abstract;Manual;Instantiating Receive;Business Rule" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnScript" + v:lbl="Script" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnInstantiate" + v:lbl="Instantiate" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnSubProcessType" + v:lbl="SubProcessType" + v:prompt="" + v:type="1" + v:format="Embedded;Reusable;Reference" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Embedded)" /> + <v:cp + v:nameU="BpmnIsCollapsed" + v:lbl="IsCollapsed" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnIsATransaction" + v:lbl="IsATransaction" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnIsForCompensation" + v:lbl="IsForCompensation" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Sub-Process)" /> + <v:cp + v:nameU="BpmnAdHoc" + v:lbl="AdHoc" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnAdHocOrdering" + v:lbl="AdHocOrdering" + v:prompt="" + v:type="1" + v:format="Sequential;Parallel" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Parallel)" /> + <v:cp + v:nameU="BpmnBoundaryType" + v:lbl="BoundaryType" + v:prompt="" + v:type="1" + v:format="Default;Call" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Default)" /> + <v:cp + v:nameU="BpmnName" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(C++ host compiler)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="BpmnNumIconsVisible" + v:prompt="" + v:val="VT0(0):26" /> + <v:ud + v:nameU="BpmnIsExtendedSubProcess" + v:prompt="" + v:val="VT0(0):5" /> + <v:ud + v:nameU="msvStructureType" + v:prompt="" + v:val="VT0(0):26" /> + <v:ud + v:nameU="msvSDContainerResize" + v:prompt="" + v:val="VT0(0):26" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Task)" /> + <v:ud + v:nameU="BpmnIconHeight" + v:prompt="" + v:val="VT0(0.15748031496063):24" /> + <v:ud + v:nameU="BpmnIconPinY" + v:prompt="" + v:val="VT0(0.11811023622047):24" /> + <v:ud + v:nameU="BpmnBoundaryType" + v:prompt="" + v:val="VT0(0):26" /> + <v:ud + v:nameU="DefaultWidth" + v:prompt="" + v:val="VT0(0.98425196850394):24" /> + <v:ud + v:nameU="DefaultHeight" + v:prompt="" + v:val="VT0(0.78740157480315):24" /> + <v:ud + v:nameU="ResizeTxtHeight" + v:prompt="" + v:val="VT0(0.78740157480315):24" /> + <v:ud + v:nameU="IsInstance" + v:prompt="" + v:val="VT0(0):5" /> + <v:ud + v:nameU="IsInstance" + v:prompt="" + v:val="VT0(1):5" /> + </v:userDefs> + <title + id="title1054">Task.52</title> + <desc + id="desc1056">C++ host compiler</desc> + <g + id="shape53-129" + v:mID="53" + v:groupContext="shape" + v:layerMember="0"> + <title + id="title1058">Sheet.53</title> + <g + id="shadow53-130" + v:groupContext="shadow" + v:shadowOffsetX="1.83842E-016" + v:shadowOffsetY="-3.00236" + v:shadowType="1" + transform="translate(0,3.00236)" + class="st1" + style="visibility:visible"> + <rect + x="0" + y="785.19702" + width="70.866096" + height="56.692902" + rx="5.6692901" + ry="5.6692901" + class="st2" + id="rect1060" + style="fill:#000000;fill-opacity:0.6;stroke:#000000;stroke-linecap:butt;stroke-opacity:0.6;filter:url(#filter_3.3333334922791)" /> + </g> + <rect + x="0" + y="785.19702" + width="70.866096" + height="56.692902" + rx="5.6692901" + ry="5.6692901" + class="st7" + id="rect1063" + style="fill:url(#linearGradient6221);stroke:#15383a;stroke-width:0.23999999;stroke-linecap:butt" /> + </g> + <g + id="group54-135" + v:mID="54" + v:groupContext="group" + v:layerMember="0"> + <title + id="title1066">Sheet.54</title> + <g + id="shape55-136" + v:mID="55" + v:groupContext="shape" + v:layerMember="0"> + <title + id="title1068">Sheet.55</title> + <rect + x="0" + y="785.19702" + width="70.866096" + height="56.692902" + rx="2.1259799" + ry="2.1259799" + class="st8" + id="rect1070" + style="visibility:hidden;fill:url(#linearGradient6223);stroke:#15383a;stroke-width:0.23999999;stroke-linecap:butt" /> + </g> + <g + id="shape56-139" + v:mID="56" + v:groupContext="shape" + v:layerMember="0" + transform="translate(1.8,-1.8)"> + <title + id="title1073">Sheet.56</title> + <rect + x="0" + y="788.797" + width="67.266098" + height="53.092899" + rx="2.1259799" + ry="2.1259799" + class="st8" + id="rect1075" + style="visibility:hidden;fill:url(#linearGradient6225);stroke:#15383a;stroke-width:0.23999999;stroke-linecap:butt" /> + </g> + </g> + <g + id="shape57-142" + v:mID="57" + v:groupContext="shape" + v:layerMember="0" + transform="translate(36.2438,-2.12598)"> + <title + id="title1079">Sheet.57</title> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /> + </v:userDefs> + </g> + <g + id="group58-144" + transform="translate(36.6038,-2.83465)" + v:mID="58" + v:groupContext="group" + v:layerMember="0"> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.19):26" /> + </v:userDefs> + <title + id="title1082">Sheet.58</title> + <g + id="shape59-145" + v:mID="59" + v:groupContext="shape" + v:layerMember="0"> + <title + id="title1084">Sheet.59</title> + <rect + x="0" + y="830.55103" + width="11.3386" + height="11.3386" + class="st9" + id="rect1086" + style="visibility:hidden;fill:#ffffff;stroke:#15383a;stroke-width:0.72000003;stroke-linecap:butt" /> + </g> + <g + id="shape60-147" + v:mID="60" + v:groupContext="shape" + v:layerMember="0" + transform="translate(2.83465,-2.83465)"> + <title + id="title1089">Sheet.60</title> + </g> + </g> + <g + id="shape61-149" + v:mID="61" + v:groupContext="shape" + v:layerMember="0" + transform="translate(36.6038,-3.68504)"> + <title + id="title1093">Sheet.61</title> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.19):26" /> + </v:userDefs> + </g> + <g + id="shape62-151" + v:mID="62" + v:groupContext="shape" + v:layerMember="0" + transform="translate(37.7178,-3.68504)"> + <title + id="title1096">Sheet.62</title> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /> + </v:userDefs> + </g> + <g + id="group63-153" + transform="translate(36.2438,-2.83465)" + v:mID="63" + v:groupContext="group" + v:layerMember="0"> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /> + </v:userDefs> + <title + id="title1099">Sheet.63</title> + <g + id="shape64-154" + v:mID="64" + v:groupContext="shape" + v:layerMember="0" + transform="rotate(179.753,3.6955626,836.73185)"> + <title + id="title1101">Sheet.64</title> + </g> + </g> + <g + id="shape65-157" + v:mID="65" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.50394,-43.189)"> + <title + id="title1105">Sheet.65</title> + </g> + <g + id="shape66-159" + v:mID="66" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.00394,-42.689)"> + <title + id="title1108">Sheet.66</title> + </g> + <g + id="group67-161" + transform="translate(2.50394,-44.189)" + v:mID="67" + v:groupContext="group" + v:layerMember="0"> + <title + id="title1111">Sheet.67</title> + <g + id="shape68-162" + v:mID="68" + v:groupContext="shape" + v:layerMember="0"> + <title + id="title1113">Sheet.68</title> + <rect + x="0" + y="833.89001" + width="12" + height="8" + class="st11" + id="rect1115" + style="visibility:hidden;fill:#000000;stroke:#15383b;stroke-width:0.72000003;stroke-linecap:round;stroke-linejoin:round" /> + </g> + <g + id="shape69-164" + v:mID="69" + v:groupContext="shape" + v:layerMember="0" + transform="translate(0,-4.20339)"> + <title + id="title1118">Sheet.69</title> + </g> + </g> + <g + id="shape70-166" + v:mID="70" + v:groupContext="shape" + v:layerMember="0" + transform="translate(2.50394,-44.189)"> + <title + id="title1122">Sheet.70</title> + </g> + <g + id="shape71-168" + v:mID="71" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.50394,-43.189)"> + <title + id="title1125">Sheet.71</title> + </g> + <g + id="shape72-170" + v:mID="72" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.00394,-44.189)"> + <title + id="title1128">Sheet.72</title> + </g> + <g + id="shape73-172" + v:mID="73" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.00394,-44.189)"> + <title + id="title1131">Sheet.73</title> + </g> + <g + id="shape74-174" + v:mID="74" + v:groupContext="shape" + v:layerMember="0" + transform="rotate(-90,21.2115,816.3695)"> + <title + id="title1134">Sheet.74</title> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /> + </v:userDefs> + </g> + <g + id="shape52-176" + v:mID="52" + v:groupContext="groupContent" + v:layerMember="0"> + <v:textBlock + v:margins="rect(2,2,2,2)" + v:tabSpace="42.5197" /> + <v:textRect + cx="35.4331" + cy="813.543" + width="70.87" + height="0" /> + <text + x="14.23" + y="809.94" + class="st12" + v:langID="1033" + id="text1139" + style="font-size:12.00012016px;font-family:Calibri;fill:#ffffff"><v:paragraph + v:horizAlign="1" /><v:tabList />C++ host <tspan + x="13.96" + dy="1.2em" + class="st13" + id="tspan1137" + style="font-size:12.00012016px">compiler</tspan></text> + + + </g> + </g> + + <g + id="group76-184" + transform="translate(292.07032,-563.91049)" + v:mID="76" + v:groupContext="group" + v:layerMember="0" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnArtifactType" + v:lbl="ArtifactType" + v:prompt="" + v:type="1" + v:format="Data Object;Group;Annotation" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Data Object)" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnState" + v:lbl="State" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnText" + v:lbl="Text" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategoryRef" + v:lbl="CategoryRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Artifact)" /> + <v:cp + v:nameU="BpmnCollection" + v:lbl="Collection" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnName" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(LLVM IR)" /> + <v:cp + v:nameU="BpmnText" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(LLVM IR)" /> + <v:cp + v:nameU="BpmnCategoryRef" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(LLVM IR)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Data Object)" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + </v:userDefs> + <title + id="title1148">Data Object.76</title> + <desc + id="desc1150">LLVM IR</desc> + <g + id="shape77-185" + v:mID="77" + v:groupContext="shape" + v:layerMember="0"> + <title + id="title1152">Sheet.77</title> + <g + id="shadow77-186" + v:groupContext="shadow" + v:shadowOffsetX="1.83842E-016" + v:shadowOffsetY="-3.00236" + v:shadowType="1" + transform="translate(0,3.00236)" + class="st1" + style="visibility:visible"> + <path + d="M 34.02,809.6 H 21.77 V 796.54 H 0 v 45.35 h 34.02 z m 0,-1.09 -12.25,-11.97 v 13.06 h 12.25 z" + class="st2" + id="path1154" + inkscape:connector-curvature="0" + style="fill:#000000;fill-opacity:0.6;stroke:#000000;stroke-linecap:butt;stroke-opacity:0.6;filter:url(#filter_3.3333334922791)" /> + </g> + <path + d="M 34.02,809.6 H 21.77 V 796.54 H 0 v 45.35 h 34.02 z m 0,-1.09 -12.25,-11.97 v 13.06 h 12.25 z" + class="st3" + id="path1157" + inkscape:connector-curvature="0" + style="fill:#0070c0;stroke:#15383a;stroke-width:0.23999999;stroke-linecap:butt" /> + </g> + <g + id="shape78-190" + v:mID="78" + v:groupContext="shape" + v:layerMember="0" + transform="translate(14.8819)"> + <title + id="title1160">Sheet.78</title> + </g> + <g + id="shape76-192" + v:mID="76" + v:groupContext="groupContent" + v:layerMember="0"> + <v:textBlock + v:margins="rect(2,2,2,2)" + v:tabSpace="42.5197" + v:verticalAlign="0" /> + <v:textRect + cx="17.0079" + cy="851.092" + width="46.13" + height="18.4037" /> + <text + x="-2.7" + y="854.69" + class="st4" + v:langID="1033" + id="text1163" + style="font-size:12.00012016px;font-family:Calibri;fill:#15383a"><v:paragraph + v:horizAlign="1" /><v:tabList />LLVM IR</text> + + + </g> + </g> + <g + id="shape127-194" + v:mID="127" + v:groupContext="shape" + v:layerMember="1" + transform="matrix(0.83907174,0,0,1,307.50008,-560.84074)" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <title + id="title1167">Dynamic Connector.127</title> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConnectingObjectType" + v:lbl="ConnectingObjectType" + v:prompt="" + v:type="1" + v:format="Sequence Flow;Message Flow;Association" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Sequence Flow)" /> + <v:cp + v:nameU="BpmnConditionType" + v:lbl="ConditionType" + v:prompt="" + v:type="1" + v:format="None;Expression;Default" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnConditionExpression" + v:lbl="ConditionExpression" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef" + v:lbl="MessageRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnMessageRef_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties" + v:lbl=" Properties" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Type" + v:lbl=" Type" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value" + v:lbl=" Value" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Correlation" + v:lbl=" Correlation" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef" + v:lbl=" FromRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef" + v:lbl=" ToRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDirection" + v:lbl="Direction" + v:prompt="" + v:type="1" + v:format="None;One;Both" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(One)" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Connecting Object)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Connecting Object)" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + </v:userDefs> + <path + d="m 0,841.89 c 0,7.09 0,16.92 8.21,22.21 8.37,5.38 25.25,6.04 37.91,6.12 l 0.36,0.01" + class="st14" + id="path1169" + inkscape:connector-curvature="0" + style="stroke:#000000;stroke-width:0.72000003;stroke-linecap:butt;marker-end:url(#mrkr4-75)" /> + </g> + <g + id="group104-199" + transform="translate(196.09134,-331.20033)" + v:mID="104" + v:groupContext="group" + v:layerMember="0" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnActivityType" + v:lbl="ActivityType" + v:prompt="" + v:type="1" + v:format="Task;Sub-Process" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Task)" /> + <v:cp + v:nameU="BpmnLoopType" + v:lbl="LoopType" + v:prompt="" + v:type="1" + v:format="None;Standard;Parallel MultiInstance;Sequential MultiInstance" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnTaskType" + v:lbl="TaskType" + v:prompt="" + v:type="1" + v:format="None;Service;Receive;Send;User;Script;Abstract;Manual;Instantiating Receive;Business Rule" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnScript" + v:lbl="Script" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnInstantiate" + v:lbl="Instantiate" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnSubProcessType" + v:lbl="SubProcessType" + v:prompt="" + v:type="1" + v:format="Embedded;Reusable;Reference" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Embedded)" /> + <v:cp + v:nameU="BpmnIsCollapsed" + v:lbl="IsCollapsed" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnIsATransaction" + v:lbl="IsATransaction" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnIsForCompensation" + v:lbl="IsForCompensation" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Sub-Process)" /> + <v:cp + v:nameU="BpmnAdHoc" + v:lbl="AdHoc" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnAdHocOrdering" + v:lbl="AdHocOrdering" + v:prompt="" + v:type="1" + v:format="Sequential;Parallel" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Parallel)" /> + <v:cp + v:nameU="BpmnBoundaryType" + v:lbl="BoundaryType" + v:prompt="" + v:type="1" + v:format="Default;Call" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Default)" /> + <v:cp + v:nameU="BpmnName" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(Target specific 
LLVM compiler)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="BpmnNumIconsVisible" + v:prompt="" + v:val="VT0(0):26" /> + <v:ud + v:nameU="BpmnIsExtendedSubProcess" + v:prompt="" + v:val="VT0(0):5" /> + <v:ud + v:nameU="msvStructureType" + v:prompt="" + v:val="VT0(0):26" /> + <v:ud + v:nameU="msvSDContainerResize" + v:prompt="" + v:val="VT0(0):26" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Task)" /> + <v:ud + v:nameU="BpmnIconHeight" + v:prompt="" + v:val="VT0(0.15748031496063):24" /> + <v:ud + v:nameU="BpmnIconPinY" + v:prompt="" + v:val="VT0(0.11811023622047):24" /> + <v:ud + v:nameU="BpmnBoundaryType" + v:prompt="" + v:val="VT0(0):26" /> + <v:ud + v:nameU="DefaultWidth" + v:prompt="" + v:val="VT0(0.98425196850394):24" /> + <v:ud + v:nameU="DefaultHeight" + v:prompt="" + v:val="VT0(0.78740157480315):24" /> + <v:ud + v:nameU="ResizeTxtHeight" + v:prompt="" + v:val="VT0(0.78740157480315):24" /> + <v:ud + v:nameU="IsInstance" + v:prompt="" + v:val="VT0(0):5" /> + <v:ud + v:nameU="IsInstance" + v:prompt="" + v:val="VT0(1):5" /> + </v:userDefs> + <title + id="title1172">Task.104</title> + <desc + id="desc1174">Target specific LLVM compiler</desc> + <g + id="shape105-200" + v:mID="105" + v:groupContext="shape" + v:layerMember="0" + transform="matrix(1,0,0,0.64879095,52.500077,270.66109)"> + <title + id="title1176">Sheet.105</title> + <g + id="shadow105-201" + v:groupContext="shadow" + v:shadowOffsetX="1.83842E-016" + v:shadowOffsetY="-3.00236" + v:shadowType="1" + transform="translate(0,3.00236)" + class="st1" + style="visibility:visible"> + <rect + x="0" + y="785.19702" + width="90.708702" + height="56.692902" + rx="5.6692901" + ry="5.6692901" + class="st2" + id="rect1178" + style="fill:#000000;fill-opacity:0.6;stroke:#000000;stroke-linecap:butt;stroke-opacity:0.6;filter:url(#filter_3.3333334922791)" /> + </g> + <rect + x="0" + y="785.19702" + width="90.708702" + height="56.692902" + rx="5.6692901" + ry="5.6692901" + class="st7" + id="rect1181" + style="fill:url(#linearGradient6215);stroke:#15383a;stroke-width:0.23999999;stroke-linecap:butt" /> + </g> + <g + id="group106-206" + v:mID="106" + v:groupContext="group" + v:layerMember="0" + transform="matrix(1,0,0,0.68314981,52.500077,243.68261)"> + <title + id="title1184">Sheet.106</title> + + <g + id="shape108-210" + v:mID="108" + v:groupContext="shape" + v:layerMember="0" + transform="translate(1.8,-1.8)"> + <title + id="title1191">Sheet.108</title> + + </g> + </g> + <g + id="shape109-213" + v:mID="109" + v:groupContext="shape" + v:layerMember="0" + transform="translate(46.165,-2.12598)"> + <title + id="title1197">Sheet.109</title> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /> + </v:userDefs> + </g> + + <g + id="shape113-220" + v:mID="113" + v:groupContext="shape" + v:layerMember="0" + transform="translate(46.525,-3.68504)"> + <title + id="title1211">Sheet.113</title> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.19):26" /> + </v:userDefs> + </g> + <g + id="shape114-222" + v:mID="114" + v:groupContext="shape" + v:layerMember="0" + transform="translate(47.6391,-3.68504)"> + <title + id="title1214">Sheet.114</title> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /> + </v:userDefs> + </g> + <g + id="group115-224" + transform="translate(46.165,-2.83465)" + v:mID="115" + v:groupContext="group" + v:layerMember="0"> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /> + </v:userDefs> + <title + id="title1217">Sheet.115</title> + <g + id="shape116-225" + v:mID="116" + v:groupContext="shape" + v:layerMember="0" + transform="rotate(179.753,3.6955626,836.73185)"> + <title + id="title1219">Sheet.116</title> + </g> + </g> + <g + id="shape117-228" + v:mID="117" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.50394,-43.189)"> + <title + id="title1223">Sheet.117</title> + </g> + <g + id="shape118-230" + v:mID="118" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.00394,-42.689)"> + <title + id="title1226">Sheet.118</title> + </g> + + <g + id="shape122-237" + v:mID="122" + v:groupContext="shape" + v:layerMember="0" + transform="translate(2.50394,-44.189)"> + <title + id="title1240">Sheet.122</title> + </g> + <g + id="shape123-239" + v:mID="123" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.50394,-43.189)"> + <title + id="title1243">Sheet.123</title> + </g> + <g + id="shape124-241" + v:mID="124" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.00394,-44.189)"> + <title + id="title1246">Sheet.124</title> + </g> + <g + id="shape125-243" + v:mID="125" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.00394,-44.189)"> + <title + id="title1249">Sheet.125</title> + </g> + <g + id="shape126-245" + v:mID="126" + v:groupContext="shape" + v:layerMember="0" + transform="rotate(-90,26.172,811.409)"> + <title + id="title1252">Sheet.126</title> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /> + </v:userDefs> + </g> + <g + id="shape104-247" + v:mID="104" + v:groupContext="groupContent" + v:layerMember="0" + transform="translate(52.500077,-15.000024)"> + <v:textBlock + v:margins="rect(2,2,2,2)" + v:tabSpace="42.5197" /> + <v:textRect + cx="45.3543" + cy="813.543" + width="90.71" + height="0" /> + <text + x="10.15" + y="809.94" + class="st12" + v:langID="1033" + id="text1257" + style="font-size:12.00012016px;font-family:Calibri;fill:#ffffff"><v:paragraph + v:horizAlign="1" /><v:tabList />Target specific <v:lf /><tspan + x="8.9399996" + dy="1.2em" + class="st13" + id="tspan1255" + style="font-size:12.00012016px">LLVM compiler</tspan></text> + + + </g> + </g> + + <g + id="group128-255" + transform="translate(278.23006,-288.71279)" + v:mID="128" + v:groupContext="group" + v:layerMember="0" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnArtifactType" + v:lbl="ArtifactType" + v:prompt="" + v:type="1" + v:format="Data Object;Group;Annotation" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Data Object)" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnState" + v:lbl="State" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnText" + v:lbl="Text" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategoryRef" + v:lbl="CategoryRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Artifact)" /> + <v:cp + v:nameU="BpmnCollection" + v:lbl="Collection" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnName" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(Target binary)" /> + <v:cp + v:nameU="BpmnText" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(Target binary)" /> + <v:cp + v:nameU="BpmnCategoryRef" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(Target binary)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Data Object)" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + </v:userDefs> + <title + id="title1266">Data Object.128</title> + <desc + id="desc1268">Target binary</desc> + <g + id="shape129-256" + v:mID="129" + v:groupContext="shape" + v:layerMember="0"> + <title + id="title1270">Sheet.129</title> + <g + id="shadow129-257" + v:groupContext="shadow" + v:shadowOffsetX="1.83842E-016" + v:shadowOffsetY="-3.00236" + v:shadowType="1" + transform="translate(0,3.00236)" + class="st1" + style="visibility:visible"> + <path + d="M 34.02,809.6 H 21.77 V 796.54 H 0 v 45.35 h 34.02 z m 0,-1.09 -12.25,-11.97 v 13.06 h 12.25 z" + class="st2" + id="path1272" + inkscape:connector-curvature="0" + style="fill:#000000;fill-opacity:0.6;stroke:#000000;stroke-linecap:butt;stroke-opacity:0.6;filter:url(#filter_3.3333334922791)" /> + </g> + <path + d="M 34.02,809.6 H 21.77 V 796.54 H 0 v 45.35 h 34.02 z m 0,-1.09 -12.25,-11.97 v 13.06 h 12.25 z" + class="st3" + id="path1275" + inkscape:connector-curvature="0" + style="fill:#0070c0;stroke:#15383a;stroke-width:0.23999999;stroke-linecap:butt" /> + </g> + <g + id="shape130-261" + v:mID="130" + v:groupContext="shape" + v:layerMember="0" + transform="translate(14.8819)"> + <title + id="title1278">Sheet.130</title> + </g> + <g + id="shape128-263" + v:mID="128" + v:groupContext="groupContent" + v:layerMember="0"> + <v:textBlock + v:margins="rect(2,2,2,2)" + v:tabSpace="42.5197" + v:verticalAlign="0" /> + <v:textRect + cx="17.0079" + cy="851.092" + width="71.58" + height="18.4037" /> + <text + x="-15.42" + y="854.69" + class="st4" + v:langID="1033" + id="text1281" + style="font-size:12.00012016px;font-family:Calibri;fill:#15383a"><v:paragraph + v:horizAlign="1" /><v:tabList />Target binary</text> + + + </g> + </g><g + id="shape131-250" + v:mID="131" + v:groupContext="shape" + v:layerMember="1" + transform="matrix(1,0,0,0.92951821,286.65106,-296.16257)" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <title + id="title1261">Dynamic Connector.131</title> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConnectingObjectType" + v:lbl="ConnectingObjectType" + v:prompt="" + v:type="1" + v:format="Sequence Flow;Message Flow;Association" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Sequence Flow)" /> + <v:cp + v:nameU="BpmnConditionType" + v:lbl="ConditionType" + v:prompt="" + v:type="1" + v:format="None;Expression;Default" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnConditionExpression" + v:lbl="ConditionExpression" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef" + v:lbl="MessageRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnMessageRef_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties" + v:lbl=" Properties" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Type" + v:lbl=" Type" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value" + v:lbl=" Value" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Correlation" + v:lbl=" Correlation" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef" + v:lbl=" FromRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef" + v:lbl=" ToRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDirection" + v:lbl="Direction" + v:prompt="" + v:type="1" + v:format="None;One;Both" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(One)" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Connecting Object)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Connecting Object)" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + </v:userDefs> + <path + d="m 7.09,841.89 c 0,4.28 0,11.78 0,17.64" + class="st5" + id="path1263" + inkscape:connector-curvature="0" + style="stroke:#000000;stroke-width:0.72;stroke-linecap:butt;marker-end:url(#mrkr4-16)" /> + </g> + + + + + <g + id="group165-331" + transform="translate(89.229781,-290.21044)" + v:mID="165" + v:groupContext="group" + v:layerMember="0" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnArtifactType" + v:lbl="ArtifactType" + v:prompt="" + v:type="1" + v:format="Data Object;Group;Annotation" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Data Object)" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnState" + v:lbl="State" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnText" + v:lbl="Text" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategoryRef" + v:lbl="CategoryRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Artifact)" /> + <v:cp + v:nameU="BpmnCollection" + v:lbl="Collection" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnName" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(Host object file)" /> + <v:cp + v:nameU="BpmnText" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(Host object file)" /> + <v:cp + v:nameU="BpmnCategoryRef" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(Host object file)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Data Object)" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + </v:userDefs> + <title + id="title1389">Data Object.165</title> + <desc + id="desc1391">Host object file</desc> + <g + id="shape166-332" + v:mID="166" + v:groupContext="shape" + v:layerMember="0"> + <title + id="title1393">Sheet.166</title> + <g + id="shadow166-333" + v:groupContext="shadow" + v:shadowOffsetX="1.83842E-016" + v:shadowOffsetY="-3.00236" + v:shadowType="1" + transform="translate(0,3.00236)" + class="st1" + style="visibility:visible"> + <path + d="M 34.02,809.6 H 21.77 V 796.54 H 0 v 45.35 h 34.02 z m 0,-1.09 -12.25,-11.97 v 13.06 h 12.25 z" + class="st2" + id="path1395" + inkscape:connector-curvature="0" + style="fill:#000000;fill-opacity:0.6;stroke:#000000;stroke-linecap:butt;stroke-opacity:0.6;filter:url(#filter_3.3333334922791)" /> + </g> + <path + d="M 34.02,809.6 H 21.77 V 796.54 H 0 v 45.35 h 34.02 z m 0,-1.09 -12.25,-11.97 v 13.06 h 12.25 z" + class="st15" + id="path1398" + inkscape:connector-curvature="0" + style="fill:#ffc000;stroke:#15383a;stroke-width:0.23999999;stroke-linecap:butt" /> + </g> + <g + id="shape167-337" + v:mID="167" + v:groupContext="shape" + v:layerMember="0" + transform="translate(14.8819)"> + <title + id="title1401">Sheet.167</title> + </g> + <g + id="shape165-339" + v:mID="165" + v:groupContext="groupContent" + v:layerMember="0"> + <v:textBlock + v:margins="rect(2,2,2,2)" + v:tabSpace="42.5197" + v:verticalAlign="0" /> + <v:textRect + cx="17.0079" + cy="851.092" + width="80.37" + height="18.4037" /> + <text + x="-19.82" + y="854.69" + class="st4" + v:langID="1033" + id="text1404" + style="font-size:12.00012016px;font-family:Calibri;fill:#15383a"><v:paragraph + v:horizAlign="1" /><v:tabList />Host object file</text> + + + </g> + </g> + <g + id="group176-341" + transform="translate(259.683,-216.14626)" + v:mID="176" + v:groupContext="group" + v:layerMember="0" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnActivityType" + v:lbl="ActivityType" + v:prompt="" + v:type="1" + v:format="Task;Sub-Process" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Task)" /> + <v:cp + v:nameU="BpmnLoopType" + v:lbl="LoopType" + v:prompt="" + v:type="1" + v:format="None;Standard;Parallel MultiInstance;Sequential MultiInstance" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnTaskType" + v:lbl="TaskType" + v:prompt="" + v:type="1" + v:format="None;Service;Receive;Send;User;Script;Abstract;Manual;Instantiating Receive;Business Rule" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnScript" + v:lbl="Script" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnInstantiate" + v:lbl="Instantiate" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnSubProcessType" + v:lbl="SubProcessType" + v:prompt="" + v:type="1" + v:format="Embedded;Reusable;Reference" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Embedded)" /> + <v:cp + v:nameU="BpmnIsCollapsed" + v:lbl="IsCollapsed" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnIsATransaction" + v:lbl="IsATransaction" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnIsForCompensation" + v:lbl="IsForCompensation" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Sub-Process)" /> + <v:cp + v:nameU="BpmnAdHoc" + v:lbl="AdHoc" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnAdHocOrdering" + v:lbl="AdHocOrdering" + v:prompt="" + v:type="1" + v:format="Sequential;Parallel" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Parallel)" /> + <v:cp + v:nameU="BpmnBoundaryType" + v:lbl="BoundaryType" + v:prompt="" + v:type="1" + v:format="Default;Call" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Default)" /> + <v:cp + v:nameU="BpmnName" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(Offload-wrapper)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="BpmnNumIconsVisible" + v:prompt="" + v:val="VT0(0):26" /> + <v:ud + v:nameU="BpmnIsExtendedSubProcess" + v:prompt="" + v:val="VT0(0):5" /> + <v:ud + v:nameU="msvStructureType" + v:prompt="" + v:val="VT0(0):26" /> + <v:ud + v:nameU="msvSDContainerResize" + v:prompt="" + v:val="VT0(0):26" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Task)" /> + <v:ud + v:nameU="BpmnIconHeight" + v:prompt="" + v:val="VT0(0.15748031496063):24" /> + <v:ud + v:nameU="BpmnIconPinY" + v:prompt="" + v:val="VT0(0.11811023622047):24" /> + <v:ud + v:nameU="BpmnBoundaryType" + v:prompt="" + v:val="VT0(0):26" /> + <v:ud + v:nameU="DefaultWidth" + v:prompt="" + v:val="VT0(0.98425196850394):24" /> + <v:ud + v:nameU="DefaultHeight" + v:prompt="" + v:val="VT0(0.78740157480315):24" /> + <v:ud + v:nameU="ResizeTxtHeight" + v:prompt="" + v:val="VT0(0.78740157480315):24" /> + <v:ud + v:nameU="IsInstance" + v:prompt="" + v:val="VT0(0):5" /> + <v:ud + v:nameU="IsInstance" + v:prompt="" + v:val="VT0(1):5" /> + </v:userDefs> + <title + id="title1408">Task.176</title> + <desc + id="desc1410">Offload-wrapper</desc> + <g + id="shape177-342" + v:mID="177" + v:groupContext="shape" + v:layerMember="0" + transform="matrix(1,0,0,0.83333357,0,138.86638)"> + <title + id="title1412">Sheet.177</title> + <g + id="shadow177-343" + v:groupContext="shadow" + v:shadowOffsetX="1.83842E-016" + v:shadowOffsetY="-3.00236" + v:shadowType="1" + transform="matrix(1,0,0,0.79375173,0,164.94789)" + class="st1" + style="visibility:visible"> + <rect + x="0" + y="785.19702" + width="70.866096" + height="56.692902" + rx="5.6692901" + ry="5.6692901" + class="st2" + id="rect1414" + style="fill:#000000;fill-opacity:0.6;stroke:#000000;stroke-linecap:butt;stroke-opacity:0.6;filter:url(#filter_3.3333334922791)" /> + </g> + <rect + x="0" + y="784.59943" + width="70.866096" + height="45.000095" + rx="5.6692901" + ry="4.5000095" + class="st7" + id="rect1417" + style="fill:url(#linearGradient6203);stroke:#15383a;stroke-width:0.2138226;stroke-linecap:butt" /> + </g> + + <g + id="shape181-355" + v:mID="181" + v:groupContext="shape" + v:layerMember="0" + transform="translate(36.2438,-2.12598)"> + <title + id="title1433">Sheet.181</title> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /> + </v:userDefs> + </g> + + <g + id="shape185-362" + v:mID="185" + v:groupContext="shape" + v:layerMember="0" + transform="translate(36.6038,-3.68504)"> + <title + id="title1447">Sheet.185</title> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.19):26" /> + </v:userDefs> + </g> + <g + id="shape186-364" + v:mID="186" + v:groupContext="shape" + v:layerMember="0" + transform="translate(37.7178,-3.68504)"> + <title + id="title1450">Sheet.186</title> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /> + </v:userDefs> + </g> + <g + id="group187-366" + transform="translate(36.2438,-2.83465)" + v:mID="187" + v:groupContext="group" + v:layerMember="0"> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /> + </v:userDefs> + <title + id="title1453">Sheet.187</title> + <g + id="shape188-367" + v:mID="188" + v:groupContext="shape" + v:layerMember="0" + transform="rotate(179.753,3.6955626,836.73185)"> + <title + id="title1455">Sheet.188</title> + </g> + </g> + <g + id="shape189-370" + v:mID="189" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.50394,-43.189)"> + <title + id="title1459">Sheet.189</title> + </g> + <g + id="shape190-372" + v:mID="190" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.00394,-42.689)"> + <title + id="title1462">Sheet.190</title> + </g> + + <g + id="shape194-379" + v:mID="194" + v:groupContext="shape" + v:layerMember="0" + transform="translate(2.50394,-44.189)"> + <title + id="title1476">Sheet.194</title> + </g> + <g + id="shape195-381" + v:mID="195" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.50394,-43.189)"> + <title + id="title1479">Sheet.195</title> + </g> + <g + id="shape196-383" + v:mID="196" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.00394,-44.189)"> + <title + id="title1482">Sheet.196</title> + </g> + <g + id="shape197-385" + v:mID="197" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.00394,-44.189)"> + <title + id="title1485">Sheet.197</title> + </g> + <g + id="shape198-387" + v:mID="198" + v:groupContext="shape" + v:layerMember="0" + transform="rotate(-90,21.2115,816.3695)"> + <title + id="title1488">Sheet.198</title> + <v:userDefs> + <v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /> + <v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /> + </v:userDefs> + </g> + <g + id="shape176-389" + v:mID="176" + v:groupContext="groupContent" + v:layerMember="0"> + <v:textBlock + v:margins="rect(2,2,2,2)" + v:tabSpace="42.5197" /> + <v:textRect + cx="35.4331" + cy="813.543" + width="70.87" + height="0" /> + <text + x="15.39" + y="809.94" + class="st12" + v:langID="1033" + id="text1493" + style="font-size:12.00012016px;font-family:Calibri;fill:#ffffff"><v:paragraph + v:horizAlign="1" /><v:tabList />Offload-<tspan + x="14.8" + dy="1.2em" + class="st13" + id="tspan1491" + style="font-size:12.00012016px">wrapper</tspan></text> + + + </g> + </g> + + + <g + id="shape205-407" + v:mID="205" + v:groupContext="shape" + v:layerMember="1" + transform="translate(158.74,-710.386)" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <title + id="title1521">Dynamic Connector.205</title> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConnectingObjectType" + v:lbl="ConnectingObjectType" + v:prompt="" + v:type="1" + v:format="Sequence Flow;Message Flow;Association" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Sequence Flow)" /> + <v:cp + v:nameU="BpmnConditionType" + v:lbl="ConditionType" + v:prompt="" + v:type="1" + v:format="None;Expression;Default" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnConditionExpression" + v:lbl="ConditionExpression" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef" + v:lbl="MessageRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnMessageRef_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties" + v:lbl=" Properties" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Type" + v:lbl=" Type" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value" + v:lbl=" Value" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Correlation" + v:lbl=" Correlation" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef" + v:lbl=" FromRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef" + v:lbl=" ToRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDirection" + v:lbl="Direction" + v:prompt="" + v:type="1" + v:format="None;One;Both" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(One)" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Connecting Object)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Connecting Object)" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + </v:userDefs> + <path + d="m 0,841.89 c 0,10.63 -16.13,10.63 -32.25,10.63 -14.25,0 -28.51,0 -31.9,9.9 l -0.05,0.35" + class="st14" + id="path1523" + inkscape:connector-curvature="0" + style="stroke:#000000;stroke-width:0.72000003;stroke-linecap:butt;marker-end:url(#mrkr4-75)" /> + </g> + <g + id="shape206-412" + v:mID="206" + v:groupContext="shape" + v:layerMember="1" + transform="translate(110.308,-631.016)" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <title + id="title1526">Dynamic Connector.206</title> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConnectingObjectType" + v:lbl="ConnectingObjectType" + v:prompt="" + v:type="1" + v:format="Sequence Flow;Message Flow;Association" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Sequence Flow)" /> + <v:cp + v:nameU="BpmnConditionType" + v:lbl="ConditionType" + v:prompt="" + v:type="1" + v:format="None;Expression;Default" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnConditionExpression" + v:lbl="ConditionExpression" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef" + v:lbl="MessageRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnMessageRef_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties" + v:lbl=" Properties" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Type" + v:lbl=" Type" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value" + v:lbl=" Value" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Correlation" + v:lbl=" Correlation" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef" + v:lbl=" FromRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef" + v:lbl=" ToRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDirection" + v:lbl="Direction" + v:prompt="" + v:type="1" + v:format="None;One;Both" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(One)" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Connecting Object)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Connecting Object)" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + </v:userDefs> + <path + d="m -7.09,841.89 0,289.51" + class="st5" + id="path1528" + inkscape:connector-curvature="0" + style="stroke:#000000;stroke-width:0.72000003;stroke-linecap:butt;marker-end:url(#mrkr4-16)" + sodipodi:nodetypes="cc" /> + </g> + + + + + + <g + id="group228-466" + transform="translate(182.835,-633.85)" + v:mID="228" + v:groupContext="group" + v:layerMember="0" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnArtifactType" + v:lbl="ArtifactType" + v:prompt="" + v:type="1" + v:format="Data Object;Group;Annotation" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Data Object)" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnState" + v:lbl="State" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnText" + v:lbl="Text" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategoryRef" + v:lbl="CategoryRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Artifact)" /> + <v:cp + v:nameU="BpmnCollection" + v:lbl="Collection" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnName" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(Integration
header)" /> + <v:cp + v:nameU="BpmnText" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(Integration
header)" /> + <v:cp + v:nameU="BpmnCategoryRef" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(Integration
header)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Data Object)" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + </v:userDefs> + <title + id="title1624">Data Object.228</title> + <desc + id="desc1626">Integration header</desc> + <g + id="shape229-467" + v:mID="229" + v:groupContext="shape" + v:layerMember="0"> + <title + id="title1628">Sheet.229</title> + <g + id="shadow229-468" + v:groupContext="shadow" + v:shadowOffsetX="1.83842E-016" + v:shadowOffsetY="-3.00236" + v:shadowType="1" + transform="translate(0,3.00236)" + class="st1" + style="visibility:visible"> + <path + d="M 34.02,809.6 H 21.77 V 796.54 H 0 v 45.35 h 34.02 z m 0,-1.09 -12.25,-11.97 v 13.06 h 12.25 z" + class="st2" + id="path1630" + inkscape:connector-curvature="0" + style="fill:#000000;fill-opacity:0.6;stroke:#000000;stroke-linecap:butt;stroke-opacity:0.6;filter:url(#filter_3.3333334922791)" /> + </g> + <path + d="M 34.02,809.6 H 21.77 V 796.54 H 0 v 45.35 h 34.02 z m 0,-1.09 -12.25,-11.97 v 13.06 h 12.25 z" + class="st3" + id="path1633" + inkscape:connector-curvature="0" + style="fill:#0070c0;stroke:#15383a;stroke-width:0.23999999;stroke-linecap:butt" /> + </g> + <g + id="shape230-472" + v:mID="230" + v:groupContext="shape" + v:layerMember="0" + transform="translate(14.8819)"> + <title + id="title1636">Sheet.230</title> + </g> + <g + id="shape228-474" + v:mID="228" + v:groupContext="groupContent" + v:layerMember="0"> + <v:textBlock + v:margins="rect(2,2,2,2)" + v:tabSpace="42.5197" + v:verticalAlign="0" /> + <v:textRect + cx="17.0079" + cy="858.292" + width="61.03" + height="32.8038" /> + <text + x="-10.14" + y="854.69" + class="st4" + v:langID="1033" + id="text1641" + style="font-size:12.00012016px;font-family:Calibri;fill:#15383a"><v:paragraph + v:horizAlign="1" /><v:tabList />Integration<v:lf /><tspan + x="-0.23" + dy="1.2em" + class="st13" + id="tspan1639" + style="font-size:12.00012016px">header</tspan></text> + + + </g> + </g> + <g + id="shape231-477" + v:mID="231" + v:groupContext="shape" + v:layerMember="1" + transform="translate(269.291,-663.614)" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <title + id="title1645">Dynamic Connector.231</title> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConnectingObjectType" + v:lbl="ConnectingObjectType" + v:prompt="" + v:type="1" + v:format="Sequence Flow;Message Flow;Association" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Sequence Flow)" /> + <v:cp + v:nameU="BpmnConditionType" + v:lbl="ConditionType" + v:prompt="" + v:type="1" + v:format="None;Expression;Default" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnConditionExpression" + v:lbl="ConditionExpression" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef" + v:lbl="MessageRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnMessageRef_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties" + v:lbl=" Properties" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Type" + v:lbl=" Type" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value" + v:lbl=" Value" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Correlation" + v:lbl=" Correlation" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef" + v:lbl=" FromRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef" + v:lbl=" ToRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDirection" + v:lbl="Direction" + v:prompt="" + v:type="1" + v:format="None;One;Both" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(One)" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Connecting Object)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Connecting Object)" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + </v:userDefs> + <path + d="M 0,848.98 H -47.4" + class="st5" + id="path1647" + inkscape:connector-curvature="0" + style="stroke:#000000;stroke-width:0.72000003;stroke-linecap:butt;marker-end:url(#mrkr4-16)" /> + </g> + <g + id="shape232-482" + v:mID="232" + v:groupContext="shape" + v:layerMember="1" + transform="translate(182.835,-649.441)" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <title + id="title1650">Dynamic Connector.232</title> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConnectingObjectType" + v:lbl="ConnectingObjectType" + v:prompt="" + v:type="1" + v:format="Sequence Flow;Message Flow;Association" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Sequence Flow)" /> + <v:cp + v:nameU="BpmnConditionType" + v:lbl="ConditionType" + v:prompt="" + v:type="1" + v:format="None;Expression;Default" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnConditionExpression" + v:lbl="ConditionExpression" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef" + v:lbl="MessageRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnMessageRef_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties" + v:lbl=" Properties" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Type" + v:lbl=" Type" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value" + v:lbl=" Value" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Correlation" + v:lbl=" Correlation" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef" + v:lbl=" FromRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef" + v:lbl=" ToRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDirection" + v:lbl="Direction" + v:prompt="" + v:type="1" + v:format="None;One;Both" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(One)" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Connecting Object)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Connecting Object)" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + </v:userDefs> + <path + d="M 0,834.8 H -40.31" + class="st5" + id="path1652" + inkscape:connector-curvature="0" + style="stroke:#000000;stroke-width:0.72000003;stroke-linecap:butt;marker-end:url(#mrkr4-16)" /> + </g> + <g + id="group76-184-6" + transform="translate(439.34112,-562.0439)" + v:mID="76" + v:groupContext="group" + v:layerMember="0" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"><v:custProps><v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnArtifactType" + v:lbl="ArtifactType" + v:prompt="" + v:type="1" + v:format="Data Object;Group;Annotation" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Data Object)" /><v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnState" + v:lbl="State" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnText" + v:lbl="Text" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnCategoryRef" + v:lbl="CategoryRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Artifact)" /><v:cp + v:nameU="BpmnCollection" + v:lbl="Collection" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /><v:cp + v:nameU="BpmnName" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(LLVM IR)" /><v:cp + v:nameU="BpmnText" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(LLVM IR)" /><v:cp + v:nameU="BpmnCategoryRef" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(LLVM IR)" /></v:custProps><v:userDefs><v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Data Object)" /><v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /></v:userDefs><title + id="title1148-2">Data Object.76</title><desc + id="desc1150-4">LLVM IR</desc><g + id="shape77-185-2" + v:mID="77" + v:groupContext="shape" + v:layerMember="0"><title + id="title1152-4">Sheet.77</title><g + id="shadow77-186-8" + v:groupContext="shadow" + v:shadowOffsetX="1.83842E-016" + v:shadowOffsetY="-3.00236" + v:shadowType="1" + transform="translate(0,3.00236)" + class="st1" + style="visibility:visible"><path + d="M 34.02,809.6 H 21.77 V 796.54 H 0 v 45.35 h 34.02 z m 0,-1.09 -12.25,-11.97 v 13.06 h 12.25 z" + class="st2" + id="path1154-0" + inkscape:connector-curvature="0" + style="fill:#000000;fill-opacity:0.6;stroke:#000000;stroke-linecap:butt;stroke-opacity:0.6;filter:url(#filter_3.3333334922791-3)" /></g><path + d="M 34.02,809.6 H 21.77 V 796.54 H 0 v 45.35 h 34.02 z m 0,-1.09 -12.25,-11.97 v 13.06 h 12.25 z" + class="st3" + id="path1157-9" + inkscape:connector-curvature="0" + style="fill:#0070c0;stroke:#15383a;stroke-width:0.23999999;stroke-linecap:butt" /></g><g + id="shape78-190-9" + v:mID="78" + v:groupContext="shape" + v:layerMember="0" + transform="translate(14.8819)"><title + id="title1160-4">Sheet.78</title></g><g + id="shape76-192-8" + v:mID="76" + v:groupContext="groupContent" + v:layerMember="0"><v:textBlock + v:margins="rect(2,2,2,2)" + v:tabSpace="42.5197" + v:verticalAlign="0" /><v:textRect + cx="17.0079" + cy="851.092" + width="46.13" + height="18.4037" /><text + x="-2.7" + y="854.69" + class="st4" + v:langID="1033" + id="text1163-0" + style="font-size:12.00012016px;font-family:Calibri;fill:#15383a"><v:paragraph + v:horizAlign="1" /><v:tabList />LLVM IR</text> + + +</g></g><g + id="group76-184-6-5" + transform="translate(368.2302,-402.71296)" + v:mID="76" + v:groupContext="group" + v:layerMember="0" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"><v:custProps><v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnArtifactType" + v:lbl="ArtifactType" + v:prompt="" + v:type="1" + v:format="Data Object;Group;Annotation" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Data Object)" /><v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnState" + v:lbl="State" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnText" + v:lbl="Text" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnCategoryRef" + v:lbl="CategoryRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Artifact)" /><v:cp + v:nameU="BpmnCollection" + v:lbl="Collection" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /><v:cp + v:nameU="BpmnName" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(LLVM IR)" /><v:cp + v:nameU="BpmnText" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(LLVM IR)" /><v:cp + v:nameU="BpmnCategoryRef" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(LLVM IR)" /></v:custProps><v:userDefs><v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Data Object)" /><v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /></v:userDefs><title + id="title1148-2-7">Data Object.76</title><desc + id="desc1150-4-1">SPIRV</desc><g + id="shape77-185-2-3" + v:mID="77" + v:groupContext="shape" + v:layerMember="0" + transform="translate(0,12.000018)"><title + id="title1152-4-5">Sheet.77</title><g + id="shadow77-186-8-9" + v:groupContext="shadow" + v:shadowOffsetX="1.83842E-016" + v:shadowOffsetY="-3.00236" + v:shadowType="1" + transform="translate(0,3.00236)" + class="st1" + style="visibility:visible"><path + d="M 34.02,809.6 H 21.77 V 796.54 H 0 v 45.35 h 34.02 z m 0,-1.09 -12.25,-11.97 v 13.06 h 12.25 z" + class="st2" + id="path1154-0-3" + inkscape:connector-curvature="0" + style="fill:#000000;fill-opacity:0.6;stroke:#000000;stroke-linecap:butt;stroke-opacity:0.6;filter:url(#filter_3.3333334922791-3-0)" /></g><path + d="M 34.02,809.6 H 21.77 V 796.54 H 0 v 45.35 h 34.02 z m 0,-1.09 -12.25,-11.97 v 13.06 h 12.25 z" + class="st3" + id="path1157-9-1" + inkscape:connector-curvature="0" + style="fill:#0070c0;stroke:#15383a;stroke-width:0.23999999;stroke-linecap:butt" /></g><g + id="shape78-190-9-9" + v:mID="78" + v:groupContext="shape" + v:layerMember="0" + transform="translate(14.8819)"><title + id="title1160-4-3">Sheet.78</title></g><g + id="shape76-192-8-7" + v:mID="76" + v:groupContext="groupContent" + v:layerMember="0"><v:textBlock + v:margins="rect(2,2,2,2)" + v:tabSpace="42.5197" + v:verticalAlign="0" /><v:textRect + cx="17.0079" + cy="851.092" + width="46.13" + height="18.4037" /><text + x="1.8000067" + y="866.69" + class="st4" + v:langID="1033" + id="text1163-0-8" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.00001812px;font-family:Calibri;-inkscape-font-specification:'Calibri, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#15383a"><v:paragraph + v:horizAlign="1" /><v:tabList /><tspan + sodipodi:role="line" + id="tspan7180" + x="1.8000067" + y="866.69">SPIRV</tspan></text> + + +</g></g><g + id="shape227-461" + v:mID="227" + v:groupContext="shape" + v:layerMember="1" + transform="translate(384.543,-284.2573)" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <title + id="title1619">Dynamic Connector.227</title> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConnectingObjectType" + v:lbl="ConnectingObjectType" + v:prompt="" + v:type="1" + v:format="Sequence Flow;Message Flow;Association" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Sequence Flow)" /> + <v:cp + v:nameU="BpmnConditionType" + v:lbl="ConditionType" + v:prompt="" + v:type="1" + v:format="None;Expression;Default" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnConditionExpression" + v:lbl="ConditionExpression" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef" + v:lbl="MessageRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnMessageRef_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties" + v:lbl=" Properties" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Type" + v:lbl=" Type" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value" + v:lbl=" Value" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Correlation" + v:lbl=" Correlation" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef" + v:lbl=" FromRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef" + v:lbl=" ToRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDirection" + v:lbl="Direction" + v:prompt="" + v:type="1" + v:format="None;One;Both" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(One)" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Connecting Object)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Connecting Object)" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + </v:userDefs> + <path + d="m -2.0428117,736.14676 c 0,9.94 -0.9571928,125.47323 -10.2571933,132.91323 C -17.042834,878.64697 -35.69,881.54 -48.95,881.64 h -0.36" + class="st14" + id="path1621" + inkscape:connector-curvature="0" + style="stroke:#000000;stroke-width:0.72000003;stroke-linecap:butt;marker-end:url(#mrkr4-75)" + sodipodi:nodetypes="cccc" /> + </g><g + id="group136-265-2-4" + transform="translate(335.9664,-249.27262)" + v:mID="136" + v:groupContext="group" + v:layerMember="0" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"><v:custProps><v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnActivityType" + v:lbl="ActivityType" + v:prompt="" + v:type="1" + v:format="Task;Sub-Process" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Task)" /><v:cp + v:nameU="BpmnLoopType" + v:lbl="LoopType" + v:prompt="" + v:type="1" + v:format="None;Standard;Parallel MultiInstance;Sequential MultiInstance" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /><v:cp + v:nameU="BpmnTaskType" + v:lbl="TaskType" + v:prompt="" + v:type="1" + v:format="None;Service;Receive;Send;User;Script;Abstract;Manual;Instantiating Receive;Business Rule" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /><v:cp + v:nameU="BpmnScript" + v:lbl="Script" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnInstantiate" + v:lbl="Instantiate" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /><v:cp + v:nameU="BpmnSubProcessType" + v:lbl="SubProcessType" + v:prompt="" + v:type="1" + v:format="Embedded;Reusable;Reference" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Embedded)" /><v:cp + v:nameU="BpmnIsCollapsed" + v:lbl="IsCollapsed" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /><v:cp + v:nameU="BpmnIsATransaction" + v:lbl="IsATransaction" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /><v:cp + v:nameU="BpmnIsForCompensation" + v:lbl="IsForCompensation" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /><v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Sub-Process)" /><v:cp + v:nameU="BpmnAdHoc" + v:lbl="AdHoc" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /><v:cp + v:nameU="BpmnAdHocOrdering" + v:lbl="AdHocOrdering" + v:prompt="" + v:type="1" + v:format="Sequential;Parallel" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Parallel)" /><v:cp + v:nameU="BpmnBoundaryType" + v:lbl="BoundaryType" + v:prompt="" + v:type="1" + v:format="Default;Call" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Default)" /><v:cp + v:nameU="BpmnName" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(Offload-bundler)" /></v:custProps><v:userDefs><v:ud + v:nameU="BpmnNumIconsVisible" + v:prompt="" + v:val="VT0(0):26" /><v:ud + v:nameU="BpmnIsExtendedSubProcess" + v:prompt="" + v:val="VT0(0):5" /><v:ud + v:nameU="msvStructureType" + v:prompt="" + v:val="VT0(0):26" /><v:ud + v:nameU="msvSDContainerResize" + v:prompt="" + v:val="VT0(0):26" /><v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /><v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Task)" /><v:ud + v:nameU="BpmnIconHeight" + v:prompt="" + v:val="VT0(0.15748031496063):24" /><v:ud + v:nameU="BpmnIconPinY" + v:prompt="" + v:val="VT0(0.11811023622047):24" /><v:ud + v:nameU="BpmnBoundaryType" + v:prompt="" + v:val="VT0(0):26" /><v:ud + v:nameU="DefaultWidth" + v:prompt="" + v:val="VT0(0.98425196850394):24" /><v:ud + v:nameU="DefaultHeight" + v:prompt="" + v:val="VT0(0.78740157480315):24" /><v:ud + v:nameU="ResizeTxtHeight" + v:prompt="" + v:val="VT0(0.78740157480315):24" /><v:ud + v:nameU="IsInstance" + v:prompt="" + v:val="VT0(0):5" /><v:ud + v:nameU="IsInstance" + v:prompt="" + v:val="VT0(1):5" /></v:userDefs><title + id="title1285-4-9">Task.136</title><desc + id="desc1287-2-2">llvm-spirv</desc><g + id="shape141-279-7-1" + v:mID="141" + v:groupContext="shape" + v:layerMember="0" + transform="translate(36.2438,-2.12598)"><title + id="title1310-1-0">Sheet.141</title><v:userDefs><v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /><v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /></v:userDefs></g><g + id="shape145-286-8-4" + v:mID="145" + v:groupContext="shape" + v:layerMember="0" + transform="translate(36.6038,-3.68504)"><title + id="title1324-7-5">Sheet.145</title><v:userDefs><v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /><v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.19):26" /></v:userDefs></g><g + id="shape146-288-5-8" + v:mID="146" + v:groupContext="shape" + v:layerMember="0" + transform="translate(37.7178,-3.68504)"><title + id="title1327-7-3">Sheet.146</title><v:userDefs><v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /><v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /></v:userDefs></g><g + id="group147-290-7-1" + transform="translate(36.2438,-2.83465)" + v:mID="147" + v:groupContext="group" + v:layerMember="0"><v:userDefs><v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /><v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /></v:userDefs><title + id="title1330-3-3">Sheet.147</title><g + id="shape148-291-6-0" + v:mID="148" + v:groupContext="shape" + v:layerMember="0" + transform="rotate(179.753,3.6955626,836.73185)"><title + id="title1332-6-0">Sheet.148</title></g></g><g + id="shape149-294-5-1" + v:mID="149" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.50394,-43.189)"><title + id="title1336-5-4">Sheet.149</title></g><g + id="shape150-296-2-5" + v:mID="150" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.00394,-42.689)"><title + id="title1339-7-2">Sheet.150</title></g><g + id="shape154-303-9-7" + v:mID="154" + v:groupContext="shape" + v:layerMember="0" + transform="translate(2.50394,-44.189)"><title + id="title1353-8-0">Sheet.154</title></g><g + id="shape155-305-7-9" + v:mID="155" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.50394,-43.189)"><title + id="title1356-3-2">Sheet.155</title></g><g + id="shape156-307-6-4" + v:mID="156" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.00394,-44.189)"><title + id="title1359-3-3">Sheet.156</title></g><g + id="shape157-309-5-0" + v:mID="157" + v:groupContext="shape" + v:layerMember="0" + transform="translate(3.00394,-44.189)"><title + id="title1362-8-1">Sheet.157</title></g><g + id="shape158-311-4-7" + v:mID="158" + v:groupContext="shape" + v:layerMember="0" + transform="rotate(-90,21.2115,816.3695)"><title + id="title1365-2-3">Sheet.158</title><v:userDefs><v:ud + v:nameU="BpmnIconPosition" + v:prompt="" + v:val="VT0(1):26" /><v:ud + v:nameU="BpmnIconWidth" + v:prompt="" + v:val="VT0(0.18):26" /></v:userDefs></g><g + id="g6842-7" + transform="translate(30.000045,-14.249128)"><g + v:layerMember="0" + v:groupContext="group" + v:mID="176" + transform="translate(-21.584367,-177.56764)" + id="group176-341-6-5"><v:custProps><v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Id" + v:nameU="BpmnId" /><v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Categories" + v:nameU="BpmnCategories" /><v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Documentation" + v:nameU="BpmnDocumentation" /><v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Name" + v:nameU="BpmnName" /><v:cp + v:val="VT4(Task)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Task;Sub-Process" + v:type="1" + v:prompt="" + v:lbl="ActivityType" + v:nameU="BpmnActivityType" /><v:cp + v:val="VT4(None)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="None;Standard;Parallel MultiInstance;Sequential MultiInstance" + v:type="1" + v:prompt="" + v:lbl="LoopType" + v:nameU="BpmnLoopType" /><v:cp + v:val="VT4(None)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="None;Service;Receive;Send;User;Script;Abstract;Manual;Instantiating Receive;Business Rule" + v:type="1" + v:prompt="" + v:lbl="TaskType" + v:nameU="BpmnTaskType" /><v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Script" + v:nameU="BpmnScript" /><v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl="Instantiate" + v:nameU="BpmnInstantiate" /><v:cp + v:val="VT4(Embedded)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Embedded;Reusable;Reference" + v:type="1" + v:prompt="" + v:lbl="SubProcessType" + v:nameU="BpmnSubProcessType" /><v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl="IsCollapsed" + v:nameU="BpmnIsCollapsed" /><v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl="IsATransaction" + v:nameU="BpmnIsATransaction" /><v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl="IsForCompensation" + v:nameU="BpmnIsForCompensation" /><v:cp + v:val="VT4(Sub-Process)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:type="1" + v:prompt="" + v:lbl="ElementType" + v:nameU="BpmnElementType" /><v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl="AdHoc" + v:nameU="BpmnAdHoc" /><v:cp + v:val="VT4(Parallel)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Sequential;Parallel" + v:type="1" + v:prompt="" + v:lbl="AdHocOrdering" + v:nameU="BpmnAdHocOrdering" /><v:cp + v:val="VT4(Default)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="Default;Call" + v:type="1" + v:prompt="" + v:lbl="BoundaryType" + v:nameU="BpmnBoundaryType" /><v:cp + v:val="VT4(Offload-wrapper)" + v:cal="0" + v:langID="0" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="" + v:nameU="BpmnName" /></v:custProps><v:userDefs><v:ud + v:val="VT0(0):26" + v:prompt="" + v:nameU="BpmnNumIconsVisible" /><v:ud + v:val="VT0(0):5" + v:prompt="" + v:nameU="BpmnIsExtendedSubProcess" /><v:ud + v:val="VT0(0):26" + v:prompt="" + v:nameU="msvStructureType" /><v:ud + v:val="VT0(0):26" + v:prompt="" + v:nameU="msvSDContainerResize" /><v:ud + v:val="VT0(15):26" + v:prompt="" + v:nameU="visVersion" /><v:ud + v:val="VT4(Task)" + v:prompt="" + v:nameU="msvShapeCategories" /><v:ud + v:val="VT0(0.15748031496063):24" + v:prompt="" + v:nameU="BpmnIconHeight" /><v:ud + v:val="VT0(0.11811023622047):24" + v:prompt="" + v:nameU="BpmnIconPinY" /><v:ud + v:val="VT0(0):26" + v:prompt="" + v:nameU="BpmnBoundaryType" /><v:ud + v:val="VT0(0.98425196850394):24" + v:prompt="" + v:nameU="DefaultWidth" /><v:ud + v:val="VT0(0.78740157480315):24" + v:prompt="" + v:nameU="DefaultHeight" /><v:ud + v:val="VT0(0.78740157480315):24" + v:prompt="" + v:nameU="ResizeTxtHeight" /><v:ud + v:val="VT0(0):5" + v:prompt="" + v:nameU="IsInstance" /><v:ud + v:val="VT0(1):5" + v:prompt="" + v:nameU="IsInstance" /></v:userDefs><title + id="title1408-4-7">Task.176</title><desc + id="desc1410-1-2">Offload-wrapper</desc><g + transform="translate(36.2438,-2.12598)" + v:layerMember="0" + v:groupContext="shape" + v:mID="181" + id="shape181-355-2-4"><title + id="title1433-1-3">Sheet.181</title><v:userDefs><v:ud + v:val="VT0(1):26" + v:prompt="" + v:nameU="BpmnIconPosition" /><v:ud + v:val="VT0(0.18):26" + v:prompt="" + v:nameU="BpmnIconWidth" /></v:userDefs></g><g + transform="translate(36.6038,-3.68504)" + v:layerMember="0" + v:groupContext="shape" + v:mID="185" + id="shape185-362-2-3"><title + id="title1447-9-3">Sheet.185</title><v:userDefs><v:ud + v:val="VT0(1):26" + v:prompt="" + v:nameU="BpmnIconPosition" /><v:ud + v:val="VT0(0.19):26" + v:prompt="" + v:nameU="BpmnIconWidth" /></v:userDefs></g><g + transform="translate(37.7178,-3.68504)" + v:layerMember="0" + v:groupContext="shape" + v:mID="186" + id="shape186-364-9-0"><title + id="title1450-7-6">Sheet.186</title><v:userDefs><v:ud + v:val="VT0(1):26" + v:prompt="" + v:nameU="BpmnIconPosition" /><v:ud + v:val="VT0(0.18):26" + v:prompt="" + v:nameU="BpmnIconWidth" /></v:userDefs></g><g + v:layerMember="0" + v:groupContext="group" + v:mID="187" + transform="translate(36.2438,-2.83465)" + id="group187-366-5-2"><v:userDefs><v:ud + v:val="VT0(1):26" + v:prompt="" + v:nameU="BpmnIconPosition" /><v:ud + v:val="VT0(0.18):26" + v:prompt="" + v:nameU="BpmnIconWidth" /></v:userDefs><title + id="title1453-7-5">Sheet.187</title><g + transform="rotate(179.753,3.6955626,836.73185)" + v:layerMember="0" + v:groupContext="shape" + v:mID="188" + id="shape188-367-3-4"><title + id="title1455-2-1">Sheet.188</title></g></g><g + transform="translate(3.50394,-43.189)" + v:layerMember="0" + v:groupContext="shape" + v:mID="189" + id="shape189-370-1-1"><title + id="title1459-8-8">Sheet.189</title></g><g + transform="translate(3.00394,-42.689)" + v:layerMember="0" + v:groupContext="shape" + v:mID="190" + id="shape190-372-5-8"><title + id="title1462-0-0">Sheet.190</title></g><g + transform="translate(2.50394,-44.189)" + v:layerMember="0" + v:groupContext="shape" + v:mID="194" + id="shape194-379-2-2"><title + id="title1476-5-1">Sheet.194</title></g><g + transform="translate(3.50394,-43.189)" + v:layerMember="0" + v:groupContext="shape" + v:mID="195" + id="shape195-381-5-8"><title + id="title1479-2-9">Sheet.195</title></g><g + transform="translate(3.00394,-44.189)" + v:layerMember="0" + v:groupContext="shape" + v:mID="196" + id="shape196-383-3-4"><title + id="title1482-9-0">Sheet.196</title></g><g + transform="translate(3.00394,-44.189)" + v:layerMember="0" + v:groupContext="shape" + v:mID="197" + id="shape197-385-5-0"><title + id="title1485-4-7">Sheet.197</title></g><g + transform="rotate(-90,21.2115,816.3695)" + v:layerMember="0" + v:groupContext="shape" + v:mID="198" + id="shape198-387-4-1"><title + id="title1488-1-8">Sheet.198</title><v:userDefs><v:ud + v:val="VT0(1):26" + v:prompt="" + v:nameU="BpmnIconPosition" /><v:ud + v:val="VT0(0.18):26" + v:prompt="" + v:nameU="BpmnIconWidth" /></v:userDefs></g><g + v:layerMember="0" + v:groupContext="groupContent" + v:mID="176" + id="shape176-389-4-7"><v:textBlock + v:tabSpace="42.5197" + v:margins="rect(2,2,2,2)" /><v:textRect + height="0" + width="70.87" + cy="813.543" + cx="35.4331" /><text + style="font-size:12.00012016px;font-family:Calibri;fill:#ffffff" + id="text1493-4-9" + v:langID="1033" + class="st12" + y="809.94" + x="15.39"><v:paragraph + v:horizAlign="1" /><v:tabList />Offload-<tspan + style="font-size:12.00012016px" + id="tspan1491-3-3" + class="st13" + dy="1.2em" + x="14.8">wrapper</tspan></text> + + +</g></g><g + transform="matrix(0.84666848,0,0,0.59998088,-13.466302,140.99192)" + v:layerMember="0" + v:groupContext="shape" + v:mID="137" + id="shape137-266-7-3"><title + id="title1289-2-2">Sheet.137</title><g + style="visibility:visible" + class="st1" + transform="translate(0,3.00236)" + v:shadowType="1" + v:shadowOffsetY="-3.00236" + v:shadowOffsetX="1.83842E-016" + v:groupContext="shadow" + id="shadow137-267-4-3"><rect + style="fill:#000000;fill-opacity:0.6;stroke:#000000;stroke-linecap:butt;stroke-opacity:0.6;filter:url(#filter_3.3333334922791-7-9)" + id="rect1291-4-3" + class="st2" + ry="5.6692901" + rx="5.6692901" + height="56.692902" + width="70.866096" + y="785.19702" + x="0" /></g><rect + style="fill:url(#linearGradient7149);stroke:#15383a;stroke-width:0.23999999;stroke-linecap:butt" + id="rect1294-8-6" + class="st7" + ry="5.6692901" + rx="5.6692901" + height="56.692902" + width="70.866096" + y="785.19702" + x="0" /></g><g + transform="translate(-20.840071,-156.30053)" + v:layerMember="0" + v:groupContext="groupContent" + v:mID="136" + id="shape136-313-8-9"><v:textBlock + v:tabSpace="42.5197" + v:margins="rect(2,2,2,2)" /><v:textRect + height="0" + width="70.87" + cy="813.543" + cx="35.4331" /><text + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:Calibri;-inkscape-font-specification:'Calibri, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff" + id="text1370-7-5" + v:langID="1033" + class="st12" + y="787.92859" + x="13.134285"><v:paragraph + v:horizAlign="1" /><v:tabList /><tspan + sodipodi:role="line" + id="tspan7151" + x="13.134285" + y="787.92859">llvm-spirv</tspan></text> + + +</g></g></g><g + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + transform="matrix(1,0,0,0.92951821,375.41019,-456.66282)" + v:layerMember="1" + v:groupContext="shape" + v:mID="131" + id="g2277"> + <title + id="title2273">Dynamic Connector.131</title> + <v:custProps> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Id" + v:nameU="BpmnId" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Categories" + v:nameU="BpmnCategories" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Documentation" + v:nameU="BpmnDocumentation" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Name" + v:nameU="BpmnName" /> + <v:cp + v:val="VT4(Sequence Flow)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="Sequence Flow;Message Flow;Association" + v:type="1" + v:prompt="" + v:lbl="ConnectingObjectType" + v:nameU="BpmnConnectingObjectType" /> + <v:cp + v:val="VT4(None)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="None;Expression;Default" + v:type="1" + v:prompt="" + v:lbl="ConditionType" + v:nameU="BpmnConditionType" /> + <v:cp + v:val="VT4(Hidden)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl="ConditionExpression" + v:nameU="BpmnConditionExpression" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionBody" + v:nameU="BpmnConditionExpression_ExpressionBody" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionLanguage" + v:nameU="BpmnConditionExpression_ExpressionLanguage" /> + <v:cp + v:val="VT4(Hidden)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl="MessageRef" + v:nameU="BpmnMessageRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Name" + v:nameU="BpmnMessageRef_Name" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" Properties" + v:nameU="BpmnMessageRef_Properties" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Name" + v:nameU="BpmnMessageRef_Properties_Name" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Type" + v:nameU="BpmnMessageRef_Properties_Type" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" Value" + v:nameU="BpmnMessageRef_Properties_Value" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionBody" + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionLanguage" + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" /> + <v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl=" Correlation" + v:nameU="BpmnMessageRef_Properties_Correlation" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" FromRef" + v:nameU="BpmnMessageRef_FromRef" /> + <v:cp + v:val="VT4(Role)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Role;Entity" + v:type="1" + v:prompt="" + v:lbl=" ParticipantType" + v:nameU="BpmnMessageRef_FromRef_ParticipantType" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" RoleRef" + v:nameU="BpmnMessageRef_FromRef_RoleRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" EntityRef" + v:nameU="BpmnMessageRef_FromRef_EntityRef" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" ToRef" + v:nameU="BpmnMessageRef_ToRef" /> + <v:cp + v:val="VT4(Role)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Role;Entity" + v:type="1" + v:prompt="" + v:lbl=" ParticipantType" + v:nameU="BpmnMessageRef_ToRef_ParticipantType" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" RoleRef" + v:nameU="BpmnMessageRef_ToRef_RoleRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" EntityRef" + v:nameU="BpmnMessageRef_ToRef_EntityRef" /> + <v:cp + v:val="VT4(One)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="None;One;Both" + v:type="1" + v:prompt="" + v:lbl="Direction" + v:nameU="BpmnDirection" /> + <v:cp + v:val="VT4(Connecting Object)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:type="1" + v:prompt="" + v:lbl="ElementType" + v:nameU="BpmnElementType" /> + </v:custProps> + <v:userDefs> + <v:ud + v:val="VT4(Connecting Object)" + v:prompt="" + v:nameU="msvShapeCategories" /> + <v:ud + v:val="VT0(15):26" + v:prompt="" + v:nameU="visVersion" /> + </v:userDefs> + <path + style="stroke:#000000;stroke-width:0.72000003;stroke-linecap:butt;marker-end:url(#mrkr4-16)" + inkscape:connector-curvature="0" + id="path2275" + class="st5" + d="m 7.09,841.89 c 0,4.28 0,11.78 0,17.64" /> + </g><g + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + transform="matrix(1,0,0,0.92951821,286.91005,-227.44793)" + v:layerMember="1" + v:groupContext="shape" + v:mID="131" + id="g4295"> + <title + id="title4291">Dynamic Connector.131</title> + <v:custProps> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Id" + v:nameU="BpmnId" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Categories" + v:nameU="BpmnCategories" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Documentation" + v:nameU="BpmnDocumentation" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Name" + v:nameU="BpmnName" /> + <v:cp + v:val="VT4(Sequence Flow)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="Sequence Flow;Message Flow;Association" + v:type="1" + v:prompt="" + v:lbl="ConnectingObjectType" + v:nameU="BpmnConnectingObjectType" /> + <v:cp + v:val="VT4(None)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="None;Expression;Default" + v:type="1" + v:prompt="" + v:lbl="ConditionType" + v:nameU="BpmnConditionType" /> + <v:cp + v:val="VT4(Hidden)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl="ConditionExpression" + v:nameU="BpmnConditionExpression" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionBody" + v:nameU="BpmnConditionExpression_ExpressionBody" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionLanguage" + v:nameU="BpmnConditionExpression_ExpressionLanguage" /> + <v:cp + v:val="VT4(Hidden)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl="MessageRef" + v:nameU="BpmnMessageRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Name" + v:nameU="BpmnMessageRef_Name" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" Properties" + v:nameU="BpmnMessageRef_Properties" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Name" + v:nameU="BpmnMessageRef_Properties_Name" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Type" + v:nameU="BpmnMessageRef_Properties_Type" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" Value" + v:nameU="BpmnMessageRef_Properties_Value" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionBody" + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionLanguage" + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" /> + <v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl=" Correlation" + v:nameU="BpmnMessageRef_Properties_Correlation" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" FromRef" + v:nameU="BpmnMessageRef_FromRef" /> + <v:cp + v:val="VT4(Role)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Role;Entity" + v:type="1" + v:prompt="" + v:lbl=" ParticipantType" + v:nameU="BpmnMessageRef_FromRef_ParticipantType" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" RoleRef" + v:nameU="BpmnMessageRef_FromRef_RoleRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" EntityRef" + v:nameU="BpmnMessageRef_FromRef_EntityRef" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" ToRef" + v:nameU="BpmnMessageRef_ToRef" /> + <v:cp + v:val="VT4(Role)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Role;Entity" + v:type="1" + v:prompt="" + v:lbl=" ParticipantType" + v:nameU="BpmnMessageRef_ToRef_ParticipantType" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" RoleRef" + v:nameU="BpmnMessageRef_ToRef_RoleRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" EntityRef" + v:nameU="BpmnMessageRef_ToRef_EntityRef" /> + <v:cp + v:val="VT4(One)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="None;One;Both" + v:type="1" + v:prompt="" + v:lbl="Direction" + v:nameU="BpmnDirection" /> + <v:cp + v:val="VT4(Connecting Object)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:type="1" + v:prompt="" + v:lbl="ElementType" + v:nameU="BpmnElementType" /> + </v:custProps> + <v:userDefs> + <v:ud + v:val="VT4(Connecting Object)" + v:prompt="" + v:nameU="msvShapeCategories" /> + <v:ud + v:val="VT0(15):26" + v:prompt="" + v:nameU="visVersion" /> + </v:userDefs> + <path + style="stroke:#000000;stroke-width:0.72;stroke-linecap:butt;marker-end:url(#mrkr4-16)" + inkscape:connector-curvature="0" + id="path4293" + class="st5" + d="m 7.09,841.89 c 0,4.28 0,11.78 0,17.64" /> + </g><g + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + transform="translate(358.59618,-418.70401)" + v:layerMember="1" + v:groupContext="shape" + v:mID="205" + id="g9391"> + <title + id="title9387">Dynamic Connector.205</title> + <v:custProps> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Id" + v:nameU="BpmnId" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Categories" + v:nameU="BpmnCategories" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Documentation" + v:nameU="BpmnDocumentation" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Name" + v:nameU="BpmnName" /> + <v:cp + v:val="VT4(Sequence Flow)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="Sequence Flow;Message Flow;Association" + v:type="1" + v:prompt="" + v:lbl="ConnectingObjectType" + v:nameU="BpmnConnectingObjectType" /> + <v:cp + v:val="VT4(None)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="None;Expression;Default" + v:type="1" + v:prompt="" + v:lbl="ConditionType" + v:nameU="BpmnConditionType" /> + <v:cp + v:val="VT4(Hidden)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl="ConditionExpression" + v:nameU="BpmnConditionExpression" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionBody" + v:nameU="BpmnConditionExpression_ExpressionBody" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionLanguage" + v:nameU="BpmnConditionExpression_ExpressionLanguage" /> + <v:cp + v:val="VT4(Hidden)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl="MessageRef" + v:nameU="BpmnMessageRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Name" + v:nameU="BpmnMessageRef_Name" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" Properties" + v:nameU="BpmnMessageRef_Properties" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Name" + v:nameU="BpmnMessageRef_Properties_Name" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Type" + v:nameU="BpmnMessageRef_Properties_Type" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" Value" + v:nameU="BpmnMessageRef_Properties_Value" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionBody" + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionLanguage" + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" /> + <v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl=" Correlation" + v:nameU="BpmnMessageRef_Properties_Correlation" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" FromRef" + v:nameU="BpmnMessageRef_FromRef" /> + <v:cp + v:val="VT4(Role)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Role;Entity" + v:type="1" + v:prompt="" + v:lbl=" ParticipantType" + v:nameU="BpmnMessageRef_FromRef_ParticipantType" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" RoleRef" + v:nameU="BpmnMessageRef_FromRef_RoleRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" EntityRef" + v:nameU="BpmnMessageRef_FromRef_EntityRef" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" ToRef" + v:nameU="BpmnMessageRef_ToRef" /> + <v:cp + v:val="VT4(Role)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Role;Entity" + v:type="1" + v:prompt="" + v:lbl=" ParticipantType" + v:nameU="BpmnMessageRef_ToRef_ParticipantType" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" RoleRef" + v:nameU="BpmnMessageRef_ToRef_RoleRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" EntityRef" + v:nameU="BpmnMessageRef_ToRef_EntityRef" /> + <v:cp + v:val="VT4(One)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="None;One;Both" + v:type="1" + v:prompt="" + v:lbl="Direction" + v:nameU="BpmnDirection" /> + <v:cp + v:val="VT4(Connecting Object)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:type="1" + v:prompt="" + v:lbl="ElementType" + v:nameU="BpmnElementType" /> + </v:custProps> + <v:userDefs> + <v:ud + v:val="VT4(Connecting Object)" + v:prompt="" + v:nameU="msvShapeCategories" /> + <v:ud + v:val="VT0(15):26" + v:prompt="" + v:nameU="visVersion" /> + </v:userDefs> + <path + style="stroke:#000000;stroke-width:0.72;stroke-linecap:butt;marker-end:url(#mrkr4-75)" + inkscape:connector-curvature="0" + id="path9389" + class="st14" + d="m 9.3240488,844.73369 c -4.1323372,-0.0303 -45.7313258,0.66825 -50.2546168,0.66825 -14.25,0 -19.829432,7.11806 -23.219432,17.01806 l -0.05,0.35" + sodipodi:nodetypes="cscc" /> + </g><g + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + transform="matrix(-0.83907174,0,0,1,456.37357,-560.84074)" + v:layerMember="1" + v:groupContext="shape" + v:mID="127" + id="g9571"> + <title + id="title9567">Dynamic Connector.127</title> + <v:custProps> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Id" + v:nameU="BpmnId" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Categories" + v:nameU="BpmnCategories" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Documentation" + v:nameU="BpmnDocumentation" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Name" + v:nameU="BpmnName" /> + <v:cp + v:val="VT4(Sequence Flow)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="Sequence Flow;Message Flow;Association" + v:type="1" + v:prompt="" + v:lbl="ConnectingObjectType" + v:nameU="BpmnConnectingObjectType" /> + <v:cp + v:val="VT4(None)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="None;Expression;Default" + v:type="1" + v:prompt="" + v:lbl="ConditionType" + v:nameU="BpmnConditionType" /> + <v:cp + v:val="VT4(Hidden)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl="ConditionExpression" + v:nameU="BpmnConditionExpression" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionBody" + v:nameU="BpmnConditionExpression_ExpressionBody" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionLanguage" + v:nameU="BpmnConditionExpression_ExpressionLanguage" /> + <v:cp + v:val="VT4(Hidden)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl="MessageRef" + v:nameU="BpmnMessageRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Name" + v:nameU="BpmnMessageRef_Name" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" Properties" + v:nameU="BpmnMessageRef_Properties" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Name" + v:nameU="BpmnMessageRef_Properties_Name" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Type" + v:nameU="BpmnMessageRef_Properties_Type" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" Value" + v:nameU="BpmnMessageRef_Properties_Value" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionBody" + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionLanguage" + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" /> + <v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl=" Correlation" + v:nameU="BpmnMessageRef_Properties_Correlation" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" FromRef" + v:nameU="BpmnMessageRef_FromRef" /> + <v:cp + v:val="VT4(Role)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Role;Entity" + v:type="1" + v:prompt="" + v:lbl=" ParticipantType" + v:nameU="BpmnMessageRef_FromRef_ParticipantType" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" RoleRef" + v:nameU="BpmnMessageRef_FromRef_RoleRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" EntityRef" + v:nameU="BpmnMessageRef_FromRef_EntityRef" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" ToRef" + v:nameU="BpmnMessageRef_ToRef" /> + <v:cp + v:val="VT4(Role)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Role;Entity" + v:type="1" + v:prompt="" + v:lbl=" ParticipantType" + v:nameU="BpmnMessageRef_ToRef_ParticipantType" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" RoleRef" + v:nameU="BpmnMessageRef_ToRef_RoleRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" EntityRef" + v:nameU="BpmnMessageRef_ToRef_EntityRef" /> + <v:cp + v:val="VT4(One)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="None;One;Both" + v:type="1" + v:prompt="" + v:lbl="Direction" + v:nameU="BpmnDirection" /> + <v:cp + v:val="VT4(Connecting Object)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:type="1" + v:prompt="" + v:lbl="ElementType" + v:nameU="BpmnElementType" /> + </v:custProps> + <v:userDefs> + <v:ud + v:val="VT4(Connecting Object)" + v:prompt="" + v:nameU="msvShapeCategories" /> + <v:ud + v:val="VT0(15):26" + v:prompt="" + v:nameU="visVersion" /> + </v:userDefs> + <path + style="stroke:#000000;stroke-width:0.72;stroke-linecap:butt;marker-end:url(#mrkr4-75)" + inkscape:connector-curvature="0" + id="path9569" + class="st14" + d="m 0,841.89 c 0,7.09 0,16.92 8.21,22.21 8.37,5.38 25.25,6.04 37.91,6.12 l 0.36,0.01" /> + </g><g + id="g9745" + v:mID="131" + v:groupContext="shape" + v:layerMember="1" + transform="matrix(1,0,0,0.92951821,375.41019,-399.37107)" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <title + id="title9741">Dynamic Connector.131</title> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConnectingObjectType" + v:lbl="ConnectingObjectType" + v:prompt="" + v:type="1" + v:format="Sequence Flow;Message Flow;Association" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Sequence Flow)" /> + <v:cp + v:nameU="BpmnConditionType" + v:lbl="ConditionType" + v:prompt="" + v:type="1" + v:format="None;Expression;Default" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnConditionExpression" + v:lbl="ConditionExpression" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef" + v:lbl="MessageRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnMessageRef_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties" + v:lbl=" Properties" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Type" + v:lbl=" Type" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value" + v:lbl=" Value" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Correlation" + v:lbl=" Correlation" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef" + v:lbl=" FromRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef" + v:lbl=" ToRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDirection" + v:lbl="Direction" + v:prompt="" + v:type="1" + v:format="None;One;Both" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(One)" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Connecting Object)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Connecting Object)" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + </v:userDefs> + <path + d="m 7.09,841.89 c 0,4.28 0,11.78 0,17.64" + class="st5" + id="path9743" + inkscape:connector-curvature="0" + style="stroke:#000000;stroke-width:0.72;stroke-linecap:butt;marker-end:url(#mrkr4-16)" /> + </g><g + id="g9877" + v:mID="131" + v:groupContext="shape" + v:layerMember="1" + transform="matrix(1,0,0,0.92951806,298.8048,-571.67796)" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <title + id="title9873">Dynamic Connector.131</title> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConnectingObjectType" + v:lbl="ConnectingObjectType" + v:prompt="" + v:type="1" + v:format="Sequence Flow;Message Flow;Association" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Sequence Flow)" /> + <v:cp + v:nameU="BpmnConditionType" + v:lbl="ConditionType" + v:prompt="" + v:type="1" + v:format="None;Expression;Default" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnConditionExpression" + v:lbl="ConditionExpression" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef" + v:lbl="MessageRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnMessageRef_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties" + v:lbl=" Properties" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Type" + v:lbl=" Type" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value" + v:lbl=" Value" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Correlation" + v:lbl=" Correlation" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef" + v:lbl=" FromRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef" + v:lbl=" ToRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDirection" + v:lbl="Direction" + v:prompt="" + v:type="1" + v:format="None;One;Both" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(One)" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Connecting Object)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Connecting Object)" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + </v:userDefs> + <path + d="m 7.09,841.89 c 0,4.28 0,11.78 0,17.64" + class="st5" + id="path9875" + inkscape:connector-curvature="0" + style="stroke:#000000;stroke-width:0.72;stroke-linecap:butt;marker-end:url(#mrkr4-16)" /> + </g><g + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + transform="matrix(1,0,0,0.71300714,287.10939,14.935576)" + v:layerMember="1" + v:groupContext="shape" + v:mID="131" + id="g10093"> + <title + id="title10089">Dynamic Connector.131</title> + <v:custProps> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Id" + v:nameU="BpmnId" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Categories" + v:nameU="BpmnCategories" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Documentation" + v:nameU="BpmnDocumentation" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Name" + v:nameU="BpmnName" /> + <v:cp + v:val="VT4(Sequence Flow)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="Sequence Flow;Message Flow;Association" + v:type="1" + v:prompt="" + v:lbl="ConnectingObjectType" + v:nameU="BpmnConnectingObjectType" /> + <v:cp + v:val="VT4(None)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="None;Expression;Default" + v:type="1" + v:prompt="" + v:lbl="ConditionType" + v:nameU="BpmnConditionType" /> + <v:cp + v:val="VT4(Hidden)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl="ConditionExpression" + v:nameU="BpmnConditionExpression" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionBody" + v:nameU="BpmnConditionExpression_ExpressionBody" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionLanguage" + v:nameU="BpmnConditionExpression_ExpressionLanguage" /> + <v:cp + v:val="VT4(Hidden)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl="MessageRef" + v:nameU="BpmnMessageRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Name" + v:nameU="BpmnMessageRef_Name" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" Properties" + v:nameU="BpmnMessageRef_Properties" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Name" + v:nameU="BpmnMessageRef_Properties_Name" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Type" + v:nameU="BpmnMessageRef_Properties_Type" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" Value" + v:nameU="BpmnMessageRef_Properties_Value" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionBody" + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionLanguage" + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" /> + <v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl=" Correlation" + v:nameU="BpmnMessageRef_Properties_Correlation" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" FromRef" + v:nameU="BpmnMessageRef_FromRef" /> + <v:cp + v:val="VT4(Role)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Role;Entity" + v:type="1" + v:prompt="" + v:lbl=" ParticipantType" + v:nameU="BpmnMessageRef_FromRef_ParticipantType" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" RoleRef" + v:nameU="BpmnMessageRef_FromRef_RoleRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" EntityRef" + v:nameU="BpmnMessageRef_FromRef_EntityRef" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" ToRef" + v:nameU="BpmnMessageRef_ToRef" /> + <v:cp + v:val="VT4(Role)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Role;Entity" + v:type="1" + v:prompt="" + v:lbl=" ParticipantType" + v:nameU="BpmnMessageRef_ToRef_ParticipantType" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" RoleRef" + v:nameU="BpmnMessageRef_ToRef_RoleRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" EntityRef" + v:nameU="BpmnMessageRef_ToRef_EntityRef" /> + <v:cp + v:val="VT4(One)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="None;One;Both" + v:type="1" + v:prompt="" + v:lbl="Direction" + v:nameU="BpmnDirection" /> + <v:cp + v:val="VT4(Connecting Object)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:type="1" + v:prompt="" + v:lbl="ElementType" + v:nameU="BpmnElementType" /> + </v:custProps> + <v:userDefs> + <v:ud + v:val="VT4(Connecting Object)" + v:prompt="" + v:nameU="msvShapeCategories" /> + <v:ud + v:val="VT0(15):26" + v:prompt="" + v:nameU="visVersion" /> + </v:userDefs> + <path + style="stroke:#000000;stroke-width:0.72;stroke-linecap:butt;marker-end:url(#mrkr4-16)" + inkscape:connector-curvature="0" + id="path10091" + class="st5" + d="m 7.09,841.89 c 0,4.28 0,11.78 0,17.64" /> + </g><g + transform="translate(77.585444,-65.800313)" + id="g11034"><g + id="group165-331-7" + transform="translate(201.85073,-98.186202)" + v:mID="165" + v:groupContext="group" + v:layerMember="0" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"><v:custProps><v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnArtifactType" + v:lbl="ArtifactType" + v:prompt="" + v:type="1" + v:format="Data Object;Group;Annotation" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Data Object)" /><v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnState" + v:lbl="State" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnText" + v:lbl="Text" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnCategoryRef" + v:lbl="CategoryRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Artifact)" /><v:cp + v:nameU="BpmnCollection" + v:lbl="Collection" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /><v:cp + v:nameU="BpmnName" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(Host object file)" /><v:cp + v:nameU="BpmnText" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(Host object file)" /><v:cp + v:nameU="BpmnCategoryRef" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(Host object file)" /></v:custProps><v:userDefs><v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Data Object)" /><v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /></v:userDefs><title + id="title1389-2">Data Object.165</title><desc + id="desc1391-4">Host object file</desc><g + id="shape166-332-0" + v:mID="166" + v:groupContext="shape" + v:layerMember="0"><title + id="title1393-9">Sheet.166</title><g + id="shadow166-333-0" + v:groupContext="shadow" + v:shadowOffsetX="1.83842E-016" + v:shadowOffsetY="-3.00236" + v:shadowType="1" + transform="translate(0,3.00236)" + class="st1" + style="visibility:visible"><path + d="M 34.02,809.6 H 21.77 V 796.54 H 0 v 45.35 h 34.02 z m 0,-1.09 -12.25,-11.97 v 13.06 h 12.25 z" + class="st2" + id="path1395-8" + inkscape:connector-curvature="0" + style="fill:#000000;fill-opacity:0.6;stroke:#000000;stroke-linecap:butt;stroke-opacity:0.6;filter:url(#filter_3.3333334922791-4)" /></g><path + d="M 34.02,809.6 H 21.77 V 796.54 H 0 v 45.35 h 34.02 z m 0,-1.09 -12.25,-11.97 v 13.06 h 12.25 z" + class="st15" + id="path1398-3" + inkscape:connector-curvature="0" + style="fill:#ffc000;stroke:#15383a;stroke-width:0.24;stroke-linecap:butt" /></g><g + id="shape167-337-6" + v:mID="167" + v:groupContext="shape" + v:layerMember="0" + transform="translate(14.8819)"><title + id="title1401-7">Sheet.167</title></g><g + id="shape165-339-6" + v:mID="165" + v:groupContext="groupContent" + v:layerMember="0"><v:textBlock + v:margins="rect(2,2,2,2)" + v:tabSpace="42.5197" + v:verticalAlign="0" /><v:textRect + cx="17.0079" + cy="851.092" + width="80.37" + height="18.4037" /><text + x="-19.82" + y="854.69" + class="st4" + v:langID="1033" + id="text1404-7" + style="font-size:12.0001px;font-family:Calibri;fill:#15383a"><v:paragraph + v:horizAlign="1" /><v:tabList />Wrapper object file</text></g></g><g + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + v:layerMember="0" + v:groupContext="group" + v:mID="201" + transform="translate(223.51047,-70.248605)" + id="group201-397"> + <v:custProps> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Id" + v:nameU="BpmnId" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Categories" + v:nameU="BpmnCategories" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Documentation" + v:nameU="BpmnDocumentation" /> + <v:cp + v:val="VT4(Data Object)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Data Object;Group;Annotation" + v:type="1" + v:prompt="" + v:lbl="ArtifactType" + v:nameU="BpmnArtifactType" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Name" + v:nameU="BpmnName" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="State" + v:nameU="BpmnState" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Text" + v:nameU="BpmnText" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="CategoryRef" + v:nameU="BpmnCategoryRef" /> + <v:cp + v:val="VT4(Artifact)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:type="1" + v:prompt="" + v:lbl="ElementType" + v:nameU="BpmnElementType" /> + <v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl="Collection" + v:nameU="BpmnCollection" /> + <v:cp + v:val="VT4(Fat binary file)" + v:cal="0" + v:langID="0" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="" + v:nameU="BpmnName" /> + <v:cp + v:val="VT4(Fat binary file)" + v:cal="0" + v:langID="0" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="" + v:nameU="BpmnText" /> + <v:cp + v:val="VT4(Fat binary file)" + v:cal="0" + v:langID="0" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="" + v:nameU="BpmnCategoryRef" /> + </v:custProps> + <v:userDefs> + <v:ud + v:val="VT4(Data Object)" + v:prompt="" + v:nameU="msvShapeCategories" /> + <v:ud + v:val="VT0(15):26" + v:prompt="" + v:nameU="visVersion" /> + </v:userDefs> + <title + id="title1502">Data Object.201</title> + <desc + id="desc1504">Fat binary file</desc> + <g + v:layerMember="0" + v:groupContext="shape" + v:mID="202" + id="shape202-398"> + <title + id="title1506">Sheet.202</title> + + <path + style="fill:#0070c0;stroke:#15383a;stroke-width:0.170764;stroke-linecap:butt" + inkscape:connector-curvature="0" + id="path1511" + class="st3" + d="M 12.405327,789.6477 H 0.12287144 v -6.59421 H -21.704809 v 22.89795 h 34.110136 z m 0,-0.55036 -12.28245556,-6.04385 v 6.59421 H 12.405327 Z" /> + </g> + <g + transform="translate(14.8819)" + v:layerMember="0" + v:groupContext="shape" + v:mID="203" + id="shape203-403"> + <title + id="title1514">Sheet.203</title> + </g> + + </g></g><g + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + v:layerMember="0" + v:groupContext="group" + v:mID="176" + transform="translate(266.17693,-91.298194)" + id="group176-341-5"><v:custProps><v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Id" + v:nameU="BpmnId" /><v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Categories" + v:nameU="BpmnCategories" /><v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Documentation" + v:nameU="BpmnDocumentation" /><v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Name" + v:nameU="BpmnName" /><v:cp + v:val="VT4(Task)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Task;Sub-Process" + v:type="1" + v:prompt="" + v:lbl="ActivityType" + v:nameU="BpmnActivityType" /><v:cp + v:val="VT4(None)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="None;Standard;Parallel MultiInstance;Sequential MultiInstance" + v:type="1" + v:prompt="" + v:lbl="LoopType" + v:nameU="BpmnLoopType" /><v:cp + v:val="VT4(None)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="None;Service;Receive;Send;User;Script;Abstract;Manual;Instantiating Receive;Business Rule" + v:type="1" + v:prompt="" + v:lbl="TaskType" + v:nameU="BpmnTaskType" /><v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Script" + v:nameU="BpmnScript" /><v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl="Instantiate" + v:nameU="BpmnInstantiate" /><v:cp + v:val="VT4(Embedded)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Embedded;Reusable;Reference" + v:type="1" + v:prompt="" + v:lbl="SubProcessType" + v:nameU="BpmnSubProcessType" /><v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl="IsCollapsed" + v:nameU="BpmnIsCollapsed" /><v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl="IsATransaction" + v:nameU="BpmnIsATransaction" /><v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl="IsForCompensation" + v:nameU="BpmnIsForCompensation" /><v:cp + v:val="VT4(Sub-Process)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:type="1" + v:prompt="" + v:lbl="ElementType" + v:nameU="BpmnElementType" /><v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl="AdHoc" + v:nameU="BpmnAdHoc" /><v:cp + v:val="VT4(Parallel)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Sequential;Parallel" + v:type="1" + v:prompt="" + v:lbl="AdHocOrdering" + v:nameU="BpmnAdHocOrdering" /><v:cp + v:val="VT4(Default)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="Default;Call" + v:type="1" + v:prompt="" + v:lbl="BoundaryType" + v:nameU="BpmnBoundaryType" /><v:cp + v:val="VT4(Offload-wrapper)" + v:cal="0" + v:langID="0" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="" + v:nameU="BpmnName" /></v:custProps><v:userDefs><v:ud + v:val="VT0(0):26" + v:prompt="" + v:nameU="BpmnNumIconsVisible" /><v:ud + v:val="VT0(0):5" + v:prompt="" + v:nameU="BpmnIsExtendedSubProcess" /><v:ud + v:val="VT0(0):26" + v:prompt="" + v:nameU="msvStructureType" /><v:ud + v:val="VT0(0):26" + v:prompt="" + v:nameU="msvSDContainerResize" /><v:ud + v:val="VT0(15):26" + v:prompt="" + v:nameU="visVersion" /><v:ud + v:val="VT4(Task)" + v:prompt="" + v:nameU="msvShapeCategories" /><v:ud + v:val="VT0(0.15748031496063):24" + v:prompt="" + v:nameU="BpmnIconHeight" /><v:ud + v:val="VT0(0.11811023622047):24" + v:prompt="" + v:nameU="BpmnIconPinY" /><v:ud + v:val="VT0(0):26" + v:prompt="" + v:nameU="BpmnBoundaryType" /><v:ud + v:val="VT0(0.98425196850394):24" + v:prompt="" + v:nameU="DefaultWidth" /><v:ud + v:val="VT0(0.78740157480315):24" + v:prompt="" + v:nameU="DefaultHeight" /><v:ud + v:val="VT0(0.78740157480315):24" + v:prompt="" + v:nameU="ResizeTxtHeight" /><v:ud + v:val="VT0(0):5" + v:prompt="" + v:nameU="IsInstance" /><v:ud + v:val="VT0(1):5" + v:prompt="" + v:nameU="IsInstance" /></v:userDefs><title + id="title1408-2">Task.176</title><desc + id="desc1410-4">Offload-wrapper</desc><g + transform="translate(36.2438,-2.12598)" + v:layerMember="0" + v:groupContext="shape" + v:mID="181" + id="shape181-355-5"><title + id="title1433-9">Sheet.181</title><v:userDefs><v:ud + v:val="VT0(1):26" + v:prompt="" + v:nameU="BpmnIconPosition" /><v:ud + v:val="VT0(0.18):26" + v:prompt="" + v:nameU="BpmnIconWidth" /></v:userDefs></g><g + transform="translate(36.6038,-3.68504)" + v:layerMember="0" + v:groupContext="shape" + v:mID="185" + id="shape185-362-29"><title + id="title1447-6">Sheet.185</title><v:userDefs><v:ud + v:val="VT0(1):26" + v:prompt="" + v:nameU="BpmnIconPosition" /><v:ud + v:val="VT0(0.19):26" + v:prompt="" + v:nameU="BpmnIconWidth" /></v:userDefs></g><g + transform="translate(37.7178,-3.68504)" + v:layerMember="0" + v:groupContext="shape" + v:mID="186" + id="shape186-364-2"><title + id="title1450-4">Sheet.186</title><v:userDefs><v:ud + v:val="VT0(1):26" + v:prompt="" + v:nameU="BpmnIconPosition" /><v:ud + v:val="VT0(0.18):26" + v:prompt="" + v:nameU="BpmnIconWidth" /></v:userDefs></g><g + v:layerMember="0" + v:groupContext="group" + v:mID="187" + transform="translate(36.2438,-2.83465)" + id="group187-366-1"><v:userDefs><v:ud + v:val="VT0(1):26" + v:prompt="" + v:nameU="BpmnIconPosition" /><v:ud + v:val="VT0(0.18):26" + v:prompt="" + v:nameU="BpmnIconWidth" /></v:userDefs><title + id="title1453-0">Sheet.187</title><g + transform="rotate(179.753,3.6955626,836.73185)" + v:layerMember="0" + v:groupContext="shape" + v:mID="188" + id="shape188-367-9"><title + id="title1455-28">Sheet.188</title></g></g><g + transform="translate(3.50394,-43.189)" + v:layerMember="0" + v:groupContext="shape" + v:mID="189" + id="shape189-370-13"><title + id="title1459-4">Sheet.189</title></g><g + transform="translate(3.00394,-42.689)" + v:layerMember="0" + v:groupContext="shape" + v:mID="190" + id="shape190-372-3"><title + id="title1462-8">Sheet.190</title></g><g + transform="translate(2.50394,-44.189)" + v:layerMember="0" + v:groupContext="shape" + v:mID="194" + id="shape194-379-7"><title + id="title1476-4">Sheet.194</title></g><g + transform="translate(3.50394,-43.189)" + v:layerMember="0" + v:groupContext="shape" + v:mID="195" + id="shape195-381-1"><title + id="title1479-9">Sheet.195</title></g><g + transform="translate(3.00394,-44.189)" + v:layerMember="0" + v:groupContext="shape" + v:mID="196" + id="shape196-383-5"><title + id="title1482-93">Sheet.196</title></g><g + transform="translate(3.00394,-44.189)" + v:layerMember="0" + v:groupContext="shape" + v:mID="197" + id="shape197-385-2"><title + id="title1485-7">Sheet.197</title></g><g + transform="rotate(-90,21.2115,816.3695)" + v:layerMember="0" + v:groupContext="shape" + v:mID="198" + id="shape198-387-8"><title + id="title1488-9">Sheet.198</title><v:userDefs><v:ud + v:val="VT0(1):26" + v:prompt="" + v:nameU="BpmnIconPosition" /><v:ud + v:val="VT0(0.18):26" + v:prompt="" + v:nameU="BpmnIconWidth" /></v:userDefs></g><g + id="g11177"><g + id="shape177-342-8" + v:mID="177" + v:groupContext="shape" + v:layerMember="0" + transform="matrix(1,0,0,0.69080446,-5.8925653,248.73045)"><title + id="title1412-1">Sheet.177</title><g + id="shadow177-343-3" + v:groupContext="shadow" + v:shadowOffsetX="1.83842E-016" + v:shadowOffsetY="-3.00236" + v:shadowType="1" + transform="matrix(1,0,0,0.79375173,0,164.94789)" + class="st1" + style="visibility:visible"><rect + x="0" + y="785.19702" + width="70.866096" + height="56.692902" + rx="5.6692901" + ry="5.6692901" + class="st2" + id="rect1414-4" + style="fill:#000000;fill-opacity:0.6;stroke:#000000;stroke-linecap:butt;stroke-opacity:0.6;filter:url(#filter_3.3333334922791-2)" /></g><rect + x="0" + y="784.59943" + width="70.866096" + height="45.000095" + rx="5.6692901" + ry="4.5000095" + class="st7" + id="rect1417-7" + style="fill:url(#linearGradient11167);stroke:#15383a;stroke-width:0.213823;stroke-linecap:butt" /></g><g + id="shape176-389-0" + v:mID="176" + v:groupContext="groupContent" + v:layerMember="0"><v:textBlock + v:margins="rect(2,2,2,2)" + v:tabSpace="42.5197" /><v:textRect + cx="35.4331" + cy="813.543" + width="70.87" + height="0" /><text + x="15.39" + y="809.94" + class="st12" + v:langID="1033" + id="text1493-9" + style="font-size:12.0001px;font-family:Calibri;fill:#ffffff"><v:paragraph + v:horizAlign="1" /><v:tabList /><tspan + x="14.8" + class="st13" + id="tspan1491-1" + style="font-size:12.0001px">Linker</tspan></text></g></g></g><g + id="g11225" + v:mID="131" + v:groupContext="shape" + v:layerMember="1" + transform="matrix(1,0,0,0.886216,289.07358,-67.515291)" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <title + id="title11221">Dynamic Connector.131</title> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConnectingObjectType" + v:lbl="ConnectingObjectType" + v:prompt="" + v:type="1" + v:format="Sequence Flow;Message Flow;Association" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Sequence Flow)" /> + <v:cp + v:nameU="BpmnConditionType" + v:lbl="ConditionType" + v:prompt="" + v:type="1" + v:format="None;Expression;Default" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnConditionExpression" + v:lbl="ConditionExpression" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef" + v:lbl="MessageRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnMessageRef_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties" + v:lbl=" Properties" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Type" + v:lbl=" Type" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value" + v:lbl=" Value" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Correlation" + v:lbl=" Correlation" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef" + v:lbl=" FromRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef" + v:lbl=" ToRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDirection" + v:lbl="Direction" + v:prompt="" + v:type="1" + v:format="None;One;Both" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(One)" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Connecting Object)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Connecting Object)" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + </v:userDefs> + <path + d="m 7.09,841.89 c 0,4.28 0,11.78 0,17.64" + class="st5" + id="path11223" + inkscape:connector-curvature="0" + style="stroke:#000000;stroke-width:0.72;stroke-linecap:butt;marker-end:url(#mrkr4-16)" /> + </g><g + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + transform="matrix(-1,0,0,1,102.49747,-185.06578)" + v:layerMember="1" + v:groupContext="shape" + v:mID="227" + id="g11483"> + <title + id="title11479">Dynamic Connector.227</title> + <v:custProps> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Id" + v:nameU="BpmnId" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Categories" + v:nameU="BpmnCategories" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Documentation" + v:nameU="BpmnDocumentation" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Name" + v:nameU="BpmnName" /> + <v:cp + v:val="VT4(Sequence Flow)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="Sequence Flow;Message Flow;Association" + v:type="1" + v:prompt="" + v:lbl="ConnectingObjectType" + v:nameU="BpmnConnectingObjectType" /> + <v:cp + v:val="VT4(None)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="None;Expression;Default" + v:type="1" + v:prompt="" + v:lbl="ConditionType" + v:nameU="BpmnConditionType" /> + <v:cp + v:val="VT4(Hidden)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl="ConditionExpression" + v:nameU="BpmnConditionExpression" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionBody" + v:nameU="BpmnConditionExpression_ExpressionBody" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionLanguage" + v:nameU="BpmnConditionExpression_ExpressionLanguage" /> + <v:cp + v:val="VT4(Hidden)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl="MessageRef" + v:nameU="BpmnMessageRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Name" + v:nameU="BpmnMessageRef_Name" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" Properties" + v:nameU="BpmnMessageRef_Properties" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Name" + v:nameU="BpmnMessageRef_Properties_Name" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Type" + v:nameU="BpmnMessageRef_Properties_Type" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" Value" + v:nameU="BpmnMessageRef_Properties_Value" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionBody" + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionLanguage" + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" /> + <v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl=" Correlation" + v:nameU="BpmnMessageRef_Properties_Correlation" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" FromRef" + v:nameU="BpmnMessageRef_FromRef" /> + <v:cp + v:val="VT4(Role)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Role;Entity" + v:type="1" + v:prompt="" + v:lbl=" ParticipantType" + v:nameU="BpmnMessageRef_FromRef_ParticipantType" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" RoleRef" + v:nameU="BpmnMessageRef_FromRef_RoleRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" EntityRef" + v:nameU="BpmnMessageRef_FromRef_EntityRef" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" ToRef" + v:nameU="BpmnMessageRef_ToRef" /> + <v:cp + v:val="VT4(Role)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Role;Entity" + v:type="1" + v:prompt="" + v:lbl=" ParticipantType" + v:nameU="BpmnMessageRef_ToRef_ParticipantType" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" RoleRef" + v:nameU="BpmnMessageRef_ToRef_RoleRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" EntityRef" + v:nameU="BpmnMessageRef_ToRef_EntityRef" /> + <v:cp + v:val="VT4(One)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="None;One;Both" + v:type="1" + v:prompt="" + v:lbl="Direction" + v:nameU="BpmnDirection" /> + <v:cp + v:val="VT4(Connecting Object)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:type="1" + v:prompt="" + v:lbl="ElementType" + v:nameU="BpmnElementType" /> + </v:custProps> + <v:userDefs> + <v:ud + v:val="VT4(Connecting Object)" + v:prompt="" + v:nameU="msvShapeCategories" /> + <v:ud + v:val="VT0(15):26" + v:prompt="" + v:nameU="visVersion" /> + </v:userDefs> + <path + sodipodi:nodetypes="csacc" + style="stroke:#000000;stroke-width:0.72;stroke-linecap:butt;marker-end:url(#mrkr4-75)" + inkscape:connector-curvature="0" + id="path11481" + class="st14" + d="m -2.0428117,736.14676 c 0,6.52128 -0.9903885,45.46601 -3.211783,68.07357 -1.6788727,17.08621 -2.4618411,36.73887 -13.4290233,50.10825 -20.725421,25.26502 -55.687442,41.7078 -87.903912,43.4014 -14.77147,0.90566 -46.33341,1.58772 -46.33341,1.58772" /> + </g><g + id="g11735" + transform="translate(80.531727,61.38089)"><g + transform="translate(-1.4731413,-12.767225)" + id="g11757"><g + id="g11717" + transform="translate(201.85073,-98.186202)" + v:mID="165" + v:groupContext="group" + v:layerMember="0" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"><v:custProps><v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnArtifactType" + v:lbl="ArtifactType" + v:prompt="" + v:type="1" + v:format="Data Object;Group;Annotation" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Data Object)" /><v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnState" + v:lbl="State" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnText" + v:lbl="Text" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnCategoryRef" + v:lbl="CategoryRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /><v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Artifact)" /><v:cp + v:nameU="BpmnCollection" + v:lbl="Collection" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /><v:cp + v:nameU="BpmnName" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(Host object file)" /><v:cp + v:nameU="BpmnText" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(Host object file)" /><v:cp + v:nameU="BpmnCategoryRef" + v:lbl="" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="0" + v:cal="0" + v:val="VT4(Host object file)" /></v:custProps><v:userDefs><v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Data Object)" /><v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /></v:userDefs><title + id="title11695">Data Object.165</title><desc + id="desc11697">Host object file</desc><g + id="g11707" + v:mID="166" + v:groupContext="shape" + v:layerMember="0"><title + id="title11699">Sheet.166</title><g + id="g11703" + v:groupContext="shadow" + v:shadowOffsetX="1.83842E-016" + v:shadowOffsetY="-3.00236" + v:shadowType="1" + transform="translate(0,3.00236)" + class="st1" + style="visibility:visible"><path + d="M 34.02,809.6 H 21.77 V 796.54 H 0 v 45.35 h 34.02 z m 0,-1.09 -12.25,-11.97 v 13.06 h 12.25 z" + class="st2" + id="path11701" + inkscape:connector-curvature="0" + style="fill:#000000;fill-opacity:0.6;stroke:#000000;stroke-linecap:butt;stroke-opacity:0.6;filter:url(#filter_3.3333334922791-4)" /></g><path + d="M 34.02,809.6 H 21.77 V 796.54 H 0 v 45.35 h 34.02 z m 0,-1.09 -12.25,-11.97 v 13.06 h 12.25 z" + class="st15" + id="path11705" + inkscape:connector-curvature="0" + style="fill:#ffc000;stroke:#15383a;stroke-width:0.24;stroke-linecap:butt" /></g><g + id="g11711" + v:mID="167" + v:groupContext="shape" + v:layerMember="0" + transform="translate(14.8819)"><title + id="title11709">Sheet.167</title></g><g + id="g11715" + v:mID="165" + v:groupContext="groupContent" + v:layerMember="0"><v:textBlock + v:margins="rect(2,2,2,2)" + v:tabSpace="42.5197" + v:verticalAlign="0" /><v:textRect + cx="17.0079" + cy="851.092" + width="80.37" + height="18.4037" /><text + x="-19.82" + y="854.69" + class="st4" + v:langID="1033" + id="text11713" + style="font-size:12.0001px;font-family:Calibri;fill:#15383a"><v:paragraph + v:horizAlign="1" /><v:tabList />Fat binary file</text></g></g><g + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + v:layerMember="0" + v:groupContext="group" + v:mID="201" + transform="translate(223.51047,-70.248605)" + id="g11733"> + <v:custProps> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Id" + v:nameU="BpmnId" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Categories" + v:nameU="BpmnCategories" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Documentation" + v:nameU="BpmnDocumentation" /> + <v:cp + v:val="VT4(Data Object)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Data Object;Group;Annotation" + v:type="1" + v:prompt="" + v:lbl="ArtifactType" + v:nameU="BpmnArtifactType" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Name" + v:nameU="BpmnName" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="State" + v:nameU="BpmnState" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Text" + v:nameU="BpmnText" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="CategoryRef" + v:nameU="BpmnCategoryRef" /> + <v:cp + v:val="VT4(Artifact)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:type="1" + v:prompt="" + v:lbl="ElementType" + v:nameU="BpmnElementType" /> + <v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl="Collection" + v:nameU="BpmnCollection" /> + <v:cp + v:val="VT4(Fat binary file)" + v:cal="0" + v:langID="0" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="" + v:nameU="BpmnName" /> + <v:cp + v:val="VT4(Fat binary file)" + v:cal="0" + v:langID="0" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="" + v:nameU="BpmnText" /> + <v:cp + v:val="VT4(Fat binary file)" + v:cal="0" + v:langID="0" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="" + v:nameU="BpmnCategoryRef" /> + </v:custProps> + <v:userDefs> + <v:ud + v:val="VT4(Data Object)" + v:prompt="" + v:nameU="msvShapeCategories" /> + <v:ud + v:val="VT0(15):26" + v:prompt="" + v:nameU="visVersion" /> + </v:userDefs> + <title + id="title11719">Data Object.201</title> + <desc + id="desc11721">Fat binary file</desc> + <g + v:layerMember="0" + v:groupContext="shape" + v:mID="202" + id="g11727"> + <title + id="title11723">Sheet.202</title> + + <path + style="fill:#0070c0;stroke:#15383a;stroke-width:0.170764;stroke-linecap:butt" + inkscape:connector-curvature="0" + id="path11725" + class="st3" + d="M 12.405327,789.6477 H 0.12287144 v -6.59421 H -21.704809 v 22.89795 h 34.110136 z m 0,-0.55036 -12.28245556,-6.04385 v 6.59421 H 12.405327 Z" /> + </g> + <g + transform="translate(14.8819)" + v:layerMember="0" + v:groupContext="shape" + v:mID="203" + id="g11731"> + <title + id="title11729">Sheet.203</title> + </g> + + </g></g></g><g + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + transform="matrix(1,0,0,0.73465825,288.58253,111.63961)" + v:layerMember="1" + v:groupContext="shape" + v:mID="131" + id="g11805"> + <title + id="title11801">Dynamic Connector.131</title> + <v:custProps> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Id" + v:nameU="BpmnId" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Categories" + v:nameU="BpmnCategories" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Documentation" + v:nameU="BpmnDocumentation" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Name" + v:nameU="BpmnName" /> + <v:cp + v:val="VT4(Sequence Flow)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="Sequence Flow;Message Flow;Association" + v:type="1" + v:prompt="" + v:lbl="ConnectingObjectType" + v:nameU="BpmnConnectingObjectType" /> + <v:cp + v:val="VT4(None)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="None;Expression;Default" + v:type="1" + v:prompt="" + v:lbl="ConditionType" + v:nameU="BpmnConditionType" /> + <v:cp + v:val="VT4(Hidden)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl="ConditionExpression" + v:nameU="BpmnConditionExpression" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionBody" + v:nameU="BpmnConditionExpression_ExpressionBody" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionLanguage" + v:nameU="BpmnConditionExpression_ExpressionLanguage" /> + <v:cp + v:val="VT4(Hidden)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl="MessageRef" + v:nameU="BpmnMessageRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Name" + v:nameU="BpmnMessageRef_Name" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" Properties" + v:nameU="BpmnMessageRef_Properties" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Name" + v:nameU="BpmnMessageRef_Properties_Name" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Type" + v:nameU="BpmnMessageRef_Properties_Type" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" Value" + v:nameU="BpmnMessageRef_Properties_Value" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionBody" + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionLanguage" + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" /> + <v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl=" Correlation" + v:nameU="BpmnMessageRef_Properties_Correlation" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" FromRef" + v:nameU="BpmnMessageRef_FromRef" /> + <v:cp + v:val="VT4(Role)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Role;Entity" + v:type="1" + v:prompt="" + v:lbl=" ParticipantType" + v:nameU="BpmnMessageRef_FromRef_ParticipantType" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" RoleRef" + v:nameU="BpmnMessageRef_FromRef_RoleRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" EntityRef" + v:nameU="BpmnMessageRef_FromRef_EntityRef" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" ToRef" + v:nameU="BpmnMessageRef_ToRef" /> + <v:cp + v:val="VT4(Role)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Role;Entity" + v:type="1" + v:prompt="" + v:lbl=" ParticipantType" + v:nameU="BpmnMessageRef_ToRef_ParticipantType" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" RoleRef" + v:nameU="BpmnMessageRef_ToRef_RoleRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" EntityRef" + v:nameU="BpmnMessageRef_ToRef_EntityRef" /> + <v:cp + v:val="VT4(One)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="None;One;Both" + v:type="1" + v:prompt="" + v:lbl="Direction" + v:nameU="BpmnDirection" /> + <v:cp + v:val="VT4(Connecting Object)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:type="1" + v:prompt="" + v:lbl="ElementType" + v:nameU="BpmnElementType" /> + </v:custProps> + <v:userDefs> + <v:ud + v:val="VT4(Connecting Object)" + v:prompt="" + v:nameU="msvShapeCategories" /> + <v:ud + v:val="VT0(15):26" + v:prompt="" + v:nameU="visVersion" /> + </v:userDefs> + <path + style="stroke:#000000;stroke-width:0.72;stroke-linecap:butt;marker-end:url(#mrkr4-16)" + inkscape:connector-curvature="0" + id="path11803" + class="st5" + d="m 7.09,841.89 c 0,4.28 0,11.78 0,17.64" /> + </g><g + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + transform="matrix(1,0,0,0.92951806,449.06522,-569.71377)" + v:layerMember="1" + v:groupContext="shape" + v:mID="131" + id="g11937"> + <title + id="title11933">Dynamic Connector.131</title> + <v:custProps> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Id" + v:nameU="BpmnId" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Categories" + v:nameU="BpmnCategories" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Documentation" + v:nameU="BpmnDocumentation" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Name" + v:nameU="BpmnName" /> + <v:cp + v:val="VT4(Sequence Flow)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="Sequence Flow;Message Flow;Association" + v:type="1" + v:prompt="" + v:lbl="ConnectingObjectType" + v:nameU="BpmnConnectingObjectType" /> + <v:cp + v:val="VT4(None)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="None;Expression;Default" + v:type="1" + v:prompt="" + v:lbl="ConditionType" + v:nameU="BpmnConditionType" /> + <v:cp + v:val="VT4(Hidden)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl="ConditionExpression" + v:nameU="BpmnConditionExpression" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionBody" + v:nameU="BpmnConditionExpression_ExpressionBody" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionLanguage" + v:nameU="BpmnConditionExpression_ExpressionLanguage" /> + <v:cp + v:val="VT4(Hidden)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl="MessageRef" + v:nameU="BpmnMessageRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Name" + v:nameU="BpmnMessageRef_Name" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" Properties" + v:nameU="BpmnMessageRef_Properties" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Name" + v:nameU="BpmnMessageRef_Properties_Name" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" Type" + v:nameU="BpmnMessageRef_Properties_Type" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" Value" + v:nameU="BpmnMessageRef_Properties_Value" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionBody" + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" ExpressionLanguage" + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" /> + <v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl=" Correlation" + v:nameU="BpmnMessageRef_Properties_Correlation" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" FromRef" + v:nameU="BpmnMessageRef_FromRef" /> + <v:cp + v:val="VT4(Role)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Role;Entity" + v:type="1" + v:prompt="" + v:lbl=" ParticipantType" + v:nameU="BpmnMessageRef_FromRef_ParticipantType" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" RoleRef" + v:nameU="BpmnMessageRef_FromRef_RoleRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" EntityRef" + v:nameU="BpmnMessageRef_FromRef_EntityRef" /> + <v:cp + v:val="VT4(Shown)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Shown;Hidden" + v:type="1" + v:prompt="" + v:lbl=" ToRef" + v:nameU="BpmnMessageRef_ToRef" /> + <v:cp + v:val="VT4(Role)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Role;Entity" + v:type="1" + v:prompt="" + v:lbl=" ParticipantType" + v:nameU="BpmnMessageRef_ToRef_ParticipantType" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" RoleRef" + v:nameU="BpmnMessageRef_ToRef_RoleRef" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl=" EntityRef" + v:nameU="BpmnMessageRef_ToRef_EntityRef" /> + <v:cp + v:val="VT4(One)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="None;One;Both" + v:type="1" + v:prompt="" + v:lbl="Direction" + v:nameU="BpmnDirection" /> + <v:cp + v:val="VT4(Connecting Object)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:type="1" + v:prompt="" + v:lbl="ElementType" + v:nameU="BpmnElementType" /> + </v:custProps> + <v:userDefs> + <v:ud + v:val="VT4(Connecting Object)" + v:prompt="" + v:nameU="msvShapeCategories" /> + <v:ud + v:val="VT0(15):26" + v:prompt="" + v:nameU="visVersion" /> + </v:userDefs> + <path + style="stroke:#000000;stroke-width:0.72;stroke-linecap:butt;marker-end:url(#mrkr4-16)" + inkscape:connector-curvature="0" + id="path11935" + class="st5" + d="m 7.09,841.89 c 0,4.28 0,11.78 0,17.64" /> + </g><text + transform="translate(12.464204,39.33749)" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:1.25;font-family:Calibri;-inkscape-font-specification:'Calibri, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect12025);fill:#000000;fill-opacity:1;stroke:none;" + id="text12023" + xml:space="preserve"><tspan + sodipodi:role="line" + x="379.08789" + y="170.08984"><tspan>(another source compiled)</tspan></tspan></text><g + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + v:layerMember="0" + v:groupContext="group" + v:mID="165" + transform="translate(147.53009,-346.57751)" + id="g12051"> + <v:custProps> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Id" + v:nameU="BpmnId" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Categories" + v:nameU="BpmnCategories" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Documentation" + v:nameU="BpmnDocumentation" /> + <v:cp + v:val="VT4(Data Object)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Data Object;Group;Annotation" + v:type="1" + v:prompt="" + v:lbl="ArtifactType" + v:nameU="BpmnArtifactType" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Name" + v:nameU="BpmnName" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="State" + v:nameU="BpmnState" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="Text" + v:nameU="BpmnText" /> + <v:cp + v:val="VT4()" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="CategoryRef" + v:nameU="BpmnCategoryRef" /> + <v:cp + v:val="VT4(Artifact)" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="true" + v:sortKey="" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:type="1" + v:prompt="" + v:lbl="ElementType" + v:nameU="BpmnElementType" /> + <v:cp + v:val="VT0(0):5" + v:cal="0" + v:langID="1033" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="3" + v:prompt="" + v:lbl="Collection" + v:nameU="BpmnCollection" /> + <v:cp + v:val="VT4(Host object file)" + v:cal="0" + v:langID="0" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="" + v:nameU="BpmnName" /> + <v:cp + v:val="VT4(Host object file)" + v:cal="0" + v:langID="0" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="" + v:nameU="BpmnText" /> + <v:cp + v:val="VT4(Host object file)" + v:cal="0" + v:langID="0" + v:ask="false" + v:invis="false" + v:sortKey="" + v:format="" + v:type="0" + v:prompt="" + v:lbl="" + v:nameU="BpmnCategoryRef" /> + </v:custProps> + <v:userDefs> + <v:ud + v:val="VT4(Data Object)" + v:prompt="" + v:nameU="msvShapeCategories" /> + <v:ud + v:val="VT0(15):26" + v:prompt="" + v:nameU="visVersion" /> + </v:userDefs> + <title + id="title12029">Data Object.165</title> + <desc + id="desc12031">Host object file</desc> + <g + v:layerMember="0" + v:groupContext="shape" + v:mID="166" + id="g12041"> + <title + id="title12033">Sheet.166</title> + <g + style="visibility:visible" + class="st1" + transform="translate(0,3.00236)" + v:shadowType="1" + v:shadowOffsetY="-3.00236" + v:shadowOffsetX="1.83842E-016" + v:groupContext="shadow" + id="g12037"> + <path + style="fill:#000000;fill-opacity:0.6;stroke:#000000;stroke-linecap:butt;stroke-opacity:0.6;filter:url(#filter_3.3333334922791)" + inkscape:connector-curvature="0" + id="path12035" + class="st2" + d="M 34.02,809.6 H 21.77 V 796.54 H 0 v 45.35 h 34.02 z m 0,-1.09 -12.25,-11.97 v 13.06 h 12.25 z" /> + </g> + <path + style="fill:#ffc000;stroke:#15383a;stroke-width:0.24;stroke-linecap:butt" + inkscape:connector-curvature="0" + id="path12039" + class="st15" + d="M 34.02,809.6 H 21.77 V 796.54 H 0 v 45.35 h 34.02 z m 0,-1.09 -12.25,-11.97 v 13.06 h 12.25 z" /> + </g> + <g + transform="translate(14.8819)" + v:layerMember="0" + v:groupContext="shape" + v:mID="167" + id="g12045"> + <title + id="title12043">Sheet.167</title> + </g> + <g + v:layerMember="0" + v:groupContext="groupContent" + v:mID="165" + id="g12049"> + <v:textBlock + v:verticalAlign="0" + v:tabSpace="42.5197" + v:margins="rect(2,2,2,2)" /> + <v:textRect + height="18.4037" + width="80.37" + cy="851.092" + cx="17.0079" /> + <text + style="font-size:12.0001px;font-family:Calibri;fill:#15383a" + id="text12047" + v:langID="1033" + class="st4" + y="854.69" + x="-19.82"><v:paragraph + v:horizAlign="1" /><v:tabList />Host object file</text> + + + </g> + </g><g + id="g12099" + v:mID="131" + v:groupContext="shape" + v:layerMember="1" + transform="matrix(1,0,0,0.92951806,157.24894,-354.04074)" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <title + id="title12095">Dynamic Connector.131</title> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConnectingObjectType" + v:lbl="ConnectingObjectType" + v:prompt="" + v:type="1" + v:format="Sequence Flow;Message Flow;Association" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Sequence Flow)" /> + <v:cp + v:nameU="BpmnConditionType" + v:lbl="ConditionType" + v:prompt="" + v:type="1" + v:format="None;Expression;Default" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnConditionExpression" + v:lbl="ConditionExpression" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef" + v:lbl="MessageRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnMessageRef_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties" + v:lbl=" Properties" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Type" + v:lbl=" Type" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value" + v:lbl=" Value" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Correlation" + v:lbl=" Correlation" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef" + v:lbl=" FromRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef" + v:lbl=" ToRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDirection" + v:lbl="Direction" + v:prompt="" + v:type="1" + v:format="None;One;Both" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(One)" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Connecting Object)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Connecting Object)" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + </v:userDefs> + <path + d="m 7.09,841.89 c 0,4.28 0,11.78 0,17.64" + class="st5" + id="path12097" + inkscape:connector-curvature="0" + style="stroke:#000000;stroke-width:0.72;stroke-linecap:butt;marker-end:url(#mrkr4-16)" /> + </g><text + xml:space="preserve" + id="text12187" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:1.25;font-family:Calibri;-inkscape-font-specification:'Calibri, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect12189);fill:#000000;fill-opacity:1;stroke:none;" + transform="translate(-264.10277,254.4389)"><tspan + sodipodi:role="line" + x="379.08789" + y="170.08984"><tspan>(another source compiled)</tspan></tspan></text><g + id="g12321" + v:mID="227" + v:groupContext="shape" + v:layerMember="1" + transform="matrix(-1,0,0,1,161.91417,-240.06306)" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <title + id="title12317">Dynamic Connector.227</title> + <v:custProps> + <v:cp + v:nameU="BpmnId" + v:lbl="Id" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnCategories" + v:lbl="Categories" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDocumentation" + v:lbl="Documentation" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnName" + v:lbl="Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConnectingObjectType" + v:lbl="ConnectingObjectType" + v:prompt="" + v:type="1" + v:format="Sequence Flow;Message Flow;Association" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Sequence Flow)" /> + <v:cp + v:nameU="BpmnConditionType" + v:lbl="ConditionType" + v:prompt="" + v:type="1" + v:format="None;Expression;Default" + v:sortKey="" + v:invis="false" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(None)" /> + <v:cp + v:nameU="BpmnConditionExpression" + v:lbl="ConditionExpression" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnConditionExpression_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef" + v:lbl="MessageRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Hidden)" /> + <v:cp + v:nameU="BpmnMessageRef_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties" + v:lbl=" Properties" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Name" + v:lbl=" Name" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Type" + v:lbl=" Type" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value" + v:lbl=" Value" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionBody" + v:lbl=" ExpressionBody" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Value_ExpressionLanguage" + v:lbl=" ExpressionLanguage" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_Properties_Correlation" + v:lbl=" Correlation" + v:prompt="" + v:type="3" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT0(0):5" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef" + v:lbl=" FromRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_FromRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef" + v:lbl=" ToRef" + v:prompt="" + v:type="1" + v:format="Shown;Hidden" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Shown)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_ParticipantType" + v:lbl=" ParticipantType" + v:prompt="" + v:type="1" + v:format="Role;Entity" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Role)" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_RoleRef" + v:lbl=" RoleRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnMessageRef_ToRef_EntityRef" + v:lbl=" EntityRef" + v:prompt="" + v:type="0" + v:format="" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4()" /> + <v:cp + v:nameU="BpmnDirection" + v:lbl="Direction" + v:prompt="" + v:type="1" + v:format="None;One;Both" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(One)" /> + <v:cp + v:nameU="BpmnElementType" + v:lbl="ElementType" + v:prompt="" + v:type="1" + v:format="Sub-Process;Event;Gateway;Process Diagram;Pool;Lane;Artifact;Connecting Object" + v:sortKey="" + v:invis="true" + v:ask="false" + v:langID="1033" + v:cal="0" + v:val="VT4(Connecting Object)" /> + </v:custProps> + <v:userDefs> + <v:ud + v:nameU="msvShapeCategories" + v:prompt="" + v:val="VT4(Connecting Object)" /> + <v:ud + v:nameU="visVersion" + v:prompt="" + v:val="VT0(15):26" /> + </v:userDefs> + <path + d="m -2.0428117,736.14676 c 0,6.52128 -1.4902847,62.49128 -4.1938772,93.60802 -1.1435151,13.16118 -1.9430392,26.47259 -5.0812221,39.30521 -8.4266,34.45794 -20.775729,66.75178 -81.204234,76.41614" + class="st14" + id="path12319" + inkscape:connector-curvature="0" + style="stroke:#000000;stroke-width:0.72;stroke-linecap:butt;marker-end:url(#mrkr4-75)" + sodipodi:nodetypes="casc" /> + </g></g> +</svg>