Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
projet-cdaw
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Quentin Vrel
projet-cdaw
Commits
95ed4c6f
Commit
95ed4c6f
authored
Nov 24, 2020
by
quentin.vrel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mise à jour de la bdd
parent
b2de3b6f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
813 additions
and
926 deletions
+813
-926
dump.sql
AGL/BD/dump.sql
+32
-47
MCD TP AGL.bcd
AGL/Conception/MCD TP AGL.bcd
+467
-337
MCD TP AGL.mcd
AGL/Conception/MCD TP AGL.mcd
+314
-542
No files found.
AGL/BD/dump.sql
View file @
95ed4c6f
/*==============================================================*/
/* Nom de SGBD : MySQL 5.0 */
/* Date de cration : 2
3/11/2020 18:08:41
*/
/* Date de cration : 2
4/11/2020 16:14:35
*/
/*==============================================================*/
...
...
@@ -15,6 +15,17 @@ create table MJ_BLACKLIST_IP
primary
key
(
ID_BLACKLIST
)
);
/*==============================================================*/
/* Table : MJ_GAME */
/*==============================================================*/
create
table
MJ_GAME
(
ID_GAME
int
not
null
auto_increment
comment
''
,
PRIVATE
bool
not
null
comment
''
,
CREATION_TIME
timestamp
not
null
comment
''
,
primary
key
(
ID_GAME
)
);
/*==============================================================*/
/* Table : MJ_ROLE */
/*==============================================================*/
...
...
@@ -46,32 +57,20 @@ create table MJ_USER
);
/*==============================================================*/
/* Table : MJ_ROOM */
/*==============================================================*/
create
table
MJ_ROOM
(
ID_ROOM
int
not
null
auto_increment
comment
''
,
ID_USER
int
comment
''
,
PRIVATE
bool
not
null
comment
''
,
DATE_BEGIN
datetime
not
null
comment
''
,
DATE_END
datetime
comment
''
,
primary
key
(
ID_ROOM
),
constraint
FK_MJ_ROOM_MJ_CREATI_MJ_USER
foreign
key
(
ID_USER
)
references
MJ_USER
(
ID_USER
)
on
delete
restrict
on
update
restrict
);
/*==============================================================*/
/* Table : MJ_GAME */
/* Table : MJ_ROUND */
/*==============================================================*/
create
table
MJ_
GAME
create
table
MJ_
ROUND
(
ID_GAME
int
not
null
auto_increment
comment
''
,
ID_ROOM
int
comment
''
,
DATE_BEGIN
datetime
not
null
comment
''
,
DATE_END
datetime
comment
''
,
primary
key
(
ID_GAME
),
constraint
FK_MJ_GAME_MJ_HOST_MJ_ROOM
foreign
key
(
ID_ROOM
)
references
MJ_ROOM
(
ID_ROOM
)
on
delete
restrict
on
update
restrict
ID_ROUND
int
not
null
auto_increment
comment
''
,
ID_GAME
int
comment
''
,
PREVAILING_WIND
int
not
null
comment
''
,
SEED
int
not
null
comment
''
,
BEGINING
timestamp
comment
''
,
ENDING
timestamp
comment
''
,
ACTIONS
text
comment
''
,
primary
key
(
ID_ROUND
),
constraint
FK_MJ_ROUND_MJ_COMPOS_MJ_GAME
foreign
key
(
ID_GAME
)
references
MJ_GAME
(
ID_GAME
)
on
delete
restrict
on
update
restrict
);
/*==============================================================*/
...
...
@@ -79,30 +78,16 @@ create table MJ_GAME
/*==============================================================*/
create
table
MJ_PLAY
(
ID_GAME
int
not
null
comment
''
,
ID_USER
int
not
null
comment
''
,
ID_ROUND
int
not
null
comment
''
,
WIN
bool
comment
''
,
primary
key
(
ID_GAME
,
ID_USER
),
constraint
FK_MJ_PLAY_PLAY_MJ_GAME
foreign
key
(
ID_GAME
)
references
MJ_GAME
(
ID_GAME
)
on
delete
restrict
on
update
restrict
,
SCORE
int
comment
''
,
HOST
bool
comment
''
,
WIND
int
comment
''
,
primary
key
(
ID_USER
,
ID_ROUND
),
constraint
FK_MJ_PLAY_PLAY2_MJ_USER
foreign
key
(
ID_USER
)
references
MJ_USER
(
ID_USER
)
on
delete
restrict
on
update
restrict
);
/*==============================================================*/
/* Table : MJ_ROUND */
/*==============================================================*/
create
table
MJ_ROUND
(
ID_ROUND
int
not
null
auto_increment
comment
''
,
ID_GAME
int
comment
''
,
WIND
int
not
null
comment
''
,
SEED
int
not
null
comment
''
,
DATE_BEGIN
datetime
not
null
comment
''
,
DATE_END
datetime
comment
''
,
ACTIONS
text
comment
''
,
primary
key
(
ID_ROUND
),
constraint
FK_MJ_ROUND_MJ_COMPOS_MJ_GAME
foreign
key
(
ID_GAME
)
references
MJ_GAME
(
ID_GAME
)
on
delete
restrict
on
update
restrict
references
MJ_USER
(
ID_USER
)
on
delete
restrict
on
update
restrict
,
constraint
FK_MJ_PLAY_MJ_PLAY_MJ_ROUND
foreign
key
(
ID_ROUND
)
references
MJ_ROUND
(
ID_ROUND
)
on
delete
restrict
on
update
restrict
);
AGL/Conception/MCD TP AGL.bcd
View file @
95ed4c6f
<?xml version="1.0" encoding="UTF-8"?>
<?PowerDesigner AppLocale="UTF16" ID="{11E4B893-61D4-478A-BAF1-0F640FC9D025}" Label="" LastModificationDate="16061
46579" Name="MCD TP AGL" Objects="159" Symbols="30
" Type="{1E597170-9350-11D1-AB3C-0020AF71E433}" signature="CDM_DATA_MODEL_XML" version="16.7.1.6521"?>
<?PowerDesigner AppLocale="UTF16" ID="{11E4B893-61D4-478A-BAF1-0F640FC9D025}" Label="" LastModificationDate="16061
51165" Name="MCD TP AGL" Objects="139" Symbols="42
" Type="{1E597170-9350-11D1-AB3C-0020AF71E433}" signature="CDM_DATA_MODEL_XML" version="16.7.1.6521"?>
<!-- Veuillez ne pas modifier ce fichier -->
<Model
xmlns:a=
"attribute"
xmlns:c=
"collection"
xmlns:o=
"object"
>
...
...
@@ -13,8 +13,20 @@
<a:Code>
MCD_TP_AGL
</a:Code>
<a:CreationDate>
1605186864
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606146313
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:ModificationDate>
1606151091
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {83E9595C-80F2-4C36-B14E-147FEB75C299}
ATT MOPT
DLD {0EA9E766-B69F-4DEB-970A-8EDDEE4684A3}
DLD {12110ACB-297A-4CD9-A25F-D81BFF912199}
DLD {DD26F711-EC7D-4145-A973-54E82F457F00}
DLD {C2880144-409E-4450-8767-ACA256E46B9E}
DLD {A7263E3E-89C3-40C5-917E-C98B7CC02EC9}
DLD {99A7CB8D-2C66-4C6B-8F17-C968574DE244}
DLD {80E291C7-A06C-4FC5-8396-0ADE8591FF10}
DLD {5D340D9D-6C5E-48F8-AFB9-339CA2F0A578}
DLD {22A3B995-6C09-4BA3-8F15-6E316004723D}
DLD {12039D74-7107-4025-A1E1-092C853CD64E}
</a:History>
<a:PackageOptionsText>
[FolderOptions]
[FolderOptions\Conceptual Data Objects]
...
...
@@ -828,7 +840,7 @@ UseTerm=No
EnableRequirements=No
EnableFullShortcut=Yes
SynchroCode=Yes
InfoUnique=
Yes
InfoUnique=
No
AllowReuse=Yes
InfoAllowReuse=Yes
Notation=1
...
...
@@ -1257,9 +1269,35 @@ NameToCode=No</a:ModelOptionsText>
<a:TargetID>
83E9595C-80F2-4C36-B14E-147FEB75C299
</a:TargetID>
<a:TargetClassID>
CDE44E21-9669-11D1-9914-006097355D9B
</a:TargetClassID>
</o:Shortcut>
<o:Shortcut
Id=
"o4"
>
<a:ObjectID>
011923A4-A41B-4C1F-B454-FC534A929334
</a:ObjectID>
<a:Name>
MPD TP AGL
</a:Name>
<a:Code>
MPD_TP_AGL
</a:Code>
<a:CreationDate>
1606151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:TargetStereotype/>
<a:TargetID>
429C6A8D-7CCA-4EA9-9518-24D9C8D1C5AC
</a:TargetID>
<a:TargetClassID>
CDE44E21-9669-11D1-9914-006097355D9B
</a:TargetClassID>
</o:Shortcut>
</c:GeneratedModels>
<c:GenerationOrigins>
<o:Shortcut
Id=
"o5"
>
<a:ObjectID>
1940FCC2-C878-4EA9-81C8-E973DF4110C8
</a:ObjectID>
<a:Name>
MPD TP AGL
</a:Name>
<a:Code>
MPD_TP_AGL
</a:Code>
<a:CreationDate>
1606150267
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606150267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:TargetStereotype/>
<a:TargetID>
83E9595C-80F2-4C36-B14E-147FEB75C299
</a:TargetID>
<a:TargetClassID>
CDE44E21-9669-11D1-9914-006097355D9B
</a:TargetClassID>
</o:Shortcut>
</c:GenerationOrigins>
<c:ConceptualDiagrams>
<o:ConceptualDiagram
Id=
"o
4
"
>
<o:ConceptualDiagram
Id=
"o
6
"
>
<a:ObjectID>
6B17B86F-8A2A-486A-81D6-249AB44465E8
</a:ObjectID>
<a:Name>
MCD TP AGL
</a:Name>
<a:Code>
MCD_TP_AGL
</a:Code>
...
...
@@ -1723,11 +1761,11 @@ Shadow=0</a:DisplayPreferences>
<a:PageOrientation>
1
</a:PageOrientation>
<a:PaperSource>
15
</a:PaperSource>
<c:Symbols>
<o:AssociationLinkSymbol
Id=
"o
5
"
>
<o:AssociationLinkSymbol
Id=
"o
7
"
>
<a:CreationDate>
1605191936
</a:CreationDate>
<a:ModificationDate>
1605191948
</a:ModificationDate>
<a:Rect>
((-
4609,-7760), (-1199
,2000))
</a:Rect>
<a:ListOfPoints>
((-
1599
,-7360),(-4000,1600))
</a:ListOfPoints>
<a:Rect>
((-
5802,-7760), (-3600
,2000))
</a:Rect>
<a:ListOfPoints>
((-
4133
,-7360),(-4000,1600))
</a:ListOfPoints>
<a:CornerStyle>
3
</a:CornerStyle>
<a:ArrowStyle>
0
</a:ArrowStyle>
<a:LineColor>
16744576
</a:LineColor>
...
...
@@ -1735,19 +1773,19 @@ Shadow=0</a:DisplayPreferences>
<a:FontList>
CENTER 0 Arial,8,N
SOURCE 0 Arial,8,N
</a:FontList>
<c:SourceSymbol>
<o:EntitySymbol
Ref=
"o
6
"
/>
<o:EntitySymbol
Ref=
"o
8
"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o
7
"
/>
<o:AssociationSymbol
Ref=
"o
9
"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o
8
"
/>
<o:AssociationLink
Ref=
"o
10
"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o
9
"
>
<o:AssociationLinkSymbol
Id=
"o
11
"
>
<a:CreationDate>
1605191938
</a:CreationDate>
<a:ModificationDate>
1606145981
</a:ModificationDate>
<a:Rect>
((-5200,2800), (-2
474
,14480))
</a:Rect>
<a:Rect>
((-5200,2800), (-2
506
,14480))
</a:Rect>
<a:ListOfPoints>
((-3817,14080),(-4800,3200))
</a:ListOfPoints>
<a:CornerStyle>
3
</a:CornerStyle>
<a:ArrowStyle>
0
</a:ArrowStyle>
...
...
@@ -1756,20 +1794,20 @@ SOURCE 0 Arial,8,N</a:FontList>
<a:FontList>
CENTER 0 Arial,8,N
SOURCE 0 Arial,8,N
</a:FontList>
<c:SourceSymbol>
<o:EntitySymbol
Ref=
"o1
0
"
/>
<o:EntitySymbol
Ref=
"o1
2
"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o
7
"
/>
<o:AssociationSymbol
Ref=
"o
9
"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o1
1
"
/>
<o:AssociationLink
Ref=
"o1
3
"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o1
2
"
>
<o:AssociationLinkSymbol
Id=
"o1
4
"
>
<a:CreationDate>
1605195298
</a:CreationDate>
<a:ModificationDate>
1606144185
</a:ModificationDate>
<a:Rect>
((-31840,-8880), (-1
2857
,-5300))
</a:Rect>
<a:ListOfPoints>
((-1
3257
,-8480),(-31440,-5700))
</a:ListOfPoints>
<a:Rect>
((-31840,-8880), (-1
1828
,-5300))
</a:Rect>
<a:ListOfPoints>
((-1
2228
,-8480),(-31440,-5700))
</a:ListOfPoints>
<a:CornerStyle>
3
</a:CornerStyle>
<a:ArrowStyle>
0
</a:ArrowStyle>
<a:LineColor>
16744576
</a:LineColor>
...
...
@@ -1777,16 +1815,16 @@ SOURCE 0 Arial,8,N</a:FontList>
<a:FontList>
CENTER 0 Arial,8,N
SOURCE 0 Arial,8,N
</a:FontList>
<c:SourceSymbol>
<o:EntitySymbol
Ref=
"o
6
"
/>
<o:EntitySymbol
Ref=
"o
8
"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o1
3
"
/>
<o:AssociationSymbol
Ref=
"o1
5
"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o1
4
"
/>
<o:AssociationLink
Ref=
"o1
6
"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o1
5
"
>
<o:AssociationLinkSymbol
Id=
"o1
7
"
>
<a:CreationDate>
1605195298
</a:CreationDate>
<a:ModificationDate>
1606144185
</a:ModificationDate>
<a:Rect>
((-47200,-6100), (-31040,-3120))
</a:Rect>
...
...
@@ -1798,16 +1836,16 @@ SOURCE 0 Arial,8,N</a:FontList>
<a:FontList>
CENTER 0 Arial,8,N
SOURCE 0 Arial,8,N
</a:FontList>
<c:SourceSymbol>
<o:EntitySymbol
Ref=
"o1
6
"
/>
<o:EntitySymbol
Ref=
"o1
8
"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o1
3
"
/>
<o:AssociationSymbol
Ref=
"o1
5
"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o1
7
"
/>
<o:AssociationLink
Ref=
"o1
9
"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o
18
"
>
<o:AssociationLinkSymbol
Id=
"o
20
"
>
<a:CreationDate>
1605195299
</a:CreationDate>
<a:ModificationDate>
1606144183
</a:ModificationDate>
<a:Rect>
((-50400,-5840), (-43066,6700))
</a:Rect>
...
...
@@ -1819,20 +1857,20 @@ SOURCE 0 Arial,8,N</a:FontList>
<a:FontList>
CENTER 0 Arial,8,N
SOURCE 0 Arial,8,N
</a:FontList>
<c:SourceSymbol>
<o:EntitySymbol
Ref=
"o1
6
"
/>
<o:EntitySymbol
Ref=
"o1
8
"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o
19
"
/>
<o:AssociationSymbol
Ref=
"o
21
"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o2
0
"
/>
<o:AssociationLink
Ref=
"o2
2
"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o2
1
"
>
<o:AssociationLinkSymbol
Id=
"o2
3
"
>
<a:CreationDate>
1605195299
</a:CreationDate>
<a:ModificationDate>
1606144183
</a:ModificationDate>
<a:Rect>
((-
62
800,5900), (-49600,18000))
</a:Rect>
<a:ListOfPoints>
((-
62
400,17600),(-50000,6300))
</a:ListOfPoints>
<a:Rect>
((-
58
800,5900), (-49600,18000))
</a:Rect>
<a:ListOfPoints>
((-
58
400,17600),(-50000,6300))
</a:ListOfPoints>
<a:CornerStyle>
3
</a:CornerStyle>
<a:ArrowStyle>
0
</a:ArrowStyle>
<a:LineColor>
16744576
</a:LineColor>
...
...
@@ -1840,16 +1878,16 @@ SOURCE 0 Arial,8,N</a:FontList>
<a:FontList>
CENTER 0 Arial,8,N
SOURCE 0 Arial,8,N
</a:FontList>
<c:SourceSymbol>
<o:EntitySymbol
Ref=
"o2
2
"
/>
<o:EntitySymbol
Ref=
"o2
4
"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o
19
"
/>
<o:AssociationSymbol
Ref=
"o
21
"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o2
3
"
/>
<o:AssociationLink
Ref=
"o2
5
"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o2
4
"
>
<o:AssociationLinkSymbol
Id=
"o2
6
"
>
<a:CreationDate>
1606144161
</a:CreationDate>
<a:ModificationDate>
1606145981
</a:ModificationDate>
<a:Rect>
((-2000,5900), (8400,15600))
</a:Rect>
...
...
@@ -1861,19 +1899,19 @@ SOURCE 0 Arial,8,N</a:FontList>
<a:FontList>
CENTER 0 Arial,8,N
SOURCE 0 Arial,8,N
</a:FontList>
<c:SourceSymbol>
<o:EntitySymbol
Ref=
"o1
0
"
/>
<o:EntitySymbol
Ref=
"o1
2
"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o2
5
"
/>
<o:AssociationSymbol
Ref=
"o2
7
"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o2
6
"
/>
<o:AssociationLink
Ref=
"o2
8
"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o2
7
"
>
<o:AssociationLinkSymbol
Id=
"o2
9
"
>
<a:CreationDate>
1606144161
</a:CreationDate>
<a:ModificationDate>
1606144175
</a:ModificationDate>
<a:Rect>
((7600,430
4
), (20845,6700))
</a:Rect>
<a:Rect>
((7600,430
8
), (20845,6700))
</a:Rect>
<a:ListOfPoints>
((20445,4800),(8000,6300))
</a:ListOfPoints>
<a:CornerStyle>
3
</a:CornerStyle>
<a:ArrowStyle>
0
</a:ArrowStyle>
...
...
@@ -1882,16 +1920,16 @@ SOURCE 0 Arial,8,N</a:FontList>
<a:FontList>
CENTER 0 Arial,8,N
SOURCE 0 Arial,8,N
</a:FontList>
<c:SourceSymbol>
<o:EntitySymbol
Ref=
"o
28
"
/>
<o:EntitySymbol
Ref=
"o
30
"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o2
5
"
/>
<o:AssociationSymbol
Ref=
"o2
7
"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o
29
"
/>
<o:AssociationLink
Ref=
"o
31
"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o3
0
"
>
<o:AssociationLinkSymbol
Id=
"o3
2
"
>
<a:CreationDate>
1606146008
</a:CreationDate>
<a:ModificationDate>
1606146008
</a:ModificationDate>
<a:Rect>
((-43600,-2800), (-32400,6800))
</a:Rect>
...
...
@@ -1903,16 +1941,16 @@ SOURCE 0 Arial,8,N</a:FontList>
<a:FontList>
CENTER 0 Arial,8,N
SOURCE 0 Arial,8,N
</a:FontList>
<c:SourceSymbol>
<o:EntitySymbol
Ref=
"o1
6
"
/>
<o:EntitySymbol
Ref=
"o1
8
"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o3
1
"
/>
<o:AssociationSymbol
Ref=
"o3
3
"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o3
2
"
/>
<o:AssociationLink
Ref=
"o3
4
"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o3
3
"
>
<o:AssociationLinkSymbol
Id=
"o3
5
"
>
<a:CreationDate>
1606146008
</a:CreationDate>
<a:ModificationDate>
1606146008
</a:ModificationDate>
<a:Rect>
((-33200,6000), (-22000,15600))
</a:Rect>
...
...
@@ -1924,18 +1962,18 @@ SOURCE 0 Arial,8,N</a:FontList>
<a:FontList>
CENTER 0 Arial,8,N
SOURCE 0 Arial,8,N
</a:FontList>
<c:SourceSymbol>
<o:EntitySymbol
Ref=
"o1
0
"
/>
<o:EntitySymbol
Ref=
"o1
2
"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o3
1
"
/>
<o:AssociationSymbol
Ref=
"o3
3
"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o3
4
"
/>
<o:AssociationLink
Ref=
"o3
6
"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:EntitySymbol
Id=
"o1
0
"
>
<o:EntitySymbol
Id=
"o1
2
"
>
<a:CreationDate>
1605190204
</a:CreationDate>
<a:ModificationDate>
16061
45981
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-24800,12000), (2400,22400))
</a:Rect>
<a:LineColor>
4227200
</a:LineColor>
...
...
@@ -1951,12 +1989,12 @@ LABL 0 Arial,8,N</a:FontList>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Entity
Ref=
"o3
5
"
/>
<o:Entity
Ref=
"o3
7
"
/>
</c:Object>
</o:EntitySymbol>
<o:EntitySymbol
Id=
"o3
6
"
>
<o:EntitySymbol
Id=
"o3
8
"
>
<a:CreationDate>
1605190208
</a:CreationDate>
<a:ModificationDate>
160
5192780
</a:ModificationDate>
<a:ModificationDate>
160
6150267
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((18400,15200), (44800,20000))
</a:Rect>
<a:LineColor>
4227200
</a:LineColor>
...
...
@@ -1972,14 +2010,14 @@ LABL 0 Arial,8,N</a:FontList>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Entity
Ref=
"o3
7
"
/>
<o:Entity
Ref=
"o3
9
"
/>
</c:Object>
</o:EntitySymbol>
<o:EntitySymbol
Id=
"o
6
"
>
<o:EntitySymbol
Id=
"o
8
"
>
<a:CreationDate>
1605190494
</a:CreationDate>
<a:ModificationDate>
160
5192780
</a:ModificationDate>
<a:ModificationDate>
160
6150267
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-2
5600,-9600), (32
00,-4000))
</a:Rect>
<a:Rect>
((-2
0800,-9600), (-8
00,-4000))
</a:Rect>
<a:LineColor>
4227200
</a:LineColor>
<a:FillColor>
8637161
</a:FillColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
...
...
@@ -1993,12 +2031,12 @@ LABL 0 Arial,8,N</a:FontList>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Entity
Ref=
"o
38
"
/>
<o:Entity
Ref=
"o
40
"
/>
</c:Object>
</o:EntitySymbol>
<o:AssociationSymbol
Id=
"o
7
"
>
<o:AssociationSymbol
Id=
"o
9
"
>
<a:CreationDate>
1605191175
</a:CreationDate>
<a:ModificationDate>
160
5191948
</a:ModificationDate>
<a:ModificationDate>
160
6150267
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-6400,800), (-1600,4800))
</a:Rect>
<a:LineColor>
16744576
</a:LineColor>
...
...
@@ -2013,12 +2051,12 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Association
Ref=
"o
39
"
/>
<o:Association
Ref=
"o
41
"
/>
</c:Object>
</o:AssociationSymbol>
<o:EntitySymbol
Id=
"o1
6
"
>
<o:EntitySymbol
Id=
"o1
8
"
>
<a:CreationDate>
1605195277
</a:CreationDate>
<a:ModificationDate>
16061
44182
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-56800,-6400), (-36800,-1600))
</a:Rect>
<a:LineColor>
4227200
</a:LineColor>
...
...
@@ -2034,14 +2072,14 @@ LABL 0 Arial,8,N</a:FontList>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Entity
Ref=
"o4
0
"
/>
<o:Entity
Ref=
"o4
2
"
/>
</c:Object>
</o:EntitySymbol>
<o:EntitySymbol
Id=
"o2
2
"
>
<o:EntitySymbol
Id=
"o2
4
"
>
<a:CreationDate>
1605195287
</a:CreationDate>
<a:ModificationDate>
16061
44180
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-
62400,14400), (-34
400,22400))
</a:Rect>
<a:Rect>
((-
58400,14400), (-38
400,22400))
</a:Rect>
<a:LineColor>
4227200
</a:LineColor>
<a:FillColor>
8637161
</a:FillColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
...
...
@@ -2055,12 +2093,12 @@ LABL 0 Arial,8,N</a:FontList>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Entity
Ref=
"o4
1
"
/>
<o:Entity
Ref=
"o4
3
"
/>
</c:Object>
</o:EntitySymbol>
<o:AssociationSymbol
Id=
"o1
3
"
>
<o:AssociationSymbol
Id=
"o1
5
"
>
<a:CreationDate>
1605195298
</a:CreationDate>
<a:ModificationDate>
16061
44185
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-33600,-7200), (-28800,-3200))
</a:Rect>
<a:LineColor>
16744576
</a:LineColor>
...
...
@@ -2075,12 +2113,12 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Association
Ref=
"o4
2
"
/>
<o:Association
Ref=
"o4
4
"
/>
</c:Object>
</o:AssociationSymbol>
<o:AssociationSymbol
Id=
"o
19
"
>
<o:AssociationSymbol
Id=
"o
21
"
>
<a:CreationDate>
1605195299
</a:CreationDate>
<a:ModificationDate>
16061
44183
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-52800,4800), (-47200,8800))
</a:Rect>
<a:LineColor>
16744576
</a:LineColor>
...
...
@@ -2095,12 +2133,12 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Association
Ref=
"o4
3
"
/>
<o:Association
Ref=
"o4
5
"
/>
</c:Object>
</o:AssociationSymbol>
<o:EntitySymbol
Id=
"o
28
"
>
<o:EntitySymbol
Id=
"o
30
"
>
<a:CreationDate>
1606143730
</a:CreationDate>
<a:ModificationDate>
16061
44174
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((17600,2400), (43200,6400))
</a:Rect>
<a:LineColor>
4227200
</a:LineColor>
...
...
@@ -2116,12 +2154,12 @@ LABL 0 Arial,8,N</a:FontList>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Entity
Ref=
"o4
4
"
/>
<o:Entity
Ref=
"o4
6
"
/>
</c:Object>
</o:EntitySymbol>
<o:AssociationSymbol
Id=
"o2
5
"
>
<o:AssociationSymbol
Id=
"o2
7
"
>
<a:CreationDate>
1606144161
</a:CreationDate>
<a:ModificationDate>
16061
44175
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((5600,4800), (10400,8800))
</a:Rect>
<a:LineColor>
16744576
</a:LineColor>
...
...
@@ -2136,12 +2174,12 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Association
Ref=
"o4
5
"
/>
<o:Association
Ref=
"o4
7
"
/>
</c:Object>
</o:AssociationSymbol>
<o:AssociationSymbol
Id=
"o3
1
"
>
<o:AssociationSymbol
Id=
"o3
3
"
>
<a:CreationDate>
1606146008
</a:CreationDate>
<a:ModificationDate>
16061
46008
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-36800,4800), (-28800,8000))
</a:Rect>
<a:LineColor>
16744576
</a:LineColor>
...
...
@@ -2156,209 +2194,225 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Association
Ref=
"o4
6
"
/>
<o:Association
Ref=
"o4
8
"
/>
</c:Object>
</o:AssociationSymbol>
</c:Symbols>
</o:ConceptualDiagram>
</c:ConceptualDiagrams>
<c:DefaultDiagram>
<o:ConceptualDiagram
Ref=
"o
4
"
/>
<o:ConceptualDiagram
Ref=
"o
6
"
/>
</c:DefaultDiagram>
<c:Entities>
<o:Entity
Id=
"o3
5
"
>
<o:Entity
Id=
"o3
7
"
>
<a:ObjectID>
C0DB87CD-4A5D-433C-9E87-1673EC92C0CD
</a:ObjectID>
<a:Name>
User
</a:Name>
<a:Code>
USER
</a:Code>
<a:Code>
MJ_
USER
</a:Code>
<a:CreationDate>
1605190204
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46579
</a:ModificationDate>
<a:ModificationDate>
16061
50300
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {3D05CB82-C209-4E88-B2A1-4D4953BC7A70}
</a:History>
<c:Identifiers>
<o:Identifier
Id=
"o4
7
"
>
<o:Identifier
Id=
"o4
9
"
>
<a:ObjectID>
29F93A75-7941-415C-97FB-A544BE6F4C42
</a:ObjectID>
<a:Name>
Identifiant_1
</a:Name>
<a:Code>
IDENTIFIANT_1
</a:Code>
<a:CreationDate>
1605190657
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5190781
</a:ModificationDate>
<a:ModificationDate>
160
6150267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {BC38D29F-31B1-42FA-BD1D-A614BC546671}
</a:History>
<c:Identifier.Attributes>
<o:EntityAttribute
Ref=
"o
48
"
/>
<o:EntityAttribute
Ref=
"o
50
"
/>
</c:Identifier.Attributes>
</o:Identifier>
</c:Identifiers>
<c:PrimaryIdentifier>
<o:Identifier
Ref=
"o4
7
"
/>
<o:Identifier
Ref=
"o4
9
"
/>
</c:PrimaryIdentifier>
<c:Attributes>
<o:EntityAttribute
Id=
"o
48
"
>
<o:EntityAttribute
Id=
"o
50
"
>
<a:ObjectID>
86388F6F-98F6-4CFB-8C20-36A748C708C7
</a:ObjectID>
<a:CreationDate>
1605190638
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5190781
</a:ModificationDate>
<a:ModificationDate>
160
6150267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {F24E451E-9E54-4575-9FFA-5AE5B10C8C2F}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o
49
"
/>
<o:DataItem
Ref=
"o
51
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o5
0
"
>
<o:EntityAttribute
Id=
"o5
2
"
>
<a:ObjectID>
EE38085E-1616-414F-9680-B0D9F26E93F4
</a:ObjectID>
<a:CreationDate>
1605190882
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5191444
</a:ModificationDate>
<a:ModificationDate>
160
6150267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {F891E419-2C90-46BA-9A46-D66FE1ABB10E}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o5
1
"
/>
<o:DataItem
Ref=
"o5
3
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o5
2
"
>
<o:EntityAttribute
Id=
"o5
4
"
>
<a:ObjectID>
9EBCE180-D8FB-4757-8441-B6AD0236CFF0
</a:ObjectID>
<a:CreationDate>
1605190882
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5191444
</a:ModificationDate>
<a:ModificationDate>
160
6150267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {A6DC2D35-72B9-41C4-AFCF-E183E95EBFF7}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o5
3
"
/>
<o:DataItem
Ref=
"o5
5
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o5
4
"
>
<o:EntityAttribute
Id=
"o5
6
"
>
<a:ObjectID>
7E18F075-D88F-489B-AADF-4383ADCDD8A0
</a:ObjectID>
<a:CreationDate>
1605190948
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
519100
7
</a:ModificationDate>
<a:ModificationDate>
160
615026
7
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {28643B4E-9530-4B63-A9F3-04852DACB2BD}
</a:History>
<c:DataItem>
<o:DataItem
Ref=
"o5
5
"
/>
<o:DataItem
Ref=
"o5
7
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o5
6
"
>
<o:EntityAttribute
Id=
"o5
8
"
>
<a:ObjectID>
51C00BB9-BAA6-4BEE-B4D3-2D3C8B73BFD8
</a:ObjectID>
<a:CreationDate>
1605191361
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5191444
</a:ModificationDate>
<a:ModificationDate>
160
6150267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {51E050B4-A5A4-4D9F-9E06-99001EB9B2A4}
</a:History>
<c:DataItem>
<o:DataItem
Ref=
"o5
7
"
/>
<o:DataItem
Ref=
"o5
9
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o
58
"
>
<o:EntityAttribute
Id=
"o
60
"
>
<a:ObjectID>
FC1B487D-20F5-4A8C-8B4C-24F456BD1332
</a:ObjectID>
<a:CreationDate>
1605191361
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5191444
</a:ModificationDate>
<a:ModificationDate>
160
6150267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {2C776292-0095-4E1E-B392-D976B6B884E4}
</a:History>
<c:DataItem>
<o:DataItem
Ref=
"o
59
"
/>
<o:DataItem
Ref=
"o
61
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o6
0
"
>
<o:EntityAttribute
Id=
"o6
2
"
>
<a:ObjectID>
D344DFCD-2A8C-4FC2-8430-F5199A4C58D6
</a:ObjectID>
<a:CreationDate>
1605191460
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44736
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {D680331A-6D5B-47CE-ACBD-64D2567C9FA0}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o6
1
"
/>
<o:DataItem
Ref=
"o6
3
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o6
2
"
>
<o:EntityAttribute
Id=
"o6
4
"
>
<a:ObjectID>
2FAD5612-A144-4400-B69C-4A9D4A5A48B5
</a:ObjectID>
<a:CreationDate>
1605191685
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5191699
</a:ModificationDate>
<a:ModificationDate>
160
6150267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {0B653ED0-6F62-4A0B-ADC0-060A54C7F621}
</a:History>
<c:DataItem>
<o:DataItem
Ref=
"o6
3
"
/>
<o:DataItem
Ref=
"o6
5
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o6
4
"
>
<o:EntityAttribute
Id=
"o6
6
"
>
<a:ObjectID>
554CBE02-1023-4270-9F25-1EB5442E679F
</a:ObjectID>
<a:CreationDate>
1605191728
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
519174
7
</a:ModificationDate>
<a:ModificationDate>
160
615026
7
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {C1BEB4E6-D98B-4265-976E-24E4673AE1A4}
</a:History>
<c:DataItem>
<o:DataItem
Ref=
"o6
5
"
/>
<o:DataItem
Ref=
"o6
7
"
/>
</c:DataItem>
</o:EntityAttribute>
</c:Attributes>
</o:Entity>
<o:Entity
Id=
"o3
7
"
>
<o:Entity
Id=
"o3
9
"
>
<a:ObjectID>
7BC6BC43-A1C0-4049-A146-327F21C82800
</a:ObjectID>
<a:Name>
Blacklist IP
</a:Name>
<a:Code>
BLACKLIST_IP
</a:Code>
<a:Code>
MJ_
BLACKLIST_IP
</a:Code>
<a:CreationDate>
1605190208
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192850
</a:ModificationDate>
<a:ModificationDate>
160
6150267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {6919E64F-BB1C-4854-A928-E43BE5A36154}
</a:History>
<c:Identifiers>
<o:Identifier
Id=
"o6
6
"
>
<o:Identifier
Id=
"o6
8
"
>
<a:ObjectID>
8FC2F0A3-9F51-49A6-B3E3-EAE6210E872A
</a:ObjectID>
<a:Name>
Identifiant_1
</a:Name>
<a:Code>
IDENTIFIANT_1
</a:Code>
<a:CreationDate>
1605192841
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192850
</a:ModificationDate>
<a:ModificationDate>
160
6150267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {91EB9800-86F8-4323-B3F5-A6A6AC6314C7}
</a:History>
<c:Identifier.Attributes>
<o:EntityAttribute
Ref=
"o6
7
"
/>
<o:EntityAttribute
Ref=
"o6
9
"
/>
</c:Identifier.Attributes>
</o:Identifier>
</c:Identifiers>
<c:PrimaryIdentifier>
<o:Identifier
Ref=
"o6
6
"
/>
<o:Identifier
Ref=
"o6
8
"
/>
</c:PrimaryIdentifier>
<c:Attributes>
<o:EntityAttribute
Id=
"o6
7
"
>
<o:EntityAttribute
Id=
"o6
9
"
>
<a:ObjectID>
E53FB6C8-5A2F-42B5-8D5B-A59D4E4004A3
</a:ObjectID>
<a:CreationDate>
1605191535
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192850
</a:ModificationDate>
<a:ModificationDate>
160
6150267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {BA9A53ED-35FC-4C71-9122-0CCE0016669B}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o
68
"
/>
<o:DataItem
Ref=
"o
70
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o
69
"
>
<o:EntityAttribute
Id=
"o
71
"
>
<a:ObjectID>
3F9AAA06-C66D-483D-84B8-CCFBC7C3F581
</a:ObjectID>
<a:CreationDate>
1605191535
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192850
</a:ModificationDate>
<a:ModificationDate>
160
6150267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {5A567455-188B-47C9-9502-3BD82AF9C405}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o7
0
"
/>
<o:DataItem
Ref=
"o7
2
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o7
1
"
>
<o:EntityAttribute
Id=
"o7
3
"
>
<a:ObjectID>
E3637996-D835-4686-A70A-6C5D7921D573
</a:ObjectID>
<a:CreationDate>
1605191535
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192850
</a:ModificationDate>
<a:ModificationDate>
160
6150267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {A49B213C-CD5A-4D01-887B-C15DDF290950}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o7
2
"
/>
<o:DataItem
Ref=
"o7
4
"
/>
</c:DataItem>
</o:EntityAttribute>
</c:Attributes>
</o:Entity>
<o:Entity
Id=
"o
38
"
>
<o:Entity
Id=
"o
40
"
>
<a:ObjectID>
5C56259E-C0DC-4663-B810-F5B149756083
</a:ObjectID>
<a:Name>
Room
</a:Name>
<a:Code>
ROOM
</a:Code>
<a:Code>
MJ_
ROOM
</a:Code>
<a:CreationDate>
1605190494
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
43910
</a:ModificationDate>
<a:ModificationDate>
16061
50859
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Identifiers>
<o:Identifier
Id=
"o7
3
"
>
<o:Identifier
Id=
"o7
5
"
>
<a:ObjectID>
70270F99-AA11-43BF-AEA2-9F6E0916E071
</a:ObjectID>
<a:Name>
Identifiant_1
</a:Name>
<a:Code>
IDENTIFIANT_1
</a:Code>
...
...
@@ -2367,15 +2421,15 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:ModificationDate>
1605192860
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Identifier.Attributes>
<o:EntityAttribute
Ref=
"o7
4
"
/>
<o:EntityAttribute
Ref=
"o7
6
"
/>
</c:Identifier.Attributes>
</o:Identifier>
</c:Identifiers>
<c:PrimaryIdentifier>
<o:Identifier
Ref=
"o7
3
"
/>
<o:Identifier
Ref=
"o7
5
"
/>
</c:PrimaryIdentifier>
<c:Attributes>
<o:EntityAttribute
Id=
"o7
4
"
>
<o:EntityAttribute
Id=
"o7
6
"
>
<a:ObjectID>
066D540F-64F7-4B95-AB3E-305F8F753535
</a:ObjectID>
<a:CreationDate>
1605191022
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2383,10 +2437,10 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o7
5
"
/>
<o:DataItem
Ref=
"o7
7
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o7
6
"
>
<o:EntityAttribute
Id=
"o7
8
"
>
<a:ObjectID>
A0C2EB5A-44CD-43A7-81DA-FC9E5A794F98
</a:ObjectID>
<a:CreationDate>
1605191080
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2394,10 +2448,10 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o7
7
"
/>
<o:DataItem
Ref=
"o7
9
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o
78
"
>
<o:EntityAttribute
Id=
"o
80
"
>
<a:ObjectID>
94339644-75B6-4EDC-8E57-2CD260A3DC1B
</a:ObjectID>
<a:CreationDate>
1605195667
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2405,236 +2459,254 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o
79
"
/>
<o:DataItem
Ref=
"o
81
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o8
0
"
>
<o:EntityAttribute
Id=
"o8
2
"
>
<a:ObjectID>
F1355E57-0740-4281-A64D-59832B57D735
</a:ObjectID>
<a:CreationDate>
1605195667
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605195706
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:DataItem>
<o:DataItem
Ref=
"o8
1
"
/>
<o:DataItem
Ref=
"o8
3
"
/>
</c:DataItem>
</o:EntityAttribute>
</c:Attributes>
</o:Entity>
<o:Entity
Id=
"o4
0
"
>
<o:Entity
Id=
"o4
2
"
>
<a:ObjectID>
74E971FE-2B4D-441F-9854-6D92BF0E9F4C
</a:ObjectID>
<a:Name>
Game
</a:Name>
<a:Code>
GAME
</a:Code>
<a:Code>
MJ_
GAME
</a:Code>
<a:CreationDate>
1605195277
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44619
</a:ModificationDate>
<a:ModificationDate>
16061
50295
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {E8511CCC-DB07-441C-91B8-E9FA99FC3163}
</a:History>
<c:Identifiers>
<o:Identifier
Id=
"o8
2
"
>
<o:Identifier
Id=
"o8
4
"
>
<a:ObjectID>
CC67C69B-A78A-4149-ABDE-AE5B536D4670
</a:ObjectID>
<a:Name>
Identifiant_1
</a:Name>
<a:Code>
IDENTIFIANT_1
</a:Code>
<a:CreationDate>
1606144612
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44619
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {887CD0EA-8BAC-4F85-A789-8B0B89C48E86}
</a:History>
<c:Identifier.Attributes>
<o:EntityAttribute
Ref=
"o8
3
"
/>
<o:EntityAttribute
Ref=
"o8
5
"
/>
</c:Identifier.Attributes>
</o:Identifier>
</c:Identifiers>
<c:PrimaryIdentifier>
<o:Identifier
Ref=
"o8
2
"
/>
<o:Identifier
Ref=
"o8
4
"
/>
</c:PrimaryIdentifier>
<c:Attributes>
<o:EntityAttribute
Id=
"o8
3
"
>
<o:EntityAttribute
Id=
"o8
5
"
>
<a:ObjectID>
97FDE412-E7FE-48D1-9448-9656988B5E34
</a:ObjectID>
<a:CreationDate>
1605195646
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44619
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {73017BF5-B626-49CB-99C3-497FD32A63A8}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o8
4
"
/>
<o:DataItem
Ref=
"o8
6
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o8
5
"
>
<o:EntityAttribute
Id=
"o8
7
"
>
<a:ObjectID>
40BC8991-D1D3-4C07-98E1-518D4BCD2A4A
</a:ObjectID>
<a:CreationDate>
1605195708
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44619
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {02E4BE7C-F61A-4144-A8A5-52480F98D070}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o
79
"
/>
<o:DataItem
Ref=
"o
81
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o8
6
"
>
<o:EntityAttribute
Id=
"o8
8
"
>
<a:ObjectID>
CC273B1E-7ED5-49D8-8BA9-BC47E056B23F
</a:ObjectID>
<a:CreationDate>
1605195708
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
43956
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {8C943B7C-8714-4A94-8469-944832EBB8FA}
</a:History>
<c:DataItem>
<o:DataItem
Ref=
"o8
1
"
/>
<o:DataItem
Ref=
"o8
3
"
/>
</c:DataItem>
</o:EntityAttribute>
</c:Attributes>
</o:Entity>
<o:Entity
Id=
"o4
1
"
>
<o:Entity
Id=
"o4
3
"
>
<a:ObjectID>
1E10A678-3CCA-40B3-8AAD-EB52B6494E7B
</a:ObjectID>
<a:Name>
Round
</a:Name>
<a:Code>
ROUND
</a:Code>
<a:Code>
MJ_
ROUND
</a:Code>
<a:CreationDate>
1605195287
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44610
</a:ModificationDate>
<a:ModificationDate>
16061
50288
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {36DDDB23-9C26-4C79-A996-1F51A77A2FB8}
</a:History>
<c:Identifiers>
<o:Identifier
Id=
"o8
7
"
>
<o:Identifier
Id=
"o8
9
"
>
<a:ObjectID>
96A5043F-AFEE-4601-A8E0-B811F6B0A9FB
</a:ObjectID>
<a:Name>
Identifiant_1
</a:Name>
<a:Code>
IDENTIFIANT_1
</a:Code>
<a:CreationDate>
1606144563
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44610
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {A1E78484-E504-4D67-A441-C254AF6347C4}
</a:History>
<c:Identifier.Attributes>
<o:EntityAttribute
Ref=
"o
88
"
/>
<o:EntityAttribute
Ref=
"o
90
"
/>
</c:Identifier.Attributes>
</o:Identifier>
</c:Identifiers>
<c:PrimaryIdentifier>
<o:Identifier
Ref=
"o8
7
"
/>
<o:Identifier
Ref=
"o8
9
"
/>
</c:PrimaryIdentifier>
<c:Attributes>
<o:EntityAttribute
Id=
"o
88
"
>
<o:EntityAttribute
Id=
"o
90
"
>
<a:ObjectID>
8A6E98F7-DB77-41EF-9480-DB8DE799B85B
</a:ObjectID>
<a:CreationDate>
1605195497
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44610
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {CBCC97B0-0539-4B80-A277-D412764DF7DF}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o
89
"
/>
<o:DataItem
Ref=
"o
91
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o9
0
"
>
<o:EntityAttribute
Id=
"o9
2
"
>
<a:ObjectID>
297EC89E-2E4C-4A45-9A82-3FBF58DF9D63
</a:ObjectID>
<a:CreationDate>
1605195497
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44610
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {A2F81355-A5CC-4A44-8E04-D9916CCE9710}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o9
1
"
/>
<o:DataItem
Ref=
"o9
3
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o9
2
"
>
<o:EntityAttribute
Id=
"o9
4
"
>
<a:ObjectID>
18097A59-FBB4-4905-8511-68CE15CBCA25
</a:ObjectID>
<a:CreationDate>
1605195497
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44610
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {20E7DEF8-CEFC-4BDD-A7B1-0233B1CAF0E4}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o9
3
"
/>
<o:DataItem
Ref=
"o9
5
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o9
4
"
>
<o:EntityAttribute
Id=
"o9
6
"
>
<a:ObjectID>
35D6A3FF-ACBC-40BF-AB93-777D44D31086
</a:ObjectID>
<a:CreationDate>
1605195778
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44610
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {69270008-7024-4C1A-BD7D-6B12B6B67CFB}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o
79
"
/>
<o:DataItem
Ref=
"o
81
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o9
5
"
>
<o:EntityAttribute
Id=
"o9
7
"
>
<a:ObjectID>
492A7147-2ED1-445B-829B-E3498F91E195
</a:ObjectID>
<a:CreationDate>
1606143992
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44610
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {D9BB2801-DCAD-485E-9B4E-47CC807274C6}
</a:History>
<c:DataItem>
<o:DataItem
Ref=
"o8
1
"
/>
<o:DataItem
Ref=
"o8
3
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o9
6
"
>
<o:EntityAttribute
Id=
"o9
8
"
>
<a:ObjectID>
51BCEF6A-AF04-4637-BE82-28F192411997
</a:ObjectID>
<a:CreationDate>
1606144377
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44610
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {CC532184-5292-4C3B-ADDF-48A613CBB1EB}
</a:History>
<c:DataItem>
<o:DataItem
Ref=
"o9
7
"
/>
<o:DataItem
Ref=
"o9
9
"
/>
</c:DataItem>
</o:EntityAttribute>
</c:Attributes>
</o:Entity>
<o:Entity
Id=
"o4
4
"
>
<o:Entity
Id=
"o4
6
"
>
<a:ObjectID>
F58A265F-2BCA-475E-BA65-AE4C1EEB64D0
</a:ObjectID>
<a:Name>
Role
</a:Name>
<a:Code>
ROLE
</a:Code>
<a:Code>
MJ_
ROLE
</a:Code>
<a:CreationDate>
1606143730
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44749
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {ADA3AE72-1CEF-4781-AFFE-01371637209A}
</a:History>
<c:Identifiers>
<o:Identifier
Id=
"o
98
"
>
<o:Identifier
Id=
"o
100
"
>
<a:ObjectID>
0B32B4CE-9EE0-44E5-A04F-50C7A80B6DD9
</a:ObjectID>
<a:Name>
Identifiant_1
</a:Name>
<a:Code>
IDENTIFIANT_1
</a:Code>
<a:CreationDate>
1606144743
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44749
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {26B64DB8-68A9-4F98-9988-5A1D8C7988A4}
</a:History>
<c:Identifier.Attributes>
<o:EntityAttribute
Ref=
"o
99
"
/>
<o:EntityAttribute
Ref=
"o
101
"
/>
</c:Identifier.Attributes>
</o:Identifier>
</c:Identifiers>
<c:PrimaryIdentifier>
<o:Identifier
Ref=
"o
98
"
/>
<o:Identifier
Ref=
"o
100
"
/>
</c:PrimaryIdentifier>
<c:Attributes>
<o:EntityAttribute
Id=
"o
99
"
>
<o:EntityAttribute
Id=
"o
101
"
>
<a:ObjectID>
4F15DFAC-DF69-4DBD-AC48-9C12C1A129C4
</a:ObjectID>
<a:CreationDate>
1606143733
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44749
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {2D8332E9-C8BC-4E2A-9B4A-D7697FE4A748}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o10
0
"
/>
<o:DataItem
Ref=
"o10
2
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o10
1
"
>
<o:EntityAttribute
Id=
"o10
3
"
>
<a:ObjectID>
194D68F9-0CDD-4155-8F4B-214DD85BC305
</a:ObjectID>
<a:CreationDate>
1606143733
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44749
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {D0C10B4F-71B1-4026-89F5-F3697A653679}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o10
2
"
/>
<o:DataItem
Ref=
"o10
4
"
/>
</c:DataItem>
</o:EntityAttribute>
</c:Attributes>
</o:Entity>
</c:Entities>
<c:DataItems>
<o:DataItem
Id=
"o
49
"
>
<o:DataItem
Id=
"o
51
"
>
<a:ObjectID>
7A9C7892-2AD0-405A-83CE-98383E14B6EB
</a:ObjectID>
<a:Name>
id user
</a:Name>
<a:Code>
ID_USER
</a:Code>
<a:CreationDate>
1605190638
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
43851
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
I
</a:DataType>
<a:History>
ORG {F24E451E-9E54-4575-9FFA-5AE5B10C8C2F}
</a:History>
<a:DataType>
NO
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o10
3
"
>
<o:DataItem
Id=
"o10
5
"
>
<a:ObjectID>
C355AF50-3B8C-414A-948A-2D8E95A0AC01
</a:ObjectID>
<a:Name>
Admin
</a:Name>
<a:Code>
ADMIN
</a:Code>
...
...
@@ -2644,146 +2716,158 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
BL
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o5
1
"
>
<o:DataItem
Id=
"o5
3
"
>
<a:ObjectID>
9B469260-07FF-4A43-A7E2-D9969C9731BC
</a:ObjectID>
<a:Name>
login
</a:Name>
<a:Code>
LOGIN
</a:Code>
<a:CreationDate>
1605190882
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
519094
7
</a:ModificationDate>
<a:ModificationDate>
160
615026
7
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {F891E419-2C90-46BA-9A46-D66FE1ABB10E}
</a:History>
<a:DataType>
VA16
</a:DataType>
<a:Length>
16
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o5
3
"
>
<o:DataItem
Id=
"o5
5
"
>
<a:ObjectID>
6B3E37D0-6514-4C25-9225-D8D35869C4A5
</a:ObjectID>
<a:Name>
pasword
</a:Name>
<a:Code>
PASWORD
</a:Code>
<a:CreationDate>
1605190882
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
43851
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {A6DC2D35-72B9-41C4-AFCF-E183E95EBFF7}
</a:History>
<a:DataType>
A40
</a:DataType>
<a:Length>
40
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o5
5
"
>
<o:DataItem
Id=
"o5
7
"
>
<a:ObjectID>
6601244F-BC51-44B8-B7B9-D24718F76E51
</a:ObjectID>
<a:Name>
avatar
</a:Name>
<a:Code>
AVATAR
</a:Code>
<a:CreationDate>
1605190948
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5191444
</a:ModificationDate>
<a:ModificationDate>
160
6150267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
A1024
</a:DataType>
<a:Length>
1024
</a:Length>
<a:History>
ORG {28643B4E-9530-4B63-A9F3-04852DACB2BD}
</a:History>
<a:DataType>
A255
</a:DataType>
<a:Length>
255
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o7
5
"
>
<o:DataItem
Id=
"o7
7
"
>
<a:ObjectID>
BCA3C9F1-9F62-4117-B187-3B6F3BF7FAB6
</a:ObjectID>
<a:Name>
id room
</a:Name>
<a:Code>
ID_ROOM
</a:Code>
<a:CreationDate>
1605191022
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
43910
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:
DataType>
VA1024
</a:DataType
>
<a:
Length>
1024
</a:Length
>
<a:
History>
ORG {A7263E3E-89C3-40C5-917E-C98B7CC02EC9}
</a:History
>
<a:
DataType>
NO
</a:DataType
>
</o:DataItem>
<o:DataItem
Id=
"o7
7
"
>
<o:DataItem
Id=
"o7
9
"
>
<a:ObjectID>
DCFF6991-B8B3-4017-A714-643CB5290204
</a:ObjectID>
<a:Name>
private
</a:Name>
<a:Code>
PRIVATE
</a:Code>
<a:CreationDate>
1605191080
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
43910
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {99A7CB8D-2C66-4C6B-8F17-C968574DE244}
</a:History>
<a:DataType>
BL
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o5
7
"
>
<o:DataItem
Id=
"o5
9
"
>
<a:ObjectID>
DFE8B793-FE79-46DC-B172-137A98C99BEE
</a:ObjectID>
<a:Name>
lastname
</a:Name>
<a:Code>
LASTNAME
</a:Code>
<a:CreationDate>
1605191361
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
43851
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {51E050B4-A5A4-4D9F-9E06-99001EB9B2A4}
</a:History>
<a:DataType>
A55
</a:DataType>
<a:Length>
55
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o
59
"
>
<o:DataItem
Id=
"o
61
"
>
<a:ObjectID>
F41F8395-7AA1-46E6-90E0-2CE55F9A487A
</a:ObjectID>
<a:Name>
firstname
</a:Name>
<a:Code>
FIRSTNAME
</a:Code>
<a:CreationDate>
1605191361
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
43851
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {2C776292-0095-4E1E-B392-D976B6B884E4}
</a:History>
<a:DataType>
A55
</a:DataType>
<a:Length>
55
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o6
1
"
>
<o:DataItem
Id=
"o6
3
"
>
<a:ObjectID>
51E02CA5-8209-455D-9B62-60CD30953E8F
</a:ObjectID>
<a:Name>
mail
</a:Name>
<a:Code>
MAIL
</a:Code>
<a:CreationDate>
1605191460
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44736
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {D680331A-6D5B-47CE-ACBD-64D2567C9FA0}
</a:History>
<a:DataType>
A64
</a:DataType>
<a:Length>
64
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o
68
"
>
<o:DataItem
Id=
"o
70
"
>
<a:ObjectID>
5151AD13-D617-4A20-80D9-82188097AEC8
</a:ObjectID>
<a:Name>
id blacklist
</a:Name>
<a:Code>
ID_BLACKLIST
</a:Code>
<a:CreationDate>
1605191535
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5191620
</a:ModificationDate>
<a:ModificationDate>
160
6150267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
I
</a:DataType>
<a:History>
ORG {BA9A53ED-35FC-4C71-9122-0CCE0016669B}
</a:History>
<a:DataType>
NO
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o7
0
"
>
<o:DataItem
Id=
"o7
2
"
>
<a:ObjectID>
0E6E45CA-8336-4A45-88BD-B543C6A1CF1C
</a:ObjectID>
<a:Name>
IP
</a:Name>
<a:Code>
IP
</a:Code>
<a:CreationDate>
1605191535
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5191811
</a:ModificationDate>
<a:ModificationDate>
160
6150267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {5A567455-188B-47C9-9502-3BD82AF9C405}
</a:History>
<a:DataType>
VA15
</a:DataType>
<a:Length>
15
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o7
2
"
>
<o:DataItem
Id=
"o7
4
"
>
<a:ObjectID>
6508CDAE-46E6-41CB-B72A-ED82E305D9D4
</a:ObjectID>
<a:Name>
date ban
</a:Name>
<a:Code>
DATE_BAN
</a:Code>
<a:CreationDate>
1605191535
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
43868
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {A49B213C-CD5A-4D01-887B-C15DDF290950}
</a:History>
<a:DataType>
DT
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o6
3
"
>
<o:DataItem
Id=
"o6
5
"
>
<a:ObjectID>
BD744A3E-6714-4CFC-A434-0522F1C2690F
</a:ObjectID>
<a:Name>
ban account
</a:Name>
<a:Code>
BAN_ACCOUNT
</a:Code>
<a:CreationDate>
1605191685
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
43851
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {0B653ED0-6F62-4A0B-ADC0-060A54C7F621}
</a:History>
<a:DataType>
BL
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o6
5
"
>
<o:DataItem
Id=
"o6
7
"
>
<a:ObjectID>
D2FC1BD7-128B-4BE7-95B3-B870201CAC85
</a:ObjectID>
<a:Name>
last IP
</a:Name>
<a:Code>
LAST_IP
</a:Code>
<a:CreationDate>
1605191728
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
43851
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {C1BEB4E6-D98B-4265-976E-24E4673AE1A4}
</a:History>
<a:DataType>
VA15
</a:DataType>
<a:Length>
15
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o10
4
"
>
<o:DataItem
Id=
"o10
6
"
>
<a:ObjectID>
0DE827EB-2D70-4ECC-8593-24BB0FBE9A95
</a:ObjectID>
<a:Name>
victory
</a:Name>
<a:Code>
VICTORY
</a:Code>
...
...
@@ -2793,7 +2877,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
BL
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o10
5
"
>
<o:DataItem
Id=
"o10
7
"
>
<a:ObjectID>
2D8A2360-9EA9-4A56-9653-2D78585B5571
</a:ObjectID>
<a:Name>
Vent
</a:Name>
<a:Code>
VENT
</a:Code>
...
...
@@ -2803,198 +2887,218 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
I
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o
89
"
>
<o:DataItem
Id=
"o
91
"
>
<a:ObjectID>
ED123FBD-48AC-4A5F-B39D-9F4BC0F0AE77
</a:ObjectID>
<a:Name>
id round
</a:Name>
<a:Code>
ID_ROUND
</a:Code>
<a:CreationDate>
1605195497
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44063
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
I
</a:DataType>
<a:History>
ORG {CBCC97B0-0539-4B80-A277-D412764DF7DF}
</a:History>
<a:DataType>
NO
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o9
1
"
>
<o:DataItem
Id=
"o9
3
"
>
<a:ObjectID>
4A0A2569-F9EB-4EA7-9116-C3D9C2EDB8DA
</a:ObjectID>
<a:Name>
Wind
</a:Name>
<a:Code>
WIND
</a:Code>
<a:CreationDate>
1605195497
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44063
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {A2F81355-A5CC-4A44-8E04-D9916CCE9710}
</a:History>
<a:DataType>
I
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o9
3
"
>
<o:DataItem
Id=
"o9
5
"
>
<a:ObjectID>
63706AFE-B1EB-416B-8FA5-68F3B072B819
</a:ObjectID>
<a:Name>
Seed
</a:Name>
<a:Code>
SEED
</a:Code>
<a:CreationDate>
1605195497
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44063
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {20E7DEF8-CEFC-4BDD-A7B1-0233B1CAF0E4}
</a:History>
<a:DataType>
I
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o8
4
"
>
<o:DataItem
Id=
"o8
6
"
>
<a:ObjectID>
5A513A42-F12E-4CAE-B210-1EAB7DA83FD0
</a:ObjectID>
<a:Name>
id game
</a:Name>
<a:Code>
ID_GAME
</a:Code>
<a:CreationDate>
1605195646
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
43956
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
I
</a:DataType>
<a:History>
ORG {73017BF5-B626-49CB-99C3-497FD32A63A8}
</a:History>
<a:DataType>
NO
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o
79
"
>
<o:DataItem
Id=
"o
81
"
>
<a:ObjectID>
743F1702-4C7F-4F6F-8F10-B0C69B8EBBC0
</a:ObjectID>
<a:Name>
date begin
</a:Name>
<a:Code>
DATE_BEGIN
</a:Code>
<a:CreationDate>
1605195667
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
43910
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {69270008-7024-4C1A-BD7D-6B12B6B67CFB}
</a:History>
<a:DataType>
DT
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o8
1
"
>
<o:DataItem
Id=
"o8
3
"
>
<a:ObjectID>
FD92CEB1-C779-4CEB-B849-EBC75EEC6BE4
</a:ObjectID>
<a:Name>
date end
</a:Name>
<a:Code>
DATE_END
</a:Code>
<a:CreationDate>
1605195667
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44063
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {D9BB2801-DCAD-485E-9B4E-47CC807274C6}
</a:History>
<a:DataType>
DT
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o10
0
"
>
<o:DataItem
Id=
"o10
2
"
>
<a:ObjectID>
2E95FA06-02F6-4DA1-A754-7592D15379E6
</a:ObjectID>
<a:Name>
id role
</a:Name>
<a:Code>
ID_ROLE
</a:Code>
<a:CreationDate>
1606143733
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
4415
7
</a:ModificationDate>
<a:ModificationDate>
16061
5026
7
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
I
</a:DataType>
<a:History>
ORG {2D8332E9-C8BC-4E2A-9B4A-D7697FE4A748}
</a:History>
<a:DataType>
NO
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o10
2
"
>
<o:DataItem
Id=
"o10
4
"
>
<a:ObjectID>
9F2AFC93-11F5-4FA3-A1B1-29644A3BC7F2
</a:ObjectID>
<a:Name>
name
</a:Name>
<a:Code>
NAME
</a:Code>
<a:CreationDate>
1606143733
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
4415
7
</a:ModificationDate>
<a:ModificationDate>
16061
5026
7
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {D0C10B4F-71B1-4026-89F5-F3697A653679}
</a:History>
<a:DataType>
VA15
</a:DataType>
<a:Length>
15
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o10
6
"
>
<o:DataItem
Id=
"o10
8
"
>
<a:ObjectID>
C5558788-A82A-482B-8679-96F5D6861967
</a:ObjectID>
<a:Name>
Win
</a:Name>
<a:Code>
WIN
</a:Code>
<a:CreationDate>
1606144302
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46049
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {25540AD2-405E-4E70-9D31-40ACBAA47F81}
</a:History>
<a:DataType>
BL
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o9
7
"
>
<o:DataItem
Id=
"o9
9
"
>
<a:ObjectID>
4A987DBC-CCD0-4DA5-8B08-B63460EC33D9
</a:ObjectID>
<a:Name>
actions
</a:Name>
<a:Code>
ACTIONS
</a:Code>
<a:CreationDate>
1606144377
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46348
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:
DataType>
VA500
</a:DataType
>
<a:
Length>
500
</a:Length
>
<a:
History>
ORG {CC532184-5292-4C3B-ADDF-48A613CBB1EB}
</a:History
>
<a:
DataType>
TXT
</a:DataType
>
</o:DataItem>
</c:DataItems>
<c:Associations>
<o:Association
Id=
"o
39
"
>
<o:Association
Id=
"o
41
"
>
<a:ObjectID>
8A264E7E-B604-48E5-8999-D8108103C523
</a:ObjectID>
<a:Name>
Creation
</a:Name>
<a:Code>
CREATION
</a:Code>
<a:Code>
MJ_
CREATION
</a:Code>
<a:CreationDate>
1605191175
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192222
</a:ModificationDate>
<a:ModificationDate>
160
6150900
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {DD26F711-EC7D-4145-A973-54E82F457F00}
ATT CODE
</a:History>
</o:Association>
<o:Association
Id=
"o4
2
"
>
<o:Association
Id=
"o4
4
"
>
<a:ObjectID>
D54FCACC-74D9-4826-8A05-3262B9E5EE71
</a:ObjectID>
<a:Name>
Host
</a:Name>
<a:Code>
HOST
</a:Code>
<a:Code>
MJ_
HOST
</a:Code>
<a:CreationDate>
1605195298
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44097
</a:ModificationDate>
<a:ModificationDate>
16061
50900
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {C2880144-409E-4450-8767-ACA256E46B9E}
ATT CODE
</a:History>
</o:Association>
<o:Association
Id=
"o4
3
"
>
<o:Association
Id=
"o4
5
"
>
<a:ObjectID>
B8F4656D-32DB-42F9-9DA8-57DF64F6A831
</a:ObjectID>
<a:Name>
Compose
</a:Name>
<a:Code>
COMPOSE
</a:Code>
<a:Code>
MJ_
COMPOSE
</a:Code>
<a:CreationDate>
1605195299
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44089
</a:ModificationDate>
<a:ModificationDate>
16061
50900
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {92458453-BA66-4D89-ADA6-3C6609353BFF}
ATT CODE
</a:History>
</o:Association>
<o:Association
Id=
"o4
5
"
>
<o:Association
Id=
"o4
7
"
>
<a:ObjectID>
405F6E65-6CD2-4B13-891E-2DF33C1B3F85
</a:ObjectID>
<a:Name>
Has
</a:Name>
<a:Code>
HAS
</a:Code>
<a:Code>
MJ_
HAS
</a:Code>
<a:CreationDate>
1606144161
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46579
</a:ModificationDate>
<a:ModificationDate>
16061
50900
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {F2B0FECB-A0BD-4D3D-9219-9050CD92ACC2}
ATT CODE
</a:History>
</o:Association>
<o:Association
Id=
"o4
6
"
>
<o:Association
Id=
"o4
8
"
>
<a:ObjectID>
5D707833-2076-4C65-8160-C3B117410843
</a:ObjectID>
<a:Name>
Play
</a:Name>
<a:Code>
PLAY
</a:Code>
<a:Code>
MJ_
PLAY
</a:Code>
<a:CreationDate>
1606146008
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46049
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {8F4773CC-B663-488F-93EF-BE73B20004C5}
</a:History>
<c:Attributes>
<o:AssociationAttribute
Id=
"o10
7
"
>
<o:AssociationAttribute
Id=
"o10
9
"
>
<a:ObjectID>
2AEDD201-92F9-42F0-86DC-D609649785BA
</a:ObjectID>
<a:CreationDate>
1606146010
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46049
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {25540AD2-405E-4E70-9D31-40ACBAA47F81}
</a:History>
<c:DataItem>
<o:DataItem
Ref=
"o10
6
"
/>
<o:DataItem
Ref=
"o10
8
"
/>
</c:DataItem>
</o:AssociationAttribute>
</c:Attributes>
</o:Association>
</c:Associations>
<c:AssociationsLinks>
<o:AssociationLink
Id=
"o
8
"
>
<o:AssociationLink
Id=
"o
10
"
>
<a:ObjectID>
18D33273-D3C4-4D09-A85D-BBB88C78F2B7
</a:ObjectID>
<a:CreationDate>
1605191936
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192222
</a:ModificationDate>
<a:ModificationDate>
160
6150307
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Cardinality>
1
,1
</a:Cardinality>
<a:Cardinality>
0
,1
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o
39
"
/>
<o:Association
Ref=
"o
41
"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o
38
"
/>
<o:Entity
Ref=
"o
40
"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o1
1
"
>
<o:AssociationLink
Id=
"o1
3
"
>
<a:ObjectID>
557A228E-DC8B-408D-8C43-039183F4009E
</a:ObjectID>
<a:CreationDate>
1605191938
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5191938
</a:ModificationDate>
<a:ModificationDate>
160
6150267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {DD26F711-EC7D-4145-A973-54E82F457F00}
</a:History>
<a:Cardinality>
0,n
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o
39
"
/>
<o:Association
Ref=
"o
41
"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o3
5
"
/>
<o:Entity
Ref=
"o3
7
"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o1
4
"
>
<o:AssociationLink
Id=
"o1
6
"
>
<a:ObjectID>
2FB3EB88-80F4-4BE8-8F5D-1DBB4CAD8269
</a:ObjectID>
<a:CreationDate>
1605195298
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -3002,126 +3106,152 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:Cardinality>
0,n
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o4
2
"
/>
<o:Association
Ref=
"o4
4
"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o
38
"
/>
<o:Entity
Ref=
"o
40
"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o1
7
"
>
<o:AssociationLink
Id=
"o1
9
"
>
<a:ObjectID>
2042D5BE-86F7-4E6E-B5CE-D9AF7DC68F05
</a:ObjectID>
<a:CreationDate>
1605195298
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5195406
</a:ModificationDate>
<a:ModificationDate>
160
6150295
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Cardinality>
1,1
</a:Cardinality>
<a:History>
ORG {C2880144-409E-4450-8767-ACA256E46B9E}
</a:History>
<a:Cardinality>
0,1
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o4
2
"
/>
<o:Association
Ref=
"o4
4
"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o4
0
"
/>
<o:Entity
Ref=
"o4
2
"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o2
0
"
>
<o:AssociationLink
Id=
"o2
2
"
>
<a:ObjectID>
6CEA2E5A-B1D0-41AB-8957-13C91BD0FD28
</a:ObjectID>
<a:CreationDate>
1605195299
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5196645
</a:ModificationDate>
<a:ModificationDate>
160
6150267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {92458453-BA66-4D89-ADA6-3C6609353BFF}
</a:History>
<a:Cardinality>
0,n
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o4
3
"
/>
<o:Association
Ref=
"o4
5
"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o4
0
"
/>
<o:Entity
Ref=
"o4
2
"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o2
3
"
>
<o:AssociationLink
Id=
"o2
5
"
>
<a:ObjectID>
0C1DF013-F25B-4974-B701-B59E000EA9B6
</a:ObjectID>
<a:CreationDate>
1605195299
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
519663
8
</a:ModificationDate>
<a:ModificationDate>
160
615028
8
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Cardinality>
1,1
</a:Cardinality>
<a:History>
ORG {92458453-BA66-4D89-ADA6-3C6609353BFF}
</a:History>
<a:Cardinality>
0,1
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o4
3
"
/>
<o:Association
Ref=
"o4
5
"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o4
1
"
/>
<o:Entity
Ref=
"o4
3
"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o2
6
"
>
<o:AssociationLink
Id=
"o2
8
"
>
<a:ObjectID>
70936E91-DE6C-4438-B225-6A50AB700E9B
</a:ObjectID>
<a:CreationDate>
1606144161
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46579
</a:ModificationDate>
<a:ModificationDate>
16061
50300
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Cardinality>
1,1
</a:Cardinality>
<a:History>
ORG {F2B0FECB-A0BD-4D3D-9219-9050CD92ACC2}
</a:History>
<a:Cardinality>
0,1
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o4
5
"
/>
<o:Association
Ref=
"o4
7
"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o3
5
"
/>
<o:Entity
Ref=
"o3
7
"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o
29
"
>
<o:AssociationLink
Id=
"o
31
"
>
<a:ObjectID>
3834E1CD-49CA-487F-8692-CD6FFB7DB09B
</a:ObjectID>
<a:CreationDate>
1606144161
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44161
</a:ModificationDate>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {F2B0FECB-A0BD-4D3D-9219-9050CD92ACC2}
</a:History>
<a:Cardinality>
0,n
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o4
5
"
/>
<o:Association
Ref=
"o4
7
"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o4
4
"
/>
<o:Entity
Ref=
"o4
6
"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o3
2
"
>
<o:AssociationLink
Id=
"o3
4
"
>
<a:ObjectID>
FA71687D-64EC-4594-A86A-67EDC63E5D65
</a:ObjectID>
<a:CreationDate>
1606146008
</a:CreationDate>
<a:Creator
>
quent
</a:Creator
>
<a:ModificationDate>
16061
46008
</a:ModificationDate>
<a:CreationDate>
0
</a:CreationDate>
<a:Creator
/
>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {DB49AF92-2FC4-4CDC-BB37-85E0E79E07CE}
</a:History>
<a:Role>
Play
</a:Role>
<a:Cardinality>
0,n
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o4
6
"
/>
<o:Association
Ref=
"o4
8
"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o4
0
"
/>
<o:Entity
Ref=
"o4
2
"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o3
4
"
>
<o:AssociationLink
Id=
"o3
6
"
>
<a:ObjectID>
8853FC4D-C3E3-4753-89E4-90CC2B669D14
</a:ObjectID>
<a:CreationDate>
1606146008
</a:CreationDate>
<a:Creator
>
quent
</a:Creator
>
<a:ModificationDate>
16061
46008
</a:ModificationDate>
<a:CreationDate>
0
</a:CreationDate>
<a:Creator
/
>
<a:ModificationDate>
16061
50267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {311BB372-EAC7-4364-B404-BFCC2179EA03}
</a:History>
<a:Role>
Play
</a:Role>
<a:Cardinality>
0,n
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o4
6
"
/>
<o:Association
Ref=
"o4
8
"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o3
5
"
/>
<o:Entity
Ref=
"o3
7
"
/>
</c:Object2>
</o:AssociationLink>
</c:AssociationsLinks>
<c:TargetModels>
<o:TargetModel
Id=
"o1
08
"
>
<o:TargetModel
Id=
"o1
10
"
>
<a:ObjectID>
34993A9A-22B6-4B54-9767-C2DEFB70391D
</a:ObjectID>
<a:Name>
MPD TP AGL
</a:Name>
<a:Code>
MPD_TP_AGL
</a:Code>
<a:CreationDate>
1605192781
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
47653
</a:ModificationDate>
<a:ModificationDate>
16061
50927
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:TargetModelURL>
file:///E|/Nouveau dossier/MPD TP AGL.mpd
</a:TargetModelURL>
<a:TargetModelID>
83E9595C-80F2-4C36-B14E-147FEB75C299
</a:TargetModelID>
<a:TargetModelClassID>
CDE44E21-9669-11D1-9914-006097355D9B
</a:TargetModelClassID>
<a:TargetModelLastModificationDate>
16061
47653
</a:TargetModelLastModificationDate>
<a:TargetModelLastModificationDate>
16061
50927
</a:TargetModelLastModificationDate>
<c:SessionShortcuts>
<o:Shortcut
Ref=
"o3"
/>
<o:Shortcut
Ref=
"o5"
/>
</c:SessionShortcuts>
</o:TargetModel>
<o:TargetModel
Id=
"o111"
>
<a:ObjectID>
1BC32D75-F36B-413F-A69F-4A8CC428804A
</a:ObjectID>
<a:Name>
MPD TP AGL
</a:Name>
<a:Code>
MPD_TP_AGL
</a:Code>
<a:CreationDate>
1606151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606151461
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:TargetModelURL>
file:///E|/Nouveau dossier/MPD TP AGL.mpd
</a:TargetModelURL>
<a:TargetModelID>
429C6A8D-7CCA-4EA9-9518-24D9C8D1C5AC
</a:TargetModelID>
<a:TargetModelClassID>
CDE44E21-9669-11D1-9914-006097355D9B
</a:TargetModelClassID>
<a:TargetModelLastModificationDate>
1606151321
</a:TargetModelLastModificationDate>
<c:SessionShortcuts>
<o:Shortcut
Ref=
"o4"
/>
</c:SessionShortcuts>
</o:TargetModel>
</c:TargetModels>
...
...
AGL/Conception/MCD TP AGL.mcd
View file @
95ed4c6f
<?xml version="1.0" encoding="UTF-8"?>
<?PowerDesigner AppLocale="UTF16" ID="{11E4B893-61D4-478A-BAF1-0F640FC9D025}" Label="" LastModificationDate="1606
151165" Name="MCD TP AGL" Objects="139" Symbols="42
" Type="{1E597170-9350-11D1-AB3C-0020AF71E433}" signature="CDM_DATA_MODEL_XML" version="16.7.1.6521"?>
<?PowerDesigner AppLocale="UTF16" ID="{11E4B893-61D4-478A-BAF1-0F640FC9D025}" Label="" LastModificationDate="1606
230760" Name="MCD TP AGL" Objects="154" Symbols="23
" Type="{1E597170-9350-11D1-AB3C-0020AF71E433}" signature="CDM_DATA_MODEL_XML" version="16.7.1.6521"?>
<!-- Veuillez ne pas modifier ce fichier -->
<Model
xmlns:a=
"attribute"
xmlns:c=
"collection"
xmlns:o=
"object"
>
...
...
@@ -13,7 +13,7 @@
<a:Code>
MCD_TP_AGL
</a:Code>
<a:CreationDate>
1605186864
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606
151091
</a:ModificationDate>
<a:ModificationDate>
1606
230760
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {83E9595C-80F2-4C36-B14E-147FEB75C299}
ATT MOPT
...
...
@@ -26,7 +26,14 @@ DLD {99A7CB8D-2C66-4C6B-8F17-C968574DE244}
DLD {80E291C7-A06C-4FC5-8396-0ADE8591FF10}
DLD {5D340D9D-6C5E-48F8-AFB9-339CA2F0A578}
DLD {22A3B995-6C09-4BA3-8F15-6E316004723D}
DLD {12039D74-7107-4025-A1E1-092C853CD64E}
</a:History>
DLD {12039D74-7107-4025-A1E1-092C853CD64E}
DLD {A7263E3E-89C3-40C5-917E-C98B7CC02EC9}
DLD {99A7CB8D-2C66-4C6B-8F17-C968574DE244}
DLD {C2880144-409E-4450-8767-ACA256E46B9E}
DLD {DD26F711-EC7D-4145-A973-54E82F457F00}
DLD {DB49AF92-2FC4-4CDC-BB37-85E0E79E07CE}
DLD {02E4BE7C-F61A-4144-A8A5-52480F98D070}
DLD {8C943B7C-8714-4A94-8469-944832EBB8FA}
</a:History>
<a:PackageOptionsText>
[FolderOptions]
[FolderOptions\Conceptual Data Objects]
...
...
@@ -1255,7 +1262,7 @@ NameToCode=Yes
CheckModel=Yes
SaveLinks=Yes
NameToCode=No
</a:ModelOptionsText>
<a:RepositoryFilename>
E:\Nouveau dossier
\MCD TP AGL.mcd
</a:RepositoryFilename>
<a:RepositoryFilename>
C:\Users\quent\Documents\CDAW\projet-cdaw\AGL\Conception
\MCD TP AGL.mcd
</a:RepositoryFilename>
<c:GeneratedModels>
<o:Shortcut
Id=
"o3"
>
<a:ObjectID>
6B3B0CC5-518B-45EF-B538-64FFA66CC0B3
</a:ObjectID>
...
...
@@ -1303,7 +1310,7 @@ NameToCode=No</a:ModelOptionsText>
<a:Code>
MCD_TP_AGL
</a:Code>
<a:CreationDate>
1605186865
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606
146313
</a:ModificationDate>
<a:ModificationDate>
1606
228114
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DisplayPreferences>
[DisplayPreferences]
...
...
@@ -1762,10 +1769,10 @@ Shadow=0</a:DisplayPreferences>
<a:PaperSource>
15
</a:PaperSource>
<c:Symbols>
<o:AssociationLinkSymbol
Id=
"o7"
>
<a:CreationDate>
160519
1936
</a:CreationDate>
<a:ModificationDate>
160
519194
8
</a:ModificationDate>
<a:Rect>
((
-5802,-7760), (-3600,200
0))
</a:Rect>
<a:ListOfPoints>
((
-4133,-7360),(-4000,16
00))
</a:ListOfPoints>
<a:CreationDate>
160519
5299
</a:CreationDate>
<a:ModificationDate>
160
622810
8
</a:ModificationDate>
<a:Rect>
((
5600,-10900), (8573,-184
0))
</a:Rect>
<a:ListOfPoints>
((
7467,-2240),(6000,-105
00))
</a:ListOfPoints>
<a:CornerStyle>
3
</a:CornerStyle>
<a:ArrowStyle>
0
</a:ArrowStyle>
<a:LineColor>
16744576
</a:LineColor>
...
...
@@ -1783,10 +1790,10 @@ SOURCE 0 Arial,8,N</a:FontList>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o11"
>
<a:CreationDate>
160519
1938
</a:CreationDate>
<a:ModificationDate>
1606
145981
</a:ModificationDate>
<a:Rect>
((-
5200,2800), (-2506,1448
0))
</a:Rect>
<a:ListOfPoints>
((-
3817,14080),(-4800,32
00))
</a:ListOfPoints>
<a:CreationDate>
160519
5299
</a:CreationDate>
<a:ModificationDate>
1606
228108
</a:ModificationDate>
<a:Rect>
((-
24400,-18000), (6400,-1010
0))
</a:Rect>
<a:ListOfPoints>
((-
24000,-17600),(6000,-105
00))
</a:ListOfPoints>
<a:CornerStyle>
3
</a:CornerStyle>
<a:ArrowStyle>
0
</a:ArrowStyle>
<a:LineColor>
16744576
</a:LineColor>
...
...
@@ -1804,94 +1811,10 @@ SOURCE 0 Arial,8,N</a:FontList>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o14"
>
<a:CreationDate>
1605195298
</a:CreationDate>
<a:ModificationDate>
1606144185
</a:ModificationDate>
<a:Rect>
((-31840,-8880), (-11828,-5300))
</a:Rect>
<a:ListOfPoints>
((-12228,-8480),(-31440,-5700))
</a:ListOfPoints>
<a:CornerStyle>
3
</a:CornerStyle>
<a:ArrowStyle>
0
</a:ArrowStyle>
<a:LineColor>
16744576
</a:LineColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
<a:FontList>
CENTER 0 Arial,8,N
SOURCE 0 Arial,8,N
</a:FontList>
<c:SourceSymbol>
<o:EntitySymbol
Ref=
"o8"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o15"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o16"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o17"
>
<a:CreationDate>
1605195298
</a:CreationDate>
<a:ModificationDate>
1606144185
</a:ModificationDate>
<a:Rect>
((-47200,-6100), (-31040,-3120))
</a:Rect>
<a:ListOfPoints>
((-46800,-3520),(-31440,-5700))
</a:ListOfPoints>
<a:CornerStyle>
3
</a:CornerStyle>
<a:ArrowStyle>
0
</a:ArrowStyle>
<a:LineColor>
16744576
</a:LineColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
<a:FontList>
CENTER 0 Arial,8,N
SOURCE 0 Arial,8,N
</a:FontList>
<c:SourceSymbol>
<o:EntitySymbol
Ref=
"o18"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o15"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o19"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o20"
>
<a:CreationDate>
1605195299
</a:CreationDate>
<a:ModificationDate>
1606144183
</a:ModificationDate>
<a:Rect>
((-50400,-5840), (-43066,6700))
</a:Rect>
<a:ListOfPoints>
((-43466,-5440),(-50000,6300))
</a:ListOfPoints>
<a:CornerStyle>
3
</a:CornerStyle>
<a:ArrowStyle>
0
</a:ArrowStyle>
<a:LineColor>
16744576
</a:LineColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
<a:FontList>
CENTER 0 Arial,8,N
SOURCE 0 Arial,8,N
</a:FontList>
<c:SourceSymbol>
<o:EntitySymbol
Ref=
"o18"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o21"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o22"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o23"
>
<a:CreationDate>
1605195299
</a:CreationDate>
<a:ModificationDate>
1606144183
</a:ModificationDate>
<a:Rect>
((-58800,5900), (-49600,18000))
</a:Rect>
<a:ListOfPoints>
((-58400,17600),(-50000,6300))
</a:ListOfPoints>
<a:CornerStyle>
3
</a:CornerStyle>
<a:ArrowStyle>
0
</a:ArrowStyle>
<a:LineColor>
16744576
</a:LineColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
<a:FontList>
CENTER 0 Arial,8,N
SOURCE 0 Arial,8,N
</a:FontList>
<c:SourceSymbol>
<o:EntitySymbol
Ref=
"o24"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o21"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o25"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o26"
>
<a:CreationDate>
1606144161
</a:CreationDate>
<a:ModificationDate>
1606
145981
</a:ModificationDate>
<a:Rect>
((-2000,
5900), (8400,156
00))
</a:Rect>
<a:ListOfPoints>
((-1600,15200),(
8000,63
00))
</a:ListOfPoints>
<a:ModificationDate>
1606
226418
</a:ModificationDate>
<a:Rect>
((-2000,
14800), (10000,179
00))
</a:Rect>
<a:ListOfPoints>
((-1600,15200),(
9600,175
00))
</a:ListOfPoints>
<a:CornerStyle>
3
</a:CornerStyle>
<a:ArrowStyle>
0
</a:ArrowStyle>
<a:LineColor>
16744576
</a:LineColor>
...
...
@@ -1899,20 +1822,20 @@ SOURCE 0 Arial,8,N</a:FontList>
<a:FontList>
CENTER 0 Arial,8,N
SOURCE 0 Arial,8,N
</a:FontList>
<c:SourceSymbol>
<o:EntitySymbol
Ref=
"o1
2
"
/>
<o:EntitySymbol
Ref=
"o1
5
"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o
27
"
/>
<o:AssociationSymbol
Ref=
"o
16
"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o
28
"
/>
<o:AssociationLink
Ref=
"o
17
"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o
29
"
>
<o:AssociationLinkSymbol
Id=
"o
18
"
>
<a:CreationDate>
1606144161
</a:CreationDate>
<a:ModificationDate>
1606
144175
</a:ModificationDate>
<a:Rect>
((
7600,4308), (20845,67
00))
</a:Rect>
<a:ListOfPoints>
((204
45,4800),(8000,63
00))
</a:ListOfPoints>
<a:ModificationDate>
1606
226418
</a:ModificationDate>
<a:Rect>
((
1645,9200), (10000,179
00))
</a:Rect>
<a:ListOfPoints>
((204
5,9600),(9600,175
00))
</a:ListOfPoints>
<a:CornerStyle>
3
</a:CornerStyle>
<a:ArrowStyle>
0
</a:ArrowStyle>
<a:LineColor>
16744576
</a:LineColor>
...
...
@@ -1920,20 +1843,20 @@ SOURCE 0 Arial,8,N</a:FontList>
<a:FontList>
CENTER 0 Arial,8,N
SOURCE 0 Arial,8,N
</a:FontList>
<c:SourceSymbol>
<o:EntitySymbol
Ref=
"o
30
"
/>
<o:EntitySymbol
Ref=
"o
19
"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o
27
"
/>
<o:AssociationSymbol
Ref=
"o
16
"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o
31
"
/>
<o:AssociationLink
Ref=
"o
20
"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o
32
"
>
<o:AssociationLinkSymbol
Id=
"o
21
"
>
<a:CreationDate>
1606146008
</a:CreationDate>
<a:ModificationDate>
1606
146008
</a:ModificationDate>
<a:Rect>
((-
43600,-2800), (-32400,68
00))
</a:Rect>
<a:ListOfPoints>
((-
43200,-2400),(-32800,6
400))
</a:ListOfPoints>
<a:ModificationDate>
1606
228141
</a:ModificationDate>
<a:Rect>
((-
22800,-800), (-20000,156
00))
</a:Rect>
<a:ListOfPoints>
((-
22400,15200),(-20400,-
400))
</a:ListOfPoints>
<a:CornerStyle>
3
</a:CornerStyle>
<a:ArrowStyle>
0
</a:ArrowStyle>
<a:LineColor>
16744576
</a:LineColor>
...
...
@@ -1941,20 +1864,20 @@ SOURCE 0 Arial,8,N</a:FontList>
<a:FontList>
CENTER 0 Arial,8,N
SOURCE 0 Arial,8,N
</a:FontList>
<c:SourceSymbol>
<o:EntitySymbol
Ref=
"o1
8
"
/>
<o:EntitySymbol
Ref=
"o1
5
"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o
33
"
/>
<o:AssociationSymbol
Ref=
"o
22
"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o
34
"
/>
<o:AssociationLink
Ref=
"o
23
"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o
35
"
>
<a:CreationDate>
1606
146008
</a:CreationDate>
<a:ModificationDate>
1606
146008
</a:ModificationDate>
<a:Rect>
((-
33200,6000), (-22000,156
00))
</a:Rect>
<a:ListOfPoints>
((-
22400,15200),(-32800,64
00))
</a:ListOfPoints>
<o:AssociationLinkSymbol
Id=
"o
24
"
>
<a:CreationDate>
1606
228114
</a:CreationDate>
<a:ModificationDate>
1606
228141
</a:ModificationDate>
<a:Rect>
((-
20400,-16400), (-17300,-9
00))
</a:Rect>
<a:ListOfPoints>
((-
17700,-16000),(-20000,-13
00))
</a:ListOfPoints>
<a:CornerStyle>
3
</a:CornerStyle>
<a:ArrowStyle>
0
</a:ArrowStyle>
<a:LineColor>
16744576
</a:LineColor>
...
...
@@ -1965,13 +1888,13 @@ SOURCE 0 Arial,8,N</a:FontList>
<o:EntitySymbol
Ref=
"o12"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o
33
"
/>
<o:AssociationSymbol
Ref=
"o
22
"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o
36
"
/>
<o:AssociationLink
Ref=
"o
25
"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:EntitySymbol
Id=
"o1
2
"
>
<o:EntitySymbol
Id=
"o1
5
"
>
<a:CreationDate>
1605190204
</a:CreationDate>
<a:ModificationDate>
1606150267
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
...
...
@@ -1989,14 +1912,14 @@ LABL 0 Arial,8,N</a:FontList>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Entity
Ref=
"o
37
"
/>
<o:Entity
Ref=
"o
26
"
/>
</c:Object>
</o:EntitySymbol>
<o:EntitySymbol
Id=
"o
38
"
>
<o:EntitySymbol
Id=
"o
27
"
>
<a:CreationDate>
1605190208
</a:CreationDate>
<a:ModificationDate>
1606
150267
</a:ModificationDate>
<a:ModificationDate>
1606
225874
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((
18400,15200), (44800,20
000))
</a:Rect>
<a:Rect>
((
-24800,23200), (1600,28
000))
</a:Rect>
<a:LineColor>
4227200
</a:LineColor>
<a:FillColor>
8637161
</a:FillColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
...
...
@@ -2010,55 +1933,14 @@ LABL 0 Arial,8,N</a:FontList>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Entity
Ref=
"o
39
"
/>
<o:Entity
Ref=
"o
28
"
/>
</c:Object>
</o:EntitySymbol>
<o:EntitySymbol
Id=
"o8"
>
<a:CreationDate>
1605190494
</a:CreationDate>
<a:ModificationDate>
1606150267
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-20800,-9600), (-800,-4000))
</a:Rect>
<a:LineColor>
4227200
</a:LineColor>
<a:FillColor>
8637161
</a:FillColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
<a:FontList>
STRN 0 Arial,8,N
DISPNAME 0 Arial,8,N
Attributes 0 Arial,8,N
EntityPrimaryAttribute 0 Arial,8,U
Identifiers 0 Arial,8,N
LABL 0 Arial,8,N
</a:FontList>
<a:BrushStyle>
6
</a:BrushStyle>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Entity
Ref=
"o40"
/>
</c:Object>
</o:EntitySymbol>
<o:AssociationSymbol
Id=
"o9"
>
<a:CreationDate>
1605191175
</a:CreationDate>
<a:ModificationDate>
1606150267
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-6400,800), (-1600,4800))
</a:Rect>
<a:LineColor>
16744576
</a:LineColor>
<a:FillColor>
16765136
</a:FillColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
<a:FontList>
STRN 0 Arial,8,N
DISPNAME 0 Arial,8,N
LABL 0 Arial,8,N
Attributes 0 Arial,8,N
EntityPrimaryAttribute 0 Arial,8,U
</a:FontList>
<a:BrushStyle>
6
</a:BrushStyle>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Association
Ref=
"o41"
/>
</c:Object>
</o:AssociationSymbol>
<o:EntitySymbol
Id=
"o18"
>
<a:CreationDate>
1605195277
</a:CreationDate>
<a:ModificationDate>
1606
150267
</a:ModificationDate>
<a:ModificationDate>
1606
228105
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-
56800,-6400), (-36800,-
1600))
</a:Rect>
<a:Rect>
((-
6400,-3200), (14400,
1600))
</a:Rect>
<a:LineColor>
4227200
</a:LineColor>
<a:FillColor>
8637161
</a:FillColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
...
...
@@ -2072,14 +1954,14 @@ LABL 0 Arial,8,N</a:FontList>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Entity
Ref=
"o
42
"
/>
<o:Entity
Ref=
"o
29
"
/>
</c:Object>
</o:EntitySymbol>
<o:EntitySymbol
Id=
"o
24
"
>
<o:EntitySymbol
Id=
"o
12
"
>
<a:CreationDate>
1605195287
</a:CreationDate>
<a:ModificationDate>
1606
15026
7
</a:ModificationDate>
<a:ModificationDate>
1606
22810
7
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-
58400,14400), (-38400,224
00))
</a:Rect>
<a:Rect>
((-
24000,-20800), (-2400,-128
00))
</a:Rect>
<a:LineColor>
4227200
</a:LineColor>
<a:FillColor>
8637161
</a:FillColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
...
...
@@ -2093,34 +1975,14 @@ LABL 0 Arial,8,N</a:FontList>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Entity
Ref=
"o
43
"
/>
<o:Entity
Ref=
"o
30
"
/>
</c:Object>
</o:EntitySymbol>
<o:AssociationSymbol
Id=
"o15"
>
<a:CreationDate>
1605195298
</a:CreationDate>
<a:ModificationDate>
1606150267
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-33600,-7200), (-28800,-3200))
</a:Rect>
<a:LineColor>
16744576
</a:LineColor>
<a:FillColor>
16765136
</a:FillColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
<a:FontList>
STRN 0 Arial,8,N
DISPNAME 0 Arial,8,N
LABL 0 Arial,8,N
Attributes 0 Arial,8,N
EntityPrimaryAttribute 0 Arial,8,U
</a:FontList>
<a:BrushStyle>
6
</a:BrushStyle>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Association
Ref=
"o44"
/>
</c:Object>
</o:AssociationSymbol>
<o:AssociationSymbol
Id=
"o21"
>
<o:AssociationSymbol
Id=
"o9"
>
<a:CreationDate>
1605195299
</a:CreationDate>
<a:ModificationDate>
1606
150267
</a:ModificationDate>
<a:ModificationDate>
1606
228108
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((
-52800,4800), (-47200,88
00))
</a:Rect>
<a:Rect>
((
3200,-12000), (8800,-80
00))
</a:Rect>
<a:LineColor>
16744576
</a:LineColor>
<a:FillColor>
16765136
</a:FillColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
...
...
@@ -2133,14 +1995,14 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Association
Ref=
"o
45
"
/>
<o:Association
Ref=
"o
31
"
/>
</c:Object>
</o:AssociationSymbol>
<o:EntitySymbol
Id=
"o
30
"
>
<o:EntitySymbol
Id=
"o
19
"
>
<a:CreationDate>
1606143730
</a:CreationDate>
<a:ModificationDate>
1606
150267
</a:ModificationDate>
<a:ModificationDate>
1606
226416
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((
17600,2400), (43200,64
00))
</a:Rect>
<a:Rect>
((
-800,7200), (24800,112
00))
</a:Rect>
<a:LineColor>
4227200
</a:LineColor>
<a:FillColor>
8637161
</a:FillColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
...
...
@@ -2154,14 +2016,14 @@ LABL 0 Arial,8,N</a:FontList>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Entity
Ref=
"o
46
"
/>
<o:Entity
Ref=
"o
32
"
/>
</c:Object>
</o:EntitySymbol>
<o:AssociationSymbol
Id=
"o
27
"
>
<o:AssociationSymbol
Id=
"o
16
"
>
<a:CreationDate>
1606144161
</a:CreationDate>
<a:ModificationDate>
1606
150267
</a:ModificationDate>
<a:ModificationDate>
1606
226418
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((
5600,4800), (10400,88
00))
</a:Rect>
<a:Rect>
((
7200,16000), (12000,200
00))
</a:Rect>
<a:LineColor>
16744576
</a:LineColor>
<a:FillColor>
16765136
</a:FillColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
...
...
@@ -2174,14 +2036,14 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Association
Ref=
"o
47
"
/>
<o:Association
Ref=
"o
33
"
/>
</c:Object>
</o:AssociationSymbol>
<o:AssociationSymbol
Id=
"o
33
"
>
<o:AssociationSymbol
Id=
"o
22
"
>
<a:CreationDate>
1606146008
</a:CreationDate>
<a:ModificationDate>
1606
150267
</a:ModificationDate>
<a:ModificationDate>
1606
228141
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-
36800,4800), (-28800,80
00))
</a:Rect>
<a:Rect>
((-
24800,-4000), (-16000,32
00))
</a:Rect>
<a:LineColor>
16744576
</a:LineColor>
<a:FillColor>
16765136
</a:FillColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
...
...
@@ -2194,7 +2056,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:GradientFillMode>
65
</a:GradientFillMode>
<a:GradientEndColor>
16777215
</a:GradientEndColor>
<c:Object>
<o:Association
Ref=
"o
48
"
/>
<o:Association
Ref=
"o
34
"
/>
</c:Object>
</o:AssociationSymbol>
</c:Symbols>
...
...
@@ -2204,7 +2066,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<o:ConceptualDiagram
Ref=
"o6"
/>
</c:DefaultDiagram>
<c:Entities>
<o:Entity
Id=
"o
37
"
>
<o:Entity
Id=
"o
26
"
>
<a:ObjectID>
C0DB87CD-4A5D-433C-9E87-1673EC92C0CD
</a:ObjectID>
<a:Name>
User
</a:Name>
<a:Code>
MJ_USER
</a:Code>
...
...
@@ -2214,7 +2076,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {3D05CB82-C209-4E88-B2A1-4D4953BC7A70}
</a:History>
<c:Identifiers>
<o:Identifier
Id=
"o
49
"
>
<o:Identifier
Id=
"o
35
"
>
<a:ObjectID>
29F93A75-7941-415C-97FB-A544BE6F4C42
</a:ObjectID>
<a:Name>
Identifiant_1
</a:Name>
<a:Code>
IDENTIFIANT_1
</a:Code>
...
...
@@ -2224,15 +2086,15 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {BC38D29F-31B1-42FA-BD1D-A614BC546671}
</a:History>
<c:Identifier.Attributes>
<o:EntityAttribute
Ref=
"o
50
"
/>
<o:EntityAttribute
Ref=
"o
36
"
/>
</c:Identifier.Attributes>
</o:Identifier>
</c:Identifiers>
<c:PrimaryIdentifier>
<o:Identifier
Ref=
"o
49
"
/>
<o:Identifier
Ref=
"o
35
"
/>
</c:PrimaryIdentifier>
<c:Attributes>
<o:EntityAttribute
Id=
"o
50
"
>
<o:EntityAttribute
Id=
"o
36
"
>
<a:ObjectID>
86388F6F-98F6-4CFB-8C20-36A748C708C7
</a:ObjectID>
<a:CreationDate>
1605190638
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2241,10 +2103,10 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:History>
ORG {F24E451E-9E54-4575-9FFA-5AE5B10C8C2F}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o
51
"
/>
<o:DataItem
Ref=
"o
37
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o
52
"
>
<o:EntityAttribute
Id=
"o
38
"
>
<a:ObjectID>
EE38085E-1616-414F-9680-B0D9F26E93F4
</a:ObjectID>
<a:CreationDate>
1605190882
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2253,10 +2115,10 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:History>
ORG {F891E419-2C90-46BA-9A46-D66FE1ABB10E}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o
53
"
/>
<o:DataItem
Ref=
"o
39
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o
54
"
>
<o:EntityAttribute
Id=
"o
40
"
>
<a:ObjectID>
9EBCE180-D8FB-4757-8441-B6AD0236CFF0
</a:ObjectID>
<a:CreationDate>
1605190882
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2265,10 +2127,10 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:History>
ORG {A6DC2D35-72B9-41C4-AFCF-E183E95EBFF7}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o
55
"
/>
<o:DataItem
Ref=
"o
41
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o
56
"
>
<o:EntityAttribute
Id=
"o
42
"
>
<a:ObjectID>
7E18F075-D88F-489B-AADF-4383ADCDD8A0
</a:ObjectID>
<a:CreationDate>
1605190948
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2276,10 +2138,10 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {28643B4E-9530-4B63-A9F3-04852DACB2BD}
</a:History>
<c:DataItem>
<o:DataItem
Ref=
"o
57
"
/>
<o:DataItem
Ref=
"o
43
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o
58
"
>
<o:EntityAttribute
Id=
"o
44
"
>
<a:ObjectID>
51C00BB9-BAA6-4BEE-B4D3-2D3C8B73BFD8
</a:ObjectID>
<a:CreationDate>
1605191361
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2287,10 +2149,10 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {51E050B4-A5A4-4D9F-9E06-99001EB9B2A4}
</a:History>
<c:DataItem>
<o:DataItem
Ref=
"o
59
"
/>
<o:DataItem
Ref=
"o
45
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o
60
"
>
<o:EntityAttribute
Id=
"o
46
"
>
<a:ObjectID>
FC1B487D-20F5-4A8C-8B4C-24F456BD1332
</a:ObjectID>
<a:CreationDate>
1605191361
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2298,10 +2160,10 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {2C776292-0095-4E1E-B392-D976B6B884E4}
</a:History>
<c:DataItem>
<o:DataItem
Ref=
"o
61
"
/>
<o:DataItem
Ref=
"o
47
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o
62
"
>
<o:EntityAttribute
Id=
"o
48
"
>
<a:ObjectID>
D344DFCD-2A8C-4FC2-8430-F5199A4C58D6
</a:ObjectID>
<a:CreationDate>
1605191460
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2310,10 +2172,10 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:History>
ORG {D680331A-6D5B-47CE-ACBD-64D2567C9FA0}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o
63
"
/>
<o:DataItem
Ref=
"o
49
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o
64
"
>
<o:EntityAttribute
Id=
"o
50
"
>
<a:ObjectID>
2FAD5612-A144-4400-B69C-4A9D4A5A48B5
</a:ObjectID>
<a:CreationDate>
1605191685
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2321,10 +2183,10 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {0B653ED0-6F62-4A0B-ADC0-060A54C7F621}
</a:History>
<c:DataItem>
<o:DataItem
Ref=
"o
65
"
/>
<o:DataItem
Ref=
"o
51
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o
66
"
>
<o:EntityAttribute
Id=
"o
52
"
>
<a:ObjectID>
554CBE02-1023-4270-9F25-1EB5442E679F
</a:ObjectID>
<a:CreationDate>
1605191728
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2332,12 +2194,12 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {C1BEB4E6-D98B-4265-976E-24E4673AE1A4}
</a:History>
<c:DataItem>
<o:DataItem
Ref=
"o
67
"
/>
<o:DataItem
Ref=
"o
53
"
/>
</c:DataItem>
</o:EntityAttribute>
</c:Attributes>
</o:Entity>
<o:Entity
Id=
"o
39
"
>
<o:Entity
Id=
"o
28
"
>
<a:ObjectID>
7BC6BC43-A1C0-4049-A146-327F21C82800
</a:ObjectID>
<a:Name>
Blacklist IP
</a:Name>
<a:Code>
MJ_BLACKLIST_IP
</a:Code>
...
...
@@ -2347,7 +2209,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {6919E64F-BB1C-4854-A928-E43BE5A36154}
</a:History>
<c:Identifiers>
<o:Identifier
Id=
"o
68
"
>
<o:Identifier
Id=
"o
54
"
>
<a:ObjectID>
8FC2F0A3-9F51-49A6-B3E3-EAE6210E872A
</a:ObjectID>
<a:Name>
Identifiant_1
</a:Name>
<a:Code>
IDENTIFIANT_1
</a:Code>
...
...
@@ -2357,15 +2219,15 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {91EB9800-86F8-4323-B3F5-A6A6AC6314C7}
</a:History>
<c:Identifier.Attributes>
<o:EntityAttribute
Ref=
"o
69
"
/>
<o:EntityAttribute
Ref=
"o
55
"
/>
</c:Identifier.Attributes>
</o:Identifier>
</c:Identifiers>
<c:PrimaryIdentifier>
<o:Identifier
Ref=
"o
68
"
/>
<o:Identifier
Ref=
"o
54
"
/>
</c:PrimaryIdentifier>
<c:Attributes>
<o:EntityAttribute
Id=
"o
69
"
>
<o:EntityAttribute
Id=
"o
55
"
>
<a:ObjectID>
E53FB6C8-5A2F-42B5-8D5B-A59D4E4004A3
</a:ObjectID>
<a:CreationDate>
1605191535
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2374,10 +2236,10 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:History>
ORG {BA9A53ED-35FC-4C71-9122-0CCE0016669B}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o
70
"
/>
<o:DataItem
Ref=
"o
56
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o
71
"
>
<o:EntityAttribute
Id=
"o
57
"
>
<a:ObjectID>
3F9AAA06-C66D-483D-84B8-CCFBC7C3F581
</a:ObjectID>
<a:CreationDate>
1605191535
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2386,10 +2248,10 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:History>
ORG {5A567455-188B-47C9-9502-3BD82AF9C405}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o
72
"
/>
<o:DataItem
Ref=
"o
58
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o
73
"
>
<o:EntityAttribute
Id=
"o
59
"
>
<a:ObjectID>
E3637996-D835-4686-A70A-6C5D7921D573
</a:ObjectID>
<a:CreationDate>
1605191535
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2398,93 +2260,22 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:History>
ORG {A49B213C-CD5A-4D01-887B-C15DDF290950}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o
74
"
/>
<o:DataItem
Ref=
"o
60
"
/>
</c:DataItem>
</o:EntityAttribute>
</c:Attributes>
</o:Entity>
<o:Entity
Id=
"o40"
>
<a:ObjectID>
5C56259E-C0DC-4663-B810-F5B149756083
</a:ObjectID>
<a:Name>
Room
</a:Name>
<a:Code>
MJ_ROOM
</a:Code>
<a:CreationDate>
1605190494
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606150859
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Identifiers>
<o:Identifier
Id=
"o75"
>
<a:ObjectID>
70270F99-AA11-43BF-AEA2-9F6E0916E071
</a:ObjectID>
<a:Name>
Identifiant_1
</a:Name>
<a:Code>
IDENTIFIANT_1
</a:Code>
<a:CreationDate>
1605192851
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605192860
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Identifier.Attributes>
<o:EntityAttribute
Ref=
"o76"
/>
</c:Identifier.Attributes>
</o:Identifier>
</c:Identifiers>
<c:PrimaryIdentifier>
<o:Identifier
Ref=
"o75"
/>
</c:PrimaryIdentifier>
<c:Attributes>
<o:EntityAttribute
Id=
"o76"
>
<a:ObjectID>
066D540F-64F7-4B95-AB3E-305F8F753535
</a:ObjectID>
<a:CreationDate>
1605191022
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605192860
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o77"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o78"
>
<a:ObjectID>
A0C2EB5A-44CD-43A7-81DA-FC9E5A794F98
</a:ObjectID>
<a:CreationDate>
1605191080
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144631
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o79"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o80"
>
<a:ObjectID>
94339644-75B6-4EDC-8E57-2CD260A3DC1B
</a:ObjectID>
<a:CreationDate>
1605195667
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144631
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o81"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o82"
>
<a:ObjectID>
F1355E57-0740-4281-A64D-59832B57D735
</a:ObjectID>
<a:CreationDate>
1605195667
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605195706
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:DataItem>
<o:DataItem
Ref=
"o83"
/>
</c:DataItem>
</o:EntityAttribute>
</c:Attributes>
</o:Entity>
<o:Entity
Id=
"o42"
>
<o:Entity
Id=
"o29"
>
<a:ObjectID>
74E971FE-2B4D-441F-9854-6D92BF0E9F4C
</a:ObjectID>
<a:Name>
Game
</a:Name>
<a:Code>
MJ_GAME
</a:Code>
<a:CreationDate>
1605195277
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606
150295
</a:ModificationDate>
<a:ModificationDate>
1606
230760
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {E8511CCC-DB07-441C-91B8-E9FA99FC3163}
</a:History>
<c:Identifiers>
<o:Identifier
Id=
"o
84
"
>
<o:Identifier
Id=
"o
61
"
>
<a:ObjectID>
CC67C69B-A78A-4149-ABDE-AE5B536D4670
</a:ObjectID>
<a:Name>
Identifiant_1
</a:Name>
<a:Code>
IDENTIFIANT_1
</a:Code>
...
...
@@ -2494,15 +2285,15 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {887CD0EA-8BAC-4F85-A789-8B0B89C48E86}
</a:History>
<c:Identifier.Attributes>
<o:EntityAttribute
Ref=
"o
85
"
/>
<o:EntityAttribute
Ref=
"o
62
"
/>
</c:Identifier.Attributes>
</o:Identifier>
</c:Identifiers>
<c:PrimaryIdentifier>
<o:Identifier
Ref=
"o
84
"
/>
<o:Identifier
Ref=
"o
61
"
/>
</c:PrimaryIdentifier>
<c:Attributes>
<o:EntityAttribute
Id=
"o
85
"
>
<o:EntityAttribute
Id=
"o
62
"
>
<a:ObjectID>
97FDE412-E7FE-48D1-9448-9656988B5E34
</a:ObjectID>
<a:CreationDate>
1605195646
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2511,45 +2302,45 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:History>
ORG {73017BF5-B626-49CB-99C3-497FD32A63A8}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o
86
"
/>
<o:DataItem
Ref=
"o
63
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o
87
"
>
<a:ObjectID>
40BC8991-D1D3-4C07-98E1-518D4BCD2A4A
</a:ObjectID>
<a:CreationDate>
160
519570
8
</a:CreationDate>
<o:EntityAttribute
Id=
"o
64
"
>
<a:ObjectID>
C19FB46C-DA13-4152-A62C-64F3564C7813
</a:ObjectID>
<a:CreationDate>
160
622501
8
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606
150267
</a:ModificationDate>
<a:ModificationDate>
1606
230760
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {02E4BE7C-F61A-4144-A8A5-52480F98D070}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o
81
"
/>
<o:DataItem
Ref=
"o
65
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o
88
"
>
<a:ObjectID>
CC273B1E-7ED5-49D8-8BA9-BC47E056B23F
</a:ObjectID>
<a:CreationDate>
160
5195708
</a:CreationDate>
<o:EntityAttribute
Id=
"o
66
"
>
<a:ObjectID>
4A111AE7-F23E-457C-85CF-61A061A2CC3B
</a:ObjectID>
<a:CreationDate>
160
6226561
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606
150267
</a:ModificationDate>
<a:ModificationDate>
1606
230760
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:
History>
ORG {8C943B7C-8714-4A94-8469-944832EBB8FA}
</a:His
tory>
<a:
BaseAttribute.Mandatory>
1
</a:BaseAttribute.Manda
tory>
<c:DataItem>
<o:DataItem
Ref=
"o
83
"
/>
<o:DataItem
Ref=
"o
67
"
/>
</c:DataItem>
</o:EntityAttribute>
</c:Attributes>
</o:Entity>
<o:Entity
Id=
"o
43
"
>
<o:Entity
Id=
"o
30
"
>
<a:ObjectID>
1E10A678-3CCA-40B3-8AAD-EB52B6494E7B
</a:ObjectID>
<a:Name>
Round
</a:Name>
<a:Name>
Deal
</a:Name>
<a:Code>
MJ_ROUND
</a:Code>
<a:CreationDate>
1605195287
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606
150288
</a:ModificationDate>
<a:ModificationDate>
1606
229125
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {36DDDB23-9C26-4C79-A996-1F51A77A2FB8}
</a:History>
<a:History>
ORG {36DDDB23-9C26-4C79-A996-1F51A77A2FB8}
ATT NAME
</a:History>
<c:Identifiers>
<o:Identifier
Id=
"o
89
"
>
<o:Identifier
Id=
"o
68
"
>
<a:ObjectID>
96A5043F-AFEE-4601-A8E0-B811F6B0A9FB
</a:ObjectID>
<a:Name>
Identifiant_1
</a:Name>
<a:Code>
IDENTIFIANT_1
</a:Code>
...
...
@@ -2559,15 +2350,15 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {A1E78484-E504-4D67-A441-C254AF6347C4}
</a:History>
<c:Identifier.Attributes>
<o:EntityAttribute
Ref=
"o
90
"
/>
<o:EntityAttribute
Ref=
"o
69
"
/>
</c:Identifier.Attributes>
</o:Identifier>
</c:Identifiers>
<c:PrimaryIdentifier>
<o:Identifier
Ref=
"o
89
"
/>
<o:Identifier
Ref=
"o
68
"
/>
</c:PrimaryIdentifier>
<c:Attributes>
<o:EntityAttribute
Id=
"o
90
"
>
<o:EntityAttribute
Id=
"o
69
"
>
<a:ObjectID>
8A6E98F7-DB77-41EF-9480-DB8DE799B85B
</a:ObjectID>
<a:CreationDate>
1605195497
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2576,10 +2367,10 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:History>
ORG {CBCC97B0-0539-4B80-A277-D412764DF7DF}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o
91
"
/>
<o:DataItem
Ref=
"o
70
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o
92
"
>
<o:EntityAttribute
Id=
"o
71
"
>
<a:ObjectID>
297EC89E-2E4C-4A45-9A82-3FBF58DF9D63
</a:ObjectID>
<a:CreationDate>
1605195497
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2588,34 +2379,33 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:History>
ORG {A2F81355-A5CC-4A44-8E04-D9916CCE9710}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o
93
"
/>
<o:DataItem
Ref=
"o
72
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o
94
"
>
<o:EntityAttribute
Id=
"o
73
"
>
<a:ObjectID>
18097A59-FBB4-4905-8511-68CE15CBCA25
</a:ObjectID>
<a:CreationDate>
1605195497
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606
150267
</a:ModificationDate>
<a:ModificationDate>
1606
230689
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {20E7DEF8-CEFC-4BDD-A7B1-0233B1CAF0E4}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o
95
"
/>
<o:DataItem
Ref=
"o
74
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o
96
"
>
<o:EntityAttribute
Id=
"o
75
"
>
<a:ObjectID>
35D6A3FF-ACBC-40BF-AB93-777D44D31086
</a:ObjectID>
<a:CreationDate>
1605195778
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606
150267
</a:ModificationDate>
<a:ModificationDate>
1606
230689
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {69270008-7024-4C1A-BD7D-6B12B6B67CFB}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o
81
"
/>
<o:DataItem
Ref=
"o
76
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o
9
7"
>
<o:EntityAttribute
Id=
"o
7
7"
>
<a:ObjectID>
492A7147-2ED1-445B-829B-E3498F91E195
</a:ObjectID>
<a:CreationDate>
1606143992
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2623,10 +2413,10 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {D9BB2801-DCAD-485E-9B4E-47CC807274C6}
</a:History>
<c:DataItem>
<o:DataItem
Ref=
"o
83
"
/>
<o:DataItem
Ref=
"o
78
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o
98
"
>
<o:EntityAttribute
Id=
"o
79
"
>
<a:ObjectID>
51BCEF6A-AF04-4637-BE82-28F192411997
</a:ObjectID>
<a:CreationDate>
1606144377
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2634,12 +2424,12 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {CC532184-5292-4C3B-ADDF-48A613CBB1EB}
</a:History>
<c:DataItem>
<o:DataItem
Ref=
"o
99
"
/>
<o:DataItem
Ref=
"o
80
"
/>
</c:DataItem>
</o:EntityAttribute>
</c:Attributes>
</o:Entity>
<o:Entity
Id=
"o
46
"
>
<o:Entity
Id=
"o
32
"
>
<a:ObjectID>
F58A265F-2BCA-475E-BA65-AE4C1EEB64D0
</a:ObjectID>
<a:Name>
Role
</a:Name>
<a:Code>
MJ_ROLE
</a:Code>
...
...
@@ -2649,7 +2439,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {ADA3AE72-1CEF-4781-AFFE-01371637209A}
</a:History>
<c:Identifiers>
<o:Identifier
Id=
"o
100
"
>
<o:Identifier
Id=
"o
81
"
>
<a:ObjectID>
0B32B4CE-9EE0-44E5-A04F-50C7A80B6DD9
</a:ObjectID>
<a:Name>
Identifiant_1
</a:Name>
<a:Code>
IDENTIFIANT_1
</a:Code>
...
...
@@ -2659,15 +2449,15 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {26B64DB8-68A9-4F98-9988-5A1D8C7988A4}
</a:History>
<c:Identifier.Attributes>
<o:EntityAttribute
Ref=
"o
101
"
/>
<o:EntityAttribute
Ref=
"o
82
"
/>
</c:Identifier.Attributes>
</o:Identifier>
</c:Identifiers>
<c:PrimaryIdentifier>
<o:Identifier
Ref=
"o
100
"
/>
<o:Identifier
Ref=
"o
81
"
/>
</c:PrimaryIdentifier>
<c:Attributes>
<o:EntityAttribute
Id=
"o
101
"
>
<o:EntityAttribute
Id=
"o
82
"
>
<a:ObjectID>
4F15DFAC-DF69-4DBD-AC48-9C12C1A129C4
</a:ObjectID>
<a:CreationDate>
1606143733
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2676,10 +2466,10 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:History>
ORG {2D8332E9-C8BC-4E2A-9B4A-D7697FE4A748}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o
102
"
/>
<o:DataItem
Ref=
"o
83
"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o
103
"
>
<o:EntityAttribute
Id=
"o
84
"
>
<a:ObjectID>
194D68F9-0CDD-4155-8F4B-214DD85BC305
</a:ObjectID>
<a:CreationDate>
1606143733
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -2688,14 +2478,14 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:History>
ORG {D0C10B4F-71B1-4026-89F5-F3697A653679}
</a:History>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o
104
"
/>
<o:DataItem
Ref=
"o
85
"
/>
</c:DataItem>
</o:EntityAttribute>
</c:Attributes>
</o:Entity>
</c:Entities>
<c:DataItems>
<o:DataItem
Id=
"o
51
"
>
<o:DataItem
Id=
"o
37
"
>
<a:ObjectID>
7A9C7892-2AD0-405A-83CE-98383E14B6EB
</a:ObjectID>
<a:Name>
id user
</a:Name>
<a:Code>
ID_USER
</a:Code>
...
...
@@ -2706,7 +2496,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:History>
ORG {F24E451E-9E54-4575-9FFA-5AE5B10C8C2F}
</a:History>
<a:DataType>
NO
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o
105
"
>
<o:DataItem
Id=
"o
86
"
>
<a:ObjectID>
C355AF50-3B8C-414A-948A-2D8E95A0AC01
</a:ObjectID>
<a:Name>
Admin
</a:Name>
<a:Code>
ADMIN
</a:Code>
...
...
@@ -2716,7 +2506,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
BL
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o
53
"
>
<o:DataItem
Id=
"o
39
"
>
<a:ObjectID>
9B469260-07FF-4A43-A7E2-D9969C9731BC
</a:ObjectID>
<a:Name>
login
</a:Name>
<a:Code>
LOGIN
</a:Code>
...
...
@@ -2728,7 +2518,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:DataType>
VA16
</a:DataType>
<a:Length>
16
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o
55
"
>
<o:DataItem
Id=
"o
41
"
>
<a:ObjectID>
6B3E37D0-6514-4C25-9225-D8D35869C4A5
</a:ObjectID>
<a:Name>
pasword
</a:Name>
<a:Code>
PASWORD
</a:Code>
...
...
@@ -2740,7 +2530,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:DataType>
A40
</a:DataType>
<a:Length>
40
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o
57
"
>
<o:DataItem
Id=
"o
43
"
>
<a:ObjectID>
6601244F-BC51-44B8-B7B9-D24718F76E51
</a:ObjectID>
<a:Name>
avatar
</a:Name>
<a:Code>
AVATAR
</a:Code>
...
...
@@ -2752,29 +2542,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:DataType>
A255
</a:DataType>
<a:Length>
255
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o77"
>
<a:ObjectID>
BCA3C9F1-9F62-4117-B187-3B6F3BF7FAB6
</a:ObjectID>
<a:Name>
id room
</a:Name>
<a:Code>
ID_ROOM
</a:Code>
<a:CreationDate>
1605191022
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606150267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {A7263E3E-89C3-40C5-917E-C98B7CC02EC9}
</a:History>
<a:DataType>
NO
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o79"
>
<a:ObjectID>
DCFF6991-B8B3-4017-A714-643CB5290204
</a:ObjectID>
<a:Name>
private
</a:Name>
<a:Code>
PRIVATE
</a:Code>
<a:CreationDate>
1605191080
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606150267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {99A7CB8D-2C66-4C6B-8F17-C968574DE244}
</a:History>
<a:DataType>
BL
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o59"
>
<o:DataItem
Id=
"o45"
>
<a:ObjectID>
DFE8B793-FE79-46DC-B172-137A98C99BEE
</a:ObjectID>
<a:Name>
lastname
</a:Name>
<a:Code>
LASTNAME
</a:Code>
...
...
@@ -2786,7 +2554,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:DataType>
A55
</a:DataType>
<a:Length>
55
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o
61
"
>
<o:DataItem
Id=
"o
47
"
>
<a:ObjectID>
F41F8395-7AA1-46E6-90E0-2CE55F9A487A
</a:ObjectID>
<a:Name>
firstname
</a:Name>
<a:Code>
FIRSTNAME
</a:Code>
...
...
@@ -2798,7 +2566,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:DataType>
A55
</a:DataType>
<a:Length>
55
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o
63
"
>
<o:DataItem
Id=
"o
49
"
>
<a:ObjectID>
51E02CA5-8209-455D-9B62-60CD30953E8F
</a:ObjectID>
<a:Name>
mail
</a:Name>
<a:Code>
MAIL
</a:Code>
...
...
@@ -2810,7 +2578,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:DataType>
A64
</a:DataType>
<a:Length>
64
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o
70
"
>
<o:DataItem
Id=
"o
56
"
>
<a:ObjectID>
5151AD13-D617-4A20-80D9-82188097AEC8
</a:ObjectID>
<a:Name>
id blacklist
</a:Name>
<a:Code>
ID_BLACKLIST
</a:Code>
...
...
@@ -2821,7 +2589,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:History>
ORG {BA9A53ED-35FC-4C71-9122-0CCE0016669B}
</a:History>
<a:DataType>
NO
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o
72
"
>
<o:DataItem
Id=
"o
58
"
>
<a:ObjectID>
0E6E45CA-8336-4A45-88BD-B543C6A1CF1C
</a:ObjectID>
<a:Name>
IP
</a:Name>
<a:Code>
IP
</a:Code>
...
...
@@ -2833,7 +2601,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:DataType>
VA15
</a:DataType>
<a:Length>
15
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o
74
"
>
<o:DataItem
Id=
"o
60
"
>
<a:ObjectID>
6508CDAE-46E6-41CB-B72A-ED82E305D9D4
</a:ObjectID>
<a:Name>
date ban
</a:Name>
<a:Code>
DATE_BAN
</a:Code>
...
...
@@ -2844,7 +2612,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:History>
ORG {A49B213C-CD5A-4D01-887B-C15DDF290950}
</a:History>
<a:DataType>
DT
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o
65
"
>
<o:DataItem
Id=
"o
51
"
>
<a:ObjectID>
BD744A3E-6714-4CFC-A434-0522F1C2690F
</a:ObjectID>
<a:Name>
ban account
</a:Name>
<a:Code>
BAN_ACCOUNT
</a:Code>
...
...
@@ -2855,7 +2623,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:History>
ORG {0B653ED0-6F62-4A0B-ADC0-060A54C7F621}
</a:History>
<a:DataType>
BL
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o
67
"
>
<o:DataItem
Id=
"o
53
"
>
<a:ObjectID>
D2FC1BD7-128B-4BE7-95B3-B870201CAC85
</a:ObjectID>
<a:Name>
last IP
</a:Name>
<a:Code>
LAST_IP
</a:Code>
...
...
@@ -2867,7 +2635,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:DataType>
VA15
</a:DataType>
<a:Length>
15
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o
106
"
>
<o:DataItem
Id=
"o
87
"
>
<a:ObjectID>
0DE827EB-2D70-4ECC-8593-24BB0FBE9A95
</a:ObjectID>
<a:Name>
victory
</a:Name>
<a:Code>
VICTORY
</a:Code>
...
...
@@ -2877,7 +2645,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
BL
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o
107
"
>
<o:DataItem
Id=
"o
88
"
>
<a:ObjectID>
2D8A2360-9EA9-4A56-9653-2D78585B5571
</a:ObjectID>
<a:Name>
Vent
</a:Name>
<a:Code>
VENT
</a:Code>
...
...
@@ -2887,7 +2655,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
I
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o
91
"
>
<o:DataItem
Id=
"o
70
"
>
<a:ObjectID>
ED123FBD-48AC-4A5F-B39D-9F4BC0F0AE77
</a:ObjectID>
<a:Name>
id round
</a:Name>
<a:Code>
ID_ROUND
</a:Code>
...
...
@@ -2898,29 +2666,31 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:History>
ORG {CBCC97B0-0539-4B80-A277-D412764DF7DF}
</a:History>
<a:DataType>
NO
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o
93
"
>
<o:DataItem
Id=
"o
72
"
>
<a:ObjectID>
4A0A2569-F9EB-4EA7-9116-C3D9C2EDB8DA
</a:ObjectID>
<a:Name>
W
ind
</a:Name>
<a:Code>
WIND
</a:Code>
<a:Name>
prevailing w
ind
</a:Name>
<a:Code>
PREVAILING_
WIND
</a:Code>
<a:CreationDate>
1605195497
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606
150267
</a:ModificationDate>
<a:ModificationDate>
1606
230626
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {A2F81355-A5CC-4A44-8E04-D9916CCE9710}
</a:History>
<a:History>
ORG {A2F81355-A5CC-4A44-8E04-D9916CCE9710}
ATT NAME
</a:History>
<a:DataType>
I
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o
95
"
>
<o:DataItem
Id=
"o
74
"
>
<a:ObjectID>
63706AFE-B1EB-416B-8FA5-68F3B072B819
</a:ObjectID>
<a:Name>
S
eed
</a:Name>
<a:Name>
s
eed
</a:Name>
<a:Code>
SEED
</a:Code>
<a:CreationDate>
1605195497
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606
150267
</a:ModificationDate>
<a:ModificationDate>
1606
230689
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {20E7DEF8-CEFC-4BDD-A7B1-0233B1CAF0E4}
</a:History>
<a:History>
ORG {20E7DEF8-CEFC-4BDD-A7B1-0233B1CAF0E4}
ATT NAME
</a:History>
<a:DataType>
I
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o
86
"
>
<o:DataItem
Id=
"o
63
"
>
<a:ObjectID>
5A513A42-F12E-4CAE-B210-1EAB7DA83FD0
</a:ObjectID>
<a:Name>
id game
</a:Name>
<a:Code>
ID_GAME
</a:Code>
...
...
@@ -2931,29 +2701,33 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:History>
ORG {73017BF5-B626-49CB-99C3-497FD32A63A8}
</a:History>
<a:DataType>
NO
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o
81
"
>
<o:DataItem
Id=
"o
76
"
>
<a:ObjectID>
743F1702-4C7F-4F6F-8F10-B0C69B8EBBC0
</a:ObjectID>
<a:Name>
date begin
</a:Name>
<a:Code>
DATE_BEGIN
</a:Code>
<a:Name>
begining
</a:Name>
<a:Code>
BEGINING
</a:Code>
<a:CreationDate>
1605195667
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606
150267
</a:ModificationDate>
<a:ModificationDate>
1606
230760
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {69270008-7024-4C1A-BD7D-6B12B6B67CFB}
</a:History>
<a:DataType>
DT
</a:DataType>
<a:History>
ORG {69270008-7024-4C1A-BD7D-6B12B6B67CFB}
ATT DTTP
ATT NAME
</a:History>
<a:DataType>
TS
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o
83
"
>
<o:DataItem
Id=
"o
78
"
>
<a:ObjectID>
FD92CEB1-C779-4CEB-B849-EBC75EEC6BE4
</a:ObjectID>
<a:Name>
date end
</a:Name>
<a:Code>
DATE_END
</a:Code>
<a:Name>
ending
</a:Name>
<a:Code>
ENDING
</a:Code>
<a:CreationDate>
1605195667
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606
150267
</a:ModificationDate>
<a:ModificationDate>
1606
230760
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {D9BB2801-DCAD-485E-9B4E-47CC807274C6}
</a:History>
<a:DataType>
DT
</a:DataType>
<a:History>
ORG {D9BB2801-DCAD-485E-9B4E-47CC807274C6}
ATT DTTP
ATT NAME
</a:History>
<a:DataType>
TS
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o
102
"
>
<o:DataItem
Id=
"o
83
"
>
<a:ObjectID>
2E95FA06-02F6-4DA1-A754-7592D15379E6
</a:ObjectID>
<a:Name>
id role
</a:Name>
<a:Code>
ID_ROLE
</a:Code>
...
...
@@ -2964,7 +2738,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:History>
ORG {2D8332E9-C8BC-4E2A-9B4A-D7697FE4A748}
</a:History>
<a:DataType>
NO
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o
104
"
>
<o:DataItem
Id=
"o
85
"
>
<a:ObjectID>
9F2AFC93-11F5-4FA3-A1B1-29644A3BC7F2
</a:ObjectID>
<a:Name>
name
</a:Name>
<a:Code>
NAME
</a:Code>
...
...
@@ -2976,7 +2750,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:DataType>
VA15
</a:DataType>
<a:Length>
15
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o
108
"
>
<o:DataItem
Id=
"o
89
"
>
<a:ObjectID>
C5558788-A82A-482B-8679-96F5D6861967
</a:ObjectID>
<a:Name>
Win
</a:Name>
<a:Code>
WIN
</a:Code>
...
...
@@ -2987,7 +2761,7 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:History>
ORG {25540AD2-405E-4E70-9D31-40ACBAA47F81}
</a:History>
<a:DataType>
BL
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o
99
"
>
<o:DataItem
Id=
"o
80
"
>
<a:ObjectID>
4A987DBC-CCD0-4DA5-8B08-B63460EC33D9
</a:ObjectID>
<a:Name>
actions
</a:Name>
<a:Code>
ACTIONS
</a:Code>
...
...
@@ -2998,31 +2772,59 @@ EntityPrimaryAttribute 0 Arial,8,U</a:FontList>
<a:History>
ORG {CC532184-5292-4C3B-ADDF-48A613CBB1EB}
</a:History>
<a:DataType>
TXT
</a:DataType>
</o:DataItem>
</c:DataItems>
<c:Associations>
<o:Association
Id=
"o41"
>
<a:ObjectID>
8A264E7E-B604-48E5-8999-D8108103C523
</a:ObjectID>
<a:Name>
Creation
</a:Name>
<a:Code>
MJ_CREATION
</a:Code>
<a:CreationDate>
1605191175
</a:CreationDate>
<o:DataItem
Id=
"o90"
>
<a:ObjectID>
40D124A7-D789-4C1F-AF37-CAEBBA311998
</a:ObjectID>
<a:Name>
Score
</a:Name>
<a:Code>
SCORE
</a:Code>
<a:CreationDate>
1606224914
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606
15090
0
</a:ModificationDate>
<a:ModificationDate>
1606
22494
0
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {DD26F711-EC7D-4145-A973-54E82F457F00}
ATT CODE
</a:History>
</o:Association>
<o:Association
Id=
"o44"
>
<a:ObjectID>
D54FCACC-74D9-4826-8A05-3262B9E5EE71
</a:ObjectID>
<a:Name>
Host
</a:Name>
<a:Code>
MJ_HOST
</a:Code>
<a:CreationDate>
1605195298
</a:CreationDate>
<a:DataType>
I
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o65"
>
<a:ObjectID>
1B43B2D6-68F2-49EC-A7C2-85CB77D47C27
</a:ObjectID>
<a:Name>
private
</a:Name>
<a:Code>
PRIVATE
</a:Code>
<a:CreationDate>
1606225018
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606
150900
</a:ModificationDate>
<a:ModificationDate>
1606
225063
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {C2880144-409E-4450-8767-ACA256E46B9E}
ATT CODE
</a:History>
</o:Association>
<o:Association
Id=
"o45"
>
<a:DataType>
BL
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o91"
>
<a:ObjectID>
FFEC3CAD-067F-4168-8BA8-CB4979AF7253
</a:ObjectID>
<a:Name>
host
</a:Name>
<a:Code>
HOST
</a:Code>
<a:CreationDate>
1606226383
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606226400
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
BL
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o67"
>
<a:ObjectID>
D9E0D146-4D58-4D6B-AC94-9DDC306CAB3C
</a:ObjectID>
<a:Name>
creation time
</a:Name>
<a:Code>
CREATION_TIME
</a:Code>
<a:CreationDate>
1606226561
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606226575
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
TS
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o92"
>
<a:ObjectID>
1F0050E6-6353-4BD2-9987-901EC7B55C30
</a:ObjectID>
<a:Name>
wind
</a:Name>
<a:Code>
WIND
</a:Code>
<a:CreationDate>
1606228122
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606228137
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
I
</a:DataType>
</o:DataItem>
</c:DataItems>
<c:Associations>
<o:Association
Id=
"o31"
>
<a:ObjectID>
B8F4656D-32DB-42F9-9DA8-57DF64F6A831
</a:ObjectID>
<a:Name>
Compose
</a:Name>
<a:Code>
MJ_COMPOSE
</a:Code>
...
...
@@ -3033,7 +2835,7 @@ ATT CODE</a:History>
<a:History>
ORG {92458453-BA66-4D89-ADA6-3C6609353BFF}
ATT CODE
</a:History>
</o:Association>
<o:Association
Id=
"o
47
"
>
<o:Association
Id=
"o
33
"
>
<a:ObjectID>
405F6E65-6CD2-4B13-891E-2DF33C1B3F85
</a:ObjectID>
<a:Name>
Has
</a:Name>
<a:Code>
MJ_HAS
</a:Code>
...
...
@@ -3044,17 +2846,17 @@ ATT CODE</a:History>
<a:History>
ORG {F2B0FECB-A0BD-4D3D-9219-9050CD92ACC2}
ATT CODE
</a:History>
</o:Association>
<o:Association
Id=
"o
48
"
>
<o:Association
Id=
"o
34
"
>
<a:ObjectID>
5D707833-2076-4C65-8160-C3B117410843
</a:ObjectID>
<a:Name>
Play
</a:Name>
<a:Code>
MJ_PLAY
</a:Code>
<a:CreationDate>
1606146008
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606
15026
7
</a:ModificationDate>
<a:ModificationDate>
1606
22813
7
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {8F4773CC-B663-488F-93EF-BE73B20004C5}
</a:History>
<c:Attributes>
<o:AssociationAttribute
Id=
"o
109
"
>
<o:AssociationAttribute
Id=
"o
93
"
>
<a:ObjectID>
2AEDD201-92F9-42F0-86DC-D609649785BA
</a:ObjectID>
<a:CreationDate>
1606146010
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -3062,72 +2864,44 @@ ATT CODE</a:History>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {25540AD2-405E-4E70-9D31-40ACBAA47F81}
</a:History>
<c:DataItem>
<o:DataItem
Ref=
"o
108
"
/>
<o:DataItem
Ref=
"o
89
"
/>
</c:DataItem>
</o:AssociationAttribute>
</c:Attributes>
</o:Association>
</c:Associations>
<c:AssociationsLinks>
<o:AssociationLink
Id=
"o10"
>
<a:ObjectID>
18D33273-D3C4-4D09-A85D-BBB88C78F2B7
</a:ObjectID>
<a:CreationDate>
1605191936
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606150307
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Cardinality>
0,1
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o41"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o40"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o13"
>
<a:ObjectID>
557A228E-DC8B-408D-8C43-039183F4009E
</a:ObjectID>
<a:CreationDate>
1605191938
</a:CreationDate>
<o:AssociationAttribute
Id=
"o94"
>
<a:ObjectID>
7AE897F2-4144-4572-9C37-B295CF5EAE24
</a:ObjectID>
<a:CreationDate>
1606224914
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606
150267
</a:ModificationDate>
<a:ModificationDate>
1606
224940
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {DD26F711-EC7D-4145-A973-54E82F457F00}
</a:History>
<a:Cardinality>
0,n
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o41"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o37"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o16"
>
<a:ObjectID>
2FB3EB88-80F4-4BE8-8F5D-1DBB4CAD8269
</a:ObjectID>
<a:CreationDate>
1605195298
</a:CreationDate>
<c:DataItem>
<o:DataItem
Ref=
"o90"
/>
</c:DataItem>
</o:AssociationAttribute>
<o:AssociationAttribute
Id=
"o95"
>
<a:ObjectID>
B0FFC6C1-AAD5-44D5-8ED3-88085E5D3B17
</a:ObjectID>
<a:CreationDate>
1606226383
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5195298
</a:ModificationDate>
<a:ModificationDate>
160
6226400
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Cardinality>
0,n
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o44"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o40"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o19"
>
<a:ObjectID>
2042D5BE-86F7-4E6E-B5CE-D9AF7DC68F05
</a:ObjectID>
<a:CreationDate>
1605195298
</a:CreationDate>
<c:DataItem>
<o:DataItem
Ref=
"o91"
/>
</c:DataItem>
</o:AssociationAttribute>
<o:AssociationAttribute
Id=
"o96"
>
<a:ObjectID>
BFD47AF9-664E-4478-8256-488CF315F744
</a:ObjectID>
<a:CreationDate>
1606228122
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606
150295
</a:ModificationDate>
<a:ModificationDate>
1606
228137
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {C2880144-409E-4450-8767-ACA256E46B9E}
</a:History>
<a:Cardinality>
0,1
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o44"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o42"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o22"
>
<c:DataItem>
<o:DataItem
Ref=
"o92"
/>
</c:DataItem>
</o:AssociationAttribute>
</c:Attributes>
</o:Association>
</c:Associations>
<c:AssociationsLinks>
<o:AssociationLink
Id=
"o10"
>
<a:ObjectID>
6CEA2E5A-B1D0-41AB-8957-13C91BD0FD28
</a:ObjectID>
<a:CreationDate>
1605195299
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -3136,13 +2910,13 @@ ATT CODE</a:History>
<a:History>
ORG {92458453-BA66-4D89-ADA6-3C6609353BFF}
</a:History>
<a:Cardinality>
0,n
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o
45
"
/>
<o:Association
Ref=
"o
31
"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o
42
"
/>
<o:Entity
Ref=
"o
29
"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o
25
"
>
<o:AssociationLink
Id=
"o
13
"
>
<a:ObjectID>
0C1DF013-F25B-4974-B701-B59E000EA9B6
</a:ObjectID>
<a:CreationDate>
1605195299
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -3151,13 +2925,13 @@ ATT CODE</a:History>
<a:History>
ORG {92458453-BA66-4D89-ADA6-3C6609353BFF}
</a:History>
<a:Cardinality>
0,1
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o
45
"
/>
<o:Association
Ref=
"o
31
"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o
43
"
/>
<o:Entity
Ref=
"o
30
"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o
28
"
>
<o:AssociationLink
Id=
"o
17
"
>
<a:ObjectID>
70936E91-DE6C-4438-B225-6A50AB700E9B
</a:ObjectID>
<a:CreationDate>
1606144161
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -3166,13 +2940,13 @@ ATT CODE</a:History>
<a:History>
ORG {F2B0FECB-A0BD-4D3D-9219-9050CD92ACC2}
</a:History>
<a:Cardinality>
0,1
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o
47
"
/>
<o:Association
Ref=
"o
33
"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o
37
"
/>
<o:Entity
Ref=
"o
26
"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o
31
"
>
<o:AssociationLink
Id=
"o
20
"
>
<a:ObjectID>
3834E1CD-49CA-487F-8692-CD6FFB7DB09B
</a:ObjectID>
<a:CreationDate>
1606144161
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
...
...
@@ -3181,47 +2955,45 @@ ATT CODE</a:History>
<a:History>
ORG {F2B0FECB-A0BD-4D3D-9219-9050CD92ACC2}
</a:History>
<a:Cardinality>
0,n
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o
47
"
/>
<o:Association
Ref=
"o
33
"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o
46
"
/>
<o:Entity
Ref=
"o
32
"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o
34
"
>
<a:ObjectID>
FA71687D-64EC-4594-A86A-67EDC63E5D65
</a:ObjectID>
<o:AssociationLink
Id=
"o
23
"
>
<a:ObjectID>
8853FC4D-C3E3-4753-89E4-90CC2B669D14
</a:ObjectID>
<a:CreationDate>
0
</a:CreationDate>
<a:Creator/>
<a:ModificationDate>
1606150267
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {
DB49AF92-2FC4-4CDC-BB37-85E0E79E07CE
}
</a:History>
<a:History>
ORG {
311BB372-EAC7-4364-B404-BFCC2179EA03
}
</a:History>
<a:Role>
Play
</a:Role>
<a:Cardinality>
0,n
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o
48
"
/>
<o:Association
Ref=
"o
34
"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o
42
"
/>
<o:Entity
Ref=
"o
26
"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o
36
"
>
<a:ObjectID>
8
853FC4D-C3E3-4753-89E4-90CC2B669D14
</a:ObjectID>
<a:CreationDate>
0
</a:CreationDate>
<a:Creator
/
>
<a:ModificationDate>
1606
150267
</a:ModificationDate>
<o:AssociationLink
Id=
"o
25
"
>
<a:ObjectID>
8
CF0A814-739E-42D2-AB4C-987563D989E0
</a:ObjectID>
<a:CreationDate>
1606228114
</a:CreationDate>
<a:Creator
>
quent
</a:Creator
>
<a:ModificationDate>
1606
228114
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {311BB372-EAC7-4364-B404-BFCC2179EA03}
</a:History>
<a:Role>
Play
</a:Role>
<a:Cardinality>
0,n
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o
48
"
/>
<o:Association
Ref=
"o
34
"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o3
7
"
/>
<o:Entity
Ref=
"o3
0
"
/>
</c:Object2>
</o:AssociationLink>
</c:AssociationsLinks>
<c:TargetModels>
<o:TargetModel
Id=
"o
110
"
>
<o:TargetModel
Id=
"o
97
"
>
<a:ObjectID>
34993A9A-22B6-4B54-9767-C2DEFB70391D
</a:ObjectID>
<a:Name>
MPD TP AGL
</a:Name>
<a:Code>
MPD_TP_AGL
</a:Code>
...
...
@@ -3238,7 +3010,7 @@ ATT CODE</a:History>
<o:Shortcut
Ref=
"o5"
/>
</c:SessionShortcuts>
</o:TargetModel>
<o:TargetModel
Id=
"o
111
"
>
<o:TargetModel
Id=
"o
98
"
>
<a:ObjectID>
1BC32D75-F36B-413F-A69F-4A8CC428804A
</a:ObjectID>
<a:Name>
MPD TP AGL
</a:Name>
<a:Code>
MPD_TP_AGL
</a:Code>
...
...
@@ -3246,10 +3018,10 @@ ATT CODE</a:History>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606151461
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:TargetModelURL>
file:///
E|/Nouveau dossier
/MPD TP AGL.mpd
</a:TargetModelURL>
<a:TargetModelURL>
file:///
C|/Users/quent/Documents/CDAW/projet-cdaw/AGL/Conception
/MPD TP AGL.mpd
</a:TargetModelURL>
<a:TargetModelID>
429C6A8D-7CCA-4EA9-9518-24D9C8D1C5AC
</a:TargetModelID>
<a:TargetModelClassID>
CDE44E21-9669-11D1-9914-006097355D9B
</a:TargetModelClassID>
<a:TargetModelLastModificationDate>
1606
151321
</a:TargetModelLastModificationDate>
<a:TargetModelLastModificationDate>
1606
224628
</a:TargetModelLastModificationDate>
<c:SessionShortcuts>
<o:Shortcut
Ref=
"o4"
/>
</c:SessionShortcuts>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment