summaryrefslogtreecommitdiff
path: root/src/testivy/p2000.ivy
blob: 13ecb8e9c2c56eac84faa5a637eda36f2ba50c71 (plain)
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
applications=IvyMon on super,ivylaunch on super,ivycontrolpanel on super,RadarGL:bordeaux:IIPP1:PP1 on belus,-- STCA died,-- Rejeu died,-- FlightList:bordeaux:IIPP1:PP1 died,-- Clock died,-- autoassume:BORD:P2:CR died,-- autoassume:BORD:P2:CO died,-- PaveOrdres:bordeaux:IIPP1:PP1 died,-- FlightDisplay:bordeaux:IIPP1:PP1 died,-- GEODE:BORD:P2:CO died,-- GEODE:BORD:P2:CR died,-- IvyGateway died,-- tcasPilot died,-- notifyAudioLan:pseudo died,-- RadarGL:bordeaux:IIPP2:PP2 died,-- lanceur died,-- Scheduler died,-- VoiceModifier:bordeaux:IIPP1:PP1 died
messages_number=200000
lanceur 1174038068.8923 "lanceur READY"
Rejeu 1174038069.19484 "rejeu CONNECTED"
STCA 1174038069.22201 "STCA Ready"
ivylaunch 1174038069.23316 "ivylaunch READY"
notifyAudioLan:pseudo 1174038069.58577 "notifyAudioLan:pseudo READY"
RadarGL:bordeaux:IIPP2:PP2 1174038069.58666 ""
FlightList:bordeaux:IIPP1:PP1 1174038069.71617 "FlightList:bordeaux:IIPP1:PP1 READY"
Rejeu 1174038069.71711 "ClockDatas Time=00:00:00 Rate=1.0 Bs=0 Stop=1"
RadarGL:bordeaux:IIPP1:PP1 1174038070.00423 ""
tcasPilot 1174038070.04957 "tcasPilot READY"
ivycontrolpanel 1174038070.08319 "ivycontrolpanel READY"
Rejeu 1174038070.24676 "DataBaseInfos FlightListIIPP1 Nb=0 List="
Rejeu 1174038070.26134 "DataBaseInfos FlightListIIPP1 Nb=0 List="
FlightList:bordeaux:IIPP1:PP1 1174038070.29236 "GetDataBaseInfos MsgName=FlightListIIPP1 Cond=(Sector=T3) Select=CallSign"
FlightList:bordeaux:IIPP1:PP1 1174038070.30835 "GetDataBaseInfos MsgName=FlightListIIPP1 Cond=(Sector=--) Select=CallSign"
Scheduler 1174038071.19145 "Scheduler Ready"
IvyGateway 1174038071.19504 "IvyTotor ready!"
Rejeu 1174038071.19912 "ClockDatas Time=00:00:00 Rate=1.0 Bs=0 Stop=1"
Rejeu 1174038073.73052 "ClockDatas Time=00:00:00 Rate=1.0 Bs=0 Stop=1"
GEODE:BORD:P2:CR 1174038074.03546 "GEODE:BORD:P2:CR: READY pid=17986 command=./run_GEODE_CR"
GEODE:BORD:P2:CR 1174038075.27474 "GEODE:BORD:P2:CR: READY pid=17986 command=./run_GEODE_CR"
GEODE:BORD:P2:CO 1174038075.36666 "GEODE:BORD:P2:CO: READY pid=17985 command=./run_GEODE_CR"
GEODE:BORD:P2:CR 1174038075.36757 "GEODE:BORD:P2:CR VIDEOTUNING_EVT=ZOOM,76.9230769230769"
GEODE:BORD:P2:CO 1174038076.06402 "GEODE:BORD:P2:CO: READY pid=17985 command=./run_GEODE_CR"
Rejeu 1174038076.06624 "ClockDatas Time=00:00:00 Rate=1.0 Bs=0 Stop=1"
GEODE:BORD:P2:CO 1174038076.07647 "GEODE:BORD:P2:CO VIDEOTUNING_EVT=ZOOM,76.9230769230769"
FlightDisplay:bordeaux:IIPP1:PP1 1174038076.22013 "FlightDisplay:bordeaux:IIPP1:PP1 READY"
Rejeu 1174038076.30777 "DataBaseInfos FlightDisplayIIPP1 Nb=0 List="
Rejeu 1174038076.32938 "DataBaseInfos FlightDisplayIIPP1 Nb=0 List="
FlightList:bordeaux:IIPP1:PP1 1174038077.80488 "GetDataBaseInfos MsgName=FlightListIIPP1 Cond=(Sector=T3) Select=CallSign"
FlightList:bordeaux:IIPP1:PP1 1174038077.80631 "GetDataBaseInfos MsgName=FlightListIIPP1 Cond=(Sector=--) Select=CallSign"
Rejeu 1174038077.8368 "DataBaseInfos FlightListIIPP1 Nb=0 List="
Rejeu 1174038077.89598 "DataBaseInfos FlightListIIPP1 Nb=0 List="
Rejeu 1174038077.94282 "DataBaseInfos FlightListIIPP1 Nb=0 List="
Rejeu 1174038077.96832 "DataBaseInfos FlightListIIPP1 Nb=0 List="
Rejeu 1174038077.99174 "DataBaseInfos FlightListIIPP1 Nb=0 List="
Rejeu 1174038078.0279 "DataBaseInfos FlightListIIPP1 Nb=0 List="
FlightList:bordeaux:IIPP1:PP1 1174038078.09698 "GetDataBaseInfos MsgName=FlightListIIPP1 Cond=(Sector=T3) Select=CallSign"
FlightList:bordeaux:IIPP1:PP1 1174038078.11914 "GetDataBaseInfos MsgName=FlightListIIPP1 Cond=(Sector=--) Select=CallSign"
FlightList:bordeaux:IIPP1:PP1 1174038078.14125 "GetDataBaseInfos MsgName=FlightListIIPP1 Cond=(Sector=T3) Select=CallSign"
FlightList:bordeaux:IIPP1:PP1 1174038078.16154 "GetDataBaseInfos MsgName=FlightListIIPP1 Cond=(Sector=--) Select=CallSign"
autoassume:BORD:P2:CO 1174038079.95051 "autoassume:BORD:P2:CO READY"
autoassume:BORD:P2:CO 1174038079.95253 "CDS:BORD: READY"
autoassume:BORD:P2:CO 1174038080.07548 "CDS:BORD: READY"
GEODE:BORD:P2:CO 1174038080.07689 "REQUEST_CONFIG acc=BORD"
GEODE:BORD:P2:CR 1174038080.07775 "REQUEST_CONFIG acc=BORD"
autoassume:BORD:P2:CO 1174038080.13803 "CDS:BORD Configuration=<T3:P2>"
GEODE:BORD:P2:CO 1174038080.14253 "RadarScreenUpdate:T3:65:-15.0000028610229:215:-165.000002861023"
GEODE:BORD:P2:CR 1174038080.14337 "RadarScreenUpdate:T3:65:-15.0000028610229:215:-165.000002861023"
autoassume:BORD:P2:CO 1174038080.14529 "ConfigurationEvent Acc=BORD List=<T3:P2>"
autoassume:BORD:P2:CO 1174038080.14879 "GEODE:BORD:P2:CO STATICMAP_EVT=1,UWST"
autoassume:BORD:P2:CO 1174038080.15018 "GEODE:BORD:P2:CO STATICMAP_EVT=1,UEST"
autoassume:BORD:P2:CO 1174038080.1819 "GEODE:BORD:P2:CO STATICMAP_EVT=1,FWST"
GEODE:BORD:P2:CR 1174038080.18302 "RadarScreenUpdate:T3:65:-15.0000028610229:215:-165.000002861023"
autoassume:BORD:P2:CO 1174038080.18406 "GEODE:BORD:P2:CO STATICMAP_EVT=1,FEST"
autoassume:BORD:P2:CO 1174038080.21277 "GEODE:BORD:P2:CO SECTORMAP_EVT=1"
autoassume:BORD:P2:CO 1174038080.22389 "CDS:BORD Configuration=<T3:P2>"
GEODE:BORD:P2:CO 1174038080.26317 "RadarScreenUpdate:T3:65:-15.0000028610229:215:-165.000002861023"
autoassume:BORD:P2:CO 1174038080.26583 "ConfigurationEvent Acc=BORD List=<T3:P2>"
autoassume:BORD:P2:CO 1174038080.31563 "GEODE:BORD:P2:CO STATICMAP_EVT=1,UWST"
autoassume:BORD:P2:CO 1174038080.34037 "GEODE:BORD:P2:CO STATICMAP_EVT=1,UEST"
autoassume:BORD:P2:CO 1174038080.36637 "GEODE:BORD:P2:CO STATICMAP_EVT=1,FWST"
autoassume:BORD:P2:CO 1174038080.36766 "GEODE:BORD:P2:CO STATICMAP_EVT=1,FEST"
autoassume:BORD:P2:CO 1174038080.39512 "GEODE:BORD:P2:CO SECTORMAP_EVT=1"
autoassume:BORD:P2:CR 1174038081.09327 "autoassume:BORD:P2:CR READY"
autoassume:BORD:P2:CR 1174038081.09466 "CDS:BORD: READY"
autoassume:BORD:P2:CR 1174038081.20201 "CDS:BORD: READY"
autoassume:BORD:P2:CR 1174038081.2827 "CDS:BORD Configuration=<T3:P2>"
autoassume:BORD:P2:CO 1174038081.28364 "CDS:BORD Configuration=<T3:P2>"
GEODE:BORD:P2:CO 1174038081.28444 "REQUEST_CONFIG acc=BORD"
GEODE:BORD:P2:CR 1174038081.28525 "REQUEST_CONFIG acc=BORD"
autoassume:BORD:P2:CO 1174038081.28752 "ConfigurationEvent Acc=BORD List=<T3:P2>"
autoassume:BORD:P2:CR 1174038081.33823 "ConfigurationEvent Acc=BORD List=<T3:P2>"
autoassume:BORD:P2:CO 1174038081.33922 "GEODE:BORD:P2:CO STATICMAP_EVT=1,UWST"
GEODE:BORD:P2:CO 1174038081.34034 "RadarScreenUpdate:T3:65:-15.0000028610229:215:-165.000002861023"
autoassume:BORD:P2:CR 1174038081.34135 "GEODE:BORD:P2:CR STATICMAP_EVT=1,UNOR"
autoassume:BORD:P2:CR 1174038081.34234 "GEODE:BORD:P2:CR STATICMAP_EVT=1,UWST"
autoassume:BORD:P2:CR 1174038081.3446 "GEODE:BORD:P2:CR STATICMAP_EVT=1,UEST"
autoassume:BORD:P2:CR 1174038081.39498 "GEODE:BORD:P2:CR STATICMAP_EVT=1,USUD"
GEODE:BORD:P2:CO 1174038081.39595 "RadarScreenUpdate:T3:65:-15.0000028610229:215:-165.000002861023"
GEODE:BORD:P2:CR 1174038081.39708 "RadarScreenUpdate:T3:65:-15.0000028610229:215:-165.000002861023"
autoassume:BORD:P2:CR 1174038081.39807 "GEODE:BORD:P2:CR SECTORMAP_EVT=1"
autoassume:BORD:P2:CR 1174038081.42329 "CDS:BORD Configuration=<T3:P2>"
autoassume:BORD:P2:CR 1174038081.45159 "ConfigurationEvent Acc=BORD List=<T3:P2>"
autoassume:BORD:P2:CR 1174038081.47827 "GEODE:BORD:P2:CR STATICMAP_EVT=1,UNOR"
autoassume:BORD:P2:CR 1174038081.50331 "GEODE:BORD:P2:CR STATICMAP_EVT=1,UWST"
autoassume:BORD:P2:CR 1174038081.5257 "GEODE:BORD:P2:CR STATICMAP_EVT=1,UEST"
autoassume:BORD:P2:CR 1174038081.54805 "GEODE:BORD:P2:CR STATICMAP_EVT=1,USUD"
autoassume:BORD:P2:CR 1174038081.57039 "GEODE:BORD:P2:CR SECTORMAP_EVT=1"
GEODE:BORD:P2:CR 1174038081.63359 "RadarScreenUpdate:T3:65:-15.0000028610229:215:-165.000002861023"
GEODE:BORD:P2:CR 1174038081.65594 "RadarScreenUpdate:T3:65:-15.0000028610229:215:-165.000002861023"
GEODE:BORD:P2:CR 1174038081.67828 "RadarScreenUpdate:T3:65:-15.0000028610229:215:-165.000002861023"
GEODE:BORD:P2:CO 1174038081.72107 "RadarScreenUpdate:T3:65:-15.0000028610229:215:-165.000002861023"
GEODE:BORD:P2:CO 1174038081.74345 "RadarScreenUpdate:T3:65:-15.0000028610229:215:-165.000002861023"
autoassume:BORD:P2:CO 1174038081.89161 "GEODE:BORD:P2:CO STATICMAP_EVT=1,UEST"
autoassume:BORD:P2:CO 1174038081.91844 "GEODE:BORD:P2:CO STATICMAP_EVT=1,FWST"
autoassume:BORD:P2:CO 1174038081.939 "GEODE:BORD:P2:CO STATICMAP_EVT=1,FEST"
autoassume:BORD:P2:CO 1174038081.95973 "GEODE:BORD:P2:CO SECTORMAP_EVT=1"
autoassume:BORD:P2:CO 1174038081.98045 "CDS:BORD Configuration=<T3:P2>"
autoassume:BORD:P2:CO 1174038082.0018 "ConfigurationEvent Acc=BORD List=<T3:P2>"
autoassume:BORD:P2:CO 1174038082.02259 "GEODE:BORD:P2:CO STATICMAP_EVT=1,UWST"
autoassume:BORD:P2:CO 1174038082.04386 "GEODE:BORD:P2:CO STATICMAP_EVT=1,UEST"
autoassume:BORD:P2:CO 1174038082.06445 "GEODE:BORD:P2:CO STATICMAP_EVT=1,FWST"
autoassume:BORD:P2:CO 1174038082.08578 "GEODE:BORD:P2:CO STATICMAP_EVT=1,FEST"
autoassume:BORD:P2:CO 1174038082.10646 "GEODE:BORD:P2:CO SECTORMAP_EVT=1"
PaveOrdres:bordeaux:IIPP1:PP1 1174038084.77561 "PaveOrdres:bordeaux:IIPP1:PP1 READY"
Clock 1174038098.49487 "Clock READY"
IvyMon 1174038122.06917 "Sam Ready"
lanceur 1174038122.10393 "Tcas:changeScenar bdx1"
lanceur 1174038122.1453 "FileRead Type=simu Name=/home/toccata/CRISTAL/Scenarios/bdx1.simu"
lanceur 1174038122.17558 "TcasReset"
lanceur 1174038122.17665 "Discard Flight=2262"
lanceur 1174038122.21589 "AircraftSetPosition Flight=65535 X=90.2048 Y=6.2658 Afl=350 Cfl=350 Rate=0 Heading=160 Groundspeed=450 Callsign=FCA774 Ssr=7711 Time=06:28:02 Reset=1"
lanceur 1174038122.21729 "SetAutoPilot Flight=65535 Heading=160 Altitude=35000 Speed=264.705882352941 Vz=0"
lanceur 1174038122.35593 "SetWorldCorners acc=bordeaux wp=T role=PC X1=82 Y1=625 X2=2249 Y2=-1515"
lanceur 1174038122.38503 "SetWorldCorners acc=bordeaux wp=T role=TC X1=82 Y1=625 X2=2249 Y2=-1515"
lanceur 1174038122.41031 "SetWorldCorners acc=default wp=default role=pilot1 X1=82 Y1=625 X2=2249 Y2=-1515"
lanceur 1174038122.43665 "SetWorldCorners acc=default wp=default role=pilot2 X1=82 Y1=625 X2=2249 Y2=-1515"
Rejeu 1174038125.49708 "FileReadEvent Type=REJEU Name=/home/toccata/CRISTAL/Scenarios/bdx1.txt StartTime=06:28:00 EndTime=06:48:00"
FlightDisplay:bordeaux:IIPP1:PP1 1174038125.4982 "GetDataBaseInfos MsgName=FlightDisplayIIPP1 Cond=(Sector=T3) Select=CallSign,Rvsm,Tcas,Adsb"
FlightList:bordeaux:IIPP1:PP1 1174038125.49897 "GetClockDatas"
FlightDisplay:bordeaux:IIPP1:PP1 1174038125.49974 "GetDataBaseInfos MsgName=FlightDisplayIIPP1 Cond=(Sector=--) Select=CallSign,Rvsm,Tcas,Adsb"
Rejeu 1174038125.5286 "PlnEvent Flight=868 Time=06:40:00 CallSign=EEZ2311 AircraftType=A332 Ssr=2026 Speed=470 Rfl=330 Dep=MDLR Arr=LIMC Rvsm=TRUE Tcas=TA_RA Adsb=YES List=KENUK V 05:22 330 TAKAS V 05:43 330 ALUTA V 05:45 330 MOSIS V 05:46 330 BERAD V 06:01 330 DEGEX V 06:07 330 TERPO V 06:13 330 NTS V 06:16 330 TUPAR V 06:21 330 DIDRU V 06:25 330 BEBIX V 06:32 330 ADAKO V 06:36 330 VALKU V 06:40 330 TIS V 06:44 310 BELEP V 06:47 310 MADOT V 06:48 310 MEBAK V 06:49 310 RUSIT V 06:50 300 GIPNO V 06:54 290 BALSI V 06:56 250 ROBEX V 07:00 210 BLONA V 07:01 210 TOP V 07:07 210 "
Rejeu 1174038125.54722 "TrajectoryUpdateEvent Flight=868"
Rejeu 1174038125.61409 "PlnEvent Flight=2130 Time=06:40:00 CallSign=FCA450 AircraftType=B752 Ssr=7710 Speed=461 Rfl=350 Dep=EGCC Arr=DTMB Rvsm=TRUE Tcas=TA_RA Adsb=YES List=XAMAB V 06:04 350 VEULE V 06:07 350 ROU V 06:10 350 BAMES V 06:14 350 RESMI V 06:18 350 DEKOD V 06:21 330 DISAK V 06:20 330 DEPOM V 06:26 370 DIRMO V 06:27 370 ETAMO V 06:29 370 VALKU V 06:36 370 ADATU V 06:39 370 OLRAK V 06:45 370 AMLIR V 06:48 370 FJR V 06:54 370 DIVKO V 06:59 370 TINOT V 07:03 370 BALOK V 07:06 370 LARAP V 07:11 370 NEMUR V 07:17 370 REKTO V 07:20 370 RISGA V 07:23 370 ALG V 07:25 370 "
autoassume:BORD:P2:CR 1174038125.66881 "BORD:P2:CR MODIFIER_AFFICHAGE_TRICOULEUR On=1"
autoassume:BORD:P2:CO 1174038125.66988 "BORD:P2:CO MODIFIER_AFFICHAGE_TRICOULEUR On=1"
FlightDisplay:bordeaux:IIPP1:PP1 1174038125.67056 "GetDataBaseInfos MsgName=FlightDisplayIIPP1 Cond=(Sector=T3) Select=CallSign,Rvsm,Tcas,Adsb"
RadarGL:bordeaux:IIPP1:PP1 1174038125.67135 "GetStrip MsgName=RadarGL_146 Flight=146 Sector=MI"
RadarGL:bordeaux:IIPP2:PP2 1174038125.67274 "GetStrip MsgName=RadarGL_146 Flight=146 Sector=MI"
FlightList:bordeaux:IIPP1:PP1 1174038125.67348 "GetClockDatas"
Rejeu 1174038125.67414 "TrajectoryUpdateEvent Flight=2130"
RadarGL:bordeaux:IIPP1:PP1 1174038125.67491 "GetStrip MsgName=RadarGL_193 Flight=193 Sector=O2"
Rejeu 1174038125.67557 "PlnEvent Flight=326 Time=06:40:00 CallSign=FTL171 AircraftType=F100 Ssr=2314 Speed=431 Rfl=340 Dep=LEBB Arr=LKPR Rvsm=TRUE Tcas=TA_RA Adsb=YES List=PPN V 06:13 310 LATEK V 06:19 260 OBUTO V 06:24 310 GONUP V 06:29 340 TOU V 06:32 340 GAI V 06:36 340 GONIM V 06:43 340 MEN V 06:46 340 MEZIN V 06:52 340 LATAM V 06:53 340 ETREK V 06:55 340 LTP V 07:00 340 GIPNO V 07:01 340 SOPLO V 07:03 340 OMASI V 07:05 340 MOLUS V 07:11 340 "
Rejeu 1174038125.67641 "TrajectoryUpdateEvent Flight=326"
Rejeu 1174038125.67749 "PlnEvent Flight=868 Time=06:33:19 CallSign=EEZ2311 AircraftType=A332 Ssr=2026 Speed=470 Rfl=330 Dep=MDLR Arr=LIMC Rvsm=TRUE Tcas=TA_RA Adsb=YES List=KENUK V 05:18 330 TAKAS V 05:39 330 ALUTA V 05:41 330 MOSIS V 05:42 330 BERAD V 05:57 330 DEGEX V 06:03 330 TERPO V 06:09 330 NTS V 06:12 330 TUPAR V 06:17 330 DIDRU V 06:21 330 BEBIX V 06:28 330 ADAKO V 06:32 330 VALKU V 06:36 330 TIS V 06:40 310 BELEP V 06:43 310 MADOT V 06:44 310 MEBAK V 06:45 310 RUSIT V 06:46 300 GIPNO V 06:50 290 BALSI V 06:52 250 ROBEX V 06:56 210 BLONA V 06:57 210 TOP V 07:03 210 "
RadarGL:bordeaux:IIPP1:PP1 1174038125.67846 "GetStrip MsgName=RadarGL_219 Flight=219 Sector=K2"
RadarGL:bordeaux:IIPP2:PP2 1174038125.67939 "GetStrip MsgName=RadarGL_193 Flight=193 Sector=O2"
Rejeu 1174038125.68017 "TrajectoryUpdateEvent Flight=868"
RadarGL:bordeaux:IIPP1:PP1 1174038125.73495 "GetStrip MsgName=RadarGL_242 Flight=242 Sector=EN"
RadarGL:bordeaux:IIPP2:PP2 1174038125.73601 "GetStrip MsgName=RadarGL_219 Flight=219 Sector=K2"
Rejeu 1174038125.73683 "PlnEvent Flight=395 Time=06:33:00 CallSign=PGA432 AircraftType=E145 Ssr=2313 Speed=432 Rfl=320 Dep=LPPR Arr=LSZH Rvsm=TRUE Tcas=TA_RA Adsb=YES List=PPN V 06:11 320 LATEK V 06:17 360 OBUTO V 06:21 360 GONUP V 06:26 360 TOU V 06:30 360 GAI V 06:34 360 GONIM V 06:41 360 MEN V 06:45 360 MEZIN V 06:51 360 LATAM V 06:52 360 ETREK V 06:54 360 LTP V 06:59 333 GIPNO V 07:00 310 SOPLO V 07:02 300 OMASI V 07:04 300 MOLUS V 07:10 300 "
RadarGL:bordeaux:IIPP1:PP1 1174038125.73787 "GetStrip MsgName=RadarGL_253 Flight=253 Sector=F1"
RadarGL:bordeaux:IIPP2:PP2 1174038125.73865 "GetStrip MsgName=RadarGL_242 Flight=242 Sector=EN"
Rejeu 1174038125.73963 "TrajectoryUpdateEvent Flight=395"
Rejeu 1174038125.74066 "PlnEvent Flight=1259 Time=06:33:00 CallSign=OHY271 AircraftType=A321 Ssr=6422 Speed=458 Rfl=320 Dep=LTBJ Arr=LFRS Rvsm=TRUE Tcas=TA_RA Adsb=YES List=ELB V 05:46 320 DOBIM V 05:50 320 AKUTI V 05:56 320 PIGOS V 06:06 320 BODRU V 06:14 320 KOTIT V 06:19 320 ETREK V 06:28 320 LERGA V 06:34 320 MALEB V 06:37 320 ADATU V 06:40 320 OBUBA V 06:47 320 FOUCO V 06:53 320 BOLGU V 06:57 280 ADILU V 07:02 240 MANAK V 07:03 240 TIRAV V 07:06 240 LAROK V 07:07 120 VELET V 07:11 110 ABLAN V 07:13 83 "
RadarGL:bordeaux:IIPP1:PP1 1174038125.74167 "GetStrip MsgName=RadarGL_294 Flight=294 Sector=KJ"
Rejeu 1174038125.74245 "TrajectoryUpdateEvent Flight=1259"
RadarGL:bordeaux:IIPP2:PP2 1174038125.74332 "GetStrip MsgName=RadarGL_253 Flight=253 Sector=F1"
Rejeu 1174038125.74543 "TrajectoryUpdateEvent Flight=537"
Rejeu 1174038125.74662 "TrajectoryUpdateEvent Flight=2220"
RadarGL:bordeaux:IIPP1:PP1 1174038125.82071 "GetStrip MsgName=RadarGL_308 Flight=308 Sector=F3"
RadarGL:bordeaux:IIPP2:PP2 1174038125.82167 "GetStrip MsgName=RadarGL_294 Flight=294 Sector=KJ"
Rejeu 1174038125.82244 "TrajectoryUpdateEvent Flight=9965"
RadarGL:bordeaux:IIPP1:PP1 1174038125.82352 "GetStrip MsgName=RadarGL_318 Flight=318 Sector=Y2"
RadarGL:bordeaux:IIPP2:PP2 1174038125.82443 "GetStrip MsgName=RadarGL_308 Flight=308 Sector=F3"
RadarGL:bordeaux:IIPP1:PP1 1174038125.85248 "GetStrip MsgName=RadarGL_320 Flight=320 Sector=W1"
RadarGL:bordeaux:IIPP2:PP2 1174038125.85358 "GetStrip MsgName=RadarGL_318 Flight=318 Sector=Y2"
Rejeu 1174038125.85452 "FileReadEvent Type=SIMU Name=/home/toccata/CRISTAL/Scenarios/bdx1.simu"
RadarGL:bordeaux:IIPP1:PP1 1174038125.8555 "GetStrip MsgName=RadarGL_374 Flight=374 Sector=A3"
RadarGL:bordeaux:IIPP2:PP2 1174038125.85638 "GetStrip MsgName=RadarGL_320 Flight=320 Sector=W1"
Rejeu 1174038125.85728 "DataBaseInfos FlightDisplayIIPP1 Nb=22 List=671,AF582PZ,TRUE,TA_RA,YES 493,DAL32,TRUE,TA_RA,YES 2130,FCA450,TRUE,TA_RA,YES 420,EZY5063,TRUE,TA_RA,YES 537,AF534BH,TRUE,TA_RA,YES 966,EOL610,TRUE,TA_RA,YES 2581,CSA6746,TRUE,TA_RA,YES 374,AEU241,TRUE,TA_RA,YES 466,BZ809KX,TRUE,TA_RA,YES 510,EZY3101,TRUE,TA_RA,YES 649,TRA6087,TRUE,TA_RA,YES 817,EIN54H,TRUE,TA_RA,YES 1168,DAL82,TRUE,TA_RA,YES 2262,FCA774,TRUE,TA_RA,YES 4117,AEU437,TRUE,TA_RA,YES 797,IBE3475,TRUE,TA_RA,YES 860,SSV5070,TRUE,TA_RA,YES 995,SNB469,TRUE,TA_RA,YES 2097,KLM1263,TRUE,TA_RA,YES 2220,CSA6720,TRUE,TA_RA,YES 2431,CSA6662,TRUE,TA_RA,YES 9965,TAR725,TRUE,TA_RA,YES "
RadarGL:bordeaux:IIPP1:PP1 1174038125.85837 "GetStrip MsgName=RadarGL_377 Flight=377 Sector=W2"
RadarGL:bordeaux:IIPP2:PP2 1174038125.85921 "GetStrip MsgName=RadarGL_374 Flight=374 Sector=A3"
Rejeu 1174038125.85998 "PlnEvent Flight=146 Time=06:28:00 CallSign=TAM8097 AircraftType=MD83 Ssr=7605 Speed=460 Rfl=350 Dep=LFLL Arr=LTBA Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LFLL V 06:15 1 LTPIN V 06:18 73 PENAR V 06:20 109 RISOR V 06:23 150 LAMDO V 06:24 150 GEMLA V 06:25 150 VANAS V 06:28 150 MEDAM V 06:30 150 KODOK V 06:36 150 LPG V 21:21 1 WDG V 21:22 22 LGL V 21:37 250 ROLEN V 21:39 290 PEPON V 21:42 336 KURIS V 21:51 340 TERPO V 21:54 350 ERIGA V 21:59 350 DEGIS V 22:06 350 TUROP V 22:08 350 LOTEE V 22:24 350 STG V 22:45 350 "
RadarGL:bordeaux:IIPP1:PP1 1174038125.86085 "GetStrip MsgName=RadarGL_387 Flight=387 Sector=EN"
RadarGL:bordeaux:IIPP2:PP2 1174038125.86169 "GetStrip MsgName=RadarGL_377 Flight=377 Sector=W2"
Rejeu 1174038125.86368 "LayerEvent Flight=146 Layer=F Mode=In"
RadarGL:bordeaux:IIPP1:PP1 1174038125.86493 "GetStrip MsgName=RadarGL_407 Flight=407 Sector=D3"
RadarGL:bordeaux:IIPP2:PP2 1174038125.86579 "GetStrip MsgName=RadarGL_387 Flight=387 Sector=EN"
Rejeu 1174038125.86665 "LayerEvent Flight=146 Layer=U Mode=In"
RadarGL:bordeaux:IIPP1:PP1 1174038125.86763 "GetStrip MsgName=RadarGL_420 Flight=420 Sector=T3"
Rejeu 1174038125.86854 "SectorEvent Flight=146 Sector_Out=-- Sector_In=MI"
Rejeu 1174038125.86958 "TrackMovedEvent Flight=146 CallSign=TAM8097 Ssr=7605 Sector=MI Layers=F,U X=286.98 Y=-80.89 Vx=452 Vy=-122 Afl=284 Rate=1961 Heading=105 GroundSpeed=468 Tendency=1 Time=06:28:00"
RadarGL:bordeaux:IIPP1:PP1 1174038125.87062 "GetStrip MsgName=RadarGL_432 Flight=432 Sector=XA"
Rejeu 1174038125.87139 "PlnEvent Flight=193 Time=06:28:00 CallSign=GZA5361 AircraftType=C560 Ssr=3140 Speed=401 Rfl=350 Dep=EHAM Arr=LFMD Rvsm=TRUE Tcas=TA_RA Adsb=YES List=DIK V 05:50 350 SUTAL V 05:54 350 GTQ V 05:58 350 POGOL V 06:04 350 LASAT V 06:06 350 MIRGU V 06:07 350 TIRSO V 06:09 350 ARPUS V 06:10 350 EPOXI V 06:10 350 TORPA V 06:12 350 MOROK V 06:13 350 GILIR V 06:16 350 TUROM V 06:19 350 BOLGI V 06:21 350 MILPA V 06:24 350 VANAS V 06:33 350 MEDAM V 06:35 350 VEVAR V 06:39 290 GAPDO V 06:44 290 AMGEL V 06:45 180 MIKRU V 06:46 152 NERAS V 06:51 80 "
RadarGL:bordeaux:IIPP2:PP2 1174038125.87221 "GetStrip MsgName=RadarGL_407 Flight=407 Sector=D3"
RadarGL:bordeaux:IIPP2:PP2 1174038125.87306 "GetStrip MsgName=RadarGL_420 Flight=420 Sector=T3"
RadarGL:bordeaux:IIPP1:PP1 1174038125.92043 "GetStrip MsgName=RadarGL_446 Flight=446 Sector=UJ"
RadarGL:bordeaux:IIPP2:PP2 1174038125.92141 "GetStrip MsgName=RadarGL_432 Flight=432 Sector=XA"
Rejeu 1174038125.92233 "LayerEvent Flight=193 Layer=S Mode=In"
RadarGL:bordeaux:IIPP1:PP1 1174038125.92325 "GetStrip MsgName=RadarGL_448 Flight=448 Sector=T1"
RadarGL:bordeaux:IIPP2:PP2 1174038125.92402 "GetStrip MsgName=RadarGL_446 Flight=446 Sector=UJ"
Rejeu 1174038125.92476 "SectorEvent Flight=193 Sector_Out=-- Sector_In=O2"
RadarGL:bordeaux:IIPP1:PP1 1174038125.92571 "GetStrip MsgName=RadarGL_466 Flight=466 Sector=T3"
Rejeu 1174038125.92659 "TrackMovedEvent Flight=193 CallSign=GZA5361 Ssr=3140 Sector=O2 Layers=S X=286.78 Y=-51.58 Vx=77 Vy=-438 Afl=370 Rate=0 Heading=170 GroundSpeed=445 Tendency=0 Time=06:28:00"
RadarGL:bordeaux:IIPP1:PP1 1174038125.9276 "GetStrip MsgName=RadarGL_507 Flight=507 Sector=MO"
RadarGL:bordeaux:IIPP2:PP2 1174038125.92835 "GetStrip MsgName=RadarGL_448 Flight=448 Sector=T1"
Rejeu 1174038125.9291 "PlnEvent Flight=219 Time=06:28:00 CallSign=RAE1510 AircraftType=F100 Ssr=5670 Speed=425 Rfl=350 Dep=LFLL Arr=LIEO Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LFLL V 05:52 1 LYS V 05:53 29 ROMAM V 05:59 110 LUKUM V 06:00 218 OGALO V 06:04 268 RETNO V 06:07 300 KOLON V 06:16 350 NARTI V 06:18 350 DIVUL V 06:21 350 MERLU V 06:23 350 OMEDA V 06:29 350 AJO V 06:35 310 CORSI V 06:38 190 MINKA V 06:42 190 "
RadarGL:bordeaux:IIPP1:PP1 1174038125.9548 "GetStrip MsgName=RadarGL_516 Flight=516 Sector=CT"
RadarGL:bordeaux:IIPP2:PP2 1174038125.95568 "GetStrip MsgName=RadarGL_466 Flight=466 Sector=T3"
Rejeu 1174038125.95646 "LayerEvent Flight=219 Layer=F Mode=In"
RadarGL:bordeaux:IIPP1:PP1 1174038125.95731 "GetStrip MsgName=RadarGL_537 Flight=537 Sector=T2"
RadarGL:bordeaux:IIPP2:PP2 1174038125.95832 "GetStrip MsgName=RadarGL_507 Flight=507 Sector=MO"
Rejeu 1174038125.95916 "LayerEvent Flight=219 Layer=U Mode=In"
RadarGL:bordeaux:IIPP1:PP1 1174038125.98057 "GetStrip MsgName=RadarGL_557 Flight=557 Sector=D1"
RadarGL:bordeaux:IIPP2:PP2 1174038125.98161 "GetStrip MsgName=RadarGL_516 Flight=516 Sector=CT"
Rejeu 1174038125.98248 "LayerEvent Flight=219 Layer=S Mode=In"
RadarGL:bordeaux:IIPP1:PP1 1174038125.98341 "GetStrip MsgName=RadarGL_583 Flight=583 Sector=O4"
RadarGL:bordeaux:IIPP2:PP2 1174038125.98423 "GetStrip MsgName=RadarGL_537 Flight=537 Sector=T2"
Rejeu 1174038125.98507 "SectorEvent Flight=219 Sector_Out=-- Sector_In=K2"
RadarGL:bordeaux:IIPP1:PP1 1174038125.98619 "GetStrip MsgName=RadarGL_590 Flight=590 Sector=DL"
RadarGL:bordeaux:IIPP2:PP2 1174038125.98697 "GetStrip MsgName=RadarGL_557 Flight=557 Sector=D1"
Rejeu 1174038125.98796 "TrackMovedEvent Flight=219 CallSign=RAE1510 Ssr=5670 Sector=K2 Layers=F,U,S X=358.64 Y=-247.91 Vx=253 Vy=-439 Afl=350 Rate=0 Heading=150 GroundSpeed=507 Tendency=0 Time=06:28:00"
Rejeu 1174038125.98896 "PlnEvent Flight=242 Time=06:28:00 CallSign=CFG855 AircraftType=B753 Ssr=5504 Speed=452 Rfl=320 Dep=LEPA Arr=EDLP Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LUMAS V 06:36 320 MEBEL V 06:43 320 TURIL V 06:50 320 MAXIR V 06:51 320 LUSOL V 06:54 320 BODRU V 06:58 320 OKTET V 07:01 320 IRMAR V 07:03 320 BLONA V 07:05 320 KINES V 07:08 320 VANAS V 07:09 320 MOBLO V 07:11 320 MOLUS V 07:17 320 VADEM V 07:19 320 GILIR V 07:22 320 PENDU V 07:24 340 IXILU V 07:27 340 DANAR V 07:29 340 EPL V 07:31 340 ROUSY V 07:40 340 ARCKY V 07:47 340 "
Rejeu 1174038125.98996 "LayerEvent Flight=242 Layer=U Mode=In"
RadarGL:bordeaux:IIPP1:PP1 1174038125.99092 "GetStrip MsgName=RadarGL_591 Flight=591 Sector=D1"
Rejeu 1174038125.99181 "LayerEvent Flight=242 Layer=S Mode=In"
Rejeu 1174038125.99285 "SectorEvent Flight=242 Sector_Out=-- Sector_In=EN"
RadarGL:bordeaux:IIPP1:PP1 1174038125.99393 "GetStrip MsgName=RadarGL_594 Flight=594 Sector=G2"
Rejeu 1174038125.99483 "TrackMovedEvent Flight=242 CallSign=CFG855 Ssr=5504 Sector=EN Layers=U,S X=204.36 Y=-338.17 Vx=84 Vy=403 Afl=340 Rate=0 Heading=12 GroundSpeed=412 Tendency=0 Time=06:28:00"
RadarGL:bordeaux:IIPP2:PP2 1174038125.99572 "GetStrip MsgName=RadarGL_583 Flight=583 Sector=O4"
RadarGL:bordeaux:IIPP2:PP2 1174038125.99665 "GetStrip MsgName=RadarGL_590 Flight=590 Sector=DL"
RadarGL:bordeaux:IIPP1:PP1 1174038126.04958 "GetStrip MsgName=RadarGL_598 Flight=598 Sector=M1"
RadarGL:bordeaux:IIPP2:PP2 1174038126.05056 "GetStrip MsgName=RadarGL_591 Flight=591 Sector=D1"
Rejeu 1174038126.05138 "PlnEvent Flight=253 Time=06:28:00 CallSign=VLG5040 AircraftType=A320 Ssr=5566 Speed=440 Rfl=300 Dep=LEBL Arr=LIMC Rvsm=TRUE Tcas=TA_RA Adsb=YES List=SALON V 06:15 300 LUMAS V 06:24 300 OBLAD V 06:26 310 RASPA V 06:29 300 BALOK V 06:32 300 STP V 06:41 300 RAPED V 06:43 300 PIGOS V 06:47 300 NOSTA V 06:49 260 ABN V 06:53 260 GEN V 06:58 260 "
RadarGL:bordeaux:IIPP1:PP1 1174038126.05234 "GetStrip MsgName=RadarGL_602 Flight=602 Sector=DH"
RadarGL:bordeaux:IIPP2:PP2 1174038126.0532 "GetStrip MsgName=RadarGL_594 Flight=594 Sector=G2"
RadarGL:bordeaux:IIPP1:PP1 1174038126.05423 "GetStrip MsgName=RadarGL_623 Flight=623 Sector=G3"
RadarGL:bordeaux:IIPP2:PP2 1174038126.05501 "GetStrip MsgName=RadarGL_598 Flight=598 Sector=M1"
RadarGL:bordeaux:IIPP2:PP2 1174038126.08266 "GetStrip MsgName=RadarGL_602 Flight=602 Sector=DH"
RadarGL:bordeaux:IIPP1:PP1 1174038126.0836 "GetStrip MsgName=RadarGL_657 Flight=657 Sector=F2"
RadarGL:bordeaux:IIPP2:PP2 1174038126.0844 "GetStrip MsgName=RadarGL_623 Flight=623 Sector=G3"
Rejeu 1174038126.08522 "LayerEvent Flight=253 Layer=U Mode=In"
RadarGL:bordeaux:IIPP1:PP1 1174038126.11351 "GetStrip MsgName=RadarGL_663 Flight=663 Sector=MO"
RadarGL:bordeaux:IIPP2:PP2 1174038126.11438 "GetStrip MsgName=RadarGL_657 Flight=657 Sector=F2"
Rejeu 1174038126.11513 "LayerEvent Flight=253 Layer=S Mode=In"
Rejeu 1174038126.11598 "SectorEvent Flight=253 Sector_Out=-- Sector_In=F1"
RadarGL:bordeaux:IIPP1:PP1 1174038126.14007 "GetStrip MsgName=RadarGL_667 Flight=667 Sector=P1"
RadarGL:bordeaux:IIPP2:PP2 1174038126.14108 "GetStrip MsgName=RadarGL_663 Flight=663 Sector=MO"
Rejeu 1174038126.1419 "TrackMovedEvent Flight=253 CallSign=VLG5040 Ssr=5566 Sector=F1 Layers=U,S X=228.72 Y=-287.91 Vx=267 Vy=318 Afl=340 Rate=0 Heading=40 GroundSpeed=415 Tendency=0 Time=06:28:00"
RadarGL:bordeaux:IIPP1:PP1 1174038126.14286 "GetStrip MsgName=RadarGL_675 Flight=675 Sector=KJ"
RadarGL:bordeaux:IIPP2:PP2 1174038126.14404 "GetStrip MsgName=RadarGL_667 Flight=667 Sector=P1"
Rejeu 1174038126.14492 "PlnEvent Flight=294 Time=06:28:00 CallSign=BZ699WF AircraftType=F100 Ssr=1763 Speed=420 Rfl=310 Dep=LFRS Arr=LFKJ Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LFRS V 05:09 1 VELET V 05:10 110 BOBRI V 05:14 188 LUGEN V 05:17 240 TUPAR V 05:21 270 DIDRU V 05:25 270 BEBIX V 05:33 310 ADATU V 05:41 350 LERGA V 05:48 350 LATAM V 05:51 350 KURIR V 05:55 350 RETNO V 06:00 350 KOLON V 06:09 350 ROKNO V 06:12 350 EBORA V 06:13 350 OMARD V 06:15 350 VAREK V 06:22 310 IS V 06:28 150 HORRO V 06:30 108 LKJ V 06:34 40 "
RadarGL:bordeaux:IIPP1:PP1 1174038126.14582 "GetStrip MsgName=RadarGL_688 Flight=688 Sector=AW"
RadarGL:bordeaux:IIPP2:PP2 1174038126.14658 "GetStrip MsgName=RadarGL_675 Flight=675 Sector=KJ"
Rejeu 1174038126.14731 "LayerEvent Flight=294 Layer=F Mode=In"
Rejeu 1174038126.14824 "SectorEvent Flight=294 Sector_Out=-- Sector_In=KJ"
Rejeu 1174038126.14924 "TrackMovedEvent Flight=294 CallSign=BZ699WF Ssr=1763 Sector=KJ Layers=F X=381.31 Y=-282.47 Vx=224 Vy=-170 Afl=46 Rate=-942 Heading=127 GroundSpeed=281 Tendency=-1 Time=06:28:00"
RadarGL:bordeaux:IIPP1:PP1 1174038126.15027 "GetStrip MsgName=RadarGL_689 Flight=689 Sector=ND"
Rejeu 1174038126.15114 "PlnEvent Flight=308 Time=06:28:00 CallSign=BER3999 AircraftType=B737 Ssr=5505 Speed=448 Rfl=400 Dep=LEPA Arr=EDDV Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LUMAS V 06:24 360 MEBEL V 06:32 400 TURIL V 06:39 400 MAXIR V 06:41 400 LUSOL V 06:44 400 BODRU V 06:48 400 OKTET V 06:50 400 IRMAR V 06:53 400 BLONA V 06:55 400 KINES V 06:57 400 VANAS V 06:58 400 MOBLO V 07:01 400 MOLUS V 07:07 400 SOSAL V 07:08 400 "
RadarGL:bordeaux:IIPP2:PP2 1174038126.15215 "GetStrip MsgName=RadarGL_688 Flight=688 Sector=AW"
Rejeu 1174038126.153 "LayerEvent Flight=308 Layer=S Mode=In"
RadarGL:bordeaux:IIPP1:PP1 1174038126.15386 "GetStrip MsgName=RadarGL_698 Flight=698 Sector=D1"
Rejeu 1174038126.15466 "SectorEvent Flight=308 Sector_Out=-- Sector_In=F3"
RadarGL:bordeaux:IIPP1:PP1 1174038126.18635 "GetStrip MsgName=RadarGL_703 Flight=703 Sector=B1"
RadarGL:bordeaux:IIPP2:PP2 1174038126.18723 "GetStrip MsgName=RadarGL_689 Flight=689 Sector=ND"
Rejeu 1174038126.18799 "TrackMovedEvent Flight=308 CallSign=BER3999 Ssr=5505 Sector=F3 Layers=S X=223.08 Y=-295.81 Vx=170 Vy=361 Afl=380 Rate=0 Heading=25 GroundSpeed=399 Tendency=0 Time=06:28:00"
RadarGL:bordeaux:IIPP1:PP1 1174038126.18899 "GetStrip MsgName=RadarGL_704 Flight=704 Sector=S "
RadarGL:bordeaux:IIPP2:PP2 1174038126.19 "GetStrip MsgName=RadarGL_698 Flight=698 Sector=D1"
Rejeu 1174038126.1909 "PlnEvent Flight=318 Time=06:28:00 CallSign=BPA1602 AircraftType=B763 Ssr=2363 Speed=465 Rfl=340 Dep=MUHA Arr=LIMC Rvsm=TRUE Tcas=TA_RA Adsb=YES List=ETIKI V 05:09 340 REGHI V 05:12 340 TURAN V 05:18 340 KOLEK V 05:28 340 NOVAN V 05:36 350 GODEM V 05:44 350 DILRA V 05:49 350 CNA V 05:54 350 FOUCO V 05:58 350 LMG V 06:00 350 BEBIX V 06:02 340 ADAKO V 06:05 340 VALKU V 06:09 340 TIS V 06:13 340 BELEP V 06:16 340 MADOT V 06:18 340 MEBAK V 06:18 340 RUSIT V 06:19 340 GIPNO V 06:23 340 BALSI V 06:25 310 ROBEX V 06:29 270 BLONA V 06:31 270 TOP V 06:36 270 "
Rejeu 1174038126.1918 "LayerEvent Flight=318 Layer=U Mode=In"
RadarGL:bordeaux:IIPP1:PP1 1174038126.22101 "GetStrip MsgName=RadarGL_706 Flight=706 Sector=M2"
RadarGL:bordeaux:IIPP2:PP2 1174038126.22203 "GetStrip MsgName=RadarGL_703 Flight=703 Sector=B1"
Rejeu 1174038126.22309 "SectorEvent Flight=318 Sector_Out=-- Sector_In=Y2"
RadarGL:bordeaux:IIPP1:PP1 1174038126.22412 "GetStrip MsgName=RadarGL_707 Flight=707 Sector=XA"
RadarGL:bordeaux:IIPP2:PP2 1174038126.22487 "GetStrip MsgName=RadarGL_704 Flight=704 Sector=S "
Rejeu 1174038126.22564 "TrackMovedEvent Flight=318 CallSign=BPA1602 Ssr=2363 Sector=Y2 Layers=U X=271.47 Y=-101.84 Vx=471 Vy=-146 Afl=270 Rate=0 Heading=107 GroundSpeed=493 Tendency=0 Time=06:28:00"
RadarGL:bordeaux:IIPP1:PP1 1174038126.22649 "GetStrip MsgName=RadarGL_744 Flight=744 Sector=NN"
RadarGL:bordeaux:IIPP2:PP2 1174038126.22723 "GetStrip MsgName=RadarGL_706 Flight=706 Sector=M2"
RadarGL:bordeaux:IIPP1:PP1 1174038126.26205 "GetStrip MsgName=RadarGL_755 Flight=755 Sector=Y2"
RadarGL:bordeaux:IIPP2:PP2 1174038126.26313 "GetStrip MsgName=RadarGL_707 Flight=707 Sector=XA"
Rejeu 1174038126.26396 "PlnEvent Flight=320 Time=06:28:00 CallSign=BAW2362 AircraftType=B734 Ssr=6363 Speed=426 Rfl=350 Dep=EGKK Arr=LFML Rvsm=TRUE Tcas=TA_RA Adsb=YES List=XAMAB V 05:42 270 VEULE V 05:45 290 ROU V 05:49 290 BAMES V 05:52 330 RESMI V 05:57 330 KOTAP V 06:00 330 KETEX V 06:00 330 KUSEK V 06:03 330 KOTIS V 06:07 330 KUKOR V 06:13 330 TIS V 06:19 330 LERGA V 06:23 290 LATAM V 06:26 290 MTL V 06:31 290 SAURG V 06:35 150 LOGIS V 06:37 150 MJ V 06:39 90 "
RadarGL:bordeaux:IIPP1:PP1 1174038126.26491 "GetStrip MsgName=RadarGL_762 Flight=762 Sector=RO"
RadarGL:bordeaux:IIPP2:PP2 1174038126.26572 "GetStrip MsgName=RadarGL_744 Flight=744 Sector=NN"
Rejeu 1174038126.26653 "LayerEvent Flight=320 Layer=F Mode=In"
RadarGL:bordeaux:IIPP1:PP1 1174038126.26736 "GetStrip MsgName=RadarGL_765 Flight=765 Sector=RO"
RadarGL:bordeaux:IIPP1:PP1 1174038126.29533 "GetStrip MsgName=RadarGL_780 Flight=780 Sector=F3"
RadarGL:bordeaux:IIPP2:PP2 1174038126.29636 "GetStrip MsgName=RadarGL_755 Flight=755 Sector=Y2"
Rejeu 1174038126.29727 "LayerEvent Flight=320 Layer=U Mode=In"
RadarGL:bordeaux:IIPP1:PP1 1174038126.29819 "GetStrip MsgName=RadarGL_792 Flight=792 Sector=Y1"
RadarGL:bordeaux:IIPP2:PP2 1174038126.29901 "GetStrip MsgName=RadarGL_762 Flight=762 Sector=RO"
Rejeu 1174038126.29994 "SectorEvent Flight=320 Sector_Out=-- Sector_In=W1"
RadarGL:bordeaux:IIPP1:PP1 1174038126.301 "GetStrip MsgName=RadarGL_797 Flight=797 Sector=G2"
RadarGL:bordeaux:IIPP2:PP2 1174038126.30181 "GetStrip MsgName=RadarGL_765 Flight=765 Sector=RO"
Rejeu 1174038126.3026 "TrackMovedEvent Flight=320 CallSign=BAW2362 Ssr=6363 Sector=W1 Layers=F,U X=193.08 Y=-130.23 Vx=365 Vy=-313 Afl=279 Rate=-1111 Heading=131 GroundSpeed=481 Tendency=-1 Time=06:28:00"
RadarGL:bordeaux:IIPP1:PP1 1174038126.30367 "GetStrip MsgName=RadarGL_800 Flight=800 Sector=3K"
RadarGL:bordeaux:IIPP2:PP2 1174038126.30459 "GetStrip MsgName=RadarGL_780 Flight=780 Sector=F3"
Rejeu 1174038126.30542 "PlnEvent Flight=374 Time=06:28:00 CallSign=AEU241 AircraftType=B752 Ssr=6334 Speed=468 Rfl=390 Dep=EGKK Arr=LFKC Rvsm=TRUE Tcas=TA_RA Adsb=YES List=XAMAB V 05:43 270 VEULE V 05:46 310 ROU V 05:49 310 BAMES V 05:52 390 RESMI V 05:56 390 KOTAP V 06:01 370 KETEX V 06:02 370 KUSEK V 06:05 370 KOTIS V 06:08 370 KUKOR V 06:14 370 TIS V 06:19 370 LERGA V 06:22 370 LATAM V 06:24 370 KURIR V 06:28 370 RETNO V 06:33 370 KOLON V 06:41 360 NARTI V 06:43 350 NIRDO V 06:51 190 NORKA V 06:53 190 ILROU V 06:56 40 "
RadarGL:bordeaux:IIPP2:PP2 1174038126.30642 "GetStrip MsgName=RadarGL_792 Flight=792 Sector=Y1"
Rejeu 1174038126.3072 "LayerEvent Flight=374 Layer=S Mode=In"
Rejeu 1174038126.30909 "SectorEvent Flight=374 Sector_Out=-- Sector_In=A3"
Rejeu 1174038126.31026 "TrackMovedEvent Flight=374 CallSign=AEU241 Ssr=6334 Sector=A3 Layers=S X=198.56 Y=-123.47 Vx=424 Vy=-247 Afl=370 Rate=0 Heading=120 GroundSpeed=491 Tendency=0 Time=06:28:00"
RadarGL:bordeaux:IIPP2:PP2 1174038126.31121 "GetStrip MsgName=RadarGL_797 Flight=797 Sector=G2"
Rejeu 1174038126.31224 "PlnEvent Flight=375 Time=06:28:00 CallSign=AF660KU AircraftType=A320 Ssr=3213 Speed=460 Rfl=290 Dep=LFPG Arr=LFML Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LPG V 05:38 1 WDG V 05:39 22 AELDG V 05:48 200 LALUX V 05:49 270 LATRA V 05:50 290 LAMUT V 05:58 290 LAKOB V 06:00 290 TIS V 06:07 290 LERGA V 06:11 290 LATAM V 06:13 290 MTL V 06:18 290 SAURG V 06:24 150 LOGIS V 06:25 150 MJ V 06:28 90 "
RadarGL:bordeaux:IIPP1:PP1 1174038126.36807 "GetStrip MsgName=RadarGL_811 Flight=811 Sector=F3"
RadarGL:bordeaux:IIPP2:PP2 1174038126.36914 "GetStrip MsgName=RadarGL_800 Flight=800 Sector=3K"
Rejeu 1174038126.37 "LayerEvent Flight=375 Layer=F Mode=In"
RadarGL:bordeaux:IIPP1:PP1 1174038126.37095 "GetStrip MsgName=RadarGL_812 Flight=812 Sector=AJ"
RadarGL:bordeaux:IIPP2:PP2 1174038126.372 "GetStrip MsgName=RadarGL_811 Flight=811 Sector=F3"
Rejeu 1174038126.37309 "TrackMovedEvent Flight=375 CallSign=AF660KU Ssr=3213 Sector=-- Layers=F X=227.02 Y=-194.53 Vx=97 Vy=-250 Afl=35 Rate=-1119 Heading=159 GroundSpeed=268 Tendency=-1 Time=06:28:00"
RadarGL:bordeaux:IIPP1:PP1 1174038126.37401 "GetStrip MsgName=RadarGL_819 Flight=819 Sector=UG"
Rejeu 1174038126.37482 "PlnEvent Flight=377 Time=06:28:00 CallSign=AF700YH AircraftType=A320 Ssr=3211 Speed=460 Rfl=370 Dep=LFPG Arr=LFMN Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LPG V 05:54 1 WDG V 05:55 22 AELDG V 06:04 200 LALUX V 06:05 270 LATRA V 06:06 295 LAMUT V 06:13 310 LAKOB V 06:15 310 TIS V 06:23 330 LERGA V 06:27 330 LATAM V 06:29 330 MTL V 06:34 330 GIROL V 06:39 330 MEDOK V 06:42 310 AMFOU V 06:44 262 TIPIK V 06:45 216 MUS V 06:47 150 AZR V 06:55 40 "
RadarGL:bordeaux:IIPP1:PP1 1174038126.37569 "GetStrip MsgName=RadarGL_820 Flight=820 Sector=RO"
RadarGL:bordeaux:IIPP2:PP2 1174038126.37765 "GetStrip MsgName=RadarGL_812 Flight=812 Sector=AJ"
Rejeu 1174038126.37871 "LayerEvent Flight=377 Layer=S Mode=In"
RadarGL:bordeaux:IIPP1:PP1 1174038126.37963 "GetStrip MsgName=RadarGL_822 Flight=822 Sector=Y3"
RadarGL:bordeaux:IIPP2:PP2 1174038126.38041 "GetStrip MsgName=RadarGL_819 Flight=819 Sector=UG"
Rejeu 1174038126.38117 "SectorEvent Flight=377 Sector_Out=-- Sector_In=W2"
RadarGL:bordeaux:IIPP2:PP2 1174038126.38204 "GetStrip MsgName=RadarGL_820 Flight=820 Sector=RO"
RadarGL:bordeaux:IIPP1:PP1 1174038126.43412 "GetStrip MsgName=RadarGL_825 Flight=825 Sector=NN"
RadarGL:bordeaux:IIPP1:PP1 1174038126.43739 "GetStrip MsgName=RadarGL_827 Flight=827 Sector=RO"
RadarGL:bordeaux:IIPP1:PP1 1174038126.44016 "GetStrip MsgName=RadarGL_830 Flight=830 Sector=E1"
RadarGL:bordeaux:IIPP1:PP1 1174038126.44302 "GetStrip MsgName=RadarGL_879 Flight=879 Sector=EN"
RadarGL:bordeaux:IIPP1:PP1 1174038126.44616 "GetStrip MsgName=RadarGL_889 Flight=889 Sector=RO"
RadarGL:bordeaux:IIPP1:PP1 1174038126.44904 "GetStrip MsgName=RadarGL_896 Flight=896 Sector=DH"
RadarGL:bordeaux:IIPP1:PP1 1174038126.45192 "GetStrip MsgName=RadarGL_897 Flight=897 Sector=RO"
RadarGL:bordeaux:IIPP1:PP1 1174038126.45571 "GetStrip MsgName=RadarGL_900 Flight=900 Sector=DH"
RadarGL:bordeaux:IIPP1:PP1 1174038126.45888 "GetStrip MsgName=RadarGL_926 Flight=926 Sector=XA"
RadarGL:bordeaux:IIPP1:PP1 1174038126.46182 "GetStrip MsgName=RadarGL_994 Flight=994 Sector=RO"
RadarGL:bordeaux:IIPP1:PP1 1174038126.46472 "GetStrip MsgName=RadarGL_1046 Flight=1046 Sector=VR"
RadarGL:bordeaux:IIPP1:PP1 1174038126.46777 "GetStrip MsgName=RadarGL_1146 Flight=1146 Sector=E1"
RadarGL:bordeaux:IIPP1:PP1 1174038126.47078 "GetStrip MsgName=RadarGL_1153 Flight=1153 Sector=K2"
RadarGL:bordeaux:IIPP1:PP1 1174038126.47414 "GetStrip MsgName=RadarGL_1168 Flight=1168 Sector=NN"
RadarGL:bordeaux:IIPP1:PP1 1174038126.47782 "GetStrip MsgName=RadarGL_1188 Flight=1188 Sector=M3"
RadarGL:bordeaux:IIPP1:PP1 1174038126.48114 "GetStrip MsgName=RadarGL_1256 Flight=1256 Sector=DL"
RadarGL:bordeaux:IIPP1:PP1 1174038126.48454 "GetStrip MsgName=RadarGL_1258 Flight=1258 Sector=D1"
RadarGL:bordeaux:IIPP1:PP1 1174038126.48772 "GetStrip MsgName=RadarGL_1329 Flight=1329 Sector=M2"
RadarGL:bordeaux:IIPP1:PP1 1174038126.49098 "GetStrip MsgName=RadarGL_1338 Flight=1338 Sector=B2"
RadarGL:bordeaux:IIPP1:PP1 1174038126.49402 "GetStrip MsgName=RadarGL_1362 Flight=1362 Sector=K3"
RadarGL:bordeaux:IIPP1:PP1 1174038126.4972 "GetStrip MsgName=RadarGL_1370 Flight=1370 Sector=F3"
RadarGL:bordeaux:IIPP1:PP1 1174038126.50127 "GetStrip MsgName=RadarGL_1654 Flight=1654 Sector=O4"
RadarGL:bordeaux:IIPP1:PP1 1174038126.50425 "GetStrip MsgName=RadarGL_1683 Flight=1683 Sector=F2"
RadarGL:bordeaux:IIPP1:PP1 1174038126.50746 "GetStrip MsgName=RadarGL_1707 Flight=1707 Sector=EN"
RadarGL:bordeaux:IIPP1:PP1 1174038126.51056 "GetStrip MsgName=RadarGL_1790 Flight=1790 Sector=W3"
RadarGL:bordeaux:IIPP1:PP1 1174038126.51374 "GetStrip MsgName=RadarGL_1864 Flight=1864 Sector=IG"
RadarGL:bordeaux:IIPP1:PP1 1174038126.5174 "GetStrip MsgName=RadarGL_1876 Flight=1876 Sector=VR"
RadarGL:bordeaux:IIPP1:PP1 1174038126.52209 "GetStrip MsgName=RadarGL_2097 Flight=2097 Sector=W2"
RadarGL:bordeaux:IIPP1:PP1 1174038126.52528 "GetStrip MsgName=RadarGL_2132 Flight=2132 Sector=M3"
RadarGL:bordeaux:IIPP1:PP1 1174038126.52885 "GetStrip MsgName=RadarGL_2220 Flight=2220 Sector=T3"
RadarGL:bordeaux:IIPP2:PP2 1174038126.53164 "GetStrip MsgName=RadarGL_822 Flight=822 Sector=Y3"
RadarGL:bordeaux:IIPP2:PP2 1174038126.53433 "GetStrip MsgName=RadarGL_825 Flight=825 Sector=NN"
RadarGL:bordeaux:IIPP2:PP2 1174038126.53846 "GetStrip MsgName=RadarGL_827 Flight=827 Sector=RO"
RadarGL:bordeaux:IIPP2:PP2 1174038126.54163 "GetStrip MsgName=RadarGL_830 Flight=830 Sector=E1"
RadarGL:bordeaux:IIPP2:PP2 1174038126.5453 "GetStrip MsgName=RadarGL_879 Flight=879 Sector=EN"
RadarGL:bordeaux:IIPP2:PP2 1174038126.54797 "GetStrip MsgName=RadarGL_889 Flight=889 Sector=RO"
RadarGL:bordeaux:IIPP2:PP2 1174038126.55069 "GetStrip MsgName=RadarGL_896 Flight=896 Sector=DH"
RadarGL:bordeaux:IIPP2:PP2 1174038126.55369 "GetStrip MsgName=RadarGL_897 Flight=897 Sector=RO"
RadarGL:bordeaux:IIPP2:PP2 1174038126.55708 "GetStrip MsgName=RadarGL_900 Flight=900 Sector=DH"
RadarGL:bordeaux:IIPP2:PP2 1174038126.56015 "GetStrip MsgName=RadarGL_926 Flight=926 Sector=XA"
RadarGL:bordeaux:IIPP2:PP2 1174038126.5641 "GetStrip MsgName=RadarGL_994 Flight=994 Sector=RO"
RadarGL:bordeaux:IIPP2:PP2 1174038126.56702 "GetStrip MsgName=RadarGL_1046 Flight=1046 Sector=VR"
RadarGL:bordeaux:IIPP2:PP2 1174038126.57011 "GetStrip MsgName=RadarGL_1146 Flight=1146 Sector=E1"
RadarGL:bordeaux:IIPP2:PP2 1174038126.57332 "GetStrip MsgName=RadarGL_1153 Flight=1153 Sector=K2"
RadarGL:bordeaux:IIPP2:PP2 1174038126.57612 "GetStrip MsgName=RadarGL_1168 Flight=1168 Sector=NN"
RadarGL:bordeaux:IIPP2:PP2 1174038126.57896 "GetStrip MsgName=RadarGL_1188 Flight=1188 Sector=M3"
RadarGL:bordeaux:IIPP2:PP2 1174038126.58239 "GetStrip MsgName=RadarGL_1256 Flight=1256 Sector=DL"
RadarGL:bordeaux:IIPP2:PP2 1174038126.58645 "GetStrip MsgName=RadarGL_1258 Flight=1258 Sector=D1"
RadarGL:bordeaux:IIPP2:PP2 1174038126.59012 "GetStrip MsgName=RadarGL_1329 Flight=1329 Sector=M2"
RadarGL:bordeaux:IIPP2:PP2 1174038126.59319 "GetStrip MsgName=RadarGL_1338 Flight=1338 Sector=B2"
RadarGL:bordeaux:IIPP2:PP2 1174038126.59609 "GetStrip MsgName=RadarGL_1362 Flight=1362 Sector=K3"
RadarGL:bordeaux:IIPP2:PP2 1174038126.59898 "GetStrip MsgName=RadarGL_1370 Flight=1370 Sector=F3"
RadarGL:bordeaux:IIPP2:PP2 1174038126.60231 "GetStrip MsgName=RadarGL_1654 Flight=1654 Sector=O4"
RadarGL:bordeaux:IIPP2:PP2 1174038126.60605 "GetStrip MsgName=RadarGL_1683 Flight=1683 Sector=F2"
RadarGL:bordeaux:IIPP2:PP2 1174038126.61046 "GetStrip MsgName=RadarGL_1707 Flight=1707 Sector=EN"
RadarGL:bordeaux:IIPP2:PP2 1174038126.61403 "GetStrip MsgName=RadarGL_1790 Flight=1790 Sector=W3"
RadarGL:bordeaux:IIPP2:PP2 1174038126.6172 "GetStrip MsgName=RadarGL_1864 Flight=1864 Sector=IG"
RadarGL:bordeaux:IIPP2:PP2 1174038126.62016 "GetStrip MsgName=RadarGL_1876 Flight=1876 Sector=VR"
RadarGL:bordeaux:IIPP2:PP2 1174038126.62347 "GetStrip MsgName=RadarGL_2097 Flight=2097 Sector=W2"
RadarGL:bordeaux:IIPP2:PP2 1174038126.62764 "GetStrip MsgName=RadarGL_2132 Flight=2132 Sector=M3"
RadarGL:bordeaux:IIPP2:PP2 1174038126.63183 "GetStrip MsgName=RadarGL_2220 Flight=2220 Sector=T3"
RadarGL:bordeaux:IIPP2:PP2 1174038126.63504 "GetStrip MsgName=RadarGL_2405 Flight=2405 Sector=B1"
RadarGL:bordeaux:IIPP2:PP2 1174038126.63807 "GetStrip MsgName=RadarGL_2408 Flight=2408 Sector=F2"
RadarGL:bordeaux:IIPP2:PP2 1174038126.64134 "GetStrip MsgName=RadarGL_2431 Flight=2431 Sector=G2"
RadarGL:bordeaux:IIPP2:PP2 1174038126.64458 "GetStrip MsgName=RadarGL_2581 Flight=2581 Sector=T3"
RadarGL:bordeaux:IIPP2:PP2 1174038126.64754 "GetStrip MsgName=RadarGL_2691 Flight=2691 Sector=F2"
RadarGL:bordeaux:IIPP2:PP2 1174038126.65221 "GetStrip MsgName=RadarGL_3140 Flight=3140 Sector=4K"
RadarGL:bordeaux:IIPP2:PP2 1174038126.65552 "GetStrip MsgName=RadarGL_3146 Flight=3146 Sector=F2"
RadarGL:bordeaux:IIPP2:PP2 1174038126.65856 "GetStrip MsgName=RadarGL_3198 Flight=3198 Sector=B2"
RadarGL:bordeaux:IIPP2:PP2 1174038126.6614 "GetStrip MsgName=RadarGL_3342 Flight=3342 Sector=K1"
RadarGL:bordeaux:IIPP2:PP2 1174038126.66433 "GetStrip MsgName=RadarGL_3412 Flight=3412 Sector=GV"
RadarGL:bordeaux:IIPP2:PP2 1174038126.66721 "GetStrip MsgName=RadarGL_3499 Flight=3499 Sector=F1"
RadarGL:bordeaux:IIPP2:PP2 1174038126.66997 "GetStrip MsgName=RadarGL_3557 Flight=3557 Sector=B3"
RadarGL:bordeaux:IIPP2:PP2 1174038126.67304 "GetStrip MsgName=RadarGL_3620 Flight=3620 Sector=M3"
Rejeu 1174038126.67668 "TrackMovedEvent Flight=377 CallSign=AF700YH Ssr=3211 Sector=W2 Layers=S X=165.72 Y=-97.88 Vx=368 Vy=-363 Afl=330 Rate=0 Heading=135 GroundSpeed=517 Tendency=0 Time=06:28:00"
Rejeu 1174038126.67991 "PlnEvent Flight=387 Time=06:28:00 CallSign=BER9143 AircraftType=B738 Ssr=5310 Speed=448 Rfl=400 Dep=LEPA Arr=EDDT Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LUMAS V 06:31 380 MEBEL V 06:39 400 TURIL V 06:46 400 MAXIR V 06:47 400 LUSOL V 06:50 400 BODRU V 06:54 400 OKTET V 06:57 400 IRMAR V 07:00 400 BLONA V 07:02 400 KINES V 07:04 400 VANAS V 07:05 400 MOBLO V 07:08 400 MOLUS V 07:14 400 SOSAL V 07:15 400 "
Rejeu 1174038126.68295 "LayerEvent Flight=387 Layer=S Mode=In"
Rejeu 1174038126.68568 "SectorEvent Flight=387 Sector_Out=-- Sector_In=EN"
Rejeu 1174038126.68842 "TrackMovedEvent Flight=387 CallSign=BER9143 Ssr=5310 Sector=EN Layers=S X=192.22 Y=-362.94 Vx=123 Vy=376 Afl=380 Rate=0 Heading=18 GroundSpeed=396 Tendency=0 Time=06:28:00"
Rejeu 1174038126.69138 "PlnEvent Flight=407 Time=06:28:00 CallSign=LGL931 AircraftType=B737 Ssr=5656 Speed=450 Rfl=390 Dep=ELLX Arr=DTTJ Rvsm=TRUE Tcas=TA_RA Adsb=YES List=MOSET V 05:22 110 GTQ V 05:27 190 POGOL V 05:31 190 LASAT V 05:33 290 TIRSO V 05:36 290 ARPUS V 05:37 290 EPOXI V 05:38 290 MOROK V 05:39 290 GILIR V 05:43 310 TUROM V 05:45 359 MILPA V 05:50 390 MEDAM V 06:00 390 VEVAR V 06:03 390 BARSO V 06:08 390 KOLON V 06:11 390 ROKNO V 06:13 390 EBORA V 06:14 390 OMARD V 06:17 390 VAREK V 06:23 390 OKTAV V 06:31 390 PELOS V 06:32 390 ALG V 06:36 390 "
Rejeu 1174038126.69437 "LayerEvent Flight=407 Layer=S Mode=In"
Rejeu 1174038126.69729 "SectorEvent Flight=407 Sector_Out=-- Sector_In=D3"
Rejeu 1174038126.70038 "TrackMovedEvent Flight=407 CallSign=LGL931 Ssr=5656 Sector=D3 Layers=S X=367.48 Y=-327.73 Vx=239 Vy=-406 Afl=390 Rate=0 Heading=150 GroundSpeed=471 Tendency=0 Time=06:28:00"
Rejeu 1174038126.70324 "PlnEvent Flight=412 Time=06:28:00 CallSign=VLG5326 AircraftType=A320 Ssr=5301 Speed=440 Rfl=380 Dep=LEIB Arr=LIMC Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LUMAS V 06:40 360 OBLAD V 06:42 310 RASPA V 06:45 300 BALOK V 06:48 300 STP V 06:57 300 RAPED V 06:59 300 PIGOS V 07:03 300 NOSTA V 07:05 260 ABN V 07:09 260 GEN V 07:14 260 "
Rejeu 1174038126.70592 "LayerEvent Flight=412 Layer=S Mode=In"
Rejeu 1174038126.70879 "TrackMovedEvent Flight=412 CallSign=VLG5326 Ssr=5301 Sector=-- Layers=S X=179.39 Y=-387.50 Vx=148 Vy=369 Afl=360 Rate=0 Heading=22 GroundSpeed=398 Tendency=0 Time=06:28:00"
Rejeu 1174038126.71144 "PlnEvent Flight=420 Time=06:28:00 CallSign=EZY5063 AircraftType=A319 Ssr=6327 Speed=447 Rfl=370 Dep=EGKK Arr=LFMN Rvsm=TRUE Tcas=TA_RA Adsb=YES List=XAMAB V 05:56 270 VEULE V 05:59 290 ROU V 06:03 290 BAMES V 06:06 370 RESMI V 06:11 370 KOTAP V 06:11 370 KETEX V 06:12 370 KUSEK V 06:15 370 KOTIS V 06:19 370 KUKOR V 06:24 370 TIS V 06:30 370 LERGA V 06:33 370 LATAM V 06:35 370 MTL V 06:40 360 GIROL V 06:45 350 MEDOK V 06:49 310 AMFOU V 06:50 264 TIPIK V 06:52 217 MUS V 06:53 150 AZR V 07:02 40 "
Rejeu 1174038126.71414 "LayerEvent Flight=420 Layer=S Mode=In"
Rejeu 1174038126.71704 "SectorEvent Flight=420 Sector_Out=-- Sector_In=T3"
Rejeu 1174038126.71986 "TrackMovedEvent Flight=420 CallSign=EZY5063 Ssr=6327 Sector=T3 Layers=S X=142.16 Y=-58.58 Vx=186 Vy=-468 Afl=370 Rate=0 Heading=158 GroundSpeed=504 Tendency=0 Time=06:28:00"
Rejeu 1174038126.72288 "PlnEvent Flight=432 Time=06:28:00 CallSign=ANS8175 AircraftType=CRJ2 Ssr=6736 Speed=440 Rfl=210 Dep=LFSB Arr=LEBL Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LSB V 05:37 1 LUMEL V 05:40 140 MOROK V 05:42 190 PELOK V 05:43 190 GILIR V 05:46 190 TUROM V 05:48 210 MILPA V 05:53 210 BALSI V 05:59 290 KOTIT V 06:06 290 RETNO V 06:08 290 GIROL V 06:10 290 MTG V 06:16 290 DIVKO V 06:19 290 MAMES V 06:27 270 BISBA V 06:30 270 BGR V 06:33 270 "
Rejeu 1174038126.72573 "LayerEvent Flight=432 Layer=U Mode=In"
Rejeu 1174038126.72853 "SectorEvent Flight=432 Sector_Out=-- Sector_In=XA"
Rejeu 1174038126.73129 "TrackMovedEvent Flight=432 CallSign=ANS8175 Ssr=6736 Sector=XA Layers=U X=157.09 Y=-296.77 Vx=-317 Vy=-334 Afl=212 Rate=-1020 Heading=224 GroundSpeed=460 Tendency=-1 Time=06:28:00"
Rejeu 1174038126.73411 "PlnEvent Flight=446 Time=06:28:00 CallSign=AF711HI AircraftType=A321 Ssr=6410 Speed=450 Rfl=300 Dep=LFMN Arr=LFPG Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LFMN V 05:48 1 NC V 05:53 170 OKTET V 06:02 300 GIPNO V 06:13 300 LOGNI V 06:19 280 MOKIP V 06:20 280 DJL V 06:27 280 TRO V 06:37 200 INKAK V 06:39 160 OMAKO V 06:41 160 "
Rejeu 1174038126.73672 "LayerEvent Flight=446 Layer=U Mode=In"
Rejeu 1174038126.73983 "SectorEvent Flight=446 Sector_Out=-- Sector_In=UJ"
Rejeu 1174038126.74283 "TrackMovedEvent Flight=446 CallSign=AF711HI Ssr=6410 Sector=UJ Layers=U X=181.27 Y=23.38 Vx=-229 Vy=381 Afl=280 Rate=0 Heading=329 GroundSpeed=445 Tendency=0 Time=06:28:00"
Rejeu 1174038126.74561 "PlnEvent Flight=448 Time=06:28:00 CallSign=AF688ZA AircraftType=B735 Ssr=3210 Speed=450 Rfl=270 Dep=LFPG Arr=LFMT Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LPG V 05:53 1 WDG V 05:54 23 AELDG V 06:03 200 LALUX V 06:04 270 LATRA V 06:05 290 LAMUT V 06:13 310 LAKOB V 06:15 310 KUKOR V 06:17 310 ADEKA V 06:22 310 CFA V 06:23 310 MALEB V 06:26 310 MOKDI V 06:30 310 MEN V 06:31 200 LEKLA V 06:37 200 VALAG V 06:38 120 FJR V 06:42 61 ESPIG V 06:43 40 "
Rejeu 1174038126.74893 "LayerEvent Flight=448 Layer=F Mode=In"
Rejeu 1174038126.75211 "LayerEvent Flight=448 Layer=U Mode=In"
Rejeu 1174038126.75478 "SectorEvent Flight=448 Sector_Out=-- Sector_In=T1"
Rejeu 1174038126.75731 "TrackMovedEvent Flight=448 CallSign=AF688ZA Ssr=3210 Sector=T1 Layers=F,U X=130.34 Y=-112.95 Vx=74 Vy=-467 Afl=310 Rate=0 Heading=171 GroundSpeed=473 Tendency=0 Time=06:28:00"
Rejeu 1174038126.75978 "PlnEvent Flight=466 Time=06:28:00 CallSign=BZ809KX AircraftType=F100 Ssr=3212 Speed=420 Rfl=270 Dep=LFQQ Arr=LFKB Rvsm=TRUE Tcas=TA_RA Adsb=YES List=CMB V 05:47 120 LESDO V 05:54 260 KOVIN V 05:57 290 RESMI V 06:06 290 KOTAP V 06:08 350 KETEX V 06:09 350 KUSEK V 06:12 350 KOTIS V 06:16 350 KUKOR V 06:22 350 TIS V 06:28 350 LERGA V 06:33 350 LATAM V 06:35 350 KURIR V 06:39 350 RETNO V 06:44 350 KOLON V 06:53 350 NARTI V 06:55 350 NIRDO V 07:02 300 EVIRI V 07:06 231 MILNO V 07:08 121 BTA V 07:12 40 "
Rejeu 1174038126.76285 "LayerEvent Flight=466 Layer=S Mode=In"
Rejeu 1174038126.76594 "SectorEvent Flight=466 Sector_Out=-- Sector_In=T3"
Rejeu 1174038126.7686 "TrackMovedEvent Flight=466 CallSign=BZ809KX Ssr=3212 Sector=T3 Layers=S X=159.80 Y=-61.86 Vx=282 Vy=-386 Afl=350 Rate=0 Heading=144 GroundSpeed=478 Tendency=0 Time=06:28:00"
Rejeu 1174038126.77165 "PlnEvent Flight=471 Time=06:28:00 CallSign=ANS8753 AircraftType=CRJ2 Ssr=4015 Speed=440 Rfl=330 Dep=LFMN Arr=LEMD Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LFMN V 05:52 1 RESBO V 05:57 190 EPOLO V 06:00 190 TUNEG V 06:06 281 ROTIS V 06:08 300 SOFFY V 06:10 300 DIVKO V 06:12 330 MAMES V 06:20 330 BISBA V 06:22 330 BGR V 06:25 330 "
Rejeu 1174038126.77428 "LayerEvent Flight=471 Layer=S Mode=In"
Rejeu 1174038126.77694 "TrackMovedEvent Flight=471 CallSign=ANS8753 Ssr=4015 Sector=-- Layers=S X=168.66 Y=-287.17 Vx=-404 Vy=-149 Afl=330 Rate=0 Heading=250 GroundSpeed=431 Tendency=0 Time=06:28:00"
Rejeu 1174038126.77946 "PlnEvent Flight=507 Time=06:28:00 CallSign=AF006JS AircraftType=A319 Ssr=3223 Speed=490 Rfl=290 Dep=LFPO Arr=LFML Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LPO V 05:49 1 WPO V 05:50 39 LALUX V 05:54 210 LATRA V 05:55 260 LAMUT V 06:02 290 LAKOB V 06:04 290 TIS V 06:11 290 LERGA V 06:18 290 LATAM V 06:20 290 MTL V 06:25 290 SAURG V 06:31 150 LOGIS V 06:32 150 MJ V 06:35 90 "
Rejeu 1174038126.78218 "LayerEvent Flight=507 Layer=F Mode=In"
Rejeu 1174038126.78524 "SectorEvent Flight=507 Sector_Out=-- Sector_In=MO"
Rejeu 1174038126.78835 "TrackMovedEvent Flight=507 CallSign=AF006JS Ssr=3223 Sector=MO Layers=F X=215.13 Y=-166.38 Vx=183 Vy=-408 Afl=167 Rate=-3550 Heading=156 GroundSpeed=447 Tendency=-1 Time=06:28:00"
Rejeu 1174038126.79117 "PlnEvent Flight=516 Time=06:28:00 CallSign=EZY4331 AircraftType=A319 Ssr=4050 Speed=460 Rfl=380 Dep=LIMC Arr=LEMG Rvsm=TRUE Tcas=TA_RA Adsb=YES List=NEDED V 05:56 290 VAMTU V 06:00 290 KOLON V 06:05 300 GANGU V 06:11 380 PADKO V 06:15 380 DIVKO V 06:18 380 MAMES V 06:26 380 BISBA V 06:28 380 BGR V 06:31 380 "
Rejeu 1174038126.79378 "LayerEvent Flight=516 Layer=S Mode=In"
Rejeu 1174038126.79635 "SectorEvent Flight=516 Sector_Out=-- Sector_In=CT"
Rejeu 1174038126.79921 "TrackMovedEvent Flight=516 CallSign=EZY4331 Ssr=4050 Sector=CT Layers=S X=167.17 Y=-286.41 Vx=-331 Vy=-338 Afl=370 Rate=0 Heading=224 GroundSpeed=473 Tendency=0 Time=06:28:00"
Rejeu 1174038126.80207 "PlnEvent Flight=537 Time=06:28:00 CallSign=AF534BH AircraftType=A320 Ssr=3226 Speed=450 Rfl=350 Dep=LFPO Arr=LFKF Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LPO V 06:06 1 WPO V 06:08 43 LALUX V 06:13 210 LATRA V 06:14 260 LAMUT V 06:22 310 LAKOB V 06:24 310 TIS V 06:32 350 LERGA V 06:36 330 LATAM V 06:39 330 KURIR V 06:43 330 RETNO V 06:47 330 KOLON V 06:56 330 ROKNO V 06:58 330 EBORA V 06:59 330 OMARD V 07:02 330 VAREK V 07:08 310 AJO V 07:13 150 FGI V 07:16 46 "
Rejeu 1174038126.80475 "LayerEvent Flight=537 Layer=S Mode=In"
Rejeu 1174038126.80746 "SectorEvent Flight=537 Sector_Out=-- Sector_In=T2"
Rejeu 1174038126.81034 "TrackMovedEvent Flight=537 CallSign=AF534BH Ssr=3226 Sector=T2 Layers=S X=135.66 Y=-33.89 Vx=170 Vy=-493 Afl=322 Rate=1425 Heading=161 GroundSpeed=521 Tendency=1 Time=06:28:00"
Rejeu 1174038126.813 "PlnEvent Flight=557 Time=06:28:00 CallSign=ACL670 AircraftType=MD82 Ssr=4051 Speed=438 Rfl=330 Dep=LIPX Arr=LEPA Rvsm=TRUE Tcas=TA_RA Adsb=YES List=IXITO V 05:58 330 TALEP V 06:03 290 SODRI V 06:07 330 ABRON V 06:10 330 BALEN V 06:30 330 MAXOS V 06:37 246 RIXOT V 06:38 230 CDP V 06:48 230 "
Rejeu 1174038126.81597 "LayerEvent Flight=557 Layer=U Mode=In"
Rejeu 1174038126.81888 "LayerEvent Flight=557 Layer=S Mode=In"
Rejeu 1174038126.82171 "SectorEvent Flight=557 Sector_Out=-- Sector_In=D1"
Rejeu 1174038126.82443 "TrackMovedEvent Flight=557 CallSign=ACL670 Ssr=4051 Sector=D1 Layers=U,S X=256.16 Y=-345.50 Vx=-322 Vy=-360 Afl=330 Rate=0 Heading=222 GroundSpeed=483 Tendency=0 Time=06:28:00"
Rejeu 1174038126.82729 "PlnEvent Flight=583 Time=06:28:00 CallSign=IVE201A AircraftType=F900 Ssr=1003 Speed=460 Rfl=340 Dep=LETO Arr=EDDI Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LARDA V 05:36 340 LATEK V 05:43 380 OBUTO V 05:47 380 GONUP V 05:52 380 TOU V 05:55 380 GAI V 05:59 380 GONIM V 06:06 380 MEN V 06:10 380 MEZIN V 06:16 380 LATAM V 06:16 380 ETREK V 06:19 380 LTP V 06:23 380 GIPNO V 06:24 380 SOPLO V 06:26 380 OMASI V 06:28 380 MOLUS V 06:34 380 "
Rejeu 1174038126.83021 "LayerEvent Flight=583 Layer=S Mode=In"
Rejeu 1174038126.8329 "SectorEvent Flight=583 Sector_Out=-- Sector_In=O4"
Rejeu 1174038126.83581 "TrackMovedEvent Flight=583 CallSign=IVE201A Ssr=1003 Sector=O4 Layers=S X=237.64 Y=-74.06 Vx=390 Vy=233 Afl=380 Rate=0 Heading=59 GroundSpeed=454 Tendency=0 Time=06:28:00"
Rejeu 1174038126.83844 "PlnEvent Flight=590 Time=06:28:00 CallSign=ADH8146 AircraftType=B734 Ssr=4055 Speed=435 Rfl=330 Dep=LIRF Arr=LEIB Rvsm=TRUE Tcas=TA_RA Adsb=YES List=ALG V 06:11 330 GOMAX V 06:13 330 DORAD V 06:16 310 MORSS V 06:34 310 MHN V 06:37 310 "
Rejeu 1174038126.84101 "LayerEvent Flight=590 Layer=U Mode=In"
Rejeu 1174038126.84397 "SectorEvent Flight=590 Sector_Out=-- Sector_In=DL"
Rejeu 1174038126.84692 "TrackMovedEvent Flight=590 CallSign=ADH8146 Ssr=4055 Sector=DL Layers=U X=251.13 Y=-406.30 Vx=-454 Vy=-145 Afl=310 Rate=0 Heading=252 GroundSpeed=477 Tendency=0 Time=06:28:00"
Rejeu 1174038126.8505 "PlnEvent Flight=591 Time=06:28:00 CallSign=ADH8600 AircraftType=B734 Ssr=4053 Speed=446 Rfl=230 Dep=LIRF Arr=LEPA Rvsm=TRUE Tcas=TA_RA Adsb=YES List=ALG V 06:10 230 GOMAX V 06:12 230 DORAD V 06:15 350 RIPAL V 06:31 350 MORSS V 06:32 350 MHN V 06:35 230 "
Rejeu 1174038126.85356 "LayerEvent Flight=591 Layer=U Mode=In"
Rejeu 1174038126.85689 "LayerEvent Flight=591 Layer=S Mode=In"
Rejeu 1174038126.8596 "SectorEvent Flight=591 Sector_Out=-- Sector_In=D1"
Rejeu 1174038126.86255 "TrackMovedEvent Flight=591 CallSign=ADH8600 Ssr=4053 Sector=D1 Layers=U,S X=250.55 Y=-396.98 Vx=-448 Vy=-140 Afl=323 Rate=-1976 Heading=253 GroundSpeed=469 Tendency=-1 Time=06:28:00"
Rejeu 1174038126.86532 "PlnEvent Flight=594 Time=06:28:00 CallSign=KAJ7166 AircraftType=B733 Ssr=6420 Speed=430 Rfl=340 Dep=DTTJ Arr=LFPO Rvsm=TRUE Tcas=TA_RA Adsb=YES List=RAMEN V 05:25 340 CORSI V 05:38 340 AJO V 05:41 340 OMEDA V 05:48 340 MERLU V 05:56 340 DIVUL V 05:58 340 PIGOS V 06:01 340 BARSO V 06:07 340 OKTET V 06:11 340 GIPNO V 06:23 340 BULOL V 06:29 320 ARDOL V 06:35 320 CHABY V 06:45 280 OKRIX V 06:48 200 MOLEK V 06:55 90 PO V 07:03 40 "
Rejeu 1174038126.86841 "LayerEvent Flight=594 Layer=U Mode=In"
Rejeu 1174038126.87138 "LayerEvent Flight=594 Layer=S Mode=In"
Rejeu 1174038126.87425 "SectorEvent Flight=594 Sector_Out=-- Sector_In=G2"
Rejeu 1174038126.87747 "TrackMovedEvent Flight=594 CallSign=KAJ7166 Ssr=6420 Sector=G2 Layers=U,S X=224.06 Y=-56.44 Vx=-230 Vy=330 Afl=320 Rate=0 Heading=325 GroundSpeed=402 Tendency=0 Time=06:28:00"
Rejeu 1174038126.88041 "PlnEvent Flight=598 Time=06:28:00 CallSign=ISG2370 AircraftType=B462 Ssr=4046 Speed=370 Rfl=260 Dep=LIPX Arr=LEIB Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LAGEN V 05:53 260 VAMTU V 05:59 270 KOLON V 06:05 270 GANGU V 06:12 270 PADKO V 06:18 270 DIVKO V 06:22 270 MAMES V 06:32 270 PIVUS V 06:35 270 VERSO V 06:42 270 "
Rejeu 1174038126.88321 "LayerEvent Flight=598 Layer=U Mode=In"
Rejeu 1174038126.88596 "SectorEvent Flight=598 Sector_Out=-- Sector_In=M1"
Rejeu 1174038126.889 "TrackMovedEvent Flight=598 CallSign=ISG2370 Ssr=4046 Sector=M1 Layers=U X=180.02 Y=-280.94 Vx=-219 Vy=-370 Afl=269 Rate=0 Heading=211 GroundSpeed=430 Tendency=0 Time=06:28:00"
Rejeu 1174038126.89196 "PlnEvent Flight=602 Time=06:28:00 CallSign=TAR7436 AircraftType=A320 Ssr=6426 Speed=450 Rfl=340 Dep=DTTJ Arr=LFBD Rvsm=TRUE Tcas=TA_RA Adsb=YES List=SARDI V 06:02 340 TABOT V 06:07 340 ETOIL V 06:15 340 BALEN V 06:31 340 OBLAD V 06:39 340 SOSUR V 06:44 340 DIVKO V 06:49 340 NIVET V 06:54 340 BOLSA V 06:58 340 LAPRO V 07:01 340 LOMRA V 07:06 340 TOU V 07:10 340 AGN V 07:13 310 SECHE V 07:19 255 MIRBA V 07:21 120 LIBRU V 07:25 40 "
Rejeu 1174038126.89526 "LayerEvent Flight=602 Layer=S Mode=In"
Rejeu 1174038126.89802 "SectorEvent Flight=602 Sector_Out=-- Sector_In=DH"
Rejeu 1174038126.90084 "TrackMovedEvent Flight=602 CallSign=TAR7436 Ssr=6426 Sector=DH Layers=S X=284.92 Y=-349.30 Vx=-236 Vy=324 Afl=340 Rate=0 Heading=324 GroundSpeed=401 Tendency=0 Time=06:28:00"
Rejeu 1174038126.9035 "PlnEvent Flight=623 Time=06:28:00 CallSign=KAJ7530 AircraftType=B733 Ssr=6421 Speed=430 Rfl=340 Dep=DTMB Arr=LFPO Rvsm=TRUE Tcas=TA_RA Adsb=YES List=CAR V 05:22 340 CORSI V 05:40 360 AJO V 05:43 360 OMEDA V 05:50 360 MERLU V 05:59 360 PIGOS V 06:05 360 BARSO V 06:11 360 OKTET V 06:15 360 GIPNO V 06:27 360 BULOL V 06:31 320 ARDOL V 06:37 320 CHABY V 06:47 280 OKRIX V 06:50 200 MOLEK V 06:56 90 PO V 07:04 40 "
Rejeu 1174038126.90646 "LayerEvent Flight=623 Layer=U Mode=In"
Rejeu 1174038126.90932 "LayerEvent Flight=623 Layer=S Mode=In"
Rejeu 1174038126.91211 "SectorEvent Flight=623 Sector_Out=-- Sector_In=G3"
Rejeu 1174038126.91482 "TrackMovedEvent Flight=623 CallSign=KAJ7530 Ssr=6421 Sector=G3 Layers=U,S X=236.33 Y=-73.61 Vx=-221 Vy=317 Afl=359 Rate=0 Heading=325 GroundSpeed=386 Tendency=0 Time=06:28:00"
Rejeu 1174038126.91816 "PlnEvent Flight=657 Time=06:28:00 CallSign=TAR4010 AircraftType=A320 Ssr=4754 Speed=450 Rfl=340 Dep=DTTJ Arr=LFLL Rvsm=TRUE Tcas=TA_RA Adsb=YES List=SARDI V 05:48 340 TABOT V 05:53 340 ETOIL V 06:01 340 BALEN V 06:15 340 OBLAD V 06:24 340 SOSUR V 06:29 340 SOFFY V 06:33 340 MRM V 06:37 340 MTL V 06:47 200 KURIR V 06:49 200 AMONI V 06:51 190 ROLIR V 06:51 120 ARBON V 06:52 120 LLL V 07:01 40 "
Rejeu 1174038126.92103 "LayerEvent Flight=657 Layer=S Mode=In"
Rejeu 1174038126.92413 "SectorEvent Flight=657 Sector_Out=-- Sector_In=F2"
Rejeu 1174038126.92707 "TrackMovedEvent Flight=657 CallSign=TAR4010 Ssr=4754 Sector=F2 Layers=S X=249.70 Y=-261.45 Vx=-127 Vy=388 Afl=340 Rate=0 Heading=342 GroundSpeed=408 Tendency=0 Time=06:28:00"
Rejeu 1174038126.92972 "PlnEvent Flight=663 Time=06:28:00 CallSign=AF673KB AircraftType=A320 Ssr=7302 Speed=450 Rfl=300 Dep=LFML Arr=LFPG Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LFML V 06:16 1 SEBRA V 06:19 90 AVN V 06:24 190 MTL V 06:29 272 ETREK V 06:34 300 RUSIT V 06:39 340 BULOL V 06:42 340 LOGNI V 06:43 340 MOKIP V 06:45 340 DJL V 06:52 340 TRO V 07:02 200 INKAK V 07:04 160 OMAKO V 07:07 160 "
Rejeu 1174038126.93238 "LayerEvent Flight=663 Layer=U Mode=In"
Rejeu 1174038126.93515 "LayerEvent Flight=663 Layer=S Mode=In"
Rejeu 1174038126.93911 "SectorEvent Flight=663 Sector_Out=-- Sector_In=MO"
Rejeu 1174038126.94233 "TrackMovedEvent Flight=663 CallSign=AF673KB Ssr=7302 Sector=MO Layers=U,S X=196.27 Y=-154.66 Vx=-142 Vy=352 Afl=244 Rate=628 Heading=338 GroundSpeed=380 Tendency=1 Time=06:28:00"
Rejeu 1174038126.9453 "PlnEvent Flight=667 Time=06:28:00 CallSign=AF202TC AircraftType=A319 Ssr=3227 Speed=490 Rfl=370 Dep=LFPO Arr=LFMN Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LPO V 06:09 1 WPO V 06:10 39 LALUX V 06:16 210 LATRA V 06:18 260 LAMUT V 06:25 260 LAKOB V 06:26 310 TIS V 06:34 330 LERGA V 06:39 330 LATAM V 06:41 330 MTL V 06:46 330 GIROL V 06:50 330 MEDOK V 06:53 310 AMFOU V 06:55 259 TIPIK V 06:56 215 MUS V 06:58 150 AZR V 07:06 40 "
Rejeu 1174038126.94813 "LayerEvent Flight=667 Layer=U Mode=In"
Rejeu 1174038126.95099 "LayerEvent Flight=667 Layer=S Mode=In"
Rejeu 1174038126.95389 "SectorEvent Flight=667 Sector_Out=-- Sector_In=P1"
Rejeu 1174038126.95881 "TrackMovedEvent Flight=667 CallSign=AF202TC Ssr=3227 Sector=P1 Layers=U,S X=126.42 Y=-6.39 Vx=174 Vy=-497 Afl=330 Rate=0 Heading=161 GroundSpeed=527 Tendency=0 Time=06:28:00"
Rejeu 1174038126.9619 "PlnEvent Flight=675 Time=06:28:00 CallSign=CC101GM AircraftType=AT72 Ssr=0642 Speed=270 Rfl=130 Dep=LFMN Arr=LFKJ Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LFMN V 06:10 1 VAREK V 06:29 130 IS V 06:37 81 LKJ V 06:40 40 "
Rejeu 1174038126.96415 "LayerEvent Flight=675 Layer=F Mode=In"
Rejeu 1174038126.96638 "SectorEvent Flight=675 Sector_Out=-- Sector_In=KJ"
Rejeu 1174038126.96868 "TrackMovedEvent Flight=675 CallSign=CC101GM Ssr=0642 Sector=KJ Layers=F X=355.17 Y=-244.88 Vx=170 Vy=-231 Afl=130 Rate=0 Heading=144 GroundSpeed=287 Tendency=0 Time=06:28:00"
Rejeu 1174038126.9709 "PlnEvent Flight=680 Time=06:28:00 CallSign=ONG001 AircraftType=SBR1 Ssr=4040 Speed=442 Rfl=240 Dep=LFMN Arr=LSGG Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LFMN V 06:03 1 NC V 06:06 170 BARSO V 06:11 200 IRMAR V 06:16 240 KINES V 06:21 240 ROCCA V 06:24 240 "
Rejeu 1174038126.97319 "LayerEvent Flight=680 Layer=U Mode=In"
Rejeu 1174038126.97544 "TrackMovedEvent Flight=680 CallSign=ONG001 Ssr=4040 Sector=-- Layers=U X=281.89 Y=-73.70 Vx=-105 Vy=391 Afl=203 Rate=-1123 Heading=345 GroundSpeed=405 Tendency=-1 Time=06:28:00"
Rejeu 1174038126.97845 "PlnEvent Flight=688 Time=06:28:00 CallSign=N224MV AircraftType=SR22 Ssr=2311 Speed=175 Rfl=150 Dep=LFDH Arr=LIPM Rvsm=TRUE Tcas=TA_RA Adsb=YES List=AUCHE V 06:11 1 TOU V 06:23 90 FINOT V 06:32 90 KORAB V 06:41 110 AFRIC V 06:43 110 BRUSC V 06:45 110 FJR V 07:01 110 VARES V 07:05 110 BADET V 07:08 110 RHONE V 07:12 110 MTG V 07:15 110 MJ V 07:17 110 ABLAK V 07:20 110 MOTIM V 07:22 110 GILON V 07:28 110 TIMTA V 07:30 110 RAPED V 07:38 110 DEROG V 07:44 110 PIGOS V 07:46 110 MIKRU V 07:49 110 USANO V 07:51 110 BASIP V 07:56 110 ABN V 08:00 110 "
Rejeu 1174038126.98124 "LayerEvent Flight=688 Layer=F Mode=In"
Rejeu 1174038126.98341 "SectorEvent Flight=688 Sector_Out=-- Sector_In=AW"
Rejeu 1174038126.98589 "TrackMovedEvent Flight=688 CallSign=N224MV Ssr=2311 Sector=AW Layers=F X=69.80 Y=-198.41 Vx=185 Vy=-3 Afl=94 Rate=397 Heading=91 GroundSpeed=185 Tendency=1 Time=06:28:00"
Rejeu 1174038126.98853 "PlnEvent Flight=689 Time=06:28:00 CallSign=BAW341 AircraftType=B752 Ssr=6754 Speed=480 Rfl=380 Dep=LFMN Arr=EGLL Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LFMN V 06:25 1 NC V 06:28 170 OKTET V 06:36 300 GIPNO V 06:46 300 BULOL V 06:56 380 ARDOL V 07:02 380 CHABY V 07:11 360 LAULY V 07:14 360 BRY V 07:17 360 CLM V 07:20 360 UTELA V 07:21 360 KOPOR V 07:27 360 NITAR V 07:30 360 ABUDA V 07:33 360 DIMAL V 07:37 360 ALESO V 07:37 360 "
Rejeu 1174038126.99118 "LayerEvent Flight=689 Layer=F Mode=In"
Rejeu 1174038126.99329 "LayerEvent Flight=689 Layer=U Mode=In"
Rejeu 1174038126.99539 "SectorEvent Flight=689 Sector_Out=-- Sector_In=ND"
Rejeu 1174038126.99787 "TrackMovedEvent Flight=689 CallSign=BAW341 Ssr=6754 Sector=ND Layers=F,U X=319.91 Y=-189.52 Vx=169 Vy=-184 Afl=40 Rate=2812 Heading=137 GroundSpeed=250 Tendency=1 Time=06:28:00"
Rejeu 1174038127.00031 "PlnEvent Flight=698 Time=06:28:00 CallSign=ACL770 AircraftType=MD82 Ssr=4047 Speed=439 Rfl=330 Dep=LIME Arr=LEPA Rvsm=TRUE Tcas=TA_RA Adsb=YES List=IXITO V 05:53 330 TALEP V 05:58 290 SODRI V 06:02 330 ABRON V 06:05 330 BALEN V 06:25 330 MAXOS V 06:32 246 RIXOT V 06:33 230 CDP V 06:43 230 "
Rejeu 1174038127.00269 "LayerEvent Flight=698 Layer=U Mode=In"
Rejeu 1174038127.00574 "SectorEvent Flight=698 Sector_Out=-- Sector_In=D1"
Rejeu 1174038127.00826 "TrackMovedEvent Flight=698 CallSign=ACL770 Ssr=4047 Sector=D1 Layers=U X=233.13 Y=-371.20 Vx=-318 Vy=-341 Afl=251 Rate=-1347 Heading=223 GroundSpeed=466 Tendency=-1 Time=06:28:00"
Rejeu 1174038127.01045 "PlnEvent Flight=703 Time=06:28:00 CallSign=AF203GP AircraftType=A320 Ssr=6424 Speed=460 Rfl=280 Dep=LFMN Arr=LFPO Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LFMN V 06:18 1 NC V 06:21 170 OKTET V 06:29 280 GIPNO V 06:40 280 BULOL V 06:52 280 ARDOL V 06:58 280 CHABY V 07:07 280 OKRIX V 07:10 200 MOLEK V 07:15 90 PO V 07:23 40 "
Rejeu 1174038127.01309 "LayerEvent Flight=703 Layer=F Mode=In"
Rejeu 1174038127.01576 "LayerEvent Flight=703 Layer=U Mode=In"
Rejeu 1174038127.01819 "SectorEvent Flight=703 Sector_Out=-- Sector_In=B1"
Rejeu 1174038127.02044 "TrackMovedEvent Flight=703 CallSign=AF203GP Ssr=6424 Sector=B1 Layers=F,U X=325.02 Y=-180.52 Vx=-115 Vy=271 Afl=110 Rate=1832 Heading=337 GroundSpeed=294 Tendency=1 Time=06:28:00"
Rejeu 1174038127.02274 "PlnEvent Flight=704 Time=06:28:00 CallSign=AF675SW AircraftType=E145 Ssr=7305 Speed=430 Rfl=240 Dep=LFLC Arr=LFPG Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LFLC V 06:16 1 ROMGI V 06:21 140 MOU V 06:26 180 PIXIS V 06:28 180 AVLON V 06:33 240 TRO V 06:39 200 INKAK V 06:41 160 OMAKO V 06:48 160 "
Rejeu 1174038127.02521 "LayerEvent Flight=704 Layer=F Mode=In"
Rejeu 1174038127.02765 "LayerEvent Flight=704 Layer=U Mode=In"
Rejeu 1174038127.03006 "SectorEvent Flight=704 Sector_Out=-- Sector_In=S"
Rejeu 1174038127.03269 "TrackMovedEvent Flight=704 CallSign=AF675SW Ssr=7305 Sector=S  Layers=F,U X=151.00 Y=-2.91 Vx=37 Vy=397 Afl=240 Rate=0 Heading=5 GroundSpeed=399 Tendency=0 Time=06:28:00"
Rejeu 1174038127.03523 "PlnEvent Flight=706 Time=06:28:00 CallSign=TAR7508 AircraftType=A320 Ssr=6425 Speed=450 Rfl=340 Dep=DTMB Arr=LFBD Rvsm=TRUE Tcas=TA_RA Adsb=YES List=RAMEN V 05:48 340 ALG V 05:57 340 RISGA V 05:59 340 REKTO V 06:02 340 NEMUR V 06:05 340 LARAP V 06:13 340 BALOK V 06:18 340 TINOT V 06:22 340 DIVKO V 06:26 340 FJR V 06:35 340 NEKTA V 06:41 340 DEGOL V 06:42 340 AMOLO V 06:43 340 GAI V 06:48 340 AGN V 06:53 310 SECHE V 06:57 255 MIRBA V 07:00 120 LIBRU V 07:04 40 "
Rejeu 1174038127.03764 "LayerEvent Flight=706 Layer=S Mode=In"
Rejeu 1174038127.04027 "SectorEvent Flight=706 Sector_Out=-- Sector_In=M2"
Rejeu 1174038127.04287 "TrackMovedEvent Flight=706 CallSign=TAR7508 Ssr=6425 Sector=M2 Layers=S X=204.64 Y=-243.28 Vx=-367 Vy=181 Afl=340 Rate=0 Heading=296 GroundSpeed=409 Tendency=0 Time=06:28:00"
Rejeu 1174038127.04523 "PlnEvent Flight=707 Time=06:28:00 CallSign=ANS8623 AircraftType=CRJ2 Ssr=4045 Speed=440 Rfl=290 Dep=LIPE Arr=LEBL Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LAGEN V 05:53 270 VAMTU V 05:58 290 KOLON V 06:03 290 GANGU V 06:09 290 PADKO V 06:14 290 DIVKO V 06:17 290 MAMES V 06:25 270 BISBA V 06:28 270 BGR V 06:31 270 "
Rejeu 1174038127.04786 "LayerEvent Flight=707 Layer=U Mode=In"
Rejeu 1174038127.05056 "SectorEvent Flight=707 Sector_Out=-- Sector_In=XA"
Rejeu 1174038127.05299 "TrackMovedEvent Flight=707 CallSign=ANS8623 Ssr=4045 Sector=XA Layers=U X=166.64 Y=-288.27 Vx=-369 Vy=-264 Afl=244 Rate=-1297 Heading=234 GroundSpeed=454 Tendency=-1 Time=06:28:00"
Rejeu 1174038127.05573 "PlnEvent Flight=744 Time=06:28:00 CallSign=CC201WB AircraftType=AT72 Ssr=0644 Speed=270 Rfl=130 Dep=LFMN Arr=LFKB Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LFMN V 06:14 1 MERLV V 06:25 130 SODRI V 06:30 130 NORKA V 06:33 130 BTA V 06:41 130 "
Rejeu 1174038127.05822 "LayerEvent Flight=744 Layer=F Mode=In"
Rejeu 1174038127.06047 "SectorEvent Flight=744 Sector_Out=-- Sector_In=NN"
Rejeu 1174038127.06307 "TrackMovedEvent Flight=744 CallSign=CC201WB Ssr=0644 Sector=NN Layers=F X=344.13 Y=-206.27 Vx=226 Vy=-109 Afl=130 Rate=0 Heading=116 GroundSpeed=251 Tendency=0 Time=06:28:00"
Rejeu 1174038127.06577 "PlnEvent Flight=755 Time=06:28:00 CallSign=KAJ7122 AircraftType=B733 Ssr=6423 Speed=430 Rfl=340 Dep=DTMB Arr=LFPO Rvsm=TRUE Tcas=TA_RA Adsb=YES List=CAR V 05:35 340 CORSI V 05:53 320 AJO V 05:56 320 OMEDA V 06:02 320 MERLU V 06:10 320 PIGOS V 06:15 320 BARSO V 06:21 320 OKTET V 06:25 320 GIPNO V 06:36 320 BULOL V 06:43 320 ARDOL V 06:49 320 CHABY V 06:59 280 OKRIX V 07:02 200 MOLEK V 07:09 90 PO V 07:17 40 "
Rejeu 1174038127.06805 "LayerEvent Flight=755 Layer=U Mode=In"
Rejeu 1174038127.07025 "LayerEvent Flight=755 Layer=S Mode=In"
Rejeu 1174038127.0727 "SectorEvent Flight=755 Sector_Out=-- Sector_In=Y2"
Rejeu 1174038127.07519 "TrackMovedEvent Flight=755 CallSign=KAJ7122 Ssr=6423 Sector=Y2 Layers=U,S X=281.41 Y=-127.19 Vx=-231 Vy=305 Afl=320 Rate=0 Heading=323 GroundSpeed=383 Tendency=0 Time=06:28:00"
Rejeu 1174038127.07793 "PlnEvent Flight=762 Time=06:28:00 CallSign=RYR4822 AircraftType=B738 Ssr=5675 Speed=460 Rfl=290 Dep=EDFH Arr=LIEA Rvsm=TRUE Tcas=TA_RA Adsb=YES List=BADLI V 05:27 290 PABLA V 05:30 290 HERBI V 05:32 290 NATOR V 05:35 290 TITIX V 05:37 290 TRA V 05:39 290 GERSA V 05:44 290 ODINA V 05:51 290 SRN V 05:55 290 VOG V 06:01 290 GEN V 06:05 290 UNITA V 06:09 290 OLETI V 06:10 290 TORTU V 06:13 250 AKUTI V 06:14 250 SUDAS V 06:16 250 AJO V 06:25 250 CORSI V 06:28 190 MINKA V 06:32 190 "
Rejeu 1174038127.08059 "LayerEvent Flight=762 Layer=F Mode=In"
Rejeu 1174038127.08282 "LayerEvent Flight=762 Layer=U Mode=In"
Rejeu 1174038127.08514 "SectorEvent Flight=762 Sector_Out=-- Sector_In=RO"
Rejeu 1174038127.08776 "TrackMovedEvent Flight=762 CallSign=RYR4822 Ssr=5675 Sector=RO Layers=F,U X=395.39 Y=-299.11 Vx=69 Vy=-398 Afl=201 Rate=-2156 Heading=170 GroundSpeed=404 Tendency=-1 Time=06:28:00"
Rejeu 1174038127.09014 "PlnEvent Flight=765 Time=06:28:00 CallSign=TAR4072 AircraftType=A320 Ssr=7306 Speed=450 Rfl=340 Dep=DTTJ Arr=LFPO Rvsm=TRUE Tcas=TA_RA Adsb=YES List=RAMEN V 06:15 340 CORSI V 06:28 340 AJO V 06:31 340 OMEDA V 06:36 340 MERLU V 06:44 340 DIVUL V 06:47 340 PIGOS V 06:50 340 BARSO V 06:56 340 OKTET V 06:59 340 GIPNO V 07:11 340 BULOL V 07:15 320 ARDOL V 07:21 320 CHABY V 07:30 280 OKRIX V 07:33 200 MOLEK V 07:38 90 PO V 07:46 40 "
Rejeu 1174038127.09272 "LayerEvent Flight=765 Layer=S Mode=In"
Rejeu 1174038127.09526 "SectorEvent Flight=765 Sector_Out=-- Sector_In=RO"
Rejeu 1174038127.0975 "TrackMovedEvent Flight=765 CallSign=TAR4072 Ssr=7306 Sector=RO Layers=S X=378.28 Y=-321.08 Vx=-160 Vy=372 Afl=339 Rate=0 Heading=337 GroundSpeed=405 Tendency=0 Time=06:28:00"
Rejeu 1174038127.10009 "PlnEvent Flight=777 Time=06:28:00 CallSign=ISS292 AircraftType=MD82 Ssr=5663 Speed=440 Rfl=310 Dep=LIMF Arr=LIEE Rvsm=TRUE Tcas=TA_RA Adsb=YES List=IXITO V 06:31 310 UNITA V 06:33 310 OLETI V 06:34 310 TORTU V 06:37 290 AKUTI V 06:38 290 SUDAS V 06:40 290 AJO V 06:49 250 CORSI V 06:53 250 MINKA V 06:57 250 "
Rejeu 1174038127.10272 "LayerEvent Flight=777 Layer=U Mode=In"
Rejeu 1174038127.10505 "TrackMovedEvent Flight=777 CallSign=ISS292 Ssr=5663 Sector=-- Layers=U X=359.38 Y=-145.41 Vx=105 Vy=-463 Afl=240 Rate=1799 Heading=167 GroundSpeed=475 Tendency=1 Time=06:28:00"
Rejeu 1174038127.10737 "PlnEvent Flight=780 Time=06:28:00 CallSign=CFG423 AircraftType=A320 Ssr=5305 Speed=452 Rfl=360 Dep=LEPA Arr=EDDG Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LUMAS V 06:24 360 MEBEL V 06:31 360 TURIL V 06:38 360 MAXIR V 06:39 360 LUSOL V 06:42 360 BODRU V 06:46 360 OKTET V 06:49 360 IRMAR V 06:51 360 BLONA V 06:53 360 KINES V 06:56 360 VANAS V 06:57 360 MOBLO V 06:59 360 MOLUS V 07:05 360 VADEM V 07:07 360 GILIR V 07:10 360 PENDU V 07:12 360 IXILU V 07:15 360 DANAR V 07:17 360 EPL V 07:19 360 ROUSY V 07:29 360 ARCKY V 07:35 360 "
Rejeu 1174038127.10982 "LayerEvent Flight=780 Layer=S Mode=In"
Rejeu 1174038127.11221 "SectorEvent Flight=780 Sector_Out=-- Sector_In=F3"
Rejeu 1174038127.11457 "TrackMovedEvent Flight=780 CallSign=CFG423 Ssr=5305 Sector=F3 Layers=S X=239.94 Y=-247.58 Vx=154 Vy=378 Afl=360 Rate=0 Heading=22 GroundSpeed=408 Tendency=0 Time=06:28:00"
Rejeu 1174038127.11687 "PlnEvent Flight=792 Time=06:28:00 CallSign=EAB515 AircraftType=C550 Ssr=7511 Speed=376 Rfl=260 Dep=LSZB Arr=LFML Rvsm=TRUE Tcas=TA_RA Adsb=YES List=MILPA V 06:19 260 GIRKU V 06:21 260 BALSI V 06:26 290 KURIR V 06:36 290 MTL V 06:38 290 SAURG V 06:44 150 LOGIS V 06:46 150 MJ V 06:49 90 "
Rejeu 1174038127.11943 "LayerEvent Flight=792 Layer=U Mode=In"
Rejeu 1174038127.1222 "SectorEvent Flight=792 Sector_Out=-- Sector_In=Y1"
Rejeu 1174038127.12514 "TrackMovedEvent Flight=792 CallSign=EAB515 Ssr=7511 Sector=Y1 Layers=U X=238.59 Y=-83.94 Vx=-196 Vy=-312 Afl=290 Rate=0 Heading=212 GroundSpeed=368 Tendency=0 Time=06:28:00"
Rejeu 1174038127.12757 "PlnEvent Flight=797 Time=06:28:00 CallSign=IBE3475 AircraftType=MD87 Ssr=3015 Speed=438 Rfl=350 Dep=LSZH Arr=LEMD Rvsm=TRUE Tcas=TA_RA Adsb=YES List=MILPA V 06:24 350 NINTU V 06:26 330 MEBAK V 06:32 350 LERGA V 06:39 350 MOKDI V 06:43 350 OLRAK V 06:45 350 NARAK V 06:53 350 AGN V 06:59 350 TBO V 07:05 350 SOVAR V 07:10 350 SURCO V 07:14 350 ZAR V 07:20 350 "
Rejeu 1174038127.12989 "LayerEvent Flight=797 Layer=S Mode=In"
Rejeu 1174038127.13239 "SectorEvent Flight=797 Sector_Out=-- Sector_In=G2"
Rejeu 1174038127.13478 "TrackMovedEvent Flight=797 CallSign=IBE3475 Ssr=3015 Sector=G2 Layers=S X=223.61 Y=-46.25 Vx=-380 Vy=-200 Afl=344 Rate=993 Heading=242 GroundSpeed=429 Tendency=1 Time=06:28:00"
Rejeu 1174038127.13757 "PlnEvent Flight=800 Time=06:28:00 CallSign=ISS8230 AircraftType=B734 Ssr=5673 Speed=443 Rfl=250 Dep=EPWA Arr=LEPA Rvsm=TRUE Tcas=TA_RA Adsb=YES List=TGO V 06:08 350 NATOR V 06:14 350 OLBEN V 06:22 350 NEMOS V 06:28 350 MILPA V 06:36 350 GIRKU V 06:38 350 BALSI V 06:42 350 KOTIT V 06:49 350 RETNO V 06:51 350 GIROL V 06:53 350 MTG V 06:59 350 DIVKO V 07:02 350 MAMES V 07:10 350 PIVUS V 07:13 350 VERSO V 07:19 350 GEN V 23:45 250 UNITA V 23:49 250 TORTU V 23:53 290 AKUTI V 23:54 290 SUDAS V 23:56 290 AJO V 24:05 290 CORSI V 24:08 190 MINKA V 24:12 190 "
Rejeu 1174038127.14036 "LayerEvent Flight=800 Layer=S Mode=In"
Rejeu 1174038127.14265 "SectorEvent Flight=800 Sector_Out=-- Sector_In=3K"
Rejeu 1174038127.1453 "TrackMovedEvent Flight=800 CallSign=ISS8230 Ssr=5673 Sector=3K Layers=S X=294.06 Y=16.95 Vx=-273 Vy=-354 Afl=351 Rate=0 Heading=218 GroundSpeed=447 Tendency=0 Time=06:28:00"
Rejeu 1174038127.14775 "PlnEvent Flight=811 Time=06:28:00 CallSign=BER4117 AircraftType=B738 Ssr=5332 Speed=448 Rfl=400 Dep=LEPA Arr=EDDG Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LUMAS V 06:27 400 MEBEL V 06:35 400 TURIL V 06:42 400 MAXIR V 06:43 400 LUSOL V 06:46 400 BODRU V 06:50 400 OKTET V 06:52 400 IRMAR V 06:55 400 BLONA V 06:57 400 KINES V 06:59 400 VANAS V 07:00 400 MOBLO V 07:03 400 MOLUS V 07:08 400 VADEM V 07:11 400 GILIR V 07:14 400 PENDU V 07:16 380 IXILU V 07:19 380 DANAR V 07:21 380 EPL V 07:23 380 ROUSY V 07:33 380 DIK V 07:36 380 "
Rejeu 1174038127.15012 "LayerEvent Flight=811 Layer=S Mode=In"
Rejeu 1174038127.15276 "SectorEvent Flight=811 Sector_Out=-- Sector_In=F3"
Rejeu 1174038127.1553 "TrackMovedEvent Flight=811 CallSign=BER4117 Ssr=5332 Sector=F3 Layers=S X=229.39 Y=-273.14 Vx=190 Vy=359 Afl=380 Rate=0 Heading=28 GroundSpeed=406 Tendency=0 Time=06:28:00"
Rejeu 1174038127.15798 "PlnEvent Flight=812 Time=06:28:00 CallSign=BZ668JQ AircraftType=F100 Ssr=7311 Speed=420 Rfl=310 Dep=LFKJ Arr=LFRQ Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LFKJ V 06:23 1 URATO V 06:33 140 LONSU V 06:41 283 MERLU V 06:44 300 PIGOS V 06:50 320 BODRU V 06:59 320 KOTIT V 07:04 320 ETREK V 07:12 320 LERGA V 07:18 320 MALEB V 07:22 280 ADATU V 07:23 280 OBUBA V 07:31 280 FOUCO V 07:38 280 BOLGU V 07:42 280 ADILU V 07:47 280 MANAK V 07:49 280 TIRAV V 07:53 280 MOKOR V 07:58 280 DEGEX V 08:09 206 POMTA V 08:13 122 ROSPO V 08:15 80 RQ V 08:18 40 "
Rejeu 1174038127.16038 "LayerEvent Flight=812 Layer=F Mode=In"
Rejeu 1174038127.16272 "LayerEvent Flight=812 Layer=U Mode=In"
Rejeu 1174038127.16489 "LayerEvent Flight=812 Layer=S Mode=In"
Rejeu 1174038127.16743 "SectorEvent Flight=812 Sector_Out=-- Sector_In=AJ"
Rejeu 1174038127.17015 "TrackMovedEvent Flight=812 CallSign=BZ668JQ Ssr=7311 Sector=AJ Layers=F,U,S X=384.03 Y=-294.92 Vx=-262 Vy=-67 Afl=57 Rate=2578 Heading=256 GroundSpeed=270 Tendency=1 Time=06:28:00"
Rejeu 1174038127.17311 "PlnEvent Flight=815 Time=06:28:00 CallSign=EDW270 AircraftType=A320 Ssr=3005 Speed=454 Rfl=370 Dep=LSZH Arr=LEPA Rvsm=TRUE Tcas=TA_RA Adsb=YES List=MILPA V 06:34 350 BALSI V 06:40 330 KOTIT V 06:47 370 RETNO V 06:48 370 GIROL V 06:51 370 MTG V 06:56 370 DIVKO V 06:59 370 MAMES V 07:07 370 PIVUS V 07:09 370 VERSO V 07:15 370 "
Rejeu 1174038127.17556 "LayerEvent Flight=815 Layer=U Mode=In"
Rejeu 1174038127.17803 "LayerEvent Flight=815 Layer=S Mode=In"
Rejeu 1174038127.18074 "TrackMovedEvent Flight=815 CallSign=EDW270 Ssr=3005 Sector=-- Layers=U,S X=277.78 Y=-10.02 Vx=-337 Vy=-349 Afl=257 Rate=1345 Heading=224 GroundSpeed=485 Tendency=1 Time=06:28:00"
Rejeu 1174038127.18343 "PlnEvent Flight=819 Time=06:28:00 CallSign=AEE4152 AircraftType=B734 Ssr=5752 Speed=436 Rfl=280 Dep=LGAV Arr=LFLL Rvsm=TRUE Tcas=TA_RA Adsb=YES List=TOP V 06:25 280 KINES V 06:33 280 GIGUS V 06:34 200 AMVAR V 06:37 190 OSMAS V 06:40 150 GOMET V 06:40 150 LLL V 06:50 40 "
Rejeu 1174038127.18616 "LayerEvent Flight=819 Layer=F Mode=In"
Rejeu 1174038127.18865 "LayerEvent Flight=819 Layer=U Mode=In"
Rejeu 1174038127.1913 "SectorEvent Flight=819 Sector_Out=-- Sector_In=UG"
Rejeu 1174038127.19387 "TrackMovedEvent Flight=819 CallSign=AEE4152 Ssr=5752 Sector=UG Layers=F,U X=308.00 Y=-96.91 Vx=-369 Vy=154 Afl=290 Rate=-1909 Heading=293 GroundSpeed=400 Tendency=-1 Time=06:28:00"
Rejeu 1174038127.19661 "PlnEvent Flight=820 Time=06:28:00 CallSign=TAR8006 AircraftType=B733 Ssr=5662 Speed=430 Rfl=320 Dep=DTMB Arr=LIME Rvsm=TRUE Tcas=TA_RA Adsb=YES List=CAR V 06:19 320 CORSI V 06:37 340 AJO V 06:40 340 VICCO V 06:44 340 AKUTI V 06:54 260 TORTU V 06:55 260 UNITA V 07:00 260 GEN V 07:04 260 "
Rejeu 1174038127.19933 "LayerEvent Flight=820 Layer=S Mode=In"
Rejeu 1174038127.20194 "SectorEvent Flight=820 Sector_Out=-- Sector_In=RO"
Rejeu 1174038127.20437 "TrackMovedEvent Flight=820 CallSign=TAR8006 Ssr=5662 Sector=RO Layers=S X=424.41 Y=-379.88 Vx=-138 Vy=393 Afl=360 Rate=0 Heading=341 GroundSpeed=417 Tendency=0 Time=06:28:00"
Rejeu 1174038127.20678 "PlnEvent Flight=822 Time=06:28:00 CallSign=EZY4515 AircraftType=A319 Ssr=3106 Speed=447 Rfl=380 Dep=EDDB Arr=LEVC Rvsm=TRUE Tcas=TA_RA Adsb=YES List=TGO V 05:55 380 NATOR V 06:01 380 OLBEN V 06:09 380 NEMOS V 06:14 380 MILPA V 06:22 380 GIRKU V 06:24 380 BALSI V 06:28 370 KOTIT V 06:35 370 RETNO V 06:36 370 GIROL V 06:39 370 MTG V 06:45 370 DIVKO V 06:48 370 MAMES V 06:55 370 BISBA V 06:58 370 "
Rejeu 1174038127.2092 "LayerEvent Flight=822 Layer=S Mode=In"
Rejeu 1174038127.21167 "SectorEvent Flight=822 Sector_Out=-- Sector_In=Y3"
Rejeu 1174038127.21429 "TrackMovedEvent Flight=822 CallSign=EZY4515 Ssr=3106 Sector=Y3 Layers=S X=256.91 Y=-82.52 Vx=-104 Vy=-462 Afl=370 Rate=0 Heading=193 GroundSpeed=474 Tendency=0 Time=06:28:00"
Rejeu 1174038127.21742 "PlnEvent Flight=825 Time=06:28:00 CallSign=ESK5CP AircraftType=B737 Ssr=0646 Speed=440 Rfl=390 Dep=LKPR Arr=LFMN Rvsm=TRUE Tcas=TA_RA Adsb=YES List=ENOBA V 06:24 170 BORDI V 06:27 150 AMGEL V 06:30 150 MIKRU V 06:32 146 NERAS V 06:36 80 AZR V 06:44 40 "
Rejeu 1174038127.22003 "LayerEvent Flight=825 Layer=F Mode=In"
Rejeu 1174038127.22242 "SectorEvent Flight=825 Sector_Out=-- Sector_In=NN"
Rejeu 1174038127.22533 "TrackMovedEvent Flight=825 CallSign=ESK5CP Ssr=0646 Sector=NN Layers=F X=332.59 Y=-171.11 Vx=-108 Vy=-342 Afl=145 Rate=-1008 Heading=198 GroundSpeed=359 Tendency=-1 Time=06:28:00"
Rejeu 1174038127.22826 "PlnEvent Flight=827 Time=06:28:00 CallSign=TAR7492 AircraftType=A306 Ssr=7307 Speed=465 Rfl=340 Dep=DTTA Arr=LFPO Rvsm=TRUE Tcas=TA_RA Adsb=YES List=CAR V 06:14 340 CORSI V 06:30 340 AJO V 06:33 340 OMEDA V 06:40 340 MERLU V 06:48 340 PIGOS V 06:53 340 BARSO V 06:58 340 OKTET V 07:01 340 GIPNO V 07:12 340 BULOL V 07:19 320 ARDOL V 07:25 320 CHABY V 07:34 280 OKRIX V 07:37 200 MOLEK V 07:42 90 PO V 07:50 40 "
Rejeu 1174038127.23074 "LayerEvent Flight=827 Layer=S Mode=In"
Rejeu 1174038127.23325 "SectorEvent Flight=827 Sector_Out=-- Sector_In=RO"
Rejeu 1174038127.23584 "TrackMovedEvent Flight=827 CallSign=TAR7492 Ssr=7307 Sector=RO Layers=S X=410.53 Y=-339.70 Vx=-143 Vy=418 Afl=340 Rate=0 Heading=341 GroundSpeed=442 Tendency=0 Time=06:28:00"
Rejeu 1174038127.2382 "PlnEvent Flight=830 Time=06:28:00 CallSign=SNG960 AircraftType=B737 Ssr=5524 Speed=444 Rfl=380 Dep=GOOY Arr=LIMC Rvsm=TRUE Tcas=TA_RA Adsb=YES List=SALON V 05:53 380 LUMAS V 06:02 380 OBLAD V 06:04 310 RASPA V 06:07 300 BALOK V 06:10 300 STP V 06:19 300 RAPED V 06:21 300 PIGOS V 06:24 300 NOSTA V 06:27 260 ABN V 06:30 260 GEN V 06:36 260 "
Rejeu 1174038127.24071 "LayerEvent Flight=830 Layer=U Mode=In"
Rejeu 1174038127.24306 "LayerEvent Flight=830 Layer=S Mode=In"
Rejeu 1174038127.24547 "SectorEvent Flight=830 Sector_Out=-- Sector_In=E1"
Rejeu 1174038127.24829 "TrackMovedEvent Flight=830 CallSign=SNG960 Ssr=5524 Sector=E1 Layers=U,S X=323.88 Y=-187.64 Vx=309 Vy=282 Afl=345 Rate=-955 Heading=48 GroundSpeed=418 Tendency=-1 Time=06:28:00"
Rejeu 1174038127.25069 "PlnEvent Flight=857 Time=06:28:00 CallSign=BER2565 AircraftType=B738 Ssr=5512 Speed=455 Rfl=340 Dep=LEMH Arr=EDDK Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LUMAS V 06:38 340 MEBEL V 06:45 340 TURIL V 06:52 340 MAXIR V 06:54 340 LUSOL V 06:56 340 BODRU V 07:00 340 OKTET V 07:03 340 IRMAR V 07:06 340 BLONA V 07:07 340 KINES V 07:10 340 VANAS V 07:11 340 MOBLO V 07:14 340 MOLUS V 07:19 340 VADEM V 07:21 340 GILIR V 07:24 340 PENDU V 07:26 380 IXILU V 07:29 380 DANAR V 07:31 351 EPL V 07:33 300 ROUSY V 07:42 300 ARCKY V 07:49 300 "
Rejeu 1174038127.25304 "LayerEvent Flight=857 Layer=U Mode=In"
Rejeu 1174038127.25574 "LayerEvent Flight=857 Layer=S Mode=In"
Rejeu 1174038127.25833 "TrackMovedEvent Flight=857 CallSign=BER2565 Ssr=5512 Sector=-- Layers=U,S X=204.84 Y=-350.47 Vx=53 Vy=409 Afl=287 Rate=1043 Heading=7 GroundSpeed=412 Tendency=1 Time=06:28:00"
Rejeu 1174038127.26087 "PlnEvent Flight=873 Time=06:28:00 CallSign=BER439V AircraftType=B737 Ssr=5307 Speed=448 Rfl=400 Dep=LEPA Arr=EDDG Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LUMAS V 06:46 400 MEBEL V 06:54 400 TURIL V 07:01 400 MAXIR V 07:02 400 LUSOL V 07:05 400 BODRU V 07:09 400 OKTET V 07:11 400 IRMAR V 07:14 400 BLONA V 07:16 400 KINES V 07:18 400 VANAS V 07:19 400 MOBLO V 07:22 400 MOLUS V 07:27 400 VADEM V 07:30 400 GILIR V 07:33 400 PENDU V 07:35 400 IXILU V 07:38 400 DANAR V 07:40 400 EPL V 07:42 400 ROUSY V 07:52 400 DIK V 07:55 400 "
Rejeu 1174038127.2637 "LayerEvent Flight=873 Layer=S Mode=In"
Rejeu 1174038127.26591 "TrackMovedEvent Flight=873 CallSign=BER439V Ssr=5307 Sector=-- Layers=S X=187.09 Y=-394.39 Vx=104 Vy=371 Afl=373 Rate=1392 Heading=16 GroundSpeed=385 Tendency=1 Time=06:28:00"
Rejeu 1174038127.26792 "PlnEvent Flight=879 Time=06:28:00 CallSign=BER9235 AircraftType=B738 Ssr=5334 Speed=452 Rfl=380 Dep=LEPA Arr=EDDH Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LUMAS V 06:35 380 MEBEL V 06:42 380 TURIL V 06:49 380 MAXIR V 06:50 380 LUSOL V 06:53 380 BODRU V 06:57 380 OKTET V 07:00 380 IRMAR V 07:02 380 BLONA V 07:04 380 KINES V 07:07 380 VANAS V 07:08 380 MOBLO V 07:10 380 MOLUS V 07:16 380 VADEM V 07:18 380 GILIR V 07:21 380 PENDU V 07:23 380 IXILU V 07:26 380 DANAR V 07:28 380 EPL V 07:30 380 ROUSY V 07:40 380 ARCKY V 07:46 380 "
Rejeu 1174038127.27011 "LayerEvent Flight=879 Layer=S Mode=In"
Rejeu 1174038127.27209 "SectorEvent Flight=879 Sector_Out=-- Sector_In=EN"
Rejeu 1174038127.274 "TrackMovedEvent Flight=879 CallSign=BER9235 Ssr=5334 Sector=EN Layers=S X=210.00 Y=-310.33 Vx=64 Vy=389 Afl=380 Rate=0 Heading=9 GroundSpeed=394 Tendency=0 Time=06:28:00"
Rejeu 1174038127.27569 "PlnEvent Flight=889 Time=06:28:00 CallSign=IBE4623 AircraftType=A320 Ssr=4063 Speed=450 Rfl=350 Dep=LIRF Arr=LEBL Rvsm=TRUE Tcas=TA_RA Adsb=YES List=ALG V 06:31 350 GOBIS V 06:36 330 LUTTA V 06:41 330 BALEN V 06:46 330 MUREN V 06:53 290 CHELY V 06:54 290 "
Rejeu 1174038127.27732 "LayerEvent Flight=889 Layer=S Mode=In"
Rejeu 1174038127.27929 "SectorEvent Flight=889 Sector_Out=-- Sector_In=RO"
Rejeu 1174038127.2809 "TrackMovedEvent Flight=889 CallSign=IBE4623 Ssr=4063 Sector=RO Layers=S X=399.17 Y=-347.97 Vx=-425 Vy=-87 Afl=330 Rate=0 Heading=258 GroundSpeed=434 Tendency=0 Time=06:28:00"
Rejeu 1174038127.28265 "PlnEvent Flight=896 Time=06:28:00 CallSign=JET390 AircraftType=A320 Ssr=4061 Speed=465 Rfl=320 Dep=LICJ Arr=LEBL Rvsm=TRUE Tcas=TA_RA Adsb=YES List=ALG V 06:17 320 GOBIS V 06:22 350 LUTTA V 06:27 350 BALEN V 06:32 350 MUREN V 06:38 290 CHELY V 06:39 290 "
Rejeu 1174038127.2842 "LayerEvent Flight=896 Layer=U Mode=In"
Rejeu 1174038127.28575 "LayerEvent Flight=896 Layer=S Mode=In"
Rejeu 1174038127.28728 "SectorEvent Flight=896 Sector_Out=-- Sector_In=DH"
Rejeu 1174038127.28884 "TrackMovedEvent Flight=896 CallSign=JET390 Ssr=4061 Sector=DH Layers=U,S X=294.55 Y=-357.28 Vx=-459 Vy=35 Afl=350 Rate=0 Heading=274 GroundSpeed=460 Tendency=0 Time=06:28:00"
Rejeu 1174038127.29059 "PlnEvent Flight=897 Time=06:28:00 CallSign=ESK6DR AircraftType=B735 Ssr=7251 Speed=440 Rfl=360 Dep=LZIB Arr=LEBL Rvsm=TRUE Tcas=TA_RA Adsb=YES List=NEDED V 06:28 360 VAMTU V 06:33 370 KOLON V 06:38 370 GANGU V 06:44 360 PADKO V 06:49 350 DIVKO V 06:52 350 MAMES V 07:00 270 BISBA V 07:03 270 BGR V 07:05 270 "
Rejeu 1174038127.29231 "LayerEvent Flight=897 Layer=S Mode=In"
Rejeu 1174038127.29393 "SectorEvent Flight=897 Sector_Out=-- Sector_In=RO"
Rejeu 1174038127.29559 "TrackMovedEvent Flight=897 CallSign=ESK6DR Ssr=7251 Sector=RO Layers=S X=345.45 Y=-125.81 Vx=-227 Vy=-418 Afl=370 Rate=0 Heading=209 GroundSpeed=476 Tendency=0 Time=06:28:00"
Rejeu 1174038127.29721 "PlnEvent Flight=900 Time=06:28:00 CallSign=AHR626 AircraftType=MD82 Ssr=4057 Speed=440 Rfl=370 Dep=LIPK Arr=LEIB Rvsm=TRUE Tcas=TA_RA Adsb=YES List=IXITO V 06:09 370 TALEP V 06:14 290 SODRI V 06:18 350 ABRON V 06:21 350 BALEN V 06:41 350 SORAS V 06:48 350 POS V 06:59 350 "
Rejeu 1174038127.29884 "LayerEvent Flight=900 Layer=S Mode=In"
Rejeu 1174038127.30045 "SectorEvent Flight=900 Sector_Out=-- Sector_In=DH"
Rejeu 1174038127.30206 "TrackMovedEvent Flight=900 CallSign=AHR626 Ssr=4057 Sector=DH Layers=S X=312.00 Y=-284.80 Vx=-301 Vy=-396 Afl=350 Rate=0 Heading=217 GroundSpeed=497 Tendency=0 Time=06:28:00"
Rejeu 1174038127.30368 "PlnEvent Flight=926 Time=06:28:00 CallSign=ABP550 AircraftType=C550 Ssr=5573 Speed=389 Rfl=280 Dep=LEBL Arr=LFMN Rvsm=TRUE Tcas=TA_RA Adsb=YES List=DIBER V 06:30 280 SOSUR V 06:36 280 SOFFY V 06:40 280 PADKO V 06:43 280 MOTIM V 06:46 212 ABILI V 06:47 190 AMFOU V 06:48 190 TIPIK V 06:50 190 MUS V 06:52 150 AZR V 07:01 40 "
Rejeu 1174038127.30573 "LayerEvent Flight=926 Layer=U Mode=In"
Rejeu 1174038127.30766 "SectorEvent Flight=926 Sector_Out=-- Sector_In=XA"
Rejeu 1174038127.30918 "TrackMovedEvent Flight=926 CallSign=ABP550 Ssr=5573 Sector=XA Layers=U X=191.14 Y=-293.97 Vx=312 Vy=190 Afl=274 Rate=475 Heading=59 GroundSpeed=365 Tendency=1 Time=06:28:00"
Rejeu 1174038127.31107 "PlnEvent Flight=994 Time=06:28:00 CallSign=TAR6204 AircraftType=A320 Ssr=7312 Speed=450 Rfl=340 Dep=DTMB Arr=LFRS Rvsm=TRUE Tcas=TA_RA Adsb=YES List=RAMEN V 06:28 340 ALG V 06:37 340 RISGA V 06:39 340 REKTO V 06:42 340 NEMUR V 06:45 340 LARAP V 06:53 340 BALOK V 06:58 340 TINOT V 07:02 340 DIVKO V 07:06 340 FJR V 07:15 340 NEKTA V 07:20 340 DEGOL V 07:21 360 AMOLO V 07:22 360 GAI V 07:28 360 LACOU V 07:36 360 SECHE V 07:38 360 VELIN V 07:43 350 CNA V 07:50 320 ADILU V 07:55 280 MANAK V 07:53 240 TIRAV V 07:57 240 LAROK V 07:58 120 VELET V 08:02 110 ABLAN V 08:04 85 "
Rejeu 1174038127.31265 "LayerEvent Flight=994 Layer=S Mode=In"
Rejeu 1174038127.31474 "SectorEvent Flight=994 Sector_Out=-- Sector_In=RO"
Rejeu 1174038127.31676 "TrackMovedEvent Flight=994 CallSign=TAR6204 Ssr=7312 Sector=RO Layers=S X=409.98 Y=-413.03 Vx=-227 Vy=355 Afl=340 Rate=0 Heading=327 GroundSpeed=421 Tendency=0 Time=06:28:00"
Rejeu 1174038127.31826 "PlnEvent Flight=1046 Time=06:28:00 CallSign=ISS2147 AircraftType=A319 Ssr=4044 Speed=450 Rfl=390 Dep=LIRQ Arr=LEIB Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LAGEN V 05:51 300 VAMTU V 05:56 290 KOLON V 06:01 300 GANGU V 06:07 390 PADKO V 06:11 390 DIVKO V 06:15 390 MAMES V 06:23 390 PIVUS V 06:25 390 VERSO V 06:31 390 "
Rejeu 1174038127.31978 "LayerEvent Flight=1046 Layer=S Mode=In"
Rejeu 1174038127.32129 "SectorEvent Flight=1046 Sector_Out=-- Sector_In=VR"
Rejeu 1174038127.32334 "TrackMovedEvent Flight=1046 CallSign=ISS2147 Ssr=4044 Sector=VR Layers=S X=172.48 Y=-338.63 Vx=-107 Vy=-492 Afl=370 Rate=0 Heading=192 GroundSpeed=504 Tendency=0 Time=06:28:00"
Rejeu 1174038127.32485 "PlnEvent Flight=1146 Time=06:28:00 CallSign=AZA05U AircraftType=A321 Ssr=5554 Speed=465 Rfl=300 Dep=LEBL Arr=LIMC Rvsm=TRUE Tcas=TA_RA Adsb=YES List=SALON V 06:01 300 LUMAS V 06:09 300 OBLAD V 06:11 310 RASPA V 06:14 300 BALOK V 06:17 300 STP V 06:25 300 RAPED V 06:27 300 PIGOS V 06:30 300 NOSTA V 06:33 260 ABN V 06:36 260 GEN V 06:42 260 "
Rejeu 1174038127.32658 "LayerEvent Flight=1146 Layer=U Mode=In"
Rejeu 1174038127.32818 "LayerEvent Flight=1146 Layer=S Mode=In"
Rejeu 1174038127.32978 "SectorEvent Flight=1146 Sector_Out=-- Sector_In=E1"
Rejeu 1174038127.33131 "TrackMovedEvent Flight=1146 CallSign=AZA05U Ssr=5554 Sector=E1 Layers=U,S X=299.75 Y=-208.48 Vx=310 Vy=279 Afl=360 Rate=0 Heading=48 GroundSpeed=417 Tendency=0 Time=06:28:00"
Rejeu 1174038127.33285 "PlnEvent Flight=1153 Time=06:28:00 CallSign=AZA200 AircraftType=A321 Ssr=4065 Speed=452 Rfl=340 Dep=LIRF Arr=EGLL Rvsm=TRUE Tcas=TA_RA Adsb=YES List=ELB V 06:26 340 DOBIM V 06:30 340 AKUTI V 06:35 340 PIGOS V 06:45 340 BARSO V 06:51 340 OKTET V 06:54 340 GIPNO V 07:06 340 BULOL V 07:10 340 ARDOL V 07:16 340 CHABY V 07:26 340 LAULY V 07:29 340 BRY V 07:34 340 CLM V 07:38 340 UTELA V 07:38 340 KOPOR V 07:44 340 NITAR V 07:48 340 ABUDA V 07:51 340 DIMAL V 07:55 340 ALESO V 07:56 340 "
Rejeu 1174038127.3345 "LayerEvent Flight=1153 Layer=U Mode=In"
Rejeu 1174038127.33624 "LayerEvent Flight=1153 Layer=S Mode=In"
Rejeu 1174038127.33785 "SectorEvent Flight=1153 Sector_Out=-- Sector_In=K2"
Rejeu 1174038127.3394 "TrackMovedEvent Flight=1153 CallSign=AZA200 Ssr=4065 Sector=K2 Layers=U,S X=444.58 Y=-227.77 Vx=-375 Vy=266 Afl=297 Rate=838 Heading=305 GroundSpeed=460 Tendency=1 Time=06:28:00"
Rejeu 1174038127.34105 "PlnEvent Flight=1168 Time=06:28:00 CallSign=DAL82 AircraftType=B763 Ssr=6427 Speed=490 Rfl=340 Dep=KJFK Arr=LFMN Rvsm=TRUE Tcas=TA_RA Adsb=YES List=RATKA V 05:01 370 LARLA V 05:05 370 DEKOR V 05:10 370 BERAD V 05:20 370 TERKU V 05:22 370 DEGEX V 05:25 370 TERPO V 05:31 370 NTS V 05:35 370 TUPAR V 05:42 370 DIDRU V 05:46 370 BEBIX V 05:53 370 ADATU V 06:00 370 LERGA V 06:04 370 LATAM V 06:06 370 MTL V 06:10 360 GIROL V 06:15 350 MEDOK V 06:18 310 AMFOU V 06:22 259 TIPIK V 06:23 215 MUS V 06:25 150 AZR V 06:33 40 "
Rejeu 1174038127.34274 "LayerEvent Flight=1168 Layer=F Mode=In"
Rejeu 1174038127.3443 "SectorEvent Flight=1168 Sector_Out=-- Sector_In=NN"
Rejeu 1174038127.34587 "TrackMovedEvent Flight=1168 CallSign=DAL82 Ssr=6427 Sector=NN Layers=F X=285.16 Y=-202.42 Vx=258 Vy=-183 Afl=110 Rate=-1244 Heading=125 GroundSpeed=316 Tendency=-1 Time=06:28:00"
Rejeu 1174038127.34744 "PlnEvent Flight=1188 Time=06:28:00 CallSign=SMX5046 AircraftType=MD82 Ssr=4056 Speed=433 Rfl=360 Dep=LIML Arr=LEMD Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LAGEN V 06:08 270 VAMTU V 06:13 290 KOLON V 06:18 300 GANGU V 06:24 360 PADKO V 06:29 360 DIVKO V 06:32 360 MAMES V 06:40 360 BISBA V 06:43 360 BGR V 06:46 360 "
Rejeu 1174038127.34905 "LayerEvent Flight=1188 Layer=S Mode=In"
Rejeu 1174038127.35108 "SectorEvent Flight=1188 Sector_Out=-- Sector_In=M3"
Rejeu 1174038127.3532 "TrackMovedEvent Flight=1188 CallSign=SMX5046 Ssr=4056 Sector=M3 Layers=S X=242.28 Y=-219.34 Vx=-337 Vy=-302 Afl=370 Rate=0 Heading=228 GroundSpeed=453 Tendency=0 Time=06:28:00"
Rejeu 1174038127.35483 "PlnEvent Flight=1256 Time=06:28:00 CallSign=SYR419 AircraftType=A320 Ssr=4054 Speed=462 Rfl=310 Dep=OSDI Arr=LEMD Rvsm=TRUE Tcas=TA_RA Adsb=YES List=ALG V 06:13 310 GOMAX V 06:15 310 DORAD V 06:18 330 MORSS V 06:34 330 MHN V 06:37 330 "
Rejeu 1174038127.35666 "LayerEvent Flight=1256 Layer=S Mode=In"
Rejeu 1174038127.35889 "SectorEvent Flight=1256 Sector_Out=-- Sector_In=DL"
Rejeu 1174038127.36107 "TrackMovedEvent Flight=1256 CallSign=SYR419 Ssr=4054 Sector=DL Layers=S X=265.23 Y=-415.08 Vx=-455 Vy=-59 Afl=330 Rate=0 Heading=263 GroundSpeed=459 Tendency=0 Time=06:28:00"
Rejeu 1174038127.36285 "PlnEvent Flight=1258 Time=06:28:00 CallSign=SEU532 AircraftType=A320 Ssr=5674 Speed=451 Rfl=360 Dep=LFML Arr=LGAV Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LFML V 06:09 1 SOSUR V 06:17 190 NERAN V 06:25 300 BALEN V 06:30 300 LUTTA V 06:35 360 GOBIS V 06:40 360 DESOG V 06:44 360 ALG V 06:46 360 "
Rejeu 1174038127.3645 "LayerEvent Flight=1258 Layer=U Mode=In"
Rejeu 1174038127.36652 "LayerEvent Flight=1258 Layer=S Mode=In"
Rejeu 1174038127.36828 "SectorEvent Flight=1258 Sector_Out=-- Sector_In=D1"
Rejeu 1174038127.36985 "TrackMovedEvent Flight=1258 CallSign=SEU532 Ssr=5674 Sector=D1 Layers=U,S X=292.56 Y=-296.06 Vx=391 Vy=-306 Afl=325 Rate=715 Heading=128 GroundSpeed=497 Tendency=1 Time=06:28:00"
Rejeu 1174038127.37161 "PlnEvent Flight=1329 Time=06:28:00 CallSign=VLE5078 AircraftType=B763 Ssr=4052 Speed=456 Rfl=350 Dep=LIMC Arr=LEPA Rvsm=TRUE Tcas=TA_RA Adsb=YES List=NEDED V 05:58 230 VAMTU V 06:03 290 KOLON V 06:08 300 GANGU V 06:13 350 PADKO V 06:18 350 DIVKO V 06:21 350 MAMES V 06:29 350 PIVUS V 06:31 350 VERSO V 06:37 350 "
Rejeu 1174038127.37328 "LayerEvent Flight=1329 Layer=S Mode=In"
Rejeu 1174038127.3749 "SectorEvent Flight=1329 Sector_Out=-- Sector_In=M2"
Rejeu 1174038127.37648 "TrackMovedEvent Flight=1329 CallSign=VLE5078 Ssr=4052 Sector=M2 Layers=S X=183.45 Y=-274.64 Vx=-253 Vy=-426 Afl=350 Rate=0 Heading=211 GroundSpeed=495 Tendency=0 Time=06:28:00"
Rejeu 1174038127.37817 "PlnEvent Flight=1338 Time=06:28:00 CallSign=OHY7453 AircraftType=A321 Ssr=7301 Speed=452 Rfl=360 Dep=LTBJ Arr=LFLL Rvsm=TRUE Tcas=TA_RA Adsb=YES List=ELB V 06:07 360 DOBIM V 06:11 380 AKUTI V 06:16 380 PIGOS V 06:26 360 BODRU V 06:34 350 KOTIT V 06:40 277 LASUR V 06:41 258 PINED V 06:43 190 OSMAS V 06:47 130 GOMET V 06:47 130 LLL V 06:56 40 "
Rejeu 1174038127.37975 "LayerEvent Flight=1338 Layer=S Mode=In"
Rejeu 1174038127.38131 "SectorEvent Flight=1338 Sector_Out=-- Sector_In=B2"
Rejeu 1174038127.38284 "TrackMovedEvent Flight=1338 CallSign=OHY7453 Ssr=7301 Sector=B2 Layers=S X=318.38 Y=-177.97 Vx=-334 Vy=192 Afl=340 Rate=0 Heading=300 GroundSpeed=385 Tendency=0 Time=06:28:00"
Rejeu 1174038127.38443 "PlnEvent Flight=1362 Time=06:28:00 CallSign=OHY993 AircraftType=A321 Ssr=7310 Speed=452 Rfl=360 Dep=LTFE Arr=LFLL Rvsm=TRUE Tcas=TA_RA Adsb=YES List=ELB V 06:24 360 DOBIM V 06:28 360 AKUTI V 06:33 360 PIGOS V 06:43 360 BODRU V 06:51 350 KOTIT V 06:57 277 LASUR V 06:58 258 PINED V 07:00 190 OSMAS V 07:03 130 GOMET V 07:03 130 LLL V 07:12 40 "
Rejeu 1174038127.38603 "LayerEvent Flight=1362 Layer=S Mode=In"
Rejeu 1174038127.38767 "SectorEvent Flight=1362 Sector_Out=-- Sector_In=K3"
Rejeu 1174038127.38924 "TrackMovedEvent Flight=1362 CallSign=OHY993 Ssr=7310 Sector=K3 Layers=S X=427.59 Y=-216.23 Vx=-412 Vy=159 Afl=360 Rate=0 Heading=291 GroundSpeed=442 Tendency=0 Time=06:28:00"
Rejeu 1174038127.39105 "PlnEvent Flight=1370 Time=06:28:00 CallSign=BER1885 AircraftType=B738 Ssr=5316 Speed=448 Rfl=400 Dep=LEMH Arr=EDDT Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LUMAS V 06:17 320 TINOT V 06:26 400 ROTIS V 06:29 400 ADITA V 06:32 400 MAXIR V 06:34 400 LUSOL V 06:37 400 BODRU V 06:41 400 OKTET V 06:43 400 IRMAR V 06:46 400 BLONA V 06:48 400 KINES V 06:51 400 VANAS V 06:52 400 MOBLO V 06:55 400 MOLUS V 07:00 400 SOSAL V 07:01 400 "
Rejeu 1174038127.39278 "LayerEvent Flight=1370 Layer=S Mode=In"
Rejeu 1174038127.39444 "SectorEvent Flight=1370 Sector_Out=-- Sector_In=F3"
Rejeu 1174038127.39649 "TrackMovedEvent Flight=1370 CallSign=BER1885 Ssr=5316 Sector=F3 Layers=S X=242.95 Y=-253.34 Vx=173 Vy=370 Afl=380 Rate=0 Heading=25 GroundSpeed=408 Tendency=0 Time=06:28:00"
Rejeu 1174038127.39847 "PlnEvent Flight=1416 Time=06:28:00 CallSign=TOM742P AircraftType=B752 Ssr=5327 Speed=454 Rfl=400 Dep=LEPA Arr=EGKK Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LUMAS V 06:40 380 SOSUR V 06:49 380 MRM V 06:56 380 MTL V 07:04 380 ETREK V 07:10 380 MADOT V 07:14 380 ATN V 07:23 380 AVLON V 07:30 380 OKRIX V 07:34 380 BRY V 07:38 380 CLM V 07:43 380 UTELA V 07:43 380 KOPOR V 07:49 380 KOMEL V 07:51 380 ABSUD V 07:54 380 GUBAR V 08:00 320 GURLU V 08:01 320 "
Rejeu 1174038127.40005 "LayerEvent Flight=1416 Layer=U Mode=In"
Rejeu 1174038127.40191 "LayerEvent Flight=1416 Layer=S Mode=In"
Rejeu 1174038127.404 "TrackMovedEvent Flight=1416 CallSign=TOM742P Ssr=5327 Sector=-- Layers=U,S X=167.23 Y=-392.06 Vx=224 Vy=428 Afl=304 Rate=1451 Heading=28 GroundSpeed=483 Tendency=1 Time=06:28:00"
Rejeu 1174038127.40568 "PlnEvent Flight=1654 Time=06:28:00 CallSign=LTE420 AircraftType=A320 Ssr=5503 Speed=453 Rfl=360 Dep=LEPA Arr=EBLG Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LUMAS V 05:58 360 TINOT V 06:06 360 ROTIS V 06:09 360 ADITA V 06:12 360 MAXIR V 06:13 360 LUSOL V 06:16 360 BODRU V 06:20 360 OKTET V 06:23 360 IRMAR V 06:25 360 BLONA V 06:27 360 KINES V 06:30 360 VANAS V 06:31 360 MOBLO V 06:33 360 MOLUS V 06:39 360 VADEM V 06:41 360 GILIR V 06:44 360 PENDU V 06:46 380 IXILU V 06:49 350 GIVOR V 06:56 310 SORAL V 07:00 240 DIK V 07:06 240 "
Rejeu 1174038127.40747 "LayerEvent Flight=1654 Layer=S Mode=In"
Rejeu 1174038127.40916 "SectorEvent Flight=1654 Sector_Out=-- Sector_In=O4"
Rejeu 1174038127.41113 "TrackMovedEvent Flight=1654 CallSign=LTE420 Ssr=5503 Sector=O4 Layers=S X=276.45 Y=-73.59 Vx=-113 Vy=388 Afl=380 Rate=0 Heading=344 GroundSpeed=404 Tendency=0 Time=06:28:00"
Rejeu 1174038127.41285 "PlnEvent Flight=1683 Time=06:28:00 CallSign=JKK021 AircraftType=MD82 Ssr=5520 Speed=451 Rfl=320 Dep=LEAL Arr=EKCH Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LUMAS V 06:21 340 TINOT V 06:30 340 ROTIS V 06:32 340 ADITA V 06:35 340 MAXIR V 06:37 340 LUSOL V 06:40 340 BODRU V 06:44 340 OKTET V 06:46 340 IRMAR V 06:49 340 BLONA V 06:51 340 KINES V 06:54 340 VANAS V 06:55 340 MOBLO V 06:58 340 MOLUS V 07:03 340 SOSAL V 07:04 340 "
Rejeu 1174038127.41458 "LayerEvent Flight=1683 Layer=S Mode=In"
Rejeu 1174038127.41628 "SectorEvent Flight=1683 Sector_Out=-- Sector_In=F2"
Rejeu 1174038127.41796 "TrackMovedEvent Flight=1683 CallSign=JKK021 Ssr=5520 Sector=F2 Layers=S X=227.92 Y=-275.81 Vx=178 Vy=350 Afl=340 Rate=0 Heading=27 GroundSpeed=393 Tendency=0 Time=06:28:00"
Rejeu 1174038127.41962 "PlnEvent Flight=1707 Time=06:28:00 CallSign=JKK045 AircraftType=A320 Ssr=5325 Speed=463 Rfl=320 Dep=LEPA Arr=ESSA Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LUMAS V 06:33 340 MEBEL V 06:40 340 TURIL V 06:47 340 MAXIR V 06:49 340 LUSOL V 06:52 340 BODRU V 06:55 340 OKTET V 06:58 340 IRMAR V 07:01 340 BLONA V 07:02 340 KINES V 07:05 340 VANAS V 07:06 340 MOBLO V 07:09 340 MOLUS V 07:14 340 SOSAL V 07:15 340 "
Rejeu 1174038127.42125 "LayerEvent Flight=1707 Layer=S Mode=In"
Rejeu 1174038127.42308 "SectorEvent Flight=1707 Sector_Out=-- Sector_In=EN"
Rejeu 1174038127.42485 "TrackMovedEvent Flight=1707 CallSign=JKK045 Ssr=5325 Sector=EN Layers=S X=186.88 Y=-378.44 Vx=129 Vy=377 Afl=340 Rate=0 Heading=19 GroundSpeed=398 Tendency=0 Time=06:28:00"
Rejeu 1174038127.42647 "PlnEvent Flight=1790 Time=06:28:00 CallSign=AEA1063 AircraftType=B738 Ssr=1042 Speed=448 Rfl=400 Dep=LEMD Arr=LIMC Rvsm=TRUE Tcas=TA_RA Adsb=YES List=PPN V 05:49 400 LATEK V 05:55 380 OBUTO V 05:59 380 GONUP V 06:04 380 TOU V 06:08 380 GAI V 06:11 380 GONIM V 06:18 380 MEN V 06:22 380 MEZIN V 06:28 380 LATAM V 06:28 380 ETREK V 06:31 360 LTP V 06:36 350 BALSI V 06:39 310 ROBEX V 06:43 270 BLONA V 06:44 270 TOP V 06:50 270 "
Rejeu 1174038127.42821 "LayerEvent Flight=1790 Layer=S Mode=In"
Rejeu 1174038127.4302 "SectorEvent Flight=1790 Sector_Out=-- Sector_In=W3"
Rejeu 1174038127.43168 "TrackMovedEvent Flight=1790 CallSign=AEA1063 Ssr=1042 Sector=W3 Layers=S X=154.86 Y=-128.97 Vx=370 Vy=227 Afl=380 Rate=0 Heading=58 GroundSpeed=434 Tendency=0 Time=06:28:00"
Rejeu 1174038127.43306 "PlnEvent Flight=1864 Time=06:28:00 CallSign=SWR1940 AircraftType=RJ1H Ssr=5745 Speed=402 Rfl=290 Dep=LSGG Arr=LEBL Rvsm=TRUE Tcas=TA_RA Adsb=YES List=PAS V 06:26 190 BALSI V 06:32 190 KURIR V 06:42 270 MTL V 06:43 270 NAKIS V 06:51 270 BOLSA V 07:01 290 PPG V 07:07 210 ALBER V 07:09 210 CLE V 07:17 210 "
Rejeu 1174038127.43455 "LayerEvent Flight=1864 Layer=F Mode=In"
Rejeu 1174038127.436 "LayerEvent Flight=1864 Layer=U Mode=In"
Rejeu 1174038127.43746 "SectorEvent Flight=1864 Sector_Out=-- Sector_In=IG"
Rejeu 1174038127.43891 "TrackMovedEvent Flight=1864 CallSign=SWR1940 Ssr=5745 Sector=IG Layers=F,U X=249.27 Y=-57.73 Vx=24 Vy=-257 Afl=132 Rate=1743 Heading=175 GroundSpeed=258 Tendency=1 Time=06:28:00"
Rejeu 1174038127.44033 "PlnEvent Flight=1876 Time=06:28:00 CallSign=HLX332Z AircraftType=B737 Ssr=1103 Speed=450 Rfl=390 Dep=EDDV Arr=LEPA Rvsm=TRUE Tcas=TA_RA Adsb=YES List=KRH V 05:22 390 NATOR V 05:29 390 OLBEN V 05:36 390 NEMOS V 05:42 390 MILPA V 05:49 390 GIRKU V 05:51 390 BALSI V 05:55 410 KOTIT V 06:01 410 RETNO V 06:03 410 GIROL V 06:06 410 MTG V 06:11 410 DIVKO V 06:14 410 MAMES V 06:22 410 PIVUS V 06:24 410 VERSO V 06:30 410 "
Rejeu 1174038127.44208 "LayerEvent Flight=1876 Layer=S Mode=In"
Rejeu 1174038127.44387 "SectorEvent Flight=1876 Sector_Out=-- Sector_In=VR"
Rejeu 1174038127.44539 "TrackMovedEvent Flight=1876 CallSign=HLX332Z Ssr=1103 Sector=VR Layers=S X=167.41 Y=-344.03 Vx=-115 Vy=-466 Afl=358 Rate=-3436 Heading=194 GroundSpeed=480 Tendency=-1 Time=06:28:00"
Rejeu 1174038127.44714 "PlnEvent Flight=2097 Time=06:28:00 CallSign=KLM1263 AircraftType=F70 Ssr=0163 Speed=433 Rfl=350 Dep=EHAM Arr=LFMN Rvsm=TRUE Tcas=TA_RA Adsb=YES List=CIV V 05:45 350 MEDIL V 05:46 310 KOVIN V 05:53 330 RESMI V 06:02 330 KOTAP V 06:03 330 KETEX V 06:04 330 KUSEK V 06:07 350 KOTIS V 06:11 350 KUKOR V 06:17 350 TIS V 06:22 350 LERGA V 06:27 350 LATAM V 06:30 350 MTL V 06:34 350 GIROL V 06:40 350 MEDOK V 06:43 310 AMFOU V 06:44 266 TIPIK V 06:46 217 MUS V 06:47 150 AZR V 06:56 40 "
Rejeu 1174038127.44903 "LayerEvent Flight=2097 Layer=S Mode=In"
Rejeu 1174038127.45066 "SectorEvent Flight=2097 Sector_Out=-- Sector_In=W2"
Rejeu 1174038127.4523 "TrackMovedEvent Flight=2097 CallSign=KLM1263 Ssr=0163 Sector=W2 Layers=S X=174.03 Y=-103.52 Vx=327 Vy=-348 Afl=350 Rate=0 Heading=137 GroundSpeed=478 Tendency=0 Time=06:28:00"
Rejeu 1174038127.4537 "PlnEvent Flight=2132 Time=06:28:00 CallSign=GWI594 AircraftType=A319 Ssr=2566 Speed=447 Rfl=370 Dep=EDDK Arr=LEPA Rvsm=TRUE Tcas=TA_RA Adsb=YES List=RITAX V 05:28 370 ROUSY V 05:33 370 GTQ V 05:38 370 POGOL V 05:43 370 LASAT V 05:44 370 TIRSO V 05:47 370 ARPUS V 05:49 370 EPOXI V 05:49 370 MOROK V 05:51 370 GILIR V 05:54 370 TUROM V 05:56 370 MILPA V 06:01 370 BALSI V 06:07 370 KOTIT V 06:14 370 RETNO V 06:15 370 GIROL V 06:18 370 MTG V 06:24 370 DIVKO V 06:27 370 MAMES V 06:34 370 PIVUS V 06:37 370 VERSO V 06:42 370 "
Rejeu 1174038127.45589 "LayerEvent Flight=2132 Layer=S Mode=In"
Rejeu 1174038127.45793 "SectorEvent Flight=2132 Sector_Out=-- Sector_In=M3"
Rejeu 1174038127.4594 "TrackMovedEvent Flight=2132 CallSign=GWI594 Ssr=2566 Sector=M3 Layers=S X=191.88 Y=-255.27 Vx=-214 Vy=-439 Afl=370 Rate=0 Heading=206 GroundSpeed=488 Tendency=0 Time=06:28:00"
Rejeu 1174038127.4608 "PlnEvent Flight=2220 Time=06:28:00 CallSign=CSA6720 AircraftType=A321 Ssr=6621 Speed=459 Rfl=350 Dep=LKPR Arr=LEMD Rvsm=TRUE Tcas=TA_RA Adsb=YES List=TGO V 05:43 350 NATOR V 05:49 350 OLBEN V 05:57 350 NEMOS V 06:02 350 MILPA V 06:09 350 NINTU V 06:11 350 MEBAK V 06:17 350 REPSI V 06:19 350 LERGA V 06:23 350 MOKDI V 06:27 350 OLRAK V 06:29 350 NARAK V 06:36 350 AGN V 06:42 350 TBO V 06:48 350 OBUTO V 06:49 350 SOVAR V 06:52 350 SURCO V 06:56 350 ZAR V 07:02 350 "
Rejeu 1174038127.46225 "LayerEvent Flight=2220 Layer=S Mode=In"
Rejeu 1174038127.46374 "SectorEvent Flight=2220 Sector_Out=-- Sector_In=T3"
Rejeu 1174038127.4652 "TrackMovedEvent Flight=2220 CallSign=CSA6720 Ssr=6621 Sector=T3 Layers=S X=136.39 Y=-113.66 Vx=-364 Vy=-269 Afl=350 Rate=0 Heading=234 GroundSpeed=453 Tendency=0 Time=06:28:00"
Rejeu 1174038127.46665 "PlnEvent Flight=2255 Time=06:28:00 CallSign=NRD751 AircraftType=MD90 Ssr=5502 Speed=453 Rfl=320 Dep=LEPA Arr=LOWL Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LUMAS V 06:41 320 OBLAD V 06:43 320 RASPA V 06:46 320 BALOK V 06:49 320 STP V 06:58 320 RAPED V 07:00 320 PIGOS V 07:03 320 NOSTA V 07:06 320 ABN V 07:09 320 GEN V 07:14 320 "
Rejeu 1174038127.46834 "LayerEvent Flight=2255 Layer=U Mode=In"
Rejeu 1174038127.46989 "LayerEvent Flight=2255 Layer=S Mode=In"
Rejeu 1174038127.47143 "TrackMovedEvent Flight=2255 CallSign=NRD751 Ssr=5502 Sector=-- Layers=U,S X=195.92 Y=-410.17 Vx=55 Vy=387 Afl=319 Rate=1354 Heading=8 GroundSpeed=391 Tendency=1 Time=06:28:00"
Rejeu 1174038127.473 "PlnEvent Flight=2405 Time=06:28:00 CallSign=DLH54W AircraftType=A306 Ssr=5355 Speed=457 Rfl=300 Dep=LEBL Arr=EDDF Rvsm=TRUE Tcas=TA_RA Adsb=YES List=DIBER V 06:10 300 SOSUR V 06:15 300 ROTIS V 06:19 300 ADITA V 06:22 300 MAXIR V 06:24 300 LUSOL V 06:27 300 BODRU V 06:30 300 OKTET V 06:33 300 IRMAR V 06:36 300 BLONA V 06:37 300 KINES V 06:40 300 VANAS V 06:41 300 MOBLO V 06:44 300 MOLUS V 06:49 300 SOSAL V 06:50 300 "
Rejeu 1174038127.4745 "LayerEvent Flight=2405 Layer=U Mode=In"
Rejeu 1174038127.47602 "SectorEvent Flight=2405 Sector_Out=-- Sector_In=B1"
Rejeu 1174038127.47757 "TrackMovedEvent Flight=2405 CallSign=DLH54W Ssr=5355 Sector=B1 Layers=U X=264.00 Y=-174.88 Vx=191 Vy=402 Afl=300 Rate=0 Heading=25 GroundSpeed=445 Tendency=0 Time=06:28:00"
Rejeu 1174038127.47894 "PlnEvent Flight=2408 Time=06:28:00 CallSign=JKK2735 AircraftType=A320 Ssr=5577 Speed=463 Rfl=320 Dep=LEBL Arr=EFHK Rvsm=TRUE Tcas=TA_RA Adsb=YES List=SALON V 06:25 300 LUMAS V 06:33 320 OBLAD V 06:35 320 RASPA V 06:38 320 BALOK V 06:41 320 STP V 06:49 320 RAPED V 06:51 320 PIGOS V 06:54 320 NOSTA V 06:57 320 ABN V 07:00 320 GEN V 07:06 320 "
Rejeu 1174038127.48044 "LayerEvent Flight=2408 Layer=U Mode=In"
Rejeu 1174038127.4819 "LayerEvent Flight=2408 Layer=S Mode=In"
Rejeu 1174038127.48346 "SectorEvent Flight=2408 Sector_Out=-- Sector_In=F2"
Rejeu 1174038127.48498 "TrackMovedEvent Flight=2408 CallSign=JKK2735 Ssr=5577 Sector=F2 Layers=U,S X=187.19 Y=-319.44 Vx=406 Vy=166 Afl=300 Rate=0 Heading=68 GroundSpeed=439 Tendency=0 Time=06:28:00"
Rejeu 1174038127.48668 "PlnEvent Flight=2431 Time=06:28:00 CallSign=CSA6662 AircraftType=B734 Ssr=6624 Speed=433 Rfl=350 Dep=LKPR Arr=LEBB Rvsm=TRUE Tcas=TA_RA Adsb=YES List=TGO V 05:54 350 NATOR V 06:01 350 OLBEN V 06:09 350 NEMOS V 06:14 350 MILPA V 06:22 350 NINTU V 06:24 350 MEBAK V 06:30 350 REPSI V 06:33 350 LERGA V 06:37 350 MOKDI V 06:41 350 OLRAK V 06:43 350 NARAK V 06:51 350 AGN V 06:57 350 TBO V 07:03 350 LURAN V 07:11 270 PPN V 07:16 270 "
Rejeu 1174038127.48836 "LayerEvent Flight=2431 Layer=S Mode=In"
Rejeu 1174038127.4905 "SectorEvent Flight=2431 Sector_Out=-- Sector_In=G2"
Rejeu 1174038127.49226 "TrackMovedEvent Flight=2431 CallSign=CSA6662 Ssr=6624 Sector=G2 Layers=S X=210.08 Y=-55.36 Vx=-318 Vy=-283 Afl=350 Rate=0 Heading=228 GroundSpeed=426 Tendency=0 Time=06:28:00"
Rejeu 1174038127.49369 "PlnEvent Flight=2581 Time=06:28:00 CallSign=CSA6746 AircraftType=B734 Ssr=6622 Speed=438 Rfl=330 Dep=LKPR Arr=LEZL Rvsm=TRUE Tcas=TA_RA Adsb=YES List=TGO V 05:50 330 NATOR V 05:56 330 OLBEN V 06:04 330 NEMOS V 06:10 330 MILPA V 06:17 330 NINTU V 06:19 350 MEBAK V 06:25 350 REPSI V 06:28 350 LERGA V 06:31 350 MOKDI V 06:35 350 OLRAK V 06:37 350 NARAK V 06:45 350 AGN V 06:51 350 TBO V 06:57 350 OBUTO V 06:59 350 SOVAR V 07:02 350 SURCO V 07:06 350 ZAR V 07:12 350 "
Rejeu 1174038127.49519 "LayerEvent Flight=2581 Layer=S Mode=In"
Rejeu 1174038127.49721 "SectorEvent Flight=2581 Sector_Out=-- Sector_In=T3"
Rejeu 1174038127.49895 "TrackMovedEvent Flight=2581 CallSign=CSA6746 Ssr=6622 Sector=T3 Layers=S X=182.23 Y=-82.03 Vx=-323 Vy=-263 Afl=350 Rate=0 Heading=231 GroundSpeed=417 Tendency=0 Time=06:28:00"
Rejeu 1174038127.50035 "PlnEvent Flight=2691 Time=06:28:00 CallSign=AFR4370 AircraftType=A320 Ssr=7621 Speed=456 Rfl=350 Dep=LFPO Arr=DTTA Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LPO V 05:30 1 WPO V 05:32 42 EDOXA V 05:36 210 ERIXU V 05:38 260 ERTOK V 05:42 310 ETAMO V 05:49 310 VALKU V 05:55 350 ADATU V 05:58 330 OLRAK V 06:04 330 BADAM V 06:09 330 FJR V 06:13 330 DIVKO V 06:19 350 TINOT V 06:22 350 LARAP V 06:30 350 NEMUR V 06:37 350 REKTO V 06:40 350 RISGA V 06:43 350 ALG V 06:45 350 "
Rejeu 1174038127.50184 "LayerEvent Flight=2691 Layer=S Mode=In"
Rejeu 1174038127.50329 "SectorEvent Flight=2691 Sector_Out=-- Sector_In=F2"
Rejeu 1174038127.50482 "TrackMovedEvent Flight=2691 CallSign=AFR4370 Ssr=7621 Sector=F2 Layers=S X=265.31 Y=-274.45 Vx=392 Vy=-312 Afl=350 Rate=0 Heading=129 GroundSpeed=501 Tendency=0 Time=06:28:00"
Rejeu 1174038127.50641 "PlnEvent Flight=3140 Time=06:28:00 CallSign=DLH83N AircraftType=A319 Ssr=0123 Speed=454 Rfl=370 Dep=EDDF Arr=LEBL Rvsm=TRUE Tcas=TA_RA Adsb=YES List=BADLI V 06:02 370 PABLA V 06:05 370 HERBI V 06:07 370 MOPAN V 06:09 370 OLBEN V 06:17 370 NEMOS V 06:23 370 MILPA V 06:30 370 GIRKU V 06:32 370 BALSI V 06:36 350 KOTIT V 06:42 350 RETNO V 06:44 350 GIROL V 06:47 350 MTG V 06:52 350 DIVKO V 06:55 350 MAMES V 07:03 270 BISBA V 07:06 270 "
Rejeu 1174038127.50796 "LayerEvent Flight=3140 Layer=S Mode=In"
Rejeu 1174038127.50944 "SectorEvent Flight=3140 Sector_Out=-- Sector_In=4K"
Rejeu 1174038127.51091 "TrackMovedEvent Flight=3140 CallSign=DLH83N Ssr=0123 Sector=4K Layers=S X=270.44 Y=-34.34 Vx=-173 Vy=-436 Afl=350 Rate=0 Heading=202 GroundSpeed=469 Tendency=0 Time=06:28:00"
Rejeu 1174038127.51233 "PlnEvent Flight=3146 Time=06:28:00 CallSign=SWT364 AircraftType=MD83 Ssr=5364 Speed=455 Rfl=300 Dep=LEMD Arr=EPKK Rvsm=TRUE Tcas=TA_RA Adsb=YES List=SALON V 06:07 300 LUMAS V 06:15 340 OBLAD V 06:17 340 RASPA V 06:20 340 BALOK V 06:23 340 STP V 06:32 340 RAPED V 06:34 340 PIGOS V 06:37 340 NOSTA V 06:40 340 ABN V 06:43 340 GEN V 06:48 340 "
Rejeu 1174038127.51381 "LayerEvent Flight=3146 Layer=S Mode=In"
Rejeu 1174038127.51537 "SectorEvent Flight=3146 Sector_Out=-- Sector_In=F2"
Rejeu 1174038127.5168 "TrackMovedEvent Flight=3146 CallSign=SWT364 Ssr=5364 Sector=F2 Layers=S X=258.78 Y=-248.11 Vx=280 Vy=299 Afl=340 Rate=0 Heading=43 GroundSpeed=410 Tendency=0 Time=06:28:00"
Rejeu 1174038127.51819 "PlnEvent Flight=3198 Time=06:28:00 CallSign=AZA9106 AircraftType=MD11 Ssr=4062 Speed=481 Rfl=320 Dep=LIRP Arr=KJFK Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LAGEN V 06:17 300 VAMTU V 06:21 290 KOLON V 06:26 300 GANGU V 06:31 320 PADKO V 06:35 320 DIVKO V 06:39 320 MAMES V 06:46 320 BISBA V 06:48 320 "
Rejeu 1174038127.51961 "LayerEvent Flight=3198 Layer=U Mode=In"
Rejeu 1174038127.52104 "LayerEvent Flight=3198 Layer=S Mode=In"
Rejeu 1174038127.52257 "SectorEvent Flight=3198 Sector_Out=-- Sector_In=B2"
Rejeu 1174038127.52419 "TrackMovedEvent Flight=3198 CallSign=AZA9106 Ssr=4062 Sector=B2 Layers=U,S X=275.81 Y=-193.83 Vx=-430 Vy=-257 Afl=310 Rate=0 Heading=239 GroundSpeed=501 Tendency=0 Time=06:28:00"
Rejeu 1174038127.5256 "PlnEvent Flight=3342 Time=06:28:00 CallSign=JKK4731 AircraftType=MD83 Ssr=5320 Speed=450 Rfl=320 Dep=LEIB Arr=LIMC Rvsm=TRUE Tcas=TA_RA Adsb=YES List=MHN V 05:55 320 ISTER V 05:58 320 LUTTA V 06:10 320 SOVAG V 06:15 320 NEGAT V 06:20 320 OMEDA V 06:28 320 AKUTI V 06:37 260 TORTU V 06:38 260 UNITA V 06:42 260 GEN V 06:46 260 "
Rejeu 1174038127.52708 "LayerEvent Flight=3342 Layer=U Mode=In"
Rejeu 1174038127.52855 "LayerEvent Flight=3342 Layer=S Mode=In"
Rejeu 1174038127.5301 "SectorEvent Flight=3342 Sector_Out=-- Sector_In=K1"
Rejeu 1174038127.53209 "TrackMovedEvent Flight=3342 CallSign=JKK4731 Ssr=5320 Sector=K1 Layers=U,S X=342.00 Y=-280.36 Vx=196 Vy=335 Afl=320 Rate=0 Heading=30 GroundSpeed=388 Tendency=0 Time=06:28:00"
Rejeu 1174038127.53408 "PlnEvent Flight=3412 Time=06:28:00 CallSign=DLH42X AircraftType=RJ85 Ssr=7522 Speed=413 Rfl=310 Dep=EDDM Arr=LPPR Rvsm=TRUE Tcas=TA_RA Adsb=YES List=TGO V 06:10 310 NATOR V 06:17 310 OLBEN V 06:25 310 NEMOS V 06:31 310 MILPA V 06:39 310 NINTU V 06:41 310 MEBAK V 06:47 310 REPSI V 06:50 310 LERGA V 06:54 310 MOKDI V 06:58 310 OLRAK V 07:01 310 NARAK V 07:09 310 AGN V 07:15 310 TBO V 07:22 310 PIPOR V 07:30 310 PPN V 07:35 310 "
Rejeu 1174038127.5362 "LayerEvent Flight=3412 Layer=U Mode=In"
Rejeu 1174038127.53777 "SectorEvent Flight=3412 Sector_Out=-- Sector_In=GV"
Rejeu 1174038127.53925 "TrackMovedEvent Flight=3412 CallSign=DLH42X Ssr=7522 Sector=GV Layers=U X=299.27 Y=21.63 Vx=-317 Vy=-283 Afl=310 Rate=0 Heading=228 GroundSpeed=425 Tendency=0 Time=06:28:00"
Rejeu 1174038127.54109 "PlnEvent Flight=3499 Time=06:28:00 CallSign=JKK4519 AircraftType=MD83 Ssr=5501 Speed=450 Rfl=340 Dep=LEPA Arr=LIMC Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LUMAS V 06:18 320 OBLAD V 06:20 310 RASPA V 06:23 300 BALOK V 06:26 300 STP V 06:35 300 RAPED V 06:37 300 PIGOS V 06:40 300 NOSTA V 06:43 260 ABN V 06:46 260 GEN V 06:51 260 "
Rejeu 1174038127.54335 "LayerEvent Flight=3499 Layer=U Mode=In"
Rejeu 1174038127.54502 "LayerEvent Flight=3499 Layer=S Mode=In"
Rejeu 1174038127.54643 "SectorEvent Flight=3499 Sector_Out=-- Sector_In=F1"
Rejeu 1174038127.5478 "TrackMovedEvent Flight=3499 CallSign=JKK4519 Ssr=5501 Sector=F1 Layers=U,S X=238.19 Y=-287.53 Vx=246 Vy=330 Afl=321 Rate=0 Heading=37 GroundSpeed=412 Tendency=0 Time=06:28:00"
Rejeu 1174038127.54922 "PlnEvent Flight=3557 Time=06:28:00 CallSign=HLF168 AircraftType=B738 Ssr=5311 Speed=454 Rfl=380 Dep=LEPA Arr=LFSB Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LUMAS V 06:06 380 MEBEL V 06:14 380 TURIL V 06:21 380 MAXIR V 06:22 380 LUSOL V 06:25 380 BODRU V 06:29 380 OKTET V 06:31 380 IRMAR V 06:34 380 BLONA V 06:36 380 KINES V 06:38 380 VANAS V 06:39 380 MOBLO V 06:42 380 MOLUS V 06:47 300 SOSAL V 06:49 212 KONOL V 06:54 76 LUMEL V 06:58 120 REFEL V 07:00 70 LFSB V 07:03 40 "
Rejeu 1174038127.55071 "LayerEvent Flight=3557 Layer=S Mode=In"
Rejeu 1174038127.55207 "SectorEvent Flight=3557 Sector_Out=-- Sector_In=B3"
Rejeu 1174038127.55359 "TrackMovedEvent Flight=3557 CallSign=HLF168 Ssr=5311 Sector=B3 Layers=S X=272.22 Y=-163.63 Vx=149 Vy=372 Afl=379 Rate=-955 Heading=22 GroundSpeed=401 Tendency=-1 Time=06:28:00"
Rejeu 1174038127.55541 "PlnEvent Flight=3620 Time=06:28:00 CallSign=EZY4911 AircraftType=A319 Ssr=2525 Speed=446 Rfl=390 Dep=EDLW Arr=LEPA Rvsm=TRUE Tcas=TA_RA Adsb=YES List=DIK V 05:28 390 SUTAL V 05:32 390 GTQ V 05:36 390 POGOL V 05:41 390 LASAT V 05:42 390 TIRSO V 05:45 390 ARPUS V 05:46 390 EPOXI V 05:47 390 MOROK V 05:49 390 GILIR V 05:52 390 TUROM V 05:54 390 MILPA V 05:59 390 BALSI V 06:05 390 KOTIT V 06:12 390 RETNO V 06:13 390 GIROL V 06:16 390 MTG V 06:22 390 DIVKO V 06:25 390 MAMES V 06:33 390 PIVUS V 06:35 390 VERSO V 06:41 390 "
Rejeu 1174038127.55704 "LayerEvent Flight=3620 Layer=S Mode=In"
Rejeu 1174038127.55859 "SectorEvent Flight=3620 Sector_Out=-- Sector_In=M3"
Rejeu 1174038127.55999 "TrackMovedEvent Flight=3620 CallSign=EZY4911 Ssr=2525 Sector=M3 Layers=S X=184.75 Y=-271.39 Vx=-230 Vy=-433 Afl=390 Rate=0 Heading=208 GroundSpeed=490 Tendency=0 Time=06:28:00"
Rejeu 1174038127.56141 "PlnEvent Flight=3663 Time=06:28:00 CallSign=JKK4713 AircraftType=MD83 Ssr=5526 Speed=447 Rfl=340 Dep=LEMG Arr=LIME Rvsm=TRUE Tcas=TA_RA Adsb=YES List=SALON V 06:03 340 LUMAS V 06:12 340 OBLAD V 06:14 310 RASPA V 06:17 300 BALOK V 06:20 300 STP V 06:29 300 RAPED V 06:31 300 PIGOS V 06:34 300 NOSTA V 06:37 260 ABN V 06:40 260 GEN V 06:46 260 "
Rejeu 1174038127.5629 "LayerEvent Flight=3663 Layer=U Mode=In"
Rejeu 1174038127.56435 "LayerEvent Flight=3663 Layer=S Mode=In"
Rejeu 1174038127.56576 "SectorEvent Flight=3663 Sector_Out=-- Sector_In=E1"
Rejeu 1174038127.56717 "TrackMovedEvent Flight=3663 CallSign=JKK4713 Ssr=5526 Sector=E1 Layers=U,S X=269.64 Y=-242.64 Vx=237 Vy=324 Afl=340 Rate=0 Heading=36 GroundSpeed=401 Tendency=0 Time=06:28:00"
Rejeu 1174038127.5686 "PlnEvent Flight=3691 Time=06:28:00 CallSign=JKK4741 AircraftType=MD83 Ssr=5327 Speed=450 Rfl=320 Dep=LEPA Arr=LIME Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LUMAS V 06:25 320 OBLAD V 06:27 310 RASPA V 06:30 300 BALOK V 06:33 300 STP V 06:42 300 RAPED V 06:44 300 PIGOS V 06:47 300 NOSTA V 06:50 260 ABN V 06:53 260 GEN V 06:58 260 "
Rejeu 1174038127.57013 "LayerEvent Flight=3691 Layer=U Mode=In"
Rejeu 1174038127.57169 "LayerEvent Flight=3691 Layer=S Mode=In"
Rejeu 1174038127.57325 "SectorEvent Flight=3691 Sector_Out=-- Sector_In=F2"
Rejeu 1174038127.57469 "TrackMovedEvent Flight=3691 CallSign=JKK4741 Ssr=5327 Sector=F2 Layers=U,S X=209.58 Y=-327.66 Vx=243 Vy=327 Afl=320 Rate=0 Heading=37 GroundSpeed=407 Tendency=0 Time=06:28:00"
Rejeu 1174038127.57616 "PlnEvent Flight=3886 Time=06:28:00 CallSign=TCV6334 AircraftType=B752 Ssr=4060 Speed=465 Rfl=350 Dep=LIMC Arr=GVAC Rvsm=TRUE Tcas=TA_RA Adsb=YES List=NEDED V 06:11 230 VAMTU V 06:15 290 KOLON V 06:20 300 GANGU V 06:25 350 PADKO V 06:30 350 DIVKO V 06:33 350 MAMES V 06:41 350 BISBA V 06:43 350 BGR V 06:45 350 "
Rejeu 1174038127.57849 "LayerEvent Flight=3886 Layer=S Mode=In"
Rejeu 1174038127.58078 "SectorEvent Flight=3886 Sector_Out=-- Sector_In=M2"
Rejeu 1174038127.58252 "TrackMovedEvent Flight=3886 CallSign=TCV6334 Ssr=4060 Sector=M2 Layers=S X=241.14 Y=-216.52 Vx=-355 Vy=-339 Afl=350 Rate=0 Heading=226 GroundSpeed=491 Tendency=0 Time=06:28:00"
Rejeu 1174038127.58397 "PlnEvent Flight=3926 Time=06:28:00 CallSign=AFR4100 AircraftType=A319 Ssr=3222 Speed=456 Rfl=350 Dep=LFPO Arr=LFKJ Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LPO V 05:51 1 WPO V 05:53 42 LALUX V 05:57 210 LATRA V 05:58 260 LAMUT V 06:06 310 LAKOB V 06:08 310 TIS V 06:16 350 LERGA V 06:21 350 LATAM V 06:24 350 KURIR V 06:28 350 RETNO V 06:32 350 KOLON V 06:41 350 ROKNO V 06:43 350 EBORA V 06:44 350 OMARD V 06:46 350 VAREK V 06:52 310 IS V 06:58 150 LKJ V 06:59 40 "
Rejeu 1174038127.58551 "LayerEvent Flight=3926 Layer=S Mode=In"
Rejeu 1174038127.58769 "SectorEvent Flight=3926 Sector_Out=-- Sector_In=A2"
Rejeu 1174038127.58922 "TrackMovedEvent Flight=3926 CallSign=AFR4100 Ssr=3222 Sector=A2 Layers=S X=210.34 Y=-128.14 Vx=423 Vy=-253 Afl=350 Rate=0 Heading=121 GroundSpeed=493 Tendency=0 Time=06:28:00"
Rejeu 1174038127.59083 "PlnEvent Flight=4117 Time=06:28:00 CallSign=AEU437 AircraftType=B737 Ssr=6350 Speed=452 Rfl=390 Dep=EGCC Arr=LFKC Rvsm=TRUE Tcas=TA_RA Adsb=YES List=XAMAB V 05:27 390 VEULE V 05:30 390 ROU V 05:34 390 BAMES V 05:37 390 RESMI V 05:41 390 KOTAP V 05:44 390 KETEX V 05:45 390 KUSEK V 05:48 390 KOTIS V 05:52 390 KUKOR V 05:57 390 TIS V 06:02 390 LERGA V 06:06 390 LATAM V 06:09 390 KURIR V 06:13 390 RETNO V 06:17 390 KOLON V 06:26 360 NARTI V 06:28 350 NIRDO V 06:34 190 NORKA V 06:36 190 ILROU V 06:39 40 "
Rejeu 1174038127.59249 "LayerEvent Flight=4117 Layer=F Mode=In"
Rejeu 1174038127.59402 "LayerEvent Flight=4117 Layer=U Mode=In"
Rejeu 1174038127.59556 "LayerEvent Flight=4117 Layer=S Mode=In"
Rejeu 1174038127.59707 "SectorEvent Flight=4117 Sector_Out=-- Sector_In=E2"
Rejeu 1174038127.59866 "TrackMovedEvent Flight=4117 CallSign=AEU437 Ssr=6350 Sector=E2 Layers=F,U,S X=317.95 Y=-193.98 Vx=454 Vy=-233 Afl=267 Rate=-1812 Heading=117 GroundSpeed=510 Tendency=-1 Time=06:28:00"
Rejeu 1174038127.60028 "PlnEvent Flight=9302 Time=06:28:00 CallSign=CLW706 AircraftType=B734 Ssr=2330 Speed=439 Rfl=340 Dep=LPFR Arr=EPWA Rvsm=TRUE Tcas=TA_RA Adsb=YES List=PPN V 05:58 340 LATEK V 06:04 340 OBUTO V 06:08 340 GONUP V 06:13 340 TOU V 06:17 340 GAI V 06:20 340 GONIM V 06:28 340 MEN V 06:33 340 MEZIN V 06:40 340 LATAM V 06:40 340 ETREK V 06:43 340 LTP V 06:48 340 GIPNO V 06:49 340 SOPLO V 06:51 340 OMASI V 06:53 340 MOLUS V 06:59 340 "
Rejeu 1174038127.60187 "LayerEvent Flight=9302 Layer=S Mode=In"
Rejeu 1174038127.60326 "SectorEvent Flight=9302 Sector_Out=-- Sector_In=H2"
Rejeu 1174038127.60465 "TrackMovedEvent Flight=9302 CallSign=CLW706 Ssr=2330 Sector=H2 Layers=S X=103.61 Y=-161.17 Vx=345 Vy=224 Afl=340 Rate=0 Heading=57 GroundSpeed=411 Tendency=0 Time=06:28:00"
Rejeu 1174038127.60608 "PlnEvent Flight=9436 Time=06:28:00 CallSign=AFR174 AircraftType=B738 Ssr=5615 Speed=486 Rfl=330 Dep=LEMG Arr=EDDF Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LARDA V 06:05 400 LATEK V 06:12 340 OBUTO V 06:16 340 GONUP V 06:19 340 TOU V 06:22 340 GAI V 06:26 340 GONIM V 06:33 340 MEN V 06:37 340 MEZIN V 06:44 340 LATAM V 06:44 340 ETREK V 06:46 340 LTP V 06:52 340 GIPNO V 06:53 340 SOPLO V 06:55 340 OMASI V 06:56 340 MOLUS V 07:03 340 LPG V 26:08 1 WDG V 26:09 24 PIVER V 26:13 96 LAURA V 26:20 140 LASIV V 26:24 270 LANVI V 26:32 330 EPL V 26:34 330 LASAT V 26:37 330 BEGAR V 26:41 330 TRA V 26:46 330 "
Rejeu 1174038127.60768 "LayerEvent Flight=9436 Layer=S Mode=In"
Rejeu 1174038127.60914 "SectorEvent Flight=9436 Sector_Out=-- Sector_In=H2"
Rejeu 1174038127.61067 "TrackMovedEvent Flight=9436 CallSign=AFR174 Ssr=5615 Sector=H2 Layers=S X=90.66 Y=-184.73 Vx=320 Vy=305 Afl=340 Rate=0 Heading=46 GroundSpeed=442 Tendency=0 Time=06:28:00"
Rejeu 1174038127.6122 "PlnEvent Flight=9631 Time=06:28:00 CallSign=KLM588 AircraftType=MD11 Ssr=4055 Speed=479 Rfl=350 Dep=DNMM Arr=EHAM Rvsm=TRUE Tcas=TA_RA Adsb=YES List=BJA V 06:19 350 DOLIS V 06:21 370 BALEN V 06:37 380 RASPA V 06:46 400 MEBEL V 06:49 400 TINOT V 06:51 400 PADKO V 06:55 400 MRM V 06:56 400 MTL V 07:07 400 ETREK V 07:12 400 MADOT V 07:15 400 ATN V 07:24 400 AVLON V 07:30 400 OKRIX V 07:34 400 BRY V 07:39 400 CLM V 07:42 400 UTELA V 07:42 400 KOPOR V 07:48 400 MTD V 07:48 400 NURMO V 07:50 400 CMB V 07:54 400 VEKIN V 07:55 400 ADUTO V 07:56 400 FERDI V 07:59 400 "
Rejeu 1174038127.61372 "LayerEvent Flight=9631 Layer=S Mode=In"
Rejeu 1174038127.6151 "SectorEvent Flight=9631 Sector_Out=-- Sector_In=D3"
Rejeu 1174038127.61654 "TrackMovedEvent Flight=9631 CallSign=KLM588 Ssr=4055 Sector=D3 Layers=S X=246.09 Y=-420.50 Vx=-76 Vy=451 Afl=380 Rate=0 Heading=350 GroundSpeed=457 Tendency=0 Time=06:28:00"
Rejeu 1174038127.61802 "PlnEvent Flight=9904 Time=06:28:00 CallSign=BIE576A AircraftType=A321 Ssr=7642 Speed=459 Rfl=330 Dep=LFPG Arr=DTTJ Rvsm=TRUE Tcas=TA_RA Adsb=YES List=LPG V 06:01 1 WDG V 06:02 22 AELDG V 06:11 200 EDOXA V 06:11 270 ERIXU V 06:12 294 ERTOK V 06:18 310 ETAMO V 06:24 310 VALKU V 06:30 330 ADATU V 06:34 330 OLRAK V 06:39 330 BADAM V 06:45 330 FJR V 06:49 330 DIVKO V 06:54 330 TINOT V 06:58 330 LARAP V 07:06 330 NEMUR V 07:13 330 REKTO V 07:15 330 RISGA V 07:19 330 ALG V 07:20 330 "
Rejeu 1174038127.61986 "LayerEvent Flight=9904 Layer=S Mode=In"
Rejeu 1174038127.62137 "SectorEvent Flight=9904 Sector_Out=-- Sector_In=T2"
Rejeu 1174038127.62346 "TrackMovedEvent Flight=9904 CallSign=BIE576A Ssr=7642 Sector=T2 Layers=S X=113.42 Y=-41.48 Vx=87 Vy=-493 Afl=329 Rate=416 Heading=170 GroundSpeed=501 Tendency=1 Time=06:28:00"
Rejeu 1174038127.62555 "ClockDatas Time=06:28:00 Rate=1.0 Bs=0 Stop=1"
Rejeu 1174038127.62712 "DataBaseInfos FlightDisplayIIPP1 Nb=0 List="
Rejeu 1174038127.62877 "DataBaseInfos FlightDisplayIIPP1 Nb=22 List=671,AF582PZ,TRUE,TA_RA,YES 493,DAL32,TRUE,TA_RA,YES 2130,FCA450,TRUE,TA_RA,YES 420,EZY5063,TRUE,TA_RA,YES 537,AF534BH,TRUE,TA_RA,YES 966,EOL610,TRUE,TA_RA,YES 2581,CSA6746,TRUE,TA_RA,YES 374,AEU241,TRUE,TA_RA,YES 466,BZ809KX,TRUE,TA_RA,YES 510,EZY3101,TRUE,TA_RA,YES 649,TRA6087,TRUE,TA_RA,YES 817,EIN54H,TRUE,TA_RA,YES 1168,DAL82,TRUE,TA_RA,YES 2262,FCA774,TRUE,TA_RA,YES 4117,AEU437,TRUE,TA_RA,YES 797,IBE3475,TRUE,TA_RA,YES 860,SSV5070,TRUE,TA_RA,YES 995,SNB469,TRUE,TA_RA,YES 2097,KLM1263,TRUE,TA_RA,YES 2220,CSA6720,TRUE,TA_RA,YES 2431,CSA6662,TRUE,TA_RA,YES 9965,TAR725,TRUE,TA_RA,YES "
Rejeu 1174038127.63105 "ClockDatas Time=06:28:00 Rate=1.0 Bs=0 Stop=1"
Rejeu 1174038127.63295 "DataBaseInfos FlightDisplayIIPP1 Nb=0 List="
Rejeu 1174038127.63458 "DataBaseInfos FlightListIIPP1 Nb=22 List=671,AF582PZ 493,DAL32 2130,FCA450 420,EZY5063 537,AF534BH 966,EOL610 2581,CSA6746 374,AEU241 466,BZ809KX 510,EZY3101 649,TRA6087 817,EIN54H 1168,DAL82 2262,FCA774 4117,AEU437 797,IBE3475 860,SSV5070 995,SNB469 2097,KLM1263 2220,CSA6720 2431,CSA6662 9965,TAR725 "
Rejeu 1174038127.63622 "DataBaseInfos FlightListIIPP1 Nb=0 List="
Rejeu 1174038127.63788 "DataBaseInfos FlightListIIPP1 Nb=22 List=671,AF582PZ 493,DAL32 2130,FCA450 420,EZY5063 537,AF534BH 966,EOL610 2581,CSA6746 374,AEU241 466,BZ809KX 510,EZY3101 649,TRA6087 817,EIN54H 1168,DAL82 2262,FCA774 4117,AEU437 797,IBE3475 860,SSV5070 995,SNB469 2097,KLM1263 2220,CSA6720 2431,CSA6662 9965,TAR725 "
Rejeu 1174038127.63946 "DataBaseInfos FlightListIIPP1 Nb=0 List="
RadarGL:bordeaux:IIPP1:PP1 1174038127.64242 "GetStrip MsgName=RadarGL_2405 Flight=2405 Sector=B1"
RadarGL:bordeaux:IIPP1:PP1 1174038127.64415 "GetStrip MsgName=RadarGL_2408 Flight=2408 Sector=F2"
RadarGL:bordeaux:IIPP1:PP1 1174038127.64578 "GetStrip MsgName=RadarGL_2431 Flight=2431 Sector=G2"
RadarGL:bordeaux:IIPP1:PP1 1174038127.64755 "GetStrip MsgName=RadarGL_2581 Flight=2581 Sector=T3"
RadarGL:bordeaux:IIPP1:PP1 1174038127.64929 "GetStrip MsgName=RadarGL_2691 Flight=2691 Sector=F2"
RadarGL:bordeaux:IIPP1:PP1 1174038127.65096 "GetStrip MsgName=RadarGL_3140 Flight=3140 Sector=4K"
RadarGL:bordeaux:IIPP1:PP1 1174038127.65266 "GetStrip MsgName=RadarGL_3146 Flight=3146 Sector=F2"
RadarGL:bordeaux:IIPP1:PP1 1174038127.6543 "GetStrip MsgName=RadarGL_3198 Flight=3198 Sector=B2"
RadarGL:bordeaux:IIPP1:PP1 1174038127.65604 "GetStrip MsgName=RadarGL_3342 Flight=3342 Sector=K1"
RadarGL:bordeaux:IIPP1:PP1 1174038127.65778 "GetStrip MsgName=RadarGL_3412 Flight=3412 Sector=GV"
RadarGL:bordeaux:IIPP1:PP1 1174038127.6595 "GetStrip MsgName=RadarGL_3499 Flight=3499 Sector=F1"
RadarGL:bordeaux:IIPP1:PP1 1174038127.66121 "GetStrip MsgName=RadarGL_3557 Flight=3557 Sector=B3"
RadarGL:bordeaux:IIPP1:PP1 1174038127.66318 "GetStrip MsgName=RadarGL_3620 Flight=3620 Sector=M3"
RadarGL:bordeaux:IIPP1:PP1 1174038127.66493 "GetStrip MsgName=RadarGL_3663 Flight=3663 Sector=E1"
RadarGL:bordeaux:IIPP1:PP1 1174038127.66701 "GetStrip MsgName=RadarGL_3691 Flight=3691 Sector=F2"
RadarGL:bordeaux:IIPP1:PP1 1174038127.66918 "GetStrip MsgName=RadarGL_3886 Flight=3886 Sector=M2"
RadarGL:bordeaux:IIPP1:PP1 1174038127.67118 "GetStrip MsgName=RadarGL_3926 Flight=3926 Sector=A2"
RadarGL:bordeaux:IIPP1:PP1 1174038127.67295 "GetStrip MsgName=RadarGL_4117 Flight=4117 Sector=E2"
RadarGL:bordeaux:IIPP1:PP1 1174038127.67507 "GetStrip MsgName=RadarGL_9302 Flight=9302 Sector=H2"
RadarGL:bordeaux:IIPP1:PP1 1174038127.67681 "GetStrip MsgName=RadarGL_9436 Flight=9436 Sector=H2"
RadarGL:bordeaux:IIPP1:PP1 1174038127.67882 "GetStrip MsgName=RadarGL_9631 Flight=9631 Sector=D3"
RadarGL:bordeaux:IIPP1:PP1 1174038127.6806 "GetStrip MsgName=RadarGL_9904 Flight=9904 Sector=T2"
RadarGL:bordeaux:IIPP2:PP2 1174038127.68257 "GetStrip MsgName=RadarGL_3663 Flight=3663 Sector=E1"
RadarGL:bordeaux:IIPP2:PP2 1174038127.68467 "GetStrip MsgName=RadarGL_3691 Flight=3691 Sector=F2"
RadarGL:bordeaux:IIPP2:PP2 1174038127.68649 "GetStrip MsgName=RadarGL_3886 Flight=3886 Sector=M2"
RadarGL:bordeaux:IIPP2:PP2 1174038127.68824 "GetStrip MsgName=RadarGL_3926 Flight=3926 Sector=A2"
RadarGL:bordeaux:IIPP2:PP2 1174038127.69 "GetStrip MsgName=RadarGL_4117 Flight=4117 Sector=E2"
RadarGL:bordeaux:IIPP2:PP2 1174038127.69177 "GetStrip MsgName=RadarGL_9302 Flight=9302 Sector=H2"
RadarGL:bordeaux:IIPP2:PP2 1174038127.69349 "GetStrip MsgName=RadarGL_9436 Flight=9436 Sector=H2"
RadarGL:bordeaux:IIPP2:PP2 1174038127.69531 "GetStrip MsgName=RadarGL_9631 Flight=9631 Sector=D3"
RadarGL:bordeaux:IIPP2:PP2 1174038127.69712 "GetStrip MsgName=RadarGL_9904 Flight=9904 Sector=T2"
FlightList:bordeaux:IIPP1:PP1 1174038127.69899 "GetDataBaseInfos MsgName=FlightListIIPP1 Cond=(Sector=T3) Select=CallSign"
FlightList:bordeaux:IIPP1:PP1 1174038127.70079 "GetDataBaseInfos MsgName=FlightListIIPP1 Cond=(Sector=--) Select=CallSign"
FlightList:bordeaux:IIPP1:PP1 1174038127.70258 "GetDataBaseInfos MsgName=FlightListIIPP1 Cond=(Sector=T3) Select=CallSign"
FlightList:bordeaux:IIPP1:PP1 1174038127.70441 "GetDataBaseInfos MsgName=FlightListIIPP1 Cond=(Sector=--) Select=CallSign"
FlightList:bordeaux:IIPP1:PP1 1174038127.70629 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=671"
FlightList:bordeaux:IIPP1:PP1 1174038127.70817 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=493"
FlightList:bordeaux:IIPP1:PP1 1174038127.70993 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=2130"
FlightList:bordeaux:IIPP1:PP1 1174038127.7121 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=420"
FlightList:bordeaux:IIPP1:PP1 1174038127.71456 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=537"
FlightList:bordeaux:IIPP1:PP1 1174038127.71676 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=966"
FlightList:bordeaux:IIPP1:PP1 1174038127.71881 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=2581"
FlightList:bordeaux:IIPP1:PP1 1174038127.72104 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=374"
FlightList:bordeaux:IIPP1:PP1 1174038127.72324 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=466"
FlightList:bordeaux:IIPP1:PP1 1174038127.72511 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=510"
FlightList:bordeaux:IIPP1:PP1 1174038127.72697 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=649"
FlightList:bordeaux:IIPP1:PP1 1174038127.72882 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=817"
FlightList:bordeaux:IIPP1:PP1 1174038127.73066 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=1168"
FlightList:bordeaux:IIPP1:PP1 1174038127.73268 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=2262"
FlightList:bordeaux:IIPP1:PP1 1174038127.7344 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=4117"
FlightList:bordeaux:IIPP1:PP1 1174038127.73609 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=797"
FlightList:bordeaux:IIPP1:PP1 1174038127.73778 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=860"
FlightList:bordeaux:IIPP1:PP1 1174038127.73951 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=995"
FlightList:bordeaux:IIPP1:PP1 1174038127.7413 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=2097"
FlightList:bordeaux:IIPP1:PP1 1174038127.7431 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=2220"
FlightList:bordeaux:IIPP1:PP1 1174038127.74508 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=2431"
FlightList:bordeaux:IIPP1:PP1 1174038127.74682 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=9965"
FlightList:bordeaux:IIPP1:PP1 1174038127.74849 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=671"
FlightList:bordeaux:IIPP1:PP1 1174038127.75024 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=493"
FlightList:bordeaux:IIPP1:PP1 1174038127.752 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=2130"
FlightList:bordeaux:IIPP1:PP1 1174038127.75378 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=420"
FlightList:bordeaux:IIPP1:PP1 1174038127.75593 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=537"
FlightList:bordeaux:IIPP1:PP1 1174038127.75815 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=966"
FlightList:bordeaux:IIPP1:PP1 1174038127.76045 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=2581"
FlightList:bordeaux:IIPP1:PP1 1174038127.7624 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=374"
FlightList:bordeaux:IIPP1:PP1 1174038127.76462 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=466"
FlightList:bordeaux:IIPP1:PP1 1174038127.76649 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=510"
FlightList:bordeaux:IIPP1:PP1 1174038127.76861 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=649"
FlightList:bordeaux:IIPP1:PP1 1174038127.77044 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=817"
FlightList:bordeaux:IIPP1:PP1 1174038127.77224 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=1168"
FlightList:bordeaux:IIPP1:PP1 1174038127.77411 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=2262"
FlightList:bordeaux:IIPP1:PP1 1174038127.77597 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=4117"
FlightList:bordeaux:IIPP1:PP1 1174038127.77783 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=797"
FlightList:bordeaux:IIPP1:PP1 1174038127.77964 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=860"
FlightList:bordeaux:IIPP1:PP1 1174038127.78145 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=995"
FlightList:bordeaux:IIPP1:PP1 1174038127.78329 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=2097"
FlightList:bordeaux:IIPP1:PP1 1174038127.78519 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=2220"
FlightList:bordeaux:IIPP1:PP1 1174038127.78706 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=2431"
FlightList:bordeaux:IIPP1:PP1 1174038127.78903 "GetSectorsInfos MsgName=FlightListIIPP1 Flight=9965"
Rejeu 1174038127.79113 "SectorsInfos FlightListIIPP1 Flight=671 List=OD 06:16 06:24 05:51 260 DO 06:24 06:25 06:04 260 P1 06:25 06:28 06:07 270 P2 06:28 06:36 06:16 320 T2 06:36 06:38 06:26 350 T3 06:38 06:48 06:28 350 W2 06:48 06:54 06:35 350 A2 06:54 07:00 06:44 350 B2 07:00 07:07 06:50 310 E2 07:07 07:15 06:57 250 E1 07:15 07:16 06:57 240 BT 07:16 07:17 07:00 200 KB 07:17 07:28 07:04 0 "
Rejeu 1174038127.79309 "SectorsInfos FlightListIIPP1 Flight=493 List=OU 05:43 05:56 05:31 370 QU 05:56 06:07 05:46 370 NU 06:07 06:24 05:57 370 R3 06:24 06:32 06:12 370 L3 06:32 06:39 06:20 370 T3 06:39 06:48 06:25 370 W3 06:48 06:53 06:35 370 A3 06:53 06:59 06:43 370 B3 06:59 07:05 06:49 370 E3 07:05 07:12 06:55 370 E2 07:12 07:14 06:55 370 K2 07:14 07:21 07:04 310 K1 07:21 07:22 07:04 300 RO 07:22 07:26 07:09 0 "
Rejeu 1174038127.79495 "SectorsInfos FlightListIIPP1 Flight=2130 List=ZI 06:04 06:21 05:52 370 P2 06:21 06:26 06:09 370 P3 06:26 06:33 06:14 370 T3 06:33 06:46 06:23 370 H3 06:46 06:54 06:36 370 M3 06:54 07:00 06:41 370 F3 07:00 07:11 06:50 370 D3 07:11 07:20 06:58 370 RO 07:20 07:25 07:08 0 "
Rejeu 1174038127.79679 "SectorsInfos FlightListIIPP1 Flight=420 List=EG 05:56 05:57 05:51 370 UZ 05:57 06:03 05:51 370 ZS 06:03 06:05 05:51 370 ZI 06:05 06:06 05:51 370 ZU 06:06 06:11 05:51 370 P3 06:11 06:24 05:59 370 T3 06:24 06:34 06:14 370 W3 06:34 06:43 06:21 370 W2 06:43 06:44 06:21 370 A2 06:44 06:45 06:30 350 A1 06:45 06:48 06:30 240 ST 06:48 06:54 06:38 140 NN 06:54 07:05 06:44 0 "
Rejeu 1174038127.79899 "SectorsInfos FlightListIIPP1 Flight=537 List=OD 06:06 06:14 05:41 240 DO 06:14 06:15 05:54 240 P1 06:15 06:19 05:58 250 P2 06:19 06:27 06:07 320 T2 06:27 06:29 06:17 330 T3 06:29 06:37 06:18 350 W2 06:37 06:43 06:24 350 A2 06:43 06:49 06:33 330 B2 06:49 06:56 06:39 330 E2 06:56 07:04 06:46 280 E1 07:04 07:09 06:46 170 AJ 07:09 07:10 06:57 160 KJ 07:10 07:18 06:57 0 "
Rejeu 1174038127.80119 "SectorsInfos FlightListIIPP1 Flight=966 List=RD 06:12 06:21 05:47 280 DG 06:21 06:23 06:01 280 P1 06:23 06:34 06:09 280 P2 06:34 06:43 06:21 340 T3 06:43 06:57 06:32 350 W2 06:57 07:07 06:43 310 A2 07:07 07:11 06:55 250 A1 07:11 07:14 06:55 190 ST 07:14 07:21 07:04 40 NN 07:21 07:22 07:11 40 NR 07:22 07:23 07:11 0 "
Rejeu 1174038127.80282 "SectorsInfos FlightListIIPP1 Flight=2581 List=DU 05:50 05:56 05:45 350 3M 05:56 06:04 05:51 350 GV 06:04 06:10 05:59 350 3K 06:10 06:19 06:05 350 G2 06:19 06:27 06:05 350 T3 06:27 06:41 06:15 0 X2 06:41 06:53 06:29 0 Z2 06:53 07:02 06:43 0 ZA 07:02 07:12 06:49 0 "
Rejeu 1174038127.80458 "SectorsInfos FlightListIIPP1 Flight=374 List=EG 05:43 05:44 05:38 370 UZ 05:44 05:50 05:38 370 ZS 05:50 05:52 05:38 370 ZI 05:52 05:53 05:38 370 ZU 05:53 06:01 05:38 370 P3 06:01 06:14 05:49 370 T3 06:14 06:23 06:04 370 W3 06:23 06:28 06:10 370 A3 06:28 06:35 06:18 350 B3 06:35 06:40 06:25 310 B2 06:40 06:41 06:25 310 E2 06:41 06:48 06:31 190 E1 06:48 06:49 06:31 180 BT 06:49 06:50 06:34 170 KB 06:50 06:57 06:40 0 "
Rejeu 1174038127.80688 "SectorsInfos FlightListIIPP1 Flight=466 List=QE 05:41 05:42 05:20 350 TB 05:42 05:50 05:32 350 UR 05:50 06:01 05:40 350 ZS 06:01 06:08 05:50 350 P2 06:08 06:22 05:56 350 T3 06:22 06:34 06:12 350 W2 06:34 06:39 06:21 350 A2 06:39 06:46 06:29 330 B2 06:46 06:53 06:36 310 E2 06:53 07:01 06:43 270 E1 07:01 07:02 06:43 260 BT 07:02 07:03 06:47 0 KB 07:03 07:15 06:51 0 "
Rejeu 1174038127.80843 "SectorsInfos FlightListIIPP1 Flight=510 List=EG 06:11 06:12 06:06 370 UZ 06:12 06:18 06:06 370 ZS 06:18 06:20 06:06 370 ZI 06:20 06:21 06:06 370 ZU 06:21 06:26 06:06 370 P3 06:26 06:39 06:14 370 T3 06:39 06:50 06:29 350 W2 06:50 06:57 06:29 320 A2 06:57 07:00 06:45 260 A1 07:00 07:03 06:45 190 ST 07:03 07:09 06:53 80 NN 07:09 07:20 06:59 0 "
Rejeu 1174038127.80994 "SectorsInfos FlightListIIPP1 Flight=649 List=EY 06:06 06:07 06:01 350 XR 06:07 06:14 06:01 350 ZI 06:14 06:23 06:03 350 P2 06:23 06:36 06:11 350 T3 06:36 06:46 06:26 350 W2 06:46 06:53 06:33 320 A2 06:53 06:57 06:41 250 A1 06:57 06:59 06:41 190 ST 06:59 07:10 06:49 0 "
Rejeu 1174038127.81149 "SectorsInfos FlightListIIPP1 Flight=817 List=ZU 06:16 06:33 06:04 370 P3 06:33 06:46 06:21 370 T3 06:46 06:55 06:36 370 W3 06:55 07:03 06:42 320 W2 07:03 07:04 06:42 310 A2 07:04 07:06 06:50 260 A1 07:06 07:09 06:50 190 ST 07:09 07:14 06:59 100 NN 07:14 07:26 07:04 0 "
Rejeu 1174038127.81334 "SectorsInfos FlightListIIPP1 Flight=1168 List=OU 05:01 05:14 04:49 370 QU 05:14 05:25 05:04 370 NU 05:25 05:43 05:15 370 R3 05:43 05:51 05:31 370 L3 05:51 05:58 05:39 370 T3 05:58 06:05 05:44 370 W3 06:05 06:13 05:52 340 W2 06:13 06:14 05:52 320 A2 06:14 06:15 05:59 290 A1 06:15 06:17 05:59 270 ST 06:17 06:25 06:07 140 NN 06:25 06:36 06:15 0 "
Rejeu 1174038127.81481 "SectorsInfos FlightListIIPP1 Flight=2262 List=ZS 06:06 06:15 05:54 350 ZI 06:15 06:16 05:55 350 ZS 06:16 06:22 05:55 350 P2 06:22 06:35 06:10 350 T3 06:35 06:47 06:25 350 H2 06:47 06:56 06:37 350 M2 06:56 07:03 06:43 350 F2 07:03 07:13 06:53 350 DH 07:13 07:23 07:00 350 RO 07:23 07:28 07:11 0 "
Rejeu 1174038127.81631 "SectorsInfos FlightListIIPP1 Flight=4117 List=ZU 05:27 05:44 05:15 390 P3 05:44 05:57 05:32 390 T3 05:57 06:07 05:47 390 W3 06:07 06:13 05:54 390 A3 06:13 06:19 06:03 390 B3 06:19 06:24 06:09 350 B2 06:24 06:26 06:09 310 E2 06:26 06:33 06:16 140 E1 06:33 06:34 06:16 130 BT 06:34 06:35 06:19 120 KB 06:35 06:40 06:23 0 "
Rejeu 1174038127.81787 "SectorsInfos FlightListIIPP1 Flight=797 List=3K 06:24 06:26 06:19 330 G2 06:26 06:35 06:19 350 T3 06:35 06:49 06:23 0 X2 06:49 07:01 06:37 0 Z2 07:01 07:10 06:51 0 ZA 07:10 07:20 06:57 0 "
Rejeu 1174038127.8195 "SectorsInfos FlightListIIPP1 Flight=860 List=OU 05:32 05:46 05:20 390 QU 05:46 05:57 05:36 390 NU 05:57 06:19 05:47 390 R3 06:19 06:25 06:07 390 L3 06:25 06:32 06:13 390 T3 06:32 06:41 06:18 390 W3 06:41 06:47 06:28 390 A3 06:47 06:53 06:37 390 B3 06:53 07:00 06:43 390 E3 07:00 07:07 06:50 380 E2 07:07 07:09 06:50 350 K2 07:09 07:16 06:59 270 K1 07:16 07:17 06:59 270 RO 07:17 07:21 07:04 0 "
Rejeu 1174038127.82109 "SectorsInfos FlightListIIPP1 Flight=995 List=DU 06:28 06:35 06:23 370 4M 06:35 06:43 06:30 370 GV 06:43 06:48 06:38 370 4K 06:48 06:58 06:43 370 G3 06:58 07:07 06:43 370 T3 07:07 07:21 06:55 0 X3 07:21 07:33 07:09 0 Z3 07:33 07:43 07:23 0 ZA 07:43 07:53 07:30 0 "
Rejeu 1174038127.82259 "SectorsInfos FlightListIIPP1 Flight=2097 List=EY 05:45 05:46 05:40 350 UR 05:46 05:48 05:40 350 XR 05:48 05:57 05:40 350 ZS 05:57 06:03 05:46 350 P2 06:03 06:17 05:51 350 T3 06:17 06:28 06:07 350 W2 06:28 06:36 06:15 320 A2 06:36 06:40 06:24 260 A1 06:40 06:42 06:24 200 ST 06:42 06:48 06:32 80 NN 06:48 06:59 06:38 0 "
Rejeu 1174038127.82417 "SectorsInfos FlightListIIPP1 Flight=2220 List=DU 05:43 05:49 05:38 350 3M 05:49 05:57 05:44 350 GV 05:57 06:02 05:52 350 3K 06:02 06:11 05:57 350 G2 06:11 06:20 05:57 350 T3 06:20 06:32 06:08 0 X2 06:32 06:43 06:20 0 Z2 06:43 06:52 06:33 0 ZA 06:52 07:02 06:39 0 "
Rejeu 1174038127.8257 "SectorsInfos FlightListIIPP1 Flight=2431 List=DU 05:54 06:01 05:49 350 3M 06:01 06:09 05:56 350 GV 06:09 06:14 06:04 350 3K 06:14 06:24 06:09 350 G2 06:24 06:33 06:09 350 T3 06:33 06:47 06:21 0 X2 06:47 06:59 06:35 0 Z2 06:59 07:01 06:49 0 Z1 07:01 07:11 06:49 0 PL 07:11 07:16 06:58 0 "
Rejeu 1174038127.82729 "SectorsInfos FlightListIIPP1 Flight=9965 List=OD 06:18 06:26 05:53 330 DO 06:26 06:27 06:06 330 P1 06:27 06:35 06:09 340 P2 06:35 06:42 06:23 350 T3 06:42 06:55 06:32 350 H2 06:55 07:03 06:45 350 M2 07:03 07:10 06:50 350 F2 07:10 07:20 07:00 350 DH 07:20 07:30 07:07 350 RO 07:30 07:43 07:18 0 "
Rejeu 1174038127.82891 "SectorsInfos FlightListIIPP1 Flight=671 List=OD 06:16 06:24 05:51 260 DO 06:24 06:25 06:04 260 P1 06:25 06:28 06:07 270 P2 06:28 06:36 06:16 320 T2 06:36 06:38 06:26 350 T3 06:38 06:48 06:28 350 W2 06:48 06:54 06:35 350 A2 06:54 07:00 06:44 350 B2 07:00 07:07 06:50 310 E2 07:07 07:15 06:57 250 E1 07:15 07:16 06:57 240 BT 07:16 07:17 07:00 200 KB 07:17 07:28 07:04 0 "
Rejeu 1174038127.83046 "SectorsInfos FlightListIIPP1 Flight=493 List=OU 05:43 05:56 05:31 370 QU 05:56 06:07 05:46 370 NU 06:07 06:24 05:57 370 R3 06:24 06:32 06:12 370 L3 06:32 06:39 06:20 370 T3 06:39 06:48 06:25 370 W3 06:48 06:53 06:35 370 A3 06:53 06:59 06:43 370 B3 06:59 07:05 06:49 370 E3 07:05 07:12 06:55 370 E2 07:12 07:14 06:55 370 K2 07:14 07:21 07:04 310 K1 07:21 07:22 07:04 300 RO 07:22 07:26 07:09 0 "
Rejeu 1174038127.83193 "SectorsInfos FlightListIIPP1 Flight=2130 List=ZI 06:04 06:21 05:52 370 P2 06:21 06:26 06:09 370 P3 06:26 06:33 06:14 370 T3 06:33 06:46 06:23 370 H3 06:46 06:54 06:36 370 M3 06:54 07:00 06:41 370 F3 07:00 07:11 06:50 370 D3 07:11 07:20 06:58 370 RO 07:20 07:25 07:08 0 "
Rejeu 1174038127.83341 "SectorsInfos FlightListIIPP1 Flight=420 List=EG 05:56 05:57 05:51 370 UZ 05:57 06:03 05:51 370 ZS 06:03 06:05 05:51 370 ZI 06:05 06:06 05:51 370 ZU 06:06 06:11 05:51 370 P3 06:11 06:24 05:59 370 T3 06:24 06:34 06:14 370 W3 06:34 06:43 06:21 370 W2 06:43 06:44 06:21 370 A2 06:44 06:45 06:30 350 A1 06:45 06:48 06:30 240 ST 06:48 06:54 06:38 140 NN 06:54 07:05 06:44 0 "
Rejeu 1174038127.83501 "SectorsInfos FlightListIIPP1 Flight=537 List=OD 06:06 06:14 05:41 240 DO 06:14 06:15 05:54 240 P1 06:15 06:19 05:58 250 P2 06:19 06:27 06:07 320 T2 06:27 06:29 06:17 330 T3 06:29 06:37 06:18 350 W2 06:37 06:43 06:24 350 A2 06:43 06:49 06:33 330 B2 06:49 06:56 06:39 330 E2 06:56 07:04 06:46 280 E1 07:04 07:09 06:46 170 AJ 07:09 07:10 06:57 160 KJ 07:10 07:18 06:57 0 "
Rejeu 1174038127.83664 "SectorsInfos FlightListIIPP1 Flight=966 List=RD 06:12 06:21 05:47 280 DG 06:21 06:23 06:01 280 P1 06:23 06:34 06:09 280 P2 06:34 06:43 06:21 340 T3 06:43 06:57 06:32 350 W2 06:57 07:07 06:43 310 A2 07:07 07:11 06:55 250 A1 07:11 07:14 06:55 190 ST 07:14 07:21 07:04 40 NN 07:21 07:22 07:11 40 NR 07:22 07:23 07:11 0 "
Rejeu 1174038127.8384 "SectorsInfos FlightListIIPP1 Flight=2581 List=DU 05:50 05:56 05:45 350 3M 05:56 06:04 05:51 350 GV 06:04 06:10 05:59 350 3K 06:10 06:19 06:05 350 G2 06:19 06:27 06:05 350 T3 06:27 06:41 06:15 0 X2 06:41 06:53 06:29 0 Z2 06:53 07:02 06:43 0 ZA 07:02 07:12 06:49 0 "
Rejeu 1174038127.8402 "SectorsInfos FlightListIIPP1 Flight=374 List=EG 05:43 05:44 05:38 370 UZ 05:44 05:50 05:38 370 ZS 05:50 05:52 05:38 370 ZI 05:52 05:53 05:38 370 ZU 05:53 06:01 05:38 370 P3 06:01 06:14 05:49 370 T3 06:14 06:23 06:04 370 W3 06:23 06:28 06:10 370 A3 06:28 06:35 06:18 350 B3 06:35 06:40 06:25 310 B2 06:40 06:41 06:25 310 E2 06:41 06:48 06:31 190 E1 06:48 06:49 06:31 180 BT 06:49 06:50 06:34 170 KB 06:50 06:57 06:40 0 "
Rejeu 1174038127.84175 "SectorsInfos FlightListIIPP1 Flight=466 List=QE 05:41 05:42 05:20 350 TB 05:42 05:50 05:32 350 UR 05:50 06:01 05:40 350 ZS 06:01 06:08 05:50 350 P2 06:08 06:22 05:56 350 T3 06:22 06:34 06:12 350 W2 06:34 06:39 06:21 350 A2 06:39 06:46 06:29 330 B2 06:46 06:53 06:36 310 E2 06:53 07:01 06:43 270 E1 07:01 07:02 06:43 260 BT 07:02 07:03 06:47 0 KB 07:03 07:15 06:51 0 "
Rejeu 1174038127.84371 "SectorsInfos FlightListIIPP1 Flight=510 List=EG 06:11 06:12 06:06 370 UZ 06:12 06:18 06:06 370 ZS 06:18 06:20 06:06 370 ZI 06:20 06:21 06:06 370 ZU 06:21 06:26 06:06 370 P3 06:26 06:39 06:14 370 T3 06:39 06:50 06:29 350 W2 06:50 06:57 06:29 320 A2 06:57 07:00 06:45 260 A1 07:00 07:03 06:45 190 ST 07:03 07:09 06:53 80 NN 07:09 07:20 06:59 0 "
Rejeu 1174038127.84571 "SectorsInfos FlightListIIPP1 Flight=649 List=EY 06:06 06:07 06:01 350 XR 06:07 06:14 06:01 350 ZI 06:14 06:23 06:03 350 P2 06:23 06:36 06:11 350 T3 06:36 06:46 06:26 350 W2 06:46 06:53 06:33 320 A2 06:53 06:57 06:41 250 A1 06:57 06:59 06:41 190 ST 06:59 07:10 06:49 0 "
Rejeu 1174038127.84737 "SectorsInfos FlightListIIPP1 Flight=817 List=ZU 06:16 06:33 06:04 370 P3 06:33 06:46 06:21 370 T3 06:46 06:55 06:36 370 W3 06:55 07:03 06:42 320 W2 07:03 07:04 06:42 310 A2 07:04 07:06 06:50 260 A1 07:06 07:09 06:50 190 ST 07:09 07:14 06:59 100 NN 07:14 07:26 07:04 0 "
Rejeu 1174038127.84933 "SectorsInfos FlightListIIPP1 Flight=1168 List=OU 05:01 05:14 04:49 370 QU 05:14 05:25 05:04 370 NU 05:25 05:43 05:15 370 R3 05:43 05:51 05:31 370 L3 05:51 05:58 05:39 370 T3 05:58 06:05 05:44 370 W3 06:05 06:13 05:52 340 W2 06:13 06:14 05:52 320 A2 06:14 06:15 05:59 290 A1 06:15 06:17 05:59 270 ST 06:17 06:25 06:07 140 NN 06:25 06:36 06:15 0 "
Rejeu 1174038127.85152 "SectorsInfos FlightListIIPP1 Flight=2262 List=ZS 06:06 06:15 05:54 350 ZI 06:15 06:16 05:55 350 ZS 06:16 06:22 05:55 350 P2 06:22 06:35 06:10 350 T3 06:35 06:47 06:25 350 H2 06:47 06:56 06:37 350 M2 06:56 07:03 06:43 350 F2 07:03 07:13 06:53 350 DH 07:13 07:23 07:00 350 RO 07:23 07:28 07:11 0 "
Rejeu 1174038127.85312 "SectorsInfos FlightListIIPP1 Flight=4117 List=ZU 05:27 05:44 05:15 390 P3 05:44 05:57 05:32 390 T3 05:57 06:07 05:47 390 W3 06:07 06:13 05:54 390 A3 06:13 06:19 06:03 390 B3 06:19 06:24 06:09 350 B2 06:24 06:26 06:09 310 E2 06:26 06:33 06:16 140 E1 06:33 06:34 06:16 130 BT 06:34 06:35 06:19 120 KB 06:35 06:40 06:23 0 "
Rejeu 1174038127.85471 "SectorsInfos FlightListIIPP1 Flight=797 List=3K 06:24 06:26 06:19 330 G2 06:26 06:35 06:19 350 T3 06:35 06:49 06:23 0 X2 06:49 07:01 06:37 0 Z2 07:01 07:10 06:51 0 ZA 07:10 07:20 06:57 0 "
Rejeu 1174038127.85645 "SectorsInfos FlightListIIPP1 Flight=860 List=OU 05:32 05:46 05:20 390 QU 05:46 05:57 05:36 390 NU 05:57 06:19 05:47 390 R3 06:19 06:25 06:07 390 L3 06:25 06:32 06:13 390 T3 06:32 06:41 06:18 390 W3 06:41 06:47 06:28 390 A3 06:47 06:53 06:37 390 B3 06:53 07:00 06:43 390 E3 07:00 07:07 06:50 380 E2 07:07 07:09 06:50 350 K2 07:09 07:16 06:59 270 K1 07:16 07:17 06:59 270 RO 07:17 07:21 07:04 0 "
Rejeu 1174038127.85845 "SectorsInfos FlightListIIPP1 Flight=995 List=DU 06:28 06:35 06:23 370 4M 06:35 06:43 06:30 370 GV 06:43 06:48 06:38 370 4K 06:48 06:58 06:43 370 G3 06:58 07:07 06:43 370 T3 07:07 07:21 06:55 0 X3 07:21 07:33 07:09 0 Z3 07:33 07:43 07:23 0 ZA 07:43 07:53 07:30 0 "
Rejeu 1174038127.86022 "SectorsInfos FlightListIIPP1 Flight=2097 List=EY 05:45 05:46 05:40 350 UR 05:46 05:48 05:40 350 XR 05:48 05:57 05:40 350 ZS 05:57 06:03 05:46 350 P2 06:03 06:17 05:51 350 T3 06:17 06:28 06:07 350 W2 06:28 06:36 06:15 320 A2 06:36 06:40 06:24 260 A1 06:40 06:42 06:24 200 ST 06:42 06:48 06:32 80 NN 06:48 06:59 06:38 0 "
Rejeu 1174038127.86194 "SectorsInfos FlightListIIPP1 Flight=2220 List=DU 05:43 05:49 05:38 350 3M 05:49 05:57 05:44 350 GV 05:57 06:02 05:52 350 3K 06:02 06:11 05:57 350 G2 06:11 06:20 05:57 350 T3 06:20 06:32 06:08 0 X2 06:32 06:43 06:20 0 Z2 06:43 06:52 06:33 0 ZA 06:52 07:02 06:39 0 "
Rejeu 1174038127.8634 "SectorsInfos FlightListIIPP1 Flight=2431 List=DU 05:54 06:01 05:49 350 3M 06:01 06:09 05:56 350 GV 06:09 06:14 06:04 350 3K 06:14 06:24 06:09 350 G2 06:24 06:33 06:09 350 T3 06:33 06:47 06:21 0 X2 06:47 06:59 06:35 0 Z2 06:59 07:01 06:49 0 Z1 07:01 07:11 06:49 0 PL 07:11 07:16 06:58 0 "
Rejeu 1174038127.86487 "SectorsInfos FlightListIIPP1 Flight=9965 List=OD 06:18 06:26 05:53 330 DO 06:26 06:27 06:06 330 P1 06:27 06:35 06:09 340 P2 06:35 06:42 06:23 350 T3 06:42 06:55 06:32 350 H2 06:55 07:03 06:45 350 M2 07:03 07:10 06:50 350 F2 07:10 07:20 07:00 350 DH 07:20 07:30 07:07 350 RO 07:30 07:43 07:18 0 "
FlightDisplay:bordeaux:IIPP1:PP1 1174038131.74568 "GetDataBaseInfos MsgName=FlightDisplayIIPP1 Cond=(Sector=--) Select=CallSign,Rvsm,Tcas,Adsb"
IvyMon 1174038139.16063 "ClockStart"
IvyMon 1174038139.16135 "ClockStart"
autoassume:BORD:P2:CR 1174038139.19467 "GetFlightsWithStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5489 Sector=T3"
autoassume:BORD:P2:CO 1174038139.22038 "GetFlightsWithStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5487 Sector=T3"
autoassume:BORD:P2:CR 1174038139.24449 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=671 Sector=T3"
Rejeu 1174038139.2456 "FlightsWithStrip /home/toccata/CRISTAL/bin/autoassume.pl_5489 Sector=T3 List=671 493 2130 420 537 860 2262 466 649 797 2097 2220 2581 2431 "
autoassume:BORD:P2:CR 1174038139.289 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=493 Sector=T3"
autoassume:BORD:P2:CO 1174038139.29021 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=671 Sector=T3"
Rejeu 1174038139.29136 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=671 Time=06:28:00 CallSign=AF582PZ AircraftType=A320 Ssr=3232 Speed=450 Rfl=350 Dep=LFPO Arr=LFKB Sector=T3 ExitSector=W2 Frequency=123.5 Efl=350 Tfl=350 List=LAKOB 06:33 310 TIS 06:41 350 LERGA 06:47 350 LATAM 06:50 350 "
autoassume:BORD:P2:CO 1174038139.29248 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=493 Sector=T3"
autoassume:BORD:P2:CR 1174038139.3389 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=2130 Sector=T3"
autoassume:BORD:P2:CO 1174038139.34014 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=2130 Sector=T3"
Rejeu 1174038139.34114 "FlightsWithStrip /home/toccata/CRISTAL/bin/autoassume.pl_5487 Sector=T3 List=671 493 2130 420 537 860 2262 466 649 797 2097 2220 2581 2431 "
Rejeu 1174038139.34224 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=493 Time=06:25:00 CallSign=DAL32 AircraftType=B763 Ssr=2041 Speed=490 Rfl=370 Dep=KCVG Arr=LIRF Sector=T3 ExitSector=W3 Frequency=123.5 Efl=370 Tfl=370 List=BEBIX 06:34 370 ADATU 06:41 370 LERGA 06:47 370 LATAM 06:49 370 "
autoassume:BORD:P2:CR 1174038139.43772 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=420 Sector=T3"
autoassume:BORD:P2:CO 1174038139.43894 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=420 Sector=T3"
Rejeu 1174038139.44029 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=2130 Time=06:23:30 CallSign=FCA450 AircraftType=B752 Ssr=7710 Speed=461 Rfl=350 Dep=EGCC Arr=DTMB Sector=T3 ExitSector=H3 Frequency=123.5 Efl=370 Tfl=370 List=ETAMO 06:29 370 VALKU 06:36 370 ADATU 06:39 370 OLRAK 06:45 370 AMLIR 06:48 370 "
autoassume:BORD:P2:CR 1174038139.65381 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=537 Sector=T3"
autoassume:BORD:P2:CO 1174038139.65486 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=537 Sector=T3"
Rejeu 1174038139.65585 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=420 Time=06:14:00 CallSign=EZY5063 AircraftType=A319 Ssr=6327 Speed=447 Rfl=370 Dep=EGKK Arr=LFMN Sector=T3 ExitSector=W3 Frequency=123.5 Efl=370 Tfl=370 List=KOTIS 06:19 370 KUKOR 06:24 370 TIS 06:30 370 LERGA 06:33 370 LATAM 06:35 370 "
GEODE:BORD:P2:CO 1174038139.65694 "PLN_POSITION:BORD:P2:671 REQUEST_COORD From=GEODE:BORD:P2:CO"
GEODE:BORD:P2:CR 1174038139.65796 "PLN_POSITION:BORD:P2:671 REQUEST_COORD From=GEODE:BORD:P2:CR"
autoassume:BORD:P2:CO 1174038139.65902 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=860 Sector=T3"
autoassume:BORD:P2:CR 1174038139.69083 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=860 Sector=T3"
GEODE:BORD:P2:CO 1174038139.74007 "PLN_POSITION:BORD:P2:671 REQUEST_COORD From=GEODE:BORD:P2:CO"
GEODE:BORD:P2:CR 1174038139.76279 "PLN_POSITION:BORD:P2:671 REQUEST_COORD From=GEODE:BORD:P2:CR"
autoassume:BORD:P2:CR 1174038139.76419 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=2262 Sector=T3"
autoassume:BORD:P2:CO 1174038139.76523 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=2262 Sector=T3"
GEODE:BORD:P2:CO 1174038139.76623 "PLN_POSITION:BORD:P2:493 REQUEST_COORD From=GEODE:BORD:P2:CO"
autoassume:BORD:P2:CR 1174038139.76735 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=466 Sector=T3"
autoassume:BORD:P2:CR 1174038139.76847 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=649 Sector=T3"
autoassume:BORD:P2:CR 1174038139.79376 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=797 Sector=T3"
autoassume:BORD:P2:CO 1174038139.79481 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=466 Sector=T3"
GEODE:BORD:P2:CO 1174038139.8447 "PLN_POSITION:BORD:P2:493 REQUEST_COORD From=GEODE:BORD:P2:CO"
GEODE:BORD:P2:CR 1174038139.84572 "PLN_POSITION:BORD:P2:493 REQUEST_COORD From=GEODE:BORD:P2:CR"
autoassume:BORD:P2:CR 1174038139.84713 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=2097 Sector=T3"
autoassume:BORD:P2:CO 1174038139.84821 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=649 Sector=T3"
GEODE:BORD:P2:CO 1174038139.84927 "PLN_POSITION:BORD:P2:2130 REQUEST_COORD From=GEODE:BORD:P2:CO"
autoassume:BORD:P2:CR 1174038139.85041 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=2220 Sector=T3"
autoassume:BORD:P2:CO 1174038139.85149 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=797 Sector=T3"
autoassume:BORD:P2:CO 1174038139.85287 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=2097 Sector=T3"
autoassume:BORD:P2:CO 1174038139.88295 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=2220 Sector=T3"
GEODE:BORD:P2:CR 1174038139.90913 "PLN_POSITION:BORD:P2:2130 REQUEST_COORD From=GEODE:BORD:P2:CR"
autoassume:BORD:P2:CO 1174038139.91056 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=2581 Sector=T3"
autoassume:BORD:P2:CO 1174038139.91172 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=2431 Sector=T3"
autoassume:BORD:P2:CO 1174038139.94161 "PLN_POSITION:BORD:P2:671 PLN_EVENT GlobalStatus=CREE Callsign=AF582PZ Model=A320 Departure=LFPO Destination=LFKB RFL=350 CurrentSSRCode=3232 PreviousSSRCode=3232 CFL=350 SS=--"
autoassume:BORD:P2:CO 1174038139.94283 "PLN_POSITION:BORD:P2:671 COORD_EFL_UPD Efl=350"
autoassume:BORD:P2:CO 1174038139.94507 "PLN_POSITION:BORD:P2:671 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CO 1174038139.98399 "PLN_POSITION:BORD:P2:671 PLN_EVENT GlobalStatus=EVL Callsign=AF582PZ Model=A320 Departure=LFPO Destination=LFKB RFL=350 CurrentSSRCode=3232 PreviousSSRCode=3232 CFL=350 SS=--"
autoassume:BORD:P2:CO 1174038139.98525 "PLN_POSITION:BORD:P2:671 ROUTE_UPD [126.930885249563,-4.67837782682273,0,LAKOB,0,1959-06-21,23580,SYSTEM][148.05894074553,-63.7576831335955,0,TIS,0,1959-06-21,24060,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,24420,SYSTEM][179.143811894318,-113.224888861974,0,LATAM,0,1959-06-21,24600,SYSTEM]"
autoassume:BORD:P2:CO 1174038139.98643 "PLN_POSITION:BORD:P2:671 PLN_EVENT GlobalStatus=ACT Callsign=AF582PZ Model=A320 Departure=LFPO Destination=LFKB RFL=350 CurrentSSRCode=3232 PreviousSSRCode=3232 CFL=350 SS=--"
autoassume:BORD:P2:CO 1174038140.00595 "PLN_POSITION:BORD:P2:671 COORD_PT_UPD Beacon=LERGA"
autoassume:BORD:P2:CO 1174038140.00715 "PLN_POSITION:BORD:P2:671 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CO 1174038140.07952 "PLN_POSITION:BORD:P2:493 PLN_EVENT GlobalStatus=CREE Callsign=DAL32 Model=B763 Departure=KCVG Destination=LIRF RFL=370 CurrentSSRCode=2041 PreviousSSRCode=2041 CFL=370 SS=--"
autoassume:BORD:P2:CR 1174038140.08084 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=2581 Sector=T3"
autoassume:BORD:P2:CO 1174038140.08187 "PLN_POSITION:BORD:P2:493 COORD_EFL_UPD Efl=370"
autoassume:BORD:P2:CR 1174038140.08302 "GetStrip MsgName=/home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=2431 Sector=T3"
autoassume:BORD:P2:CO 1174038140.08405 "PLN_POSITION:BORD:P2:493 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CO 1174038140.11197 "PLN_POSITION:BORD:P2:493 PLN_EVENT GlobalStatus=EVL Callsign=DAL32 Model=B763 Departure=KCVG Destination=LIRF RFL=370 CurrentSSRCode=2041 PreviousSSRCode=2041 CFL=370 SS=--"
autoassume:BORD:P2:CO 1174038140.11322 "PLN_POSITION:BORD:P2:493 ROUTE_UPD [58.3313569896079,-62.3965741848679,0,BEBIX,0,1959-06-21,23640,SYSTEM][118.802405617691,-85.9436552371062,0,ADATU,0,1959-06-21,24060,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,24420,SYSTEM][179.143811894318,-113.224888861974,0,LATAM,0,1959-06-21,24540,SYSTEM]"
autoassume:BORD:P2:CO 1174038140.11543 "PLN_POSITION:BORD:P2:493 PLN_EVENT GlobalStatus=ACT Callsign=DAL32 Model=B763 Departure=KCVG Destination=LIRF RFL=370 CurrentSSRCode=2041 PreviousSSRCode=2041 CFL=370 SS=--"
autoassume:BORD:P2:CO 1174038140.16505 "PLN_POSITION:BORD:P2:493 COORD_PT_UPD Beacon=LERGA"
autoassume:BORD:P2:CO 1174038140.16649 "PLN_POSITION:BORD:P2:493 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CR 1174038140.16972 "PLN_POSITION:BORD:P2:671 PLN_EVENT GlobalStatus=CREE Callsign=AF582PZ Model=A320 Departure=LFPO Destination=LFKB RFL=350 CurrentSSRCode=3232 PreviousSSRCode=3232 CFL=350 SS=--"
autoassume:BORD:P2:CR 1174038140.21954 "PLN_POSITION:BORD:P2:671 COORD_EFL_UPD Efl=350"
GEODE:BORD:P2:CO 1174038140.24626 "PLN_POSITION:BORD:P2:420 REQUEST_COORD From=GEODE:BORD:P2:CO"
GEODE:BORD:P2:CR 1174038140.26805 "PLN_POSITION:BORD:P2:493 REQUEST_COORD From=GEODE:BORD:P2:CR"
Rejeu 1174038140.26951 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=671 Time=06:28:00 CallSign=AF582PZ AircraftType=A320 Ssr=3232 Speed=450 Rfl=350 Dep=LFPO Arr=LFKB Sector=T3 ExitSector=W2 Frequency=123.5 Efl=350 Tfl=350 List=LAKOB 06:33 310 TIS 06:41 350 LERGA 06:47 350 LATAM 06:50 350 "
Rejeu 1174038140.2706 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=537 Time=06:18:00 CallSign=AF534BH AircraftType=A320 Ssr=3226 Speed=450 Rfl=350 Dep=LFPO Arr=LFKF Sector=T3 ExitSector=W2 Frequency=123.5 Efl=330 Tfl=350 List=LAKOB 06:24 310 TIS 06:32 350 LERGA 06:36 330 LATAM 06:39 330 "
Rejeu 1174038140.27173 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=860 Time=06:18:00 CallSign=SSV5070 AircraftType=A333 Ssr=2715 Speed=460 Rfl=390 Dep=CYYZ Arr=LIRF Sector=T3 ExitSector=W3 Frequency=123.5 Efl=390 Tfl=390 List=BEBIX 06:27 390 ADATU 06:35 390 LERGA 06:40 390 LATAM 06:42 390 "
Rejeu 1174038140.27285 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=2262 Time=06:25:00 CallSign=FCA774 AircraftType=A321 Ssr=7711 Speed=455 Rfl=350 Dep=EGGD Arr=DTMB Sector=T3 ExitSector=H2 Frequency=123.5 Efl=350 Tfl=350 List=ETAMO 06:31 350 VALKU 06:37 350 ADATU 06:41 350 OLRAK 06:46 350 AMLIR 06:49 350 "
Rejeu 1174038140.27392 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=493 Time=06:25:00 CallSign=DAL32 AircraftType=B763 Ssr=2041 Speed=490 Rfl=370 Dep=KCVG Arr=LIRF Sector=T3 ExitSector=W3 Frequency=123.5 Efl=370 Tfl=370 List=BEBIX 06:34 370 ADATU 06:41 370 LERGA 06:47 370 LATAM 06:49 370 "
GEODE:BORD:P2:CR 1174038140.2765 "PLN_POSITION:BORD:P2:2130 REQUEST_COORD From=GEODE:BORD:P2:CR"
Rejeu 1174038140.31279 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=2130 Time=06:23:30 CallSign=FCA450 AircraftType=B752 Ssr=7710 Speed=461 Rfl=350 Dep=EGCC Arr=DTMB Sector=T3 ExitSector=H3 Frequency=123.5 Efl=370 Tfl=370 List=ETAMO 06:29 370 VALKU 06:36 370 ADATU 06:39 370 OLRAK 06:45 370 AMLIR 06:48 370 "
Rejeu 1174038140.31396 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=420 Time=06:14:00 CallSign=EZY5063 AircraftType=A319 Ssr=6327 Speed=447 Rfl=370 Dep=EGKK Arr=LFMN Sector=T3 ExitSector=W3 Frequency=123.5 Efl=370 Tfl=370 List=KOTIS 06:19 370 KUKOR 06:24 370 TIS 06:30 370 LERGA 06:33 370 LATAM 06:35 370 "
autoassume:BORD:P2:CR 1174038140.33579 "PLN_POSITION:BORD:P2:671 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CO 1174038140.41563 "PLN_POSITION:BORD:P2:2130 PLN_EVENT GlobalStatus=CREE Callsign=FCA450 Model=B752 Departure=EGCC Destination=DTMB RFL=350 CurrentSSRCode=7710 PreviousSSRCode=7710 CFL=370 SS=--"
autoassume:BORD:P2:CO 1174038140.41746 "PLN_POSITION:BORD:P2:2130 COORD_EFL_UPD Efl=370"
Rejeu 1174038140.4185 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=537 Time=06:18:00 CallSign=AF534BH AircraftType=A320 Ssr=3226 Speed=450 Rfl=350 Dep=LFPO Arr=LFKF Sector=T3 ExitSector=W2 Frequency=123.5 Efl=330 Tfl=350 List=LAKOB 06:24 310 TIS 06:32 350 LERGA 06:36 330 LATAM 06:39 330 "
autoassume:BORD:P2:CO 1174038140.41978 "PLN_POSITION:BORD:P2:2130 COORD_STATE_UPD CoordStatus=MPE"
Rejeu 1174038140.42091 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=860 Time=06:18:00 CallSign=SSV5070 AircraftType=A333 Ssr=2715 Speed=460 Rfl=390 Dep=CYYZ Arr=LIRF Sector=T3 ExitSector=W3 Frequency=123.5 Efl=390 Tfl=390 List=BEBIX 06:27 390 ADATU 06:35 390 LERGA 06:40 390 LATAM 06:42 390 "
Rejeu 1174038140.42218 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=2262 Time=06:25:00 CallSign=FCA774 AircraftType=A321 Ssr=7711 Speed=455 Rfl=350 Dep=EGGD Arr=DTMB Sector=T3 ExitSector=H2 Frequency=123.5 Efl=350 Tfl=350 List=ETAMO 06:31 350 VALKU 06:37 350 ADATU 06:41 350 OLRAK 06:46 350 AMLIR 06:49 350 "
Rejeu 1174038140.42343 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=466 Time=06:12:00 CallSign=BZ809KX AircraftType=F100 Ssr=3212 Speed=420 Rfl=270 Dep=LFQQ Arr=LFKB Sector=T3 ExitSector=W2 Frequency=123.5 Efl=350 Tfl=350 List=KOTIS 06:16 350 KUKOR 06:22 350 TIS 06:28 350 LERGA 06:33 350 LATAM 06:35 350 "
Rejeu 1174038140.42466 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=466 Time=06:12:00 CallSign=BZ809KX AircraftType=F100 Ssr=3212 Speed=420 Rfl=270 Dep=LFQQ Arr=LFKB Sector=T3 ExitSector=W2 Frequency=123.5 Efl=350 Tfl=350 List=KOTIS 06:16 350 KUKOR 06:22 350 TIS 06:28 350 LERGA 06:33 350 LATAM 06:35 350 "
Rejeu 1174038140.42598 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=649 Time=06:26:00 CallSign=TRA6087 AircraftType=B737 Ssr=3172 Speed=459 Rfl=320 Dep=EHRD Arr=LFTH Sector=T3 ExitSector=W2 Frequency=123.5 Efl=350 Tfl=350 List=KOTIS 06:30 350 KUKOR 06:36 350 TIS 06:41 350 LERGA 06:45 350 LATAM 06:47 350 "
Rejeu 1174038140.42728 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=649 Time=06:26:00 CallSign=TRA6087 AircraftType=B737 Ssr=3172 Speed=459 Rfl=320 Dep=EHRD Arr=LFTH Sector=T3 ExitSector=W2 Frequency=123.5 Efl=350 Tfl=350 List=KOTIS 06:30 350 KUKOR 06:36 350 TIS 06:41 350 LERGA 06:45 350 LATAM 06:47 350 "
Rejeu 1174038140.42849 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=797 Time=06:23:00 CallSign=IBE3475 AircraftType=MD87 Ssr=3015 Speed=438 Rfl=350 Dep=LSZH Arr=LEMD Sector=T3 ExitSector=X2 Frequency=123.5 Efl=350 Tfl=0 List=MEBAK 06:32 350 LERGA 06:39 350 MOKDI 06:43 350 OLRAK 06:45 350 NARAK 06:53 350 "
Rejeu 1174038140.42972 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=2097 Time=06:07:00 CallSign=KLM1263 AircraftType=F70 Ssr=0163 Speed=433 Rfl=350 Dep=EHAM Arr=LFMN Sector=T3 ExitSector=W2 Frequency=123.5 Efl=350 Tfl=350 List=KOTIS 06:11 350 KUKOR 06:17 350 TIS 06:22 350 LERGA 06:27 350 LATAM 06:30 350 "
Rejeu 1174038140.43119 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=2220 Time=06:08:00 CallSign=CSA6720 AircraftType=A321 Ssr=6621 Speed=459 Rfl=350 Dep=LKPR Arr=LEMD Sector=T3 ExitSector=X2 Frequency=123.5 Efl=350 Tfl=0 List=REPSI 06:19 350 LERGA 06:23 350 MOKDI 06:27 350 OLRAK 06:29 350 NARAK 06:36 350 "
Rejeu 1174038140.4339 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=2581 Time=06:15:00 CallSign=CSA6746 AircraftType=B734 Ssr=6622 Speed=438 Rfl=330 Dep=LKPR Arr=LEZL Sector=T3 ExitSector=X2 Frequency=123.5 Efl=350 Tfl=0 List=MEBAK 06:25 350 REPSI 06:28 350 LERGA 06:31 350 MOKDI 06:35 350 OLRAK 06:37 350 NARAK 06:45 350 "
Rejeu 1174038140.43506 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5487 Flight=2431 Time=06:21:00 CallSign=CSA6662 AircraftType=B734 Ssr=6624 Speed=433 Rfl=350 Dep=LKPR Arr=LEBB Sector=T3 ExitSector=X2 Frequency=123.5 Efl=350 Tfl=0 List=MEBAK 06:30 350 REPSI 06:33 350 LERGA 06:37 350 MOKDI 06:41 350 OLRAK 06:43 350 NARAK 06:51 350 "
Rejeu 1174038140.43727 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=797 Time=06:23:00 CallSign=IBE3475 AircraftType=MD87 Ssr=3015 Speed=438 Rfl=350 Dep=LSZH Arr=LEMD Sector=T3 ExitSector=X2 Frequency=123.5 Efl=350 Tfl=0 List=MEBAK 06:32 350 LERGA 06:39 350 MOKDI 06:43 350 OLRAK 06:45 350 NARAK 06:53 350 "
Rejeu 1174038140.43955 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=2097 Time=06:07:00 CallSign=KLM1263 AircraftType=F70 Ssr=0163 Speed=433 Rfl=350 Dep=EHAM Arr=LFMN Sector=T3 ExitSector=W2 Frequency=123.5 Efl=350 Tfl=350 List=KOTIS 06:11 350 KUKOR 06:17 350 TIS 06:22 350 LERGA 06:27 350 LATAM 06:30 350 "
autoassume:BORD:P2:CR 1174038140.55759 "PLN_POSITION:BORD:P2:671 PLN_EVENT GlobalStatus=EVL Callsign=AF582PZ Model=A320 Departure=LFPO Destination=LFKB RFL=350 CurrentSSRCode=3232 PreviousSSRCode=3232 CFL=350 SS=--"
autoassume:BORD:P2:CO 1174038140.55872 "PLN_POSITION:BORD:P2:2130 PLN_EVENT GlobalStatus=EVL Callsign=FCA450 Model=B752 Departure=EGCC Destination=DTMB RFL=350 CurrentSSRCode=7710 PreviousSSRCode=7710 CFL=370 SS=--"
Rejeu 1174038140.55985 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=2220 Time=06:08:00 CallSign=CSA6720 AircraftType=A321 Ssr=6621 Speed=459 Rfl=350 Dep=LKPR Arr=LEMD Sector=T3 ExitSector=X2 Frequency=123.5 Efl=350 Tfl=0 List=REPSI 06:19 350 LERGA 06:23 350 MOKDI 06:27 350 OLRAK 06:29 350 NARAK 06:36 350 "
Rejeu 1174038140.56106 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=2581 Time=06:15:00 CallSign=CSA6746 AircraftType=B734 Ssr=6622 Speed=438 Rfl=330 Dep=LKPR Arr=LEZL Sector=T3 ExitSector=X2 Frequency=123.5 Efl=350 Tfl=0 List=MEBAK 06:25 350 REPSI 06:28 350 LERGA 06:31 350 MOKDI 06:35 350 OLRAK 06:37 350 NARAK 06:45 350 "
Rejeu 1174038140.56221 "Strip /home/toccata/CRISTAL/bin/autoassume.pl_5489 Flight=2431 Time=06:21:00 CallSign=CSA6662 AircraftType=B734 Ssr=6624 Speed=433 Rfl=350 Dep=LKPR Arr=LEBB Sector=T3 ExitSector=X2 Frequency=123.5 Efl=350 Tfl=0 List=MEBAK 06:30 350 REPSI 06:33 350 LERGA 06:37 350 MOKDI 06:41 350 OLRAK 06:43 350 NARAK 06:51 350 "
Rejeu 1174038140.5633 "ClockEvent Time=06:28:01 Rate=1.0 Bs=0"
Rejeu 1174038140.56437 "RadarEndEvent"
Rejeu 1174038140.56546 "TrackMovedEvent Flight=146 CallSign=TAM8097 Ssr=7605 Sector=MI Layers=F,U X=287.11 Y=-80.92 Vx=452 Vy=-122 Afl=284 Rate=1954 Heading=105 GroundSpeed=468 Tendency=1 Time=06:28:01"
Rejeu 1174038140.56655 "TrackMovedEvent Flight=193 CallSign=GZA5361 Ssr=3140 Sector=O2 Layers=S X=286.80 Y=-51.69 Vx=77 Vy=-438 Afl=370 Rate=0 Heading=170 GroundSpeed=445 Tendency=0 Time=06:28:01"
Rejeu 1174038140.56765 "TrackMovedEvent Flight=219 CallSign=RAE1510 Ssr=5670 Sector=K2 Layers=F,U,S X=358.72 Y=-248.03 Vx=253 Vy=-439 Afl=350 Rate=0 Heading=150 GroundSpeed=507 Tendency=0 Time=06:28:01"
Rejeu 1174038140.56873 "TrackMovedEvent Flight=242 CallSign=CFG855 Ssr=5504 Sector=EN Layers=U,S X=204.39 Y=-338.06 Vx=84 Vy=404 Afl=340 Rate=0 Heading=12 GroundSpeed=413 Tendency=0 Time=06:28:01"
Rejeu 1174038140.56977 "TrackMovedEvent Flight=253 CallSign=VLG5040 Ssr=5566 Sector=F1 Layers=U,S X=228.80 Y=-287.81 Vx=266 Vy=318 Afl=340 Rate=0 Heading=40 GroundSpeed=415 Tendency=0 Time=06:28:01"
Rejeu 1174038140.57089 "TrackMovedEvent Flight=294 CallSign=BZ699WF Ssr=1763 Sector=KJ Layers=F X=381.38 Y=-282.50 Vx=225 Vy=-169 Afl=46 Rate=-929 Heading=127 GroundSpeed=281 Tendency=-1 Time=06:28:01"
Rejeu 1174038140.57301 "TrackMovedEvent Flight=308 CallSign=BER3999 Ssr=5505 Sector=F3 Layers=S X=223.13 Y=-295.72 Vx=171 Vy=360 Afl=380 Rate=0 Heading=25 GroundSpeed=399 Tendency=0 Time=06:28:01"
Rejeu 1174038140.62198 "TrackMovedEvent Flight=318 CallSign=BPA1602 Ssr=2363 Sector=Y2 Layers=U X=271.61 Y=-101.88 Vx=471 Vy=-145 Afl=270 Rate=0 Heading=107 GroundSpeed=493 Tendency=0 Time=06:28:01"
Rejeu 1174038140.62327 "TrackMovedEvent Flight=320 CallSign=BAW2362 Ssr=6363 Sector=W1 Layers=F,U X=193.19 Y=-130.33 Vx=365 Vy=-313 Afl=279 Rate=-1090 Heading=131 GroundSpeed=481 Tendency=-1 Time=06:28:01"
GEODE:BORD:P2:CR 1174038140.6536 "PLN_POSITION:BORD:P2:420 REQUEST_COORD From=GEODE:BORD:P2:CR"
Rejeu 1174038140.65473 "TrackMovedEvent Flight=374 CallSign=AEU241 Ssr=6334 Sector=A3 Layers=S X=198.67 Y=-123.55 Vx=424 Vy=-247 Afl=370 Rate=0 Heading=120 GroundSpeed=491 Tendency=0 Time=06:28:01"
Rejeu 1174038140.65594 "TrackMovedEvent Flight=375 CallSign=AF660KU Ssr=3213 Sector=-- Layers=F X=227.05 Y=-194.59 Vx=95 Vy=-249 Afl=35 Rate=-1100 Heading=159 GroundSpeed=267 Tendency=-1 Time=06:28:01"
Rejeu 1174038140.65704 "TrackMovedEvent Flight=377 CallSign=AF700YH Ssr=3211 Sector=W2 Layers=S X=165.81 Y=-97.98 Vx=367 Vy=-364 Afl=330 Rate=0 Heading=135 GroundSpeed=517 Tendency=0 Time=06:28:01"
Rejeu 1174038140.65814 "TrackMovedEvent Flight=387 CallSign=BER9143 Ssr=5310 Sector=EN Layers=S X=192.25 Y=-362.83 Vx=123 Vy=377 Afl=380 Rate=0 Heading=18 GroundSpeed=397 Tendency=0 Time=06:28:01"
autoassume:BORD:P2:CO 1174038140.68801 "PLN_POSITION:BORD:P2:2130 ROUTE_UPD [95.5028148166859,-8.76567689450076,0,ETAMO,0,1959-06-21,23340,SYSTEM][116.953041114098,-57.8237045572578,0,VALKU,0,1959-06-21,23760,SYSTEM][118.802405617691,-85.9436552371062,0,ADATU,0,1959-06-21,23940,SYSTEM][120.426252458085,-130.876595049978,0,OLRAK,0,1959-06-21,24300,SYSTEM][133.952323544999,-149.565970978874,0,AMLIR,0,1959-06-21,24480,SYSTEM]"
GEODE:BORD:P2:CO 1174038140.68934 "PLN_POSITION:BORD:P2:537 REQUEST_COORD From=GEODE:BORD:P2:CO"
GEODE:BORD:P2:CR 1174038140.71417 "PLN_POSITION:BORD:P2:537 REQUEST_COORD From=GEODE:BORD:P2:CR"
Rejeu 1174038140.71518 "TrackMovedEvent Flight=407 CallSign=LGL931 Ssr=5656 Sector=D3 Layers=S X=367.55 Y=-327.84 Vx=239 Vy=-406 Afl=390 Rate=0 Heading=150 GroundSpeed=471 Tendency=0 Time=06:28:01"
autoassume:BORD:P2:CO 1174038140.71635 "PLN_POSITION:BORD:P2:2130 PLN_EVENT GlobalStatus=ACT Callsign=FCA450 Model=B752 Departure=EGCC Destination=DTMB RFL=350 CurrentSSRCode=7710 PreviousSSRCode=7710 CFL=370 SS=--"
GEODE:BORD:P2:CO 1174038140.71742 "PLN_POSITION:BORD:P2:2130 REQUEST_COORD From=GEODE:BORD:P2:CO"
autoassume:BORD:P2:CO 1174038140.71858 "PLN_POSITION:BORD:P2:2130 COORD_PT_UPD Beacon=OLRAK"
autoassume:BORD:P2:CO 1174038140.72109 "PLN_POSITION:BORD:P2:2130 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CO 1174038140.82524 "PLN_POSITION:BORD:P2:420 PLN_EVENT GlobalStatus=CREE Callsign=EZY5063 Model=A319 Departure=EGKK Destination=LFMN RFL=370 CurrentSSRCode=6327 PreviousSSRCode=6327 CFL=370 SS=--"
autoassume:BORD:P2:CO 1174038140.83011 "PLN_POSITION:BORD:P2:420 COORD_EFL_UPD Efl=370"
autoassume:BORD:P2:CO 1174038140.83395 "PLN_POSITION:BORD:P2:420 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CO 1174038140.838 "PLN_POSITION:BORD:P2:420 PLN_EVENT GlobalStatus=EVL Callsign=EZY5063 Model=A319 Departure=EGKK Destination=LFMN RFL=370 CurrentSSRCode=6327 PreviousSSRCode=6327 CFL=370 SS=--"
autoassume:BORD:P2:CO 1174038140.8422 "PLN_POSITION:BORD:P2:420 ROUTE_UPD [113.903384939415,15.8172087938183,0,KOTIS,0,1959-06-21,22740,SYSTEM][128.996261251978,-25.5846036630846,0,KUKOR,0,1959-06-21,23040,SYSTEM][148.05894074553,-63.7576831335955,0,TIS,0,1959-06-21,23400,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,23580,SYSTEM][179.143811894318,-113.224888861974,0,LATAM,0,1959-06-21,23700,SYSTEM]"
autoassume:BORD:P2:CO 1174038140.84648 "PLN_POSITION:BORD:P2:420 PLN_EVENT GlobalStatus=ACT Callsign=EZY5063 Model=A319 Departure=EGKK Destination=LFMN RFL=370 CurrentSSRCode=6327 PreviousSSRCode=6327 CFL=370 SS=--"
autoassume:BORD:P2:CO 1174038140.85138 "PLN_POSITION:BORD:P2:420 COORD_PT_UPD Beacon=LERGA"
autoassume:BORD:P2:CO 1174038140.85521 "PLN_POSITION:BORD:P2:420 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CO 1174038140.90752 "PLN_POSITION:BORD:P2:537 PLN_EVENT GlobalStatus=CREE Callsign=AF534BH Model=A320 Departure=LFPO Destination=LFKF RFL=350 CurrentSSRCode=3226 PreviousSSRCode=3226 CFL=350 SS=--"
autoassume:BORD:P2:CO 1174038140.91345 "PLN_POSITION:BORD:P2:537 COORD_EFL_UPD Efl=330"
autoassume:BORD:P2:CO 1174038140.91773 "PLN_POSITION:BORD:P2:537 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CO 1174038140.92194 "PLN_POSITION:BORD:P2:537 PLN_EVENT GlobalStatus=EVL Callsign=AF534BH Model=A320 Departure=LFPO Destination=LFKF RFL=350 CurrentSSRCode=3226 PreviousSSRCode=3226 CFL=350 SS=--"
autoassume:BORD:P2:CO 1174038140.92623 "PLN_POSITION:BORD:P2:537 ROUTE_UPD [126.930885249563,-4.67837782682273,0,LAKOB,0,1959-06-21,23040,SYSTEM][148.05894074553,-63.7576831335955,0,TIS,0,1959-06-21,23520,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,23760,SYSTEM][179.143811894318,-113.224888861974,0,LATAM,0,1959-06-21,23940,SYSTEM]"
autoassume:BORD:P2:CO 1174038140.9303 "PLN_POSITION:BORD:P2:537 PLN_EVENT GlobalStatus=ACT Callsign=AF534BH Model=A320 Departure=LFPO Destination=LFKF RFL=350 CurrentSSRCode=3226 PreviousSSRCode=3226 CFL=350 SS=--"
autoassume:BORD:P2:CO 1174038140.93494 "PLN_POSITION:BORD:P2:537 COORD_PT_UPD Beacon=LERGA"
autoassume:BORD:P2:CO 1174038140.93881 "PLN_POSITION:BORD:P2:537 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CO 1174038140.98889 "PLN_POSITION:BORD:P2:860 PLN_EVENT GlobalStatus=CREE Callsign=SSV5070 Model=A333 Departure=CYYZ Destination=LIRF RFL=390 CurrentSSRCode=2715 PreviousSSRCode=2715 CFL=390 SS=--"
autoassume:BORD:P2:CO 1174038140.99411 "PLN_POSITION:BORD:P2:860 COORD_EFL_UPD Efl=390"
autoassume:BORD:P2:CO 1174038140.99817 "PLN_POSITION:BORD:P2:860 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CO 1174038141.00203 "PLN_POSITION:BORD:P2:860 PLN_EVENT GlobalStatus=EVL Callsign=SSV5070 Model=A333 Departure=CYYZ Destination=LIRF RFL=390 CurrentSSRCode=2715 PreviousSSRCode=2715 CFL=390 SS=--"
autoassume:BORD:P2:CO 1174038141.00606 "PLN_POSITION:BORD:P2:860 ROUTE_UPD [58.3313569896079,-62.3965741848679,0,BEBIX,0,1959-06-21,23220,SYSTEM][118.802405617691,-85.9436552371062,0,ADATU,0,1959-06-21,23700,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,24000,SYSTEM][179.143811894318,-113.224888861974,0,LATAM,0,1959-06-21,24120,SYSTEM]"
autoassume:BORD:P2:CO 1174038141.0104 "PLN_POSITION:BORD:P2:860 PLN_EVENT GlobalStatus=ACT Callsign=SSV5070 Model=A333 Departure=CYYZ Destination=LIRF RFL=390 CurrentSSRCode=2715 PreviousSSRCode=2715 CFL=390 SS=--"
autoassume:BORD:P2:CO 1174038141.01601 "PLN_POSITION:BORD:P2:860 COORD_PT_UPD Beacon=LERGA"
autoassume:BORD:P2:CO 1174038141.01968 "PLN_POSITION:BORD:P2:860 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CO 1174038141.0695 "PLN_POSITION:BORD:P2:2262 PLN_EVENT GlobalStatus=CREE Callsign=FCA774 Model=A321 Departure=EGGD Destination=DTMB RFL=350 CurrentSSRCode=7711 PreviousSSRCode=7711 CFL=350 SS=--"
autoassume:BORD:P2:CO 1174038141.07323 "PLN_POSITION:BORD:P2:2262 COORD_EFL_UPD Efl=350"
autoassume:BORD:P2:CO 1174038141.07765 "PLN_POSITION:BORD:P2:2262 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CO 1174038141.08152 "PLN_POSITION:BORD:P2:2262 PLN_EVENT GlobalStatus=EVL Callsign=FCA774 Model=A321 Departure=EGGD Destination=DTMB RFL=350 CurrentSSRCode=7711 PreviousSSRCode=7711 CFL=350 SS=--"
autoassume:BORD:P2:CO 1174038141.08551 "PLN_POSITION:BORD:P2:2262 ROUTE_UPD [95.5028148166859,-8.76567689450076,0,ETAMO,0,1959-06-21,23460,SYSTEM][116.953041114098,-57.8237045572578,0,VALKU,0,1959-06-21,23820,SYSTEM][118.802405617691,-85.9436552371062,0,ADATU,0,1959-06-21,24060,SYSTEM][120.426252458085,-130.876595049978,0,OLRAK,0,1959-06-21,24360,SYSTEM][133.952323544999,-149.565970978874,0,AMLIR,0,1959-06-21,24540,SYSTEM]"
autoassume:BORD:P2:CO 1174038141.08958 "PLN_POSITION:BORD:P2:2262 PLN_EVENT GlobalStatus=ACT Callsign=FCA774 Model=A321 Departure=EGGD Destination=DTMB RFL=350 CurrentSSRCode=7711 PreviousSSRCode=7711 CFL=350 SS=--"
autoassume:BORD:P2:CO 1174038141.09359 "PLN_POSITION:BORD:P2:2262 COORD_PT_UPD Beacon=OLRAK"
autoassume:BORD:P2:CO 1174038141.09812 "PLN_POSITION:BORD:P2:2262 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CO 1174038141.14775 "PLN_POSITION:BORD:P2:466 PLN_EVENT GlobalStatus=CREE Callsign=BZ809KX Model=F100 Departure=LFQQ Destination=LFKB RFL=270 CurrentSSRCode=3212 PreviousSSRCode=3212 CFL=350 SS=--"
autoassume:BORD:P2:CO 1174038141.15143 "PLN_POSITION:BORD:P2:466 COORD_EFL_UPD Efl=350"
autoassume:BORD:P2:CO 1174038141.1553 "PLN_POSITION:BORD:P2:466 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CO 1174038141.15976 "PLN_POSITION:BORD:P2:466 PLN_EVENT GlobalStatus=EVL Callsign=BZ809KX Model=F100 Departure=LFQQ Destination=LFKB RFL=270 CurrentSSRCode=3212 PreviousSSRCode=3212 CFL=350 SS=--"
autoassume:BORD:P2:CO 1174038141.16388 "PLN_POSITION:BORD:P2:466 ROUTE_UPD [113.903384939415,15.8172087938183,0,KOTIS,0,1959-06-21,22560,SYSTEM][128.996261251978,-25.5846036630846,0,KUKOR,0,1959-06-21,22920,SYSTEM][148.05894074553,-63.7576831335955,0,TIS,0,1959-06-21,23280,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,23580,SYSTEM][179.143811894318,-113.224888861974,0,LATAM,0,1959-06-21,23700,SYSTEM]"
autoassume:BORD:P2:CO 1174038141.16758 "PLN_POSITION:BORD:P2:466 PLN_EVENT GlobalStatus=ACT Callsign=BZ809KX Model=F100 Departure=LFQQ Destination=LFKB RFL=270 CurrentSSRCode=3212 PreviousSSRCode=3212 CFL=350 SS=--"
autoassume:BORD:P2:CO 1174038141.17119 "PLN_POSITION:BORD:P2:466 COORD_PT_UPD Beacon=LERGA"
autoassume:BORD:P2:CO 1174038141.1747 "PLN_POSITION:BORD:P2:466 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CO 1174038141.22352 "PLN_POSITION:BORD:P2:649 PLN_EVENT GlobalStatus=CREE Callsign=TRA6087 Model=B737 Departure=EHRD Destination=LFTH RFL=320 CurrentSSRCode=3172 PreviousSSRCode=3172 CFL=350 SS=--"
autoassume:BORD:P2:CO 1174038141.22753 "PLN_POSITION:BORD:P2:649 COORD_EFL_UPD Efl=350"
autoassume:BORD:P2:CO 1174038141.23174 "PLN_POSITION:BORD:P2:649 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CO 1174038141.23559 "PLN_POSITION:BORD:P2:649 PLN_EVENT GlobalStatus=EVL Callsign=TRA6087 Model=B737 Departure=EHRD Destination=LFTH RFL=320 CurrentSSRCode=3172 PreviousSSRCode=3172 CFL=350 SS=--"
autoassume:BORD:P2:CO 1174038141.23957 "PLN_POSITION:BORD:P2:649 ROUTE_UPD [113.903384939415,15.8172087938183,0,KOTIS,0,1959-06-21,23400,SYSTEM][128.996261251978,-25.5846036630846,0,KUKOR,0,1959-06-21,23760,SYSTEM][148.05894074553,-63.7576831335955,0,TIS,0,1959-06-21,24060,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,24300,SYSTEM][179.143811894318,-113.224888861974,0,LATAM,0,1959-06-21,24420,SYSTEM]"
autoassume:BORD:P2:CO 1174038141.24354 "PLN_POSITION:BORD:P2:649 PLN_EVENT GlobalStatus=ACT Callsign=TRA6087 Model=B737 Departure=EHRD Destination=LFTH RFL=320 CurrentSSRCode=3172 PreviousSSRCode=3172 CFL=350 SS=--"
autoassume:BORD:P2:CO 1174038141.24752 "PLN_POSITION:BORD:P2:649 COORD_PT_UPD Beacon=LERGA"
autoassume:BORD:P2:CO 1174038141.25134 "PLN_POSITION:BORD:P2:649 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CO 1174038141.30033 "PLN_POSITION:BORD:P2:797 PLN_EVENT GlobalStatus=CREE Callsign=IBE3475 Model=MD87 Departure=LSZH Destination=LEMD RFL=350 CurrentSSRCode=3015 PreviousSSRCode=3015 CFL=0 SS=--"
autoassume:BORD:P2:CO 1174038141.30422 "PLN_POSITION:BORD:P2:797 COORD_EFL_UPD Efl=350"
autoassume:BORD:P2:CO 1174038141.30792 "PLN_POSITION:BORD:P2:797 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CO 1174038141.31193 "PLN_POSITION:BORD:P2:797 PLN_EVENT GlobalStatus=EVL Callsign=IBE3475 Model=MD87 Departure=LSZH Destination=LEMD RFL=350 CurrentSSRCode=3015 PreviousSSRCode=3015 CFL=0 SS=--"
autoassume:BORD:P2:CO 1174038141.31606 "PLN_POSITION:BORD:P2:797 ROUTE_UPD [194.528783240283,-72.1257363254435,0,MEBAK,0,1959-06-21,23520,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,23940,SYSTEM][134.050632869653,-120.154911865762,0,MOKDI,0,1959-06-21,24180,SYSTEM][120.426252458085,-130.876595049978,0,OLRAK,0,1959-06-21,24300,SYSTEM][75.1215258774783,-161.000004604295,0,NARAK,0,1959-06-21,24780,SYSTEM]"
autoassume:BORD:P2:CO 1174038141.32018 "PLN_POSITION:BORD:P2:797 PLN_EVENT GlobalStatus=ACT Callsign=IBE3475 Model=MD87 Departure=LSZH Destination=LEMD RFL=350 CurrentSSRCode=3015 PreviousSSRCode=3015 CFL=0 SS=--"
autoassume:BORD:P2:CO 1174038141.3242 "PLN_POSITION:BORD:P2:797 COORD_PT_UPD Beacon=OLRAK"
autoassume:BORD:P2:CO 1174038141.32764 "PLN_POSITION:BORD:P2:797 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CO 1174038141.37614 "PLN_POSITION:BORD:P2:2097 PLN_EVENT GlobalStatus=CREE Callsign=KLM1263 Model=F70 Departure=EHAM Destination=LFMN RFL=350 CurrentSSRCode=0163 PreviousSSRCode=0163 CFL=350 SS=--"
autoassume:BORD:P2:CO 1174038141.3799 "PLN_POSITION:BORD:P2:2097 COORD_EFL_UPD Efl=350"
autoassume:BORD:P2:CO 1174038141.3835 "PLN_POSITION:BORD:P2:2097 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CO 1174038141.38728 "PLN_POSITION:BORD:P2:2097 PLN_EVENT GlobalStatus=EVL Callsign=KLM1263 Model=F70 Departure=EHAM Destination=LFMN RFL=350 CurrentSSRCode=0163 PreviousSSRCode=0163 CFL=350 SS=--"
autoassume:BORD:P2:CO 1174038141.39131 "PLN_POSITION:BORD:P2:2097 ROUTE_UPD [113.903384939415,15.8172087938183,0,KOTIS,0,1959-06-21,22260,SYSTEM][128.996261251978,-25.5846036630846,0,KUKOR,0,1959-06-21,22620,SYSTEM][148.05894074553,-63.7576831335955,0,TIS,0,1959-06-21,22920,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,23220,SYSTEM][179.143811894318,-113.224888861974,0,LATAM,0,1959-06-21,23400,SYSTEM]"
autoassume:BORD:P2:CO 1174038141.39493 "PLN_POSITION:BORD:P2:2097 PLN_EVENT GlobalStatus=ACT Callsign=KLM1263 Model=F70 Departure=EHAM Destination=LFMN RFL=350 CurrentSSRCode=0163 PreviousSSRCode=0163 CFL=350 SS=--"
autoassume:BORD:P2:CO 1174038141.39867 "PLN_POSITION:BORD:P2:2097 COORD_PT_UPD Beacon=LERGA"
autoassume:BORD:P2:CO 1174038141.40213 "PLN_POSITION:BORD:P2:2097 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CO 1174038141.45116 "PLN_POSITION:BORD:P2:2220 PLN_EVENT GlobalStatus=CREE Callsign=CSA6720 Model=A321 Departure=LKPR Destination=LEMD RFL=350 CurrentSSRCode=6621 PreviousSSRCode=6621 CFL=0 SS=--"
autoassume:BORD:P2:CO 1174038141.45491 "PLN_POSITION:BORD:P2:2220 COORD_EFL_UPD Efl=350"
autoassume:BORD:P2:CO 1174038141.4586 "PLN_POSITION:BORD:P2:2220 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CO 1174038141.46229 "PLN_POSITION:BORD:P2:2220 PLN_EVENT GlobalStatus=EVL Callsign=CSA6720 Model=A321 Departure=LKPR Destination=LEMD RFL=350 CurrentSSRCode=6621 PreviousSSRCode=6621 CFL=0 SS=--"
autoassume:BORD:P2:CO 1174038141.46615 "PLN_POSITION:BORD:P2:2220 ROUTE_UPD [179.688053459385,-84.3788454073992,0,REPSI,0,1959-06-21,22740,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,22980,SYSTEM][134.050632869653,-120.154911865762,0,MOKDI,0,1959-06-21,23220,SYSTEM][120.426252458085,-130.876595049978,0,OLRAK,0,1959-06-21,23340,SYSTEM][75.1215258774783,-161.000004604295,0,NARAK,0,1959-06-21,23760,SYSTEM]"
autoassume:BORD:P2:CO 1174038141.47159 "PLN_POSITION:BORD:P2:2220 PLN_EVENT GlobalStatus=ACT Callsign=CSA6720 Model=A321 Departure=LKPR Destination=LEMD RFL=350 CurrentSSRCode=6621 PreviousSSRCode=6621 CFL=0 SS=--"
GEODE:BORD:P2:CO 1174038141.47566 "PLN_POSITION:BORD:P2:420 REQUEST_COORD From=GEODE:BORD:P2:CO"
GEODE:BORD:P2:CO 1174038141.47939 "PLN_POSITION:BORD:P2:537 REQUEST_COORD From=GEODE:BORD:P2:CO"
GEODE:BORD:P2:CO 1174038141.50768 "PLN_POSITION:BORD:P2:860 REQUEST_COORD From=GEODE:BORD:P2:CO"
GEODE:BORD:P2:CO 1174038141.53828 "PLN_POSITION:BORD:P2:2262 REQUEST_COORD From=GEODE:BORD:P2:CO"
GEODE:BORD:P2:CR 1174038141.59003 "PLN_POSITION:BORD:P2:860 REQUEST_COORD From=GEODE:BORD:P2:CR"
GEODE:BORD:P2:CR 1174038141.59608 "PLN_POSITION:BORD:P2:420 REQUEST_COORD From=GEODE:BORD:P2:CR"
GEODE:BORD:P2:CR 1174038141.60002 "PLN_POSITION:BORD:P2:537 REQUEST_COORD From=GEODE:BORD:P2:CR"
GEODE:BORD:P2:CR 1174038141.60395 "PLN_POSITION:BORD:P2:860 REQUEST_COORD From=GEODE:BORD:P2:CR"
GEODE:BORD:P2:CR 1174038141.63154 "PLN_POSITION:BORD:P2:2262 REQUEST_COORD From=GEODE:BORD:P2:CR"
GEODE:BORD:P2:CR 1174038141.65841 "PLN_POSITION:BORD:P2:466 REQUEST_COORD From=GEODE:BORD:P2:CR"
GEODE:BORD:P2:CR 1174038141.66338 "PLN_POSITION:BORD:P2:2262 REQUEST_COORD From=GEODE:BORD:P2:CR"
GEODE:BORD:P2:CR 1174038141.66766 "PLN_POSITION:BORD:P2:466 REQUEST_COORD From=GEODE:BORD:P2:CR"
autoassume:BORD:P2:CR 1174038141.69867 "PLN_POSITION:BORD:P2:671 ROUTE_UPD [126.930885249563,-4.67837782682273,0,LAKOB,0,1959-06-21,23580,SYSTEM][148.05894074553,-63.7576831335955,0,TIS,0,1959-06-21,24060,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,24420,SYSTEM][179.143811894318,-113.224888861974,0,LATAM,0,1959-06-21,24600,SYSTEM]"
autoassume:BORD:P2:CR 1174038141.70383 "PLN_POSITION:BORD:P2:671 PLN_EVENT GlobalStatus=ACT Callsign=AF582PZ Model=A320 Departure=LFPO Destination=LFKB RFL=350 CurrentSSRCode=3232 PreviousSSRCode=3232 CFL=350 SS=--"
autoassume:BORD:P2:CR 1174038141.70807 "PLN_POSITION:BORD:P2:671 COORD_PT_UPD Beacon=LERGA"
autoassume:BORD:P2:CR 1174038141.71196 "PLN_POSITION:BORD:P2:671 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CR 1174038141.71831 "PLN_POSITION:BORD:P2:493 PLN_EVENT GlobalStatus=CREE Callsign=DAL32 Model=B763 Departure=KCVG Destination=LIRF RFL=370 CurrentSSRCode=2041 PreviousSSRCode=2041 CFL=370 SS=--"
autoassume:BORD:P2:CR 1174038141.7237 "PLN_POSITION:BORD:P2:493 COORD_EFL_UPD Efl=370"
autoassume:BORD:P2:CR 1174038141.72787 "PLN_POSITION:BORD:P2:493 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CR 1174038141.73221 "PLN_POSITION:BORD:P2:493 PLN_EVENT GlobalStatus=EVL Callsign=DAL32 Model=B763 Departure=KCVG Destination=LIRF RFL=370 CurrentSSRCode=2041 PreviousSSRCode=2041 CFL=370 SS=--"
autoassume:BORD:P2:CR 1174038141.73673 "PLN_POSITION:BORD:P2:493 ROUTE_UPD [58.3313569896079,-62.3965741848679,0,BEBIX,0,1959-06-21,23640,SYSTEM][118.802405617691,-85.9436552371062,0,ADATU,0,1959-06-21,24060,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,24420,SYSTEM][179.143811894318,-113.224888861974,0,LATAM,0,1959-06-21,24540,SYSTEM]"
autoassume:BORD:P2:CR 1174038141.74057 "PLN_POSITION:BORD:P2:493 PLN_EVENT GlobalStatus=ACT Callsign=DAL32 Model=B763 Departure=KCVG Destination=LIRF RFL=370 CurrentSSRCode=2041 PreviousSSRCode=2041 CFL=370 SS=--"
autoassume:BORD:P2:CR 1174038141.74447 "PLN_POSITION:BORD:P2:493 COORD_PT_UPD Beacon=LERGA"
autoassume:BORD:P2:CR 1174038141.74949 "PLN_POSITION:BORD:P2:493 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CR 1174038141.75519 "PLN_POSITION:BORD:P2:2130 PLN_EVENT GlobalStatus=CREE Callsign=FCA450 Model=B752 Departure=EGCC Destination=DTMB RFL=350 CurrentSSRCode=7710 PreviousSSRCode=7710 CFL=370 SS=--"
autoassume:BORD:P2:CR 1174038141.75917 "PLN_POSITION:BORD:P2:2130 COORD_EFL_UPD Efl=370"
autoassume:BORD:P2:CR 1174038141.76323 "PLN_POSITION:BORD:P2:2130 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CR 1174038141.76691 "PLN_POSITION:BORD:P2:2130 PLN_EVENT GlobalStatus=EVL Callsign=FCA450 Model=B752 Departure=EGCC Destination=DTMB RFL=350 CurrentSSRCode=7710 PreviousSSRCode=7710 CFL=370 SS=--"
autoassume:BORD:P2:CR 1174038141.77074 "PLN_POSITION:BORD:P2:2130 ROUTE_UPD [95.5028148166859,-8.76567689450076,0,ETAMO,0,1959-06-21,23340,SYSTEM][116.953041114098,-57.8237045572578,0,VALKU,0,1959-06-21,23760,SYSTEM][118.802405617691,-85.9436552371062,0,ADATU,0,1959-06-21,23940,SYSTEM][120.426252458085,-130.876595049978,0,OLRAK,0,1959-06-21,24300,SYSTEM][133.952323544999,-149.565970978874,0,AMLIR,0,1959-06-21,24480,SYSTEM]"
autoassume:BORD:P2:CR 1174038141.77465 "PLN_POSITION:BORD:P2:2130 PLN_EVENT GlobalStatus=ACT Callsign=FCA450 Model=B752 Departure=EGCC Destination=DTMB RFL=350 CurrentSSRCode=7710 PreviousSSRCode=7710 CFL=370 SS=--"
autoassume:BORD:P2:CR 1174038141.77851 "PLN_POSITION:BORD:P2:2130 COORD_PT_UPD Beacon=OLRAK"
autoassume:BORD:P2:CR 1174038141.78225 "PLN_POSITION:BORD:P2:2130 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CR 1174038141.78989 "PLN_POSITION:BORD:P2:420 PLN_EVENT GlobalStatus=CREE Callsign=EZY5063 Model=A319 Departure=EGKK Destination=LFMN RFL=370 CurrentSSRCode=6327 PreviousSSRCode=6327 CFL=370 SS=--"
autoassume:BORD:P2:CR 1174038141.79365 "PLN_POSITION:BORD:P2:420 COORD_EFL_UPD Efl=370"
autoassume:BORD:P2:CR 1174038141.79724 "PLN_POSITION:BORD:P2:420 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CR 1174038141.80107 "PLN_POSITION:BORD:P2:420 PLN_EVENT GlobalStatus=EVL Callsign=EZY5063 Model=A319 Departure=EGKK Destination=LFMN RFL=370 CurrentSSRCode=6327 PreviousSSRCode=6327 CFL=370 SS=--"
autoassume:BORD:P2:CR 1174038141.80507 "PLN_POSITION:BORD:P2:420 ROUTE_UPD [113.903384939415,15.8172087938183,0,KOTIS,0,1959-06-21,22740,SYSTEM][128.996261251978,-25.5846036630846,0,KUKOR,0,1959-06-21,23040,SYSTEM][148.05894074553,-63.7576831335955,0,TIS,0,1959-06-21,23400,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,23580,SYSTEM][179.143811894318,-113.224888861974,0,LATAM,0,1959-06-21,23700,SYSTEM]"
autoassume:BORD:P2:CR 1174038141.80923 "PLN_POSITION:BORD:P2:420 PLN_EVENT GlobalStatus=ACT Callsign=EZY5063 Model=A319 Departure=EGKK Destination=LFMN RFL=370 CurrentSSRCode=6327 PreviousSSRCode=6327 CFL=370 SS=--"
autoassume:BORD:P2:CR 1174038141.81334 "PLN_POSITION:BORD:P2:420 COORD_PT_UPD Beacon=LERGA"
autoassume:BORD:P2:CR 1174038141.81729 "PLN_POSITION:BORD:P2:420 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CR 1174038141.82388 "PLN_POSITION:BORD:P2:537 PLN_EVENT GlobalStatus=CREE Callsign=AF534BH Model=A320 Departure=LFPO Destination=LFKF RFL=350 CurrentSSRCode=3226 PreviousSSRCode=3226 CFL=350 SS=--"
autoassume:BORD:P2:CR 1174038141.82771 "PLN_POSITION:BORD:P2:537 COORD_EFL_UPD Efl=330"
autoassume:BORD:P2:CR 1174038141.83137 "PLN_POSITION:BORD:P2:537 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CR 1174038141.83536 "PLN_POSITION:BORD:P2:537 PLN_EVENT GlobalStatus=EVL Callsign=AF534BH Model=A320 Departure=LFPO Destination=LFKF RFL=350 CurrentSSRCode=3226 PreviousSSRCode=3226 CFL=350 SS=--"
autoassume:BORD:P2:CR 1174038141.83933 "PLN_POSITION:BORD:P2:537 ROUTE_UPD [126.930885249563,-4.67837782682273,0,LAKOB,0,1959-06-21,23040,SYSTEM][148.05894074553,-63.7576831335955,0,TIS,0,1959-06-21,23520,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,23760,SYSTEM][179.143811894318,-113.224888861974,0,LATAM,0,1959-06-21,23940,SYSTEM]"
autoassume:BORD:P2:CR 1174038141.84305 "PLN_POSITION:BORD:P2:537 PLN_EVENT GlobalStatus=ACT Callsign=AF534BH Model=A320 Departure=LFPO Destination=LFKF RFL=350 CurrentSSRCode=3226 PreviousSSRCode=3226 CFL=350 SS=--"
autoassume:BORD:P2:CR 1174038141.84674 "PLN_POSITION:BORD:P2:537 COORD_PT_UPD Beacon=LERGA"
autoassume:BORD:P2:CR 1174038141.8503 "PLN_POSITION:BORD:P2:537 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CR 1174038141.85687 "PLN_POSITION:BORD:P2:860 PLN_EVENT GlobalStatus=CREE Callsign=SSV5070 Model=A333 Departure=CYYZ Destination=LIRF RFL=390 CurrentSSRCode=2715 PreviousSSRCode=2715 CFL=390 SS=--"
autoassume:BORD:P2:CR 1174038141.86087 "PLN_POSITION:BORD:P2:860 COORD_EFL_UPD Efl=390"
autoassume:BORD:P2:CR 1174038141.86477 "PLN_POSITION:BORD:P2:860 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CR 1174038141.86863 "PLN_POSITION:BORD:P2:860 PLN_EVENT GlobalStatus=EVL Callsign=SSV5070 Model=A333 Departure=CYYZ Destination=LIRF RFL=390 CurrentSSRCode=2715 PreviousSSRCode=2715 CFL=390 SS=--"
autoassume:BORD:P2:CR 1174038141.87264 "PLN_POSITION:BORD:P2:860 ROUTE_UPD [58.3313569896079,-62.3965741848679,0,BEBIX,0,1959-06-21,23220,SYSTEM][118.802405617691,-85.9436552371062,0,ADATU,0,1959-06-21,23700,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,24000,SYSTEM][179.143811894318,-113.224888861974,0,LATAM,0,1959-06-21,24120,SYSTEM]"
autoassume:BORD:P2:CR 1174038141.87662 "PLN_POSITION:BORD:P2:860 PLN_EVENT GlobalStatus=ACT Callsign=SSV5070 Model=A333 Departure=CYYZ Destination=LIRF RFL=390 CurrentSSRCode=2715 PreviousSSRCode=2715 CFL=390 SS=--"
autoassume:BORD:P2:CR 1174038141.88044 "PLN_POSITION:BORD:P2:860 COORD_PT_UPD Beacon=LERGA"
autoassume:BORD:P2:CR 1174038141.88394 "PLN_POSITION:BORD:P2:860 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CR 1174038141.89053 "PLN_POSITION:BORD:P2:2262 PLN_EVENT GlobalStatus=CREE Callsign=FCA774 Model=A321 Departure=EGGD Destination=DTMB RFL=350 CurrentSSRCode=7711 PreviousSSRCode=7711 CFL=350 SS=--"
autoassume:BORD:P2:CR 1174038141.89414 "PLN_POSITION:BORD:P2:2262 COORD_EFL_UPD Efl=350"
autoassume:BORD:P2:CR 1174038141.89756 "PLN_POSITION:BORD:P2:2262 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CR 1174038141.90125 "PLN_POSITION:BORD:P2:2262 PLN_EVENT GlobalStatus=EVL Callsign=FCA774 Model=A321 Departure=EGGD Destination=DTMB RFL=350 CurrentSSRCode=7711 PreviousSSRCode=7711 CFL=350 SS=--"
autoassume:BORD:P2:CR 1174038141.9054 "PLN_POSITION:BORD:P2:2262 ROUTE_UPD [95.5028148166859,-8.76567689450076,0,ETAMO,0,1959-06-21,23460,SYSTEM][116.953041114098,-57.8237045572578,0,VALKU,0,1959-06-21,23820,SYSTEM][118.802405617691,-85.9436552371062,0,ADATU,0,1959-06-21,24060,SYSTEM][120.426252458085,-130.876595049978,0,OLRAK,0,1959-06-21,24360,SYSTEM][133.952323544999,-149.565970978874,0,AMLIR,0,1959-06-21,24540,SYSTEM]"
autoassume:BORD:P2:CR 1174038141.90922 "PLN_POSITION:BORD:P2:2262 PLN_EVENT GlobalStatus=ACT Callsign=FCA774 Model=A321 Departure=EGGD Destination=DTMB RFL=350 CurrentSSRCode=7711 PreviousSSRCode=7711 CFL=350 SS=--"
autoassume:BORD:P2:CR 1174038141.91294 "PLN_POSITION:BORD:P2:2262 COORD_PT_UPD Beacon=OLRAK"
autoassume:BORD:P2:CR 1174038141.91636 "PLN_POSITION:BORD:P2:2262 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CR 1174038141.92294 "PLN_POSITION:BORD:P2:466 PLN_EVENT GlobalStatus=CREE Callsign=BZ809KX Model=F100 Departure=LFQQ Destination=LFKB RFL=270 CurrentSSRCode=3212 PreviousSSRCode=3212 CFL=350 SS=--"
autoassume:BORD:P2:CR 1174038141.92677 "PLN_POSITION:BORD:P2:466 COORD_EFL_UPD Efl=350"
autoassume:BORD:P2:CR 1174038141.93036 "PLN_POSITION:BORD:P2:466 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CR 1174038141.9341 "PLN_POSITION:BORD:P2:466 PLN_EVENT GlobalStatus=EVL Callsign=BZ809KX Model=F100 Departure=LFQQ Destination=LFKB RFL=270 CurrentSSRCode=3212 PreviousSSRCode=3212 CFL=350 SS=--"
autoassume:BORD:P2:CR 1174038141.93804 "PLN_POSITION:BORD:P2:466 ROUTE_UPD [113.903384939415,15.8172087938183,0,KOTIS,0,1959-06-21,22560,SYSTEM][128.996261251978,-25.5846036630846,0,KUKOR,0,1959-06-21,22920,SYSTEM][148.05894074553,-63.7576831335955,0,TIS,0,1959-06-21,23280,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,23580,SYSTEM][179.143811894318,-113.224888861974,0,LATAM,0,1959-06-21,23700,SYSTEM]"
autoassume:BORD:P2:CR 1174038141.9417 "PLN_POSITION:BORD:P2:466 PLN_EVENT GlobalStatus=ACT Callsign=BZ809KX Model=F100 Departure=LFQQ Destination=LFKB RFL=270 CurrentSSRCode=3212 PreviousSSRCode=3212 CFL=350 SS=--"
autoassume:BORD:P2:CR 1174038141.94528 "PLN_POSITION:BORD:P2:466 COORD_PT_UPD Beacon=LERGA"
autoassume:BORD:P2:CR 1174038141.94871 "PLN_POSITION:BORD:P2:466 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CR 1174038141.95494 "BORD:P2:CR MODIFIER_AFFICHAGE_TRICOULEUR On=1"
autoassume:BORD:P2:CR 1174038141.95883 "PLN_POSITION:BORD:P2:671 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038141.96245 "PLN_POSITION:BORD:P2:671 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038141.96606 "PLN_POSITION:BORD:P2:493 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038141.96979 "PLN_POSITION:BORD:P2:493 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038141.97351 "PLN_POSITION:BORD:P2:2130 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=H3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=OLRAK"
autoassume:BORD:P2:CR 1174038141.97723 "PLN_POSITION:BORD:P2:420 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038141.98239 "PLN_POSITION:BORD:P2:537 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=330 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038141.98645 "PLN_POSITION:BORD:P2:2130 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=H3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=OLRAK"
autoassume:BORD:P2:CR 1174038141.98976 "PLN_POSITION:BORD:P2:420 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038141.99308 "PLN_POSITION:BORD:P2:537 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=330 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038141.99665 "PLN_POSITION:BORD:P2:860 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=390 Tfl=390 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038142.00011 "PLN_POSITION:BORD:P2:2262 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=H2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=OLRAK"
autoassume:BORD:P2:CR 1174038142.00349 "PLN_POSITION:BORD:P2:671 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038142.00694 "PLN_POSITION:BORD:P2:671 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038142.01033 "PLN_POSITION:BORD:P2:493 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038142.01384 "PLN_POSITION:BORD:P2:2130 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=H3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=OLRAK"
autoassume:BORD:P2:CR 1174038142.0174 "PLN_POSITION:BORD:P2:493 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038142.02086 "PLN_POSITION:BORD:P2:2130 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=H3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=OLRAK"
autoassume:BORD:P2:CR 1174038142.02423 "PLN_POSITION:BORD:P2:420 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038142.02767 "PLN_POSITION:BORD:P2:537 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=330 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038142.03082 "PLN_POSITION:BORD:P2:860 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=390 Tfl=390 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038142.03401 "PLN_POSITION:BORD:P2:420 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038142.03719 "PLN_POSITION:BORD:P2:537 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=330 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038142.04037 "PLN_POSITION:BORD:P2:860 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=390 Tfl=390 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038142.04385 "PLN_POSITION:BORD:P2:2262 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=H2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=OLRAK"
autoassume:BORD:P2:CR 1174038142.04736 "PLN_POSITION:BORD:P2:649 PLN_EVENT GlobalStatus=CREE Callsign=TRA6087 Model=B737 Departure=EHRD Destination=LFTH RFL=320 CurrentSSRCode=3172 PreviousSSRCode=3172 CFL=350 SS=--"
autoassume:BORD:P2:CR 1174038142.05085 "PLN_POSITION:BORD:P2:649 COORD_EFL_UPD Efl=350"
autoassume:BORD:P2:CR 1174038142.05401 "PLN_POSITION:BORD:P2:649 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CR 1174038142.05729 "PLN_POSITION:BORD:P2:649 PLN_EVENT GlobalStatus=EVL Callsign=TRA6087 Model=B737 Departure=EHRD Destination=LFTH RFL=320 CurrentSSRCode=3172 PreviousSSRCode=3172 CFL=350 SS=--"
autoassume:BORD:P2:CR 1174038142.06059 "PLN_POSITION:BORD:P2:649 ROUTE_UPD [113.903384939415,15.8172087938183,0,KOTIS,0,1959-06-21,23400,SYSTEM][128.996261251978,-25.5846036630846,0,KUKOR,0,1959-06-21,23760,SYSTEM][148.05894074553,-63.7576831335955,0,TIS,0,1959-06-21,24060,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,24300,SYSTEM][179.143811894318,-113.224888861974,0,LATAM,0,1959-06-21,24420,SYSTEM]"
autoassume:BORD:P2:CR 1174038142.06404 "PLN_POSITION:BORD:P2:649 PLN_EVENT GlobalStatus=ACT Callsign=TRA6087 Model=B737 Departure=EHRD Destination=LFTH RFL=320 CurrentSSRCode=3172 PreviousSSRCode=3172 CFL=350 SS=--"
autoassume:BORD:P2:CR 1174038142.06755 "PLN_POSITION:BORD:P2:649 COORD_PT_UPD Beacon=LERGA"
autoassume:BORD:P2:CR 1174038142.07084 "PLN_POSITION:BORD:P2:649 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CO 1174038142.07428 "PLN_POSITION:BORD:P2:2220 COORD_PT_UPD Beacon=OLRAK"
autoassume:BORD:P2:CO 1174038142.07765 "PLN_POSITION:BORD:P2:2220 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CO 1174038142.11732 "PLN_POSITION:BORD:P2:2581 PLN_EVENT GlobalStatus=CREE Callsign=CSA6746 Model=B734 Departure=LKPR Destination=LEZL RFL=330 CurrentSSRCode=6622 PreviousSSRCode=6622 CFL=0 SS=--"
autoassume:BORD:P2:CO 1174038142.11976 "PLN_POSITION:BORD:P2:2581 COORD_EFL_UPD Efl=350"
autoassume:BORD:P2:CO 1174038142.122 "PLN_POSITION:BORD:P2:2581 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CO 1174038142.12433 "PLN_POSITION:BORD:P2:2581 PLN_EVENT GlobalStatus=EVL Callsign=CSA6746 Model=B734 Departure=LKPR Destination=LEZL RFL=330 CurrentSSRCode=6622 PreviousSSRCode=6622 CFL=0 SS=--"
autoassume:BORD:P2:CO 1174038142.12653 "PLN_POSITION:BORD:P2:2581 ROUTE_UPD [194.528783240283,-72.1257363254435,0,MEBAK,0,1959-06-21,23100,SYSTEM][179.688053459385,-84.3788454073992,0,REPSI,0,1959-06-21,23280,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,23460,SYSTEM][134.050632869653,-120.154911865762,0,MOKDI,0,1959-06-21,23700,SYSTEM][120.426252458085,-130.876595049978,0,OLRAK,0,1959-06-21,23820,SYSTEM][75.1215258774783,-161.000004604295,0,NARAK,0,1959-06-21,24300,SYSTEM]"
autoassume:BORD:P2:CO 1174038142.12888 "PLN_POSITION:BORD:P2:2581 PLN_EVENT GlobalStatus=ACT Callsign=CSA6746 Model=B734 Departure=LKPR Destination=LEZL RFL=330 CurrentSSRCode=6622 PreviousSSRCode=6622 CFL=0 SS=--"
autoassume:BORD:P2:CO 1174038142.13112 "PLN_POSITION:BORD:P2:2581 COORD_PT_UPD Beacon=OLRAK"
autoassume:BORD:P2:CO 1174038142.13377 "PLN_POSITION:BORD:P2:2581 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CO 1174038142.16413 "PLN_POSITION:BORD:P2:2431 PLN_EVENT GlobalStatus=CREE Callsign=CSA6662 Model=B734 Departure=LKPR Destination=LEBB RFL=350 CurrentSSRCode=6624 PreviousSSRCode=6624 CFL=0 SS=--"
autoassume:BORD:P2:CO 1174038142.16775 "PLN_POSITION:BORD:P2:2431 COORD_EFL_UPD Efl=350"
autoassume:BORD:P2:CO 1174038142.171 "PLN_POSITION:BORD:P2:2431 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CO 1174038142.17347 "PLN_POSITION:BORD:P2:2431 PLN_EVENT GlobalStatus=EVL Callsign=CSA6662 Model=B734 Departure=LKPR Destination=LEBB RFL=350 CurrentSSRCode=6624 PreviousSSRCode=6624 CFL=0 SS=--"
autoassume:BORD:P2:CO 1174038142.17589 "PLN_POSITION:BORD:P2:2431 ROUTE_UPD [194.528783240283,-72.1257363254435,0,MEBAK,0,1959-06-21,23400,SYSTEM][179.688053459385,-84.3788454073992,0,REPSI,0,1959-06-21,23580,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,23820,SYSTEM][134.050632869653,-120.154911865762,0,MOKDI,0,1959-06-21,24060,SYSTEM][120.426252458085,-130.876595049978,0,OLRAK,0,1959-06-21,24180,SYSTEM][75.1215258774783,-161.000004604295,0,NARAK,0,1959-06-21,24660,SYSTEM]"
autoassume:BORD:P2:CO 1174038142.17836 "PLN_POSITION:BORD:P2:2431 PLN_EVENT GlobalStatus=ACT Callsign=CSA6662 Model=B734 Departure=LKPR Destination=LEBB RFL=350 CurrentSSRCode=6624 PreviousSSRCode=6624 CFL=0 SS=--"
autoassume:BORD:P2:CO 1174038142.1808 "PLN_POSITION:BORD:P2:2431 COORD_PT_UPD Beacon=OLRAK"
autoassume:BORD:P2:CO 1174038142.18377 "PLN_POSITION:BORD:P2:2431 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CO 1174038142.2396 "BORD:P2:CO MODIFIER_AFFICHAGE_TRICOULEUR On=1"
autoassume:BORD:P2:CO 1174038142.24297 "PLN_POSITION:BORD:P2:671 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.24651 "PLN_POSITION:BORD:P2:671 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.25021 "PLN_POSITION:BORD:P2:493 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.25398 "PLN_POSITION:BORD:P2:2130 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=H3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=OLRAK"
autoassume:BORD:P2:CO 1174038142.25725 "PLN_POSITION:BORD:P2:493 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.2607 "PLN_POSITION:BORD:P2:2130 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=H3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=OLRAK"
autoassume:BORD:P2:CO 1174038142.26399 "PLN_POSITION:BORD:P2:420 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.26738 "PLN_POSITION:BORD:P2:537 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=330 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.27111 "PLN_POSITION:BORD:P2:860 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=390 Tfl=390 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.27471 "PLN_POSITION:BORD:P2:420 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.27819 "PLN_POSITION:BORD:P2:537 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=330 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.2815 "PLN_POSITION:BORD:P2:860 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=390 Tfl=390 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.28493 "PLN_POSITION:BORD:P2:671 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.28823 "PLN_POSITION:BORD:P2:671 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.29174 "PLN_POSITION:BORD:P2:493 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.29519 "PLN_POSITION:BORD:P2:493 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.2985 "PLN_POSITION:BORD:P2:2130 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=H3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=OLRAK"
autoassume:BORD:P2:CO 1174038142.30187 "PLN_POSITION:BORD:P2:420 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.30533 "PLN_POSITION:BORD:P2:537 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=330 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.30867 "PLN_POSITION:BORD:P2:2130 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=H3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=OLRAK"
autoassume:BORD:P2:CO 1174038142.31194 "PLN_POSITION:BORD:P2:420 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=370 Tfl=370 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.31539 "PLN_POSITION:BORD:P2:537 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=330 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.31861 "PLN_POSITION:BORD:P2:860 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=390 Tfl=390 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.32286 "PLN_POSITION:BORD:P2:420 COORD_STATE_UPD CoordStatus=MPS"
autoassume:BORD:P2:CO 1174038142.32644 "PLN_POSITION:BORD:P2:420 COORD_STATE_UPD CoordStatus=MAS"
autoassume:BORD:P2:CO 1174038142.33061 "PLN_POSITION:BORD:P2:466 COORD_STATE_UPD CoordStatus=MPS"
autoassume:BORD:P2:CO 1174038142.33409 "PLN_POSITION:BORD:P2:466 COORD_STATE_UPD CoordStatus=MAS"
autoassume:BORD:P2:CO 1174038142.3376 "PLN_POSITION:BORD:P2:2262 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=H2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=OLRAK"
autoassume:BORD:P2:CO 1174038142.34107 "PLN_POSITION:BORD:P2:2262 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=H2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=OLRAK"
autoassume:BORD:P2:CO 1174038142.34573 "PLN_POSITION:BORD:P2:2220 COORD_STATE_UPD CoordStatus=MPS"
autoassume:BORD:P2:CO 1174038142.34957 "PLN_POSITION:BORD:P2:2220 COORD_STATE_UPD CoordStatus=MAS"
autoassume:BORD:P2:CO 1174038142.3552 "PLN_POSITION:BORD:P2:2581 COORD_STATE_UPD CoordStatus=MPS"
autoassume:BORD:P2:CO 1174038142.35917 "PLN_POSITION:BORD:P2:2581 COORD_STATE_UPD CoordStatus=MAS"
autoassume:BORD:P2:CO 1174038142.36325 "PLN_POSITION:BORD:P2:466 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.3672 "PLN_POSITION:BORD:P2:2262 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=H2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=OLRAK"
autoassume:BORD:P2:CO 1174038142.37134 "PLN_POSITION:BORD:P2:466 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.37522 "PLN_POSITION:BORD:P2:466 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.38069 "PLN_POSITION:BORD:P2:860 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=390 Tfl=390 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.38491 "PLN_POSITION:BORD:P2:2262 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=H2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=OLRAK"
autoassume:BORD:P2:CO 1174038142.38907 "PLN_POSITION:BORD:P2:649 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.39263 "PLN_POSITION:BORD:P2:466 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.39602 "PLN_POSITION:BORD:P2:649 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038142.39973 "PLN_POSITION:BORD:P2:797 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=X2 PreviousSector=T2 Efl=350 Tfl=0 CoordPt=OLRAK"
GEODE:BORD:P2:CO 1174038142.40367 "PLN_POSITION:BORD:P2:466 REQUEST_COORD From=GEODE:BORD:P2:CO"
GEODE:BORD:P2:CO 1174038142.40734 "PLN_POSITION:BORD:P2:860 REQUEST_COORD From=GEODE:BORD:P2:CO"
GEODE:BORD:P2:CO 1174038142.41086 "PLN_POSITION:BORD:P2:2262 REQUEST_COORD From=GEODE:BORD:P2:CO"
GEODE:BORD:P2:CO 1174038142.41412 "PLN_POSITION:BORD:P2:466 REQUEST_COORD From=GEODE:BORD:P2:CO"
GEODE:BORD:P2:CO 1174038142.43715 "PLN_POSITION:BORD:P2:649 REQUEST_COORD From=GEODE:BORD:P2:CO"
GEODE:BORD:P2:CO 1174038142.45246 "PLN_POSITION:BORD:P2:797 REQUEST_COORD From=GEODE:BORD:P2:CO"
GEODE:BORD:P2:CR 1174038142.47146 "PLN_POSITION:BORD:P2:649 REQUEST_COORD From=GEODE:BORD:P2:CR"
GEODE:BORD:P2:CR 1174038142.48701 "PLN_POSITION:BORD:P2:797 REQUEST_COORD From=GEODE:BORD:P2:CR"
GEODE:BORD:P2:CR 1174038142.50408 "PLN_POSITION:BORD:P2:2097 REQUEST_COORD From=GEODE:BORD:P2:CR"
Rejeu 1174038142.52027 "TrackMovedEvent Flight=412 CallSign=VLG5326 Ssr=5301 Sector=-- Layers=S X=179.42 Y=-387.41 Vx=148 Vy=369 Afl=360 Rate=0 Heading=22 GroundSpeed=398 Tendency=0 Time=06:28:01"
Rejeu 1174038142.52302 "TrackMovedEvent Flight=420 CallSign=EZY5063 Ssr=6327 Sector=T3 Layers=S X=142.22 Y=-58.73 Vx=186 Vy=-468 Afl=370 Rate=0 Heading=158 GroundSpeed=504 Tendency=0 Time=06:28:01"
Rejeu 1174038142.5253 "TrackMovedEvent Flight=432 CallSign=ANS8175 Ssr=6736 Sector=XA Layers=U X=157.00 Y=-296.88 Vx=-317 Vy=-334 Afl=212 Rate=-1020 Heading=224 GroundSpeed=460 Tendency=-1 Time=06:28:01"
Rejeu 1174038142.52758 "TrackMovedEvent Flight=446 CallSign=AF711HI Ssr=6410 Sector=UJ Layers=U X=181.20 Y=23.48 Vx=-229 Vy=381 Afl=280 Rate=0 Heading=329 GroundSpeed=445 Tendency=0 Time=06:28:01"
Rejeu 1174038142.52991 "TrackMovedEvent Flight=448 CallSign=AF688ZA Ssr=3210 Sector=T1 Layers=F,U X=130.36 Y=-113.11 Vx=74 Vy=-467 Afl=310 Rate=0 Heading=171 GroundSpeed=473 Tendency=0 Time=06:28:01"
Rejeu 1174038142.53228 "TrackMovedEvent Flight=466 CallSign=BZ809KX Ssr=3212 Sector=T3 Layers=S X=159.89 Y=-61.98 Vx=282 Vy=-386 Afl=350 Rate=0 Heading=144 GroundSpeed=478 Tendency=0 Time=06:28:01"
Rejeu 1174038142.53455 "TrackMovedEvent Flight=471 CallSign=ANS8753 Ssr=4015 Sector=-- Layers=S X=168.55 Y=-287.22 Vx=-404 Vy=-150 Afl=330 Rate=0 Heading=250 GroundSpeed=431 Tendency=0 Time=06:28:01"
Rejeu 1174038142.53758 "TrackMovedEvent Flight=507 CallSign=AF006JS Ssr=3223 Sector=MO Layers=F X=215.17 Y=-166.48 Vx=182 Vy=-408 Afl=167 Rate=-3517 Heading=156 GroundSpeed=447 Tendency=-1 Time=06:28:01"
Rejeu 1174038142.5401 "TrackMovedEvent Flight=516 CallSign=EZY4331 Ssr=4050 Sector=CT Layers=S X=167.08 Y=-286.50 Vx=-331 Vy=-338 Afl=370 Rate=0 Heading=224 GroundSpeed=473 Tendency=0 Time=06:28:01"
Rejeu 1174038142.54238 "TrackMovedEvent Flight=537 CallSign=AF534BH Ssr=3226 Sector=T2 Layers=S X=135.70 Y=-34.05 Vx=170 Vy=-493 Afl=323 Rate=1436 Heading=161 GroundSpeed=521 Tendency=1 Time=06:28:01"
Rejeu 1174038142.54476 "TrackMovedEvent Flight=557 CallSign=ACL670 Ssr=4051 Sector=D1 Layers=U,S X=256.08 Y=-345.59 Vx=-322 Vy=-360 Afl=330 Rate=0 Heading=222 GroundSpeed=483 Tendency=0 Time=06:28:01"
Rejeu 1174038142.54701 "TrackMovedEvent Flight=583 CallSign=IVE201A Ssr=1003 Sector=O4 Layers=S X=237.75 Y=-74.00 Vx=391 Vy=233 Afl=380 Rate=0 Heading=59 GroundSpeed=455 Tendency=0 Time=06:28:01"
Rejeu 1174038142.5491 "TrackMovedEvent Flight=590 CallSign=ADH8146 Ssr=4055 Sector=DL Layers=U X=251.00 Y=-406.34 Vx=-454 Vy=-145 Afl=310 Rate=0 Heading=252 GroundSpeed=477 Tendency=0 Time=06:28:01"
Rejeu 1174038142.55124 "TrackMovedEvent Flight=591 CallSign=ADH8600 Ssr=4053 Sector=D1 Layers=U,S X=250.42 Y=-397.03 Vx=-447 Vy=-140 Afl=322 Rate=-1991 Heading=253 GroundSpeed=468 Tendency=-1 Time=06:28:01"
Rejeu 1174038142.55339 "TrackMovedEvent Flight=594 CallSign=KAJ7166 Ssr=6420 Sector=G2 Layers=U,S X=224.00 Y=-56.34 Vx=-230 Vy=331 Afl=320 Rate=0 Heading=325 GroundSpeed=403 Tendency=0 Time=06:28:01"
Rejeu 1174038142.55582 "TrackMovedEvent Flight=598 CallSign=ISG2370 Ssr=4046 Sector=M1 Layers=U X=179.97 Y=-281.05 Vx=-218 Vy=-370 Afl=269 Rate=0 Heading=211 GroundSpeed=429 Tendency=0 Time=06:28:01"
Rejeu 1174038142.55884 "TrackMovedEvent Flight=602 CallSign=TAR7436 Ssr=6426 Sector=DH Layers=S X=284.86 Y=-349.20 Vx=-237 Vy=324 Afl=340 Rate=0 Heading=324 GroundSpeed=401 Tendency=0 Time=06:28:01"
Rejeu 1174038142.56121 "TrackMovedEvent Flight=623 CallSign=KAJ7530 Ssr=6421 Sector=G3 Layers=U,S X=236.27 Y=-73.52 Vx=-221 Vy=317 Afl=359 Rate=0 Heading=325 GroundSpeed=386 Tendency=0 Time=06:28:01"
Rejeu 1174038142.56336 "TrackMovedEvent Flight=657 CallSign=TAR4010 Ssr=4754 Sector=F2 Layers=S X=249.67 Y=-261.34 Vx=-126 Vy=388 Afl=340 Rate=0 Heading=342 GroundSpeed=408 Tendency=0 Time=06:28:01"
Rejeu 1174038142.56552 "TrackMovedEvent Flight=663 CallSign=AF673KB Ssr=7302 Sector=MO Layers=U,S X=196.22 Y=-154.55 Vx=-142 Vy=353 Afl=244 Rate=621 Heading=338 GroundSpeed=380 Tendency=1 Time=06:28:01"
Rejeu 1174038142.56766 "TrackMovedEvent Flight=667 CallSign=AF202TC Ssr=3227 Sector=P1 Layers=U,S X=126.47 Y=-6.53 Vx=174 Vy=-497 Afl=330 Rate=0 Heading=161 GroundSpeed=527 Tendency=0 Time=06:28:01"
Rejeu 1174038142.56981 "TrackMovedEvent Flight=675 CallSign=CC101GM Ssr=0642 Sector=KJ Layers=F X=355.22 Y=-244.94 Vx=170 Vy=-231 Afl=130 Rate=0 Heading=144 GroundSpeed=287 Tendency=0 Time=06:28:01"
Rejeu 1174038142.57275 "TrackMovedEvent Flight=680 CallSign=ONG001 Ssr=4040 Sector=-- Layers=U X=281.86 Y=-73.59 Vx=-105 Vy=391 Afl=203 Rate=-1116 Heading=345 GroundSpeed=405 Tendency=-1 Time=06:28:01"
Rejeu 1174038142.57542 "TrackMovedEvent Flight=688 CallSign=N224MV Ssr=2311 Sector=AW Layers=F X=69.84 Y=-198.41 Vx=185 Vy=-2 Afl=95 Rate=416 Heading=91 GroundSpeed=185 Tendency=1 Time=06:28:01"
Rejeu 1174038142.57848 "TrackMovedEvent Flight=689 CallSign=BAW341 Ssr=6754 Sector=ND Layers=F,U X=319.94 Y=-189.61 Vx=163 Vy=-191 Afl=41 Rate=2864 Heading=140 GroundSpeed=251 Tendency=1 Time=06:28:01"
Rejeu 1174038142.58156 "TrackMovedEvent Flight=698 CallSign=ACL770 Ssr=4047 Sector=D1 Layers=U X=233.05 Y=-371.30 Vx=-318 Vy=-341 Afl=250 Rate=-1354 Heading=223 GroundSpeed=466 Tendency=-1 Time=06:28:01"
Rejeu 1174038142.5836 "TrackMovedEvent Flight=703 CallSign=AF203GP Ssr=6424 Sector=B1 Layers=F,U X=324.98 Y=-180.44 Vx=-118 Vy=270 Afl=110 Rate=1806 Heading=336 GroundSpeed=295 Tendency=1 Time=06:28:01"
Rejeu 1174038142.58592 "LayerEvent Flight=704 Layer=F Mode=Out"
Rejeu 1174038142.58794 "TrackMovedEvent Flight=704 CallSign=AF675SW Ssr=7305 Sector=S  Layers=U X=151.00 Y=-2.78 Vx=38 Vy=398 Afl=240 Rate=0 Heading=5 GroundSpeed=400 Tendency=0 Time=06:28:01"
Rejeu 1174038142.59023 "TrackMovedEvent Flight=706 CallSign=TAR7508 Ssr=6425 Sector=M2 Layers=S X=204.55 Y=-243.23 Vx=-367 Vy=181 Afl=340 Rate=0 Heading=296 GroundSpeed=409 Tendency=0 Time=06:28:01"
Rejeu 1174038142.59869 "TrackMovedEvent Flight=707 CallSign=ANS8623 Ssr=4045 Sector=XA Layers=U X=166.53 Y=-288.34 Vx=-369 Vy=-263 Afl=244 Rate=-1281 Heading=235 GroundSpeed=453 Tendency=-1 Time=06:28:01"
Rejeu 1174038142.60173 "TrackMovedEvent Flight=744 CallSign=CC201WB Ssr=0644 Sector=NN Layers=F X=344.19 Y=-206.30 Vx=226 Vy=-109 Afl=130 Rate=0 Heading=116 GroundSpeed=251 Tendency=0 Time=06:28:01"
Rejeu 1174038142.60379 "TrackMovedEvent Flight=755 CallSign=KAJ7122 Ssr=6423 Sector=Y2 Layers=U,S X=281.34 Y=-127.09 Vx=-231 Vy=305 Afl=320 Rate=0 Heading=323 GroundSpeed=383 Tendency=0 Time=06:28:01"
Rejeu 1174038142.60588 "TrackMovedEvent Flight=762 CallSign=RYR4822 Ssr=5675 Sector=RO Layers=F,U X=395.41 Y=-299.23 Vx=69 Vy=-398 Afl=200 Rate=-2156 Heading=170 GroundSpeed=404 Tendency=-1 Time=06:28:01"
Rejeu 1174038142.60798 "TrackMovedEvent Flight=765 CallSign=TAR4072 Ssr=7306 Sector=RO Layers=S X=378.25 Y=-320.97 Vx=-160 Vy=372 Afl=339 Rate=0 Heading=337 GroundSpeed=405 Tendency=0 Time=06:28:01"
Rejeu 1174038142.61006 "TrackMovedEvent Flight=777 CallSign=ISS292 Ssr=5663 Sector=-- Layers=U X=359.41 Y=-145.53 Vx=104 Vy=-464 Afl=240 Rate=1806 Heading=167 GroundSpeed=476 Tendency=1 Time=06:28:01"
Rejeu 1174038142.61205 "TrackMovedEvent Flight=780 CallSign=CFG423 Ssr=5305 Sector=F3 Layers=S X=239.98 Y=-247.47 Vx=155 Vy=378 Afl=360 Rate=0 Heading=22 GroundSpeed=409 Tendency=0 Time=06:28:01"
Rejeu 1174038142.61439 "TrackMovedEvent Flight=792 CallSign=EAB515 Ssr=7511 Sector=Y1 Layers=U X=238.53 Y=-84.03 Vx=-196 Vy=-312 Afl=290 Rate=0 Heading=212 GroundSpeed=368 Tendency=0 Time=06:28:01"
Rejeu 1174038142.61742 "TrackMovedEvent Flight=797 CallSign=IBE3475 Ssr=3015 Sector=G2 Layers=S X=223.48 Y=-46.31 Vx=-380 Vy=-201 Afl=344 Rate=984 Heading=242 GroundSpeed=430 Tendency=1 Time=06:28:01"
Rejeu 1174038142.61958 "TrackMovedEvent Flight=800 CallSign=ISS8230 Ssr=5673 Sector=3K Layers=S X=293.98 Y=16.86 Vx=-274 Vy=-354 Afl=351 Rate=0 Heading=218 GroundSpeed=448 Tendency=0 Time=06:28:01"
Rejeu 1174038142.62299 "TrackMovedEvent Flight=811 CallSign=BER4117 Ssr=5332 Sector=F3 Layers=S X=229.44 Y=-273.05 Vx=189 Vy=360 Afl=380 Rate=0 Heading=28 GroundSpeed=407 Tendency=0 Time=06:28:01"
Rejeu 1174038142.62652 "TrackMovedEvent Flight=812 CallSign=BZ668JQ Ssr=7311 Sector=AJ Layers=F,U,S X=383.95 Y=-294.94 Vx=-262 Vy=-66 Afl=57 Rate=2592 Heading=256 GroundSpeed=270 Tendency=1 Time=06:28:01"
Rejeu 1174038142.6286 "TrackMovedEvent Flight=815 CallSign=EDW270 Ssr=3005 Sector=-- Layers=U,S X=277.72 Y=-10.13 Vx=-335 Vy=-351 Afl=257 Rate=1358 Heading=224 GroundSpeed=485 Tendency=1 Time=06:28:01"
Rejeu 1174038142.63054 "TrackMovedEvent Flight=819 CallSign=AEE4152 Ssr=5752 Sector=UG Layers=F,U X=307.89 Y=-96.86 Vx=-369 Vy=155 Afl=290 Rate=-1902 Heading=293 GroundSpeed=400 Tendency=-1 Time=06:28:01"
Rejeu 1174038142.63247 "TrackMovedEvent Flight=820 CallSign=TAR8006 Ssr=5662 Sector=RO Layers=S X=424.36 Y=-379.77 Vx=-137 Vy=393 Afl=360 Rate=0 Heading=341 GroundSpeed=416 Tendency=0 Time=06:28:01"
Rejeu 1174038142.63448 "TrackMovedEvent Flight=822 CallSign=EZY4515 Ssr=3106 Sector=Y3 Layers=S X=256.88 Y=-82.64 Vx=-104 Vy=-462 Afl=370 Rate=0 Heading=193 GroundSpeed=474 Tendency=0 Time=06:28:01"
Rejeu 1174038142.63648 "TrackMovedEvent Flight=825 CallSign=ESK5CP Ssr=0646 Sector=NN Layers=F X=332.58 Y=-171.20 Vx=-106 Vy=-342 Afl=145 Rate=-1061 Heading=197 GroundSpeed=358 Tendency=-1 Time=06:28:01"
Rejeu 1174038142.63849 "TrackMovedEvent Flight=827 CallSign=TAR7492 Ssr=7307 Sector=RO Layers=S X=410.48 Y=-339.58 Vx=-143 Vy=418 Afl=340 Rate=0 Heading=341 GroundSpeed=442 Tendency=0 Time=06:28:01"
Rejeu 1174038142.64047 "TrackMovedEvent Flight=830 CallSign=SNG960 Ssr=5524 Sector=E1 Layers=U,S X=323.97 Y=-187.56 Vx=309 Vy=282 Afl=345 Rate=-955 Heading=48 GroundSpeed=418 Tendency=-1 Time=06:28:01"
Rejeu 1174038142.64272 "TrackMovedEvent Flight=857 CallSign=BER2565 Ssr=5512 Sector=-- Layers=U,S X=204.86 Y=-350.36 Vx=53 Vy=409 Afl=287 Rate=1036 Heading=7 GroundSpeed=412 Tendency=1 Time=06:28:01"
Rejeu 1174038142.64546 "TrackMovedEvent Flight=873 CallSign=BER439V Ssr=5307 Sector=-- Layers=S X=187.13 Y=-394.28 Vx=105 Vy=371 Afl=373 Rate=1414 Heading=16 GroundSpeed=386 Tendency=1 Time=06:28:01"
Rejeu 1174038142.64881 "TrackMovedEvent Flight=879 CallSign=BER9235 Ssr=5334 Sector=EN Layers=S X=210.02 Y=-310.22 Vx=65 Vy=389 Afl=380 Rate=0 Heading=9 GroundSpeed=394 Tendency=0 Time=06:28:01"
Rejeu 1174038142.65211 "TrackMovedEvent Flight=889 CallSign=IBE4623 Ssr=4063 Sector=RO Layers=S X=399.05 Y=-348.00 Vx=-425 Vy=-87 Afl=330 Rate=0 Heading=258 GroundSpeed=434 Tendency=0 Time=06:28:01"
Rejeu 1174038142.65419 "TrackMovedEvent Flight=896 CallSign=JET390 Ssr=4061 Sector=DH Layers=U,S X=294.42 Y=-357.28 Vx=-459 Vy=35 Afl=350 Rate=0 Heading=274 GroundSpeed=460 Tendency=0 Time=06:28:01"
Rejeu 1174038142.65623 "TrackMovedEvent Flight=897 CallSign=ESK6DR Ssr=7251 Sector=RO Layers=S X=345.39 Y=-125.92 Vx=-226 Vy=-418 Afl=370 Rate=0 Heading=208 GroundSpeed=475 Tendency=0 Time=06:28:01"
Rejeu 1174038142.65816 "TrackMovedEvent Flight=900 CallSign=AHR626 Ssr=4057 Sector=DH Layers=S X=311.91 Y=-284.91 Vx=-301 Vy=-396 Afl=350 Rate=0 Heading=217 GroundSpeed=497 Tendency=0 Time=06:28:01"
Rejeu 1174038142.66041 "TrackMovedEvent Flight=926 CallSign=ABP550 Ssr=5573 Sector=XA Layers=U X=191.22 Y=-293.92 Vx=312 Vy=190 Afl=274 Rate=475 Heading=59 GroundSpeed=365 Tendency=1 Time=06:28:01"
Rejeu 1174038142.66273 "TrackMovedEvent Flight=994 CallSign=TAR6204 Ssr=7312 Sector=RO Layers=S X=409.91 Y=-412.92 Vx=-228 Vy=355 Afl=340 Rate=0 Heading=327 GroundSpeed=422 Tendency=0 Time=06:28:01"
Rejeu 1174038142.66474 "TrackMovedEvent Flight=1046 CallSign=ISS2147 Ssr=4044 Sector=VR Layers=S X=172.44 Y=-338.75 Vx=-107 Vy=-492 Afl=370 Rate=0 Heading=192 GroundSpeed=504 Tendency=0 Time=06:28:01"
Rejeu 1174038142.66687 "TrackMovedEvent Flight=1146 CallSign=AZA05U Ssr=5554 Sector=E1 Layers=U,S X=299.84 Y=-208.41 Vx=310 Vy=279 Afl=360 Rate=0 Heading=48 GroundSpeed=417 Tendency=0 Time=06:28:01"
Rejeu 1174038142.6688 "TrackMovedEvent Flight=1153 CallSign=AZA200 Ssr=4065 Sector=K2 Layers=U,S X=444.48 Y=-227.69 Vx=-374 Vy=267 Afl=297 Rate=808 Heading=306 GroundSpeed=460 Tendency=1 Time=06:28:01"
Rejeu 1174038142.67081 "TrackMovedEvent Flight=1168 CallSign=DAL82 Ssr=6427 Sector=NN Layers=F X=285.23 Y=-202.47 Vx=258 Vy=-183 Afl=110 Rate=-1236 Heading=125 GroundSpeed=316 Tendency=-1 Time=06:28:01"
Rejeu 1174038142.67289 "TrackMovedEvent Flight=1188 CallSign=SMX5046 Ssr=4056 Sector=M3 Layers=S X=242.19 Y=-219.42 Vx=-337 Vy=-303 Afl=370 Rate=0 Heading=228 GroundSpeed=453 Tendency=0 Time=06:28:01"
Rejeu 1174038142.67485 "TrackMovedEvent Flight=1256 CallSign=SYR419 Ssr=4054 Sector=DL Layers=S X=265.11 Y=-415.09 Vx=-455 Vy=-59 Afl=330 Rate=0 Heading=263 GroundSpeed=459 Tendency=0 Time=06:28:01"
Rejeu 1174038142.67686 "TrackMovedEvent Flight=1258 CallSign=SEU532 Ssr=5674 Sector=D1 Layers=U,S X=292.67 Y=-296.14 Vx=391 Vy=-306 Afl=325 Rate=715 Heading=128 GroundSpeed=497 Tendency=1 Time=06:28:01"
Rejeu 1174038142.67916 "TrackMovedEvent Flight=1329 CallSign=VLE5078 Ssr=4052 Sector=M2 Layers=S X=183.38 Y=-274.75 Vx=-253 Vy=-426 Afl=350 Rate=0 Heading=211 GroundSpeed=495 Tendency=0 Time=06:28:01"
Rejeu 1174038142.68116 "TrackMovedEvent Flight=1338 CallSign=OHY7453 Ssr=7301 Sector=B2 Layers=S X=318.28 Y=-177.92 Vx=-334 Vy=193 Afl=340 Rate=0 Heading=300 GroundSpeed=386 Tendency=0 Time=06:28:01"
Rejeu 1174038142.68315 "TrackMovedEvent Flight=1362 CallSign=OHY993 Ssr=7310 Sector=K3 Layers=S X=427.47 Y=-216.19 Vx=-412 Vy=159 Afl=360 Rate=0 Heading=291 GroundSpeed=442 Tendency=0 Time=06:28:01"
Rejeu 1174038142.68518 "TrackMovedEvent Flight=1370 CallSign=BER1885 Ssr=5316 Sector=F3 Layers=S X=242.98 Y=-253.25 Vx=173 Vy=370 Afl=380 Rate=0 Heading=25 GroundSpeed=408 Tendency=0 Time=06:28:01"
Rejeu 1174038142.68752 "TrackMovedEvent Flight=1416 CallSign=TOM742P Ssr=5327 Sector=-- Layers=U,S X=167.28 Y=-391.94 Vx=224 Vy=428 Afl=304 Rate=1473 Heading=28 GroundSpeed=483 Tendency=1 Time=06:28:01"
Rejeu 1174038142.68974 "TrackMovedEvent Flight=1654 CallSign=LTE420 Ssr=5503 Sector=O4 Layers=S X=276.42 Y=-73.48 Vx=-113 Vy=388 Afl=380 Rate=0 Heading=344 GroundSpeed=404 Tendency=0 Time=06:28:01"
Rejeu 1174038142.69186 "TrackMovedEvent Flight=1683 CallSign=JKK021 Ssr=5520 Sector=F2 Layers=S X=227.97 Y=-275.70 Vx=178 Vy=350 Afl=340 Rate=0 Heading=27 GroundSpeed=393 Tendency=0 Time=06:28:01"
Rejeu 1174038142.69379 "TrackMovedEvent Flight=1707 CallSign=JKK045 Ssr=5325 Sector=EN Layers=S X=186.91 Y=-378.33 Vx=129 Vy=377 Afl=340 Rate=0 Heading=19 GroundSpeed=398 Tendency=0 Time=06:28:01"
Rejeu 1174038142.69572 "TrackMovedEvent Flight=1790 CallSign=AEA1063 Ssr=1042 Sector=W3 Layers=S X=154.97 Y=-128.89 Vx=370 Vy=227 Afl=380 Rate=0 Heading=58 GroundSpeed=434 Tendency=0 Time=06:28:01"
Rejeu 1174038142.69777 "TrackMovedEvent Flight=1864 CallSign=SWR1940 Ssr=5745 Sector=IG Layers=F,U X=249.27 Y=-57.81 Vx=24 Vy=-257 Afl=133 Rate=1735 Heading=175 GroundSpeed=258 Tendency=1 Time=06:28:01"
Rejeu 1174038142.69981 "TrackMovedEvent Flight=1876 CallSign=HLX332Z Ssr=1103 Sector=VR Layers=S X=167.38 Y=-344.17 Vx=-115 Vy=-467 Afl=358 Rate=-3369 Heading=194 GroundSpeed=481 Tendency=-1 Time=06:28:01"
Rejeu 1174038142.70192 "TrackMovedEvent Flight=2097 CallSign=KLM1263 Ssr=0163 Sector=W2 Layers=S X=174.14 Y=-103.61 Vx=327 Vy=-348 Afl=350 Rate=0 Heading=137 GroundSpeed=478 Tendency=0 Time=06:28:01"
Rejeu 1174038142.70398 "TrackMovedEvent Flight=2132 CallSign=GWI594 Ssr=2566 Sector=M3 Layers=S X=191.81 Y=-255.39 Vx=-214 Vy=-439 Afl=370 Rate=0 Heading=206 GroundSpeed=488 Tendency=0 Time=06:28:01"
Rejeu 1174038142.70607 "TrackMovedEvent Flight=2220 CallSign=CSA6720 Ssr=6621 Sector=T3 Layers=S X=136.28 Y=-113.75 Vx=-364 Vy=-269 Afl=350 Rate=0 Heading=234 GroundSpeed=453 Tendency=0 Time=06:28:01"
Rejeu 1174038142.70816 "TrackMovedEvent Flight=2255 CallSign=NRD751 Ssr=5502 Sector=-- Layers=U,S X=195.94 Y=-410.06 Vx=55 Vy=387 Afl=319 Rate=1361 Heading=8 GroundSpeed=391 Tendency=1 Time=06:28:01"
Rejeu 1174038142.71015 "TrackMovedEvent Flight=2405 CallSign=DLH54W Ssr=5355 Sector=B1 Layers=U X=264.05 Y=-174.77 Vx=191 Vy=402 Afl=300 Rate=0 Heading=25 GroundSpeed=445 Tendency=0 Time=06:28:01"
Rejeu 1174038142.71213 "TrackMovedEvent Flight=2408 CallSign=JKK2735 Ssr=5577 Sector=F2 Layers=U,S X=187.30 Y=-319.39 Vx=406 Vy=167 Afl=300 Rate=0 Heading=68 GroundSpeed=439 Tendency=0 Time=06:28:01"
Rejeu 1174038142.71414 "TrackMovedEvent Flight=2431 CallSign=CSA6662 Ssr=6624 Sector=G2 Layers=S X=209.98 Y=-55.45 Vx=-317 Vy=-284 Afl=350 Rate=0 Heading=228 GroundSpeed=426 Tendency=0 Time=06:28:01"
Rejeu 1174038142.71614 "TrackMovedEvent Flight=2581 CallSign=CSA6746 Ssr=6622 Sector=T3 Layers=S X=182.16 Y=-82.11 Vx=-323 Vy=-263 Afl=350 Rate=0 Heading=231 GroundSpeed=417 Tendency=0 Time=06:28:01"
Rejeu 1174038142.71821 "TrackMovedEvent Flight=2691 CallSign=AFR4370 Ssr=7621 Sector=F2 Layers=S X=265.41 Y=-274.53 Vx=392 Vy=-312 Afl=350 Rate=0 Heading=129 GroundSpeed=501 Tendency=0 Time=06:28:01"
Rejeu 1174038142.72026 "TrackMovedEvent Flight=3140 CallSign=DLH83N Ssr=0123 Sector=4K Layers=S X=270.39 Y=-34.47 Vx=-173 Vy=-436 Afl=350 Rate=0 Heading=202 GroundSpeed=469 Tendency=0 Time=06:28:01"
Rejeu 1174038142.72225 "TrackMovedEvent Flight=3146 CallSign=SWT364 Ssr=5364 Sector=F2 Layers=S X=258.86 Y=-248.03 Vx=280 Vy=299 Afl=340 Rate=0 Heading=43 GroundSpeed=410 Tendency=0 Time=06:28:01"
Rejeu 1174038142.72434 "TrackMovedEvent Flight=3198 CallSign=AZA9106 Ssr=4062 Sector=B2 Layers=U,S X=275.70 Y=-193.89 Vx=-430 Vy=-257 Afl=310 Rate=0 Heading=239 GroundSpeed=501 Tendency=0 Time=06:28:01"
Rejeu 1174038142.72631 "TrackMovedEvent Flight=3342 CallSign=JKK4731 Ssr=5320 Sector=K1 Layers=U,S X=342.06 Y=-280.27 Vx=196 Vy=335 Afl=320 Rate=0 Heading=30 GroundSpeed=388 Tendency=0 Time=06:28:01"
Rejeu 1174038142.72831 "TrackMovedEvent Flight=3412 CallSign=DLH42X Ssr=7522 Sector=GV Layers=U X=299.17 Y=21.53 Vx=-317 Vy=-283 Afl=310 Rate=0 Heading=228 GroundSpeed=425 Tendency=0 Time=06:28:01"
Rejeu 1174038142.73024 "TrackMovedEvent Flight=3499 CallSign=JKK4519 Ssr=5501 Sector=F1 Layers=U,S X=238.25 Y=-287.44 Vx=245 Vy=330 Afl=321 Rate=0 Heading=37 GroundSpeed=411 Tendency=0 Time=06:28:01"
Rejeu 1174038142.73221 "TrackMovedEvent Flight=3557 CallSign=HLF168 Ssr=5311 Sector=B3 Layers=S X=272.27 Y=-163.52 Vx=149 Vy=372 Afl=379 Rate=-955 Heading=22 GroundSpeed=401 Tendency=-1 Time=06:28:01"
Rejeu 1174038142.73414 "TrackMovedEvent Flight=3620 CallSign=EZY4911 Ssr=2525 Sector=M3 Layers=S X=184.69 Y=-271.52 Vx=-230 Vy=-433 Afl=390 Rate=0 Heading=208 GroundSpeed=490 Tendency=0 Time=06:28:01"
Rejeu 1174038142.73612 "TrackMovedEvent Flight=3663 CallSign=JKK4713 Ssr=5526 Sector=E1 Layers=U,S X=269.70 Y=-242.55 Vx=237 Vy=324 Afl=340 Rate=0 Heading=36 GroundSpeed=401 Tendency=0 Time=06:28:01"
Rejeu 1174038142.73808 "TrackMovedEvent Flight=3691 CallSign=JKK4741 Ssr=5327 Sector=F2 Layers=U,S X=209.64 Y=-327.56 Vx=242 Vy=328 Afl=320 Rate=0 Heading=36 GroundSpeed=408 Tendency=0 Time=06:28:01"
Rejeu 1174038142.74026 "TrackMovedEvent Flight=3886 CallSign=TCV6334 Ssr=4060 Sector=M2 Layers=S X=241.05 Y=-216.63 Vx=-356 Vy=-339 Afl=350 Rate=0 Heading=226 GroundSpeed=492 Tendency=0 Time=06:28:01"
Rejeu 1174038142.74224 "TrackMovedEvent Flight=3926 CallSign=AFR4100 Ssr=3222 Sector=A2 Layers=S X=210.45 Y=-128.22 Vx=423 Vy=-253 Afl=350 Rate=0 Heading=121 GroundSpeed=493 Tendency=0 Time=06:28:01"
Rejeu 1174038142.7441 "LayerEvent Flight=4117 Layer=S Mode=Out"
Rejeu 1174038142.74594 "TrackMovedEvent Flight=4117 CallSign=AEU437 Ssr=6350 Sector=E2 Layers=F,U X=318.09 Y=-194.03 Vx=456 Vy=-227 Afl=267 Rate=-1708 Heading=116 GroundSpeed=509 Tendency=-1 Time=06:28:01"
Rejeu 1174038142.74786 "TrackMovedEvent Flight=9302 CallSign=CLW706 Ssr=2330 Sector=H2 Layers=S X=103.70 Y=-161.13 Vx=346 Vy=224 Afl=340 Rate=0 Heading=57 GroundSpeed=412 Tendency=0 Time=06:28:01"
Rejeu 1174038142.7498 "TrackMovedEvent Flight=9436 CallSign=AFR174 Ssr=5615 Sector=H2 Layers=S X=90.75 Y=-184.66 Vx=320 Vy=305 Afl=340 Rate=0 Heading=46 GroundSpeed=442 Tendency=0 Time=06:28:01"
Rejeu 1174038142.75177 "TrackMovedEvent Flight=9631 CallSign=KLM588 Ssr=4055 Sector=D3 Layers=S X=246.08 Y=-420.38 Vx=-76 Vy=451 Afl=380 Rate=0 Heading=350 GroundSpeed=457 Tendency=0 Time=06:28:01"
Rejeu 1174038142.75365 "TrackMovedEvent Flight=9904 CallSign=BIE576A Ssr=7642 Sector=T2 Layers=S X=113.44 Y=-41.63 Vx=87 Vy=-493 Afl=329 Rate=416 Heading=170 GroundSpeed=501 Tendency=1 Time=06:28:01"
Rejeu 1174038142.75557 "ClockEvent Time=06:28:02 Rate=1.0 Bs=0"
Rejeu 1174038142.75755 "RadarEndEvent"
Rejeu 1174038142.75947 "TrackMovedEvent Flight=146 CallSign=TAM8097 Ssr=7605 Sector=MI Layers=F,U X=287.23 Y=-80.95 Vx=452 Vy=-122 Afl=285 Rate=1947 Heading=105 GroundSpeed=468 Tendency=1 Time=06:28:02"
Rejeu 1174038142.76146 "TrackMovedEvent Flight=193 CallSign=GZA5361 Ssr=3140 Sector=O2 Layers=S X=286.81 Y=-51.80 Vx=77 Vy=-438 Afl=370 Rate=0 Heading=170 GroundSpeed=445 Tendency=0 Time=06:28:02"
Rejeu 1174038142.76337 "TrackMovedEvent Flight=219 CallSign=RAE1510 Ssr=5670 Sector=K2 Layers=F,U,S X=358.78 Y=-248.16 Vx=254 Vy=-439 Afl=350 Rate=0 Heading=150 GroundSpeed=507 Tendency=0 Time=06:28:02"
Rejeu 1174038142.76528 "TrackMovedEvent Flight=242 CallSign=CFG855 Ssr=5504 Sector=EN Layers=U,S X=204.41 Y=-337.94 Vx=83 Vy=404 Afl=340 Rate=0 Heading=12 GroundSpeed=412 Tendency=0 Time=06:28:02"
Rejeu 1174038142.76714 "TrackMovedEvent Flight=253 CallSign=VLG5040 Ssr=5566 Sector=F1 Layers=U,S X=228.88 Y=-287.73 Vx=266 Vy=318 Afl=340 Rate=0 Heading=40 GroundSpeed=415 Tendency=0 Time=06:28:02"
Rejeu 1174038142.76921 "TrackMovedEvent Flight=294 CallSign=BZ699WF Ssr=1763 Sector=KJ Layers=F X=381.44 Y=-282.55 Vx=225 Vy=-168 Afl=46 Rate=-916 Heading=127 GroundSpeed=281 Tendency=-1 Time=06:28:02"
Rejeu 1174038142.77124 "TrackMovedEvent Flight=308 CallSign=BER3999 Ssr=5505 Sector=F3 Layers=S X=223.19 Y=-295.63 Vx=172 Vy=360 Afl=380 Rate=0 Heading=26 GroundSpeed=399 Tendency=0 Time=06:28:02"
Rejeu 1174038142.77329 "TrackMovedEvent Flight=318 CallSign=BPA1602 Ssr=2363 Sector=Y2 Layers=U X=271.75 Y=-101.92 Vx=471 Vy=-145 Afl=270 Rate=0 Heading=107 GroundSpeed=493 Tendency=0 Time=06:28:02"
Rejeu 1174038142.77524 "TrackMovedEvent Flight=320 CallSign=BAW2362 Ssr=6363 Sector=W1 Layers=F,U X=193.28 Y=-130.41 Vx=365 Vy=-312 Afl=279 Rate=-1069 Heading=131 GroundSpeed=480 Tendency=-1 Time=06:28:02"
Rejeu 1174038142.77711 "TrackMovedEvent Flight=374 CallSign=AEU241 Ssr=6334 Sector=A3 Layers=S X=198.80 Y=-123.61 Vx=424 Vy=-247 Afl=370 Rate=0 Heading=120 GroundSpeed=491 Tendency=0 Time=06:28:02"
Rejeu 1174038142.779 "TrackMovedEvent Flight=375 CallSign=AF660KU Ssr=3213 Sector=-- Layers=F X=227.06 Y=-194.66 Vx=94 Vy=-249 Afl=35 Rate=-1081 Heading=159 GroundSpeed=266 Tendency=-1 Time=06:28:02"
Rejeu 1174038142.78091 "TrackMovedEvent Flight=377 CallSign=AF700YH Ssr=3211 Sector=W2 Layers=S X=165.92 Y=-98.09 Vx=367 Vy=-365 Afl=330 Rate=0 Heading=135 GroundSpeed=518 Tendency=0 Time=06:28:02"
Rejeu 1174038142.78286 "TrackMovedEvent Flight=387 CallSign=BER9143 Ssr=5310 Sector=EN Layers=S X=192.28 Y=-362.72 Vx=122 Vy=377 Afl=380 Rate=0 Heading=18 GroundSpeed=396 Tendency=0 Time=06:28:02"
Rejeu 1174038142.78481 "TrackMovedEvent Flight=407 CallSign=LGL931 Ssr=5656 Sector=D3 Layers=S X=367.59 Y=-327.95 Vx=238 Vy=-406 Afl=390 Rate=0 Heading=150 GroundSpeed=471 Tendency=0 Time=06:28:02"
Rejeu 1174038142.78681 "TrackMovedEvent Flight=412 CallSign=VLG5326 Ssr=5301 Sector=-- Layers=S X=179.47 Y=-387.30 Vx=148 Vy=369 Afl=360 Rate=0 Heading=22 GroundSpeed=398 Tendency=0 Time=06:28:02"
Rejeu 1174038142.78873 "TrackMovedEvent Flight=420 CallSign=EZY5063 Ssr=6327 Sector=T3 Layers=S X=142.27 Y=-58.84 Vx=186 Vy=-468 Afl=370 Rate=0 Heading=158 GroundSpeed=504 Tendency=0 Time=06:28:02"
Rejeu 1174038142.79081 "TrackMovedEvent Flight=432 CallSign=ANS8175 Ssr=6736 Sector=XA Layers=U X=156.92 Y=-296.95 Vx=-317 Vy=-334 Afl=211 Rate=-1026 Heading=224 GroundSpeed=460 Tendency=-1 Time=06:28:02"
Rejeu 1174038142.79279 "TrackMovedEvent Flight=446 CallSign=AF711HI Ssr=6410 Sector=UJ Layers=U X=181.14 Y=23.59 Vx=-229 Vy=381 Afl=280 Rate=0 Heading=329 GroundSpeed=445 Tendency=0 Time=06:28:02"
Rejeu 1174038142.79506 "TrackMovedEvent Flight=448 CallSign=AF688ZA Ssr=3210 Sector=T1 Layers=F,U X=130.38 Y=-113.22 Vx=74 Vy=-467 Afl=310 Rate=0 Heading=171 GroundSpeed=473 Tendency=0 Time=06:28:02"
Rejeu 1174038142.79767 "TrackMovedEvent Flight=466 CallSign=BZ809KX Ssr=3212 Sector=T3 Layers=S X=159.97 Y=-62.08 Vx=282 Vy=-386 Afl=350 Rate=0 Heading=144 GroundSpeed=478 Tendency=0 Time=06:28:02"
Rejeu 1174038142.80009 "TrackMovedEvent Flight=471 CallSign=ANS8753 Ssr=4015 Sector=-- Layers=S X=168.44 Y=-287.27 Vx=-404 Vy=-151 Afl=330 Rate=0 Heading=250 GroundSpeed=431 Tendency=0 Time=06:28:02"
Rejeu 1174038142.80204 "TrackMovedEvent Flight=507 CallSign=AF006JS Ssr=3223 Sector=MO Layers=F X=215.20 Y=-166.58 Vx=181 Vy=-408 Afl=166 Rate=-3484 Heading=156 GroundSpeed=446 Tendency=-1 Time=06:28:02"
Rejeu 1174038142.80413 "TrackMovedEvent Flight=516 CallSign=EZY4331 Ssr=4050 Sector=CT Layers=S X=166.98 Y=-286.59 Vx=-332 Vy=-338 Afl=370 Rate=0 Heading=224 GroundSpeed=474 Tendency=0 Time=06:28:02"
Rejeu 1174038142.80654 "TrackMovedEvent Flight=537 CallSign=AF534BH Ssr=3226 Sector=T2 Layers=S X=135.75 Y=-34.17 Vx=170 Vy=-493 Afl=323 Rate=1423 Heading=161 GroundSpeed=521 Tendency=1 Time=06:28:02"
Rejeu 1174038142.80852 "TrackMovedEvent Flight=557 CallSign=ACL670 Ssr=4051 Sector=D1 Layers=U,S X=255.98 Y=-345.69 Vx=-321 Vy=-361 Afl=330 Rate=0 Heading=222 GroundSpeed=483 Tendency=0 Time=06:28:02"
Rejeu 1174038142.81048 "TrackMovedEvent Flight=583 CallSign=IVE201A Ssr=1003 Sector=O4 Layers=S X=237.86 Y=-73.94 Vx=391 Vy=232 Afl=380 Rate=0 Heading=59 GroundSpeed=455 Tendency=0 Time=06:28:02"
Rejeu 1174038142.81281 "TrackMovedEvent Flight=590 CallSign=ADH8146 Ssr=4055 Sector=DL Layers=U X=250.86 Y=-406.39 Vx=-454 Vy=-145 Afl=310 Rate=0 Heading=252 GroundSpeed=477 Tendency=0 Time=06:28:02"
Rejeu 1174038142.81528 "TrackMovedEvent Flight=591 CallSign=ADH8600 Ssr=4053 Sector=D1 Layers=U,S X=250.30 Y=-397.06 Vx=-447 Vy=-140 Afl=322 Rate=-2006 Heading=253 GroundSpeed=468 Tendency=-1 Time=06:28:02"
Rejeu 1174038142.81837 "TrackMovedEvent Flight=594 CallSign=KAJ7166 Ssr=6420 Sector=G2 Layers=U,S X=223.94 Y=-56.23 Vx=-230 Vy=331 Afl=320 Rate=0 Heading=325 GroundSpeed=403 Tendency=0 Time=06:28:02"
Rejeu 1174038142.82229 "TrackMovedEvent Flight=598 CallSign=ISG2370 Ssr=4046 Sector=M1 Layers=U X=179.91 Y=-281.14 Vx=-218 Vy=-370 Afl=269 Rate=0 Heading=211 GroundSpeed=429 Tendency=0 Time=06:28:02"
Rejeu 1174038142.82538 "TrackMovedEvent Flight=602 CallSign=TAR7436 Ssr=6426 Sector=DH Layers=S X=284.80 Y=-349.11 Vx=-237 Vy=324 Afl=340 Rate=0 Heading=324 GroundSpeed=401 Tendency=0 Time=06:28:02"
Rejeu 1174038142.82755 "TrackMovedEvent Flight=623 CallSign=KAJ7530 Ssr=6421 Sector=G3 Layers=U,S X=236.20 Y=-73.42 Vx=-221 Vy=317 Afl=359 Rate=0 Heading=325 GroundSpeed=386 Tendency=0 Time=06:28:02"
Rejeu 1174038142.82946 "TrackMovedEvent Flight=657 CallSign=TAR4010 Ssr=4754 Sector=F2 Layers=S X=249.64 Y=-261.25 Vx=-126 Vy=388 Afl=340 Rate=0 Heading=342 GroundSpeed=408 Tendency=0 Time=06:28:02"
Rejeu 1174038142.8313 "TrackMovedEvent Flight=663 CallSign=AF673KB Ssr=7302 Sector=MO Layers=U,S X=196.17 Y=-154.44 Vx=-142 Vy=353 Afl=244 Rate=614 Heading=338 GroundSpeed=380 Tendency=1 Time=06:28:02"
Rejeu 1174038142.83313 "TrackMovedEvent Flight=667 CallSign=AF202TC Ssr=3227 Sector=P1 Layers=U,S X=126.52 Y=-6.66 Vx=174 Vy=-497 Afl=330 Rate=0 Heading=161 GroundSpeed=527 Tendency=0 Time=06:28:02"
Rejeu 1174038142.83496 "TrackMovedEvent Flight=675 CallSign=CC101GM Ssr=0642 Sector=KJ Layers=F X=355.27 Y=-245.00 Vx=171 Vy=-231 Afl=130 Rate=0 Heading=143 GroundSpeed=287 Tendency=0 Time=06:28:02"
Rejeu 1174038142.83684 "TrackMovedEvent Flight=680 CallSign=ONG001 Ssr=4040 Sector=-- Layers=U X=281.83 Y=-73.47 Vx=-105 Vy=391 Afl=203 Rate=-1109 Heading=345 GroundSpeed=405 Tendency=-1 Time=06:28:02"
Rejeu 1174038142.83903 "TrackMovedEvent Flight=688 CallSign=N224MV Ssr=2311 Sector=AW Layers=F X=69.89 Y=-198.41 Vx=185 Vy=-2 Afl=95 Rate=416 Heading=91 GroundSpeed=185 Tendency=1 Time=06:28:02"
Rejeu 1174038142.84184 "TrackMovedEvent Flight=689 CallSign=BAW341 Ssr=6754 Sector=ND Layers=F,U X=319.97 Y=-189.69 Vx=157 Vy=-198 Afl=42 Rate=2916 Heading=142 GroundSpeed=253 Tendency=1 Time=06:28:02"
Rejeu 1174038142.84411 "TrackMovedEvent Flight=698 CallSign=ACL770 Ssr=4047 Sector=D1 Layers=U X=232.97 Y=-371.39 Vx=-317 Vy=-340 Afl=250 Rate=-1361 Heading=223 GroundSpeed=465 Tendency=-1 Time=06:28:02"
Rejeu 1174038142.84603 "TrackMovedEvent Flight=703 CallSign=AF203GP Ssr=6424 Sector=B1 Layers=F,U X=324.94 Y=-180.38 Vx=-122 Vy=270 Afl=110 Rate=1780 Heading=336 GroundSpeed=296 Tendency=1 Time=06:28:02"
Rejeu 1174038142.84881 "TrackMovedEvent Flight=704 CallSign=AF675SW Ssr=7305 Sector=S  Layers=U X=151.02 Y=-2.66 Vx=38 Vy=398 Afl=240 Rate=0 Heading=5 GroundSpeed=400 Tendency=0 Time=06:28:02"
Rejeu 1174038142.85076 "TrackMovedEvent Flight=706 CallSign=TAR7508 Ssr=6425 Sector=M2 Layers=S X=204.44 Y=-243.19 Vx=-367 Vy=181 Afl=340 Rate=0 Heading=296 GroundSpeed=409 Tendency=0 Time=06:28:02"
Rejeu 1174038142.85275 "TrackMovedEvent Flight=707 CallSign=ANS8623 Ssr=4045 Sector=XA Layers=U X=166.42 Y=-288.42 Vx=-369 Vy=-263 Afl=244 Rate=-1260 Heading=235 GroundSpeed=453 Tendency=-1 Time=06:28:02"
Rejeu 1174038142.85471 "TrackMovedEvent Flight=744 CallSign=CC201WB Ssr=0644 Sector=NN Layers=F X=344.25 Y=-206.33 Vx=227 Vy=-109 Afl=130 Rate=0 Heading=116 GroundSpeed=252 Tendency=0 Time=06:28:02"
Rejeu 1174038142.85665 "TrackMovedEvent Flight=755 CallSign=KAJ7122 Ssr=6423 Sector=Y2 Layers=U,S X=281.28 Y=-127.00 Vx=-232 Vy=305 Afl=320 Rate=0 Heading=323 GroundSpeed=383 Tendency=0 Time=06:28:02"
Rejeu 1174038142.85858 "TrackMovedEvent Flight=762 CallSign=RYR4822 Ssr=5675 Sector=RO Layers=F,U X=395.44 Y=-299.34 Vx=70 Vy=-398 Afl=200 Rate=-2156 Heading=170 GroundSpeed=404 Tendency=-1 Time=06:28:02"
Rejeu 1174038142.86063 "TrackMovedEvent Flight=765 CallSign=TAR4072 Ssr=7306 Sector=RO Layers=S X=378.20 Y=-320.88 Vx=-159 Vy=372 Afl=339 Rate=0 Heading=337 GroundSpeed=405 Tendency=0 Time=06:28:02"
Rejeu 1174038142.86259 "TrackMovedEvent Flight=777 CallSign=ISS292 Ssr=5663 Sector=-- Layers=U X=359.42 Y=-145.66 Vx=104 Vy=-464 Afl=240 Rate=1813 Heading=167 GroundSpeed=476 Tendency=1 Time=06:28:02"
Rejeu 1174038142.86457 "TrackMovedEvent Flight=780 CallSign=CFG423 Ssr=5305 Sector=F3 Layers=S X=240.03 Y=-247.38 Vx=155 Vy=378 Afl=360 Rate=0 Heading=22 GroundSpeed=409 Tendency=0 Time=06:28:02"
Rejeu 1174038142.86679 "TrackMovedEvent Flight=792 CallSign=EAB515 Ssr=7511 Sector=Y1 Layers=U X=238.47 Y=-84.13 Vx=-196 Vy=-312 Afl=290 Rate=0 Heading=212 GroundSpeed=368 Tendency=0 Time=06:28:02"
Rejeu 1174038142.86907 "TrackMovedEvent Flight=797 CallSign=IBE3475 Ssr=3015 Sector=G2 Layers=S X=223.38 Y=-46.38 Vx=-380 Vy=-201 Afl=344 Rate=975 Heading=242 GroundSpeed=430 Tendency=1 Time=06:28:02"
Rejeu 1174038142.8722 "TrackMovedEvent Flight=800 CallSign=ISS8230 Ssr=5673 Sector=3K Layers=S X=293.89 Y=16.77 Vx=-274 Vy=-353 Afl=351 Rate=0 Heading=218 GroundSpeed=447 Tendency=0 Time=06:28:02"
Rejeu 1174038142.87571 "TrackMovedEvent Flight=811 CallSign=BER4117 Ssr=5332 Sector=F3 Layers=S X=229.48 Y=-272.95 Vx=189 Vy=360 Afl=380 Rate=0 Heading=28 GroundSpeed=407 Tendency=0 Time=06:28:02"
Rejeu 1174038142.87843 "TrackMovedEvent Flight=812 CallSign=BZ668JQ Ssr=7311 Sector=AJ Layers=F,U,S X=383.88 Y=-294.94 Vx=-262 Vy=-65 Afl=58 Rate=2606 Heading=256 GroundSpeed=270 Tendency=1 Time=06:28:02"
Rejeu 1174038142.88046 "TrackMovedEvent Flight=815 CallSign=EDW270 Ssr=3005 Sector=-- Layers=U,S X=277.66 Y=-10.23 Vx=-333 Vy=-353 Afl=257 Rate=1371 Heading=223 GroundSpeed=485 Tendency=1 Time=06:28:02"
Rejeu 1174038142.88257 "TrackMovedEvent Flight=819 CallSign=AEE4152 Ssr=5752 Sector=UG Layers=F,U X=307.78 Y=-96.81 Vx=-369 Vy=155 Afl=289 Rate=-1895 Heading=293 GroundSpeed=400 Tendency=-1 Time=06:28:02"
Rejeu 1174038142.88453 "TrackMovedEvent Flight=820 CallSign=TAR8006 Ssr=5662 Sector=RO Layers=S X=424.31 Y=-379.66 Vx=-136 Vy=393 Afl=360 Rate=0 Heading=341 GroundSpeed=416 Tendency=0 Time=06:28:02"
Rejeu 1174038142.88684 "TrackMovedEvent Flight=822 CallSign=EZY4515 Ssr=3106 Sector=Y3 Layers=S X=256.84 Y=-82.78 Vx=-105 Vy=-462 Afl=370 Rate=0 Heading=193 GroundSpeed=474 Tendency=0 Time=06:28:02"
Rejeu 1174038142.88895 "TrackMovedEvent Flight=825 CallSign=ESK5CP Ssr=0646 Sector=NN Layers=F X=332.56 Y=-171.30 Vx=-103 Vy=-343 Afl=145 Rate=-1114 Heading=197 GroundSpeed=358 Tendency=-1 Time=06:28:02"
Rejeu 1174038142.89099 "TrackMovedEvent Flight=827 CallSign=TAR7492 Ssr=7307 Sector=RO Layers=S X=410.45 Y=-339.45 Vx=-143 Vy=418 Afl=340 Rate=0 Heading=341 GroundSpeed=442 Tendency=0 Time=06:28:02"
Rejeu 1174038142.89299 "TrackMovedEvent Flight=830 CallSign=SNG960 Ssr=5524 Sector=E1 Layers=U,S X=324.05 Y=-187.50 Vx=309 Vy=282 Afl=345 Rate=-955 Heading=48 GroundSpeed=418 Tendency=-1 Time=06:28:02"
Rejeu 1174038142.89499 "TrackMovedEvent Flight=857 CallSign=BER2565 Ssr=5512 Sector=-- Layers=U,S X=204.86 Y=-350.23 Vx=54 Vy=410 Afl=287 Rate=1029 Heading=8 GroundSpeed=414 Tendency=1 Time=06:28:02"
Rejeu 1174038142.89693 "TrackMovedEvent Flight=873 CallSign=BER439V Ssr=5307 Sector=-- Layers=S X=187.16 Y=-394.19 Vx=105 Vy=371 Afl=374 Rate=1436 Heading=16 GroundSpeed=386 Tendency=1 Time=06:28:02"
Rejeu 1174038142.89881 "TrackMovedEvent Flight=879 CallSign=BER9235 Ssr=5334 Sector=EN Layers=S X=210.05 Y=-310.11 Vx=66 Vy=388 Afl=380 Rate=0 Heading=10 GroundSpeed=394 Tendency=0 Time=06:28:02"
Rejeu 1174038142.90079 "TrackMovedEvent Flight=889 CallSign=IBE4623 Ssr=4063 Sector=RO Layers=S X=398.94 Y=-348.02 Vx=-425 Vy=-87 Afl=330 Rate=0 Heading=258 GroundSpeed=434 Tendency=0 Time=06:28:02"
Rejeu 1174038142.90273 "TrackMovedEvent Flight=896 CallSign=JET390 Ssr=4061 Sector=DH Layers=U,S X=294.30 Y=-357.27 Vx=-459 Vy=34 Afl=350 Rate=0 Heading=274 GroundSpeed=460 Tendency=0 Time=06:28:02"
Rejeu 1174038142.90468 "TrackMovedEvent Flight=897 CallSign=ESK6DR Ssr=7251 Sector=RO Layers=S X=345.34 Y=-126.03 Vx=-226 Vy=-418 Afl=370 Rate=0 Heading=208 GroundSpeed=475 Tendency=0 Time=06:28:02"
Rejeu 1174038142.90676 "TrackMovedEvent Flight=900 CallSign=AHR626 Ssr=4057 Sector=DH Layers=S X=311.83 Y=-285.02 Vx=-301 Vy=-396 Afl=350 Rate=0 Heading=217 GroundSpeed=497 Tendency=0 Time=06:28:02"
Rejeu 1174038142.90882 "TrackMovedEvent Flight=926 CallSign=ABP550 Ssr=5573 Sector=XA Layers=U X=191.31 Y=-293.88 Vx=313 Vy=189 Afl=274 Rate=475 Heading=59 GroundSpeed=366 Tendency=1 Time=06:28:02"
Rejeu 1174038142.91116 "TrackMovedEvent Flight=994 CallSign=TAR6204 Ssr=7312 Sector=RO Layers=S X=409.84 Y=-412.83 Vx=-229 Vy=355 Afl=340 Rate=0 Heading=327 GroundSpeed=422 Tendency=0 Time=06:28:02"
Rejeu 1174038142.91317 "TrackMovedEvent Flight=1046 CallSign=ISS2147 Ssr=4044 Sector=VR Layers=S X=172.41 Y=-338.89 Vx=-107 Vy=-492 Afl=370 Rate=0 Heading=192 GroundSpeed=504 Tendency=0 Time=06:28:02"
Rejeu 1174038142.91511 "TrackMovedEvent Flight=1146 CallSign=AZA05U Ssr=5554 Sector=E1 Layers=U,S X=299.92 Y=-208.33 Vx=310 Vy=278 Afl=360 Rate=0 Heading=48 GroundSpeed=416 Tendency=0 Time=06:28:02"
Rejeu 1174038142.91709 "TrackMovedEvent Flight=1153 CallSign=AZA200 Ssr=4065 Sector=K2 Layers=U,S X=444.39 Y=-227.61 Vx=-373 Vy=267 Afl=297 Rate=778 Heading=306 GroundSpeed=459 Tendency=1 Time=06:28:02"
Rejeu 1174038142.91905 "TrackMovedEvent Flight=1168 CallSign=DAL82 Ssr=6427 Sector=NN Layers=F X=285.30 Y=-202.52 Vx=258 Vy=-183 Afl=110 Rate=-1228 Heading=125 GroundSpeed=316 Tendency=-1 Time=06:28:02"
Rejeu 1174038142.92094 "TrackMovedEvent Flight=1188 CallSign=SMX5046 Ssr=4056 Sector=M3 Layers=S X=242.09 Y=-219.52 Vx=-337 Vy=-303 Afl=370 Rate=0 Heading=228 GroundSpeed=453 Tendency=0 Time=06:28:02"
Rejeu 1174038142.92289 "TrackMovedEvent Flight=1256 CallSign=SYR419 Ssr=4054 Sector=DL Layers=S X=264.97 Y=-415.11 Vx=-455 Vy=-59 Afl=330 Rate=0 Heading=263 GroundSpeed=459 Tendency=0 Time=06:28:02"
Rejeu 1174038142.92486 "TrackMovedEvent Flight=1258 CallSign=SEU532 Ssr=5674 Sector=D1 Layers=U,S X=292.78 Y=-296.23 Vx=391 Vy=-306 Afl=325 Rate=715 Heading=128 GroundSpeed=497 Tendency=1 Time=06:28:02"
Rejeu 1174038142.9268 "TrackMovedEvent Flight=1329 CallSign=VLE5078 Ssr=4052 Sector=M2 Layers=S X=183.31 Y=-274.88 Vx=-253 Vy=-426 Afl=350 Rate=0 Heading=211 GroundSpeed=495 Tendency=0 Time=06:28:02"
Rejeu 1174038142.92907 "TrackMovedEvent Flight=1338 CallSign=OHY7453 Ssr=7301 Sector=B2 Layers=S X=318.19 Y=-177.86 Vx=-334 Vy=193 Afl=340 Rate=0 Heading=300 GroundSpeed=386 Tendency=0 Time=06:28:02"
Rejeu 1174038142.93116 "TrackMovedEvent Flight=1362 CallSign=OHY993 Ssr=7310 Sector=K3 Layers=S X=427.34 Y=-216.16 Vx=-412 Vy=158 Afl=360 Rate=0 Heading=291 GroundSpeed=441 Tendency=0 Time=06:28:02"
Rejeu 1174038142.93314 "TrackMovedEvent Flight=1370 CallSign=BER1885 Ssr=5316 Sector=F3 Layers=S X=243.03 Y=-253.16 Vx=173 Vy=370 Afl=380 Rate=0 Heading=25 GroundSpeed=408 Tendency=0 Time=06:28:02"
Rejeu 1174038142.93506 "TrackMovedEvent Flight=1416 CallSign=TOM742P Ssr=5327 Sector=-- Layers=U,S X=167.34 Y=-391.83 Vx=223 Vy=428 Afl=305 Rate=1500 Heading=28 GroundSpeed=483 Tendency=1 Time=06:28:02"
Rejeu 1174038142.937 "TrackMovedEvent Flight=1654 CallSign=LTE420 Ssr=5503 Sector=O4 Layers=S X=276.39 Y=-73.38 Vx=-113 Vy=389 Afl=380 Rate=0 Heading=344 GroundSpeed=405 Tendency=0 Time=06:28:02"
Rejeu 1174038142.93898 "TrackMovedEvent Flight=1683 CallSign=JKK021 Ssr=5520 Sector=F2 Layers=S X=228.03 Y=-275.61 Vx=179 Vy=349 Afl=340 Rate=0 Heading=27 GroundSpeed=392 Tendency=0 Time=06:28:02"
Rejeu 1174038142.94105 "TrackMovedEvent Flight=1707 CallSign=JKK045 Ssr=5325 Sector=EN Layers=S X=186.94 Y=-378.22 Vx=129 Vy=377 Afl=340 Rate=0 Heading=19 GroundSpeed=398 Tendency=0 Time=06:28:02"
Rejeu 1174038142.94305 "TrackMovedEvent Flight=1790 CallSign=AEA1063 Ssr=1042 Sector=W3 Layers=S X=155.06 Y=-128.83 Vx=370 Vy=227 Afl=380 Rate=0 Heading=58 GroundSpeed=434 Tendency=0 Time=06:28:02"
Rejeu 1174038142.94494 "TrackMovedEvent Flight=1864 CallSign=SWR1940 Ssr=5745 Sector=IG Layers=F,U X=249.28 Y=-57.89 Vx=24 Vy=-257 Afl=133 Rate=1735 Heading=175 GroundSpeed=258 Tendency=1 Time=06:28:02"
Rejeu 1174038142.94695 "TrackMovedEvent Flight=1876 CallSign=HLX332Z Ssr=1103 Sector=VR Layers=S X=167.34 Y=-344.30 Vx=-115 Vy=-467 Afl=358 Rate=-3299 Heading=194 GroundSpeed=481 Tendency=-1 Time=06:28:02"
Rejeu 1174038142.94892 "TrackMovedEvent Flight=2097 CallSign=KLM1263 Ssr=0163 Sector=W2 Layers=S X=174.23 Y=-103.70 Vx=328 Vy=-347 Afl=350 Rate=0 Heading=137 GroundSpeed=477 Tendency=0 Time=06:28:02"
Rejeu 1174038142.95088 "TrackMovedEvent Flight=2132 CallSign=GWI594 Ssr=2566 Sector=M3 Layers=S X=191.77 Y=-255.50 Vx=-214 Vy=-439 Afl=370 Rate=0 Heading=206 GroundSpeed=488 Tendency=0 Time=06:28:02"
Rejeu 1174038142.95285 "TrackMovedEvent Flight=2220 CallSign=CSA6720 Ssr=6621 Sector=T3 Layers=S X=136.19 Y=-113.81 Vx=-364 Vy=-269 Afl=350 Rate=0 Heading=234 GroundSpeed=453 Tendency=0 Time=06:28:02"
Rejeu 1174038142.95484 "TrackMovedEvent Flight=2255 CallSign=NRD751 Ssr=5502 Sector=-- Layers=U,S X=195.95 Y=-409.97 Vx=55 Vy=386 Afl=319 Rate=1368 Heading=8 GroundSpeed=390 Tendency=1 Time=06:28:02"
Rejeu 1174038142.95685 "TrackMovedEvent Flight=2405 CallSign=DLH54W Ssr=5355 Sector=B1 Layers=U X=264.11 Y=-174.64 Vx=192 Vy=402 Afl=300 Rate=0 Heading=26 GroundSpeed=445 Tendency=0 Time=06:28:02"
Rejeu 1174038142.95881 "TrackMovedEvent Flight=2408 CallSign=JKK2735 Ssr=5577 Sector=F2 Layers=U,S X=187.39 Y=-319.34 Vx=405 Vy=167 Afl=300 Rate=0 Heading=68 GroundSpeed=438 Tendency=0 Time=06:28:02"
Rejeu 1174038142.96083 "TrackMovedEvent Flight=2431 CallSign=CSA6662 Ssr=6624 Sector=G2 Layers=S X=209.89 Y=-55.53 Vx=-317 Vy=-284 Afl=350 Rate=0 Heading=228 GroundSpeed=426 Tendency=0 Time=06:28:02"
Rejeu 1174038142.96283 "TrackMovedEvent Flight=2581 CallSign=CSA6746 Ssr=6622 Sector=T3 Layers=S X=182.06 Y=-82.17 Vx=-323 Vy=-263 Afl=350 Rate=0 Heading=231 GroundSpeed=417 Tendency=0 Time=06:28:02"
Rejeu 1174038142.96482 "TrackMovedEvent Flight=2691 CallSign=AFR4370 Ssr=7621 Sector=F2 Layers=S X=265.52 Y=-274.63 Vx=391 Vy=-312 Afl=350 Rate=0 Heading=129 GroundSpeed=500 Tendency=0 Time=06:28:02"
Rejeu 1174038142.96685 "TrackMovedEvent Flight=3140 CallSign=DLH83N Ssr=0123 Sector=4K Layers=S X=270.34 Y=-34.59 Vx=-174 Vy=-436 Afl=350 Rate=0 Heading=202 GroundSpeed=469 Tendency=0 Time=06:28:02"
Rejeu 1174038142.96871 "TrackMovedEvent Flight=3146 CallSign=SWT364 Ssr=5364 Sector=F2 Layers=S X=258.94 Y=-247.97 Vx=280 Vy=298 Afl=340 Rate=0 Heading=43 GroundSpeed=409 Tendency=0 Time=06:28:02"
Rejeu 1174038142.97061 "TrackMovedEvent Flight=3198 CallSign=AZA9106 Ssr=4062 Sector=B2 Layers=U,S X=275.58 Y=-193.97 Vx=-430 Vy=-256 Afl=310 Rate=0 Heading=239 GroundSpeed=500 Tendency=0 Time=06:28:02"
Rejeu 1174038142.9727 "TrackMovedEvent Flight=3342 CallSign=JKK4731 Ssr=5320 Sector=K1 Layers=U,S X=342.11 Y=-280.17 Vx=195 Vy=335 Afl=320 Rate=0 Heading=30 GroundSpeed=388 Tendency=0 Time=06:28:02"
Rejeu 1174038142.97468 "TrackMovedEvent Flight=3412 CallSign=DLH42X Ssr=7522 Sector=GV Layers=U X=299.08 Y=21.45 Vx=-317 Vy=-283 Afl=310 Rate=0 Heading=228 GroundSpeed=425 Tendency=0 Time=06:28:02"
Rejeu 1174038142.97659 "TrackMovedEvent Flight=3499 CallSign=JKK4519 Ssr=5501 Sector=F1 Layers=U,S X=238.31 Y=-287.34 Vx=244 Vy=330 Afl=321 Rate=0 Heading=36 GroundSpeed=410 Tendency=0 Time=06:28:02"
Rejeu 1174038142.97855 "TrackMovedEvent Flight=3557 CallSign=HLF168 Ssr=5311 Sector=B3 Layers=S X=272.31 Y=-163.41 Vx=150 Vy=372 Afl=379 Rate=-955 Heading=22 GroundSpeed=401 Tendency=-1 Time=06:28:02"
Rejeu 1174038142.98044 "TrackMovedEvent Flight=3620 CallSign=EZY4911 Ssr=2525 Sector=M3 Layers=S X=184.63 Y=-271.63 Vx=-230 Vy=-433 Afl=390 Rate=0 Heading=208 GroundSpeed=490 Tendency=0 Time=06:28:02"
Rejeu 1174038142.98232 "TrackMovedEvent Flight=3663 CallSign=JKK4713 Ssr=5526 Sector=E1 Layers=U,S X=269.77 Y=-242.47 Vx=237 Vy=324 Afl=340 Rate=0 Heading=36 GroundSpeed=401 Tendency=0 Time=06:28:02"
Rejeu 1174038142.98419 "TrackMovedEvent Flight=3691 CallSign=JKK4741 Ssr=5327 Sector=F2 Layers=U,S X=209.70 Y=-327.47 Vx=241 Vy=328 Afl=320 Rate=0 Heading=36 GroundSpeed=407 Tendency=0 Time=06:28:02"
Rejeu 1174038142.9861 "TrackMovedEvent Flight=3886 CallSign=TCV6334 Ssr=4060 Sector=M2 Layers=S X=240.94 Y=-216.72 Vx=-356 Vy=-339 Afl=350 Rate=0 Heading=226 GroundSpeed=492 Tendency=0 Time=06:28:02"
Rejeu 1174038142.98802 "TrackMovedEvent Flight=3926 CallSign=AFR4100 Ssr=3222 Sector=A2 Layers=S X=210.58 Y=-128.28 Vx=423 Vy=-253 Afl=350 Rate=0 Heading=121 GroundSpeed=493 Tendency=0 Time=06:28:02"
Rejeu 1174038142.99007 "TrackMovedEvent Flight=4117 CallSign=AEU437 Ssr=6350 Sector=E2 Layers=F,U X=318.23 Y=-194.06 Vx=458 Vy=-221 Afl=267 Rate=-1604 Heading=116 GroundSpeed=509 Tendency=-1 Time=06:28:02"
Rejeu 1174038142.99225 "TrackMovedEvent Flight=9302 CallSign=CLW706 Ssr=2330 Sector=H2 Layers=S X=103.80 Y=-161.06 Vx=346 Vy=223 Afl=340 Rate=0 Heading=57 GroundSpeed=412 Tendency=0 Time=06:28:02"
Rejeu 1174038142.99429 "TrackMovedEvent Flight=9436 CallSign=AFR174 Ssr=5615 Sector=H2 Layers=S X=90.84 Y=-184.56 Vx=319 Vy=305 Afl=340 Rate=0 Heading=46 GroundSpeed=441 Tendency=0 Time=06:28:02"
Rejeu 1174038142.99623 "TrackMovedEvent Flight=9631 CallSign=KLM588 Ssr=4055 Sector=D3 Layers=S X=246.05 Y=-420.25 Vx=-76 Vy=451 Afl=380 Rate=0 Heading=350 GroundSpeed=457 Tendency=0 Time=06:28:02"
Rejeu 1174038142.99813 "TrackMovedEvent Flight=9904 CallSign=BIE576A Ssr=7642 Sector=T2 Layers=S X=113.47 Y=-41.77 Vx=87 Vy=-493 Afl=329 Rate=409 Heading=170 GroundSpeed=501 Tendency=1 Time=06:28:02"
Rejeu 1174038143.00058 "ClockEvent Time=06:28:03 Rate=1.0 Bs=0"
Rejeu 1174038143.0035 "RadarEndEvent"
Rejeu 1174038143.00587 "TrackMovedEvent Flight=146 CallSign=TAM8097 Ssr=7605 Sector=MI Layers=F,U X=287.34 Y=-80.98 Vx=451 Vy=-121 Afl=285 Rate=1940 Heading=105 GroundSpeed=467 Tendency=1 Time=06:28:03"
Rejeu 1174038143.00787 "TrackMovedEvent Flight=193 CallSign=GZA5361 Ssr=3140 Sector=O2 Layers=S X=286.84 Y=-51.92 Vx=78 Vy=-438 Afl=370 Rate=0 Heading=170 GroundSpeed=445 Tendency=0 Time=06:28:03"
Rejeu 1174038143.00982 "TrackMovedEvent Flight=219 CallSign=RAE1510 Ssr=5670 Sector=K2 Layers=F,U,S X=358.86 Y=-248.28 Vx=254 Vy=-439 Afl=350 Rate=0 Heading=150 GroundSpeed=507 Tendency=0 Time=06:28:03"
Rejeu 1174038143.01216 "TrackMovedEvent Flight=242 CallSign=CFG855 Ssr=5504 Sector=EN Layers=U,S X=204.42 Y=-337.83 Vx=83 Vy=404 Afl=340 Rate=0 Heading=12 GroundSpeed=412 Tendency=0 Time=06:28:03"
Rejeu 1174038143.01429 "TrackMovedEvent Flight=253 CallSign=VLG5040 Ssr=5566 Sector=F1 Layers=U,S X=228.94 Y=-287.64 Vx=266 Vy=318 Afl=340 Rate=0 Heading=40 GroundSpeed=415 Tendency=0 Time=06:28:03"
Rejeu 1174038143.01628 "TrackMovedEvent Flight=294 CallSign=BZ699WF Ssr=1763 Sector=KJ Layers=F X=381.50 Y=-282.58 Vx=225 Vy=-167 Afl=46 Rate=-903 Heading=127 GroundSpeed=280 Tendency=-1 Time=06:28:03"
Rejeu 1174038143.01856 "TrackMovedEvent Flight=308 CallSign=BER3999 Ssr=5505 Sector=F3 Layers=S X=223.23 Y=-295.53 Vx=172 Vy=359 Afl=380 Rate=0 Heading=26 GroundSpeed=398 Tendency=0 Time=06:28:03"
Rejeu 1174038143.02058 "TrackMovedEvent Flight=318 CallSign=BPA1602 Ssr=2363 Sector=Y2 Layers=U X=271.88 Y=-101.97 Vx=471 Vy=-145 Afl=270 Rate=0 Heading=107 GroundSpeed=493 Tendency=0 Time=06:28:03"
Rejeu 1174038143.02265 "TrackMovedEvent Flight=320 CallSign=BAW2362 Ssr=6363 Sector=W1 Layers=F,U X=193.39 Y=-130.50 Vx=365 Vy=-312 Afl=279 Rate=-1048 Heading=131 GroundSpeed=480 Tendency=-1 Time=06:28:03"
Rejeu 1174038143.02525 "TrackMovedEvent Flight=374 CallSign=AEU241 Ssr=6334 Sector=A3 Layers=S X=198.91 Y=-123.69 Vx=424 Vy=-247 Afl=370 Rate=0 Heading=120 GroundSpeed=491 Tendency=0 Time=06:28:03"
Rejeu 1174038143.02852 "TrackMovedEvent Flight=375 CallSign=AF660KU Ssr=3213 Sector=-- Layers=F X=227.08 Y=-194.72 Vx=93 Vy=-249 Afl=35 Rate=-1062 Heading=160 GroundSpeed=266 Tendency=-1 Time=06:28:03"
Rejeu 1174038143.03191 "TrackMovedEvent Flight=377 CallSign=AF700YH Ssr=3211 Sector=W2 Layers=S X=166.02 Y=-98.20 Vx=366 Vy=-366 Afl=330 Rate=0 Heading=135 GroundSpeed=518 Tendency=0 Time=06:28:03"
Rejeu 1174038143.03508 "TrackMovedEvent Flight=387 CallSign=BER9143 Ssr=5310 Sector=EN Layers=S X=192.31 Y=-362.61 Vx=122 Vy=377 Afl=380 Rate=0 Heading=18 GroundSpeed=396 Tendency=0 Time=06:28:03"
Rejeu 1174038143.03763 "TrackMovedEvent Flight=407 CallSign=LGL931 Ssr=5656 Sector=D3 Layers=S X=367.66 Y=-328.06 Vx=238 Vy=-406 Afl=390 Rate=0 Heading=150 GroundSpeed=471 Tendency=0 Time=06:28:03"
Rejeu 1174038143.03973 "TrackMovedEvent Flight=412 CallSign=VLG5326 Ssr=5301 Sector=-- Layers=S X=179.52 Y=-387.20 Vx=148 Vy=369 Afl=360 Rate=0 Heading=22 GroundSpeed=398 Tendency=0 Time=06:28:03"
Rejeu 1174038143.04189 "TrackMovedEvent Flight=420 CallSign=EZY5063 Ssr=6327 Sector=T3 Layers=S X=142.31 Y=-58.95 Vx=186 Vy=-468 Afl=370 Rate=0 Heading=158 GroundSpeed=504 Tendency=0 Time=06:28:03"
Rejeu 1174038143.04401 "TrackMovedEvent Flight=432 CallSign=ANS8175 Ssr=6736 Sector=XA Layers=U X=156.84 Y=-297.03 Vx=-317 Vy=-334 Afl=211 Rate=-1032 Heading=224 GroundSpeed=460 Tendency=-1 Time=06:28:03"
Rejeu 1174038143.04604 "TrackMovedEvent Flight=446 CallSign=AF711HI Ssr=6410 Sector=UJ Layers=U X=181.08 Y=23.70 Vx=-229 Vy=381 Afl=280 Rate=0 Heading=329 GroundSpeed=445 Tendency=0 Time=06:28:03"
Rejeu 1174038143.04815 "TrackMovedEvent Flight=448 CallSign=AF688ZA Ssr=3210 Sector=T1 Layers=F,U X=130.41 Y=-113.34 Vx=74 Vy=-467 Afl=310 Rate=0 Heading=171 GroundSpeed=473 Tendency=0 Time=06:28:03"
Rejeu 1174038143.05075 "TrackMovedEvent Flight=466 CallSign=BZ809KX Ssr=3212 Sector=T3 Layers=S X=160.03 Y=-62.19 Vx=282 Vy=-386 Afl=350 Rate=0 Heading=144 GroundSpeed=478 Tendency=0 Time=06:28:03"
Rejeu 1174038143.05255 "TrackMovedEvent Flight=471 CallSign=ANS8753 Ssr=4015 Sector=-- Layers=S X=168.33 Y=-287.31 Vx=-404 Vy=-152 Afl=330 Rate=0 Heading=249 GroundSpeed=432 Tendency=0 Time=06:28:03"
Rejeu 1174038143.05511 "TrackMovedEvent Flight=507 CallSign=AF006JS Ssr=3223 Sector=MO Layers=F X=215.25 Y=-166.69 Vx=181 Vy=-407 Afl=166 Rate=-3451 Heading=156 GroundSpeed=445 Tendency=-1 Time=06:28:03"
Rejeu 1174038143.05757 "TrackMovedEvent Flight=516 CallSign=EZY4331 Ssr=4050 Sector=CT Layers=S X=166.89 Y=-286.69 Vx=-332 Vy=-338 Afl=370 Rate=0 Heading=224 GroundSpeed=474 Tendency=0 Time=06:28:03"
Rejeu 1174038143.05946 "TrackMovedEvent Flight=537 CallSign=AF534BH Ssr=3226 Sector=T2 Layers=S X=135.78 Y=-34.28 Vx=170 Vy=-493 Afl=323 Rate=1410 Heading=161 GroundSpeed=521 Tendency=1 Time=06:28:03"
Rejeu 1174038143.0613 "TrackMovedEvent Flight=557 CallSign=ACL670 Ssr=4051 Sector=D1 Layers=U,S X=255.91 Y=-345.78 Vx=-321 Vy=-361 Afl=330 Rate=0 Heading=222 GroundSpeed=483 Tendency=0 Time=06:28:03"
Rejeu 1174038143.06318 "TrackMovedEvent Flight=583 CallSign=IVE201A Ssr=1003 Sector=O4 Layers=S X=237.97 Y=-73.88 Vx=391 Vy=232 Afl=380 Rate=0 Heading=59 GroundSpeed=455 Tendency=0 Time=06:28:03"
Rejeu 1174038143.06498 "TrackMovedEvent Flight=590 CallSign=ADH8146 Ssr=4055 Sector=DL Layers=U X=250.73 Y=-406.44 Vx=-453 Vy=-145 Afl=310 Rate=0 Heading=252 GroundSpeed=476 Tendency=0 Time=06:28:03"
Rejeu 1174038143.06676 "TrackMovedEvent Flight=591 CallSign=ADH8600 Ssr=4053 Sector=D1 Layers=U,S X=250.17 Y=-397.11 Vx=-447 Vy=-140 Afl=322 Rate=-2021 Heading=253 GroundSpeed=468 Tendency=-1 Time=06:28:03"
Rejeu 1174038143.06864 "TrackMovedEvent Flight=594 CallSign=KAJ7166 Ssr=6420 Sector=G2 Layers=U,S X=223.88 Y=-56.14 Vx=-230 Vy=331 Afl=320 Rate=0 Heading=325 GroundSpeed=403 Tendency=0 Time=06:28:03"
Rejeu 1174038143.07047 "TrackMovedEvent Flight=598 CallSign=ISG2370 Ssr=4046 Sector=M1 Layers=U X=179.84 Y=-281.25 Vx=-217 Vy=-370 Afl=270 Rate=0 Heading=210 GroundSpeed=429 Tendency=0 Time=06:28:03"
Rejeu 1174038143.07222 "TrackMovedEvent Flight=602 CallSign=TAR7436 Ssr=6426 Sector=DH Layers=S X=284.73 Y=-349.03 Vx=-237 Vy=324 Afl=340 Rate=0 Heading=324 GroundSpeed=401 Tendency=0 Time=06:28:03"
Rejeu 1174038143.07412 "TrackMovedEvent Flight=623 CallSign=KAJ7530 Ssr=6421 Sector=G3 Layers=U,S X=236.14 Y=-73.33 Vx=-221 Vy=317 Afl=359 Rate=0 Heading=325 GroundSpeed=386 Tendency=0 Time=06:28:03"
Rejeu 1174038143.07603 "TrackMovedEvent Flight=657 CallSign=TAR4010 Ssr=4754 Sector=F2 Layers=S X=249.61 Y=-261.14 Vx=-126 Vy=389 Afl=340 Rate=0 Heading=342 GroundSpeed=409 Tendency=0 Time=06:28:03"
Rejeu 1174038143.07872 "TrackMovedEvent Flight=663 CallSign=AF673KB Ssr=7302 Sector=MO Layers=U,S X=196.14 Y=-154.34 Vx=-142 Vy=354 Afl=244 Rate=607 Heading=338 GroundSpeed=381 Tendency=1 Time=06:28:03"
Rejeu 1174038143.08191 "TrackMovedEvent Flight=667 CallSign=AF202TC Ssr=3227 Sector=P1 Layers=U,S X=126.55 Y=-6.78 Vx=174 Vy=-497 Afl=330 Rate=0 Heading=161 GroundSpeed=527 Tendency=0 Time=06:28:03"
Rejeu 1174038143.08479 "TrackMovedEvent Flight=675 CallSign=CC101GM Ssr=0642 Sector=KJ Layers=F X=355.31 Y=-245.06 Vx=171 Vy=-231 Afl=130 Rate=0 Heading=143 GroundSpeed=287 Tendency=0 Time=06:28:03"
Rejeu 1174038143.08701 "TrackMovedEvent Flight=680 CallSign=ONG001 Ssr=4040 Sector=-- Layers=U X=281.80 Y=-73.36 Vx=-105 Vy=391 Afl=203 Rate=-1102 Heading=345 GroundSpeed=405 Tendency=-1 Time=06:28:03"
Rejeu 1174038143.08886 "TrackMovedEvent Flight=688 CallSign=N224MV Ssr=2311 Sector=AW Layers=F X=69.95 Y=-198.41 Vx=185 Vy=-2 Afl=95 Rate=416 Heading=91 GroundSpeed=185 Tendency=1 Time=06:28:03"
Rejeu 1174038143.09079 "TrackMovedEvent Flight=689 CallSign=BAW341 Ssr=6754 Sector=ND Layers=F,U X=320.00 Y=-189.78 Vx=151 Vy=-205 Afl=43 Rate=2968 Heading=144 GroundSpeed=255 Tendency=1 Time=06:28:03"
Rejeu 1174038143.09264 "TrackMovedEvent Flight=698 CallSign=ACL770 Ssr=4047 Sector=D1 Layers=U X=232.88 Y=-371.48 Vx=-317 Vy=-340 Afl=250 Rate=-1368 Heading=223 GroundSpeed=465 Tendency=-1 Time=06:28:03"
Rejeu 1174038143.09456 "TrackMovedEvent Flight=703 CallSign=AF203GP Ssr=6424 Sector=B1 Layers=F,U X=324.89 Y=-180.31 Vx=-125 Vy=269 Afl=110 Rate=1754 Heading=335 GroundSpeed=297 Tendency=1 Time=06:28:03"
Rejeu 1174038143.09687 "TrackMovedEvent Flight=704 CallSign=AF675SW Ssr=7305 Sector=S  Layers=U X=151.03 Y=-2.55 Vx=38 Vy=399 Afl=240 Rate=0 Heading=5 GroundSpeed=401 Tendency=0 Time=06:28:03"
Rejeu 1174038143.09879 "TrackMovedEvent Flight=706 CallSign=TAR7508 Ssr=6425 Sector=M2 Layers=S X=204.34 Y=-243.14 Vx=-367 Vy=181 Afl=340 Rate=0 Heading=296 GroundSpeed=409 Tendency=0 Time=06:28:03"
Rejeu 1174038143.10098 "TrackMovedEvent Flight=707 CallSign=ANS8623 Ssr=4045 Sector=XA Layers=U X=166.33 Y=-288.50 Vx=-368 Vy=-264 Afl=243 Rate=-1252 Heading=234 GroundSpeed=453 Tendency=-1 Time=06:28:03"
Rejeu 1174038143.10289 "TrackMovedEvent Flight=744 CallSign=CC201WB Ssr=0644 Sector=NN Layers=F X=344.31 Y=-206.36 Vx=228 Vy=-109 Afl=130 Rate=0 Heading=116 GroundSpeed=253 Tendency=0 Time=06:28:03"
Rejeu 1174038143.10478 "TrackMovedEvent Flight=755 CallSign=KAJ7122 Ssr=6423 Sector=Y2 Layers=U,S X=281.20 Y=-126.91 Vx=-232 Vy=305 Afl=320 Rate=0 Heading=323 GroundSpeed=383 Tendency=0 Time=06:28:03"
Rejeu 1174038143.10677 "TrackMovedEvent Flight=762 CallSign=RYR4822 Ssr=5675 Sector=RO Layers=F,U X=395.45 Y=-299.47 Vx=70 Vy=-397 Afl=199 Rate=-2156 Heading=170 GroundSpeed=403 Tendency=-1 Time=06:28:03"
Rejeu 1174038143.10893 "TrackMovedEvent Flight=765 CallSign=TAR4072 Ssr=7306 Sector=RO Layers=S X=378.17 Y=-320.78 Vx=-159 Vy=372 Afl=339 Rate=0 Heading=337 GroundSpeed=405 Tendency=0 Time=06:28:03"
Rejeu 1174038143.1109 "TrackMovedEvent Flight=777 CallSign=ISS292 Ssr=5663 Sector=-- Layers=U X=359.45 Y=-145.78 Vx=103 Vy=-465 Afl=241 Rate=1820 Heading=168 GroundSpeed=476 Tendency=1 Time=06:28:03"
Rejeu 1174038143.1128 "TrackMovedEvent Flight=780 CallSign=CFG423 Ssr=5305 Sector=F3 Layers=S X=240.06 Y=-247.28 Vx=155 Vy=378 Afl=360 Rate=0 Heading=22 GroundSpeed=409 Tendency=0 Time=06:28:03"
Rejeu 1174038143.11472 "TrackMovedEvent Flight=792 CallSign=EAB515 Ssr=7511 Sector=Y1 Layers=U X=238.42 Y=-84.22 Vx=-196 Vy=-312 Afl=290 Rate=0 Heading=212 GroundSpeed=368 Tendency=0 Time=06:28:03"
Rejeu 1174038143.11678 "TrackMovedEvent Flight=797 CallSign=IBE3475 Ssr=3015 Sector=G2 Layers=S X=223.27 Y=-46.42 Vx=-379 Vy=-201 Afl=344 Rate=966 Heading=242 GroundSpeed=429 Tendency=1 Time=06:28:03"
Rejeu 1174038143.11909 "TrackMovedEvent Flight=800 CallSign=ISS8230 Ssr=5673 Sector=3K Layers=S X=293.81 Y=16.67 Vx=-274 Vy=-353 Afl=351 Rate=0 Heading=218 GroundSpeed=447 Tendency=0 Time=06:28:03"
Rejeu 1174038143.12115 "TrackMovedEvent Flight=811 CallSign=BER4117 Ssr=5332 Sector=F3 Layers=S X=229.53 Y=-272.86 Vx=189 Vy=360 Afl=380 Rate=0 Heading=28 GroundSpeed=407 Tendency=0 Time=06:28:03"
Rejeu 1174038143.1231 "TrackMovedEvent Flight=812 CallSign=BZ668JQ Ssr=7311 Sector=AJ Layers=F,U,S X=383.80 Y=-294.95 Vx=-262 Vy=-64 Afl=58 Rate=2620 Heading=256 GroundSpeed=270 Tendency=1 Time=06:28:03"
Rejeu 1174038143.12496 "TrackMovedEvent Flight=815 CallSign=EDW270 Ssr=3005 Sector=-- Layers=U,S X=277.58 Y=-10.33 Vx=-331 Vy=-354 Afl=258 Rate=1384 Heading=223 GroundSpeed=485 Tendency=1 Time=06:28:03"
Rejeu 1174038143.12681 "TrackMovedEvent Flight=819 CallSign=AEE4152 Ssr=5752 Sector=UG Layers=F,U X=307.67 Y=-96.77 Vx=-370 Vy=155 Afl=289 Rate=-1888 Heading=293 GroundSpeed=401 Tendency=-1 Time=06:28:03"
Rejeu 1174038143.12867 "TrackMovedEvent Flight=820 CallSign=TAR8006 Ssr=5662 Sector=RO Layers=S X=424.25 Y=-379.55 Vx=-135 Vy=393 Afl=360 Rate=0 Heading=341 GroundSpeed=416 Tendency=0 Time=06:28:03"
Rejeu 1174038143.13062 "TrackMovedEvent Flight=822 CallSign=EZY4515 Ssr=3106 Sector=Y3 Layers=S X=256.80 Y=-82.92 Vx=-105 Vy=-462 Afl=370 Rate=0 Heading=193 GroundSpeed=474 Tendency=0 Time=06:28:03"
Rejeu 1174038143.13253 "TrackMovedEvent Flight=825 CallSign=ESK5CP Ssr=0646 Sector=NN Layers=F X=332.55 Y=-171.39 Vx=-100 Vy=-344 Afl=145 Rate=-1167 Heading=196 GroundSpeed=358 Tendency=-1 Time=06:28:03"
Rejeu 1174038143.13439 "TrackMovedEvent Flight=827 CallSign=TAR7492 Ssr=7307 Sector=RO Layers=S X=410.41 Y=-339.33 Vx=-143 Vy=418 Afl=340 Rate=0 Heading=341 GroundSpeed=442 Tendency=0 Time=06:28:03"
Rejeu 1174038143.13625 "TrackMovedEvent Flight=830 CallSign=SNG960 Ssr=5524 Sector=E1 Layers=U,S X=324.13 Y=-187.42 Vx=309 Vy=282 Afl=345 Rate=-955 Heading=48 GroundSpeed=418 Tendency=-1 Time=06:28:03"
Rejeu 1174038143.13811 "TrackMovedEvent Flight=857 CallSign=BER2565 Ssr=5512 Sector=-- Layers=U,S X=204.88 Y=-350.13 Vx=54 Vy=410 Afl=288 Rate=1020 Heading=8 GroundSpeed=414 Tendency=1 Time=06:28:03"
Rejeu 1174038143.14005 "TrackMovedEvent Flight=873 CallSign=BER439V Ssr=5307 Sector=-- Layers=S X=187.19 Y=-394.08 Vx=105 Vy=371 Afl=374 Rate=1444 Heading=16 GroundSpeed=386 Tendency=1 Time=06:28:03"
Rejeu 1174038143.14304 "TrackMovedEvent Flight=879 CallSign=BER9235 Ssr=5334 Sector=EN Layers=S X=210.06 Y=-310.00 Vx=67 Vy=388 Afl=380 Rate=0 Heading=10 GroundSpeed=394 Tendency=0 Time=06:28:03"
Rejeu 1174038143.14633 "TrackMovedEvent Flight=889 CallSign=IBE4623 Ssr=4063 Sector=RO Layers=S X=398.81 Y=-348.05 Vx=-425 Vy=-87 Afl=330 Rate=0 Heading=258 GroundSpeed=434 Tendency=0 Time=06:28:03"
Rejeu 1174038143.14967 "TrackMovedEvent Flight=896 CallSign=JET390 Ssr=4061 Sector=DH Layers=U,S X=294.19 Y=-357.27 Vx=-459 Vy=34 Afl=350 Rate=0 Heading=274 GroundSpeed=460 Tendency=0 Time=06:28:03"
Rejeu 1174038143.15187 "TrackMovedEvent Flight=897 CallSign=ESK6DR Ssr=7251 Sector=RO Layers=S X=345.28 Y=-126.14 Vx=-226 Vy=-418 Afl=370 Rate=0 Heading=208 GroundSpeed=475 Tendency=0 Time=06:28:03"
Rejeu 1174038143.15379 "TrackMovedEvent Flight=900 CallSign=AHR626 Ssr=4057 Sector=DH Layers=S X=311.75 Y=-285.13 Vx=-302 Vy=-397 Afl=350 Rate=0 Heading=217 GroundSpeed=499 Tendency=0 Time=06:28:03"
Rejeu 1174038143.15571 "TrackMovedEvent Flight=926 CallSign=ABP550 Ssr=5573 Sector=XA Layers=U X=191.39 Y=-293.83 Vx=313 Vy=189 Afl=275 Rate=475 Heading=59 GroundSpeed=366 Tendency=1 Time=06:28:03"
Rejeu 1174038143.15768 "TrackMovedEvent Flight=994 CallSign=TAR6204 Ssr=7312 Sector=RO Layers=S X=409.77 Y=-412.72 Vx=-230 Vy=354 Afl=340 Rate=0 Heading=327 GroundSpeed=422 Tendency=0 Time=06:28:03"
Rejeu 1174038143.15962 "TrackMovedEvent Flight=1046 CallSign=ISS2147 Ssr=4044 Sector=VR Layers=S X=172.38 Y=-339.03 Vx=-107 Vy=-492 Afl=370 Rate=0 Heading=192 GroundSpeed=504 Tendency=0 Time=06:28:03"
Rejeu 1174038143.16173 "TrackMovedEvent Flight=1146 CallSign=AZA05U Ssr=5554 Sector=E1 Layers=U,S X=300.02 Y=-208.25 Vx=310 Vy=278 Afl=360 Rate=0 Heading=48 GroundSpeed=416 Tendency=0 Time=06:28:03"
Rejeu 1174038143.16369 "TrackMovedEvent Flight=1153 CallSign=AZA200 Ssr=4065 Sector=K2 Layers=U,S X=444.30 Y=-227.53 Vx=-371 Vy=268 Afl=297 Rate=748 Heading=306 GroundSpeed=458 Tendency=1 Time=06:28:03"
Rejeu 1174038143.16558 "TrackMovedEvent Flight=1168 CallSign=DAL82 Ssr=6427 Sector=NN Layers=F X=285.38 Y=-202.56 Vx=257 Vy=-183 Afl=110 Rate=-1220 Heading=125 GroundSpeed=315 Tendency=-1 Time=06:28:03"
Rejeu 1174038143.16748 "TrackMovedEvent Flight=1188 CallSign=SMX5046 Ssr=4056 Sector=M3 Layers=S X=242.00 Y=-219.59 Vx=-337 Vy=-303 Afl=370 Rate=0 Heading=228 GroundSpeed=453 Tendency=0 Time=06:28:03"
Rejeu 1174038143.16939 "TrackMovedEvent Flight=1256 CallSign=SYR419 Ssr=4054 Sector=DL Layers=S X=264.84 Y=-415.14 Vx=-455 Vy=-59 Afl=330 Rate=0 Heading=263 GroundSpeed=459 Tendency=0 Time=06:28:03"
Rejeu 1174038143.17144 "TrackMovedEvent Flight=1258 CallSign=SEU532 Ssr=5674 Sector=D1 Layers=U,S X=292.91 Y=-296.31 Vx=392 Vy=-306 Afl=325 Rate=715 Heading=128 GroundSpeed=497 Tendency=1 Time=06:28:03"
Rejeu 1174038143.1734 "TrackMovedEvent Flight=1329 CallSign=VLE5078 Ssr=4052 Sector=M2 Layers=S X=183.23 Y=-274.98 Vx=-253 Vy=-426 Afl=350 Rate=0 Heading=211 GroundSpeed=495 Tendency=0 Time=06:28:03"
Rejeu 1174038143.17548 "TrackMovedEvent Flight=1338 CallSign=OHY7453 Ssr=7301 Sector=B2 Layers=S X=318.09 Y=-177.81 Vx=-334 Vy=193 Afl=340 Rate=0 Heading=300 GroundSpeed=386 Tendency=0 Time=06:28:03"
Rejeu 1174038143.1775 "TrackMovedEvent Flight=1362 CallSign=OHY993 Ssr=7310 Sector=K3 Layers=S X=427.22 Y=-216.11 Vx=-412 Vy=158 Afl=360 Rate=0 Heading=291 GroundSpeed=441 Tendency=0 Time=06:28:03"
Rejeu 1174038143.17955 "TrackMovedEvent Flight=1370 CallSign=BER1885 Ssr=5316 Sector=F3 Layers=S X=243.08 Y=-253.05 Vx=173 Vy=370 Afl=380 Rate=0 Heading=25 GroundSpeed=408 Tendency=0 Time=06:28:03"
Rejeu 1174038143.18151 "TrackMovedEvent Flight=1416 CallSign=TOM742P Ssr=5327 Sector=-- Layers=U,S X=167.41 Y=-391.70 Vx=223 Vy=428 Afl=305 Rate=1522 Heading=28 GroundSpeed=483 Tendency=1 Time=06:28:03"
Rejeu 1174038143.1835 "PlnEvent Flight=1475 Time=06:28:03 CallSign=BER6109 AircraftType=B738 Ssr=5315 Speed=452 Rfl=400 Dep=LEMH Arr=EDDP Rvsm=TRUE Tcas=TA_RA Adsb=YES List=MHN V 06:28 100 ISTER V 06:31 180 LUTTA V 06:45 394 SOVAG V 06:50 400 NEGAT V 06:54 400 OMEDA V 07:03 400 AKUTI V 07:11 400 TORTU V 07:12 400 LUKIM V 07:19 400 "
Rejeu 1174038143.18546 "LayerEvent Flight=1475 Layer=F Mode=In"
Rejeu 1174038143.18736 "LayerEvent Flight=1475 Layer=S Mode=In"
Rejeu 1174038143.18932 "SectorEvent Flight=1475 Sector_Out=-- Sector_In=PA"
Rejeu 1174038143.19126 "TrackMovedEvent Flight=1475 CallSign=BER6109 Ssr=5315 Sector=PA Layers=F,S X=201.09 Y=-416.13 Vx=265 Vy=100 Afl=53 Rate=2760 Heading=69 GroundSpeed=283 Tendency=1 Time=06:28:03"
Rejeu 1174038143.19323 "TrackMovedEvent Flight=1654 CallSign=LTE420 Ssr=5503 Sector=O4 Layers=S X=276.34 Y=-73.25 Vx=-112 Vy=389 Afl=380 Rate=0 Heading=344 GroundSpeed=405 Tendency=0 Time=06:28:03"
Rejeu 1174038143.19521 "TrackMovedEvent Flight=1683 CallSign=JKK021 Ssr=5520 Sector=F2 Layers=S X=228.08 Y=-275.52 Vx=179 Vy=349 Afl=340 Rate=0 Heading=27 GroundSpeed=392 Tendency=0 Time=06:28:03"
Rejeu 1174038143.19766 "TrackMovedEvent Flight=1707 CallSign=JKK045 Ssr=5325 Sector=EN Layers=S X=186.97 Y=-378.11 Vx=129 Vy=377 Afl=340 Rate=0 Heading=19 GroundSpeed=398 Tendency=0 Time=06:28:03"
Rejeu 1174038143.20049 "TrackMovedEvent Flight=1790 CallSign=AEA1063 Ssr=1042 Sector=W3 Layers=S X=155.16 Y=-128.78 Vx=370 Vy=227 Afl=380 Rate=0 Heading=58 GroundSpeed=434 Tendency=0 Time=06:28:03"
Rejeu 1174038143.2034 "TrackMovedEvent Flight=1864 CallSign=SWR1940 Ssr=5745 Sector=IG Layers=F,U X=249.28 Y=-57.95 Vx=24 Vy=-257 Afl=133 Rate=1735 Heading=175 GroundSpeed=258 Tendency=1 Time=06:28:03"
Rejeu 1174038143.20626 "TrackMovedEvent Flight=1876 CallSign=HLX332Z Ssr=1103 Sector=VR Layers=S X=167.31 Y=-344.44 Vx=-115 Vy=-467 Afl=357 Rate=-3217 Heading=194 GroundSpeed=481 Tendency=-1 Time=06:28:03"
Rejeu 1174038143.20921 "TrackMovedEvent Flight=2097 CallSign=KLM1263 Ssr=0163 Sector=W2 Layers=S X=174.33 Y=-103.80 Vx=328 Vy=-347 Afl=350 Rate=0 Heading=137 GroundSpeed=477 Tendency=0 Time=06:28:03"
Rejeu 1174038143.21237 "TrackMovedEvent Flight=2132 CallSign=GWI594 Ssr=2566 Sector=M3 Layers=S X=191.70 Y=-255.63 Vx=-214 Vy=-439 Afl=370 Rate=0 Heading=206 GroundSpeed=488 Tendency=0 Time=06:28:03"
Rejeu 1174038143.22716 "TrackMovedEvent Flight=2220 CallSign=CSA6720 Ssr=6621 Sector=T3 Layers=S X=136.09 Y=-113.89 Vx=-364 Vy=-269 Afl=350 Rate=0 Heading=234 GroundSpeed=453 Tendency=0 Time=06:28:03"
Rejeu 1174038143.23001 "TrackMovedEvent Flight=2255 CallSign=NRD751 Ssr=5502 Sector=-- Layers=U,S X=195.97 Y=-409.86 Vx=55 Vy=386 Afl=320 Rate=1377 Heading=8 GroundSpeed=390 Tendency=1 Time=06:28:03"
Rejeu 1174038143.24824 "TrackMovedEvent Flight=2405 CallSign=DLH54W Ssr=5355 Sector=B1 Layers=U X=264.17 Y=-174.53 Vx=192 Vy=401 Afl=300 Rate=0 Heading=26 GroundSpeed=445 Tendency=0 Time=06:28:03"
Rejeu 1174038143.25149 "TrackMovedEvent Flight=2408 CallSign=JKK2735 Ssr=5577 Sector=F2 Layers=U,S X=187.50 Y=-319.30 Vx=405 Vy=168 Afl=300 Rate=0 Heading=67 GroundSpeed=438 Tendency=0 Time=06:28:03"
Rejeu 1174038143.25535 "TrackMovedEvent Flight=2431 CallSign=CSA6662 Ssr=6624 Sector=G2 Layers=S X=209.80 Y=-55.63 Vx=-317 Vy=-285 Afl=350 Rate=0 Heading=228 GroundSpeed=426 Tendency=0 Time=06:28:03"
Rejeu 1174038143.25908 "TrackMovedEvent Flight=2581 CallSign=CSA6746 Ssr=6622 Sector=T3 Layers=S X=181.97 Y=-82.25 Vx=-323 Vy=-263 Afl=350 Rate=0 Heading=231 GroundSpeed=417 Tendency=0 Time=06:28:03"
Rejeu 1174038143.26438 "TrackMovedEvent Flight=2691 CallSign=AFR4370 Ssr=7621 Sector=F2 Layers=S X=265.61 Y=-274.70 Vx=391 Vy=-312 Afl=350 Rate=0 Heading=129 GroundSpeed=500 Tendency=0 Time=06:28:03"
Rejeu 1174038143.27113 "TrackMovedEvent Flight=3140 CallSign=DLH83N Ssr=0123 Sector=4K Layers=S X=270.28 Y=-34.70 Vx=-174 Vy=-436 Afl=350 Rate=0 Heading=202 GroundSpeed=469 Tendency=0 Time=06:28:03"
Rejeu 1174038143.27432 "TrackMovedEvent Flight=3146 CallSign=SWT364 Ssr=5364 Sector=F2 Layers=S X=259.02 Y=-247.89 Vx=280 Vy=298 Afl=340 Rate=0 Heading=43 GroundSpeed=409 Tendency=0 Time=06:28:03"
Rejeu 1174038143.2785 "TrackMovedEvent Flight=3198 CallSign=AZA9106 Ssr=4062 Sector=B2 Layers=U,S X=275.47 Y=-194.03 Vx=-430 Vy=-256 Afl=310 Rate=0 Heading=239 GroundSpeed=500 Tendency=0 Time=06:28:03"
Rejeu 1174038143.28173 "TrackMovedEvent Flight=3342 CallSign=JKK4731 Ssr=5320 Sector=K1 Layers=U,S X=342.16 Y=-280.09 Vx=195 Vy=335 Afl=320 Rate=0 Heading=30 GroundSpeed=388 Tendency=0 Time=06:28:03"
Rejeu 1174038143.28484 "TrackMovedEvent Flight=3412 CallSign=DLH42X Ssr=7522 Sector=GV Layers=U X=299.00 Y=21.38 Vx=-317 Vy=-283 Afl=310 Rate=0 Heading=228 GroundSpeed=425 Tendency=0 Time=06:28:03"
Rejeu 1174038143.28842 "TrackMovedEvent Flight=3499 CallSign=JKK4519 Ssr=5501 Sector=F1 Layers=U,S X=238.38 Y=-287.23 Vx=244 Vy=330 Afl=321 Rate=0 Heading=36 GroundSpeed=410 Tendency=0 Time=06:28:03"
Rejeu 1174038143.30124 "TrackMovedEvent Flight=3557 CallSign=HLF168 Ssr=5311 Sector=B3 Layers=S X=272.36 Y=-163.30 Vx=150 Vy=372 Afl=378 Rate=-955 Heading=22 GroundSpeed=401 Tendency=-1 Time=06:28:03"
Rejeu 1174038143.30432 "TrackMovedEvent Flight=3620 CallSign=EZY4911 Ssr=2525 Sector=M3 Layers=S X=184.56 Y=-271.73 Vx=-230 Vy=-433 Afl=390 Rate=0 Heading=208 GroundSpeed=490 Tendency=0 Time=06:28:03"
Rejeu 1174038143.30804 "TrackMovedEvent Flight=3663 CallSign=JKK4713 Ssr=5526 Sector=E1 Layers=U,S X=269.83 Y=-242.38 Vx=237 Vy=324 Afl=340 Rate=0 Heading=36 GroundSpeed=401 Tendency=0 Time=06:28:03"
Rejeu 1174038143.31299 "TrackMovedEvent Flight=3691 CallSign=JKK4741 Ssr=5327 Sector=F2 Layers=U,S X=209.77 Y=-327.38 Vx=240 Vy=329 Afl=320 Rate=0 Heading=36 GroundSpeed=407 Tendency=0 Time=06:28:03"
Rejeu 1174038143.31694 "TrackMovedEvent Flight=3886 CallSign=TCV6334 Ssr=4060 Sector=M2 Layers=S X=240.84 Y=-216.81 Vx=-356 Vy=-339 Afl=350 Rate=0 Heading=226 GroundSpeed=492 Tendency=0 Time=06:28:03"
Rejeu 1174038143.32128 "TrackMovedEvent Flight=3926 CallSign=AFR4100 Ssr=3222 Sector=A2 Layers=S X=210.69 Y=-128.36 Vx=423 Vy=-253 Afl=350 Rate=0 Heading=121 GroundSpeed=493 Tendency=0 Time=06:28:03"
Rejeu 1174038143.32441 "TrackMovedEvent Flight=4117 CallSign=AEU437 Ssr=6350 Sector=E2 Layers=F,U X=318.38 Y=-194.11 Vx=460 Vy=-215 Afl=267 Rate=-1500 Heading=115 GroundSpeed=508 Tendency=-1 Time=06:28:03"
Rejeu 1174038143.32751 "TrackMovedEvent Flight=9302 CallSign=CLW706 Ssr=2330 Sector=H2 Layers=S X=103.89 Y=-161.00 Vx=346 Vy=223 Afl=340 Rate=0 Heading=57 GroundSpeed=412 Tendency=0 Time=06:28:03"
Rejeu 1174038143.33061 "TrackMovedEvent Flight=9436 CallSign=AFR174 Ssr=5615 Sector=H2 Layers=S X=90.94 Y=-184.48 Vx=319 Vy=305 Afl=340 Rate=0 Heading=46 GroundSpeed=441 Tendency=0 Time=06:28:03"
Rejeu 1174038143.33566 "TrackMovedEvent Flight=9631 CallSign=KLM588 Ssr=4055 Sector=D3 Layers=S X=246.03 Y=-420.13 Vx=-76 Vy=451 Afl=380 Rate=0 Heading=350 GroundSpeed=457 Tendency=0 Time=06:28:03"
Rejeu 1174038143.33882 "TrackMovedEvent Flight=9904 CallSign=BIE576A Ssr=7642 Sector=T2 Layers=S X=113.48 Y=-41.91 Vx=87 Vy=-494 Afl=329 Rate=402 Heading=170 GroundSpeed=502 Tendency=1 Time=06:28:03"
autoassume:BORD:P2:CR 1174038143.34888 "PLN_POSITION:BORD:P2:797 PLN_EVENT GlobalStatus=CREE Callsign=IBE3475 Model=MD87 Departure=LSZH Destination=LEMD RFL=350 CurrentSSRCode=3015 PreviousSSRCode=3015 CFL=0 SS=--"
autoassume:BORD:P2:CR 1174038143.3521 "PLN_POSITION:BORD:P2:797 COORD_EFL_UPD Efl=350"
autoassume:BORD:P2:CR 1174038143.35484 "PLN_POSITION:BORD:P2:797 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CR 1174038143.35702 "PLN_POSITION:BORD:P2:797 PLN_EVENT GlobalStatus=EVL Callsign=IBE3475 Model=MD87 Departure=LSZH Destination=LEMD RFL=350 CurrentSSRCode=3015 PreviousSSRCode=3015 CFL=0 SS=--"
autoassume:BORD:P2:CR 1174038143.35904 "PLN_POSITION:BORD:P2:797 ROUTE_UPD [194.528783240283,-72.1257363254435,0,MEBAK,0,1959-06-21,23520,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,23940,SYSTEM][134.050632869653,-120.154911865762,0,MOKDI,0,1959-06-21,24180,SYSTEM][120.426252458085,-130.876595049978,0,OLRAK,0,1959-06-21,24300,SYSTEM][75.1215258774783,-161.000004604295,0,NARAK,0,1959-06-21,24780,SYSTEM]"
autoassume:BORD:P2:CR 1174038143.36161 "PLN_POSITION:BORD:P2:797 PLN_EVENT GlobalStatus=ACT Callsign=IBE3475 Model=MD87 Departure=LSZH Destination=LEMD RFL=350 CurrentSSRCode=3015 PreviousSSRCode=3015 CFL=0 SS=--"
autoassume:BORD:P2:CR 1174038143.36378 "PLN_POSITION:BORD:P2:797 COORD_PT_UPD Beacon=OLRAK"
autoassume:BORD:P2:CR 1174038143.36602 "PLN_POSITION:BORD:P2:797 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CR 1174038143.3695 "PLN_POSITION:BORD:P2:2097 PLN_EVENT GlobalStatus=CREE Callsign=KLM1263 Model=F70 Departure=EHAM Destination=LFMN RFL=350 CurrentSSRCode=0163 PreviousSSRCode=0163 CFL=350 SS=--"
autoassume:BORD:P2:CR 1174038143.37159 "PLN_POSITION:BORD:P2:2097 COORD_EFL_UPD Efl=350"
autoassume:BORD:P2:CR 1174038143.37389 "PLN_POSITION:BORD:P2:2097 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CR 1174038143.37662 "PLN_POSITION:BORD:P2:2097 PLN_EVENT GlobalStatus=EVL Callsign=KLM1263 Model=F70 Departure=EHAM Destination=LFMN RFL=350 CurrentSSRCode=0163 PreviousSSRCode=0163 CFL=350 SS=--"
autoassume:BORD:P2:CR 1174038143.37865 "PLN_POSITION:BORD:P2:2097 ROUTE_UPD [113.903384939415,15.8172087938183,0,KOTIS,0,1959-06-21,22260,SYSTEM][128.996261251978,-25.5846036630846,0,KUKOR,0,1959-06-21,22620,SYSTEM][148.05894074553,-63.7576831335955,0,TIS,0,1959-06-21,22920,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,23220,SYSTEM][179.143811894318,-113.224888861974,0,LATAM,0,1959-06-21,23400,SYSTEM]"
autoassume:BORD:P2:CR 1174038143.38064 "PLN_POSITION:BORD:P2:2097 PLN_EVENT GlobalStatus=ACT Callsign=KLM1263 Model=F70 Departure=EHAM Destination=LFMN RFL=350 CurrentSSRCode=0163 PreviousSSRCode=0163 CFL=350 SS=--"
autoassume:BORD:P2:CR 1174038143.3832 "PLN_POSITION:BORD:P2:2097 COORD_PT_UPD Beacon=LERGA"
autoassume:BORD:P2:CR 1174038143.38534 "PLN_POSITION:BORD:P2:2097 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CR 1174038143.38891 "PLN_POSITION:BORD:P2:2220 PLN_EVENT GlobalStatus=CREE Callsign=CSA6720 Model=A321 Departure=LKPR Destination=LEMD RFL=350 CurrentSSRCode=6621 PreviousSSRCode=6621 CFL=0 SS=--"
autoassume:BORD:P2:CR 1174038143.39134 "PLN_POSITION:BORD:P2:2220 COORD_EFL_UPD Efl=350"
autoassume:BORD:P2:CR 1174038143.39329 "PLN_POSITION:BORD:P2:2220 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CR 1174038143.39592 "PLN_POSITION:BORD:P2:2220 PLN_EVENT GlobalStatus=EVL Callsign=CSA6720 Model=A321 Departure=LKPR Destination=LEMD RFL=350 CurrentSSRCode=6621 PreviousSSRCode=6621 CFL=0 SS=--"
autoassume:BORD:P2:CR 1174038143.3984 "PLN_POSITION:BORD:P2:2220 ROUTE_UPD [179.688053459385,-84.3788454073992,0,REPSI,0,1959-06-21,22740,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,22980,SYSTEM][134.050632869653,-120.154911865762,0,MOKDI,0,1959-06-21,23220,SYSTEM][120.426252458085,-130.876595049978,0,OLRAK,0,1959-06-21,23340,SYSTEM][75.1215258774783,-161.000004604295,0,NARAK,0,1959-06-21,23760,SYSTEM]"
autoassume:BORD:P2:CR 1174038143.40071 "PLN_POSITION:BORD:P2:2220 PLN_EVENT GlobalStatus=ACT Callsign=CSA6720 Model=A321 Departure=LKPR Destination=LEMD RFL=350 CurrentSSRCode=6621 PreviousSSRCode=6621 CFL=0 SS=--"
autoassume:BORD:P2:CR 1174038143.40317 "PLN_POSITION:BORD:P2:2220 COORD_PT_UPD Beacon=OLRAK"
autoassume:BORD:P2:CR 1174038143.40554 "PLN_POSITION:BORD:P2:2220 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CR 1174038143.40919 "PLN_POSITION:BORD:P2:2581 PLN_EVENT GlobalStatus=CREE Callsign=CSA6746 Model=B734 Departure=LKPR Destination=LEZL RFL=330 CurrentSSRCode=6622 PreviousSSRCode=6622 CFL=0 SS=--"
autoassume:BORD:P2:CR 1174038143.41138 "PLN_POSITION:BORD:P2:2581 COORD_EFL_UPD Efl=350"
autoassume:BORD:P2:CR 1174038143.41334 "PLN_POSITION:BORD:P2:2581 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CR 1174038143.41547 "PLN_POSITION:BORD:P2:2581 PLN_EVENT GlobalStatus=EVL Callsign=CSA6746 Model=B734 Departure=LKPR Destination=LEZL RFL=330 CurrentSSRCode=6622 PreviousSSRCode=6622 CFL=0 SS=--"
autoassume:BORD:P2:CR 1174038143.41846 "PLN_POSITION:BORD:P2:2581 ROUTE_UPD [194.528783240283,-72.1257363254435,0,MEBAK,0,1959-06-21,23100,SYSTEM][179.688053459385,-84.3788454073992,0,REPSI,0,1959-06-21,23280,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,23460,SYSTEM][134.050632869653,-120.154911865762,0,MOKDI,0,1959-06-21,23700,SYSTEM][120.426252458085,-130.876595049978,0,OLRAK,0,1959-06-21,23820,SYSTEM][75.1215258774783,-161.000004604295,0,NARAK,0,1959-06-21,24300,SYSTEM]"
autoassume:BORD:P2:CR 1174038143.42065 "PLN_POSITION:BORD:P2:2581 PLN_EVENT GlobalStatus=ACT Callsign=CSA6746 Model=B734 Departure=LKPR Destination=LEZL RFL=330 CurrentSSRCode=6622 PreviousSSRCode=6622 CFL=0 SS=--"
autoassume:BORD:P2:CR 1174038143.4228 "PLN_POSITION:BORD:P2:2581 COORD_PT_UPD Beacon=OLRAK"
autoassume:BORD:P2:CR 1174038143.42531 "PLN_POSITION:BORD:P2:2581 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CR 1174038143.42917 "PLN_POSITION:BORD:P2:2431 PLN_EVENT GlobalStatus=CREE Callsign=CSA6662 Model=B734 Departure=LKPR Destination=LEBB RFL=350 CurrentSSRCode=6624 PreviousSSRCode=6624 CFL=0 SS=--"
autoassume:BORD:P2:CR 1174038143.43136 "PLN_POSITION:BORD:P2:2431 COORD_EFL_UPD Efl=350"
autoassume:BORD:P2:CR 1174038143.43339 "PLN_POSITION:BORD:P2:2431 COORD_STATE_UPD CoordStatus=MPE"
autoassume:BORD:P2:CR 1174038143.43557 "PLN_POSITION:BORD:P2:2431 PLN_EVENT GlobalStatus=EVL Callsign=CSA6662 Model=B734 Departure=LKPR Destination=LEBB RFL=350 CurrentSSRCode=6624 PreviousSSRCode=6624 CFL=0 SS=--"
autoassume:BORD:P2:CR 1174038143.4394 "PLN_POSITION:BORD:P2:2431 ROUTE_UPD [194.528783240283,-72.1257363254435,0,MEBAK,0,1959-06-21,23400,SYSTEM][179.688053459385,-84.3788454073992,0,REPSI,0,1959-06-21,23580,SYSTEM][158.20088452333,-101.08642356779,0,LERGA,0,1959-06-21,23820,SYSTEM][134.050632869653,-120.154911865762,0,MOKDI,0,1959-06-21,24060,SYSTEM][120.426252458085,-130.876595049978,0,OLRAK,0,1959-06-21,24180,SYSTEM][75.1215258774783,-161.000004604295,0,NARAK,0,1959-06-21,24660,SYSTEM]"
autoassume:BORD:P2:CR 1174038143.44205 "PLN_POSITION:BORD:P2:2431 PLN_EVENT GlobalStatus=ACT Callsign=CSA6662 Model=B734 Departure=LKPR Destination=LEBB RFL=350 CurrentSSRCode=6624 PreviousSSRCode=6624 CFL=0 SS=--"
autoassume:BORD:P2:CR 1174038143.44402 "PLN_POSITION:BORD:P2:2431 COORD_PT_UPD Beacon=OLRAK"
autoassume:BORD:P2:CR 1174038143.44658 "PLN_POSITION:BORD:P2:2431 COORD_STATE_UPD CoordStatus=MAE"
autoassume:BORD:P2:CR 1174038143.4507 "PLN_POSITION:BORD:P2:420 COORD_STATE_UPD CoordStatus=MPS"
autoassume:BORD:P2:CR 1174038143.45309 "PLN_POSITION:BORD:P2:420 COORD_STATE_UPD CoordStatus=MAS"
autoassume:BORD:P2:CR 1174038143.45528 "PLN_POSITION:BORD:P2:466 COORD_STATE_UPD CoordStatus=MPS"
autoassume:BORD:P2:CR 1174038143.45823 "PLN_POSITION:BORD:P2:466 COORD_STATE_UPD CoordStatus=MAS"
autoassume:BORD:P2:CR 1174038143.46121 "PLN_POSITION:BORD:P2:466 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038143.46383 "PLN_POSITION:BORD:P2:860 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W3 PreviousSector=T2 Efl=390 Tfl=390 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038143.46754 "PLN_POSITION:BORD:P2:2262 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=H2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=OLRAK"
autoassume:BORD:P2:CR 1174038143.47133 "PLN_POSITION:BORD:P2:466 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038143.47468 "PLN_POSITION:BORD:P2:649 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038143.47773 "PLN_POSITION:BORD:P2:466 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038143.48026 "PLN_POSITION:BORD:P2:2262 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=H2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=OLRAK"
autoassume:BORD:P2:CR 1174038143.48286 "PLN_POSITION:BORD:P2:466 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038143.48513 "PLN_POSITION:BORD:P2:649 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038143.48774 "PLN_POSITION:BORD:P2:797 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=X2 PreviousSector=T2 Efl=350 Tfl=0 CoordPt=OLRAK"
autoassume:BORD:P2:CR 1174038143.49081 "PLN_POSITION:BORD:P2:797 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=X2 PreviousSector=T2 Efl=350 Tfl=0 CoordPt=OLRAK"
autoassume:BORD:P2:CR 1174038143.49314 "PLN_POSITION:BORD:P2:2220 COORD_STATE_UPD CoordStatus=MPS"
autoassume:BORD:P2:CR 1174038143.49612 "PLN_POSITION:BORD:P2:2220 COORD_STATE_UPD CoordStatus=MAS"
autoassume:BORD:P2:CR 1174038143.49894 "PLN_POSITION:BORD:P2:2581 COORD_STATE_UPD CoordStatus=MPS"
autoassume:BORD:P2:CR 1174038143.50193 "PLN_POSITION:BORD:P2:2581 COORD_STATE_UPD CoordStatus=MAS"
autoassume:BORD:P2:CR 1174038143.5043 "PLN_POSITION:BORD:P2:2097 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038143.50651 "PLN_POSITION:BORD:P2:2097 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CR 1174038143.50875 "PLN_POSITION:BORD:P2:2220 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=X2 PreviousSector=T2 Efl=350 Tfl=0 CoordPt=OLRAK"
autoassume:BORD:P2:CR 1174038143.51092 "PLN_POSITION:BORD:P2:2220 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=X2 PreviousSector=T2 Efl=350 Tfl=0 CoordPt=OLRAK"
autoassume:BORD:P2:CR 1174038143.51321 "PLN_POSITION:BORD:P2:2581 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=X2 PreviousSector=T2 Efl=350 Tfl=0 CoordPt=OLRAK"
autoassume:BORD:P2:CO 1174038143.51555 "PLN_POSITION:BORD:P2:797 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=X2 PreviousSector=T2 Efl=350 Tfl=0 CoordPt=OLRAK"
autoassume:BORD:P2:CO 1174038143.51896 "PLN_POSITION:BORD:P2:2097 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038143.52257 "PLN_POSITION:BORD:P2:2097 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=W2 PreviousSector=T2 Efl=350 Tfl=350 CoordPt=LERGA"
autoassume:BORD:P2:CO 1174038143.52617 "PLN_POSITION:BORD:P2:2220 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=X2 PreviousSector=T2 Efl=350 Tfl=0 CoordPt=OLRAK"
autoassume:BORD:P2:CO 1174038143.52907 "PLN_POSITION:BORD:P2:2220 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=X2 PreviousSector=T2 Efl=350 Tfl=0 CoordPt=OLRAK"
autoassume:BORD:P2:CO 1174038143.53123 "PLN_POSITION:BORD:P2:2581 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=X2 PreviousSector=T2 Efl=350 Tfl=0 CoordPt=OLRAK"
autoassume:BORD:P2:CO 1174038143.53336 "PLN_POSITION:BORD:P2:2581 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=X2 PreviousSector=T2 Efl=350 Tfl=0 CoordPt=OLRAK"
GEODE:BORD:P2:CO 1174038143.53589 "PLN_POSITION:BORD:P2:2097 REQUEST_COORD From=GEODE:BORD:P2:CO"
GEODE:BORD:P2:CO 1174038143.55148 "PLN_POSITION:BORD:P2:2220 REQUEST_COORD From=GEODE:BORD:P2:CO"
GEODE:BORD:P2:CO 1174038143.56727 "PLN_POSITION:BORD:P2:2581 REQUEST_COORD From=GEODE:BORD:P2:CO"
GEODE:BORD:P2:CR 1174038143.58147 "PLN_POSITION:BORD:P2:2220 REQUEST_COORD From=GEODE:BORD:P2:CR"
GEODE:BORD:P2:CR 1174038143.59705 "PLN_POSITION:BORD:P2:2581 REQUEST_COORD From=GEODE:BORD:P2:CR"
Rejeu 1174038143.61347 "ClockEvent Time=06:28:04 Rate=1.0 Bs=0"
Rejeu 1174038143.61646 "RadarEndEvent"
Rejeu 1174038143.61868 "TrackMovedEvent Flight=146 CallSign=TAM8097 Ssr=7605 Sector=MI Layers=F,U X=287.47 Y=-81.03 Vx=451 Vy=-121 Afl=285 Rate=1933 Heading=105 GroundSpeed=467 Tendency=1 Time=06:28:04"
Rejeu 1174038143.62084 "TrackMovedEvent Flight=193 CallSign=GZA5361 Ssr=3140 Sector=O2 Layers=S X=286.86 Y=-52.03 Vx=78 Vy=-438 Afl=370 Rate=0 Heading=170 GroundSpeed=445 Tendency=0 Time=06:28:04"
Rejeu 1174038143.62325 "TrackMovedEvent Flight=219 CallSign=RAE1510 Ssr=5670 Sector=K2 Layers=F,U,S X=358.94 Y=-248.41 Vx=254 Vy=-439 Afl=350 Rate=0 Heading=150 GroundSpeed=507 Tendency=0 Time=06:28:04"
Rejeu 1174038143.62638 "TrackMovedEvent Flight=242 CallSign=CFG855 Ssr=5504 Sector=EN Layers=U,S X=204.44 Y=-337.70 Vx=82 Vy=405 Afl=340 Rate=0 Heading=11 GroundSpeed=413 Tendency=0 Time=06:28:04"
Rejeu 1174038143.63009 "TrackMovedEvent Flight=253 CallSign=VLG5040 Ssr=5566 Sector=F1 Layers=U,S X=229.02 Y=-287.55 Vx=266 Vy=318 Afl=340 Rate=0 Heading=40 GroundSpeed=415 Tendency=0 Time=06:28:04"
Rejeu 1174038143.63368 "TrackMovedEvent Flight=294 CallSign=BZ699WF Ssr=1763 Sector=KJ Layers=F X=381.56 Y=-282.61 Vx=226 Vy=-165 Afl=46 Rate=-890 Heading=126 GroundSpeed=280 Tendency=-1 Time=06:28:04"
Rejeu 1174038143.63652 "TrackMovedEvent Flight=308 CallSign=BER3999 Ssr=5505 Sector=F3 Layers=S X=223.28 Y=-295.44 Vx=173 Vy=359 Afl=380 Rate=0 Heading=26 GroundSpeed=399 Tendency=0 Time=06:28:04"
Rejeu 1174038143.63932 "TrackMovedEvent Flight=318 CallSign=BPA1602 Ssr=2363 Sector=Y2 Layers=U X=272.02 Y=-102.02 Vx=471 Vy=-145 Afl=270 Rate=0 Heading=107 GroundSpeed=493 Tendency=0 Time=06:28:04"
Rejeu 1174038143.64184 "TrackMovedEvent Flight=320 CallSign=BAW2362 Ssr=6363 Sector=W1 Layers=F,U X=193.48 Y=-130.58 Vx=365 Vy=-311 Afl=279 Rate=-1020 Heading=130 GroundSpeed=480 Tendency=-1 Time=06:28:04"
Rejeu 1174038143.64427 "TrackMovedEvent Flight=374 CallSign=AEU241 Ssr=6334 Sector=A3 Layers=S X=199.03 Y=-123.75 Vx=424 Vy=-247 Afl=370 Rate=0 Heading=120 GroundSpeed=491 Tendency=0 Time=06:28:04"
Rejeu 1174038143.64701 "TrackMovedEvent Flight=375 CallSign=AF660KU Ssr=3213 Sector=-- Layers=F X=227.11 Y=-194.78 Vx=92 Vy=-249 Afl=35 Rate=-1043 Heading=160 GroundSpeed=265 Tendency=-1 Time=06:28:04"
Rejeu 1174038143.64942 "TrackMovedEvent Flight=377 CallSign=AF700YH Ssr=3211 Sector=W2 Layers=S X=166.11 Y=-98.31 Vx=365 Vy=-367 Afl=330 Rate=0 Heading=135 GroundSpeed=518 Tendency=0 Time=06:28:04"
Rejeu 1174038143.65159 "TrackMovedEvent Flight=387 CallSign=BER9143 Ssr=5310 Sector=EN Layers=S X=192.36 Y=-362.52 Vx=123 Vy=377 Afl=380 Rate=0 Heading=18 GroundSpeed=397 Tendency=0 Time=06:28:04"
Rejeu 1174038143.65412 "TrackMovedEvent Flight=407 CallSign=LGL931 Ssr=5656 Sector=D3 Layers=S X=367.72 Y=-328.16 Vx=238 Vy=-406 Afl=390 Rate=0 Heading=150 GroundSpeed=471 Tendency=0 Time=06:28:04"
Rejeu 1174038143.65716 "TrackMovedEvent Flight=412 CallSign=VLG5326 Ssr=5301 Sector=-- Layers=S X=179.55 Y=-387.09 Vx=148 Vy=369 Afl=360 Rate=0 Heading=22 GroundSpeed=398 Tendency=0 Time=06:28:04"
Rejeu 1174038143.66064 "TrackMovedEvent Flight=420 CallSign=EZY5063 Ssr=6327 Sector=T3 Layers=S X=142.36 Y=-59.08 Vx=186 Vy=-468 Afl=370 Rate=0 Heading=158 GroundSpeed=504 Tendency=0 Time=06:28:04"
Rejeu 1174038143.66439 "TrackMovedEvent Flight=432 CallSign=ANS8175 Ssr=6736 Sector=XA Layers=U X=156.77 Y=-297.11 Vx=-317 Vy=-333 Afl=211 Rate=-1038 Heading=224 GroundSpeed=460 Tendency=-1 Time=06:28:04"
Rejeu 1174038143.66817 "TrackMovedEvent Flight=446 CallSign=AF711HI Ssr=6410 Sector=UJ Layers=U X=181.02 Y=23.81 Vx=-229 Vy=381 Afl=280 Rate=0 Heading=329 GroundSpeed=445 Tendency=0 Time=06:28:04"
Rejeu 1174038143.67054 "TrackMovedEvent Flight=448 CallSign=AF688ZA Ssr=3210 Sector=T1 Layers=F,U X=130.42 Y=-113.45 Vx=74 Vy=-467 Afl=310 Rate=0 Heading=171 GroundSpeed=473 Tendency=0 Time=06:28:04"
Rejeu 1174038143.67275 "TrackMovedEvent Flight=466 CallSign=BZ809KX Ssr=3212 Sector=T3 Layers=S X=160.11 Y=-62.28 Vx=282 Vy=-386 Afl=350 Rate=0 Heading=144 GroundSpeed=478 Tendency=0 Time=06:28:04"
Rejeu 1174038143.67494 "TrackMovedEvent Flight=471 CallSign=ANS8753 Ssr=4015 Sector=-- Layers=S X=168.22 Y=-287.36 Vx=-404 Vy=-152 Afl=330 Rate=0 Heading=249 GroundSpeed=432 Tendency=0 Time=06:28:04"
Rejeu 1174038143.67714 "TrackMovedEvent Flight=507 CallSign=AF006JS Ssr=3223 Sector=MO Layers=F X=215.30 Y=-166.80 Vx=180 Vy=-407 Afl=166 Rate=-3416 Heading=156 GroundSpeed=445 Tendency=-1 Time=06:28:04"
Rejeu 1174038143.67931 "TrackMovedEvent Flight=516 CallSign=EZY4331 Ssr=4050 Sector=CT Layers=S X=166.81 Y=-286.80 Vx=-329 Vy=-340 Afl=370 Rate=0 Heading=224 GroundSpeed=473 Tendency=0 Time=06:28:04"
Rejeu 1174038143.68192 "TrackMovedEvent Flight=537 CallSign=AF534BH Ssr=3226 Sector=T2 Layers=S X=135.83 Y=-34.41 Vx=170 Vy=-493 Afl=323 Rate=1397 Heading=161 GroundSpeed=521 Tendency=1 Time=06:28:04"
Rejeu 1174038143.6849 "TrackMovedEvent Flight=557 CallSign=ACL670 Ssr=4051 Sector=D1 Layers=U,S X=255.83 Y=-345.88 Vx=-321 Vy=-361 Afl=330 Rate=0 Heading=222 GroundSpeed=483 Tendency=0 Time=06:28:04"
Rejeu 1174038143.68705 "TrackMovedEvent Flight=583 CallSign=IVE201A Ssr=1003 Sector=O4 Layers=S X=238.08 Y=-73.81 Vx=391 Vy=232 Afl=380 Rate=0 Heading=59 GroundSpeed=455 Tendency=0 Time=06:28:04"
Rejeu 1174038143.68922 "TrackMovedEvent Flight=590 CallSign=ADH8146 Ssr=4055 Sector=DL Layers=U X=250.59 Y=-406.48 Vx=-453 Vy=-145 Afl=310 Rate=0 Heading=252 GroundSpeed=476 Tendency=0 Time=06:28:04"
Rejeu 1174038143.69138 "TrackMovedEvent Flight=591 CallSign=ADH8600 Ssr=4053 Sector=D1 Layers=U,S X=250.05 Y=-397.14 Vx=-447 Vy=-140 Afl=322 Rate=-2039 Heading=253 GroundSpeed=468 Tendency=-1 Time=06:28:04"
Rejeu 1174038143.69355 "TrackMovedEvent Flight=594 CallSign=KAJ7166 Ssr=6420 Sector=G2 Layers=U,S X=223.80 Y=-56.05 Vx=-230 Vy=331 Afl=320 Rate=0 Heading=325 GroundSpeed=403 Tendency=0 Time=06:28:04"
Rejeu 1174038143.69576 "TrackMovedEvent Flight=598 CallSign=ISG2370 Ssr=4046 Sector=M1 Layers=U X=179.78 Y=-281.34 Vx=-217 Vy=-370 Afl=269 Rate=0 Heading=210 GroundSpeed=429 Tendency=0 Time=06:28:04"
Rejeu 1174038143.69792 "TrackMovedEvent Flight=602 CallSign=TAR7436 Ssr=6426 Sector=DH Layers=S X=284.66 Y=-348.94 Vx=-237 Vy=324 Afl=340 Rate=0 Heading=324 GroundSpeed=401 Tendency=0 Time=06:28:04"
Rejeu 1174038143.70005 "TrackMovedEvent Flight=623 CallSign=KAJ7530 Ssr=6421 Sector=G3 Layers=U,S X=236.06 Y=-73.23 Vx=-221 Vy=317 Afl=359 Rate=0 Heading=325 GroundSpeed=386 Tendency=0 Time=06:28:04"
Rejeu 1174038143.7022 "TrackMovedEvent Flight=657 CallSign=TAR4010 Ssr=4754 Sector=F2 Layers=S X=249.58 Y=-261.05 Vx=-125 Vy=389 Afl=340 Rate=0 Heading=342 GroundSpeed=409 Tendency=0 Time=06:28:04"
Rejeu 1174038143.70453 "TrackMovedEvent Flight=663 CallSign=AF673KB Ssr=7302 Sector=MO Layers=U,S X=196.09 Y=-154.23 Vx=-142 Vy=354 Afl=245 Rate=598 Heading=338 GroundSpeed=381 Tendency=1 Time=06:28:04"
Rejeu 1174038143.7068 "TrackMovedEvent Flight=667 CallSign=AF202TC Ssr=3227 Sector=P1 Layers=U,S X=126.59 Y=-6.91 Vx=174 Vy=-497 Afl=330 Rate=0 Heading=161 GroundSpeed=527 Tendency=0 Time=06:28:04"
Rejeu 1174038143.70903 "TrackMovedEvent Flight=675 CallSign=CC101GM Ssr=0642 Sector=KJ Layers=F X=355.36 Y=-245.14 Vx=171 Vy=-231 Afl=130 Rate=0 Heading=143 GroundSpeed=287 Tendency=0 Time=06:28:04"
Rejeu 1174038143.71097 "TrackMovedEvent Flight=680 CallSign=ONG001 Ssr=4040 Sector=-- Layers=U X=281.77 Y=-73.23 Vx=-105 Vy=392 Afl=203 Rate=-1095 Heading=345 GroundSpeed=406 Tendency=-1 Time=06:28:04"
Rejeu 1174038143.71297 "TrackMovedEvent Flight=688 CallSign=N224MV Ssr=2311 Sector=AW Layers=F X=70.00 Y=-198.41 Vx=184 Vy=-2 Afl=95 Rate=416 Heading=91 GroundSpeed=184 Tendency=1 Time=06:28:04"
Rejeu 1174038143.71539 "TrackMovedEvent Flight=689 CallSign=BAW341 Ssr=6754 Sector=ND Layers=F,U X=320.03 Y=-189.86 Vx=145 Vy=-212 Afl=43 Rate=3020 Heading=146 GroundSpeed=257 Tendency=1 Time=06:28:04"
Rejeu 1174038143.71748 "TrackMovedEvent Flight=698 CallSign=ACL770 Ssr=4047 Sector=D1 Layers=U X=232.80 Y=-371.58 Vx=-316 Vy=-339 Afl=250 Rate=-1377 Heading=223 GroundSpeed=463 Tendency=-1 Time=06:28:04"
Rejeu 1174038143.71979 "TrackMovedEvent Flight=703 CallSign=AF203GP Ssr=6424 Sector=B1 Layers=F,U X=324.86 Y=-180.23 Vx=-128 Vy=268 Afl=110 Rate=1728 Heading=334 GroundSpeed=297 Tendency=1 Time=06:28:04"
Rejeu 1174038143.72188 "TrackMovedEvent Flight=704 CallSign=AF675SW Ssr=7305 Sector=S  Layers=U X=151.05 Y=-2.42 Vx=38 Vy=399 Afl=240 Rate=0 Heading=5 GroundSpeed=401 Tendency=0 Time=06:28:04"
Rejeu 1174038143.7239 "TrackMovedEvent Flight=706 CallSign=TAR7508 Ssr=6425 Sector=M2 Layers=S X=204.25 Y=-243.09 Vx=-367 Vy=181 Afl=340 Rate=0 Heading=296 GroundSpeed=409 Tendency=0 Time=06:28:04"
Rejeu 1174038143.72598 "TrackMovedEvent Flight=707 CallSign=ANS8623 Ssr=4045 Sector=XA Layers=U X=166.23 Y=-288.58 Vx=-368 Vy=-264 Afl=243 Rate=-1244 Heading=234 GroundSpeed=453 Tendency=-1 Time=06:28:04"
Rejeu 1174038143.72802 "TrackMovedEvent Flight=744 CallSign=CC201WB Ssr=0644 Sector=NN Layers=F X=344.39 Y=-206.38 Vx=228 Vy=-109 Afl=130 Rate=0 Heading=116 GroundSpeed=253 Tendency=0 Time=06:28:04"
Rejeu 1174038143.73004 "TrackMovedEvent Flight=755 CallSign=KAJ7122 Ssr=6423 Sector=Y2 Layers=U,S X=281.14 Y=-126.83 Vx=-232 Vy=305 Afl=320 Rate=0 Heading=323 GroundSpeed=383 Tendency=0 Time=06:28:04"
Rejeu 1174038143.73209 "TrackMovedEvent Flight=762 CallSign=RYR4822 Ssr=5675 Sector=RO Layers=F,U X=395.48 Y=-299.58 Vx=70 Vy=-397 Afl=199 Rate=-2156 Heading=170 GroundSpeed=403 Tendency=-1 Time=06:28:04"
Rejeu 1174038143.73414 "TrackMovedEvent Flight=765 CallSign=TAR4072 Ssr=7306 Sector=RO Layers=S X=378.13 Y=-320.67 Vx=-159 Vy=373 Afl=339 Rate=0 Heading=337 GroundSpeed=405 Tendency=0 Time=06:28:04"
Rejeu 1174038143.73618 "TrackMovedEvent Flight=777 CallSign=ISS292 Ssr=5663 Sector=-- Layers=U X=359.48 Y=-145.92 Vx=103 Vy=-466 Afl=241 Rate=1827 Heading=168 GroundSpeed=477 Tendency=1 Time=06:28:04"
Rejeu 1174038143.73818 "TrackMovedEvent Flight=780 CallSign=CFG423 Ssr=5305 Sector=F3 Layers=S X=240.11 Y=-247.17 Vx=156 Vy=378 Afl=360 Rate=0 Heading=22 GroundSpeed=409 Tendency=0 Time=06:28:04"
Rejeu 1174038143.7404 "TrackMovedEvent Flight=792 CallSign=EAB515 Ssr=7511 Sector=Y1 Layers=U X=238.36 Y=-84.31 Vx=-196 Vy=-312 Afl=290 Rate=0 Heading=212 GroundSpeed=368 Tendency=0 Time=06:28:04"
Rejeu 1174038143.74244 "TrackMovedEvent Flight=797 CallSign=IBE3475 Ssr=3015 Sector=G2 Layers=S X=223.16 Y=-46.48 Vx=-379 Vy=-201 Afl=344 Rate=955 Heading=242 GroundSpeed=429 Tendency=1 Time=06:28:04"
Rejeu 1174038143.7445 "TrackMovedEvent Flight=800 CallSign=ISS8230 Ssr=5673 Sector=3K Layers=S X=293.73 Y=16.56 Vx=-274 Vy=-353 Afl=351 Rate=0 Heading=218 GroundSpeed=447 Tendency=0 Time=06:28:04"
Rejeu 1174038143.74665 "TrackMovedEvent Flight=811 CallSign=BER4117 Ssr=5332 Sector=F3 Layers=S X=229.58 Y=-272.77 Vx=189 Vy=360 Afl=380 Rate=0 Heading=28 GroundSpeed=407 Tendency=0 Time=06:28:04"
Rejeu 1174038143.74866 "TrackMovedEvent Flight=812 CallSign=BZ668JQ Ssr=7311 Sector=AJ Layers=F,U,S X=383.73 Y=-294.97 Vx=-262 Vy=-64 Afl=59 Rate=2634 Heading=256 GroundSpeed=270 Tendency=1 Time=06:28:04"
Rejeu 1174038143.75065 "TrackMovedEvent Flight=815 CallSign=EDW270 Ssr=3005 Sector=-- Layers=U,S X=277.52 Y=-10.44 Vx=-329 Vy=-356 Afl=258 Rate=1397 Heading=223 GroundSpeed=485 Tendency=1 Time=06:28:04"
Rejeu 1174038143.75263 "TrackMovedEvent Flight=819 CallSign=AEE4152 Ssr=5752 Sector=UG Layers=F,U X=307.55 Y=-96.70 Vx=-370 Vy=155 Afl=289 Rate=-1881 Heading=293 GroundSpeed=401 Tendency=-1 Time=06:28:04"
Rejeu 1174038143.7547 "TrackMovedEvent Flight=820 CallSign=TAR8006 Ssr=5662 Sector=RO Layers=S X=424.20 Y=-379.44 Vx=-135 Vy=393 Afl=360 Rate=0 Heading=341 GroundSpeed=416 Tendency=0 Time=06:28:04"
Rejeu 1174038143.75686 "TrackMovedEvent Flight=822 CallSign=EZY4515 Ssr=3106 Sector=Y3 Layers=S X=256.77 Y=-83.06 Vx=-105 Vy=-462 Afl=370 Rate=0 Heading=193 GroundSpeed=474 Tendency=0 Time=06:28:04"
Rejeu 1174038143.75893 "TrackMovedEvent Flight=825 CallSign=ESK5CP Ssr=0646 Sector=NN Layers=F X=332.52 Y=-171.50 Vx=-98 Vy=-344 Afl=144 Rate=-1220 Heading=196 GroundSpeed=358 Tendency=-1 Time=06:28:04"
Rejeu 1174038143.76094 "TrackMovedEvent Flight=827 CallSign=TAR7492 Ssr=7307 Sector=RO Layers=S X=410.38 Y=-339.22 Vx=-144 Vy=418 Afl=340 Rate=0 Heading=341 GroundSpeed=442 Tendency=0 Time=06:28:04"
Rejeu 1174038143.76296 "TrackMovedEvent Flight=830 CallSign=SNG960 Ssr=5524 Sector=E1 Layers=U,S X=324.22 Y=-187.34 Vx=310 Vy=283 Afl=344 Rate=-955 Heading=48 GroundSpeed=420 Tendency=-1 Time=06:28:04"
Rejeu 1174038143.76502 "TrackMovedEvent Flight=857 CallSign=BER2565 Ssr=5512 Sector=-- Layers=U,S X=204.89 Y=-350.00 Vx=53 Vy=411 Afl=288 Rate=1020 Heading=7 GroundSpeed=414 Tendency=1 Time=06:28:04"
Rejeu 1174038143.7671 "TrackMovedEvent Flight=873 CallSign=BER439V Ssr=5307 Sector=-- Layers=S X=187.20 Y=-393.98 Vx=104 Vy=371 Afl=374 Rate=1452 Heading=16 GroundSpeed=385 Tendency=1 Time=06:28:04"
Rejeu 1174038143.7692 "TrackMovedEvent Flight=879 CallSign=BER9235 Ssr=5334 Sector=EN Layers=S X=210.09 Y=-309.91 Vx=69 Vy=388 Afl=380 Rate=0 Heading=10 GroundSpeed=394 Tendency=0 Time=06:28:04"
Rejeu 1174038143.77133 "TrackMovedEvent Flight=889 CallSign=IBE4623 Ssr=4063 Sector=RO Layers=S X=398.70 Y=-348.06 Vx=-425 Vy=-87 Afl=330 Rate=0 Heading=258 GroundSpeed=434 Tendency=0 Time=06:28:04"
Rejeu 1174038143.77337 "TrackMovedEvent Flight=896 CallSign=JET390 Ssr=4061 Sector=DH Layers=U,S X=294.06 Y=-357.25 Vx=-459 Vy=34 Afl=350 Rate=0 Heading=274 GroundSpeed=460 Tendency=0 Time=06:28:04"
Rejeu 1174038143.77537 "TrackMovedEvent Flight=897 CallSign=ESK6DR Ssr=7251 Sector=RO Layers=S X=345.22 Y=-126.27 Vx=-225 Vy=-418 Afl=370 Rate=0 Heading=208 GroundSpeed=475 Tendency=0 Time=06:28:04"
Rejeu 1174038143.77742 "TrackMovedEvent Flight=900 CallSign=AHR626 Ssr=4057 Sector=DH Layers=S X=311.66 Y=-285.23 Vx=-302 Vy=-397 Afl=350 Rate=0 Heading=217 GroundSpeed=499 Tendency=0 Time=06:28:04"
Rejeu 1174038143.77944 "TrackMovedEvent Flight=926 CallSign=ABP550 Ssr=5573 Sector=XA Layers=U X=191.47 Y=-293.78 Vx=313 Vy=189 Afl=275 Rate=475 Heading=59 GroundSpeed=366 Tendency=1 Time=06:28:04"
Rejeu 1174038143.78151 "TrackMovedEvent Flight=994 CallSign=TAR6204 Ssr=7312 Sector=RO Layers=S X=409.70 Y=-412.61 Vx=-231 Vy=354 Afl=340 Rate=0 Heading=327 GroundSpeed=423 Tendency=0 Time=06:28:04"
Rejeu 1174038143.78363 "TrackMovedEvent Flight=1046 CallSign=ISS2147 Ssr=4044 Sector=VR Layers=S X=172.36 Y=-339.17 Vx=-107 Vy=-492 Afl=370 Rate=0 Heading=192 GroundSpeed=504 Tendency=0 Time=06:28:04"
Rejeu 1174038143.78583 "TrackMovedEvent Flight=1146 CallSign=AZA05U Ssr=5554 Sector=E1 Layers=U,S X=300.11 Y=-208.16 Vx=309 Vy=278 Afl=360 Rate=0 Heading=48 GroundSpeed=416 Tendency=0 Time=06:28:04"
Rejeu 1174038143.78779 "TrackMovedEvent Flight=1153 CallSign=AZA200 Ssr=4065 Sector=K2 Layers=U,S X=444.20 Y=-227.47 Vx=-370 Vy=268 Afl=297 Rate=718 Heading=306 GroundSpeed=457 Tendency=1 Time=06:28:04"
Rejeu 1174038143.78982 "TrackMovedEvent Flight=1168 CallSign=DAL82 Ssr=6427 Sector=NN Layers=F X=285.44 Y=-202.63 Vx=257 Vy=-184 Afl=110 Rate=-1212 Heading=126 GroundSpeed=316 Tendency=-1 Time=06:28:04"
Rejeu 1174038143.79185 "TrackMovedEvent Flight=1188 CallSign=SMX5046 Ssr=4056 Sector=M3 Layers=S X=241.91 Y=-219.69 Vx=-337 Vy=-303 Afl=370 Rate=0 Heading=228 GroundSpeed=453 Tendency=0 Time=06:28:04"
Rejeu 1174038143.79385 "TrackMovedEvent Flight=1256 CallSign=SYR419 Ssr=4054 Sector=DL Layers=S X=264.72 Y=-415.16 Vx=-455 Vy=-59 Afl=330 Rate=0 Heading=263 GroundSpeed=459 Tendency=0 Time=06:28:04"
Rejeu 1174038143.79589 "TrackMovedEvent Flight=1258 CallSign=SEU532 Ssr=5674 Sector=D1 Layers=U,S X=293.02 Y=-296.41 Vx=392 Vy=-306 Afl=325 Rate=715 Heading=128 GroundSpeed=497 Tendency=1 Time=06:28:04"
Rejeu 1174038143.79781 "TrackMovedEvent Flight=1329 CallSign=VLE5078 Ssr=4052 Sector=M2 Layers=S X=183.17 Y=-275.11 Vx=-252 Vy=-427 Afl=350 Rate=0 Heading=211 GroundSpeed=496 Tendency=0 Time=06:28:04"
Rejeu 1174038143.79977 "TrackMovedEvent Flight=1338 CallSign=OHY7453 Ssr=7301 Sector=B2 Layers=S X=317.98 Y=-177.75 Vx=-333 Vy=193 Afl=340 Rate=0 Heading=300 GroundSpeed=385 Tendency=0 Time=06:28:04"
Rejeu 1174038143.80181 "TrackMovedEvent Flight=1362 CallSign=OHY993 Ssr=7310 Sector=K3 Layers=S X=427.11 Y=-216.06 Vx=-412 Vy=158 Afl=360 Rate=0 Heading=291 GroundSpeed=441 Tendency=0 Time=06:28:04"
Rejeu 1174038143.80378 "TrackMovedEvent Flight=1370 CallSign=BER1885 Ssr=5316 Sector=F3 Layers=S X=243.13 Y=-252.95 Vx=173 Vy=370 Afl=380 Rate=0 Heading=25 GroundSpeed=408 Tendency=0 Time=06:28:04"
Rejeu 1174038143.80593 "TrackMovedEvent Flight=1416 CallSign=TOM742P Ssr=5327 Sector=-- Layers=U,S X=167.47 Y=-391.59 Vx=223 Vy=428 Afl=305 Rate=1544 Heading=28 GroundSpeed=483 Tendency=1 Time=06:28:04"
Rejeu 1174038143.808 "TrackMovedEvent Flight=1475 CallSign=BER6109 Ssr=5315 Sector=PA Layers=F,S X=201.17 Y=-416.09 Vx=265 Vy=101 Afl=53 Rate=2745 Heading=69 GroundSpeed=284 Tendency=1 Time=06:28:04"
Rejeu 1174038143.80995 "TrackMovedEvent Flight=1654 CallSign=LTE420 Ssr=5503 Sector=O4 Layers=S X=276.31 Y=-73.14 Vx=-112 Vy=389 Afl=380 Rate=0 Heading=344 GroundSpeed=405 Tendency=0 Time=06:28:04"
Rejeu 1174038143.812 "TrackMovedEvent Flight=1683 CallSign=JKK021 Ssr=5520 Sector=F2 Layers=S X=228.13 Y=-275.42 Vx=180 Vy=348 Afl=340 Rate=0 Heading=27 GroundSpeed=392 Tendency=0 Time=06:28:04"
Rejeu 1174038143.814 "TrackMovedEvent Flight=1707 CallSign=JKK045 Ssr=5325 Sector=EN Layers=S X=187.02 Y=-378.02 Vx=129 Vy=377 Afl=340 Rate=0 Heading=19 GroundSpeed=398 Tendency=0 Time=06:28:04"
Rejeu 1174038143.8164 "TrackMovedEvent Flight=1790 CallSign=AEA1063 Ssr=1042 Sector=W3 Layers=S X=155.23 Y=-128.72 Vx=370 Vy=228 Afl=380 Rate=0 Heading=58 GroundSpeed=435 Tendency=0 Time=06:28:04"
Rejeu 1174038143.81849 "TrackMovedEvent Flight=1864 CallSign=SWR1940 Ssr=5745 Sector=IG Layers=F,U X=249.30 Y=-58.03 Vx=24 Vy=-257 Afl=133 Rate=1735 Heading=175 GroundSpeed=258 Tendency=1 Time=06:28:04"
Rejeu 1174038143.82117 "TrackMovedEvent Flight=1876 CallSign=HLX332Z Ssr=1103 Sector=VR Layers=S X=167.28 Y=-344.56 Vx=-115 Vy=-468 Afl=356 Rate=-3135 Heading=194 GroundSpeed=482 Tendency=-1 Time=06:28:04"
Rejeu 1174038143.82322 "TrackMovedEvent Flight=2097 CallSign=KLM1263 Ssr=0163 Sector=W2 Layers=S X=174.42 Y=-103.89 Vx=329 Vy=-347 Afl=350 Rate=0 Heading=137 GroundSpeed=478 Tendency=0 Time=06:28:04"
Rejeu 1174038143.8253 "TrackMovedEvent Flight=2132 CallSign=GWI594 Ssr=2566 Sector=M3 Layers=S X=191.64 Y=-255.73 Vx=-214 Vy=-439 Afl=370 Rate=0 Heading=206 GroundSpeed=488 Tendency=0 Time=06:28:04"
Rejeu 1174038143.82729 "TrackMovedEvent Flight=2220 CallSign=CSA6720 Ssr=6621 Sector=T3 Layers=S X=136.00 Y=-113.95 Vx=-364 Vy=-269 Afl=350 Rate=0 Heading=234 GroundSpeed=453 Tendency=0 Time=06:28:04"
Rejeu 1174038143.82938 "TrackMovedEvent Flight=2255 CallSign=NRD751 Ssr=5502 Sector=-- Layers=U,S X=195.98 Y=-409.75 Vx=55 Vy=386 Afl=320 Rate=1205 Heading=8 GroundSpeed=390 Tendency=1 Time=06:28:04"
Rejeu 1174038143.83155 "TrackMovedEvent Flight=2405 CallSign=DLH54W Ssr=5355 Sector=B1 Layers=U X=264.23 Y=-174.41 Vx=192 Vy=401 Afl=300 Rate=0 Heading=26 GroundSpeed=445 Tendency=0 Time=06:28:04"
Rejeu 1174038143.83374 "TrackMovedEvent Flight=2408 CallSign=JKK2735 Ssr=5577 Sector=F2 Layers=U,S X=187.61 Y=-319.25 Vx=405 Vy=168 Afl=300 Rate=0 Heading=67 GroundSpeed=438 Tendency=0 Time=06:28:04"
Rejeu 1174038143.83582 "TrackMovedEvent Flight=2431 CallSign=CSA6662 Ssr=6624 Sector=G2 Layers=S X=209.70 Y=-55.70 Vx=-317 Vy=-285 Afl=350 Rate=0 Heading=228 GroundSpeed=426 Tendency=0 Time=06:28:04"
Rejeu 1174038143.83804 "TrackMovedEvent Flight=2581 CallSign=CSA6746 Ssr=6622 Sector=T3 Layers=S X=181.88 Y=-82.33 Vx=-323 Vy=-263 Afl=350 Rate=0 Heading=231 GroundSpeed=417 Tendency=0 Time=06:28:04"
Rejeu 1174038143.84041 "TrackMovedEvent Flight=2691 CallSign=AFR4370 Ssr=7621 Sector=F2 Layers=S X=265.72 Y=-274.78 Vx=391 Vy=-313 Afl=350 Rate=0 Heading=129 GroundSpeed=501 Tendency=0 Time=06:28:04"
Rejeu 1174038143.84264 "TrackMovedEvent Flight=3140 CallSign=DLH83N Ssr=0123 Sector=4K Layers=S X=270.23 Y=-34.83 Vx=-174 Vy=-436 Afl=350 Rate=0 Heading=202 GroundSpeed=469 Tendency=0 Time=06:28:04"
Rejeu 1174038143.84512 "TrackMovedEvent Flight=3146 CallSign=SWT364 Ssr=5364 Sector=F2 Layers=S X=259.08 Y=-247.81 Vx=280 Vy=298 Afl=340 Rate=0 Heading=43 GroundSpeed=409 Tendency=0 Time=06:28:04"
Rejeu 1174038143.84744 "TrackMovedEvent Flight=3198 CallSign=AZA9106 Ssr=4062 Sector=B2 Layers=U,S X=275.36 Y=-194.09 Vx=-430 Vy=-256 Afl=310 Rate=0 Heading=239 GroundSpeed=500 Tendency=0 Time=06:28:04"
Rejeu 1174038143.84958 "TrackMovedEvent Flight=3342 CallSign=JKK4731 Ssr=5320 Sector=K1 Layers=U,S X=342.20 Y=-280.00 Vx=195 Vy=335 Afl=320 Rate=0 Heading=30 GroundSpeed=388 Tendency=0 Time=06:28:04"
Rejeu 1174038143.85173 "TrackMovedEvent Flight=3412 CallSign=DLH42X Ssr=7522 Sector=GV Layers=U X=298.91 Y=21.28 Vx=-317 Vy=-283 Afl=310 Rate=0 Heading=228 GroundSpeed=425 Tendency=0 Time=06:28:04"
Rejeu 1174038143.85439 "TrackMovedEvent Flight=3499 CallSign=JKK4519 Ssr=5501 Sector=F1 Layers=U,S X=238.44 Y=-287.14 Vx=243 Vy=330 Afl=321 Rate=0 Heading=36 GroundSpeed=410 Tendency=0 Time=06:28:04"
Rejeu 1174038143.85665 "TrackMovedEvent Flight=3557 CallSign=HLF168 Ssr=5311 Sector=B3 Layers=S X=272.41 Y=-163.19 Vx=150 Vy=372 Afl=378 Rate=-955 Heading=22 GroundSpeed=401 Tendency=-1 Time=06:28:04"
Rejeu 1174038143.8588 "TrackMovedEvent Flight=3620 CallSign=EZY4911 Ssr=2525 Sector=M3 Layers=S X=184.50 Y=-271.86 Vx=-229 Vy=-434 Afl=390 Rate=0 Heading=208 GroundSpeed=491 Tendency=0 Time=06:28:04"
Rejeu 1174038143.86097 "TrackMovedEvent Flight=3663 CallSign=JKK4713 Ssr=5526 Sector=E1 Layers=U,S X=269.89 Y=-242.30 Vx=237 Vy=324 Afl=340 Rate=0 Heading=36 GroundSpeed=401 Tendency=0 Time=06:28:04"
Rejeu 1174038143.86339 "TrackMovedEvent Flight=3691 CallSign=JKK4741 Ssr=5327 Sector=F2 Layers=U,S X=209.83 Y=-327.28 Vx=240 Vy=329 Afl=320 Rate=0 Heading=36 GroundSpeed=407 Tendency=0 Time=06:28:04"
Rejeu 1174038143.86536 "TrackMovedEvent Flight=3886 CallSign=TCV6334 Ssr=4060 Sector=M2 Layers=S X=240.73 Y=-216.91 Vx=-357 Vy=-338 Afl=350 Rate=0 Heading=227 GroundSpeed=492 Tendency=0 Time=06:28:04"
Rejeu 1174038143.86729 "TrackMovedEvent Flight=3926 CallSign=AFR4100 Ssr=3222 Sector=A2 Layers=S X=210.81 Y=-128.42 Vx=423 Vy=-253 Afl=350 Rate=0 Heading=121 GroundSpeed=493 Tendency=0 Time=06:28:04"
Rejeu 1174038143.86925 "TrackMovedEvent Flight=4117 CallSign=AEU437 Ssr=6350 Sector=E2 Layers=F,U X=318.50 Y=-194.16 Vx=462 Vy=-209 Afl=267 Rate=-1396 Heading=114 GroundSpeed=507 Tendency=-1 Time=06:28:04"
Rejeu 1174038143.8712 "TrackMovedEvent Flight=9302 CallSign=CLW706 Ssr=2330 Sector=H2 Layers=S X=104.00 Y=-160.95 Vx=346 Vy=223 Afl=340 Rate=0 Heading=57 GroundSpeed=412 Tendency=0 Time=06:28:04"
Rejeu 1174038143.87322 "TrackMovedEvent Flight=9436 CallSign=AFR174 Ssr=5615 Sector=H2 Layers=S X=91.02 Y=-184.39 Vx=319 Vy=305 Afl=340 Rate=0 Heading=46 GroundSpeed=441 Tendency=0 Time=06:28:04"
Rejeu 1174038143.87593 "TrackMovedEvent Flight=9631 CallSign=KLM588 Ssr=4055 Sector=D3 Layers=S X=246.02 Y=-420.00 Vx=-76 Vy=451 Afl=380 Rate=0 Heading=350 GroundSpeed=457 Tendency=0 Time=06:28:04"
Rejeu 1174038143.87829 "TrackMovedEvent Flight=9904 CallSign=BIE576A Ssr=7642 Sector=T2 Layers=S X=113.52 Y=-42.03 Vx=87 Vy=-494 Afl=329 Rate=395 Heading=170 GroundSpeed=502 Tendency=1 Time=06:28:04"
lanceur 1174038143.88095 "TcasCtrl FlightId=65535 Ctrl=TaRa"
autoassume:BORD:P2:CR 1174038143.88826 "PLN_POSITION:BORD:P2:2581 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=X2 PreviousSector=T2 Efl=350 Tfl=0 CoordPt=OLRAK"
autoassume:BORD:P2:CR 1174038143.89068 "PLN_POSITION:BORD:P2:2431 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=X2 PreviousSector=T2 Efl=350 Tfl=0 CoordPt=OLRAK"
autoassume:BORD:P2:CO 1174038143.89309 "PLN_POSITION:BORD:P2:2431 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=X2 PreviousSector=T2 Efl=350 Tfl=0 CoordPt=OLRAK"
GEODE:BORD:P2:CR 1174038143.89568 "PLN_POSITION:BORD:P2:2431 REQUEST_COORD From=GEODE:BORD:P2:CR"
autoassume:BORD:P2:CR 1174038144.00686 "PLN_POSITION:BORD:P2:2431 REPLY_COORD To=GEODE:BORD:P2:CR CoordState=MAE FreqState=NONE NextSector=X2 PreviousSector=T2 Efl=350 Tfl=0 CoordPt=OLRAK"
autoassume:BORD:P2:CO 1174038144.00982 "PLN_POSITION:BORD:P2:2431 REPLY_COORD To=GEODE:BORD:P2:CO CoordState=MAE FreqState=NONE NextSector=X2 PreviousSector=T2 Efl=350 Tfl=0 CoordPt=OLRAK"
GEODE:BORD:P2:CO 1174038144.0121 "PLN_POSITION:BORD:P2:2431 REQUEST_COORD From=GEODE:BORD:P2:CO"
RadarGL:bordeaux:IIPP1:PP1 1174038144.21974 "GetStrip MsgName=RadarGL_146 Flight=146 Sector=MI"
RadarGL:bordeaux:IIPP2:PP2 1174038144.22402 "GetStrip MsgName=RadarGL_146 Flight=146 Sector=MI"
RadarGL:bordeaux:IIPP2:PP2 1174038144.22846 "GetStrip MsgName=RadarGL_193 Flight=193 Sector=O2"
RadarGL:bordeaux:IIPP2:PP2 1174038144.23204 "GetStrip MsgName=RadarGL_219 Flight=219 Sector=K2"
RadarGL:bordeaux:IIPP2:PP2 1174038144.2358 "GetStrip MsgName=RadarGL_242 Flight=242 Sector=EN"
RadarGL:bordeaux:IIPP2:PP2 1174038144.24085 "GetStrip MsgName=RadarGL_253 Flight=253 Sector=F1"
Rejeu 1174038144.24491 "ClockEvent Time=06:28:05 Rate=1.0 Bs=0"
Rejeu 1174038144.24876 "RadarEndEvent"
Rejeu 1174038144.25257 "TrackMovedEvent Flight=146 CallSign=TAM8097 Ssr=7605 Sector=MI Layers=F,U X=287.59 Y=-81.06 Vx=451 Vy=-121 Afl=285 Rate=1926 Heading=105 GroundSpeed=467 Tendency=1 Time=06:28:05"
RadarGL:bordeaux:IIPP1:PP1 1174038144.25705 "GetStrip MsgName=RadarGL_193 Flight=193 Sector=O2"
RadarGL:bordeaux:IIPP1:PP1 1174038144.26083 "GetStrip MsgName=RadarGL_219 Flight=219 Sector=K2"
RadarGL:bordeaux:IIPP1:PP1 1174038144.26655 "GetStrip MsgName=RadarGL_242 Flight=242 Sector=EN"
RadarGL:bordeaux:IIPP1:PP1 1174038144.27046 "GetStrip MsgName=RadarGL_253 Flight=253 Sector=F1"
RadarGL:bordeaux:IIPP1:PP1 1174038144.27461 "GetStrip MsgName=RadarGL_294 Flight=294 Sector=KJ"
RadarGL:bordeaux:IIPP2:PP2 1174038144.27871 "GetStrip MsgName=RadarGL_294 Flight=294 Sector=KJ"
RadarGL:bordeaux:IIPP2:PP2 1174038144.28276 "GetStrip MsgName=RadarGL_308 Flight=308 Sector=F3"
RadarGL:bordeaux:IIPP2:PP2 1174038144.28867 "GetStrip MsgName=RadarGL_318 Flight=318 Sector=Y2"
RadarGL:bordeaux:IIPP2:PP2 1174038144.29291 "GetStrip MsgName=RadarGL_320 Flight=320 Sector=W1"
RadarGL:bordeaux:IIPP2:PP2 1174038144.29684 "GetStrip MsgName=RadarGL_374 Flight=374 Sector=A3"
RadarGL:bordeaux:IIPP2:PP2 1174038144.30092 "GetStrip MsgName=RadarGL_377 Flight=377 Sector=W2"
RadarGL:bordeaux:IIPP2:PP2 1174038144.30683 "GetStrip MsgName=RadarGL_387 Flight=387 Sector=EN"
RadarGL:bordeaux:IIPP2:PP2 1174038144.31081 "GetStrip MsgName=RadarGL_407 Flight=407 Sector=D3"
RadarGL:bordeaux:IIPP2:PP2 1174038144.3147 "GetStrip MsgName=RadarGL_420 Flight=420 Sector=T3"
RadarGL:bordeaux:IIPP2:PP2 1174038144.31863 "GetStrip MsgName=RadarGL_432 Flight=432 Sector=XA"
RadarGL:bordeaux:IIPP2:PP2 1174038144.3227 "GetStrip MsgName=RadarGL_446 Flight=446 Sector=UJ"
RadarGL:bordeaux:IIPP2:PP2 1174038144.32854 "GetStrip MsgName=RadarGL_448 Flight=448 Sector=T1"
RadarGL:bordeaux:IIPP2:PP2 1174038144.33237 "GetStrip MsgName=RadarGL_466 Flight=466 Sector=T3"
RadarGL:bordeaux:IIPP2:PP2 1174038144.33641 "GetStrip MsgName=RadarGL_507 Flight=507 Sector=MO"
RadarGL:bordeaux:IIPP2:PP2 1174038144.34051 "GetStrip MsgName=RadarGL_516 Flight=516 Sector=CT"
RadarGL:bordeaux:IIPP2:PP2 1174038144.34453 "GetStrip MsgName=RadarGL_537 Flight=537 Sector=T2"
RadarGL:bordeaux:IIPP2:PP2 1174038144.35045 "GetStrip MsgName=RadarGL_557 Flight=557 Sector=D1"
RadarGL:bordeaux:IIPP2:PP2 1174038144.35469 "GetStrip MsgName=RadarGL_583 Flight=583 Sector=O4"
RadarGL:bordeaux:IIPP2:PP2 1174038144.3589 "GetStrip MsgName=RadarGL_590 Flight=590 Sector=DL"
RadarGL:bordeaux:IIPP2:PP2 1174038144.36289 "GetStrip MsgName=RadarGL_591 Flight=591 Sector=D1"
RadarGL:bordeaux:IIPP2:PP2 1174038144.36691 "GetStrip MsgName=RadarGL_594 Flight=594 Sector=G2"
RadarGL:bordeaux:IIPP2:PP2 1174038144.37304 "GetStrip MsgName=RadarGL_598 Flight=598 Sector=M1"
RadarGL:bordeaux:IIPP2:PP2 1174038144.37771 "GetStrip MsgName=RadarGL_602 Flight=602 Sector=DH"
RadarGL:bordeaux:IIPP2:PP2 1174038144.38046 "GetStrip MsgName=RadarGL_623 Flight=623 Sector=G3"
RadarGL:bordeaux:IIPP2:PP2 1174038144.3832 "GetStrip MsgName=RadarGL_657 Flight=657 Sector=F2"
RadarGL:bordeaux:IIPP2:PP2 1174038144.38577 "GetStrip MsgName=RadarGL_663 Flight=663 Sector=MO"
RadarGL:bordeaux:IIPP2:PP2 1174038144.38854 "GetStrip MsgName=RadarGL_667 Flight=667 Sector=P1"
RadarGL:bordeaux:IIPP2:PP2 1174038144.39195 "GetStrip MsgName=RadarGL_675 Flight=675 Sector=KJ"
RadarGL:bordeaux:IIPP2:PP2 1174038144.39478 "GetStrip MsgName=RadarGL_688 Flight=688 Sector=AW"
Rejeu 1174038144.39791 "TrackMovedEvent Flight=193 CallSign=GZA5361 Ssr=3140 Sector=O2 Layers=S X=286.88 Y=-52.14 Vx=78 Vy=-438 Afl=370 Rate=0 Heading=170 GroundSpeed=445 Tendency=0 Time=06:28:05"
Rejeu 1174038144.40068 "TrackMovedEvent Flight=219 CallSign=RAE1510 Ssr=5670 Sector=K2 Layers=F,U,S X=359.00 Y=-248.52 Vx=254 Vy=-438 Afl=350 Rate=0 Heading=150 GroundSpeed=506 Tendency=0 Time=06:28:05"
Rejeu 1174038144.40329 "TrackMovedEvent Flight=242 CallSign=CFG855 Ssr=5504 Sector=EN Layers=U,S X=204.47 Y=-337.59 Vx=82 Vy=405 Afl=340 Rate=0 Heading=11 GroundSpeed=413 Tendency=0 Time=06:28:05"
Rejeu 1174038144.40599 "TrackMovedEvent Flight=253 CallSign=VLG5040 Ssr=5566 Sector=F1 Layers=U,S X=229.09 Y=-287.45 Vx=266 Vy=318 Afl=340 Rate=0 Heading=40 GroundSpeed=415 Tendency=0 Time=06:28:05"
Rejeu 1174038144.40858 "TrackMovedEvent Flight=294 CallSign=BZ699WF Ssr=1763 Sector=KJ Layers=F X=381.63 Y=-282.64 Vx=226 Vy=-164 Afl=46 Rate=-877 Heading=126 GroundSpeed=279 Tendency=-1 Time=06:28:05"
Rejeu 1174038144.41182 "TrackMovedEvent Flight=308 CallSign=BER3999 Ssr=5505 Sector=F3 Layers=S X=223.33 Y=-295.33 Vx=173 Vy=359 Afl=380 Rate=0 Heading=26 GroundSpeed=399 Tendency=0 Time=06:28:05"
Rejeu 1174038144.41449 "TrackMovedEvent Flight=318 CallSign=BPA1602 Ssr=2363 Sector=Y2 Layers=U X=272.16 Y=-102.05 Vx=471 Vy=-144 Afl=270 Rate=0 Heading=107 GroundSpeed=493 Tendency=0 Time=06:28:05"
Rejeu 1174038144.41686 "TrackMovedEvent Flight=320 CallSign=BAW2362 Ssr=6363 Sector=W1 Layers=F,U X=193.59 Y=-130.66 Vx=365 Vy=-311 Afl=278 Rate=-1020 Heading=130 GroundSpeed=480 Tendency=-1 Time=06:28:05"
Rejeu 1174038144.41923 "TrackMovedEvent Flight=374 CallSign=AEU241 Ssr=6334 Sector=A3 Layers=S X=199.16 Y=-123.81 Vx=424 Vy=-247 Afl=370 Rate=0 Heading=120 GroundSpeed=491 Tendency=0 Time=06:28:05"
Rejeu 1174038144.42159 "TrackMovedEvent Flight=375 CallSign=AF660KU Ssr=3213 Sector=-- Layers=F X=227.13 Y=-194.84 Vx=91 Vy=-249 Afl=35 Rate=-1020 Heading=160 GroundSpeed=265 Tendency=-1 Time=06:28:05"
Rejeu 1174038144.42408 "TrackMovedEvent Flight=377 CallSign=AF700YH Ssr=3211 Sector=W2 Layers=S X=166.20 Y=-98.42 Vx=365 Vy=-368 Afl=330 Rate=0 Heading=135 GroundSpeed=518 Tendency=0 Time=06:28:05"
Rejeu 1174038144.42658 "TrackMovedEvent Flight=387 CallSign=BER9143 Ssr=5310 Sector=EN Layers=S X=192.39 Y=-362.41 Vx=124 Vy=377 Afl=380 Rate=0 Heading=18 GroundSpeed=397 Tendency=0 Time=06:28:05"
Rejeu 1174038144.42894 "TrackMovedEvent Flight=407 CallSign=LGL931 Ssr=5656 Sector=D3 Layers=S X=367.78 Y=-328.27 Vx=238 Vy=-406 Afl=390 Rate=0 Heading=150 GroundSpeed=471 Tendency=0 Time=06:28:05"
Rejeu 1174038144.43168 "TrackMovedEvent Flight=412 CallSign=VLG5326 Ssr=5301 Sector=-- Layers=S X=179.59 Y=-387.00 Vx=148 Vy=369 Afl=360 Rate=0 Heading=22 GroundSpeed=398 Tendency=0 Time=06:28:05"
Rejeu 1174038144.43425 "TrackMovedEvent Flight=420 CallSign=EZY5063 Ssr=6327 Sector=T3 Layers=S X=142.41 Y=-59.19 Vx=186 Vy=-468 Afl=370 Rate=0 Heading=158 GroundSpeed=504 Tendency=0 Time=06:28:05"
Rejeu 1174038144.43659 "TrackMovedEvent Flight=432 CallSign=ANS8175 Ssr=6736 Sector=XA Layers=U X=156.69 Y=-297.19 Vx=-317 Vy=-333 Afl=211 Rate=-1044 Heading=224 GroundSpeed=460 Tendency=-1 Time=06:28:05"
Rejeu 1174038144.43888 "TrackMovedEvent Flight=446 CallSign=AF711HI Ssr=6410 Sector=UJ Layers=U X=180.95 Y=23.91 Vx=-229 Vy=381 Afl=280 Rate=0 Heading=329 GroundSpeed=445 Tendency=0 Time=06:28:05"
Rejeu 1174038144.44131 "TrackMovedEvent Flight=448 CallSign=AF688ZA Ssr=3210 Sector=T1 Layers=F,U X=130.44 Y=-113.56 Vx=74 Vy=-467 Afl=310 Rate=0 Heading=171 GroundSpeed=473 Tendency=0 Time=06:28:05"
Rejeu 1174038144.44372 "TrackMovedEvent Flight=466 CallSign=BZ809KX Ssr=3212 Sector=T3 Layers=S X=160.17 Y=-62.39 Vx=282 Vy=-386 Afl=350 Rate=0 Heading=144 GroundSpeed=478 Tendency=0 Time=06:28:05"
Rejeu 1174038144.44591 "TrackMovedEvent Flight=471 CallSign=ANS8753 Ssr=4015 Sector=-- Layers=S X=168.09 Y=-287.41 Vx=-404 Vy=-153 Afl=330 Rate=0 Heading=249 GroundSpeed=432 Tendency=0 Time=06:28:05"
Rejeu 1174038144.44813 "TrackMovedEvent Flight=507 CallSign=AF006JS Ssr=3223 Sector=MO Layers=F X=215.34 Y=-166.91 Vx=180 Vy=-407 Afl=165 Rate=-3326 Heading=156 GroundSpeed=445 Tendency=-1 Time=06:28:05"
Rejeu 1174038144.45034 "TrackMovedEvent Flight=516 CallSign=EZY4331 Ssr=4050 Sector=CT Layers=S X=166.75 Y=-286.89 Vx=-327 Vy=-343 Afl=370 Rate=0 Heading=224 GroundSpeed=474 Tendency=0 Time=06:28:05"
Rejeu 1174038144.45325 "TrackMovedEvent Flight=537 CallSign=AF534BH Ssr=3226 Sector=T2 Layers=S X=135.88 Y=-34.53 Vx=170 Vy=-493 Afl=323 Rate=1384 Heading=161 GroundSpeed=521 Tendency=1 Time=06:28:05"
Rejeu 1174038144.4557 "TrackMovedEvent Flight=557 CallSign=ACL670 Ssr=4051 Sector=D1 Layers=U,S X=255.73 Y=-345.97 Vx=-321 Vy=-361 Afl=330 Rate=0 Heading=222 GroundSpeed=483 Tendency=0 Time=06:28:05"
Rejeu 1174038144.45803 "TrackMovedEvent Flight=583 CallSign=IVE201A Ssr=1003 Sector=O4 Layers=S X=238.19 Y=-73.75 Vx=391 Vy=232 Afl=381 Rate=0 Heading=59 GroundSpeed=455 Tendency=0 Time=06:28:05"
Rejeu 1174038144.46037 "TrackMovedEvent Flight=590 CallSign=ADH8146 Ssr=4055 Sector=DL Layers=U X=250.47 Y=-406.53 Vx=-453 Vy=-145 Afl=310 Rate=0 Heading=252 GroundSpeed=476 Tendency=0 Time=06:28:05"
Rejeu 1174038144.46266 "TrackMovedEvent Flight=591 CallSign=ADH8600 Ssr=4053 Sector=D1 Layers=U,S X=249.92 Y=-397.17 Vx=-447 Vy=-140 Afl=321 Rate=-2046 Heading=253 GroundSpeed=468 Tendency=-1 Time=06:28:05"
Rejeu 1174038144.46487 "TrackMovedEvent Flight=594 CallSign=KAJ7166 Ssr=6420 Sector=G2 Layers=U,S X=223.73 Y=-55.95 Vx=-230 Vy=331 Afl=320 Rate=0 Heading=325 GroundSpeed=403 Tendency=0 Time=06:28:05"
Rejeu 1174038144.46715 "TrackMovedEvent Flight=598 CallSign=ISG2370 Ssr=4046 Sector=M1 Layers=U X=179.72 Y=-281.45 Vx=-217 Vy=-370 Afl=269 Rate=0 Heading=210 GroundSpeed=429 Tendency=0 Time=06:28:05"
Rejeu 1174038144.46941 "TrackMovedEvent Flight=602 CallSign=TAR7436 Ssr=6426 Sector=DH Layers=S X=284.59 Y=-348.84 Vx=-237 Vy=324 Afl=340 Rate=0 Heading=324 GroundSpeed=401 Tendency=0 Time=06:28:05"
Rejeu 1174038144.47179 "TrackMovedEvent Flight=623 CallSign=KAJ7530 Ssr=6421 Sector=G3 Layers=U,S X=236.00 Y=-73.14 Vx=-221 Vy=317 Afl=359 Rate=0 Heading=325 GroundSpeed=386 Tendency=0 Time=06:28:05"
Rejeu 1174038144.47481 "TrackMovedEvent Flight=657 CallSign=TAR4010 Ssr=4754 Sector=F2 Layers=S X=249.55 Y=-260.94 Vx=-125 Vy=389 Afl=340 Rate=0 Heading=342 GroundSpeed=409 Tendency=0 Time=06:28:05"
Rejeu 1174038144.47706 "TrackMovedEvent Flight=663 CallSign=AF673KB Ssr=7302 Sector=MO Layers=U,S X=196.05 Y=-154.13 Vx=-142 Vy=354 Afl=245 Rate=591 Heading=338 GroundSpeed=381 Tendency=1 Time=06:28:05"
Rejeu 1174038144.47929 "TrackMovedEvent Flight=667 CallSign=AF202TC Ssr=3227 Sector=P1 Layers=U,S X=126.64 Y=-7.03 Vx=174 Vy=-497 Afl=330 Rate=0 Heading=161 GroundSpeed=527 Tendency=0 Time=06:28:05"
Rejeu 1174038144.48158 "TrackMovedEvent Flight=675 CallSign=CC101GM Ssr=0642 Sector=KJ Layers=F X=355.41 Y=-245.20 Vx=171 Vy=-230 Afl=130 Rate=0 Heading=143 GroundSpeed=287 Tendency=0 Time=06:28:05"
Rejeu 1174038144.48385 "TrackMovedEvent Flight=680 CallSign=ONG001 Ssr=4040 Sector=-- Layers=U X=281.73 Y=-73.13 Vx=-105 Vy=392 Afl=203 Rate=-1088 Heading=345 GroundSpeed=406 Tendency=-1 Time=06:28:05"
Rejeu 1174038144.48614 "TrackMovedEvent Flight=688 CallSign=N224MV Ssr=2311 Sector=AW Layers=F X=70.05 Y=-198.41 Vx=184 Vy=-2 Afl=95 Rate=416 Heading=91 GroundSpeed=184 Tendency=1 Time=06:28:05"
Rejeu 1174038144.48839 "TrackMovedEvent Flight=689 CallSign=BAW341 Ssr=6754 Sector=ND Layers=F,U X=320.06 Y=-189.94 Vx=139 Vy=-219 Afl=44 Rate=3072 Heading=148 GroundSpeed=259 Tendency=1 Time=06:28:05"
Rejeu 1174038144.49071 "TrackMovedEvent Flight=698 CallSign=ACL770 Ssr=4047 Sector=D1 Layers=U X=232.72 Y=-371.67 Vx=-315 Vy=-339 Afl=249 Rate=-1377 Heading=223 GroundSpeed=463 Tendency=-1 Time=06:28:05"
Rejeu 1174038144.49295 "TrackMovedEvent Flight=703 CallSign=AF203GP Ssr=6424 Sector=B1 Layers=F,U X=324.81 Y=-180.17 Vx=-131 Vy=267 Afl=110 Rate=1702 Heading=334 GroundSpeed=297 Tendency=1 Time=06:28:05"
Rejeu 1174038144.49592 "TrackMovedEvent Flight=704 CallSign=AF675SW Ssr=7305 Sector=S  Layers=U X=151.05 Y=-2.31 Vx=38 Vy=400 Afl=240 Rate=0 Heading=5 GroundSpeed=402 Tendency=0 Time=06:28:05"
Rejeu 1174038144.49824 "TrackMovedEvent Flight=706 CallSign=TAR7508 Ssr=6425 Sector=M2 Layers=S X=204.14 Y=-243.05 Vx=-367 Vy=181 Afl=340 Rate=0 Heading=296 GroundSpeed=409 Tendency=0 Time=06:28:05"
Rejeu 1174038144.50055 "TrackMovedEvent Flight=707 CallSign=ANS8623 Ssr=4045 Sector=XA Layers=U X=166.14 Y=-288.64 Vx=-367 Vy=-265 Afl=243 Rate=-1236 Heading=234 GroundSpeed=453 Tendency=-1 Time=06:28:05"
Rejeu 1174038144.50274 "TrackMovedEvent Flight=744 CallSign=CC201WB Ssr=0644 Sector=NN Layers=F X=344.45 Y=-206.41 Vx=229 Vy=-109 Afl=130 Rate=0 Heading=115 GroundSpeed=254 Tendency=0 Time=06:28:05"
Rejeu 1174038144.50494 "TrackMovedEvent Flight=755 CallSign=KAJ7122 Ssr=6423 Sector=Y2 Layers=U,S X=281.06 Y=-126.73 Vx=-232 Vy=305 Afl=320 Rate=0 Heading=323 GroundSpeed=383 Tendency=0 Time=06:28:05"
Rejeu 1174038144.50729 "TrackMovedEvent Flight=762 CallSign=RYR4822 Ssr=5675 Sector=RO Layers=F,U X=395.50 Y=-299.70 Vx=70 Vy=-397 Afl=199 Rate=-2156 Heading=170 GroundSpeed=403 Tendency=-1 Time=06:28:05"
Rejeu 1174038144.50952 "TrackMovedEvent Flight=765 CallSign=TAR4072 Ssr=7306 Sector=RO Layers=S X=378.09 Y=-320.58 Vx=-159 Vy=373 Afl=339 Rate=0 Heading=337 GroundSpeed=405 Tendency=0 Time=06:28:05"
Rejeu 1174038144.5118 "TrackMovedEvent Flight=777 CallSign=ISS292 Ssr=5663 Sector=-- Layers=U X=359.50 Y=-146.05 Vx=102 Vy=-466 Afl=241 Rate=1834 Heading=168 GroundSpeed=477 Tendency=1 Time=06:28:05"
Rejeu 1174038144.51412 "TrackMovedEvent Flight=780 CallSign=CFG423 Ssr=5305 Sector=F3 Layers=S X=240.16 Y=-247.08 Vx=156 Vy=378 Afl=360 Rate=0 Heading=22 GroundSpeed=409 Tendency=0 Time=06:28:05"
Rejeu 1174038144.51707 "TrackMovedEvent Flight=792 CallSign=EAB515 Ssr=7511 Sector=Y1 Layers=U X=238.30 Y=-84.41 Vx=-196 Vy=-312 Afl=290 Rate=0 Heading=212 GroundSpeed=368 Tendency=0 Time=06:28:05"
Rejeu 1174038144.51929 "TrackMovedEvent Flight=797 CallSign=IBE3475 Ssr=3015 Sector=G2 Layers=S X=223.05 Y=-46.55 Vx=-379 Vy=-201 Afl=344 Rate=941 Heading=242 GroundSpeed=429 Tendency=1 Time=06:28:05"
Rejeu 1174038144.52149 "TrackMovedEvent Flight=800 CallSign=ISS8230 Ssr=5673 Sector=3K Layers=S X=293.66 Y=16.47 Vx=-275 Vy=-353 Afl=351 Rate=0 Heading=218 GroundSpeed=447 Tendency=0 Time=06:28:05"
Rejeu 1174038144.52377 "TrackMovedEvent Flight=811 CallSign=BER4117 Ssr=5332 Sector=F3 Layers=S X=229.63 Y=-272.67 Vx=189 Vy=360 Afl=380 Rate=0 Heading=28 GroundSpeed=407 Tendency=0 Time=06:28:05"
Rejeu 1174038144.526 "TrackMovedEvent Flight=812 CallSign=BZ668JQ Ssr=7311 Sector=AJ Layers=F,U,S X=383.66 Y=-294.97 Vx=-262 Vy=-63 Afl=60 Rate=2648 Heading=256 GroundSpeed=269 Tendency=1 Time=06:28:05"
Rejeu 1174038144.52826 "TrackMovedEvent Flight=815 CallSign=EDW270 Ssr=3005 Sector=-- Layers=U,S X=277.45 Y=-10.55 Vx=-327 Vy=-358 Afl=258 Rate=1410 Heading=222 GroundSpeed=485 Tendency=1 Time=06:28:05"
Rejeu 1174038144.5304 "TrackMovedEvent Flight=819 CallSign=AEE4152 Ssr=5752 Sector=UG Layers=F,U X=307.44 Y=-96.66 Vx=-370 Vy=156 Afl=288 Rate=-1874 Heading=293 GroundSpeed=402 Tendency=-1 Time=06:28:05"
Rejeu 1174038144.53256 "TrackMovedEvent Flight=820 CallSign=TAR8006 Ssr=5662 Sector=RO Layers=S X=424.16 Y=-379.31 Vx=-134 Vy=393 Afl=360 Rate=0 Heading=341 GroundSpeed=415 Tendency=0 Time=06:28:05"
Rejeu 1174038144.53489 "TrackMovedEvent Flight=822 CallSign=EZY4515 Ssr=3106 Sector=Y3 Layers=S X=256.73 Y=-83.19 Vx=-105 Vy=-462 Afl=370 Rate=0 Heading=193 GroundSpeed=474 Tendency=0 Time=06:28:05"
Rejeu 1174038144.53833 "TrackMovedEvent Flight=825 CallSign=ESK5CP Ssr=0646 Sector=NN Layers=F X=332.50 Y=-171.59 Vx=-95 Vy=-345 Afl=144 Rate=-1273 Heading=195 GroundSpeed=358 Tendency=-1 Time=06:28:05"
Rejeu 1174038144.54084 "TrackMovedEvent Flight=827 CallSign=TAR7492 Ssr=7307 Sector=RO Layers=S X=410.33 Y=-339.09 Vx=-144 Vy=417 Afl=340 Rate=0 Heading=341 GroundSpeed=441 Tendency=0 Time=06:28:05"
Rejeu 1174038144.54314 "TrackMovedEvent Flight=830 CallSign=SNG960 Ssr=5524 Sector=E1 Layers=U,S X=324.30 Y=-187.27 Vx=310 Vy=283 Afl=344 Rate=-955 Heading=48 GroundSpeed=420 Tendency=-1 Time=06:28:05"
Rejeu 1174038144.54538 "TrackMovedEvent Flight=857 CallSign=BER2565 Ssr=5512 Sector=-- Layers=U,S X=204.91 Y=-349.89 Vx=52 Vy=411 Afl=288 Rate=1020 Heading=7 GroundSpeed=414 Tendency=1 Time=06:28:05"
Rejeu 1174038144.54759 "TrackMovedEvent Flight=873 CallSign=BER439V Ssr=5307 Sector=-- Layers=S X=187.23 Y=-393.88 Vx=104 Vy=371 Afl=374 Rate=1460 Heading=16 GroundSpeed=385 Tendency=1 Time=06:28:05"
Rejeu 1174038144.54986 "TrackMovedEvent Flight=879 CallSign=BER9235 Ssr=5334 Sector=EN Layers=S X=210.13 Y=-309.81 Vx=71 Vy=387 Afl=380 Rate=0 Heading=10 GroundSpeed=393 Tendency=0 Time=06:28:05"
Rejeu 1174038144.55208 "TrackMovedEvent Flight=889 CallSign=IBE4623 Ssr=4063 Sector=RO Layers=S X=398.58 Y=-348.09 Vx=-424 Vy=-86 Afl=330 Rate=0 Heading=259 GroundSpeed=433 Tendency=0 Time=06:28:05"
Rejeu 1174038144.55434 "TrackMovedEvent Flight=896 CallSign=JET390 Ssr=4061 Sector=DH Layers=U,S X=293.94 Y=-357.23 Vx=-459 Vy=34 Afl=350 Rate=0 Heading=274 GroundSpeed=460 Tendency=0 Time=06:28:05"
Rejeu 1174038144.55682 "TrackMovedEvent Flight=897 CallSign=ESK6DR Ssr=7251 Sector=RO Layers=S X=345.16 Y=-126.38 Vx=-225 Vy=-418 Afl=370 Rate=0 Heading=208 GroundSpeed=475 Tendency=0 Time=06:28:05"
Rejeu 1174038144.55976 "TrackMovedEvent Flight=900 CallSign=AHR626 Ssr=4057 Sector=DH Layers=S X=311.58 Y=-285.34 Vx=-302 Vy=-397 Afl=350 Rate=0 Heading=217 GroundSpeed=499 Tendency=0 Time=06:28:05"
Rejeu 1174038144.56205 "TrackMovedEvent Flight=926 CallSign=ABP550 Ssr=5573 Sector=XA Layers=U X=191.56 Y=-293.73 Vx=313 Vy=189 Afl=275 Rate=475 Heading=59 GroundSpeed=366 Tendency=1 Time=06:28:05"
Rejeu 1174038144.56428 "TrackMovedEvent Flight=994 CallSign=TAR6204 Ssr=7312 Sector=RO Layers=S X=409.63 Y=-412.50 Vx=-231 Vy=354 Afl=340 Rate=0 Heading=327 GroundSpeed=423 Tendency=0 Time=06:28:05"
Rejeu 1174038144.56654 "TrackMovedEvent Flight=1046 CallSign=ISS2147 Ssr=4044 Sector=VR Layers=S X=172.33 Y=-339.31 Vx=-106 Vy=-492 Afl=370 Rate=0 Heading=192 GroundSpeed=503 Tendency=0 Time=06:28:05"
Rejeu 1174038144.56881 "TrackMovedEvent Flight=1146 CallSign=AZA05U Ssr=5554 Sector=E1 Layers=U,S X=300.20 Y=-208.08 Vx=309 Vy=278 Afl=360 Rate=0 Heading=48 GroundSpeed=416 Tendency=0 Time=06:28:05"
Rejeu 1174038144.57111 "TrackMovedEvent Flight=1153 CallSign=AZA200 Ssr=4065 Sector=K2 Layers=U,S X=444.09 Y=-227.39 Vx=-369 Vy=269 Afl=297 Rate=688 Heading=306 GroundSpeed=457 Tendency=1 Time=06:28:05"
Rejeu 1174038144.57351 "TrackMovedEvent Flight=1168 CallSign=DAL82 Ssr=6427 Sector=NN Layers=F X=285.52 Y=-202.67 Vx=256 Vy=-184 Afl=110 Rate=-1204 Heading=126 GroundSpeed=315 Tendency=-1 Time=06:28:05"
Rejeu 1174038144.57577 "TrackMovedEvent Flight=1188 CallSign=SMX5046 Ssr=4056 Sector=M3 Layers=S X=241.81 Y=-219.77 Vx=-337 Vy=-303 Afl=370 Rate=0 Heading=228 GroundSpeed=453 Tendency=0 Time=06:28:05"
Rejeu 1174038144.57804 "TrackMovedEvent Flight=1256 CallSign=SYR419 Ssr=4054 Sector=DL Layers=S X=264.59 Y=-415.17 Vx=-455 Vy=-59 Afl=330 Rate=0 Heading=263 GroundSpeed=459 Tendency=0 Time=06:28:05"
Rejeu 1174038144.58109 "TrackMovedEvent Flight=1258 CallSign=SEU532 Ssr=5674 Sector=D1 Layers=U,S X=293.13 Y=-296.48 Vx=392 Vy=-306 Afl=325 Rate=715 Heading=128 GroundSpeed=497 Tendency=1 Time=06:28:05"
Rejeu 1174038144.58346 "TrackMovedEvent Flight=1329 CallSign=VLE5078 Ssr=4052 Sector=M2 Layers=S X=183.11 Y=-275.23 Vx=-251 Vy=-427 Afl=350 Rate=0 Heading=210 GroundSpeed=495 Tendency=0 Time=06:28:05"
Rejeu 1174038144.58579 "TrackMovedEvent Flight=1338 CallSign=OHY7453 Ssr=7301 Sector=B2 Layers=S X=317.89 Y=-177.69 Vx=-333 Vy=194 Afl=340 Rate=0 Heading=300 GroundSpeed=385 Tendency=0 Time=06:28:05"
Rejeu 1174038144.58803 "TrackMovedEvent Flight=1362 CallSign=OHY993 Ssr=7310 Sector=K3 Layers=S X=426.98 Y=-216.02 Vx=-412 Vy=157 Afl=360 Rate=0 Heading=291 GroundSpeed=441 Tendency=0 Time=06:28:05"
Rejeu 1174038144.59041 "TrackMovedEvent Flight=1370 CallSign=BER1885 Ssr=5316 Sector=F3 Layers=S X=243.17 Y=-252.86 Vx=173 Vy=370 Afl=380 Rate=0 Heading=25 GroundSpeed=408 Tendency=0 Time=06:28:05"
Rejeu 1174038144.5927 "TrackMovedEvent Flight=1416 CallSign=TOM742P Ssr=5327 Sector=-- Layers=U,S X=167.53 Y=-391.47 Vx=223 Vy=428 Afl=305 Rate=1566 Heading=28 GroundSpeed=483 Tendency=1 Time=06:28:05"
Rejeu 1174038144.59503 "TrackMovedEvent Flight=1475 CallSign=BER6109 Ssr=5315 Sector=PA Layers=F,S X=201.25 Y=-416.06 Vx=265 Vy=101 Afl=53 Rate=2730 Heading=69 GroundSpeed=284 Tendency=1 Time=06:28:05"
Rejeu 1174038144.59737 "TrackMovedEvent Flight=1654 CallSign=LTE420 Ssr=5503 Sector=O4 Layers=S X=276.28 Y=-73.02 Vx=-112 Vy=389 Afl=380 Rate=0 Heading=344 GroundSpeed=405 Tendency=0 Time=06:28:05"
Rejeu 1174038144.60014 "TrackMovedEvent Flight=1683 CallSign=JKK021 Ssr=5520 Sector=F2 Layers=S X=228.17 Y=-275.33 Vx=180 Vy=348 Afl=340 Rate=0 Heading=27 GroundSpeed=392 Tendency=0 Time=06:28:05"
Rejeu 1174038144.60287 "TrackMovedEvent Flight=1707 CallSign=JKK045 Ssr=5325 Sector=EN Layers=S X=187.05 Y=-377.91 Vx=129 Vy=377 Afl=340 Rate=0 Heading=19 GroundSpeed=398 Tendency=0 Time=06:28:05"
Rejeu 1174038144.60498 "TrackMovedEvent Flight=1790 CallSign=AEA1063 Ssr=1042 Sector=W3 Layers=S X=155.33 Y=-128.67 Vx=370 Vy=228 Afl=380 Rate=0 Heading=58 GroundSpeed=435 Tendency=0 Time=06:28:05"
Rejeu 1174038144.60719 "TrackMovedEvent Flight=1864 CallSign=SWR1940 Ssr=5745 Sector=IG Layers=F,U X=249.30 Y=-58.11 Vx=25 Vy=-258 Afl=134 Rate=1735 Heading=174 GroundSpeed=259 Tendency=1 Time=06:28:05"
Rejeu 1174038144.60928 "TrackMovedEvent Flight=1876 CallSign=HLX332Z Ssr=1103 Sector=VR Layers=S X=167.25 Y=-344.70 Vx=-115 Vy=-468 Afl=356 Rate=-3053 Heading=194 GroundSpeed=482 Tendency=-1 Time=06:28:05"
Rejeu 1174038144.61161 "TrackMovedEvent Flight=2097 CallSign=KLM1263 Ssr=0163 Sector=W2 Layers=S X=174.52 Y=-103.98 Vx=329 Vy=-346 Afl=350 Rate=0 Heading=136 GroundSpeed=477 Tendency=0 Time=06:28:05"
Rejeu 1174038144.61389 "TrackMovedEvent Flight=2132 CallSign=GWI594 Ssr=2566 Sector=M3 Layers=S X=191.58 Y=-255.86 Vx=-214 Vy=-439 Afl=370 Rate=0 Heading=206 GroundSpeed=488 Tendency=0 Time=06:28:05"
Rejeu 1174038144.61595 "TrackMovedEvent Flight=2220 CallSign=CSA6720 Ssr=6621 Sector=T3 Layers=S X=135.91 Y=-114.02 Vx=-364 Vy=-269 Afl=350 Rate=0 Heading=234 GroundSpeed=453 Tendency=0 Time=06:28:05"
Rejeu 1174038144.61809 "TrackMovedEvent Flight=2255 CallSign=NRD751 Ssr=5502 Sector=-- Layers=U,S X=196.00 Y=-409.64 Vx=56 Vy=386 Afl=320 Rate=1033 Heading=8 GroundSpeed=390 Tendency=1 Time=06:28:05"
Rejeu 1174038144.62017 "TrackMovedEvent Flight=2405 CallSign=DLH54W Ssr=5355 Sector=B1 Layers=U X=264.28 Y=-174.30 Vx=192 Vy=401 Afl=300 Rate=0 Heading=26 GroundSpeed=445 Tendency=0 Time=06:28:05"
Rejeu 1174038144.62361 "TrackMovedEvent Flight=2408 CallSign=JKK2735 Ssr=5577 Sector=F2 Layers=U,S X=187.72 Y=-319.20 Vx=405 Vy=168 Afl=300 Rate=0 Heading=67 GroundSpeed=438 Tendency=0 Time=06:28:05"
Rejeu 1174038144.62663 "TrackMovedEvent Flight=2431 CallSign=CSA6662 Ssr=6624 Sector=G2 Layers=S X=209.61 Y=-55.78 Vx=-317 Vy=-285 Afl=350 Rate=0 Heading=228 GroundSpeed=426 Tendency=0 Time=06:28:05"
Rejeu 1174038144.6289 "TrackMovedEvent Flight=2581 CallSign=CSA6746 Ssr=6622 Sector=T3 Layers=S X=181.78 Y=-82.39 Vx=-323 Vy=-263 Afl=350 Rate=0 Heading=231 GroundSpeed=417 Tendency=0 Time=06:28:05"
Rejeu 1174038144.63094 "TrackMovedEvent Flight=2691 CallSign=AFR4370 Ssr=7621 Sector=F2 Layers=S X=265.81 Y=-274.88 Vx=391 Vy=-313 Afl=350 Rate=0 Heading=129 GroundSpeed=501 Tendency=0 Time=06:28:05"
Rejeu 1174038144.63311 "TrackMovedEvent Flight=3140 CallSign=DLH83N Ssr=0123 Sector=4K Layers=S X=270.19 Y=-34.94 Vx=-174 Vy=-436 Afl=350 Rate=0 Heading=202 GroundSpeed=469 Tendency=0 Time=06:28:05"
Rejeu 1174038144.63527 "TrackMovedEvent Flight=3146 CallSign=SWT364 Ssr=5364 Sector=F2 Layers=S X=259.16 Y=-247.73 Vx=280 Vy=298 Afl=340 Rate=0 Heading=43 GroundSpeed=409 Tendency=0 Time=06:28:05"