diff --git a/APL2.1/TP04/Segment/Segment.class b/APL2.1/TP04/Segment/Segment.class
new file mode 100644
index 0000000..2af77ee
Binary files /dev/null and b/APL2.1/TP04/Segment/Segment.class differ
diff --git a/APL2.1/TP04/Segment/Segment.java b/APL2.1/TP04/Segment/Segment.java
new file mode 100644
index 0000000..75450e4
--- /dev/null
+++ b/APL2.1/TP04/Segment/Segment.java
@@ -0,0 +1,42 @@
+import java.awt.Point;
+
+public class Segment {
+    private Point start;
+    private Point end;
+
+    public Segment(Point p1, Point p2) {
+        start = p1;
+        end = p2;
+    }
+
+    public Segment(int x1, int y1, int x2, int y2) {
+        start = new Point(x1, y1);
+        end = new Point(x2, y2);
+    }
+
+    public double length() {
+        return Math.sqrt(Math.pow(end.x - start.x, 2) + Math.pow(end.y - start.y, 2));
+    }
+
+    public void setStart(Point p) {
+        start = p;
+    }
+
+    public void setStart(int x, int y) {
+        start.x = x;
+        start.y = y;
+    }
+
+    public void setEnd(Point p) {
+        end = p;
+    }
+
+    public void setEnd(int x, int y) {
+        end.x = x;
+        end.y = y;
+    }
+
+    public boolean equals(Segment s2) {
+        return this.start == s2.start && this.end == s2.end; 
+    }
+}
\ No newline at end of file
diff --git a/APL2.1/TP04/Segment/TestSegment.class b/APL2.1/TP04/Segment/TestSegment.class
new file mode 100644
index 0000000..4fbbecd
Binary files /dev/null and b/APL2.1/TP04/Segment/TestSegment.class differ
diff --git a/APL2.1/TP04/Segment/TestSegment.java b/APL2.1/TP04/Segment/TestSegment.java
new file mode 100644
index 0000000..41fb3ea
--- /dev/null
+++ b/APL2.1/TP04/Segment/TestSegment.java
@@ -0,0 +1,8 @@
+public class TestSegment {
+    public static void main(String[] args) {
+        Segment s = new Segment(0, 10, 10, 0);
+        Segment s2 = new Segment(0, 10, 10, 0);
+
+        System.out.println(s.equals(s2));
+    }
+}
\ No newline at end of file
diff --git a/APL2.1/TP04/segment.mdj b/APL2.1/TP04/segment.mdj
new file mode 100644
index 0000000..0bfd9ac
--- /dev/null
+++ b/APL2.1/TP04/segment.mdj
@@ -0,0 +1,752 @@
+{
+	"_type": "Project",
+	"_id": "AAAAAAFF+h6SjaM2Hec=",
+	"name": "Untitled",
+	"ownedElements": [
+		{
+			"_type": "UMLModel",
+			"_id": "AAAAAAFF+qBWK6M3Z8Y=",
+			"_parent": {
+				"$ref": "AAAAAAFF+h6SjaM2Hec="
+			},
+			"name": "Model",
+			"ownedElements": [
+				{
+					"_type": "UMLClassDiagram",
+					"_id": "AAAAAAFF+qBtyKM79qY=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Main",
+					"defaultDiagram": true,
+					"ownedViews": [
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAF++P9mLDGlT9M=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAF++P9mKjGjLlo="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++P9mLTGmxNI=",
+									"_parent": {
+										"$ref": "AAAAAAF++P9mLDGlT9M="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P9mKjGjLlo="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++P9mLTGnnpc=",
+											"_parent": {
+												"$ref": "AAAAAAF++P9mLTGmxNI="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"top": -16,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++P9mLTGo7jo=",
+											"_parent": {
+												"$ref": "AAAAAAF++P9mLTGmxNI="
+											},
+											"font": "Arial;13;1",
+											"left": 437,
+											"top": 247,
+											"width": 190,
+											"height": 13,
+											"text": "Point"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++P9mLTGpofU=",
+											"_parent": {
+												"$ref": "AAAAAAF++P9mLTGmxNI="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"top": -16,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++P9mLTGqyOw=",
+											"_parent": {
+												"$ref": "AAAAAAF++P9mLTGmxNI="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"top": -16,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 432,
+									"top": 240,
+									"width": 200,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++P9mLTGnnpc="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++P9mLTGo7jo="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++P9mLTGpofU="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++P9mLTGqyOw="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++P9mLjGrfh4=",
+									"_parent": {
+										"$ref": "AAAAAAF++P9mLDGlT9M="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P9mKjGjLlo="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAF++P94fDHQmic=",
+											"_parent": {
+												"$ref": "AAAAAAF++P9mLjGrfh4="
+											},
+											"model": {
+												"$ref": "AAAAAAF++P94YzHNmxU="
+											},
+											"font": "Arial;13;0",
+											"left": 437,
+											"top": 270,
+											"width": 190,
+											"height": 13,
+											"text": "+int: x",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAF++P+eLjHXd+0=",
+											"_parent": {
+												"$ref": "AAAAAAF++P9mLjGrfh4="
+											},
+											"model": {
+												"$ref": "AAAAAAF++P+eIjHU7RM="
+											},
+											"font": "Arial;13;0",
+											"left": 437,
+											"top": 285,
+											"width": 190,
+											"height": 13,
+											"text": "+int: y",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 432,
+									"top": 265,
+									"width": 200,
+									"height": 38
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++P9mLjGsVuo=",
+									"_parent": {
+										"$ref": "AAAAAAF++P9mLDGlT9M="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P9mKjGjLlo="
+									},
+									"subViews": [
+										{
+											"_type": "UMLOperationView",
+											"_id": "AAAAAAF++P/iFzHebjY=",
+											"_parent": {
+												"$ref": "AAAAAAF++P9mLjGsVuo="
+											},
+											"model": {
+												"$ref": "AAAAAAF++P/iAzHb/6k="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 437,
+											"top": 300,
+											"width": 190,
+											"height": 13,
+											"text": "+Point getLocation()",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLOperationView",
+											"_id": "AAAAAAF++QFuCDHw7GQ=",
+											"_parent": {
+												"$ref": "AAAAAAF++P9mLjGsVuo="
+											},
+											"model": {
+												"$ref": "AAAAAAF++QFt/THtfRM="
+											},
+											"font": "Arial;13;0",
+											"left": 437,
+											"top": 310,
+											"width": 190,
+											"height": 13,
+											"text": "+Point getLocation()",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLOperationView",
+											"_id": "AAAAAAF++QGMPDH3DPI=",
+											"_parent": {
+												"$ref": "AAAAAAF++P9mLjGsVuo="
+											},
+											"model": {
+												"$ref": "AAAAAAF++QGMNzH0Llc="
+											},
+											"font": "Arial;13;0",
+											"left": 437,
+											"top": 325,
+											"width": 190,
+											"height": 13,
+											"text": "+void translate()",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLOperationView",
+											"_id": "AAAAAAF++QHkmzICe8I=",
+											"_parent": {
+												"$ref": "AAAAAAF++P9mLjGsVuo="
+											},
+											"model": {
+												"$ref": "AAAAAAF++QHkljH/XKc="
+											},
+											"font": "Arial;13;0",
+											"left": 437,
+											"top": 340,
+											"width": 190,
+											"height": 13,
+											"text": "+double distance()",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLOperationView",
+											"_id": "AAAAAAF++QKn9TIW4dI=",
+											"_parent": {
+												"$ref": "AAAAAAF++P9mLjGsVuo="
+											},
+											"model": {
+												"$ref": "AAAAAAF++QKn5TITu/k="
+											},
+											"font": "Arial;13;0",
+											"left": 437,
+											"top": 355,
+											"width": 190,
+											"height": 13,
+											"text": "+double getX()",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLOperationView",
+											"_id": "AAAAAAF++QLwbzIdE7U=",
+											"_parent": {
+												"$ref": "AAAAAAF++P9mLjGsVuo="
+											},
+											"model": {
+												"$ref": "AAAAAAF++QLwaTIajQ4="
+											},
+											"font": "Arial;13;0",
+											"left": 437,
+											"top": 370,
+											"width": 190,
+											"height": 13,
+											"text": "+double getY()",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 432,
+									"top": 303,
+									"width": 200,
+									"height": 85
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++P9mLjGtkSQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++P9mLDGlT9M="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P9mKjGjLlo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"top": -8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++P9mLjGuD7g=",
+									"_parent": {
+										"$ref": "AAAAAAF++P9mLDGlT9M="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P9mKjGjLlo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"top": -8,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 432,
+							"top": 240,
+							"width": 200,
+							"height": 148,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++P9mLTGmxNI="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++P9mLjGrfh4="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++P9mLjGsVuo="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++P9mLjGtkSQ="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++P9mLjGuD7g="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAF++QO9xzIm4q4=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAF++QO9xjIkuQo="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++QO9xzIn1FA=",
+									"_parent": {
+										"$ref": "AAAAAAF++QO9xzIm4q4="
+									},
+									"model": {
+										"$ref": "AAAAAAF++QO9xjIkuQo="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++QO9xzIo5jc=",
+											"_parent": {
+												"$ref": "AAAAAAF++QO9xzIn1FA="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++QO9xzIpi6A=",
+											"_parent": {
+												"$ref": "AAAAAAF++QO9xzIn1FA="
+											},
+											"font": "Arial;13;1",
+											"left": 269,
+											"top": 487,
+											"width": 142,
+											"height": 13,
+											"text": "Segment"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++QO9xzIqLoo=",
+											"_parent": {
+												"$ref": "AAAAAAF++QO9xzIn1FA="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++QO9yDIrWhg=",
+											"_parent": {
+												"$ref": "AAAAAAF++QO9xzIn1FA="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 264,
+									"top": 480,
+									"width": 152,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++QO9xzIo5jc="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++QO9xzIpi6A="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++QO9xzIqLoo="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++QO9yDIrWhg="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++QO9yDIsFdg=",
+									"_parent": {
+										"$ref": "AAAAAAF++QO9xzIm4q4="
+									},
+									"model": {
+										"$ref": "AAAAAAF++QO9xjIkuQo="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAF++QPKyDJR07g=",
+											"_parent": {
+												"$ref": "AAAAAAF++QO9yDIsFdg="
+											},
+											"model": {
+												"$ref": "AAAAAAF++QPKwzJOnpw="
+											},
+											"font": "Arial;13;0",
+											"left": 269,
+											"top": 510,
+											"width": 142,
+											"height": 13,
+											"text": "+Point: p1",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAF++QPdcTJYUsw=",
+											"_parent": {
+												"$ref": "AAAAAAF++QO9yDIsFdg="
+											},
+											"model": {
+												"$ref": "AAAAAAF++QPdazJVM+8="
+											},
+											"font": "Arial;13;0",
+											"left": 269,
+											"top": 525,
+											"width": 142,
+											"height": 13,
+											"text": "+Point: p2",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 264,
+									"top": 505,
+									"width": 152,
+									"height": 38
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++QO9yDItBjI=",
+									"_parent": {
+										"$ref": "AAAAAAF++QO9xzIm4q4="
+									},
+									"model": {
+										"$ref": "AAAAAAF++QO9xjIkuQo="
+									},
+									"subViews": [
+										{
+											"_type": "UMLOperationView",
+											"_id": "AAAAAAF++QP8OTJfnr0=",
+											"_parent": {
+												"$ref": "AAAAAAF++QO9yDItBjI="
+											},
+											"model": {
+												"$ref": "AAAAAAF++QP8MDJc0ts="
+											},
+											"font": "Arial;13;0",
+											"left": 269,
+											"top": 548,
+											"width": 142,
+											"height": 13,
+											"text": "+double length()",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLOperationView",
+											"_id": "AAAAAAF++QQwWjJmz5M=",
+											"_parent": {
+												"$ref": "AAAAAAF++QO9yDItBjI="
+											},
+											"model": {
+												"$ref": "AAAAAAF++QQwVDJjrS0="
+											},
+											"font": "Arial;13;0",
+											"left": 269,
+											"top": 563,
+											"width": 142,
+											"height": 13,
+											"text": "+void setStart()",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLOperationView",
+											"_id": "AAAAAAF++QRxwzJtsEc=",
+											"_parent": {
+												"$ref": "AAAAAAF++QO9yDItBjI="
+											},
+											"model": {
+												"$ref": "AAAAAAF++QRxvjJqWkA="
+											},
+											"font": "Arial;13;0",
+											"left": 269,
+											"top": 578,
+											"width": 142,
+											"height": 13,
+											"text": "+void setEnd()",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLOperationView",
+											"_id": "AAAAAAF++QSOFzJ017U=",
+											"_parent": {
+												"$ref": "AAAAAAF++QO9yDItBjI="
+											},
+											"model": {
+												"$ref": "AAAAAAF++QSOEjJxMuI="
+											},
+											"font": "Arial;13;0",
+											"left": 269,
+											"top": 593,
+											"width": 142,
+											"height": 13,
+											"text": "+boolean equals()",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 264,
+									"top": 543,
+									"width": 152,
+									"height": 68
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++QO9yDIuS/M=",
+									"_parent": {
+										"$ref": "AAAAAAF++QO9xzIm4q4="
+									},
+									"model": {
+										"$ref": "AAAAAAF++QO9xjIkuQo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++QO9yDIvlzs=",
+									"_parent": {
+										"$ref": "AAAAAAF++QO9xzIm4q4="
+									},
+									"model": {
+										"$ref": "AAAAAAF++QO9xjIkuQo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 264,
+							"top": 480,
+							"width": 152,
+							"height": 131,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++QO9xzIn1FA="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++QO9yDIsFdg="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++QO9yDItBjI="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++QO9yDIuS/M="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++QO9yDIvlzs="
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAF++P9mKjGjLlo=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Point",
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAF++P94YzHNmxU=",
+							"_parent": {
+								"$ref": "AAAAAAF++P9mKjGjLlo="
+							},
+							"name": "int",
+							"type": "x"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAF++P+eIjHU7RM=",
+							"_parent": {
+								"$ref": "AAAAAAF++P9mKjGjLlo="
+							},
+							"name": "int",
+							"type": "y"
+						}
+					],
+					"operations": [
+						{
+							"_type": "UMLOperation",
+							"_id": "AAAAAAF++P/iAzHb/6k=",
+							"_parent": {
+								"$ref": "AAAAAAF++P9mKjGjLlo="
+							},
+							"name": "Point getLocation"
+						},
+						{
+							"_type": "UMLOperation",
+							"_id": "AAAAAAF++QFt/THtfRM=",
+							"_parent": {
+								"$ref": "AAAAAAF++P9mKjGjLlo="
+							},
+							"name": "Point getLocation"
+						},
+						{
+							"_type": "UMLOperation",
+							"_id": "AAAAAAF++QGMNzH0Llc=",
+							"_parent": {
+								"$ref": "AAAAAAF++P9mKjGjLlo="
+							},
+							"name": "void translate"
+						},
+						{
+							"_type": "UMLOperation",
+							"_id": "AAAAAAF++QHkljH/XKc=",
+							"_parent": {
+								"$ref": "AAAAAAF++P9mKjGjLlo="
+							},
+							"name": "double distance"
+						},
+						{
+							"_type": "UMLOperation",
+							"_id": "AAAAAAF++QKn5TITu/k=",
+							"_parent": {
+								"$ref": "AAAAAAF++P9mKjGjLlo="
+							},
+							"name": "double getX"
+						},
+						{
+							"_type": "UMLOperation",
+							"_id": "AAAAAAF++QLwaTIajQ4=",
+							"_parent": {
+								"$ref": "AAAAAAF++P9mKjGjLlo="
+							},
+							"name": "double getY"
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAF++QO9xjIkuQo=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Segment",
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAF++QPKwzJOnpw=",
+							"_parent": {
+								"$ref": "AAAAAAF++QO9xjIkuQo="
+							},
+							"name": "Point",
+							"type": "p1"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAF++QPdazJVM+8=",
+							"_parent": {
+								"$ref": "AAAAAAF++QO9xjIkuQo="
+							},
+							"name": "Point",
+							"type": "p2"
+						}
+					],
+					"operations": [
+						{
+							"_type": "UMLOperation",
+							"_id": "AAAAAAF++QP8MDJc0ts=",
+							"_parent": {
+								"$ref": "AAAAAAF++QO9xjIkuQo="
+							},
+							"name": "double length"
+						},
+						{
+							"_type": "UMLOperation",
+							"_id": "AAAAAAF++QQwVDJjrS0=",
+							"_parent": {
+								"$ref": "AAAAAAF++QO9xjIkuQo="
+							},
+							"name": "void setStart"
+						},
+						{
+							"_type": "UMLOperation",
+							"_id": "AAAAAAF++QRxvjJqWkA=",
+							"_parent": {
+								"$ref": "AAAAAAF++QO9xjIkuQo="
+							},
+							"name": "void setEnd"
+						},
+						{
+							"_type": "UMLOperation",
+							"_id": "AAAAAAF++QSOEjJxMuI=",
+							"_parent": {
+								"$ref": "AAAAAAF++QO9xjIkuQo="
+							},
+							"name": "boolean equals"
+						}
+					]
+				}
+			]
+		}
+	]
+}
\ No newline at end of file
diff --git a/APL2.1/TP04/site web.mdj b/APL2.1/TP04/site web.mdj
new file mode 100644
index 0000000..e327c6f
--- /dev/null
+++ b/APL2.1/TP04/site web.mdj	
@@ -0,0 +1,2820 @@
+{
+	"_type": "Project",
+	"_id": "AAAAAAFF+h6SjaM2Hec=",
+	"name": "Untitled",
+	"ownedElements": [
+		{
+			"_type": "UMLModel",
+			"_id": "AAAAAAFF+qBWK6M3Z8Y=",
+			"_parent": {
+				"$ref": "AAAAAAFF+h6SjaM2Hec="
+			},
+			"name": "Model",
+			"ownedElements": [
+				{
+					"_type": "UMLClassDiagram",
+					"_id": "AAAAAAFF+qBtyKM79qY=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Main",
+					"defaultDiagram": true
+				}
+			]
+		},
+		{
+			"_type": "UMLModel",
+			"_id": "AAAAAAF++NQFE9WWrIo=",
+			"_parent": {
+				"$ref": "AAAAAAFF+h6SjaM2Hec="
+			},
+			"name": "Model1",
+			"ownedElements": [
+				{
+					"_type": "UMLUseCaseDiagram",
+					"_id": "AAAAAAF++NQFFNWXdfw=",
+					"_parent": {
+						"$ref": "AAAAAAF++NQFE9WWrIo="
+					},
+					"name": "UseCaseDiagram1",
+					"ownedViews": [
+						{
+							"_type": "UMLUseCaseSubjectView",
+							"_id": "AAAAAAF++NRYWtXGeV0=",
+							"_parent": {
+								"$ref": "AAAAAAF++NQFFNWXdfw="
+							},
+							"model": {
+								"$ref": "AAAAAAF++NRYWdXE6Iw="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++NRYWtXH1W4=",
+									"_parent": {
+										"$ref": "AAAAAAF++NRYWtXGeV0="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NRYWdXE6Iw="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++NRYWtXI+sI=",
+											"_parent": {
+												"$ref": "AAAAAAF++NRYWtXH1W4="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++NRYWtXJ+k0=",
+											"_parent": {
+												"$ref": "AAAAAAF++NRYWtXH1W4="
+											},
+											"font": "Arial;13;1",
+											"left": 261,
+											"top": 87,
+											"width": 695,
+											"height": 13,
+											"text": "Site Web Journal"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++NRYWtXKCf0=",
+											"_parent": {
+												"$ref": "AAAAAAF++NRYWtXH1W4="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++NRYWtXLuBE=",
+											"_parent": {
+												"$ref": "AAAAAAF++NRYWtXH1W4="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 256,
+									"top": 80,
+									"width": 705,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++NRYWtXI+sI="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++NRYWtXJ+k0="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++NRYWtXKCf0="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++NRYWtXLuBE="
+									}
+								}
+							],
+							"font": "Arial;13;0",
+							"left": 256,
+							"top": 80,
+							"width": 705,
+							"height": 481,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++NRYWtXH1W4="
+							}
+						},
+						{
+							"_type": "UMLActorView",
+							"_id": "AAAAAAF++NV52NXgoeU=",
+							"_parent": {
+								"$ref": "AAAAAAF++NQFFNWXdfw="
+							},
+							"model": {
+								"$ref": "AAAAAAF++NV52NXe5OU="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++NV52NXhxT8=",
+									"_parent": {
+										"$ref": "AAAAAAF++NV52NXgoeU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NV52NXe5OU="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++NV52NXizfk=",
+											"_parent": {
+												"$ref": "AAAAAAF++NV52NXhxT8="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++NV52NXj4jE=",
+											"_parent": {
+												"$ref": "AAAAAAF++NV52NXhxT8="
+											},
+											"font": "Arial;13;1",
+											"left": 125,
+											"top": 293,
+											"width": 62.841796875,
+											"height": 13,
+											"text": "Internaute"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++NV52NXk4NU=",
+											"_parent": {
+												"$ref": "AAAAAAF++NV52NXhxT8="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++NV52NXl+/M=",
+											"_parent": {
+												"$ref": "AAAAAAF++NV52NXhxT8="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 120,
+									"top": 286,
+									"width": 72.841796875,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++NV52NXizfk="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++NV52NXj4jE="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++NV52NXk4NU="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++NV52NXl+/M="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++NV52NXmKjo=",
+									"_parent": {
+										"$ref": "AAAAAAF++NV52NXgoeU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NV52NXe5OU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++NV52dXniRc=",
+									"_parent": {
+										"$ref": "AAAAAAF++NV52NXgoeU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NV52NXe5OU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++NV52dXoabE=",
+									"_parent": {
+										"$ref": "AAAAAAF++NV52NXgoeU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NV52NXe5OU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++NV52dXpaEs=",
+									"_parent": {
+										"$ref": "AAAAAAF++NV52NXgoeU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NV52NXe5OU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 120,
+							"top": 232,
+							"width": 72.841796875,
+							"height": 80,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++NV52NXhxT8="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++NV52NXmKjo="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++NV52dXniRc="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++NV52dXoabE="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++NV52dXpaEs="
+							}
+						},
+						{
+							"_type": "UMLUseCaseView",
+							"_id": "AAAAAAF++NX+6tYKASM=",
+							"_parent": {
+								"$ref": "AAAAAAF++NQFFNWXdfw="
+							},
+							"model": {
+								"$ref": "AAAAAAF++NX+6tYIOZk="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++NX+6tYLMVc=",
+									"_parent": {
+										"$ref": "AAAAAAF++NX+6tYKASM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NX+6tYIOZk="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++NX+6tYMNy0=",
+											"_parent": {
+												"$ref": "AAAAAAF++NX+6tYLMVc="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++NX+6tYNijI=",
+											"_parent": {
+												"$ref": "AAAAAAF++NX+6tYLMVc="
+											},
+											"font": "Arial;13;1",
+											"left": 417,
+											"top": 210,
+											"width": 84,
+											"height": 13,
+											"text": "Lire un article"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++NX+6tYO9N8=",
+											"_parent": {
+												"$ref": "AAAAAAF++NX+6tYLMVc="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++NX+6tYPxJY=",
+											"_parent": {
+												"$ref": "AAAAAAF++NX+6tYLMVc="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 412,
+									"top": 203,
+									"width": 95.2490234375,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++NX+6tYMNy0="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++NX+6tYNijI="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++NX+6tYO9N8="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++NX+6tYPxJY="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++NX+6tYQrbg=",
+									"_parent": {
+										"$ref": "AAAAAAF++NX+6tYKASM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NX+6tYIOZk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++NX+6tYR+9s=",
+									"_parent": {
+										"$ref": "AAAAAAF++NX+6tYKASM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NX+6tYIOZk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++NX+69YSTTQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++NX+6tYKASM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NX+6tYIOZk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++NX+69YTbzM=",
+									"_parent": {
+										"$ref": "AAAAAAF++NX+6tYKASM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NX+6tYIOZk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLExtensionPointCompartmentView",
+									"_id": "AAAAAAF++NX+69YUh3I=",
+									"_parent": {
+										"$ref": "AAAAAAF++NX+6tYKASM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NX+6tYIOZk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 392,
+							"top": 176,
+							"width": 134,
+							"height": 80,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++NX+6tYLMVc="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++NX+6tYQrbg="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++NX+6tYR+9s="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++NX+69YSTTQ="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++NX+69YTbzM="
+							},
+							"extensionPointCompartment": {
+								"$ref": "AAAAAAF++NX+69YUh3I="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAF++NjyJNY6cdA=",
+							"_parent": {
+								"$ref": "AAAAAAF++NQFFNWXdfw="
+							},
+							"model": {
+								"$ref": "AAAAAAF++NjyI9Y2CSw="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++NjyJNY7kik=",
+									"_parent": {
+										"$ref": "AAAAAAF++NjyJNY6cdA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NjyI9Y2CSw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 289,
+									"top": 224,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++NjyJNY6cdA="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++NjyJNY8IAE=",
+									"_parent": {
+										"$ref": "AAAAAAF++NjyJNY6cdA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NjyI9Y2CSw="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 286,
+									"top": 209,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++NjyJNY6cdA="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++NjyJNY9ZJE=",
+									"_parent": {
+										"$ref": "AAAAAAF++NjyJNY6cdA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NjyI9Y2CSw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 294,
+									"top": 253,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++NjyJNY6cdA="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++NjyJNY+V6I=",
+									"_parent": {
+										"$ref": "AAAAAAF++NjyJNY6cdA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NjyI9Y3IB4="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 215,
+									"top": 238,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++NjyJNY6cdA="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++NjyJdY/+Gg=",
+									"_parent": {
+										"$ref": "AAAAAAF++NjyJNY6cdA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NjyI9Y3IB4="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 215,
+									"top": 225,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++NjyJNY6cdA="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++NjyJdZAFlU=",
+									"_parent": {
+										"$ref": "AAAAAAF++NjyJNY6cdA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NjyI9Y3IB4="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 216,
+									"top": 266,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++NjyJNY6cdA="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++NjyJdZB1VI=",
+									"_parent": {
+										"$ref": "AAAAAAF++NjyJNY6cdA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NjyI9Y4cbU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 362,
+									"top": 211,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++NjyJNY6cdA="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++NjyJdZC9S4=",
+									"_parent": {
+										"$ref": "AAAAAAF++NjyJNY6cdA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NjyI9Y4cbU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 358,
+									"top": 198,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++NjyJNY6cdA="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++NjyJdZDnVg=",
+									"_parent": {
+										"$ref": "AAAAAAF++NjyJNY6cdA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NjyI9Y4cbU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 372,
+									"top": 237,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++NjyJNY6cdA="
+									}
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++NjyJdZET1g=",
+									"_parent": {
+										"$ref": "AAAAAAF++NjyJNY6cdA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NjyI9Y3IB4="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++NjyJdZFYnM=",
+									"_parent": {
+										"$ref": "AAAAAAF++NjyJNY6cdA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NjyI9Y4cbU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++NX+6tYKASM="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++NV52NXgoeU="
+							},
+							"lineStyle": 1,
+							"points": "193:264;391:227",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++NjyJNY7kik="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++NjyJNY8IAE="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++NjyJNY9ZJE="
+							},
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAF++NjyJNY+V6I="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAF++NjyJdY/+Gg="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAF++NjyJdZAFlU="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAF++NjyJdZB1VI="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAF++NjyJdZC9S4="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAF++NjyJdZDnVg="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAF++NjyJdZET1g="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAF++NjyJdZFYnM="
+							}
+						},
+						{
+							"_type": "UMLActorView",
+							"_id": "AAAAAAF++Nk9HNaBJx8=",
+							"_parent": {
+								"$ref": "AAAAAAF++NQFFNWXdfw="
+							},
+							"model": {
+								"$ref": "AAAAAAF++Nk9HNZ/QKA="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++Nk9HNaC6yQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++Nk9HNaBJx8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Nk9HNZ/QKA="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Nk9HNaDMAk=",
+											"_parent": {
+												"$ref": "AAAAAAF++Nk9HNaC6yQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -48,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Nk9HNaEcXQ=",
+											"_parent": {
+												"$ref": "AAAAAAF++Nk9HNaC6yQ="
+											},
+											"font": "Arial;13;1",
+											"left": 133,
+											"top": 477,
+											"width": 48.3818359375,
+											"height": 13,
+											"text": "Abonné"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Nk9HNaFRHY=",
+											"_parent": {
+												"$ref": "AAAAAAF++Nk9HNaC6yQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -48,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Nk9HNaGnGQ=",
+											"_parent": {
+												"$ref": "AAAAAAF++Nk9HNaC6yQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -48,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 128,
+									"top": 470,
+									"width": 58.3818359375,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++Nk9HNaDMAk="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++Nk9HNaEcXQ="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++Nk9HNaFRHY="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++Nk9HNaGnGQ="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++Nk9HNaHa2c=",
+									"_parent": {
+										"$ref": "AAAAAAF++Nk9HNaBJx8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Nk9HNZ/QKA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -24,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++Nk9HNaIHqM=",
+									"_parent": {
+										"$ref": "AAAAAAF++Nk9HNaBJx8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Nk9HNZ/QKA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -24,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++Nk9HNaJfY4=",
+									"_parent": {
+										"$ref": "AAAAAAF++Nk9HNaBJx8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Nk9HNZ/QKA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -24,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++Nk9HdaK+3c=",
+									"_parent": {
+										"$ref": "AAAAAAF++Nk9HNaBJx8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Nk9HNZ/QKA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -24,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 128,
+							"top": 416,
+							"width": 58.3818359375,
+							"height": 80,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++Nk9HNaC6yQ="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++Nk9HNaHa2c="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++Nk9HNaIHqM="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++Nk9HNaJfY4="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++Nk9HdaK+3c="
+							}
+						},
+						{
+							"_type": "UMLGeneralizationView",
+							"_id": "AAAAAAF++NmBQdbZt2Q=",
+							"_parent": {
+								"$ref": "AAAAAAF++NQFFNWXdfw="
+							},
+							"model": {
+								"$ref": "AAAAAAF++NmBQNbXqGY="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++NmBQdbarsI=",
+									"_parent": {
+										"$ref": "AAAAAAF++NmBQdbZt2Q="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NmBQNbXqGY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 140,
+									"top": 356,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++NmBQdbZt2Q="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++NmBQdbb7us=",
+									"_parent": {
+										"$ref": "AAAAAAF++NmBQdbZt2Q="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NmBQNbXqGY="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 125,
+									"top": 356,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++NmBQdbZt2Q="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++NmBQdbcbss=",
+									"_parent": {
+										"$ref": "AAAAAAF++NmBQdbZt2Q="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NmBQNbXqGY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 169,
+									"top": 357,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++NmBQdbZt2Q="
+									},
+									"edgePosition": 1
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++NV52NXgoeU="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++Nk9HNaBJx8="
+							},
+							"lineStyle": 1,
+							"points": "156:415;155:312",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++NmBQdbarsI="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++NmBQdbb7us="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++NmBQdbcbss="
+							}
+						},
+						{
+							"_type": "UMLUseCaseView",
+							"_id": "AAAAAAF++NnEgNb/VVQ=",
+							"_parent": {
+								"$ref": "AAAAAAF++NQFFNWXdfw="
+							},
+							"model": {
+								"$ref": "AAAAAAF++NnEgNb9zsk="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++NnEgdcAnKo=",
+									"_parent": {
+										"$ref": "AAAAAAF++NnEgNb/VVQ="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NnEgNb9zsk="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++NnEgdcBAyM=",
+											"_parent": {
+												"$ref": "AAAAAAF++NnEgdcAnKo="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -16,
+											"top": 128,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++NnEgdcCVK0=",
+											"_parent": {
+												"$ref": "AAAAAAF++NnEgdcAnKo="
+											},
+											"font": "Arial;13;1",
+											"left": 419.5,
+											"top": 486.5,
+											"width": 134,
+											"height": 13,
+											"text": "Lire un article abonné"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++NnEgdcDIbA=",
+											"_parent": {
+												"$ref": "AAAAAAF++NnEgdcAnKo="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -16,
+											"top": 128,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++NnEgdcEzvY=",
+											"_parent": {
+												"$ref": "AAAAAAF++NnEgdcAnKo="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -16,
+											"top": 128,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 414.5,
+									"top": 479.5,
+									"width": 145.08447265625,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++NnEgdcBAyM="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++NnEgdcCVK0="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++NnEgdcDIbA="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++NnEgdcEzvY="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++NnEgdcFhog=",
+									"_parent": {
+										"$ref": "AAAAAAF++NnEgNb/VVQ="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NnEgNb9zsk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -8,
+									"top": 64,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++NnEgdcGA4U=",
+									"_parent": {
+										"$ref": "AAAAAAF++NnEgNb/VVQ="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NnEgNb9zsk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -8,
+									"top": 64,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++NnEgdcHfCg=",
+									"_parent": {
+										"$ref": "AAAAAAF++NnEgNb/VVQ="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NnEgNb9zsk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -8,
+									"top": 64,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++NnEgdcIStI=",
+									"_parent": {
+										"$ref": "AAAAAAF++NnEgNb/VVQ="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NnEgNb9zsk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -8,
+									"top": 64,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLExtensionPointCompartmentView",
+									"_id": "AAAAAAF++NnEgdcJZH0=",
+									"_parent": {
+										"$ref": "AAAAAAF++NnEgNb/VVQ="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NnEgNb9zsk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -8,
+									"top": 64,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 384,
+							"top": 448,
+							"width": 205,
+							"height": 89,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++NnEgdcAnKo="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++NnEgdcFhog="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++NnEgdcGA4U="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++NnEgdcHfCg="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++NnEgdcIStI="
+							},
+							"extensionPointCompartment": {
+								"$ref": "AAAAAAF++NnEgdcJZH0="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAF++No2JNdnb+I=",
+							"_parent": {
+								"$ref": "AAAAAAF++NQFFNWXdfw="
+							},
+							"model": {
+								"$ref": "AAAAAAF++No2JNdjiz4="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++No2JNdoABA=",
+									"_parent": {
+										"$ref": "AAAAAAF++No2JNdnb+I="
+									},
+									"model": {
+										"$ref": "AAAAAAF++No2JNdjiz4="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 285,
+									"top": 448,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++No2JNdnb+I="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++No2JNdpJMc=",
+									"_parent": {
+										"$ref": "AAAAAAF++No2JNdnb+I="
+									},
+									"model": {
+										"$ref": "AAAAAAF++No2JNdjiz4="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 287,
+									"top": 433,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++No2JNdnb+I="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++No2JNdqU+0=",
+									"_parent": {
+										"$ref": "AAAAAAF++No2JNdnb+I="
+									},
+									"model": {
+										"$ref": "AAAAAAF++No2JNdjiz4="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 282,
+									"top": 477,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++No2JNdnb+I="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++No2JNdrLG4=",
+									"_parent": {
+										"$ref": "AAAAAAF++No2JNdnb+I="
+									},
+									"model": {
+										"$ref": "AAAAAAF++No2JNdk+Kk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 213,
+									"top": 439,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++No2JNdnb+I="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++No2JNdsx3Y=",
+									"_parent": {
+										"$ref": "AAAAAAF++No2JNdnb+I="
+									},
+									"model": {
+										"$ref": "AAAAAAF++No2JNdk+Kk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 217,
+									"top": 427,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++No2JNdnb+I="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++No2JNdtzYE=",
+									"_parent": {
+										"$ref": "AAAAAAF++No2JNdnb+I="
+									},
+									"model": {
+										"$ref": "AAAAAAF++No2JNdk+Kk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 206,
+									"top": 466,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++No2JNdnb+I="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++No2JNdu3vc=",
+									"_parent": {
+										"$ref": "AAAAAAF++No2JNdnb+I="
+									},
+									"model": {
+										"$ref": "AAAAAAF++No2JNdlXpA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 358,
+									"top": 456,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++No2JNdnb+I="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++No2JNdvVTA=",
+									"_parent": {
+										"$ref": "AAAAAAF++No2JNdnb+I="
+									},
+									"model": {
+										"$ref": "AAAAAAF++No2JNdlXpA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 358,
+									"top": 442,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++No2JNdnb+I="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++No2JNdwdQ4=",
+									"_parent": {
+										"$ref": "AAAAAAF++No2JNdnb+I="
+									},
+									"model": {
+										"$ref": "AAAAAAF++No2JNdlXpA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 360,
+									"top": 484,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++No2JNdnb+I="
+									}
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++No2JNdx6SI=",
+									"_parent": {
+										"$ref": "AAAAAAF++No2JNdnb+I="
+									},
+									"model": {
+										"$ref": "AAAAAAF++No2JNdk+Kk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++No2JNdyfKE=",
+									"_parent": {
+										"$ref": "AAAAAAF++No2JNdnb+I="
+									},
+									"model": {
+										"$ref": "AAAAAAF++No2JNdlXpA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++NnEgNb/VVQ="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++Nk9HNaBJx8="
+							},
+							"lineStyle": 1,
+							"points": "186:458;383:480",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++No2JNdoABA="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++No2JNdpJMc="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++No2JNdqU+0="
+							},
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAF++No2JNdrLG4="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAF++No2JNdsx3Y="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAF++No2JNdtzYE="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAF++No2JNdu3vc="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAF++No2JNdvVTA="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAF++No2JNdwdQ4="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAF++No2JNdx6SI="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAF++No2JNdyfKE="
+							}
+						},
+						{
+							"_type": "UMLUseCaseView",
+							"_id": "AAAAAAF++NrVM9gZw3w=",
+							"_parent": {
+								"$ref": "AAAAAAF++NQFFNWXdfw="
+							},
+							"model": {
+								"$ref": "AAAAAAF++NrVM9gXzMQ="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++NrVM9ga/Fo=",
+									"_parent": {
+										"$ref": "AAAAAAF++NrVM9gZw3w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NrVM9gXzMQ="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++NrVNNgbtvg=",
+											"_parent": {
+												"$ref": "AAAAAAF++NrVM9ga/Fo="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"top": 32,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++NrVNNgcYC4=",
+											"_parent": {
+												"$ref": "AAAAAAF++NrVM9ga/Fo="
+											},
+											"font": "Arial;13;1",
+											"left": 414,
+											"top": 306,
+											"width": 108,
+											"height": 13,
+											"text": "S'authentifier"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++NrVNNgdxpU=",
+											"_parent": {
+												"$ref": "AAAAAAF++NrVM9ga/Fo="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"top": 32,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++NrVNNgeRPA=",
+											"_parent": {
+												"$ref": "AAAAAAF++NrVM9ga/Fo="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"top": 32,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 409,
+									"top": 299,
+									"width": 118,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++NrVNNgbtvg="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++NrVNNgcYC4="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++NrVNNgdxpU="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++NrVNNgeRPA="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++NrVNNgfR0A=",
+									"_parent": {
+										"$ref": "AAAAAAF++NrVM9gZw3w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NrVM9gXzMQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 192,
+									"top": 16,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++NrVNNgg80o=",
+									"_parent": {
+										"$ref": "AAAAAAF++NrVM9gZw3w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NrVM9gXzMQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 192,
+									"top": 16,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++NrVNNghkE0=",
+									"_parent": {
+										"$ref": "AAAAAAF++NrVM9gZw3w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NrVM9gXzMQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 192,
+									"top": 16,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++NrVNNgi5XI=",
+									"_parent": {
+										"$ref": "AAAAAAF++NrVM9gZw3w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NrVM9gXzMQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 192,
+									"top": 16,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLExtensionPointCompartmentView",
+									"_id": "AAAAAAF++NrVNNgjAVs=",
+									"_parent": {
+										"$ref": "AAAAAAF++NrVM9gZw3w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NrVM9gXzMQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 192,
+									"top": 16,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 384,
+							"top": 272,
+							"width": 168,
+							"height": 80,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++NrVM9ga/Fo="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++NrVNNgfR0A="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++NrVNNgg80o="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++NrVNNghkE0="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++NrVNNgi5XI="
+							},
+							"extensionPointCompartment": {
+								"$ref": "AAAAAAF++NrVNNgjAVs="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAF++NsHENjU9gc=",
+							"_parent": {
+								"$ref": "AAAAAAF++NQFFNWXdfw="
+							},
+							"model": {
+								"$ref": "AAAAAAF++NsHD9jQDUM="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++NsHENjVoMI=",
+									"_parent": {
+										"$ref": "AAAAAAF++NsHENjU9gc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NsHD9jQDUM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 289,
+									"top": 267,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++NsHENjU9gc="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++NsHENjWSO0=",
+									"_parent": {
+										"$ref": "AAAAAAF++NsHENjU9gc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NsHD9jQDUM="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 291,
+									"top": 252,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++NsHENjU9gc="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++NsHENjXG70=",
+									"_parent": {
+										"$ref": "AAAAAAF++NsHENjU9gc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NsHD9jQDUM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 286,
+									"top": 296,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++NsHENjU9gc="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++NsHENjYYWU=",
+									"_parent": {
+										"$ref": "AAAAAAF++NsHENjU9gc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NsHENjRWTw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 220,
+									"top": 258,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++NsHENjU9gc="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++NsHENjZ8hc=",
+									"_parent": {
+										"$ref": "AAAAAAF++NsHENjU9gc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NsHENjRWTw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 224,
+									"top": 245,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++NsHENjU9gc="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++NsHENjaoao=",
+									"_parent": {
+										"$ref": "AAAAAAF++NsHENjU9gc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NsHENjRWTw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 212,
+									"top": 285,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++NsHENjU9gc="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++NsHENjbPlY=",
+									"_parent": {
+										"$ref": "AAAAAAF++NsHENjU9gc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NsHENjS5Ow="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 191,
+									"top": 304,
+									"width": 216.76611328125,
+									"height": 13,
+									"alpha": 0.24414031028606242,
+									"distance": 84.5931439302264,
+									"hostEdge": {
+										"$ref": "AAAAAAF++NsHENjU9gc="
+									},
+									"text": "+N'est possible que pour les abonnés"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++NsHENjczuE=",
+									"_parent": {
+										"$ref": "AAAAAAF++NsHENjU9gc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NsHENjS5Ow="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 358,
+									"top": 262,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++NsHENjU9gc="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++NsHENjdv8Y=",
+									"_parent": {
+										"$ref": "AAAAAAF++NsHENjU9gc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NsHENjS5Ow="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 359,
+									"top": 303,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++NsHENjU9gc="
+									}
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++NsHENjeWzQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++NsHENjU9gc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NsHENjRWTw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++NsHENjfkps=",
+									"_parent": {
+										"$ref": "AAAAAAF++NsHENjU9gc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++NsHENjS5Ow="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++NrVM9gZw3w="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++NV52NXgoeU="
+							},
+							"lineStyle": 1,
+							"points": "193:276;383:300",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++NsHENjVoMI="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++NsHENjWSO0="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++NsHENjXG70="
+							},
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAF++NsHENjYYWU="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAF++NsHENjZ8hc="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAF++NsHENjaoao="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAF++NsHENjbPlY="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAF++NsHENjczuE="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAF++NsHENjdv8Y="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAF++NsHENjeWzQ="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAF++NsHENjfkps="
+							}
+						},
+						{
+							"_type": "UMLUseCaseView",
+							"_id": "AAAAAAF++N8PC95R9A8=",
+							"_parent": {
+								"$ref": "AAAAAAF++NQFFNWXdfw="
+							},
+							"model": {
+								"$ref": "AAAAAAF++N8PC95PR9M="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++N8PC95S5CA=",
+									"_parent": {
+										"$ref": "AAAAAAF++N8PC95R9A8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N8PC95PR9M="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++N8PC95TaZA=",
+											"_parent": {
+												"$ref": "AAAAAAF++N8PC95S5CA="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++N8PC95UyGU=",
+											"_parent": {
+												"$ref": "AAAAAAF++N8PC95S5CA="
+											},
+											"font": "Arial;13;1",
+											"left": 758,
+											"top": 294,
+											"width": 149,
+											"height": 13,
+											"text": "Laisser un commentaire"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++N8PC95VCjk=",
+											"_parent": {
+												"$ref": "AAAAAAF++N8PC95S5CA="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++N8PC95WseA=",
+											"_parent": {
+												"$ref": "AAAAAAF++N8PC95S5CA="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 753,
+									"top": 287,
+									"width": 159.55712890625,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++N8PC95TaZA="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++N8PC95UyGU="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++N8PC95VCjk="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++N8PC95WseA="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++N8PC95XNR0=",
+									"_parent": {
+										"$ref": "AAAAAAF++N8PC95R9A8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N8PC95PR9M="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++N8PC95YCNA=",
+									"_parent": {
+										"$ref": "AAAAAAF++N8PC95R9A8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N8PC95PR9M="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++N8PC95Z6As=",
+									"_parent": {
+										"$ref": "AAAAAAF++N8PC95R9A8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N8PC95PR9M="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++N8PC95acFg=",
+									"_parent": {
+										"$ref": "AAAAAAF++N8PC95R9A8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N8PC95PR9M="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLExtensionPointCompartmentView",
+									"_id": "AAAAAAF++N8PC95bqLQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++N8PC95R9A8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N8PC95PR9M="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 720,
+							"top": 256,
+							"width": 225,
+							"height": 88,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++N8PC95S5CA="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++N8PC95XNR0="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++N8PC95YCNA="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++N8PC95Z6As="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++N8PC95acFg="
+							},
+							"extensionPointCompartment": {
+								"$ref": "AAAAAAF++N8PC95bqLQ="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAF++N82A98lFqg=",
+							"_parent": {
+								"$ref": "AAAAAAF++NQFFNWXdfw="
+							},
+							"model": {
+								"$ref": "AAAAAAF++N82A98hSac="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++N82A98mdt0=",
+									"_parent": {
+										"$ref": "AAAAAAF++N82A98lFqg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N82A98hSac="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 448,
+									"top": 365,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++N82A98lFqg="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++N82A98nrsA=",
+									"_parent": {
+										"$ref": "AAAAAAF++N82A98lFqg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N82A98hSac="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 445,
+									"top": 350,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++N82A98lFqg="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++N82A98ok70=",
+									"_parent": {
+										"$ref": "AAAAAAF++N82A98lFqg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N82A98hSac="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 455,
+									"top": 394,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++N82A98lFqg="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++N82A98pUtA=",
+									"_parent": {
+										"$ref": "AAAAAAF++N82A98lFqg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N82A98ivsI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 207,
+									"top": 421,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++N82A98lFqg="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++N82A98q6dY=",
+									"_parent": {
+										"$ref": "AAAAAAF++N82A98lFqg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N82A98ivsI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 207,
+									"top": 408,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++N82A98lFqg="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++N82A98rMyw=",
+									"_parent": {
+										"$ref": "AAAAAAF++N82A98lFqg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N82A98ivsI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 209,
+									"top": 449,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++N82A98lFqg="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++N82A98s5T4=",
+									"_parent": {
+										"$ref": "AAAAAAF++N82A98lFqg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N82A98jcFk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 690,
+									"top": 310,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++N82A98lFqg="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++N82A98tnRw=",
+									"_parent": {
+										"$ref": "AAAAAAF++N82A98lFqg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N82A98jcFk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 685,
+									"top": 297,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++N82A98lFqg="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++N82A98uyL8=",
+									"_parent": {
+										"$ref": "AAAAAAF++N82A98lFqg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N82A98jcFk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 700,
+									"top": 336,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++N82A98lFqg="
+									}
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++N82A98vjcI=",
+									"_parent": {
+										"$ref": "AAAAAAF++N82A98lFqg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N82A98ivsI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++N82A98wdX8=",
+									"_parent": {
+										"$ref": "AAAAAAF++N82A98lFqg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N82A98jcFk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++N8PC95R9A8="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++Nk9HNaBJx8="
+							},
+							"lineStyle": 1,
+							"points": "186:448;719:325",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++N82A98mdt0="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++N82A98nrsA="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++N82A98ok70="
+							},
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAF++N82A98pUtA="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAF++N82A98q6dY="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAF++N82A98rMyw="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAF++N82A98s5T4="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAF++N82A98tnRw="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAF++N82A98uyL8="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAF++N82A98vjcI="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAF++N82A98wdX8="
+							}
+						},
+						{
+							"_type": "UMLExtendView",
+							"_id": "AAAAAAF++N9FbN+rFM0=",
+							"_parent": {
+								"$ref": "AAAAAAF++NQFFNWXdfw="
+							},
+							"model": {
+								"$ref": "AAAAAAF++N9FbN+pzcI="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++N9FbN+soso=",
+									"_parent": {
+										"$ref": "AAAAAAF++N9FbN+rFM0="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N9FbN+pzcI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 666,
+									"top": 402,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++N9FbN+rFM0="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++N9FbN+t6Gs=",
+									"_parent": {
+										"$ref": "AAAAAAF++N9FbN+rFM0="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N9FbN+pzcI="
+									},
+									"font": "Arial;13;0",
+									"left": 647,
+									"top": 415,
+									"width": 53.49169921875,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++N9FbN+rFM0="
+									},
+									"edgePosition": 1,
+									"text": "«extend»"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++N9FbN+uPgU=",
+									"_parent": {
+										"$ref": "AAAAAAF++N9FbN+rFM0="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N9FbN+pzcI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 651,
+									"top": 375,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++N9FbN+rFM0="
+									},
+									"edgePosition": 1
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++NnEgNb/VVQ="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++N8PC95R9A8="
+							},
+							"lineStyle": 1,
+							"points": "751:344;567:447",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++N9FbN+soso="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++N9FbN+t6Gs="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++N9FbN+uPgU="
+							}
+						},
+						{
+							"_type": "UMLExtendView",
+							"_id": "AAAAAAF++N9QeeAQP8E=",
+							"_parent": {
+								"$ref": "AAAAAAF++NQFFNWXdfw="
+							},
+							"model": {
+								"$ref": "AAAAAAF++N9QeeAOCDk="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++N9QeeARSxk=",
+									"_parent": {
+										"$ref": "AAAAAAF++N9QeeAQP8E="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N9QeeAOCDk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 618,
+									"top": 260,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++N9QeeAQP8E="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++N9QeeASzcE=",
+									"_parent": {
+										"$ref": "AAAAAAF++N9QeeAQP8E="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N9QeeAOCDk="
+									},
+									"font": "Arial;13;0",
+									"left": 589,
+									"top": 275,
+									"width": 53.49169921875,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++N9QeeAQP8E="
+									},
+									"edgePosition": 1,
+									"text": "«extend»"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++N9QeuATU88=",
+									"_parent": {
+										"$ref": "AAAAAAF++N9QeeAQP8E="
+									},
+									"model": {
+										"$ref": "AAAAAAF++N9QeeAOCDk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 625,
+									"top": 231,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++N9QeeAQP8E="
+									},
+									"edgePosition": 1
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++NX+6tYKASM="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++N8PC95R9A8="
+							},
+							"lineStyle": 1,
+							"points": "719:274;526:230",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++N9QeeARSxk="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++N9QeeASzcE="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++N9QeuATU88="
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLUseCaseSubject",
+					"_id": "AAAAAAF++NRYWdXE6Iw=",
+					"_parent": {
+						"$ref": "AAAAAAF++NQFE9WWrIo="
+					},
+					"name": "Site Web Journal"
+				},
+				{
+					"_type": "UMLActor",
+					"_id": "AAAAAAF++NV52NXe5OU=",
+					"_parent": {
+						"$ref": "AAAAAAF++NQFE9WWrIo="
+					},
+					"name": "Internaute",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAF++NjyI9Y2CSw=",
+							"_parent": {
+								"$ref": "AAAAAAF++NV52NXe5OU="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++NjyI9Y3IB4=",
+								"_parent": {
+									"$ref": "AAAAAAF++NjyI9Y2CSw="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++NV52NXe5OU="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++NjyI9Y4cbU=",
+								"_parent": {
+									"$ref": "AAAAAAF++NjyI9Y2CSw="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++NX+6tYIOZk="
+								}
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAF++NsHD9jQDUM=",
+							"_parent": {
+								"$ref": "AAAAAAF++NV52NXe5OU="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++NsHENjRWTw=",
+								"_parent": {
+									"$ref": "AAAAAAF++NsHD9jQDUM="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++NV52NXe5OU="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++NsHENjS5Ow=",
+								"_parent": {
+									"$ref": "AAAAAAF++NsHD9jQDUM="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++NrVM9gXzMQ="
+								}
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLUseCase",
+					"_id": "AAAAAAF++NX+6tYIOZk=",
+					"_parent": {
+						"$ref": "AAAAAAF++NQFE9WWrIo="
+					},
+					"name": "Lire un article"
+				},
+				{
+					"_type": "UMLActor",
+					"_id": "AAAAAAF++Nk9HNZ/QKA=",
+					"_parent": {
+						"$ref": "AAAAAAF++NQFE9WWrIo="
+					},
+					"name": "Abonné",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAF++NmBQNbXqGY=",
+							"_parent": {
+								"$ref": "AAAAAAF++Nk9HNZ/QKA="
+							},
+							"source": {
+								"$ref": "AAAAAAF++Nk9HNZ/QKA="
+							},
+							"target": {
+								"$ref": "AAAAAAF++NV52NXe5OU="
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAF++No2JNdjiz4=",
+							"_parent": {
+								"$ref": "AAAAAAF++Nk9HNZ/QKA="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++No2JNdk+Kk=",
+								"_parent": {
+									"$ref": "AAAAAAF++No2JNdjiz4="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++Nk9HNZ/QKA="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++No2JNdlXpA=",
+								"_parent": {
+									"$ref": "AAAAAAF++No2JNdjiz4="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++NnEgNb9zsk="
+								}
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAF++N82A98hSac=",
+							"_parent": {
+								"$ref": "AAAAAAF++Nk9HNZ/QKA="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++N82A98ivsI=",
+								"_parent": {
+									"$ref": "AAAAAAF++N82A98hSac="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++Nk9HNZ/QKA="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++N82A98jcFk=",
+								"_parent": {
+									"$ref": "AAAAAAF++N82A98hSac="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++N8PC95PR9M="
+								}
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLUseCase",
+					"_id": "AAAAAAF++NnEgNb9zsk=",
+					"_parent": {
+						"$ref": "AAAAAAF++NQFE9WWrIo="
+					},
+					"name": "Lire un article abonné"
+				},
+				{
+					"_type": "UMLUseCase",
+					"_id": "AAAAAAF++NrVM9gXzMQ=",
+					"_parent": {
+						"$ref": "AAAAAAF++NQFE9WWrIo="
+					},
+					"name": "S'authentifier"
+				},
+				{
+					"_type": "UMLUseCase",
+					"_id": "AAAAAAF++Nzy8dufuBU=",
+					"_parent": {
+						"$ref": "AAAAAAF++NQFE9WWrIo="
+					},
+					"name": "UseCase1"
+				},
+				{
+					"_type": "UMLUseCase",
+					"_id": "AAAAAAF++N8PC95PR9M=",
+					"_parent": {
+						"$ref": "AAAAAAF++NQFE9WWrIo="
+					},
+					"name": "Laisser un commentaire",
+					"ownedElements": [
+						{
+							"_type": "UMLExtend",
+							"_id": "AAAAAAF++N9FbN+pzcI=",
+							"_parent": {
+								"$ref": "AAAAAAF++N8PC95PR9M="
+							},
+							"source": {
+								"$ref": "AAAAAAF++N8PC95PR9M="
+							},
+							"target": {
+								"$ref": "AAAAAAF++NnEgNb9zsk="
+							}
+						},
+						{
+							"_type": "UMLExtend",
+							"_id": "AAAAAAF++N9QeeAOCDk=",
+							"_parent": {
+								"$ref": "AAAAAAF++N8PC95PR9M="
+							},
+							"source": {
+								"$ref": "AAAAAAF++N8PC95PR9M="
+							},
+							"target": {
+								"$ref": "AAAAAAF++NX+6tYIOZk="
+							}
+						}
+					]
+				}
+			]
+		}
+	]
+}
\ No newline at end of file
diff --git a/APL2.1/TP04/transports.mdj b/APL2.1/TP04/transports.mdj
new file mode 100644
index 0000000..92cd0a3
--- /dev/null
+++ b/APL2.1/TP04/transports.mdj
@@ -0,0 +1,9290 @@
+{
+	"_type": "Project",
+	"_id": "AAAAAAFF+h6SjaM2Hec=",
+	"name": "Untitled",
+	"ownedElements": [
+		{
+			"_type": "UMLModel",
+			"_id": "AAAAAAFF+qBWK6M3Z8Y=",
+			"_parent": {
+				"$ref": "AAAAAAFF+h6SjaM2Hec="
+			},
+			"name": "Model",
+			"ownedElements": [
+				{
+					"_type": "UMLClassDiagram",
+					"_id": "AAAAAAFF+qBtyKM79qY=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Main",
+					"defaultDiagram": true
+				}
+			]
+		},
+		{
+			"_type": "UMLModel",
+			"_id": "AAAAAAF++OCnrs9BzAo=",
+			"_parent": {
+				"$ref": "AAAAAAFF+h6SjaM2Hec="
+			},
+			"name": "Model1",
+			"ownedElements": [
+				{
+					"_type": "UMLUseCaseDiagram",
+					"_id": "AAAAAAF++OCnsM9CYx0=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "UseCaseDiagram1",
+					"ownedViews": [
+						{
+							"_type": "UMLUseCaseSubjectView",
+							"_id": "AAAAAAF++OE/689ITbQ=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OE/689GFLg="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++OE/7M9JV3U=",
+									"_parent": {
+										"$ref": "AAAAAAF++OE/689ITbQ="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OE/689GFLg="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OE/7M9KIaM=",
+											"_parent": {
+												"$ref": "AAAAAAF++OE/7M9JV3U="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 224,
+											"top": -96,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OE/7M9LPEA=",
+											"_parent": {
+												"$ref": "AAAAAAF++OE/7M9JV3U="
+											},
+											"font": "Arial;13;1",
+											"left": 805,
+											"top": 23,
+											"width": 550,
+											"height": 13,
+											"text": "Bus"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OE/7M9M1tg=",
+											"_parent": {
+												"$ref": "AAAAAAF++OE/7M9JV3U="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 224,
+											"top": -96,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OE/7M9NfIU=",
+											"_parent": {
+												"$ref": "AAAAAAF++OE/7M9JV3U="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 224,
+											"top": -96,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 800,
+									"top": 16,
+									"width": 560,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++OE/7M9KIaM="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++OE/7M9LPEA="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++OE/7M9M1tg="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++OE/7M9NfIU="
+									}
+								}
+							],
+							"font": "Arial;13;0",
+							"left": 800,
+							"top": 16,
+							"width": 560,
+							"height": 329,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++OE/7M9JV3U="
+							}
+						},
+						{
+							"_type": "UMLActorView",
+							"_id": "AAAAAAF++OG5hs9jahE=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OG5hc9hAEM="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++OG5hs9k9SQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++OG5hs9jahE="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OG5hc9hAEM="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OG5hs9lhr0=",
+											"_parent": {
+												"$ref": "AAAAAAF++OG5hs9k9SQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -128,
+											"top": -64,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OG5hs9mOaM=",
+											"_parent": {
+												"$ref": "AAAAAAF++OG5hs9k9SQ="
+											},
+											"font": "Arial;13;1",
+											"left": 661,
+											"top": 109,
+											"width": 57.82080078125,
+											"height": 13,
+											"text": "Passager"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OG5hs9nM4g=",
+											"_parent": {
+												"$ref": "AAAAAAF++OG5hs9k9SQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -128,
+											"top": -64,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OG5hs9oxD0=",
+											"_parent": {
+												"$ref": "AAAAAAF++OG5hs9k9SQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -128,
+											"top": -64,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 656,
+									"top": 102,
+									"width": 67.82080078125,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++OG5hs9lhr0="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++OG5hs9mOaM="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++OG5hs9nM4g="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++OG5hs9oxD0="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++OG5hs9p+Yg=",
+									"_parent": {
+										"$ref": "AAAAAAF++OG5hs9jahE="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OG5hc9hAEM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -64,
+									"top": -32,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++OG5h89q5wo=",
+									"_parent": {
+										"$ref": "AAAAAAF++OG5hs9jahE="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OG5hc9hAEM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -64,
+									"top": -32,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++OG5h89rJ/Q=",
+									"_parent": {
+										"$ref": "AAAAAAF++OG5hs9jahE="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OG5hc9hAEM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -64,
+									"top": -32,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++OG5h89sYDE=",
+									"_parent": {
+										"$ref": "AAAAAAF++OG5hs9jahE="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OG5hc9hAEM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -64,
+									"top": -32,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 656,
+							"top": 48,
+							"width": 67.82080078125,
+							"height": 80,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++OG5hs9k9SQ="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++OG5hs9p+Yg="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++OG5h89q5wo="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++OG5h89rJ/Q="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++OG5h89sYDE="
+							}
+						},
+						{
+							"_type": "UMLActorView",
+							"_id": "AAAAAAF++OHW5c+NuS8=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OHW5c+LJa4="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++OHW5s+OV60=",
+									"_parent": {
+										"$ref": "AAAAAAF++OHW5c+NuS8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OHW5c+LJa4="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OHW5s+PM40=",
+											"_parent": {
+												"$ref": "AAAAAAF++OHW5s+OV60="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -1296,
+											"top": 48,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OHW5s+Qmr8=",
+											"_parent": {
+												"$ref": "AAAAAAF++OHW5s+OV60="
+											},
+											"font": "Arial;13;1",
+											"left": 669,
+											"top": 293,
+											"width": 52.01904296875,
+											"height": 13,
+											"text": "Centrale"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OHW5s+RhHk=",
+											"_parent": {
+												"$ref": "AAAAAAF++OHW5s+OV60="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -1296,
+											"top": 48,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OHW5s+SkP4=",
+											"_parent": {
+												"$ref": "AAAAAAF++OHW5s+OV60="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -1296,
+											"top": 48,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 664,
+									"top": 286,
+									"width": 62.01904296875,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++OHW5s+PM40="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++OHW5s+Qmr8="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++OHW5s+RhHk="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++OHW5s+SkP4="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++OHW5s+T90Q=",
+									"_parent": {
+										"$ref": "AAAAAAF++OHW5c+NuS8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OHW5c+LJa4="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -648,
+									"top": 24,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++OHW5s+UCOY=",
+									"_parent": {
+										"$ref": "AAAAAAF++OHW5c+NuS8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OHW5c+LJa4="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -648,
+									"top": 24,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++OHW5s+Vfcs=",
+									"_parent": {
+										"$ref": "AAAAAAF++OHW5c+NuS8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OHW5c+LJa4="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -648,
+									"top": 24,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++OHW5s+WZU4=",
+									"_parent": {
+										"$ref": "AAAAAAF++OHW5c+NuS8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OHW5c+LJa4="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -648,
+									"top": 24,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 664,
+							"top": 232,
+							"width": 62.01904296875,
+							"height": 80,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++OHW5s+OV60="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++OHW5s+T90Q="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++OHW5s+UCOY="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++OHW5s+Vfcs="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++OHW5s+WZU4="
+							}
+						},
+						{
+							"_type": "UMLUseCaseView",
+							"_id": "AAAAAAF++OH8OM+4BqU=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OH8OM+26OU="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++OH8OM+5JGU=",
+									"_parent": {
+										"$ref": "AAAAAAF++OH8OM+4BqU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OH8OM+26OU="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OH8OM+6bK8=",
+											"_parent": {
+												"$ref": "AAAAAAF++OH8OM+5JGU="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -272,
+											"top": -80,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OH8OM+7mu0=",
+											"_parent": {
+												"$ref": "AAAAAAF++OH8OM+5JGU="
+											},
+											"font": "Arial;13;1",
+											"left": 870.5,
+											"top": 98,
+											"width": 149,
+											"height": 13,
+											"text": "Validation titre transport"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OH8Oc+88b8=",
+											"_parent": {
+												"$ref": "AAAAAAF++OH8OM+5JGU="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -272,
+											"top": -80,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OH8Oc+9iuA=",
+											"_parent": {
+												"$ref": "AAAAAAF++OH8OM+5JGU="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -272,
+											"top": -80,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 865.5,
+									"top": 91,
+									"width": 160.24267578125,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++OH8OM+6bK8="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++OH8OM+7mu0="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++OH8Oc+88b8="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++OH8Oc+9iuA="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++OH8Oc++FSU=",
+									"_parent": {
+										"$ref": "AAAAAAF++OH8OM+4BqU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OH8OM+26OU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -136,
+									"top": -40,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++OH8Oc+/UQc=",
+									"_parent": {
+										"$ref": "AAAAAAF++OH8OM+4BqU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OH8OM+26OU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -136,
+									"top": -40,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++OH8Oc/AAiA=",
+									"_parent": {
+										"$ref": "AAAAAAF++OH8OM+4BqU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OH8OM+26OU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -136,
+									"top": -40,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++OH8Oc/B3ZU=",
+									"_parent": {
+										"$ref": "AAAAAAF++OH8OM+4BqU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OH8OM+26OU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -136,
+									"top": -40,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLExtensionPointCompartmentView",
+									"_id": "AAAAAAF++OH8Oc/CgjQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++OH8OM+4BqU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OH8OM+26OU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -136,
+									"top": -40,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 832,
+							"top": 72,
+							"width": 226,
+							"height": 64,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++OH8OM+5JGU="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++OH8Oc++FSU="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++OH8Oc+/UQc="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++OH8Oc/AAiA="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++OH8Oc/B3ZU="
+							},
+							"extensionPointCompartment": {
+								"$ref": "AAAAAAF++OH8Oc/CgjQ="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAF++OJvlM/sTWM=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OJvk8/oz/4="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OJvlM/tfJk=",
+									"_parent": {
+										"$ref": "AAAAAAF++OJvlM/sTWM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OJvk8/oz/4="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 778,
+									"top": 71,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OJvlM/sTWM="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OJvlc/u7OU=",
+									"_parent": {
+										"$ref": "AAAAAAF++OJvlM/sTWM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OJvk8/oz/4="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 779,
+									"top": 56,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OJvlM/sTWM="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OJvlc/vQjw=",
+									"_parent": {
+										"$ref": "AAAAAAF++OJvlM/sTWM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OJvk8/oz/4="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 775,
+									"top": 100,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OJvlM/sTWM="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OJvlc/wTaw=",
+									"_parent": {
+										"$ref": "AAAAAAF++OJvlM/sTWM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OJvk8/pc6c="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 750,
+									"top": 69,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OJvlM/sTWM="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OJvlc/xIds=",
+									"_parent": {
+										"$ref": "AAAAAAF++OJvlM/sTWM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OJvk8/pc6c="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 754,
+									"top": 56,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OJvlM/sTWM="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OJvlc/yJtU=",
+									"_parent": {
+										"$ref": "AAAAAAF++OJvlM/sTWM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OJvk8/pc6c="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 744,
+									"top": 96,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OJvlM/sTWM="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OJvlc/zZ9s=",
+									"_parent": {
+										"$ref": "AAAAAAF++OJvlM/sTWM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OJvk8/qHCU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 806,
+									"top": 73,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OJvlM/sTWM="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OJvlc/0sMU=",
+									"_parent": {
+										"$ref": "AAAAAAF++OJvlM/sTWM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OJvk8/qHCU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 804,
+									"top": 59,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OJvlM/sTWM="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OJvlc/1vtk=",
+									"_parent": {
+										"$ref": "AAAAAAF++OJvlM/sTWM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OJvk8/qHCU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 808,
+									"top": 101,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OJvlM/sTWM="
+									}
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++OJvlc/2bng=",
+									"_parent": {
+										"$ref": "AAAAAAF++OJvlM/sTWM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OJvk8/pc6c="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 112,
+									"top": -48,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++OJvlc/3fsg=",
+									"_parent": {
+										"$ref": "AAAAAAF++OJvlM/sTWM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OJvk8/qHCU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 112,
+									"top": -48,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++OH8OM+4BqU="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++OG5hs9jahE="
+							},
+							"lineStyle": 1,
+							"points": "724:89;831:96",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++OJvlM/tfJk="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++OJvlc/u7OU="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++OJvlc/vQjw="
+							},
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAF++OJvlc/wTaw="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAF++OJvlc/xIds="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAF++OJvlc/yJtU="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAF++OJvlc/zZ9s="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAF++OJvlc/0sMU="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAF++OJvlc/1vtk="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAF++OJvlc/2bng="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAF++OJvlc/3fsg="
+							}
+						},
+						{
+							"_type": "UMLUseCaseView",
+							"_id": "AAAAAAF++OKdINAzTLk=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OKdINAxypo="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++OKdINA0dHs=",
+									"_parent": {
+										"$ref": "AAAAAAF++OKdINAzTLk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OKdINAxypo="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OKdINA1soM=",
+											"_parent": {
+												"$ref": "AAAAAAF++OKdINA0dHs="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 208,
+											"top": -96,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OKdIdA2AWY=",
+											"_parent": {
+												"$ref": "AAAAAAF++OKdINA0dHs="
+											},
+											"font": "Arial;13;1",
+											"left": 1193,
+											"top": 75.5,
+											"width": 86,
+											"height": 13,
+											"text": "Ticket"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OKdIdA3BCc=",
+											"_parent": {
+												"$ref": "AAAAAAF++OKdINA0dHs="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 208,
+											"top": -96,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OKdIdA46fY=",
+											"_parent": {
+												"$ref": "AAAAAAF++OKdINA0dHs="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 208,
+											"top": -96,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 1188,
+									"top": 68.5,
+									"width": 96,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++OKdINA1soM="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++OKdIdA2AWY="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++OKdIdA3BCc="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++OKdIdA46fY="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++OKdIdA5RB4=",
+									"_parent": {
+										"$ref": "AAAAAAF++OKdINAzTLk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OKdINAxypo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 104,
+									"top": -48,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++OKdIdA6acA=",
+									"_parent": {
+										"$ref": "AAAAAAF++OKdINAzTLk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OKdINAxypo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 104,
+									"top": -48,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++OKdIdA78ZA=",
+									"_parent": {
+										"$ref": "AAAAAAF++OKdINAzTLk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OKdINAxypo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 104,
+									"top": -48,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++OKdIdA8+Do=",
+									"_parent": {
+										"$ref": "AAAAAAF++OKdINAzTLk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OKdINAxypo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 104,
+									"top": -48,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLExtensionPointCompartmentView",
+									"_id": "AAAAAAF++OKdIdA994I=",
+									"_parent": {
+										"$ref": "AAAAAAF++OKdINAzTLk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OKdINAxypo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 104,
+									"top": -48,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 1168,
+							"top": 64,
+							"width": 136,
+							"height": 35,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++OKdINA0dHs="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++OKdIdA5RB4="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++OKdIdA6acA="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++OKdIdA78ZA="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++OKdIdA8+Do="
+							},
+							"extensionPointCompartment": {
+								"$ref": "AAAAAAF++OKdIdA994I="
+							}
+						},
+						{
+							"_type": "UMLUseCaseView",
+							"_id": "AAAAAAF++OK1ctB2qgA=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OK1cdB0BNQ="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++OK1ctB3egk=",
+									"_parent": {
+										"$ref": "AAAAAAF++OK1ctB2qgA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OK1cdB0BNQ="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OK1ctB4YSI=",
+											"_parent": {
+												"$ref": "AAAAAAF++OK1ctB3egk="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 176,
+											"top": -80,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OK1ctB5iYU=",
+											"_parent": {
+												"$ref": "AAAAAAF++OK1ctB3egk="
+											},
+											"font": "Arial;13;1",
+											"left": 1199,
+											"top": 126,
+											"width": 74,
+											"height": 13,
+											"text": "Navigo"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OK1ctB6n/4=",
+											"_parent": {
+												"$ref": "AAAAAAF++OK1ctB3egk="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 176,
+											"top": -80,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OK1ctB7cH8=",
+											"_parent": {
+												"$ref": "AAAAAAF++OK1ctB3egk="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 176,
+											"top": -80,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 1194,
+									"top": 119,
+									"width": 84,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++OK1ctB4YSI="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++OK1ctB5iYU="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++OK1ctB6n/4="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++OK1ctB7cH8="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++OK1ctB86nQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++OK1ctB2qgA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OK1cdB0BNQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 88,
+									"top": -40,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++OK1ctB9eZQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++OK1ctB2qgA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OK1cdB0BNQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 88,
+									"top": -40,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++OK1ctB+hJ8=",
+									"_parent": {
+										"$ref": "AAAAAAF++OK1ctB2qgA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OK1cdB0BNQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 88,
+									"top": -40,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++OK1ctB/jEM=",
+									"_parent": {
+										"$ref": "AAAAAAF++OK1ctB2qgA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OK1cdB0BNQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 88,
+									"top": -40,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLExtensionPointCompartmentView",
+									"_id": "AAAAAAF++OK1ctCAG8Y=",
+									"_parent": {
+										"$ref": "AAAAAAF++OK1ctB2qgA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OK1cdB0BNQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 88,
+									"top": -40,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 1176,
+							"top": 112,
+							"width": 120,
+							"height": 40,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++OK1ctB3egk="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++OK1ctB86nQ="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++OK1ctB9eZQ="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++OK1ctB+hJ8="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++OK1ctB/jEM="
+							},
+							"extensionPointCompartment": {
+								"$ref": "AAAAAAF++OK1ctCAG8Y="
+							}
+						},
+						{
+							"_type": "UMLGeneralizationView",
+							"_id": "AAAAAAF++OLapdDvpeU=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OLapdDtIOs="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OLapdDw/k4=",
+									"_parent": {
+										"$ref": "AAAAAAF++OLapdDvpeU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OLapdDtIOs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1113,
+									"top": 98,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OLapdDvpeU="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OLapdDx1SQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++OLapdDvpeU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OLapdDtIOs="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 1114,
+									"top": 113,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OLapdDvpeU="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OLapdDy0+o=",
+									"_parent": {
+										"$ref": "AAAAAAF++OLapdDvpeU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OLapdDtIOs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1110,
+									"top": 69,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OLapdDvpeU="
+									},
+									"edgePosition": 1
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++OH8OM+4BqU="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++OKdINAzTLk="
+							},
+							"lineStyle": 1,
+							"points": "1167:86;1058:94",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++OLapdDw/k4="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++OLapdDx1SQ="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++OLapdDy0+o="
+							}
+						},
+						{
+							"_type": "UMLGeneralizationView",
+							"_id": "AAAAAAF++OLnENEPYEQ=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OLnENENVt8="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OLnENEQlVc=",
+									"_parent": {
+										"$ref": "AAAAAAF++OLnENEPYEQ="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OLnENENVt8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1114,
+									"top": 127,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OLnENEPYEQ="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OLnENERYOg=",
+									"_parent": {
+										"$ref": "AAAAAAF++OLnENEPYEQ="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OLnENENVt8="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 1113,
+									"top": 142,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OLnENEPYEQ="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OLnENESZGs=",
+									"_parent": {
+										"$ref": "AAAAAAF++OLnENEPYEQ="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OLnENENVt8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1117,
+									"top": 98,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OLnENEPYEQ="
+									},
+									"edgePosition": 1
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++OH8OM+4BqU="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++OK1ctB2qgA="
+							},
+							"lineStyle": 1,
+							"points": "1175:125;1058:114",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++OLnENEQlVc="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++OLnENERYOg="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++OLnENESZGs="
+							}
+						},
+						{
+							"_type": "UMLUseCaseView",
+							"_id": "AAAAAAF++ON/vtFsv7U=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++ON/vtFqlBc="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++ON/vtFtUD0=",
+									"_parent": {
+										"$ref": "AAAAAAF++ON/vtFsv7U="
+									},
+									"model": {
+										"$ref": "AAAAAAF++ON/vtFqlBc="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++ON/v9FuXIk=",
+											"_parent": {
+												"$ref": "AAAAAAF++ON/vtFtUD0="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -384,
+											"top": -112,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++ON/v9FvBtw=",
+											"_parent": {
+												"$ref": "AAAAAAF++ON/vtFtUD0="
+											},
+											"font": "Arial;13;1",
+											"left": 876.5,
+											"top": 187.5,
+											"width": 103,
+											"height": 13,
+											"text": "Validation"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++ON/v9Fwv5U=",
+											"_parent": {
+												"$ref": "AAAAAAF++ON/vtFtUD0="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -384,
+											"top": -112,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++ON/v9FxyIo=",
+											"_parent": {
+												"$ref": "AAAAAAF++ON/vtFtUD0="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -384,
+											"top": -112,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 871.5,
+									"top": 180.5,
+									"width": 113,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++ON/v9FuXIk="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++ON/v9FvBtw="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++ON/v9Fwv5U="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++ON/v9FxyIo="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++ON/v9Fy3Gs=",
+									"_parent": {
+										"$ref": "AAAAAAF++ON/vtFsv7U="
+									},
+									"model": {
+										"$ref": "AAAAAAF++ON/vtFqlBc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -192,
+									"top": -56,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++ON/v9Fz264=",
+									"_parent": {
+										"$ref": "AAAAAAF++ON/vtFsv7U="
+									},
+									"model": {
+										"$ref": "AAAAAAF++ON/vtFqlBc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -192,
+									"top": -56,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++ON/v9F0IpI=",
+									"_parent": {
+										"$ref": "AAAAAAF++ON/vtFsv7U="
+									},
+									"model": {
+										"$ref": "AAAAAAF++ON/vtFqlBc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -192,
+									"top": -56,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++ON/v9F1Go4=",
+									"_parent": {
+										"$ref": "AAAAAAF++ON/vtFsv7U="
+									},
+									"model": {
+										"$ref": "AAAAAAF++ON/vtFqlBc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -192,
+									"top": -56,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLExtensionPointCompartmentView",
+									"_id": "AAAAAAF++ON/v9F2D7M=",
+									"_parent": {
+										"$ref": "AAAAAAF++ON/vtFsv7U="
+									},
+									"model": {
+										"$ref": "AAAAAAF++ON/vtFqlBc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -192,
+									"top": -56,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 848,
+							"top": 176,
+							"width": 160,
+							"height": 35,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++ON/vtFtUD0="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++ON/v9Fy3Gs="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++ON/v9Fz264="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++ON/v9F0IpI="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++ON/v9F1Go4="
+							},
+							"extensionPointCompartment": {
+								"$ref": "AAAAAAF++ON/v9F2D7M="
+							}
+						},
+						{
+							"_type": "UMLIncludeView",
+							"_id": "AAAAAAF++OPkWtHIm0U=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OPkWtHGttE="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OPkW9HJ5Mk=",
+									"_parent": {
+										"$ref": "AAAAAAF++OPkWtHIm0U="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OPkWtHGttE="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 948,
+									"top": 151,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OPkWtHIm0U="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OPkW9HKfg8=",
+									"_parent": {
+										"$ref": "AAAAAAF++OPkWtHIm0U="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OPkWtHGttE="
+									},
+									"font": "Arial;13;0",
+									"left": 936,
+									"top": 154,
+									"width": 55.65625,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OPkWtHIm0U="
+									},
+									"edgePosition": 1,
+									"text": "«include»"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OPkW9HLUdY=",
+									"_parent": {
+										"$ref": "AAAAAAF++OPkWtHIm0U="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OPkWtHGttE="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 919,
+									"top": 146,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OPkWtHIm0U="
+									},
+									"edgePosition": 1
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++ON/vtFsv7U="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++OH8OM+4BqU="
+							},
+							"lineStyle": 1,
+							"points": "938:136;930:175",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++OPkW9HJ5Mk="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++OPkW9HKfg8="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++OPkW9HLUdY="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAF++OP4k9HwCwM=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OP4k9HsDnY="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OP4k9HxYzA=",
+									"_parent": {
+										"$ref": "AAAAAAF++OP4k9HwCwM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OP4k9HsDnY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 803,
+									"top": 243,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OP4k9HwCwM="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OP4lNHy3wk=",
+									"_parent": {
+										"$ref": "AAAAAAF++OP4k9HwCwM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OP4k9HsDnY="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 808,
+									"top": 257,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OP4k9HwCwM="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OP4lNHzrCE=",
+									"_parent": {
+										"$ref": "AAAAAAF++OP4k9HwCwM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OP4k9HsDnY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 794,
+									"top": 214,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OP4k9HwCwM="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OP4lNH06cM=",
+									"_parent": {
+										"$ref": "AAAAAAF++OP4k9HwCwM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OP4k9HtFHY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 853,
+									"top": 227,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OP4k9HwCwM="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OP4lNH1uC8=",
+									"_parent": {
+										"$ref": "AAAAAAF++OP4k9HwCwM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OP4k9HtFHY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 855,
+									"top": 240,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OP4k9HwCwM="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OP4lNH2Ey4=",
+									"_parent": {
+										"$ref": "AAAAAAF++OP4k9HwCwM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OP4k9HtFHY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 848,
+									"top": 199,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OP4k9HwCwM="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OP4lNH3rvw=",
+									"_parent": {
+										"$ref": "AAAAAAF++OP4k9HwCwM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OP4k9HurbA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 755,
+									"top": 260,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OP4k9HwCwM="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OP4lNH48Uk=",
+									"_parent": {
+										"$ref": "AAAAAAF++OP4k9HwCwM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OP4k9HurbA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 761,
+									"top": 271,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OP4k9HwCwM="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OP4lNH583Y=",
+									"_parent": {
+										"$ref": "AAAAAAF++OP4k9HwCwM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OP4k9HurbA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 742,
+									"top": 235,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OP4k9HwCwM="
+									}
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++OP4lNH6op0=",
+									"_parent": {
+										"$ref": "AAAAAAF++OP4k9HwCwM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OP4k9HtFHY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 112,
+									"top": -48,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++OP4lNH7d1o=",
+									"_parent": {
+										"$ref": "AAAAAAF++OP4k9HwCwM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OP4k9HurbA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 112,
+									"top": -48,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++OHW5c+NuS8="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++ON/vtFsv7U="
+							},
+							"lineStyle": 1,
+							"points": "873:211;726:260",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++OP4k9HxYzA="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++OP4lNHy3wk="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++OP4lNHzrCE="
+							},
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAF++OP4lNH06cM="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAF++OP4lNH1uC8="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAF++OP4lNH2Ey4="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAF++OP4lNH3rvw="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAF++OP4lNH48Uk="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAF++OP4lNH583Y="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAF++OP4lNH6op0="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAF++OP4lNH7d1o="
+							}
+						},
+						{
+							"_type": "UMLUseCaseView",
+							"_id": "AAAAAAF++OQs7NJMsU4=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OQs7NJKtfU="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++OQs7NJNoaE=",
+									"_parent": {
+										"$ref": "AAAAAAF++OQs7NJMsU4="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OQs7NJKtfU="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OQs7NJOIOE=",
+											"_parent": {
+												"$ref": "AAAAAAF++OQs7NJNoaE="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -224,
+											"top": -160,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OQs7NJPByE=",
+											"_parent": {
+												"$ref": "AAAAAAF++OQs7NJNoaE="
+											},
+											"font": "Arial;13;1",
+											"left": 883.5,
+											"top": 291.5,
+											"width": 98,
+											"height": 13,
+											"text": "Rediriger le bus"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OQs7NJQ0wA=",
+											"_parent": {
+												"$ref": "AAAAAAF++OQs7NJNoaE="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -224,
+											"top": -160,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OQs7NJRtgs=",
+											"_parent": {
+												"$ref": "AAAAAAF++OQs7NJNoaE="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -224,
+											"top": -160,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 878.5,
+									"top": 284.5,
+									"width": 108.2490234375,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++OQs7NJOIOE="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++OQs7NJPByE="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++OQs7NJQ0wA="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++OQs7NJRtgs="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++OQs7NJSxsk=",
+									"_parent": {
+										"$ref": "AAAAAAF++OQs7NJMsU4="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OQs7NJKtfU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -112,
+									"top": -80,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++OQs7NJTSvc=",
+									"_parent": {
+										"$ref": "AAAAAAF++OQs7NJMsU4="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OQs7NJKtfU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -112,
+									"top": -80,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++OQs7NJUj8A=",
+									"_parent": {
+										"$ref": "AAAAAAF++OQs7NJMsU4="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OQs7NJKtfU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -112,
+									"top": -80,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++OQs7NJV3L4=",
+									"_parent": {
+										"$ref": "AAAAAAF++OQs7NJMsU4="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OQs7NJKtfU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -112,
+									"top": -80,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLExtensionPointCompartmentView",
+									"_id": "AAAAAAF++OQs7NJWGoY=",
+									"_parent": {
+										"$ref": "AAAAAAF++OQs7NJMsU4="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OQs7NJKtfU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -112,
+									"top": -80,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 856,
+							"top": 280,
+							"width": 153,
+							"height": 35,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++OQs7NJNoaE="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++OQs7NJSxsk="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++OQs7NJTSvc="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++OQs7NJUj8A="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++OQs7NJV3L4="
+							},
+							"extensionPointCompartment": {
+								"$ref": "AAAAAAF++OQs7NJWGoY="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAF++ORs9dMK6dc=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++ORs9dMGqLE="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++ORs9dMLFsU=",
+									"_parent": {
+										"$ref": "AAAAAAF++ORs9dMK6dc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++ORs9dMGqLE="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 791,
+									"top": 260,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++ORs9dMK6dc="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++ORs9dMMe84=",
+									"_parent": {
+										"$ref": "AAAAAAF++ORs9dMK6dc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++ORs9dMGqLE="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 793,
+									"top": 245,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++ORs9dMK6dc="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++ORs9dMNMHM=",
+									"_parent": {
+										"$ref": "AAAAAAF++ORs9dMK6dc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++ORs9dMGqLE="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 788,
+									"top": 289,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++ORs9dMK6dc="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++ORs9dMOnlo=",
+									"_parent": {
+										"$ref": "AAAAAAF++ORs9dMK6dc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++ORs9dMHoyA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 753,
+									"top": 256,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++ORs9dMK6dc="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++ORs9dMPkqk=",
+									"_parent": {
+										"$ref": "AAAAAAF++ORs9dMK6dc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++ORs9dMHoyA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 757,
+									"top": 243,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++ORs9dMK6dc="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++ORs9dMQo4A=",
+									"_parent": {
+										"$ref": "AAAAAAF++ORs9dMK6dc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++ORs9dMHoyA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 746,
+									"top": 282,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++ORs9dMK6dc="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++ORs9dMRFBI=",
+									"_parent": {
+										"$ref": "AAAAAAF++ORs9dMK6dc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++ORs9dMIgNA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 830,
+									"top": 265,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++ORs9dMK6dc="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++ORs9dMSlRU=",
+									"_parent": {
+										"$ref": "AAAAAAF++ORs9dMK6dc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++ORs9dMIgNA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 830,
+									"top": 251,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++ORs9dMK6dc="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++ORs9dMTpAw=",
+									"_parent": {
+										"$ref": "AAAAAAF++ORs9dMK6dc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++ORs9dMIgNA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 832,
+									"top": 292,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++ORs9dMK6dc="
+									}
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++ORs9dMUxyY=",
+									"_parent": {
+										"$ref": "AAAAAAF++ORs9dMK6dc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++ORs9dMHoyA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 112,
+									"top": -48,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++ORs9dMVuqA=",
+									"_parent": {
+										"$ref": "AAAAAAF++ORs9dMK6dc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++ORs9dMIgNA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 112,
+									"top": -48,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++OQs7NJMsU4="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++OHW5c+NuS8="
+							},
+							"lineStyle": 1,
+							"points": "726:274;855:289",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++ORs9dMLFsU="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++ORs9dMMe84="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++ORs9dMNMHM="
+							},
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAF++ORs9dMOnlo="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAF++ORs9dMPkqk="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAF++ORs9dMQo4A="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAF++ORs9dMRFBI="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAF++ORs9dMSlRU="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAF++ORs9dMTpAw="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAF++ORs9dMUxyY="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAF++ORs9dMVuqA="
+							}
+						},
+						{
+							"_type": "UMLUseCaseSubjectView",
+							"_id": "AAAAAAF++OdCONTea10=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OdCN9TcS+A="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++OdCONTfpn8=",
+									"_parent": {
+										"$ref": "AAAAAAF++OdCONTea10="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OdCN9TcS+A="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OdCONTgp54=",
+											"_parent": {
+												"$ref": "AAAAAAF++OdCONTfpn8="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"top": -16,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OdCONTh/ms=",
+											"_parent": {
+												"$ref": "AAAAAAF++OdCONTfpn8="
+											},
+											"font": "Arial;13;1",
+											"left": 805,
+											"top": 367,
+											"width": 550,
+											"height": 13,
+											"text": "Bornes automatiques"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OdCONTifK0=",
+											"_parent": {
+												"$ref": "AAAAAAF++OdCONTfpn8="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"top": -16,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OdCONTjfSw=",
+											"_parent": {
+												"$ref": "AAAAAAF++OdCONTfpn8="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"top": -16,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 800,
+									"top": 360,
+									"width": 560,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++OdCONTgp54="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++OdCONTh/ms="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++OdCONTifK0="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++OdCONTjfSw="
+									}
+								}
+							],
+							"font": "Arial;13;0",
+							"left": 800,
+							"top": 360,
+							"width": 560,
+							"height": 288,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++OdCONTfpn8="
+							}
+						},
+						{
+							"_type": "UMLActorView",
+							"_id": "AAAAAAF++Ogcm9XJthg=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++Ogcm9XHv/A="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++Ogcm9XKcXk=",
+									"_parent": {
+										"$ref": "AAAAAAF++Ogcm9XJthg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Ogcm9XHv/A="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Ogcm9XL11I=",
+											"_parent": {
+												"$ref": "AAAAAAF++Ogcm9XKcXk="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 336,
+											"top": -112,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OgcnNXMQn8=",
+											"_parent": {
+												"$ref": "AAAAAAF++Ogcm9XKcXk="
+											},
+											"font": "Arial;13;1",
+											"left": 1277,
+											"top": 717,
+											"width": 52.01904296875,
+											"height": 13,
+											"text": "Centrale"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OgcnNXNUIk=",
+											"_parent": {
+												"$ref": "AAAAAAF++Ogcm9XKcXk="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 336,
+											"top": -112,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OgcnNXOz1w=",
+											"_parent": {
+												"$ref": "AAAAAAF++Ogcm9XKcXk="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 336,
+											"top": -112,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 1272,
+									"top": 710,
+									"width": 62.01904296875,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++Ogcm9XL11I="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++OgcnNXMQn8="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++OgcnNXNUIk="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++OgcnNXOz1w="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++OgcnNXPZmg=",
+									"_parent": {
+										"$ref": "AAAAAAF++Ogcm9XJthg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Ogcm9XHv/A="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 168,
+									"top": -56,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++OgcnNXQBjQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++Ogcm9XJthg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Ogcm9XHv/A="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 168,
+									"top": -56,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++OgcnNXRaMU=",
+									"_parent": {
+										"$ref": "AAAAAAF++Ogcm9XJthg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Ogcm9XHv/A="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 168,
+									"top": -56,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++OgcnNXSA50=",
+									"_parent": {
+										"$ref": "AAAAAAF++Ogcm9XJthg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Ogcm9XHv/A="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 168,
+									"top": -56,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 1272,
+							"top": 656,
+							"width": 62.01904296875,
+							"height": 80,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++Ogcm9XKcXk="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++OgcnNXPZmg="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++OgcnNXQBjQ="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++OgcnNXRaMU="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++OgcnNXSA50="
+							}
+						},
+						{
+							"_type": "UMLActorView",
+							"_id": "AAAAAAF++Og5K9Z7yNA=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++Og5K9Z5Na8="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++Og5K9Z8nFA=",
+									"_parent": {
+										"$ref": "AAAAAAF++Og5K9Z7yNA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Og5K9Z5Na8="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Og5K9Z9l3o=",
+											"_parent": {
+												"$ref": "AAAAAAF++Og5K9Z8nFA="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 112,
+											"top": -48,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Og5K9Z+fv8=",
+											"_parent": {
+												"$ref": "AAAAAAF++Og5K9Z8nFA="
+											},
+											"font": "Arial;13;1",
+											"left": 709,
+											"top": 445,
+											"width": 63.57177734375,
+											"height": 13,
+											"text": "Utilisateur"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Og5K9Z/yIk=",
+											"_parent": {
+												"$ref": "AAAAAAF++Og5K9Z8nFA="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 112,
+											"top": -48,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Og5K9aAILI=",
+											"_parent": {
+												"$ref": "AAAAAAF++Og5K9Z8nFA="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 112,
+											"top": -48,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 704,
+									"top": 438,
+									"width": 73.57177734375,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++Og5K9Z9l3o="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++Og5K9Z+fv8="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++Og5K9Z/yIk="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++Og5K9aAILI="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++Og5K9aBdrA=",
+									"_parent": {
+										"$ref": "AAAAAAF++Og5K9Z7yNA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Og5K9Z5Na8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 56,
+									"top": -24,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++Og5K9aCxQ0=",
+									"_parent": {
+										"$ref": "AAAAAAF++Og5K9Z7yNA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Og5K9Z5Na8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 56,
+									"top": -24,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++Og5K9aDFtw=",
+									"_parent": {
+										"$ref": "AAAAAAF++Og5K9Z7yNA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Og5K9Z5Na8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 56,
+									"top": -24,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++Og5K9aEvFo=",
+									"_parent": {
+										"$ref": "AAAAAAF++Og5K9Z7yNA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Og5K9Z5Na8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 56,
+									"top": -24,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 704,
+							"top": 384,
+							"width": 73.57177734375,
+							"height": 80,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++Og5K9Z8nFA="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++Og5K9aBdrA="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++Og5K9aCxQ0="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++Og5K9aDFtw="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++Og5K9aEvFo="
+							}
+						},
+						{
+							"_type": "UMLActorView",
+							"_id": "AAAAAAF++OhL4tb24sE=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OhL4tb0d0s="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++OhL4tb3EE4=",
+									"_parent": {
+										"$ref": "AAAAAAF++OhL4tb24sE="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OhL4tb0d0s="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OhL4tb4Fco=",
+											"_parent": {
+												"$ref": "AAAAAAF++OhL4tb3EE4="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 48,
+											"top": -112,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OhL4tb5ASc=",
+											"_parent": {
+												"$ref": "AAAAAAF++OhL4tb3EE4="
+											},
+											"font": "Arial;13;1",
+											"left": 709,
+											"top": 613,
+											"width": 67.90087890625,
+											"height": 13,
+											"text": "Dépanneur"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OhL4tb6FBU=",
+											"_parent": {
+												"$ref": "AAAAAAF++OhL4tb3EE4="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 48,
+											"top": -112,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OhL4tb7xsw=",
+											"_parent": {
+												"$ref": "AAAAAAF++OhL4tb3EE4="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 48,
+											"top": -112,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 704,
+									"top": 606,
+									"width": 77.90087890625,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++OhL4tb4Fco="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++OhL4tb5ASc="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++OhL4tb6FBU="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++OhL4tb7xsw="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++OhL49b8krA=",
+									"_parent": {
+										"$ref": "AAAAAAF++OhL4tb24sE="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OhL4tb0d0s="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 24,
+									"top": -56,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++OhL49b9sHs=",
+									"_parent": {
+										"$ref": "AAAAAAF++OhL4tb24sE="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OhL4tb0d0s="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 24,
+									"top": -56,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++OhL49b+8kQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++OhL4tb24sE="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OhL4tb0d0s="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 24,
+									"top": -56,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++OhL49b/2J4=",
+									"_parent": {
+										"$ref": "AAAAAAF++OhL4tb24sE="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OhL4tb0d0s="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 24,
+									"top": -56,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 704,
+							"top": 552,
+							"width": 77.90087890625,
+							"height": 80,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++OhL4tb3EE4="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++OhL49b8krA="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++OhL49b9sHs="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++OhL49b+8kQ="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++OhL49b/2J4="
+							}
+						},
+						{
+							"_type": "UMLUseCaseView",
+							"_id": "AAAAAAF++Oi2wdff3Yg=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++Oi2wdfdZtM="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++Oi2wdfgrAY=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oi2wdff3Yg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oi2wdfdZtM="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Oi2wdfh6Yc=",
+											"_parent": {
+												"$ref": "AAAAAAF++Oi2wdfgrAY="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Oi2wdfibYA=",
+											"_parent": {
+												"$ref": "AAAAAAF++Oi2wdfgrAY="
+											},
+											"font": "Arial;13;1",
+											"left": 951,
+											"top": 414,
+											"width": 76,
+											"height": 13,
+											"text": "Acheter titre"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Oi2wdfjT/s=",
+											"_parent": {
+												"$ref": "AAAAAAF++Oi2wdfgrAY="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Oi2wdfkjC0=",
+											"_parent": {
+												"$ref": "AAAAAAF++Oi2wdfgrAY="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 946,
+									"top": 407,
+									"width": 86.578125,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++Oi2wdfh6Yc="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++Oi2wdfibYA="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++Oi2wdfjT/s="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++Oi2wdfkjC0="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++Oi2wdflcEc=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oi2wdff3Yg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oi2wdfdZtM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++Oi2wtfm/r8=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oi2wdff3Yg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oi2wdfdZtM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++Oi2wtfnw/g=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oi2wdff3Yg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oi2wdfdZtM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++Oi2wtfoGkc=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oi2wdff3Yg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oi2wdfdZtM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLExtensionPointCompartmentView",
+									"_id": "AAAAAAF++Oi2wtfp6cw=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oi2wdff3Yg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oi2wdfdZtM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 928,
+							"top": 400,
+							"width": 122,
+							"height": 40,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++Oi2wdfgrAY="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++Oi2wdflcEc="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++Oi2wtfm/r8="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++Oi2wtfnw/g="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++Oi2wtfoGkc="
+							},
+							"extensionPointCompartment": {
+								"$ref": "AAAAAAF++Oi2wtfp6cw="
+							}
+						},
+						{
+							"_type": "UMLUseCaseView",
+							"_id": "AAAAAAF++OjerNhMqZk=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OjerNhKUuM="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++OjerNhNLoM=",
+									"_parent": {
+										"$ref": "AAAAAAF++OjerNhMqZk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OjerNhKUuM="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OjerNhO7kE=",
+											"_parent": {
+												"$ref": "AAAAAAF++OjerNhNLoM="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -208,
+											"top": 32,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OjerNhPeRg=",
+											"_parent": {
+												"$ref": "AAAAAAF++OjerNhNLoM="
+											},
+											"font": "Arial;13;1",
+											"left": 855.5,
+											"top": 491.5,
+											"width": 116,
+											"height": 13,
+											"text": "Consulter Horaires"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OjerNhQ+3w=",
+											"_parent": {
+												"$ref": "AAAAAAF++OjerNhNLoM="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -208,
+											"top": 32,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OjerNhR5cg=",
+											"_parent": {
+												"$ref": "AAAAAAF++OjerNhNLoM="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -208,
+											"top": 32,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 850.5,
+									"top": 484.5,
+									"width": 127.03173828125,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++OjerNhO7kE="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++OjerNhPeRg="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++OjerNhQ+3w="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++OjerNhR5cg="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++OjerdhSHLk=",
+									"_parent": {
+										"$ref": "AAAAAAF++OjerNhMqZk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OjerNhKUuM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -104,
+									"top": 16,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++OjerdhTd9E=",
+									"_parent": {
+										"$ref": "AAAAAAF++OjerNhMqZk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OjerNhKUuM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -104,
+									"top": 16,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++OjerdhU9u8=",
+									"_parent": {
+										"$ref": "AAAAAAF++OjerNhMqZk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OjerNhKUuM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -104,
+									"top": 16,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++OjerdhV1nU=",
+									"_parent": {
+										"$ref": "AAAAAAF++OjerNhMqZk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OjerNhKUuM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -104,
+									"top": 16,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLExtensionPointCompartmentView",
+									"_id": "AAAAAAF++OjerdhWb4Q=",
+									"_parent": {
+										"$ref": "AAAAAAF++OjerNhMqZk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OjerNhKUuM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -104,
+									"top": 16,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 824,
+							"top": 480,
+							"width": 179,
+							"height": 35,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++OjerNhNLoM="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++OjerdhSHLk="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++OjerdhTd9E="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++OjerdhU9u8="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++OjerdhV1nU="
+							},
+							"extensionPointCompartment": {
+								"$ref": "AAAAAAF++OjerdhWb4Q="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAF++OkOX9kgSZM=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OkOX9kch9c="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OkOX9khRcc=",
+									"_parent": {
+										"$ref": "AAAAAAF++OkOX9kgSZM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OkOX9kch9c="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 851,
+									"top": 400,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OkOX9kgSZM="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OkOYNkitlQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++OkOX9kgSZM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OkOX9kch9c="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 851,
+									"top": 385,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OkOX9kgSZM="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OkOYNkjPd0=",
+									"_parent": {
+										"$ref": "AAAAAAF++OkOX9kgSZM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OkOX9kch9c="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 852,
+									"top": 429,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OkOX9kgSZM="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OkOYNkk9Rs=",
+									"_parent": {
+										"$ref": "AAAAAAF++OkOX9kgSZM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OkOX9kdOi0="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 803,
+									"top": 400,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OkOX9kgSZM="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OkOYNklAxU=",
+									"_parent": {
+										"$ref": "AAAAAAF++OkOX9kgSZM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OkOX9kdOi0="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 805,
+									"top": 387,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OkOX9kgSZM="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OkOYNkmZEg=",
+									"_parent": {
+										"$ref": "AAAAAAF++OkOX9kgSZM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OkOX9kdOi0="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 799,
+									"top": 428,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OkOX9kgSZM="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OkOYNknsTk=",
+									"_parent": {
+										"$ref": "AAAAAAF++OkOX9kgSZM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OkOX9keNdY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 900,
+									"top": 399,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OkOX9kgSZM="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OkOYNko5LI=",
+									"_parent": {
+										"$ref": "AAAAAAF++OkOX9kgSZM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OkOX9keNdY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 898,
+									"top": 386,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OkOX9kgSZM="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OkOYNkp3VA=",
+									"_parent": {
+										"$ref": "AAAAAAF++OkOX9kgSZM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OkOX9keNdY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 905,
+									"top": 426,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OkOX9kgSZM="
+									}
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++OkOYNkqGXo=",
+									"_parent": {
+										"$ref": "AAAAAAF++OkOX9kgSZM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OkOX9kdOi0="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++OkOYNkrkko=",
+									"_parent": {
+										"$ref": "AAAAAAF++OkOX9kgSZM="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OkOX9keNdY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++Oi2wdff3Yg="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++Og5K9Z7yNA="
+							},
+							"lineStyle": 1,
+							"points": "778:422;927:420",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++OkOX9khRcc="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++OkOYNkitlQ="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++OkOYNkjPd0="
+							},
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAF++OkOYNkk9Rs="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAF++OkOYNklAxU="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAF++OkOYNkmZEg="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAF++OkOYNknsTk="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAF++OkOYNko5LI="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAF++OkOYNkp3VA="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAF++OkOYNkqGXo="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAF++OkOYNkrkko="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAF++Okb0NmoAD0=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++Okb0NmkcNI="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Okb0NmpYDk=",
+									"_parent": {
+										"$ref": "AAAAAAF++Okb0NmoAD0="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Okb0NmkcNI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 829,
+									"top": 439,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Okb0NmoAD0="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Okb0NmqNDQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++Okb0NmoAD0="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Okb0NmkcNI="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 835,
+									"top": 425,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Okb0NmoAD0="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Okb0Nmr3nM=",
+									"_parent": {
+										"$ref": "AAAAAAF++Okb0NmoAD0="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Okb0NmkcNI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 818,
+									"top": 466,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Okb0NmoAD0="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Okb0NmsD+c=",
+									"_parent": {
+										"$ref": "AAAAAAF++Okb0NmoAD0="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Okb0NmlAgs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 807,
+									"top": 429,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Okb0NmoAD0="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Okb0Nmt5NM=",
+									"_parent": {
+										"$ref": "AAAAAAF++Okb0NmoAD0="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Okb0NmlAgs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 815,
+									"top": 418,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Okb0NmoAD0="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Okb0Nmu+kM=",
+									"_parent": {
+										"$ref": "AAAAAAF++Okb0NmoAD0="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Okb0NmlAgs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 792,
+									"top": 453,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Okb0NmoAD0="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Okb0NmvH+U=",
+									"_parent": {
+										"$ref": "AAAAAAF++Okb0NmoAD0="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Okb0NmmOro="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 853,
+									"top": 448,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Okb0NmoAD0="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Okb0Nmwoys=",
+									"_parent": {
+										"$ref": "AAAAAAF++Okb0NmoAD0="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Okb0NmmOro="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 856,
+									"top": 435,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Okb0NmoAD0="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Okb0Nmx198=",
+									"_parent": {
+										"$ref": "AAAAAAF++Okb0NmoAD0="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Okb0NmmOro="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 846,
+									"top": 475,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Okb0NmoAD0="
+									}
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++Okb0NmyuYg=",
+									"_parent": {
+										"$ref": "AAAAAAF++Okb0NmoAD0="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Okb0NmlAgs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++Okb0Nmzr8o=",
+									"_parent": {
+										"$ref": "AAAAAAF++Okb0NmoAD0="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Okb0NmmOro="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++OjerNhMqZk="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++Og5K9Z7yNA="
+							},
+							"lineStyle": 1,
+							"points": "778:439;871:479",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++Okb0NmpYDk="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++Okb0NmqNDQ="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++Okb0Nmr3nM="
+							},
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAF++Okb0NmsD+c="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAF++Okb0Nmt5NM="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAF++Okb0Nmu+kM="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAF++Okb0NmvH+U="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAF++Okb0Nmwoys="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAF++Okb0Nmx198="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAF++Okb0NmyuYg="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAF++Okb0Nmzr8o="
+							}
+						},
+						{
+							"_type": "UMLUseCaseView",
+							"_id": "AAAAAAF++OkqJ9pDZ88=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OkqJ9pBMBY="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++OkqJ9pEse0=",
+									"_parent": {
+										"$ref": "AAAAAAF++OkqJ9pDZ88="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OkqJ9pBMBY="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OkqJ9pF3Mo=",
+											"_parent": {
+												"$ref": "AAAAAAF++OkqJ9pEse0="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 96,
+											"top": -48,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OkqJ9pGb7w=",
+											"_parent": {
+												"$ref": "AAAAAAF++OkqJ9pEse0="
+											},
+											"font": "Arial;13;1",
+											"left": 1220,
+											"top": 387.5,
+											"width": 62,
+											"height": 13,
+											"text": "Ticket"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OkqJ9pHcNI=",
+											"_parent": {
+												"$ref": "AAAAAAF++OkqJ9pEse0="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 96,
+											"top": -48,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OkqJ9pICR4=",
+											"_parent": {
+												"$ref": "AAAAAAF++OkqJ9pEse0="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 96,
+											"top": -48,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 1215,
+									"top": 380.5,
+									"width": 72,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++OkqJ9pF3Mo="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++OkqJ9pGb7w="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++OkqJ9pHcNI="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++OkqJ9pICR4="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++OkqJ9pJ2oo=",
+									"_parent": {
+										"$ref": "AAAAAAF++OkqJ9pDZ88="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OkqJ9pBMBY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 48,
+									"top": -24,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++OkqJ9pKMG0=",
+									"_parent": {
+										"$ref": "AAAAAAF++OkqJ9pDZ88="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OkqJ9pBMBY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 48,
+									"top": -24,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++OkqJ9pLIRs=",
+									"_parent": {
+										"$ref": "AAAAAAF++OkqJ9pDZ88="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OkqJ9pBMBY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 48,
+									"top": -24,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++OkqJ9pMypQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++OkqJ9pDZ88="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OkqJ9pBMBY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 48,
+									"top": -24,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLExtensionPointCompartmentView",
+									"_id": "AAAAAAF++OkqKNpNjeU=",
+									"_parent": {
+										"$ref": "AAAAAAF++OkqJ9pDZ88="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OkqJ9pBMBY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 48,
+									"top": -24,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 1200,
+							"top": 376,
+							"width": 102,
+							"height": 35,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++OkqJ9pEse0="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++OkqJ9pJ2oo="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++OkqJ9pKMG0="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++OkqJ9pLIRs="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++OkqJ9pMypQ="
+							},
+							"extensionPointCompartment": {
+								"$ref": "AAAAAAF++OkqKNpNjeU="
+							}
+						},
+						{
+							"_type": "UMLUseCaseView",
+							"_id": "AAAAAAF++OlKoNrayuA=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OlKoNrYe3w="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++OlKoNrbZIc=",
+									"_parent": {
+										"$ref": "AAAAAAF++OlKoNrayuA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OlKoNrYe3w="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OlKodrcsDY=",
+											"_parent": {
+												"$ref": "AAAAAAF++OlKoNrbZIc="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 48,
+											"top": -64,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OlKodrdweY=",
+											"_parent": {
+												"$ref": "AAAAAAF++OlKoNrbZIc="
+											},
+											"font": "Arial;13;1",
+											"left": 1215.5,
+											"top": 427.5,
+											"width": 79,
+											"height": 13,
+											"text": "Abonnement"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OlKodrezDo=",
+											"_parent": {
+												"$ref": "AAAAAAF++OlKoNrbZIc="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 48,
+											"top": -64,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OlKodrfCLI=",
+											"_parent": {
+												"$ref": "AAAAAAF++OlKoNrbZIc="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 48,
+											"top": -64,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 1210.5,
+									"top": 420.5,
+									"width": 89.44091796875,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++OlKodrcsDY="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++OlKodrdweY="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++OlKodrezDo="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++OlKodrfCLI="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++OlKodrgC6k=",
+									"_parent": {
+										"$ref": "AAAAAAF++OlKoNrayuA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OlKoNrYe3w="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 24,
+									"top": -32,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++OlKodrh9c8=",
+									"_parent": {
+										"$ref": "AAAAAAF++OlKoNrayuA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OlKoNrYe3w="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 24,
+									"top": -32,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++OlKodriSz4=",
+									"_parent": {
+										"$ref": "AAAAAAF++OlKoNrayuA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OlKoNrYe3w="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 24,
+									"top": -32,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++OlKodrjZTM=",
+									"_parent": {
+										"$ref": "AAAAAAF++OlKoNrayuA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OlKoNrYe3w="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 24,
+									"top": -32,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLExtensionPointCompartmentView",
+									"_id": "AAAAAAF++OlKodrk5rE=",
+									"_parent": {
+										"$ref": "AAAAAAF++OlKoNrayuA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OlKoNrYe3w="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 24,
+									"top": -32,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 1192,
+							"top": 416,
+							"width": 126,
+							"height": 35,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++OlKoNrbZIc="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++OlKodrgC6k="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++OlKodrh9c8="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++OlKodriSz4="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++OlKodrjZTM="
+							},
+							"extensionPointCompartment": {
+								"$ref": "AAAAAAF++OlKodrk5rE="
+							}
+						},
+						{
+							"_type": "UMLGeneralizationView",
+							"_id": "AAAAAAF++Ol789yg5fU=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++Ol789yeZzE="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Ol789yhmcU=",
+									"_parent": {
+										"$ref": "AAAAAAF++Ol789yg5fU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Ol789yeZzE="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1125,
+									"top": 413,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Ol789yg5fU="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Ol789yiQsA=",
+									"_parent": {
+										"$ref": "AAAAAAF++Ol789yg5fU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Ol789yeZzE="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 1127,
+									"top": 428,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Ol789yg5fU="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Ol789yj66s=",
+									"_parent": {
+										"$ref": "AAAAAAF++Ol789yg5fU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Ol789yeZzE="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1122,
+									"top": 384,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Ol789yg5fU="
+									},
+									"edgePosition": 1
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++Oi2wdff3Yg="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++OkqJ9pDZ88="
+							},
+							"lineStyle": 1,
+							"points": "1199:398;1050:413",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++Ol789yhmcU="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++Ol789yiQsA="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++Ol789yj66s="
+							}
+						},
+						{
+							"_type": "UMLGeneralizationView",
+							"_id": "AAAAAAF++OmMdd0afbY=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OmMdd0YsP0="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OmMdd0bQnU=",
+									"_parent": {
+										"$ref": "AAAAAAF++OmMdd0afbY="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OmMdd0YsP0="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1119,
+									"top": 434,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OmMdd0afbY="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OmMdd0cOY4=",
+									"_parent": {
+										"$ref": "AAAAAAF++OmMdd0afbY="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OmMdd0YsP0="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 1118,
+									"top": 449,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OmMdd0afbY="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OmMdd0dELc=",
+									"_parent": {
+										"$ref": "AAAAAAF++OmMdd0afbY="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OmMdd0YsP0="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1120,
+									"top": 405,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OmMdd0afbY="
+									},
+									"edgePosition": 1
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++Oi2wdff3Yg="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++OlKoNrayuA="
+							},
+							"lineStyle": 1,
+							"points": "1191:430;1050:422",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++OmMdd0bQnU="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++OmMdd0cOY4="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++OmMdd0dELc="
+							}
+						},
+						{
+							"_type": "UMLUseCaseView",
+							"_id": "AAAAAAF++OnBN94NLJk=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OnBN94LEKM="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++OnBN94OVE8=",
+									"_parent": {
+										"$ref": "AAAAAAF++OnBN94NLJk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OnBN94LEKM="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OnBN94PVDA=",
+											"_parent": {
+												"$ref": "AAAAAAF++OnBN94OVE8="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -128,
+											"top": 16,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OnBN94QvSw=",
+											"_parent": {
+												"$ref": "AAAAAAF++OnBN94OVE8="
+											},
+											"font": "Arial;13;1",
+											"left": 1105,
+											"top": 554,
+											"width": 163,
+											"height": 13,
+											"text": "Requête Base de Données"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OnBN94R1tk=",
+											"_parent": {
+												"$ref": "AAAAAAF++OnBN94OVE8="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -128,
+											"top": 16,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OnBN94Shcc=",
+											"_parent": {
+												"$ref": "AAAAAAF++OnBN94OVE8="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -128,
+											"top": 16,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 1100,
+									"top": 547,
+									"width": 173.2744140625,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++OnBN94PVDA="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++OnBN94QvSw="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++OnBN94R1tk="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++OnBN94Shcc="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++OnBN94TTK8=",
+									"_parent": {
+										"$ref": "AAAAAAF++OnBN94NLJk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OnBN94LEKM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -64,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++OnBN94U2l0=",
+									"_parent": {
+										"$ref": "AAAAAAF++OnBN94NLJk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OnBN94LEKM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -64,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++OnBON4VQmk=",
+									"_parent": {
+										"$ref": "AAAAAAF++OnBN94NLJk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OnBN94LEKM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -64,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++OnBON4We/Q=",
+									"_parent": {
+										"$ref": "AAAAAAF++OnBN94NLJk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OnBN94LEKM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -64,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLExtensionPointCompartmentView",
+									"_id": "AAAAAAF++OnBON4XHn4=",
+									"_parent": {
+										"$ref": "AAAAAAF++OnBN94NLJk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OnBN94LEKM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -64,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 1064,
+							"top": 536,
+							"width": 245,
+							"height": 48,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++OnBN94OVE8="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++OnBN94TTK8="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++OnBN94U2l0="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++OnBON4VQmk="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++OnBON4We/Q="
+							},
+							"extensionPointCompartment": {
+								"$ref": "AAAAAAF++OnBON4XHn4="
+							}
+						},
+						{
+							"_type": "UMLIncludeView",
+							"_id": "AAAAAAF++Oolk99oZYg=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++Oolkt9mRGY="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Oolk99p0Dw=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oolk99oZYg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oolkt9mRGY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1039,
+									"top": 504,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Oolk99oZYg="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Oolk99qPgg=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oolk99oZYg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oolkt9mRGY="
+									},
+									"font": "Arial;13;0",
+									"left": 1015,
+									"top": 489,
+									"width": 55.65625,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Oolk99oZYg="
+									},
+									"edgePosition": 1,
+									"text": "«include»"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Oolk99rJAs=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oolk99oZYg="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oolkt9mRGY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1032,
+									"top": 533,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Oolk99oZYg="
+									},
+									"edgePosition": 1
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++OnBN94NLJk="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++OjerNhMqZk="
+							},
+							"lineStyle": 1,
+							"points": "992:515;1080:535",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++Oolk99p0Dw="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++Oolk99qPgg="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++Oolk99rJAs="
+							}
+						},
+						{
+							"_type": "UMLIncludeView",
+							"_id": "AAAAAAF++Oovs9/ivEc=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++Oovst/g70k="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Oovs9/jZUw=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oovs9/ivEc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oovst/g70k="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1093,
+									"top": 468,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Oovs9/ivEc="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Oovs9/kqGY=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oovs9/ivEc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oovst/g70k="
+									},
+									"font": "Arial;13;0",
+									"left": 1075,
+									"top": 456,
+									"width": 55.65625,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Oovs9/ivEc="
+									},
+									"edgePosition": 1,
+									"text": "«include»"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Oovs9/lgR8=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oovs9/ivEc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oovst/g70k="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1076,
+									"top": 493,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Oovs9/ivEc="
+									},
+									"edgePosition": 1
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++OnBN94NLJk="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++Oi2wdff3Yg="
+							},
+							"lineStyle": 1,
+							"points": "1018:440;1152:535",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++Oovs9/jZUw="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++Oovs9/kqGY="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++Oovs9/lgR8="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAF++Oo6+uBeBNw=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++Oo6+uBaaWo="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Oo6+uBfcMg=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oo6+uBeBNw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oo6+uBaaWo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1250,
+									"top": 605,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Oo6+uBeBNw="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Oo6+uBgsKw=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oo6+uBeBNw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oo6+uBaaWo="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 1261,
+									"top": 595,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Oo6+uBeBNw="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Oo6+uBhdjk=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oo6+uBeBNw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oo6+uBaaWo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1227,
+									"top": 624,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Oo6+uBeBNw="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Oo6+uBiaVk=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oo6+uBeBNw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oo6+uBbsVU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1235,
+									"top": 588,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Oo6+uBeBNw="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Oo6++BjTiI=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oo6+uBeBNw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oo6+uBbsVU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1246,
+									"top": 581,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Oo6+uBeBNw="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Oo6++Bkxdw=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oo6+uBeBNw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oo6+uBbsVU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1211,
+									"top": 602,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Oo6+uBeBNw="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Oo6++Blhzg=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oo6+uBeBNw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oo6+uBcHnw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1265,
+									"top": 623,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Oo6+uBeBNw="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Oo6++BmU04=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oo6+uBeBNw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oo6+uBcHnw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1274,
+									"top": 613,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Oo6+uBeBNw="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++Oo6++Bn/p0=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oo6+uBeBNw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oo6+uBcHnw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1247,
+									"top": 644,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++Oo6+uBeBNw="
+									}
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++Oo6++BodSg=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oo6+uBeBNw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oo6+uBbsVU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++Oo6++Bp2u8=",
+									"_parent": {
+										"$ref": "AAAAAAF++Oo6+uBeBNw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Oo6+uBcHnw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++Ogcm9XJthg="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++OnBN94NLJk="
+							},
+							"lineStyle": 1,
+							"points": "1207:584;1271:659",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++Oo6+uBfcMg="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++Oo6+uBgsKw="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++Oo6+uBhdjk="
+							},
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAF++Oo6+uBiaVk="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAF++Oo6++BjTiI="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAF++Oo6++Bkxdw="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAF++Oo6++Blhzg="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAF++Oo6++BmU04="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAF++Oo6++Bn/p0="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAF++Oo6++BodSg="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAF++Oo6++Bp2u8="
+							}
+						},
+						{
+							"_type": "UMLUseCaseView",
+							"_id": "AAAAAAF++OqDsuEO6yc=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OqDsuEM220="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++OqDsuEPQOg=",
+									"_parent": {
+										"$ref": "AAAAAAF++OqDsuEO6yc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OqDsuEM220="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OqDsuEQapc=",
+											"_parent": {
+												"$ref": "AAAAAAF++OqDsuEPQOg="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -16,
+											"top": 16,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OqDsuERe08=",
+											"_parent": {
+												"$ref": "AAAAAAF++OqDsuEPQOg="
+											},
+											"font": "Arial;13;1",
+											"left": 858,
+											"top": 563.5,
+											"width": 127,
+											"height": 13,
+											"text": "Lancer Diagnostique"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OqDsuESRsU=",
+											"_parent": {
+												"$ref": "AAAAAAF++OqDsuEPQOg="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -16,
+											"top": 16,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OqDsuETy5w=",
+											"_parent": {
+												"$ref": "AAAAAAF++OqDsuEPQOg="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -16,
+											"top": 16,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 853,
+									"top": 556.5,
+									"width": 138.578125,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++OqDsuEQapc="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++OqDsuERe08="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++OqDsuESRsU="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++OqDsuETy5w="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++OqDsuEU1NQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++OqDsuEO6yc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OqDsuEM220="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -8,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++OqDsuEVG6c=",
+									"_parent": {
+										"$ref": "AAAAAAF++OqDsuEO6yc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OqDsuEM220="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -8,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++OqDsuEWwNE=",
+									"_parent": {
+										"$ref": "AAAAAAF++OqDsuEO6yc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OqDsuEM220="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -8,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++OqDsuEXrcQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++OqDsuEO6yc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OqDsuEM220="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -8,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLExtensionPointCompartmentView",
+									"_id": "AAAAAAF++OqDsuEYhxM=",
+									"_parent": {
+										"$ref": "AAAAAAF++OqDsuEO6yc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OqDsuEM220="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -8,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 824,
+							"top": 552,
+							"width": 195,
+							"height": 35,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++OqDsuEPQOg="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++OqDsuEU1NQ="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++OqDsuEVG6c="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++OqDsuEWwNE="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++OqDsuEXrcQ="
+							},
+							"extensionPointCompartment": {
+								"$ref": "AAAAAAF++OqDsuEYhxM="
+							}
+						},
+						{
+							"_type": "UMLUseCaseView",
+							"_id": "AAAAAAF++OqsQ+JLETA=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OqsQuJJviQ="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++OqsQ+JMxxg=",
+									"_parent": {
+										"$ref": "AAAAAAF++OqsQ+JLETA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OqsQuJJviQ="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OqsQ+JNCWY=",
+											"_parent": {
+												"$ref": "AAAAAAF++OqsQ+JMxxg="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -48,
+											"top": 16,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OqsQ+JO4fU=",
+											"_parent": {
+												"$ref": "AAAAAAF++OqsQ+JMxxg="
+											},
+											"font": "Arial;13;1",
+											"left": 871,
+											"top": 603.5,
+											"width": 114,
+											"height": 13,
+											"text": "Remplir les tickets"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OqsQ+JPn94=",
+											"_parent": {
+												"$ref": "AAAAAAF++OqsQ+JMxxg="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -48,
+											"top": 16,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OqsQ+JQtPY=",
+											"_parent": {
+												"$ref": "AAAAAAF++OqsQ+JMxxg="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -48,
+											"top": 16,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 866,
+									"top": 596.5,
+									"width": 124.88623046875,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++OqsQ+JNCWY="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++OqsQ+JO4fU="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++OqsQ+JPn94="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++OqsQ+JQtPY="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++OqsQ+JRSXQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++OqsQ+JLETA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OqsQuJJviQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -24,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++OqsQ+JSkpY=",
+									"_parent": {
+										"$ref": "AAAAAAF++OqsQ+JLETA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OqsQuJJviQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -24,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++OqsQ+JTmYM=",
+									"_parent": {
+										"$ref": "AAAAAAF++OqsQ+JLETA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OqsQuJJviQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -24,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++OqsQ+JUPXo=",
+									"_parent": {
+										"$ref": "AAAAAAF++OqsQ+JLETA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OqsQuJJviQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -24,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLExtensionPointCompartmentView",
+									"_id": "AAAAAAF++OqsQ+JVUYw=",
+									"_parent": {
+										"$ref": "AAAAAAF++OqsQ+JLETA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OqsQuJJviQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -24,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 840,
+							"top": 592,
+							"width": 176,
+							"height": 35,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++OqsQ+JMxxg="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++OqsQ+JRSXQ="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++OqsQ+JSkpY="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++OqsQ+JTmYM="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++OqsQ+JUPXo="
+							},
+							"extensionPointCompartment": {
+								"$ref": "AAAAAAF++OqsQ+JVUYw="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAF++OrOZOOKHYU=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OrOY+OGSew="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OrOZOOL/ac=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrOZOOKHYU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrOY+OGSew="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 800,
+									"top": 562,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OrOZOOKHYU="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OrOZOOMlH4=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrOZOOKHYU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrOY+OGSew="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 799,
+									"top": 547,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OrOZOOKHYU="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OrOZOONN8o=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrOZOOKHYU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrOY+OGSew="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 803,
+									"top": 591,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OrOZOOKHYU="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OrOZOOOk9M=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrOZOOKHYU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrOY+OH2ro="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 805,
+									"top": 561,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OrOZOOKHYU="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OrOZOOP65g=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrOZOOKHYU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrOY+OH2ro="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 806,
+									"top": 548,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OrOZOOKHYU="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OrOZOOQuRE=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrOZOOKHYU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrOY+OH2ro="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 805,
+									"top": 589,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OrOZOOKHYU="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OrOZOOROF4=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrOZOOKHYU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrOY+OIHbA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 795,
+									"top": 563,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OrOZOOKHYU="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OrOZOOS6Qo=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrOZOOKHYU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrOY+OIHbA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 791,
+									"top": 550,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OrOZOOKHYU="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OrOZOOTtCE=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrOZOOKHYU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrOY+OIHbA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 803,
+									"top": 590,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OrOZOOKHYU="
+									}
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++OrOZOOUYx8=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrOZOOKHYU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrOY+OH2ro="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++OrOZOOVK0k=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrOZOOKHYU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrOY+OIHbA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++OqDsuEO6yc="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++OhL4tb24sE="
+							},
+							"lineStyle": 1,
+							"points": "782:586;823:581",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++OrOZOOL/ac="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++OrOZOOMlH4="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++OrOZOONN8o="
+							},
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAF++OrOZOOOk9M="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAF++OrOZOOP65g="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAF++OrOZOOQuRE="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAF++OrOZOOROF4="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAF++OrOZOOS6Qo="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAF++OrOZOOTtCE="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAF++OrOZOOUYx8="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAF++OrOZOOVK0k="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAF++OrYzeRRN0w=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OrYzeRNRvo="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OrYzeRSP3c=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrYzeRRN0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrYzeRNRvo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 811,
+									"top": 576,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OrYzeRRN0w="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OrYzeRTQ2Q=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrYzeRRN0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrYzeRNRvo="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 813,
+									"top": 561,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OrYzeRRN0w="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OrYzeRUi1I=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrYzeRRN0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrYzeRNRvo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 808,
+									"top": 605,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OrYzeRRN0w="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OrYzeRVxlA=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrYzeRRN0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrYzeRO+Ac="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 809,
+									"top": 576,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OrYzeRRN0w="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OrYzeRWbtY=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrYzeRRN0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrYzeRO+Ac="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 812,
+									"top": 563,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OrYzeRRN0w="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OrYzeRXdzw=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrYzeRRN0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrYzeRO+Ac="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 802,
+									"top": 603,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OrYzeRRN0w="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OrYzeRY08g=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrYzeRRN0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrYzeRPIRw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 814,
+									"top": 576,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OrYzeRRN0w="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OrYzeRZrV4=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrYzeRRN0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrYzeRPIRw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 813,
+									"top": 563,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OrYzeRRN0w="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OrYzeRaVLA=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrYzeRRN0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrYzeRPIRw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 816,
+									"top": 604,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OrYzeRRN0w="
+									}
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++OrYzeRbJi8=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrYzeRRN0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrYzeRO+Ac="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++OrYzeRcOkY=",
+									"_parent": {
+										"$ref": "AAAAAAF++OrYzeRRN0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OrYzeRPIRw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++OqsQ+JLETA="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++OhL4tb24sE="
+							},
+							"lineStyle": 1,
+							"points": "782:595;839:600",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++OrYzeRSP3c="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++OrYzeRTQ2Q="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++OrYzeRUi1I="
+							},
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAF++OrYzeRVxlA="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAF++OrYzeRWbtY="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAF++OrYzeRXdzw="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAF++OrYzeRY08g="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAF++OrYzeRZrV4="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAF++OrYzeRaVLA="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAF++OrYzeRbJi8="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAF++OrYzeRcOkY="
+							}
+						},
+						{
+							"_type": "UMLUseCaseSubjectView",
+							"_id": "AAAAAAF++OuT3Ou/l34=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OuT2+u9wfk="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++OuT3OvAkLo=",
+									"_parent": {
+										"$ref": "AAAAAAF++OuT3Ou/l34="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OuT2+u9wfk="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OuT3evB4TA=",
+											"_parent": {
+												"$ref": "AAAAAAF++OuT3OvAkLo="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OuT3evCHT0=",
+											"_parent": {
+												"$ref": "AAAAAAF++OuT3OvAkLo="
+											},
+											"font": "Arial;13;1",
+											"left": 21,
+											"top": 23,
+											"width": 374,
+											"height": 13,
+											"text": "La Centrale"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OuT3evDVS8=",
+											"_parent": {
+												"$ref": "AAAAAAF++OuT3OvAkLo="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OuT3evEzPw=",
+											"_parent": {
+												"$ref": "AAAAAAF++OuT3OvAkLo="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 16,
+									"top": 16,
+									"width": 384,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++OuT3evB4TA="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++OuT3evCHT0="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++OuT3evDVS8="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++OuT3evEzPw="
+									}
+								}
+							],
+							"font": "Arial;13;0",
+							"left": 16,
+							"top": 16,
+							"width": 384,
+							"height": 368,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++OuT3OvAkLo="
+							}
+						},
+						{
+							"_type": "UMLUseCaseView",
+							"_id": "AAAAAAF++OwwtOyxFxo=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OwwtOyv8fM="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++Owwteyyrt4=",
+									"_parent": {
+										"$ref": "AAAAAAF++OwwtOyxFxo="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OwwtOyv8fM="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OwwteyziUI=",
+											"_parent": {
+												"$ref": "AAAAAAF++Owwteyyrt4="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"top": -272,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Owwtey0Z54=",
+											"_parent": {
+												"$ref": "AAAAAAF++Owwteyyrt4="
+											},
+											"font": "Arial;13;1",
+											"left": 70,
+											"top": 182,
+											"width": 71,
+											"height": 13,
+											"text": "Redirection"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Owwtey12bU=",
+											"_parent": {
+												"$ref": "AAAAAAF++Owwteyyrt4="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"top": -272,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Owwtey2hZg=",
+											"_parent": {
+												"$ref": "AAAAAAF++Owwteyyrt4="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"top": -272,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 65,
+									"top": 175,
+									"width": 81.5126953125,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++OwwteyziUI="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++Owwtey0Z54="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++Owwtey12bU="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++Owwtey2hZg="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++Owwtey3Rk0=",
+									"_parent": {
+										"$ref": "AAAAAAF++OwwtOyxFxo="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OwwtOyv8fM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"top": -136,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++Owwtey4FC0=",
+									"_parent": {
+										"$ref": "AAAAAAF++OwwtOyxFxo="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OwwtOyv8fM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"top": -136,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++Owwtey5kgQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++OwwtOyxFxo="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OwwtOyv8fM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"top": -136,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++Owwtey6TQc=",
+									"_parent": {
+										"$ref": "AAAAAAF++OwwtOyxFxo="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OwwtOyv8fM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"top": -136,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLExtensionPointCompartmentView",
+									"_id": "AAAAAAF++Owwtey7MJ0=",
+									"_parent": {
+										"$ref": "AAAAAAF++OwwtOyxFxo="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OwwtOyv8fM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"top": -136,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 48,
+							"top": 168,
+							"width": 115,
+							"height": 40,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++Owwteyyrt4="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++Owwtey3Rk0="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++Owwtey4FC0="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++Owwtey5kgQ="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++Owwtey6TQc="
+							},
+							"extensionPointCompartment": {
+								"$ref": "AAAAAAF++Owwtey7MJ0="
+							}
+						},
+						{
+							"_type": "UMLActorView",
+							"_id": "AAAAAAF++OxHf+2H+vo=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OxHfu2FbFA="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++OxHf+2Ii2w=",
+									"_parent": {
+										"$ref": "AAAAAAF++OxHf+2H+vo="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OxHfu2FbFA="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OxHf+2JVmE=",
+											"_parent": {
+												"$ref": "AAAAAAF++OxHf+2Ii2w="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -16,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OxHf+2KyPo=",
+											"_parent": {
+												"$ref": "AAAAAAF++OxHf+2Ii2w="
+											},
+											"font": "Arial;13;1",
+											"left": 85,
+											"top": 501,
+											"width": 41.17724609375,
+											"height": 13,
+											"text": "Bus"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OxHf+2LP3w=",
+											"_parent": {
+												"$ref": "AAAAAAF++OxHf+2Ii2w="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -16,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OxHf+2Mbn4=",
+											"_parent": {
+												"$ref": "AAAAAAF++OxHf+2Ii2w="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -16,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 80,
+									"top": 494,
+									"width": 51.17724609375,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++OxHf+2JVmE="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++OxHf+2KyPo="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++OxHf+2LP3w="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++OxHf+2Mbn4="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++OxHf+2NI2U=",
+									"_parent": {
+										"$ref": "AAAAAAF++OxHf+2H+vo="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OxHfu2FbFA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++OxHf+2OigI=",
+									"_parent": {
+										"$ref": "AAAAAAF++OxHf+2H+vo="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OxHfu2FbFA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++OxHf+2PXF4=",
+									"_parent": {
+										"$ref": "AAAAAAF++OxHf+2H+vo="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OxHfu2FbFA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++OxHf+2QQgY=",
+									"_parent": {
+										"$ref": "AAAAAAF++OxHf+2H+vo="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OxHfu2FbFA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -8,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 80,
+							"top": 440,
+							"width": 51.17724609375,
+							"height": 80,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++OxHf+2Ii2w="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++OxHf+2NI2U="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++OxHf+2OigI="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++OxHf+2PXF4="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++OxHf+2QQgY="
+							}
+						},
+						{
+							"_type": "UMLActorView",
+							"_id": "AAAAAAF++OxW7O6JUhQ=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OxW7O6HzsQ="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++OxW7O6K3Qo=",
+									"_parent": {
+										"$ref": "AAAAAAF++OxW7O6JUhQ="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OxW7O6HzsQ="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OxW7O6Lh3E=",
+											"_parent": {
+												"$ref": "AAAAAAF++OxW7O6K3Qo="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 352,
+											"top": -768,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OxW7O6MAXo=",
+											"_parent": {
+												"$ref": "AAAAAAF++OxW7O6K3Qo="
+											},
+											"font": "Arial;13;1",
+											"left": 429,
+											"top": 125,
+											"width": 44.7890625,
+											"height": 13,
+											"text": "Bornes"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OxW7O6NfCM=",
+											"_parent": {
+												"$ref": "AAAAAAF++OxW7O6K3Qo="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 352,
+											"top": -768,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OxW7O6OT+E=",
+											"_parent": {
+												"$ref": "AAAAAAF++OxW7O6K3Qo="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 352,
+											"top": -768,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 424,
+									"top": 118,
+									"width": 54.7890625,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++OxW7O6Lh3E="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++OxW7O6MAXo="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++OxW7O6NfCM="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++OxW7O6OT+E="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++OxW7O6PMCs=",
+									"_parent": {
+										"$ref": "AAAAAAF++OxW7O6JUhQ="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OxW7O6HzsQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 176,
+									"top": -384,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++OxW7O6QeDw=",
+									"_parent": {
+										"$ref": "AAAAAAF++OxW7O6JUhQ="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OxW7O6HzsQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 176,
+									"top": -384,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++OxW7e6R4N8=",
+									"_parent": {
+										"$ref": "AAAAAAF++OxW7O6JUhQ="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OxW7O6HzsQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 176,
+									"top": -384,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++OxW7e6Sd5I=",
+									"_parent": {
+										"$ref": "AAAAAAF++OxW7O6JUhQ="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OxW7O6HzsQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 176,
+									"top": -384,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 424,
+							"top": 64,
+							"width": 54.7890625,
+							"height": 80,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++OxW7O6K3Qo="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++OxW7O6PMCs="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++OxW7O6QeDw="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++OxW7e6R4N8="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++OxW7e6Sd5I="
+							}
+						},
+						{
+							"_type": "UMLActorView",
+							"_id": "AAAAAAF++OxlMO9bl0g=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OxlMO9Zw4Q="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++OxlMO9cTNE=",
+									"_parent": {
+										"$ref": "AAAAAAF++OxlMO9bl0g="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OxlMO9Zw4Q="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OxlMO9dYQo=",
+											"_parent": {
+												"$ref": "AAAAAAF++OxlMO9cTNE="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -80,
+											"top": -32,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OxlMO9e23U=",
+											"_parent": {
+												"$ref": "AAAAAAF++OxlMO9cTNE="
+											},
+											"font": "Arial;13;1",
+											"left": 413,
+											"top": 213,
+											"width": 77.28271484375,
+											"height": 13,
+											"text": "Controlleurs"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OxlMO9fwyk=",
+											"_parent": {
+												"$ref": "AAAAAAF++OxlMO9cTNE="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -80,
+											"top": -32,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OxlMO9g8Bg=",
+											"_parent": {
+												"$ref": "AAAAAAF++OxlMO9cTNE="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -80,
+											"top": -32,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 408,
+									"top": 206,
+									"width": 87.28271484375,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++OxlMO9dYQo="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++OxlMO9e23U="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++OxlMO9fwyk="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++OxlMO9g8Bg="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++OxlMO9hSsc=",
+									"_parent": {
+										"$ref": "AAAAAAF++OxlMO9bl0g="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OxlMO9Zw4Q="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -40,
+									"top": -16,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++OxlMO9iyWc=",
+									"_parent": {
+										"$ref": "AAAAAAF++OxlMO9bl0g="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OxlMO9Zw4Q="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -40,
+									"top": -16,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++OxlMO9jIxE=",
+									"_parent": {
+										"$ref": "AAAAAAF++OxlMO9bl0g="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OxlMO9Zw4Q="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -40,
+									"top": -16,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++OxlMO9kzXE=",
+									"_parent": {
+										"$ref": "AAAAAAF++OxlMO9bl0g="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OxlMO9Zw4Q="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -40,
+									"top": -16,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 408,
+							"top": 152,
+							"width": 87.28271484375,
+							"height": 80,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++OxlMO9cTNE="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++OxlMO9hSsc="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++OxlMO9iyWc="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++OxlMO9jIxE="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++OxlMO9kzXE="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAF++OyLxvDwnZE=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OyLxfDslTk="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OyLxvDx87U=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyLxvDwnZE="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyLxfDslTk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 90,
+									"top": 316,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OyLxvDwnZE="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OyLxvDy6jw=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyLxvDwnZE="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyLxfDslTk="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 75,
+									"top": 316,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OyLxvDwnZE="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OyLxvDzcS8=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyLxvDwnZE="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyLxfDslTk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 120,
+									"top": 317,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OyLxvDwnZE="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OyLxvD04n4=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyLxvDwnZE="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyLxfDtr3s="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 90,
+									"top": 407,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OyLxvDwnZE="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OyLxvD1+l0=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyLxvDwnZE="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyLxfDtr3s="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 76,
+									"top": 404,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OyLxvDwnZE="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OyLxvD2amc=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyLxvDwnZE="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyLxfDtr3s="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 117,
+									"top": 411,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OyLxvDwnZE="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OyLxvD3LIE=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyLxvDwnZE="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyLxfDuYGM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 90,
+									"top": 227,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OyLxvDwnZE="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OyLxvD4Ksc=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyLxvDwnZE="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyLxfDuYGM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 76,
+									"top": 230,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OyLxvDwnZE="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OyLxvD5lRU=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyLxvDwnZE="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyLxfDuYGM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 117,
+									"top": 223,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OyLxvDwnZE="
+									}
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++OyLxvD6YSc=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyLxvDwnZE="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyLxfDtr3s="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++OyLxvD7cTU=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyLxvDwnZE="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyLxfDuYGM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++OwwtOyxFxo="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++OxHf+2H+vo="
+							},
+							"lineStyle": 1,
+							"points": "105:439;105:208",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++OyLxvDx87U="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++OyLxvDy6jw="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++OyLxvDzcS8="
+							},
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAF++OyLxvD04n4="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAF++OyLxvD1+l0="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAF++OyLxvD2amc="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAF++OyLxvD3LIE="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAF++OyLxvD4Ksc="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAF++OyLxvD5lRU="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAF++OyLxvD6YSc="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAF++OyLxvD7cTU="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAF++OyoXfK6L0w=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OyoXfK2c3Q="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OyoXfK77Pw=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyoXfK6L0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyoXfK2c3Q="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 284,
+									"top": 197,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OyoXfK6L0w="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OyoXfK8edg=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyoXfK6L0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyoXfK2c3Q="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 284,
+									"top": 212,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OyoXfK6L0w="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OyoXfK95go=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyoXfK6L0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyoXfK2c3Q="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 285,
+									"top": 168,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OyoXfK6L0w="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OyoXfK+iEc=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyoXfK6L0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyoXfK3Vxk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 380,
+									"top": 198,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OyoXfK6L0w="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OyoXfK/8xc=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyoXfK6L0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyoXfK3Vxk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 378,
+									"top": 212,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OyoXfK6L0w="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OyoXfLAypE=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyoXfK6L0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyoXfK3Vxk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 385,
+									"top": 171,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OyoXfK6L0w="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OyoXfLBLvI=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyoXfK6L0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyoXfK45No="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 188,
+									"top": 197,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OyoXfK6L0w="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OyoXfLCAEg=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyoXfK6L0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyoXfK45No="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 191,
+									"top": 210,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OyoXfK6L0w="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++OyoXfLD4V0=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyoXfK6L0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyoXfK45No="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 184,
+									"top": 169,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++OyoXfK6L0w="
+									}
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++OyoXfLEwcY=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyoXfK6L0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyoXfK3Vxk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++OyoXfLFbSA=",
+									"_parent": {
+										"$ref": "AAAAAAF++OyoXfK6L0w="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OyoXfK45No="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++OwwtOyxFxo="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++OxlMO9bl0g="
+							},
+							"lineStyle": 1,
+							"points": "407:190;163:188",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++OyoXfK77Pw="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++OyoXfK8edg="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++OyoXfK95go="
+							},
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAF++OyoXfK+iEc="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAF++OyoXfK/8xc="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAF++OyoXfLAypE="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAF++OyoXfLBLvI="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAF++OyoXfLCAEg="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAF++OyoXfLD4V0="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAF++OyoXfLEwcY="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAF++OyoXfLFbSA="
+							}
+						},
+						{
+							"_type": "UMLUseCaseView",
+							"_id": "AAAAAAF++OzcqPO+A3I=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++OzcqPO8w84="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++OzcqPO/a1Y=",
+									"_parent": {
+										"$ref": "AAAAAAF++OzcqPO+A3I="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OzcqPO8w84="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OzcqPPAUaE=",
+											"_parent": {
+												"$ref": "AAAAAAF++OzcqPO/a1Y="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -176,
+											"top": -432,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OzcqPPBb5c=",
+											"_parent": {
+												"$ref": "AAAAAAF++OzcqPO/a1Y="
+											},
+											"font": "Arial;13;1",
+											"left": 177,
+											"top": 94,
+											"width": 163,
+											"height": 13,
+											"text": "Requête Base de Données"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OzcqPPC4vo=",
+											"_parent": {
+												"$ref": "AAAAAAF++OzcqPO/a1Y="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -176,
+											"top": -432,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++OzcqPPDCmE=",
+											"_parent": {
+												"$ref": "AAAAAAF++OzcqPO/a1Y="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -176,
+											"top": -432,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 172,
+									"top": 87,
+									"width": 173.2744140625,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++OzcqPPAUaE="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++OzcqPPBb5c="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++OzcqPPC4vo="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++OzcqPPDCmE="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++OzcqPPE7Ks=",
+									"_parent": {
+										"$ref": "AAAAAAF++OzcqPO+A3I="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OzcqPO8w84="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -88,
+									"top": -216,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++OzcqPPFf0A=",
+									"_parent": {
+										"$ref": "AAAAAAF++OzcqPO+A3I="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OzcqPO8w84="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -88,
+									"top": -216,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++OzcqPPGx84=",
+									"_parent": {
+										"$ref": "AAAAAAF++OzcqPO+A3I="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OzcqPO8w84="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -88,
+									"top": -216,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++OzcqfPH9/I=",
+									"_parent": {
+										"$ref": "AAAAAAF++OzcqPO+A3I="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OzcqPO8w84="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -88,
+									"top": -216,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLExtensionPointCompartmentView",
+									"_id": "AAAAAAF++OzcqfPI0ns=",
+									"_parent": {
+										"$ref": "AAAAAAF++OzcqPO+A3I="
+									},
+									"model": {
+										"$ref": "AAAAAAF++OzcqPO8w84="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -88,
+									"top": -216,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 136,
+							"top": 72,
+							"width": 245,
+							"height": 56,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++OzcqPO/a1Y="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++OzcqPPE7Ks="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++OzcqPPFf0A="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++OzcqPPGx84="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++OzcqfPH9/I="
+							},
+							"extensionPointCompartment": {
+								"$ref": "AAAAAAF++OzcqfPI0ns="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAF++O1hXfZmsYw=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++O1hXfZi5y8="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++O1hXfZnJIQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++O1hXfZmsYw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O1hXfZi5y8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 402,
+									"top": 81,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++O1hXfZmsYw="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++O1hXvZo7No=",
+									"_parent": {
+										"$ref": "AAAAAAF++O1hXfZmsYw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O1hXfZi5y8="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 402,
+									"top": 66,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++O1hXfZmsYw="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++O1hXvZp8Ss=",
+									"_parent": {
+										"$ref": "AAAAAAF++O1hXfZmsYw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O1hXfZi5y8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 402,
+									"top": 111,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++O1hXfZmsYw="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++O1hXvZqyvY=",
+									"_parent": {
+										"$ref": "AAAAAAF++O1hXfZmsYw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O1hXfZjGX0="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 406,
+									"top": 81,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++O1hXfZmsYw="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++O1hXvZrAio=",
+									"_parent": {
+										"$ref": "AAAAAAF++O1hXfZmsYw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O1hXfZjGX0="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 409,
+									"top": 67,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++O1hXfZmsYw="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++O1hXvZsOfk=",
+									"_parent": {
+										"$ref": "AAAAAAF++O1hXfZmsYw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O1hXfZjGX0="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 402,
+									"top": 108,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++O1hXfZmsYw="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++O1hXvZty9w=",
+									"_parent": {
+										"$ref": "AAAAAAF++O1hXfZmsYw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O1hXfZkfjg="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 397,
+									"top": 81,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++O1hXfZmsYw="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++O1hXvZuHa4=",
+									"_parent": {
+										"$ref": "AAAAAAF++O1hXfZmsYw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O1hXfZkfjg="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 394,
+									"top": 67,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++O1hXfZmsYw="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++O1hXvZvfTE=",
+									"_parent": {
+										"$ref": "AAAAAAF++O1hXfZmsYw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O1hXfZkfjg="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 401,
+									"top": 108,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++O1hXfZmsYw="
+									}
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++O1hXvZwrd0=",
+									"_parent": {
+										"$ref": "AAAAAAF++O1hXfZmsYw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O1hXfZjGX0="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++O1hXvZxjrg=",
+									"_parent": {
+										"$ref": "AAAAAAF++O1hXfZmsYw="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O1hXfZkfjg="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++OxW7O6JUhQ="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++OzcqPO+A3I="
+							},
+							"lineStyle": 1,
+							"points": "381:102;423:102",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++O1hXfZnJIQ="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++O1hXvZo7No="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++O1hXvZp8Ss="
+							},
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAF++O1hXvZqyvY="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAF++O1hXvZrAio="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAF++O1hXvZsOfk="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAF++O1hXvZty9w="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAF++O1hXvZuHa4="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAF++O1hXvZvfTE="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAF++O1hXvZwrd0="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAF++O1hXvZxjrg="
+							}
+						},
+						{
+							"_type": "UMLUseCaseView",
+							"_id": "AAAAAAF++O2zp/pYadI=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++O2zp/pWeto="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++O2zp/pZ6VU=",
+									"_parent": {
+										"$ref": "AAAAAAF++O2zp/pYadI="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O2zp/pWeto="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++O2zp/paQa4=",
+											"_parent": {
+												"$ref": "AAAAAAF++O2zp/pZ6VU="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 32,
+											"top": -16,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++O2zqPpbhtI=",
+											"_parent": {
+												"$ref": "AAAAAAF++O2zp/pZ6VU="
+											},
+											"font": "Arial;13;1",
+											"left": 180.5,
+											"top": 286,
+											"width": 101,
+											"height": 13,
+											"text": "Vérification Titre"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++O2zqPpcFlY=",
+											"_parent": {
+												"$ref": "AAAAAAF++O2zp/pZ6VU="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 32,
+											"top": -16,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++O2zqPpdozg=",
+											"_parent": {
+												"$ref": "AAAAAAF++O2zp/pZ6VU="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 32,
+											"top": -16,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 175.5,
+									"top": 279,
+									"width": 112.34326171875,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++O2zp/paQa4="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++O2zqPpbhtI="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++O2zqPpcFlY="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++O2zqPpdozg="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++O2zqPpeoC4=",
+									"_parent": {
+										"$ref": "AAAAAAF++O2zp/pYadI="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O2zp/pWeto="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 16,
+									"top": -8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++O2zqPpfsyg=",
+									"_parent": {
+										"$ref": "AAAAAAF++O2zp/pYadI="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O2zp/pWeto="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 16,
+									"top": -8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++O2zqPpgaic=",
+									"_parent": {
+										"$ref": "AAAAAAF++O2zp/pYadI="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O2zp/pWeto="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 16,
+									"top": -8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++O2zqPphuXs=",
+									"_parent": {
+										"$ref": "AAAAAAF++O2zp/pYadI="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O2zp/pWeto="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 16,
+									"top": -8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLExtensionPointCompartmentView",
+									"_id": "AAAAAAF++O2zqPpi+GQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++O2zp/pYadI="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O2zp/pWeto="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 16,
+									"top": -8,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 152,
+							"top": 264,
+							"width": 158,
+							"height": 56,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++O2zp/pZ6VU="
+							},
+							"suppressAttributes": true,
+							"suppressOperations": true,
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++O2zqPpeoC4="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++O2zqPpfsyg="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++O2zqPpgaic="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++O2zqPphuXs="
+							},
+							"extensionPointCompartment": {
+								"$ref": "AAAAAAF++O2zqPpi+GQ="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAF++O39xP5Ib6g=",
+							"_parent": {
+								"$ref": "AAAAAAF++OCnsM9CYx0="
+							},
+							"model": {
+								"$ref": "AAAAAAF++O39xP5E8YI="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++O39xP5J/+k=",
+									"_parent": {
+										"$ref": "AAAAAAF++O39xP5Ib6g="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O39xP5E8YI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 158,
+									"top": 365,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++O39xP5Ib6g="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++O39xP5KJa4=",
+									"_parent": {
+										"$ref": "AAAAAAF++O39xP5Ib6g="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O39xP5E8YI="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 146,
+									"top": 357,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++O39xP5Ib6g="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++O39xP5L56U=",
+									"_parent": {
+										"$ref": "AAAAAAF++O39xP5Ib6g="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O39xP5E8YI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 183,
+									"top": 382,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++O39xP5Ib6g="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++O39xP5MfXE=",
+									"_parent": {
+										"$ref": "AAAAAAF++O39xP5Ib6g="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O39xP5F9gA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 132,
+									"top": 404,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++O39xP5Ib6g="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++O39xP5NIlg=",
+									"_parent": {
+										"$ref": "AAAAAAF++O39xP5Ib6g="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O39xP5F9gA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 123,
+									"top": 394,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++O39xP5Ib6g="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++O39xP5Olew=",
+									"_parent": {
+										"$ref": "AAAAAAF++O39xP5Ib6g="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O39xP5F9gA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 153,
+									"top": 422,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++O39xP5Ib6g="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++O39xP5PF5g=",
+									"_parent": {
+										"$ref": "AAAAAAF++O39xP5Ib6g="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O39xP5GGxE="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 184,
+									"top": 327,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++O39xP5Ib6g="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++O39xP5QikI=",
+									"_parent": {
+										"$ref": "AAAAAAF++O39xP5Ib6g="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O39xP5GGxE="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 171,
+									"top": 321,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++O39xP5Ib6g="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++O39xP5Rs8c=",
+									"_parent": {
+										"$ref": "AAAAAAF++O39xP5Ib6g="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O39xP5GGxE="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 209,
+									"top": 338,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++O39xP5Ib6g="
+									}
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++O39xP5SFmU=",
+									"_parent": {
+										"$ref": "AAAAAAF++O39xP5Ib6g="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O39xP5F9gA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++O39xP5TlIA=",
+									"_parent": {
+										"$ref": "AAAAAAF++O39xP5Ib6g="
+									},
+									"model": {
+										"$ref": "AAAAAAF++O39xP5GGxE="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++O2zp/pYadI="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++OxHf+2H+vo="
+							},
+							"lineStyle": 1,
+							"points": "131:440;211:320",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++O39xP5J/+k="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++O39xP5KJa4="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++O39xP5L56U="
+							},
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAF++O39xP5MfXE="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAF++O39xP5NIlg="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAF++O39xP5Olew="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAF++O39xP5PF5g="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAF++O39xP5QikI="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAF++O39xP5Rs8c="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAF++O39xP5SFmU="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAF++O39xP5TlIA="
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLUseCaseSubject",
+					"_id": "AAAAAAF++OE/689GFLg=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Bus"
+				},
+				{
+					"_type": "UMLActor",
+					"_id": "AAAAAAF++OG5hc9hAEM=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Passager",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAF++OJvk8/oz/4=",
+							"_parent": {
+								"$ref": "AAAAAAF++OG5hc9hAEM="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++OJvk8/pc6c=",
+								"_parent": {
+									"$ref": "AAAAAAF++OJvk8/oz/4="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++OG5hc9hAEM="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++OJvk8/qHCU=",
+								"_parent": {
+									"$ref": "AAAAAAF++OJvk8/oz/4="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++OH8OM+26OU="
+								}
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLActor",
+					"_id": "AAAAAAF++OHW5c+LJa4=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Centrale",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAF++ORs9dMGqLE=",
+							"_parent": {
+								"$ref": "AAAAAAF++OHW5c+LJa4="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++ORs9dMHoyA=",
+								"_parent": {
+									"$ref": "AAAAAAF++ORs9dMGqLE="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++OHW5c+LJa4="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++ORs9dMIgNA=",
+								"_parent": {
+									"$ref": "AAAAAAF++ORs9dMGqLE="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++OQs7NJKtfU="
+								}
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLUseCase",
+					"_id": "AAAAAAF++OH8OM+26OU=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Validation titre transport",
+					"ownedElements": [
+						{
+							"_type": "UMLInclude",
+							"_id": "AAAAAAF++OPkWtHGttE=",
+							"_parent": {
+								"$ref": "AAAAAAF++OH8OM+26OU="
+							},
+							"source": {
+								"$ref": "AAAAAAF++OH8OM+26OU="
+							},
+							"target": {
+								"$ref": "AAAAAAF++ON/vtFqlBc="
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLUseCase",
+					"_id": "AAAAAAF++OKdINAxypo=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Ticket",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAF++OLapdDtIOs=",
+							"_parent": {
+								"$ref": "AAAAAAF++OKdINAxypo="
+							},
+							"source": {
+								"$ref": "AAAAAAF++OKdINAxypo="
+							},
+							"target": {
+								"$ref": "AAAAAAF++OH8OM+26OU="
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLUseCase",
+					"_id": "AAAAAAF++OK1cdB0BNQ=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Navigo",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAF++OLnENENVt8=",
+							"_parent": {
+								"$ref": "AAAAAAF++OK1cdB0BNQ="
+							},
+							"source": {
+								"$ref": "AAAAAAF++OK1cdB0BNQ="
+							},
+							"target": {
+								"$ref": "AAAAAAF++OH8OM+26OU="
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLUseCase",
+					"_id": "AAAAAAF++ON/vtFqlBc=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Validation",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAF++OP4k9HsDnY=",
+							"_parent": {
+								"$ref": "AAAAAAF++ON/vtFqlBc="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++OP4k9HtFHY=",
+								"_parent": {
+									"$ref": "AAAAAAF++OP4k9HsDnY="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++ON/vtFqlBc="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++OP4k9HurbA=",
+								"_parent": {
+									"$ref": "AAAAAAF++OP4k9HsDnY="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++OHW5c+LJa4="
+								}
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLUseCase",
+					"_id": "AAAAAAF++OQs7NJKtfU=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Rediriger le bus"
+				},
+				{
+					"_type": "UMLUseCaseSubject",
+					"_id": "AAAAAAF++OdCN9TcS+A=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Bornes automatiques"
+				},
+				{
+					"_type": "UMLActor",
+					"_id": "AAAAAAF++Ogcm9XHv/A=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Centrale"
+				},
+				{
+					"_type": "UMLActor",
+					"_id": "AAAAAAF++Og5K9Z5Na8=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Utilisateur",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAF++OkOX9kch9c=",
+							"_parent": {
+								"$ref": "AAAAAAF++Og5K9Z5Na8="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++OkOX9kdOi0=",
+								"_parent": {
+									"$ref": "AAAAAAF++OkOX9kch9c="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++Og5K9Z5Na8="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++OkOX9keNdY=",
+								"_parent": {
+									"$ref": "AAAAAAF++OkOX9kch9c="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++Oi2wdfdZtM="
+								}
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAF++Okb0NmkcNI=",
+							"_parent": {
+								"$ref": "AAAAAAF++Og5K9Z5Na8="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++Okb0NmlAgs=",
+								"_parent": {
+									"$ref": "AAAAAAF++Okb0NmkcNI="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++Og5K9Z5Na8="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++Okb0NmmOro=",
+								"_parent": {
+									"$ref": "AAAAAAF++Okb0NmkcNI="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++OjerNhKUuM="
+								}
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLActor",
+					"_id": "AAAAAAF++OhL4tb0d0s=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Dépanneur",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAF++OrOY+OGSew=",
+							"_parent": {
+								"$ref": "AAAAAAF++OhL4tb0d0s="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++OrOY+OH2ro=",
+								"_parent": {
+									"$ref": "AAAAAAF++OrOY+OGSew="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++OhL4tb0d0s="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++OrOY+OIHbA=",
+								"_parent": {
+									"$ref": "AAAAAAF++OrOY+OGSew="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++OqDsuEM220="
+								}
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAF++OrYzeRNRvo=",
+							"_parent": {
+								"$ref": "AAAAAAF++OhL4tb0d0s="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++OrYzeRO+Ac=",
+								"_parent": {
+									"$ref": "AAAAAAF++OrYzeRNRvo="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++OhL4tb0d0s="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++OrYzeRPIRw=",
+								"_parent": {
+									"$ref": "AAAAAAF++OrYzeRNRvo="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++OqsQuJJviQ="
+								}
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLUseCase",
+					"_id": "AAAAAAF++Oi2wdfdZtM=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Acheter titre",
+					"ownedElements": [
+						{
+							"_type": "UMLInclude",
+							"_id": "AAAAAAF++Oovst/g70k=",
+							"_parent": {
+								"$ref": "AAAAAAF++Oi2wdfdZtM="
+							},
+							"source": {
+								"$ref": "AAAAAAF++Oi2wdfdZtM="
+							},
+							"target": {
+								"$ref": "AAAAAAF++OnBN94LEKM="
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLUseCase",
+					"_id": "AAAAAAF++OjerNhKUuM=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Consulter Horaires",
+					"ownedElements": [
+						{
+							"_type": "UMLInclude",
+							"_id": "AAAAAAF++Oolkt9mRGY=",
+							"_parent": {
+								"$ref": "AAAAAAF++OjerNhKUuM="
+							},
+							"source": {
+								"$ref": "AAAAAAF++OjerNhKUuM="
+							},
+							"target": {
+								"$ref": "AAAAAAF++OnBN94LEKM="
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLUseCase",
+					"_id": "AAAAAAF++OkqJ9pBMBY=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Ticket",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAF++Ol789yeZzE=",
+							"_parent": {
+								"$ref": "AAAAAAF++OkqJ9pBMBY="
+							},
+							"source": {
+								"$ref": "AAAAAAF++OkqJ9pBMBY="
+							},
+							"target": {
+								"$ref": "AAAAAAF++Oi2wdfdZtM="
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLUseCase",
+					"_id": "AAAAAAF++OlKoNrYe3w=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Abonnement",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAF++OmMdd0YsP0=",
+							"_parent": {
+								"$ref": "AAAAAAF++OlKoNrYe3w="
+							},
+							"source": {
+								"$ref": "AAAAAAF++OlKoNrYe3w="
+							},
+							"target": {
+								"$ref": "AAAAAAF++Oi2wdfdZtM="
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLUseCase",
+					"_id": "AAAAAAF++OnBN94LEKM=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Requête Base de Données",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAF++Oo6+uBaaWo=",
+							"_parent": {
+								"$ref": "AAAAAAF++OnBN94LEKM="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++Oo6+uBbsVU=",
+								"_parent": {
+									"$ref": "AAAAAAF++Oo6+uBaaWo="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++OnBN94LEKM="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++Oo6+uBcHnw=",
+								"_parent": {
+									"$ref": "AAAAAAF++Oo6+uBaaWo="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++Ogcm9XHv/A="
+								}
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLUseCase",
+					"_id": "AAAAAAF++OqDsuEM220=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Lancer Diagnostique"
+				},
+				{
+					"_type": "UMLUseCase",
+					"_id": "AAAAAAF++OqsQuJJviQ=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Remplir les tickets"
+				},
+				{
+					"_type": "UMLUseCaseSubject",
+					"_id": "AAAAAAF++OuT2+u9wfk=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "La Centrale"
+				},
+				{
+					"_type": "UMLUseCase",
+					"_id": "AAAAAAF++OwwtOyv8fM=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Redirection"
+				},
+				{
+					"_type": "UMLActor",
+					"_id": "AAAAAAF++OxHfu2FbFA=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Bus",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAF++OyLxfDslTk=",
+							"_parent": {
+								"$ref": "AAAAAAF++OxHfu2FbFA="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++OyLxfDtr3s=",
+								"_parent": {
+									"$ref": "AAAAAAF++OyLxfDslTk="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++OxHfu2FbFA="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++OyLxfDuYGM=",
+								"_parent": {
+									"$ref": "AAAAAAF++OyLxfDslTk="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++OwwtOyv8fM="
+								}
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAF++O39xP5E8YI=",
+							"_parent": {
+								"$ref": "AAAAAAF++OxHfu2FbFA="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++O39xP5F9gA=",
+								"_parent": {
+									"$ref": "AAAAAAF++O39xP5E8YI="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++OxHfu2FbFA="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++O39xP5GGxE=",
+								"_parent": {
+									"$ref": "AAAAAAF++O39xP5E8YI="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++O2zp/pWeto="
+								}
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLActor",
+					"_id": "AAAAAAF++OxW7O6HzsQ=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Bornes"
+				},
+				{
+					"_type": "UMLActor",
+					"_id": "AAAAAAF++OxlMO9Zw4Q=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Controlleurs",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAF++OyoXfK2c3Q=",
+							"_parent": {
+								"$ref": "AAAAAAF++OxlMO9Zw4Q="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++OyoXfK3Vxk=",
+								"_parent": {
+									"$ref": "AAAAAAF++OyoXfK2c3Q="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++OxlMO9Zw4Q="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++OyoXfK45No=",
+								"_parent": {
+									"$ref": "AAAAAAF++OyoXfK2c3Q="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++OwwtOyv8fM="
+								}
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLUseCase",
+					"_id": "AAAAAAF++OzcqPO8w84=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Requête Base de Données",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAF++O1hXfZi5y8=",
+							"_parent": {
+								"$ref": "AAAAAAF++OzcqPO8w84="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++O1hXfZjGX0=",
+								"_parent": {
+									"$ref": "AAAAAAF++O1hXfZi5y8="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++OzcqPO8w84="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++O1hXfZkfjg=",
+								"_parent": {
+									"$ref": "AAAAAAF++O1hXfZi5y8="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++OxW7O6HzsQ="
+								}
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLUseCase",
+					"_id": "AAAAAAF++O2zp/pWeto=",
+					"_parent": {
+						"$ref": "AAAAAAF++OCnrs9BzAo="
+					},
+					"name": "Vérification Titre"
+				}
+			]
+		}
+	]
+}
\ No newline at end of file
diff --git a/APL2.1/TP04/voiture.mdj b/APL2.1/TP04/voiture.mdj
new file mode 100644
index 0000000..1afc25c
--- /dev/null
+++ b/APL2.1/TP04/voiture.mdj
@@ -0,0 +1,3054 @@
+{
+	"_type": "Project",
+	"_id": "AAAAAAFF+h6SjaM2Hec=",
+	"name": "Untitled",
+	"ownedElements": [
+		{
+			"_type": "UMLModel",
+			"_id": "AAAAAAF++Ppa3EHLvYg=",
+			"_parent": {
+				"$ref": "AAAAAAFF+h6SjaM2Hec="
+			},
+			"name": "Model1",
+			"ownedElements": [
+				{
+					"_type": "UMLClassDiagram",
+					"_id": "AAAAAAF++Ppa3EHM5Vo=",
+					"_parent": {
+						"$ref": "AAAAAAF++Ppa3EHLvYg="
+					},
+					"name": "ClassDiagram1",
+					"ownedViews": [
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAF++PpsukHSJyU=",
+							"_parent": {
+								"$ref": "AAAAAAF++Ppa3EHM5Vo="
+							},
+							"model": {
+								"$ref": "AAAAAAF++PpsukHQnn0="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++Ppsu0HTnXw=",
+									"_parent": {
+										"$ref": "AAAAAAF++PpsukHSJyU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PpsukHQnn0="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Ppsu0HUWTk=",
+											"_parent": {
+												"$ref": "AAAAAAF++Ppsu0HTnXw="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 896,
+											"top": 352,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Ppsu0HVO7U=",
+											"_parent": {
+												"$ref": "AAAAAAF++Ppsu0HTnXw="
+											},
+											"font": "Arial;13;1",
+											"left": 845,
+											"top": 375,
+											"width": 142,
+											"height": 13,
+											"text": "Voiture"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Ppsu0HWIUM=",
+											"_parent": {
+												"$ref": "AAAAAAF++Ppsu0HTnXw="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 896,
+											"top": 352,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Ppsu0HXGGI=",
+											"_parent": {
+												"$ref": "AAAAAAF++Ppsu0HTnXw="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 896,
+											"top": 352,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 840,
+									"top": 368,
+									"width": 152,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++Ppsu0HUWTk="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++Ppsu0HVO7U="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++Ppsu0HWIUM="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++Ppsu0HXGGI="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++Ppsu0HYq90=",
+									"_parent": {
+										"$ref": "AAAAAAF++PpsukHSJyU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PpsukHQnn0="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAF++PqAoUH9WP8=",
+											"_parent": {
+												"$ref": "AAAAAAF++Ppsu0HYq90="
+											},
+											"model": {
+												"$ref": "AAAAAAF++PqAjUH6K/g="
+											},
+											"font": "Arial;13;0",
+											"left": 845,
+											"top": 398,
+											"width": 142,
+											"height": 13,
+											"text": "+Marque",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAF++PqobEIE84o=",
+											"_parent": {
+												"$ref": "AAAAAAF++Ppsu0HYq90="
+											},
+											"model": {
+												"$ref": "AAAAAAF++PqoXEIBWqQ="
+											},
+											"font": "Arial;13;0",
+											"left": 845,
+											"top": 413,
+											"width": 142,
+											"height": 13,
+											"text": "+Modèle",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAF++Pq2XEILp4w=",
+											"_parent": {
+												"$ref": "AAAAAAF++Ppsu0HYq90="
+											},
+											"model": {
+												"$ref": "AAAAAAF++Pq2WEIImBE="
+											},
+											"font": "Arial;13;0",
+											"left": 845,
+											"top": 428,
+											"width": 142,
+											"height": 13,
+											"text": "+Année",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 840,
+									"top": 393,
+									"width": 152,
+									"height": 53
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++Ppsu0HZb8g=",
+									"_parent": {
+										"$ref": "AAAAAAF++PpsukHSJyU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PpsukHQnn0="
+									},
+									"subViews": [
+										{
+											"_type": "UMLOperationView",
+											"_id": "AAAAAAF++Pr670ISQmo=",
+											"_parent": {
+												"$ref": "AAAAAAF++Ppsu0HZb8g="
+											},
+											"model": {
+												"$ref": "AAAAAAF++Pr660IPbkc="
+											},
+											"font": "Arial;13;0",
+											"left": 845,
+											"top": 451,
+											"width": 142,
+											"height": 13,
+											"text": "+getTechnicalData()",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 840,
+									"top": 446,
+									"width": 152,
+									"height": 23
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++Ppsu0HacJA=",
+									"_parent": {
+										"$ref": "AAAAAAF++PpsukHSJyU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PpsukHQnn0="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 448,
+									"top": 176,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++Ppsu0Hb4qs=",
+									"_parent": {
+										"$ref": "AAAAAAF++PpsukHSJyU="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PpsukHQnn0="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 448,
+									"top": 176,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 840,
+							"top": 368,
+							"width": 152,
+							"height": 101,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++Ppsu0HTnXw="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++Ppsu0HYq90="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++Ppsu0HZb8g="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++Ppsu0HacJA="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++Ppsu0Hb4qs="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAF++PsztUIaKqo=",
+							"_parent": {
+								"$ref": "AAAAAAF++Ppa3EHM5Vo="
+							},
+							"model": {
+								"$ref": "AAAAAAF++PsztUIY6ww="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++PsztUIb1fY=",
+									"_parent": {
+										"$ref": "AAAAAAF++PsztUIaKqo="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PsztUIY6ww="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++PsztUIcbUo=",
+											"_parent": {
+												"$ref": "AAAAAAF++PsztUIb1fY="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -16,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++PsztUIdRvY=",
+											"_parent": {
+												"$ref": "AAAAAAF++PsztUIb1fY="
+											},
+											"font": "Arial;13;1",
+											"left": 581,
+											"top": 143,
+											"width": 182,
+											"height": 13,
+											"text": "Personnel"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++PsztUIevUw=",
+											"_parent": {
+												"$ref": "AAAAAAF++PsztUIb1fY="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -16,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++PsztkIfweU=",
+											"_parent": {
+												"$ref": "AAAAAAF++PsztUIb1fY="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -16,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 576,
+									"top": 136,
+									"width": 192,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++PsztUIcbUo="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++PsztUIdRvY="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++PsztUIevUw="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++PsztkIfweU="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++PsztkIgY7s=",
+									"_parent": {
+										"$ref": "AAAAAAF++PsztUIaKqo="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PsztUIY6ww="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAF++PtGCEJGtwY=",
+											"_parent": {
+												"$ref": "AAAAAAF++PsztkIgY7s="
+											},
+											"model": {
+												"$ref": "AAAAAAF++PtGA0JDPio="
+											},
+											"font": "Arial;13;0",
+											"left": 581,
+											"top": 166,
+											"width": 182,
+											"height": 13,
+											"text": "+Nom",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 576,
+									"top": 161,
+									"width": 192,
+									"height": 23
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++PsztkIhUNc=",
+									"_parent": {
+										"$ref": "AAAAAAF++PsztUIaKqo="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PsztUIY6ww="
+									},
+									"font": "Arial;13;0",
+									"left": 576,
+									"top": 184,
+									"width": 192,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++PsztkIinxE=",
+									"_parent": {
+										"$ref": "AAAAAAF++PsztUIaKqo="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PsztUIY6ww="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++PsztkIj8fQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++PsztUIaKqo="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PsztUIY6ww="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -8,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 576,
+							"top": 136,
+							"width": 192,
+							"height": 58,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++PsztUIb1fY="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++PsztkIgY7s="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++PsztkIhUNc="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++PsztkIinxE="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++PsztkIj8fQ="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAF++Pt4L0JNybo=",
+							"_parent": {
+								"$ref": "AAAAAAF++Ppa3EHM5Vo="
+							},
+							"model": {
+								"$ref": "AAAAAAF++Pt4LkJLeoc="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++Pt4L0JOTlQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++Pt4L0JNybo="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Pt4LkJLeoc="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Pt4L0JPAbs=",
+											"_parent": {
+												"$ref": "AAAAAAF++Pt4L0JOTlQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -112,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Pt4L0JQgOE=",
+											"_parent": {
+												"$ref": "AAAAAAF++Pt4L0JOTlQ="
+											},
+											"font": "Arial;13;1",
+											"left": 461,
+											"top": 263,
+											"width": 102,
+											"height": 13,
+											"text": "Manageur"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Pt4L0JREeE=",
+											"_parent": {
+												"$ref": "AAAAAAF++Pt4L0JOTlQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -112,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Pt4L0JS33Q=",
+											"_parent": {
+												"$ref": "AAAAAAF++Pt4L0JOTlQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -112,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 456,
+									"top": 256,
+									"width": 112,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++Pt4L0JPAbs="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++Pt4L0JQgOE="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++Pt4L0JREeE="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++Pt4L0JS33Q="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++Pt4L0JTWao=",
+									"_parent": {
+										"$ref": "AAAAAAF++Pt4L0JNybo="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Pt4LkJLeoc="
+									},
+									"font": "Arial;13;0",
+									"left": 456,
+									"top": 281,
+									"width": 112,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++Pt4L0JULO0=",
+									"_parent": {
+										"$ref": "AAAAAAF++Pt4L0JNybo="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Pt4LkJLeoc="
+									},
+									"font": "Arial;13;0",
+									"left": 456,
+									"top": 291,
+									"width": 112,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++Pt4L0JVZg0=",
+									"_parent": {
+										"$ref": "AAAAAAF++Pt4L0JNybo="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Pt4LkJLeoc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -56,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++Pt4L0JWcGQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++Pt4L0JNybo="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Pt4LkJLeoc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -56,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 456,
+							"top": 256,
+							"width": 112,
+							"height": 48,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++Pt4L0JOTlQ="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++Pt4L0JTWao="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++Pt4L0JULO0="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++Pt4L0JVZg0="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++Pt4L0JWcGQ="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAF++PuYP0J3tzk=",
+							"_parent": {
+								"$ref": "AAAAAAF++Ppa3EHM5Vo="
+							},
+							"model": {
+								"$ref": "AAAAAAF++PuYP0J1OMw="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++PuYP0J4/MY=",
+									"_parent": {
+										"$ref": "AAAAAAF++PuYP0J3tzk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PuYP0J1OMw="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++PuYP0J5UVQ=",
+											"_parent": {
+												"$ref": "AAAAAAF++PuYP0J4/MY="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++PuYP0J6mOo=",
+											"_parent": {
+												"$ref": "AAAAAAF++PuYP0J4/MY="
+											},
+											"font": "Arial;13;1",
+											"left": 669,
+											"top": 263,
+											"width": 94,
+											"height": 13,
+											"text": "Vendeur"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++PuYQEJ7WMk=",
+											"_parent": {
+												"$ref": "AAAAAAF++PuYP0J4/MY="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++PuYQEJ84Q0=",
+											"_parent": {
+												"$ref": "AAAAAAF++PuYP0J4/MY="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 664,
+									"top": 256,
+									"width": 104,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++PuYP0J5UVQ="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++PuYP0J6mOo="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++PuYQEJ7WMk="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++PuYQEJ84Q0="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++PuYQEJ91Jg=",
+									"_parent": {
+										"$ref": "AAAAAAF++PuYP0J3tzk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PuYP0J1OMw="
+									},
+									"font": "Arial;13;0",
+									"left": 664,
+									"top": 281,
+									"width": 104,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++PuYQEJ+fqI=",
+									"_parent": {
+										"$ref": "AAAAAAF++PuYP0J3tzk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PuYP0J1OMw="
+									},
+									"font": "Arial;13;0",
+									"left": 664,
+									"top": 291,
+									"width": 104,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++PuYQEJ/DuU=",
+									"_parent": {
+										"$ref": "AAAAAAF++PuYP0J3tzk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PuYP0J1OMw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++PuYQEKAfIM=",
+									"_parent": {
+										"$ref": "AAAAAAF++PuYP0J3tzk="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PuYP0J1OMw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 664,
+							"top": 256,
+							"width": 104,
+							"height": 45,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++PuYP0J4/MY="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++PuYQEJ91Jg="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++PuYQEJ+fqI="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++PuYQEJ/DuU="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++PuYQEKAfIM="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAF++Pus/UKhM2E=",
+							"_parent": {
+								"$ref": "AAAAAAF++Ppa3EHM5Vo="
+							},
+							"model": {
+								"$ref": "AAAAAAF++Pus/UKfJ5k="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++Pus/UKiM5U=",
+									"_parent": {
+										"$ref": "AAAAAAF++Pus/UKhM2E="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Pus/UKfJ5k="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Pus/UKjbHs=",
+											"_parent": {
+												"$ref": "AAAAAAF++Pus/UKiM5U="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Pus/UKkUfQ=",
+											"_parent": {
+												"$ref": "AAAAAAF++Pus/UKiM5U="
+											},
+											"font": "Arial;13;1",
+											"left": 813,
+											"top": 263,
+											"width": 110,
+											"height": 13,
+											"text": "Mécano"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Pus/UKl2zI=",
+											"_parent": {
+												"$ref": "AAAAAAF++Pus/UKiM5U="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Pus/UKm8I0=",
+											"_parent": {
+												"$ref": "AAAAAAF++Pus/UKiM5U="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 808,
+									"top": 256,
+									"width": 120,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++Pus/UKjbHs="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++Pus/UKkUfQ="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++Pus/UKl2zI="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++Pus/UKm8I0="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++Pus/UKnuyg=",
+									"_parent": {
+										"$ref": "AAAAAAF++Pus/UKhM2E="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Pus/UKfJ5k="
+									},
+									"font": "Arial;13;0",
+									"left": 808,
+									"top": 281,
+									"width": 120,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++Pus/UKotps=",
+									"_parent": {
+										"$ref": "AAAAAAF++Pus/UKhM2E="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Pus/UKfJ5k="
+									},
+									"font": "Arial;13;0",
+									"left": 808,
+									"top": 291,
+									"width": 120,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++Pus/UKpm0Q=",
+									"_parent": {
+										"$ref": "AAAAAAF++Pus/UKhM2E="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Pus/UKfJ5k="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++Pus/UKqDQ4=",
+									"_parent": {
+										"$ref": "AAAAAAF++Pus/UKhM2E="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Pus/UKfJ5k="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 808,
+							"top": 256,
+							"width": 120,
+							"height": 48,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++Pus/UKiM5U="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++Pus/UKnuyg="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++Pus/UKotps="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++Pus/UKpm0Q="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++Pus/UKqDQ4="
+							}
+						},
+						{
+							"_type": "UMLGeneralizationView",
+							"_id": "AAAAAAF++PvJSELLUeA=",
+							"_parent": {
+								"$ref": "AAAAAAF++Ppa3EHM5Vo="
+							},
+							"model": {
+								"$ref": "AAAAAAF++PvJR0LJpVY="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++PvJSELMKyw=",
+									"_parent": {
+										"$ref": "AAAAAAF++PvJSELLUeA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PvJR0LJpVY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 577,
+									"top": 205,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++PvJSELLUeA="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++PvJSELN0kM=",
+									"_parent": {
+										"$ref": "AAAAAAF++PvJSELLUeA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PvJR0LJpVY="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 568,
+									"top": 193,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++PvJSELLUeA="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++PvJSELO9eI=",
+									"_parent": {
+										"$ref": "AAAAAAF++PvJSELLUeA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PvJR0LJpVY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 594,
+									"top": 230,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++PvJSELLUeA="
+									},
+									"edgePosition": 1
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++PsztUIaKqo="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++Pt4L0JNybo="
+							},
+							"lineStyle": 1,
+							"points": "544:255;629:194",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++PvJSELMKyw="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++PvJSELN0kM="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++PvJSELO9eI="
+							}
+						},
+						{
+							"_type": "UMLGeneralizationView",
+							"_id": "AAAAAAF++PvTW0LcI5s=",
+							"_parent": {
+								"$ref": "AAAAAAF++Ppa3EHM5Vo="
+							},
+							"model": {
+								"$ref": "AAAAAAF++PvTWkLacPc="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++PvTW0LdagM=",
+									"_parent": {
+										"$ref": "AAAAAAF++PvTW0LcI5s="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PvTWkLacPc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 679,
+									"top": 223,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++PvTW0LcI5s="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++PvTW0Lepno=",
+									"_parent": {
+										"$ref": "AAAAAAF++PvTW0LcI5s="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PvTWkLacPc="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 665,
+									"top": 228,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++PvTW0LcI5s="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++PvTW0LfFto=",
+									"_parent": {
+										"$ref": "AAAAAAF++PvTW0LcI5s="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PvTWkLacPc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 708,
+									"top": 212,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++PvTW0LcI5s="
+									},
+									"edgePosition": 1
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++PsztUIaKqo="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++PuYP0J3tzk="
+							},
+							"lineStyle": 1,
+							"points": "706:255;683:194",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++PvTW0LdagM="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++PvTW0Lepno="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++PvTW0LfFto="
+							}
+						},
+						{
+							"_type": "UMLGeneralizationView",
+							"_id": "AAAAAAF++PveQELtyas=",
+							"_parent": {
+								"$ref": "AAAAAAF++Ppa3EHM5Vo="
+							},
+							"model": {
+								"$ref": "AAAAAAF++PveQELr+vo="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++PveQELupVY=",
+									"_parent": {
+										"$ref": "AAAAAAF++PveQELtyas="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PveQELr+vo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 766,
+									"top": 230,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++PveQELtyas="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++PveQELvNd0=",
+									"_parent": {
+										"$ref": "AAAAAAF++PveQELtyas="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PveQELr+vo="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 759,
+									"top": 243,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++PveQELtyas="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++PveQELwaZw=",
+									"_parent": {
+										"$ref": "AAAAAAF++PveQELtyas="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PveQELr+vo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 781,
+									"top": 205,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++PveQELtyas="
+									},
+									"edgePosition": 1
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++PsztUIaKqo="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++Pus/UKhM2E="
+							},
+							"lineStyle": 1,
+							"points": "826:255;722:194",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++PveQELupVY="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++PveQELvNd0="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++PveQELwaZw="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAF++PwMuENlDYY=",
+							"_parent": {
+								"$ref": "AAAAAAF++Ppa3EHM5Vo="
+							},
+							"model": {
+								"$ref": "AAAAAAF++PwMt0Nh3b0="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++PwMuENmM9w=",
+									"_parent": {
+										"$ref": "AAAAAAF++PwMuENlDYY="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PwMt0Nh3b0="
+									},
+									"font": "Arial;13;0",
+									"left": 584,
+									"top": 257,
+									"width": 63.22900390625,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++PwMuENlDYY="
+									},
+									"edgePosition": 1,
+									"text": "+supervise"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++PwMuENnJSY=",
+									"_parent": {
+										"$ref": "AAAAAAF++PwMuENlDYY="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PwMt0Nh3b0="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 615,
+									"top": 242,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++PwMuENlDYY="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++PwMuENou5k=",
+									"_parent": {
+										"$ref": "AAAAAAF++PwMuENlDYY="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PwMt0Nh3b0="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 615,
+									"top": 287,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++PwMuENlDYY="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++PwMuENpx3M=",
+									"_parent": {
+										"$ref": "AAAAAAF++PwMuENlDYY="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PwMt0NioMc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 593,
+									"top": 257,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++PwMuENlDYY="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++PwMuENqyz4=",
+									"_parent": {
+										"$ref": "AAAAAAF++PwMuENlDYY="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PwMt0NioMc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 595,
+									"top": 244,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++PwMuENlDYY="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++PwMuENr51I=",
+									"_parent": {
+										"$ref": "AAAAAAF++PwMuENlDYY="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PwMt0NioMc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 589,
+									"top": 285,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++PwMuENlDYY="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++PwMuENsJOM=",
+									"_parent": {
+										"$ref": "AAAAAAF++PwMuENlDYY="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PwMt0Njmqs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 636,
+									"top": 257,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++PwMuENlDYY="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++PwMuENtpmY=",
+									"_parent": {
+										"$ref": "AAAAAAF++PwMuENlDYY="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PwMt0Njmqs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 634,
+									"top": 244,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++PwMuENlDYY="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++PwMuENunMM=",
+									"_parent": {
+										"$ref": "AAAAAAF++PwMuENlDYY="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PwMt0Njmqs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 641,
+									"top": 284,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++PwMuENlDYY="
+									}
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++PwMuENvzas=",
+									"_parent": {
+										"$ref": "AAAAAAF++PwMuENlDYY="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PwMt0NioMc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++PwMuENwLCU=",
+									"_parent": {
+										"$ref": "AAAAAAF++PwMuENlDYY="
+									},
+									"model": {
+										"$ref": "AAAAAAF++PwMt0Njmqs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++PuYP0J3tzk="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++Pt4L0JNybo="
+							},
+							"lineStyle": 1,
+							"points": "568:279;663:278",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++PwMuENmM9w="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++PwMuENnJSY="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++PwMuENou5k="
+							},
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAF++PwMuENpx3M="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAF++PwMuENqyz4="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAF++PwMuENr51I="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAF++PwMuENsJOM="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAF++PwMuENtpmY="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAF++PwMuENunMM="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAF++PwMuENvzas="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAF++PwMuENwLCU="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAF++Py1LURAVPA=",
+							"_parent": {
+								"$ref": "AAAAAAF++Ppa3EHM5Vo="
+							},
+							"model": {
+								"$ref": "AAAAAAF++Py1LUQ+IQ8="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++Py1LURBcPY=",
+									"_parent": {
+										"$ref": "AAAAAAF++Py1LURAVPA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Py1LUQ+IQ8="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Py1LURCl8g=",
+											"_parent": {
+												"$ref": "AAAAAAF++Py1LURBcPY="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"top": 16,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Py1LURD1OI=",
+											"_parent": {
+												"$ref": "AAAAAAF++Py1LURBcPY="
+											},
+											"font": "Arial;13;1",
+											"left": 421,
+											"top": 391,
+											"width": 142,
+											"height": 13,
+											"text": "Client"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Py1LURE3Qg=",
+											"_parent": {
+												"$ref": "AAAAAAF++Py1LURBcPY="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"top": 16,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++Py1LURFZYw=",
+											"_parent": {
+												"$ref": "AAAAAAF++Py1LURBcPY="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"top": 16,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 416,
+									"top": 384,
+									"width": 152,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++Py1LURCl8g="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++Py1LURD1OI="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++Py1LURE3Qg="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++Py1LURFZYw="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++Py1LURG8SQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++Py1LURAVPA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Py1LUQ+IQ8="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAF++PzSX0SM030=",
+											"_parent": {
+												"$ref": "AAAAAAF++Py1LURG8SQ="
+											},
+											"model": {
+												"$ref": "AAAAAAF++PzSR0SGIxA="
+											},
+											"font": "Arial;13;0",
+											"left": 421,
+											"top": 414,
+											"width": 142,
+											"height": 13,
+											"text": "+Nom",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAF++PzuVUSoaSE=",
+											"_parent": {
+												"$ref": "AAAAAAF++Py1LURG8SQ="
+											},
+											"model": {
+												"$ref": "AAAAAAF++PzuUESiZT8="
+											},
+											"font": "Arial;13;0",
+											"left": 421,
+											"top": 429,
+											"width": 142,
+											"height": 13,
+											"text": "+Adresse",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAF++Pz3Y0TEW54=",
+											"_parent": {
+												"$ref": "AAAAAAF++Py1LURG8SQ="
+											},
+											"model": {
+												"$ref": "AAAAAAF++Pz3XUS+aVE="
+											},
+											"font": "Arial;13;0",
+											"left": 421,
+											"top": 444,
+											"width": 142,
+											"height": 13,
+											"text": "+Numéro Téléphone",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 416,
+									"top": 409,
+									"width": 152,
+									"height": 53
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++Py1LURHBUM=",
+									"_parent": {
+										"$ref": "AAAAAAF++Py1LURAVPA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Py1LUQ+IQ8="
+									},
+									"font": "Arial;13;0",
+									"left": 416,
+									"top": 462,
+									"width": 152,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++Py1LURIN94=",
+									"_parent": {
+										"$ref": "AAAAAAF++Py1LURAVPA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Py1LUQ+IQ8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"top": 8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++Py1LURJD5o=",
+									"_parent": {
+										"$ref": "AAAAAAF++Py1LURAVPA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++Py1LUQ+IQ8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"top": 8,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 416,
+							"top": 384,
+							"width": 152,
+							"height": 88,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++Py1LURBcPY="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++Py1LURG8SQ="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++Py1LURHBUM="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++Py1LURIN94="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++Py1LURJD5o="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAF++P3QAEUx81g=",
+							"_parent": {
+								"$ref": "AAAAAAF++Ppa3EHM5Vo="
+							},
+							"model": {
+								"$ref": "AAAAAAF++P3P/0Uv3oc="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAF++P3QAEUyazg=",
+									"_parent": {
+										"$ref": "AAAAAAF++P3QAEUx81g="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P3P/0Uv3oc="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++P3QAEUzSeM=",
+											"_parent": {
+												"$ref": "AAAAAAF++P3QAEUyazg="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -80,
+											"top": 16,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++P3QAEU0qxU=",
+											"_parent": {
+												"$ref": "AAAAAAF++P3QAEUyazg="
+											},
+											"font": "Arial;13;1",
+											"left": 653,
+											"top": 447,
+											"width": 126,
+											"height": 13,
+											"text": "Vente"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++P3QAEU1A5w=",
+											"_parent": {
+												"$ref": "AAAAAAF++P3QAEUyazg="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -80,
+											"top": 16,
+											"width": 80.9072265625,
+											"height": 13,
+											"text": "(from Model1)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAF++P3QAEU2VsI=",
+											"_parent": {
+												"$ref": "AAAAAAF++P3QAEUyazg="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -80,
+											"top": 16,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 648,
+									"top": 440,
+									"width": 136,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAF++P3QAEUzSeM="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAF++P3QAEU0qxU="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAF++P3QAEU1A5w="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAF++P3QAEU2VsI="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAF++P3QAEU3lcA=",
+									"_parent": {
+										"$ref": "AAAAAAF++P3QAEUx81g="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P3P/0Uv3oc="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAF++P3c2UV0ep0=",
+											"_parent": {
+												"$ref": "AAAAAAF++P3QAEU3lcA="
+											},
+											"model": {
+												"$ref": "AAAAAAF++P3czkVuXuE="
+											},
+											"font": "Arial;13;0",
+											"left": 653,
+											"top": 470,
+											"width": 126,
+											"height": 13,
+											"text": "+Prix",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 648,
+									"top": 465,
+									"width": 136,
+									"height": 23
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAF++P3QAEU4UUE=",
+									"_parent": {
+										"$ref": "AAAAAAF++P3QAEUx81g="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P3P/0Uv3oc="
+									},
+									"font": "Arial;13;0",
+									"left": 648,
+									"top": 488,
+									"width": 136,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAF++P3QAEU5nso=",
+									"_parent": {
+										"$ref": "AAAAAAF++P3QAEUx81g="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P3P/0Uv3oc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -40,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAF++P3QAEU6qQg=",
+									"_parent": {
+										"$ref": "AAAAAAF++P3QAEUx81g="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P3P/0Uv3oc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -40,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 648,
+							"top": 440,
+							"width": 136,
+							"height": 58,
+							"nameCompartment": {
+								"$ref": "AAAAAAF++P3QAEUyazg="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAF++P3QAEU3lcA="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAF++P3QAEU4UUE="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAF++P3QAEU5nso="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAF++P3QAEU6qQg="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAF++P4TjkXKiDc=",
+							"_parent": {
+								"$ref": "AAAAAAF++Ppa3EHM5Vo="
+							},
+							"model": {
+								"$ref": "AAAAAAF++P4TjkXG3BU="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4Tj0XLWrA=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4TjkXKiDc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4TjkXG3BU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 609,
+									"top": 427,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4TjkXKiDc="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4Tj0XM+ZU=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4TjkXKiDc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4TjkXG3BU="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 612,
+									"top": 412,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4TjkXKiDc="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4Tj0XNpbw=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4TjkXKiDc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4TjkXG3BU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 604,
+									"top": 456,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4TjkXKiDc="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4Tj0XOWqs=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4TjkXKiDc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4TjkXHJpM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 596,
+									"top": 425,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4TjkXKiDc="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4Tj0XP2YQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4TjkXKiDc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4TjkXHJpM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 601,
+									"top": 412,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4TjkXKiDc="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4Tj0XQnJQ=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4TjkXKiDc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4TjkXHJpM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 586,
+									"top": 451,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4TjkXKiDc="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4Tj0XRp7g=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4TjkXKiDc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4TjkXIolo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 624,
+									"top": 430,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4TjkXKiDc="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4Tj0XSepM=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4TjkXKiDc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4TjkXIolo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 624,
+									"top": 416,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4TjkXKiDc="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4Tj0XT1W0=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4TjkXKiDc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4TjkXIolo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 623,
+									"top": 458,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4TjkXKiDc="
+									}
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++P4Tj0XUnnA=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4TjkXKiDc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4TjkXHJpM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -32,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++P4Tj0XVpyY=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4TjkXKiDc="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4TjkXIolo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -32,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++P3QAEUx81g="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++Py1LURAVPA="
+							},
+							"lineStyle": 1,
+							"points": "568:441;647:456",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++P4Tj0XLWrA="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++P4Tj0XM+ZU="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++P4Tj0XNpbw="
+							},
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAF++P4Tj0XOWqs="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAF++P4Tj0XP2YQ="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAF++P4Tj0XQnJQ="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAF++P4Tj0XRp7g="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAF++P4Tj0XSepM="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAF++P4Tj0XT1W0="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAF++P4Tj0XUnnA="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAF++P4Tj0XVpyY="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAF++P4eZEYo+L8=",
+							"_parent": {
+								"$ref": "AAAAAAF++Ppa3EHM5Vo="
+							},
+							"model": {
+								"$ref": "AAAAAAF++P4eZEYkbIQ="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4eZEYpDlY=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4eZEYo+L8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4eZEYkbIQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 814,
+									"top": 452,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4eZEYo+L8="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4eZEYq2J0=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4eZEYo+L8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4eZEYkbIQ="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 818,
+									"top": 467,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4eZEYo+L8="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4eZEYrY7g=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4eZEYo+L8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4eZEYkbIQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 807,
+									"top": 423,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4eZEYo+L8="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4eZEYsxKI=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4eZEYo+L8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4eZEYlSPo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 817,
+									"top": 451,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4eZEYo+L8="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4eZEYtF6E=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4eZEYo+L8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4eZEYlSPo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 818,
+									"top": 465,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4eZEYo+L8="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4eZEYuwaE=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4eZEYo+L8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4eZEYlSPo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 814,
+									"top": 424,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4eZEYo+L8="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4eZEYvdBk=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4eZEYo+L8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4eZEYme1E="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 812,
+									"top": 453,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4eZEYo+L8="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4eZEYwMpo=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4eZEYo+L8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4eZEYme1E="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 818,
+									"top": 465,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4eZEYo+L8="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4eZEYxmW8=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4eZEYo+L8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4eZEYme1E="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 801,
+									"top": 427,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4eZEYo+L8="
+									}
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++P4eZEYyJqs=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4eZEYo+L8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4eZEYlSPo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -32,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++P4eZEYzfcg=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4eZEYo+L8="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4eZEYme1E="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -32,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++P3QAEUx81g="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++PpsukHSJyU="
+							},
+							"lineStyle": 1,
+							"points": "839:437;784:451",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++P4eZEYpDlY="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++P4eZEYq2J0="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++P4eZEYrY7g="
+							},
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAF++P4eZEYsxKI="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAF++P4eZEYtF6E="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAF++P4eZEYuwaE="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAF++P4eZEYvdBk="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAF++P4eZEYwMpo="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAF++P4eZEYxmW8="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAF++P4eZEYyJqs="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAF++P4eZEYzfcg="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAF++P4oVUabMUA=",
+							"_parent": {
+								"$ref": "AAAAAAF++Ppa3EHM5Vo="
+							},
+							"model": {
+								"$ref": "AAAAAAF++P4oVUaX5MI="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4oVUac0x0=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4oVUabMUA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4oVUaX5MI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 729,
+									"top": 363,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4oVUabMUA="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4oVUadSGE=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4oVUabMUA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4oVUaX5MI="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 744,
+									"top": 363,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4oVUabMUA="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4oVUaeFhs=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4oVUabMUA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4oVUaX5MI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 700,
+									"top": 364,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4oVUabMUA="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4oVUafQ0I=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4oVUabMUA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4oVUaYsXM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 730,
+									"top": 320,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4oVUabMUA="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4oVUagWls=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4oVUabMUA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4oVUaYsXM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 743,
+									"top": 323,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4oVUabMUA="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4oVUahJ+k=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4oVUabMUA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4oVUaYsXM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 702,
+									"top": 316,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4oVUabMUA="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4oVUaipPw=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4oVUabMUA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4oVUaZWto="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 730,
+									"top": 407,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4oVUabMUA="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4oVUajtA8=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4oVUabMUA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4oVUaZWto="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 743,
+									"top": 404,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4oVUabMUA="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAF++P4oVUaktdg=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4oVUabMUA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4oVUaZWto="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 702,
+									"top": 411,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAF++P4oVUabMUA="
+									}
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++P4oVUalX4I=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4oVUabMUA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4oVUaYsXM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -32,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAF++P4oVUamLB8=",
+									"_parent": {
+										"$ref": "AAAAAAF++P4oVUabMUA="
+									},
+									"model": {
+										"$ref": "AAAAAAF++P4oVUaZWto="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -32,
+									"top": 8,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAF++P3QAEUx81g="
+							},
+							"tail": {
+								"$ref": "AAAAAAF++PuYP0J3tzk="
+							},
+							"lineStyle": 1,
+							"points": "715:301;715:439",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAF++P4oVUac0x0="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAF++P4oVUadSGE="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAF++P4oVUaeFhs="
+							},
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAF++P4oVUafQ0I="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAF++P4oVUagWls="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAF++P4oVUahJ+k="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAF++P4oVUaipPw="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAF++P4oVUajtA8="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAF++P4oVUaktdg="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAF++P4oVUalX4I="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAF++P4oVUamLB8="
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAF++PpsukHQnn0=",
+					"_parent": {
+						"$ref": "AAAAAAF++Ppa3EHLvYg="
+					},
+					"name": "Voiture",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAF++P4eZEYkbIQ=",
+							"_parent": {
+								"$ref": "AAAAAAF++PpsukHQnn0="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++P4eZEYlSPo=",
+								"_parent": {
+									"$ref": "AAAAAAF++P4eZEYkbIQ="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++PpsukHQnn0="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++P4eZEYme1E=",
+								"_parent": {
+									"$ref": "AAAAAAF++P4eZEYkbIQ="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++P3P/0Uv3oc="
+								}
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAF++PqAjUH6K/g=",
+							"_parent": {
+								"$ref": "AAAAAAF++PpsukHQnn0="
+							},
+							"name": "Marque"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAF++PqoXEIBWqQ=",
+							"_parent": {
+								"$ref": "AAAAAAF++PpsukHQnn0="
+							},
+							"name": "Modèle"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAF++Pq2WEIImBE=",
+							"_parent": {
+								"$ref": "AAAAAAF++PpsukHQnn0="
+							},
+							"name": "Année"
+						}
+					],
+					"operations": [
+						{
+							"_type": "UMLOperation",
+							"_id": "AAAAAAF++Pr660IPbkc=",
+							"_parent": {
+								"$ref": "AAAAAAF++PpsukHQnn0="
+							},
+							"name": "getTechnicalData"
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAF++PsztUIY6ww=",
+					"_parent": {
+						"$ref": "AAAAAAF++Ppa3EHLvYg="
+					},
+					"name": "Personnel",
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAF++PtGA0JDPio=",
+							"_parent": {
+								"$ref": "AAAAAAF++PsztUIY6ww="
+							},
+							"name": "Nom"
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAF++Pt4LkJLeoc=",
+					"_parent": {
+						"$ref": "AAAAAAF++Ppa3EHLvYg="
+					},
+					"name": "Manageur",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAF++PvJR0LJpVY=",
+							"_parent": {
+								"$ref": "AAAAAAF++Pt4LkJLeoc="
+							},
+							"source": {
+								"$ref": "AAAAAAF++Pt4LkJLeoc="
+							},
+							"target": {
+								"$ref": "AAAAAAF++PsztUIY6ww="
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAF++PwMt0Nh3b0=",
+							"_parent": {
+								"$ref": "AAAAAAF++Pt4LkJLeoc="
+							},
+							"name": "supervise",
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++PwMt0NioMc=",
+								"_parent": {
+									"$ref": "AAAAAAF++PwMt0Nh3b0="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++Pt4LkJLeoc="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++PwMt0Njmqs=",
+								"_parent": {
+									"$ref": "AAAAAAF++PwMt0Nh3b0="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++PuYP0J1OMw="
+								}
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAF++PuYP0J1OMw=",
+					"_parent": {
+						"$ref": "AAAAAAF++Ppa3EHLvYg="
+					},
+					"name": "Vendeur",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAF++PvTWkLacPc=",
+							"_parent": {
+								"$ref": "AAAAAAF++PuYP0J1OMw="
+							},
+							"source": {
+								"$ref": "AAAAAAF++PuYP0J1OMw="
+							},
+							"target": {
+								"$ref": "AAAAAAF++PsztUIY6ww="
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAF++P4oVUaX5MI=",
+							"_parent": {
+								"$ref": "AAAAAAF++PuYP0J1OMw="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++P4oVUaYsXM=",
+								"_parent": {
+									"$ref": "AAAAAAF++P4oVUaX5MI="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++PuYP0J1OMw="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++P4oVUaZWto=",
+								"_parent": {
+									"$ref": "AAAAAAF++P4oVUaX5MI="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++P3P/0Uv3oc="
+								}
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAF++Pus/UKfJ5k=",
+					"_parent": {
+						"$ref": "AAAAAAF++Ppa3EHLvYg="
+					},
+					"name": "Mécano",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAF++PveQELr+vo=",
+							"_parent": {
+								"$ref": "AAAAAAF++Pus/UKfJ5k="
+							},
+							"source": {
+								"$ref": "AAAAAAF++Pus/UKfJ5k="
+							},
+							"target": {
+								"$ref": "AAAAAAF++PsztUIY6ww="
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAF++Py1LUQ+IQ8=",
+					"_parent": {
+						"$ref": "AAAAAAF++Ppa3EHLvYg="
+					},
+					"name": "Client",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAF++P4TjkXG3BU=",
+							"_parent": {
+								"$ref": "AAAAAAF++Py1LUQ+IQ8="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++P4TjkXHJpM=",
+								"_parent": {
+									"$ref": "AAAAAAF++P4TjkXG3BU="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++Py1LUQ+IQ8="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAF++P4TjkXIolo=",
+								"_parent": {
+									"$ref": "AAAAAAF++P4TjkXG3BU="
+								},
+								"reference": {
+									"$ref": "AAAAAAF++P3P/0Uv3oc="
+								}
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAF++PzSR0SGIxA=",
+							"_parent": {
+								"$ref": "AAAAAAF++Py1LUQ+IQ8="
+							},
+							"name": "Nom"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAF++PzuUESiZT8=",
+							"_parent": {
+								"$ref": "AAAAAAF++Py1LUQ+IQ8="
+							},
+							"name": "Adresse"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAF++Pz3XUS+aVE=",
+							"_parent": {
+								"$ref": "AAAAAAF++Py1LUQ+IQ8="
+							},
+							"name": "Numéro Téléphone"
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAF++P3P/0Uv3oc=",
+					"_parent": {
+						"$ref": "AAAAAAF++Ppa3EHLvYg="
+					},
+					"name": "Vente",
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAF++P3czkVuXuE=",
+							"_parent": {
+								"$ref": "AAAAAAF++P3P/0Uv3oc="
+							},
+							"name": "Prix"
+						}
+					]
+				}
+			]
+		}
+	]
+}
\ No newline at end of file
diff --git a/APL2.1/TP04/Date/Date.class b/APL2.1/TP05/Date/Date.class
similarity index 100%
rename from APL2.1/TP04/Date/Date.class
rename to APL2.1/TP05/Date/Date.class
diff --git a/APL2.1/TP04/Date/Date.java b/APL2.1/TP05/Date/Date.java
similarity index 100%
rename from APL2.1/TP04/Date/Date.java
rename to APL2.1/TP05/Date/Date.java
diff --git a/APL2.1/TP04/Date/MyDate.class b/APL2.1/TP05/Date/MyDate.class
similarity index 100%
rename from APL2.1/TP04/Date/MyDate.class
rename to APL2.1/TP05/Date/MyDate.class
diff --git a/APL2.1/TP04/Date/MyDate.java b/APL2.1/TP05/Date/MyDate.java
similarity index 100%
rename from APL2.1/TP04/Date/MyDate.java
rename to APL2.1/TP05/Date/MyDate.java
diff --git a/APL2.1/TP04/Lendemains/Lendemains.class b/APL2.1/TP05/Lendemains/Lendemains.class
similarity index 100%
rename from APL2.1/TP04/Lendemains/Lendemains.class
rename to APL2.1/TP05/Lendemains/Lendemains.class
diff --git a/APL2.1/TP04/Lendemains/Lendemains.java b/APL2.1/TP05/Lendemains/Lendemains.java
similarity index 100%
rename from APL2.1/TP04/Lendemains/Lendemains.java
rename to APL2.1/TP05/Lendemains/Lendemains.java
diff --git a/APL2.1/TP04/Lendemains/MyDate.class b/APL2.1/TP05/Lendemains/MyDate.class
similarity index 100%
rename from APL2.1/TP04/Lendemains/MyDate.class
rename to APL2.1/TP05/Lendemains/MyDate.class
diff --git a/APL2.1/TP04/Lendemains/MyDate.java b/APL2.1/TP05/Lendemains/MyDate.java
similarity index 100%
rename from APL2.1/TP04/Lendemains/MyDate.java
rename to APL2.1/TP05/Lendemains/MyDate.java
diff --git a/APL2.1/TP04/Periode/MyDate.class b/APL2.1/TP05/Periode/MyDate.class
similarity index 100%
rename from APL2.1/TP04/Periode/MyDate.class
rename to APL2.1/TP05/Periode/MyDate.class
diff --git a/APL2.1/TP04/Periode/MyDate.java b/APL2.1/TP05/Periode/MyDate.java
similarity index 100%
rename from APL2.1/TP04/Periode/MyDate.java
rename to APL2.1/TP05/Periode/MyDate.java
diff --git a/APL2.1/TP04/Periode/MyPeriod.class b/APL2.1/TP05/Periode/MyPeriod.class
similarity index 100%
rename from APL2.1/TP04/Periode/MyPeriod.class
rename to APL2.1/TP05/Periode/MyPeriod.class
diff --git a/APL2.1/TP04/Periode/MyPeriod.java b/APL2.1/TP05/Periode/MyPeriod.java
similarity index 100%
rename from APL2.1/TP04/Periode/MyPeriod.java
rename to APL2.1/TP05/Periode/MyPeriod.java
diff --git a/APL2.1/TP04/Periode/Periode.class b/APL2.1/TP05/Periode/Periode.class
similarity index 100%
rename from APL2.1/TP04/Periode/Periode.class
rename to APL2.1/TP05/Periode/Periode.class
diff --git a/APL2.1/TP04/Periode/Periode.java b/APL2.1/TP05/Periode/Periode.java
similarity index 100%
rename from APL2.1/TP04/Periode/Periode.java
rename to APL2.1/TP05/Periode/Periode.java
diff --git a/APL2.1/TP04/Progression/Compteur.class b/APL2.1/TP05/Progression/Compteur.class
similarity index 100%
rename from APL2.1/TP04/Progression/Compteur.class
rename to APL2.1/TP05/Progression/Compteur.class
diff --git a/APL2.1/TP04/Progression/Compteur.java b/APL2.1/TP05/Progression/Compteur.java
similarity index 100%
rename from APL2.1/TP04/Progression/Compteur.java
rename to APL2.1/TP05/Progression/Compteur.java
diff --git a/APL2.1/TP04/Progression/Progression.class b/APL2.1/TP05/Progression/Progression.class
similarity index 100%
rename from APL2.1/TP04/Progression/Progression.class
rename to APL2.1/TP05/Progression/Progression.class
diff --git a/APL2.1/TP04/Progression/Progression.java b/APL2.1/TP05/Progression/Progression.java
similarity index 100%
rename from APL2.1/TP04/Progression/Progression.java
rename to APL2.1/TP05/Progression/Progression.java