aboutsummaryrefslogtreecommitdiffstats
path: root/Domains/hu.bme.mit.inf.dslreasoner.domains.satellite/model/satellite.aird
blob: 31575c3c06f360275589b82f3f29ea73b0ab51cc (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
<?xml version="1.0" encoding="UTF-8"?>
<xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:description="http://www.eclipse.org/sirius/description/1.1.0" xmlns:description_1="http://www.eclipse.org/sirius/diagram/description/1.1.0" xmlns:diagram="http://www.eclipse.org/sirius/diagram/1.1.0" xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.2/notation" xmlns:style="http://www.eclipse.org/sirius/diagram/description/style/1.1.0" xmlns:viewpoint="http://www.eclipse.org/sirius/1.1.0" xsi:schemaLocation="http://www.eclipse.org/sirius/description/1.1.0 http://www.eclipse.org/sirius/1.1.0#//description http://www.eclipse.org/sirius/diagram/description/1.1.0 http://www.eclipse.org/sirius/diagram/1.1.0#//description http://www.eclipse.org/sirius/diagram/description/style/1.1.0 http://www.eclipse.org/sirius/diagram/1.1.0#//description/style">
  <viewpoint:DAnalysis uid="_rcawQF0qEemRYLyXht2IrQ" selectedViews="_reOHEF0qEemRYLyXht2IrQ" version="14.1.0.201810161215">
    <semanticResources>satellite.ecore</semanticResources>
    <semanticResources>satellite.genmodel</semanticResources>
    <semanticResources>../src/hu/bme/mit/inf/dslreasoner/domains/satellite/queries/SatelliteQueries.vql</semanticResources>
    <semanticResources>http://www.eclipse.org/emf/2002/Ecore</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.GenericPatternMatcher</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.impl.BaseMatcher</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.GenericPatternMatch</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.GenericQuerySpecification</semanticResources>
    <semanticResources>java:/Objects/java.lang.Object</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.ViatraQueryEngine</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.tuple.Tuple</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.internal.apiimpl.QueryResultWrapper</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.ViatraQueryMatcher</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.IQuerySpecification</semanticResources>
    <semanticResources>java:/Primitives</semanticResources>
    <semanticResources>java:/Objects/java.util.function.Consumer</semanticResources>
    <semanticResources>java:/Objects/java.util.Collection</semanticResources>
    <semanticResources>java:/Objects/java.lang.String</semanticResources>
    <semanticResources>java:/Objects/java.util.Set</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.backend.IMatcherCapability</semanticResources>
    <semanticResources>java:/Objects/java.util.Optional</semanticResources>
    <semanticResources>java:/Objects/java.util.List</semanticResources>
    <semanticResources>java:/Objects/java.lang.Integer</semanticResources>
    <semanticResources>java:/Objects/java.util.stream.Stream</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.backend.IQueryResultProvider</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.IPatternMatch</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.queries.PQueryHeader</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.queries.PQuery</semanticResources>
    <semanticResources>java:/Objects/java.lang.Class</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.scope.QueryScope</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.annotations.PAnnotation</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.queries.PParameter</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.queries.PVisibility</semanticResources>
    <semanticResources>java:/Objects/java.util.function.BiConsumer</semanticResources>
    <semanticResources>java:/Objects/java.lang.FunctionalInterface</semanticResources>
    <semanticResources>java:/Objects/java.lang.annotation.Target</semanticResources>
    <semanticResources>java:/Objects/java.lang.annotation.ElementType</semanticResources>
    <semanticResources>java:/Objects/java.lang.annotation.Retention</semanticResources>
    <semanticResources>java:/Objects/java.lang.annotation.RetentionPolicy</semanticResources>
    <semanticResources>java:/Objects/java.lang.annotation.Documented</semanticResources>
    <semanticResources>java:/Objects/java.lang.annotation.Annotation</semanticResources>
    <semanticResources>java:/Objects/java.lang.Enum</semanticResources>
    <semanticResources>java:/Objects/java.lang.Comparable</semanticResources>
    <semanticResources>java:/Objects/java.io.Serializable</semanticResources>
    <semanticResources>java:/Objects/java.lang.CloneNotSupportedException</semanticResources>
    <semanticResources>java:/Objects/java.io.ObjectInputStream</semanticResources>
    <semanticResources>java:/Objects/java.io.IOException</semanticResources>
    <semanticResources>java:/Objects/java.lang.ClassNotFoundException</semanticResources>
    <semanticResources>java:/Objects/java.io.ObjectStreamException</semanticResources>
    <semanticResources>java:/Objects/java.lang.Exception</semanticResources>
    <semanticResources>java:/Objects/java.lang.Throwable</semanticResources>
    <semanticResources>java:/Objects/java.io.PrintWriter</semanticResources>
    <semanticResources>java:/Objects/java.io.PrintStream</semanticResources>
    <semanticResources>java:/Objects/java.lang.StackTraceElement</semanticResources>
    <semanticResources>java:/Objects/java.io.ObjectOutputStream</semanticResources>
    <semanticResources>java:/Objects/java.io.Writer</semanticResources>
    <semanticResources>java:/Objects/java.io.OutputStream</semanticResources>
    <semanticResources>java:/Objects/java.io.FileNotFoundException</semanticResources>
    <semanticResources>java:/Objects/java.io.File</semanticResources>
    <semanticResources>java:/Objects/java.nio.charset.Charset</semanticResources>
    <semanticResources>java:/Objects/java.io.UnsupportedEncodingException</semanticResources>
    <semanticResources>java:/Objects/java.lang.CharSequence</semanticResources>
    <semanticResources>java:/Objects/java.util.Locale</semanticResources>
    <semanticResources>java:/Objects/java.util.Formatter</semanticResources>
    <semanticResources>java:/Objects/java.lang.Appendable</semanticResources>
    <semanticResources>java:/Objects/java.io.Closeable</semanticResources>
    <semanticResources>java:/Objects/java.io.Flushable</semanticResources>
    <semanticResources>java:/Objects/java.lang.AutoCloseable</semanticResources>
    <semanticResources>java:/Objects/java.security.SecureRandom</semanticResources>
    <semanticResources>java:/Objects/java.net.URI</semanticResources>
    <semanticResources>java:/Objects/java.io.FilenameFilter</semanticResources>
    <semanticResources>java:/Objects/java.io.FileFilter</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.Path</semanticResources>
    <semanticResources>java:/Objects/java.lang.Deprecated</semanticResources>
    <semanticResources>java:/Objects/java.net.MalformedURLException</semanticResources>
    <semanticResources>java:/Objects/java.net.URL</semanticResources>
    <semanticResources>java:/Objects/sun.misc.Unsafe</semanticResources>
    <semanticResources>java:/Objects/java.io.FileSystem</semanticResources>
    <semanticResources>java:/Objects/java.util.Random</semanticResources>
    <semanticResources>java:/Objects/java.util.regex.Pattern</semanticResources>
    <semanticResources>java:/Objects/java.security.SecureRandomSpi</semanticResources>
    <semanticResources>java:/Objects/java.security.Provider</semanticResources>
    <semanticResources>java:/Objects/java.security.NoSuchAlgorithmException</semanticResources>
    <semanticResources>java:/Objects/java.security.NoSuchProviderException</semanticResources>
    <semanticResources>java:/Objects/java.security.MessageDigest</semanticResources>
    <semanticResources>java:/Objects/sun.security.util.Debug</semanticResources>
    <semanticResources>java:/Objects/java.util.Spliterator</semanticResources>
    <semanticResources>java:/Objects/java.util.function.DoubleConsumer</semanticResources>
    <semanticResources>java:/Objects/java.util.function.LongConsumer</semanticResources>
    <semanticResources>java:/Objects/java.util.function.IntConsumer</semanticResources>
    <semanticResources>java:/Objects/java.util.stream.DoubleStream</semanticResources>
    <semanticResources>java:/Objects/java.util.stream.IntStream</semanticResources>
    <semanticResources>java:/Objects/java.util.stream.LongStream</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.atomic.AtomicLong</semanticResources>
    <semanticResources>java:/Objects/java.io.ObjectStreamField</semanticResources>
    <semanticResources>java:/Objects/java.lang.Double</semanticResources>
    <semanticResources>java:/Objects/java.lang.Long</semanticResources>
    <semanticResources>java:/Objects/java.util.Comparator</semanticResources>
    <semanticResources>java:/Objects/java.lang.Number</semanticResources>
    <semanticResources>java:/Objects/java.lang.NumberFormatException</semanticResources>
    <semanticResources>java:/Objects/java.lang.IllegalArgumentException</semanticResources>
    <semanticResources>java:/Objects/java.lang.RuntimeException</semanticResources>
    <semanticResources>java:/Objects/java.math.BigInteger</semanticResources>
    <semanticResources>java:/Objects/java.lang.StringBuilder</semanticResources>
    <semanticResources>java:/Objects/java.lang.AbstractStringBuilder</semanticResources>
    <semanticResources>java:/Objects/java.lang.StringBuffer</semanticResources>
    <semanticResources>java:/Objects/java.util.function.Function</semanticResources>
    <semanticResources>java:/Objects/java.util.function.ToDoubleFunction</semanticResources>
    <semanticResources>java:/Objects/java.util.function.ToIntFunction</semanticResources>
    <semanticResources>java:/Objects/java.util.function.ToLongFunction</semanticResources>
    <semanticResources>java:/Objects/java.util.stream.BaseStream</semanticResources>
    <semanticResources>java:/Objects/java.util.function.DoublePredicate</semanticResources>
    <semanticResources>java:/Objects/java.util.OptionalDouble</semanticResources>
    <semanticResources>java:/Objects/java.util.function.Supplier</semanticResources>
    <semanticResources>java:/Objects/java.util.function.ObjDoubleConsumer</semanticResources>
    <semanticResources>java:/Objects/java.util.function.DoubleFunction</semanticResources>
    <semanticResources>java:/Objects/java.util.function.DoubleSupplier</semanticResources>
    <semanticResources>java:/Objects/java.util.function.DoubleUnaryOperator</semanticResources>
    <semanticResources>java:/Objects/java.util.PrimitiveIterator</semanticResources>
    <semanticResources>java:/Objects/java.util.function.DoubleToIntFunction</semanticResources>
    <semanticResources>java:/Objects/java.util.function.DoubleToLongFunction</semanticResources>
    <semanticResources>java:/Objects/java.util.function.DoubleBinaryOperator</semanticResources>
    <semanticResources>java:/Objects/java.util.DoubleSummaryStatistics</semanticResources>
    <semanticResources>java:/Objects/java.util.Iterator</semanticResources>
    <semanticResources>java:/Objects/java.lang.Runnable</semanticResources>
    <semanticResources>java:/Objects/java.util.function.IntPredicate</semanticResources>
    <semanticResources>java:/Objects/java.util.function.ObjIntConsumer</semanticResources>
    <semanticResources>java:/Objects/java.util.OptionalInt</semanticResources>
    <semanticResources>java:/Objects/java.util.function.IntFunction</semanticResources>
    <semanticResources>java:/Objects/java.util.function.IntSupplier</semanticResources>
    <semanticResources>java:/Objects/java.util.function.IntUnaryOperator</semanticResources>
    <semanticResources>java:/Objects/java.util.function.IntToDoubleFunction</semanticResources>
    <semanticResources>java:/Objects/java.util.function.IntToLongFunction</semanticResources>
    <semanticResources>java:/Objects/java.util.function.IntBinaryOperator</semanticResources>
    <semanticResources>java:/Objects/java.util.IntSummaryStatistics</semanticResources>
    <semanticResources>java:/Objects/java.util.function.LongPredicate</semanticResources>
    <semanticResources>java:/Objects/java.util.function.ObjLongConsumer</semanticResources>
    <semanticResources>java:/Objects/java.util.OptionalLong</semanticResources>
    <semanticResources>java:/Objects/java.util.function.LongFunction</semanticResources>
    <semanticResources>java:/Objects/java.util.function.LongSupplier</semanticResources>
    <semanticResources>java:/Objects/java.util.function.LongUnaryOperator</semanticResources>
    <semanticResources>java:/Objects/java.util.function.LongToDoubleFunction</semanticResources>
    <semanticResources>java:/Objects/java.util.function.LongToIntFunction</semanticResources>
    <semanticResources>java:/Objects/java.util.function.LongBinaryOperator</semanticResources>
    <semanticResources>java:/Objects/java.util.LongSummaryStatistics</semanticResources>
    <semanticResources>java:/Objects/java.lang.reflect.Field</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.CallerSensitive</semanticResources>
    <semanticResources>java:/Objects/java.lang.reflect.AccessibleObject</semanticResources>
    <semanticResources>java:/Objects/java.lang.reflect.Member</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.FieldAccessor</semanticResources>
    <semanticResources>java:/Objects/java.util.Map</semanticResources>
    <semanticResources>java:/Objects/java.lang.IllegalAccessException</semanticResources>
    <semanticResources>java:/Objects/java.lang.reflect.AnnotatedType</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.factory.GenericsFactory</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.repository.FieldRepository</semanticResources>
    <semanticResources>java:/Objects/java.lang.reflect.Type</semanticResources>
    <semanticResources>java:/Objects/java.lang.reflect.AnnotatedElement</semanticResources>
    <semanticResources>java:/Objects/java.lang.SecurityException</semanticResources>
    <semanticResources>java:/Objects/java.security.Permission</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.ReflectionFactory</semanticResources>
    <semanticResources>java:/Objects/java.security.Guard</semanticResources>
    <semanticResources>java:/Objects/java.security.PermissionCollection</semanticResources>
    <semanticResources>java:/Objects/java.util.Enumeration</semanticResources>
    <semanticResources>java:/Objects/java.security.PrivilegedAction</semanticResources>
    <semanticResources>java:/Objects/java.lang.reflect.Constructor</semanticResources>
    <semanticResources>java:/Objects/java.lang.reflect.Method</semanticResources>
    <semanticResources>java:/Objects/java.lang.invoke.MethodHandle</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.ConstructorAccessor</semanticResources>
    <semanticResources>java:/Objects/java.lang.reflect.Executable</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.MethodAccessor</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.LangReflectAccess</semanticResources>
    <semanticResources>java:/Objects/java.io.OptionalDataException</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.repository.ConstructorRepository</semanticResources>
    <semanticResources>java:/Objects/java.lang.reflect.TypeVariable</semanticResources>
    <semanticResources>java:/Objects/java.lang.InstantiationException</semanticResources>
    <semanticResources>java:/Objects/java.lang.reflect.InvocationTargetException</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.repository.GenericDeclRepository</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.MethodTypeSignature</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.repository.AbstractRepository</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.Signature</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.visitor.Reifier</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.Tree</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.visitor.TypeTreeVisitor</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.TypeArgument</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.ArrayTypeSignature</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.BooleanSignature</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.BottomSignature</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.ByteSignature</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.CharSignature</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.ClassTypeSignature</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.DoubleSignature</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.FloatSignature</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.FormalTypeParameter</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.IntSignature</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.LongSignature</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.ShortSignature</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.SimpleClassTypeSignature</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.TypeVariableSignature</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.VoidDescriptor</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.Wildcard</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.TypeTree</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.FieldTypeSignature</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.TypeSignature</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.BaseType</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.ReturnType</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.visitor.Visitor</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.tree.ClassSignature</semanticResources>
    <semanticResources>java:/Objects/java.lang.reflect.GenericDeclaration</semanticResources>
    <semanticResources>java:/Objects/java.lang.ReflectiveOperationException</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.repository.MethodRepository</semanticResources>
    <semanticResources>java:/Objects/java.lang.invoke.MethodType</semanticResources>
    <semanticResources>java:/Objects/java.lang.invoke.LambdaForm</semanticResources>
    <semanticResources>java:/Objects/java.lang.invoke.BoundMethodHandle</semanticResources>
    <semanticResources>java:/Objects/java.lang.invoke.MemberName</semanticResources>
    <semanticResources>java:/Objects/java.lang.invoke.MethodHandleImpl</semanticResources>
    <semanticResources>java:/Objects/java.lang.ref.WeakReference</semanticResources>
    <semanticResources>java:/Objects/java.lang.ref.ReferenceQueue</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.ConcurrentMap</semanticResources>
    <semanticResources>java:/Objects/java.lang.invoke.MethodTypeForm</semanticResources>
    <semanticResources>java:/Objects/java.lang.ClassLoader</semanticResources>
    <semanticResources>java:/Objects/java.lang.TypeNotPresentException</semanticResources>
    <semanticResources>java:/Objects/java.lang.invoke.Invokers</semanticResources>
    <semanticResources>java:/Objects/java.lang.IndexOutOfBoundsException</semanticResources>
    <semanticResources>java:/Objects/java.lang.invoke.Stable</semanticResources>
    <semanticResources>java:/Objects/java.lang.ref.Reference</semanticResources>
    <semanticResources>java:/Objects/java.lang.Thread</semanticResources>
    <semanticResources>java:/Objects/java.lang.ThreadGroup</semanticResources>
    <semanticResources>java:/Objects/java.lang.Boolean</semanticResources>
    <semanticResources>java:/Objects/java.security.AccessControlContext</semanticResources>
    <semanticResources>java:/Objects/sun.nio.ch.Interruptible</semanticResources>
    <semanticResources>java:/Objects/java.lang.InterruptedException</semanticResources>
    <semanticResources>java:/Objects/java.lang.RuntimePermission</semanticResources>
    <semanticResources>java:/Objects/java.lang.ThreadLocal</semanticResources>
    <semanticResources>java:/Objects/sun.misc.Contended</semanticResources>
    <semanticResources>java:/Objects/java.security.ProtectionDomain</semanticResources>
    <semanticResources>java:/Objects/java.security.DomainCombiner</semanticResources>
    <semanticResources>java:/Objects/java.security.AccessControlException</semanticResources>
    <semanticResources>java:/Objects/sun.misc.JavaSecurityAccess</semanticResources>
    <semanticResources>java:/Objects/java.security.CodeSource</semanticResources>
    <semanticResources>java:/Objects/java.security.Principal</semanticResources>
    <semanticResources>java:/Objects/java.security.cert.Certificate</semanticResources>
    <semanticResources>java:/Objects/java.security.CodeSigner</semanticResources>
    <semanticResources>java:/Objects/java.security.cert.CertificateFactory</semanticResources>
    <semanticResources>java:/Objects/java.net.SocketPermission</semanticResources>
    <semanticResources>java:/Objects/java.security.cert.CertificateEncodingException</semanticResources>
    <semanticResources>java:/Objects/java.security.PublicKey</semanticResources>
    <semanticResources>java:/Objects/java.security.cert.CertificateException</semanticResources>
    <semanticResources>java:/Objects/java.security.InvalidKeyException</semanticResources>
    <semanticResources>java:/Objects/java.security.SignatureException</semanticResources>
    <semanticResources>java:/Objects/java.security.Key</semanticResources>
    <semanticResources>java:/Objects/java.security.GeneralSecurityException</semanticResources>
    <semanticResources>java:/Objects/java.security.KeyException</semanticResources>
    <semanticResources>java:/Objects/java.security.cert.CertPath</semanticResources>
    <semanticResources>java:/Objects/java.security.Timestamp</semanticResources>
    <semanticResources>java:/Objects/java.util.Date</semanticResources>
    <semanticResources>java:/Objects/java.lang.Cloneable</semanticResources>
    <semanticResources>java:/Objects/java.time.Instant</semanticResources>
    <semanticResources>java:/Objects/sun.util.calendar.BaseCalendar</semanticResources>
    <semanticResources>java:/Objects/java.time.temporal.Temporal</semanticResources>
    <semanticResources>java:/Objects/java.time.temporal.TemporalAdjuster</semanticResources>
    <semanticResources>java:/Objects/java.time.ZoneOffset</semanticResources>
    <semanticResources>java:/Objects/java.time.OffsetDateTime</semanticResources>
    <semanticResources>java:/Objects/java.time.ZoneId</semanticResources>
    <semanticResources>java:/Objects/java.time.ZonedDateTime</semanticResources>
    <semanticResources>java:/Objects/java.time.temporal.TemporalAccessor</semanticResources>
    <semanticResources>java:/Objects/java.time.temporal.TemporalField</semanticResources>
    <semanticResources>java:/Objects/java.time.temporal.TemporalUnit</semanticResources>
    <semanticResources>java:/Objects/java.time.temporal.TemporalAmount</semanticResources>
    <semanticResources>java:/Objects/java.time.Clock</semanticResources>
    <semanticResources>java:/Objects/java.time.temporal.TemporalQuery</semanticResources>
    <semanticResources>java:/Objects/java.time.temporal.ValueRange</semanticResources>
    <semanticResources>java:/Objects/java.io.DataInput</semanticResources>
    <semanticResources>java:/Objects/java.io.InvalidObjectException</semanticResources>
    <semanticResources>java:/Objects/java.io.DataOutput</semanticResources>
    <semanticResources>java:/Objects/java.time.zone.ZoneRules</semanticResources>
    <semanticResources>java:/Objects/java.time.zone.ZoneOffsetTransition</semanticResources>
    <semanticResources>java:/Objects/java.time.zone.ZoneOffsetTransitionRule</semanticResources>
    <semanticResources>java:/Objects/java.time.LocalDateTime</semanticResources>
    <semanticResources>java:/Objects/java.time.Duration</semanticResources>
    <semanticResources>java:/Objects/java.time.Month</semanticResources>
    <semanticResources>java:/Objects/java.time.DayOfWeek</semanticResources>
    <semanticResources>java:/Objects/java.time.LocalTime</semanticResources>
    <semanticResources>java:/Objects/java.time.format.TextStyle</semanticResources>
    <semanticResources>java:/Objects/java.time.LocalDate</semanticResources>
    <semanticResources>java:/Objects/java.time.OffsetTime</semanticResources>
    <semanticResources>java:/Objects/java.time.format.DateTimeFormatter</semanticResources>
    <semanticResources>java:/Objects/java.time.chrono.ChronoLocalDate</semanticResources>
    <semanticResources>java:/Objects/java.time.chrono.IsoChronology</semanticResources>
    <semanticResources>java:/Objects/java.time.chrono.Era</semanticResources>
    <semanticResources>java:/Objects/java.time.Period</semanticResources>
    <semanticResources>java:/Objects/java.time.chrono.ChronoLocalDateTime</semanticResources>
    <semanticResources>java:/Objects/java.time.chrono.Chronology</semanticResources>
    <semanticResources>java:/Objects/java.time.chrono.ChronoPeriod</semanticResources>
    <semanticResources>java:/Objects/java.time.chrono.ChronoZonedDateTime</semanticResources>
    <semanticResources>java:/Objects/java.time.temporal.ChronoField</semanticResources>
    <semanticResources>java:/Objects/java.time.format.ResolverStyle</semanticResources>
    <semanticResources>java:/Objects/java.time.chrono.AbstractChronology</semanticResources>
    <semanticResources>java:/Objects/java.time.chrono.IsoEra</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.ConcurrentHashMap</semanticResources>
    <semanticResources>java:/Objects/java.util.AbstractMap</semanticResources>
    <semanticResources>java:/Objects/java.util.function.ToIntBiFunction</semanticResources>
    <semanticResources>java:/Objects/java.util.function.ToLongBiFunction</semanticResources>
    <semanticResources>java:/Objects/java.util.function.ToDoubleBiFunction</semanticResources>
    <semanticResources>java:/Objects/java.util.function.BiFunction</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.atomic.AtomicReference</semanticResources>
    <semanticResources>java:/Objects/java.lang.Void</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.CountedCompleter</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.locks.ReentrantLock</semanticResources>
    <semanticResources>java:/Objects/java.util.function.BinaryOperator</semanticResources>
    <semanticResources>java:/Objects/java.util.function.UnaryOperator</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.ForkJoinTask</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.Future</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.RunnableFuture</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.Callable</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.ExecutionException</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.TimeUnit</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.TimeoutException</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.ForkJoinPool</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.AbstractExecutorService</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.ForkJoinWorkerThread</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.ExecutorService</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.Executor</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.locks.Lock</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.locks.AbstractQueuedSynchronizer</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.locks.Condition</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.locks.AbstractOwnableSynchronizer</semanticResources>
    <semanticResources>java:/Objects/java.lang.NullPointerException</semanticResources>
    <semanticResources>java:/Objects/java.io.ObjectInput</semanticResources>
    <semanticResources>java:/Objects/java.io.ObjectOutput</semanticResources>
    <semanticResources>java:/Objects/java.text.Format</semanticResources>
    <semanticResources>java:/Objects/java.text.FieldPosition</semanticResources>
    <semanticResources>java:/Objects/java.text.ParseException</semanticResources>
    <semanticResources>java:/Objects/java.text.ParsePosition</semanticResources>
    <semanticResources>java:/Objects/java.time.format.DateTimeFormatterBuilder</semanticResources>
    <semanticResources>java:/Objects/java.time.format.DecimalStyle</semanticResources>
    <semanticResources>java:/Objects/java.time.format.DateTimeParseException</semanticResources>
    <semanticResources>java:/Objects/java.time.format.FormatStyle</semanticResources>
    <semanticResources>java:/Objects/java.time.format.DateTimeParseContext</semanticResources>
    <semanticResources>java:/Objects/java.text.AttributedCharacterIterator</semanticResources>
    <semanticResources>java:/Objects/java.text.CharacterIterator</semanticResources>
    <semanticResources>java:/Objects/java.time.format.DateTimePrintContext</semanticResources>
    <semanticResources>java:/Objects/java.lang.ref.SoftReference</semanticResources>
    <semanticResources>java:/Objects/java.time.format.DateTimeTextProvider</semanticResources>
    <semanticResources>java:/Objects/java.math.BigDecimal</semanticResources>
    <semanticResources>java:/Objects/java.time.format.SignStyle</semanticResources>
    <semanticResources>java:/Objects/java.lang.Character</semanticResources>
    <semanticResources>java:/Objects/java.math.MathContext</semanticResources>
    <semanticResources>java:/Objects/java.math.RoundingMode</semanticResources>
    <semanticResources>java:/Objects/java.math.MutableBigInteger</semanticResources>
    <semanticResources>java:/Objects/java.util.HashMap</semanticResources>
    <semanticResources>java:/Objects/java.util.LinkedHashMap</semanticResources>
    <semanticResources>java:/Objects/java.util.AbstractSet</semanticResources>
    <semanticResources>java:/Objects/java.util.AbstractCollection</semanticResources>
    <semanticResources>java:/Objects/java.time.DateTimeException</semanticResources>
    <semanticResources>java:/Objects/java.time.format.Parsed</semanticResources>
    <semanticResources>java:/Objects/java.util.ArrayList</semanticResources>
    <semanticResources>java:/Objects/java.util.AbstractList</semanticResources>
    <semanticResources>java:/Objects/java.util.RandomAccess</semanticResources>
    <semanticResources>java:/Objects/java.util.ListIterator</semanticResources>
    <semanticResources>java:/Objects/java.util.function.Predicate</semanticResources>
    <semanticResources>java:/Objects/sun.util.calendar.AbstractCalendar</semanticResources>
    <semanticResources>java:/Objects/sun.util.calendar.CalendarDate</semanticResources>
    <semanticResources>java:/Objects/java.util.TimeZone</semanticResources>
    <semanticResources>java:/Objects/sun.util.calendar.CalendarSystem</semanticResources>
    <semanticResources>java:/Objects/sun.util.calendar.Era</semanticResources>
    <semanticResources>java:/Objects/java.util.Properties</semanticResources>
    <semanticResources>java:/Objects/sun.util.calendar.Gregorian</semanticResources>
    <semanticResources>java:/Objects/java.util.Hashtable</semanticResources>
    <semanticResources>java:/Objects/java.io.InputStream</semanticResources>
    <semanticResources>java:/Objects/java.util.InvalidPropertiesFormatException</semanticResources>
    <semanticResources>java:/Objects/sun.util.spi.XmlPropertiesProvider</semanticResources>
    <semanticResources>java:/Objects/java.io.Reader</semanticResources>
    <semanticResources>java:/Objects/java.io.BufferedWriter</semanticResources>
    <semanticResources>java:/Objects/java.util.Dictionary</semanticResources>
    <semanticResources>java:/Objects/java.io.StreamCorruptedException</semanticResources>
    <semanticResources>java:/Objects/java.io.NotSerializableException</semanticResources>
    <semanticResources>java:/Objects/java.lang.Readable</semanticResources>
    <semanticResources>java:/Objects/java.nio.CharBuffer</semanticResources>
    <semanticResources>java:/Objects/java.nio.Buffer</semanticResources>
    <semanticResources>java:/Objects/java.nio.ByteOrder</semanticResources>
    <semanticResources>java:/Objects/java.security.cert.CertificateFactorySpi</semanticResources>
    <semanticResources>java:/Objects/java.security.cert.CRLException</semanticResources>
    <semanticResources>java:/Objects/java.security.cert.CRL</semanticResources>
    <semanticResources>java:/Objects/java.net.UnknownHostException</semanticResources>
    <semanticResources>java:/Objects/java.net.InetAddress</semanticResources>
    <semanticResources>java:/Objects/sun.net.spi.nameservice.NameService</semanticResources>
    <semanticResources>java:/Objects/java.net.NetworkInterface</semanticResources>
    <semanticResources>java:/Objects/java.net.InetAddressImpl</semanticResources>
    <semanticResources>java:/Objects/java.net.SocketException</semanticResources>
    <semanticResources>java:/Objects/java.net.InterfaceAddress</semanticResources>
    <semanticResources>java:/Objects/java.net.Inet4Address</semanticResources>
    <semanticResources>java:/Objects/javax.security.auth.Subject</semanticResources>
    <semanticResources>java:/Objects/javax.security.auth.AuthPermission</semanticResources>
    <semanticResources>java:/Objects/java.util.LinkedList</semanticResources>
    <semanticResources>java:/Objects/java.security.PrivilegedExceptionAction</semanticResources>
    <semanticResources>java:/Objects/java.security.PrivilegedActionException</semanticResources>
    <semanticResources>java:/Objects/java.security.BasicPermission</semanticResources>
    <semanticResources>java:/Objects/java.util.AbstractSequentialList</semanticResources>
    <semanticResources>java:/Objects/java.util.Deque</semanticResources>
    <semanticResources>java:/Objects/java.util.Queue</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.atomic.AtomicInteger</semanticResources>
    <semanticResources>java:/Objects/java.lang.ClassFormatError</semanticResources>
    <semanticResources>java:/Objects/java.nio.ByteBuffer</semanticResources>
    <semanticResources>java:/Objects/java.lang.Package</semanticResources>
    <semanticResources>java:/Objects/sun.misc.URLClassPath</semanticResources>
    <semanticResources>java:/Objects/java.lang.AssertionStatusDirectives</semanticResources>
    <semanticResources>java:/Objects/java.util.Vector</semanticResources>
    <semanticResources>java:/Objects/java.util.Stack</semanticResources>
    <semanticResources>java:/Objects/java.lang.LinkageError</semanticResources>
    <semanticResources>java:/Objects/java.lang.Error</semanticResources>
    <semanticResources>java:/Objects/java.nio.DoubleBuffer</semanticResources>
    <semanticResources>java:/Objects/java.nio.FloatBuffer</semanticResources>
    <semanticResources>java:/Objects/java.nio.IntBuffer</semanticResources>
    <semanticResources>java:/Objects/java.nio.LongBuffer</semanticResources>
    <semanticResources>java:/Objects/java.nio.ShortBuffer</semanticResources>
    <semanticResources>java:/Objects/java.util.jar.Manifest</semanticResources>
    <semanticResources>java:/Objects/java.io.FilterInputStream</semanticResources>
    <semanticResources>java:/Objects/java.util.jar.JarVerifier</semanticResources>
    <semanticResources>java:/Objects/java.util.jar.Attributes</semanticResources>
    <semanticResources>java:/Objects/java.util.jar.JarEntry</semanticResources>
    <semanticResources>java:/Objects/sun.security.util.ManifestEntryVerifier</semanticResources>
    <semanticResources>java:/Objects/java.util.jar.JarFile</semanticResources>
    <semanticResources>java:/Objects/java.util.zip.ZipEntry</semanticResources>
    <semanticResources>java:/Objects/java.io.ByteArrayOutputStream</semanticResources>
    <semanticResources>java:/Objects/sun.security.util.ManifestDigester</semanticResources>
    <semanticResources>java:/Objects/sun.security.util.SignatureFileVerifier</semanticResources>
    <semanticResources>java:/Objects/java.util.jar.JarException</semanticResources>
    <semanticResources>java:/Objects/java.util.zip.ZipException</semanticResources>
    <semanticResources>java:/Objects/java.util.zip.ZipFile</semanticResources>
    <semanticResources>java:/Objects/java.util.zip.ZipConstants</semanticResources>
    <semanticResources>java:/Objects/java.util.zip.InflaterInputStream</semanticResources>
    <semanticResources>java:/Objects/java.util.zip.Inflater</semanticResources>
    <semanticResources>java:/Objects/java.util.zip.ZipCoder</semanticResources>
    <semanticResources>java:/Objects/java.util.zip.DataFormatException</semanticResources>
    <semanticResources>java:/Objects/java.util.zip.ZStreamRef</semanticResources>
    <semanticResources>java:/Objects/java.nio.charset.CharsetDecoder</semanticResources>
    <semanticResources>java:/Objects/java.nio.charset.CharsetEncoder</semanticResources>
    <semanticResources>java:/Objects/java.nio.charset.CharacterCodingException</semanticResources>
    <semanticResources>java:/Objects/java.nio.charset.CoderResult</semanticResources>
    <semanticResources>java:/Objects/java.nio.charset.CodingErrorAction</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.attribute.FileTime</semanticResources>
    <semanticResources>java:/Objects/sun.security.pkcs.SignerInfo</semanticResources>
    <semanticResources>java:/Objects/sun.security.pkcs.PKCS7</semanticResources>
    <semanticResources>java:/Objects/sun.security.util.DisabledAlgorithmConstraints</semanticResources>
    <semanticResources>java:/Objects/sun.security.util.DerEncoder</semanticResources>
    <semanticResources>java:/Objects/sun.security.util.DerInputStream</semanticResources>
    <semanticResources>java:/Objects/sun.security.pkcs.ParsingException</semanticResources>
    <semanticResources>java:/Objects/sun.security.x509.X500Name</semanticResources>
    <semanticResources>java:/Objects/sun.security.x509.AlgorithmId</semanticResources>
    <semanticResources>java:/Objects/sun.security.pkcs.PKCS9Attributes</semanticResources>
    <semanticResources>java:/Objects/sun.security.util.DerOutputStream</semanticResources>
    <semanticResources>java:/Objects/java.security.cert.X509Certificate</semanticResources>
    <semanticResources>java:/Objects/sun.security.timestamp.TimestampToken</semanticResources>
    <semanticResources>java:/Objects/java.security.CryptoPrimitive</semanticResources>
    <semanticResources>java:/Objects/sun.security.util.DerInputBuffer</semanticResources>
    <semanticResources>java:/Objects/sun.security.util.DerValue</semanticResources>
    <semanticResources>java:/Objects/sun.security.util.ObjectIdentifier</semanticResources>
    <semanticResources>java:/Objects/sun.security.util.BitArray</semanticResources>
    <semanticResources>java:/Objects/java.io.ByteArrayInputStream</semanticResources>
    <semanticResources>java:/Objects/java.lang.ArrayIndexOutOfBoundsException</semanticResources>
    <semanticResources>java:/Objects/sun.security.x509.GeneralNameInterface</semanticResources>
    <semanticResources>java:/Objects/sun.security.x509.RDN</semanticResources>
    <semanticResources>java:/Objects/sun.security.x509.AVA</semanticResources>
    <semanticResources>java:/Objects/javax.security.auth.x500.X500Principal</semanticResources>
    <semanticResources>java:/Objects/java.lang.UnsupportedOperationException</semanticResources>
    <semanticResources>java:/Objects/java.lang.Byte</semanticResources>
    <semanticResources>java:/Objects/java.io.NotActiveException</semanticResources>
    <semanticResources>java:/Objects/java.security.AlgorithmParameters</semanticResources>
    <semanticResources>java:/Objects/java.security.AlgorithmParametersSpi</semanticResources>
    <semanticResources>java:/Objects/java.security.spec.AlgorithmParameterSpec</semanticResources>
    <semanticResources>java:/Objects/java.security.spec.InvalidParameterSpecException</semanticResources>
    <semanticResources>java:/Objects/sun.security.pkcs.PKCS9Attribute</semanticResources>
    <semanticResources>java:/Objects/sun.security.util.ByteArrayLexOrder</semanticResources>
    <semanticResources>java:/Objects/sun.security.util.ByteArrayTagOrder</semanticResources>
    <semanticResources>java:/Objects/java.security.cert.X509Extension</semanticResources>
    <semanticResources>java:/Objects/java.security.cert.CertificateExpiredException</semanticResources>
    <semanticResources>java:/Objects/java.security.cert.CertificateNotYetValidException</semanticResources>
    <semanticResources>java:/Objects/java.security.cert.CertificateParsingException</semanticResources>
    <semanticResources>java:/Objects/sun.security.pkcs.ContentInfo</semanticResources>
    <semanticResources>java:/Objects/java.security.cert.X509CRL</semanticResources>
    <semanticResources>java:/Objects/sun.security.timestamp.Timestamper</semanticResources>
    <semanticResources>java:/Objects/java.security.cert.X509CRLEntry</semanticResources>
    <semanticResources>java:/Objects/java.security.cert.CRLReason</semanticResources>
    <semanticResources>java:/Objects/sun.security.timestamp.TSRequest</semanticResources>
    <semanticResources>java:/Objects/sun.security.timestamp.TSResponse</semanticResources>
    <semanticResources>java:/Objects/sun.security.util.AbstractAlgorithmConstraints</semanticResources>
    <semanticResources>java:/Objects/sun.security.util.ConstraintsParameters</semanticResources>
    <semanticResources>java:/Objects/java.security.cert.CertPathValidatorException</semanticResources>
    <semanticResources>java:/Objects/java.text.SimpleDateFormat</semanticResources>
    <semanticResources>java:/Objects/sun.security.util.AlgorithmDecomposer</semanticResources>
    <semanticResources>java:/Objects/java.security.AlgorithmConstraints</semanticResources>
    <semanticResources>java:/Objects/java.text.DateFormat</semanticResources>
    <semanticResources>java:/Objects/java.text.DateFormatSymbols</semanticResources>
    <semanticResources>java:/Objects/java.text.CalendarBuilder</semanticResources>
    <semanticResources>java:/Objects/java.text.NumberFormat</semanticResources>
    <semanticResources>java:/Objects/sun.util.locale.provider.LocaleProviderAdapter</semanticResources>
    <semanticResources>java:/Objects/java.util.Calendar</semanticResources>
    <semanticResources>java:/Objects/java.util.spi.LocaleServiceProvider</semanticResources>
    <semanticResources>java:/Objects/java.text.spi.BreakIteratorProvider</semanticResources>
    <semanticResources>java:/Objects/java.util.spi.CalendarDataProvider</semanticResources>
    <semanticResources>java:/Objects/java.util.spi.CalendarNameProvider</semanticResources>
    <semanticResources>java:/Objects/sun.util.spi.CalendarProvider</semanticResources>
    <semanticResources>java:/Objects/java.text.spi.CollatorProvider</semanticResources>
    <semanticResources>java:/Objects/java.util.spi.CurrencyNameProvider</semanticResources>
    <semanticResources>java:/Objects/java.text.spi.DateFormatProvider</semanticResources>
    <semanticResources>java:/Objects/java.text.spi.DateFormatSymbolsProvider</semanticResources>
    <semanticResources>java:/Objects/java.text.spi.DecimalFormatSymbolsProvider</semanticResources>
    <semanticResources>java:/Objects/java.util.spi.LocaleNameProvider</semanticResources>
    <semanticResources>java:/Objects/sun.util.locale.provider.LocaleResources</semanticResources>
    <semanticResources>java:/Objects/java.text.spi.NumberFormatProvider</semanticResources>
    <semanticResources>java:/Objects/java.util.spi.TimeZoneNameProvider</semanticResources>
    <semanticResources>java:/Objects/java.text.BreakIterator</semanticResources>
    <semanticResources>java:/Objects/java.text.Collator</semanticResources>
    <semanticResources>java:/Objects/java.text.CollationKey</semanticResources>
    <semanticResources>java:/Objects/java.text.DecimalFormatSymbols</semanticResources>
    <semanticResources>java:/Objects/java.util.Currency</semanticResources>
    <semanticResources>java:/Objects/sun.util.locale.provider.LocaleServiceProviderPool</semanticResources>
    <semanticResources>java:/Objects/java.io.DataInputStream</semanticResources>
    <semanticResources>java:/Objects/java.util.HashSet</semanticResources>
    <semanticResources>java:/Objects/sun.util.locale.provider.ResourceBundleBasedAdapter</semanticResources>
    <semanticResources>java:/Objects/java.util.ResourceBundle</semanticResources>
    <semanticResources>java:/Objects/sun.util.resources.LocaleData</semanticResources>
    <semanticResources>java:/Objects/sun.util.locale.LocaleObjectCache</semanticResources>
    <semanticResources>java:/Objects/sun.util.locale.BaseLocale</semanticResources>
    <semanticResources>java:/Objects/java.util.spi.ResourceBundleControlProvider</semanticResources>
    <semanticResources>java:/Objects/sun.util.resources.OpenListResourceBundle</semanticResources>
    <semanticResources>java:/Objects/sun.util.resources.TimeZoneNamesBundle</semanticResources>
    <semanticResources>java:/Objects/sun.util.resources.ParallelListResourceBundle</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.atomic.AtomicMarkableReference</semanticResources>
    <semanticResources>java:/Objects/java.io.DataOutputStream</semanticResources>
    <semanticResources>java:/Objects/java.io.FilterOutputStream</semanticResources>
    <semanticResources>java:/Objects/sun.misc.Resource</semanticResources>
    <semanticResources>java:/Objects/java.net.URLStreamHandler</semanticResources>
    <semanticResources>java:/Objects/sun.misc.JarIndex</semanticResources>
    <semanticResources>java:/Objects/sun.misc.MetaIndex</semanticResources>
    <semanticResources>java:/Objects/sun.misc.JavaUtilZipFileAccess</semanticResources>
    <semanticResources>java:/Objects/java.net.URLStreamHandlerFactory</semanticResources>
    <semanticResources>java:/Objects/java.net.URLConnection</semanticResources>
    <semanticResources>java:/Objects/java.net.Proxy</semanticResources>
    <semanticResources>java:/Objects/java.net.UnknownServiceException</semanticResources>
    <semanticResources>java:/Objects/java.net.ContentHandler</semanticResources>
    <semanticResources>java:/Objects/java.net.FileNameMap</semanticResources>
    <semanticResources>java:/Objects/java.net.ContentHandlerFactory</semanticResources>
    <semanticResources>java:/Objects/sun.net.www.MessageHeader</semanticResources>
    <semanticResources>java:/Objects/java.net.SocketAddress</semanticResources>
    <semanticResources>java:/Objects/java.lang.invoke.ForceInline</semanticResources>
    <semanticResources>java:/Objects/java.lang.invoke.DontInline</semanticResources>
    <semanticResources>java:/Objects/java.lang.invoke.WrongMethodTypeException</semanticResources>
    <semanticResources>java:/Objects/sun.invoke.util.Wrapper</semanticResources>
    <semanticResources>java:/Objects/java.lang.invoke.LambdaFormEditor</semanticResources>
    <semanticResources>java:/Objects/java.lang.ClassCastException</semanticResources>
    <semanticResources>java:/Objects/java.lang.invoke.LambdaFormBuffer</semanticResources>
    <semanticResources>java:/Objects/jdk.internal.org.objectweb.asm.MethodVisitor</semanticResources>
    <semanticResources>java:/Objects/java.lang.invoke.MethodHandles</semanticResources>
    <semanticResources>java:/Objects/jdk.internal.org.objectweb.asm.AnnotationVisitor</semanticResources>
    <semanticResources>java:/Objects/jdk.internal.org.objectweb.asm.Attribute</semanticResources>
    <semanticResources>java:/Objects/jdk.internal.org.objectweb.asm.TypePath</semanticResources>
    <semanticResources>java:/Objects/jdk.internal.org.objectweb.asm.Handle</semanticResources>
    <semanticResources>java:/Objects/jdk.internal.org.objectweb.asm.Label</semanticResources>
    <semanticResources>java:/Objects/jdk.internal.org.objectweb.asm.ClassWriter</semanticResources>
    <semanticResources>java:/Objects/jdk.internal.org.objectweb.asm.ByteVector</semanticResources>
    <semanticResources>java:/Objects/jdk.internal.org.objectweb.asm.ClassReader</semanticResources>
    <semanticResources>java:/Objects/jdk.internal.org.objectweb.asm.ClassVisitor</semanticResources>
    <semanticResources>java:/Objects/jdk.internal.org.objectweb.asm.Item</semanticResources>
    <semanticResources>java:/Objects/jdk.internal.org.objectweb.asm.FieldVisitor</semanticResources>
    <semanticResources>java:/Objects/jdk.internal.org.objectweb.asm.AnnotationWriter</semanticResources>
    <semanticResources>java:/Objects/jdk.internal.org.objectweb.asm.FieldWriter</semanticResources>
    <semanticResources>java:/Objects/jdk.internal.org.objectweb.asm.MethodWriter</semanticResources>
    <semanticResources>java:/Objects/jdk.internal.org.objectweb.asm.Frame</semanticResources>
    <semanticResources>java:/Objects/jdk.internal.org.objectweb.asm.Handler</semanticResources>
    <semanticResources>java:/Objects/jdk.internal.org.objectweb.asm.Type</semanticResources>
    <semanticResources>java:/Objects/jdk.internal.org.objectweb.asm.Context</semanticResources>
    <semanticResources>java:/Objects/jdk.internal.org.objectweb.asm.Edge</semanticResources>
    <semanticResources>java:/Objects/java.lang.NoSuchMethodException</semanticResources>
    <semanticResources>java:/Objects/java.lang.NoSuchFieldException</semanticResources>
    <semanticResources>java:/Objects/java.lang.invoke.DirectMethodHandle</semanticResources>
    <semanticResources>java:/Objects/java.lang.invoke.MethodHandleInfo</semanticResources>
    <semanticResources>java:/Objects/java.lang.ClassValue</semanticResources>
    <semanticResources>java:/Objects/java.util.WeakHashMap</semanticResources>
    <semanticResources>java:/Objects/java.lang.invoke.DelegatingMethodHandle</semanticResources>
    <semanticResources>java:/Objects/sun.invoke.empty.Empty</semanticResources>
    <semanticResources>java:/Objects/java.lang.reflect.Parameter</semanticResources>
    <semanticResources>java:/Objects/java.lang.reflect.ParameterizedType</semanticResources>
    <semanticResources>java:/Objects/java.lang.reflect.WildcardType</semanticResources>
    <semanticResources>java:/Objects/java.util.regex.Matcher</semanticResources>
    <semanticResources>java:/Objects/java.util.regex.UnicodeProp</semanticResources>
    <semanticResources>java:/Objects/java.util.regex.PatternSyntaxException</semanticResources>
    <semanticResources>java:/Objects/java.util.regex.MatchResult</semanticResources>
    <semanticResources>java:/Objects/java.security.MessageDigestSpi</semanticResources>
    <semanticResources>java:/Objects/java.security.DigestException</semanticResources>
    <semanticResources>java:/Objects/java.net.URISyntaxException</semanticResources>
    <semanticResources>java:/Objects/java.lang.Iterable</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.Watchable</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.FileSystem</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.WatchService</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.WatchEvent</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.WatchKey</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.LinkOption</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.FileStore</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.PathMatcher</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.attribute.UserPrincipalLookupService</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.spi.FileSystemProvider</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.attribute.FileStoreAttributeView</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.attribute.FileAttributeView</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.attribute.AttributeView</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.attribute.GroupPrincipal</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.attribute.UserPrincipal</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.AccessMode</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.CopyOption</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.attribute.FileAttribute</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.OpenOption</semanticResources>
    <semanticResources>java:/Objects/java.nio.channels.AsynchronousFileChannel</semanticResources>
    <semanticResources>java:/Objects/java.nio.channels.SeekableByteChannel</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.DirectoryStream</semanticResources>
    <semanticResources>java:/Objects/java.nio.channels.FileChannel</semanticResources>
    <semanticResources>java:/Objects/java.nio.file.attribute.BasicFileAttributes</semanticResources>
    <semanticResources>java:/Objects/java.nio.channels.AsynchronousChannel</semanticResources>
    <semanticResources>java:/Objects/java.nio.channels.FileLock</semanticResources>
    <semanticResources>java:/Objects/java.nio.channels.CompletionHandler</semanticResources>
    <semanticResources>java:/Objects/java.nio.channels.Channel</semanticResources>
    <semanticResources>java:/Objects/java.nio.channels.ByteChannel</semanticResources>
    <semanticResources>java:/Objects/java.nio.channels.ReadableByteChannel</semanticResources>
    <semanticResources>java:/Objects/java.nio.channels.WritableByteChannel</semanticResources>
    <semanticResources>java:/Objects/java.nio.channels.spi.AbstractInterruptibleChannel</semanticResources>
    <semanticResources>java:/Objects/java.nio.channels.GatheringByteChannel</semanticResources>
    <semanticResources>java:/Objects/java.nio.channels.ScatteringByteChannel</semanticResources>
    <semanticResources>java:/Objects/java.nio.MappedByteBuffer</semanticResources>
    <semanticResources>java:/Objects/java.nio.channels.InterruptibleChannel</semanticResources>
    <semanticResources>java:/Objects/java.nio.channels.AsynchronousCloseException</semanticResources>
    <semanticResources>java:/Objects/java.nio.channels.ClosedChannelException</semanticResources>
    <semanticResources>java:/Objects/java.io.FileDescriptor</semanticResources>
    <semanticResources>java:/Objects/java.io.SyncFailedException</semanticResources>
    <semanticResources>java:/Objects/java.lang.SecurityManager</semanticResources>
    <semanticResources>java:/Objects/java.net.UrlDeserializedState</semanticResources>
    <semanticResources>java:/Objects/java.nio.charset.spi.CharsetProvider</semanticResources>
    <semanticResources>java:/Objects/java.util.SortedMap</semanticResources>
    <semanticResources>java:/Objects/sun.util.locale.InternalLocaleBuilder</semanticResources>
    <semanticResources>java:/Objects/sun.util.locale.LocaleExtensions</semanticResources>
    <semanticResources>java:/Objects/java.text.MessageFormat</semanticResources>
    <semanticResources>java:/Objects/java.util.MissingResourceException</semanticResources>
    <semanticResources>java:/Objects/sun.util.locale.LocaleSyntaxException</semanticResources>
    <semanticResources>java:/Objects/sun.util.locale.LanguageTag</semanticResources>
    <semanticResources>java:/Objects/sun.util.locale.ParseStatus</semanticResources>
    <semanticResources>java:/Objects/sun.util.locale.StringTokenIterator</semanticResources>
    <semanticResources>java:/Objects/sun.util.locale.Extension</semanticResources>
    <semanticResources>java:/Objects/java.io.OutputStreamWriter</semanticResources>
    <semanticResources>java:/Objects/sun.nio.cs.StreamEncoder</semanticResources>
    <semanticResources>java:/Objects/java.io.ObjectStreamConstants</semanticResources>
    <semanticResources>java:/Objects/java.io.ObjectStreamClass</semanticResources>
    <semanticResources>java:/Objects/java.io.Externalizable</semanticResources>
    <semanticResources>java:/Objects/java.io.SerialCallbackContext</semanticResources>
    <semanticResources>java:/Objects/java.io.SerializablePermission</semanticResources>
    <semanticResources>java:/Objects/java.io.InvalidClassException</semanticResources>
    <semanticResources>java:/Objects/sun.misc.ObjectInputFilter</semanticResources>
    <semanticResources>java:/Objects/java.io.ObjectInputValidation</semanticResources>
    <semanticResources>java:/Objects/sun.util.logging.PlatformLogger</semanticResources>
    <semanticResources>java:/Objects/sun.misc.ObjectStreamClassValidator</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.context.IInputKey</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.queries.PParameterDirection</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.PTraceable</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.queries.PDisjunction</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.backend.QueryEvaluationHint</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.queries.PProblem</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.TypeJudgement</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.PBody</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.PVariable</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.context.IQueryMetaContext</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.PConstraint</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.basicdeferred.ExportedParameter</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.context.InputKeyImplication</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.context.IPosetComparator</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.VariableDeferredPConstraint</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.DeferredPConstraint</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.planning.SubPlan</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.BasePConstraint</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.planning.operations.POperation</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.backend.QueryHintOption</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.backend.IQueryBackendFactory</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.context.IQueryBackendContext</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.backend.IQueryBackend</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.backend.IQueryBackendHintProvider</semanticResources>
    <semanticResources>java:/Objects/org.apache.log4j.Logger</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.analysis.QueryAnalyzer</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.context.IQueryCacheContext</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.context.IQueryResultProviderAccess</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.context.IQueryRuntimeContext</semanticResources>
    <semanticResources>java:/Objects/org.apache.log4j.Category</semanticResources>
    <semanticResources>java:/Objects/org.apache.log4j.spi.LoggerFactory</semanticResources>
    <semanticResources>java:/Objects/org.apache.log4j.spi.AppenderAttachable</semanticResources>
    <semanticResources>java:/Objects/org.apache.log4j.Appender</semanticResources>
    <semanticResources>java:/Objects/org.apache.log4j.spi.LoggingEvent</semanticResources>
    <semanticResources>java:/Objects/org.apache.log4j.Priority</semanticResources>
    <semanticResources>java:/Objects/org.apache.log4j.spi.LoggerRepository</semanticResources>
    <semanticResources>java:/Objects/org.apache.log4j.Level</semanticResources>
    <semanticResources>java:/Objects/org.apache.log4j.helpers.AppenderAttachableImpl</semanticResources>
    <semanticResources>java:/Objects/org.apache.log4j.spi.Filter</semanticResources>
    <semanticResources>java:/Objects/org.apache.log4j.spi.ErrorHandler</semanticResources>
    <semanticResources>java:/Objects/org.apache.log4j.Layout</semanticResources>
    <semanticResources>java:/Objects/org.apache.log4j.spi.OptionHandler</semanticResources>
    <semanticResources>java:/Objects/org.apache.log4j.spi.ThrowableInformation</semanticResources>
    <semanticResources>java:/Objects/org.apache.log4j.spi.LocationInfo</semanticResources>
    <semanticResources>java:/Objects/java.io.StringWriter</semanticResources>
    <semanticResources>java:/Objects/org.apache.log4j.spi.HierarchyEventListener</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.context.IQueryRuntimeContextListener</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.tuple.ITuple</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.tuple.TupleMask</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.context.IndexingService</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.util.Accuracy</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.tuple.IModifiableTuple</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.planning.QueryProcessingException</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.ViatraQueryRuntimeException</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.annotation.AnnotationType</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.ConstantPool</semanticResources>
    <semanticResources>java:/Objects/sun.reflect.generics.repository.ClassRepository</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.internal.apiimpl.EngineContextFactory</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.scope.IIndexingErrorListener</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.scope.IEngineContext</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.scope.IBaseIndex</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.scope.ViatraBaseIndexChangeListener</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.scope.IInstanceObserver</semanticResources>
    <semanticResources>java:/Objects/java.util.stream.Collector</semanticResources>
    <semanticResources>java:/Objects/java.lang.SafeVarargs</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.backend.IUpdateable</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.impl.BasePatternMatch</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.impl.BaseQuerySpecification</semanticResources>
    <semanticResources>java:/Objects/java.lang.ExceptionInInitializerError</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.exception.ViatraQueryException</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.queries.QueryInitializationException</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.ViatraQueryEngineOptions</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.tuple.AbstractTuple</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.impl.BaseGeneratedEMFQuerySpecificationWithGenericMatcher</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.impl.BaseGeneratedPatternGroup</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.impl.BaseQueryGroup</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.IQueryGroup</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.AdvancedViatraQueryEngine</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.ViatraQueryEngineLifecycleListener</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.IMatchUpdateListener</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.ViatraQueryModelUpdateListener</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.impl.BaseGeneratedEMFPQuery</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.queries.BasePQuery</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.EClassifier</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.EEnumLiteral</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.EStructuralFeature</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.ENamedElement</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.EPackage</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.util.EList</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.ETypeParameter</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.EModelElement</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.EObject</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.EAnnotation</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.notify.Notifier</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.util.TreeIterator</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.EClass</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.EReference</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.EOperation</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.resource.Resource</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.notify.Adapter</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.notify.Notification</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.EAttribute</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.EGenericType</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.EDataType</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.InternalEObject</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.CommonPlugin</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.notify.NotificationChain</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.util.URI</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.util.Pool</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.util.SegmentSequence</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.util.CommonUtil</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.util.WeakInterningHashSet</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.locks.ReentrantReadWriteLock</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.util.InterningSet</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.locks.ReadWriteLock</semanticResources>
    <semanticResources>java:/Objects/java.lang.IllegalMonitorStateException</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.EMFPlugin</semanticResources>
    <semanticResources>java:/Objects/org.osgi.framework.BundleActivator</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.util.ResourceLocator</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.util.DelegatingResourceLocator</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.util.Logger</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.Plugin</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.IPluginDescriptor</semanticResources>
    <semanticResources>java:/Objects/org.osgi.framework.Bundle</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.ILog</semanticResources>
    <semanticResources>java:/Objects/org.osgi.framework.BundleContext</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.IPath</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.osgi.service.debug.DebugOptions</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.Preferences</semanticResources>
    <semanticResources>java:/Objects/java.lang.IllegalStateException</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.CoreException</semanticResources>
    <semanticResources>java:/Objects/org.osgi.util.tracker.ServiceTracker</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.osgi.service.debug.DebugTrace</semanticResources>
    <semanticResources>java:/Objects/java.util.EventListener</semanticResources>
    <semanticResources>java:/Objects/java.util.EventObject</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.IStatus</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.ListenerList</semanticResources>
    <semanticResources>java:/Objects/org.osgi.util.tracker.ServiceTrackerCustomizer</semanticResources>
    <semanticResources>java:/Objects/org.osgi.framework.AllServiceListener</semanticResources>
    <semanticResources>java:/Objects/org.osgi.util.tracker.AbstractTracked</semanticResources>
    <semanticResources>java:/Objects/org.osgi.framework.ServiceReference</semanticResources>
    <semanticResources>java:/Objects/org.osgi.framework.ServiceEvent</semanticResources>
    <semanticResources>java:/Objects/org.osgi.framework.ServiceListener</semanticResources>
    <semanticResources>java:/Objects/org.osgi.framework.Filter</semanticResources>
    <semanticResources>java:/Objects/org.osgi.framework.InvalidSyntaxException</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.IExtension</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.IExtensionPoint</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.IPluginPrerequisite</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.ILibrary</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.PluginVersionIdentifier</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.InvalidRegistryObjectException</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.IConfigurationElement</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.IContributor</semanticResources>
    <semanticResources>java:/Objects/org.osgi.framework.Version</semanticResources>
    <semanticResources>java:/Objects/org.osgi.framework.BundleException</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.ILogListener</semanticResources>
    <semanticResources>java:/Objects/org.osgi.framework.BundleReference</semanticResources>
    <semanticResources>java:/Objects/org.osgi.framework.BundleListener</semanticResources>
    <semanticResources>java:/Objects/org.osgi.framework.FrameworkListener</semanticResources>
    <semanticResources>java:/Objects/org.osgi.framework.ServiceObjects</semanticResources>
    <semanticResources>java:/Objects/org.osgi.framework.ServiceRegistration</semanticResources>
    <semanticResources>java:/Objects/org.osgi.framework.ServiceFactory</semanticResources>
    <semanticResources>java:/Objects/org.osgi.framework.BundleEvent</semanticResources>
    <semanticResources>java:/Objects/org.osgi.framework.FrameworkEvent</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.ETypedElement</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.EParameter</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.resource.ResourceSet</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.notify.AdapterFactory</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.resource.URIConverter</semanticResources>
    <semanticResources>java:/Objects/java.io.InputStreamReader</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.resource.ContentHandler</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.resource.URIHandler</semanticResources>
    <semanticResources>java:/Objects/sun.nio.cs.StreamDecoder</semanticResources>
    <semanticResources>java:/Objects/java.io.FileInputStream</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.util.EMap</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.EFactory</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.util.Enumerator</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.EEnum</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.util.FeatureMap</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.util.InternalEList</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.util.EContentsEList</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.util.AbstractSequentialInternalEList</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.domains.satellite.CommunicatingElement</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.domains.satellite.CommSubsystem</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.domains.satellite.DirectedCommunicationLink</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.domains.satellite.TransceiverBand</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.domains.satellite.AntennaGain</semanticResources>
    <semanticResources>java:/Objects/java.lang.Override</semanticResources>
    <semanticResources>java:/Objects/java.lang.SuppressWarnings</semanticResources>
    <semanticResources>java:/Objects/javax.annotation.Generated</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.api.impl.BaseGeneratedEMFQuerySpecification</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.domains.satellite.Spacecraft</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.domains.satellite.Payload</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.domains.satellite.InterferometryMission</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.domains.satellite.ConstellationMission</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.domains.satellite.GroundStationNetwork</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.domains.satellite.SmallSat</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.domains.satellite.CubeSat3U</semanticResources>
    <semanticResources>../src/hu/bme/mit/inf/dslreasoner/domains/satellite/runner/SatelliteGeneratorMain.xtend</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.ArrayLiterals</semanticResources>
    <semanticResources>java:/Objects/com.google.common.annotations.GwtCompatible</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.Pure</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.Inline</semanticResources>
    <semanticResources>java:/Objects/com.google.common.annotations.Beta</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.CollectionLiterals</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.Pair</semanticResources>
    <semanticResources>java:/Objects/java.util.LinkedHashSet</semanticResources>
    <semanticResources>java:/Objects/java.util.TreeMap</semanticResources>
    <semanticResources>java:/Objects/java.util.TreeSet</semanticResources>
    <semanticResources>java:/Objects/java.util.NavigableMap</semanticResources>
    <semanticResources>java:/Objects/java.util.NavigableSet</semanticResources>
    <semanticResources>java:/Objects/java.util.SortedSet</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.InputOutput</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.ArrayExtensions</semanticResources>
    <semanticResources>java:/Objects/com.google.common.annotations.GwtIncompatible</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.BigDecimalExtensions</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.BigIntegerExtensions</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.BooleanExtensions</semanticResources>
    <semanticResources>java:/Objects/com.google.common.primitives.Booleans</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.ByteExtensions</semanticResources>
    <semanticResources>java:/Objects/java.lang.Math</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.CharacterExtensions</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.CollectionExtensions</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.Iterables</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ImmutableList</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ImmutableSet</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ImmutableSortedSet</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ImmutableMap</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ImmutableSortedMap</semanticResources>
    <semanticResources>java:/Objects/java.util.Collections</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.FluentIterable</semanticResources>
    <semanticResources>java:/Objects/com.google.common.base.Predicate</semanticResources>
    <semanticResources>java:/Objects/com.google.common.base.Function</semanticResources>
    <semanticResources>java:/Objects/com.google.common.base.Optional</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ImmutableCollection</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ImmutableListMultimap</semanticResources>
    <semanticResources>java:/Objects/com.google.common.base.Joiner</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ImmutableMultiset</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ImmutableMultimap</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ListMultimap</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.Multimap</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.AbstractMultimap</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.UnmodifiableIterator</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.Serialization</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ImmutableSetMultimap</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.Multiset</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.Multimaps</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.Maps</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.AbstractListMultimap</semanticResources>
    <semanticResources>java:/Objects/com.google.common.base.Supplier</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.AbstractMapBasedMultimap</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.AbstractSetMultimap</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.AbstractSortedSetMultimap</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.AbstractMultiset</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.Multisets</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.SetMultimap</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ForwardingMultimap</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.SortedSetMultimap</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.FilteredMultimap</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.FilteredSetMultimap</semanticResources>
    <semanticResources>java:/Objects/java.util.EnumMap</semanticResources>
    <semanticResources>java:/Objects/com.google.common.base.Converter</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.BiMap</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ForwardingMap</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.Ordering</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.Sets</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ForwardingSet</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.AbstractNavigableMap</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.MapDifference</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.SortedMapDifference</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ForwardingCollection</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ForwardingSortedMap</semanticResources>
    <semanticResources>java:/Objects/com.google.common.base.Equivalence</semanticResources>
    <semanticResources>java:/Objects/java.util.IdentityHashMap</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.Range</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ForwardingObject</semanticResources>
    <semanticResources>java:/Objects/com.google.common.annotations.VisibleForTesting</semanticResources>
    <semanticResources>java:/Objects/java.util.EnumSet</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.CartesianList</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ForwardingNavigableSet</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.Collections2</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ForwardingSortedSet</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.CopyOnWriteArraySet</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.AbstractIterator</semanticResources>
    <semanticResources>java:/Objects/java.util.concurrent.CopyOnWriteArrayList</semanticResources>
    <semanticResources>java:/Objects/java.util.function.BiPredicate</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.Cut</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.DiscreteDomain</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.BoundType</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ForwardingMultiset</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.SortedMultiset</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.SortedMultisetBridge</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.SortedIterable</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.UnmodifiableListIterator</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ImmutableSortedSetFauxverideShim</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.RegularImmutableSortedSet</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ImmutableMapEntry</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ImmutableEntry</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.AbstractMapEntry</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.ImmutableSortedMapFauxverideShim</semanticResources>
    <semanticResources>java:/Objects/java.util.AbstractQueue</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.ComparableExtensions</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.DoubleExtensions</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.FloatExtensions</semanticResources>
    <semanticResources>java:/Objects/java.lang.Float</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.FunctionExtensions</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.Functions</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.Procedures</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.IntegerExtensions</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.ExclusiveRange</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.IntegerRange</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.IterableExtensions</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.IteratorExtensions</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.Iterators</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.MultitransformedIterator</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.PeekingIterator</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.ListExtensions</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.LongExtensions</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.MapExtensions</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.internal.UnmodifiableMergingMapView</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.ObjectExtensions</semanticResources>
    <semanticResources>java:/Objects/com.google.common.base.Objects</semanticResources>
    <semanticResources>java:/Objects/com.google.common.base.ExtraObjectsMethodsForWeb</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.ProcedureExtensions</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.ShortExtensions</semanticResources>
    <semanticResources>java:/Objects/java.lang.Short</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.StringExtensions</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/execution/StandaloneScriptExecutor.xtend</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/ApplicationConfigurationStandaloneSetup.xtend</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ConfigurationScript</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.NullProgressMonitor</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.util.EcoreUtil</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.matcher.ReteEngine</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/execution/PatternLanguageWithRSModule.xtend</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/execution/PatternLanguageWithRSSetup.xtend</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/execution/ScriptConsole.xtend</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/execution/ScriptExecutor.xtend</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/ApplicationConfigurationStandaloneRuntimeModule.xtend</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.ApplicationConfigurationStandaloneSetupGenerated</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/linking/ApplicationConfigurationLinkingService.xtend</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/valueconverter/ApplicationConfigurationValueConverterService.xtend</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.AbstractApplicationConfigurationRuntimeModule</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ApplicationConfigurationPackage</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.CftImport</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.EPackageImport</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.PatternEntry</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ViatraImport</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.xtext.xbase.lib.Extension</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ApplicationConfigurationFactory</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.AllPackageEntry</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.AllPatternEntry</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ClassReference</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ClassTypeScope</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.Command</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.Config</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ConfigDeclaration</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ConfigEntry</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ConfigReference</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ConfigSpecification</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.CostEntry</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.CostObjectiveFunction</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.CustomEntry</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.Declaration</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.DocumentationEntry</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ExactNumber</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.File</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.FileDeclaration</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.FileReference</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.FileSpecification</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.FolderEntry</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.GenerationTask</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.GraphPattern</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.GraphPatternDeclaration</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.GraphPatternReference</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.Import</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.IntEnumberation</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.IntegerReference</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.IntegerScope</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.IntegerTypeScope</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.IntervallNumber</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.MemoryEntry</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.Metamodel</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.MetamodelDeclaration</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.MetamodelElement</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.MetamodelEntry</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.MetamodelReference</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.MetamodelSpecification</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ModelEntry</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.Mtff</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.NumberSpecification</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ObjectReference</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ObjectTypeScope</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.Objective</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ObjectiveDeclaration</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ObjectiveEntry</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ObjectiveFunction</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ObjectiveReference</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ObjectiveSpecification</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.OptimizationEntry</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.PartialModel</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.PartialModelDeclaration</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.PartialModelEntry</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.PartialModelReference</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.PartialModelSpecification</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.PatternElement</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.PatternSpecification</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.RealEnumeration</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.RealReference</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.RealScope</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.RealTypeScope</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ReliabilityObjectiveFunction</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ReliabiltiyProbability</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.RuntimeEntry</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.Scope</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ScopeDeclaration</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ScopeReference</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ScopeSpecification</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.StringEnumeration</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.StringReference</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.StringScope</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.StringTypeScope</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.Task</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ThresholdEntry</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.TypeReference</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.TypeScope</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.DocumentLevelSpecification</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.Solver</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.OptimizationDirection</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ComparisonOperator</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/valueconverter/QualifiedNameValueConverter.xtend</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/validation/ApplicationConfigurationValidator.xtend</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.validation.AbstractApplicationConfigurationValidator</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.IProgressMonitor</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.util.AbstractTreeIterator</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.util.Diagnostic</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.util.BasicEList</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.util.AbstractEList</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.matcher.RetePatternMatcher</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.traceability.RecipeTraceInfo</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.index.Indexer</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.boundary.Disconnectable</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.boundary.ReteBoundary</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.construction.plancompiler.ReteRecipeCompiler</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.network.Network</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.matcher.HintConfigurator</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.single.TransformerNode</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.index.IterableIndexer</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.network.Receiver</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.network.Production</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.single.SingleInputNode</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.network.ReteContainer</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.network.Direction</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.network.StandardNode</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.network.Tunnel</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.network.Supplier</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.traceability.TraceInfo</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.network.mailbox.Mailbox</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.network.BaseNode</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.index.ProjectionIndexer</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.network.Node</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.network.CommunicationTracker</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.network.CommunicationGroup</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.network.RederivableNode</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.network.MessageKind</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.network.IGroupable</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.util.Clearable</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.remote.Address</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.network.ConnectionFactory</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.boundary.InputConnector</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.network.NodeFactory</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.network.NodeProvisioner</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.network.UpdateMessage</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.ReteNodeRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.IndexerRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.SingleParentNodeRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.Mask</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.InputRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.InputFilterRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.boundary.ExternalInputEnumeratorNode</semanticResources>
    <semanticResources>java:/Objects/com.google.common.collect.Table</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.FilterRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.AlphaRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.CountAggregatorRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.TransparentRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.ExpressionEnforcerRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.SingleColumnAggregatorRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.TransitiveClosureRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.ProductionRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.UniquenessEnforcerRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.ConstantRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.DiscriminatorBucketRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.DiscriminatorDispatcherRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.TrimmerRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.InequalityFilterRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.EqualityFilterRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.AntiJoinRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.SemiJoinRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.JoinRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.ExpressionDefinition</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.IExpressionEvaluator</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.IndexerBasedAggregatorRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.ProjectionIndexerRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.RederivableNodeRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.aggregations.IMultisetAggregationOperator</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.MonotonicityInfo</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.MultiParentNodeRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.ExistenceJoinRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.BetaRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.IValueProvider</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.remote.RemoteReceiver</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.remote.RemoteSupplier</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.traceability.UserRequestTrace</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.helper.RecipeRecognizer</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.index.IndexerListener</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.planning.IQueryPlannerStrategy</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.traceability.PlanningTrace</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.traceability.CompiledSubPlan</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.basicdeferred.Equality</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.basicdeferred.Inequality</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.basicdeferred.TypeFilterConstraint</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.basicdeferred.NegativePatternCall</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.basicdeferred.PatternMatchCounter</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.basicdeferred.AggregatorConstraint</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.basicdeferred.ExpressionEvaluation</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.basicenumerables.BinaryReflexiveTransitiveClosure</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.basicenumerables.BinaryTransitiveClosure</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.basicenumerables.PositivePatternCall</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.basicenumerables.TypeConstraint</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.basicenumerables.ConstantValue</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.traceability.CompiledQuery</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.EnumerablePConstraint</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.planning.operations.PJoin</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.planning.operations.PProject</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.planning.operations.PStart</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.RecipesFactory</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.rewriters.PDisjunctionRewriter</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.construction.plancompiler.RecursionCutoffPoint</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.traceability.PatternTraceInfo</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.ITypeConstraint</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.ITypeInfoProviderConstraint</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.basicdeferred.PatternCallBasedDeferred</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.IQueryReference</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.aggregations.BoundAggregator</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.basicdeferred.BaseTypeSafeConstraint</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.basicenumerables.AbstractTransitiveClosure</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.KeyedEnumerablePConstraint</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.AggregatorIndexerRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.CheckRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.EvalRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.ReteRecipe</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.rete.recipes.RecipesPackage</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.rewriters.AbstractRewriterTraceSource</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.rewriters.IDerivativeModificationReason</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.rewriters.IRewriterTraceCollector</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.rewriters.IPTraceableTraceProvider</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/execution/util/ApplicationConfigurationParser.xtend</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.Status</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.jobs.Job</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/execution/GenerationTaskExecutor.xtend</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.resource.impl.ResourceSetImpl</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.notify.impl.NotifierImpl</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.util.EContentAdapter</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.util.NotifyingInternalEListImpl</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.notify.impl.BasicNotifierImpl</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.notify.impl.AdapterImpl</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.notify.impl.NotifyingListImpl</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.notify.NotifyingList</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.common.notify.impl.NotificationImpl</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.internal.jobs.InternalJob</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.IAdaptable</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.jobs.IJobChangeListener</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.jobs.IJobFunction</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.ICoreRunnable</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.jobs.JobGroup</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.jobs.IJobManager</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.QualifiedName</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.jobs.ISchedulingRule</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.OperationCanceledException</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.PlatformObject</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.internal.jobs.JobManager</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.internal.jobs.ObjectMap</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.osgi.service.debug.DebugOptionsListener</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.jobs.JobChangeAdapter</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.jobs.IJobChangeEvent</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.internal.jobs.ThreadJob</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.internal.jobs.InternalJobGroup</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.internal.jobs.JobQueue</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.internal.jobs.LockManager</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.jobs.ILock</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.jobs.LockListener</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.jobs.ProgressProvider</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.internal.jobs.Worker</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.internal.jobs.ImplicitJobs</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.internal.jobs.InternalWorker</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.internal.jobs.JobListeners</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.internal.jobs.WorkerPool</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.internal.jobs.Counter</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.runtime.MultiStatus</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.internal.jobs.OrderedLock</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.internal.jobs.DeadlockDetector</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.internal.jobs.Semaphore</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.internal.jobs.Queue</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.internal.jobs.Deadlock</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.core.internal.jobs.JobChangeEvent</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/validation/MetamodelValidator.xtend</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/validation/QueryAndMetamodelValidator.xtend</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/execution/MetamodelLoader.xtend</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/execution/ModelLoader.xtend</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/execution/QueryLoader.xtend</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/execution/SolverLoader.xtend</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/execution/ScopeLoader.xtend</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/execution/NullWorkspace.xtend</semanticResources>
    <semanticResources>java:/Objects/java.lang.System</semanticResources>
    <semanticResources>platform:/resource/hu.bme.mit.inf.dslreasoner.application/src/hu/bme/mit/inf/dslreasoner/application/execution/EclipseBasedProgressMonitor.xtend</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.EcorePackage</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.emf.ecore.EcoreFactory</semanticResources>
    <semanticResources>java:/Objects/java.io.Console</semanticResources>
    <semanticResources>java:/Objects/java.io.FileOutputStream</semanticResources>
    <semanticResources>../inputs/SatelliteInstance.xmi</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.execution.StandaloneScriptExecutor</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.execution.ScriptConsole</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.execution.ScriptConsoleDecorator</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.ApplicationConfigurationStandaloneSetup</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.execution.StandardOutputBasedScriptConsole</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.execution.ScriptExecutor</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.execution.util.ApplicationConfigurationParser</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.execution.PatternLanguageWithRSSetup</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.execution.PatternLanguageWithRSModule</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.ApplicationConfigurationStandaloneRuntimeModule</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.validation.ApplicationConfigurationValidator</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.execution.GenerationTaskExecutor</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.execution.MetamodelLoader</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.validation.MetamodelValidator</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.execution.ModelLoader</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.validation.QueryAndMetamodelValidator</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.execution.QueryLoader</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.execution.ScopeLoader</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.execution.SolverLoader</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.valueconverter.QualifiedNameValueConverter</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.execution.NullWorkspace</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.application.execution.EclipseBasedProgressMonitor</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.aggregators.count</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.aggregations.AggregatorType</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.psystem.aggregations.IAggregatorFactory</semanticResources>
    <semanticResources>java:/Objects/java.lang.annotation.Inherited</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.aggregators.min</semanticResources>
    <semanticResources>../src/hu/bme/mit/inf/dslreasoner/domains/satellite/metrics/SatelliteMetrics.vql</semanticResources>
    <semanticResources>java:/Objects/org.eclipse.viatra.query.runtime.matchers.aggregators.max</semanticResources>
    <semanticResources>java:/Objects/hu.bme.mit.inf.dslreasoner.domains.satellite.SpacecraftKind</semanticResources>
    <ownedViews xmi:type="viewpoint:DView" uid="_reOHEF0qEemRYLyXht2IrQ">
      <viewpoint xmi:type="description:Viewpoint" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']"/>
      <ownedRepresentationDescriptors xmi:type="viewpoint:DRepresentationDescriptor" uid="_re1yIF0qEemRYLyXht2IrQ" name="satellite" repPath="#_rel6gF0qEemRYLyXht2IrQ">
        <description xmi:type="description_1:DiagramDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']"/>
        <target xmi:type="ecore:EPackage" href="satellite.ecore#/"/>
      </ownedRepresentationDescriptors>
    </ownedViews>
  </viewpoint:DAnalysis>
  <diagram:DSemanticDiagram uid="_rel6gF0qEemRYLyXht2IrQ" name="satellite">
    <ownedAnnotationEntries xmi:type="description:AnnotationEntry" uid="_rew5oF0qEemRYLyXht2IrQ" source="DANNOTATION_CUSTOMIZATION_KEY">
      <data xmi:type="diagram:ComputedStyleDescriptionRegistry" uid="_rexgsF0qEemRYLyXht2IrQ">
        <computedStyleDescriptions xmi:type="style:BundledImageDescription" xmi:id="_028-wF0vEemRYLyXht2IrQ" labelExpression="service:render" labelAlignment="LEFT" tooltipExpression="service:renderTooltip" sizeComputationExpression="1">
          <borderColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='black']"/>
          <labelFormat>bold</labelFormat>
          <labelColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='black']"/>
          <color xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='black']"/>
        </computedStyleDescriptions>
        <computedStyleDescriptions xmi:type="style:EdgeStyleDescription" xmi:id="_6kODkF0vEemRYLyXht2IrQ" sourceArrow="FillDiamond" routingStyle="manhattan">
          <strokeColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='black']"/>
          <centerLabelStyleDescription xmi:type="style:CenterLabelStyleDescription" xmi:id="_6kODkV0vEemRYLyXht2IrQ" showIcon="false" labelExpression="service:render">
            <labelFormat>bold</labelFormat>
            <labelColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='black']"/>
          </centerLabelStyleDescription>
          <endLabelStyleDescription xmi:type="style:EndLabelStyleDescription" xmi:id="_6kODkl0vEemRYLyXht2IrQ" labelSize="6" showIcon="false" labelExpression="service:eKeysLabel">
            <labelColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='dark_blue']"/>
          </endLabelStyleDescription>
        </computedStyleDescriptions>
        <computedStyleDescriptions xmi:type="style:EdgeStyleDescription" xmi:id="_ccHLEF0wEemRYLyXht2IrQ" sourceArrow="FillDiamond" routingStyle="manhattan">
          <strokeColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='black']"/>
          <centerLabelStyleDescription xmi:type="style:CenterLabelStyleDescription" xmi:id="_ccHLEV0wEemRYLyXht2IrQ" showIcon="false" labelExpression="service:render">
            <labelColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='black']"/>
          </centerLabelStyleDescription>
          <endLabelStyleDescription xmi:type="style:EndLabelStyleDescription" xmi:id="_ccHLEl0wEemRYLyXht2IrQ" labelSize="6" showIcon="false" labelExpression="service:eKeysLabel">
            <labelColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='dark_blue']"/>
          </endLabelStyleDescription>
        </computedStyleDescriptions>
        <computedStyleDescriptions xmi:type="style:EdgeStyleDescription" xmi:id="_fDAfYF0xEemRYLyXht2IrQ" routingStyle="manhattan">
          <strokeColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='black']"/>
          <centerLabelStyleDescription xmi:type="style:CenterLabelStyleDescription" xmi:id="_fDAfYV0xEemRYLyXht2IrQ" showIcon="false" labelExpression="service:render">
            <labelFormat>bold</labelFormat>
            <labelColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='black']"/>
          </centerLabelStyleDescription>
          <endLabelStyleDescription xmi:type="style:EndLabelStyleDescription" xmi:id="_fDAfYl0xEemRYLyXht2IrQ" labelSize="6" showIcon="false" labelExpression="service:eKeysLabel">
            <labelColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='dark_blue']"/>
          </endLabelStyleDescription>
        </computedStyleDescriptions>
        <computedStyleDescriptions xmi:type="style:BundledImageDescription" xmi:id="_o3yl4HA6Eem9acJE7_CmTw" labelExpression="service:render" labelAlignment="LEFT" tooltipExpression="service:renderTooltip" sizeComputationExpression="1">
          <borderColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='black']"/>
          <labelFormat>bold</labelFormat>
          <labelColor xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='dark_blue']"/>
          <color xmi:type="description:SystemColor" href="environment:/viewpoint#//@systemColors/@entries[name='black']"/>
        </computedStyleDescriptions>
      </data>
    </ownedAnnotationEntries>
    <ownedAnnotationEntries xmi:type="description:AnnotationEntry" uid="_rfAxQF0qEemRYLyXht2IrQ" source="GMF_DIAGRAMS">
      <data xmi:type="notation:Diagram" xmi:id="_rfAxQV0qEemRYLyXht2IrQ" type="Sirius" element="_rel6gF0qEemRYLyXht2IrQ" measurementUnit="Pixel">
        <children xmi:type="notation:Node" xmi:id="_tNH44F0qEemRYLyXht2IrQ" type="2003" element="_tM4oUF0qEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_tNK8MF0qEemRYLyXht2IrQ" type="5007"/>
          <children xmi:type="notation:Node" xmi:id="_tNLjQF0qEemRYLyXht2IrQ" type="7004">
            <styles xmi:type="notation:SortingStyle" xmi:id="_tNLjQV0qEemRYLyXht2IrQ"/>
            <styles xmi:type="notation:FilteringStyle" xmi:id="_tNLjQl0qEemRYLyXht2IrQ"/>
          </children>
          <styles xmi:type="notation:ShapeStyle" xmi:id="_tNH44V0qEemRYLyXht2IrQ" fontName="Noto Sans" fontHeight="8"/>
          <layoutConstraint xmi:type="notation:Bounds" xmi:id="_tNH44l0qEemRYLyXht2IrQ" x="39" y="39" width="146" height="100"/>
        </children>
        <children xmi:type="notation:Node" xmi:id="_vlcbIF0qEemRYLyXht2IrQ" type="2003" element="_vlPm0F0qEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_vldpQF0qEemRYLyXht2IrQ" type="5007"/>
          <children xmi:type="notation:Node" xmi:id="_vldpQV0qEemRYLyXht2IrQ" type="7004">
            <children xmi:type="notation:Node" xmi:id="_zCslIF0qEemRYLyXht2IrQ" type="3010" element="_zChmAF0qEemRYLyXht2IrQ">
              <styles xmi:type="notation:FontStyle" xmi:id="_zCslIV0qEemRYLyXht2IrQ" fontColor="2697711" fontName="Noto Sans" fontHeight="8"/>
              <layoutConstraint xmi:type="notation:Location" xmi:id="_zCslIl0qEemRYLyXht2IrQ"/>
            </children>
            <styles xmi:type="notation:SortingStyle" xmi:id="_vldpQl0qEemRYLyXht2IrQ"/>
            <styles xmi:type="notation:FilteringStyle" xmi:id="_vldpQ10qEemRYLyXht2IrQ"/>
          </children>
          <styles xmi:type="notation:ShapeStyle" xmi:id="_vlcbIV0qEemRYLyXht2IrQ" fontName="Noto Sans" fontHeight="8"/>
          <layoutConstraint xmi:type="notation:Bounds" xmi:id="_vlcbIl0qEemRYLyXht2IrQ" x="39" y="182" width="146" height="100"/>
        </children>
        <children xmi:type="notation:Node" xmi:id="_3UIIoF0rEemRYLyXht2IrQ" type="2003" element="_3T7UUF0rEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_3UJWwF0rEemRYLyXht2IrQ" type="5007"/>
          <children xmi:type="notation:Node" xmi:id="_3UJWwV0rEemRYLyXht2IrQ" type="7004">
            <styles xmi:type="notation:SortingStyle" xmi:id="_3UJWwl0rEemRYLyXht2IrQ"/>
            <styles xmi:type="notation:FilteringStyle" xmi:id="_3UJWw10rEemRYLyXht2IrQ"/>
          </children>
          <styles xmi:type="notation:ShapeStyle" xmi:id="_3UIIoV0rEemRYLyXht2IrQ" fontName="Noto Sans" fontHeight="8"/>
          <layoutConstraint xmi:type="notation:Bounds" xmi:id="_3UIIol0rEemRYLyXht2IrQ" x="390" y="182" width="172" height="100"/>
        </children>
        <children xmi:type="notation:Node" xmi:id="__OldwF0rEemRYLyXht2IrQ" type="2003" element="__OYCYF0rEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="__OmE0F0rEemRYLyXht2IrQ" type="5007"/>
          <children xmi:type="notation:Node" xmi:id="__Omr4F0rEemRYLyXht2IrQ" type="7004">
            <styles xmi:type="notation:SortingStyle" xmi:id="__Omr4V0rEemRYLyXht2IrQ"/>
            <styles xmi:type="notation:FilteringStyle" xmi:id="__Omr4l0rEemRYLyXht2IrQ"/>
          </children>
          <styles xmi:type="notation:ShapeStyle" xmi:id="__OldwV0rEemRYLyXht2IrQ" fontName="Noto Sans" fontHeight="8"/>
          <layoutConstraint xmi:type="notation:Bounds" xmi:id="__Oldwl0rEemRYLyXht2IrQ" x="507" y="325" width="159" height="100"/>
        </children>
        <children xmi:type="notation:Node" xmi:id="_Aq3OgF0sEemRYLyXht2IrQ" type="2003" element="_AqsPYF0sEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_Aq31kF0sEemRYLyXht2IrQ" type="5007"/>
          <children xmi:type="notation:Node" xmi:id="_Aq31kV0sEemRYLyXht2IrQ" type="7004">
            <children xmi:type="notation:Node" xmi:id="_-9pX8G60Eem3gIPdAp40Tw" type="3010" element="_-9TZsG60Eem3gIPdAp40Tw">
              <styles xmi:type="notation:FontStyle" xmi:id="_-9pX8W60Eem3gIPdAp40Tw" fontColor="2697711" fontName="Noto Sans" fontHeight="8"/>
              <layoutConstraint xmi:type="notation:Location" xmi:id="_-9pX8m60Eem3gIPdAp40Tw"/>
            </children>
            <styles xmi:type="notation:SortingStyle" xmi:id="_Aq31kl0sEemRYLyXht2IrQ"/>
            <styles xmi:type="notation:FilteringStyle" xmi:id="_Aq31k10sEemRYLyXht2IrQ"/>
          </children>
          <styles xmi:type="notation:ShapeStyle" xmi:id="_Aq3OgV0sEemRYLyXht2IrQ" fontName="Noto Sans" fontHeight="8"/>
          <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Aq3Ogl0sEemRYLyXht2IrQ" x="338" y="325" width="120" height="100"/>
        </children>
        <children xmi:type="notation:Node" xmi:id="_j0vs4F0tEemRYLyXht2IrQ" type="2003" element="_j0eAEF0tEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_j0wT8F0tEemRYLyXht2IrQ" type="5007"/>
          <children xmi:type="notation:Node" xmi:id="_j0wT8V0tEemRYLyXht2IrQ" type="7004">
            <children xmi:type="notation:Node" xmi:id="_zugwAF0vEemRYLyXht2IrQ" type="3010" element="_zuaCUF0vEemRYLyXht2IrQ">
              <styles xmi:type="notation:FontStyle" xmi:id="_zugwAV0vEemRYLyXht2IrQ" fontColor="2697711" fontName="Noto Sans" fontHeight="8"/>
              <layoutConstraint xmi:type="notation:Location" xmi:id="_zugwAl0vEemRYLyXht2IrQ"/>
            </children>
            <children xmi:type="notation:Node" xmi:id="_Q89nMF0wEemRYLyXht2IrQ" type="3010" element="_Q8yBAF0wEemRYLyXht2IrQ">
              <styles xmi:type="notation:FontStyle" xmi:id="_Q89nMV0wEemRYLyXht2IrQ" fontColor="2697711" fontName="Noto Sans" fontHeight="8"/>
              <layoutConstraint xmi:type="notation:Location" xmi:id="_Q89nMl0wEemRYLyXht2IrQ"/>
            </children>
            <styles xmi:type="notation:SortingStyle" xmi:id="_j0wT8l0tEemRYLyXht2IrQ"/>
            <styles xmi:type="notation:FilteringStyle" xmi:id="_j0wT810tEemRYLyXht2IrQ"/>
          </children>
          <styles xmi:type="notation:ShapeStyle" xmi:id="_j0vs4V0tEemRYLyXht2IrQ" fontName="Noto Sans" fontHeight="8"/>
          <layoutConstraint xmi:type="notation:Bounds" xmi:id="_j0vs4l0tEemRYLyXht2IrQ" x="754" y="182" width="198" height="100"/>
        </children>
        <children xmi:type="notation:Node" xmi:id="_vyrzoF0vEemRYLyXht2IrQ" type="2003" element="_vyhbkF0vEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_vysasF0vEemRYLyXht2IrQ" type="5007"/>
          <children xmi:type="notation:Node" xmi:id="_vysasV0vEemRYLyXht2IrQ" type="7004">
            <children xmi:type="notation:Node" xmi:id="_x32JUF0vEemRYLyXht2IrQ" type="3010" element="_x3rKMF0vEemRYLyXht2IrQ">
              <styles xmi:type="notation:FontStyle" xmi:id="_x32JUV0vEemRYLyXht2IrQ" fontName="Noto Sans" fontHeight="8"/>
              <layoutConstraint xmi:type="notation:Location" xmi:id="_x32JUl0vEemRYLyXht2IrQ"/>
            </children>
            <children xmi:type="notation:Node" xmi:id="_yhHIwF0vEemRYLyXht2IrQ" type="3010" element="_yg2DAF0vEemRYLyXht2IrQ">
              <styles xmi:type="notation:FontStyle" xmi:id="_yhHIwV0vEemRYLyXht2IrQ" fontName="Noto Sans" fontHeight="8"/>
              <layoutConstraint xmi:type="notation:Location" xmi:id="_yhHIwl0vEemRYLyXht2IrQ"/>
            </children>
            <children xmi:type="notation:Node" xmi:id="_zAX3oF0vEemRYLyXht2IrQ" type="3010" element="_zAInEF0vEemRYLyXht2IrQ">
              <styles xmi:type="notation:FontStyle" xmi:id="_zAX3oV0vEemRYLyXht2IrQ" fontName="Noto Sans" fontHeight="8"/>
              <layoutConstraint xmi:type="notation:Location" xmi:id="_zAX3ol0vEemRYLyXht2IrQ"/>
            </children>
            <styles xmi:type="notation:SortingStyle" xmi:id="_vysasl0vEemRYLyXht2IrQ"/>
            <styles xmi:type="notation:FilteringStyle" xmi:id="_vysas10vEemRYLyXht2IrQ"/>
          </children>
          <styles xmi:type="notation:ShapeStyle" xmi:id="_vyrzoV0vEemRYLyXht2IrQ" fontName="Noto Sans" fontHeight="8"/>
          <layoutConstraint xmi:type="notation:Bounds" xmi:id="_vyrzol0vEemRYLyXht2IrQ" x="988" y="39" width="120" height="100"/>
        </children>
        <children xmi:type="notation:Node" xmi:id="_Ct-Y8F0wEemRYLyXht2IrQ" type="2003" element="_Ctw9kF0wEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_Ct_AAF0wEemRYLyXht2IrQ" type="5007"/>
          <children xmi:type="notation:Node" xmi:id="_Ct_nEF0wEemRYLyXht2IrQ" type="7004">
            <styles xmi:type="notation:SortingStyle" xmi:id="_Ct_nEV0wEemRYLyXht2IrQ"/>
            <styles xmi:type="notation:FilteringStyle" xmi:id="_Ct_nEl0wEemRYLyXht2IrQ"/>
          </children>
          <styles xmi:type="notation:ShapeStyle" xmi:id="_Ct-Y8V0wEemRYLyXht2IrQ" fontName="Noto Sans" fontHeight="8"/>
          <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Ct-Y8l0wEemRYLyXht2IrQ" x="754" y="325" width="198" height="100"/>
        </children>
        <children xmi:type="notation:Node" xmi:id="_M5X18F0wEemRYLyXht2IrQ" type="2003" element="_M5OsAF0wEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_M5YdAF0wEemRYLyXht2IrQ" type="5007"/>
          <children xmi:type="notation:Node" xmi:id="_M5YdAV0wEemRYLyXht2IrQ" type="7004">
            <children xmi:type="notation:Node" xmi:id="_OBrh0F0wEemRYLyXht2IrQ" type="3010" element="_OBacEF0wEemRYLyXht2IrQ">
              <styles xmi:type="notation:FontStyle" xmi:id="_OBrh0V0wEemRYLyXht2IrQ" fontName="Noto Sans" fontHeight="8"/>
              <layoutConstraint xmi:type="notation:Location" xmi:id="_OBrh0l0wEemRYLyXht2IrQ"/>
            </children>
            <children xmi:type="notation:Node" xmi:id="_Oca9EF0wEemRYLyXht2IrQ" type="3010" element="_OcLsgF0wEemRYLyXht2IrQ">
              <styles xmi:type="notation:FontStyle" xmi:id="_Oca9EV0wEemRYLyXht2IrQ" fontName="Noto Sans" fontHeight="8"/>
              <layoutConstraint xmi:type="notation:Location" xmi:id="_Oca9El0wEemRYLyXht2IrQ"/>
            </children>
            <children xmi:type="notation:Node" xmi:id="_O9880F0wEemRYLyXht2IrQ" type="3010" element="_O9wIgF0wEemRYLyXht2IrQ">
              <styles xmi:type="notation:FontStyle" xmi:id="_O9880V0wEemRYLyXht2IrQ" fontName="Noto Sans" fontHeight="8"/>
              <layoutConstraint xmi:type="notation:Location" xmi:id="_O9880l0wEemRYLyXht2IrQ"/>
            </children>
            <styles xmi:type="notation:SortingStyle" xmi:id="_M5YdAl0wEemRYLyXht2IrQ"/>
            <styles xmi:type="notation:FilteringStyle" xmi:id="_M5YdA10wEemRYLyXht2IrQ"/>
          </children>
          <styles xmi:type="notation:ShapeStyle" xmi:id="_M5X18V0wEemRYLyXht2IrQ" fontName="Noto Sans" fontHeight="8"/>
          <layoutConstraint xmi:type="notation:Bounds" xmi:id="_M5X18l0wEemRYLyXht2IrQ" x="988" y="182" width="120" height="100"/>
        </children>
        <children xmi:type="notation:Node" xmi:id="_0aeMMF0xEemRYLyXht2IrQ" type="2003" element="_0aW3cF0xEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_0aeMM10xEemRYLyXht2IrQ" type="5007"/>
          <children xmi:type="notation:Node" xmi:id="_0aezQF0xEemRYLyXht2IrQ" type="7004">
            <styles xmi:type="notation:SortingStyle" xmi:id="_0aezQV0xEemRYLyXht2IrQ"/>
            <styles xmi:type="notation:FilteringStyle" xmi:id="_0aezQl0xEemRYLyXht2IrQ"/>
          </children>
          <styles xmi:type="notation:ShapeStyle" xmi:id="_0aeMMV0xEemRYLyXht2IrQ" fontName="Noto Sans" fontHeight="8"/>
          <layoutConstraint xmi:type="notation:Bounds" xmi:id="_0aeMMl0xEemRYLyXht2IrQ" x="52" y="325" width="120" height="100"/>
        </children>
        <children xmi:type="notation:Node" xmi:id="_45PdkF0xEemRYLyXht2IrQ" type="2003" element="_45FskF0xEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_45QEoF0xEemRYLyXht2IrQ" type="5007"/>
          <children xmi:type="notation:Node" xmi:id="_45QEoV0xEemRYLyXht2IrQ" type="7004">
            <styles xmi:type="notation:SortingStyle" xmi:id="_45QEol0xEemRYLyXht2IrQ"/>
            <styles xmi:type="notation:FilteringStyle" xmi:id="_45QEo10xEemRYLyXht2IrQ"/>
          </children>
          <styles xmi:type="notation:ShapeStyle" xmi:id="_45PdkV0xEemRYLyXht2IrQ" fontName="Noto Sans" fontHeight="8"/>
          <layoutConstraint xmi:type="notation:Bounds" xmi:id="_45Pdkl0xEemRYLyXht2IrQ" x="39" y="481" width="146" height="100"/>
        </children>
        <children xmi:type="notation:Node" xmi:id="_2omYkG60Eem3gIPdAp40Tw" type="2003" element="_2oBw0G60Eem3gIPdAp40Tw">
          <children xmi:type="notation:Node" xmi:id="_2orREG60Eem3gIPdAp40Tw" type="5007"/>
          <children xmi:type="notation:Node" xmi:id="_2or4IG60Eem3gIPdAp40Tw" type="7004">
            <children xmi:type="notation:Node" xmi:id="_5QV24G60Eem3gIPdAp40Tw" type="3010" element="_5P_4oG60Eem3gIPdAp40Tw">
              <styles xmi:type="notation:FontStyle" xmi:id="_5QV24W60Eem3gIPdAp40Tw" fontName="Noto Sans" fontHeight="8"/>
              <layoutConstraint xmi:type="notation:Location" xmi:id="_5QV24m60Eem3gIPdAp40Tw"/>
            </children>
            <children xmi:type="notation:Node" xmi:id="_UKi6wHA6Eem9acJE7_CmTw" type="3010" element="_UKKgQHA6Eem9acJE7_CmTw">
              <styles xmi:type="notation:FontStyle" xmi:id="_UKi6wXA6Eem9acJE7_CmTw" fontName="Noto Sans" fontHeight="8"/>
              <layoutConstraint xmi:type="notation:Location" xmi:id="_UKi6wnA6Eem9acJE7_CmTw"/>
            </children>
            <children xmi:type="notation:Node" xmi:id="_7SZ1QG60Eem3gIPdAp40Tw" type="3010" element="_7R9JUG60Eem3gIPdAp40Tw">
              <styles xmi:type="notation:FontStyle" xmi:id="_7SZ1QW60Eem3gIPdAp40Tw" fontName="Noto Sans" fontHeight="8"/>
              <layoutConstraint xmi:type="notation:Location" xmi:id="_7SZ1Qm60Eem3gIPdAp40Tw"/>
            </children>
            <styles xmi:type="notation:SortingStyle" xmi:id="_2or4IW60Eem3gIPdAp40Tw"/>
            <styles xmi:type="notation:FilteringStyle" xmi:id="_2or4Im60Eem3gIPdAp40Tw"/>
          </children>
          <styles xmi:type="notation:ShapeStyle" xmi:id="_2omYkW60Eem3gIPdAp40Tw" fontName="Noto Sans" fontHeight="8"/>
          <layoutConstraint xmi:type="notation:Bounds" xmi:id="_2omYkm60Eem3gIPdAp40Tw" x="990" y="325" width="120" height="100"/>
        </children>
        <children xmi:type="notation:Node" xmi:id="_fnQ1sHA6Eem9acJE7_CmTw" type="2003" element="_fm1X4HA6Eem9acJE7_CmTw">
          <children xmi:type="notation:Node" xmi:id="_fnT5AHA6Eem9acJE7_CmTw" type="5007"/>
          <children xmi:type="notation:Node" xmi:id="_fnUgEHA6Eem9acJE7_CmTw" type="7004">
            <styles xmi:type="notation:SortingStyle" xmi:id="_fnUgEXA6Eem9acJE7_CmTw"/>
            <styles xmi:type="notation:FilteringStyle" xmi:id="_fnUgEnA6Eem9acJE7_CmTw"/>
          </children>
          <styles xmi:type="notation:ShapeStyle" xmi:id="_fnQ1sXA6Eem9acJE7_CmTw" fontName="Noto Sans" fontHeight="8"/>
          <layoutConstraint xmi:type="notation:Bounds" xmi:id="_fnQ1snA6Eem9acJE7_CmTw" x="209" y="484" width="120" height="100"/>
        </children>
        <children xmi:type="notation:Node" xmi:id="_haz28HA6Eem9acJE7_CmTw" type="2003" element="_hanCoHA6Eem9acJE7_CmTw">
          <children xmi:type="notation:Node" xmi:id="_ha0eAHA6Eem9acJE7_CmTw" type="5007"/>
          <children xmi:type="notation:Node" xmi:id="_ha0eAXA6Eem9acJE7_CmTw" type="7004">
            <styles xmi:type="notation:SortingStyle" xmi:id="_ha0eAnA6Eem9acJE7_CmTw"/>
            <styles xmi:type="notation:FilteringStyle" xmi:id="_ha0eA3A6Eem9acJE7_CmTw"/>
          </children>
          <styles xmi:type="notation:ShapeStyle" xmi:id="_haz28XA6Eem9acJE7_CmTw" fontName="Noto Sans" fontHeight="8"/>
          <layoutConstraint xmi:type="notation:Bounds" xmi:id="_haz28nA6Eem9acJE7_CmTw" x="352" y="484" width="120" height="100"/>
        </children>
        <children xmi:type="notation:Node" xmi:id="_irD94HA6Eem9acJE7_CmTw" type="2003" element="_iqnR8HA6Eem9acJE7_CmTw">
          <children xmi:type="notation:Node" xmi:id="_irEk8HA6Eem9acJE7_CmTw" type="5007"/>
          <children xmi:type="notation:Node" xmi:id="_irEk8XA6Eem9acJE7_CmTw" type="7004">
            <styles xmi:type="notation:SortingStyle" xmi:id="_irEk8nA6Eem9acJE7_CmTw"/>
            <styles xmi:type="notation:FilteringStyle" xmi:id="_irEk83A6Eem9acJE7_CmTw"/>
          </children>
          <styles xmi:type="notation:ShapeStyle" xmi:id="_irD94XA6Eem9acJE7_CmTw" fontName="Noto Sans" fontHeight="8"/>
          <layoutConstraint xmi:type="notation:Bounds" xmi:id="_irD94nA6Eem9acJE7_CmTw" x="495" y="484" width="120" height="100"/>
        </children>
        <styles xmi:type="notation:DiagramStyle" xmi:id="_rfAxQl0qEemRYLyXht2IrQ"/>
        <edges xmi:type="notation:Edge" xmi:id="_0jV4gF0qEemRYLyXht2IrQ" type="4001" element="_0jIdIF0qEemRYLyXht2IrQ" source="_vlcbIF0qEemRYLyXht2IrQ" target="_tNH44F0qEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_0jXGoF0qEemRYLyXht2IrQ" type="6001">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_0jXGoV0qEemRYLyXht2IrQ" y="-10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_0jXtsF0qEemRYLyXht2IrQ" type="6002">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_0jXtsV0qEemRYLyXht2IrQ" y="10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_0jYUwF0qEemRYLyXht2IrQ" type="6003">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_0jYUwV0qEemRYLyXht2IrQ" y="10"/>
          </children>
          <styles xmi:type="notation:ConnectorStyle" xmi:id="_0jV4gV0qEemRYLyXht2IrQ" routing="Tree"/>
          <styles xmi:type="notation:FontStyle" xmi:id="_0jV4gl0qEemRYLyXht2IrQ" fontName="Noto Sans" fontHeight="8"/>
          <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_0jV4g10qEemRYLyXht2IrQ" points="[0, 0, 0, 45]$[0, -45, 0, 0]"/>
          <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_0jaxAF0qEemRYLyXht2IrQ" id="(0.410958904109589,0.01)"/>
          <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_0jaxAV0qEemRYLyXht2IrQ" id="(0.4548611111111111,0.5)"/>
        </edges>
        <edges xmi:type="notation:Edge" xmi:id="_Npck0F0sEemRYLyXht2IrQ" type="4001" element="_NpQ-pl0sEemRYLyXht2IrQ" source="__OldwF0rEemRYLyXht2IrQ" target="_3UIIoF0rEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_NpdL4F0sEemRYLyXht2IrQ" type="6001">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_NpdL4V0sEemRYLyXht2IrQ" y="-10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_NpdL4l0sEemRYLyXht2IrQ" type="6002">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_NpdL410sEemRYLyXht2IrQ" y="10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_NpdL5F0sEemRYLyXht2IrQ" type="6003">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_NpdL5V0sEemRYLyXht2IrQ" y="10"/>
          </children>
          <styles xmi:type="notation:ConnectorStyle" xmi:id="_Npck0V0sEemRYLyXht2IrQ" routing="Tree"/>
          <styles xmi:type="notation:FontStyle" xmi:id="_Npck0l0sEemRYLyXht2IrQ" fontName="Noto Sans" fontHeight="8"/>
          <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Npck010sEemRYLyXht2IrQ" points="[0, 0, -103, 45]$[103, -45, 0, 0]"/>
          <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_NpdL5l0sEemRYLyXht2IrQ" id="(0.5031847133757962,0.0)"/>
          <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_NpdL510sEemRYLyXht2IrQ" id="(0.5,0.5)"/>
        </edges>
        <edges xmi:type="notation:Edge" xmi:id="_PE8ScF0sEemRYLyXht2IrQ" type="4001" element="_PEp-k10sEemRYLyXht2IrQ" source="_Aq3OgF0sEemRYLyXht2IrQ" target="_3UIIoF0rEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_PE8SdF0sEemRYLyXht2IrQ" type="6001">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_PE8SdV0sEemRYLyXht2IrQ" y="-10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_PE8Sdl0sEemRYLyXht2IrQ" type="6002">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_PE8Sd10sEemRYLyXht2IrQ" y="10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_PE85gF0sEemRYLyXht2IrQ" type="6003">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_PE85gV0sEemRYLyXht2IrQ" y="10"/>
          </children>
          <styles xmi:type="notation:ConnectorStyle" xmi:id="_PE8ScV0sEemRYLyXht2IrQ" routing="Tree"/>
          <styles xmi:type="notation:FontStyle" xmi:id="_PE8Scl0sEemRYLyXht2IrQ" fontName="Noto Sans" fontHeight="8"/>
          <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_PE8Sc10sEemRYLyXht2IrQ" points="[0, 0, 97, 45]$[-97, -45, 0, 0]"/>
          <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_PE85gl0sEemRYLyXht2IrQ" id="(0.5508474576271186,0.0)"/>
          <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_PE85g10sEemRYLyXht2IrQ" id="(0.5,0.5)"/>
        </edges>
        <edges xmi:type="notation:Edge" xmi:id="_4CEP4F0vEemRYLyXht2IrQ" type="4001" element="_4B9iMF0vEemRYLyXht2IrQ" source="_3UIIoF0rEemRYLyXht2IrQ" target="_j0vs4F0tEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_4CEP5F0vEemRYLyXht2IrQ" type="6001">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_4CEP5V0vEemRYLyXht2IrQ" x="13" y="-18"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_4CE28F0vEemRYLyXht2IrQ" type="6002">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_4CE28V0vEemRYLyXht2IrQ" x="54" y="10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_4CE28l0vEemRYLyXht2IrQ" type="6003">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_4CE2810vEemRYLyXht2IrQ" x="28" y="10"/>
          </children>
          <styles xmi:type="notation:ConnectorStyle" xmi:id="_4CEP4V0vEemRYLyXht2IrQ" routing="Rectilinear"/>
          <styles xmi:type="notation:FontStyle" xmi:id="_4CEP4l0vEemRYLyXht2IrQ" fontColor="7490599" fontName="Noto Sans" fontHeight="8"/>
          <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_4CEP410vEemRYLyXht2IrQ" points="[0, -26, -194, -52]$[194, -26, 0, -52]"/>
          <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_4CE29F0vEemRYLyXht2IrQ" id="(1.0,0.5306122448979592)"/>
          <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_4CE29V0vEemRYLyXht2IrQ" id="(0.0,0.7959183673469388)"/>
        </edges>
        <edges xmi:type="notation:Edge" xmi:id="_ccT_YF0wEemRYLyXht2IrQ" type="4001" element="_ccF89l0wEemRYLyXht2IrQ" source="_3UIIoF0rEemRYLyXht2IrQ" target="_Ct-Y8F0wEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_ccT_ZF0wEemRYLyXht2IrQ" type="6001">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_ccT_ZV0wEemRYLyXht2IrQ" x="-32" y="39"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_ccUmcF0wEemRYLyXht2IrQ" type="6002">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_ccUmcV0wEemRYLyXht2IrQ" x="48" y="10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_ccUmcl0wEemRYLyXht2IrQ" type="6003">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_ccUmc10wEemRYLyXht2IrQ" x="22" y="-8"/>
          </children>
          <styles xmi:type="notation:ConnectorStyle" xmi:id="_ccT_YV0wEemRYLyXht2IrQ" routing="Rectilinear"/>
          <styles xmi:type="notation:FontStyle" xmi:id="_ccT_Yl0wEemRYLyXht2IrQ" fontColor="7490599" fontName="Noto Sans" fontHeight="8"/>
          <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_ccT_Y10wEemRYLyXht2IrQ" points="[27, -33, -194, -143]$[182, -33, -39, -143]$[182, 110, -39, 0]$[221, 110, 0, 0]"/>
          <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_ccUmdF0wEemRYLyXht2IrQ" id="(0.8411764705882353,1.0)"/>
          <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_ccUmdV0wEemRYLyXht2IrQ" id="(0.0,0.6632653061224489)"/>
        </edges>
        <edges xmi:type="notation:Edge" xmi:id="_db1tQF0xEemRYLyXht2IrQ" type="4001" element="_dbuYhl0xEemRYLyXht2IrQ" source="_Ct-Y8F0wEemRYLyXht2IrQ" target="_j0vs4F0tEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_db2UUF0xEemRYLyXht2IrQ" type="6001">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_db2UUV0xEemRYLyXht2IrQ" x="-5" y="-44"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_db2UUl0xEemRYLyXht2IrQ" type="6002">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_db2UU10xEemRYLyXht2IrQ" y="10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_db2UVF0xEemRYLyXht2IrQ" type="6003">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_db2UVV0xEemRYLyXht2IrQ" y="10"/>
          </children>
          <styles xmi:type="notation:ConnectorStyle" xmi:id="_db1tQV0xEemRYLyXht2IrQ" routing="Rectilinear"/>
          <styles xmi:type="notation:FontStyle" xmi:id="_db1tQl0xEemRYLyXht2IrQ" fontColor="7490599" fontName="Noto Sans" fontHeight="8"/>
          <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_db1tQ10xEemRYLyXht2IrQ" points="[14, 0, 14, 45]$[14, -45, 14, 0]"/>
          <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_db2UVl0xEemRYLyXht2IrQ" id="(0.19387755102040816,0.0)"/>
          <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_db2UV10xEemRYLyXht2IrQ" id="(0.19387755102040816,1.0)"/>
        </edges>
        <edges xmi:type="notation:Edge" xmi:id="_i2ZRcF0xEemRYLyXht2IrQ" type="4001" element="_i2PgeV0xEemRYLyXht2IrQ" source="_Ct-Y8F0wEemRYLyXht2IrQ" target="_j0vs4F0tEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_i2ZRdF0xEemRYLyXht2IrQ" type="6001">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_i2ZRdV0xEemRYLyXht2IrQ" x="-5" y="46"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_i2ZRdl0xEemRYLyXht2IrQ" type="6002">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_i2ZRd10xEemRYLyXht2IrQ" y="10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_i2ZReF0xEemRYLyXht2IrQ" type="6003">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_i2ZReV0xEemRYLyXht2IrQ" y="10"/>
          </children>
          <styles xmi:type="notation:ConnectorStyle" xmi:id="_i2ZRcV0xEemRYLyXht2IrQ" routing="Rectilinear"/>
          <styles xmi:type="notation:FontStyle" xmi:id="_i2ZRcl0xEemRYLyXht2IrQ" fontColor="7490599" fontName="Noto Sans" fontHeight="8"/>
          <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_i2ZRc10xEemRYLyXht2IrQ" points="[0, 0, 0, 45]$[0, -45, 0, 0]"/>
          <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_i2ZRel0xEemRYLyXht2IrQ" id="(0.7193877551020408,0.0)"/>
          <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_i2ZRe10xEemRYLyXht2IrQ" id="(0.7193877551020408,1.0)"/>
        </edges>
        <edges xmi:type="notation:Edge" xmi:id="_3HAq8F0xEemRYLyXht2IrQ" type="4001" element="_3GzPll0xEemRYLyXht2IrQ" source="_Aq3OgF0sEemRYLyXht2IrQ" target="_0aeMMF0xEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_3HBSAF0xEemRYLyXht2IrQ" type="6001">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_3HBSAV0xEemRYLyXht2IrQ" y="-10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_3HBSAl0xEemRYLyXht2IrQ" type="6002">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_3HBSA10xEemRYLyXht2IrQ" y="10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_3HB5EF0xEemRYLyXht2IrQ" type="6003">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_3HB5EV0xEemRYLyXht2IrQ" y="10"/>
          </children>
          <styles xmi:type="notation:ConnectorStyle" xmi:id="_3HAq8V0xEemRYLyXht2IrQ" routing="Rectilinear"/>
          <styles xmi:type="notation:FontStyle" xmi:id="_3HAq8l0xEemRYLyXht2IrQ" fontColor="7490599" fontName="Noto Sans" fontHeight="8"/>
          <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_3HAq810xEemRYLyXht2IrQ" points="[0, 0, 168, 0]$[-168, 0, 0, 0]"/>
          <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_3HB5El0xEemRYLyXht2IrQ" id="(0.0,0.5)"/>
          <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_3HB5E10xEemRYLyXht2IrQ" id="(1.0,0.5)"/>
        </edges>
        <edges xmi:type="notation:Edge" xmi:id="_8iOWcF0xEemRYLyXht2IrQ" type="4001" element="_8iFzll0xEemRYLyXht2IrQ" source="_45PdkF0xEemRYLyXht2IrQ" target="_0aeMMF0xEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_8iOWdF0xEemRYLyXht2IrQ" type="6001">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_8iOWdV0xEemRYLyXht2IrQ" y="-10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_8iO9gF0xEemRYLyXht2IrQ" type="6002">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_8iO9gV0xEemRYLyXht2IrQ" y="10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_8iO9gl0xEemRYLyXht2IrQ" type="6003">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_8iO9g10xEemRYLyXht2IrQ" y="10"/>
          </children>
          <styles xmi:type="notation:ConnectorStyle" xmi:id="_8iOWcV0xEemRYLyXht2IrQ" routing="Tree"/>
          <styles xmi:type="notation:FontStyle" xmi:id="_8iOWcl0xEemRYLyXht2IrQ" fontName="Noto Sans" fontHeight="8"/>
          <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_8iOWc10xEemRYLyXht2IrQ" points="[0, 0, 0, 58]$[0, -58, 0, 0]"/>
          <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_8iO9hF0xEemRYLyXht2IrQ" id="(0.4246575342465753,0.01)"/>
          <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_8iO9hV0xEemRYLyXht2IrQ" id="(0.5,0.5)"/>
        </edges>
        <edges xmi:type="notation:Edge" xmi:id="_Kzrp4F0yEemRYLyXht2IrQ" type="4001" element="_KzljXl0yEemRYLyXht2IrQ" source="_tNH44F0qEemRYLyXht2IrQ" target="__OldwF0rEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_Kzrp5F0yEemRYLyXht2IrQ" type="6001">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Kzrp5V0yEemRYLyXht2IrQ" x="-11" y="-10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_Kzrp5l0yEemRYLyXht2IrQ" type="6002">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Kzrp510yEemRYLyXht2IrQ" x="-3" y="10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_Kzrp6F0yEemRYLyXht2IrQ" type="6003">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Kzrp6V0yEemRYLyXht2IrQ" x="3" y="10"/>
          </children>
          <styles xmi:type="notation:ConnectorStyle" xmi:id="_Kzrp4V0yEemRYLyXht2IrQ" routing="Rectilinear"/>
          <styles xmi:type="notation:FontStyle" xmi:id="_Kzrp4l0yEemRYLyXht2IrQ" fontColor="7490599" fontName="Noto Sans" fontHeight="8"/>
          <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_Kzrp410yEemRYLyXht2IrQ" points="[0, -57, -419, -265]$[418, -57, -1, -265]$[418, 208, -1, 0]"/>
          <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Kzrp6l0yEemRYLyXht2IrQ" id="(1.0,0.7959183673469388)"/>
          <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_Kzrp610yEemRYLyXht2IrQ" id="(0.610062893081761,0.0)"/>
        </edges>
        <edges xmi:type="notation:Edge" xmi:id="_PdUugF0yEemRYLyXht2IrQ" type="4001" element="_PdH6PF0yEemRYLyXht2IrQ" source="_tNH44F0qEemRYLyXht2IrQ" target="_Aq3OgF0sEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_PdUuhF0yEemRYLyXht2IrQ" type="6001">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_PdUuhV0yEemRYLyXht2IrQ" x="-30" y="104"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_PdUuhl0yEemRYLyXht2IrQ" type="6002">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_PdUuh10yEemRYLyXht2IrQ" y="10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_PdVVkF0yEemRYLyXht2IrQ" type="6003">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_PdVVkV0yEemRYLyXht2IrQ" x="-4" y="10"/>
          </children>
          <styles xmi:type="notation:ConnectorStyle" xmi:id="_PdUugV0yEemRYLyXht2IrQ" routing="Rectilinear"/>
          <styles xmi:type="notation:FontStyle" xmi:id="_PdUugl0yEemRYLyXht2IrQ" fontColor="7490599" fontName="Noto Sans" fontHeight="8"/>
          <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_PdUug10yEemRYLyXht2IrQ" points="[40, -32, -194, -220]$[221, -32, -13, -220]$[221, 188, -13, 0]"/>
          <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_PdVVkl0yEemRYLyXht2IrQ" id="(0.7222222222222222,1.0)"/>
          <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_PdVVk10yEemRYLyXht2IrQ" id="(0.3305084745762712,0.0)"/>
        </edges>
        <edges xmi:type="notation:Edge" xmi:id="_n98MwHA6Eem9acJE7_CmTw" type="4001" element="_n9tjRnA6Eem9acJE7_CmTw" source="_irD94HA6Eem9acJE7_CmTw" target="_Aq3OgF0sEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_n98z0HA6Eem9acJE7_CmTw" type="6001">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_n98z0XA6Eem9acJE7_CmTw" y="-10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_n98z0nA6Eem9acJE7_CmTw" type="6002">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_n98z03A6Eem9acJE7_CmTw" y="10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_n98z1HA6Eem9acJE7_CmTw" type="6003">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_n98z1XA6Eem9acJE7_CmTw" y="10"/>
          </children>
          <styles xmi:type="notation:ConnectorStyle" xmi:id="_n98MwXA6Eem9acJE7_CmTw" routing="Tree"/>
          <styles xmi:type="notation:FontStyle" xmi:id="_n98MwnA6Eem9acJE7_CmTw" fontName="Noto Sans" fontHeight="8"/>
          <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_n98Mw3A6Eem9acJE7_CmTw" points="[0, 0, 94, 151]$[-94, -151, 0, 0]"/>
          <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_n98z1nA6Eem9acJE7_CmTw" id="(0.2796610169491525,0.0)"/>
          <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_n98z13A6Eem9acJE7_CmTw" id="(0.3305084745762712,0.0)"/>
        </edges>
        <edges xmi:type="notation:Edge" xmi:id="_3d2LIHBMEempc7JjePmuNw" type="4001" element="_3dgz_3BMEempc7JjePmuNw" source="_haz28HA6Eem9acJE7_CmTw" target="_Aq3OgF0sEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_3d_VEHBMEempc7JjePmuNw" type="6001">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_3d_VEXBMEempc7JjePmuNw" y="-10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_3eAjMHBMEempc7JjePmuNw" type="6002">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_3eAjMXBMEempc7JjePmuNw" y="10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_3eBKQHBMEempc7JjePmuNw" type="6003">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_3eBKQXBMEempc7JjePmuNw" y="10"/>
          </children>
          <styles xmi:type="notation:ConnectorStyle" xmi:id="_3d2LIXBMEempc7JjePmuNw" routing="Tree"/>
          <styles xmi:type="notation:FontStyle" xmi:id="_3d2LInBMEempc7JjePmuNw" fontName="Noto Sans" fontHeight="8"/>
          <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_3d2LI3BMEempc7JjePmuNw" points="[0, 0, -14, 61]$[14, -61, 0, 0]"/>
          <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_3eENkHBMEempc7JjePmuNw" id="(0.6583333333333333,0.0)"/>
          <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_3eENkXBMEempc7JjePmuNw" id="(0.3305084745762712,0.0)"/>
        </edges>
        <edges xmi:type="notation:Edge" xmi:id="_37fJYHBMEempc7JjePmuNw" type="4001" element="_37Qf-HBMEempc7JjePmuNw" source="_fnQ1sHA6Eem9acJE7_CmTw" target="_Aq3OgF0sEemRYLyXht2IrQ">
          <children xmi:type="notation:Node" xmi:id="_37fwcHBMEempc7JjePmuNw" type="6001">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_37fwcXBMEempc7JjePmuNw" y="-10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_37fwcnBMEempc7JjePmuNw" type="6002">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_37fwc3BMEempc7JjePmuNw" y="10"/>
          </children>
          <children xmi:type="notation:Node" xmi:id="_37fwdHBMEempc7JjePmuNw" type="6003">
            <layoutConstraint xmi:type="notation:Bounds" xmi:id="_37fwdXBMEempc7JjePmuNw" y="10"/>
          </children>
          <styles xmi:type="notation:ConnectorStyle" xmi:id="_37fJYXBMEempc7JjePmuNw" routing="Tree"/>
          <styles xmi:type="notation:FontStyle" xmi:id="_37fJYnBMEempc7JjePmuNw" fontName="Noto Sans" fontHeight="8"/>
          <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_37fJY3BMEempc7JjePmuNw" points="[0, 0, -63, 154]$[63, -154, 0, 0]"/>
          <sourceAnchor xmi:type="notation:IdentityAnchor" xmi:id="_37gXgHBMEempc7JjePmuNw" id="(0.559322033898305,0.0)"/>
          <targetAnchor xmi:type="notation:IdentityAnchor" xmi:id="_37gXgXBMEempc7JjePmuNw" id="(0.3305084745762712,0.0)"/>
        </edges>
      </data>
    </ownedAnnotationEntries>
    <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_tM4oUF0qEemRYLyXht2IrQ" name="ConstellationMission" tooltipText="" outgoingEdges="_KzljXl0yEemRYLyXht2IrQ _PdH6PF0yEemRYLyXht2IrQ" incomingEdges="_0jIdIF0qEemRYLyXht2IrQ" width="12" height="10">
      <target xmi:type="ecore:EClass" href="satellite.ecore#//ConstellationMission"/>
      <semanticElements xmi:type="ecore:EClass" href="satellite.ecore#//ConstellationMission"/>
      <arrangeConstraints>KEEP_LOCATION</arrangeConstraints>
      <arrangeConstraints>KEEP_SIZE</arrangeConstraints>
      <arrangeConstraints>KEEP_RATIO</arrangeConstraints>
      <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_4b3pQV0qEemRYLyXht2IrQ" iconPath="/org.eclipse.emf.ecoretools.design/icons/full/obj16/EClass_abstract.gif" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="228,228,228">
        <labelFormat>italic</labelFormat>
        <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@conditionnalStyles.1/@style"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_vlPm0F0qEemRYLyXht2IrQ" name="InterferometryMission" tooltipText="" outgoingEdges="_0jIdIF0qEemRYLyXht2IrQ" width="12" height="10">
      <target xmi:type="ecore:EClass" href="satellite.ecore#//InterferometryMission"/>
      <semanticElements xmi:type="ecore:EClass" href="satellite.ecore#//InterferometryMission"/>
      <arrangeConstraints>KEEP_LOCATION</arrangeConstraints>
      <arrangeConstraints>KEEP_SIZE</arrangeConstraints>
      <arrangeConstraints>KEEP_RATIO</arrangeConstraints>
      <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_0ECtY10qEemRYLyXht2IrQ" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216">
        <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/>
      <ownedElements xmi:type="diagram:DNodeListElement" uid="_zChmAF0qEemRYLyXht2IrQ" name="observationTime : EFloat = 2.0" tooltipText="">
        <target xmi:type="ecore:EAttribute" href="satellite.ecore#//InterferometryMission/observationTime"/>
        <semanticElements xmi:type="ecore:EAttribute" href="satellite.ecore#//InterferometryMission/observationTime"/>
        <ownedStyle xmi:type="diagram:BundledImage" uid="_1awPYV0vEemRYLyXht2IrQ" labelAlignment="LEFT" description="_028-wF0vEemRYLyXht2IrQ">
          <labelFormat>bold</labelFormat>
        </ownedStyle>
        <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/>
      </ownedElements>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DEdge" uid="_0jIdIF0qEemRYLyXht2IrQ" sourceNode="_vlPm0F0qEemRYLyXht2IrQ" targetNode="_tM4oUF0qEemRYLyXht2IrQ">
      <target xmi:type="ecore:EClass" href="satellite.ecore#//InterferometryMission"/>
      <semanticElements xmi:type="ecore:EClass" href="satellite.ecore#//InterferometryMission"/>
      <ownedStyle xmi:type="diagram:EdgeStyle" uid="_0jK5YF0qEemRYLyXht2IrQ" targetArrow="InputClosedArrow" routingStyle="tree">
        <description xmi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']/@style"/>
        <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_0jK5YV0qEemRYLyXht2IrQ" showIcon="false">
          <labelFormat>italic</labelFormat>
        </beginLabelStyle>
        <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_0jK5Yl0qEemRYLyXht2IrQ" showIcon="false"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_3T7UUF0rEemRYLyXht2IrQ" name="CommunicatingElement" tooltipText="" outgoingEdges="_4B9iMF0vEemRYLyXht2IrQ _ccF89l0wEemRYLyXht2IrQ" incomingEdges="_NpQ-pl0sEemRYLyXht2IrQ _PEp-k10sEemRYLyXht2IrQ" width="12" height="10">
      <target xmi:type="ecore:EClass" href="satellite.ecore#//CommunicatingElement"/>
      <semanticElements xmi:type="ecore:EClass" href="satellite.ecore#//CommunicatingElement"/>
      <arrangeConstraints>KEEP_LOCATION</arrangeConstraints>
      <arrangeConstraints>KEEP_SIZE</arrangeConstraints>
      <arrangeConstraints>KEEP_RATIO</arrangeConstraints>
      <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_9uaEcV0rEemRYLyXht2IrQ" iconPath="/org.eclipse.emf.ecoretools.design/icons/full/obj16/EClass_abstract.gif" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="228,228,228">
        <labelFormat>italic</labelFormat>
        <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@conditionnalStyles.1/@style"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DNodeList" uid="__OYCYF0rEemRYLyXht2IrQ" name="GroundStationNetwork" tooltipText="" outgoingEdges="_NpQ-pl0sEemRYLyXht2IrQ" incomingEdges="_KzljXl0yEemRYLyXht2IrQ" width="12" height="10">
      <target xmi:type="ecore:EClass" href="satellite.ecore#//GroundStationNetwork"/>
      <semanticElements xmi:type="ecore:EClass" href="satellite.ecore#//GroundStationNetwork"/>
      <arrangeConstraints>KEEP_LOCATION</arrangeConstraints>
      <arrangeConstraints>KEEP_SIZE</arrangeConstraints>
      <arrangeConstraints>KEEP_RATIO</arrangeConstraints>
      <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="__B6W510vEemRYLyXht2IrQ" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216">
        <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_AqsPYF0sEemRYLyXht2IrQ" name="Spacecraft" tooltipText="" outgoingEdges="_PEp-k10sEemRYLyXht2IrQ _3GzPll0xEemRYLyXht2IrQ" incomingEdges="_PdH6PF0yEemRYLyXht2IrQ _n9tjRnA6Eem9acJE7_CmTw _3dgz_3BMEempc7JjePmuNw _37Qf-HBMEempc7JjePmuNw" width="12" height="10">
      <target xmi:type="ecore:EClass" href="satellite.ecore#//Spacecraft"/>
      <semanticElements xmi:type="ecore:EClass" href="satellite.ecore#//Spacecraft"/>
      <arrangeConstraints>KEEP_LOCATION</arrangeConstraints>
      <arrangeConstraints>KEEP_SIZE</arrangeConstraints>
      <arrangeConstraints>KEEP_RATIO</arrangeConstraints>
      <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_l4otI3A6Eem9acJE7_CmTw" iconPath="/org.eclipse.emf.ecoretools.design/icons/full/obj16/EClass_abstract.gif" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="228,228,228">
        <labelFormat>italic</labelFormat>
        <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@conditionnalStyles.1/@style"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/>
      <ownedElements xmi:type="diagram:DNodeListElement" uid="_-9TZsG60Eem3gIPdAp40Tw" name="/kind : SpacecraftKind = CubeSat3U" tooltipText="">
        <target xmi:type="ecore:EAttribute" href="satellite.ecore#//Spacecraft/kind"/>
        <semanticElements xmi:type="ecore:EAttribute" href="satellite.ecore#//Spacecraft/kind"/>
        <ownedStyle xmi:type="diagram:BundledImage" uid="_o3yl4nA6Eem9acJE7_CmTw" labelColor="39,76,114" labelAlignment="LEFT" description="_o3yl4HA6Eem9acJE7_CmTw">
          <labelFormat>bold</labelFormat>
        </ownedStyle>
        <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/>
      </ownedElements>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DEdge" uid="_NpQ-pl0sEemRYLyXht2IrQ" sourceNode="__OYCYF0rEemRYLyXht2IrQ" targetNode="_3T7UUF0rEemRYLyXht2IrQ">
      <target xmi:type="ecore:EClass" href="satellite.ecore#//GroundStationNetwork"/>
      <semanticElements xmi:type="ecore:EClass" href="satellite.ecore#//GroundStationNetwork"/>
      <ownedStyle xmi:type="diagram:EdgeStyle" uid="_NpRlsF0sEemRYLyXht2IrQ" targetArrow="InputClosedArrow" routingStyle="tree">
        <description xmi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']/@style"/>
        <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_NpRlsV0sEemRYLyXht2IrQ" showIcon="false">
          <labelFormat>italic</labelFormat>
        </beginLabelStyle>
        <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_NpRlsl0sEemRYLyXht2IrQ" showIcon="false"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DEdge" uid="_PEp-k10sEemRYLyXht2IrQ" sourceNode="_AqsPYF0sEemRYLyXht2IrQ" targetNode="_3T7UUF0rEemRYLyXht2IrQ">
      <target xmi:type="ecore:EClass" href="satellite.ecore#//Spacecraft"/>
      <semanticElements xmi:type="ecore:EClass" href="satellite.ecore#//Spacecraft"/>
      <ownedStyle xmi:type="diagram:EdgeStyle" uid="_Ap43UG61Eem3gIPdAp40Tw" targetArrow="InputClosedArrow" routingStyle="tree">
        <description xmi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']/@style"/>
        <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_Ap43UW61Eem3gIPdAp40Tw" showIcon="false">
          <labelFormat>italic</labelFormat>
        </beginLabelStyle>
        <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Ap43Um61Eem3gIPdAp40Tw" showIcon="false"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_j0eAEF0tEemRYLyXht2IrQ" name="CommSubsystem" tooltipText="" incomingEdges="_4B9iMF0vEemRYLyXht2IrQ _dbuYhl0xEemRYLyXht2IrQ _i2PgeV0xEemRYLyXht2IrQ" width="12" height="10">
      <target xmi:type="ecore:EClass" href="satellite.ecore#//CommSubsystem"/>
      <semanticElements xmi:type="ecore:EClass" href="satellite.ecore#//CommSubsystem"/>
      <arrangeConstraints>KEEP_LOCATION</arrangeConstraints>
      <arrangeConstraints>KEEP_SIZE</arrangeConstraints>
      <arrangeConstraints>KEEP_RATIO</arrangeConstraints>
      <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_UMdpIV0wEemRYLyXht2IrQ" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216">
        <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/>
      <ownedElements xmi:type="diagram:DNodeListElement" uid="_zuaCUF0vEemRYLyXht2IrQ" name="band : TransceiverBand = UHF" tooltipText="">
        <target xmi:type="ecore:EAttribute" href="satellite.ecore#//CommSubsystem/band"/>
        <semanticElements xmi:type="ecore:EAttribute" href="satellite.ecore#//CommSubsystem/band"/>
        <ownedStyle xmi:type="diagram:BundledImage" uid="_028-wl0vEemRYLyXht2IrQ" labelAlignment="LEFT" description="_028-wF0vEemRYLyXht2IrQ">
          <labelFormat>bold</labelFormat>
        </ownedStyle>
        <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/>
      </ownedElements>
      <ownedElements xmi:type="diagram:DNodeListElement" uid="_Q8yBAF0wEemRYLyXht2IrQ" name="gain : AntennaGain = LOW" tooltipText="">
        <target xmi:type="ecore:EAttribute" href="satellite.ecore#//CommSubsystem/gain"/>
        <semanticElements xmi:type="ecore:EAttribute" href="satellite.ecore#//CommSubsystem/gain"/>
        <ownedStyle xmi:type="diagram:BundledImage" uid="_UgHk4l0wEemRYLyXht2IrQ" labelAlignment="LEFT" description="_028-wF0vEemRYLyXht2IrQ">
          <labelFormat>bold</labelFormat>
        </ownedStyle>
        <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/>
      </ownedElements>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_vyhbkF0vEemRYLyXht2IrQ" name="TransceiverBand" tooltipText="" width="12" height="10">
      <target xmi:type="ecore:EEnum" href="satellite.ecore#//TransceiverBand"/>
      <semanticElements xmi:type="ecore:EEnum" href="satellite.ecore#//TransceiverBand"/>
      <arrangeConstraints>KEEP_LOCATION</arrangeConstraints>
      <arrangeConstraints>KEEP_SIZE</arrangeConstraints>
      <arrangeConstraints>KEEP_RATIO</arrangeConstraints>
      <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_vyj30F0vEemRYLyXht2IrQ" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="221,236,202">
        <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@style"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']"/>
      <ownedElements xmi:type="diagram:DNodeListElement" uid="_x3rKMF0vEemRYLyXht2IrQ" name="UHF" tooltipText="">
        <target xmi:type="ecore:EEnumLiteral" href="satellite.ecore#//TransceiverBand/UHF"/>
        <semanticElements xmi:type="ecore:EEnumLiteral" href="satellite.ecore#//TransceiverBand/UHF"/>
        <ownedStyle xmi:type="diagram:BundledImage" uid="_x3rKMV0vEemRYLyXht2IrQ" labelAlignment="LEFT">
          <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']/@style"/>
        </ownedStyle>
        <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']"/>
      </ownedElements>
      <ownedElements xmi:type="diagram:DNodeListElement" uid="_yg2DAF0vEemRYLyXht2IrQ" name="X" tooltipText="">
        <target xmi:type="ecore:EEnumLiteral" href="satellite.ecore#//TransceiverBand/X"/>
        <semanticElements xmi:type="ecore:EEnumLiteral" href="satellite.ecore#//TransceiverBand/X"/>
        <ownedStyle xmi:type="diagram:BundledImage" uid="_yg2qEF0vEemRYLyXht2IrQ" labelAlignment="LEFT">
          <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']/@style"/>
        </ownedStyle>
        <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']"/>
      </ownedElements>
      <ownedElements xmi:type="diagram:DNodeListElement" uid="_zAInEF0vEemRYLyXht2IrQ" name="Ka" tooltipText="">
        <target xmi:type="ecore:EEnumLiteral" href="satellite.ecore#//TransceiverBand/Ka"/>
        <semanticElements xmi:type="ecore:EEnumLiteral" href="satellite.ecore#//TransceiverBand/Ka"/>
        <ownedStyle xmi:type="diagram:BundledImage" uid="_zAInEV0vEemRYLyXht2IrQ" labelAlignment="LEFT">
          <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']/@style"/>
        </ownedStyle>
        <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']"/>
      </ownedElements>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DEdge" uid="_4B9iMF0vEemRYLyXht2IrQ" name="[1..2] commSubsystem" sourceNode="_3T7UUF0rEemRYLyXht2IrQ" targetNode="_j0eAEF0tEemRYLyXht2IrQ">
      <target xmi:type="ecore:EReference" href="satellite.ecore#//CommunicatingElement/commSubsystem"/>
      <semanticElements xmi:type="ecore:EReference" href="satellite.ecore#//CommunicatingElement/commSubsystem"/>
      <ownedStyle xmi:type="diagram:EdgeStyle" uid="_6kODk10vEemRYLyXht2IrQ" description="_6kODkF0vEemRYLyXht2IrQ" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0">
        <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_6kODlV0vEemRYLyXht2IrQ" showIcon="false">
          <labelFormat>bold</labelFormat>
        </centerLabelStyle>
        <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_6kODlF0vEemRYLyXht2IrQ" labelSize="6" showIcon="false" labelColor="39,76,114"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_Ctw9kF0wEemRYLyXht2IrQ" name="DirectedCommunicationLink" tooltipText="" outgoingEdges="_dbuYhl0xEemRYLyXht2IrQ _i2PgeV0xEemRYLyXht2IrQ" incomingEdges="_ccF89l0wEemRYLyXht2IrQ" width="12" height="10">
      <target xmi:type="ecore:EClass" href="satellite.ecore#//DirectedCommunicationLink"/>
      <semanticElements xmi:type="ecore:EClass" href="satellite.ecore#//DirectedCommunicationLink"/>
      <arrangeConstraints>KEEP_LOCATION</arrangeConstraints>
      <arrangeConstraints>KEEP_SIZE</arrangeConstraints>
      <arrangeConstraints>KEEP_RATIO</arrangeConstraints>
      <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_fC-qQ10xEemRYLyXht2IrQ" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216">
        <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_M5OsAF0wEemRYLyXht2IrQ" name="AntennaGain" tooltipText="" width="12" height="10">
      <target xmi:type="ecore:EEnum" href="satellite.ecore#//AntennaGain"/>
      <semanticElements xmi:type="ecore:EEnum" href="satellite.ecore#//AntennaGain"/>
      <arrangeConstraints>KEEP_LOCATION</arrangeConstraints>
      <arrangeConstraints>KEEP_SIZE</arrangeConstraints>
      <arrangeConstraints>KEEP_RATIO</arrangeConstraints>
      <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_M5OsAV0wEemRYLyXht2IrQ" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="221,236,202">
        <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@style"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']"/>
      <ownedElements xmi:type="diagram:DNodeListElement" uid="_OBacEF0wEemRYLyXht2IrQ" name="LOW" tooltipText="">
        <target xmi:type="ecore:EEnumLiteral" href="satellite.ecore#//AntennaGain/LOW"/>
        <semanticElements xmi:type="ecore:EEnumLiteral" href="satellite.ecore#//AntennaGain/LOW"/>
        <ownedStyle xmi:type="diagram:BundledImage" uid="_OBbDIF0wEemRYLyXht2IrQ" labelAlignment="LEFT">
          <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']/@style"/>
        </ownedStyle>
        <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']"/>
      </ownedElements>
      <ownedElements xmi:type="diagram:DNodeListElement" uid="_OcLsgF0wEemRYLyXht2IrQ" name="MEDIUM" tooltipText="">
        <target xmi:type="ecore:EEnumLiteral" href="satellite.ecore#//AntennaGain/MEDIUM"/>
        <semanticElements xmi:type="ecore:EEnumLiteral" href="satellite.ecore#//AntennaGain/MEDIUM"/>
        <ownedStyle xmi:type="diagram:BundledImage" uid="_OcLsgV0wEemRYLyXht2IrQ" labelAlignment="LEFT">
          <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']/@style"/>
        </ownedStyle>
        <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']"/>
      </ownedElements>
      <ownedElements xmi:type="diagram:DNodeListElement" uid="_O9wIgF0wEemRYLyXht2IrQ" name="HIGH" tooltipText="">
        <target xmi:type="ecore:EEnumLiteral" href="satellite.ecore#//AntennaGain/HIGH"/>
        <semanticElements xmi:type="ecore:EEnumLiteral" href="satellite.ecore#//AntennaGain/HIGH"/>
        <ownedStyle xmi:type="diagram:BundledImage" uid="_O9wvkF0wEemRYLyXht2IrQ" labelAlignment="LEFT">
          <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']/@style"/>
        </ownedStyle>
        <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']"/>
      </ownedElements>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DEdge" uid="_ccF89l0wEemRYLyXht2IrQ" name="[0..1] communicationLink" sourceNode="_3T7UUF0rEemRYLyXht2IrQ" targetNode="_Ctw9kF0wEemRYLyXht2IrQ">
      <target xmi:type="ecore:EReference" href="satellite.ecore#//CommunicatingElement/communicationLink"/>
      <semanticElements xmi:type="ecore:EReference" href="satellite.ecore#//CommunicatingElement/communicationLink"/>
      <ownedStyle xmi:type="diagram:EdgeStyle" uid="_ccHLE10wEemRYLyXht2IrQ" description="_ccHLEF0wEemRYLyXht2IrQ" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0">
        <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_ccHLFV0wEemRYLyXht2IrQ" showIcon="false">
          <customFeatures>labelSize</customFeatures>
        </centerLabelStyle>
        <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_ccHLFF0wEemRYLyXht2IrQ" showIcon="false" labelColor="39,76,114">
          <customFeatures>labelSize</customFeatures>
        </endLabelStyle>
      </ownedStyle>
      <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DEdge" uid="_dbuYhl0xEemRYLyXht2IrQ" name="[1..1] source" sourceNode="_Ctw9kF0wEemRYLyXht2IrQ" targetNode="_j0eAEF0tEemRYLyXht2IrQ">
      <target xmi:type="ecore:EReference" href="satellite.ecore#//DirectedCommunicationLink/source"/>
      <semanticElements xmi:type="ecore:EReference" href="satellite.ecore#//DirectedCommunicationLink/source"/>
      <ownedStyle xmi:type="diagram:EdgeStyle" uid="_fDAfY10xEemRYLyXht2IrQ" description="_fDAfYF0xEemRYLyXht2IrQ" routingStyle="manhattan" strokeColor="0,0,0">
        <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_fDAfZV0xEemRYLyXht2IrQ" showIcon="false">
          <labelFormat>bold</labelFormat>
        </centerLabelStyle>
        <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_fDAfZF0xEemRYLyXht2IrQ" labelSize="6" showIcon="false" labelColor="39,76,114"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DEdge" uid="_i2PgeV0xEemRYLyXht2IrQ" name="[1..1] target" sourceNode="_Ctw9kF0wEemRYLyXht2IrQ" targetNode="_j0eAEF0tEemRYLyXht2IrQ">
      <target xmi:type="ecore:EReference" href="satellite.ecore#//DirectedCommunicationLink/target"/>
      <semanticElements xmi:type="ecore:EReference" href="satellite.ecore#//DirectedCommunicationLink/target"/>
      <ownedStyle xmi:type="diagram:EdgeStyle" uid="_jrg7ll0xEemRYLyXht2IrQ" description="_fDAfYF0xEemRYLyXht2IrQ" routingStyle="manhattan" strokeColor="0,0,0">
        <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_jrg7mF0xEemRYLyXht2IrQ" showIcon="false">
          <labelFormat>bold</labelFormat>
        </centerLabelStyle>
        <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_jrg7l10xEemRYLyXht2IrQ" labelSize="6" showIcon="false" labelColor="39,76,114"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_0aW3cF0xEemRYLyXht2IrQ" name="Payload" tooltipText="" incomingEdges="_3GzPll0xEemRYLyXht2IrQ _8iFzll0xEemRYLyXht2IrQ" width="12" height="10">
      <target xmi:type="ecore:EClass" href="satellite.ecore#//Payload"/>
      <semanticElements xmi:type="ecore:EClass" href="satellite.ecore#//Payload"/>
      <arrangeConstraints>KEEP_LOCATION</arrangeConstraints>
      <arrangeConstraints>KEEP_SIZE</arrangeConstraints>
      <arrangeConstraints>KEEP_RATIO</arrangeConstraints>
      <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_4n8SQl0xEemRYLyXht2IrQ" iconPath="/org.eclipse.emf.ecoretools.design/icons/full/obj16/EClass_abstract.gif" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="228,228,228">
        <labelFormat>italic</labelFormat>
        <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@conditionnalStyles.1/@style"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DEdge" uid="_3GzPll0xEemRYLyXht2IrQ" name="[0..1] payload" sourceNode="_AqsPYF0sEemRYLyXht2IrQ" targetNode="_0aW3cF0xEemRYLyXht2IrQ">
      <target xmi:type="ecore:EReference" href="satellite.ecore#//Spacecraft/payload"/>
      <semanticElements xmi:type="ecore:EReference" href="satellite.ecore#//Spacecraft/payload"/>
      <ownedStyle xmi:type="diagram:EdgeStyle" uid="_3G0dsF0xEemRYLyXht2IrQ" description="_ccHLEF0wEemRYLyXht2IrQ" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0">
        <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_3G0dsl0xEemRYLyXht2IrQ" showIcon="false">
          <customFeatures>labelSize</customFeatures>
        </centerLabelStyle>
        <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_3G0dsV0xEemRYLyXht2IrQ" showIcon="false" labelColor="39,76,114">
          <customFeatures>labelSize</customFeatures>
        </endLabelStyle>
      </ownedStyle>
      <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_45FskF0xEemRYLyXht2IrQ" name="InterferometryPayload" tooltipText="" outgoingEdges="_8iFzll0xEemRYLyXht2IrQ" width="12" height="10">
      <target xmi:type="ecore:EClass" href="satellite.ecore#//InterferometryPayload"/>
      <semanticElements xmi:type="ecore:EClass" href="satellite.ecore#//InterferometryPayload"/>
      <arrangeConstraints>KEEP_LOCATION</arrangeConstraints>
      <arrangeConstraints>KEEP_SIZE</arrangeConstraints>
      <arrangeConstraints>KEEP_RATIO</arrangeConstraints>
      <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_IHvBB10yEemRYLyXht2IrQ" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216">
        <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DEdge" uid="_8iFzll0xEemRYLyXht2IrQ" sourceNode="_45FskF0xEemRYLyXht2IrQ" targetNode="_0aW3cF0xEemRYLyXht2IrQ">
      <target xmi:type="ecore:EClass" href="satellite.ecore#//InterferometryPayload"/>
      <semanticElements xmi:type="ecore:EClass" href="satellite.ecore#//InterferometryPayload"/>
      <ownedStyle xmi:type="diagram:EdgeStyle" uid="_IH284l0yEemRYLyXht2IrQ" targetArrow="InputClosedArrow" routingStyle="tree">
        <description xmi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']/@style"/>
        <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_IH28410yEemRYLyXht2IrQ" showIcon="false">
          <labelFormat>italic</labelFormat>
        </beginLabelStyle>
        <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_IH285F0yEemRYLyXht2IrQ" showIcon="false"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DEdge" uid="_KzljXl0yEemRYLyXht2IrQ" name="[1..1] groundStationNetwork" sourceNode="_tM4oUF0qEemRYLyXht2IrQ" targetNode="__OYCYF0rEemRYLyXht2IrQ">
      <target xmi:type="ecore:EReference" href="satellite.ecore#//ConstellationMission/groundStationNetwork"/>
      <semanticElements xmi:type="ecore:EReference" href="satellite.ecore#//ConstellationMission/groundStationNetwork"/>
      <ownedStyle xmi:type="diagram:EdgeStyle" uid="_MI6-gF0yEemRYLyXht2IrQ" description="_6kODkF0vEemRYLyXht2IrQ" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0">
        <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_MI6-gl0yEemRYLyXht2IrQ" showIcon="false">
          <labelFormat>bold</labelFormat>
        </centerLabelStyle>
        <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_MI6-gV0yEemRYLyXht2IrQ" labelSize="6" showIcon="false" labelColor="39,76,114"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DEdge" uid="_PdH6PF0yEemRYLyXht2IrQ" name="[2..50] spacecraft" sourceNode="_tM4oUF0qEemRYLyXht2IrQ" targetNode="_AqsPYF0sEemRYLyXht2IrQ">
      <target xmi:type="ecore:EReference" href="satellite.ecore#//ConstellationMission/spacecraft"/>
      <semanticElements xmi:type="ecore:EReference" href="satellite.ecore#//ConstellationMission/spacecraft"/>
      <ownedStyle xmi:type="diagram:EdgeStyle" uid="_SRBlMF0yEemRYLyXht2IrQ" description="_6kODkF0vEemRYLyXht2IrQ" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0">
        <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_SRBlMl0yEemRYLyXht2IrQ" showIcon="false">
          <labelFormat>bold</labelFormat>
        </centerLabelStyle>
        <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_SRBlMV0yEemRYLyXht2IrQ" labelSize="6" showIcon="false" labelColor="39,76,114"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_2oBw0G60Eem3gIPdAp40Tw" name="SpacecraftKind" tooltipText="" width="12" height="10">
      <target xmi:type="ecore:EEnum" href="satellite.ecore#//SpacecraftKind"/>
      <semanticElements xmi:type="ecore:EEnum" href="satellite.ecore#//SpacecraftKind"/>
      <arrangeConstraints>KEEP_LOCATION</arrangeConstraints>
      <arrangeConstraints>KEEP_SIZE</arrangeConstraints>
      <arrangeConstraints>KEEP_RATIO</arrangeConstraints>
      <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_2oC-8G60Eem3gIPdAp40Tw" borderSize="1" borderSizeComputationExpression="1" borderColor="125,125,125" backgroundStyle="Liquid" foregroundColor="221,236,202">
        <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@style"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']"/>
      <ownedElements xmi:type="diagram:DNodeListElement" uid="_5P_4oG60Eem3gIPdAp40Tw" name="CubeSat3U" tooltipText="">
        <target xmi:type="ecore:EEnumLiteral" href="satellite.ecore#//SpacecraftKind/CubeSat3U"/>
        <semanticElements xmi:type="ecore:EEnumLiteral" href="satellite.ecore#//SpacecraftKind/CubeSat3U"/>
        <ownedStyle xmi:type="diagram:BundledImage" uid="_5QAfsG60Eem3gIPdAp40Tw" labelAlignment="LEFT">
          <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']/@style"/>
        </ownedStyle>
        <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']"/>
      </ownedElements>
      <ownedElements xmi:type="diagram:DNodeListElement" uid="_UKKgQHA6Eem9acJE7_CmTw" name="CubeSat6U" tooltipText="">
        <target xmi:type="ecore:EEnumLiteral" href="satellite.ecore#//SpacecraftKind/CubeSat6U"/>
        <semanticElements xmi:type="ecore:EEnumLiteral" href="satellite.ecore#//SpacecraftKind/CubeSat6U"/>
        <ownedStyle xmi:type="diagram:BundledImage" uid="_UKLHUHA6Eem9acJE7_CmTw" labelAlignment="LEFT">
          <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']/@style"/>
        </ownedStyle>
        <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']"/>
      </ownedElements>
      <ownedElements xmi:type="diagram:DNodeListElement" uid="_7R9JUG60Eem3gIPdAp40Tw" name="SmallSat" tooltipText="">
        <target xmi:type="ecore:EEnumLiteral" href="satellite.ecore#//SpacecraftKind/SmallSat"/>
        <semanticElements xmi:type="ecore:EEnumLiteral" href="satellite.ecore#//SpacecraftKind/SmallSat"/>
        <ownedStyle xmi:type="diagram:BundledImage" uid="_7R-XcG60Eem3gIPdAp40Tw" labelAlignment="LEFT">
          <description xmi:type="style:BundledImageDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']/@style"/>
        </ownedStyle>
        <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EEnum']/@subNodeMappings[name='EC%20EEnumLiteral']"/>
      </ownedElements>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_fm1X4HA6Eem9acJE7_CmTw" name="CubeSat3U" tooltipText="" outgoingEdges="_37Qf-HBMEempc7JjePmuNw" width="12" height="10">
      <target xmi:type="ecore:EClass" href="satellite.ecore#//CubeSat3U"/>
      <semanticElements xmi:type="ecore:EClass" href="satellite.ecore#//CubeSat3U"/>
      <arrangeConstraints>KEEP_LOCATION</arrangeConstraints>
      <arrangeConstraints>KEEP_SIZE</arrangeConstraints>
      <arrangeConstraints>KEEP_RATIO</arrangeConstraints>
      <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_fm1-8HA6Eem9acJE7_CmTw" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216">
        <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_hanCoHA6Eem9acJE7_CmTw" name="CubeSat6U" tooltipText="" outgoingEdges="_3dgz_3BMEempc7JjePmuNw" width="12" height="10">
      <target xmi:type="ecore:EClass" href="satellite.ecore#//CubeSat6U"/>
      <semanticElements xmi:type="ecore:EClass" href="satellite.ecore#//CubeSat6U"/>
      <arrangeConstraints>KEEP_LOCATION</arrangeConstraints>
      <arrangeConstraints>KEEP_SIZE</arrangeConstraints>
      <arrangeConstraints>KEEP_RATIO</arrangeConstraints>
      <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_hanCoXA6Eem9acJE7_CmTw" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216">
        <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_iqnR8HA6Eem9acJE7_CmTw" name="SmallSat" tooltipText="" outgoingEdges="_n9tjRnA6Eem9acJE7_CmTw" width="12" height="10">
      <target xmi:type="ecore:EClass" href="satellite.ecore#//SmallSat"/>
      <semanticElements xmi:type="ecore:EClass" href="satellite.ecore#//SmallSat"/>
      <arrangeConstraints>KEEP_LOCATION</arrangeConstraints>
      <arrangeConstraints>KEEP_SIZE</arrangeConstraints>
      <arrangeConstraints>KEEP_RATIO</arrangeConstraints>
      <ownedStyle xmi:type="diagram:FlatContainerStyle" uid="_iqn5AHA6Eem9acJE7_CmTw" borderSize="1" borderSizeComputationExpression="1" backgroundStyle="Liquid" foregroundColor="255,252,216">
        <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DEdge" uid="_n9tjRnA6Eem9acJE7_CmTw" sourceNode="_iqnR8HA6Eem9acJE7_CmTw" targetNode="_AqsPYF0sEemRYLyXht2IrQ">
      <target xmi:type="ecore:EClass" href="satellite.ecore#//SmallSat"/>
      <semanticElements xmi:type="ecore:EClass" href="satellite.ecore#//SmallSat"/>
      <ownedStyle xmi:type="diagram:EdgeStyle" uid="_n9uKUHA6Eem9acJE7_CmTw" targetArrow="InputClosedArrow" routingStyle="tree">
        <description xmi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']/@style"/>
        <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_n9uKUXA6Eem9acJE7_CmTw" showIcon="false">
          <labelFormat>italic</labelFormat>
        </beginLabelStyle>
        <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_n9uKUnA6Eem9acJE7_CmTw" showIcon="false"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DEdge" uid="_3dgz_3BMEempc7JjePmuNw" sourceNode="_hanCoHA6Eem9acJE7_CmTw" targetNode="_AqsPYF0sEemRYLyXht2IrQ">
      <target xmi:type="ecore:EClass" href="satellite.ecore#//CubeSat6U"/>
      <semanticElements xmi:type="ecore:EClass" href="satellite.ecore#//CubeSat6U"/>
      <ownedStyle xmi:type="diagram:EdgeStyle" uid="_ItnCw3BNEempc7JjePmuNw" lineStyle="dot" targetArrow="InputClosedArrow" routingStyle="tree" strokeColor="125,125,125">
        <description xmi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']/@conditionnalStyles.1/@style"/>
        <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_ItnCxHBNEempc7JjePmuNw" showIcon="false">
          <labelFormat>italic</labelFormat>
        </beginLabelStyle>
        <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_ItnCxXBNEempc7JjePmuNw" showIcon="false"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']"/>
    </ownedDiagramElements>
    <ownedDiagramElements xmi:type="diagram:DEdge" uid="_37Qf-HBMEempc7JjePmuNw" sourceNode="_fm1X4HA6Eem9acJE7_CmTw" targetNode="_AqsPYF0sEemRYLyXht2IrQ">
      <target xmi:type="ecore:EClass" href="satellite.ecore#//CubeSat3U"/>
      <semanticElements xmi:type="ecore:EClass" href="satellite.ecore#//CubeSat3U"/>
      <ownedStyle xmi:type="diagram:EdgeStyle" uid="_ItmbuXBNEempc7JjePmuNw" lineStyle="dot" targetArrow="InputClosedArrow" routingStyle="tree" strokeColor="125,125,125">
        <description xmi:type="style:EdgeStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']/@conditionnalStyles.1/@style"/>
        <beginLabelStyle xmi:type="diagram:BeginLabelStyle" uid="_ItmbunBNEempc7JjePmuNw" showIcon="false">
          <labelFormat>italic</labelFormat>
        </beginLabelStyle>
        <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_Itmbu3BNEempc7JjePmuNw" showIcon="false"/>
      </ownedStyle>
      <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC%20ESupertypes']"/>
    </ownedDiagramElements>
    <description xmi:type="description_1:DiagramDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']"/>
    <filterVariableHistory xmi:type="diagram:FilterVariableHistory" uid="_reoWwF0qEemRYLyXht2IrQ"/>
    <activatedLayers xmi:type="description_1:Layer" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer"/>
    <activatedLayers xmi:type="description_1:AdditionalLayer" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@additionalLayers[name='Package']"/>
    <activatedLayers xmi:type="description_1:AdditionalLayer" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@additionalLayers[name='Validation']"/>
    <target xmi:type="ecore:EPackage" href="satellite.ecore#/"/>
  </diagram:DSemanticDiagram>
</xmi:XMI>