diff --git a/projectMDE/conversions/ResultProgram_modded_2.xmi b/projectMDE/conversions/ResultProgram_modded_2.xmi new file mode 100644 index 0000000000000000000000000000000000000000..f9d4fad87eee16db1860f5252941f232f14501c4 --- /dev/null +++ b/projectMDE/conversions/ResultProgram_modded_2.xmi @@ -0,0 +1,209 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ex:Program xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ex="http://www.example.org/examples/example.ecore" xsi:schemaLocation="http://www.example.org/examples/example.ecore ../metamodel/csProgram/CsProgram.ecore"> + <files filename="TextDisplayLives"> + <namespaces namespace="DSL"> + <using>UnityEngine</using> + <using>System</using> + <typedefs xsi:type="ex:Class" identifier="TextDisplayLives" baseType="//@externalTypes.0"> + <members identifier="text"> + <type xsi:type="ex:CompoundType" referencedType="//@externalTypes.3"/> + </members> + <members identifier="prefix"> + <type xsi:type="ex:PrimitiveType" type="string"/> + </members> + <methods identifier="Update" accessability="none"> + <body>text.text = prefix + GameObject.Find("DataManager").GetComponent("DataManager") as DataManager).GetLives()</body> + <body>text.text = standardText + GameObject.Find("DataManager").GetComponent("DataManager") as DataManager).GetLives()</body> + <returnType xsi:type="ex:PrimitiveType"/> + </methods> + </typedefs> + </namespaces> + </files> + <files filename="Charachter"> + <namespaces namespace="DSL"> + <using>UnityEngine</using> + <using>System</using> + <typedefs xsi:type="ex:Class" identifier="Charachter" baseType="//@externalTypes.0"> + <members identifier="speed"> + <type xsi:type="ex:PrimitiveType" type="float"/> + </members> + <members identifier="horizontal" accessability="private"> + <type xsi:type="ex:PrimitiveType" type="float"/> + </members> + <members identifier="rigidbody"> + <type xsi:type="ex:CompoundType" referencedType="//@externalTypes.2"/> + </members> + <members identifier="isGrounded" accessability="private"> + <type xsi:type="ex:PrimitiveType" type="bool"/> + </members> + <members identifier="jumpIntensity"> + <type xsi:type="ex:PrimitiveType" type="float"/> + </members> + <members identifier="createdObject0"> + <type xsi:type="ex:CompoundType" referencedType="//@externalTypes.7"/> + </members> + <methods identifier="Update" accessability="none"> + <body>horizontal = Input.GetAxisRaw("Horizontal");</body> + <body>if (Input.GetButtownDown("Jump") && isGrounded) { + rigidbody.AddForce(new Vector2(0,1) * jumpIntensity); + isGrounded = false; + }</body> + <body>rigidbodyAddForce(new Vector2(horizontal* speed, 0));</body> + <returnType xsi:type="ex:PrimitiveType"/> + </methods> + <methods identifier="Start" accessability="none"> + <returnType xsi:type="ex:PrimitiveType"/> + </methods> + <methods identifier="OnTriggerEnter2D"> + <parameters identifier="collider"> + <type xsi:type="ex:CompoundType" referencedType="//@externalTypes.5"/> + </parameters> + <body>if (colider.gameObject.tag == "Enemy") + {</body> + <body>(GameObject.Find("DataManager").GetComponent("DataManager") as DataManager).setLives((GameObject.Find("DataManager").GetComponent("DataManager") as DataManager).getLives()-1);</body> + <body>}</body> + <returnType xsi:type="ex:PrimitiveType"/> + </methods> + <methods identifier="OnCollisionEnter2D"> + <parameters identifier="collision"> + <type xsi:type="ex:CompoundType" referencedType="//@externalTypes.6"/> + </parameters> + <body>if (collider.gameObject.tag == "Floor"){ + isGrounded = true; + }</body> + <returnType xsi:type="ex:PrimitiveType"/> + </methods> + </typedefs> + </namespaces> + </files> + <files filename="Enemy"> + <namespaces namespace="DSL"> + <using>UnityEngine</using> + <using>System</using> + <typedefs xsi:type="ex:Class" identifier="Enemy" baseType="//@externalTypes.0"> + <members identifier="createdObject0"> + <type xsi:type="ex:CompoundType" referencedType="//@externalTypes.7"/> + </members> + <methods identifier="Update" accessability="none"> + <returnType xsi:type="ex:PrimitiveType"/> + </methods> + <methods identifier="Start" accessability="none"> + <returnType xsi:type="ex:PrimitiveType"/> + </methods> + <methods identifier="OnTriggerEnter2D"> + <parameters identifier="collider"> + <type xsi:type="ex:CompoundType" referencedType="//@externalTypes.5"/> + </parameters> + <body>if (colider.gameObject.tag == "Bullet") + {</body> + <body>(GameObject.Find("DataManager").GetComponent("DataManager") as DataManager).setScore((GameObject.Find("DataManager").GetComponent("DataManager") as DataManager).getScore()+100);</body> + <body>Destroy(gameObject);</body> + <body>}</body> + <body>if (colider.gameObject.tag == "PlayerFoot") + {</body> + <returnType xsi:type="ex:PrimitiveType"/> + </methods> + </typedefs> + </namespaces> + </files> + <files filename="Bullet"> + <namespaces namespace="DSL"> + <using>UnityEngine</using> + <using>System</using> + <typedefs xsi:type="ex:Class" identifier="Bullet" baseType="//@externalTypes.0"> + <members identifier="rigidbody"> + <type xsi:type="ex:CompoundType" referencedType="//@externalTypes.2"/> + </members> + <members identifier="createdObject0"> + <type xsi:type="ex:CompoundType" referencedType="//@externalTypes.7"/> + </members> + <methods identifier="Update" accessability="none"> + <returnType xsi:type="ex:PrimitiveType"/> + </methods> + <methods identifier="Start" accessability="none"> + <body>body.AddForce(new Vector2(0,0)*0.0,ForceMode2D.Impulse);</body> + <returnType xsi:type="ex:PrimitiveType"/> + </methods> + <methods identifier="OnTriggerEnter2D"> + <parameters identifier="collider"> + <type xsi:type="ex:CompoundType" referencedType="//@externalTypes.5"/> + </parameters> + <body>if (colider.gameObject.tag == "Enemy") + {</body> + <body>Destroy(gameObject);</body> + <body>}</body> + <returnType xsi:type="ex:PrimitiveType"/> + </methods> + </typedefs> + </namespaces> + </files> + <files filename="TextDisplayScore"> + <namespaces namespace="DSL"> + <using>UnityEngine</using> + <using>System</using> + <typedefs xsi:type="ex:Class" identifier="TextDisplayScore" baseType="//@externalTypes.0"> + <members identifier="text"> + <type xsi:type="ex:CompoundType" referencedType="//@externalTypes.3"/> + </members> + <members identifier="prefix"> + <type xsi:type="ex:PrimitiveType" type="string"/> + </members> + <methods identifier="Update" accessability="none"> + <body>text.text = prefix + GameObject.Find("DataManager").GetComponent("DataManager") as DataManager).GetScore()</body> + <body>text.text = standardText + GameObject.Find("DataManager").GetComponent("DataManager") as DataManager).GetScore()</body> + <returnType xsi:type="ex:PrimitiveType"/> + </methods> + </typedefs> + </namespaces> + </files> + <files filename="Manager"> + <namespaces namespace="DSL"> + <using>UnityEngine</using> + <using>System</using> + <typedefs xsi:type="ex:Class" identifier="Manager"> + <members identifier="instance" specifier="static"> + <type xsi:type="ex:CompoundType" referencedType="//@files.5/@namespaces.0/@typedefs.0"/> + </members> + <members identifier="lives"> + <type xsi:type="ex:PrimitiveType" type="int"/> + </members> + <members identifier="score"> + <type xsi:type="ex:PrimitiveType" type="int"/> + </members> + <methods identifier="Awake" accessability="private"> + <body>instance??= this;</body> + </methods> + <methods identifier="GetLives"> + <body>return this.lives;</body> + <returnType xsi:type="ex:PrimitiveType" type="int"/> + </methods> + <methods identifier="GetScore"> + <body>return this.score;</body> + <returnType xsi:type="ex:PrimitiveType" type="int"/> + </methods> + <methods identifier="SetLives"> + <parameters identifier="value"> + <type xsi:type="ex:PrimitiveType" type="int"/> + </parameters> + <body>this.lives = value;</body> + <returnType xsi:type="ex:PrimitiveType"/> + </methods> + <methods identifier="SetScore"> + <parameters identifier="value"> + <type xsi:type="ex:PrimitiveType" type="int"/> + </parameters> + <body>this.score = value;</body> + <returnType xsi:type="ex:PrimitiveType"/> + </methods> + </typedefs> + </namespaces> + </files> + <externalTypes identifier="MonoBehaviour" importedFrom="UnityEngine"/> + <externalTypes identifier="Vector2" importedFrom="UnityEngine" type="struct"/> + <externalTypes identifier="Rigidbody2D" importedFrom="UnityEngine"/> + <externalTypes identifier="Text" importedFrom="UnityEngine.UI"/> + <externalTypes identifier="Image" importedFrom="UnityEngine.UI"/> + <externalTypes identifier="Collider2D" importedFrom="UnityEngine"/> + <externalTypes identifier="Collision2D" importedFrom="UnityEngine"/> + <externalTypes identifier="GameObject" importedFrom="UnityEngine"/> +</ex:Program> diff --git a/projectMDE/metamodel/diagrams/unityGameDSL class diagram.jpg b/projectMDE/metamodel/diagrams/unityGameDSL class diagram.jpg index ef3254896d651dc0582fc197a932d8c5fa5f5218..4a42d4d94b813cfa1ab0e3b32f300d0c93196d6c 100644 Binary files a/projectMDE/metamodel/diagrams/unityGameDSL class diagram.jpg and b/projectMDE/metamodel/diagrams/unityGameDSL class diagram.jpg differ diff --git a/projectMDE/metamodel/gameDSL/unityGameDSL2_modded.aird b/projectMDE/metamodel/gameDSL/unityGameDSL2_modded.aird index 870eee040d637b20a694fa9b2495e9c852f92141..6aaab4546f720404487f026cd279028e7bb20ea4 100644 --- a/projectMDE/metamodel/gameDSL/unityGameDSL2_modded.aird +++ b/projectMDE/metamodel/gameDSL/unityGameDSL2_modded.aird @@ -1,1579 +1,1584 @@ <?xml version="1.0" encoding="UTF-8"?> <xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:description="http://www.eclipse.org/sirius/description/1.1.0" xmlns:description_1="http://www.eclipse.org/sirius/diagram/description/1.1.0" xmlns:diagram="http://www.eclipse.org/sirius/diagram/1.1.0" xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.3/notation" xmlns:style="http://www.eclipse.org/sirius/diagram/description/style/1.1.0" xmlns:viewpoint="http://www.eclipse.org/sirius/1.1.0" xsi:schemaLocation="http://www.eclipse.org/sirius/description/1.1.0 http://www.eclipse.org/sirius/1.1.0#//description http://www.eclipse.org/sirius/diagram/description/1.1.0 http://www.eclipse.org/sirius/diagram/1.1.0#//description http://www.eclipse.org/sirius/diagram/description/style/1.1.0 http://www.eclipse.org/sirius/diagram/1.1.0#//description/style"> - <viewpoint:DAnalysis uid="_h7ATUC_xEeyhHro4U1y-UQ" selectedViews="_h8W-MC_xEeyhHro4U1y-UQ _h8jLcC_xEeyhHro4U1y-UQ _h8lAoC_xEeyhHro4U1y-UQ _h8pSEC_xEeyhHro4U1y-UQ" version="14.5.0.202104161500"> + <viewpoint:DAnalysis uid="_XZarcDATEeyfjuvTHgqjRw" selectedViews="_Xbl1sDATEeyfjuvTHgqjRw _Xb1GQDATEeyfjuvTHgqjRw _Xb7M4DATEeyfjuvTHgqjRw _XcChoDATEeyfjuvTHgqjRw" version="14.5.0.202104161500"> <semanticResources>unityGameDSL2_modded.ecore</semanticResources> - <ownedViews xmi:type="viewpoint:DView" uid="_h8W-MC_xEeyhHro4U1y-UQ"> + <ownedViews xmi:type="viewpoint:DView" uid="_Xbl1sDATEeyfjuvTHgqjRw"> <viewpoint xmi:type="description:Viewpoint" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']"/> - <ownedRepresentationDescriptors xmi:type="viewpoint:DRepresentationDescriptor" uid="_jfEuIC_xEeyhHro4U1y-UQ" name="unityGameDSL_modded class diagram" repPath="#_jfAcsC_xEeyhHro4U1y-UQ" changeId="c379a23b-c949-4488-8030-dceb54ceada7"> + <ownedRepresentationDescriptors xmi:type="viewpoint:DRepresentationDescriptor" uid="_YEwHcDATEeyfjuvTHgqjRw" name="unityGameDSL_modded class diagram" repPath="#_YEVQsDATEeyfjuvTHgqjRw" changeId="3814e6c4-744b-492a-b19e-19b49b8cd709"> <description xmi:type="description_1:DiagramDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']"/> <target xmi:type="ecore:EPackage" href="unityGameDSL2_modded.ecore#/"/> </ownedRepresentationDescriptors> </ownedViews> - <ownedViews xmi:type="viewpoint:DView" uid="_h8jLcC_xEeyhHro4U1y-UQ"> + <ownedViews xmi:type="viewpoint:DView" uid="_Xb1GQDATEeyfjuvTHgqjRw"> <viewpoint xmi:type="description:Viewpoint" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Review']"/> </ownedViews> - <ownedViews xmi:type="viewpoint:DView" uid="_h8lAoC_xEeyhHro4U1y-UQ"> + <ownedViews xmi:type="viewpoint:DView" uid="_Xb7M4DATEeyfjuvTHgqjRw"> <viewpoint xmi:type="description:Viewpoint" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Archetype']"/> </ownedViews> - <ownedViews xmi:type="viewpoint:DView" uid="_h8pSEC_xEeyhHro4U1y-UQ"> + <ownedViews xmi:type="viewpoint:DView" uid="_XcChoDATEeyfjuvTHgqjRw"> <viewpoint xmi:type="description:Viewpoint" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Generation']"/> </ownedViews> </viewpoint:DAnalysis> - <diagram:DSemanticDiagram uid="_jfAcsC_xEeyhHro4U1y-UQ"> - <ownedAnnotationEntries xmi:type="description:AnnotationEntry" uid="_jfWa8C_xEeyhHro4U1y-UQ" source="GMF_DIAGRAMS"> - <data xmi:type="notation:Diagram" xmi:id="_jfWa8S_xEeyhHro4U1y-UQ" type="Sirius" element="_jfAcsC_xEeyhHro4U1y-UQ" measurementUnit="Pixel"> - <children xmi:type="notation:Node" xmi:id="_j32agC_xEeyhHro4U1y-UQ" type="2003" element="_j1GBcC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j33BkC_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j33ooC_xEeyhHro4U1y-UQ" type="7004"> - <children xmi:type="notation:Node" xmi:id="_j4FEAC_xEeyhHro4U1y-UQ" type="3010" element="_j3SZ0C_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4FEAS_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8" bold="true"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4FEAi_xEeyhHro4U1y-UQ"/> + <diagram:DSemanticDiagram uid="_YEVQsDATEeyfjuvTHgqjRw"> + <ownedAnnotationEntries xmi:type="description:AnnotationEntry" uid="_YFIh8DATEeyfjuvTHgqjRw" source="GMF_DIAGRAMS"> + <data xmi:type="notation:Diagram" xmi:id="_YFIh8TATEeyfjuvTHgqjRw" type="Sirius" element="_YEVQsDATEeyfjuvTHgqjRw" measurementUnit="Pixel"> + <children xmi:type="notation:Node" xmi:id="_Y6gqwDATEeyfjuvTHgqjRw" type="2003" element="_YtGg4DATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6h44DATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6jHADATEeyfjuvTHgqjRw" type="7004"> + <children xmi:type="notation:Node" xmi:id="_Y6wiYDATEeyfjuvTHgqjRw" type="3010" element="_Y5iaYzATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y6wiYTATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8" bold="true"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y6wiYjATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:SortingStyle" xmi:id="_j33ooS_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j33ooi_xEeyhHro4U1y-UQ"/> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6jHATATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6jHAjATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j32agS_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8" italic="true"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j32agi_xEeyhHro4U1y-UQ" x="648" y="162"/> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6gqwTATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8" italic="true"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6gqwjATEeyfjuvTHgqjRw" x="648" y="162"/> </children> - <children xmi:type="notation:Node" xmi:id="_j33ooy_xEeyhHro4U1y-UQ" type="2003" element="_j1H2oC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j33opi_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j34PsC_xEeyhHro4U1y-UQ" type="7004"> - <children xmi:type="notation:Node" xmi:id="_j4FEAy_xEeyhHro4U1y-UQ" type="3010" element="_j3TA4i_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4FEBC_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8" bold="true"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4FEBS_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y6juEDATEeyfjuvTHgqjRw" type="2003" element="_YtKyUDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6juEzATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6juFDATEeyfjuvTHgqjRw" type="7004"> + <children xmi:type="notation:Node" xmi:id="_Y6wiYzATEeyfjuvTHgqjRw" type="3010" element="_Y5ldsDATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y6wiZDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8" bold="true"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y6wiZTATEeyfjuvTHgqjRw"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4FrEC_xEeyhHro4U1y-UQ" type="3010" element="_j3Tn8S_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4FrES_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8" bold="true"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4FrEi_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y6xJcDATEeyfjuvTHgqjRw" type="3010" element="_Y5mEwTATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y6xJcTATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8" bold="true"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y6xJcjATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:SortingStyle" xmi:id="_j34PsS_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j34Psi_xEeyhHro4U1y-UQ"/> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6juFTATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6juFjATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j33opC_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j33opS_xEeyhHro4U1y-UQ" x="720" y="318"/> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6juETATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6juEjATEeyfjuvTHgqjRw" x="720" y="318"/> </children> - <children xmi:type="notation:Node" xmi:id="_j34Psy_xEeyhHro4U1y-UQ" type="2003" element="_j1IdsC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j34Pti_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j34Pty_xEeyhHro4U1y-UQ" type="7004"> - <styles xmi:type="notation:SortingStyle" xmi:id="_j34PuC_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j34PuS_xEeyhHro4U1y-UQ"/> - </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j34PtC_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j34PtS_xEeyhHro4U1y-UQ" x="510" y="318"/> + <children xmi:type="notation:Node" xmi:id="_Y6kVIDATEeyfjuvTHgqjRw" type="2003" element="_YtMngDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6kVIzATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6kVJDATEeyfjuvTHgqjRw" type="7004"> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6kVJTATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6kVJjATEeyfjuvTHgqjRw"/> + </children> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6kVITATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6kVIjATEeyfjuvTHgqjRw" x="510" y="318"/> </children> - <children xmi:type="notation:Node" xmi:id="_j34Pui_xEeyhHro4U1y-UQ" type="2003" element="_j1JEwC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j342wC_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j342wS_xEeyhHro4U1y-UQ" type="7004"> - <children xmi:type="notation:Node" xmi:id="_j4FrEy_xEeyhHro4U1y-UQ" type="3010" element="_j3UPAC_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4FrFC_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8" bold="true"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4FrFS_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y6k8MDATEeyfjuvTHgqjRw" type="2003" element="_YtNOkTATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6k8MzATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6k8NDATEeyfjuvTHgqjRw" type="7004"> + <children xmi:type="notation:Node" xmi:id="_Y6xJczATEeyfjuvTHgqjRw" type="3010" element="_Y5nS4DATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y6xJdDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8" bold="true"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y6xJdTATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:SortingStyle" xmi:id="_j342wi_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j342wy_xEeyhHro4U1y-UQ"/> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6k8NTATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6k8NjATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j34Puy_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j34PvC_xEeyhHro4U1y-UQ" x="1086" y="162"/> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6k8MTATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6k8MjATEeyfjuvTHgqjRw" x="828" y="162"/> </children> - <children xmi:type="notation:Node" xmi:id="_j342xC_xEeyhHro4U1y-UQ" type="2003" element="_j1Jr0i_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j342xy_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j342yC_xEeyhHro4U1y-UQ" type="7004"> - <styles xmi:type="notation:SortingStyle" xmi:id="_j342yS_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j342yi_xEeyhHro4U1y-UQ"/> - </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j342xS_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j342xi_xEeyhHro4U1y-UQ" x="1284" y="162"/> + <children xmi:type="notation:Node" xmi:id="_Y6k8NzATEeyfjuvTHgqjRw" type="2003" element="_YtPDwDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6ljQDATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6ljQTATEeyfjuvTHgqjRw" type="7004"> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6ljQjATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6ljQzATEeyfjuvTHgqjRw"/> + </children> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6k8ODATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6k8OTATEeyfjuvTHgqjRw" x="1284" y="162"/> </children> - <children xmi:type="notation:Node" xmi:id="_j35d0C_xEeyhHro4U1y-UQ" type="2003" element="_j1KS4i_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j35d0y_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j35d1C_xEeyhHro4U1y-UQ" type="7004"> - <children xmi:type="notation:Node" xmi:id="_j4FrFi_xEeyhHro4U1y-UQ" type="3010" element="_j3U2EC_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4FrFy_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4FrGC_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y6ljRDATEeyfjuvTHgqjRw" type="2003" element="_YtQR4DATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6ljRzATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6mKUDATEeyfjuvTHgqjRw" type="7004"> + <children xmi:type="notation:Node" xmi:id="_Y6xwgDATEeyfjuvTHgqjRw" type="3010" element="_Y5n58DATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y6xwgTATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y6xwgjATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:SortingStyle" xmi:id="_j35d1S_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j35d1i_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y6xwgzATEeyfjuvTHgqjRw" type="3010" element="_Y5ohATATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y6xwhDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y6xwhTATEeyfjuvTHgqjRw"/> + </children> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6mKUTATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6mKUjATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j35d0S_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8" italic="true"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j35d0i_xEeyhHro4U1y-UQ" x="2322"/> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6ljRTATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8" italic="true"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6ljRjATEeyfjuvTHgqjRw" x="2322"/> </children> - <children xmi:type="notation:Node" xmi:id="_j35d1y_xEeyhHro4U1y-UQ" type="2003" element="_j1K58i_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j36E4C_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j36E4S_xEeyhHro4U1y-UQ" type="7004"> - <children xmi:type="notation:Node" xmi:id="_j4GSIC_xEeyhHro4U1y-UQ" type="3010" element="_j3U2Ei_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4GSIS_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4GSIi_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y6mKUzATEeyfjuvTHgqjRw" type="2003" element="_YtSuIDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6mKVjATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6mxYDATEeyfjuvTHgqjRw" type="7004"> + <children xmi:type="notation:Node" xmi:id="_Y6yXkDATEeyfjuvTHgqjRw" type="3010" element="_Y5q9QDATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y6yXkTATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y6yXkjATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:SortingStyle" xmi:id="_j36E4i_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j36E4y_xEeyhHro4U1y-UQ"/> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6mxYTATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6mxYjATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j35d2C_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8" italic="true"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j35d2S_xEeyhHro4U1y-UQ" x="3018" y="270"/> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6mKVDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8" italic="true"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6mKVTATEeyfjuvTHgqjRw" x="2718" y="318"/> </children> - <children xmi:type="notation:Node" xmi:id="_j36r8C_xEeyhHro4U1y-UQ" type="2003" element="_j1LhAi_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j36r8y_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j36r9C_xEeyhHro4U1y-UQ" type="7004"> - <children xmi:type="notation:Node" xmi:id="_j4GSIy_xEeyhHro4U1y-UQ" type="3010" element="_j3VdIS_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4GSJC_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4GSJS_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y6nYcDATEeyfjuvTHgqjRw" type="2003" element="_YtT8QDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6nYczATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6nYdDATEeyfjuvTHgqjRw" type="7004"> + <children xmi:type="notation:Node" xmi:id="_Y6yXkzATEeyfjuvTHgqjRw" type="3010" element="_Y5rkUDATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y6yXlDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y6yXlTATEeyfjuvTHgqjRw"/> </children> - <children xmi:type="notation:Node" xmi:id="_SUuEgC_9Eey3jajMEAug1g" type="3010" element="_SUFyYC_9Eey3jajMEAug1g"> - <styles xmi:type="notation:FontStyle" xmi:id="_SUurkC_9Eey3jajMEAug1g" fontColor="2697711" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_SUurkS_9Eey3jajMEAug1g"/> + <children xmi:type="notation:Node" xmi:id="_Y6y-oDATEeyfjuvTHgqjRw" type="3010" element="_Y5sLYTATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y6y-oTATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y6y-ojATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:SortingStyle" xmi:id="_j36r9S_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j36r9i_xEeyhHro4U1y-UQ"/> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6nYdTATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6nYdjATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j36r8S_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j36r8i_xEeyhHro4U1y-UQ" x="3186" y="474"/> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6nYcTATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6nYcjATEeyfjuvTHgqjRw" x="2898" y="480"/> </children> - <children xmi:type="notation:Node" xmi:id="_j36r9y_xEeyhHro4U1y-UQ" type="2003" element="_j1MIEi_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j37TAC_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j37TAS_xEeyhHro4U1y-UQ" type="7004"> - <styles xmi:type="notation:SortingStyle" xmi:id="_j37TAi_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j37TAy_xEeyhHro4U1y-UQ"/> - </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j36r-C_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j36r-S_xEeyhHro4U1y-UQ" x="2844" y="510"/> + <children xmi:type="notation:Node" xmi:id="_Y6nYdzATEeyfjuvTHgqjRw" type="2003" element="_YtVxcDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6n_gDATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6n_gTATEeyfjuvTHgqjRw" type="7004"> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6n_gjATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6n_gzATEeyfjuvTHgqjRw"/> + </children> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6nYeDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6nYeTATEeyfjuvTHgqjRw" x="2718" y="480"/> </children> - <children xmi:type="notation:Node" xmi:id="_j37TBC_xEeyhHro4U1y-UQ" type="2003" element="_j2B1ki_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j37TBy_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j376EC_xEeyhHro4U1y-UQ" type="7004"> - <children xmi:type="notation:Node" xmi:id="_j4G5My_xEeyhHro4U1y-UQ" type="3010" element="_j3WrQC_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4G5NC_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8" bold="true"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4G5NS_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y6n_hDATEeyfjuvTHgqjRw" type="2003" element="_Y2kl8DATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6omkDATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6omkTATEeyfjuvTHgqjRw" type="7004"> + <children xmi:type="notation:Node" xmi:id="_Y6zlsDATEeyfjuvTHgqjRw" type="3010" element="_Y5tZgDATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y6zlsTATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8" bold="true"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y6zlsjATEeyfjuvTHgqjRw"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4G5Ni_xEeyhHro4U1y-UQ" type="3010" element="_j3WrQi_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4G5Ny_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8" bold="true"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4G5OC_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y6zlszATEeyfjuvTHgqjRw" type="3010" element="_Y5uAkDATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y6zltDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8" bold="true"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y6zltTATEeyfjuvTHgqjRw"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4G5OS_xEeyhHro4U1y-UQ" type="3010" element="_j3XSUS_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4G5Oi_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8" bold="true"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4G5Oy_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y6zltjATEeyfjuvTHgqjRw" type="3010" element="_Y5unoDATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y6zltzATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8" bold="true"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y6zluDATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:SortingStyle" xmi:id="_j376ES_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j376Ei_xEeyhHro4U1y-UQ"/> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6omkjATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6omkzATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j37TBS_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j37TBi_xEeyhHro4U1y-UQ" x="828" y="162"/> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6n_hTATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6n_hjATEeyfjuvTHgqjRw" x="1032" y="162"/> </children> - <children xmi:type="notation:Node" xmi:id="_j376Ey_xEeyhHro4U1y-UQ" type="2003" element="_j2DDsC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j376Fi_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j376Fy_xEeyhHro4U1y-UQ" type="7004"> - <children xmi:type="notation:Node" xmi:id="_j4HgQC_xEeyhHro4U1y-UQ" type="3010" element="_j3X5YC_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4HgQS_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4HgQi_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y6omlDATEeyfjuvTHgqjRw" type="2003" element="_Y2l0EDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6pNoDATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6pNoTATEeyfjuvTHgqjRw" type="7004"> + <children xmi:type="notation:Node" xmi:id="_Y60MwDATEeyfjuvTHgqjRw" type="3010" element="_Y5vOsDATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y60MwTATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y60MwjATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:SortingStyle" xmi:id="_j376GC_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j376GS_xEeyhHro4U1y-UQ"/> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6pNojATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6pNozATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j376FC_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j376FS_xEeyhHro4U1y-UQ" x="2112" y="162"/> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6omlTATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6omljATEeyfjuvTHgqjRw" x="2112" y="162"/> </children> - <children xmi:type="notation:Node" xmi:id="_j376Gi_xEeyhHro4U1y-UQ" type="2003" element="_j2DqwC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j38hIC_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j38hIS_xEeyhHro4U1y-UQ" type="7004"> - <styles xmi:type="notation:SortingStyle" xmi:id="_j38hIi_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j38hIy_xEeyhHro4U1y-UQ"/> - </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j376Gy_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j376HC_xEeyhHro4U1y-UQ" x="2322" y="162"/> + <children xmi:type="notation:Node" xmi:id="_Y6pNpDATEeyfjuvTHgqjRw" type="2003" element="_Y2npQDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6pNpzATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6p0sDATEeyfjuvTHgqjRw" type="7004"> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6p0sTATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6p0sjATEeyfjuvTHgqjRw"/> + </children> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6pNpTATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6pNpjATEeyfjuvTHgqjRw" x="2322" y="162"/> </children> - <children xmi:type="notation:Node" xmi:id="_j38hJC_xEeyhHro4U1y-UQ" type="2003" element="_j2ER0C_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j39IMC_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j39IMS_xEeyhHro4U1y-UQ" type="7004"> - <children xmi:type="notation:Node" xmi:id="_j4HgQy_xEeyhHro4U1y-UQ" type="3010" element="_j3bjxi_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4HgRC_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4HgRS_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y6p0szATEeyfjuvTHgqjRw" type="2003" element="_Y2o3YDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6p0tjATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6p0tzATEeyfjuvTHgqjRw" type="7004"> + <children xmi:type="notation:Node" xmi:id="_Y60MwzATEeyfjuvTHgqjRw" type="3010" element="_Y52jdTATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y60MxDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y60MxTATEeyfjuvTHgqjRw"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4HgRi_xEeyhHro4U1y-UQ" type="3010" element="_j3cK0C_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4HgRy_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4HgSC_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y60MxjATEeyfjuvTHgqjRw" type="3010" element="_Y53KgTATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y60z0DATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y60z0TATEeyfjuvTHgqjRw"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4IHUC_xEeyhHro4U1y-UQ" type="3010" element="_j3cK0i_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4IHUS_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4IHUi_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y60z0jATEeyfjuvTHgqjRw" type="3010" element="_Y53xkDATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y60z0zATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y60z1DATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:SortingStyle" xmi:id="_j39IMi_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j39IMy_xEeyhHro4U1y-UQ"/> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6p0uDATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6p0uTATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j38hJS_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j38hJi_xEeyhHro4U1y-UQ"/> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6p0tDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6p0tTATEeyfjuvTHgqjRw"/> </children> - <children xmi:type="notation:Node" xmi:id="_j39INC_xEeyhHro4U1y-UQ" type="2003" element="_j2ER0y_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j39INy_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j39IOC_xEeyhHro4U1y-UQ" type="7004"> - <children xmi:type="notation:Node" xmi:id="_j4IHUy_xEeyhHro4U1y-UQ" type="3010" element="_j3YgcC_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4IHVC_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4IHVS_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y6p0ujATEeyfjuvTHgqjRw" type="2003" element="_Y2pecDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6qbwDATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6qbwTATEeyfjuvTHgqjRw" type="7004"> + <children xmi:type="notation:Node" xmi:id="_Y61a4DATEeyfjuvTHgqjRw" type="3010" element="_Y5wc0DATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y61a4TATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y61a4jATEeyfjuvTHgqjRw"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4IuYC_xEeyhHro4U1y-UQ" type="3010" element="_j3Ygci_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4IuYS_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4IuYi_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y61a4zATEeyfjuvTHgqjRw" type="3010" element="_Y5xD4DATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y61a5DATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y61a5TATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:SortingStyle" xmi:id="_j39IOS_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j39IOi_xEeyhHro4U1y-UQ"/> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6qbwjATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6qbwzATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j39INS_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j39INi_xEeyhHro4U1y-UQ" x="2682" y="162"/> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6p0uzATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6p0vDATEeyfjuvTHgqjRw" x="2682" y="162"/> </children> - <children xmi:type="notation:Node" xmi:id="_j39vQC_xEeyhHro4U1y-UQ" type="2003" element="_j2E44i_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j39vQy_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j39vRC_xEeyhHro4U1y-UQ" type="7004"> - <children xmi:type="notation:Node" xmi:id="_j4IuYy_xEeyhHro4U1y-UQ" type="3010" element="_j3cK1C_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4IuZC_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4IuZS_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y6qbxDATEeyfjuvTHgqjRw" type="2003" element="_Y2rToDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6qbxzATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6qbyDATEeyfjuvTHgqjRw" type="7004"> + <children xmi:type="notation:Node" xmi:id="_Y61a5jATEeyfjuvTHgqjRw" type="3010" element="_Y54YoDATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y61a5zATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y61a6DATEeyfjuvTHgqjRw"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4IuZi_xEeyhHro4U1y-UQ" type="3010" element="_j3cx4S_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4IuZy_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4IuaC_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y62B8DATEeyfjuvTHgqjRw" type="3010" element="_Y54YojATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y62B8TATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y62B8jATEeyfjuvTHgqjRw"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4JVcC_xEeyhHro4U1y-UQ" type="3010" element="_j3cx4y_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4JVcS_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4JVci_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y62B8zATEeyfjuvTHgqjRw" type="3010" element="_Y54_sTATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y62B9DATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y62B9TATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:SortingStyle" xmi:id="_j39vRS_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j39vRi_xEeyhHro4U1y-UQ"/> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6qbyTATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6qbyjATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j39vQS_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j39vQi_xEeyhHro4U1y-UQ" x="182"/> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6qbxTATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6qbxjATEeyfjuvTHgqjRw" x="182"/> </children> - <children xmi:type="notation:Node" xmi:id="_j3-WUC_xEeyhHro4U1y-UQ" type="2003" element="_j2Ff8S_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j3_kcC_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j3_kcS_xEeyhHro4U1y-UQ" type="7004"> - <styles xmi:type="notation:SortingStyle" xmi:id="_j3_kci_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j3_kcy_xEeyhHro4U1y-UQ"/> - </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j3-WUS_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8" italic="true"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j3-WUi_xEeyhHro4U1y-UQ" x="1536"/> + <children xmi:type="notation:Node" xmi:id="_Y6rC0DATEeyfjuvTHgqjRw" type="2003" element="_Y2shwDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6rp4DATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6rp4TATEeyfjuvTHgqjRw" type="7004"> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6rp4jATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6rp4zATEeyfjuvTHgqjRw"/> + </children> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6rC0TATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8" italic="true"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6rC0jATEeyfjuvTHgqjRw" x="1536"/> </children> - <children xmi:type="notation:Node" xmi:id="_j3_kdC_xEeyhHro4U1y-UQ" type="2003" element="_j2GuEC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4ALgC_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j4ALgS_xEeyhHro4U1y-UQ" type="7004"> - <children xmi:type="notation:Node" xmi:id="_j4JVcy_xEeyhHro4U1y-UQ" type="3010" element="_j3ZHgC_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4JVdC_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4JVdS_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y6sQ8DATEeyfjuvTHgqjRw" type="2003" element="_Y2tv4DATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6sQ8zATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6sQ9DATEeyfjuvTHgqjRw" type="7004"> + <children xmi:type="notation:Node" xmi:id="_Y62B9jATEeyfjuvTHgqjRw" type="3010" element="_Y5xq8DATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y62B9zATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y62B-DATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:SortingStyle" xmi:id="_j4ALgi_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j4ALgy_xEeyhHro4U1y-UQ"/> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6sQ9TATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6sQ9jATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j3_kdS_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8" italic="true"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j3_kdi_xEeyhHro4U1y-UQ" x="1392" y="318"/> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6sQ8TATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8" italic="true"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6sQ8jATEeyfjuvTHgqjRw" x="1392" y="318"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4ALhC_xEeyhHro4U1y-UQ" type="2003" element="_j2HVIC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4ALhy_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j4AykC_xEeyhHro4U1y-UQ" type="7004"> - <styles xmi:type="notation:SortingStyle" xmi:id="_j4AykS_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j4Ayki_xEeyhHro4U1y-UQ"/> - </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j4ALhS_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4ALhi_xEeyhHro4U1y-UQ" x="1212" y="480"/> + <children xmi:type="notation:Node" xmi:id="_Y6s4ADATEeyfjuvTHgqjRw" type="2003" element="_Y2vlEDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6s4AzATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6s4BDATEeyfjuvTHgqjRw" type="7004"> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6s4BTATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6s4BjATEeyfjuvTHgqjRw"/> + </children> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6s4ATATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6s4AjATEeyfjuvTHgqjRw" x="1572" y="480"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4Ayky_xEeyhHro4U1y-UQ" type="2003" element="_j2Xz0C_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4Ayli_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j4Ayly_xEeyhHro4U1y-UQ" type="7004"> - <styles xmi:type="notation:SortingStyle" xmi:id="_j4AymC_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j4AymS_xEeyhHro4U1y-UQ"/> - </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j4AylC_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4AylS_xEeyhHro4U1y-UQ" x="1572" y="480"/> + <children xmi:type="notation:Node" xmi:id="_Y6tfEDATEeyfjuvTHgqjRw" type="2003" element="_Y3NfITATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6tfEzATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6tfFDATEeyfjuvTHgqjRw" type="7004"> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6tfFTATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6tfFjATEeyfjuvTHgqjRw"/> + </children> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6tfETATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6tfEjATEeyfjuvTHgqjRw" x="1212" y="480"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4Aymi_xEeyhHro4U1y-UQ" type="2003" element="_j2mdUS_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4BZoC_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j4BZoS_xEeyhHro4U1y-UQ" type="7004"> - <styles xmi:type="notation:SortingStyle" xmi:id="_j4BZoi_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j4BZoy_xEeyhHro4U1y-UQ"/> - </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j4Aymy_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4AynC_xEeyhHro4U1y-UQ" x="1392" y="480"/> + <children xmi:type="notation:Node" xmi:id="_Y6tfFzATEeyfjuvTHgqjRw" type="2003" element="_Y36pwDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6uGIDATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6uGITATEeyfjuvTHgqjRw" type="7004"> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6uGIjATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6uGIzATEeyfjuvTHgqjRw"/> + </children> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6tfGDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6tfGTATEeyfjuvTHgqjRw" x="1392" y="480"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4BZpC_xEeyhHro4U1y-UQ" type="2003" element="_j2nEYi_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4BZpy_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j4BZqC_xEeyhHro4U1y-UQ" type="7004"> - <children xmi:type="notation:Node" xmi:id="_j4JVdi_xEeyhHro4U1y-UQ" type="3010" element="_j3ZukC_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4JVdy_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4JVeC_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y6uGJDATEeyfjuvTHgqjRw" type="2003" element="_Y37Q0jATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6uGJzATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6uGKDATEeyfjuvTHgqjRw" type="7004"> + <children xmi:type="notation:Node" xmi:id="_Y62pADATEeyfjuvTHgqjRw" type="3010" element="_Y5y5EDATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y62pATATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y62pAjATEeyfjuvTHgqjRw"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4J8gC_xEeyhHro4U1y-UQ" type="3010" element="_j3Zuki_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4J8gS_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4J8gi_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y62pAzATEeyfjuvTHgqjRw" type="3010" element="_Y5zgITATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y62pBDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y62pBTATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:SortingStyle" xmi:id="_j4BZqS_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j4BZqi_xEeyhHro4U1y-UQ"/> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6uGKTATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6uGKjATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j4BZpS_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4BZpi_xEeyhHro4U1y-UQ" x="1500" y="162"/> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6uGJTATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6uGJjATEeyfjuvTHgqjRw" x="1500" y="162"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4CAsC_xEeyhHro4U1y-UQ" type="2003" element="_j2nrci_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4CAsy_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j4CAtC_xEeyhHro4U1y-UQ" type="7004"> - <children xmi:type="notation:Node" xmi:id="_j4J8gy_xEeyhHro4U1y-UQ" type="3010" element="_j3cx5S_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4J8hC_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4J8hS_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y6uGKzATEeyfjuvTHgqjRw" type="2003" element="_Y39GADATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6utMDATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6utMTATEeyfjuvTHgqjRw" type="7004"> + <children xmi:type="notation:Node" xmi:id="_Y63QEDATEeyfjuvTHgqjRw" type="3010" element="_Y55mwDATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y63QETATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y63QEjATEeyfjuvTHgqjRw"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4J8hi_xEeyhHro4U1y-UQ" type="3010" element="_j3dY8S_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4J8hy_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4J8iC_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y633IDATEeyfjuvTHgqjRw" type="3010" element="_Y55mwjATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y633ITATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y633IjATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:SortingStyle" xmi:id="_j4CAtS_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j4CAti_xEeyhHro4U1y-UQ"/> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6utMjATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6utMzATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j4CAsS_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4CAsi_xEeyhHro4U1y-UQ" x="360"/> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6uGLDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6uGLTATEeyfjuvTHgqjRw" x="360"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4CAty_xEeyhHro4U1y-UQ" type="2003" element="_j2oSgC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4CnwC_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j4CnwS_xEeyhHro4U1y-UQ" type="7004"> - <children xmi:type="notation:Node" xmi:id="_j4KjkC_xEeyhHro4U1y-UQ" type="3010" element="_j3aVoS_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4KjkS_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4Kjki_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y6utNDATEeyfjuvTHgqjRw" type="2003" element="_Y39tETATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6vUQDATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6vUQTATEeyfjuvTHgqjRw" type="7004"> + <children xmi:type="notation:Node" xmi:id="_Y633IzATEeyfjuvTHgqjRw" type="3010" element="_Y50HMTATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y633JDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y633JTATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:SortingStyle" xmi:id="_j4Cnwi_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j4Cnwy_xEeyhHro4U1y-UQ"/> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6vUQjATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6vUQzATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j4CAuC_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4CAuS_xEeyhHro4U1y-UQ" x="1944" y="456"/> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6utNTATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6utNjATEeyfjuvTHgqjRw" x="1896" y="444"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4CnxC_xEeyhHro4U1y-UQ" type="2003" element="_j3GzoS_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4Cnxy_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j4CnyC_xEeyhHro4U1y-UQ" type="7004"> - <children xmi:type="notation:Node" xmi:id="_j4Kjky_xEeyhHro4U1y-UQ" type="3010" element="_j3a8sC_xEeyhHro4U1y-UQ"> - <styles xmi:type="notation:FontStyle" xmi:id="_j4KjlC_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Location" xmi:id="_j4KjlS_xEeyhHro4U1y-UQ"/> + <children xmi:type="notation:Node" xmi:id="_Y6vURDATEeyfjuvTHgqjRw" type="2003" element="_Y5PfcDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6vURzATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6vUSDATEeyfjuvTHgqjRw" type="7004"> + <children xmi:type="notation:Node" xmi:id="_Y633JjATEeyfjuvTHgqjRw" type="3010" element="_Y51VUDATEeyfjuvTHgqjRw"> + <styles xmi:type="notation:FontStyle" xmi:id="_Y633JzATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Location" xmi:id="_Y633KDATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:SortingStyle" xmi:id="_j4CnyS_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j4Cnyi_xEeyhHro4U1y-UQ"/> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6vUSTATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6vUSjATEeyfjuvTHgqjRw"/> </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j4CnxS_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4Cnxi_xEeyhHro4U1y-UQ" x="2538" y="318"/> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6vURTATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6vURjATEeyfjuvTHgqjRw" x="2538" y="318"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4DO0C_xEeyhHro4U1y-UQ" type="2003" element="_j3IBwC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4D14C_xEeyhHro4U1y-UQ" type="5007"/> - <children xmi:type="notation:Node" xmi:id="_j4Ec8C_xEeyhHro4U1y-UQ" type="7004"> - <styles xmi:type="notation:SortingStyle" xmi:id="_j4Ec8S_xEeyhHro4U1y-UQ"/> - <styles xmi:type="notation:FilteringStyle" xmi:id="_j4Ec8i_xEeyhHro4U1y-UQ"/> - </children> - <styles xmi:type="notation:ShapeStyle" xmi:id="_j4DO0S_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4DO0i_xEeyhHro4U1y-UQ" x="2340" y="528"/> + <children xmi:type="notation:Node" xmi:id="_Y6vUSzATEeyfjuvTHgqjRw" type="2003" element="_Y5QGgTATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y6v7UDATEeyfjuvTHgqjRw" type="5007"/> + <children xmi:type="notation:Node" xmi:id="_Y6v7UTATEeyfjuvTHgqjRw" type="7004"> + <styles xmi:type="notation:SortingStyle" xmi:id="_Y6v7UjATEeyfjuvTHgqjRw"/> + <styles xmi:type="notation:FilteringStyle" xmi:id="_Y6v7UzATEeyfjuvTHgqjRw"/> + </children> + <styles xmi:type="notation:ShapeStyle" xmi:id="_Y6vUTDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y6vUTTATEeyfjuvTHgqjRw" x="2400" y="492"/> </children> - <styles xmi:type="notation:DiagramStyle" xmi:id="_jfWa8i_xEeyhHro4U1y-UQ"/> - <edges xmi:type="notation:Edge" xmi:id="_j4TGci_xEeyhHro4U1y-UQ" type="4001" element="_j3fOIy_xEeyhHro4U1y-UQ" source="_j376Ey_xEeyhHro4U1y-UQ" target="_j3-WUC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4TtgC_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4TtgS_xEeyhHro4U1y-UQ" y="-10"/> - </children> - <children xmi:type="notation:Node" xmi:id="_j4Ttgi_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4Ttgy_xEeyhHro4U1y-UQ" y="10"/> - </children> - <children xmi:type="notation:Node" xmi:id="_j4TthC_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4TthS_xEeyhHro4U1y-UQ" y="10"/> - </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4TGcy_xEeyhHro4U1y-UQ" routing="Rectilinear"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4TGdC_xEeyhHro4U1y-UQ" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4TGdS_xEeyhHro4U1y-UQ" points="[0, -50, 588, 110]$[-588, -110, 0, 50]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4Tthi_xEeyhHro4U1y-UQ" id="(0.5,0.5)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4Tthy_xEeyhHro4U1y-UQ" id="(0.5,0.5)"/> + <styles xmi:type="notation:DiagramStyle" xmi:id="_YFIh8jATEeyfjuvTHgqjRw"/> + <edges xmi:type="notation:Edge" xmi:id="_Y66TYDATEeyfjuvTHgqjRw" type="4001" element="_Y59RIDATEeyfjuvTHgqjRw" source="_Y6mKUzATEeyfjuvTHgqjRw" target="_Y6p0ujATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y67hgDATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y67hgTATEeyfjuvTHgqjRw" y="-10"/> + </children> + <children xmi:type="notation:Node" xmi:id="_Y67hgjATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y67hgzATEeyfjuvTHgqjRw" y="10"/> + </children> + <children xmi:type="notation:Node" xmi:id="_Y68IkDATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y68IkTATEeyfjuvTHgqjRw" y="10"/> + </children> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y66TYTATEeyfjuvTHgqjRw" routing="Rectilinear"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y66TYjATEeyfjuvTHgqjRw" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y66TYzATEeyfjuvTHgqjRw" points="[0, -50, 0, 110]$[0, -110, 0, 50]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7EEYDATEeyfjuvTHgqjRw" id="(0.5,0.5)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7EEYTATEeyfjuvTHgqjRw" id="(0.5,0.5)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4UUki_xEeyhHro4U1y-UQ" type="4001" element="_j3gcQC_xEeyhHro4U1y-UQ" source="_j4BZpC_xEeyhHro4U1y-UQ" target="_j3-WUC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4UUli_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4UUly_xEeyhHro4U1y-UQ" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7EEYjATEeyfjuvTHgqjRw" type="4001" element="_Y5_GUzATEeyfjuvTHgqjRw" source="_Y6omlDATEeyfjuvTHgqjRw" target="_Y6rC0DATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7ErcDATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7ErcTATEeyfjuvTHgqjRw" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4UUmC_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4UUmS_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7ErcjATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7ErczATEeyfjuvTHgqjRw" y="10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4UUmi_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4UUmy_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7ErdDATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7ErdTATEeyfjuvTHgqjRw" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4UUky_xEeyhHro4U1y-UQ" routing="Rectilinear"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4UUlC_xEeyhHro4U1y-UQ" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4UUlS_xEeyhHro4U1y-UQ" points="[0, -50, 0, 110]$[0, -110, 0, 50]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4U7oC_xEeyhHro4U1y-UQ" id="(0.5,0.5)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4U7oS_xEeyhHro4U1y-UQ" id="(0.5,0.5)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7EEYzATEeyfjuvTHgqjRw" routing="Rectilinear"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7EEZDATEeyfjuvTHgqjRw" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7EEZTATEeyfjuvTHgqjRw" points="[0, -50, 588, 110]$[-588, -110, 0, 50]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7ErdjATEeyfjuvTHgqjRw" id="(0.5,0.5)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7ErdzATEeyfjuvTHgqjRw" id="(0.5,0.5)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4U7oi_xEeyhHro4U1y-UQ" type="4001" element="_j3gcRy_xEeyhHro4U1y-UQ" source="_j4CAty_xEeyhHro4U1y-UQ" target="_j32agC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4U7pi_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4U7py_xEeyhHro4U1y-UQ" x="72" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7EreDATEeyfjuvTHgqjRw" type="4001" element="_Y6AUczATEeyfjuvTHgqjRw" source="_Y6sQ8DATEeyfjuvTHgqjRw" target="_Y6p0ujATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7FSgDATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7FSgTATEeyfjuvTHgqjRw" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4U7qC_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4U7qS_xEeyhHro4U1y-UQ" x="123" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7FSgjATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7FSgzATEeyfjuvTHgqjRw" y="10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4U7qi_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4U7qy_xEeyhHro4U1y-UQ" x="21" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7FShDATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7FShTATEeyfjuvTHgqjRw" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4U7oy_xEeyhHro4U1y-UQ" routing="Rectilinear"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4U7pC_xEeyhHro4U1y-UQ" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4U7pS_xEeyhHro4U1y-UQ" points="[0, 0, 1296, 196]$[0, -167, 1296, 29]$[-1296, -167, 0, 29]$[-1296, -196, 0, 0]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4U7rC_xEeyhHro4U1y-UQ" id="(0.5084745762711864,0.0)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4U7rS_xEeyhHro4U1y-UQ" id="(0.5084745762711864,1.0)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7EreTATEeyfjuvTHgqjRw" routing="Rectilinear"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7ErejATEeyfjuvTHgqjRw" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7ErezATEeyfjuvTHgqjRw" points="[0, -50, -1325, 110]$[1325, -110, 0, 50]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7FShjATEeyfjuvTHgqjRw" id="(0.5,0.5)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7FShzATEeyfjuvTHgqjRw" id="(0.5,0.5)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4U7ri_xEeyhHro4U1y-UQ" type="4001" element="_j3hDWS_xEeyhHro4U1y-UQ" source="_j4CAty_xEeyhHro4U1y-UQ" target="_j35d0C_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4U7si_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4U7sy_xEeyhHro4U1y-UQ" x="5" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7F5kDATEeyfjuvTHgqjRw" type="4001" element="_Y6A7hjATEeyfjuvTHgqjRw" source="_Y6uGJDATEeyfjuvTHgqjRw" target="_Y6rC0DATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7F5lDATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7F5lTATEeyfjuvTHgqjRw" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4VisC_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4VisS_xEeyhHro4U1y-UQ" x="-3" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7F5ljATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7F5lzATEeyfjuvTHgqjRw" y="10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4Visi_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4Visy_xEeyhHro4U1y-UQ" x="-10"/> + <children xmi:type="notation:Node" xmi:id="_Y7F5mDATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7F5mTATEeyfjuvTHgqjRw" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4U7ry_xEeyhHro4U1y-UQ" routing="Rectilinear"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4U7sC_xEeyhHro4U1y-UQ" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4U7sS_xEeyhHro4U1y-UQ" points="[59, -12, -362, 444]$[481, -12, 60, 444]$[481, -407, 60, 49]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4WJwC_xEeyhHro4U1y-UQ" id="(0.5,0.5)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4WJwS_xEeyhHro4U1y-UQ" id="(0.5,0.5)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7F5kTATEeyfjuvTHgqjRw" routing="Rectilinear"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7F5kjATEeyfjuvTHgqjRw" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7F5kzATEeyfjuvTHgqjRw" points="[0, -50, 0, 110]$[0, -110, 0, 50]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7F5mjATEeyfjuvTHgqjRw" id="(0.5,0.5)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7F5mzATEeyfjuvTHgqjRw" id="(0.5,0.5)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4WJwi_xEeyhHro4U1y-UQ" type="4001" element="_j3hqZi_xEeyhHro4U1y-UQ" source="_j4CAty_xEeyhHro4U1y-UQ" target="_j4BZpC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4WJxi_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4WJxy_xEeyhHro4U1y-UQ" x="128" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7GgoDATEeyfjuvTHgqjRw" type="4001" element="_Y6BiljATEeyfjuvTHgqjRw" source="_Y6utNDATEeyfjuvTHgqjRw" target="_Y6gqwDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7GgpDATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7GgpTATEeyfjuvTHgqjRw" x="42" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4WJyC_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4WJyS_xEeyhHro4U1y-UQ" x="-15" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7GgpjATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7GgpzATEeyfjuvTHgqjRw" x="72" y="10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4WJyi_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4WJyy_xEeyhHro4U1y-UQ" x="19" y="-12"/> + <children xmi:type="notation:Node" xmi:id="_Y7GgqDATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7GgqTATEeyfjuvTHgqjRw" x="12" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4WJwy_xEeyhHro4U1y-UQ" routing="Rectilinear"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4WJxC_xEeyhHro4U1y-UQ" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4WJxS_xEeyhHro4U1y-UQ" points="[-59, -24, 343, 270]$[-239, -24, 163, 270]$[-239, -255, 163, 39]$[-301, -255, 101, 39]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4WJzC_xEeyhHro4U1y-UQ" id="(0.5,0.5)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4WJzS_xEeyhHro4U1y-UQ" id="(0.5,0.5)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7GgoTATEeyfjuvTHgqjRw" routing="Rectilinear"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7GgojATEeyfjuvTHgqjRw" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7GgozATEeyfjuvTHgqjRw" points="[0, 0, 1248, 184]$[0, -155, 1248, 29]$[-1248, -155, 0, 29]$[-1248, -184, 0, 0]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7HHsDATEeyfjuvTHgqjRw" id="(0.5084745762711864,0.0)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7HHsTATEeyfjuvTHgqjRw" id="(0.5084745762711864,1.0)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4WJzi_xEeyhHro4U1y-UQ" type="4001" element="_j3iRdi_xEeyhHro4U1y-UQ" source="_j4CAty_xEeyhHro4U1y-UQ" target="_j3-WUC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4Ww0C_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4Ww0S_xEeyhHro4U1y-UQ" x="-35" y="-12"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7HHsjATEeyfjuvTHgqjRw" type="4001" element="_Y6CwsTATEeyfjuvTHgqjRw" source="_Y6utNDATEeyfjuvTHgqjRw" target="_Y6ljRDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7HHtjATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7HHtzATEeyfjuvTHgqjRw" x="-52" y="-100"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4Ww0i_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4Ww0y_xEeyhHro4U1y-UQ" x="116" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7HHuDATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7HHuTATEeyfjuvTHgqjRw" x="39" y="10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4Ww1C_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4Ww1S_xEeyhHro4U1y-UQ" x="36" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7HHujATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7HHuzATEeyfjuvTHgqjRw" x="-24" y="-10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4WJzy_xEeyhHro4U1y-UQ" routing="Rectilinear"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4WJ0C_xEeyhHro4U1y-UQ" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4WJ0S_xEeyhHro4U1y-UQ" points="[-5, 0, 403, 358]$[-5, -312, 403, 46]$[-408, -312, 0, 46]$[-408, -358, 0, 0]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4Ww1i_xEeyhHro4U1y-UQ" id="(0.5084745762711864,0.0)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4Ww1y_xEeyhHro4U1y-UQ" id="(0.5084745762711864,1.0)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7HHszATEeyfjuvTHgqjRw" routing="Rectilinear"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7HHtDATEeyfjuvTHgqjRw" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7HHtTATEeyfjuvTHgqjRw" points="[59, -12, -410, 432]$[425, -12, -44, 432]$[425, -335, -44, 109]$[531, -335, 62, 109]$[531, -395, 62, 49]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7HuwDATEeyfjuvTHgqjRw" id="(0.5,0.5)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7HuwTATEeyfjuvTHgqjRw" id="(0.5,0.5)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4Ww2C_xEeyhHro4U1y-UQ" type="4001" element="_j3i4gC_xEeyhHro4U1y-UQ" source="_j4CAty_xEeyhHro4U1y-UQ" target="_j3-WUC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4Ww3C_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4Ww3S_xEeyhHro4U1y-UQ" x="55" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7HuwjATEeyfjuvTHgqjRw" type="4001" element="_Y6DXxjATEeyfjuvTHgqjRw" source="_Y6utNDATEeyfjuvTHgqjRw" target="_Y6uGJDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7HuxjATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7HuxzATEeyfjuvTHgqjRw" x="42" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4XX4C_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4XX4S_xEeyhHro4U1y-UQ" x="21" y="-2"/> + <children xmi:type="notation:Node" xmi:id="_Y7HuyDATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7HuyTATEeyfjuvTHgqjRw" x="-54" y="10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4XX4i_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4XX4y_xEeyhHro4U1y-UQ" x="16" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7IV0DATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7IV0TATEeyfjuvTHgqjRw" x="12" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4Ww2S_xEeyhHro4U1y-UQ" routing="Rectilinear"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4Ww2i_xEeyhHro4U1y-UQ" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4Ww2y_xEeyhHro4U1y-UQ" points="[-36, 0, 372, 358]$[-36, -120, 372, 238]$[-187, -120, 221, 238]$[-187, -298, 221, 60]$[-408, -298, 0, 60]$[-408, -358, 0, 0]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4XX5C_xEeyhHro4U1y-UQ" id="(0.5084745762711864,0.0)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4XX5S_xEeyhHro4U1y-UQ" id="(0.5084745762711864,1.0)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7HuwzATEeyfjuvTHgqjRw" routing="Rectilinear"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7HuxDATEeyfjuvTHgqjRw" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7HuxTATEeyfjuvTHgqjRw" points="[-59, -24, 295, 258]$[-135, -24, 219, 258]$[-135, -243, 219, 39]$[-253, -243, 101, 39]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7IV0jATEeyfjuvTHgqjRw" id="(0.5,0.5)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7IV0zATEeyfjuvTHgqjRw" id="(0.5,0.5)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4XX5i_xEeyhHro4U1y-UQ" type="4001" element="_j3i4hy_xEeyhHro4U1y-UQ" source="_j4CnxC_xEeyhHro4U1y-UQ" target="_j39INC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4X-8C_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4X-8S_xEeyhHro4U1y-UQ" x="15" y="-11"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7IV1DATEeyfjuvTHgqjRw" type="4001" element="_Y6D-1jATEeyfjuvTHgqjRw" source="_Y6utNDATEeyfjuvTHgqjRw" target="_Y6rC0DATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7IV2DATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7IV2TATEeyfjuvTHgqjRw" x="42" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4X-8i_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4X-8y_xEeyhHro4U1y-UQ" x="-9" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7IV2jATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7IV2zATEeyfjuvTHgqjRw" x="113" y="10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4X-9C_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4X-9S_xEeyhHro4U1y-UQ" x="8" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7IV3DATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7IV3TATEeyfjuvTHgqjRw" x="13" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4XX5y_xEeyhHro4U1y-UQ" routing="Rectilinear"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4XX6C_xEeyhHro4U1y-UQ" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4XX6S_xEeyhHro4U1y-UQ" points="[-1, -49, -177, 107]$[-1, -78, -177, 78]$[121, -78, -55, 78]$[121, -107, -55, 49]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4YmAC_xEeyhHro4U1y-UQ" id="(0.5,0.5)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4YmAS_xEeyhHro4U1y-UQ" id="(0.5,0.5)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7IV1TATEeyfjuvTHgqjRw" routing="Rectilinear"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7IV1jATEeyfjuvTHgqjRw" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7IV1zATEeyfjuvTHgqjRw" points="[-5, 0, 355, 346]$[-5, -286, 355, 60]$[-360, -286, 0, 60]$[-360, -346, 0, 0]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7I84DATEeyfjuvTHgqjRw" id="(0.5084745762711864,0.0)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7I84TATEeyfjuvTHgqjRw" id="(0.5084745762711864,1.0)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4YmAi_xEeyhHro4U1y-UQ" type="4001" element="_j3jfli_xEeyhHro4U1y-UQ" source="_j4DO0C_xEeyhHro4U1y-UQ" target="_j4CAty_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4YmBi_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4YmBy_xEeyhHro4U1y-UQ" x="-51" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7I84jATEeyfjuvTHgqjRw" type="4001" element="_Y6El5jATEeyfjuvTHgqjRw" source="_Y6utNDATEeyfjuvTHgqjRw" target="_Y6rC0DATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7I85jATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7I85zATEeyfjuvTHgqjRw" x="43" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4YmCC_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4YmCS_xEeyhHro4U1y-UQ" x="18" y="-45"/> + <children xmi:type="notation:Node" xmi:id="_Y7I86DATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7I86TATEeyfjuvTHgqjRw" x="92" y="-29"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4YmCi_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4YmCy_xEeyhHro4U1y-UQ" x="6" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7I86jATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7I86zATEeyfjuvTHgqjRw" x="12" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4YmAy_xEeyhHro4U1y-UQ" routing="Rectilinear"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4YmBC_xEeyhHro4U1y-UQ" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4YmBS_xEeyhHro4U1y-UQ" points="[0, 0, 396, -26]$[0, -80, 396, -106]$[-396, -80, 0, -106]$[-396, -72, 0, -98]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4YmDC_xEeyhHro4U1y-UQ" id="(0.5084745762711864,0.0)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4YmDS_xEeyhHro4U1y-UQ" id="(0.5084745762711864,1.0)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7I84zATEeyfjuvTHgqjRw" routing="Rectilinear"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7I85DATEeyfjuvTHgqjRw" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7I85TATEeyfjuvTHgqjRw" points="[0, 0, 360, 346]$[0, -187, 360, 159]$[-139, -187, 221, 159]$[-139, -286, 221, 60]$[-360, -286, 0, 60]$[-360, -346, 0, 0]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7Jj8DATEeyfjuvTHgqjRw" id="(0.5084745762711864,0.0)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7Jj8TATEeyfjuvTHgqjRw" id="(0.5084745762711864,1.0)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4YmDi_xEeyhHro4U1y-UQ" type="4001" element="_j3kGpi_xEeyhHro4U1y-UQ" source="_j4DO0C_xEeyhHro4U1y-UQ" target="_j4CnxC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4ZNEC_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4ZNES_xEeyhHro4U1y-UQ" x="114" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7Jj8jATEeyfjuvTHgqjRw" type="4001" element="_Y6F0ADATEeyfjuvTHgqjRw" source="_Y6vURDATEeyfjuvTHgqjRw" target="_Y6p0ujATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7Jj9jATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7Jj9zATEeyfjuvTHgqjRw" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4ZNEi_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4ZNEy_xEeyhHro4U1y-UQ" x="14" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7Jj-DATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7Jj-TATEeyfjuvTHgqjRw" y="10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4ZNFC_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4ZNFS_xEeyhHro4U1y-UQ" x="25" y="-19"/> + <children xmi:type="notation:Node" xmi:id="_Y7Jj-jATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7Jj-zATEeyfjuvTHgqjRw" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4YmDy_xEeyhHro4U1y-UQ" routing="Rectilinear"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4YmEC_xEeyhHro4U1y-UQ" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4YmES_xEeyhHro4U1y-UQ" points="[0, 0, -198, 112]$[0, -80, -198, 32]$[198, -80, 0, 32]$[198, -112, 0, 0]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4ZNFi_xEeyhHro4U1y-UQ" id="(0.5084745762711864,0.0)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4ZNFy_xEeyhHro4U1y-UQ" id="(0.5084745762711864,1.0)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7Jj8zATEeyfjuvTHgqjRw" routing="Rectilinear"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7Jj9DATEeyfjuvTHgqjRw" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7Jj9TATEeyfjuvTHgqjRw" points="[0, -50, -180, 110]$[180, -110, 0, 50]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7Jj_DATEeyfjuvTHgqjRw" id="(0.5,0.5)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7Jj_TATEeyfjuvTHgqjRw" id="(0.5,0.5)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4ZNGC_xEeyhHro4U1y-UQ" type="4001" element="_j3ktti_xEeyhHro4U1y-UQ" source="_j4DO0C_xEeyhHro4U1y-UQ" target="_j35d1y_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4ZNHC_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4ZNHS_xEeyhHro4U1y-UQ" x="-128" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7KLADATEeyfjuvTHgqjRw" type="4001" element="_Y6GbEDATEeyfjuvTHgqjRw" source="_Y6vUSzATEeyfjuvTHgqjRw" target="_Y6utNDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7KLBDATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7KLBTATEeyfjuvTHgqjRw" x="-81" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4ZNHi_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4ZNHy_xEeyhHro4U1y-UQ" x="-98" y="3"/> + <children xmi:type="notation:Node" xmi:id="_Y7KLBjATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7KLBzATEeyfjuvTHgqjRw" x="52" y="-23"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4ZNIC_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4ZNIS_xEeyhHro4U1y-UQ" x="-16" y="-332"/> + <children xmi:type="notation:Node" xmi:id="_Y7KLCDATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7KLCTATEeyfjuvTHgqjRw" x="-103" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4ZNGS_xEeyhHro4U1y-UQ" routing="Rectilinear"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4ZNGi_xEeyhHro4U1y-UQ" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4ZNGy_xEeyhHro4U1y-UQ" points="[0, 0, -678, 160]$[0, -24, -678, 136]$[702, -24, 24, 136]$[702, -160, 24, 0]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4ZNIi_xEeyhHro4U1y-UQ" id="(0.5084745762711864,0.0)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4ZNIy_xEeyhHro4U1y-UQ" id="(0.5084745762711864,1.0)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7KLATATEeyfjuvTHgqjRw" routing="Rectilinear"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7KLAjATEeyfjuvTHgqjRw" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7KLAzATEeyfjuvTHgqjRw" points="[-30, 0, 474, -50]$[-30, -150, 474, -200]$[-504, -150, 0, -200]$[-504, -48, 0, -98]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7KLCjATEeyfjuvTHgqjRw" id="(0.5084745762711864,0.0)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7KLCzATEeyfjuvTHgqjRw" id="(0.5084745762711864,1.0)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4Z0IC_xEeyhHro4U1y-UQ" type="4001" element="_j3l70C_xEeyhHro4U1y-UQ" source="_j33ooy_xEeyhHro4U1y-UQ" target="_j32agC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4Z0JC_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4Z0JS_xEeyhHro4U1y-UQ" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7KLDDATEeyfjuvTHgqjRw" type="4001" element="_Y6HCJjATEeyfjuvTHgqjRw" source="_Y6vUSzATEeyfjuvTHgqjRw" target="_Y6vURDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7KyEDATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7KyETATEeyfjuvTHgqjRw" x="15" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4Z0Ji_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4Z0Jy_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7KyEjATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7KyEzATEeyfjuvTHgqjRw" x="44" y="7"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4Z0KC_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4Z0KS_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7KyFDATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7KyFTATEeyfjuvTHgqjRw" x="27" y="-2"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4Z0IS_xEeyhHro4U1y-UQ" routing="Tree"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4Z0Ii_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4Z0Iy_xEeyhHro4U1y-UQ" points="[-1, 0, 106, 60]$[-108, -60, -1, 0]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4Z0Ki_xEeyhHro4U1y-UQ" id="(0.5053763440860215,0.0)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4Z0Ky_xEeyhHro4U1y-UQ" id="(0.5084745762711864,1.0)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7KLDTATEeyfjuvTHgqjRw" routing="Rectilinear"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7KLDjATEeyfjuvTHgqjRw" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7KLDzATEeyfjuvTHgqjRw" points="[36, 0, -102, 76]$[36, -66, -102, 10]$[138, -66, 0, 10]$[138, -76, 0, 0]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7KyFjATEeyfjuvTHgqjRw" id="(0.5084745762711864,0.0)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7KyFzATEeyfjuvTHgqjRw" id="(0.5084745762711864,1.0)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4Z0LC_xEeyhHro4U1y-UQ" type="4001" element="_j3mi5i_xEeyhHro4U1y-UQ" source="_j34Psy_xEeyhHro4U1y-UQ" target="_j32agC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4Z0MC_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4Z0MS_xEeyhHro4U1y-UQ" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7KyGDATEeyfjuvTHgqjRw" type="4001" element="_Y6HpNjATEeyfjuvTHgqjRw" source="_Y6vUSzATEeyfjuvTHgqjRw" target="_Y6mKUzATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7KyHDATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7KyHTATEeyfjuvTHgqjRw" x="79" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4Z0Mi_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4Z0My_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7KyHjATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7KyHzATEeyfjuvTHgqjRw" x="-7" y="23"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4abMC_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4abMS_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7KyIDATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7KyITATEeyfjuvTHgqjRw" x="27" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4Z0LS_xEeyhHro4U1y-UQ" routing="Tree"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4Z0Li_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4Z0Ly_xEeyhHro4U1y-UQ" points="[-1, 0, -108, 60]$[106, -60, -1, 0]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4abMi_xEeyhHro4U1y-UQ" id="(0.5084745762711864,0.0)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4abMy_xEeyhHro4U1y-UQ" id="(0.5084745762711864,1.0)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7KyGTATEeyfjuvTHgqjRw" routing="Rectilinear"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7KyGjATEeyfjuvTHgqjRw" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7KyGzATEeyfjuvTHgqjRw" points="[0, 0, -318, 76]$[0, -48, -318, 28]$[318, -48, 0, 28]$[318, -76, 0, 0]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7LZIDATEeyfjuvTHgqjRw" id="(0.5084745762711864,0.0)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7LZITATEeyfjuvTHgqjRw" id="(0.5084745762711864,1.0)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4bCQC_xEeyhHro4U1y-UQ" type="4001" element="_j3mi7S_xEeyhHro4U1y-UQ" source="_j34Pui_xEeyhHro4U1y-UQ" target="_j3-WUC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4cQYC_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4cQYS_xEeyhHro4U1y-UQ" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7LZIjATEeyfjuvTHgqjRw" type="4001" element="_Y6JeYDATEeyfjuvTHgqjRw" source="_Y6juEDATEeyfjuvTHgqjRw" target="_Y6gqwDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7LZJjATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7LZJzATEeyfjuvTHgqjRw" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4c3cC_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4c3cS_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7LZKDATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7LZKTATEeyfjuvTHgqjRw" y="10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4c3ci_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4c3cy_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7LZKjATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7LZKzATEeyfjuvTHgqjRw" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4bCQS_xEeyhHro4U1y-UQ" routing="Tree"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4bCQi_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4bCQy_xEeyhHro4U1y-UQ" points="[-1, 0, -445, 60]$[443, -60, -1, 0]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4degC_xEeyhHro4U1y-UQ" id="(0.5071428571428571,0.0)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4degS_xEeyhHro4U1y-UQ" id="(0.5084745762711864,1.0)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7LZIzATEeyfjuvTHgqjRw" routing="Tree"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7LZJDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7LZJTATEeyfjuvTHgqjRw" points="[-1, 0, 106, 60]$[-108, -60, -1, 0]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7MAMDATEeyfjuvTHgqjRw" id="(0.5053763440860215,0.0)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7MAMTATEeyfjuvTHgqjRw" id="(0.5084745762711864,1.0)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4degi_xEeyhHro4U1y-UQ" type="4001" element="_j3nJ9i_xEeyhHro4U1y-UQ" source="_j342xC_xEeyhHro4U1y-UQ" target="_j3-WUC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4dehi_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4dehy_xEeyhHro4U1y-UQ" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7MAMjATEeyfjuvTHgqjRw" type="4001" element="_Y6LTkDATEeyfjuvTHgqjRw" source="_Y6kVIDATEeyfjuvTHgqjRw" target="_Y6gqwDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7MANjATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7MANzATEeyfjuvTHgqjRw" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4deiC_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4deiS_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7MAODATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7MAOTATEeyfjuvTHgqjRw" y="10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4deii_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4deiy_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7MAOjATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7MAOzATEeyfjuvTHgqjRw" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4degy_xEeyhHro4U1y-UQ" routing="Tree"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4dehC_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4dehS_xEeyhHro4U1y-UQ" points="[-1, 0, -254, 60]$[252, -60, -1, 0]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4eFkC_xEeyhHro4U1y-UQ" id="(0.5084745762711864,0.0)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4eFkS_xEeyhHro4U1y-UQ" id="(0.5084745762711864,1.0)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7MAMzATEeyfjuvTHgqjRw" routing="Tree"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7MANDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7MANTATEeyfjuvTHgqjRw" points="[-1, 0, -108, 60]$[106, -60, -1, 0]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7MAPDATEeyfjuvTHgqjRw" id="(0.5084745762711864,0.0)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7MAPTATEeyfjuvTHgqjRw" id="(0.5084745762711864,1.0)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4eFki_xEeyhHro4U1y-UQ" type="4001" element="_j3nxAC_xEeyhHro4U1y-UQ" source="_j36r8C_xEeyhHro4U1y-UQ" target="_j35d1y_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4eFli_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4eFly_xEeyhHro4U1y-UQ" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7MnQDATEeyfjuvTHgqjRw" type="4001" element="_Y6L6pjATEeyfjuvTHgqjRw" source="_Y6k8MDATEeyfjuvTHgqjRw" target="_Y6rC0DATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7NOUDATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7NOUTATEeyfjuvTHgqjRw" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4eFmC_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4eFmS_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7NOUjATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7NOUzATEeyfjuvTHgqjRw" y="10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4eFmi_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4eFmy_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7NOVDATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7NOVTATEeyfjuvTHgqjRw" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4eFky_xEeyhHro4U1y-UQ" routing="Tree"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4eFlC_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4eFlS_xEeyhHro4U1y-UQ" points="[-1, 0, -1, 60]$[-1, -60, -1, 0]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4eFnC_xEeyhHro4U1y-UQ" id="(0.5064102564102564,0.0)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4eFnS_xEeyhHro4U1y-UQ" id="(0.5084745762711864,1.0)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7MnQTATEeyfjuvTHgqjRw" routing="Tree"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7MnQjATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7MnQzATEeyfjuvTHgqjRw" points="[-1, 0, -702, 60]$[700, -60, -1, 0]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7N1YDATEeyfjuvTHgqjRw" id="(0.5071428571428571,0.0)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7N1YTATEeyfjuvTHgqjRw" id="(0.5084745762711864,1.0)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4esoC_xEeyhHro4U1y-UQ" type="4001" element="_j3nxBy_xEeyhHro4U1y-UQ" source="_j36r9y_xEeyhHro4U1y-UQ" target="_j35d1y_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4espC_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4espS_xEeyhHro4U1y-UQ" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7N1YjATEeyfjuvTHgqjRw" type="4001" element="_Y6MhszATEeyfjuvTHgqjRw" source="_Y6k8NzATEeyfjuvTHgqjRw" target="_Y6rC0DATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7N1ZjATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7N1ZzATEeyfjuvTHgqjRw" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4espi_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4espy_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7N1aDATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7N1aTATEeyfjuvTHgqjRw" y="10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4esqC_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4esqS_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7N1ajATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7N1azATEeyfjuvTHgqjRw" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4esoS_xEeyhHro4U1y-UQ" routing="Tree"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4esoi_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4esoy_xEeyhHro4U1y-UQ" points="[-1, 0, 245, 60]$[-247, -60, -1, 0]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4esqi_xEeyhHro4U1y-UQ" id="(0.5023474178403756,0.0)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4esqy_xEeyhHro4U1y-UQ" id="(0.5084745762711864,1.0)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7N1YzATEeyfjuvTHgqjRw" routing="Tree"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7N1ZDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7N1ZTATEeyfjuvTHgqjRw" points="[-1, 0, -254, 60]$[252, -60, -1, 0]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7OccDATEeyfjuvTHgqjRw" id="(0.5084745762711864,0.0)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7OccTATEeyfjuvTHgqjRw" id="(0.5084745762711864,1.0)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4esrC_xEeyhHro4U1y-UQ" type="4001" element="_j3oYEC_xEeyhHro4U1y-UQ" source="_j37TBC_xEeyhHro4U1y-UQ" target="_j3-WUC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4essC_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4essS_xEeyhHro4U1y-UQ" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7OccjATEeyfjuvTHgqjRw" type="4001" element="_Y6NIwDATEeyfjuvTHgqjRw" source="_Y6nYcDATEeyfjuvTHgqjRw" target="_Y6mKUzATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7OcdjATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7OcdzATEeyfjuvTHgqjRw" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4fTsC_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4fTsS_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7OceDATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7OceTATEeyfjuvTHgqjRw" y="10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4fTsi_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4fTsy_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7OcejATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7OcezATEeyfjuvTHgqjRw" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4esrS_xEeyhHro4U1y-UQ" routing="Tree"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4esri_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4esry_xEeyhHro4U1y-UQ" points="[-1, 0, -675, 60]$[673, -60, -1, 0]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4fTtC_xEeyhHro4U1y-UQ" id="(0.5025641025641026,0.0)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4fTtS_xEeyhHro4U1y-UQ" id="(0.5084745762711864,1.0)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7OcczATEeyfjuvTHgqjRw" routing="Tree"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7OcdDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7OcdTATEeyfjuvTHgqjRw" points="[-1, 0, 180, 60]$[-182, -60, -1, 0]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7OcfDATEeyfjuvTHgqjRw" id="(0.5083333333333333,0.0)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7OcfTATEeyfjuvTHgqjRw" id="(0.5084745762711864,1.0)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4fTti_xEeyhHro4U1y-UQ" type="4001" element="_j3oYFy_xEeyhHro4U1y-UQ" source="_j376Ey_xEeyhHro4U1y-UQ" target="_j35d0C_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4fTui_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4fTuy_xEeyhHro4U1y-UQ" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7OcfjATEeyfjuvTHgqjRw" type="4001" element="_Y6Nv0DATEeyfjuvTHgqjRw" source="_Y6nYdzATEeyfjuvTHgqjRw" target="_Y6mKUzATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7OcgjATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7OcgzATEeyfjuvTHgqjRw" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4fTvC_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4fTvS_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7PDgDATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7PDgTATEeyfjuvTHgqjRw" y="10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4f6wC_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4f6wS_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7PDgjATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7PDgzATEeyfjuvTHgqjRw" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4fTty_xEeyhHro4U1y-UQ" routing="Tree"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4fTuC_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4fTuS_xEeyhHro4U1y-UQ" points="[-1, 0, -238, 60]$[236, -60, -1, 0]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4f6wi_xEeyhHro4U1y-UQ" id="(0.5066666666666667,0.0)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4f6wy_xEeyhHro4U1y-UQ" id="(0.5024390243902439,1.0)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7OcfzATEeyfjuvTHgqjRw" routing="Tree"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7OcgDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7OcgTATEeyfjuvTHgqjRw" points="[-1, 0, -1, 60]$[-1, -60, -1, 0]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7PDhDATEeyfjuvTHgqjRw" id="(0.5084745762711864,0.0)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7PDhTATEeyfjuvTHgqjRw" id="(0.5084745762711864,1.0)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4f6xC_xEeyhHro4U1y-UQ" type="4001" element="_j3o_IC_xEeyhHro4U1y-UQ" source="_j376Gi_xEeyhHro4U1y-UQ" target="_j35d0C_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4f6yC_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4f6yS_xEeyhHro4U1y-UQ" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7PDhjATEeyfjuvTHgqjRw" type="4001" element="_Y6Nv1zATEeyfjuvTHgqjRw" source="_Y6n_hDATEeyfjuvTHgqjRw" target="_Y6rC0DATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7PDijATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7PDizATEeyfjuvTHgqjRw" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4f6yi_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4f6yy_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7PDjDATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7PDjTATEeyfjuvTHgqjRw" y="10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4f6zC_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4f6zS_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7PDjjATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7PDjzATEeyfjuvTHgqjRw" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4f6xS_xEeyhHro4U1y-UQ" routing="Tree"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4f6xi_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4f6xy_xEeyhHro4U1y-UQ" points="[-1, 0, -42, 60]$[40, -60, -1, 0]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4f6zi_xEeyhHro4U1y-UQ" id="(0.5084745762711864,0.0)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4f6zy_xEeyhHro4U1y-UQ" id="(0.5024390243902439,1.0)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7PDhzATEeyfjuvTHgqjRw" routing="Tree"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7PDiDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7PDiTATEeyfjuvTHgqjRw" points="[-1, 0, -473, 60]$[471, -60, -1, 0]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7PqkDATEeyfjuvTHgqjRw" id="(0.5025641025641026,0.0)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7PqkTATEeyfjuvTHgqjRw" id="(0.5084745762711864,1.0)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4f60C_xEeyhHro4U1y-UQ" type="4001" element="_j3o_Jy_xEeyhHro4U1y-UQ" source="_j3_kdC_xEeyhHro4U1y-UQ" target="_j3-WUC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4f61C_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4f61S_xEeyhHro4U1y-UQ" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7PqkjATEeyfjuvTHgqjRw" type="4001" element="_Y6OW5jATEeyfjuvTHgqjRw" source="_Y6omlDATEeyfjuvTHgqjRw" target="_Y6ljRDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7PqljATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7PqlzATEeyfjuvTHgqjRw" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4f61i_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4f61y_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7PqmDATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7PqmTATEeyfjuvTHgqjRw" y="10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4f62C_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4f62S_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7PqmjATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7PqmzATEeyfjuvTHgqjRw" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4f60S_xEeyhHro4U1y-UQ" routing="Tree"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4f60i_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4f60y_xEeyhHro4U1y-UQ" points="[-1, 0, -149, 220]$[0, -160, -148, 60]$[147, -220, -1, 0]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4gh0C_xEeyhHro4U1y-UQ" id="(0.5084745762711864,0.0)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4gh0S_xEeyhHro4U1y-UQ" id="(0.5084745762711864,1.0)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7PqkzATEeyfjuvTHgqjRw" routing="Tree"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7PqlDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7PqlTATEeyfjuvTHgqjRw" points="[-1, 0, -238, 60]$[236, -60, -1, 0]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7PqnDATEeyfjuvTHgqjRw" id="(0.5066666666666667,0.0)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7PqnTATEeyfjuvTHgqjRw" id="(0.5024390243902439,1.0)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4gh0i_xEeyhHro4U1y-UQ" type="4001" element="_j3pmMy_xEeyhHro4U1y-UQ" source="_j4ALhC_xEeyhHro4U1y-UQ" target="_j3_kdC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4gh1i_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4gh1y_xEeyhHro4U1y-UQ" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7PqnjATEeyfjuvTHgqjRw" type="4001" element="_Y6O99jATEeyfjuvTHgqjRw" source="_Y6pNpDATEeyfjuvTHgqjRw" target="_Y6ljRDATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7PqojATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7PqozATEeyfjuvTHgqjRw" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4gh2C_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4gh2S_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7QRoDATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7QRoTATEeyfjuvTHgqjRw" y="10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4hv8C_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4hv8S_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7QRojATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7QRozATEeyfjuvTHgqjRw" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4gh0y_xEeyhHro4U1y-UQ" routing="Tree"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4gh1C_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4gh1S_xEeyhHro4U1y-UQ" points="[-1, 0, -181, 60]$[179, -60, -1, 0]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4hv8i_xEeyhHro4U1y-UQ" id="(0.5084745762711864,0.0)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4hv8y_xEeyhHro4U1y-UQ" id="(0.5084745762711864,1.0)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7PqnzATEeyfjuvTHgqjRw" routing="Tree"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7PqoDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7PqoTATEeyfjuvTHgqjRw" points="[-1, 0, -42, 60]$[40, -60, -1, 0]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7QRpDATEeyfjuvTHgqjRw" id="(0.5084745762711864,0.0)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7QRpTATEeyfjuvTHgqjRw" id="(0.5024390243902439,1.0)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4hv9C_xEeyhHro4U1y-UQ" type="4001" element="_j3pmOi_xEeyhHro4U1y-UQ" source="_j4Ayky_xEeyhHro4U1y-UQ" target="_j3_kdC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4hv-C_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4hv-S_xEeyhHro4U1y-UQ" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7QRpjATEeyfjuvTHgqjRw" type="4001" element="_Y6PlAzATEeyfjuvTHgqjRw" source="_Y6sQ8DATEeyfjuvTHgqjRw" target="_Y6rC0DATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7QRqjATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7QRqzATEeyfjuvTHgqjRw" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4hv-i_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4hv-y_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7QRrDATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7QRrTATEeyfjuvTHgqjRw" y="10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4hv_C_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4hv_S_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7QRrjATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7QRrzATEeyfjuvTHgqjRw" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4hv9S_xEeyhHro4U1y-UQ" routing="Tree"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4hv9i_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4hv9y_xEeyhHro4U1y-UQ" points="[-1, 0, 179, 60]$[-181, -60, -1, 0]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4hv_i_xEeyhHro4U1y-UQ" id="(0.5084745762711864,0.0)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4hv_y_xEeyhHro4U1y-UQ" id="(0.5084745762711864,1.0)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7QRpzATEeyfjuvTHgqjRw" routing="Tree"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7QRqDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7QRqTATEeyfjuvTHgqjRw" points="[-1, 0, -149, 220]$[0, -160, -148, 60]$[147, -220, -1, 0]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7Q4sDATEeyfjuvTHgqjRw" id="(0.5084745762711864,0.0)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7Q4sTATEeyfjuvTHgqjRw" id="(0.5084745762711864,1.0)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_j4hwAC_xEeyhHro4U1y-UQ" type="4001" element="_j3qNRi_xEeyhHro4U1y-UQ" source="_j4Aymi_xEeyhHro4U1y-UQ" target="_j3_kdC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_j4hwBC_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4hwBS_xEeyhHro4U1y-UQ" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7Q4sjATEeyfjuvTHgqjRw" type="4001" element="_Y6QMEDATEeyfjuvTHgqjRw" source="_Y6s4ADATEeyfjuvTHgqjRw" target="_Y6sQ8DATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7Q4tjATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7Q4tzATEeyfjuvTHgqjRw" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4iXAC_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4iXAS_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7Q4uDATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7Q4uTATEeyfjuvTHgqjRw" y="10"/> </children> - <children xmi:type="notation:Node" xmi:id="_j4iXAi_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j4iXAy_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7Q4ujATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7Q4uzATEeyfjuvTHgqjRw" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_j4hwAS_xEeyhHro4U1y-UQ" routing="Tree"/> - <styles xmi:type="notation:FontStyle" xmi:id="_j4hwAi_xEeyhHro4U1y-UQ" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_j4hwAy_xEeyhHro4U1y-UQ" points="[-1, 0, -1, 60]$[-1, -60, -1, 0]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4iXBC_xEeyhHro4U1y-UQ" id="(0.5084745762711864,0.0)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_j4iXBS_xEeyhHro4U1y-UQ" id="(0.5084745762711864,1.0)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7Q4szATEeyfjuvTHgqjRw" routing="Tree"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7Q4tDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7Q4tTATEeyfjuvTHgqjRw" points="[-1, 0, 179, 60]$[-181, -60, -1, 0]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7Q4vDATEeyfjuvTHgqjRw" id="(0.5084745762711864,0.0)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7Q4vTATEeyfjuvTHgqjRw" id="(0.5084745762711864,1.0)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_yG9kkC_xEeyhHro4U1y-UQ" type="4001" element="_yGylji_xEeyhHro4U1y-UQ" source="_j35d1y_xEeyhHro4U1y-UQ" target="_j39INC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_yG9klC_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_yG9klS_xEeyhHro4U1y-UQ" y="-10"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7Q4vjATEeyfjuvTHgqjRw" type="4001" element="_Y6QzIDATEeyfjuvTHgqjRw" source="_Y6tfEDATEeyfjuvTHgqjRw" target="_Y6sQ8DATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7RfwDATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7RfwTATEeyfjuvTHgqjRw" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_yG-LoC_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_yG-LoS_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7RfwjATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7RfwzATEeyfjuvTHgqjRw" y="10"/> </children> - <children xmi:type="notation:Node" xmi:id="_yG-Loi_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_yG-Loy_xEeyhHro4U1y-UQ" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7RfxDATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7RfxTATEeyfjuvTHgqjRw" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_yG9kkS_xEeyhHro4U1y-UQ" routing="Rectilinear"/> - <styles xmi:type="notation:FontStyle" xmi:id="_yG9kki_xEeyhHro4U1y-UQ" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_yG9kky_xEeyhHro4U1y-UQ" points="[0, 0, 153, 114]$[-77, 0, 76, 114]$[-77, -114, 76, 0]$[-153, -114, 0, 0]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_yG-LpC_xEeyhHro4U1y-UQ" id="(0.0,0.7346938775510204)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_yG-LpS_xEeyhHro4U1y-UQ" id="(1.0,0.673469387755102)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7Q4vzATEeyfjuvTHgqjRw" routing="Tree"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7Q4wDATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7Q4wTATEeyfjuvTHgqjRw" points="[-1, 0, -181, 60]$[179, -60, -1, 0]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7RfxjATEeyfjuvTHgqjRw" id="(0.5084745762711864,0.0)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7RfxzATEeyfjuvTHgqjRw" id="(0.5084745762711864,1.0)"/> </edges> - <edges xmi:type="notation:Edge" xmi:id="_1GIrcC_xEeyhHro4U1y-UQ" type="4001" element="_1F9sXC_xEeyhHro4U1y-UQ" source="_j3_kdC_xEeyhHro4U1y-UQ" target="_j39INC_xEeyhHro4U1y-UQ"> - <children xmi:type="notation:Node" xmi:id="_1GIrdC_xEeyhHro4U1y-UQ" type="6001"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_1GIrdS_xEeyhHro4U1y-UQ" x="-51" y="-577"/> + <edges xmi:type="notation:Edge" xmi:id="_Y7RfyDATEeyfjuvTHgqjRw" type="4001" element="_Y6RaMDATEeyfjuvTHgqjRw" source="_Y6tfFzATEeyfjuvTHgqjRw" target="_Y6sQ8DATEeyfjuvTHgqjRw"> + <children xmi:type="notation:Node" xmi:id="_Y7SG0DATEeyfjuvTHgqjRw" type="6001"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7SG0TATEeyfjuvTHgqjRw" y="-10"/> </children> - <children xmi:type="notation:Node" xmi:id="_1GJ5kC_xEeyhHro4U1y-UQ" type="6002"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_1GJ5kS_xEeyhHro4U1y-UQ" x="-5" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7SG0jATEeyfjuvTHgqjRw" type="6002"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7SG0zATEeyfjuvTHgqjRw" y="10"/> </children> - <children xmi:type="notation:Node" xmi:id="_1GJ5ki_xEeyhHro4U1y-UQ" type="6003"> - <layoutConstraint xmi:type="notation:Bounds" xmi:id="_1GJ5ky_xEeyhHro4U1y-UQ" x="-101" y="10"/> + <children xmi:type="notation:Node" xmi:id="_Y7SG1DATEeyfjuvTHgqjRw" type="6003"> + <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Y7SG1TATEeyfjuvTHgqjRw" y="10"/> </children> - <styles xmi:type="notation:ConnectorStyle" xmi:id="_1GIrcS_xEeyhHro4U1y-UQ" routing="Rectilinear"/> - <styles xmi:type="notation:FontStyle" xmi:id="_1GIrci_xEeyhHro4U1y-UQ" fontColor="7490599" fontName="Segoe UI" fontHeight="8"/> - <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_1GIrcy_xEeyhHro4U1y-UQ" points="[0, -6, -1172, 150]$[644, -6, -528, 150]$[644, -84, -528, 72]$[1231, -84, 59, 72]$[1231, -130, 59, 26]"/> - <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_1GJ5lC_xEeyhHro4U1y-UQ" id="(1.0,0.7346938775510204)"/> - <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_1GJ5lS_xEeyhHro4U1y-UQ" id="(0.0,0.7346938775510204)"/> + <styles xmi:type="notation:ConnectorStyle" xmi:id="_Y7RfyTATEeyfjuvTHgqjRw" routing="Tree"/> + <styles xmi:type="notation:FontStyle" xmi:id="_Y7RfyjATEeyfjuvTHgqjRw" fontName="Segoe UI" fontHeight="8"/> + <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Y7RfyzATEeyfjuvTHgqjRw" points="[-1, 0, -1, 60]$[-1, -60, -1, 0]"/> + <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7SG1jATEeyfjuvTHgqjRw" id="(0.5084745762711864,0.0)"/> + <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Y7SG1zATEeyfjuvTHgqjRw" id="(0.5084745762711864,1.0)"/> </edges> </data> </ownedAnnotationEntries> - <ownedAnnotationEntries xmi:type="description:AnnotationEntry" uid="_jfb6gC_xEeyhHro4U1y-UQ" source="DANNOTATION_CUSTOMIZATION_KEY"> - <data xmi:type="diagram:ComputedStyleDescriptionRegistry" uid="_jfb6gS_xEeyhHro4U1y-UQ"> - <computedStyleDescriptions xmi:type="style:BundledImageDescription" xmi:id="_j3TA4C_xEeyhHro4U1y-UQ" labelExpression="service:render" labelAlignment="LEFT" tooltipExpression="service:renderTooltip" sizeComputationExpression="1"> + <ownedAnnotationEntries xmi:type="description:AnnotationEntry" uid="_YFtJsDATEeyfjuvTHgqjRw" source="DANNOTATION_CUSTOMIZATION_KEY"> + <data xmi:type="diagram:ComputedStyleDescriptionRegistry" uid="_YFtJsTATEeyfjuvTHgqjRw"> + <computedStyleDescriptions xmi:type="style:BundledImageDescription" xmi:id="_Y5jogDATEeyfjuvTHgqjRw" labelExpression="service:render" labelAlignment="LEFT" tooltipExpression="service:renderTooltip" sizeComputationExpression="1"> <borderColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='black']"/> <labelFormat>bold</labelFormat> <labelColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='black']"/> <color xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='black']"/> </computedStyleDescriptions> - <computedStyleDescriptions xmi:type="style:EdgeStyleDescription" xmi:id="_j3enEC_xEeyhHro4U1y-UQ" sourceArrow="FillDiamond" routingStyle="manhattan"> + <computedStyleDescriptions xmi:type="style:EdgeStyleDescription" xmi:id="_Y5-fQDATEeyfjuvTHgqjRw" routingStyle="manhattan"> <strokeColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='black']"/> - <centerLabelStyleDescription xmi:type="style:CenterLabelStyleDescription" xmi:id="_j3enES_xEeyhHro4U1y-UQ" showIcon="false" labelExpression="service:render"> + <centerLabelStyleDescription xmi:type="style:CenterLabelStyleDescription" xmi:id="_Y5-fQTATEeyfjuvTHgqjRw" showIcon="false" labelExpression="service:render"> <labelFormat>bold</labelFormat> <labelColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='black']"/> </centerLabelStyleDescription> - <endLabelStyleDescription xmi:type="style:EndLabelStyleDescription" xmi:id="_j3enEi_xEeyhHro4U1y-UQ" labelSize="6" showIcon="false" labelExpression="service:eKeysLabel"> + <endLabelStyleDescription xmi:type="style:EndLabelStyleDescription" xmi:id="_Y5-fQjATEeyfjuvTHgqjRw" labelSize="6" showIcon="false" labelExpression="service:eKeysLabel"> <labelColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='dark_blue']"/> </endLabelStyleDescription> </computedStyleDescriptions> - <computedStyleDescriptions xmi:type="style:EdgeStyleDescription" xmi:id="_j3hDUC_xEeyhHro4U1y-UQ" sourceArrow="FillDiamond" routingStyle="manhattan"> + <computedStyleDescriptions xmi:type="style:EdgeStyleDescription" xmi:id="_Y5_tYDATEeyfjuvTHgqjRw" sourceArrow="FillDiamond" routingStyle="manhattan"> <strokeColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='black']"/> - <centerLabelStyleDescription xmi:type="style:CenterLabelStyleDescription" xmi:id="_j3hDUS_xEeyhHro4U1y-UQ" showIcon="false" labelExpression="service:render"> + <centerLabelStyleDescription xmi:type="style:CenterLabelStyleDescription" xmi:id="_Y5_tYTATEeyfjuvTHgqjRw" showIcon="false" labelExpression="service:render"> + <labelFormat>bold</labelFormat> <labelColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='black']"/> </centerLabelStyleDescription> - <endLabelStyleDescription xmi:type="style:EndLabelStyleDescription" xmi:id="_j3hDUi_xEeyhHro4U1y-UQ" labelSize="6" showIcon="false" labelExpression="service:eKeysLabel"> + <endLabelStyleDescription xmi:type="style:EndLabelStyleDescription" xmi:id="_Y5_tYjATEeyfjuvTHgqjRw" labelSize="6" showIcon="false" labelExpression="service:eKeysLabel"> <labelColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='dark_blue']"/> </endLabelStyleDescription> </computedStyleDescriptions> - <computedStyleDescriptions xmi:type="style:EdgeStyleDescription" xmi:id="_yqYasC_xEeyhHro4U1y-UQ" routingStyle="manhattan"> + <computedStyleDescriptions xmi:type="style:EdgeStyleDescription" xmi:id="_Y6CJoDATEeyfjuvTHgqjRw" sourceArrow="FillDiamond" routingStyle="manhattan"> <strokeColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='black']"/> - <centerLabelStyleDescription xmi:type="style:CenterLabelStyleDescription" xmi:id="_yqYasS_xEeyhHro4U1y-UQ" showIcon="false" labelExpression="service:render"> - <labelFormat>bold</labelFormat> + <centerLabelStyleDescription xmi:type="style:CenterLabelStyleDescription" xmi:id="_Y6CJoTATEeyfjuvTHgqjRw" showIcon="false" labelExpression="service:render"> <labelColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='black']"/> </centerLabelStyleDescription> - <endLabelStyleDescription xmi:type="style:EndLabelStyleDescription" xmi:id="_yqYasi_xEeyhHro4U1y-UQ" labelSize="6" showIcon="false" labelExpression="service:eKeysLabel"> + <endLabelStyleDescription xmi:type="style:EndLabelStyleDescription" xmi:id="_Y6CJojATEeyfjuvTHgqjRw" labelSize="6" showIcon="false" labelExpression="service:eKeysLabel"> <labelColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='dark_blue']"/> </endLabelStyleDescription> </computedStyleDescriptions> </data> </ownedAnnotationEntries> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j1GBcC_xEeyhHro4U1y-UQ" name="Movement" tooltipText="" incomingEdges="_j3gcRy_xEeyhHro4U1y-UQ _j3l70C_xEeyhHro4U1y-UQ _j3mi5i_xEeyhHro4U1y-UQ" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_YtGg4DATEeyfjuvTHgqjRw" name="Movement" tooltipText="" incomingEdges="_Y6BiljATEeyfjuvTHgqjRw _Y6JeYDATEeyfjuvTHgqjRw _Y6LTkDATEeyfjuvTHgqjRw" width="12" height="10"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Movement"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Movement"/> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j1GogC_xEeyhHro4U1y-UQ" iconPath="/org.eclipse.emf.ecoretools.design/icons/full/obj16/EClass_abstract.gif" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="228,228,228"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_YtJkMDATEeyfjuvTHgqjRw" iconPath="/org.eclipse.emf.ecoretools.design/icons/full/obj16/EClass_abstract.gif" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="228,228,228"> <labelFormat>italic</labelFormat> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@conditionnalStyles.1/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3SZ0C_xEeyhHro4U1y-UQ" name="speed : EInt" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y5iaYzATEeyfjuvTHgqjRw" name="speed : EInt" tooltipText=""> <target xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//Movement/speed"/> <semanticElements xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//Movement/speed"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3TA4S_xEeyhHro4U1y-UQ" labelAlignment="LEFT" description="_j3TA4C_xEeyhHro4U1y-UQ"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y5k2oDATEeyfjuvTHgqjRw" labelAlignment="LEFT" description="_Y5jogDATEeyfjuvTHgqjRw"> <labelFormat>bold</labelFormat> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/> </ownedElements> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j1H2oC_xEeyhHro4U1y-UQ" name="Sideways" tooltipText="" outgoingEdges="_j3l70C_xEeyhHro4U1y-UQ" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_YtKyUDATEeyfjuvTHgqjRw" name="Sideways" tooltipText="" outgoingEdges="_Y6JeYDATEeyfjuvTHgqjRw" width="12" height="10"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Sideways"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Sideways"/> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j1H2oS_xEeyhHro4U1y-UQ" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_YtMAcDATEeyfjuvTHgqjRw" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3TA4i_xEeyhHro4U1y-UQ" name="isJump : EBoolean = True" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y5ldsDATEeyfjuvTHgqjRw" name="isJump : EBoolean = True" tooltipText=""> <target xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//Sideways/isJump"/> <semanticElements xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//Sideways/isJump"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3Tn8C_xEeyhHro4U1y-UQ" labelAlignment="LEFT" description="_j3TA4C_xEeyhHro4U1y-UQ"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y5mEwDATEeyfjuvTHgqjRw" labelAlignment="LEFT" description="_Y5jogDATEeyfjuvTHgqjRw"> <labelFormat>bold</labelFormat> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/> </ownedElements> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3Tn8S_xEeyhHro4U1y-UQ" name="jumpIntensity : EInt" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y5mEwTATEeyfjuvTHgqjRw" name="jumpIntensity : EInt" tooltipText=""> <target xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//Sideways/jumpIntensity"/> <semanticElements xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//Sideways/jumpIntensity"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3Tn8i_xEeyhHro4U1y-UQ" labelAlignment="LEFT" description="_j3TA4C_xEeyhHro4U1y-UQ"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y5mr0DATEeyfjuvTHgqjRw" labelAlignment="LEFT" description="_Y5jogDATEeyfjuvTHgqjRw"> <labelFormat>bold</labelFormat> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/> </ownedElements> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j1IdsC_xEeyhHro4U1y-UQ" name="TopDown" tooltipText="" outgoingEdges="_j3mi5i_xEeyhHro4U1y-UQ" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_YtMngDATEeyfjuvTHgqjRw" name="TopDown" tooltipText="" outgoingEdges="_Y6LTkDATEeyfjuvTHgqjRw" width="12" height="10"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//TopDown"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//TopDown"/> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j1IdsS_xEeyhHro4U1y-UQ" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_YtMngTATEeyfjuvTHgqjRw" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j1JEwC_xEeyhHro4U1y-UQ" name="ObjectCreation" tooltipText="" outgoingEdges="_j3mi7S_xEeyhHro4U1y-UQ" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_YtNOkTATEeyfjuvTHgqjRw" name="ObjectCreation" tooltipText="" outgoingEdges="_Y6L6pjATEeyfjuvTHgqjRw" width="12" height="10"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//ObjectCreation"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//ObjectCreation"/> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j1Jr0C_xEeyhHro4U1y-UQ" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_YtOcsDATEeyfjuvTHgqjRw" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3UPAC_xEeyhHro4U1y-UQ" name="position : EInt = 0" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y5nS4DATEeyfjuvTHgqjRw" name="position : EInt = 0" tooltipText=""> <target xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//ObjectCreation/position"/> <semanticElements xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//ObjectCreation/position"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3UPAS_xEeyhHro4U1y-UQ" labelAlignment="LEFT" description="_j3TA4C_xEeyhHro4U1y-UQ"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y5nS4TATEeyfjuvTHgqjRw" labelAlignment="LEFT" description="_Y5jogDATEeyfjuvTHgqjRw"> <labelFormat>bold</labelFormat> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/> </ownedElements> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j1Jr0i_xEeyhHro4U1y-UQ" name="SelfDestruction" tooltipText="" outgoingEdges="_j3nJ9i_xEeyhHro4U1y-UQ" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_YtPDwDATEeyfjuvTHgqjRw" name="SelfDestruction" tooltipText="" outgoingEdges="_Y6MhszATEeyfjuvTHgqjRw" width="12" height="10"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//SelfDestruction"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//SelfDestruction"/> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j1KS4C_xEeyhHro4U1y-UQ" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_YtPq0DATEeyfjuvTHgqjRw" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j1KS4i_xEeyhHro4U1y-UQ" name="Colision" tooltipText="" incomingEdges="_j3hDWS_xEeyhHro4U1y-UQ _j3oYFy_xEeyhHro4U1y-UQ _j3o_IC_xEeyhHro4U1y-UQ" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_YtQR4DATEeyfjuvTHgqjRw" name="Colision" tooltipText="" incomingEdges="_Y6CwsTATEeyfjuvTHgqjRw _Y6OW5jATEeyfjuvTHgqjRw _Y6O99jATEeyfjuvTHgqjRw" width="12" height="10"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Colision"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Colision"/> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j1K58C_xEeyhHro4U1y-UQ" iconPath="/org.eclipse.emf.ecoretools.design/icons/full/obj16/EClass_abstract.gif" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="228,228,228"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_YtRgADATEeyfjuvTHgqjRw" iconPath="/org.eclipse.emf.ecoretools.design/icons/full/obj16/EClass_abstract.gif" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="228,228,228"> <labelFormat>italic</labelFormat> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@conditionnalStyles.1/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3U2EC_xEeyhHro4U1y-UQ" name="form : ColisionTypes = Square" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y5n58DATEeyfjuvTHgqjRw" name="form : ColisionTypes = Square" tooltipText=""> <target xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//Colision/form"/> <semanticElements xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//Colision/form"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3U2ES_xEeyhHro4U1y-UQ" labelAlignment="LEFT"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y5ohADATEeyfjuvTHgqjRw" labelAlignment="LEFT"> <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/> </ownedElements> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y5ohATATEeyfjuvTHgqjRw" name="newOperation1()" tooltipText="newOperation1()"> + <target xmi:type="ecore:EOperation" href="unityGameDSL2_modded.ecore#//Colision/newOperation1"/> + <semanticElements xmi:type="ecore:EOperation" href="unityGameDSL2_modded.ecore#//Colision/newOperation1"/> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y5qWMDATEeyfjuvTHgqjRw" labelAlignment="LEFT"> + <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='Operation']/@style"/> + </ownedStyle> + <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='Operation']"/> + </ownedElements> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j1K58i_xEeyhHro4U1y-UQ" name="GUIElement" tooltipText="" outgoingEdges="_yGylji_xEeyhHro4U1y-UQ" incomingEdges="_j3ktti_xEeyhHro4U1y-UQ _j3nxAC_xEeyhHro4U1y-UQ _j3nxBy_xEeyhHro4U1y-UQ" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_YtSuIDATEeyfjuvTHgqjRw" name="GUIElement" tooltipText="" outgoingEdges="_Y59RIDATEeyfjuvTHgqjRw" incomingEdges="_Y6HpNjATEeyfjuvTHgqjRw _Y6NIwDATEeyfjuvTHgqjRw _Y6Nv0DATEeyfjuvTHgqjRw" width="12" height="10"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//GUIElement"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//GUIElement"/> - <arrangeConstraints>KEEP_LOCATION</arrangeConstraints> - <arrangeConstraints>KEEP_SIZE</arrangeConstraints> - <arrangeConstraints>KEEP_RATIO</arrangeConstraints> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j1LhAC_xEeyhHro4U1y-UQ" iconPath="/org.eclipse.emf.ecoretools.design/icons/full/obj16/EClass_abstract.gif" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="228,228,228"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_YtTVMDATEeyfjuvTHgqjRw" iconPath="/org.eclipse.emf.ecoretools.design/icons/full/obj16/EClass_abstract.gif" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="228,228,228"> <labelFormat>italic</labelFormat> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@conditionnalStyles.1/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3U2Ei_xEeyhHro4U1y-UQ" name="name : EString" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y5q9QDATEeyfjuvTHgqjRw" name="name : EString" tooltipText=""> <target xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//GUIElement/name"/> <semanticElements xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//GUIElement/name"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3VdIC_xEeyhHro4U1y-UQ" labelAlignment="LEFT"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y5q9QTATEeyfjuvTHgqjRw" labelAlignment="LEFT"> <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/> </ownedElements> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j1LhAi_xEeyhHro4U1y-UQ" name="TextDisplay" tooltipText="" outgoingEdges="_j3nxAC_xEeyhHro4U1y-UQ" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_YtT8QDATEeyfjuvTHgqjRw" name="TextDisplay" tooltipText="" outgoingEdges="_Y6NIwDATEeyfjuvTHgqjRw" width="12" height="10"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//TextDisplay"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//TextDisplay"/> - <arrangeConstraints>KEEP_LOCATION</arrangeConstraints> - <arrangeConstraints>KEEP_SIZE</arrangeConstraints> - <arrangeConstraints>KEEP_RATIO</arrangeConstraints> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_TKLs4y_9Eey3jajMEAug1g" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_YtUjUDATEeyfjuvTHgqjRw" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3VdIS_xEeyhHro4U1y-UQ" name="prefix : EString" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y5rkUDATEeyfjuvTHgqjRw" name="prefix : EString" tooltipText=""> <target xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//TextDisplay/prefix"/> <semanticElements xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//TextDisplay/prefix"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3WEMC_xEeyhHro4U1y-UQ" labelAlignment="LEFT"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y5sLYDATEeyfjuvTHgqjRw" labelAlignment="LEFT"> <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/> </ownedElements> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_SUFyYC_9Eey3jajMEAug1g" name="postfix : EString" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y5sLYTATEeyfjuvTHgqjRw" name="postfix : EString" tooltipText=""> <target xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//TextDisplay/postfix"/> <semanticElements xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//TextDisplay/postfix"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_TKP-UC_9Eey3jajMEAug1g" labelAlignment="LEFT"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y5sycDATEeyfjuvTHgqjRw" labelAlignment="LEFT"> <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/> </ownedElements> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j1MIEi_xEeyhHro4U1y-UQ" name="BarDisplay" tooltipText="" outgoingEdges="_j3nxBy_xEeyhHro4U1y-UQ" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_YtVxcDATEeyfjuvTHgqjRw" name="BarDisplay" tooltipText="" outgoingEdges="_Y6Nv0DATEeyfjuvTHgqjRw" width="12" height="10"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//BarDisplay"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//BarDisplay"/> - <arrangeConstraints>KEEP_LOCATION</arrangeConstraints> - <arrangeConstraints>KEEP_SIZE</arrangeConstraints> - <arrangeConstraints>KEEP_RATIO</arrangeConstraints> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j2B1kC_xEeyhHro4U1y-UQ" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_Y2jX0DATEeyfjuvTHgqjRw" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j2B1ki_xEeyhHro4U1y-UQ" name="ApplyForce" tooltipText="" outgoingEdges="_j3oYEC_xEeyhHro4U1y-UQ" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_Y2kl8DATEeyfjuvTHgqjRw" name="ApplyForce" tooltipText="" outgoingEdges="_Y6Nv1zATEeyfjuvTHgqjRw" width="12" height="10"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//ApplyForce"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//ApplyForce"/> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j2CcoC_xEeyhHro4U1y-UQ" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_Y2lNADATEeyfjuvTHgqjRw" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3WrQC_xEeyhHro4U1y-UQ" name="isInstant : EBoolean = True" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y5tZgDATEeyfjuvTHgqjRw" name="isInstant : EBoolean = True" tooltipText=""> <target xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//ApplyForce/isInstant"/> <semanticElements xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//ApplyForce/isInstant"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3WrQS_xEeyhHro4U1y-UQ" labelAlignment="LEFT" description="_j3TA4C_xEeyhHro4U1y-UQ"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y5tZgTATEeyfjuvTHgqjRw" labelAlignment="LEFT" description="_Y5jogDATEeyfjuvTHgqjRw"> <labelFormat>bold</labelFormat> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/> </ownedElements> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3WrQi_xEeyhHro4U1y-UQ" name="intensity : EFloat = 0.0" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y5uAkDATEeyfjuvTHgqjRw" name="intensity : EFloat = 0.0" tooltipText=""> <target xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//ApplyForce/intensity"/> <semanticElements xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//ApplyForce/intensity"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3XSUC_xEeyhHro4U1y-UQ" labelAlignment="LEFT" description="_j3TA4C_xEeyhHro4U1y-UQ"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y5uAkTATEeyfjuvTHgqjRw" labelAlignment="LEFT" description="_Y5jogDATEeyfjuvTHgqjRw"> <labelFormat>bold</labelFormat> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/> </ownedElements> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3XSUS_xEeyhHro4U1y-UQ" name="direction : EInt" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y5unoDATEeyfjuvTHgqjRw" name="direction : EInt" tooltipText=""> <target xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//ApplyForce/direction"/> <semanticElements xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//ApplyForce/direction"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3XSUi_xEeyhHro4U1y-UQ" labelAlignment="LEFT" description="_j3TA4C_xEeyhHro4U1y-UQ"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y5unoTATEeyfjuvTHgqjRw" labelAlignment="LEFT" description="_Y5jogDATEeyfjuvTHgqjRw"> <labelFormat>bold</labelFormat> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/> </ownedElements> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j2DDsC_xEeyhHro4U1y-UQ" name="Trigger" tooltipText="" outgoingEdges="_j3fOIy_xEeyhHro4U1y-UQ _j3oYFy_xEeyhHro4U1y-UQ" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_Y2l0EDATEeyfjuvTHgqjRw" name="Trigger" tooltipText="" outgoingEdges="_Y5_GUzATEeyfjuvTHgqjRw _Y6OW5jATEeyfjuvTHgqjRw" width="12" height="10"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Trigger"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Trigger"/> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j2DDsS_xEeyhHro4U1y-UQ" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_Y2nCMDATEeyfjuvTHgqjRw" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3X5YC_xEeyhHro4U1y-UQ" name="collisionTAg : EString" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y5vOsDATEeyfjuvTHgqjRw" name="collisionTAg : EString" tooltipText=""> <target xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//Trigger/collisionTAg"/> <semanticElements xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//Trigger/collisionTAg"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3X5YS_xEeyhHro4U1y-UQ" labelAlignment="LEFT"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y5v1wDATEeyfjuvTHgqjRw" labelAlignment="LEFT"> <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/> </ownedElements> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j2DqwC_xEeyhHro4U1y-UQ" name="RigidBody" tooltipText="" outgoingEdges="_j3o_IC_xEeyhHro4U1y-UQ" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_Y2npQDATEeyfjuvTHgqjRw" name="RigidBody" tooltipText="" outgoingEdges="_Y6O99jATEeyfjuvTHgqjRw" width="12" height="10"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//RigidBody"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//RigidBody"/> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j2DqwS_xEeyhHro4U1y-UQ" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_Y2oQUDATEeyfjuvTHgqjRw" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j2ER0C_xEeyhHro4U1y-UQ" name="ColisionTypes" tooltipText="" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_Y2o3YDATEeyfjuvTHgqjRw" name="ColisionTypes" tooltipText="" width="12" height="10"> <target xmi:type="ecore:EEnum" href="unityGameDSL2_modded.ecore#//ColisionTypes"/> <semanticElements xmi:type="ecore:EEnum" href="unityGameDSL2_modded.ecore#//ColisionTypes"/> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j2ER0S_xEeyhHro4U1y-UQ" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="221,236,202"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_Y2o3YTATEeyfjuvTHgqjRw" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="221,236,202"> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']"/> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3bjxi_xEeyhHro4U1y-UQ" name="Square" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y52jdTATEeyfjuvTHgqjRw" name="Square" tooltipText=""> <target xmi:type="ecore:EEnumLiteral" href="unityGameDSL2_modded.ecore#//ColisionTypes/Square"/> <semanticElements xmi:type="ecore:EEnumLiteral" href="unityGameDSL2_modded.ecore#//ColisionTypes/Square"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3bjxy_xEeyhHro4U1y-UQ" labelAlignment="LEFT"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y53KgDATEeyfjuvTHgqjRw" labelAlignment="LEFT"> <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']"/> </ownedElements> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3cK0C_xEeyhHro4U1y-UQ" name="Circle" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y53KgTATEeyfjuvTHgqjRw" name="Circle" tooltipText=""> <target xmi:type="ecore:EEnumLiteral" href="unityGameDSL2_modded.ecore#//ColisionTypes/Circle"/> <semanticElements xmi:type="ecore:EEnumLiteral" href="unityGameDSL2_modded.ecore#//ColisionTypes/Circle"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3cK0S_xEeyhHro4U1y-UQ" labelAlignment="LEFT"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y53KgjATEeyfjuvTHgqjRw" labelAlignment="LEFT"> <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']"/> </ownedElements> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3cK0i_xEeyhHro4U1y-UQ" name="Poligonal" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y53xkDATEeyfjuvTHgqjRw" name="Poligonal" tooltipText=""> <target xmi:type="ecore:EEnumLiteral" href="unityGameDSL2_modded.ecore#//ColisionTypes/Poligonal"/> <semanticElements xmi:type="ecore:EEnumLiteral" href="unityGameDSL2_modded.ecore#//ColisionTypes/Poligonal"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3cK0y_xEeyhHro4U1y-UQ" labelAlignment="LEFT"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y53xkTATEeyfjuvTHgqjRw" labelAlignment="LEFT"> <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']"/> </ownedElements> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j2ER0y_xEeyhHro4U1y-UQ" name="Data" tooltipText="" incomingEdges="_j3i4hy_xEeyhHro4U1y-UQ _yGylji_xEeyhHro4U1y-UQ _1F9sXC_xEeyhHro4U1y-UQ" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_Y2pecDATEeyfjuvTHgqjRw" name="Data" tooltipText="" incomingEdges="_Y59RIDATEeyfjuvTHgqjRw _Y6AUczATEeyfjuvTHgqjRw _Y6F0ADATEeyfjuvTHgqjRw" width="12" height="10"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Data"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Data"/> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j2E44C_xEeyhHro4U1y-UQ" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_Y2qFgDATEeyfjuvTHgqjRw" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3YgcC_xEeyhHro4U1y-UQ" name="type : DataTypes = Integer" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y5wc0DATEeyfjuvTHgqjRw" name="type : DataTypes = Integer" tooltipText=""> <target xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//Data/type"/> <semanticElements xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//Data/type"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3YgcS_xEeyhHro4U1y-UQ" labelAlignment="LEFT"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y5wc0TATEeyfjuvTHgqjRw" labelAlignment="LEFT"> <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/> </ownedElements> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3Ygci_xEeyhHro4U1y-UQ" name="name : EString" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y5xD4DATEeyfjuvTHgqjRw" name="name : EString" tooltipText=""> <target xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//Data/name"/> <semanticElements xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//Data/name"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3Ygcy_xEeyhHro4U1y-UQ" labelAlignment="LEFT"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y5xD4TATEeyfjuvTHgqjRw" labelAlignment="LEFT"> <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/> </ownedElements> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j2E44i_xEeyhHro4U1y-UQ" name="DataTypes" tooltipText="" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_Y2rToDATEeyfjuvTHgqjRw" name="DataTypes" tooltipText="" width="12" height="10"> <target xmi:type="ecore:EEnum" href="unityGameDSL2_modded.ecore#//DataTypes"/> <semanticElements xmi:type="ecore:EEnum" href="unityGameDSL2_modded.ecore#//DataTypes"/> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j2E44y_xEeyhHro4U1y-UQ" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="221,236,202"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_Y2r6sDATEeyfjuvTHgqjRw" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="221,236,202"> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']"/> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3cK1C_xEeyhHro4U1y-UQ" name="Integer" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y54YoDATEeyfjuvTHgqjRw" name="Integer" tooltipText=""> <target xmi:type="ecore:EEnumLiteral" href="unityGameDSL2_modded.ecore#//DataTypes/Integer"/> <semanticElements xmi:type="ecore:EEnumLiteral" href="unityGameDSL2_modded.ecore#//DataTypes/Integer"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3cx4C_xEeyhHro4U1y-UQ" labelAlignment="LEFT"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y54YoTATEeyfjuvTHgqjRw" labelAlignment="LEFT"> <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']"/> </ownedElements> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3cx4S_xEeyhHro4U1y-UQ" name="Decimal" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y54YojATEeyfjuvTHgqjRw" name="Decimal" tooltipText=""> <target xmi:type="ecore:EEnumLiteral" href="unityGameDSL2_modded.ecore#//DataTypes/Decimal"/> <semanticElements xmi:type="ecore:EEnumLiteral" href="unityGameDSL2_modded.ecore#//DataTypes/Decimal"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3cx4i_xEeyhHro4U1y-UQ" labelAlignment="LEFT"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y54_sDATEeyfjuvTHgqjRw" labelAlignment="LEFT"> <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']"/> </ownedElements> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3cx4y_xEeyhHro4U1y-UQ" name="Text" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y54_sTATEeyfjuvTHgqjRw" name="Text" tooltipText=""> <target xmi:type="ecore:EEnumLiteral" href="unityGameDSL2_modded.ecore#//DataTypes/Text"/> <semanticElements xmi:type="ecore:EEnumLiteral" href="unityGameDSL2_modded.ecore#//DataTypes/Text"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3cx5C_xEeyhHro4U1y-UQ" labelAlignment="LEFT"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y54_sjATEeyfjuvTHgqjRw" labelAlignment="LEFT"> <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']"/> </ownedElements> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j2Ff8S_xEeyhHro4U1y-UQ" name="GameAction" tooltipText="" incomingEdges="_j3fOIy_xEeyhHro4U1y-UQ _j3gcQC_xEeyhHro4U1y-UQ _j3iRdi_xEeyhHro4U1y-UQ _j3i4gC_xEeyhHro4U1y-UQ _j3mi7S_xEeyhHro4U1y-UQ _j3nJ9i_xEeyhHro4U1y-UQ _j3oYEC_xEeyhHro4U1y-UQ _j3o_Jy_xEeyhHro4U1y-UQ" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_Y2shwDATEeyfjuvTHgqjRw" name="GameAction" tooltipText="" incomingEdges="_Y5_GUzATEeyfjuvTHgqjRw _Y6A7hjATEeyfjuvTHgqjRw _Y6D-1jATEeyfjuvTHgqjRw _Y6El5jATEeyfjuvTHgqjRw _Y6L6pjATEeyfjuvTHgqjRw _Y6MhszATEeyfjuvTHgqjRw _Y6Nv1zATEeyfjuvTHgqjRw _Y6PlAzATEeyfjuvTHgqjRw" width="12" height="10"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//GameAction"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//GameAction"/> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j2Ff8i_xEeyhHro4U1y-UQ" iconPath="/org.eclipse.emf.ecoretools.design/icons/full/obj16/EClass_abstract.gif" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="228,228,228"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_Y2tI0DATEeyfjuvTHgqjRw" iconPath="/org.eclipse.emf.ecoretools.design/icons/full/obj16/EClass_abstract.gif" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="228,228,228"> <labelFormat>italic</labelFormat> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@conditionnalStyles.1/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j2GuEC_xEeyhHro4U1y-UQ" name="DataChange" tooltipText="" outgoingEdges="_j3o_Jy_xEeyhHro4U1y-UQ _1F9sXC_xEeyhHro4U1y-UQ" incomingEdges="_j3pmMy_xEeyhHro4U1y-UQ _j3pmOi_xEeyhHro4U1y-UQ _j3qNRi_xEeyhHro4U1y-UQ" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_Y2tv4DATEeyfjuvTHgqjRw" name="DataChange" tooltipText="" outgoingEdges="_Y6AUczATEeyfjuvTHgqjRw _Y6PlAzATEeyfjuvTHgqjRw" incomingEdges="_Y6QMEDATEeyfjuvTHgqjRw _Y6QzIDATEeyfjuvTHgqjRw _Y6RaMDATEeyfjuvTHgqjRw" width="12" height="10"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//DataChange"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//DataChange"/> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j2GuES_xEeyhHro4U1y-UQ" iconPath="/org.eclipse.emf.ecoretools.design/icons/full/obj16/EClass_abstract.gif" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="228,228,228"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_Y2uW8DATEeyfjuvTHgqjRw" iconPath="/org.eclipse.emf.ecoretools.design/icons/full/obj16/EClass_abstract.gif" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="228,228,228"> <labelFormat>italic</labelFormat> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@conditionnalStyles.1/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3ZHgC_xEeyhHro4U1y-UQ" name="value : EString" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y5xq8DATEeyfjuvTHgqjRw" name="value : EString" tooltipText=""> <target xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//DataChange/value"/> <semanticElements xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//DataChange/value"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3ZHgS_xEeyhHro4U1y-UQ" labelAlignment="LEFT"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y5xq8TATEeyfjuvTHgqjRw" labelAlignment="LEFT"> <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/> </ownedElements> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j2HVIC_xEeyhHro4U1y-UQ" name="Add" tooltipText="" outgoingEdges="_j3pmMy_xEeyhHro4U1y-UQ" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_Y2vlEDATEeyfjuvTHgqjRw" name="Add" tooltipText="" outgoingEdges="_Y6QMEDATEeyfjuvTHgqjRw" width="12" height="10"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Add"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Add"/> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j2XMwC_xEeyhHro4U1y-UQ" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_Y3M4EDATEeyfjuvTHgqjRw" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j2Xz0C_xEeyhHro4U1y-UQ" name="Subtract" tooltipText="" outgoingEdges="_j3pmOi_xEeyhHro4U1y-UQ" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_Y3NfITATEeyfjuvTHgqjRw" name="Subtract" tooltipText="" outgoingEdges="_Y6QzIDATEeyfjuvTHgqjRw" width="12" height="10"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Subtract"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Subtract"/> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j2l2QC_xEeyhHro4U1y-UQ" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_Y36CsDATEeyfjuvTHgqjRw" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j2mdUS_xEeyhHro4U1y-UQ" name="Define" tooltipText="" outgoingEdges="_j3qNRi_xEeyhHro4U1y-UQ" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_Y36pwDATEeyfjuvTHgqjRw" name="Define" tooltipText="" outgoingEdges="_Y6RaMDATEeyfjuvTHgqjRw" width="12" height="10"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Define"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Define"/> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j2nEYC_xEeyhHro4U1y-UQ" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_Y37Q0DATEeyfjuvTHgqjRw" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j2nEYi_xEeyhHro4U1y-UQ" name="Actionkey" tooltipText="" outgoingEdges="_j3gcQC_xEeyhHro4U1y-UQ" incomingEdges="_j3hqZi_xEeyhHro4U1y-UQ" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_Y37Q0jATEeyfjuvTHgqjRw" name="Actionkey" tooltipText="" outgoingEdges="_Y6A7hjATEeyfjuvTHgqjRw" incomingEdges="_Y6DXxjATEeyfjuvTHgqjRw" width="12" height="10"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Actionkey"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Actionkey"/> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j2nrcC_xEeyhHro4U1y-UQ" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_Y3734DATEeyfjuvTHgqjRw" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3ZukC_xEeyhHro4U1y-UQ" name="key : EString" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y5y5EDATEeyfjuvTHgqjRw" name="key : EString" tooltipText=""> <target xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//Actionkey/key"/> <semanticElements xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//Actionkey/key"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3ZukS_xEeyhHro4U1y-UQ" labelAlignment="LEFT"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y5zgIDATEeyfjuvTHgqjRw" labelAlignment="LEFT"> <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/> </ownedElements> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3Zuki_xEeyhHro4U1y-UQ" name="pressType : KeyType = Instant" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y5zgITATEeyfjuvTHgqjRw" name="pressType : KeyType = Instant" tooltipText=""> <target xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//Actionkey/pressType"/> <semanticElements xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//Actionkey/pressType"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3aVoC_xEeyhHro4U1y-UQ" labelAlignment="LEFT"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y50HMDATEeyfjuvTHgqjRw" labelAlignment="LEFT"> <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/> </ownedElements> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j2nrci_xEeyhHro4U1y-UQ" name="KeyType" tooltipText="" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_Y39GADATEeyfjuvTHgqjRw" name="KeyType" tooltipText="" width="12" height="10"> <target xmi:type="ecore:EEnum" href="unityGameDSL2_modded.ecore#//KeyType"/> <semanticElements xmi:type="ecore:EEnum" href="unityGameDSL2_modded.ecore#//KeyType"/> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j2nrcy_xEeyhHro4U1y-UQ" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="221,236,202"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_Y39GATATEeyfjuvTHgqjRw" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="221,236,202"> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']"/> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3cx5S_xEeyhHro4U1y-UQ" name="Instant" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y55mwDATEeyfjuvTHgqjRw" name="Instant" tooltipText=""> <target xmi:type="ecore:EEnumLiteral" href="unityGameDSL2_modded.ecore#//KeyType/Instant"/> <semanticElements xmi:type="ecore:EEnumLiteral" href="unityGameDSL2_modded.ecore#//KeyType/Instant"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3dY8C_xEeyhHro4U1y-UQ" labelAlignment="LEFT"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y55mwTATEeyfjuvTHgqjRw" labelAlignment="LEFT"> <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']"/> </ownedElements> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3dY8S_xEeyhHro4U1y-UQ" name="Repeated" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y55mwjATEeyfjuvTHgqjRw" name="Repeated" tooltipText=""> <target xmi:type="ecore:EEnumLiteral" href="unityGameDSL2_modded.ecore#//KeyType/Repeated"/> <semanticElements xmi:type="ecore:EEnumLiteral" href="unityGameDSL2_modded.ecore#//KeyType/Repeated"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3dY8i_xEeyhHro4U1y-UQ" labelAlignment="LEFT"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y55mwzATEeyfjuvTHgqjRw" labelAlignment="LEFT"> <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']"/> </ownedElements> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j2oSgC_xEeyhHro4U1y-UQ" name="Component" tooltipText="" outgoingEdges="_j3gcRy_xEeyhHro4U1y-UQ _j3hDWS_xEeyhHro4U1y-UQ _j3hqZi_xEeyhHro4U1y-UQ _j3iRdi_xEeyhHro4U1y-UQ _j3i4gC_xEeyhHro4U1y-UQ" incomingEdges="_j3jfli_xEeyhHro4U1y-UQ" width="12" height="10"> - <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Component"/> - <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Component"/> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_Y39tETATEeyfjuvTHgqjRw" name="GameObject" tooltipText="" outgoingEdges="_Y6BiljATEeyfjuvTHgqjRw _Y6CwsTATEeyfjuvTHgqjRw _Y6DXxjATEeyfjuvTHgqjRw _Y6D-1jATEeyfjuvTHgqjRw _Y6El5jATEeyfjuvTHgqjRw" incomingEdges="_Y6GbEDATEeyfjuvTHgqjRw" width="12" height="10"> + <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//GameObject"/> + <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//GameObject"/> <arrangeConstraints>KEEP_LOCATION</arrangeConstraints> <arrangeConstraints>KEEP_SIZE</arrangeConstraints> <arrangeConstraints>KEEP_RATIO</arrangeConstraints> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j3GMkC_xEeyhHro4U1y-UQ" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_Y5ORUDATEeyfjuvTHgqjRw" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3aVoS_xEeyhHro4U1y-UQ" name="name : EString" tooltipText=""> - <target xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//Component/name"/> - <semanticElements xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//Component/name"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3aVoi_xEeyhHro4U1y-UQ" labelAlignment="LEFT"> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y50HMTATEeyfjuvTHgqjRw" name="name : EString" tooltipText=""> + <target xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//GameObject/name"/> + <semanticElements xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//GameObject/name"/> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y50uQDATEeyfjuvTHgqjRw" labelAlignment="LEFT"> <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/> </ownedElements> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j3GzoS_xEeyhHro4U1y-UQ" name="DataManager" tooltipText="" outgoingEdges="_j3i4hy_xEeyhHro4U1y-UQ" incomingEdges="_j3kGpi_xEeyhHro4U1y-UQ" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_Y5PfcDATEeyfjuvTHgqjRw" name="DataManager" tooltipText="" outgoingEdges="_Y6F0ADATEeyfjuvTHgqjRw" incomingEdges="_Y6HCJjATEeyfjuvTHgqjRw" width="12" height="10"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//DataManager"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//DataManager"/> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j3HasC_xEeyhHro4U1y-UQ" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_Y5PfcTATEeyfjuvTHgqjRw" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> - <ownedElements xmi:type="diagram:DNodeListElement" uid="_j3a8sC_xEeyhHro4U1y-UQ" name="name : EString" tooltipText=""> + <ownedElements xmi:type="diagram:DNodeListElement" uid="_Y51VUDATEeyfjuvTHgqjRw" name="name : EString" tooltipText=""> <target xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//DataManager/name"/> <semanticElements xmi:type="ecore:EAttribute" href="unityGameDSL2_modded.ecore#//DataManager/name"/> - <ownedStyle xmi:type="diagram:BundledImage" uid="_j3a8sS_xEeyhHro4U1y-UQ" labelAlignment="LEFT"> + <ownedStyle xmi:type="diagram:BundledImage" uid="_Y51VUTATEeyfjuvTHgqjRw" labelAlignment="LEFT"> <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/> </ownedElements> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j3IBwC_xEeyhHro4U1y-UQ" name="Game" tooltipText="" outgoingEdges="_j3jfli_xEeyhHro4U1y-UQ _j3kGpi_xEeyhHro4U1y-UQ _j3ktti_xEeyhHro4U1y-UQ" width="12" height="10"> + <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_Y5QGgTATEeyfjuvTHgqjRw" name="Game" tooltipText="" outgoingEdges="_Y6GbEDATEeyfjuvTHgqjRw _Y6HCJjATEeyfjuvTHgqjRw _Y6HpNjATEeyfjuvTHgqjRw" width="12" height="10"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Game"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Game"/> <arrangeConstraints>KEEP_LOCATION</arrangeConstraints> <arrangeConstraints>KEEP_SIZE</arrangeConstraints> <arrangeConstraints>KEEP_RATIO</arrangeConstraints> - <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_j3IBwS_xEeyhHro4U1y-UQ" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> + <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_Y5QtkDATEeyfjuvTHgqjRw" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216"> <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/> </ownedStyle> <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3fOIy_xEeyhHro4U1y-UQ" name="[1..*] execute" sourceNode="_j2DDsC_xEeyhHro4U1y-UQ" targetNode="_j2Ff8S_xEeyhHro4U1y-UQ"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y59RIDATEeyfjuvTHgqjRw" name="[1..1] data" sourceNode="_YtSuIDATEeyfjuvTHgqjRw" targetNode="_Y2pecDATEeyfjuvTHgqjRw"> + <target xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//GUIElement/data"/> + <semanticElements xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//GUIElement/data"/> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y5-fQzATEeyfjuvTHgqjRw" description="_Y5-fQDATEeyfjuvTHgqjRw" routingStyle="manhattan" strokeColor="0,0,0"> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y5-fRTATEeyfjuvTHgqjRw" showIcon="false"> + <customFeatures>labelSize</customFeatures> + </centerLabelStyle> + <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_Y5-fRDATEeyfjuvTHgqjRw" showIcon="false" labelColor="39,76,114"> + <customFeatures>labelSize</customFeatures> + </endLabelStyle> + </ownedStyle> + <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/> + </ownedDiagramElements> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y5_GUzATEeyfjuvTHgqjRw" name="[1..*] execute" sourceNode="_Y2l0EDATEeyfjuvTHgqjRw" targetNode="_Y2shwDATEeyfjuvTHgqjRw"> <target xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Trigger/execute"/> <semanticElements xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Trigger/execute"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3fOJC_xEeyhHro4U1y-UQ" description="_j3enEC_xEeyhHro4U1y-UQ" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3fOJi_xEeyhHro4U1y-UQ" showIcon="false"> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y5_tYzATEeyfjuvTHgqjRw" description="_Y5_tYDATEeyfjuvTHgqjRw" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y5_tZTATEeyfjuvTHgqjRw" showIcon="false"> <customFeatures>labelSize</customFeatures> - <labelFormat>bold</labelFormat> </centerLabelStyle> - <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_j3fOJS_xEeyhHro4U1y-UQ" showIcon="false" labelColor="39,76,114"> + <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_Y5_tZDATEeyfjuvTHgqjRw" showIcon="false" labelColor="39,76,114"> <customFeatures>labelSize</customFeatures> </endLabelStyle> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3gcQC_xEeyhHro4U1y-UQ" name="[1..*] execute" sourceNode="_j2nEYi_xEeyhHro4U1y-UQ" targetNode="_j2Ff8S_xEeyhHro4U1y-UQ"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6AUczATEeyfjuvTHgqjRw" name="[1..1] data" sourceNode="_Y2tv4DATEeyfjuvTHgqjRw" targetNode="_Y2pecDATEeyfjuvTHgqjRw"> + <target xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//DataChange/data"/> + <semanticElements xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//DataChange/data"/> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6A7gDATEeyfjuvTHgqjRw" description="_Y5-fQDATEeyfjuvTHgqjRw" routingStyle="manhattan" strokeColor="0,0,0"> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6A7gjATEeyfjuvTHgqjRw" showIcon="false"> + <customFeatures>labelSize</customFeatures> + </centerLabelStyle> + <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_Y6A7gTATEeyfjuvTHgqjRw" showIcon="false" labelColor="39,76,114"> + <customFeatures>labelSize</customFeatures> + </endLabelStyle> + </ownedStyle> + <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/> + </ownedDiagramElements> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6A7hjATEeyfjuvTHgqjRw" name="[1..*] execute" sourceNode="_Y37Q0jATEeyfjuvTHgqjRw" targetNode="_Y2shwDATEeyfjuvTHgqjRw"> <target xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Actionkey/execute"/> <semanticElements xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Actionkey/execute"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3gcQS_xEeyhHro4U1y-UQ" description="_j3enEC_xEeyhHro4U1y-UQ" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3gcQy_xEeyhHro4U1y-UQ" showIcon="false"> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6BikDATEeyfjuvTHgqjRw" description="_Y5_tYDATEeyfjuvTHgqjRw" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6BikjATEeyfjuvTHgqjRw" showIcon="false"> <customFeatures>labelSize</customFeatures> - <labelFormat>bold</labelFormat> </centerLabelStyle> - <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_j3gcQi_xEeyhHro4U1y-UQ" showIcon="false" labelColor="39,76,114"> + <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_Y6BikTATEeyfjuvTHgqjRw" showIcon="false" labelColor="39,76,114"> <customFeatures>labelSize</customFeatures> </endLabelStyle> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3gcRy_xEeyhHro4U1y-UQ" name="[0..1] movement" sourceNode="_j2oSgC_xEeyhHro4U1y-UQ" targetNode="_j1GBcC_xEeyhHro4U1y-UQ"> - <target xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Component/movement"/> - <semanticElements xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Component/movement"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3hDUy_xEeyhHro4U1y-UQ" description="_j3hDUC_xEeyhHro4U1y-UQ" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3hDVS_xEeyhHro4U1y-UQ" showIcon="false"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6BiljATEeyfjuvTHgqjRw" name="[0..1] movement" sourceNode="_Y39tETATEeyfjuvTHgqjRw" targetNode="_YtGg4DATEeyfjuvTHgqjRw"> + <target xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//GameObject/movement"/> + <semanticElements xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//GameObject/movement"/> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6CJozATEeyfjuvTHgqjRw" description="_Y6CJoDATEeyfjuvTHgqjRw" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6CJpTATEeyfjuvTHgqjRw" showIcon="false"> <customFeatures>labelSize</customFeatures> </centerLabelStyle> - <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_j3hDVC_xEeyhHro4U1y-UQ" showIcon="false" labelColor="39,76,114"> + <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_Y6CJpDATEeyfjuvTHgqjRw" showIcon="false" labelColor="39,76,114"> <customFeatures>labelSize</customFeatures> </endLabelStyle> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3hDWS_xEeyhHro4U1y-UQ" name="[0..*] colision" sourceNode="_j2oSgC_xEeyhHro4U1y-UQ" targetNode="_j1KS4i_xEeyhHro4U1y-UQ"> - <target xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Component/colision"/> - <semanticElements xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Component/colision"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3hqYC_xEeyhHro4U1y-UQ" description="_j3hDUC_xEeyhHro4U1y-UQ" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3hqYi_xEeyhHro4U1y-UQ" showIcon="false"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6CwsTATEeyfjuvTHgqjRw" name="[0..*] colision" sourceNode="_Y39tETATEeyfjuvTHgqjRw" targetNode="_YtQR4DATEeyfjuvTHgqjRw"> + <target xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//GameObject/colision"/> + <semanticElements xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//GameObject/colision"/> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6DXwDATEeyfjuvTHgqjRw" description="_Y6CJoDATEeyfjuvTHgqjRw" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6DXwjATEeyfjuvTHgqjRw" showIcon="false"> <customFeatures>labelSize</customFeatures> </centerLabelStyle> - <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_j3hqYS_xEeyhHro4U1y-UQ" showIcon="false" labelColor="39,76,114"> + <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_Y6DXwTATEeyfjuvTHgqjRw" showIcon="false" labelColor="39,76,114"> <customFeatures>labelSize</customFeatures> </endLabelStyle> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3hqZi_xEeyhHro4U1y-UQ" name="[0..*] interaction" sourceNode="_j2oSgC_xEeyhHro4U1y-UQ" targetNode="_j2nEYi_xEeyhHro4U1y-UQ"> - <target xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Component/interaction"/> - <semanticElements xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Component/interaction"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3iRcC_xEeyhHro4U1y-UQ" description="_j3hDUC_xEeyhHro4U1y-UQ" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3iRci_xEeyhHro4U1y-UQ" showIcon="false"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6DXxjATEeyfjuvTHgqjRw" name="[0..*] interaction" sourceNode="_Y39tETATEeyfjuvTHgqjRw" targetNode="_Y37Q0jATEeyfjuvTHgqjRw"> + <target xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//GameObject/interaction"/> + <semanticElements xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//GameObject/interaction"/> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6D-0DATEeyfjuvTHgqjRw" description="_Y6CJoDATEeyfjuvTHgqjRw" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6D-0jATEeyfjuvTHgqjRw" showIcon="false"> <customFeatures>labelSize</customFeatures> </centerLabelStyle> - <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_j3iRcS_xEeyhHro4U1y-UQ" showIcon="false" labelColor="39,76,114"> + <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_Y6D-0TATEeyfjuvTHgqjRw" showIcon="false" labelColor="39,76,114"> <customFeatures>labelSize</customFeatures> </endLabelStyle> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3iRdi_xEeyhHro4U1y-UQ" name="[0..*] start" sourceNode="_j2oSgC_xEeyhHro4U1y-UQ" targetNode="_j2Ff8S_xEeyhHro4U1y-UQ"> - <target xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Component/start"/> - <semanticElements xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Component/start"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3iRdy_xEeyhHro4U1y-UQ" description="_j3hDUC_xEeyhHro4U1y-UQ" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3iReS_xEeyhHro4U1y-UQ" showIcon="false"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6D-1jATEeyfjuvTHgqjRw" name="[0..*] start" sourceNode="_Y39tETATEeyfjuvTHgqjRw" targetNode="_Y2shwDATEeyfjuvTHgqjRw"> + <target xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//GameObject/start"/> + <semanticElements xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//GameObject/start"/> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6El4DATEeyfjuvTHgqjRw" description="_Y6CJoDATEeyfjuvTHgqjRw" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6El4jATEeyfjuvTHgqjRw" showIcon="false"> <customFeatures>labelSize</customFeatures> </centerLabelStyle> - <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_j3iReC_xEeyhHro4U1y-UQ" showIcon="false" labelColor="39,76,114"> + <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_Y6El4TATEeyfjuvTHgqjRw" showIcon="false" labelColor="39,76,114"> <customFeatures>labelSize</customFeatures> </endLabelStyle> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3i4gC_xEeyhHro4U1y-UQ" name="[0..*] update" sourceNode="_j2oSgC_xEeyhHro4U1y-UQ" targetNode="_j2Ff8S_xEeyhHro4U1y-UQ"> - <target xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Component/update"/> - <semanticElements xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Component/update"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3i4gS_xEeyhHro4U1y-UQ" description="_j3hDUC_xEeyhHro4U1y-UQ" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3i4gy_xEeyhHro4U1y-UQ" showIcon="false"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6El5jATEeyfjuvTHgqjRw" name="[0..*] update" sourceNode="_Y39tETATEeyfjuvTHgqjRw" targetNode="_Y2shwDATEeyfjuvTHgqjRw"> + <target xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//GameObject/update"/> + <semanticElements xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//GameObject/update"/> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6FM8DATEeyfjuvTHgqjRw" description="_Y6CJoDATEeyfjuvTHgqjRw" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6FM8jATEeyfjuvTHgqjRw" showIcon="false"> <customFeatures>labelSize</customFeatures> </centerLabelStyle> - <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_j3i4gi_xEeyhHro4U1y-UQ" showIcon="false" labelColor="39,76,114"> + <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_Y6FM8TATEeyfjuvTHgqjRw" showIcon="false" labelColor="39,76,114"> <customFeatures>labelSize</customFeatures> </endLabelStyle> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3i4hy_xEeyhHro4U1y-UQ" name="[0..*] controls" sourceNode="_j3GzoS_xEeyhHro4U1y-UQ" targetNode="_j2ER0y_xEeyhHro4U1y-UQ"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6F0ADATEeyfjuvTHgqjRw" name="[0..*] controls" sourceNode="_Y5PfcDATEeyfjuvTHgqjRw" targetNode="_Y2pecDATEeyfjuvTHgqjRw"> <target xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//DataManager/controls"/> <semanticElements xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//DataManager/controls"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3jfkC_xEeyhHro4U1y-UQ" description="_j3hDUC_xEeyhHro4U1y-UQ" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3jfki_xEeyhHro4U1y-UQ" showIcon="false"> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6F0ATATEeyfjuvTHgqjRw" description="_Y6CJoDATEeyfjuvTHgqjRw" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6F0AzATEeyfjuvTHgqjRw" showIcon="false"> <customFeatures>labelSize</customFeatures> </centerLabelStyle> - <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_j3jfkS_xEeyhHro4U1y-UQ" showIcon="false" labelColor="39,76,114"> + <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_Y6F0AjATEeyfjuvTHgqjRw" showIcon="false" labelColor="39,76,114"> <customFeatures>labelSize</customFeatures> </endLabelStyle> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3jfli_xEeyhHro4U1y-UQ" name="[0..*] components" sourceNode="_j3IBwC_xEeyhHro4U1y-UQ" targetNode="_j2oSgC_xEeyhHro4U1y-UQ"> - <target xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Game/components"/> - <semanticElements xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Game/components"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3kGoC_xEeyhHro4U1y-UQ" description="_j3hDUC_xEeyhHro4U1y-UQ" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3kGoi_xEeyhHro4U1y-UQ" showIcon="false"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6GbEDATEeyfjuvTHgqjRw" name="[0..*] gameobjects" sourceNode="_Y5QGgTATEeyfjuvTHgqjRw" targetNode="_Y39tETATEeyfjuvTHgqjRw"> + <target xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Game/gameobjects"/> + <semanticElements xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Game/gameobjects"/> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6HCIDATEeyfjuvTHgqjRw" description="_Y6CJoDATEeyfjuvTHgqjRw" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6HCIjATEeyfjuvTHgqjRw" showIcon="false"> <customFeatures>labelSize</customFeatures> </centerLabelStyle> - <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_j3kGoS_xEeyhHro4U1y-UQ" showIcon="false" labelColor="39,76,114"> + <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_Y6HCITATEeyfjuvTHgqjRw" showIcon="false" labelColor="39,76,114"> <customFeatures>labelSize</customFeatures> </endLabelStyle> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3kGpi_xEeyhHro4U1y-UQ" name="[0..1] dataManager" sourceNode="_j3IBwC_xEeyhHro4U1y-UQ" targetNode="_j3GzoS_xEeyhHro4U1y-UQ"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6HCJjATEeyfjuvTHgqjRw" name="[0..1] dataManager" sourceNode="_Y5QGgTATEeyfjuvTHgqjRw" targetNode="_Y5PfcDATEeyfjuvTHgqjRw"> <target xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Game/dataManager"/> <semanticElements xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Game/dataManager"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3ktsC_xEeyhHro4U1y-UQ" description="_j3hDUC_xEeyhHro4U1y-UQ" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3ktsi_xEeyhHro4U1y-UQ" showIcon="false"> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6HpMDATEeyfjuvTHgqjRw" description="_Y6CJoDATEeyfjuvTHgqjRw" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6HpMjATEeyfjuvTHgqjRw" showIcon="false"> <customFeatures>labelSize</customFeatures> </centerLabelStyle> - <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_j3ktsS_xEeyhHro4U1y-UQ" showIcon="false" labelColor="39,76,114"> + <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_Y6HpMTATEeyfjuvTHgqjRw" showIcon="false" labelColor="39,76,114"> <customFeatures>labelSize</customFeatures> </endLabelStyle> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3ktti_xEeyhHro4U1y-UQ" name="[0..*] guiElements" sourceNode="_j3IBwC_xEeyhHro4U1y-UQ" targetNode="_j1K58i_xEeyhHro4U1y-UQ"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6HpNjATEeyfjuvTHgqjRw" name="[0..*] guiElements" sourceNode="_Y5QGgTATEeyfjuvTHgqjRw" targetNode="_YtSuIDATEeyfjuvTHgqjRw"> <target xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Game/guiElements"/> <semanticElements xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//Game/guiElements"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3ktty_xEeyhHro4U1y-UQ" description="_j3hDUC_xEeyhHro4U1y-UQ" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3ktuS_xEeyhHro4U1y-UQ" showIcon="false"> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6IQQDATEeyfjuvTHgqjRw" description="_Y6CJoDATEeyfjuvTHgqjRw" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0"> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6IQQjATEeyfjuvTHgqjRw" showIcon="false"> <customFeatures>labelSize</customFeatures> </centerLabelStyle> - <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_j3ktuC_xEeyhHro4U1y-UQ" showIcon="false" labelColor="39,76,114"> + <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_Y6IQQTATEeyfjuvTHgqjRw" showIcon="false" labelColor="39,76,114"> <customFeatures>labelSize</customFeatures> </endLabelStyle> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3l70C_xEeyhHro4U1y-UQ" sourceNode="_j1H2oC_xEeyhHro4U1y-UQ" targetNode="_j1GBcC_xEeyhHro4U1y-UQ"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6JeYDATEeyfjuvTHgqjRw" sourceNode="_YtKyUDATEeyfjuvTHgqjRw" targetNode="_YtGg4DATEeyfjuvTHgqjRw"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Sideways"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Sideways"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3mi4C_xEeyhHro4U1y-UQ" targetArrow="InputClosedArrow" routingStyle="tree"> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6KsgDATEeyfjuvTHgqjRw" targetArrow="InputClosedArrow" routingStyle="tree"> <description xmi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']/@style"/> - <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_j3mi4S_xEeyhHro4U1y-UQ" showIcon="false"> + <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_Y6KsgTATEeyfjuvTHgqjRw" showIcon="false"> <labelFormat>italic</labelFormat> </beginLabelStyle> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3mi4i_xEeyhHro4U1y-UQ" showIcon="false"/> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6KsgjATEeyfjuvTHgqjRw" showIcon="false"/> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3mi5i_xEeyhHro4U1y-UQ" sourceNode="_j1IdsC_xEeyhHro4U1y-UQ" targetNode="_j1GBcC_xEeyhHro4U1y-UQ"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6LTkDATEeyfjuvTHgqjRw" sourceNode="_YtMngDATEeyfjuvTHgqjRw" targetNode="_YtGg4DATEeyfjuvTHgqjRw"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//TopDown"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//TopDown"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3mi5y_xEeyhHro4U1y-UQ" targetArrow="InputClosedArrow" routingStyle="tree"> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6L6oDATEeyfjuvTHgqjRw" targetArrow="InputClosedArrow" routingStyle="tree"> <description xmi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']/@style"/> - <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_j3mi6C_xEeyhHro4U1y-UQ" showIcon="false"> + <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_Y6L6oTATEeyfjuvTHgqjRw" showIcon="false"> <labelFormat>italic</labelFormat> </beginLabelStyle> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3mi6S_xEeyhHro4U1y-UQ" showIcon="false"/> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6L6ojATEeyfjuvTHgqjRw" showIcon="false"/> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3mi7S_xEeyhHro4U1y-UQ" sourceNode="_j1JEwC_xEeyhHro4U1y-UQ" targetNode="_j2Ff8S_xEeyhHro4U1y-UQ"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6L6pjATEeyfjuvTHgqjRw" sourceNode="_YtNOkTATEeyfjuvTHgqjRw" targetNode="_Y2shwDATEeyfjuvTHgqjRw"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//ObjectCreation"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//ObjectCreation"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3nJ8C_xEeyhHro4U1y-UQ" targetArrow="InputClosedArrow" routingStyle="tree"> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6L6pzATEeyfjuvTHgqjRw" targetArrow="InputClosedArrow" routingStyle="tree"> <description xmi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']/@style"/> - <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_j3nJ8S_xEeyhHro4U1y-UQ" showIcon="false"> + <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_Y6L6qDATEeyfjuvTHgqjRw" showIcon="false"> <labelFormat>italic</labelFormat> </beginLabelStyle> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3nJ8i_xEeyhHro4U1y-UQ" showIcon="false"/> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6L6qTATEeyfjuvTHgqjRw" showIcon="false"/> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3nJ9i_xEeyhHro4U1y-UQ" sourceNode="_j1Jr0i_xEeyhHro4U1y-UQ" targetNode="_j2Ff8S_xEeyhHro4U1y-UQ"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6MhszATEeyfjuvTHgqjRw" sourceNode="_YtPDwDATEeyfjuvTHgqjRw" targetNode="_Y2shwDATEeyfjuvTHgqjRw"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//SelfDestruction"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//SelfDestruction"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3nJ9y_xEeyhHro4U1y-UQ" targetArrow="InputClosedArrow" routingStyle="tree"> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6MhtDATEeyfjuvTHgqjRw" targetArrow="InputClosedArrow" routingStyle="tree"> <description xmi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']/@style"/> - <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_j3nJ-C_xEeyhHro4U1y-UQ" showIcon="false"> + <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_Y6MhtTATEeyfjuvTHgqjRw" showIcon="false"> <labelFormat>italic</labelFormat> </beginLabelStyle> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3nJ-S_xEeyhHro4U1y-UQ" showIcon="false"/> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6MhtjATEeyfjuvTHgqjRw" showIcon="false"/> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3nxAC_xEeyhHro4U1y-UQ" sourceNode="_j1LhAi_xEeyhHro4U1y-UQ" targetNode="_j1K58i_xEeyhHro4U1y-UQ"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6NIwDATEeyfjuvTHgqjRw" sourceNode="_YtT8QDATEeyfjuvTHgqjRw" targetNode="_YtSuIDATEeyfjuvTHgqjRw"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//TextDisplay"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//TextDisplay"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_TKaWZi_9Eey3jajMEAug1g" targetArrow="InputClosedArrow" routingStyle="tree"> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6NIwTATEeyfjuvTHgqjRw" targetArrow="InputClosedArrow" routingStyle="tree"> <description xmi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']/@style"/> - <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_TKaWZy_9Eey3jajMEAug1g" showIcon="false"> + <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_Y6NIwjATEeyfjuvTHgqjRw" showIcon="false"> <labelFormat>italic</labelFormat> </beginLabelStyle> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_TKaWaC_9Eey3jajMEAug1g" showIcon="false"/> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6NIwzATEeyfjuvTHgqjRw" showIcon="false"/> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3nxBy_xEeyhHro4U1y-UQ" sourceNode="_j1MIEi_xEeyhHro4U1y-UQ" targetNode="_j1K58i_xEeyhHro4U1y-UQ"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6Nv0DATEeyfjuvTHgqjRw" sourceNode="_YtVxcDATEeyfjuvTHgqjRw" targetNode="_YtSuIDATEeyfjuvTHgqjRw"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//BarDisplay"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//BarDisplay"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3nxCC_xEeyhHro4U1y-UQ" targetArrow="InputClosedArrow" routingStyle="tree"> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6Nv0TATEeyfjuvTHgqjRw" targetArrow="InputClosedArrow" routingStyle="tree"> <description xmi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']/@style"/> - <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_j3nxCS_xEeyhHro4U1y-UQ" showIcon="false"> + <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_Y6Nv0jATEeyfjuvTHgqjRw" showIcon="false"> <labelFormat>italic</labelFormat> </beginLabelStyle> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3nxCi_xEeyhHro4U1y-UQ" showIcon="false"/> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6Nv0zATEeyfjuvTHgqjRw" showIcon="false"/> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3oYEC_xEeyhHro4U1y-UQ" sourceNode="_j2B1ki_xEeyhHro4U1y-UQ" targetNode="_j2Ff8S_xEeyhHro4U1y-UQ"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6Nv1zATEeyfjuvTHgqjRw" sourceNode="_Y2kl8DATEeyfjuvTHgqjRw" targetNode="_Y2shwDATEeyfjuvTHgqjRw"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//ApplyForce"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//ApplyForce"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3oYES_xEeyhHro4U1y-UQ" targetArrow="InputClosedArrow" routingStyle="tree"> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6OW4DATEeyfjuvTHgqjRw" targetArrow="InputClosedArrow" routingStyle="tree"> <description xmi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']/@style"/> - <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_j3oYEi_xEeyhHro4U1y-UQ" showIcon="false"> + <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_Y6OW4TATEeyfjuvTHgqjRw" showIcon="false"> <labelFormat>italic</labelFormat> </beginLabelStyle> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3oYEy_xEeyhHro4U1y-UQ" showIcon="false"/> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6OW4jATEeyfjuvTHgqjRw" showIcon="false"/> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3oYFy_xEeyhHro4U1y-UQ" sourceNode="_j2DDsC_xEeyhHro4U1y-UQ" targetNode="_j1KS4i_xEeyhHro4U1y-UQ"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6OW5jATEeyfjuvTHgqjRw" sourceNode="_Y2l0EDATEeyfjuvTHgqjRw" targetNode="_YtQR4DATEeyfjuvTHgqjRw"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Trigger"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Trigger"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3oYGC_xEeyhHro4U1y-UQ" targetArrow="InputClosedArrow" routingStyle="tree"> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6O98DATEeyfjuvTHgqjRw" targetArrow="InputClosedArrow" routingStyle="tree"> <description xmi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']/@style"/> - <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_j3oYGS_xEeyhHro4U1y-UQ" showIcon="false"> + <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_Y6O98TATEeyfjuvTHgqjRw" showIcon="false"> <labelFormat>italic</labelFormat> </beginLabelStyle> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3oYGi_xEeyhHro4U1y-UQ" showIcon="false"/> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6O98jATEeyfjuvTHgqjRw" showIcon="false"/> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3o_IC_xEeyhHro4U1y-UQ" sourceNode="_j2DqwC_xEeyhHro4U1y-UQ" targetNode="_j1KS4i_xEeyhHro4U1y-UQ"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6O99jATEeyfjuvTHgqjRw" sourceNode="_Y2npQDATEeyfjuvTHgqjRw" targetNode="_YtQR4DATEeyfjuvTHgqjRw"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//RigidBody"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//RigidBody"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3o_IS_xEeyhHro4U1y-UQ" targetArrow="InputClosedArrow" routingStyle="tree"> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6O99zATEeyfjuvTHgqjRw" targetArrow="InputClosedArrow" routingStyle="tree"> <description xmi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']/@style"/> - <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_j3o_Ii_xEeyhHro4U1y-UQ" showIcon="false"> + <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_Y6O9-DATEeyfjuvTHgqjRw" showIcon="false"> <labelFormat>italic</labelFormat> </beginLabelStyle> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3o_Iy_xEeyhHro4U1y-UQ" showIcon="false"/> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6O9-TATEeyfjuvTHgqjRw" showIcon="false"/> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3o_Jy_xEeyhHro4U1y-UQ" sourceNode="_j2GuEC_xEeyhHro4U1y-UQ" targetNode="_j2Ff8S_xEeyhHro4U1y-UQ"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6PlAzATEeyfjuvTHgqjRw" sourceNode="_Y2tv4DATEeyfjuvTHgqjRw" targetNode="_Y2shwDATEeyfjuvTHgqjRw"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//DataChange"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//DataChange"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3o_KC_xEeyhHro4U1y-UQ" targetArrow="InputClosedArrow" routingStyle="tree"> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6PlBDATEeyfjuvTHgqjRw" targetArrow="InputClosedArrow" routingStyle="tree"> <description xmi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']/@style"/> - <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_j3o_KS_xEeyhHro4U1y-UQ" showIcon="false"> + <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_Y6PlBTATEeyfjuvTHgqjRw" showIcon="false"> <labelFormat>italic</labelFormat> </beginLabelStyle> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3o_Ki_xEeyhHro4U1y-UQ" showIcon="false"/> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6PlBjATEeyfjuvTHgqjRw" showIcon="false"/> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3pmMy_xEeyhHro4U1y-UQ" sourceNode="_j2HVIC_xEeyhHro4U1y-UQ" targetNode="_j2GuEC_xEeyhHro4U1y-UQ"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6QMEDATEeyfjuvTHgqjRw" sourceNode="_Y2vlEDATEeyfjuvTHgqjRw" targetNode="_Y2tv4DATEeyfjuvTHgqjRw"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Add"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Add"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3pmNC_xEeyhHro4U1y-UQ" targetArrow="InputClosedArrow" routingStyle="tree"> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6QMETATEeyfjuvTHgqjRw" targetArrow="InputClosedArrow" routingStyle="tree"> <description xmi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']/@style"/> - <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_j3pmNS_xEeyhHro4U1y-UQ" showIcon="false"> + <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_Y6QMEjATEeyfjuvTHgqjRw" showIcon="false"> <labelFormat>italic</labelFormat> </beginLabelStyle> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3pmNi_xEeyhHro4U1y-UQ" showIcon="false"/> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6QMEzATEeyfjuvTHgqjRw" showIcon="false"/> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3pmOi_xEeyhHro4U1y-UQ" sourceNode="_j2Xz0C_xEeyhHro4U1y-UQ" targetNode="_j2GuEC_xEeyhHro4U1y-UQ"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6QzIDATEeyfjuvTHgqjRw" sourceNode="_Y3NfITATEeyfjuvTHgqjRw" targetNode="_Y2tv4DATEeyfjuvTHgqjRw"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Subtract"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Subtract"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3qNQC_xEeyhHro4U1y-UQ" targetArrow="InputClosedArrow" routingStyle="tree"> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6QzITATEeyfjuvTHgqjRw" targetArrow="InputClosedArrow" routingStyle="tree"> <description xmi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']/@style"/> - <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_j3qNQS_xEeyhHro4U1y-UQ" showIcon="false"> + <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_Y6QzIjATEeyfjuvTHgqjRw" showIcon="false"> <labelFormat>italic</labelFormat> </beginLabelStyle> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3qNQi_xEeyhHro4U1y-UQ" showIcon="false"/> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6QzIzATEeyfjuvTHgqjRw" showIcon="false"/> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_j3qNRi_xEeyhHro4U1y-UQ" sourceNode="_j2mdUS_xEeyhHro4U1y-UQ" targetNode="_j2GuEC_xEeyhHro4U1y-UQ"> + <ownedDiagramElements xmi:type="diagram:DEdge" uid="_Y6RaMDATEeyfjuvTHgqjRw" sourceNode="_Y36pwDATEeyfjuvTHgqjRw" targetNode="_Y2tv4DATEeyfjuvTHgqjRw"> <target xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Define"/> <semanticElements xmi:type="ecore:EClass" href="unityGameDSL2_modded.ecore#//Define"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_j3qNRy_xEeyhHro4U1y-UQ" targetArrow="InputClosedArrow" routingStyle="tree"> + <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Y6RaMTATEeyfjuvTHgqjRw" targetArrow="InputClosedArrow" routingStyle="tree"> <description xmi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']/@style"/> - <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_j3qNSC_xEeyhHro4U1y-UQ" showIcon="false"> + <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_Y6RaMjATEeyfjuvTHgqjRw" showIcon="false"> <labelFormat>italic</labelFormat> </beginLabelStyle> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_j3qNSS_xEeyhHro4U1y-UQ" showIcon="false"/> + <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Y6RaMzATEeyfjuvTHgqjRw" showIcon="false"/> </ownedStyle> <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']"/> </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_yGylji_xEeyhHro4U1y-UQ" name="[1..1] data" sourceNode="_j1K58i_xEeyhHro4U1y-UQ" targetNode="_j2ER0y_xEeyhHro4U1y-UQ"> - <target xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//GUIElement/data"/> - <semanticElements xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//GUIElement/data"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_yqYasy_xEeyhHro4U1y-UQ" description="_yqYasC_xEeyhHro4U1y-UQ" routingStyle="manhattan" strokeColor="0,0,0"> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_yqYatS_xEeyhHro4U1y-UQ" showIcon="false"> - <labelFormat>bold</labelFormat> - </centerLabelStyle> - <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_yqYatC_xEeyhHro4U1y-UQ" labelSize="6" showIcon="false" labelColor="39,76,114"/> - </ownedStyle> - <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/> - </ownedDiagramElements> - <ownedDiagramElements xmi:type="diagram:DEdge" uid="_1F9sXC_xEeyhHro4U1y-UQ" name="[1..1] data" sourceNode="_j2GuEC_xEeyhHro4U1y-UQ" targetNode="_j2ER0y_xEeyhHro4U1y-UQ"> - <target xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//DataChange/data"/> - <semanticElements xmi:type="ecore:EReference" href="unityGameDSL2_modded.ecore#//DataChange/data"/> - <ownedStyle xmi:type="diagram:EdgeStyle" uid="_3zhexi_xEeyhHro4U1y-UQ" description="_yqYasC_xEeyhHro4U1y-UQ" routingStyle="manhattan" strokeColor="0,0,0"> - <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_3zheyC_xEeyhHro4U1y-UQ" showIcon="false"> - <labelFormat>bold</labelFormat> - </centerLabelStyle> - <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_3zhexy_xEeyhHro4U1y-UQ" labelSize="6" showIcon="false" labelColor="39,76,114"/> - </ownedStyle> - <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/> - </ownedDiagramElements> <description xmi:type="description_1:DiagramDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']"/> - <filterVariableHistory xmi:type="diagram:FilterVariableHistory" uid="_jfC48C_xEeyhHro4U1y-UQ"/> + <filterVariableHistory xmi:type="diagram:FilterVariableHistory" uid="_YEj6MDATEeyfjuvTHgqjRw"/> <activatedLayers xmi:type="description_1:Layer" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer"/> <activatedLayers xmi:type="description_1:AdditionalLayer" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@additionalLayers[name='Package']"/> <activatedLayers xmi:type="description_1:AdditionalLayer" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@additionalLayers[name='Validation']"/> diff --git a/projectMDE/metamodel/gameDSL/unityGameDSL2_modded.ecore b/projectMDE/metamodel/gameDSL/unityGameDSL2_modded.ecore index a9bb8e021be9d746fc95886768f439475878b54a..678822f65938deb7318df4117097727cc96dc6e2 100644 --- a/projectMDE/metamodel/gameDSL/unityGameDSL2_modded.ecore +++ b/projectMDE/metamodel/gameDSL/unityGameDSL2_modded.ecore @@ -105,7 +105,7 @@ <eLiterals name="Instant"/> <eLiterals name="Repeated" value="1"/> </eClassifiers> - <eClassifiers xsi:type="ecore:EClass" name="Component"> + <eClassifiers xsi:type="ecore:EClass" name="GameObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="NeedPhysics"/> </eAnnotations> @@ -130,8 +130,8 @@ <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Game"> - <eStructuralFeatures xsi:type="ecore:EReference" name="components" upperBound="-1" - eType="#//Component" containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="gameobjects" upperBound="-1" + eType="#//GameObject" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="dataManager" eType="#//DataManager" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="guiElements" upperBound="-1" diff --git a/projectMDE/metamodel/unityGameDSL.aird b/projectMDE/metamodel/unityGameDSL.aird deleted file mode 100644 index 7429071d41f6be504c4479d9c7b82e424a717ca1..0000000000000000000000000000000000000000 --- a/projectMDE/metamodel/unityGameDSL.aird +++ /dev/null @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<viewpoint:DAnalysis xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:viewpoint="http://www.eclipse.org/sirius/1.1.0" uid="_FFhfUC_9Eey3jajMEAug1g" version="14.5.0.202104161500"/> diff --git a/projectMDE/model/Game_modded.xmi b/projectMDE/model/Game_modded.xmi index 822a2995b1b885202e86677b106cdb1fa1d44e2f..f04742f22de1a5cc5003bcbfd9245b76ff2cfc57 100644 --- a/projectMDE/model/Game_modded.xmi +++ b/projectMDE/model/Game_modded.xmi @@ -5,8 +5,8 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:unityGameDSL_modded="http://www.example.org/unityGameDSL_modded" xsi:schemaLocation="http://www.example.org/unityGameDSL_modded ../metamodel/gameDSL/unityGameDSL2_modded.ecore"> - <components - name="Character"> + <gameobjects + name="Charachter"> <movement xsi:type="unityGameDSL_modded:Sideways"/> <colision @@ -18,14 +18,32 @@ xsi:type="unityGameDSL_modded:Subtract" value="1" data="//@dataManager/@controls.0"/> + </colision> + <interaction + key="K"> + <execute + xsi:type="unityGameDSL_modded:ObjectCreation"> + <position>1</position> + <position>0</position> + </execute> + </interaction> + </gameobjects> + <gameobjects + name="Bullet"> + <colision + xsi:type="unityGameDSL_modded:RigidBody"/> + <colision + xsi:type="unityGameDSL_modded:Trigger" + collisionTAg="Enemy"> <execute xsi:type="unityGameDSL_modded:SelfDestruction"/> </colision> - <start xsi:type="unityGameDSL_modded:Define" - value="3" - data="//@dataManager/@controls.0"/> - </components> - <components + <start xsi:type="unityGameDSL_modded:ApplyForce"> + <direction>1</direction> + <direction>0</direction> + </start> + </gameobjects> + <gameobjects name="Enemy"> <colision xsi:type="unityGameDSL_modded:Trigger" @@ -37,21 +55,17 @@ <execute xsi:type="unityGameDSL_modded:SelfDestruction"/> </colision> - </components> - <components - name="Bullet"> <colision xsi:type="unityGameDSL_modded:Trigger" - collisionTAg="Enemy"> + collisionTAg="PlayerFoot"> + <execute + xsi:type="unityGameDSL_modded:Add" + value="100" + data="//@dataManager/@controls.1"/> <execute xsi:type="unityGameDSL_modded:SelfDestruction"/> </colision> - <start xsi:type="unityGameDSL_modded:ApplyForce" - intensity="20.0"> - <direction>1</direction> - <direction>0</direction> - </start> - </components> + </gameobjects> <dataManager name="Manager"> <controls diff --git a/projectMDE/transforms/UGameTransform_modded.qvto b/projectMDE/transforms/UGameTransform_modded.qvto index a521090be01a95b877693716cf2da65bf791044d..baae201b1976f3c8c57c39f417f900c690ec294b 100644 --- a/projectMDE/transforms/UGameTransform_modded.qvto +++ b/projectMDE/transforms/UGameTransform_modded.qvto @@ -72,13 +72,13 @@ mapping Unity::Game::Unity2Prog () : Prog::Program { var types : Set(InternalType); types += self.dataManager->map DataManager2Class(); types += self.guiElements->map GUIElement2Class(); - types += self.components-> map Component2Class(); + types += self.gameobjects-> map GameObj2Class(); // convert all types into files! files += types-> map Internal2File(); } -mapping Unity::Component::Component2Class() : Prog::Class { +mapping Unity::GameObject::GameObj2Class() : Prog::Class { identifier := self.name.firstToUpper(); var startMethod := object Prog::MethodDef { @@ -154,7 +154,6 @@ mapping Unity::Component::Component2Class() : Prog::Class { }; var collisionMethod := object MethodDef { identifier := "OnCollisionEnter2D"; - body += 'this.isGrounded = true;'; parameters += object Parameter { identifier := 'collision'; type := toType(collision); @@ -170,14 +169,12 @@ mapping Unity::Component::Component2Class() : Prog::Class { updateMethod.body += 'if (Input.GetButtownDown("Jump") && ' + isGrounded.identifier + ') { ' + rigidbody.identifier + '.AddForce(new Vector2(0,1) * ' + jumpIntensity.identifier + '); - ' + isGrounded.identifier + ' = false;'; + ' + isGrounded.identifier + ' = false; + }'; updateMethod.body += rigidbody.identifier + 'AddForce(new Vector2(' + horizontal.identifier + '* ' + speed.identifier + ', 0));'; - collisionMethod.body += 'DataManager manager = GameObject.Find("DataManager").GetComponent("DataManager") as DataManager;'; - collisionMethod.body += 'if (collider.gameObject.tag == "Enemy") - { - manager.setScore(manager.getScore() + 100); - Destroy(gameObject); - }'; + collisionMethod.body += 'if (collider.gameObject.tag == "Floor"){ + isGrounded = true; + }'; } else { var vertical := object MemberDef { identifier := 'vertical'; @@ -189,8 +186,7 @@ mapping Unity::Component::Component2Class() : Prog::Class { updateMethod.body += horizontal.identifier + ' = Input.GetAxisRaw("Horizontal");'; updateMethod.body += vertical.identifier + ' = Input.GetAxisRaw("Vertical");'; - updateMethod.body += - rigidbody.identifier + '.velocity = new Vector2(' + horizontal.identifier + ' * ' + speed.identifier + ', ' + vertical.identifier + ' * ' + speed.identifier + ');'; + updateMethod.body += rigidbody.identifier + '.velocity = new Vector2(' + horizontal.identifier + ' * ' + speed.identifier + ', ' + vertical.identifier + ' * ' + speed.identifier + ');'; }; }; @@ -203,7 +199,9 @@ mapping Unity::Component::Component2Class() : Prog::Class { identifier := "createdObject"+createCounter.toString(); createCounter := createCounter + 1; }; + members+=prefab; }; + log("created objects"+createCounter.toString()); createCounter := 0; -- triggers @@ -243,7 +241,7 @@ helper Unity::Actionkey::SetActionKeyBody(inout updatemethod:Prog::MethodDef,ino } helper Unity::Trigger::SetTriggerBody(inout triggermethod:Prog::MethodDef,inout creationCounter: Integer) { - triggermethod.body += 'if (colider.gameObject.tag == "PlayerFoot") + triggermethod.body += 'if (colider.gameObject.tag == "'+self.collisionTAg+'") {'; self.execute->forEach(action){ triggermethod.body += action.Action2Body(creationCounter); @@ -253,15 +251,15 @@ helper Unity::Trigger::SetTriggerBody(inout triggermethod:Prog::MethodDef,inout helper Unity::GameAction::Action2Body(inout creationCounter: Integer) : String { if (self.oclIsTypeOf(Unity::Add)){ var value =self.oclAsType(Unity::Add).value; - return '(GameObject.Find("DataManager").GetComponent("DataManager") as DataManager).setScore((GameObject.Find("DataManager").GetComponent("DataManager") as DataManager).getScore()+'+value+');'; + return '(GameObject.Find("DataManager").GetComponent("DataManager") as DataManager).set'+self.oclAsType(Unity::DataChange).data.name.firstToUpper()+'((GameObject.Find("DataManager").GetComponent("DataManager") as DataManager).get'+self.oclAsType(Unity::DataChange).data.name.firstToUpper()+'()+'+value+');'; }; if (self.oclIsTypeOf(Unity::Subtract)){ var value =self.oclAsType(Unity::Subtract).value; - return '(GameObject.Find("DataManager").GetComponent("DataManager") as DataManager).setScore((GameObject.Find("DataManager").GetComponent("DataManager") as DataManager).getScore()-'+value+');'; + return '(GameObject.Find("DataManager").GetComponent("DataManager") as DataManager).set'+self.oclAsType(Unity::DataChange).data.name.firstToUpper()+'((GameObject.Find("DataManager").GetComponent("DataManager") as DataManager).get'+self.oclAsType(Unity::DataChange).data.name.firstToUpper()+'()-'+value+');'; }; if (self.oclIsTypeOf(Unity::Define)){ var value =self.oclAsType(Unity::Define).value; - return '(GameObject.Find("DataManager").GetComponent("DataManager") as DataManager).setScore('+value+');'; + return '(GameObject.Find("DataManager").GetComponent("DataManager") as DataManager).set'+self.oclAsType(Unity::DataChange).data.name.firstToUpper()+'('+value+');'; }; if(self.oclIsTypeOf(Unity::SelfDestruction)){ return 'Destroy(gameObject);' @@ -288,7 +286,7 @@ mapping Unity::GUIElement::GUIElement2Class() : Prog::Class { var isTextual := self.oclIsTypeOf(Unity::TextDisplay); baseType := monoBehaviour; - identifier := "TextDisplay"+self.data.name.firstToUpper(); + var update := object MethodDef { accessability := AccessModifier::none; @@ -297,9 +295,10 @@ mapping Unity::GUIElement::GUIElement2Class() : Prog::Class { }; if (isTextual) { + identifier := "TextDisplay"+self.data.name.firstToUpper(); var value := object MemberDef { accessability := AccessModifier::public; - type := toType(EPrimitiveType::string); + type := toType(text); identifier := 'text'; }; var prefix := object MemberDef { @@ -312,6 +311,7 @@ mapping Unity::GUIElement::GUIElement2Class() : Prog::Class { update.body += value.identifier + '.text = ' + prefix.identifier + ' + GameObject.Find("DataManager").GetComponent("DataManager") as DataManager).Get'+self.data.name.firstToUpper()+"()"; update.body += 'text.text = standardText + GameObject.Find("DataManager").GetComponent("DataManager") as DataManager).Get'+self.data.name.firstToUpper()+"()"; } else { + identifier := "BarDisplay"+self.data.name.firstToUpper(); var max := object MemberDef { accessability := AccessModifier::public; type := toType(EPrimitiveType::float); @@ -350,7 +350,7 @@ mapping Unity::DataManager::DataManager2Class () : Prog::Class { } mapping Unity::Data::Data2Member(): Prog::MemberDef{ - accessability := AccessModifier::private; + accessability := AccessModifier::public; type := toType(self.type); identifier := self.name; } @@ -368,7 +368,7 @@ mapping Unity::Data::Data2Set(): Prog::MethodDef{ } } accessability := AccessModifier::public; - returnType := toType(self.type); + returnType := toType(EPrimitiveType::void); identifier := "Set"+self.name.firstToUpper(); parameters += parameter; body += 'this.' + self.name + ' = value;';