forked from MSU-BOREALIS/Antenna_Tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
piruntimedata.txt
2574 lines (2561 loc) · 82.5 KB
/
piruntimedata.txt
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
yB'
Nn oe 3000ur' /vtyM0)TstgStre t@20-7- 760.42
T0WthgSraTakn curRT WthgSra
T 0acigSra
29 94)poosv
T 5WcigSra
0,40)pooae
o ieuae
T 0WtigSra
T acigSil
:3 aci eilRT3 Wci eilR:4 ahn ei
T4 acn eilRT50Wchn ra
T achgSrlRT:6 thnSra
T6 acigSrlRT ahn eilR:7 acn ra
aigPcr
:8 ahn ei
T 5WthnSra
52,94)pt ae
T 0acigei
(5 40)htsvdLo l dtdR:9WtigerlRT10WthgSra
T 0Wthn rlRT 0WthnSra
T 15acigei
T 2Wthn ra
T15acigSraRT 3 acigSraRT: 135 Watching Serial
RT: 140 WtigSraRT:15WthnSra
T 5 acigeraTain ctr
:15WtigSraRT:6 acigSrl(29 4 htsvdRT16WtigSra( 5 5 ht vdL ieuadRT 0WcigSra
T15Wcigei
T:8 thnSra
T 8 thn eilRT10aci eilR:15Wci erlRT 0 ahn eilRT 5WchnSri
T20WchgSilCoad:IA;!Sau e
R 15acn SraComn IG;!Stt etRT29WthgSraComn: ME-
tt etRT22WthgSraComn IG;!Stu etR:24acigeraComn: MG;!Stt enRT 2 thg raTaigiteRT 3 acngeilR:27WchgSea
Wthg eil( 52,14 htsvd( 60,4 ht ae
gfl pae
:27Wthn ra
T 5 ahn eilRT27WcigeilRT22Wci eilR:27WtigSra
T 2Wthn ei
T 7 aci ra
T 8Waci eilRT 7WcigSrlRT 2WtigSrlRT 9 acn eilRT: 30Wahn ri
akgPtr
:37Wci ei
T 1WthnSra
T37Wthn ea
52,14)ht vd( 5 40)pt ae
gfl pae
:32acigSilRT32Wtcn ra
:32Wthn raRT 3 thn ea
T 4 acn eilRT34WthnSra
T32Wthn ea
T 5 acn ei
T 6 tcn eilRT36Wtig ralR:32WtigeilRT 7WthigSilTaigPtrRT 8WtigSraRT 8Wthn ra
T 3WthgSra
9 94 ht ad( 0,5 ot vdLo i pae
T 9Wthn eilRT40 tci eilRT48WthgSilRT43acigeilRT48WthgSraRT 3Wahn ea
T 8Wci eiaRT:43WthgSra
T 3Wthn eilRT43WtigSraRT:48acigeraRT 4 acigSra
ai itr
:48Wthn ra
T 6 ahn SilRT 8WthgSra
29 44)pt ae
60,40 hosvdLofieuae
T 3Wthn ea
T48Wthn ea
T 8 acn eilRT 8WtigSrl
:43WcigSilRT49Wthn ea
T 0Wthn eilR:58WtinSrlRT51WthnSra
:58WtigSra
T 3WthnSra
omn IA;!
auSn
:57Wthn ra
omn: AE-
ttsStRT59aci ea
omn:IAE;!Sat e
T 0Wthn ei
omn: MG-
tt etR:50WcigeilTan itr
T 3 thn ea
mad MG;!TmSn eetRivdRT 7WcigSrlComd IG;!TeScRqetRcvdRT 7WcigSrlComd IG;!TieSn eetRivdRT57Wthn ea
omn: ME8
ieSnRqe eiv
T 3 aci eilComn: MG;!Ti SnReusRcee
:57WtigeilCma: MG8
ieScRqetRcvdRT 3WthnSra
mad IG;!Tm yceus eie
: 7WcigeilCmmd IA;!Ti Sync ReqetRceeRT 3Wahngei
omd AE8TimSnRqeteivdR:57WtigSrlCmad ME8
ieSn qetRcee
T 3WahngeilComn: MG;
i ycRqs cee
T 3 tcn SrlCmad IAE8TieScRus eivdRT 3 thn ea
omd IAE!TmeScRqe eee
T57WtigSraComd MG;!Time Syn eus ceeRT 3 aci eilCoan:IMG;
ieSnRqe eeeRT 3WtigSraComn IA;!Time Sync RequetRivdRT57WthgSraCoad IAE!TieSn eetRcveRT 7WthnSra
oad IAE8
m ycRqeteivdRT 3 thn ra
omn IAE8
ieSnRqs eedRT 3 aci eilComd MG;!TieSnReusRcedRT57 thn ra
oad IA;!TieycRqs eiv
T 3 aci eilCmad MG;!Tieyn eus eiv
T 3 thn ea
omn IAE8TieSn eus eee
T 7Wthn ea
omn IAE8
ieycReetRivdRT57WthgSraComd AE!TieSn ees eee
T 3 acngSia
oad IA;!TieSn RusteivdRT 7WthnSrlComn:IAE8
mSnceue eee
:57Wthn ra
omn: AE8
ieSn qet cedRT 3 ahn eilComn:IMG;
ieSnRqetRiv
T 3WthnSrlComad IA;!Tm y eqs eiedRT 3 aci eilCmad MG;!Tm yceus eee
T57Wthn ra
mad IAE8Tieyceusteie
T57Wthn ea
omd IAE!TieScRusRciv
T 3Wthn ea
omn: MG8
ieScRqs eie
T 3 acn ei
omd IA;!Tm yceus eee
T 3 ahn ra
oad IG;!Ti y eqs cee
: 7Wci eilComn: MG8
m yceus eie
T57WthnSra
ma: MG;
ieycRqeteiedRT 3 thn ea
omn IG;!Tm n eutRcedRT 7Wti ea
omd: AE8
ieSnRqetRceeRT 3 thn ra
omd IAE8
i ycRqeteiedRT53 tcigSraComd MG;!TieycRus eie
T57Wthn eilComd MG;!Tm y eusReie
: 7WcinSra
mad MG;
TeSn eutRcvdR:57WtigSrlComd MG;!Time Sync RequestRcedRT: 537 Watchi eilCommand: IME8TieSn eetRivdRT 3 ahn eilCmad IG;
ieSn eutRcee
T 7WthgSilCoad MG;!Ti ScRqe eiv
T 3 acn rilCmad IG;!Ti yceqs ced
:57acigSra
oad IG;!Tm ycRutRceeRT:57WcigSra
omn IMG;!Tm ycRus eee
T 3 ahn eilComd IAE8
m ScReeteiv
T 3 aci eilCoad:IA;!Tm nceetReeeRT 5 acngeiaComad MG;!Ti ScRqe eiv
T 3 thn eilCmad IG;!Tm n eutRceeRT 3 ahn eilComd AE!R:58WcigSrlCmmn AE8RT58WtigSraComd E8RT 3 ahn ea
omn AE8RT 3Wthn ra
omn: G8
T 8Wtcn ei
omad G;!R: 8WthgSraCoad A;!R:58acigSilCoad G;!R: 3Wthi eilCmad G8
T58WthgSra
omn AE8
T 3Wthn eilCoan A;!R:58WthgSra
omn:AE8
T 3 thn eilComd G;!R:58WcigSrlComn: E8
T 3 ahnSilCmad A;!RT 3Wahngei
omd AE8
T 8Wthn ei
omn: G;
T 3Wthn ra
oad AE!R:58acigSilComn:AE8
:58WtigeilComd:AE!R: 3 thn ea
omn A;!R: 3Waci eilCmad AE8RT:3 acigSrlCmad G;!RT58WtigSraComd A;!R:58acigSra
man: E8
:5 acngeilComman:AE8
T58 thi ea
omn: G;
T 8Wtin ra
omd R:58atig raCoan A;!RT 3 acn ei;!RT 3 ahg ra
omn AE8RT 8Wahngei
omn: G;
T 8WtigSilCmad AE8
: 3 ahgSraComd E8RT 3Wtcn raComn AE8
:58atigSrlComd E8!R:3 tcn ralCmad G;
R 3WthgeilCmad A;!RT58Wthn ea
oad G;
R:5 acigSri
Cmad AE!
T 8Wthn raComn: E8
:58acigSra
mad AE8
:58Wthn rlComn:AG8RT 3 ahn SilCmad G;!R:58Wci eilComd G;!R:58WtigeilCmad AE!R: 3WthnSra
oad AE!RT 58Wci eilComd G;!R:58WthgeilComn: G;!R:58Wci eilComn:AE8
T 3Waci ei
oad AE8
T 8WtinSrlCmad A;!RT58WtigSrlCoan: A;8RT 3 ahn ei
omn:AE!RT:58Wthn eilCoan AE8
T53 thn ri
omd AE8!RT 3Wthg raComn: G;
T 3 ahn ea
omn AE8
T58Wthn ei
oad G;!R:3 ahn ei
omn:AE8
:53 tcn ealComn: G8
T 3Wthn ra
oan: E8
T53 ahn ra
mad AE!RT58Wtin ri
omn: G8
:58WcigSra
oad AE!RT 3 acigSra
mad AE!RT 3 thn eilCmad GE!RT 3 acn eiaCoad G;!R:58Wthn ea
omd G;!RT 3 thnSra
mad A;!R:58Wthn eilCmad G;
T 3 aci eilComd G;!R:58WtigeilCmad AE!R:58Wci ea
omn AE8
T 3Wthn eilCoad G;
T:3 thnSra
omn AE8RT 3 acigSra
omd AE8
T 8Wthn ei
omn AE!RT 8WcigSerialComn A;!RT 8Wtin ea
omn AE!RT53 ahn eilComn:AE6
:58Wcigeil( 92 9~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
T 3 acn eilRT63WtigSilR:63acigSra
:68WcigSrlRT 3WthnSra
oad MG8!Ti y eusRcedRT 5 aci eilComd MG;!PigeusRcie
n eee
igRciePn eev
igRcvdPigRcvdPi ecvdPi eie
n eevdPngeee
T69Wthn ea
T 6 acn eilRT66WtigSilR:64acn ea
T 7Wthn eilRT68 tcigei
T69Wahn raTai iteRT 9 thgSra
:69Wchn ra
5 9 htsvdR 0 WcigSil(60,40)poosv
o ieudadRT 0Wthn raRT71Wthn eilR:79 thg raRT:7 acigSri
T 2Wthi ea
T 4Wthn ei
T 3 aci eilRT7 WcigeilRT 9WthnSra
T 5Wthn ea
T 9Wthn ei
T 6 aci eilTaigPtr
T 6 acn eilRT 7WthnSra
9 94)po ae
T 7 thn eil(60,40)phose
ofl pae
T74Wthn ea
T 9 acn eilRT79WtigSilR:80Wthn ea
T8 acigeilRT 1 thn eilR:8 atigeilRT82 tcigeilR:85WtigSraRT 3 tigeilR:85acigSralRT 40Wchn ei
aigitr
T85WthgSra
:80athgSia( 5 4 oose
T 5 ac ei
5 0)pooaeLo ieude
T 6WtigSrlR:85WcigSrlRT 7 thi SilRT 7 thn ea
:80WcigSrlR: 8WacigSrlRT 9Wthn ra
T 9 ahn eilRT90WcigeilRT95Wtigea
:90Wcn SrlRT 5Wtigera
kn itr
R 2WthnSra
T95aci eil(252,14)poosvdRT93 thg ra( 5 5)po av
ofl dt
T 3Wtigei
R:90acigSra
:95Wthn ra
T 5 ahgSraRT 5WtigSraRT 0WcigSrlRT 5Wtig raRT:9 acigSraRT 7Wthn ea
T 0Wthn ei
T 8 aci eilR:90Wcigei
aigPcueRT95acn ra
T10Wtigeil(25 94 hosvdRT 0 aci eil( 0 ahn ei
T 00acigeilRT 0 thn eil
:13 aci eilRT13 acigerlRT 4 acn ei
T 05acigSra
T 5 ahn ea
T 5 aci eilRT16 thn eilR:1hnSrlTai cteRT 01acn ra
T 06WcigSra
9 94)po ae
:11 thgSrl( 0,4 ht vdLofludtdRT18 thgSil
T19 thgSra
T19 acn eilR:11WtigSraRT 1 acigeilR:11 ahn ei
T 16acngeilRT12 acn ei
T 16acigSra
:13 acigeilRT13 ahn ei
T 11Wci eilTaigPtr
16WahnSraRT 5 ahn eil( 9 4 o ae
T 1 Wcigera( 50 5 hosvdLgfl dtdRT16 ahi erlR: 16acigSilRT 11aci ea
:17 ahn ei
T 11Wtin ea
T 86WtigSraRT:19WthgSra
T 1 aci ea
T12 acngei
T 2 tcn ei
:11WchnSraRT 26acigeilTigPcr
T 21atigSilRT12 ahn ra
52,14 hoae
T 3 thn ra
5,40)poose
o i pae
:16Wti ea
T14 thn ea
:26WtigSraRT 2 WcinSrlRT15 ahi erlRT 21acigSilRT 26acigSilRT17 acn eilR:17Wti SilR:11Wthn ei
T 26WthgSra
T 2 acigeilTknPcr
T 9 aci eilR:10 thn ea
52,14)pooav
T 36WtigSra
5,40)ht aeLo i uae
T 3 WcinSrlRT11 ahi erlR: 31acigSilR: 36acigSilRT 32acigSilRT 3 ahn ra
T14 acn eilRT13 thn ra
T 32WcigSra
T15WthnSra
: 32acigerlR:16WtinSraTain cueRT 7 acigeilR:17WtigSil
29 94 htsv
T:32WtigSrl( 0, 0)po ae
gfl ptdRT18Wthn eilR:192acigSilRT 9 acn eilRT14 ahn ra
T 0 acn eilRT 4 aci ea
R:17Wthn ei
T 42WthgSra
T 4 acigSraRT:43WthnSra
:13 ahngSilRT 4 acigSraTai iteRT 4 ahgSra
:12WthnSra
252,94)po aeRT 4 acigeil(60,40 ht adLofi ptdRT 6 acn eilR:16 ahn eaRT:17 acn eilRT177acn ea
T 42WtigSra
T 8 thn erlRT 4 aci SilR:47WcigeraRT:12 thgSia
:17WthnSrlRT:11 acn eilRT11 ahnSra
aPcueR:12Wthn eilRT15 atigeil( 92,94 oosvdR:13 acn eil( 0, 0)ht vdLgfludtdR:13 acn eilR:14WtigeilRT 5 aci eilR:12 thgSrlR:15 thn eilRT 52WtigSrlRT 57acigSilRT 52aci eilRT 7 ahn eilRT18 thnSrilR:57WtigSra
T 9 acigSrlTaigite
:19 thnSraRT 6 tci eil(292,14) hosvdRT16 aci ral(60,4 ho ae
gfl pae
:11 acigeilRT 6 acn ei
T 63WthgSra
T 6 ahi ea
: 3WtigSrlRT13WthgSrilRT 4 acn ei
:14 acigeil
:16 athn eilRT168athnSra
T16 acn ra
T16 ahn ei
aigPcueRT173acigeilRT 68WthgSra( 5 14)po ad(60,40)po ae
ofl ptdRT 8 WcigSrlRT 68Wcn ra
: 6 acigSrlRT 68acinSrlRT 0 acigSilRT10 ahn raRT 73WthngeilRT11Wthi eilRT 7 ahn ealR:12 ahn ra
T13 acn ra
T13 acn eilTangiteRT 73aci eilRT 7 Wci ealCman IAE1SedIa omnRcie
nig ae01bjg147 Ig iepooeqs eiv
enPsin0 /eain:4 B( 52,94 pt vdSn oto:00 /Rmii:16k( 5 40 htsveLogfeudtdSn oio:10 / eaig 2
edPsin200 eann 2 BSe osin200 /eann:1
edPiin 50 /Rmiig19k
edPsin 20 / ming12kSe Psin490 emnn:9k
edoiin 60 / eann:8
edPsto:30 / eang 1k
edPiin 00 /Rmii:7 BSedPsin700 /Rmin:6
n oio:800 /eann:6k
edPsto 10 / emnn:5k
e Pii:90 /Rmiig4 BSndoiin150 /Rmiig 0kSedPstn 100 /Rmnn:3kSedoito 100 /eain 7k
nPsii:160 eang2 BSedostn130 / eaig 3kSedoii:100 / eiig BImeSn mpt
SdTe=43363
T 9 aci eilRT19 tci eilRT18 aci ralR:10 tigSrl
:84acn ea
T 80Wci eiaRT:12 thn ra
omd IAE4
tmtigosncmastis65,5,5,,,0
ae etn etRT:129acn ea
T 84Wti SrlComn: MA;!Sn meCma eev
edn mg02bjg1882:Ig iephtrqe eev
e:0 /Rmnn:7 BSedPstn 00 /Rmnn:19k
e oiin 40 /Rmiig 2k
edPsto 10 /Rmin:16k
n oiin 80 /Rmiig19kSedPiin 50 /Rmiig 4
edPsto:20 / eang 3 BSe Piio:90 / miig 2k
edPstn 60 /Rmiig 1k
n oii:600/ eii:15kSen oiin 00 /Rmii:18k
edPiin 70 /Rann:0 BSedPiio 40 / mnn:9k
edPstn 00 /eann 7ktrynme:
eeigat@10ous faee431eb03ec2
efwdegh60
e oiin 10 /Rmiig BSndPii: 00/ Rann:1k
e oiin130 / eaig 6k
edoiin 000/ eaig:0k
e oiin150 / eaig 4k
edoiin 200/ eaig58BSedPsin 200/Reii:5 BSedoii:130 / eiig 6k
e oiin 30 //eanng4 kSedPsto 400/ eiig BSedoio:100 /Ranig2
SdPiin170 /Rmii:2 BSedoiio:130 /Rmiig 7kSedPitn 100/ ein:1
Sn sto:100 /Rann:5kImaeSn opt
edTm .27254Tan itr
:17Wthn ea
T 92WtigSrl( 52 9 hosvdR:10 thn ea
5 5 poosvdLofl pteRT 92athnSra
T 9 WcinSrlRT 92acn ei
T 97acn SilR:12WthnSra
:13 ahn eilRT14 thgSra
T14 aci eilCmn: A;!Atetnt pa ar eig
ae eigspadWdt60Hih 5Shrns0Brghns5
ora
autn0
S10
T:97acigSilCoad 01
/5,5,,0,,5
/5,5000,,0
R:92WthgSra
T 9 acigSraRT 6 ahn eilRT16 ahn ei
aigPtr
T17 acn eilRT 97acigSilComn:IA;
9 94 ht adAtepn osn ae etns654505001
aeaStigSt
T18WthgSil(60,4 htsvdLo i uaeRT 9 ahngeilRT 93acn ei
T 9 athnSri
T 0 acn ra
T 08WcigSra
T21 acigSilRT 18Wchn ra
T 0 Wci eilR:08WtigSraComn IAE2daaltrqs rivdSedgiaea.x
T 3 thn ra
T 3 thigSComn:IAE3
eii ooRqs eiv
,mg02_.g@tm(72/1 80:7 eig(=9,=94s=,5,=,a010
ts0B,ae04an i(7/40700:)stig(=52=94s=,=0=,a0i10
te1B,me04apg ie(/420 800)sttg(=5,=94h0b5,0s=,=5)
tstB,me02apg@tm(74270:90 etnsw52h14s=,=0=s=,=5
tstB,mg02apg@tm(7421 80:7stig(=52=94s=,=0=,a0i10
te1Biae0_.ng ie02/070:90 etnsw29h14,h0b5c0s=,=5)
tt
Bmg02_.n i(7221 :90 etnsw29h14,h0b5c,a0i1)
ts
,mg04apg tm(/4070:00)etnsw29,=9,h0,5,0s=,1)
ts
,me0_.n@tm(72/0 80:7 etgw22h94s=b5,0sa0=5)
et
,ae02_pg@te0/4270:90)stnsw22h14,h0b0c0s=,=5
tet
iae2_.n@tm074270::7 etnsw52h14,h,=0c0a=,10
tet
,ae04apg@ie0/421 :90)seig(29,=9,h0b5,=,=,=5)
tt1Big02_.n i(72/070::7 etnsw52h14,h0=0c0s=,=0
tet
,mg04ap m(72/1 89nsw22h14,=,=0=,a0i10
te1B,ae2_.n@tm(7421 :97 etg(=52=9,h0b5,=,=,=5)
tt
,mg02_pg@tm(7221 80:7 tig(=52h14s=,=,=s=,=5)
et1B,me04apg@tm(/4270:97 etisw22h144h0b5c0sa,=5)
ts1B,mg04ap ie02/078:90 etnsw29h14,h0b5c0s=,=5)
tt1B,ae04apg@ie0/421 :907 tigw=9,=94h0=0c0a0i10
ts1B,me04ap ie02/1 800)et=9,14,h,=0c0s0i50
ts
,mg04ap te02/0700:7 tig(=9,=94s=,5,=,a0i1)
ts1B,me04apg@te0/421 890)stig(29,=94s=b5,=,a0i5)
ts1Bimg02apg ie0//070:90)etns=52h94s=b5,=s=,=0
tetB,mg04apg ie0/4070:90)etisw29h14s=,=0c0a0i5)
tet
ig02_pg ie0/421 80:7 tig(=52=14,=,=0c,a0i1)
ts
,mg04ang ie02/0700:7 ein(=5,=4,h,=,=s=,=5
tet
iae04.n m(74270:90 etnsw29h14,h0b5c0s=,=0
te1B,me04.n@tie72/070:90)stnsw29,=9,h0b5,=s=,=5
te1B,me04.g@tm(72/1 80:7 eig(=52h1:7 etnsw52h14,h0=0ca,=5
ts1B,mg02_pn m(7220700:7tns=52h14s=,=0c0a0i1)
ts1B,ae2.g tm0/4270:90 etnsw29h14,h0b=,=,a0i1)
ts B,mg04ap ie0/4270:90)stnsw29,=9,h0b5,=,=,=5)
tt1Bmg02apg i(72/070::7 etnsw52h14,h0=0c0s=,=0
tes
,mg04ap ie02/0780:7stig(29,=94s=b5,=,a0i5)
tstB,iae04apg i(72/07 :90)stns=22h94,=,=,=,=,=5
tet
ia00_pg@tm0/4210:90)stisw29h14,h0b5c0s=,=5)
tt
Bmg04.n i(72/0 80:)stigw29,=94s0b5,=,a0=5)
ts
,me04ap ie72/070:97 etnsw52h14,=,b0c,a0=5)
tt
,me04ap ie0/4270:90)etn(=52=4,h0b0c0s=i10
te1B,ae2_.n@tm(7421 80:7stigw29,14sh,=0c0s=,=0
tetB,mg04an @ie72/1 80:7 eig(=52h14s=,=0c0a0i10
tet
,mg02_.n@tm(72/0 80:7 etg(=52=94h0=5c0s=i10)
ts
,ma02_.g ie02/0780:)stisw29,14s0a0i10
te1
iag04.n tm90)stinsw22h14,h0b0c0s=,=0
tet
iae04.pg@ie0//21 ::)stnsw22h14,h0b0c0s=,=5)
ts1Biae0_.n m(74/1 :90)etnsw52h14s=,=0c0a0i10
tet
iae24an ie0/40700:7 etis=5)
tt
iae2_.g@ie02/078::7)etg(=9,=94s=,5,=,a0i5)
ts1B,mg04apg te074270::7 etnsw52h14s0b5,=,a0i10
ts1B,mg02_.g@tm(72/1 80:7 etg(29,=4,h0=0,0s=i=0
s1B,mg04a.n m(72/070::0)stnsw22h14,=,5,=,=,=5)
et
ia02_.n i(72/0 890)stnsw22h14,h0b0c0s=,=5
ts1B,ae04ap ie02/0700:7 eigw29,14,h0=0c0s=,=0
tetB,mg04.n tm(72/0780:)stisw29h14,h,=0c,a0i5)
ts1Bige0_apg ie0/420 80:)stig(=52h14s=,=0c0s=,=0
tetB,mae0_.n tm(/42108907stnsw52h14,h0=0c0a0i10
te1
iag04.n tm(72/0 890)stnsw22h14,h0b0c0s0i10
tet
,mg04apg i(02/10:90)sttg(=52h94s=,=,=,s0i5)
tt
,ag04a.g@ie0/40780:7 tig(=9,=4,h,b0c0s=,15
tes1B,ag04.n m(74070:90)stisw22h94s0b0c0s0=1)
et
,ae04.n tm(72/01 80:7)etnsw29,=4,h0b5,=s=,=5)
ts1B,me04ang ie02/0 8::7 tngw22h94h0b5c,a0=5
ts1B,ag04ap ie02/0700:)stisw29,14,=0=0c0s0i1)
tt
Bmg02apg@ie0/4070::7 etnsw52h14s0,5,0s=i1)
ts
,ae04apg@ie0/421 :90)seig(29,19,h,=0=0a0i5)
ts1Bmg02apg@t0700:7 eig(=52h14s=,5,=,a,i10
ts1B,ae2_.n@tm(7221 :9:)stns=52h14,h,=0c0s=,10
te1B,mg me0//070::7 etg(29,=94s0b5,=,=,=5
tetB,mg04an i(7221 897)etns=9,=94s=,5,=,a0i10
te1
iae0_.g tm0/221 80:7stisw29,=94h0b5,=,a,=5)
et
,ae04an ie0/4070:90)stn(=22h94s0b5,=,a0=5)
tt
,ag02apg@te0/42700:72=14s=,=0c0,=,10
tes
iae2_pg i(72/0 80:7 etg(=52h14s=,=0c,a0=5)
es
,ig04ap ie0/42700:)etnsw22h14s=,=0=,a0i10
tet
img04apg ie0/40700:0 eis(29h14,h0b5c0s=i10
tet
,ae04.n i(72/1 80:7 eig(=52h14,=,50=,=,=0
te1
iag02_an i(72/070::7 etnsw52h14,h0=0c0s=,=5)
ts1B,ag04.n tm(7221 80:7 tig(29,=94s=b5,=,a0i5)
ts1B,mg04apg ie0//070eig(=59,14,h,=0c0a0i10
tetB,mg02apg i(72/070::7 etnsw52h14,h0=0c0s=,=0
tet
,mg04ap ie02/0700:0 eig(29,=9,h0b5,=,=,=5
tet
,ae24.n@tm0/421 800)stig(=5,h14s=,=0=,a0i5)
tt
,mg04apg i(72/1 80:)stig(=9,=4,h0=5
te1B,me04.n m(72/1 :90)eig(=5,h14s=,5,=s=,=5
te1B,mg02_.g@tm(/421 :97 etg(=52=94s=,=0=,a0i5)
te1Bia00_.g@tme7221 80:7 etg(=52h14s=,=0c,a0i10
ts1B,ae0)stnsw52h14,=0b0,a0i5)
stBia02_.n te02/17800)etnsw5,=94h0b5,=,a,=5
tet1B,mg02apg im0//0780:7 etng(=9,=94h0b5,0s0i5)
es1Biae04apg ie0/4210:90)stisw29,=94h0b5c0s=,10
tet
,mg04aB,ag04_pg@te0/4270:90)stnsw29,=9,h0b5c0s0i5)
ts1B,mg04apg@ie0/4070:97 etn(=9,=9,h0b5c0s=,=5)
ts
,me0_.n tm(74210:90 etnsw29,=4,h0b0c0s=i10
tet
iae04apg ie0/4210:90)stisw29,=94h0b5c0s=,10
tet
iae04.n i(72/0 80:7stnsw22h14,=,=0c0s=i1)
ts1Big02_pn m(72/1 80:)stigw2592,h14s=b5,=s=,=0
te1
ia02apg@te0/421 890)stn(w52=9,h,b0c0s0=10
tet
ia02_.g m(/4/1 80:7 eig(=52h14s=,=0c0a0,=5
tetB,mg04apg@ie0/4070:90)stnsw29,=4,h0b5,=s=,=5)
ts1Bia02_.n@tm(02/0 80:0 etn(=59h14,=,=5c0s=,10
tes1Bige2_an tm02/070097 stns=22h=4,=,=,=,a0=5)
tt1Bia02_pg@te0/4070:97 etnsw22h14,h0b0c0s=,=5
tt
,ae2_.n tm(7221 800)etns=52h14s=,=0c0a0i10
te1B,me04apg ie72/0 80:7stnsw22h14s=,5c0s=i10
te1B,ae2_.n@tm(/421 :90)stigw29,14sh,=0=,a0i5)
tt
,ig04ap ie0/4270:90)stngw29h14s0b5,=s=,=5)
ts1B,mg02_.g@tm(72/1 80:7 eig(=52h140,=,=,a0i5)
te1Biae04ap m(7421 800)stnsw29h14,=,=0c0s=i10
tet
,ae04.n ie0//078::7)etnsw22=94s=,5,=s=,15)
tt
,=0=,s0i10
tet
,mg04apg@tm(/421 800)stngw29,14,h,=0c0a0i10
tstB,mg04ang i(7221 800)stnsw52h94h0b5,0s=,10
tstB,me0_pg@im(/2/0 80:7stig(29h14,=,=0c,a0i10
te1B,mg04apg@ie0//0 00:7 etg(29,=4,h0b0c0s=,=5
tetB,mg04apg@ie0/421 :90)stig(292=9,h0=0c0s=,=0
te1
iag04.n tm(72/0780:7 etn(=52h14,=,5,=,a0i1)
ts
,mg04an ie72/070:90 eig(=5,=94s0b5,=s=i10
te1B,mg02_.g@te074270::7 etnsw22h14s=,=,=,a0=5)
ts1Biae2_.n@tm(/421 :90)etnsw29,14,h0=0=,a,i5)
tt1Bia02_.ng @ time(07/24/2017 08:09:07) settings(w=2592,h=1944,sh=,=0=0a,=0
tet
iae0_.n m(/4210097 etg(=9,=9,h0b5c0a0i1)
tt
,me04.n i(72/070::7 eig(=52h14s=,5,0,=,10
te1
,ae24.n@tm0/4010:00)etn(=52h14,=,=0c0s=i10
te1B,mg02_.g@tm(/421 890)stisw22h14s=,=,0,=,=0
tet
,mg04.n ie72/070:97 etnsw22h=4,h0=0c0s0i10
tes1Biae04apg i(72/0 890)stnsw29,=9,h0b5,=,=,=5)
tetB,ma02_.n@tm(72/0 897 etg(29,=4,h0b0c0s=,=5
tetB,me0_.g@tm(/421 80:)stig(=5,=94s=,=,=,a0i10
ts1Big04apg@tm0/4210:90 etns=59h14,h,=0,0s0i50
tt
,ae0_.g i(72/01 890)stnsw29h14,h,=,=,a,=5)
tt
,me04an ie72/070:97 etisw29,=94s=,5,=,a0i1)
ts
,ae04apg@ie0/421 :90)etgs=5,=9,h=b5,=s=,=5)
ts
,mg04apg ie02/0780:7seig(=9h194h0b0c,a0i5
s1Bia02apg@te(/421 800)stisw52h14s=,=stigw29,=94s=,5,=sa0i5)
ts1Biag04.n i(72/1700:7 tig(=04apg@tm0/421 890)stnsw29,=9,h0b5,=,=,=5)
tt
iae2_an i(72/1 80:)seigs=52=94s0b5,=s=i10
te1
,me04ap m(/421 :90)stigw29,=94s0b5,=s=i10
te1B,mg04ap ie72/0 80:7stig(=52=94s=,=0=,a0i10
te1Bime0_.n tm(72/0780:7 etn(=9,=94s=b5,=,a0i5)
tt1Bia02_pg tm0/4070:90)stnsw29,=4,h0b5,=s=,=5
tet
iae04apg ie0/4210:90)stisw29,19,h0b5,=s=,=0
te1B,mg04apg@ie0/40780:7stn(w52h14s=,5,=,a,=5)
ts1Biag04.n ie0//0700:7 eig(=5,=94s=,5,0,=,10)
etB,mg02_pg@ time(07420 890)etnsw29,14,h0b5,0s=,=5)
tt
ia02_.n@tm(7421 890 etg(=52h14s=,=0=,a0i5)
tt
,a02a.g@ie(/4210:90 etnsw59h94s0b5c0s=,10
tstB,mg04ang i(7221 80:7 tig(=52=94s=b5,=s0i10
te1B,ae04.p te0//270890)stig(29,14,h,=0c,a0i1)
ts1Bia00_.g@te0/4270:90)stnsw29,=9,h,=0=,a0i10
te1B,iae04.n m(72/10:90)etn(=22h94s0b0c,a0=5)
ts
,ae04an tm(72/070::7 tig(29h144s0b5,=,=i1)
et
,me04_pg ie7/4070:97 eig(w52h14,h0=0c0s=,=0
tetB,mae2_.n i(72/070::7 etnsw52h14,h0=0c0s=,=0
tes
,mg04ap ie02/1 00:7 tig(=5,=94s0b5,=s=,=5
tetB,mg04_pg@te0/4070:97 eig(=9,=94h0=0c0a0i10
ts1B,me04ap im(72/0780:7 etn(=52h=4,h,=,=,=,=5)
tt1Bia02_.n@te0/4070:97 etg(29h14,h,=0c0a0=1)
tstB,me02apg@ie0//070::7stisw29,14s=0b5c0s=,10
tetB,me2apg@im(7421 :00)stnsw22h14,h0b0c0a0=5)
et
,mg04ap ie02/0 80:)stisw29,14,h0b5c0a0i5,mg04an i(72/0 80:7stisw52h14s=,=0=,=,=5
te1B,mg02_.g@tm(/421 :97 tig(=5,=94h=b5c0a0i10
ts1Biage0024ap i(02/270::7 etnsw52=9,h0b5c0s=0i5)
ts1B,ag04_.n@tm(7421 890 etn(=52h94s=,=0c,a0i10
ts1Be04.n tm(72/1 80:7 eig(=52h14s=,=0c0s0i10
tes
,ae04apg@ie02/Big02_.g@tm(/40700:7 ttns=52h14s=,=,=s=,10
ts1B,mg02_.g@te0/4070::7 etg(=52h14s=,=0c0a0i10
ts1B,mg0_an ime(02/078::7stisw29,=94h0b5,=,a0=5)
tt1B,mg02_.g@tm(72/1 80:7)etnsw52h14,h0=,=,a0i5)
te1Biae04.n ie0//070::7stns(w=29,=94h0=0=,a0i5)
te1B,mg02_.g@tm(/421 :97 etg(=52=94s=,=0=,s=,=0
tetB,mg02_pg@tm0//070097 eigs=59h14,s0b5c0a0i10
tetB,mg02apg@im0//0 80:) einsw=5,=94h0b5c0a0=5)
ts1B,mg02_pg@ie0//070::7stigw29,=4,s0=0c,a0i1)
ts
,ae04an ie07/24/270:90)etnsw29,14,h0b5,0s=,=5)
tt
,mg04ap ie72/0 80:)stigw22h94s=b5,0s=,=5)
tt
iae2_.n@tm(7421 890)stns=52h94s=b5c0s=i10
ts1B,mg04apg@ie02/0700:7 etns=52h14,h,b5,0s=,=0
tet
,me04.n i(7421 :90)stnsw29,=4s=b5,=,a0i5)
et
iae04apg ie02/0700:7stigw=52=94s=b5,=,=,10
tet
,mg04apg@ie0/421 :90)stisw29,14,h0b5,0s=,=5)
te1B,ae2_.n tm(/4210:90 etns=52h94s=,=,=,=,i5)
tetB,mg04apg ie0//070:90)etnsw29,14,h0b5,0s=,=5
tetB,mg02apg@tm(/4270:97 tig(25,=4,=0=0c0a,=10
ts1Bimg04apg@tm0/421 890)stnsw52h94s=b5,=,=,=5)
te1Bia00_.g@ m(72/0 80:7stigw29,=94s0b5,=,a0=5)
ts1Biae2_.n@tm(/421 :90)etns=52h14s=,=0c0a0i10
tet
,ae0_.p m(7421 80:7stig(=52h14s=,=0c,s=,10
tet
,ae04an tm(72270:90)seigw29,14,h,=0c,a0=5)
et
iae04an te02/1 :97 etn(=9,=9,h0b0c0a0i1)
ts
,mg04apg@ie0/40780:7stig(=52h14s=,5,=,a0i1)
ts1B,ag04ap i(72/1 80:)stisw22h94s=b5,=,a0=5)
ts1B,ae2_.g@tm(72/070:97 stngw22h14s=,=0c0a0i10
te1B,mg04.n m(72/1 80:7 eisw29h=4,s0b0c0a0i10
tetB,mg04an i(72210::7 etg(=52h=4,=,5,=sa=5)
tt
,me04apg@te0//010:90)stisw29h14s0b5,0s=,=10
tet
iae2_an tm(/421 80:)stig(=5,=94s=,=,=,a0i10
ts
,me02_pg@te0/4070:97 tig(29,=4,h,=,=,a0=5
tstB,ae2apg tm(/4210:90)etnsw52h14,h0=0c0s=,=0
tes
,mg04ap ie02/070:90 etisw59h14s=b5,=s=,=5
tetB,mg02_pg@tm0/421 800)stig(=9,=94s=,5,=,a0i1)
et
,ae04apg@im0/4070::7 eig(=5,=94s=,=,=,a0i10
ts1B,me04ap ie02/1 8007 tig(29h144h0b5,=,=,=0
tet
,ae04an ie0/4070:90)stw29,14,h,=,=,=,=5)
tt1Biae04.n ie72/0700:)stisw29,14,h0b5,0s=,=5)
tt
Bige04.n i(72/0 890)etn(=9,14,h0b5c=s=,10
tstBiae2_pg@te0/4070:97 etnsw22h14,h0b0c0s=,=5
tst
iae0_.n@ie72/0780:7 etn(=59h14,h0b5c0s=i10
ts1B,ag04ap ie72/0 80:7setn(=52h94s=,5,0s=,10
te1B,me04ap m(7221 800)stinsw22h94h0b5,0s=,=0
tet
,ae04an ie72/0780:7 tisw29h14s0b5c0a0i5)
tt1Bia02_pg@ie0/4070:90 tisw29h14,h0b5c0s=,i5)
ts1Biae0_.n ie02/070:90 etgsw29,=94s=b5,=s=,=5
tet
iae04apg ie0/4210:90)stisw29,=94s=b5,0sa,=5)
tt
,mg04apg i(72/0 8097 etg(=52=94s=,=0c0a0i1)
ttB,me0_.n@tm(/2/0 80:7 etnsw22h19,h0b5,=s=0=5
tet
,ma02_.g@tm0/4270:90 etn(=92=94h,=0c0s=,10
tet
,me04an @tm0/421 800)stig(=9,=94s=,50c0,=,i5)
ts1Bimg04ap ie0//070::7stnsw29h14,h,=0c0a0=5)
tt1B,mg02apg@tm(7421 80:7stig(=52=94s=,=0=,a0i10
te1B,mg02_pg ie02/070:90)stnsw22h14,h0b0c0s=,=5
ts1B,ae04.p te02/270:90 etnsw29h14,h0b5c0s=,=5)
ts
,mg04ap ie02/070:90 etn(=52=94s=b5c0s=i10
tetB,mg04an i(72/0 80:7stisw=9,=9,h0=5c,a,=5)
es1B,ae04apg@ie0/4270::7 eig(=5,=94s=,=,=,a0=50
te1B,mg04_.n@tm(7421 890 etn(=52h94s=,=0c,a0i10
ts1B,me04.n ie0//070:90)etnsw29,14s=,50c0a0i10
te1B,a02_.n te02/0780:7stigw29,h94h0b5c0a,=5)
ts1B,ag04_.n ie0/4070:90)stnsw29,=4,h0b5,=s=,=5)
tt
,ig00_.g@te0/421 890)stig(29,=94s=b5,=,a0i5)
tt1B,mg04an=0
te1B,ae0_.n@tm(72/0 80:7 etg(=52h14s=,=0c0s0i10
te1
iae2_pg@tm(7221 80:7 eig(25,=94h0b5c0s=i10
tet
ime0_an i(72/0700:)stnsw22,194s0b=,=s=i10
tes
,mg04an i(72/0 80:7 etg(=52h14s=,=0c0a0i5)
ts1B,me04ap ie0/4270:90)stnsw29,=9,h0b5,=,=,=5)
tt1Biae2_pg@tm(7221 80:7 tig(=52h94s=,=0c,a0i10
tetB,me04an tm0//078::7stngw22,14s=,5,=,a0i1)
et
,ae04.n me7240780:)stig(=5,=94s=,=0c0s0i10
te1
iae0_.n tm(7221 80:7 tig(=52h94s=,=0c,a0i15)
tt
iae2_.n ie72/17800)stnsw22h14,=,=0c,a0i1)
ts
,mg04apg@ie72/0 80:7stig(=52=9,=,=0=,a0i5)
ts
,mg04apg ie02/1 800)stisw52h94h0b5,=,a,i50
tet
,ae04apg@ie0//0780:7stig(=5,=4,h0=0c0a0=5)
et
Bmg04_pg@tm(/2217800)stnsw29,=4,h0b5,=s=,=5)
es
,ae0_.n m(7221 :90)stnsw29,=9,h0b5,=,=,=5)
et
,me02_pg@tm0/4210::7 eig(=5,=94s=,=,=0s0i50
tetBiae04.n@te0/4270:97 etn(=52h14,h0b0c0a=,10
tsttB,mg0_.n@tm(/2/0 80:) tig(29,h94s=b5,=,a0i5)
ts1B,mg02_.g@te02/0700:7 etns=52h14,h,=0,0s=i=0
s1Biae04.n tm0//070::7 etg(=52=9,h0=,=,a0i5)
ts1B,me0_.n m(72/1 80:)stn(29h14,h,=0c0a0i1)
ts1B,ae04an tm(7221 800)stig(=9,=94s0b=,=,=,=5)
ts1B,ae04an ie0/4210:97 stn(=5,=94s=,=,=,a0i10
ts1B,me04apg@te0/421 890)stnsw22h14,h0b0c0s=,=5
te1B,ae0_ap te02/0 80:7 etgw29,=9,h=b5,0s=,=0
tet
,mg04an i(72/170090)etns=22h94s=,5,=,a0i1)
tstB,mg02apg@te0/42700:7 tig(=9,=94s=,5,c0s=i5)
etB,mg02apg@tm(74210890)stnsw52h14s=,=,=,a0i10
te1
iae0_.n tm(7221 80:7 tis=52,144h0=0c,a0i10
te1Bia00_.n tm(7220780:7 etnsw29,=94s=,5,=,a0i1)
ts1Biae0_.n tme72/0700:)setns(29h14,=,=0=s=0i5)
ttB,ia02apg@ie0/4070:90)etnsw22h14s0b5,0s0,10
tetB,mg04.n tm0/4270:97 etn(=52=9,h,=,=,s=,=0)
et
,ae04.n i(7//1780:7stns=5,=94h0b5c0s=,10
te1
,ae24.n@ti(7//0 800)stig(=9,=94h0=0=0a0i1)
ts1Big02a.g@i(0/4070:97 tig(29,=9,h0b5,=,=,=5)
tt1Bia02_.n@te0//0 800)etg(=52=94s=,=0=,a0i10
te1B,mg02_pg te02/270:97 etg(=5,=94h0b5,0s=,=5)
tt
,mg04ap ie0//070:90)etnsw29,14,h0b5,=,=,=5
etB,ige2_.g@tm0/4070:90 etg(=5,=94s=,5,0s=i10
tes1Biae04.n i(72/0780:7 etgs=5,=9s=b5,c,a,10
ttB,me0_.g@te0/4270::7 eig(=5,=4,h0=0c0s0i10
te1
iae0_.n tm(72/0 800)stisw52h14s=,=,=,a,=5)
ts1B,me04ap im(7421 890)etnsw59,19,h0b0=,a,=0
ts1Big02apg@i(72/17800)stisw22h4,h,b0c0s=i10
tet
,mg04apg@tm(72/070:97)etns=52h94,=,=0c,=0=5)
tetB,me02apg te0742108907stis(292=94h=b50=,a,i5)
ts1Big02_.g@tm(7421 :90 etn(=52h14,=,=0c,a,=5)
ts1B,ae04.tm(74210:00)stisw=9,14,=,=0c0s=i10
te1B,mg02_pg@te0//0780:7 stnsw52h14s0,5,0s=i10
te1B,me0_.n m(72/0700:7 tig(29,=94s=,5,=,a0i1)
et
,ae04apg tme72/1 80:) tisw59h14,=,=0c0s=i10
te1B,ae04.n ie724010:90 etns=52h14s=,=,=s=,=0
te1
ia02_pg@tm(7221 80:7 tig(w52h14s=,=0c0s0i10
te1
iae0_.n tm(7221 80:7 tig(=52h=94h0b5,0s=,=5)
ts1Biae0_.n m(72210::7stigw29h14,h,=0c0a0i1)
ts
,ae04an ie72/070:97 etnsw22h14,h0b0c0s=,=5
tet1B,ae04.n i(72/070::7 etnsw52h14,h0=0c0s=,=0
tetB,mg04ap ie02/0780:7 etn(=52h14s0b5c=s=,=0
tetB,mg02_.n tm(72/017 08:09:07) settings(w=2592,h=194s=,=0c,a0i1)
ts1B,me04apg@te0/421 890)stig(29,=4,h0=0c,a0i5)
ttB,mg04apg im0/4270::7 tisw29h=4,h,b5,0s=,=0
tet
,me04apg@te0/421 890)stig(29h14sh0b0c0s=i10
tetB,mg04apg@tm(/421 80:)stis(29,14,h0b5,=,a0=5)
et
,me04.p m(/2210:90)stigw=9,14s0b5c0s=i=0
tt1Biae04apg@tm(7221 80:7 tigw29h14s=,=,=0a0i10
tet
,ae04apg@ie0/421 :90)stigw29,=94s0b5,=,a0=5)
ts1B,mg04an tm0/42780:7 etn(=29h14s=b5,0s=,10)
etB,ia004.pg@te0/4070:90)stnsw29h14,=,=,=s=i=0
te1
iae0_.n tm(7221 80:7 tig(=52h94s=,=0c,a0i1)
ts1B,me0_.n m(/4270:97 etg(=52=94s0b5,=,a0=5)
ts1Biae2_pg@ie0/40700:7 etns=52h94s0b5,=s=,=0
tet
,ae2_.n tm(72/0780:7 etn(=52h19,h0b0c0s=0=5)
et
,me04apg@te0/421 890)stig(29,=94s=b5,=,a0i5)
ts1B,mg04apg@ie0/40780:7stig(29,=94s=b5,=,a0i5)
ts
,mg04apg@te0/4070:90)stnsw29,=4,h0=0=0s0i10
ts1Biae24ap ie02/0700:)stisw29,14,h0b5,0s=,=5)
tt1Biae2apg@te0/4270:90)stnsw292h14s=,=,=,a,i10
te1
iag04.n tm(72210890 etg(=52=94s0b5,=,a0=5)
ts1Bige2_.n@tm(/421 0:97 etigw29,=94s0b5,=,a=i1)
tet
,me04apg@te0/421 890)stin(=52h14s=b5,=,a0i5)
ts1Bimg04a.g@tm(/4210:90)etnsw29,14,h0=0c,a0i1)
es
,mg04apg ie0//0700:) tisw22h14,h0b0c0s=,=5)
ts1B,ae04.n i(72/070::7 etn(=52h14,=,=0c0s=i10
te1B,mg02_.g@tm(72/1 80:7 eig(=52h14s=0=0c,s0=5)
et
,ae04an ie0/4070:90)stnsw29,=4,h0b5,=s0i1)
tst
,ae04an ie7221 890tig(=9,=94s=,5,=,a0i1)
ts1Biae04.n i(72/070::7 etnsw52h14,h0=0c0s=,=0
tet
,mg04ap @ie0/40700:7 tig(29,=9,h0b5,0s=,10
ts
iae0_.n m(72/1 80:)stigw22h14s=,=0=,a0i10
te1Biae0_.n ie02/070:97 eig(252h94s=,=0s=,=0
te1B,me0_.n ie02/0 80:)stisw29,14,h0b5,0s=,=5)
tt
img04an ie74210:90 etns=52=94s=,5,0s=,=5)
ts1Big02ap @i(7421 ::7)stnsw22h14,=,=0=0s=i10
ts1B,me04an i(72/070::7 etnsw22=9,h0b5c0s=,=5)
et1B,me04apg@ m(/421 80:7 tig(=52h94s=,=,=0s=,10
te1B,mg02apg ie02/07890 etg(=5,=94s=,50c0a0i10
tet
iae2_.n ie72/070:97 etn(=52h94s0b5,=s=,=5)
tt
,mg04ap ie02/070:90 etnsw29h14,h0b5c0s=,=5)
tt1B,ae04apg@ie0/421 :90)stn(=5,=94h0b5c0s=i10
tet
,me04an@tm(/427 :90)etnsw29,14,h0b5,=,a0=5)
ts1Bia02_.n@tm(7421 80:7stig(=52=94s=,=0=,a0i10
te1B,mg02_pg ie0/221 80:7stig(29,=94s=b5,=,a0,10
te1B,mg04.n ie0/221 80:7 tig(=52h94s=,=0c,a0i10
te1Bia00_.g@te0/421 897)etigw29,=4,h0b0c,a0i5)
tt1Biae04.n i(72/0 890)stnsw22=94s=,50=,=,10
tetB,mg02_pg@ie0//0700:7 eig(=9,=94s=,5,=,=,=5
tetB,mg04.n i(72/0 80:7stnsw22h14,=,=0c0s=i10
ts1Biae04apg ie0/4210:90)stisw29,=94h0b5,=,a,=5)
et
,ae04apg@tm(/421 80:)stig(=5,=94s=,=,=,a0i10
ts
,ae04an ie0/420 800)etns=59h14,=,=0=,a0i5)
ts
,mg04apg ie0/4210:90 etgsw59,=4,h0b0c0s=i1)
ts1B,ag04an tm0/4070::7 etg(29,=4,h0b0c0s=,=5
ts1B,mg02_pn m(/421 :90)stig(=5,=94s0b0c0a0=5)
etB,mg04.n tm(74210:: tgsw59,=4,h0b0c0s=i=5)
ts1B,mg04apg@ie0//070:90 etnsw5,=4,h0b0c0s0i10
te1
,a02apg i(7421 ::7 tinsw29,=4,h0b5,=s=,=5)
tt
,mg04ap ie0//010::0 eigw252=94s0,5c0a0i1)
tt
ig02_pg@tm0/4210:90)stnsw22h94s=,=0c0s=,10
tstB,mg02_pg@ie0/421 :90)stigw29,=94s0b5,=,a0=5)
es
,ig04ap ie02/0780:7stigw29,=4,h0b5,=s=,=5)
tt
,mg04ap ie02/070:90 etn(w29h14,h,=0c0a0=5)
ts
Bia004.n@ m(/4270:90)stnsw29,=9,h0b5,=,=,=5)
tt
,me04apg m(7221 :90)stigw29,=94s0b5,0s=,=0
test
,mg02_pg@ie0//07000)etnsw52h14,h0=0c0s=,=0
tet1Biag04_.g i(72/0 80:7stnsw22h14s=,=0c0a0i10
tes
,mg04apg i(72/1 80:)stig(=5,=94s=,=5,0,a0=5)
ts1Biae2_an tm0/4210:97 etn(=52h14,=,=0c0s=i10
tetB,mg04apg ie02/0700:7 etns=52h14,h,=0c0s=,10
tet
,me04an @ie(/40700:7 etns=52h94s=,5,=,a,=5
ts1B,ag04apg ie0//070097 etn(=52=94s=b5,=,a0i5)
tet
,ae0_.n tm0/4210:90)etnsw52=94s0b5,=s=,=5)
es
,mg04ap ie7/410:90 etn(=52h14s=b5,=,=,=0
te1B,mg04pg@tm0/421 890)stns=52h94s=,5,=,a0i10
te1B,mg02_pg@tm0/4210:90)stisw52h14s=,=,=s=i1)
ts1Bia02ap m(7221 800)stig(=92=94=s=,10
et
iae04apg ie0/4210:90 etns=52h14s=,=,=,a,=5)
tt
,a02_.n tm0/4210:90 eig(=9,=94h0b5,=,a,=5)
ts
Bmge2_an tm(72/0 89:)stngw52,144h0=0c,a0i10
ts1B,mg04_pg ie0//0 80:)stigw29,=94s0b5,=,a0=5)
ts
,me04.p m(72/070:90 etnsw29h14,h0b0c0s=i10
ts1B,a02apg ie0//0700:7 etn(w29h14,h,=0c0a0=5)
et
,ae04an me7240780:)stig(=5,=4,h,=0c0a0i5)
tet
ia02_.n@tm(72/0 80:7stisw52,14s=,5,=,a0i1)
ts1Bia00_.n tm(72/1 89:7 tin(=52=94s0b5,0s=,=0
tet
img04ap 0/4270:90)stnsw29,=94s0b5,=,=,10
ts1B,mg04ap m(72/0 80:7stig(29,=9,h0b0c,a0i1)
tt
ime04apg@te0/4270:90)stnsw29,=9,h0b5,=,=,=5tet
iae04an i(72/0 80:7stig(29h14,=,=0c,a0i10
te1B,mg04ap @te02/0 80:)stisw29,14,h0,=0c,a0i10
tet
,mg04apg@ie0/4070:97 etn(=9,=9,h0b5c0s=,10
tet
iae2_.g@te0/421 890)stig(29,=94s=b5,=,a0i5)
tt1B,mg02apg@te0/42700:7 tig(=9,=94s=,=0=,a0i10
te1
ia02apg@ie72/070:90 etg(=5,=94h0b5,0s=,=5)
etB,ma02_.g@tm072/1 800) tis(=9,=4,h0b0c0s=,=5
ts1B,imae0_.n@tm(/4010:9tnsw22h14s=,=0=,a0i10
te1
,ag02_.n i(7420780:)stnsw52h14s=,=0=,=0=5)
ts
,me04.n@ti(74210:90 etns=52h14s=,=,=s=,=0
ts1B,ae04apg@ie0/4210:90)etnsw22h14s=,=0=,a0=5)
ts1Bmg02_pg@te(/4/1 :90 etnsw29h14,h,=0c0a0=5)
tt
iae2_.n tm(/421 :90)etnsw29,14,h0b5,0s=,=5
etB,mg04apg tm0/4270:90 etig(25,=94h=,=0=,=i10
tet
,a004an ie0/4070:90)stnsw29,=4,h0b5,=s=,=0
tet)
et
,ae04.n tm(/4210:90)etnsw29,14,h0b5,0s0i1)
tt
,ae04apg@ie0/42780:7stnsw22h14,=,=0c0s=i10
tet
,me04apg@te0/421 890)stig(=92h14s=,=,=,a0=5
tet
,ag02apg@ie0//0 890)stnsw22h94s=,=0c0s0i10
tet
ia02_.g@tm(/421 80:)stig(=5,=94h0b5,=,a,=50
ts1Biae04an ie72/070:97 etnsw22h14s=,=0c0s0i10
tet
iae2_.g@ m(/4270:90)stnsw29,=9,h,=5c0a0i5)
tt1B,mg02_.g@tm(/401 890)stnsw29h14s=,5,=,a,=5)
tt
,ae0apg ie02/0 80:7)eig(=5,=94s0b0c0s0i10
ts1B,me04ap ie02/0780:7 tnsw59h14,=,=0c0s=i10
tetB,ag04.n@tm(7221 80:)etnsw22h14,h0b0c0s=,=5
tet
iae04.n ie0//070::0 eigw29,=4,h0b0c0s=i1)
tet
,mg04apg@tm0/421 800)stig(=52h94s=,5,=,a0i1)
ts1Bia02ap m(7221 890)stnsw29,=9,h0,=,=,a,=5)