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
10fffb9a
Commit
10fffb9a
authored
Nov 23, 2020
by
quentin.vrel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
TP agl
parent
83b984e6
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11336 additions
and
1142 deletions
+11336
-1142
dump.sql
AGL/BD/dump.sql
+59
-121
Espace de travail.sws
AGL/Conception/Espace de travail.sws
+1
-1
MCD TP AGL.bcd
AGL/Conception/MCD TP AGL.bcd
+3132
-0
MCD TP AGL.mcd
AGL/Conception/MCD TP AGL.mcd
+467
-337
MPD TP AGL.bpd
AGL/Conception/MPD TP AGL.bpd
+7013
-0
MPD TP AGL.mpd
AGL/Conception/MPD TP AGL.mpd
+664
-683
No files found.
AGL/BD/
tables
.sql
→
AGL/BD/
dump
.sql
View file @
10fffb9a
/*==============================================================*/
/* Nom de SGBD : MySQL 5.0 */
/* Date de cration : 23/11/2020 1
7:07:49
*/
/* Date de cration : 23/11/2020 1
8:08:41
*/
/*==============================================================*/
alter
table
MJ_GAME
drop
foreign
key
FK_MJ_GAME_HOST_MJ_SALON
;
alter
table
MJ_PLAY
drop
foreign
key
FK_MJ_PLAY_PLAY_MJ_GAME
;
alter
table
MJ_PLAY
drop
foreign
key
FK_MJ_PLAY_PLAY2_MJ_USER
;
alter
table
MJ_ROUND
drop
foreign
key
FK_MJ_ROUND_COMPOSE_MJ_GAME
;
alter
table
MJ_SALON
drop
foreign
key
FK_MJ_SALON_CREATION_MJ_USER
;
alter
table
MJ_USER
drop
foreign
key
FK_MJ_USER_HAS_MJ_ROLE
;
drop
table
if
exists
MJ_BLACKLIST_IP
;
alter
table
MJ_GAME
drop
foreign
key
FK_MJ_GAME_HOST_MJ_SALON
;
drop
table
if
exists
MJ_GAME
;
alter
table
MJ_PLAY
drop
foreign
key
FK_MJ_PLAY_PLAY_MJ_GAME
;
alter
table
MJ_PLAY
drop
foreign
key
FK_MJ_PLAY_PLAY2_MJ_USER
;
drop
table
if
exists
MJ_PLAY
;
drop
table
if
exists
MJ_ROLE
;
alter
table
MJ_ROUND
drop
foreign
key
FK_MJ_ROUND_COMPOSE_MJ_GAME
;
drop
table
if
exists
MJ_ROUND
;
alter
table
MJ_SALON
drop
foreign
key
FK_MJ_SALON_CREATION_MJ_USER
;
drop
table
if
exists
MJ_SALON
;
alter
table
MJ_USER
drop
foreign
key
FK_MJ_USER_HAS_MJ_ROLE
;
drop
table
if
exists
MJ_USER
;
/*==============================================================*/
/* Table : MJ_BLACKLIST_IP */
/*==============================================================*/
...
...
@@ -71,100 +16,93 @@ create table MJ_BLACKLIST_IP
);
/*==============================================================*/
/* Table : MJ_
GAM
E */
/* Table : MJ_
ROL
E */
/*==============================================================*/
create
table
MJ_
GAM
E
create
table
MJ_
ROL
E
(
ID_GAME
int
not
null
auto_increment
comment
''
,
ID_ROOM
varchar
(
1024
)
not
null
comment
''
,
DATE_BEGIN
datetime
not
null
comment
''
,
DATE_END
datetime
comment
''
,
primary
key
(
ID_GAME
)
ID_ROLE
int
not
null
auto_increment
comment
''
,
NAME
varchar
(
15
)
not
null
comment
''
,
primary
key
(
ID_ROLE
)
);
/*==============================================================*/
/* Table : MJ_
PLAY
*/
/* Table : MJ_
USER
*/
/*==============================================================*/
create
table
MJ_
PLAY
create
table
MJ_
USER
(
ID_GAME
int
not
null
comment
''
,
ID_USER
int
not
null
comment
''
,
WIN
bool
comment
''
,
primary
key
(
ID_GAME
,
ID_USER
)
ID_USER
int
not
null
auto_increment
comment
''
,
ID_ROLE
int
comment
''
,
LOGIN
varchar
(
16
)
not
null
comment
''
,
PASWORD
char
(
40
)
not
null
comment
''
,
AVATAR
char
(
255
)
comment
''
,
LASTNAME
char
(
55
)
comment
''
,
FIRSTNAME
char
(
55
)
comment
''
,
MAIL
char
(
64
)
not
null
comment
''
,
BAN_ACCOUNT
bool
comment
''
,
LAST_IP
varchar
(
15
)
comment
''
,
primary
key
(
ID_USER
),
constraint
FK_MJ_USER_MJ_HAS_MJ_ROLE
foreign
key
(
ID_ROLE
)
references
MJ_ROLE
(
ID_ROLE
)
on
delete
restrict
on
update
restrict
);
/*==============================================================*/
/* Table : MJ_RO
LE
*/
/* Table : MJ_RO
OM
*/
/*==============================================================*/
create
table
MJ_RO
LE
create
table
MJ_RO
OM
(
ID_ROLE
int
not
null
auto_increment
comment
''
,
NAME
varchar
(
15
)
not
null
comment
''
,
primary
key
(
ID_ROLE
)
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_
ROUND
*/
/* Table : MJ_
GAME
*/
/*==============================================================*/
create
table
MJ_
ROUND
create
table
MJ_
GAME
(
ID_ROUND
int
not
null
auto_increment
comment
''
,
ID_GAME
int
not
null
comment
''
,
WIND
int
not
null
comment
''
,
SEED
int
not
null
comment
''
,
ID_GAME
int
not
null
auto_increment
comment
''
,
ID_ROOM
int
comment
''
,
DATE_BEGIN
datetime
not
null
comment
''
,
DATE_END
datetime
comment
''
,
ACTIONS
varchar
(
500
)
comment
''
,
primary
key
(
ID_ROUND
)
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
);
/*==============================================================*/
/* Table : MJ_
SALON
*/
/* Table : MJ_
PLAY
*/
/*==============================================================*/
create
table
MJ_
SALON
create
table
MJ_
PLAY
(
ID_
ROOM
int
not
null
auto_increment
comment
''
,
ID_
GAME
int
not
null
comment
''
,
ID_USER
int
not
null
comment
''
,
PRIVATE
bool
not
null
comment
''
,
DATE_BEGIN
datetime
not
null
comment
''
,
DATE_END
datetime
comment
''
,
CODE
char
(
6
)
comment
''
,
primary
key
(
ID_ROOM
)
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
,
constraint
FK_MJ_PLAY_PLAY2_MJ_USER
foreign
key
(
ID_USER
)
references
MJ_USER
(
ID_USER
)
on
delete
restrict
on
update
restrict
);
/*==============================================================*/
/* Table : MJ_
USER
*/
/* Table : MJ_
ROUND
*/
/*==============================================================*/
create
table
MJ_
USER
create
table
MJ_
ROUND
(
ID_USER
int
not
null
auto_increment
comment
''
,
ID_ROLE
int
not
null
comment
''
,
LOGIN
varchar
(
16
)
not
null
comment
''
,
PASWORD
char
(
40
)
not
null
comment
''
,
AVATAR
char
(
1024
)
comment
''
,
LASTNAME
char
(
55
)
comment
''
,
FIRSTNAME
char
(
55
)
comment
''
,
MAIL
char
(
64
)
not
null
comment
''
,
BAN_ACCOUNT
bool
comment
''
,
LAST_IP
varchar
(
15
)
comment
''
,
primary
key
(
ID_USER
)
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
);
alter
table
MJ_GAME
add
constraint
FK_MJ_GAME_HOST_MJ_SALON
foreign
key
(
ID_ROOM
)
references
MJ_SALON
(
ID_ROOM
)
on
delete
restrict
on
update
restrict
;
alter
table
MJ_PLAY
add
constraint
FK_MJ_PLAY_PLAY_MJ_GAME
foreign
key
(
ID_GAME
)
references
MJ_GAME
(
ID_GAME
)
on
delete
restrict
on
update
restrict
;
alter
table
MJ_PLAY
add
constraint
FK_MJ_PLAY_PLAY2_MJ_USER
foreign
key
(
ID_USER
)
references
MJ_USER
(
ID_USER
)
on
delete
restrict
on
update
restrict
;
alter
table
MJ_ROUND
add
constraint
FK_MJ_ROUND_COMPOSE_MJ_GAME
foreign
key
(
ID_GAME
)
references
MJ_GAME
(
ID_GAME
)
on
delete
restrict
on
update
restrict
;
alter
table
MJ_SALON
add
constraint
FK_MJ_SALON_CREATION_MJ_USER
foreign
key
(
ID_USER
)
references
MJ_USER
(
ID_USER
)
on
delete
restrict
on
update
restrict
;
alter
table
MJ_USER
add
constraint
FK_MJ_USER_HAS_MJ_ROLE
foreign
key
(
ID_ROLE
)
references
MJ_ROLE
(
ID_ROLE
)
on
delete
restrict
on
update
restrict
;
AGL/Conception/Espace de travail.sws
View file @
10fffb9a
...
...
@@ -5,7 +5,7 @@
<Workspace>
<Local
Expanded=
"Yes"
>
<Model
Expanded=
"Yes"
ID=
"{11E4B893-61D4-478A-BAF1-0F640FC9D025}"
Name=
"MCD TP AGL"
Type=
"{1E597170-9350-11D1-AB3C-0020AF71E433}"
URL=
"MCD TP AGL.mcd"
/>
<Model
Expanded=
"Yes"
ID=
"{
83E9595C-80F2-4C36-B14E-147FEB75C299}"
Name=
"MPD_TP_AGL
"
Type=
"{CDE44E21-9669-11D1-9914-006097355D9B}"
URL=
"MPD TP AGL.mpd"
/>
<Model
Expanded=
"Yes"
ID=
"{
429C6A8D-7CCA-4EA9-9518-24D9C8D1C5AC}"
Name=
"MPD TP AGL"
Selected=
"Yes
"
Type=
"{CDE44E21-9669-11D1-9914-006097355D9B}"
URL=
"MPD TP AGL.mpd"
/>
</Local>
<BrowserModule
Name=
"Repository"
/>
</Workspace>
AGL/Conception/MCD TP AGL.bcd
0 → 100644
View file @
10fffb9a
<?xml version="1.0" encoding="UTF-8"?>
<?PowerDesigner AppLocale="UTF16" ID="{11E4B893-61D4-478A-BAF1-0F640FC9D025}" Label="" LastModificationDate="1606146579" Name="MCD TP AGL" Objects="159" Symbols="30" 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"
>
<o:RootObject
Id=
"o1"
>
<a:SessionID>
00000000-0000-0000-0000-000000000000
</a:SessionID>
<c:Children>
<o:Model
Id=
"o2"
>
<a:ObjectID>
11E4B893-61D4-478A-BAF1-0F640FC9D025
</a:ObjectID>
<a:Name>
MCD TP AGL
</a:Name>
<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:PackageOptionsText>
[FolderOptions]
[FolderOptions\Conceptual Data Objects]
GenerationCheckModel=Yes
GenerationPath=
GenerationOptions=
GenerationTasks=
GenerationTargets=
GenerationSelections=
[FolderOptions\CheckModel]
[FolderOptions\CheckModel\Package]
[FolderOptions\CheckModel\Package\CheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Package\CheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Package\DefaultCheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Package\DefaultCheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Package\NotApprovedTerms]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Package\CheckPackageMissTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Package\DefaultCheckPackageMissTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Package\GenrCircularityYes]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Package\GenrCircularityNo]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Package\ShortcutUniqCode]
CheckSeverity=Yes
FixRequested=No
CheckRequested=No
[FolderOptions\CheckModel\Package\ChildShortcut]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Domaine]
[FolderOptions\CheckModel\Domaine\CheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Domaine\CheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Domaine\DefaultCheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Domaine\DefaultCheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Domaine\NotApprovedTerms]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Domaine\UniqueNom]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Domaine\UniqueCode]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Domaine\CheckNumParam]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Domaine\CheckPrecSupLng]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Domaine\CheckUndefDttp]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Domaine\CheckOtherDttp]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Domaine\CheckDttpIncompatibleFormat]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Information]
[FolderOptions\CheckModel\Information\CheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Information\CheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Information\DefaultCheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Information\DefaultCheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Information\NotApprovedTerms]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Information\UniqueNom]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Information\UniqueCode]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Information\InfoNotUsed]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Information\InfoUsedSevTime]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Information\InfoDiffDomn]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Information\CheckNumParam]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Information\CheckPrecSupLng]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Information\CheckUndefDttp]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Information\CheckOtherDttp]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Information\CheckDttpIncompatibleFormat]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité]
[FolderOptions\CheckModel\Entité\CheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité\CheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité\DefaultCheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité\DefaultCheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité\NotApprovedTerms]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité\UniqueNom]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité\UniqueCode]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité\MaxLen - NAME]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité\MaxLen - CODE]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité\EnttNoAttrNo]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité\EnttNbSerials]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité\EnttNoAttrYes]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité\EmptyCollYesYes]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité\EnttSamePrnt]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité\EnttMultInhr]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité\EnttSevInhr]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité\PidtfInhrAtt]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité.Attribut d
'
entité]
[FolderOptions\CheckModel\Entité.Attribut d
'
entité\UniqueNom]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité.Attribut d
'
entité\UniqueCode]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité.Attribut d
'
entité\CheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité.Attribut d
'
entité\CheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité.Attribut d
'
entité\DefaultCheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité.Attribut d
'
entité\DefaultCheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité.Attribut d
'
entité\NotApprovedTerms]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité.Identifiant]
[FolderOptions\CheckModel\Entité.Identifiant\UniqueNom]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité.Identifiant\UniqueCode]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité.Identifiant\CheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité.Identifiant\CheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité.Identifiant\DefaultCheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité.Identifiant\DefaultCheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité.Identifiant\NotApprovedTerms]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité.Identifiant\EmptyColl - PENTCOL]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité.Identifiant\CheckIncludeColl - Entt]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Entité.Identifiant\IdtfChildPIdtf]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Relation]
[FolderOptions\CheckModel\Relation\CheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Relation\CheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Relation\DefaultCheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Relation\DefaultCheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Relation\NotApprovedTerms]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Relation\UniqueNom]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Relation\UniqueCode]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Relation\RlshReflexiveDeptYes]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Relation\RlshReflexiveDeptNo]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Relation\RlshBject]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Relation\RlshMnyMny]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Relation\RlshDepdChild]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Association]
[FolderOptions\CheckModel\Association\CheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Association\CheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Association\DefaultCheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Association\DefaultCheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Association\NotApprovedTerms]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Association\UniqueNom]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Association\UniqueCode]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Association\AsscNbLink]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Association\AsscNbIdLink1]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Association\AsscNbIdLink2]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Association\AsscIdPass]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Association\AsscBject]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Association\AsscMaxCard]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Association\AsscReflex]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Association\AsscMnyMny]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Héritage]
[FolderOptions\CheckModel\Héritage\CheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Héritage\CheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Héritage\DefaultCheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Héritage\DefaultCheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Héritage\NotApprovedTerms]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Héritage\UniqueNom]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Héritage\UniqueCode]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Héritage\EmptyColl - CHILDCOL]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Réplication]
[FolderOptions\CheckModel\Réplication\PartialReplication]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Règle de gestion]
[FolderOptions\CheckModel\Règle de gestion\CheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Règle de gestion\CheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Règle de gestion\DefaultCheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Règle de gestion\DefaultCheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Règle de gestion\NotApprovedTerms]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Règle de gestion\UniqueNom]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Règle de gestion\UniqueCode]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Règle de gestion\EmptyColl - OBJCOL]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Objet étendu]
[FolderOptions\CheckModel\Objet étendu\CheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Objet étendu\CheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Objet étendu\DefaultCheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Objet étendu\DefaultCheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Objet étendu\NotApprovedTerms]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Objet étendu\UniqueNom]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Objet étendu\UniqueCode]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Lien étendu]
[FolderOptions\CheckModel\Lien étendu\CheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Lien étendu\CheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Lien étendu\DefaultCheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Lien étendu\DefaultCheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Lien étendu\NotApprovedTerms]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Lien étendu\UniqueNom]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Lien étendu\UniqueCode]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Fichier]
[FolderOptions\CheckModel\Fichier\CheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Fichier\CheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Fichier\DefaultCheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Fichier\DefaultCheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Fichier\NotApprovedTerms]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Fichier\UniqueNom]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Fichier\CheckPathExists]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Format de données]
[FolderOptions\CheckModel\Format de données\CheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Format de données\CheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Format de données\DefaultCheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Format de données\DefaultCheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Format de données\NotApprovedTerms]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Format de données\UniqueNom]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Format de données\UniqueCode]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Format de données\CheckDataFormatNullExpression]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Zone]
[FolderOptions\CheckModel\Zone\CheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Zone\CheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Zone\DefaultCheckUseOnlyTerms]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Zone\DefaultCheckUseTermBySynonym]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Zone\NotApprovedTerms]
CheckSeverity=Yes
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Zone\UniqueNom]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
[FolderOptions\CheckModel\Zone\UniqueCode]
CheckSeverity=No
FixRequested=No
CheckRequested=Yes
</a:PackageOptionsText>
<a:ModelOptionsText>
[ModelOptions]
[ModelOptions\Conceptual options]
CaseSensitive=No
DisplayName=Yes
EnableTrans=No
UseTerm=No
EnableRequirements=No
EnableFullShortcut=Yes
SynchroCode=Yes
InfoUnique=Yes
AllowReuse=Yes
InfoAllowReuse=Yes
Notation=1
RlshUnique=Yes
DefaultDttp=
DomnCopyDttp=Yes
DomnCopyChck=No
DomnCopyRule=No
DomnCopyExat=No
DomnCopyMand=No
DttpFullName=Yes
RlshAsstTmpl=Chaque %Entity1.Name%[CRLF].if %Entity1ToEntity2RoleMandatory%[CRLF] doit[CRLF].else[CRLF] peut[CRLF].endif[CRLF].if %Entity1ToEntity2Role%[CRLF] %.L:Entity1ToEntity2Role%[CRLF].else[CRLF] avoir[CRLF].endif[CRLF].if %Entity1ToEntity2RoleMaximumCardinality%==1[CRLF].if %Entity1ToEntity2RoleMandatory%[CRLF] un(e) et un(e) seul(e)[CRLF].else[CRLF] au plus un(e)[CRLF].endif[CRLF].else[CRLF] un(e) ou plusieurs[CRLF].endif[CRLF].if (%Entity1% == %Entity2%)[CRLF] autre[CRLF].endif[CRLF] %Entity2.Name%.[CRLF]Chaque %Entity2.Name%[CRLF].if %Entity2ToEntity1RoleMandatory%[CRLF] doit[CRLF].else[CRLF] peut[CRLF].endif[CRLF].if %Entity2ToEntity1Role%[CRLF] %.L:Entity2ToEntity1Role%[CRLF].else[CRLF] avoir[CRLF].endif[CRLF].if %Entity2ToEntity1RoleMaximumCardinality%==1[CRLF].if %Entity2ToEntity1RoleMandatory%[CRLF] un(e) et un(e) seul(e)[CRLF].else[CRLF] au plus un(e)[CRLF].endif[CRLF].else[CRLF] un(e) ou plusieurs[CRLF].endif[CRLF].if (%Entity1% == %Entity2%)[CRLF] autre[CRLF].endif[CRLF] %Entity1.Name%.
RlshAsstExt=
[ModelOptions\Conceptual options\NamingOptionsTemplates]
[ModelOptions\Conceptual options\ClssNamingOptions]
[ModelOptions\Conceptual options\ClssNamingOptions\FILO]
[ModelOptions\Conceptual options\ClssNamingOptions\FILO\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
"
\/:*?
<>
|
"
AllValid=Yes
NoAccent=No
DefaultChar=_
Script=.convert_name(%Name%,
"
_
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\FILO\Code]
Template=
MaxLen=254
Case=U
ValidChar=
'
a
'
-
'
z
'
,
'
A
'
-
'
Z
'
,
'
0
'
-
'
9
'
,
"
_.
"
InvldChar=
AllValid=No
NoAccent=Yes
DefaultChar=_
Script=.convert_code(%Code%,
"
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\FRMEOBJ]
[ModelOptions\Conceptual options\ClssNamingOptions\FRMEOBJ\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=_
Script=.convert_name(%Name%,
"
_
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\FRMEOBJ\Code]
Template=
MaxLen=254
Case=U
ValidChar=
'
a
'
-
'
z
'
,
'
A
'
-
'
Z
'
,
'
0
'
-
'
9
'
,
"
_
"
InvldChar=
AllValid=No
NoAccent=Yes
DefaultChar=_
Script=.convert_code(%Code%,
"
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\FRMELNK]
[ModelOptions\Conceptual options\ClssNamingOptions\FRMELNK\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=_
Script=.convert_name(%Name%,
"
_
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\FRMELNK\Code]
Template=
MaxLen=254
Case=U
ValidChar=
'
a
'
-
'
z
'
,
'
A
'
-
'
Z
'
,
'
0
'
-
'
9
'
,
"
_
"
InvldChar=
AllValid=No
NoAccent=Yes
DefaultChar=_
Script=.convert_code(%Code%,
"
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\AREA]
[ModelOptions\Conceptual options\ClssNamingOptions\AREA\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=_
Script=.convert_name(%Name%,
"
_
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\AREA\Code]
Template=
MaxLen=254
Case=U
ValidChar=
'
a
'
-
'
z
'
,
'
A
'
-
'
Z
'
,
'
0
'
-
'
9
'
,
"
_
"
InvldChar=
AllValid=No
NoAccent=Yes
DefaultChar=_
Script=.convert_code(%Code%,
"
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\DefaultClass]
[ModelOptions\Conceptual options\ClssNamingOptions\DefaultClass\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=_
Script=.convert_name(%Name%,
"
_
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\DefaultClass\Code]
Template=
MaxLen=254
Case=U
ValidChar=
'
a
'
-
'
z
'
,
'
A
'
-
'
Z
'
,
'
0
'
-
'
9
'
,
"
_
"
InvldChar=
AllValid=No
NoAccent=Yes
DefaultChar=_
Script=.convert_code(%Code%,
"
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\CDMPCKG]
[ModelOptions\Conceptual options\ClssNamingOptions\CDMPCKG\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=_
Script=.convert_name(%Name%,
"
_
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\CDMPCKG\Code]
Template=
MaxLen=254
Case=U
ValidChar=
'
a
'
-
'
z
'
,
'
A
'
-
'
Z
'
,
'
0
'
-
'
9
'
,
"
_
"
InvldChar=
AllValid=No
NoAccent=Yes
DefaultChar=_
Script=.convert_code(%Code%,
"
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\CDMDOMN]
[ModelOptions\Conceptual options\ClssNamingOptions\CDMDOMN\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=_
Script=.convert_name(%Name%,
"
_
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\CDMDOMN\Code]
Template=
MaxLen=254
Case=U
ValidChar=
'
a
'
-
'
z
'
,
'
A
'
-
'
Z
'
,
'
0
'
-
'
9
'
,
"
_
"
InvldChar=
AllValid=No
NoAccent=Yes
DefaultChar=_
Script=.convert_code(%Code%,
"
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\INFO]
[ModelOptions\Conceptual options\ClssNamingOptions\INFO\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=_
Script=.convert_name(%Name%,
"
_
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\INFO\Code]
Template=
MaxLen=254
Case=U
ValidChar=
'
a
'
-
'
z
'
,
'
A
'
-
'
Z
'
,
'
0
'
-
'
9
'
,
"
_
"
InvldChar=
AllValid=No
NoAccent=Yes
DefaultChar=_
Script=.convert_code(%Code%,
"
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\ENTT]
[ModelOptions\Conceptual options\ClssNamingOptions\ENTT\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=_
Script=.convert_name(%Name%,
"
_
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\ENTT\Code]
Template=
MaxLen=254
Case=U
ValidChar=
'
a
'
-
'
z
'
,
'
A
'
-
'
Z
'
,
'
0
'
-
'
9
'
,
"
_
"
InvldChar=
AllValid=No
NoAccent=Yes
DefaultChar=_
Script=.convert_code(%Code%,
"
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\IDTF]
[ModelOptions\Conceptual options\ClssNamingOptions\IDTF\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=_
Script=.convert_name(%Name%,
"
_
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\IDTF\Code]
Template=
MaxLen=254
Case=U
ValidChar=
'
a
'
-
'
z
'
,
'
A
'
-
'
Z
'
,
'
0
'
-
'
9
'
,
"
_
"
InvldChar=
AllValid=No
NoAccent=Yes
DefaultChar=_
Script=.convert_code(%Code%,
"
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\RLSH]
[ModelOptions\Conceptual options\ClssNamingOptions\RLSH\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=_
Script=.convert_name(%Name%,
"
_
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\RLSH\Code]
Template=
MaxLen=254
Case=U
ValidChar=
'
a
'
-
'
z
'
,
'
A
'
-
'
Z
'
,
'
0
'
-
'
9
'
,
"
_
"
InvldChar=
AllValid=No
NoAccent=Yes
DefaultChar=_
Script=.convert_code(%Code%,
"
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\ASSC]
[ModelOptions\Conceptual options\ClssNamingOptions\ASSC\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=_
Script=.convert_name(%Name%,
"
_
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\ASSC\Code]
Template=
MaxLen=254
Case=U
ValidChar=
'
a
'
-
'
z
'
,
'
A
'
-
'
Z
'
,
'
0
'
-
'
9
'
,
"
_
"
InvldChar=
AllValid=No
NoAccent=Yes
DefaultChar=_
Script=.convert_code(%Code%,
"
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\CDMINHR]
[ModelOptions\Conceptual options\ClssNamingOptions\CDMINHR\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=_
Script=.convert_name(%Name%,
"
_
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Conceptual options\ClssNamingOptions\CDMINHR\Code]
Template=
MaxLen=254
Case=U
ValidChar=
'
a
'
-
'
z
'
,
'
A
'
-
'
Z
'
,
'
0
'
-
'
9
'
,
"
_
"
InvldChar=
AllValid=No
NoAccent=Yes
DefaultChar=_
Script=.convert_code(%Code%,
"
"
)
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Generate]
[ModelOptions\Generate\Pdm]
CheckModel=Yes
SaveLinks=Yes
NameToCode=No
BuildTrgr=No
TablePrefix=%Code%
IndxPKName=%TABLE%_PK
IndxAKName=%TABLE%_AK
IndxFKName=%REFR%_FK
IndxThreshold=
ClassPrefix=
ColnFKName=%.3:PARENT%_%COLUMN%
ColnFKNameUse=No
PreserveMode=Yes
EnableTransformations=No
ColumnPrefix=%Code%
DomainPrefix=%Code%
RulePrefix=%Code%
RefrUpdRule=Restrict
RefrDelRule=Restrict
[ModelOptions\Generate\Oom]
CheckModel=Yes
SaveLinks=Yes
NameToCode=Yes
[ModelOptions\Generate\Ldm]
CheckModel=Yes
SaveLinks=Yes
NameToCode=No
</a:ModelOptionsText>
<a:RepositoryFilename>
E:\Nouveau dossier\MCD TP AGL.mcd
</a:RepositoryFilename>
<c:GeneratedModels>
<o:Shortcut
Id=
"o3"
>
<a:ObjectID>
6B3B0CC5-518B-45EF-B538-64FFA66CC0B3
</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>
1605192781
</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:GeneratedModels>
<c:ConceptualDiagrams>
<o:ConceptualDiagram
Id=
"o4"
>
<a:ObjectID>
6B17B86F-8A2A-486A-81D6-249AB44465E8
</a:ObjectID>
<a:Name>
MCD TP AGL
</a:Name>
<a:Code>
MCD_TP_AGL
</a:Code>
<a:CreationDate>
1605186865
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606146313
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DisplayPreferences>
[DisplayPreferences]
[DisplayPreferences\CDM]
[DisplayPreferences\General]
Adjust to text=Yes
Snap Grid=Yes
Constrain Labels=Yes
Display Grid=Yes
Show Page Delimiter=Yes
Show Links intersections=Yes
Activate automatic link routing=Yes
Grid size=800
Graphic unit=2
Window color=255 255 255
Background image=
Background mode=8
Watermark image=
Watermark mode=8
Show watermark on screen=No
Gradient mode=0
Gradient end color=255 255 255
Show Swimlane=No
SwimlaneVert=Yes
TreeVert=No
CompDark=0
[DisplayPreferences\Object]
Show Icon=No
Mode=0
Trunc Length=80
Word Length=80
Word Text=!
""
#$%
&'
()*+,-./:;
<
=
>
?@[\]^_`{|}~
Shortcut IntIcon=Yes
Shortcut IntLoct=Yes
Shortcut IntFullPath=No
Shortcut IntLastPackage=Yes
Shortcut ExtIcon=Yes
Shortcut ExtLoct=No
Shortcut ExtFullPath=No
Shortcut ExtLastPackage=Yes
Shortcut ExtIncludeModl=Yes
Area.IconPicture=Yes
Area.Stereotype=Yes
Area.Comment=No
Area.TextStyle=No
Area.SubSymbols=Yes
Area_SymbolLayout=
<
Form
>
[CRLF]
<
StandardAttribute Name=
"
Icône
"
Attribute=
"
IconPicture
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
Yes
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Stéréotype
"
Attribute=
"
Stereotype
"
Prefix=
"&
lt;
&
lt;
"
Suffix=
"&
gt;
&
gt;
"
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Nom de zone
"
Attribute=
"
DisplayName
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
Yes
"
/
>
[CRLF]
<
Separator Name=
"
Séparateur
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Commentaire
"
Attribute=
"
Comment
"
Prefix=
""
Suffix=
""
Alignment=
"
LEFT
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Forcer l
&
#39;alignement en haut
"
Attribute=
"
TextStyle
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
Yes
"
/
>
[CRLF]
<
/Form
>
EObjShowStrn=Yes
ExtendedObject.Comment=No
ExtendedObject.IconPicture=No
ExtendedObject.TextStyle=No
ExtendedObject_SymbolLayout=
ELnkShowStrn=Yes
ELnkShowName=Yes
ExtendedLink_SymbolLayout=
ExtDpdShowStrn=Yes
ExtendedDependency_SymbolLayout=
<
Form
>
[CRLF]
<
Form Name=
"
Centre
"
>
[CRLF]
<
StandardAttribute Name=
"
Stéréotype
"
Attribute=
"
Stereotype
"
Prefix=
"&
lt;
&
lt;
"
Suffix=
"&
gt;
&
gt;
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
/Form
>
[CRLF]
<
Form Name=
"
Source
"
>
[CRLF]
<
/Form
>
[CRLF]
<
Form Name=
"
Destination
"
>
[CRLF]
<
/Form
>
[CRLF]
<
/Form
>
FileObject.Stereotype=No
FileObject.DisplayName=Yes
FileObject.LocationOrName=No
FileObject.IconPicture=No
FileObject.TextStyle=No
FileObject.IconMode=Yes
FileObject_SymbolLayout=
Package.Stereotype=Yes
Package.Comment=No
Package.IconPicture=No
Package.TextStyle=No
Package_SymbolLayout=
Display Model Version=Yes
Entity.Stereotype=No
Entity.Attributes=Yes
Entity.Attributes._Filter=
"
Tous les attributs
"
CDMPENTALL
Entity.Attributes._Columns=IdentifierIndicator DataType DomainOrDataType NullIndicator
Entity.Attributes._Limit=-5
Entity.Identifiers=No
Entity.Identifiers._Columns=Stereotype IdentifierIndicator
Entity.Comment=No
Entity.IconPicture=No
Entity.TextStyle=No
Entity_SymbolLayout=
<
Form
>
[CRLF]
<
StandardAttribute Name=
"
Stéréotype
"
Attribute=
"
Stereotype
"
Prefix=
"&
lt;
&
lt;
"
Suffix=
"&
gt;
&
gt;
"
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Nom
"
Attribute=
"
DisplayName
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
Yes
"
/
>
[CRLF]
<
Separator Name=
"
Séparateur
"
/
>
[CRLF]
<
StandardCollection Name=
"
Attributs
"
Collection=
"
Attributes
"
Columns=
"
Stereotype No\r\nDisplayName Yes\r\nIdentifierIndicator No
&
quot;Indicateurs d
&
#39;identifiant
&
quot;\r\nDataType No\r\nDomainOrDataType No
&
quot;Domaine ou type de données
&
quot;\r\nDomain No\r\nNullIndicator No Obligatoire
"
Filters=
"&
quot;Tous les attributs
&
quot; CDMPENTALL
&
quot;
&
quot;\r\n
&
quot;Attributs primaires
&
quot; CDMPENTPK
&
quot;\
&
quot;PIDTF \
&
quot;TRUE\
&
quot; TRUE\
&
quot;
&
quot;\r\n
&
quot;Attributs identifiants
&
quot; CDMPENTIDTF
&
quot;\
&
quot;AIDF \
&
quot;TRUE\
&
quot; TRUE\
&
quot;
&
quot;
"
HasLimit=
"
Yes
"
HideEmpty=
"
No
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardCollection Name=
"
Identifiants
"
Collection=
"
Identifiers
"
Columns=
"
Stereotype No\r\nDisplayName Yes\r\nIdentifierIndicator No
&
quot;Indicateurs d
&
#39;identifiant
&
quot;
"
HasLimit=
"
No
"
HideEmpty=
"
No
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Commentaire
"
Attribute=
"
Comment
"
Prefix=
""
Suffix=
""
Alignment=
"
LEFT
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Icône
"
Attribute=
"
IconPicture
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
Yes
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Forcer l
&
#39;alignement en haut
"
Attribute=
"
TextStyle
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
Yes
"
/
>
[CRLF]
<
/Form
>
Relationship.Entity1ToEntity2Role=Yes
Relationship.Entity2ToEntity1RoleCardinality=No
Relationship.Entity1ToEntity2RoleDominant=Yes
Relationship.Stereotype=Yes
Relationship.DisplayName=Yes
Relationship.Entity2ToEntity1Role=Yes
Relationship.Entity1ToEntity2RoleCardinality=No
Relationship.Entity2ToEntity1RoleDominant=Yes
Relationship_SymbolLayout=
<
Form
>
[CRLF]
<
Form Name=
"
Source
"
>
[CRLF]
<
StandardAttribute Name=
"
Rôle
"
Attribute=
"
Entity1ToEntity2Role
"
Prefix=
""
Suffix=
""
Caption=
"
Rôle
"
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Cardinalité
"
Attribute=
"
Entity2ToEntity1RoleCardinality
"
Prefix=
""
Suffix=
""
Caption=
"
Cardinalité
"
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Dominance
"
Attribute=
"
Entity1ToEntity2RoleDominant
"
Prefix=
""
Suffix=
""
Caption=
"
Dominance
"
Mandatory=
"
No
"
/
>
[CRLF]
<
/Form
>
[CRLF]
<
Form Name=
"
Centre
"
>
[CRLF]
<
StandardAttribute Name=
"
Stéréotype
"
Attribute=
"
Stereotype
"
Prefix=
"&
lt;
&
lt;
"
Suffix=
"&
gt;
&
gt;
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Nom
"
Attribute=
"
DisplayName
"
Prefix=
""
Suffix=
""
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
/Form
>
[CRLF]
<
Form Name=
"
Destination
"
>
[CRLF]
<
StandardAttribute Name=
"
Rôle
"
Attribute=
"
Entity2ToEntity1Role
"
Prefix=
""
Suffix=
""
Caption=
"
Rôle
"
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Cardinalité
"
Attribute=
"
Entity1ToEntity2RoleCardinality
"
Prefix=
""
Suffix=
""
Caption=
"
Cardinalité
"
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Dominance
"
Attribute=
"
Entity2ToEntity1RoleDominant
"
Prefix=
""
Suffix=
""
Caption=
"
Dominance
"
Mandatory=
"
No
"
/
>
[CRLF]
<
/Form
>
[CRLF]
<
/Form
>
Association.Stereotype=No
Association.Comment=No
Association.Attributes=Yes
Association.Attributes._Columns=Stereotype DataType
Association.Attributes._Limit=-5
Association.IconPicture=No
Association.TextStyle=No
Association_SymbolLayout=
<
Form
>
[CRLF]
<
StandardAttribute Name=
"
Stéréotype
"
Attribute=
"
Stereotype
"
Prefix=
"&
lt;
&
lt;
"
Suffix=
"&
gt;
&
gt;
"
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Nom
"
Attribute=
"
DisplayName
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
Yes
"
/
>
[CRLF]
<
Separator Name=
"
Séparateur
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Commentaire
"
Attribute=
"
Comment
"
Prefix=
""
Suffix=
""
Alignment=
"
LEFT
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardCollection Name=
"
Attributs
"
Collection=
"
Attributes
"
Columns=
"
Stereotype No\r\nDisplayName Yes\r\nDataType No\r\nDomainOrDataType No
&
quot;Domaine ou type de données
&
quot;\r\nDomain No\r\nNullIndicator No Obligatoire
"
HasLimit=
"
Yes
"
HideEmpty=
"
No
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Icône
"
Attribute=
"
IconPicture
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
Yes
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Forcer l
&
#39;alignement en haut
"
Attribute=
"
TextStyle
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
Yes
"
/
>
[CRLF]
<
/Form
>
AssociationLink.SymbolCardinality=Yes
AssociationLink.Stereotype=No
AssociationLink.Role=Yes
AssociationLink_SymbolLayout=
<
Form
>
[CRLF]
<
Form Name=
"
Source
"
>
[CRLF]
<
StandardAttribute Name=
"
Cardinalité
"
Attribute=
"
SymbolCardinality
"
Prefix=
""
Suffix=
""
Caption=
"
Cardinalité
"
Mandatory=
"
No
"
/
>
[CRLF]
<
/Form
>
[CRLF]
<
Form Name=
"
Centre
"
>
[CRLF]
<
StandardAttribute Name=
"
Stéréotype
"
Attribute=
"
Stereotype
"
Prefix=
"&
lt;
&
lt;
"
Suffix=
"&
gt;
&
gt;
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Rôle
"
Attribute=
"
Role
"
Prefix=
""
Suffix=
""
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
/Form
>
[CRLF]
<
Form Name=
"
Destination
"
>
[CRLF]
<
/Form
>
[CRLF]
<
/Form
>
Inheritance.Stereotype=Yes
Inheritance.DisplayName=Yes
Inheritance.IconPicture=No
Inheritance.TextStyle=No
Inheritance_SymbolLayout=
<
Form
>
[CRLF]
<
StandardAttribute Name=
"
Stéréotype
"
Attribute=
"
Stereotype
"
Prefix=
"&
lt;
&
lt;
"
Suffix=
"&
gt;
&
gt;
"
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Nom
"
Attribute=
"
DisplayName
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
Separator Name=
"
Séparateur
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Icône
"
Attribute=
"
IconPicture
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
Yes
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Forcer l
&
#39;alignement en haut
"
Attribute=
"
TextStyle
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
Yes
"
/
>
[CRLF]
<
/Form
>
Entity.SubSymbols=Yes
[DisplayPreferences\Symbol]
[DisplayPreferences\Symbol\AREA]
STRNFont=Arial,8,N
STRNFont color=0 0 0
DISPNAMEFont=Arial,8,N
DISPNAMEFont color=0 0 0
LABLFont=Arial,8,N
LABLFont color=0 0 0
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Width=9600
Height=8000
Brush color=253 249 234
Fill Color=Yes
Brush style=6
Brush bitmap mode=12
Brush gradient mode=16
Brush gradient color=245 230 173
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 121 98 6
Shadow color=192 192 192
Shadow=0
[DisplayPreferences\Symbol\FRMEOBJ]
STRNFont=Arial,8,N
STRNFont color=0 0 0
DISPNAMEFont=Arial,8,N
DISPNAMEFont color=0 0 0
LABLFont=Arial,8,N
LABLFont color=0 0 0
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Width=6000
Height=2000
Brush color=255 255 255
Fill Color=Yes
Brush style=6
Brush bitmap mode=12
Brush gradient mode=64
Brush gradient color=192 192 192
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 255 128 128
Shadow color=192 192 192
Shadow=0
[DisplayPreferences\Symbol\FRMELNK]
CENTERFont=Arial,8,N
CENTERFont color=0 0 0
Line style=2
Source Arrow=24
Center Arrow=24
Target Arrow=7
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Brush color=255 255 255
Fill Color=Yes
Brush style=1
Brush bitmap mode=12
Brush gradient mode=0
Brush gradient color=118 118 118
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 128 128 255
Shadow color=192 192 192
Shadow=0
[DisplayPreferences\Symbol\USRDEPD]
CENTERFont=Arial,8,N
CENTERFont color=0 0 0
Line style=2
Source Arrow=24
Center Arrow=24
Target Arrow=7
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Brush color=255 255 255
Fill Color=Yes
Brush style=1
Brush bitmap mode=12
Brush gradient mode=0
Brush gradient color=118 118 118
Brush background image=
Custom shape=
Custom text mode=0
Pen=2 0 128 0 64
Shadow color=192 192 192
Shadow=0
[DisplayPreferences\Symbol\FILO]
OBJSTRNFont=Arial,8,N
OBJSTRNFont color=0 0 0
DISPNAMEFont=Arial,8,N
DISPNAMEFont color=0 0 0
LCNMFont=Arial,8,N
LCNMFont color=0 0 0
AutoAdjustToText=Yes
Keep aspect=Yes
Keep center=Yes
Keep size=No
Width=2400
Height=2400
Brush color=255 255 255
Fill Color=No
Brush style=1
Brush bitmap mode=12
Brush gradient mode=0
Brush gradient color=118 118 118
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 0 0 255
Shadow color=192 192 192
Shadow=-1
[DisplayPreferences\Symbol\CDMPCKG]
STRNFont=Arial,8,N
STRNFont color=0 0 0
DISPNAMEFont=Arial,8,N
DISPNAMEFont color=0 0 0
LABLFont=Arial,8,N
LABLFont color=0 0 0
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Width=4800
Height=3600
Brush color=255 255 192
Fill Color=Yes
Brush style=6
Brush bitmap mode=12
Brush gradient mode=65
Brush gradient color=255 255 255
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 178 178 178
Shadow color=192 192 192
Shadow=0
[DisplayPreferences\Symbol\ENTT]
STRNFont=Arial,8,N
STRNFont color=0 0 0
DISPNAMEFont=Arial,8,N
DISPNAMEFont color=0 0 0
AttributesFont=Arial,8,N
AttributesFont color=0 0 0
EntityPrimaryAttributeFont=Arial,8,U
EntityPrimaryAttributeFont color=0 0 0
IdentifiersFont=Arial,8,N
IdentifiersFont color=0 0 0
LABLFont=Arial,8,N
LABLFont color=0 0 0
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Width=4800
Height=4000
Brush color=233 202 131
Fill Color=Yes
Brush style=6
Brush bitmap mode=12
Brush gradient mode=65
Brush gradient color=255 255 255
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 128 128 64
Shadow color=192 192 192
Shadow=0
[DisplayPreferences\Symbol\RLSH]
SOURCEFont=Arial,8,N
SOURCEFont color=0 0 0
CENTERFont=Arial,8,N
CENTERFont color=0 0 0
DESTINATIONFont=Arial,8,N
DESTINATIONFont color=0 0 0
Line style=2
Source Arrow=24
Center Arrow=24
Target Arrow=24
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Brush color=255 255 255
Fill Color=Yes
Brush style=1
Brush bitmap mode=12
Brush gradient mode=0
Brush gradient color=118 118 118
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 128 0 64
Shadow color=192 192 192
Shadow=0
[DisplayPreferences\Symbol\ASSC]
STRNFont=Arial,8,N
STRNFont color=0 0 0
DISPNAMEFont=Arial,8,N
DISPNAMEFont color=0 0 0
LABLFont=Arial,8,N
LABLFont color=0 0 0
AttributesFont=Arial,8,N
AttributesFont color=0 0 0
EntityPrimaryAttributeFont=Arial,8,U
EntityPrimaryAttributeFont color=0 0 0
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Width=4800
Height=3000
Brush color=208 208 255
Fill Color=Yes
Brush style=6
Brush bitmap mode=12
Brush gradient mode=65
Brush gradient color=255 255 255
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 128 128 255
Shadow color=192 192 192
Shadow=0
[DisplayPreferences\Symbol\LINK]
SOURCEFont=Arial,8,N
SOURCEFont color=0 0 0
CENTERFont=Arial,8,N
CENTERFont color=0 0 0
Line style=3
Source Arrow=24
Center Arrow=24
Target Arrow=24
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Brush color=255 255 255
Fill Color=Yes
Brush style=1
Brush bitmap mode=12
Brush gradient mode=0
Brush gradient color=118 118 118
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 128 128 255
Shadow color=192 192 192
Shadow=0
[DisplayPreferences\Symbol\CDMINHR]
STRNFont=Arial,8,N
STRNFont color=0 0 0
DISPNAMEFont=Arial,8,N
DISPNAMEFont color=0 0 0
AutoAdjustToText=No
Keep aspect=No
Keep center=No
Keep size=Yes
Width=1575
Height=1000
Brush color=233 202 131
Fill Color=Yes
Brush style=6
Brush bitmap mode=12
Brush gradient mode=65
Brush gradient color=255 255 255
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 128 0 0
Shadow color=192 192 192
Shadow=0
[DisplayPreferences\Symbol\LINH]
CENTERFont=Arial,8,N
CENTERFont color=0 0 0
Line style=2
Source Arrow=24
Center Arrow=24
Target Arrow=24
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Brush color=255 255 255
Fill Color=Yes
Brush style=1
Brush bitmap mode=12
Brush gradient mode=0
Brush gradient color=118 118 118
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 128 0 0
Shadow color=192 192 192
Shadow=0
[DisplayPreferences\Symbol\Free Symbol]
Free TextFont=Arial,8,N
Free TextFont color=0 0 0
Line style=2
Source Arrow=24
Center Arrow=24
Target Arrow=24
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Brush color=255 255 255
Fill Color=Yes
Brush style=1
Brush bitmap mode=12
Brush gradient mode=0
Brush gradient color=118 118 118
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 128 0 0
Shadow color=192 192 192
Shadow=0
</a:DisplayPreferences>
<a:PaperSize>
(8268, 11693)
</a:PaperSize>
<a:PageMargins>
((315,354), (433,354))
</a:PageMargins>
<a:PageOrientation>
1
</a:PageOrientation>
<a:PaperSource>
15
</a:PaperSource>
<c:Symbols>
<o:AssociationLinkSymbol
Id=
"o5"
>
<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: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=
"o6"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o7"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o8"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o9"
>
<a:CreationDate>
1605191938
</a:CreationDate>
<a:ModificationDate>
1606145981
</a:ModificationDate>
<a:Rect>
((-5200,2800), (-2474,14480))
</a:Rect>
<a:ListOfPoints>
((-3817,14080),(-4800,3200))
</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=
"o10"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o7"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o11"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o12"
>
<a:CreationDate>
1605195298
</a:CreationDate>
<a:ModificationDate>
1606144185
</a:ModificationDate>
<a:Rect>
((-31840,-8880), (-12857,-5300))
</a:Rect>
<a:ListOfPoints>
((-13257,-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=
"o6"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o13"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o14"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o15"
>
<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=
"o16"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o13"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o17"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o18"
>
<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=
"o16"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o19"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o20"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o21"
>
<a:CreationDate>
1605195299
</a:CreationDate>
<a:ModificationDate>
1606144183
</a:ModificationDate>
<a:Rect>
((-62800,5900), (-49600,18000))
</a:Rect>
<a:ListOfPoints>
((-62400,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=
"o22"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o19"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o23"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o24"
>
<a:CreationDate>
1606144161
</a:CreationDate>
<a:ModificationDate>
1606145981
</a:ModificationDate>
<a:Rect>
((-2000,5900), (8400,15600))
</a:Rect>
<a:ListOfPoints>
((-1600,15200),(8000,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=
"o10"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o25"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o26"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o27"
>
<a:CreationDate>
1606144161
</a:CreationDate>
<a:ModificationDate>
1606144175
</a:ModificationDate>
<a:Rect>
((7600,4304), (20845,6700))
</a:Rect>
<a:ListOfPoints>
((20445,4800),(8000,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=
"o28"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o25"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o29"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o30"
>
<a:CreationDate>
1606146008
</a:CreationDate>
<a:ModificationDate>
1606146008
</a:ModificationDate>
<a:Rect>
((-43600,-2800), (-32400,6800))
</a:Rect>
<a:ListOfPoints>
((-43200,-2400),(-32800,6400))
</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=
"o16"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o31"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o32"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:AssociationLinkSymbol
Id=
"o33"
>
<a:CreationDate>
1606146008
</a:CreationDate>
<a:ModificationDate>
1606146008
</a:ModificationDate>
<a:Rect>
((-33200,6000), (-22000,15600))
</a:Rect>
<a:ListOfPoints>
((-22400,15200),(-32800,6400))
</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=
"o10"
/>
</c:SourceSymbol>
<c:DestinationSymbol>
<o:AssociationSymbol
Ref=
"o31"
/>
</c:DestinationSymbol>
<c:Object>
<o:AssociationLink
Ref=
"o34"
/>
</c:Object>
</o:AssociationLinkSymbol>
<o:EntitySymbol
Id=
"o10"
>
<a:CreationDate>
1605190204
</a:CreationDate>
<a:ModificationDate>
1606145981
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-24800,12000), (2400,22400))
</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=
"o35"
/>
</c:Object>
</o:EntitySymbol>
<o:EntitySymbol
Id=
"o36"
>
<a:CreationDate>
1605190208
</a:CreationDate>
<a:ModificationDate>
1605192780
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((18400,15200), (44800,20000))
</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=
"o37"
/>
</c:Object>
</o:EntitySymbol>
<o:EntitySymbol
Id=
"o6"
>
<a:CreationDate>
1605190494
</a:CreationDate>
<a:ModificationDate>
1605192780
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-25600,-9600), (3200,-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=
"o38"
/>
</c:Object>
</o:EntitySymbol>
<o:AssociationSymbol
Id=
"o7"
>
<a:CreationDate>
1605191175
</a:CreationDate>
<a:ModificationDate>
1605191948
</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=
"o39"
/>
</c:Object>
</o:AssociationSymbol>
<o:EntitySymbol
Id=
"o16"
>
<a:CreationDate>
1605195277
</a:CreationDate>
<a:ModificationDate>
1606144182
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-56800,-6400), (-36800,-1600))
</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:EntitySymbol
Id=
"o22"
>
<a:CreationDate>
1605195287
</a:CreationDate>
<a:ModificationDate>
1606144180
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-62400,14400), (-34400,22400))
</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=
"o41"
/>
</c:Object>
</o:EntitySymbol>
<o:AssociationSymbol
Id=
"o13"
>
<a:CreationDate>
1605195298
</a:CreationDate>
<a:ModificationDate>
1606144185
</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=
"o42"
/>
</c:Object>
</o:AssociationSymbol>
<o:AssociationSymbol
Id=
"o19"
>
<a:CreationDate>
1605195299
</a:CreationDate>
<a:ModificationDate>
1606144183
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-52800,4800), (-47200,8800))
</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=
"o43"
/>
</c:Object>
</o:AssociationSymbol>
<o:EntitySymbol
Id=
"o28"
>
<a:CreationDate>
1606143730
</a:CreationDate>
<a:ModificationDate>
1606144174
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((17600,2400), (43200,6400))
</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=
"o44"
/>
</c:Object>
</o:EntitySymbol>
<o:AssociationSymbol
Id=
"o25"
>
<a:CreationDate>
1606144161
</a:CreationDate>
<a:ModificationDate>
1606144175
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((5600,4800), (10400,8800))
</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=
"o45"
/>
</c:Object>
</o:AssociationSymbol>
<o:AssociationSymbol
Id=
"o31"
>
<a:CreationDate>
1606146008
</a:CreationDate>
<a:ModificationDate>
1606146008
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-36800,4800), (-28800,8000))
</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=
"o46"
/>
</c:Object>
</o:AssociationSymbol>
</c:Symbols>
</o:ConceptualDiagram>
</c:ConceptualDiagrams>
<c:DefaultDiagram>
<o:ConceptualDiagram
Ref=
"o4"
/>
</c:DefaultDiagram>
<c:Entities>
<o:Entity
Id=
"o35"
>
<a:ObjectID>
C0DB87CD-4A5D-433C-9E87-1673EC92C0CD
</a:ObjectID>
<a:Name>
User
</a:Name>
<a:Code>
USER
</a:Code>
<a:CreationDate>
1605190204
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606146579
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Identifiers>
<o:Identifier
Id=
"o47"
>
<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>
1605190781
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Identifier.Attributes>
<o:EntityAttribute
Ref=
"o48"
/>
</c:Identifier.Attributes>
</o:Identifier>
</c:Identifiers>
<c:PrimaryIdentifier>
<o:Identifier
Ref=
"o47"
/>
</c:PrimaryIdentifier>
<c:Attributes>
<o:EntityAttribute
Id=
"o48"
>
<a:ObjectID>
86388F6F-98F6-4CFB-8C20-36A748C708C7
</a:ObjectID>
<a:CreationDate>
1605190638
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605190781
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o49"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o50"
>
<a:ObjectID>
EE38085E-1616-414F-9680-B0D9F26E93F4
</a:ObjectID>
<a:CreationDate>
1605190882
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605191444
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o51"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o52"
>
<a:ObjectID>
9EBCE180-D8FB-4757-8441-B6AD0236CFF0
</a:ObjectID>
<a:CreationDate>
1605190882
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605191444
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o53"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o54"
>
<a:ObjectID>
7E18F075-D88F-489B-AADF-4383ADCDD8A0
</a:ObjectID>
<a:CreationDate>
1605190948
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605191007
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:DataItem>
<o:DataItem
Ref=
"o55"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o56"
>
<a:ObjectID>
51C00BB9-BAA6-4BEE-B4D3-2D3C8B73BFD8
</a:ObjectID>
<a:CreationDate>
1605191361
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605191444
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:DataItem>
<o:DataItem
Ref=
"o57"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o58"
>
<a:ObjectID>
FC1B487D-20F5-4A8C-8B4C-24F456BD1332
</a:ObjectID>
<a:CreationDate>
1605191361
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605191444
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:DataItem>
<o:DataItem
Ref=
"o59"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o60"
>
<a:ObjectID>
D344DFCD-2A8C-4FC2-8430-F5199A4C58D6
</a:ObjectID>
<a:CreationDate>
1605191460
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144736
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o61"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o62"
>
<a:ObjectID>
2FAD5612-A144-4400-B69C-4A9D4A5A48B5
</a:ObjectID>
<a:CreationDate>
1605191685
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605191699
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:DataItem>
<o:DataItem
Ref=
"o63"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o64"
>
<a:ObjectID>
554CBE02-1023-4270-9F25-1EB5442E679F
</a:ObjectID>
<a:CreationDate>
1605191728
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605191747
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:DataItem>
<o:DataItem
Ref=
"o65"
/>
</c:DataItem>
</o:EntityAttribute>
</c:Attributes>
</o:Entity>
<o:Entity
Id=
"o37"
>
<a:ObjectID>
7BC6BC43-A1C0-4049-A146-327F21C82800
</a:ObjectID>
<a:Name>
Blacklist IP
</a:Name>
<a:Code>
BLACKLIST_IP
</a:Code>
<a:CreationDate>
1605190208
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605192850
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Identifiers>
<o:Identifier
Id=
"o66"
>
<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>
1605192850
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Identifier.Attributes>
<o:EntityAttribute
Ref=
"o67"
/>
</c:Identifier.Attributes>
</o:Identifier>
</c:Identifiers>
<c:PrimaryIdentifier>
<o:Identifier
Ref=
"o66"
/>
</c:PrimaryIdentifier>
<c:Attributes>
<o:EntityAttribute
Id=
"o67"
>
<a:ObjectID>
E53FB6C8-5A2F-42B5-8D5B-A59D4E4004A3
</a:ObjectID>
<a:CreationDate>
1605191535
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605192850
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o68"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o69"
>
<a:ObjectID>
3F9AAA06-C66D-483D-84B8-CCFBC7C3F581
</a:ObjectID>
<a:CreationDate>
1605191535
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605192850
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o70"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o71"
>
<a:ObjectID>
E3637996-D835-4686-A70A-6C5D7921D573
</a:ObjectID>
<a:CreationDate>
1605191535
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605192850
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o72"
/>
</c:DataItem>
</o:EntityAttribute>
</c:Attributes>
</o:Entity>
<o:Entity
Id=
"o38"
>
<a:ObjectID>
5C56259E-C0DC-4663-B810-F5B149756083
</a:ObjectID>
<a:Name>
Room
</a:Name>
<a:Code>
ROOM
</a:Code>
<a:CreationDate>
1605190494
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606143910
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Identifiers>
<o:Identifier
Id=
"o73"
>
<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=
"o74"
/>
</c:Identifier.Attributes>
</o:Identifier>
</c:Identifiers>
<c:PrimaryIdentifier>
<o:Identifier
Ref=
"o73"
/>
</c:PrimaryIdentifier>
<c:Attributes>
<o:EntityAttribute
Id=
"o74"
>
<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=
"o75"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o76"
>
<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=
"o77"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o78"
>
<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=
"o79"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o80"
>
<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=
"o81"
/>
</c:DataItem>
</o:EntityAttribute>
</c:Attributes>
</o:Entity>
<o:Entity
Id=
"o40"
>
<a:ObjectID>
74E971FE-2B4D-441F-9854-6D92BF0E9F4C
</a:ObjectID>
<a:Name>
Game
</a:Name>
<a:Code>
GAME
</a:Code>
<a:CreationDate>
1605195277
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144619
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Identifiers>
<o:Identifier
Id=
"o82"
>
<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>
1606144619
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Identifier.Attributes>
<o:EntityAttribute
Ref=
"o83"
/>
</c:Identifier.Attributes>
</o:Identifier>
</c:Identifiers>
<c:PrimaryIdentifier>
<o:Identifier
Ref=
"o82"
/>
</c:PrimaryIdentifier>
<c:Attributes>
<o:EntityAttribute
Id=
"o83"
>
<a:ObjectID>
97FDE412-E7FE-48D1-9448-9656988B5E34
</a:ObjectID>
<a:CreationDate>
1605195646
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144619
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o84"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o85"
>
<a:ObjectID>
40BC8991-D1D3-4C07-98E1-518D4BCD2A4A
</a:ObjectID>
<a:CreationDate>
1605195708
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144619
</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=
"o86"
>
<a:ObjectID>
CC273B1E-7ED5-49D8-8BA9-BC47E056B23F
</a:ObjectID>
<a:CreationDate>
1605195708
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606143956
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:DataItem>
<o:DataItem
Ref=
"o81"
/>
</c:DataItem>
</o:EntityAttribute>
</c:Attributes>
</o:Entity>
<o:Entity
Id=
"o41"
>
<a:ObjectID>
1E10A678-3CCA-40B3-8AAD-EB52B6494E7B
</a:ObjectID>
<a:Name>
Round
</a:Name>
<a:Code>
ROUND
</a:Code>
<a:CreationDate>
1605195287
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144610
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Identifiers>
<o:Identifier
Id=
"o87"
>
<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>
1606144610
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Identifier.Attributes>
<o:EntityAttribute
Ref=
"o88"
/>
</c:Identifier.Attributes>
</o:Identifier>
</c:Identifiers>
<c:PrimaryIdentifier>
<o:Identifier
Ref=
"o87"
/>
</c:PrimaryIdentifier>
<c:Attributes>
<o:EntityAttribute
Id=
"o88"
>
<a:ObjectID>
8A6E98F7-DB77-41EF-9480-DB8DE799B85B
</a:ObjectID>
<a:CreationDate>
1605195497
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144610
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o89"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o90"
>
<a:ObjectID>
297EC89E-2E4C-4A45-9A82-3FBF58DF9D63
</a:ObjectID>
<a:CreationDate>
1605195497
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144610
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o91"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o92"
>
<a:ObjectID>
18097A59-FBB4-4905-8511-68CE15CBCA25
</a:ObjectID>
<a:CreationDate>
1605195497
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144610
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o93"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o94"
>
<a:ObjectID>
35D6A3FF-ACBC-40BF-AB93-777D44D31086
</a:ObjectID>
<a:CreationDate>
1605195778
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144610
</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=
"o95"
>
<a:ObjectID>
492A7147-2ED1-445B-829B-E3498F91E195
</a:ObjectID>
<a:CreationDate>
1606143992
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144610
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:DataItem>
<o:DataItem
Ref=
"o81"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o96"
>
<a:ObjectID>
51BCEF6A-AF04-4637-BE82-28F192411997
</a:ObjectID>
<a:CreationDate>
1606144377
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144610
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:DataItem>
<o:DataItem
Ref=
"o97"
/>
</c:DataItem>
</o:EntityAttribute>
</c:Attributes>
</o:Entity>
<o:Entity
Id=
"o44"
>
<a:ObjectID>
F58A265F-2BCA-475E-BA65-AE4C1EEB64D0
</a:ObjectID>
<a:Name>
Role
</a:Name>
<a:Code>
ROLE
</a:Code>
<a:CreationDate>
1606143730
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144749
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Identifiers>
<o:Identifier
Id=
"o98"
>
<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>
1606144749
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Identifier.Attributes>
<o:EntityAttribute
Ref=
"o99"
/>
</c:Identifier.Attributes>
</o:Identifier>
</c:Identifiers>
<c:PrimaryIdentifier>
<o:Identifier
Ref=
"o98"
/>
</c:PrimaryIdentifier>
<c:Attributes>
<o:EntityAttribute
Id=
"o99"
>
<a:ObjectID>
4F15DFAC-DF69-4DBD-AC48-9C12C1A129C4
</a:ObjectID>
<a:CreationDate>
1606143733
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144749
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o100"
/>
</c:DataItem>
</o:EntityAttribute>
<o:EntityAttribute
Id=
"o101"
>
<a:ObjectID>
194D68F9-0CDD-4155-8F4B-214DD85BC305
</a:ObjectID>
<a:CreationDate>
1606143733
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144749
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:BaseAttribute.Mandatory>
1
</a:BaseAttribute.Mandatory>
<c:DataItem>
<o:DataItem
Ref=
"o102"
/>
</c:DataItem>
</o:EntityAttribute>
</c:Attributes>
</o:Entity>
</c:Entities>
<c:DataItems>
<o:DataItem
Id=
"o49"
>
<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>
1606143851
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
I
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o103"
>
<a:ObjectID>
C355AF50-3B8C-414A-948A-2D8E95A0AC01
</a:ObjectID>
<a:Name>
Admin
</a:Name>
<a:Code>
ADMIN
</a:Code>
<a:CreationDate>
1605190657
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606143851
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
BL
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o51"
>
<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>
1605190947
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
VA16
</a:DataType>
<a:Length>
16
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o53"
>
<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>
1606143851
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
A40
</a:DataType>
<a:Length>
40
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o55"
>
<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>
1605191444
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
A1024
</a:DataType>
<a:Length>
1024
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o75"
>
<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>
1606143910
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
VA1024
</a:DataType>
<a:Length>
1024
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o77"
>
<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>
1606143910
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
BL
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o57"
>
<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>
1606143851
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
A55
</a:DataType>
<a:Length>
55
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o59"
>
<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>
1606143851
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
A55
</a:DataType>
<a:Length>
55
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o61"
>
<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>
1606144736
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
A64
</a:DataType>
<a:Length>
64
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o68"
>
<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>
1605191620
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
I
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o70"
>
<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>
1605191811
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
VA15
</a:DataType>
<a:Length>
15
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o72"
>
<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>
1606143868
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
DT
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o63"
>
<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>
1606143851
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
BL
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o65"
>
<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>
1606143851
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
VA15
</a:DataType>
<a:Length>
15
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o104"
>
<a:ObjectID>
0DE827EB-2D70-4ECC-8593-24BB0FBE9A95
</a:ObjectID>
<a:Name>
victory
</a:Name>
<a:Code>
VICTORY
</a:Code>
<a:CreationDate>
1605191957
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606143989
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
BL
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o105"
>
<a:ObjectID>
2D8A2360-9EA9-4A56-9653-2D78585B5571
</a:ObjectID>
<a:Name>
Vent
</a:Name>
<a:Code>
VENT
</a:Code>
<a:CreationDate>
1605195448
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605196765
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
I
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o89"
>
<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>
1606144063
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
I
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o91"
>
<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>
1606144063
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
I
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o93"
>
<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>
1606144063
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
I
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o84"
>
<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>
1606143956
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
I
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o79"
>
<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>
1606143910
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
DT
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o81"
>
<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>
1606144063
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
DT
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o100"
>
<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>
1606144157
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
I
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o102"
>
<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>
1606144157
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
VA15
</a:DataType>
<a:Length>
15
</a:Length>
</o:DataItem>
<o:DataItem
Id=
"o106"
>
<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>
1606146049
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
BL
</a:DataType>
</o:DataItem>
<o:DataItem
Id=
"o97"
>
<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>
1606146348
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
VA500
</a:DataType>
<a:Length>
500
</a:Length>
</o:DataItem>
</c:DataItems>
<c:Associations>
<o:Association
Id=
"o39"
>
<a:ObjectID>
8A264E7E-B604-48E5-8999-D8108103C523
</a:ObjectID>
<a:Name>
Creation
</a:Name>
<a:Code>
CREATION
</a:Code>
<a:CreationDate>
1605191175
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605192222
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
</o:Association>
<o:Association
Id=
"o42"
>
<a:ObjectID>
D54FCACC-74D9-4826-8A05-3262B9E5EE71
</a:ObjectID>
<a:Name>
Host
</a:Name>
<a:Code>
HOST
</a:Code>
<a:CreationDate>
1605195298
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144097
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
</o:Association>
<o:Association
Id=
"o43"
>
<a:ObjectID>
B8F4656D-32DB-42F9-9DA8-57DF64F6A831
</a:ObjectID>
<a:Name>
Compose
</a:Name>
<a:Code>
COMPOSE
</a:Code>
<a:CreationDate>
1605195299
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144089
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
</o:Association>
<o:Association
Id=
"o45"
>
<a:ObjectID>
405F6E65-6CD2-4B13-891E-2DF33C1B3F85
</a:ObjectID>
<a:Name>
Has
</a:Name>
<a:Code>
HAS
</a:Code>
<a:CreationDate>
1606144161
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606146579
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
</o:Association>
<o:Association
Id=
"o46"
>
<a:ObjectID>
5D707833-2076-4C65-8160-C3B117410843
</a:ObjectID>
<a:Name>
Play
</a:Name>
<a:Code>
PLAY
</a:Code>
<a:CreationDate>
1606146008
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606146049
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Attributes>
<o:AssociationAttribute
Id=
"o107"
>
<a:ObjectID>
2AEDD201-92F9-42F0-86DC-D609649785BA
</a:ObjectID>
<a:CreationDate>
1606146010
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606146049
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:DataItem>
<o:DataItem
Ref=
"o106"
/>
</c:DataItem>
</o:AssociationAttribute>
</c:Attributes>
</o:Association>
</c:Associations>
<c:AssociationsLinks>
<o:AssociationLink
Id=
"o8"
>
<a:ObjectID>
18D33273-D3C4-4D09-A85D-BBB88C78F2B7
</a:ObjectID>
<a:CreationDate>
1605191936
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605192222
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Cardinality>
1,1
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o39"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o38"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o11"
>
<a:ObjectID>
557A228E-DC8B-408D-8C43-039183F4009E
</a:ObjectID>
<a:CreationDate>
1605191938
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605191938
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Cardinality>
0,n
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o39"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o35"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o14"
>
<a:ObjectID>
2FB3EB88-80F4-4BE8-8F5D-1DBB4CAD8269
</a:ObjectID>
<a:CreationDate>
1605195298
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605195298
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Cardinality>
0,n
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o42"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o38"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o17"
>
<a:ObjectID>
2042D5BE-86F7-4E6E-B5CE-D9AF7DC68F05
</a:ObjectID>
<a:CreationDate>
1605195298
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605195406
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Cardinality>
1,1
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o42"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o40"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o20"
>
<a:ObjectID>
6CEA2E5A-B1D0-41AB-8957-13C91BD0FD28
</a:ObjectID>
<a:CreationDate>
1605195299
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605196645
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Cardinality>
0,n
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o43"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o40"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o23"
>
<a:ObjectID>
0C1DF013-F25B-4974-B701-B59E000EA9B6
</a:ObjectID>
<a:CreationDate>
1605195299
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1605196638
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Cardinality>
1,1
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o43"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o41"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o26"
>
<a:ObjectID>
70936E91-DE6C-4438-B225-6A50AB700E9B
</a:ObjectID>
<a:CreationDate>
1606144161
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606146579
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Cardinality>
1,1
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o45"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o35"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o29"
>
<a:ObjectID>
3834E1CD-49CA-487F-8692-CD6FFB7DB09B
</a:ObjectID>
<a:CreationDate>
1606144161
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144161
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Cardinality>
0,n
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o45"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o44"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o32"
>
<a:ObjectID>
FA71687D-64EC-4594-A86A-67EDC63E5D65
</a:ObjectID>
<a:CreationDate>
1606146008
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606146008
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Cardinality>
0,n
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o46"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o40"
/>
</c:Object2>
</o:AssociationLink>
<o:AssociationLink
Id=
"o34"
>
<a:ObjectID>
8853FC4D-C3E3-4753-89E4-90CC2B669D14
</a:ObjectID>
<a:CreationDate>
1606146008
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606146008
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Cardinality>
0,n
</a:Cardinality>
<c:Object1>
<o:Association
Ref=
"o46"
/>
</c:Object1>
<c:Object2>
<o:Entity
Ref=
"o35"
/>
</c:Object2>
</o:AssociationLink>
</c:AssociationsLinks>
<c:TargetModels>
<o:TargetModel
Id=
"o108"
>
<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>
1606147653
</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>
1606147653
</a:TargetModelLastModificationDate>
<c:SessionShortcuts>
<o:Shortcut
Ref=
"o3"
/>
</c:SessionShortcuts>
</o:TargetModel>
</c:TargetModels>
</o:Model>
</c:Children>
</o:RootObject>
</Model>
\ No newline at end of file
AGL/Conception/MCD TP AGL.mcd
View file @
10fffb9a
<?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/MPD TP AGL.bpd
0 → 100644
View file @
10fffb9a
This source diff could not be displayed because it is too large. You can
view the blob
instead.
AGL/Conception/MPD TP AGL.mpd
View file @
10fffb9a
<?xml version="1.0" encoding="UTF-8"?>
<?PowerDesigner AppLocale="UTF16" ID="{
83E9595C-80F2-4C36-B14E-147FEB75C299}" Label="" LastModificationDate="1606147653" Name="MPD TP AGL" Objects="219" Symbols="5
3" Target="MySQL 5.0" Type="{CDE44E21-9669-11D1-9914-006097355D9B}" signature="PDM_DATA_MODEL_XML" version="16.7.1.6521"?>
<?PowerDesigner AppLocale="UTF16" ID="{
429C6A8D-7CCA-4EA9-9518-24D9C8D1C5AC}" Label="" LastModificationDate="1606151321" Name="MPD TP AGL" Objects="152" Symbols="1
3" Target="MySQL 5.0" Type="{CDE44E21-9669-11D1-9914-006097355D9B}" signature="PDM_DATA_MODEL_XML" version="16.7.1.6521"?>
<!-- Veuillez ne pas modifier ce fichier -->
<Model
xmlns:a=
"attribute"
xmlns:c=
"collection"
xmlns:o=
"object"
>
...
...
@@ -8,29 +8,16 @@
<a:SessionID>
00000000-0000-0000-0000-000000000000
</a:SessionID>
<c:Children>
<o:Model
Id=
"o2"
>
<a:ObjectID>
83E9595C-80F2-4C36-B14E-147FEB75C299
</a:ObjectID>
<a:ObjectID>
429C6A8D-7CCA-4EA9-9518-24D9C8D1C5AC
</a:ObjectID>
<a:Name>
MPD TP AGL
</a:Name>
<a:Code>
MPD_TP_AGL
</a:Code>
<a:CreationDate>
160
5192635
</a:CreationDate>
<a:CreationDate>
160
6151152
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
47580
</a:ModificationDate>
<a:ModificationDate>
16061
51321
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {11E4B893-61D4-478A-BAF1-0F640FC9D025}
DAT 1606146591
ATT FOPT
DLD {86388F6F-98F6-4CFB-8C20-36A748C708C7},{EFE090BA-67DF-4C43-80F4-FF4A74015577}
DLD {066D540F-64F7-4B95-AB3E-305F8F753535},{0B87DC3C-C2B2-4AFD-86A9-8C4CE905E5BA}
DLD {86388F6F-98F6-4CFB-8C20-36A748C708C7},{88F0FFDE-93F4-4B57-9303-7B6236F72346}
DLD {E53FB6C8-5A2F-42B5-8D5B-A59D4E4004A3},{E222FBA5-1795-4E4A-8161-59AC532661E5}
DLD {70270F99-AA11-43BF-AEA2-9F6E0916E071}
DLD {8FC2F0A3-9F51-49A6-B3E3-EAE6210E872A}
DLD {405F6E65-6CD2-4B13-891E-2DF33C1B3F85}
DLD {86388F6F-98F6-4CFB-8C20-36A748C708C7},{70936E91-DE6C-4438-B225-6A50AB700E9B}
DLD {4F15DFAC-DF69-4DBD-AC48-9C12C1A129C4},{3834E1CD-49CA-487F-8692-CD6FFB7DB09B}
DLD {0B32B4CE-9EE0-44E5-A04F-50C7A80B6DD9}
DLD {70936E91-DE6C-4438-B225-6A50AB700E9B}
DLD {3834E1CD-49CA-487F-8692-CD6FFB7DB09B}
ATT MOPT
</a:History>
DAT 1606151165
ATT FOPT
</a:History>
<a:PackageOptionsText>
[FolderOptions]
[FolderOptions\Physical Objects]
...
...
@@ -95,7 +82,7 @@ DeploymentMode=REP
[FolderOptions\Physical Objects\Database Generation]
GenScriptName=dump.sql
GenScriptName0=
GenScriptName0=
dump.sql
GenScriptName1=
GenScriptName2=
GenScriptName3=
...
...
@@ -120,7 +107,7 @@ GenSyncRmg=0
GenScriptTitle=Yes
GenScriptNamLabl=No
GenScriptQDtbs=No
GenScriptQOwnr=
Yes
GenScriptQOwnr=
No
GenScriptCase=0
GenScriptEncoding=ANSI
GenScriptNAcct=No
...
...
@@ -212,7 +199,7 @@ Permission=No
[FolderOptions\Physical Objects\Database Generation\Table
&&
Column\Table]
Create=Yes
Drop=
Yes
Drop=
No
Comment=Yes
Permission=No
...
...
@@ -239,7 +226,7 @@ Constraint declaration=No
[FolderOptions\Physical Objects\Database Generation\Table
&&
Column\Key\Primary key]
Create=Yes
Drop=
Yes
Drop=
No
Comment=Yes
[FolderOptions\Physical Objects\Database Generation\Table
&&
Column\Key\Primary key\Create]
...
...
@@ -257,15 +244,15 @@ Physical Options=Yes
[FolderOptions\Physical Objects\Database Generation\Table
&&
Column\Foreign key]
Create=Yes
Drop=
Yes
Drop=
No
Comment=Yes
[FolderOptions\Physical Objects\Database Generation\Table
&&
Column\Foreign key\Create]
Constraint declaration=
Yes
Constraint declaration=
No
[FolderOptions\Physical Objects\Database Generation\Table
&&
Column\Index]
Create=Yes
Drop=
Yes
Drop=
No
Comment=Yes
[FolderOptions\Physical Objects\Database Generation\Table
&&
Column\Index\Create]
...
...
@@ -420,8 +407,8 @@ IndxFK=Yes
IndxAK=Yes
IndxPKName=%TABLE%_PK
IndxFKName=%REFR%_FK
IndxAKName=%
AKEY
%_AK
IndxPreserve=
No
IndxAKName=%
TABLE
%_AK
IndxPreserve=
Yes
IndxThreshold=0
IndxStats=No
RefrPreserve=No
...
...
@@ -3086,7 +3073,7 @@ CheckRequested=Yes</a:PackageOptionsText>
[ModelOptions\Physical Objects]
CaseSensitive=No
DisplayName=
No
DisplayName=
Yes
EnableTrans=No
UseTerm=No
EnableRequirements=No
...
...
@@ -3801,12 +3788,12 @@ PhysOpts=</a:ModelOptionsText>
<a:RepositoryFilename>
E:\Nouveau dossier\MPD TP AGL.mpd
</a:RepositoryFilename>
<c:GenerationOrigins>
<o:Shortcut
Id=
"o3"
>
<a:ObjectID>
0564F823-B1C0-47B8-BA23-D6ABC7E32EE2
</a:ObjectID>
<a:ObjectID>
7DB483D2-F986-4949-8681-0C31B370681A
</a:ObjectID>
<a:Name>
MCD TP AGL
</a:Name>
<a:Code>
MCD_TP_AGL
</a:Code>
<a:CreationDate>
16061
46591
</a:CreationDate>
<a:CreationDate>
16061
51166
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46591
</a:ModificationDate>
<a:ModificationDate>
16061
51166
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:TargetStereotype/>
<a:TargetID>
11E4B893-61D4-478A-BAF1-0F640FC9D025
</a:TargetID>
...
...
@@ -3815,12 +3802,12 @@ PhysOpts=</a:ModelOptionsText>
</c:GenerationOrigins>
<c:DBMS>
<o:Shortcut
Id=
"o4"
>
<a:ObjectID>
DE81622B-D328-4A17-A0B6-691840DBA020
</a:ObjectID>
<a:ObjectID>
7B5AAFC0-DE93-4154-9365-DE87D3B6F004
</a:ObjectID>
<a:Name>
MySQL 5.0
</a:Name>
<a:Code>
MYSQL50
</a:Code>
<a:CreationDate>
160
5192675
</a:CreationDate>
<a:CreationDate>
160
6151152
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192675
</a:ModificationDate>
<a:ModificationDate>
160
6151152
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:TargetStereotype/>
<a:TargetID>
F4F16ECD-F2F1-4006-AF6F-638D5C65F35E
</a:TargetID>
...
...
@@ -3829,19 +3816,15 @@ PhysOpts=</a:ModelOptionsText>
</c:DBMS>
<c:PhysicalDiagrams>
<o:PhysicalDiagram
Id=
"o5"
>
<a:ObjectID>
12039D74-7107-4025-A1E1-092C853CD64E
</a:ObjectID>
<a:Name>
M
P
D TP AGL
</a:Name>
<a:Code>
M
P
D_TP_AGL
</a:Code>
<a:CreationDate>
160
5192780
</a:CreationDate>
<a:ObjectID>
0FE4CA65-7BEF-4478-B9E1-CA4397B477A5
</a:ObjectID>
<a:Name>
M
C
D TP AGL
</a:Name>
<a:Code>
M
C
D_TP_AGL
</a:Code>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
47580
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {6B17B86F-8A2A-486A-81D6-249AB44465E8}
DAT 1605192781
ATT DIAGNAME
ATT DISPNAME
ATT CODE
ATT DPRF
</a:History>
DAT 1606151165
</a:History>
<a:DisplayPreferences>
[DisplayPreferences]
[DisplayPreferences\PDM]
...
...
@@ -3894,10 +3877,10 @@ EObjShowStrn=Yes
ExtendedObject.Comment=No
ExtendedObject.IconPicture=No
ExtendedObject.TextStyle=No
ExtendedObject_SymbolLayout=
<
Form
>
[CRLF]
<
StandardAttribute Name=
"
Stéréotype
"
Attribute=
"
Stereotype
"
Prefix=
"&
lt;
&
lt;
"
Suffix=
"&
gt;
&
gt;
"
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Nom de l
&
#39;objet
"
Attribute=
"
DisplayName
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
Yes
"
/
>
[CRLF]
<
Separator Name=
"
Séparateur
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Commentaire
"
Attribute=
"
Comment
"
Prefix=
""
Suffix=
""
Alignment=
"
LEFT
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Icône
"
Attribute=
"
IconPicture
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
Yes
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Forcer l
&
#39;alignement en haut
"
Attribute=
"
TextStyle
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
Yes
"
/
>
[CRLF]
<
/Form
>
ExtendedObject_SymbolLayout=
ELnkShowStrn=Yes
ELnkShowName=Yes
ExtendedLink_SymbolLayout=
<
Form
>
[CRLF]
<
Form Name=
"
Centre
"
>
[CRLF]
<
StandardAttribute Name=
"
Stéréotype
"
Attribute=
"
Stereotype
"
Prefix=
"&
lt;
&
lt;
"
Suffix=
"&
gt;
&
gt;
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Nom
"
Attribute=
"
DisplayName
"
Prefix=
""
Suffix=
""
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
/Form
>
[CRLF]
<
Form Name=
"
Source
"
>
[CRLF]
<
/Form
>
[CRLF]
<
Form Name=
"
Destination
"
>
[CRLF]
<
/Form
>
[CRLF]
<
/Form
>
ExtendedLink_SymbolLayout=
ExtDpdShowStrn=Yes
ExtendedDependency_SymbolLayout=
<
Form
>
[CRLF]
<
Form Name=
"
Centre
"
>
[CRLF]
<
StandardAttribute Name=
"
Stéréotype
"
Attribute=
"
Stereotype
"
Prefix=
"&
lt;
&
lt;
"
Suffix=
"&
gt;
&
gt;
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
/Form
>
[CRLF]
<
Form Name=
"
Source
"
>
[CRLF]
<
/Form
>
[CRLF]
<
Form Name=
"
Destination
"
>
[CRLF]
<
/Form
>
[CRLF]
<
/Form
>
FileObject.Stereotype=No
...
...
@@ -3906,12 +3889,12 @@ FileObject.LocationOrName=No
FileObject.IconPicture=No
FileObject.TextStyle=No
FileObject.IconMode=Yes
FileObject_SymbolLayout=
<
Form
>
[CRLF]
<
StandardAttribute Name=
"
Stéréotype
"
Attribute=
"
Stereotype
"
Prefix=
"&
lt;
&
lt;
"
Suffix=
"&
gt;
&
gt;
"
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
ExclusiveChoice Name=
"
Choix exclusif
"
Mandatory=
"
Yes
"
Display=
"
HorizontalRadios
"
>
[CRLF]
<
StandardAttribute Name=
"
Nom
"
Attribute=
"
DisplayName
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Emplacement
"
Attribute=
"
LocationOrName
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
/ExclusiveChoice
>
[CRLF]
<
StandardAttribute Name=
"
Icône
"
Attribute=
"
IconPicture
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
Yes
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Forcer l
&
#39;alignement en haut
"
Attribute=
"
TextStyle
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
Yes
"
/
>
[CRLF]
<
/Form
>
FileObject_SymbolLayout=
Package.Stereotype=Yes
Package.Comment=No
Package.IconPicture=No
Package.TextStyle=No
Package_SymbolLayout=
<
Form
>
[CRLF]
<
StandardAttribute Name=
"
Stéréotype
"
Attribute=
"
Stereotype
"
Prefix=
"&
lt;
&
lt;
"
Suffix=
"&
gt;
&
gt;
"
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Nom
"
Attribute=
"
DisplayName
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
Yes
"
/
>
[CRLF]
<
Separator Name=
"
Séparateur
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Commentaire
"
Attribute=
"
Comment
"
Prefix=
""
Suffix=
""
Alignment=
"
LEFT
"
Caption=
""
Mandatory=
"
No
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Icône
"
Attribute=
"
IconPicture
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
Yes
"
/
>
[CRLF]
<
StandardAttribute Name=
"
Forcer l
&
#39;alignement en haut
"
Attribute=
"
TextStyle
"
Prefix=
""
Suffix=
""
Alignment=
"
CNTR
"
Caption=
""
Mandatory=
"
Yes
"
/
>
[CRLF]
<
/Form
>
Package_SymbolLayout=
Display Model Version=Yes
Table.Stereotype=Yes
Table.DisplayName=Yes
...
...
@@ -4134,11 +4117,11 @@ Shadow=-1
[DisplayPreferences\Symbol\PDMPCKG]
STRNFont=Arial,8,N
STRNFont color=0
0
0
STRNFont color=0
, 0,
0
DISPNAMEFont=Arial,8,N
DISPNAMEFont color=0
0
0
DISPNAMEFont color=0
, 0,
0
LABLFont=Arial,8,N
LABLFont color=0
0
0
LABLFont color=0
, 0,
0
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
...
...
@@ -4541,10 +4524,9 @@ Shadow=0
<a:PaperSource>
15
</a:PaperSource>
<c:Symbols>
<o:ReferenceSymbol
Id=
"o6"
>
<a:ModificationDate>
1606147052
</a:ModificationDate>
<a:CenterTextOffset>
(800, 7198)
</a:CenterTextOffset>
<a:Rect>
((-21231,2800), (-6531,16400))
</a:Rect>
<a:ListOfPoints>
((-13942,3200),(-14681,3200),(-14681,16000))
</a:ListOfPoints>
<a:ModificationDate>
1606151170
</a:ModificationDate>
<a:Rect>
((-23625,-3600), (-8775,11600))
</a:Rect>
<a:ListOfPoints>
((-16200,-3200),(-16200,11200))
</a:ListOfPoints>
<a:CornerStyle>
2
</a:CornerStyle>
<a:ArrowStyle>
1
</a:ArrowStyle>
<a:LineColor>
16744576
</a:LineColor>
...
...
@@ -4552,7 +4534,6 @@ Shadow=0
<a:FontList>
CENTER 0 Arial,8,N
SOURCE 0 Arial,8,N
DESTINATION 0 Arial,8,N
</a:FontList>
<a:AutomaticRoutingState>
1
</a:AutomaticRoutingState>
<c:SourceSymbol>
<o:TableSymbol
Ref=
"o7"
/>
</c:SourceSymbol>
...
...
@@ -4564,9 +4545,9 @@ DESTINATION 0 Arial,8,N</a:FontList>
</c:Object>
</o:ReferenceSymbol>
<o:ReferenceSymbol
Id=
"o10"
>
<a:ModificationDate>
16061
46591
</a:ModificationDate>
<a:Rect>
((-
39600,-4158), (-14000,-2488
))
</a:Rect>
<a:ListOfPoints>
((-
39200,-3533),(-14400,-3533
))
</a:ListOfPoints>
<a:ModificationDate>
16061
51170
</a:ModificationDate>
<a:Rect>
((-
41200,-4425), (-22000,-2755
))
</a:Rect>
<a:ListOfPoints>
((-
40800,-3800),(-22400,-3800
))
</a:ListOfPoints>
<a:CornerStyle>
2
</a:CornerStyle>
<a:ArrowStyle>
1
</a:ArrowStyle>
<a:LineColor>
16744576
</a:LineColor>
...
...
@@ -4585,9 +4566,8 @@ DESTINATION 0 Arial,8,N</a:FontList>
</c:Object>
</o:ReferenceSymbol>
<o:ReferenceSymbol
Id=
"o13"
>
<a:ModificationDate>
1606146591
</a:ModificationDate>
<a:Rect>
((-53766,-1200), (-38766,14800))
</a:Rect>
<a:ListOfPoints>
((-46266,14400),(-46266,-800))
</a:ListOfPoints>
<a:Rect>
((-55112,-3850), (-39138,19200))
</a:Rect>
<a:ListOfPoints>
((-48000,18800),(-48000,6800),(-46250,6800),(-46250,-3450))
</a:ListOfPoints>
<a:CornerStyle>
2
</a:CornerStyle>
<a:ArrowStyle>
1
</a:ArrowStyle>
<a:LineColor>
16744576
</a:LineColor>
...
...
@@ -4606,10 +4586,9 @@ DESTINATION 0 Arial,8,N</a:FontList>
</c:Object>
</o:ReferenceSymbol>
<o:ReferenceSymbol
Id=
"o16"
>
<a:ModificationDate>
1606147080
</a:ModificationDate>
<a:CenterTextOffset>
(12800, -2)
</a:CenterTextOffset>
<a:Rect>
((-15653,14375), (7723,17800))
</a:Rect>
<a:ListOfPoints>
((-15253,17400),(-15253,15000),(7323,15000))
</a:ListOfPoints>
<a:ModificationDate>
1606151174
</a:ModificationDate>
<a:Rect>
((-17237,575), (2800,11600))
</a:Rect>
<a:ListOfPoints>
((-10600,11200),(-10600,1200),(2400,1200))
</a:ListOfPoints>
<a:CornerStyle>
2
</a:CornerStyle>
<a:ArrowStyle>
1
</a:ArrowStyle>
<a:LineColor>
16744576
</a:LineColor>
...
...
@@ -4617,7 +4596,6 @@ DESTINATION 0 Arial,8,N</a:FontList>
<a:FontList>
CENTER 0 Arial,8,N
SOURCE 0 Arial,8,N
DESTINATION 0 Arial,8,N
</a:FontList>
<a:AutomaticRoutingState>
3
</a:AutomaticRoutingState>
<c:SourceSymbol>
<o:TableSymbol
Ref=
"o8"
/>
</c:SourceSymbol>
...
...
@@ -4629,9 +4607,8 @@ DESTINATION 0 Arial,8,N</a:FontList>
</c:Object>
</o:ReferenceSymbol>
<o:ReferenceSymbol
Id=
"o19"
>
<a:ModificationDate>
1606146591
</a:ModificationDate>
<a:Rect>
((-43000,-3025), (-26613,6800))
</a:Rect>
<a:ListOfPoints>
((-32400,6400),(-32800,-2400),(-42600,-2400))
</a:ListOfPoints>
<a:Rect>
((-43600,-3025), (-26613,6800))
</a:Rect>
<a:ListOfPoints>
((-32800,6400),(-32800,-2400),(-43200,-2400))
</a:ListOfPoints>
<a:CornerStyle>
3
</a:CornerStyle>
<a:ArrowStyle>
1
</a:ArrowStyle>
<a:LineColor>
16744576
</a:LineColor>
...
...
@@ -4650,9 +4627,8 @@ DESTINATION 0 Arial,8,N</a:FontList>
</c:Object>
</o:ReferenceSymbol>
<o:ReferenceSymbol
Id=
"o22"
>
<a:ModificationDate>
1606147052
</a:ModificationDate>
<a:Rect>
((-38950,6150), (-9867,17916))
</a:Rect>
<a:ListOfPoints>
((-32238,6550),(-32650,17200),(-10267,17385))
</a:ListOfPoints>
<a:Rect>
((-38950,6150), (-10250,17975))
</a:Rect>
<a:ListOfPoints>
((-32650,6550),(-32650,17350),(-10650,17350))
</a:ListOfPoints>
<a:CornerStyle>
3
</a:CornerStyle>
<a:ArrowStyle>
1
</a:ArrowStyle>
<a:LineColor>
16744576
</a:LineColor>
...
...
@@ -4671,9 +4647,8 @@ DESTINATION 0 Arial,8,N</a:FontList>
</c:Object>
</o:ReferenceSymbol>
<o:TableSymbol
Id=
"o8"
>
<a:ModificationDate>
1606147580
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-
21600,16000), (-8000,280
00))
</a:Rect>
<a:Rect>
((-
16800,11200), (-4800,232
00))
</a:Rect>
<a:LineColor>
4227200
</a:LineColor>
<a:FillColor>
8637161
</a:FillColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
...
...
@@ -4695,9 +4670,9 @@ LABL 0 Arial,8,N</a:FontList>
</c:Object>
</o:TableSymbol>
<o:TableSymbol
Id=
"o25"
>
<a:ModificationDate>
16061
47580
</a:ModificationDate>
<a:ModificationDate>
16061
51175
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((
5600,24800), (19200,296
00))
</a:Rect>
<a:Rect>
((
0,14400), (11200,192
00))
</a:Rect>
<a:LineColor>
4227200
</a:LineColor>
<a:FillColor>
8637161
</a:FillColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
...
...
@@ -4719,9 +4694,9 @@ LABL 0 Arial,8,N</a:FontList>
</c:Object>
</o:TableSymbol>
<o:TableSymbol
Id=
"o7"
>
<a:ModificationDate>
16061
4758
0
</a:ModificationDate>
<a:ModificationDate>
16061
5117
0
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-
14400,-4800), (-2400,
3200))
</a:Rect>
<a:Rect>
((-
22400,-10400), (-11200,-
3200))
</a:Rect>
<a:LineColor>
4227200
</a:LineColor>
<a:FillColor>
8637161
</a:FillColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
...
...
@@ -4743,9 +4718,8 @@ LABL 0 Arial,8,N</a:FontList>
</c:Object>
</o:TableSymbol>
<o:TableSymbol
Id=
"o11"
>
<a:ModificationDate>
1606147580
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-52
800,-6400), (-392
00,-800))
</a:Rect>
<a:Rect>
((-52
000,-6400), (-408
00,-800))
</a:Rect>
<a:LineColor>
4227200
</a:LineColor>
<a:FillColor>
8637161
</a:FillColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
...
...
@@ -4767,9 +4741,8 @@ LABL 0 Arial,8,N</a:FontList>
</c:Object>
</o:TableSymbol>
<o:TableSymbol
Id=
"o14"
>
<a:ModificationDate>
1606147580
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-5
2000,14400), (-38
400,23200))
</a:Rect>
<a:Rect>
((-5
3600,14400), (-42
400,23200))
</a:Rect>
<a:LineColor>
4227200
</a:LineColor>
<a:FillColor>
8637161
</a:FillColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
...
...
@@ -4791,9 +4764,9 @@ LABL 0 Arial,8,N</a:FontList>
</c:Object>
</o:TableSymbol>
<o:TableSymbol
Id=
"o17"
>
<a:ModificationDate>
16061
47580
</a:ModificationDate>
<a:ModificationDate>
16061
51174
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((
5600,12800), (16800,168
00))
</a:Rect>
<a:Rect>
((
2400,-800), (12800,32
00))
</a:Rect>
<a:LineColor>
4227200
</a:LineColor>
<a:FillColor>
8637161
</a:FillColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
...
...
@@ -4815,9 +4788,8 @@ LABL 0 Arial,8,N</a:FontList>
</c:Object>
</o:TableSymbol>
<o:TableSymbol
Id=
"o20"
>
<a:ModificationDate>
1606147580
</a:ModificationDate>
<a:IconMode>
-1
</a:IconMode>
<a:Rect>
((-37600,4000), (-2
72
00,8800))
</a:Rect>
<a:Rect>
((-37600,4000), (-2
80
00,8800))
</a:Rect>
<a:LineColor>
16744576
</a:LineColor>
<a:FillColor>
16765136
</a:FillColor>
<a:ShadowColor>
12632256
</a:ShadowColor>
...
...
@@ -4846,165 +4818,173 @@ LABL 0 Arial,8,N</a:FontList>
</c:DefaultDiagram>
<c:Tables>
<o:Table
Id=
"o24"
>
<a:ObjectID>
3D05CB82-C209-4E88-B2A1-4D4953BC7A7
0
</a:ObjectID>
<a:ObjectID>
986CD1BF-07DD-4FB8-94AD-BA833D28FCF
0
</a:ObjectID>
<a:Name>
User
</a:Name>
<a:Code>
MJ_USER
</a:Code>
<a:CreationDate>
160
5192780
</a:CreationDate>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
47546
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {C0DB87CD-4A5D-433C-9E87-1673EC92C0CD}
DAT 160
5192781
ATT CODE
</a:History>
DAT 160
6151165
ORG {3D05CB82-C209-4E88-B2A1-4D4953BC7A70}
</a:History>
<a:TotalSavingCurrency/>
<c:Columns>
<o:Column
Id=
"o32"
>
<a:ObjectID>
F24E451E-9E54-4575-9FFA-5AE5B10C8C2F
</a:ObjectID>
<a:ObjectID>
E0608088-5137-4F50-8B29-F4F5325795E2
</a:ObjectID>
<a:Name>
id user
</a:Name>
<a:Code>
ID_USER
</a:Code>
<a:CreationDate>
160
5192780
</a:CreationDate>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44891
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {86388F6F-98F6-4CFB-8C20-36A748C708C7}
DAT 160
5192781
ATT IDNT
</a:History>
DAT 160
6151165
ORG {F24E451E-9E54-4575-9FFA-5AE5B10C8C2F}
</a:History>
<a:DataType>
int
</a:DataType>
<a:Identity>
1
</a:Identity>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
</o:Column>
<o:Column
Id=
"o33"
>
<a:ObjectID>
E46C0DD8-FAB8-44D6-A6F6-69362BD87BF5
</a:ObjectID>
<a:ObjectID>
DDB6FBEF-47B1-4412-860D-25F1A7B6C781
</a:ObjectID>
<a:Name>
id role
</a:Name>
<a:Code>
ID_ROLE
</a:Code>
<a:CreationDate>
16061
46588
</a:CreationDate>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46591
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {4F15DFAC-DF69-4DBD-AC48-9C12C1A129C4},{405F6E65-6CD2-4B13-891E-2DF33C1B3F85}
DAT 16061
46588
</a:History>
DAT 16061
51165
</a:History>
<a:DataType>
int
</a:DataType>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
<a:AutoMigrated>
1
</a:AutoMigrated>
</o:Column>
<o:Column
Id=
"o34"
>
<a:ObjectID>
F891E419-2C90-46BA-9A46-D66FE1ABB10E
</a:ObjectID>
<a:ObjectID>
966447CF-D84D-4B8D-AD00-0161DCA371C6
</a:ObjectID>
<a:Name>
login
</a:Name>
<a:Code>
LOGIN
</a:Code>
<a:CreationDate>
160
5192780
</a:CreationDate>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192780
</a:ModificationDate>
<a:ModificationDate>
160
6151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {EE38085E-1616-414F-9680-B0D9F26E93F4}
DAT 1605192781
</a:History>
DAT 1606151165
ORG {F891E419-2C90-46BA-9A46-D66FE1ABB10E}
</a:History>
<a:DataType>
varchar(16)
</a:DataType>
<a:Length>
16
</a:Length>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
</o:Column>
<o:Column
Id=
"o35"
>
<a:ObjectID>
A6DC2D35-72B9-41C4-AFCF-E183E95EBFF7
</a:ObjectID>
<a:ObjectID>
68D7EBA7-2944-4F83-9B06-06AF42BBB0EF
</a:ObjectID>
<a:Name>
pasword
</a:Name>
<a:Code>
PASWORD
</a:Code>
<a:CreationDate>
160
5192780
</a:CreationDate>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {9EBCE180-D8FB-4757-8441-B6AD0236CFF0}
DAT 1605192781
</a:History>
DAT 1606151165
ORG {A6DC2D35-72B9-41C4-AFCF-E183E95EBFF7}
</a:History>
<a:DataType>
char(40)
</a:DataType>
<a:Length>
40
</a:Length>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
</o:Column>
<o:Column
Id=
"o36"
>
<a:ObjectID>
28643B4E-9530-4B63-A9F3-04852DACB2BD
</a:ObjectID>
<a:ObjectID>
A3772D8C-1EB0-404E-9175-23B9143BF883
</a:ObjectID>
<a:Name>
avatar
</a:Name>
<a:Code>
AVATAR
</a:Code>
<a:CreationDate>
160
5192780
</a:CreationDate>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192780
</a:ModificationDate>
<a:ModificationDate>
160
6151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {7E18F075-D88F-489B-AADF-4383ADCDD8A0}
DAT 1605192781
</a:History>
<a:DataType>
char(1024)
</a:DataType>
<a:Length>
1024
</a:Length>
DAT 1606151165
ORG {28643B4E-9530-4B63-A9F3-04852DACB2BD}
</a:History>
<a:DataType>
char(255)
</a:DataType>
<a:Length>
255
</a:Length>
</o:Column>
<o:Column
Id=
"o37"
>
<a:ObjectID>
51E050B4-A5A4-4D9F-9E06-99001EB9B2A4
</a:ObjectID>
<a:ObjectID>
CD7AA77E-C87D-4C9D-A7AE-E052010A532D
</a:ObjectID>
<a:Name>
lastname
</a:Name>
<a:Code>
LASTNAME
</a:Code>
<a:CreationDate>
160
5192780
</a:CreationDate>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {51C00BB9-BAA6-4BEE-B4D3-2D3C8B73BFD8}
DAT 1605192781
</a:History>
DAT 1606151165
ORG {51E050B4-A5A4-4D9F-9E06-99001EB9B2A4}
</a:History>
<a:DataType>
char(55)
</a:DataType>
<a:Length>
55
</a:Length>
</o:Column>
<o:Column
Id=
"o38"
>
<a:ObjectID>
2C776292-0095-4E1E-B392-D976B6B884E4
</a:ObjectID>
<a:ObjectID>
B5CBD2E6-E8DC-4D55-8237-990CAA63385A
</a:ObjectID>
<a:Name>
firstname
</a:Name>
<a:Code>
FIRSTNAME
</a:Code>
<a:CreationDate>
160
5192780
</a:CreationDate>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {FC1B487D-20F5-4A8C-8B4C-24F456BD1332}
DAT 1605192781
</a:History>
DAT 1606151165
ORG {2C776292-0095-4E1E-B392-D976B6B884E4}
</a:History>
<a:DataType>
char(55)
</a:DataType>
<a:Length>
55
</a:Length>
</o:Column>
<o:Column
Id=
"o39"
>
<a:ObjectID>
D680331A-6D5B-47CE-ACBD-64D2567C9FA0
</a:ObjectID>
<a:ObjectID>
37A3D315-43F6-47C5-9255-4C5BF1F24ED2
</a:ObjectID>
<a:Name>
mail
</a:Name>
<a:Code>
MAIL
</a:Code>
<a:CreationDate>
160
5192780
</a:CreationDate>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {D344DFCD-2A8C-4FC2-8430-F5199A4C58D6}
DAT 1605192781
</a:History>
DAT 1606151165
ORG {D680331A-6D5B-47CE-ACBD-64D2567C9FA0}
</a:History>
<a:DataType>
char(64)
</a:DataType>
<a:Length>
64
</a:Length>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
</o:Column>
<o:Column
Id=
"o40"
>
<a:ObjectID>
0B653ED0-6F62-4A0B-ADC0-060A54C7F621
</a:ObjectID>
<a:ObjectID>
2B1B6588-72E9-48A6-B622-DC4C91705CFB
</a:ObjectID>
<a:Name>
ban account
</a:Name>
<a:Code>
BAN_ACCOUNT
</a:Code>
<a:CreationDate>
160
5192780
</a:CreationDate>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {2FAD5612-A144-4400-B69C-4A9D4A5A48B5}
DAT 1605192781
</a:History>
DAT 1606151165
ORG {0B653ED0-6F62-4A0B-ADC0-060A54C7F621}
</a:History>
<a:DataType>
bool
</a:DataType>
</o:Column>
<o:Column
Id=
"o41"
>
<a:ObjectID>
C1BEB4E6-D98B-4265-976E-24E4673AE1A
4
</a:ObjectID>
<a:ObjectID>
881FC4A4-AE00-4F20-A2F6-F9525473055
4
</a:ObjectID>
<a:Name>
last IP
</a:Name>
<a:Code>
LAST_IP
</a:Code>
<a:CreationDate>
160
5192780
</a:CreationDate>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {554CBE02-1023-4270-9F25-1EB5442E679F}
DAT 1605192781
</a:History>
DAT 1606151165
ORG {C1BEB4E6-D98B-4265-976E-24E4673AE1A4}
</a:History>
<a:DataType>
varchar(15)
</a:DataType>
<a:Length>
15
</a:Length>
</o:Column>
</c:Columns>
<c:Keys>
<o:Key
Id=
"o42"
>
<a:ObjectID>
BC38D29F-31B1-42FA-BD1D-A614BC546671
</a:ObjectID>
<a:ObjectID>
1DAA1A23-FB9F-48A9-B548-281FE811B450
</a:ObjectID>
<a:Name>
Identifiant_1
</a:Name>
<a:Code>
IDENTIFIANT_1
</a:Code>
<a:CreationDate>
160
5192780
</a:CreationDate>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192780
</a:ModificationDate>
<a:ModificationDate>
160
6151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {29F93A75-7941-415C-97FB-A544BE6F4C42}
DAT 1605192781
</a:History>
DAT 1606151165
ORG {BC38D29F-31B1-42FA-BD1D-A614BC546671}
</a:History>
<c:Key.Columns>
<o:Column
Ref=
"o32"
/>
</c:Key.Columns>
...
...
@@ -5012,12 +4992,12 @@ DAT 1605192781</a:History>
</c:Keys>
<c:Indexes>
<o:Index
Id=
"o43"
>
<a:ObjectID>
4647C72F-7B05-4A7D-A651-5BCA4285DFB2
</a:ObjectID>
<a:Name>
UTILISATEU
R_PK
</a:Name>
<a:Code>
UTILISATEU
R_PK
</a:Code>
<a:CreationDate>
160
5192781
</a:CreationDate>
<a:ObjectID>
75E973F1-A422-4C37-A4D2-FE50CBAC266F
</a:ObjectID>
<a:Name>
MJ_USE
R_PK
</a:Name>
<a:Code>
MJ_USE
R_PK
</a:Code>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192781
</a:ModificationDate>
<a:ModificationDate>
160
6151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Unique>
1
</a:Unique>
<c:LinkedObject>
...
...
@@ -5025,10 +5005,10 @@ DAT 1605192781</a:History>
</c:LinkedObject>
<c:IndexColumns>
<o:IndexColumn
Id=
"o44"
>
<a:ObjectID>
6C2FEB43-EE99-4B0C-BEDD-3204C3340526
</a:ObjectID>
<a:CreationDate>
160
5192781
</a:CreationDate>
<a:ObjectID>
4843CA15-1BFF-4D56-9340-410B25C295E1
</a:ObjectID>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192781
</a:ModificationDate>
<a:ModificationDate>
160
6151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Column>
<o:Column
Ref=
"o32"
/>
...
...
@@ -5040,22 +5020,22 @@ DAT 1605192781</a:History>
</c:IndexColumns>
</o:Index>
<o:Index
Id=
"o45"
>
<a:ObjectID>
93FD7CF9-611A-45C7-BF86-B32712EEED77
</a:ObjectID>
<a:Name>
HAS_FK
</a:Name>
<a:Code>
HAS_FK
</a:Code>
<a:CreationDate>
16061
46588
</a:CreationDate>
<a:ObjectID>
19A85AC2-CF5B-49B4-8CAE-D05A8281F3D1
</a:ObjectID>
<a:Name>
MJ_
HAS_FK
</a:Name>
<a:Code>
MJ_
HAS_FK
</a:Code>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46591
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:LinkedObject>
<o:Reference
Ref=
"o18"
/>
</c:LinkedObject>
<c:IndexColumns>
<o:IndexColumn
Id=
"o46"
>
<a:ObjectID>
0513CEBB-AB35-4CD0-9781-41A44AC4C5F9
</a:ObjectID>
<a:CreationDate>
16061
46588
</a:CreationDate>
<a:ObjectID>
839D8833-36FE-4E5F-A358-37321B99D271
</a:ObjectID>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46591
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Column>
<o:Column
Ref=
"o33"
/>
...
...
@@ -5072,74 +5052,75 @@ DAT 1605192781</a:History>
</c:PrimaryKey>
</o:Table>
<o:Table
Id=
"o26"
>
<a:ObjectID>
6919E64F-BB1C-4854-A928-E43BE5A36154
</a:ObjectID>
<a:ObjectID>
9E7F7BCC-7D1F-45AB-90FB-7CEA59041A81
</a:ObjectID>
<a:Name>
Blacklist IP
</a:Name>
<a:Code>
MJ_BLACKLIST_IP
</a:Code>
<a:CreationDate>
160
5192780
</a:CreationDate>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
47546
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {7BC6BC43-A1C0-4049-A146-327F21C82800}
DAT 1605192781
ATT PRIK
ATT CODE
</a:History>
DAT 1606151165
ORG {6919E64F-BB1C-4854-A928-E43BE5A36154}
</a:History>
<a:TotalSavingCurrency/>
<c:Columns>
<o:Column
Id=
"o47"
>
<a:ObjectID>
BA9A53ED-35FC-4C71-9122-0CCE0016669B
</a:ObjectID>
<a:ObjectID>
45EBD261-EA29-4712-A33C-B1633C110981
</a:ObjectID>
<a:Name>
id blacklist
</a:Name>
<a:Code>
ID_BLACKLIST
</a:Code>
<a:CreationDate>
160
5192780
</a:CreationDate>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44900
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {E53FB6C8-5A2F-42B5-8D5B-A59D4E4004A3}
DAT 160
5192781
ATT IDNT
</a:History>
DAT 160
6151165
ORG {BA9A53ED-35FC-4C71-9122-0CCE0016669B}
</a:History>
<a:DataType>
int
</a:DataType>
<a:Identity>
1
</a:Identity>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
</o:Column>
<o:Column
Id=
"o48"
>
<a:ObjectID>
5A567455-188B-47C9-9502-3BD82AF9C405
</a:ObjectID>
<a:ObjectID>
8E711793-E72D-439B-86BC-736247FF61D1
</a:ObjectID>
<a:Name>
IP
</a:Name>
<a:Code>
IP
</a:Code>
<a:CreationDate>
160
5192780
</a:CreationDate>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192902
</a:ModificationDate>
<a:ModificationDate>
160
6151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {3F9AAA06-C66D-483D-84B8-CCFBC7C3F581}
DAT 1605192781
</a:History>
DAT 1606151165
ORG {5A567455-188B-47C9-9502-3BD82AF9C405}
</a:History>
<a:DataType>
varchar(15)
</a:DataType>
<a:Length>
15
</a:Length>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
</o:Column>
<o:Column
Id=
"o49"
>
<a:ObjectID>
A49B213C-CD5A-4D01-887B-C15DDF290950
</a:ObjectID>
<a:ObjectID>
1316B6BE-82F2-4EDA-ABE9-44482395EA11
</a:ObjectID>
<a:Name>
date ban
</a:Name>
<a:Code>
DATE_BAN
</a:Code>
<a:CreationDate>
160
5192780
</a:CreationDate>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {E3637996-D835-4686-A70A-6C5D7921D573}
DAT 1605192781
</a:History>
DAT 1606151165
ORG {A49B213C-CD5A-4D01-887B-C15DDF290950}
</a:History>
<a:DataType>
datetime
</a:DataType>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
</o:Column>
</c:Columns>
<c:Keys>
<o:Key
Id=
"o50"
>
<a:ObjectID>
91EB9800-86F8-4323-B3F5-A6A6AC6314C7
</a:ObjectID>
<a:ObjectID>
28AD5A0B-6114-4DD9-B582-5A053EB81BC6
</a:ObjectID>
<a:Name>
Identifiant_1
</a:Name>
<a:Code>
IDENTIFIANT_1
</a:Code>
<a:CreationDate>
160
5192896
</a:CreationDate>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192902
</a:ModificationDate>
<a:ModificationDate>
160
6151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {8FC2F0A3-9F51-49A6-B3E3-EAE6210E872A}
DAT 160
5192896
INS COLNCOL {E53FB6C8-5A2F-42B5-8D5B-A59D4E4004A3
}
</a:History>
DAT 160
6151165
ORG {91EB9800-86F8-4323-B3F5-A6A6AC6314C7
}
</a:History>
<c:Key.Columns>
<o:Column
Ref=
"o47"
/>
</c:Key.Columns>
...
...
@@ -5147,12 +5128,12 @@ INS COLNCOL {E53FB6C8-5A2F-42B5-8D5B-A59D4E4004A3}</a:History>
</c:Keys>
<c:Indexes>
<o:Index
Id=
"o51"
>
<a:ObjectID>
47CAFB28-B373-4731-BD50-C3DB9F7425FA
</a:ObjectID>
<a:Name>
BLACKLIST_IP_PK
</a:Name>
<a:Code>
BLACKLIST_IP_PK
</a:Code>
<a:CreationDate>
160
5192896
</a:CreationDate>
<a:ObjectID>
89D3C39B-FC7F-41B0-936F-A78BD3FD2100
</a:ObjectID>
<a:Name>
MJ_
BLACKLIST_IP_PK
</a:Name>
<a:Code>
MJ_
BLACKLIST_IP_PK
</a:Code>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192902
</a:ModificationDate>
<a:ModificationDate>
160
6151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Unique>
1
</a:Unique>
<c:LinkedObject>
...
...
@@ -5160,10 +5141,10 @@ INS COLNCOL {E53FB6C8-5A2F-42B5-8D5B-A59D4E4004A3}</a:History>
</c:LinkedObject>
<c:IndexColumns>
<o:IndexColumn
Id=
"o52"
>
<a:ObjectID>
37CBC0FC-8B88-41EA-A1E9-F647E9BB1D0B
</a:ObjectID>
<a:CreationDate>
160
5192896
</a:CreationDate>
<a:ObjectID>
B323C064-F438-4958-AD2E-FA96D4EC5113
</a:ObjectID>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192902
</a:ModificationDate>
<a:ModificationDate>
160
6151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Column>
<o:Column
Ref=
"o47"
/>
...
...
@@ -5179,111 +5160,123 @@ INS COLNCOL {E53FB6C8-5A2F-42B5-8D5B-A59D4E4004A3}</a:History>
<o:Key
Ref=
"o50"
/>
</c:PrimaryKey>
</o:Table>
<o:Table
Id=
"o2
8
"
>
<a:ObjectID>
E8511CCC-DB07-441C-91B8-E9FA99FC3163
</a:ObjectID>
<a:Name>
Game
</a:Name>
<a:Code>
MJ_
GAME
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<o:Table
Id=
"o2
7
"
>
<a:ObjectID>
9872DED7-43A8-4F0A-A5A4-85115432A1AD
</a:ObjectID>
<a:Name>
Room
</a:Name>
<a:Code>
MJ_
ROOM
</a:Code>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
47546
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {74E971FE-2B4D-441F-9854-6D92BF0E9F4C}
DAT 1606144767
ATT CODE
</a:History>
<a:History>
ORG {5C56259E-C0DC-4663-B810-F5B149756083}
DAT 1606151165
</a:History>
<a:TotalSavingCurrency/>
<c:Columns>
<o:Column
Id=
"o53"
>
<a:ObjectID>
73017BF5-B626-49CB-99C3-497FD32A63A8
</a:ObjectID>
<a:Name>
id
game
</a:Name>
<a:Code>
ID_
GAME
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<a:ObjectID>
DAA89202-040F-461B-A21B-E65892D530CD
</a:ObjectID>
<a:Name>
id
room
</a:Name>
<a:Code>
ID_
ROOM
</a:Code>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44874
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {
97FDE412-E7FE-48D1-9448-9656988B5E34
}
DAT 16061
44767
ATT IDNT
</a:History>
<a:History>
ORG {
066D540F-64F7-4B95-AB3E-305F8F753535
}
DAT 16061
51165
ORG {A7263E3E-89C3-40C5-917E-C98B7CC02EC9}
</a:History>
<a:DataType>
int
</a:DataType>
<a:Identity>
1
</a:Identity>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
</o:Column>
<o:Column
Id=
"o54"
>
<a:ObjectID>
A39007F9-131C-4894-A203-7B94A41F1F53
</a:ObjectID>
<a:Name>
id
room
</a:Name>
<a:Code>
ID_
ROOM
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<a:ObjectID>
E8A98738-FAF6-4725-ADB8-2A06CEFD6120
</a:ObjectID>
<a:Name>
id
user
</a:Name>
<a:Code>
ID_
USER
</a:Code>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {066D540F-64F7-4B95-AB3E-305F8F753535},{D54FCACC-74D9-4826-8A05-3262B9E5EE71}
DAT 1606144767
</a:History>
<a:DataType>
varchar(1024)
</a:DataType>
<a:Length>
1024
</a:Length>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
<a:History>
ORG {86388F6F-98F6-4CFB-8C20-36A748C708C7},{8A264E7E-B604-48E5-8999-D8108103C523}
DAT 1606151165
</a:History>
<a:DataType>
int
</a:DataType>
<a:AutoMigrated>
1
</a:AutoMigrated>
</o:Column>
<o:Column
Id=
"o55"
>
<a:ObjectID>
02E4BE7C-F61A-4144-A8A5-52480F98D070
</a:ObjectID>
<a:ObjectID>
EC7D5EF7-B569-473C-8182-0DEEEECC4B07
</a:ObjectID>
<a:Name>
private
</a:Name>
<a:Code>
PRIVATE
</a:Code>
<a:CreationDate>
1606151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {A0C2EB5A-44CD-43A7-81DA-FC9E5A794F98}
DAT 1606151165
ORG {99A7CB8D-2C66-4C6B-8F17-C968574DE244}
</a:History>
<a:DataType>
bool
</a:DataType>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
</o:Column>
<o:Column
Id=
"o56"
>
<a:ObjectID>
A5472F1D-F543-43BD-8A1B-D7BEB6EE657E
</a:ObjectID>
<a:Name>
date begin
</a:Name>
<a:Code>
DATE_BEGIN
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {40BC8991-D1D3-4C07-98E1-518D4BCD2A4A}
DAT 1606144767
</a:History>
<a:History>
ORG {94339644-75B6-4EDC-8E57-2CD260A3DC1B}
DAT 1606151165
ORG {69270008-7024-4C1A-BD7D-6B12B6B67CFB}
</a:History>
<a:DataType>
datetime
</a:DataType>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
</o:Column>
<o:Column
Id=
"o5
6
"
>
<a:ObjectID>
8C943B7C-8714-4A94-8469-944832EBB8FA
</a:ObjectID>
<o:Column
Id=
"o5
7
"
>
<a:ObjectID>
20FF4013-3A17-49F9-B357-205A1F748FC5
</a:ObjectID>
<a:Name>
date end
</a:Name>
<a:Code>
DATE_END
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {CC273B1E-7ED5-49D8-8BA9-BC47E056B23F}
DAT 1606144767
</a:History>
<a:History>
ORG {F1355E57-0740-4281-A64D-59832B57D735}
DAT 1606151165
ORG {D9BB2801-DCAD-485E-9B4E-47CC807274C6}
</a:History>
<a:DataType>
datetime
</a:DataType>
</o:Column>
</c:Columns>
<c:Keys>
<o:Key
Id=
"o5
7
"
>
<a:ObjectID>
887CD0EA-8BAC-4F85-A789-8B0B89C48E86
</a:ObjectID>
<o:Key
Id=
"o5
8
"
>
<a:ObjectID>
9EBAE377-DDD3-491F-ABDE-AF11BD5BB94A
</a:ObjectID>
<a:Name>
Identifiant_1
</a:Name>
<a:Code>
IDENTIFIANT_1
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {CC67C69B-A78A-4149-ABDE-AE5B536D4670}
DAT 1606144767
INS COLNCOL {97FDE412-E7FE-48D1-9448-9656988B5E34}
</a:History>
<a:History>
ORG {70270F99-AA11-43BF-AEA2-9F6E0916E071}
DAT 1606151165
</a:History>
<c:Key.Columns>
<o:Column
Ref=
"o53"
/>
</c:Key.Columns>
</o:Key>
</c:Keys>
<c:Indexes>
<o:Index
Id=
"o5
8
"
>
<a:ObjectID>
B0B99A33-87E8-49C6-81DC-D9AB32098B96
</a:ObjectID>
<a:Name>
GAME
_PK
</a:Name>
<a:Code>
GAME
_PK
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<o:Index
Id=
"o5
9
"
>
<a:ObjectID>
7C581CC2-6895-4A66-A48F-0E286B60BCC8
</a:ObjectID>
<a:Name>
MJ_ROOM
_PK
</a:Name>
<a:Code>
MJ_ROOM
_PK
</a:Code>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Unique>
1
</a:Unique>
<c:LinkedObject>
<o:Key
Ref=
"o5
7
"
/>
<o:Key
Ref=
"o5
8
"
/>
</c:LinkedObject>
<c:IndexColumns>
<o:IndexColumn
Id=
"o
59
"
>
<a:ObjectID>
A5D4989D-4795-41A5-B1AD-866A84BD69C0
</a:ObjectID>
<a:CreationDate>
16061
44767
</a:CreationDate>
<o:IndexColumn
Id=
"o
60
"
>
<a:ObjectID>
BD7359AD-3298-4A40-8965-58824783336F
</a:ObjectID>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Column>
<o:Column
Ref=
"o53"
/>
...
...
@@ -5294,23 +5287,23 @@ INS COLNCOL {97FDE412-E7FE-48D1-9448-9656988B5E34}</a:History>
</o:IndexColumn>
</c:IndexColumns>
</o:Index>
<o:Index
Id=
"o6
0
"
>
<a:ObjectID>
773D0271-9F6F-4AA5-BAEA-819165D0FC96
</a:ObjectID>
<a:Name>
HOST
_FK
</a:Name>
<a:Code>
HOST
_FK
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<o:Index
Id=
"o6
1
"
>
<a:ObjectID>
16BD7D76-A290-4B68-87A0-A20F1828DA67
</a:ObjectID>
<a:Name>
MJ_CREATION
_FK
</a:Name>
<a:Code>
MJ_CREATION
_FK
</a:Code>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:LinkedObject>
<o:Reference
Ref=
"o
12
"
/>
<o:Reference
Ref=
"o
9
"
/>
</c:LinkedObject>
<c:IndexColumns>
<o:IndexColumn
Id=
"o6
1
"
>
<a:ObjectID>
92607C99-9C25-40F1-B390-EDA88A2A9B74
</a:ObjectID>
<a:CreationDate>
16061
44767
</a:CreationDate>
<o:IndexColumn
Id=
"o6
2
"
>
<a:ObjectID>
FD74E5B5-0F3B-4692-AE7E-225A4BE8A1D5
</a:ObjectID>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Column>
<o:Column
Ref=
"o54"
/>
...
...
@@ -5323,114 +5316,114 @@ INS COLNCOL {97FDE412-E7FE-48D1-9448-9656988B5E34}</a:History>
</o:Index>
</c:Indexes>
<c:PrimaryKey>
<o:Key
Ref=
"o5
7
"
/>
<o:Key
Ref=
"o5
8
"
/>
</c:PrimaryKey>
</o:Table>
<o:Table
Id=
"o
31
"
>
<a:ObjectID>
8F4773CC-B663-488F-93EF-BE73B20004C5
</a:ObjectID>
<a:Name>
Play
</a:Name>
<a:Code>
MJ_
PLAY
</a:Code>
<a:CreationDate>
16061
46428
</a:CreationDate>
<o:Table
Id=
"o
28
"
>
<a:ObjectID>
CB9FB91A-B051-48F7-8252-74D8C52ACFDA
</a:ObjectID>
<a:Name>
Game
</a:Name>
<a:Code>
MJ_
GAME
</a:Code>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
47546
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {
5D707833-2076-4C65-8160-C3B117410843
}
DAT 16061
46428
ATT CODE
</a:History>
<a:History>
ORG {
74E971FE-2B4D-441F-9854-6D92BF0E9F4C
}
DAT 16061
51165
ORG {E8511CCC-DB07-441C-91B8-E9FA99FC3163}
</a:History>
<a:TotalSavingCurrency/>
<c:Columns>
<o:Column
Id=
"o6
2
"
>
<a:ObjectID>
425C6D8C-97F6-4B4E-853C-F84124A12ED5
</a:ObjectID>
<o:Column
Id=
"o6
3
"
>
<a:ObjectID>
1CAA06A1-8BDC-40F4-92C4-249C009028BB
</a:ObjectID>
<a:Name>
id game
</a:Name>
<a:Code>
ID_GAME
</a:Code>
<a:CreationDate>
16061
46428
</a:CreationDate>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46430
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {97FDE412-E7FE-48D1-9448-9656988B5E34},{FA71687D-64EC-4594-A86A-67EDC63E5D65}
DAT 1606146428
</a:History>
<a:History>
ORG {97FDE412-E7FE-48D1-9448-9656988B5E34}
DAT 1606151165
ORG {73017BF5-B626-49CB-99C3-497FD32A63A8}
</a:History>
<a:DataType>
int
</a:DataType>
<a:Identity>
1
</a:Identity>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
<a:AutoMigrated>
1
</a:AutoMigrated>
</o:Column>
<o:Column
Id=
"o6
3
"
>
<a:ObjectID>
595B644B-342D-4EE7-94BB-AC5DA613F9A7
</a:ObjectID>
<a:Name>
id
user
</a:Name>
<a:Code>
ID_
USER
</a:Code>
<a:CreationDate>
16061
46428
</a:CreationDate>
<o:Column
Id=
"o6
4
"
>
<a:ObjectID>
FFB4F93E-3504-4DE9-B4F3-CEBA7C2E57C9
</a:ObjectID>
<a:Name>
id
room
</a:Name>
<a:Code>
ID_
ROOM
</a:Code>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46430
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {
86388F6F-98F6-4CFB-8C20-36A748C708C7},{8853FC4D-C3E3-4753-89E4-90CC2B669D14
}
DAT 16061
46428
</a:History>
<a:History>
ORG {
066D540F-64F7-4B95-AB3E-305F8F753535},{D54FCACC-74D9-4826-8A05-3262B9E5EE71
}
DAT 16061
51165
</a:History>
<a:DataType>
int
</a:DataType>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
<a:AutoMigrated>
1
</a:AutoMigrated>
</o:Column>
<o:Column
Id=
"o6
4
"
>
<a:ObjectID>
25540AD2-405E-4E70-9D31-40ACBAA47F81
</a:ObjectID>
<a:Name>
W
in
</a:Name>
<a:Code>
W
IN
</a:Code>
<a:CreationDate>
16061
46428
</a:CreationDate>
<o:Column
Id=
"o6
5
"
>
<a:ObjectID>
69B3BD3C-8A00-4D1C-A5FA-392CDA4E04D8
</a:ObjectID>
<a:Name>
date beg
in
</a:Name>
<a:Code>
DATE_BEG
IN
</a:Code>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46430
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {2AEDD201-92F9-42F0-86DC-D609649785BA}
DAT 1606146428
</a:History>
<a:DataType>
bool
</a:DataType>
<a:History>
ORG {40BC8991-D1D3-4C07-98E1-518D4BCD2A4A}
DAT 1606151165
ORG {69270008-7024-4C1A-BD7D-6B12B6B67CFB}
</a:History>
<a:DataType>
datetime
</a:DataType>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
</o:Column>
<o:Column
Id=
"o66"
>
<a:ObjectID>
BF77EBFB-B249-4193-ACBF-95CB906BE692
</a:ObjectID>
<a:Name>
date end
</a:Name>
<a:Code>
DATE_END
</a:Code>
<a:CreationDate>
1606151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {CC273B1E-7ED5-49D8-8BA9-BC47E056B23F}
DAT 1606151165
ORG {D9BB2801-DCAD-485E-9B4E-47CC807274C6}
</a:History>
<a:DataType>
datetime
</a:DataType>
</o:Column>
</c:Columns>
<c:Keys>
<o:Key
Id=
"o6
5
"
>
<a:ObjectID>
D
3151420-F4DE-4BA2-8A20-4C2600AC3AA4
</a:ObjectID>
<o:Key
Id=
"o6
7
"
>
<a:ObjectID>
D
E458CF0-945A-4A9B-B589-8219100EB496
</a:ObjectID>
<a:Name>
Identifiant_1
</a:Name>
<a:Code>
IDENTIFIANT_1
</a:Code>
<a:CreationDate>
16061
46428
</a:CreationDate>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46430
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {29F93A75-7941-415C-97FB-A544BE6F4C42}
DAT 1606146428
INS COLNCOL {97FDE412-E7FE-48D1-9448-9656988B5E34}
INS COLNCOL {86388F6F-98F6-4CFB-8C20-36A748C708C7}
</a:History>
<a:History>
ORG {CC67C69B-A78A-4149-ABDE-AE5B536D4670}
DAT 1606151165
ORG {887CD0EA-8BAC-4F85-A789-8B0B89C48E86}
</a:History>
<c:Key.Columns>
<o:Column
Ref=
"o62"
/>
<o:Column
Ref=
"o63"
/>
</c:Key.Columns>
</o:Key>
</c:Keys>
<c:Indexes>
<o:Index
Id=
"o6
6
"
>
<a:ObjectID>
50B2B6F5-D0D3-454E-ADD7-C4FA4F2059D6
</a:ObjectID>
<a:Name>
PLAY
_PK
</a:Name>
<a:Code>
PLAY
_PK
</a:Code>
<a:CreationDate>
16061
46428
</a:CreationDate>
<o:Index
Id=
"o6
8
"
>
<a:ObjectID>
821C92C7-DAE1-48D0-A1B7-04ABCEEFF4DA
</a:ObjectID>
<a:Name>
MJ_GAME
_PK
</a:Name>
<a:Code>
MJ_GAME
_PK
</a:Code>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46430
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Unique>
1
</a:Unique>
<c:LinkedObject>
<o:Key
Ref=
"o6
5
"
/>
<o:Key
Ref=
"o6
7
"
/>
</c:LinkedObject>
<c:IndexColumns>
<o:IndexColumn
Id=
"o67"
>
<a:ObjectID>
553FFDD3-53BE-4726-B09A-4B3C1EC63D7B
</a:ObjectID>
<a:CreationDate>
1606146428
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606146430
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Column>
<o:Column
Ref=
"o62"
/>
</c:Column>
<c:Elements>
<o:Column
Ref=
"o62"
/>
</c:Elements>
</o:IndexColumn>
<o:IndexColumn
Id=
"o68"
>
<a:ObjectID>
708DB18D-0C98-4A67-91A6-6BB029C8B58D
</a:ObjectID>
<a:CreationDate>
1606146428
</a:CreationDate>
<o:IndexColumn
Id=
"o69"
>
<a:ObjectID>
03677FC7-41EA-45F9-81EE-C536C1E12F05
</a:ObjectID>
<a:CreationDate>
1606151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46430
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Column>
<o:Column
Ref=
"o63"
/>
...
...
@@ -5441,186 +5434,173 @@ INS COLNCOL {86388F6F-98F6-4CFB-8C20-36A748C708C7}</a:History>
</o:IndexColumn>
</c:IndexColumns>
</o:Index>
<o:Index
Id=
"o
69
"
>
<a:ObjectID>
E
DC24D6A-4163-457F-A4FB-1EB7978EEBC3
</a:ObjectID>
<a:Name>
PLAY
_FK
</a:Name>
<a:Code>
PLAY
_FK
</a:Code>
<a:CreationDate>
16061
46428
</a:CreationDate>
<o:Index
Id=
"o
70
"
>
<a:ObjectID>
E
114323E-61F7-48A6-8FB6-67396310E209
</a:ObjectID>
<a:Name>
MJ_HOST
_FK
</a:Name>
<a:Code>
MJ_HOST
_FK
</a:Code>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46430
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:LinkedObject>
<o:Reference
Ref=
"o21"
/>
</c:LinkedObject>
<c:IndexColumns>
<o:IndexColumn
Id=
"o70"
>
<a:ObjectID>
838B522C-CCCA-42E5-8C19-D07E688E90FB
</a:ObjectID>
<a:CreationDate>
1606146428
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606146430
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Column>
<o:Column
Ref=
"o62"
/>
</c:Column>
<c:Elements>
<o:Column
Ref=
"o62"
/>
</c:Elements>
</o:IndexColumn>
</c:IndexColumns>
</o:Index>
<o:Index
Id=
"o71"
>
<a:ObjectID>
5197F749-30D8-4F72-A41D-F6F1E036623F
</a:ObjectID>
<a:Name>
PLAY2_FK
</a:Name>
<a:Code>
PLAY2_FK
</a:Code>
<a:CreationDate>
1606146428
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606146430
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:LinkedObject>
<o:Reference
Ref=
"o23"
/>
<o:Reference
Ref=
"o12"
/>
</c:LinkedObject>
<c:IndexColumns>
<o:IndexColumn
Id=
"o7
2
"
>
<a:ObjectID>
7B960BE8-EEC7-404D-9875-43D83A272372
</a:ObjectID>
<a:CreationDate>
16061
46428
</a:CreationDate>
<o:IndexColumn
Id=
"o7
1
"
>
<a:ObjectID>
44E6937B-78AF-4FB9-998F-D8E20DAD0018
</a:ObjectID>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46430
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Column>
<o:Column
Ref=
"o6
3
"
/>
<o:Column
Ref=
"o6
4
"
/>
</c:Column>
<c:Elements>
<o:Column
Ref=
"o6
3
"
/>
<o:Column
Ref=
"o6
4
"
/>
</c:Elements>
</o:IndexColumn>
</c:IndexColumns>
</o:Index>
</c:Indexes>
<c:PrimaryKey>
<o:Key
Ref=
"o6
5
"
/>
<o:Key
Ref=
"o6
7
"
/>
</c:PrimaryKey>
</o:Table>
<o:Table
Id=
"o2
7
"
>
<a:ObjectID>
12110ACB-297A-4CD9-A25F-D81BFF912199
</a:ObjectID>
<a:Name>
Salon
</a:Name>
<a:Code>
MJ_
SALON
</a:Code>
<a:CreationDate>
160
5192780
</a:CreationDate>
<o:Table
Id=
"o2
9
"
>
<a:ObjectID>
34B734EA-61A4-4974-96E4-3D00FAF15A92
</a:ObjectID>
<a:Name>
Round
</a:Name>
<a:Code>
MJ_
ROUND
</a:Code>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
47653
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {5C56259E-C0DC-4663-B810-F5B149756083}
DAT 1605192781
ATT PRIK
MOV COLNCOL
ATT NAME
ATT CODE
</a:History>
<a:History>
ORG {1E10A678-3CCA-40B3-8AAD-EB52B6494E7B}
DAT 1606151165
ORG {36DDDB23-9C26-4C79-A996-1F51A77A2FB8}
</a:History>
<a:TotalSavingCurrency/>
<c:Columns>
<o:Column
Id=
"o7
3
"
>
<a:ObjectID>
A7263E3E-89C3-40C5-917E-C98B7CC02EC9
</a:ObjectID>
<a:Name>
id ro
om
</a:Name>
<a:Code>
ID_RO
OM
</a:Code>
<a:CreationDate>
160
5192780
</a:CreationDate>
<o:Column
Id=
"o7
2
"
>
<a:ObjectID>
945F2353-DE13-40BC-86EC-7DEA66E0C666
</a:ObjectID>
<a:Name>
id ro
und
</a:Name>
<a:Code>
ID_RO
UND
</a:Code>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44883
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {066D540F-64F7-4B95-AB3E-305F8F753535}
DAT 1605192781
ATT IDNT
ATT DTTP
</a:History>
<a:History>
ORG {8A6E98F7-DB77-41EF-9480-DB8DE799B85B}
DAT 1606151165
ORG {CBCC97B0-0539-4B80-A277-D412764DF7DF}
</a:History>
<a:DataType>
int
</a:DataType>
<a:Identity>
1
</a:Identity>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
</o:Column>
<o:Column
Id=
"o73"
>
<a:ObjectID>
1CE2866D-6B95-4995-9611-A9826B95F69A
</a:ObjectID>
<a:Name>
id game
</a:Name>
<a:Code>
ID_GAME
</a:Code>
<a:CreationDate>
1606151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {97FDE412-E7FE-48D1-9448-9656988B5E34},{B8F4656D-32DB-42F9-9DA8-57DF64F6A831}
DAT 1606151165
</a:History>
<a:DataType>
int
</a:DataType>
<a:AutoMigrated>
1
</a:AutoMigrated>
</o:Column>
<o:Column
Id=
"o74"
>
<a:ObjectID>
A8ADF88D-3F5C-44E2-91B7-801F207A56A1
</a:ObjectID>
<a:Name>
id user
</a:Name>
<a:Code>
ID_USER
</a:Code>
<a:CreationDate>
160
5192781
</a:CreationDate>
<a:ObjectID>
F66892D2-633A-4444-A9AE-196CBFBAF773
</a:ObjectID>
<a:Name>
Wind
</a:Name>
<a:Code>
WIND
</a:Code>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {86388F6F-98F6-4CFB-8C20-36A748C708C7},{8A264E7E-B604-48E5-8999-D8108103C523}
DAT 1605192781
</a:History>
<a:History>
ORG {297EC89E-2E4C-4A45-9A82-3FBF58DF9D63}
DAT 1606151165
ORG {A2F81355-A5CC-4A44-8E04-D9916CCE9710}
</a:History>
<a:DataType>
int
</a:DataType>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
<a:AutoMigrated>
1
</a:AutoMigrated>
</o:Column>
<o:Column
Id=
"o75"
>
<a:ObjectID>
99A7CB8D-2C66-4C6B-8F17-C968574DE244
</a:ObjectID>
<a:Name>
private
</a:Name>
<a:Code>
PRIVATE
</a:Code>
<a:CreationDate>
160
5192780
</a:CreationDate>
<a:ObjectID>
35870282-7776-426C-8EDF-C078DA5CDBF1
</a:ObjectID>
<a:Name>
Seed
</a:Name>
<a:Code>
SEED
</a:Code>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {A0C2EB5A-44CD-43A7-81DA-FC9E5A794F98}
DAT 1605192781
</a:History>
<a:DataType>
bool
</a:DataType>
<a:History>
ORG {18097A59-FBB4-4905-8511-68CE15CBCA25}
DAT 1606151165
ORG {20E7DEF8-CEFC-4BDD-A7B1-0233B1CAF0E4}
</a:History>
<a:DataType>
int
</a:DataType>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
</o:Column>
<o:Column
Id=
"o76"
>
<a:ObjectID>
80E291C7-A06C-4FC5-8396-0ADE8591FF10
</a:ObjectID>
<a:ObjectID>
F698A067-EBF0-4998-B624-FA8B0CCECE7B
</a:ObjectID>
<a:Name>
date begin
</a:Name>
<a:Code>
DATE_BEGIN
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {94339644-75B6-4EDC-8E57-2CD260A3DC1B}
DAT 1606144767
</a:History>
<a:History>
ORG {35D6A3FF-ACBC-40BF-AB93-777D44D31086}
DAT 1606151165
ORG {69270008-7024-4C1A-BD7D-6B12B6B67CFB}
</a:History>
<a:DataType>
datetime
</a:DataType>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
</o:Column>
<o:Column
Id=
"o77"
>
<a:ObjectID>
5D340D9D-6C5E-48F8-AFB9-339CA2F0A578
</a:ObjectID>
<a:ObjectID>
828E2788-4D5A-4715-A539-EFDAA1DD97DB
</a:ObjectID>
<a:Name>
date end
</a:Name>
<a:Code>
DATE_END
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {F1355E57-0740-4281-A64D-59832B57D735}
DAT 1606144767
</a:History>
<a:History>
ORG {492A7147-2ED1-445B-829B-E3498F91E195}
DAT 1606151165
ORG {D9BB2801-DCAD-485E-9B4E-47CC807274C6}
</a:History>
<a:DataType>
datetime
</a:DataType>
</o:Column>
<o:Column
Id=
"o78"
>
<a:ObjectID>
22A3B995-6C09-4BA3-8F15-6E316004723D
</a:ObjectID>
<a:Name>
code
</a:Name>
<a:Code>
CODE
</a:Code>
<a:CreationDate>
16061
47620
</a:CreationDate>
<a:ObjectID>
B56F177C-BACB-4654-A699-583938EEACFB
</a:ObjectID>
<a:Name>
actions
</a:Name>
<a:Code>
ACTIONS
</a:Code>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
47653
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:DataType>
char(6)
</a:DataType>
<a:Length>
6
</a:Length>
<a:History>
ORG {51BCEF6A-AF04-4637-BE82-28F192411997}
DAT 1606151165
ORG {CC532184-5292-4C3B-ADDF-48A613CBB1EB}
</a:History>
<a:DataType>
text
</a:DataType>
</o:Column>
</c:Columns>
<c:Keys>
<o:Key
Id=
"o79"
>
<a:ObjectID>
0EA9E766-B69F-4DEB-970A-8EDDEE4684A3
</a:ObjectID>
<a:ObjectID>
816F1F18-90E8-4707-9129-402F4676B320
</a:ObjectID>
<a:Name>
Identifiant_1
</a:Name>
<a:Code>
IDENTIFIANT_1
</a:Code>
<a:CreationDate>
160
5192896
</a:CreationDate>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192902
</a:ModificationDate>
<a:ModificationDate>
160
6151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {
70270F99-AA11-43BF-AEA2-9F6E0916E071
}
DAT 160
5192896
INS COLNCOL {066D540F-64F7-4B95-AB3E-305F8F753535
}
</a:History>
<a:History>
ORG {
96A5043F-AFEE-4601-A8E0-B811F6B0A9FB
}
DAT 160
6151165
ORG {A1E78484-E504-4D67-A441-C254AF6347C4
}
</a:History>
<c:Key.Columns>
<o:Column
Ref=
"o7
3
"
/>
<o:Column
Ref=
"o7
2
"
/>
</c:Key.Columns>
</o:Key>
</c:Keys>
<c:Indexes>
<o:Index
Id=
"o80"
>
<a:ObjectID>
9DE8BC30-A961-4F74-BA18-3175AF0264CF
</a:ObjectID>
<a:Name>
PARTIE
_PK
</a:Name>
<a:Code>
PARTIE
_PK
</a:Code>
<a:CreationDate>
160
5192896
</a:CreationDate>
<a:ObjectID>
46B36144-B9BD-424C-885C-0B7627B3F750
</a:ObjectID>
<a:Name>
MJ_ROUND
_PK
</a:Name>
<a:Code>
MJ_ROUND
_PK
</a:Code>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192902
</a:ModificationDate>
<a:ModificationDate>
160
6151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Unique>
1
</a:Unique>
<c:LinkedObject>
...
...
@@ -5628,43 +5608,43 @@ INS COLNCOL {066D540F-64F7-4B95-AB3E-305F8F753535}</a:History>
</c:LinkedObject>
<c:IndexColumns>
<o:IndexColumn
Id=
"o81"
>
<a:ObjectID>
75F9867E-3183-459D-9731-2F5FBE91DE42
</a:ObjectID>
<a:CreationDate>
160
5192896
</a:CreationDate>
<a:ObjectID>
5FE104E9-8044-4A01-BD9A-49F309AFE06A
</a:ObjectID>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192902
</a:ModificationDate>
<a:ModificationDate>
160
6151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Column>
<o:Column
Ref=
"o7
3
"
/>
<o:Column
Ref=
"o7
2
"
/>
</c:Column>
<c:Elements>
<o:Column
Ref=
"o7
3
"
/>
<o:Column
Ref=
"o7
2
"
/>
</c:Elements>
</o:IndexColumn>
</c:IndexColumns>
</o:Index>
<o:Index
Id=
"o82"
>
<a:ObjectID>
4BEC6637-FA32-4B33-8460-AD1CFEECB2EE
</a:ObjectID>
<a:Name>
CREATION
_FK
</a:Name>
<a:Code>
CREATION
_FK
</a:Code>
<a:CreationDate>
160
5192781
</a:CreationDate>
<a:ObjectID>
1E1DAC0D-1CC8-40CA-B2E3-501277AEF5DD
</a:ObjectID>
<a:Name>
MJ_COMPOSE
_FK
</a:Name>
<a:Code>
MJ_COMPOSE
_FK
</a:Code>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192781
</a:ModificationDate>
<a:ModificationDate>
160
6151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:LinkedObject>
<o:Reference
Ref=
"o
9
"
/>
<o:Reference
Ref=
"o
15
"
/>
</c:LinkedObject>
<c:IndexColumns>
<o:IndexColumn
Id=
"o83"
>
<a:ObjectID>
3618B973-A488-459D-985D-DCC3A12D0A6
0
</a:ObjectID>
<a:CreationDate>
160
5192781
</a:CreationDate>
<a:ObjectID>
19BB8D1F-5593-474E-932B-91083A3B8B9
0
</a:ObjectID>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192781
</a:ModificationDate>
<a:ModificationDate>
160
6151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Column>
<o:Column
Ref=
"o7
4
"
/>
<o:Column
Ref=
"o7
3
"
/>
</c:Column>
<c:Elements>
<o:Column
Ref=
"o7
4
"
/>
<o:Column
Ref=
"o7
3
"
/>
</c:Elements>
</o:IndexColumn>
</c:IndexColumns>
...
...
@@ -5675,43 +5655,44 @@ INS COLNCOL {066D540F-64F7-4B95-AB3E-305F8F753535}</a:History>
</c:PrimaryKey>
</o:Table>
<o:Table
Id=
"o30"
>
<a:ObjectID>
ADA3AE72-1CEF-4781-AFFE-01371637209A
</a:ObjectID>
<a:ObjectID>
2AF17880-135F-45D4-A5AB-7D6EBA5D50C4
</a:ObjectID>
<a:Name>
Role
</a:Name>
<a:Code>
MJ_ROLE
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
47546
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {F58A265F-2BCA-475E-BA65-AE4C1EEB64D0}
DAT 16061
44767
ATT CODE
</a:History>
DAT 16061
51165
ORG {ADA3AE72-1CEF-4781-AFFE-01371637209A}
</a:History>
<a:TotalSavingCurrency/>
<c:Columns>
<o:Column
Id=
"o84"
>
<a:ObjectID>
2D8332E9-C8BC-4E2A-9B4A-D7697FE4A748
</a:ObjectID>
<a:ObjectID>
7E995B7D-6378-4251-BA4E-0039B331D1F3
</a:ObjectID>
<a:Name>
id role
</a:Name>
<a:Code>
ID_ROLE
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44910
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {4F15DFAC-DF69-4DBD-AC48-9C12C1A129C4}
DAT 16061
44767
ATT IDNT
</a:History>
DAT 16061
51165
ORG {2D8332E9-C8BC-4E2A-9B4A-D7697FE4A748}
</a:History>
<a:DataType>
int
</a:DataType>
<a:Identity>
1
</a:Identity>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
</o:Column>
<o:Column
Id=
"o85"
>
<a:ObjectID>
D0C10B4F-71B1-4026-89F5-F3697A653679
</a:ObjectID>
<a:ObjectID>
5B94ACA1-2547-472F-978D-026CC92F31B5
</a:ObjectID>
<a:Name>
name
</a:Name>
<a:Code>
NAME
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {194D68F9-0CDD-4155-8F4B-214DD85BC305}
DAT 1606144767
</a:History>
DAT 1606151165
ORG {D0C10B4F-71B1-4026-89F5-F3697A653679}
</a:History>
<a:DataType>
varchar(15)
</a:DataType>
<a:Length>
15
</a:Length>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
...
...
@@ -5719,16 +5700,16 @@ DAT 1606144767</a:History>
</c:Columns>
<c:Keys>
<o:Key
Id=
"o86"
>
<a:ObjectID>
26B64DB8-68A9-4F98-9988-5A1D8C7988A4
</a:ObjectID>
<a:ObjectID>
EB6C324B-1EF1-4640-932D-B6E664603CE1
</a:ObjectID>
<a:Name>
Identifiant_1
</a:Name>
<a:Code>
IDENTIFIANT_1
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {0B32B4CE-9EE0-44E5-A04F-50C7A80B6DD9}
DAT 16061
44767
INS COLNCOL {4F15DFAC-DF69-4DBD-AC48-9C12C1A129C
4}
</a:History>
DAT 16061
51165
ORG {26B64DB8-68A9-4F98-9988-5A1D8C7988A
4}
</a:History>
<c:Key.Columns>
<o:Column
Ref=
"o84"
/>
</c:Key.Columns>
...
...
@@ -5736,12 +5717,12 @@ INS COLNCOL {4F15DFAC-DF69-4DBD-AC48-9C12C1A129C4}</a:History>
</c:Keys>
<c:Indexes>
<o:Index
Id=
"o87"
>
<a:ObjectID>
3
1A873E3-6531-43D3-AFDF-C1570EFBCCBD
</a:ObjectID>
<a:Name>
ROLE_PK
</a:Name>
<a:Code>
ROLE_PK
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<a:ObjectID>
3
42194AF-D1B6-486D-9F21-7852A243976F
</a:ObjectID>
<a:Name>
MJ_
ROLE_PK
</a:Name>
<a:Code>
MJ_
ROLE_PK
</a:Code>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Unique>
1
</a:Unique>
<c:LinkedObject>
...
...
@@ -5749,10 +5730,10 @@ INS COLNCOL {4F15DFAC-DF69-4DBD-AC48-9C12C1A129C4}</a:History>
</c:LinkedObject>
<c:IndexColumns>
<o:IndexColumn
Id=
"o88"
>
<a:ObjectID>
1882EF86-749F-4C75-B494-6D3AC07666C1
</a:ObjectID>
<a:CreationDate>
16061
44767
</a:CreationDate>
<a:ObjectID>
653480A9-8531-4714-ADF0-D501700CA4EB
</a:ObjectID>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Column>
<o:Column
Ref=
"o84"
/>
...
...
@@ -5768,149 +5749,98 @@ INS COLNCOL {4F15DFAC-DF69-4DBD-AC48-9C12C1A129C4}</a:History>
<o:Key
Ref=
"o86"
/>
</c:PrimaryKey>
</o:Table>
<o:Table
Id=
"o
29
"
>
<a:ObjectID>
36DDDB23-9C26-4C79-A996-1F51A77A2FB8
</a:ObjectID>
<a:Name>
Round
</a:Name>
<a:Code>
MJ_
ROUND
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<o:Table
Id=
"o
31
"
>
<a:ObjectID>
DB47453B-EDFF-4231-A66C-92D2DD62D8C5
</a:ObjectID>
<a:Name>
Play
</a:Name>
<a:Code>
MJ_
PLAY
</a:Code>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
47546
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {1E10A678-3CCA-40B3-8AAD-EB52B6494E7B}
DAT 1606144767
ATT CODE
</a:History>
<a:History>
ORG {5D707833-2076-4C65-8160-C3B117410843}
DAT 1606151165
ORG {8F4773CC-B663-488F-93EF-BE73B20004C5}
ATT PRIK
</a:History>
<a:TotalSavingCurrency/>
<c:Columns>
<o:Column
Id=
"o89"
>
<a:ObjectID>
CBCC97B0-0539-4B80-A277-D412764DF7DF
</a:ObjectID>
<a:Name>
id round
</a:Name>
<a:Code>
ID_ROUND
</a:Code>
<a:CreationDate>
1606144767
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144865
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {8A6E98F7-DB77-41EF-9480-DB8DE799B85B}
DAT 1606144767
ATT IDNT
</a:History>
<a:DataType>
int
</a:DataType>
<a:Identity>
1
</a:Identity>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
</o:Column>
<o:Column
Id=
"o90"
>
<a:ObjectID>
CB88C976-3819-4E8C-BE4B-5907E2CF153F
</a:ObjectID>
<a:ObjectID>
872A031D-A4D1-420E-ADAE-7F39C3A45B74
</a:ObjectID>
<a:Name>
id game
</a:Name>
<a:Code>
ID_GAME
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {97FDE412-E7FE-48D1-9448-9656988B5E34},{
B8F4656D-32DB-42F9-9DA8-57DF64F6A831
}
DAT 16061
44767
</a:History>
<a:History>
ORG {97FDE412-E7FE-48D1-9448-9656988B5E34},{
FA71687D-64EC-4594-A86A-67EDC63E5D65
}
DAT 16061
51165
</a:History>
<a:DataType>
int
</a:DataType>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
<a:AutoMigrated>
1
</a:AutoMigrated>
</o:Column>
<o:Column
Id=
"o91"
>
<a:ObjectID>
A2F81355-A5CC-4A44-8E04-D9916CCE9710
</a:ObjectID>
<a:Name>
Wind
</a:Name>
<a:Code>
WIND
</a:Code>
<a:CreationDate>
1606144767
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144771
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {297EC89E-2E4C-4A45-9A82-3FBF58DF9D63}
DAT 1606144767
</a:History>
<a:DataType>
int
</a:DataType>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
</o:Column>
<o:Column
Id=
"o92"
>
<a:ObjectID>
20E7DEF8-CEFC-4BDD-A7B1-0233B1CAF0E4
</a:ObjectID>
<a:Name>
Seed
</a:Name>
<a:Code>
SEED
</a:Code>
<a:CreationDate>
1606144767
</a:CreationDate>
<o:Column
Id=
"o90"
>
<a:ObjectID>
8837BCC6-4296-4198-AC01-D926176201D8
</a:ObjectID>
<a:Name>
id user
</a:Name>
<a:Code>
ID_USER
</a:Code>
<a:CreationDate>
1606151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {
18097A59-FBB4-4905-8511-68CE15CBCA25
}
DAT 16061
44767
</a:History>
<a:History>
ORG {
86388F6F-98F6-4CFB-8C20-36A748C708C7},{8853FC4D-C3E3-4753-89E4-90CC2B669D14
}
DAT 16061
51165
</a:History>
<a:DataType>
int
</a:DataType>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
<a:AutoMigrated>
1
</a:AutoMigrated>
</o:Column>
<o:Column
Id=
"o93"
>
<a:ObjectID>
69270008-7024-4C1A-BD7D-6B12B6B67CFB
</a:ObjectID>
<a:Name>
date begin
</a:Name>
<a:Code>
DATE_BEGIN
</a:Code>
<a:CreationDate>
1606144767
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144771
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {35D6A3FF-ACBC-40BF-AB93-777D44D31086}
DAT 1606144767
</a:History>
<a:DataType>
datetime
</a:DataType>
<a:Column.Mandatory>
1
</a:Column.Mandatory>
</o:Column>
<o:Column
Id=
"o94"
>
<a:ObjectID>
D9BB2801-DCAD-485E-9B4E-47CC807274C6
</a:ObjectID>
<a:Name>
date end
</a:Name>
<a:Code>
DATE_END
</a:Code>
<a:CreationDate>
1606144767
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144771
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {492A7147-2ED1-445B-829B-E3498F91E195}
DAT 1606144767
</a:History>
<a:DataType>
datetime
</a:DataType>
</o:Column>
<o:Column
Id=
"o95"
>
<a:ObjectID>
CC532184-5292-4C3B-ADDF-48A613CBB1EB
</a:ObjectID>
<a:Name>
actions
</a:Name>
<a:Code>
ACTIONS
</a:Code>
<a:CreationDate>
1606144767
</a:CreationDate>
<o:Column
Id=
"o91"
>
<a:ObjectID>
2DC2C71B-3694-4259-885D-179EF7CC1E8A
</a:ObjectID>
<a:Name>
Win
</a:Name>
<a:Code>
WIN
</a:Code>
<a:CreationDate>
1606151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46430
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {
51BCEF6A-AF04-4637-BE82-28F192411997
}
DAT 16061
44767
</a:History>
<a:DataType>
varchar(500)
</a:DataType
>
<a:
Length>
500
</a:Length
>
<a:History>
ORG {
2AEDD201-92F9-42F0-86DC-D609649785BA
}
DAT 16061
51165
ORG {25540AD2-405E-4E70-9D31-40ACBAA47F81}
</a:History
>
<a:
DataType>
bool
</a:DataType
>
</o:Column>
</c:Columns>
<c:Keys>
<o:Key
Id=
"o9
6
"
>
<a:ObjectID>
A1E78484-E504-4D67-A441-C254AF6347C4
</a:ObjectID>
<o:Key
Id=
"o9
2
"
>
<a:ObjectID>
B882EFAE-023D-45B2-B1B0-C6926C3563C8
</a:ObjectID>
<a:Name>
Identifiant_1
</a:Name>
<a:Code>
IDENTIFIANT_1
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {96A5043F-AFEE-4601-A8E0-B811F6B0A9FB}
DAT 1606144767
INS COLNCOL {8A6E98F7-DB77-41EF-9480-DB8DE799B85B}
</a:History>
<a:History>
ORG {29F93A75-7941-415C-97FB-A544BE6F4C42}
DAT 1606151165
</a:History>
<c:Key.Columns>
<o:Column
Ref=
"o89"
/>
<o:Column
Ref=
"o90"
/>
</c:Key.Columns>
</o:Key>
</c:Keys>
<c:Indexes>
<o:Index
Id=
"o9
7
"
>
<a:ObjectID>
AED45B8D-DA02-49B8-8618-160A1B30D4DD
</a:ObjectID>
<a:Name>
ROUND
_PK
</a:Name>
<a:Code>
ROUND
_PK
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<o:Index
Id=
"o9
3
"
>
<a:ObjectID>
60C5D451-C053-4750-A190-70AAB4D1C2A2
</a:ObjectID>
<a:Name>
MJ_PLAY
_PK
</a:Name>
<a:Code>
MJ_PLAY
_PK
</a:Code>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:Unique>
1
</a:Unique>
<c:LinkedObject>
<o:Key
Ref=
"o9
6
"
/>
<o:Key
Ref=
"o9
2
"
/>
</c:LinkedObject>
<c:IndexColumns>
<o:IndexColumn
Id=
"o9
8
"
>
<a:ObjectID>
F514F3ED-E630-494A-80B3-012319105ED
7
</a:ObjectID>
<a:CreationDate>
16061
44767
</a:CreationDate>
<o:IndexColumn
Id=
"o9
4
"
>
<a:ObjectID>
1C131FBF-B201-4B89-945B-D6AF028F6BA
7
</a:ObjectID>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Column>
<o:Column
Ref=
"o89"
/>
...
...
@@ -5919,25 +5849,65 @@ INS COLNCOL {8A6E98F7-DB77-41EF-9480-DB8DE799B85B}</a:History>
<o:Column
Ref=
"o89"
/>
</c:Elements>
</o:IndexColumn>
<o:IndexColumn
Id=
"o95"
>
<a:ObjectID>
164DAEF2-7757-45E6-87D8-6D30462B6C4C
</a:ObjectID>
<a:CreationDate>
1606151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Column>
<o:Column
Ref=
"o90"
/>
</c:Column>
<c:Elements>
<o:Column
Ref=
"o90"
/>
</c:Elements>
</o:IndexColumn>
</c:IndexColumns>
</o:Index>
<o:Index
Id=
"o9
9
"
>
<a:ObjectID>
5
F0D453F-2D16-48E0-85E5-E0D393CDD25D
</a:ObjectID>
<a:Name>
COMPOSE
_FK
</a:Name>
<a:Code>
COMPOSE
_FK
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<o:Index
Id=
"o9
6
"
>
<a:ObjectID>
5
E4B6C80-DC2D-423E-8A2F-907672A1F1AE
</a:ObjectID>
<a:Name>
PLAY
_FK
</a:Name>
<a:Code>
PLAY
_FK
</a:Code>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:LinkedObject>
<o:Reference
Ref=
"o
15
"
/>
<o:Reference
Ref=
"o
21
"
/>
</c:LinkedObject>
<c:IndexColumns>
<o:IndexColumn
Id=
"o
100
"
>
<a:ObjectID>
B37FCA10-2DE1-45C1-88F5-EAB74057B155
</a:ObjectID>
<a:CreationDate>
16061
44767
</a:CreationDate>
<o:IndexColumn
Id=
"o
97
"
>
<a:ObjectID>
2F533A05-AF92-4F67-AC30-9C1A16E296E6
</a:ObjectID>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606144771
</a:ModificationDate>
<a:ModificationDate>
1606151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Column>
<o:Column
Ref=
"o89"
/>
</c:Column>
<c:Elements>
<o:Column
Ref=
"o89"
/>
</c:Elements>
</o:IndexColumn>
</c:IndexColumns>
</o:Index>
<o:Index
Id=
"o98"
>
<a:ObjectID>
13587E60-9646-4367-93CC-A582EE9F758F
</a:ObjectID>
<a:Name>
PLAY2_FK
</a:Name>
<a:Code>
PLAY2_FK
</a:Code>
<a:CreationDate>
1606151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:LinkedObject>
<o:Reference
Ref=
"o23"
/>
</c:LinkedObject>
<c:IndexColumns>
<o:IndexColumn
Id=
"o99"
>
<a:ObjectID>
85AFAEBD-14D4-4BAC-9945-1BB1AD735B09
</a:ObjectID>
<a:CreationDate>
1606151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1606151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Column>
<o:Column
Ref=
"o90"
/>
...
...
@@ -5950,21 +5920,23 @@ INS COLNCOL {8A6E98F7-DB77-41EF-9480-DB8DE799B85B}</a:History>
</o:Index>
</c:Indexes>
<c:PrimaryKey>
<o:Key
Ref=
"o9
6
"
/>
<o:Key
Ref=
"o9
2
"
/>
</c:PrimaryKey>
</o:Table>
</c:Tables>
<c:References>
<o:Reference
Id=
"o9"
>
<a:ObjectID>
DD26F711-EC7D-4145-A973-54E82F457F00
</a:ObjectID>
<a:ObjectID>
280DC23C-A875-4850-9446-6B3176D51AB8
</a:ObjectID>
<a:Name>
Creation
</a:Name>
<a:Code>
CREATION
</a:Code>
<a:CreationDate>
160
5192780
</a:CreationDate>
<a:Code>
MJ_
CREATION
</a:Code>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192902
</a:ModificationDate>
<a:ModificationDate>
160
6151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {8A264E7E-B604-48E5-8999-D8108103C523}
DAT 1605192781
</a:History>
DAT 1606151165
ORG {DD26F711-EC7D-4145-A973-54E82F457F00}
ATT CODE
</a:History>
<a:Cardinality>
0..*
</a:Cardinality>
<a:UpdateConstraint>
1
</a:UpdateConstraint>
<a:DeleteConstraint>
1
</a:DeleteConstraint>
...
...
@@ -5978,149 +5950,156 @@ DAT 1605192781</a:History>
<o:Key
Ref=
"o42"
/>
</c:ParentKey>
<c:Joins>
<o:ReferenceJoin
Id=
"o10
1
"
>
<a:ObjectID>
D2C307EF-E0C8-45F8-848B-F2C793ABD223
</a:ObjectID>
<a:CreationDate>
160
5192781
</a:CreationDate>
<o:ReferenceJoin
Id=
"o10
0
"
>
<a:ObjectID>
C800889B-A76B-44A5-AD8B-3EA26F645D1F
</a:ObjectID>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192781
</a:ModificationDate>
<a:ModificationDate>
160
6151165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Object1>
<o:Column
Ref=
"o32"
/>
</c:Object1>
<c:Object2>
<o:Column
Ref=
"o
7
4"
/>
<o:Column
Ref=
"o
5
4"
/>
</c:Object2>
</o:ReferenceJoin>
</c:Joins>
</o:Reference>
<o:Reference
Id=
"o1
5
"
>
<a:ObjectID>
92458453-BA66-4D89-ADA6-3C6609353BFF
</a:ObjectID>
<a:Name>
Compose
</a:Name>
<a:Code>
COMPOSE
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<o:Reference
Id=
"o1
2
"
>
<a:ObjectID>
440ABEA0-FD1D-438D-A35A-198A866EE490
</a:ObjectID>
<a:Name>
Host
</a:Name>
<a:Code>
MJ_HOST
</a:Code>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
45669
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {B8F4656D-32DB-42F9-9DA8-57DF64F6A831}
DAT 1606144767
</a:History>
<a:History>
ORG {D54FCACC-74D9-4826-8A05-3262B9E5EE71}
DAT 1606151165
ORG {C2880144-409E-4450-8767-ACA256E46B9E}
ATT CODE
</a:History>
<a:Cardinality>
0..*
</a:Cardinality>
<a:UpdateConstraint>
1
</a:UpdateConstraint>
<a:DeleteConstraint>
1
</a:DeleteConstraint>
<c:ParentTable>
<o:Table
Ref=
"o2
8
"
/>
<o:Table
Ref=
"o2
7
"
/>
</c:ParentTable>
<c:ChildTable>
<o:Table
Ref=
"o2
9
"
/>
<o:Table
Ref=
"o2
8
"
/>
</c:ChildTable>
<c:ParentKey>
<o:Key
Ref=
"o5
7
"
/>
<o:Key
Ref=
"o5
8
"
/>
</c:ParentKey>
<c:Joins>
<o:ReferenceJoin
Id=
"o10
2
"
>
<a:ObjectID>
D356FB9A-EDDC-40BF-8287-373F8E2C4D1F
</a:ObjectID>
<a:CreationDate>
16061
44767
</a:CreationDate>
<o:ReferenceJoin
Id=
"o10
1
"
>
<a:ObjectID>
0FFA662B-CE57-41A5-9792-35E27F5F5FE2
</a:ObjectID>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Object1>
<o:Column
Ref=
"o53"
/>
</c:Object1>
<c:Object2>
<o:Column
Ref=
"o
90
"
/>
<o:Column
Ref=
"o
64
"
/>
</c:Object2>
</o:ReferenceJoin>
</c:Joins>
</o:Reference>
<o:Reference
Id=
"o1
8
"
>
<a:ObjectID>
F2B0FECB-A0BD-4D3D-9219-9050CD92ACC2
</a:ObjectID>
<a:Name>
Has
</a:Name>
<a:Code>
HAS
</a:Code>
<a:CreationDate>
16061
46588
</a:CreationDate>
<o:Reference
Id=
"o1
5
"
>
<a:ObjectID>
5479275D-A170-4364-8B02-DF3F588C88DB
</a:ObjectID>
<a:Name>
Compose
</a:Name>
<a:Code>
MJ_COMPOSE
</a:Code>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46591
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {405F6E65-6CD2-4B13-891E-2DF33C1B3F85}
DAT 1606146588
ATT MAND
</a:History>
<a:History>
ORG {B8F4656D-32DB-42F9-9DA8-57DF64F6A831}
DAT 1606151165
ORG {92458453-BA66-4D89-ADA6-3C6609353BFF}
ATT CODE
</a:History>
<a:Cardinality>
0..*
</a:Cardinality>
<a:UpdateConstraint>
1
</a:UpdateConstraint>
<a:DeleteConstraint>
1
</a:DeleteConstraint>
<c:ParentTable>
<o:Table
Ref=
"o
30
"
/>
<o:Table
Ref=
"o
28
"
/>
</c:ParentTable>
<c:ChildTable>
<o:Table
Ref=
"o2
4
"
/>
<o:Table
Ref=
"o2
9
"
/>
</c:ChildTable>
<c:ParentKey>
<o:Key
Ref=
"o
86
"
/>
<o:Key
Ref=
"o
67
"
/>
</c:ParentKey>
<c:Joins>
<o:ReferenceJoin
Id=
"o10
3
"
>
<a:ObjectID>
A3C1904F-805B-49DA-85BF-6444DFA0735F
</a:ObjectID>
<a:CreationDate>
16061
46588
</a:CreationDate>
<o:ReferenceJoin
Id=
"o10
2
"
>
<a:ObjectID>
1491C160-B57B-4204-944A-8D60B7D2DC40
</a:ObjectID>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46591
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Object1>
<o:Column
Ref=
"o
84
"
/>
<o:Column
Ref=
"o
63
"
/>
</c:Object1>
<c:Object2>
<o:Column
Ref=
"o
3
3"
/>
<o:Column
Ref=
"o
7
3"
/>
</c:Object2>
</o:ReferenceJoin>
</c:Joins>
</o:Reference>
<o:Reference
Id=
"o1
2
"
>
<a:ObjectID>
C2880144-409E-4450-8767-ACA256E46B9E
</a:ObjectID>
<a:Name>
H
ost
</a:Name>
<a:Code>
HOST
</a:Code>
<a:CreationDate>
16061
44767
</a:CreationDate>
<o:Reference
Id=
"o1
8
"
>
<a:ObjectID>
2D7A643C-8996-4889-AA60-332C3B4FC999
</a:ObjectID>
<a:Name>
H
as
</a:Name>
<a:Code>
MJ_HAS
</a:Code>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
45669
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:History>
ORG {D54FCACC-74D9-4826-8A05-3262B9E5EE71}
DAT 1606144767
</a:History>
<a:History>
ORG {405F6E65-6CD2-4B13-891E-2DF33C1B3F85}
DAT 1606151165
ORG {F2B0FECB-A0BD-4D3D-9219-9050CD92ACC2}
ATT CODE
</a:History>
<a:Cardinality>
0..*
</a:Cardinality>
<a:UpdateConstraint>
1
</a:UpdateConstraint>
<a:DeleteConstraint>
1
</a:DeleteConstraint>
<c:ParentTable>
<o:Table
Ref=
"o
27
"
/>
<o:Table
Ref=
"o
30
"
/>
</c:ParentTable>
<c:ChildTable>
<o:Table
Ref=
"o2
8
"
/>
<o:Table
Ref=
"o2
4
"
/>
</c:ChildTable>
<c:ParentKey>
<o:Key
Ref=
"o
79
"
/>
<o:Key
Ref=
"o
86
"
/>
</c:ParentKey>
<c:Joins>
<o:ReferenceJoin
Id=
"o10
4
"
>
<a:ObjectID>
3AE5A4B1-7553-4D60-BADF-BC9294A5259F
</a:ObjectID>
<a:CreationDate>
16061
44767
</a:CreationDate>
<o:ReferenceJoin
Id=
"o10
3
"
>
<a:ObjectID>
4948F2F0-4E24-4612-ABF8-50634A95450D
</a:ObjectID>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
44771
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Object1>
<o:Column
Ref=
"o
73
"
/>
<o:Column
Ref=
"o
84
"
/>
</c:Object1>
<c:Object2>
<o:Column
Ref=
"o
54
"
/>
<o:Column
Ref=
"o
33
"
/>
</c:Object2>
</o:ReferenceJoin>
</c:Joins>
</o:Reference>
<o:Reference
Id=
"o21"
>
<a:ObjectID>
DB49AF92-2FC4-4CDC-BB37-85E0E79E07CE
</a:ObjectID>
<a:ObjectID>
ABEF6EEF-A77E-45B9-B111-63F29939469F
</a:ObjectID>
<a:Name>
Play
</a:Name>
<a:Code>
PLAY
</a:Code>
<a:CreationDate>
0
</a:CreationDate>
<a:Creator/>
<a:ModificationDate>
160614643
0
</a:ModificationDate>
<a:Modifier
>
quent
</a:Modifier
>
<a:ModificationDate>
0
</a:ModificationDate>
<a:Modifier
/
>
<a:History>
ORG {FA71687D-64EC-4594-A86A-67EDC63E5D65}
DAT 1606146428
</a:History>
DAT 1606151165
ATT CODE
</a:History>
<a:Cardinality>
0..*
</a:Cardinality>
<a:UpdateConstraint>
1
</a:UpdateConstraint>
<a:DeleteConstraint>
1
</a:DeleteConstraint>
<a:ParentRole>
Play
</a:ParentRole>
<c:ParentTable>
<o:Table
Ref=
"o28"
/>
</c:ParentTable>
...
...
@@ -6128,37 +6107,39 @@ DAT 1606146428</a:History>
<o:Table
Ref=
"o31"
/>
</c:ChildTable>
<c:ParentKey>
<o:Key
Ref=
"o
5
7"
/>
<o:Key
Ref=
"o
6
7"
/>
</c:ParentKey>
<c:Joins>
<o:ReferenceJoin
Id=
"o10
5
"
>
<a:ObjectID>
0315C990-96AF-42D8-9A37-3420B7EF3DDC
</a:ObjectID>
<a:CreationDate>
16061
46428
</a:CreationDate>
<o:ReferenceJoin
Id=
"o10
4
"
>
<a:ObjectID>
36C11BEC-5679-4412-B8EE-CEDEE82A9D48
</a:ObjectID>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46430
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Object1>
<o:Column
Ref=
"o
5
3"
/>
<o:Column
Ref=
"o
6
3"
/>
</c:Object1>
<c:Object2>
<o:Column
Ref=
"o
62
"
/>
<o:Column
Ref=
"o
89
"
/>
</c:Object2>
</o:ReferenceJoin>
</c:Joins>
</o:Reference>
<o:Reference
Id=
"o23"
>
<a:ObjectID>
311BB372-EAC7-4364-B404-BFCC2179EA03
</a:ObjectID>
<a:ObjectID>
F83FC250-A4B7-4744-BF93-950088AEAA15
</a:ObjectID>
<a:Name>
Play
</a:Name>
<a:Code>
PLAY2
</a:Code>
<a:CreationDate>
0
</a:CreationDate>
<a:Creator/>
<a:ModificationDate>
160614643
0
</a:ModificationDate>
<a:Modifier
>
quent
</a:Modifier
>
<a:ModificationDate>
0
</a:ModificationDate>
<a:Modifier
/
>
<a:History>
ORG {8853FC4D-C3E3-4753-89E4-90CC2B669D14}
DAT 1606146428
</a:History>
DAT 1606151165
ATT CODE
</a:History>
<a:Cardinality>
0..*
</a:Cardinality>
<a:UpdateConstraint>
1
</a:UpdateConstraint>
<a:DeleteConstraint>
1
</a:DeleteConstraint>
<a:ParentRole>
Play
</a:ParentRole>
<c:ParentTable>
<o:Table
Ref=
"o24"
/>
</c:ParentTable>
...
...
@@ -6169,39 +6150,39 @@ DAT 1606146428</a:History>
<o:Key
Ref=
"o42"
/>
</c:ParentKey>
<c:Joins>
<o:ReferenceJoin
Id=
"o10
6
"
>
<a:ObjectID>
0
B4D7164-2FD2-4524-B74F-B5F34683B01F
</a:ObjectID>
<a:CreationDate>
16061
46428
</a:CreationDate>
<o:ReferenceJoin
Id=
"o10
5
"
>
<a:ObjectID>
0
75199F8-F533-484E-AE15-541388FE55F1
</a:ObjectID>
<a:CreationDate>
16061
51165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46430
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<c:Object1>
<o:Column
Ref=
"o32"
/>
</c:Object1>
<c:Object2>
<o:Column
Ref=
"o
63
"
/>
<o:Column
Ref=
"o
90
"
/>
</c:Object2>
</o:ReferenceJoin>
</c:Joins>
</o:Reference>
</c:References>
<c:DefaultGroups>
<o:Group
Id=
"o10
7
"
>
<a:ObjectID>
B8658C3B-3C3E-4548-9B75-D9A24C7F4F37
</a:ObjectID>
<o:Group
Id=
"o10
6
"
>
<a:ObjectID>
7CA56B3C-6EE2-4475-A7D3-6181CF6E55FF
</a:ObjectID>
<a:Name>
PUBLIC
</a:Name>
<a:Code>
PUBLIC
</a:Code>
<a:CreationDate>
160
5192635
</a:CreationDate>
<a:CreationDate>
160
6151152
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
160
5192635
</a:ModificationDate>
<a:ModificationDate>
160
6151152
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
</o:Group>
</c:DefaultGroups>
<c:TargetModels>
<o:TargetModel
Id=
"o10
8
"
>
<a:ObjectID>
5563CA83-6C03-414B-B41F-8AD36F615C7E
</a:ObjectID>
<o:TargetModel
Id=
"o10
7
"
>
<a:ObjectID>
601E84F4-DF82-400E-AD4B-FF714014FE42
</a:ObjectID>
<a:Name>
MySQL 5.0
</a:Name>
<a:Code>
MYSQL50
</a:Code>
<a:CreationDate>
160
5192675
</a:CreationDate>
<a:CreationDate>
160
6151152
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
1242731549
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
...
...
@@ -6213,18 +6194,18 @@ DAT 1606146428</a:History>
<o:Shortcut
Ref=
"o4"
/>
</c:SessionShortcuts>
</o:TargetModel>
<o:TargetModel
Id=
"o10
9
"
>
<a:ObjectID>
634376AF-DDE8-4DA8-91AD-C6083CC2C51C
</a:ObjectID>
<o:TargetModel
Id=
"o10
8
"
>
<a:ObjectID>
84AED713-51B7-497B-94ED-24171307E9EF
</a:ObjectID>
<a:Name>
MCD TP AGL
</a:Name>
<a:Code>
MCD_TP_AGL
</a:Code>
<a:CreationDate>
160
5192781
</a:CreationDate>
<a:CreationDate>
160
6151165
</a:CreationDate>
<a:Creator>
quent
</a:Creator>
<a:ModificationDate>
16061
46579
</a:ModificationDate>
<a:ModificationDate>
16061
51165
</a:ModificationDate>
<a:Modifier>
quent
</a:Modifier>
<a:TargetModelURL>
file:///E|/Nouveau dossier/MCD TP AGL.mcd
</a:TargetModelURL>
<a:TargetModelID>
11E4B893-61D4-478A-BAF1-0F640FC9D025
</a:TargetModelID>
<a:TargetModelClassID>
1E597170-9350-11D1-AB3C-0020AF71E433
</a:TargetModelClassID>
<a:TargetModelLastModificationDate>
16061
46579
</a:TargetModelLastModificationDate>
<a:TargetModelLastModificationDate>
16061
51165
</a:TargetModelLastModificationDate>
<c:SessionShortcuts>
<o:Shortcut
Ref=
"o3"
/>
</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