-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiagrams.xmi
2661 lines (2661 loc) · 306 KB
/
diagrams.xmi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<XMI verified="false" xmi.version="1.2" timestamp="2015-11-28T09:00:39" xmlns:UML="http://schema.omg.org/spec/UML/1.3">
<XMI.header>
<XMI.documentation>
<XMI.exporter>umbrello uml modeller http://umbrello.kde.org</XMI.exporter>
<XMI.exporterVersion>1.6.9</XMI.exporterVersion>
<XMI.exporterEncoding>UnicodeUTF8</XMI.exporterEncoding>
</XMI.documentation>
<XMI.metamodel xmi.version="1.3" href="UML.xml" xmi.name="UML"/>
</XMI.header>
<XMI.content>
<UML:Model isSpecification="false" isAbstract="false" isLeaf="false" xmi.id="m1" isRoot="false" name="Модель UML">
<UML:Namespace.ownedElement>
<UML:Stereotype visibility="public" isSpecification="false" namespace="m1" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="folder" name="folder"/>
<UML:Stereotype visibility="public" isSpecification="false" namespace="m1" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="datatype" name="datatype"/>
<UML:Stereotype visibility="public" isSpecification="false" namespace="m1" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="interface" name="interface"/>
<UML:Stereotype visibility="public" isSpecification="false" namespace="m1" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="enum" name="enum"/>
<UML:Model stereotype="folder" visibility="public" isSpecification="false" namespace="m1" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="Logical View" name="Logical View">
<UML:Namespace.ownedElement>
<UML:Package stereotype="folder" visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="Datatypes" name="Datatypes">
<UML:Namespace.ownedElement>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="fMvUCf5GIoCZ" name="int"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="gGWNPBtODWx0" name="char"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="PvXqHC9uY4Nl" name="bool"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="jQz1FBbtP5Gm" name="float"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="E8ASe6S210sG" name="double"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="C1Al4VUnwRnB" name="short"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="aM2zRJmdRu53" name="long"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="0W3zWvFgxOPz" name="unsigned int"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="trmnIXwstzqI" name="unsigned short"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="GcwfUziVVmUz" name="unsigned long"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="figa43ZvtKjB" name="string"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="vIihzOTUWjUt" name="array"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="Bmc79WPWvw23" name="tuple"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="hToqxE7sUqZU" name="dict"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="E1wjkPatBC0I" name="object"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="gNpcHpdyGQoD" name="set"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="ibG0HmeLfhov" name="undef"/>
</UML:Namespace.ownedElement>
</UML:Package>
<UML:Interface stereotype="interface" visibility="public" isSpecification="false" namespace="Logical View" isAbstract="true" isLeaf="false" isRoot="false" xmi.id="rf2leq1uSxZw" name="Интерфейс_пользователя">
<UML:Classifier.feature>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="4wbMFKVYbSf5" name="закрыть_окно"/>
</UML:Classifier.feature>
</UML:Interface>
<UML:Interface stereotype="interface" visibility="public" isSpecification="false" namespace="Logical View" isAbstract="true" isLeaf="false" isRoot="false" xmi.id="7nX07GAzwAiY" name="Главное_окно">
<UML:Classifier.feature>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="TIOqQo8yLCYq" name="войти_в_систему"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="5zgv6Uba0oik" name="просмотр_списка_онтологий"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="gdfEAtlbB9Qc" name="просмотр_разделов_онтологий"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="wYYHj77m4mg9" name="просмотр_словарей_шаблонов"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="GFjH3Szj3fyB" name="создать_раздел_онтологий"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="WhmhqCJkjszS" name="создать_онтологию"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="GMsH1oSXVECJ" name="сделать_онтологию_текущей"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="uFD5SBL6YAgp" name="выйти_из_системы"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="HsdRobjLQ7yk" name="поиск"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="orpINrmjiMij" name="зарегистрироваться"/>
</UML:Classifier.feature>
</UML:Interface>
<UML:Interface stereotype="interface" visibility="public" isSpecification="false" namespace="Logical View" isAbstract="true" isLeaf="false" isRoot="false" xmi.id="cSqAW4mepJcx" name="Окно_редактирования">
<UML:Classifier.feature>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="alWPTJ8VFhrS" name="сохранить_изменения"/>
</UML:Classifier.feature>
</UML:Interface>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="rf2leq1uSxZw" xmi.id="zjYtmQfjcJO1" client="7nX07GAzwAiY" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="rf2leq1uSxZw" xmi.id="88SkSrl44RhU" client="cSqAW4mepJcx" name=""/>
<UML:Interface stereotype="interface" visibility="public" isSpecification="false" namespace="Logical View" isAbstract="true" isLeaf="false" isRoot="false" xmi.id="OhaYPdjz5Z9a" name="Окно_просмотра">
<UML:Classifier.feature>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="1K0dlfgu7xWs" name="редактировать"/>
</UML:Classifier.feature>
</UML:Interface>
<UML:Interface stereotype="interface" visibility="public" isSpecification="false" namespace="Logical View" isAbstract="true" isLeaf="false" isRoot="false" xmi.id="p9S9Yo7wTiVs" name="Просмотр_онтологии">
<UML:Classifier.feature>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="mFU6A12s9LIk" name="просмотр_словаря_шаблонов_онтологии"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="vS5YxQAo4zpt" name="просмотр_доступных_словарей_шаблонов"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="KziypPkZeEfo" name="сделать_онтологию_текущей"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="DfeKyw5sN8QK" name="задать_вопрос_онтологии"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="YY6aXtTqs9of" name="просмотреть_черновики_онтологии"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="bN5iBRrRnjim" name="удалить_онтологию"/>
</UML:Classifier.feature>
</UML:Interface>
<UML:Interface stereotype="interface" visibility="public" isSpecification="false" namespace="Logical View" isAbstract="true" isLeaf="false" isRoot="false" xmi.id="z4eaHp57wXEU" name="Просмотр_словаря_шаблонов">
<UML:Classifier.feature>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="BTCVobNp9aKe" name="показать_место_определения_шаблона"/>
</UML:Classifier.feature>
</UML:Interface>
<UML:Interface stereotype="interface" visibility="public" isSpecification="false" namespace="Logical View" isAbstract="true" isLeaf="false" isRoot="false" xmi.id="Qd7Dmp9jroH7" name="Просмотр_профиля_пользователя">
<UML:Classifier.feature>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="WYF8kuuvYZFW" name="выход"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="ew38kdaycXfK" name="просмотр_истории_действий"/>
</UML:Classifier.feature>
</UML:Interface>
<UML:Interface stereotype="interface" visibility="public" isSpecification="false" namespace="Logical View" isAbstract="true" isLeaf="false" isRoot="false" xmi.id="GZ5K1m7POEc8" name="Редактирование_онтологии">
<UML:Classifier.feature>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="l4K20OJECBXB" name="построить_онтологию"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="2Kgu6vYkMvXw" name="сохранить_черновик_онтологии"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="WPgLNumXPhS0" name="сохранить_черновик_как_новую_онтологию"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="N164rb6tuAbI" name="редактировать_словарь_шаблонов"/>
</UML:Classifier.feature>
</UML:Interface>
<UML:Interface stereotype="interface" visibility="public" isSpecification="false" namespace="Logical View" isAbstract="true" isLeaf="false" isRoot="false" xmi.id="GfJglvxKUNaU" name="Редактирование_профиля_пользователя">
<UML:Classifier.feature>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="hAJSbaAKeUNc" name="изменить_пароль"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="teq3pLCpfqjm" name="изменить_e-mail"/>
</UML:Classifier.feature>
</UML:Interface>
<UML:Interface stereotype="interface" visibility="public" isSpecification="false" namespace="Logical View" isAbstract="true" isLeaf="false" isRoot="false" xmi.id="zEefQNte0ALl" name="Редактирование_шаблона"/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="rf2leq1uSxZw" xmi.id="juj9tijLDfhP" client="OhaYPdjz5Z9a" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="OhaYPdjz5Z9a" xmi.id="vgl8LSVdvAMl" client="p9S9Yo7wTiVs" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="OhaYPdjz5Z9a" xmi.id="VqSR1mA3XnOT" client="z4eaHp57wXEU" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="OhaYPdjz5Z9a" xmi.id="z2gWp4xkl9W8" client="Qd7Dmp9jroH7" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="DtIx0m5t7vf5" client="GZ5K1m7POEc8" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="EveIbbMIecHb" client="GfJglvxKUNaU" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="uJ7YvM9sJJj9" client="zEefQNte0ALl" name=""/>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="xKlDkaOOUSUE" name="Группа_пользователей">
<UML:Classifier.feature>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="pMZVjHECEkPu" type="vIihzOTUWjUt" initialValue="[]" name="пользователи"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="imEGShnUMNRt" type="vIihzOTUWjUt" initialValue="[]" name="модераторы"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="0ZDVXqMKCvnt" type="263MbsAb05OE" name="id_группы"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="RtD6LhTWsm7u" type="RlzOayp3aAeU" initialValue="group_type.moderator_only" name="тип_группы"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="QeydYjWiia5S" name="добавить_пользователя">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="4JtKoZ0x0ATp" type="263MbsAb05OE" value="None" name="id_пользователя"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="moetOwXpaTQ8" name="удалить_пользователя">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="99NhcloogbjB" type="263MbsAb05OE" value="None" name="id_пользователя"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="T3icHZa3OVnN" name="добавить_модератора">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="rM7zXlXgvtLV" type="263MbsAb05OE" value="None" name="id_пользователя"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="e7KKi1TB4BoK" name="удалить_модератора">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="iML4r6QgSXfz" type="263MbsAb05OE" value="None" name="id_модератора"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="ySw0biII4dMv" name="удалить_группу"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="YUfb7RLfo9be" name="изменить_тип_группы">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="MVOzvRqjrWwd" type="milEMeR4qK39" value="None" name="новый_тип"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="Nqat1GgwaRAI" name="Раздел_онтологий">
<UML:Classifier.feature>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="SGZzrWmfY6oJ" type="vIihzOTUWjUt" initialValue="[]" name="группы_пользователей"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="8PgX2lDkI6yE" type="vIihzOTUWjUt" initialValue="[]" name="онтологии"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="XJBnDVhp1PMd" type="263MbsAb05OE" name="id_раздела"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="w59CB5PPNeHN" name="добавить_группу">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="jGCUHzJW6y9g" type="263MbsAb05OE" value="None" name="id_группы"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="Ue1tpvJl0QxA" name="удалить_группу">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="WKZtyrF4k3pr" type="263MbsAb05OE" value="None" name="id_группы"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="hOl3fjDqy71b" name="создать_онтологию"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="yKl7EmFw0QQH" name="удалить_онтологию">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="PhnUduAJGtKu" type="263MbsAb05OE" value="None" name="id_онтологии"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="cXkYcjAY3tgF" name="добавить_онтологию_в_раздел">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="fvBfJZujHfBs" type="263MbsAb05OE" value="None" name="id_онтологии"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="gfCjrhDCXn3W" name="Онтология">
<UML:Classifier.feature>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="6UC9NqP0jad3" type="263MbsAb05OE" initialValue="None" name="id_онтологии"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="8XmPAvFhERUP" type="figa43ZvtKjB" initialValue="None" name="имя_онтологии"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="VAOEjzHrU1Ee" type="263MbsAb05OE" initialValue="None" name="словарь_шаблонов"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="VYYUd4AgpfCe" type="ONMWoEX3bHCm" initialValue="None" name="дата_создания"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="0VtqA5SWQm2F" type="PvXqHC9uY4Nl" initialValue="False" name="построена"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="1aIapSMTEZbc" type="vIihzOTUWjUt" initialValue="[]" name="сообщения"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="dyVCuqNtLGhT" type="vIihzOTUWjUt" initialValue="[]" name="черновики"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="K7zku1ztZGTP" type="263MbsAb05OE" initialValue="None" name="автор"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="673qt4Aj0WbW" type="PvXqHC9uY4Nl" initialValue="False" name="онтология_верхнего_уровня"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="laD5ULvwqaMx" type="263MbsAb05OE" initialValue="None" name="родительская_онтология"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="2ol1mL5xXg3D" name="сохранить_как_черновик"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="DGqiWxKkKJuQ" name="поиск">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="WoDq86HY1zMO" type="hToqxE7sUqZU" value="{}" name="params"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="W2GSMEn3f6UO" name="сохранить_черновик_как_новую_онтологию">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="t6ZZ8tbyryDT" type="263MbsAb05OE" value="None" name="id_черновика"/>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="9Vvxbgb7iqX2" type="figa43ZvtKjB" value="None" name="имя"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="4L3hPY6Gedqk" name="показать_видимые_шаблоны"/>
</UML:Classifier.feature>
</UML:Class>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="eD7q3oYhRkRJ" name="Шаблон">
<UML:Classifier.feature>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="7bwSRPOlWfD3" type="vIihzOTUWjUt" name="последовательность"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="WfJf1ezocJ7N" type="figa43ZvtKjB" name="тип_выражения"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="MyCwGHHxUSum" type="263MbsAb05OE" name="id_шаблона"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="jDBwHnZPOUpp" name="создать">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="fTawoc1l75hY" type="vIihzOTUWjUt" value="None" name="шаблоны"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="XrOeMwky7qoB" name="Черновик_онтологии"/>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="263MbsAb05OE" name="UID"/>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="59FhWoP8wZhc" name="Пользователь">
<UML:Classifier.feature>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="DDYqqfl2IIoN" type="263MbsAb05OE" initialValue="None" name="текущая_онтология"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="FIAfD9aRM6HD" name="сделать_онтологию_текущей">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="4LIRQXe9XpDm" type="263MbsAb05OE" value="" name="id_онтологии"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="pcYa7xXzWnhN" name="войти_в_систему">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="BSToOEhSXzrx" type="figa43ZvtKjB" value="None" name="логин"/>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="UT72JIm6tKg0" type="figa43ZvtKjB" value="" name="пароль"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="FBxmzc783awR" name="зарегистрироваться">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="zCS2mNRYzIsW" type="figa43ZvtKjB" value="None" name="e-mail"/>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="z9Y8Tcb5O9ZU" type="figa43ZvtKjB" value="None" name="пароль"/>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="L2qiPv5O6VOs" type="figa43ZvtKjB" value="None" name="логин"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="4nXYpjAjATs1" name="Словарь_шаблонов">
<UML:Classifier.feature>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="DR9bvyOm9wAx" type="vIihzOTUWjUt" initialValue="[]" name="шаблоны"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="fYH4GFSaDeUT" type="263MbsAb05OE" initialValue="None" name="id_словаря"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="EMSNGaIw7YyL" name="добавить_шаблон">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="lQuy4OQx8pMJ" type="vIihzOTUWjUt" value="None" name="шаблоны"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="8WhqoeW30xOF" name="удалить_шаблон">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="Vf9cB7wwVqsX" type="263MbsAb05OE" value="None" name="id_шаблона"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="ONMWoEX3bHCm" name="timestamp"/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="vLx7bRmu2zG5" client="zEefQNte0ALl" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="AVKCUaGp315r" client="YbSI0O3Gx8Zy" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="1sT2sYtJvZ2j" client="GZ5K1m7POEc8" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="edFYCFHYd3UG" client="GfJglvxKUNaU" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="OhaYPdjz5Z9a" xmi.id="0rhesBsMtclm" client="p9S9Yo7wTiVs" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="OhaYPdjz5Z9a" xmi.id="MMaEwJyRgP6F" client="z4eaHp57wXEU" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="OhaYPdjz5Z9a" xmi.id="ipnMCrZjTpiD" client="Qd7Dmp9jroH7" name=""/>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="LyammHzOpNw8" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="KDiQ6to4uoRH" type="eD7q3oYhRkRJ" name="" aggregation="composite"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="eALJdiAwfjhR" type="eD7q3oYhRkRJ" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="0enn1jwMvck1" client="zEefQNte0ALl" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="CAPJMdl3TAQE" client="GZ5K1m7POEc8" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="BGncOBqECP70" client="GfJglvxKUNaU" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="OhaYPdjz5Z9a" xmi.id="x567UD75MZEv" client="p9S9Yo7wTiVs" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="OhaYPdjz5Z9a" xmi.id="TR1pyDkhpp15" client="z4eaHp57wXEU" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="OhaYPdjz5Z9a" xmi.id="0Dxp0yslp7PH" client="Qd7Dmp9jroH7" name=""/>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="FEK3JhK59w0k" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="DLoMDmf0Xc56" type="eD7q3oYhRkRJ" name="*" aggregation="aggregate"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="0OeYh07xCPyV" type="eD7q3oYhRkRJ" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="6IbGDb0Qumk7" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="YP550AAyZoWE" type="eD7q3oYhRkRJ" name="" aggregation="aggregate"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="mc9y17S8O3Mb" type="4nXYpjAjATs1" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="eKzX6hee6ki4" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="ss2PeXcP9lLA" type="4nXYpjAjATs1" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="rnGFoaoRuly0" type="eD7q3oYhRkRJ" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="SadWIJbB9bYl" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="8AAHwUQlHe06" type="4nXYpjAjATs1" name="" aggregation="aggregate"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="FoV9XT8z3lVM" type="gfCjrhDCXn3W" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="24VBg3woC546" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="ZUro8rsNdNVA" type="gfCjrhDCXn3W" name="" aggregation="aggregate"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="qd7sMaCMdhXJ" type="Nqat1GgwaRAI" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="iR5uU9y3dpqk" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="ei5H4aPsBUkV" type="gfCjrhDCXn3W" name="" aggregation="aggregate"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="3wrgbOzKo4CI" type="59FhWoP8wZhc" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="CBKn0AXfqduu" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="BIlNmVspSkV1" type="59FhWoP8wZhc" name="" aggregation="aggregate"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="6SLsVYBhjTUh" type="xKlDkaOOUSUE" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="IBBHqHr2MCGl" name="*...*">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" multiplicity="1..*" xmi.id="8z2oqpjNqQUP" type="eD7q3oYhRkRJ" name="" aggregation="aggregate"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" multiplicity="1..*" xmi.id="Npkr5MtNX3cM" type="eD7q3oYhRkRJ" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="VnT2q3MAXkoC" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="false" isSpecification="false" multiplicity="1" xmi.id="LExueWKrp6uX" type="4nXYpjAjATs1" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" multiplicity="1..*" xmi.id="LLbMUXTzKuz8" type="eD7q3oYhRkRJ" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="yMIT44dPHaKt" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="false" isSpecification="false" xmi.id="5cluifP201OS" type="gfCjrhDCXn3W" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="YpRqkRyglE9p" type="4nXYpjAjATs1" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="GlFVJZPOBAHs" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="false" isSpecification="false" xmi.id="ngsmhEED3g1l" type="gfCjrhDCXn3W" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="5xRq9ZfQKsvd" type="Nqat1GgwaRAI" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="PI2ZSJRGxH0f" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="false" isSpecification="false" multiplicity="1" xmi.id="VEqYssIxpjlx" type="gfCjrhDCXn3W" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" multiplicity="*" xmi.id="IPNaHGEfZEEz" type="59FhWoP8wZhc" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="REygzcPaMduP" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" multiplicity="1" xmi.id="li2kQ0V3gAXt" type="gfCjrhDCXn3W" name="" aggregation="composite"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" multiplicity="1" xmi.id="RyeGj8d8NZpK" type="4nXYpjAjATs1" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="9CsVqmtbUtJu" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" multiplicity="1" xmi.id="tmvYuSRMR5a8" type="Nqat1GgwaRAI" name="" aggregation="composite"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" multiplicity="*" xmi.id="BBHWi4osGgL4" type="gfCjrhDCXn3W" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="SEdu8vo1hkZa" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="false" isSpecification="false" multiplicity="*" xmi.id="Ayub1UkDezhM" type="59FhWoP8wZhc" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" multiplicity="*" xmi.id="1WCFCYKdkvXs" type="xKlDkaOOUSUE" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="RlzOayp3aAeU" name="enum"/>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="z0O73mLVdWbz" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" multiplicity="1" xmi.id="E3V4pbyEMvdu" type="eD7q3oYhRkRJ" name="" aggregation="aggregate"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" multiplicity="*" xmi.id="rQvRaZtXaFeb" type="eD7q3oYhRkRJ" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Enumeration stereotype="enum" visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="milEMeR4qK39" name="group_type">
<UML:EnumerationLiteral visibility="public" isSpecification="false" namespace="milEMeR4qK39" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="Dor46tDQNOwt" name="open"/>
<UML:EnumerationLiteral visibility="public" isSpecification="false" namespace="milEMeR4qK39" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="i0d9X0ulmmpt" name="private"/>
<UML:EnumerationLiteral visibility="public" isSpecification="false" namespace="milEMeR4qK39" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="3wH9sQeYOFfw" name="moderator-only"/>
</UML:Enumeration>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="milEMeR4qK39" xmi.id="FZhzJUqwU7wp" client="xKlDkaOOUSUE" name=""/>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="isfAyZzHLPW7" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="false" isSpecification="false" multiplicity="1" xmi.id="H5w4stg6TphH" type="gfCjrhDCXn3W" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" multiplicity="*" xmi.id="eEJ1SJiAALL8" type="59FhWoP8wZhc" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Interface stereotype="interface" visibility="public" isSpecification="false" namespace="Logical View" isAbstract="true" isLeaf="false" isRoot="false" xmi.id="YbSI0O3Gx8Zy" name="Редактирование_словаря_шаблонов"/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="rf2leq1uSxZw" xmi.id="uscO8gD4Zjay" client="cSqAW4mepJcx" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="rf2leq1uSxZw" xmi.id="PpVyY5vVPDIW" client="7nX07GAzwAiY" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="rf2leq1uSxZw" xmi.id="Kd6hqOC8prOH" client="OhaYPdjz5Z9a" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="0ASq0q5Er5cT" client="zEefQNte0ALl" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="QmIFrtiRLnBK" client="YbSI0O3Gx8Zy" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="JwmehvyTF70z" client="GZ5K1m7POEc8" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="S1kh8jg8wiMK" client="GfJglvxKUNaU" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="OhaYPdjz5Z9a" xmi.id="SWvNDFhpuQLq" client="Qd7Dmp9jroH7" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="OhaYPdjz5Z9a" xmi.id="kqVcEoQw8Adv" client="z4eaHp57wXEU" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="OhaYPdjz5Z9a" xmi.id="1bV9j62yYsWS" client="p9S9Yo7wTiVs" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="rf2leq1uSxZw" xmi.id="VUg3KBWjBzKq" client="cSqAW4mepJcx" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="rf2leq1uSxZw" xmi.id="ok70kPq3qw3o" client="7nX07GAzwAiY" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="rf2leq1uSxZw" xmi.id="PH3GE54alqSI" client="OhaYPdjz5Z9a" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="hlmSZElUQpnU" client="zEefQNte0ALl" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="sn9IbukX8oc1" client="YbSI0O3Gx8Zy" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="DaeJMFIKgUVE" client="GZ5K1m7POEc8" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="iCoOgJa4C7d9" client="GfJglvxKUNaU" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="OhaYPdjz5Z9a" xmi.id="dcHohuvMERdz" client="Qd7Dmp9jroH7" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="OhaYPdjz5Z9a" xmi.id="JVIXwuUp3NHT" client="z4eaHp57wXEU" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="OhaYPdjz5Z9a" xmi.id="XolYB3z6km1M" client="p9S9Yo7wTiVs" name=""/>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="XgYKmgFsoIhf" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" multiplicity="1" xmi.id="KpPJMyn5WyB0" type="gfCjrhDCXn3W" name="" aggregation="aggregate"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" multiplicity="*" xmi.id="K4uAdF5AvbTf" type="gfCjrhDCXn3W" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="spRp5JM3QuBr" name="Зарегистрированный_пользователь">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="yjExp2LfsZyb"/>
<UML:Generalization xmi.idref="3ytLdhCBGrPa"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="50FBVd2MSTBX" type="figa43ZvtKjB" initialValue="None" name="логин"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="kVaAQl1tWvkN" type="vIihzOTUWjUt" initialValue="[]" name="история"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="P6arGVkKVzTy" name="выйти_из_системы"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="aVK2yUXgz6qP" name="просмотреть_историю"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="ppGJl1h85HzK" name="просмотреть_группы"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="0hZsHVRp98R1" name="создать_группу">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="mNc7vR4ZQDnt" type="figa43ZvtKjB" value="None" name="имя"/>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="aXKhVhbUOAMd" type="milEMeR4qK39" value="moderator_only" name="тип_группы"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="nrmE4Y7d5QIZ" name="создать_раздел_онтологий">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="7t3T1N7e9YP4" type="figa43ZvtKjB" value="None" name="имя"/>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="SBjiZVuMMeYP" type="vIihzOTUWjUt" value="None" name="группы_пользователей"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="jTJTjocDi3L2" name="создать_онтологию">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="qyOHeBIUp7ne" type="figa43ZvtKjB" value="None" name="имя"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Generalization discriminator="" visibility="public" isSpecification="false" namespace="Logical View" child="spRp5JM3QuBr" xmi.id="yjExp2LfsZyb" parent="59FhWoP8wZhc" name=""/>
<UML:Interface stereotype="interface" visibility="public" isSpecification="false" namespace="Logical View" isAbstract="true" isLeaf="false" isRoot="false" xmi.id="ifYKIO5nol89" name="Просмотр_группы"/>
<UML:Interface stereotype="interface" visibility="public" isSpecification="false" namespace="Logical View" isAbstract="true" isLeaf="false" isRoot="false" xmi.id="f6tZESpu7ODN" name="Редактирование_группы">
<UML:Classifier.feature>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="njus77ErNMOM" name="изменить_список_модераторов"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="d2xpMbclFKGw" name="изменить_список_участников"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="3lGq49rqslgx" name="изменить_имя"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="qRiDoqlvZXnX" name="изменить_тип_группы"/>
</UML:Classifier.feature>
</UML:Interface>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="qunDH9YuBViV" client="f6tZESpu7ODN" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="OhaYPdjz5Z9a" xmi.id="HanQ4Vw9nBPO" client="ifYKIO5nol89" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="milEMeR4qK39" xmi.id="KDn48Dc5wYr0" client="xKlDkaOOUSUE" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="milEMeR4qK39" xmi.id="SsfNOWNXIeor" client="xKlDkaOOUSUE" name=""/>
<UML:Generalization discriminator="" visibility="public" isSpecification="false" namespace="Logical View" child="spRp5JM3QuBr" xmi.id="3ytLdhCBGrPa" parent="59FhWoP8wZhc" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="rf2leq1uSxZw" xmi.id="QknbLXb3AsiK" client="cSqAW4mepJcx" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="rf2leq1uSxZw" xmi.id="HoLPf2hOkEyJ" client="7nX07GAzwAiY" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="rf2leq1uSxZw" xmi.id="YvdG9bZPZ2UD" client="OhaYPdjz5Z9a" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="hj7GlaRCWuQA" client="GfJglvxKUNaU" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="DGFhAdsPGfoh" client="GZ5K1m7POEc8" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="cSqAW4mepJcx" xmi.id="vXs9CfoFXWV1" client="f6tZESpu7ODN" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="OhaYPdjz5Z9a" xmi.id="ePhBtCARPujr" client="ifYKIO5nol89" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="OhaYPdjz5Z9a" xmi.id="I6rizbX9LZlJ" client="Qd7Dmp9jroH7" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="OhaYPdjz5Z9a" xmi.id="b6rugbDS6smV" client="z4eaHp57wXEU" name=""/>
<UML:Abstraction visibility="public" isSpecification="false" namespace="Logical View" supplier="OhaYPdjz5Z9a" xmi.id="OtQVlC0GNbaa" client="p9S9Yo7wTiVs" name=""/>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="ydm04WOnYake" name="Сервер"/>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="9tn7oWGlZd3x" name="исполняемый_файл"/>
</UML:Namespace.ownedElement>
<XMI.extension xmi.extender="umbrello">
<diagrams>
<diagram showopsig="1" linecolor="#000000" snapx="25" showattribassocs="1" snapy="25" linewidth="0" showattsig="1" textcolor="#000000" isopen="0" showpackage="1" showpubliconly="1" showstereotype="1" name="Диаграмма_классов_сервер" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" canvasheight="1196,071411132812" canvaswidth="989,2857055664062" localid="-1" snapcsgrid="0" showgrid="1" showops="1" griddotcolor="#d3d3d3" backgroundcolor="#ffffff" usefillcolor="1" fillcolor="#d4ffe1" zoom="46" xmi.id="z4fbnvxXSMhJ" documentation="" showscope="1" snapgrid="1" showatts="1" type="1">
<widgets>
<classwidget linecolor="#000000" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="1" showpackage="1" x="-2300" showattsigs="601" showstereotype="1" y="-1200" showattributes="1" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="55AfaqzS5CXV" width="394" isinstance="0" usefillcolor="1" fillcolor="#b9eeff" xmi.id="xKlDkaOOUSUE" showscope="1" height="187" showopsigs="601"/>
<classwidget linecolor="#000000" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="1" showpackage="1" x="-2325" showattsigs="601" showstereotype="1" y="-300" showattributes="1" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="zWeTy9h1Cqgk" width="421" isinstance="0" usefillcolor="1" fillcolor="#b9eeff" xmi.id="Nqat1GgwaRAI" showscope="1" height="153" showopsigs="601"/>
<classwidget linecolor="#000000" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="1" showpackage="1" x="-2800" showattsigs="601" showstereotype="1" y="-625" showattributes="1" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="1hTa7bs67XY6" width="633" isinstance="0" usefillcolor="1" fillcolor="#b9eeff" xmi.id="gfCjrhDCXn3W" showscope="1" height="238" showopsigs="601"/>
<classwidget linecolor="#000000" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="1" showpackage="1" x="-2800" showattsigs="601" showstereotype="1" y="-1200" showattributes="1" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="RcTyNVTOCwyJ" width="236" isinstance="0" usefillcolor="1" fillcolor="#b9eeff" xmi.id="eD7q3oYhRkRJ" showscope="1" height="85" showopsigs="601"/>
<classwidget linecolor="#000000" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="1" showpackage="1" x="-2475" showattsigs="601" showstereotype="1" y="-975" showattributes="1" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="mg5K6twZSRm9" width="582" isinstance="0" usefillcolor="1" fillcolor="#b9eeff" xmi.id="59FhWoP8wZhc" showscope="1" height="85" showopsigs="601"/>
<classwidget linecolor="#000000" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="1" showpackage="1" x="-2800" showattsigs="601" showstereotype="1" y="-1025" showattributes="1" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="FPmAAObVWeoI" width="308" isinstance="0" usefillcolor="1" fillcolor="#b9eeff" xmi.id="4nXYpjAjATs1" showscope="1" height="85" showopsigs="601"/>
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2475" showstereotype="1" y="-500" text="1" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="rmBYFdEqdYFC" pretext="+" role="710" width="24" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="nXxIa2a9yf7c" height="21"/>
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2600" showstereotype="1" y="-500" text="*" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="b0KRbFKkX55H" pretext="+" role="709" width="24" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="Yw7yea0k1LdW" height="21"/>
<enumwidget width="106" showstereotype="1" x="-2475" usesdiagramusefillcolor="0" y="-1200" usesdiagramfillcolor="0" isinstance="0" localid="JUCWYssFaawf" fillcolor="#b9eeff" height="136" linecolor="#000000" xmi.id="milEMeR4qK39" showpackage="1" textcolor="#000000" usefillcolor="1" linewidth="0" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0"/>
<floatingtext linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-2750" showstereotype="1" y="-150" text=" Сервер " font="Oxygen-Sans,14,-1,5,50,0,0,0,0,0" localid="FIRbOxKz5qTz" pretext="" role="700" width="69" isinstance="0" posttext="" usefillcolor="1" fillcolor="#ffff00" xmi.id="1bOgeMXQUH7e" height="21"/>
<classwidget linecolor="#000000" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="1" showpackage="1" x="-2475" showattsigs="601" showstereotype="1" y="-850" showattributes="1" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="VmwttTMEUCxt" width="593" isinstance="0" usefillcolor="1" fillcolor="#b9eeff" xmi.id="spRp5JM3QuBr" showscope="1" height="153" showopsigs="601"/>
<boxwidget width="989,2857055664062" showstereotype="1" x="-2850" usesdiagramusefillcolor="0" y="-1250" usesdiagramfillcolor="0" isinstance="0" localid="y4LkFk6wL3rM" fillcolor="#d4ffe1" height="1196,071411132812" linecolor="#000000" xmi.id="S3x8MxrQJOBm" textcolor="#000000" usefillcolor="1" linewidth="0" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0"/>
</widgets>
<messages/>
<associations>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="0" widgetaid="4nXYpjAjATs1" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="#000000" seqnum="" totalcounta="2" xmi.id="VnT2q3MAXkoC" widgetbid="eD7q3oYhRkRJ" totalcountb="2" type="512" textcolor="#000000" usefillcolor="1" linewidth="0" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-2564" starty="-1025"/>
<endpoint endx="-2564" endy="-1115"/>
</linepath>
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2625" showstereotype="1" y="-1025" text="1" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="mJ6qBPdpwR21" pretext="" role="701" width="16" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="QJU8dNR588uW" height="21"/>
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2625" showstereotype="1" y="-1100" text="1..*" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="pDWSm1nZJsPU" pretext="" role="702" width="30" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="H0HDRICsbeyE" height="21"/>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="0" widgetaid="gfCjrhDCXn3W" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="#000000" seqnum="" totalcounta="2" xmi.id="REygzcPaMduP" widgetbid="4nXYpjAjATs1" totalcountb="2" type="510" textcolor="#000000" usefillcolor="1" linewidth="0" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-2592" starty="-625"/>
<endpoint endx="-2592" endy="-940"/>
</linepath>
<floatingtext linecolor="#000000" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2650" showstereotype="1" y="-675" text="1" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="PlwosYapNOkl" pretext="" role="701" width="16" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="q0XhfEPKgyYi" height="21"/>
<floatingtext linecolor="#000000" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2675" showstereotype="1" y="-875" text="1" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="xMIS5aCSJ9GA" pretext="" role="702" width="16" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="hoz3Dho1fLiL" height="21"/>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="0" widgetaid="Nqat1GgwaRAI" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="#000000" seqnum="" totalcounta="2" xmi.id="9CsVqmtbUtJu" widgetbid="gfCjrhDCXn3W" totalcountb="2" type="510" textcolor="#000000" usefillcolor="1" linewidth="0" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-2200" starty="-300"/>
<endpoint endx="-2200" endy="-387"/>
</linepath>
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2194" showstereotype="1" y="-330" text="1" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="eGCANQtjHCOU" pretext="" role="701" width="16" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="UjAdXwf2WO2T" height="21"/>
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2193" showstereotype="1" y="-387" text="*" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="9Eflyasao2kB" pretext="" role="702" width="16" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="SbtimHAEyKrU" height="21"/>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="0" widgetaid="59FhWoP8wZhc" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="#000000" seqnum="" totalcounta="2" xmi.id="SEdu8vo1hkZa" widgetbid="xKlDkaOOUSUE" totalcountb="2" type="512" textcolor="#000000" usefillcolor="1" linewidth="0" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-2225" starty="-975"/>
<endpoint endx="-2225" endy="-1013"/>
</linepath>
<floatingtext linecolor="#000000" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2250" showstereotype="1" y="-975" text="*" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="SrS9vjnjXRzA" pretext="" role="701" width="16" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="CtbmWvK4X7Fj" height="21"/>
<floatingtext linecolor="#000000" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2250" showstereotype="1" y="-1000" text="*" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="MrJgFJLf9oo4" pretext="" role="702" width="16" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="Xal2zlCBclx8" height="21"/>
</assocwidget>
<assocwidget indexa="0" indexb="0" usesdiagramusefillcolor="0" widgetaid="eD7q3oYhRkRJ" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="#000000" seqnum="" totalcounta="0" xmi.id="z0O73mLVdWbz" widgetbid="eD7q3oYhRkRJ" totalcountb="0" type="501" textcolor="#000000" usefillcolor="1" linewidth="0" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-2741" starty="-1115"/>
<endpoint endx="-2623" endy="-1115"/>
<point x="-2741" y="-1065"/>
<point x="-2623" y="-1065"/>
</linepath>
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2725" showstereotype="1" y="-1100" text="1" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="zy4dSgcgh5kU" pretext="" role="701" width="16" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="ggj0cKuTkotJ" height="21"/>
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2600" showstereotype="1" y="-1075" text="*" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="Nmqv0TVzPZcr" pretext="" role="702" width="16" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="DCYuIGPwx6xX" height="21"/>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="0" widgetaid="gfCjrhDCXn3W" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="#000000" seqnum="" totalcounta="2" xmi.id="isfAyZzHLPW7" widgetbid="59FhWoP8wZhc" totalcountb="2" type="512" textcolor="#000000" usefillcolor="1" linewidth="0" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-2550" starty="-625"/>
<endpoint endx="-2475" endy="-925"/>
<point x="-2550" y="-925"/>
</linepath>
<floatingtext linecolor="#000000" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2525" showstereotype="1" y="-725" text="1" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="sKPEkvJzzE1r" pretext="" role="701" width="16" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="7gvYVbn7p57I" height="21"/>
<floatingtext linecolor="#000000" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2525" showstereotype="1" y="-925" text="*" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="OpQW8jc02zEk" pretext="" role="702" width="16" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="vWjskjhpPaNs" height="21"/>
</assocwidget>
<assocwidget indexa="0" indexb="0" usesdiagramusefillcolor="0" widgetaid="gfCjrhDCXn3W" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="#000000" seqnum="" totalcounta="0" xmi.id="XgYKmgFsoIhf" widgetbid="gfCjrhDCXn3W" totalcountb="0" type="501" textcolor="#000000" usefillcolor="1" linewidth="0" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-2641,75" starty="-387"/>
<endpoint endx="-2325,25" endy="-387"/>
<point x="-2641,75" y="-337"/>
<point x="-2325,25" y="-337"/>
</linepath>
<floatingtext linecolor="#000000" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2625" showstereotype="1" y="-384" text="1" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="IiW4yBjG06ZK" pretext="" role="701" width="16" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="2KQYJZWddRlE" height="21"/>
<floatingtext linecolor="#000000" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2302" showstereotype="1" y="-384" text="*" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="goPZQqDiYjmU" pretext="" role="702" width="16" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="uTkuYIFacd9v" height="21"/>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="0" widgetaid="xKlDkaOOUSUE" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="none" seqnum="" totalcounta="2" xmi.id="SsfNOWNXIeor" widgetbid="milEMeR4qK39" totalcountb="2" type="502" textcolor="none" usefillcolor="1" linewidth="none" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-2300" starty="-1140,5"/>
<endpoint endx="-2369" endy="-1140,5"/>
</linepath>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="1" widgetaid="spRp5JM3QuBr" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="none" seqnum="" totalcounta="2" xmi.id="3ytLdhCBGrPa" widgetbid="59FhWoP8wZhc" totalcountb="2" type="500" textcolor="none" usefillcolor="1" linewidth="none" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-2184" starty="-850"/>
<endpoint endx="-2184" endy="-890"/>
</linepath>
</assocwidget>
</associations>
</diagram>
<diagram showopsig="1" linecolor="#000000" snapx="25" showattribassocs="1" snapy="25" linewidth="0" showattsig="1" textcolor="#000000" isopen="0" showpackage="1" showpubliconly="1" showstereotype="1" name="Диаграмма последовательности" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" canvasheight="1319" canvaswidth="1492,428571428572" localid="-1" snapcsgrid="0" showgrid="0" showops="1" griddotcolor="#d3d3d3" backgroundcolor="#ffffff" autoincrementsequence="0" usefillcolor="1" fillcolor="#d4ffe1" zoom="31" xmi.id="dzweq5jXjy0i" documentation="" showscope="1" snapgrid="0" showatts="1" type="3">
<widgets>
<objectwidget linecolor="none" usesdiagramfillcolor="1" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="1" instancename="User" x="-2812,98876953125" decon="0" showstereotype="1" y="80" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="qPJ6G5rXHgya" width="300" isinstance="0" multipleinstance="0" usefillcolor="1" fillcolor="none" xmi.id="spRp5JM3QuBr" height="62" drawasactor="1"/>
<objectwidget linecolor="none" usesdiagramfillcolor="1" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="1" instancename="Window" x="-2540,161376953125" decon="0" showstereotype="1" y="80" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="WliSIJ7kQBK1" width="166" isinstance="0" multipleinstance="0" usefillcolor="1" fillcolor="none" xmi.id="7nX07GAzwAiY" height="27" drawasactor="0"/>
<objectwidget linecolor="none" usesdiagramfillcolor="1" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="1" x="-2332,243408203125" decon="1" showstereotype="1" y="268,3417358398438" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="gaH1NLJpC5os" width="216" isinstance="0" multipleinstance="0" usefillcolor="1" fillcolor="none" xmi.id="GZ5K1m7POEc8" height="27" drawasactor="0"/>
<objectwidget linecolor="none" usesdiagramfillcolor="1" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="1" x="-1999,959716796875" decon="0" showstereotype="1" y="80" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="ZXfLcq1mgL3Q" width="70" isinstance="0" multipleinstance="0" usefillcolor="1" fillcolor="none" xmi.id="ydm04WOnYake" height="27" drawasactor="0"/>
<objectwidget linecolor="none" usesdiagramfillcolor="1" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="1" x="-1874,743530273438" decon="1" showstereotype="1" y="481,7962951660156" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="oUpZ1S6S6fcE" width="159" isinstance="0" multipleinstance="0" usefillcolor="1" fillcolor="none" xmi.id="9tn7oWGlZd3x" height="27" drawasactor="0"/>
<floatingtext linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-2150,943115234375" showstereotype="1" y="482,0333862304688" text="файл_создан" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="Z1lY8T9spkrI" pretext="" role="700" width="98" isinstance="0" posttext="" usefillcolor="1" fillcolor="#d4ffe1" xmi.id="HKNXK2EQIRKX" height="21"/>
<floatingtext linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-1931,810424804688" showstereotype="1" y="594,1277465820312" text="сообщения" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="7dcDuy1hKYbV" pretext="" role="700" width="83" isinstance="0" posttext="" usefillcolor="1" fillcolor="#d4ffe1" xmi.id="DvVADavqPlny" height="21"/>
<combinedFragmentwidget linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-2710,193115234375" showstereotype="1" y="351,6611633300781" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" CombinedFragmenttype="3" localid="bMq4rqC1v5iG" combinedFragmentname="-" width="1000" isinstance="0" usefillcolor="1" fillcolor="#d4ffe1" xmi.id="Pev4C4Fs9bgU" documentation="" height="633,9153442382812"/>
<combinedFragmentwidget linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-2305,575927734375" showstereotype="1" y="705,7398681640625" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" CombinedFragmenttype="2" localid="CYaJ7ElalwPl" combinedFragmentname="" width="526,5134887695312" isinstance="0" usefillcolor="1" fillcolor="#d4ffe1" xmi.id="woJG3vS6jf4c" documentation="" height="192,2305755615234"/>
<floatingtext linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-2122,977294921875" showstereotype="1" y="723,6409301757812" text="ошибок_при_компиляции_не_обнаружено" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="18mmrMHkW2Gi" pretext="" role="700" width="292" isinstance="0" posttext="" usefillcolor="1" fillcolor="#d4ffe1" xmi.id="T8pWmkymwXmb" height="21"/>
<floatingtext linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-2178,066162109375" showstereotype="1" y="839,2823486328125" text="построение_успешно" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="wBGJdNusFFTy" pretext="" role="700" width="152" isinstance="0" posttext="" usefillcolor="1" fillcolor="#d4ffe1" xmi.id="HyiNERJQbmhX" height="21"/>
<notewidget linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-3052,64208984375" showstereotype="1" y="73,37342071533203" text="Работа с черновиком" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="XetTibcAaAEL" width="189" isinstance="0" noteType="0" usefillcolor="1" fillcolor="#d4ffe1" xmi.id="OoKZJlWjkA9X" height="67"/>
<notewidget linecolor="#000000" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-2346,51171875" showstereotype="1" y="187,3338928222656" text="Здесь лишь иллюзия создания онтологии" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="xLa4GLj0LYqr" width="256" isinstance="0" noteType="0" usefillcolor="1" fillcolor="#d4ffe1" xmi.id="8Q0PQf9hRore" height="58"/>
</widgets>
<messages>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="WliSIJ7kQBK1" textid="i69r2OkvHwPf" operation="WhmhqCJkjszS" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="1" x="-2662" showstereotype="1" y="230,5454406738281" widgetaid="qPJ6G5rXHgya" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="jP7OLaIbByFv" width="213" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="WhmhqCJkjszS" height="99" sequencemessagetype="1000">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2624" showstereotype="1" y="209" text="создать_онтологию()" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="Stlzir2RF9na" pretext="" role="704" width="155" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="i69r2OkvHwPf" height="21"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="gaH1NLJpC5os" textid="AsJJkmQywVV3" operation="открыть_окно" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="1" x="-2456" showstereotype="1" y="281,8417358398438" widgetaid="WliSIJ7kQBK1" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="uoH9v5kd9rS9" width="123" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="GC5X7UAl2RkP" height="8" sequencemessagetype="1002">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2441" showstereotype="1" y="260" text="открыть_окно" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="k3Cx6yp1m7Ai" pretext="" role="704" width="107" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="AsJJkmQywVV3" height="21"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="gaH1NLJpC5os" textid="X6gQC1KHOMlA" operation="внесение_изменений_в_черновик" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="1" x="-2661" showstereotype="1" y="381,5454711914062" widgetaid="qPJ6G5rXHgya" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="UdX2lECju8Lw" width="436" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="6O2Wm8u1J9iG" height="8" sequencemessagetype="1001">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2580" showstereotype="1" y="360" text="внесение_изменений_в_черновик" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="IvWfPdosELuz" pretext="" role="704" width="236" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="X6gQC1KHOMlA" height="21"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="gaH1NLJpC5os" textid="RdZ9AFHIhHcU" operation="l4K20OJECBXB" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="1" x="-2662" showstereotype="1" y="436,7930908203125" widgetaid="qPJ6G5rXHgya" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="Vd9mmr22kXf8" width="446" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="l4K20OJECBXB" height="610" sequencemessagetype="1000">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2562" showstereotype="1" y="415" text="построить_онтологию()" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="w3PIPBQsmZdZ" pretext="" role="704" width="171" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="RdZ9AFHIhHcU" height="21"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="ZXfLcq1mgL3Q" textid="xqHsgde0F8vU" operation="создать_исполняемый_файл" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="1" x="-2224" showstereotype="1" y="455,2120971679688" widgetaid="gaH1NLJpC5os" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="srVZ954IxpOl" width="268" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="McUvFWs4ygbz" height="54" sequencemessagetype="1000">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2186" showstereotype="1" y="434" text="создать_исполняемый_файл" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="6hSAM2PFtsm0" pretext="" role="704" width="204" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="xqHsgde0F8vU" height="21"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="oUpZ1S6S6fcE" textid="7HFwFu5HyR9u" operation="создание" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="1" x="-1963" showstereotype="1" y="495,2962951660156" widgetaid="ZXfLcq1mgL3Q" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="emWcS7aWo0h9" width="88" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="26OtwAsrz9kd" height="8" sequencemessagetype="1002">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-1952" showstereotype="1" y="474" text="создание" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="mMd1UWT7I0hi" pretext="" role="704" width="72" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="7HFwFu5HyR9u" height="21"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="ZXfLcq1mgL3Q" textid="P0VKvNJJPAU9" operation="обработать_файл" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="1" x="-2224" showstereotype="1" y="567,0828857421875" widgetaid="gaH1NLJpC5os" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="LNnJowDLvwu1" width="268" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="O1rDmgV30sYJ" height="313" sequencemessagetype="1000">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2164" showstereotype="1" y="546" text="обработать_файл" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="tmhBB1iWOVpA" pretext="" role="704" width="132" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="P0VKvNJJPAU9" height="21"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="oUpZ1S6S6fcE" textid="I4TtvLHTJPV2" operation="компиляция" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="1" x="-1964" showstereotype="1" y="571,1428571428572" widgetaid="ZXfLcq1mgL3Q" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="B89YGdh5bruQ" width="177" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="Zy72j2hVdqdh" height="45" sequencemessagetype="1000">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-1959" showstereotype="1" y="550" text="компиляция" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="mvDji2Zr8gPO" pretext="" role="704" width="90" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="I4TtvLHTJPV2" height="21"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="gaH1NLJpC5os" textid="MudThNy8Hw40" operation="вывод_ошибок" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="1" x="-2223" showstereotype="1" y="665,9091186523438" widgetaid="gaH1NLJpC5os" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="3PTYT2zY8nmX" width="48" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="SvxyjMmyKGNC" height="20" sequencemessagetype="1001">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2218" showstereotype="1" y="644" text="вывод_ошибок" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="zu6EKGtOeKw5" pretext="" role="705" width="110" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="MudThNy8Hw40" height="21"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="gaH1NLJpC5os" textid="HmVRdlwjvnTN" operation="обнаружены_ошибки_при_компиляции" linewidth="none" seqnum="" textcolor="none" xclicked="-3066" usesdiagramusefillcolor="1" x="-3071" showstereotype="1" y="658,1038818359375" widgetaid="gaH1NLJpC5os" yclicked="572" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="Irxa5In4AtGV" width="847" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="89tkUnpofQHL" height="10" sequencemessagetype="1004">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-3066" showstereotype="1" y="637" text="обнаружены_ошибки_при_компиляции" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="oET5AX3QOy1T" pretext="" role="705" width="271" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="HmVRdlwjvnTN" height="21"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="ZXfLcq1mgL3Q" textid="NDFyEnjmNtgv" operation="сохранение_файла" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="1" x="-1963" showstereotype="1" y="797,6502685546875" widgetaid="ZXfLcq1mgL3Q" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="ZI9EjPZVd0al" width="48" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="YbBwaAOpurEY" height="20" sequencemessagetype="1001">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-1958" showstereotype="1" y="776" text="сохранение_файла" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="dBHWwlrT1ygk" pretext="" role="705" width="136" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="NDFyEnjmNtgv" height="21"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="gaH1NLJpC5os" textid="Q1dRob6ySbLY" operation="WPgLNumXPhS0" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="1" x="-2662" showstereotype="1" y="1092,05419921875" widgetaid="qPJ6G5rXHgya" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="EzyUmsYg3pye" width="446" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="WPgLNumXPhS0" height="88" sequencemessagetype="1000">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2606" showstereotype="1" y="1071" text="сохранить_черновик_как_новую_онтологию()" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="S1Y4lEbzDXTx" pretext="" role="704" width="320" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="Q1dRob6ySbLY" height="21"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="ZXfLcq1mgL3Q" textid="XrNBhLYJ1DOG" operation="создать_онтологию" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="1" x="-2224" showstereotype="1" y="1116,92041015625" widgetaid="gaH1NLJpC5os" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="7xJq5QNpdq0P" width="268" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="dgg5GRCQnU9G" height="43" sequencemessagetype="1000">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2170" showstereotype="1" y="1095" text="создать_онтологию" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="zE8FaZpgU9WY" pretext="" role="704" width="147" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="XrNBhLYJ1DOG" height="21"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="WliSIJ7kQBK1" textid="JnudzBAD4jFY" operation="передача_фокуса" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="1" x="-2456" showstereotype="1" y="1214" widgetaid="gaH1NLJpC5os" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="x7xUoyFeLCGZ" width="231" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="FvZ4Ua4JAdHC" height="8" sequencemessagetype="1001">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2390" showstereotype="1" y="1193" text="передача_фокуса" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="tB5vANP5ULaG" pretext="" role="704" width="130" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="JnudzBAD4jFY" height="21"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="WliSIJ7kQBK1" textid="bVScOAoRFU5V" operation="выбор_другой_операции" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="1" x="-2662" showstereotype="1" y="1252,54541015625" widgetaid="qPJ6G5rXHgya" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="LQC86Xus2tjE" width="213" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="55heGa6V6M1F" height="74" sequencemessagetype="1000">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-2644" showstereotype="1" y="1231" text="выбор_другой_операции" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" localid="JtSNB7rVY4dc" pretext="" role="704" width="177" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="bVScOAoRFU5V" height="21"/>
</messagewidget>
</messages>
<associations/>
</diagram>
<diagram showopsig="1" linecolor="#000000" snapx="25" showattribassocs="1" snapy="25" linewidth="0" showattsig="1" textcolor="#000000" isopen="0" showpackage="1" showpubliconly="1" showstereotype="1" name="Диаграмма классов_интерфейс" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" canvasheight="828,1065063476562" canvaswidth="834,4461669921875" localid="-1" snapcsgrid="0" showgrid="0" showops="1" griddotcolor="#d3d3d3" backgroundcolor="#ffffff" usefillcolor="1" fillcolor="#d4ffe1" zoom="55" xmi.id="fBpfOTfDW9gE" documentation="" showscope="1" snapgrid="1" showatts="1" type="1">
<widgets>
<floatingtext linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-1975" showstereotype="1" y="-1025" text=" Интерфейс " font="Oxygen-Sans,13,-1,5,50,0,0,0,0,0" localid="UstmutmTvlg3" pretext="" role="700" width="97" isinstance="0" posttext="" usefillcolor="1" fillcolor="#ffff00" xmi.id="PFlV3EU5prjR" height="21"/>
<interfacewidget linecolor="#000000" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="0" showpackage="1" x="-1575" showattsigs="601" showstereotype="1" y="-550" showattributes="0" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" drawascircle="0" localid="PbiDcvs6ljqf" width="311" isinstance="0" usefillcolor="1" fillcolor="#d4ffe1" xmi.id="z4eaHp57wXEU" showscope="1" height="59" showopsigs="601"/>
<interfacewidget linecolor="#000000" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="0" showpackage="1" x="-1975" showattsigs="601" showstereotype="1" y="-900" showattributes="0" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" drawascircle="0" localid="dJxzKKXjvGvV" width="187" isinstance="0" usefillcolor="1" fillcolor="#d4ffe1" xmi.id="cSqAW4mepJcx" showscope="1" height="59" showopsigs="601"/>
<interfacewidget linecolor="#000000" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="0" showpackage="1" x="-1700" showattsigs="601" showstereotype="1" y="-1000" showattributes="0" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" drawascircle="0" localid="R5S5PPb0iWx1" width="209" isinstance="0" usefillcolor="1" fillcolor="#d4ffe1" xmi.id="rf2leq1uSxZw" showscope="1" height="59" showopsigs="601"/>
<interfacewidget linecolor="#000000" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="0" showpackage="1" x="-1725" showattsigs="601" showstereotype="1" y="-875" showattributes="0" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" drawascircle="0" localid="ZRG1EQAclDQt" width="251" isinstance="0" usefillcolor="1" fillcolor="#d4ffe1" xmi.id="7nX07GAzwAiY" showscope="1" height="212" showopsigs="601"/>
<interfacewidget linecolor="#000000" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="0" showpackage="1" x="-1375" showattsigs="601" showstereotype="1" y="-900" showattributes="0" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" drawascircle="0" localid="97uNjHBIhSHt" width="138" isinstance="0" usefillcolor="1" fillcolor="#d4ffe1" xmi.id="OhaYPdjz5Z9a" showscope="1" height="59" showopsigs="601"/>
<interfacewidget linecolor="#000000" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="0" showpackage="1" x="-1575" showattsigs="601" showstereotype="1" y="-650" showattributes="0" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" drawascircle="0" localid="JBOwArYKxSfg" width="289,7894592285156" isinstance="0" usefillcolor="1" fillcolor="#d4ffe1" xmi.id="Qd7Dmp9jroH7" showscope="1" height="76" showopsigs="601"/>
<interfacewidget linecolor="#000000" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="0" showpackage="1" x="-1950" showattsigs="601" showstereotype="1" y="-525" showattributes="0" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" drawascircle="0" localid="aFtVug6DpV70" width="341" isinstance="0" usefillcolor="1" fillcolor="#d4ffe1" xmi.id="GZ5K1m7POEc8" showscope="1" height="110" showopsigs="601"/>
<interfacewidget linecolor="#000000" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="0" showpackage="1" x="-1575" showattsigs="601" showstereotype="1" y="-450" showattributes="0" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" drawascircle="0" localid="9LDp3w6b9x71" width="329" isinstance="0" usefillcolor="1" fillcolor="#d4ffe1" xmi.id="p9S9Yo7wTiVs" showscope="1" height="144" showopsigs="601"/>
<interfacewidget linecolor="#000000" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="0" showpackage="1" x="-1975" showattsigs="601" showstereotype="1" y="-375" showattributes="0" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" drawascircle="0" localid="gGmQBtUJEf8G" width="327" isinstance="0" usefillcolor="1" fillcolor="#d4ffe1" xmi.id="GfJglvxKUNaU" showscope="1" height="76" showopsigs="601"/>
<interfacewidget linecolor="#000000" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="0" showpackage="0" x="-1450" showattsigs="601" showstereotype="1" y="-725" showattributes="0" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" drawascircle="0" localid="dve3c61y852z" width="148" isinstance="0" usefillcolor="1" fillcolor="#d4ffe1" xmi.id="ifYKIO5nol89" showscope="1" height="50" showopsigs="601"/>
<interfacewidget linecolor="#000000" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="0" showpackage="0" x="-1925" showattsigs="601" showstereotype="1" y="-650" showattributes="0" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0" drawascircle="0" localid="kGAYzHgdCKem" width="252" isinstance="0" usefillcolor="1" fillcolor="#d4ffe1" xmi.id="f6tZESpu7ODN" showscope="1" height="110" showopsigs="601"/>
<boxwidget width="784,4461669921875" showstereotype="1" x="-2000" usesdiagramusefillcolor="0" y="-1050" usesdiagramfillcolor="0" isinstance="0" localid="BNyB1WWSZzWz" fillcolor="#ffff00" height="778,1065063476562" linecolor="#000000" xmi.id="PRZVAnTl8WRJ" textcolor="#000000" usefillcolor="1" linewidth="0" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0"/>
</widgets>
<messages/>
<associations>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="1" widgetaid="cSqAW4mepJcx" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="none" seqnum="" totalcounta="2" xmi.id="QknbLXb3AsiK" widgetbid="rf2leq1uSxZw" totalcountb="2" type="511" textcolor="none" usefillcolor="1" linewidth="none" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-1788" starty="-900"/>
<endpoint endx="-1700" endy="-941"/>
</linepath>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="1" widgetaid="7nX07GAzwAiY" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="none" seqnum="" totalcounta="2" xmi.id="HoLPf2hOkEyJ" widgetbid="rf2leq1uSxZw" totalcountb="2" type="511" textcolor="none" usefillcolor="1" linewidth="none" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-1595,5" starty="-875"/>
<endpoint endx="-1595,5" endy="-941"/>
</linepath>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="1" widgetaid="OhaYPdjz5Z9a" usesdiagramfillcolor="1" fillcolor="none" linecolor="none" seqnum="" totalcounta="2" xmi.id="YvdG9bZPZ2UD" widgetbid="rf2leq1uSxZw" totalcountb="2" type="511" textcolor="none" usefillcolor="1" linewidth="none" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-1375" starty="-900"/>
<endpoint endx="-1491" endy="-941"/>
</linepath>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="1" widgetaid="GfJglvxKUNaU" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="none" seqnum="" totalcounta="2" xmi.id="hj7GlaRCWuQA" widgetbid="cSqAW4mepJcx" totalcountb="2" type="511" textcolor="none" usefillcolor="1" linewidth="none" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-1975" starty="-375"/>
<endpoint endx="-1975" endy="-841"/>
</linepath>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="1" widgetaid="GZ5K1m7POEc8" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="none" seqnum="" totalcounta="2" xmi.id="DGFhAdsPGfoh" widgetbid="cSqAW4mepJcx" totalcountb="2" type="511" textcolor="none" usefillcolor="1" linewidth="none" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-1950" starty="-525"/>
<endpoint endx="-1950" endy="-841"/>
</linepath>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="1" widgetaid="f6tZESpu7ODN" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="none" seqnum="" totalcounta="2" xmi.id="vXs9CfoFXWV1" widgetbid="cSqAW4mepJcx" totalcountb="2" type="511" textcolor="none" usefillcolor="1" linewidth="none" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-1925" starty="-650"/>
<endpoint endx="-1925" endy="-841"/>
</linepath>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="1" widgetaid="ifYKIO5nol89" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="none" seqnum="" totalcounta="2" xmi.id="ePhBtCARPujr" widgetbid="OhaYPdjz5Z9a" totalcountb="2" type="511" textcolor="none" usefillcolor="1" linewidth="none" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-1302" starty="-725"/>
<endpoint endx="-1302" endy="-841"/>
</linepath>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="1" widgetaid="Qd7Dmp9jroH7" usesdiagramfillcolor="1" fillcolor="none" linecolor="none" seqnum="" totalcounta="2" xmi.id="I6rizbX9LZlJ" widgetbid="OhaYPdjz5Z9a" totalcountb="2" type="511" textcolor="none" usefillcolor="1" linewidth="none" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-1285,210571289062" starty="-650"/>
<endpoint endx="-1285,210571289062" endy="-841"/>
</linepath>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="0" widgetaid="z4eaHp57wXEU" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="none" seqnum="" totalcounta="2" xmi.id="b6rugbDS6smV" widgetbid="OhaYPdjz5Z9a" totalcountb="2" type="511" textcolor="none" usefillcolor="1" linewidth="none" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-1264" starty="-550"/>
<endpoint endx="-1264" endy="-841"/>
</linepath>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="1" widgetaid="p9S9Yo7wTiVs" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="none" seqnum="" totalcounta="2" xmi.id="OtQVlC0GNbaa" widgetbid="OhaYPdjz5Z9a" totalcountb="2" type="511" textcolor="none" usefillcolor="1" linewidth="none" font="Oxygen-Sans,10,-1,5,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-1246" starty="-450"/>
<endpoint endx="-1246" endy="-841"/>
</linepath>
</assocwidget>
</associations>
</diagram>
</diagrams>
</XMI.extension>
</UML:Model>
<UML:Model stereotype="folder" visibility="public" isSpecification="false" namespace="m1" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="Use Case View" name="Use Case View">
<UML:Namespace.ownedElement>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="mn6tNX2jD5v6" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="false" isSpecification="false" xmi.id="3UwqKPTfqqUw" type="ibG0HmeLfhov" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="WMB3TWPFKV8f" type="ibG0HmeLfhov" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="f0KBFv1irgjN" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="false" isSpecification="false" xmi.id="Flv60ribn9f9" type="ibG0HmeLfhov" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="XOAE3bQiZlro" type="ibG0HmeLfhov" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="5vwrYoBIWNtE" name="обработать">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="2GHUkI2AD0U3" type="ibG0HmeLfhov" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="g8YlvzByt5qP" type="ibG0HmeLfhov" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="bJT6eYxL33dS" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="d6OZBWf5MobQ" type="ibG0HmeLfhov" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="u55hamAC5bGh" type="ibG0HmeLfhov" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Actor visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="tVRGM1j50abZ" name="Пользователь"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="Hyy6t9Qmcp3w" name="Войти_в_систему"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="DbgcHIGYGEe7" name="Просмотреть_разделы"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="WmHrYGxmrdM8" name="Сделать_онтологию_текущей"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="04qdxIcS4rJa" name="Редактировать_онтологию"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="18FLFPWFRMtP" name="Просмотреть_словарь_шаблонов"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="ENvU3mW2vmN8" name="Просмотреть_доступные_словари"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="uiNEGgNU1Gw4" name="Редактировать_профиль"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="fwLLipJbXgpn" name="Просмотреть_профиль"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="xTAFt5lZz5uh" name="Просмотр_онтологии"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="bxBDSZzP08cu" name="Редактировать_словарь_шаблонов"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="CvdRMA7y7I9a" name="Редактировать_шаблон"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="TRi0XQOjM1Ai" name="Сохранить_изменения_как_черновик"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="OrWKy5hPWNO1" name="Построить_онтологию"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="G12AqCHC1nXy" name="Сохранить_изменения"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="1E59hGpwHr45" name="Добавить_словарь_шаблонов"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="2grUpHgpWmwB" name="Поиск"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="OiZL1rt4XiYL" name="Удалить_словарь_шаблонов"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="xT9S2q2QXbkY" name="Запросить_приглашение_в_группу"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="XRCMCMq9qxZs" name="Просмотреть_историю_действий"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="Zt9vMuArJMDV" name="Удалить_учетную_запись"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="drVDJ54qwDlG" name="Задать_вопрос_онтологии"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="bt1LV1F8siLA" name="Просмотреть_черновики"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="MwpfNJvzBuIg" name="Удалить_онтологию"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="cblEeo51iue4" name="Показать_место_определения_шаблона"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="y0vTsZXT9Ihn" name="Добавить_пользователя_в_группу"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="AFjx3puzppSg" name="Удалить_группу"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="Ss5PgHnoUUlX" name="Добавить_раздел_онтологий"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="kbUKdWY5McT3" name="Изменить_пароль"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="QtULomWWOyp1" name="Изменить_e-mail"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="I8QVZWAxOcGA" name="Добавить_шаблон"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="Lld3TqTjxrCU" name="Удалить_шаблон"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="4rBth7f0qJ3H" name="Добавить_модератора_в_группу"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="cOlzwr0yiCrN" name="Создать_группу"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="XYv1WNS6jD4e" name="Удалить_модератора"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="o0kdMkptJitn" name="Удалить_пользователя_из_группы"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="WNkVmLIYL0Bf" name="Зарегистрироваться"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="awoay5mUQUxC" name="Просмотр_списка_онтологий"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="jhIUMnjwjVUf" name="Просмотреть_список_словарей_шаблонов"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="mQPekJCSzSwL" name="Создать_онтологию"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="kpF1huUTKr53" name="Закрыть_окно"/>
<UML:Actor visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="QNmO6S6qHJqw" name="Окно_просмотра_онтологий"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="PpFNV3TvRFJX" name="Редактировать"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="iusQuFmH41eZ" name="Просмотреть"/>
<UML:Actor visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="QSIZmFPG48C8" name="Интерфейс"/>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="Adn4JEIkgbJQ" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="qifuqr04ZrKf" type="tVRGM1j50abZ" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="rSQlnoXxSKzj" type="drVDJ54qwDlG" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="WHTAqkagQFYE" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="4XIbMaGB2eun" type="tVRGM1j50abZ" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="TRitjhaFx2Pn" type="ENvU3mW2vmN8" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="mySBB0PGVgrq" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="E61Hkw2BLl25" type="tVRGM1j50abZ" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="SdINfgBPedap" type="18FLFPWFRMtP" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="by35evvszw7j" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="qAtCvtFLUXj9" type="tVRGM1j50abZ" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="DuXpV5d43g9h" type="bt1LV1F8siLA" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="b4YYzfGpn9zg" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="0C2Vkjcvd9j6" type="tVRGM1j50abZ" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="DMAG2KwcMSAL" type="WmHrYGxmrdM8" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="7Q9tX6ZYJb31" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="Kfuvndz0z8E0" type="tVRGM1j50abZ" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="SAcmck8iBFZg" type="MwpfNJvzBuIg" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="L8EciFd0vYug" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="Bte9zs9R1jCb" type="QNmO6S6qHJqw" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="TKHcXqJqxVTf" type="drVDJ54qwDlG" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="l6decXIoPwvO" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="o4opl0REIgrn" type="QNmO6S6qHJqw" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="X8dUd67MBkyn" type="ENvU3mW2vmN8" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="GGZdCUz1WnoH" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="lDW1uLoRRSt2" type="QNmO6S6qHJqw" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="WyPhgLTwc2Xo" type="18FLFPWFRMtP" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="XXn3KcJ4np5h" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="8s6ZIzZovwUc" type="QNmO6S6qHJqw" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="IxYux6iSbUUv" type="bt1LV1F8siLA" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="6nxta1ZitfFB" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="doxYlRA3MhvI" type="QNmO6S6qHJqw" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="lbkM5EF91D3b" type="WmHrYGxmrdM8" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="EaH5FWGqJBP2" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="dX3xCyFxZ0Hf" type="QNmO6S6qHJqw" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="CXoEipnuN5zd" type="MwpfNJvzBuIg" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="ZDTqOqszMvvY" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="t8UR6l4JGqVw" type="tVRGM1j50abZ" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="gIq1Lnety6jN" type="PpFNV3TvRFJX" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Dependency visibility="public" isSpecification="false" namespace="Use Case View" supplier="PpFNV3TvRFJX" xmi.id="ucKGVFpNOHoU" client="04qdxIcS4rJa" name=""/>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="h0v3HhVIVHZC" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="VoW2qqvgpeSt" type="QSIZmFPG48C8" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="7boA42hj0amG" type="PpFNV3TvRFJX" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Dependency visibility="public" isSpecification="false" namespace="Use Case View" supplier="QSIZmFPG48C8" xmi.id="IGYnX7x2tS5i" client="QNmO6S6qHJqw" name=""/>
<UML:Actor visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="f7jWZmEriazI" name="Окно_просмотра"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Use Case View" supplier="f7jWZmEriazI" xmi.id="JLsVt09W7q0e" client="QNmO6S6qHJqw" name=""/>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="6QaBHaprlIAX" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="jlf5KaBjhmUB" type="f7jWZmEriazI" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="gjztnEzrfX2u" type="PpFNV3TvRFJX" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Actor visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="8rlt8vOre3wx" name="Окно_просмотра_профиля_пользователя"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="eQUJxXD3MxvU" name="Выйти_из_системы"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Use Case View" supplier="PpFNV3TvRFJX" xmi.id="Gij5ACgpaB6V" client="uiNEGgNU1Gw4" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Use Case View" supplier="f7jWZmEriazI" xmi.id="S4x0D2WtI3wV" client="8rlt8vOre3wx" name=""/>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="kNw2QqXtF35S" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="8OgCjHKLOkzo" type="tVRGM1j50abZ" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="XlfMTUODrKFF" type="eQUJxXD3MxvU" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="Ak6NoBqwaU8H" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="lQcA9bweKZ0o" type="tVRGM1j50abZ" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="3M1shH5p1BDn" type="XRCMCMq9qxZs" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="N1kxVqEHHqPQ" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="PJ2jt2XuOXn3" type="8rlt8vOre3wx" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="msrl44ZR3JMY" type="XRCMCMq9qxZs" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="9YnOMCmlWoSN" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="oyHDV2EFv50x" type="8rlt8vOre3wx" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="7ZMAqgj0EUMY" type="eQUJxXD3MxvU" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Actor visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="h9HBvjWkfnvA" name="Окно_просмотра_словаря_шаблонов"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Use Case View" supplier="PpFNV3TvRFJX" xmi.id="gCmsg8QLFhU9" client="bxBDSZzP08cu" name=""/>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="av2naWw0Xn4J" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="XHtRrCVpBui6" type="tVRGM1j50abZ" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="mQjqrCXP5ZDf" type="cblEeo51iue4" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="57datgrQxkrm" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="wNZ5HFB2dsqV" type="h9HBvjWkfnvA" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="2Ns7w3m0BOY2" type="cblEeo51iue4" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Dependency visibility="public" isSpecification="false" namespace="Use Case View" supplier="f7jWZmEriazI" xmi.id="4QS18Il3fI8u" client="h9HBvjWkfnvA" name=""/>
<UML:Actor visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="VD98VF12VvDe" name="Главное_окно"/>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="MMyKXSO1dV78" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="i89E4KqiAdVU" type="VD98VF12VvDe" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="eJOl8zEVJDnq" type="eQUJxXD3MxvU" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="dBpHexNM5Wa7" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="rOq1zLVedrNl" type="VD98VF12VvDe" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="oZE7mzxQ8lfm" type="WmHrYGxmrdM8" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Dependency visibility="public" isSpecification="false" namespace="Use Case View" supplier="iusQuFmH41eZ" xmi.id="i29nZhvO4jP3" client="xTAFt5lZz5uh" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Use Case View" supplier="iusQuFmH41eZ" xmi.id="IfLMMiOOY34F" client="awoay5mUQUxC" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Use Case View" supplier="iusQuFmH41eZ" xmi.id="SRC0SEDUfv6h" client="jhIUMnjwjVUf" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Use Case View" supplier="iusQuFmH41eZ" xmi.id="Vv6ArBp0CAzs" client="fwLLipJbXgpn" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Use Case View" supplier="iusQuFmH41eZ" xmi.id="h2vtCtj3tKOz" client="DbgcHIGYGEe7" name=""/>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="RUfKo2KujFLQ" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="QSlwzz3eeEQq" type="tVRGM1j50abZ" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="c4k2cVf1xIMk" type="WNkVmLIYL0Bf" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="Kee3rxRIPDEM" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="AF1oTPf6TN84" type="tVRGM1j50abZ" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="ql5n4PVM19Qt" type="mQPekJCSzSwL" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="5pBS0NpAaoz3" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="Dc7exEgnzkY1" type="tVRGM1j50abZ" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="94OBBm4GbDhc" type="Ss5PgHnoUUlX" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="YUk8Ij9TJH7G" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="Vm1SWaUdeqon" type="tVRGM1j50abZ" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="cq2B1jlXDWdT" type="Hyy6t9Qmcp3w" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="DnwV21lVnnxJ" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="LRxxHjkrYm1X" type="tVRGM1j50abZ" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="Tk3eEg7QR1vT" type="2grUpHgpWmwB" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="1gymRu4mLzhb" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="iSQECPmgApKO" type="tVRGM1j50abZ" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="TQovRjMQOJDn" type="iusQuFmH41eZ" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="DHYWGF5wfWBs" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="vvY3isS9IE2i" type="VD98VF12VvDe" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="wN8IeJ5pabLo" type="iusQuFmH41eZ" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="rPlWtuMmnuqT" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="lGc3UfjO2qgg" type="VD98VF12VvDe" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="9kViLoWABHf4" type="Ss5PgHnoUUlX" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="91rwwhPhx2iP" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="fQofGSJPCm5Y" type="VD98VF12VvDe" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="YcgkrLo1NfvH" type="mQPekJCSzSwL" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="KLwFLedy4PdI" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="rui2gnaENGyF" type="VD98VF12VvDe" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="anExQ9EjS8yl" type="WNkVmLIYL0Bf" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="mbhpyK7qEnss" name="">
<UML:Association.connection>