-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding taxi lights.fodg
7718 lines (7717 loc) · 599 KB
/
landing taxi lights.fodg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:smil="urn:oasis:names:tc:opendocument:xmlns:smil-compatible:1.0" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.graphics">
<office:meta><meta:initial-creator>Art Zemon</meta:initial-creator><meta:creation-date>2016-07-24T17:03:41.936731635</meta:creation-date><dc:date>2017-12-07T18:52:36.574532320</dc:date><dc:creator>Art Zemon</dc:creator><meta:editing-duration>PT4H59M10S</meta:editing-duration><meta:editing-cycles>68</meta:editing-cycles><meta:generator>LibreOffice/5.1.6.2$Linux_X86_64 LibreOffice_project/10m0$Build-2</meta:generator><meta:printed-by>Art Zemon</meta:printed-by><meta:print-date>2017-12-07T18:52:25.371832337</meta:print-date><meta:document-statistic meta:object-count="231"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="VisibleAreaTop" config:type="int">3232</config:config-item>
<config:config-item config:name="VisibleAreaLeft" config:type="int">12171</config:config-item>
<config:config-item config:name="VisibleAreaWidth" config:type="int">15949</config:config-item>
<config:config-item config:name="VisibleAreaHeight" config:type="int">7281</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view1</config:config-item>
<config:config-item config:name="GridIsVisible" config:type="boolean">false</config:config-item>
<config:config-item config:name="GridIsFront" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsSnapToGrid" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsSnapToPageMargins" config:type="boolean">true</config:config-item>
<config:config-item config:name="IsSnapToSnapLines" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsSnapToObjectFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsSnapToObjectPoints" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsPlusHandlesAlwaysVisible" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsFrameDragSingles" config:type="boolean">true</config:config-item>
<config:config-item config:name="EliminatePolyPointLimitAngle" config:type="int">1500</config:config-item>
<config:config-item config:name="IsEliminatePolyPoints" config:type="boolean">false</config:config-item>
<config:config-item config:name="VisibleLayers" config:type="base64Binary">//////////////////////////////////////////8=</config:config-item>
<config:config-item config:name="PrintableLayers" config:type="base64Binary">//////////////////////////////////////////8=</config:config-item>
<config:config-item config:name="LockedLayers" config:type="base64Binary"/>
<config:config-item config:name="NoAttribs" config:type="boolean">false</config:config-item>
<config:config-item config:name="NoColors" config:type="boolean">true</config:config-item>
<config:config-item config:name="RulerIsVisible" config:type="boolean">true</config:config-item>
<config:config-item config:name="PageKind" config:type="short">0</config:config-item>
<config:config-item config:name="SelectedPage" config:type="short">0</config:config-item>
<config:config-item config:name="IsLayerMode" config:type="boolean">true</config:config-item>
<config:config-item config:name="IsDoubleClickTextEdit" config:type="boolean">true</config:config-item>
<config:config-item config:name="IsClickChangeRotation" config:type="boolean">true</config:config-item>
<config:config-item config:name="SlidesPerRow" config:type="short">4</config:config-item>
<config:config-item config:name="EditMode" config:type="int">0</config:config-item>
<config:config-item config:name="VisibleAreaTop" config:type="int">-1479</config:config-item>
<config:config-item config:name="VisibleAreaLeft" config:type="int">-642</config:config-item>
<config:config-item config:name="VisibleAreaWidth" config:type="int">44688</config:config-item>
<config:config-item config:name="VisibleAreaHeight" config:type="int">31031</config:config-item>
<config:config-item config:name="GridCoarseWidth" config:type="int">2540</config:config-item>
<config:config-item config:name="GridCoarseHeight" config:type="int">2540</config:config-item>
<config:config-item config:name="GridFineWidth" config:type="int">254</config:config-item>
<config:config-item config:name="GridFineHeight" config:type="int">254</config:config-item>
<config:config-item config:name="GridSnapWidthXNumerator" config:type="int">254</config:config-item>
<config:config-item config:name="GridSnapWidthXDenominator" config:type="int">1</config:config-item>
<config:config-item config:name="GridSnapWidthYNumerator" config:type="int">254</config:config-item>
<config:config-item config:name="GridSnapWidthYDenominator" config:type="int">1</config:config-item>
<config:config-item config:name="IsAngleSnapEnabled" config:type="boolean">false</config:config-item>
<config:config-item config:name="SnapAngle" config:type="int">1500</config:config-item>
<config:config-item config:name="ZoomOnPage" config:type="boolean">true</config:config-item>
</config:config-item-map-entry>
</config:config-item-map-indexed>
</config:config-item-set>
<config:config-item-set config:name="ooo:configuration-settings">
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
<config:config-item config:name="BitmapTableURL" config:type="string">$(user)/config/standard.sob</config:config-item>
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
<config:config-item config:name="ColorTableURL" config:type="string">$(user)/config/standard.soc</config:config-item>
<config:config-item config:name="DashTableURL" config:type="string">$(user)/config/standard.sod</config:config-item>
<config:config-item config:name="DefaultTabStop" config:type="int">1270</config:config-item>
<config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="ForbiddenCharacters">
<config:config-item-map-entry>
<config:config-item config:name="Language" config:type="string">en</config:config-item>
<config:config-item config:name="Country" config:type="string">US</config:config-item>
<config:config-item config:name="Variant" config:type="string"/>
<config:config-item config:name="BeginLine" config:type="string"/>
<config:config-item config:name="EndLine" config:type="string"/>
</config:config-item-map-entry>
</config:config-item-map-indexed>
<config:config-item config:name="GradientTableURL" config:type="string">$(user)/config/standard.sog</config:config-item>
<config:config-item config:name="HatchTableURL" config:type="string">$(user)/config/standard.soh</config:config-item>
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsPrintBooklet" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsPrintBookletBack" config:type="boolean">true</config:config-item>
<config:config-item config:name="IsPrintBookletFront" config:type="boolean">true</config:config-item>
<config:config-item config:name="IsPrintDate" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsPrintFitPage" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsPrintHiddenPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="IsPrintPageName" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsPrintTilePage" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsPrintTime" config:type="boolean">false</config:config-item>
<config:config-item config:name="LineEndTableURL" config:type="string">$(user)/config/standard.soe</config:config-item>
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
<config:config-item config:name="MeasureUnit" config:type="short">7</config:config-item>
<config:config-item config:name="PageNumberFormat" config:type="int">4</config:config-item>
<config:config-item config:name="ParagraphSummation" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintQuality" config:type="int">0</config:config-item>
<config:config-item config:name="PrinterIndependentLayout" config:type="string">low-resolution</config:config-item>
<config:config-item config:name="PrinterName" config:type="string">Officejet-7000-E809aCMD</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary">rQH+/09mZmljZWpldC03MDAwLUU4MDlhQ01EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpPZmZpY2VqZXQtNzAwMC1FODA5YUNNRAAAAAAWAAMAzwAAAAAAAAAIAFZUAAAkbQAASm9iRGF0YSAxCnByaW50ZXI9T2ZmaWNlamV0LTcwMDAtRTgwOWFDTUQKb3JpZW50YXRpb249UG9ydHJhaXQKY29waWVzPTEKY29sbGF0ZT1mYWxzZQptYXJnaW5kYWp1c3RtZW50PTAsMCwwLDAKY29sb3JkZXB0aD0yNApwc2xldmVsPTAKcGRmZGV2aWNlPTEKY29sb3JkZXZpY2U9MApQUERDb250ZXhEYXRhCklucHV0U2xvdDpBdXRvAFBhZ2VTaXplOkxldHRlcgAAEgBDT01QQVRfRFVQTEVYX01PREUOAERVUExFWF9VTktOT1dO</config:config-item>
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
<config:config-item config:name="ScaleDenominator" config:type="int">1</config:config-item>
<config:config-item config:name="ScaleNumerator" config:type="int">1</config:config-item>
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
</config:config-item-set>
</office:settings>
<office:scripts>
<office:script script:language="ooo:Basic">
<ooo:libraries xmlns:ooo="http://openoffice.org/2004/office" xmlns:xlink="http://www.w3.org/1999/xlink">
<ooo:library-embedded ooo:name="Standard"/>
</ooo:libraries>
</office:script>
</office:scripts>
<office:font-face-decls>
<style:font-face style:name="Liberation Sans" svg:font-family="'Liberation Sans'" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans1" svg:font-family="'Liberation Sans'" style:font-adornments="Regular" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Serif" svg:font-family="'Liberation Serif'" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans2" svg:font-family="'Liberation Sans'" style:font-adornments="Regular" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans" svg:font-family="'DejaVu Sans'" style:font-family-generic="system" style:font-pitch="variable"/>
<style:font-face style:name="Droid Sans Fallback" svg:font-family="'Droid Sans Fallback'" style:font-family-generic="system" style:font-pitch="variable"/>
<style:font-face style:name="FreeSans" svg:font-family="FreeSans" style:font-family-generic="system" style:font-pitch="variable"/>
<style:font-face style:name="Noto Sans CJK SC Regular" svg:font-family="'Noto Sans CJK SC Regular'" style:font-family-generic="system" style:font-pitch="variable"/>
</office:font-face-decls>
<office:styles>
<draw:gradient draw:name="Gradient_20_2" draw:display-name="Gradient 2" draw:style="linear" draw:start-color="#3465a4" draw:end-color="#ffffff" draw:start-intensity="100%" draw:end-intensity="100%" draw:angle="0" draw:border="0%"/>
<draw:gradient draw:name="Gradient_20_3" draw:display-name="Gradient 3" draw:style="linear" draw:start-color="#3465a4" draw:end-color="#ffffff" draw:start-intensity="100%" draw:end-intensity="100%" draw:angle="0" draw:border="0%"/>
<draw:gradient draw:name="Gradient_20_4" draw:display-name="Gradient 4" draw:style="linear" draw:start-color="#3465a4" draw:end-color="#ffffff" draw:start-intensity="100%" draw:end-intensity="100%" draw:angle="0" draw:border="0%"/>
<draw:hatch draw:name="Hatching_20_1" draw:display-name="Hatching 1" draw:style="single" draw:color="#3465a4" draw:distance="0.02cm" draw:rotation="0"/>
<draw:fill-image draw:name="Bitmape_20_1" draw:display-name="Bitmape 1">
<office:binary-data>iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAADAFBMVEUAAAAAAIAAgAAAgICA
AACAAICAgACAgIDAwMAAAP8A/wAA////AAD/AP///wD///8AAAAzAABmAACZAADMAAD/AAAA
MwAzMwBmMwCZMwDMMwD/MwAAZgAzZgBmZgCZZgDMZgD/ZgAAmQAzmQBmmQCZmQDMmQD/mQAA
zAAzzABmzACZzADMzAD/zAAA/wAz/wBm/wCZ/wDM/wD//wAAADMzADNmADOZADPMADP/ADMA
MzMzMzNmMzOZMzPMMzP/MzMAZjMzZjNmZjOZZjPMZjP/ZjMAmTMzmTNmmTOZmTPMmTP/mTMA
zDMzzDNmzDOZzDPMzDP/zDMA/zMz/zNm/zOZ/zPM/zP//zMAAGYzAGZmAGaZAGbMAGb/AGYA
M2YzM2ZmM2aZM2bMM2b/M2YAZmYzZmZmZmaZZmbMZmb/ZmYAmWYzmWZmmWaZmWbMmWb/mWYA
zGYzzGZmzGaZzGbMzGb/zGYA/2Yz/2Zm/2aZ/2bM/2b//2YAAJkzAJlmAJmZAJnMAJn/AJkA
M5kzM5lmM5mZM5nMM5n/M5kAZpkzZplmZpmZZpnMZpn/ZpkAmZkzmZlmmZmZmZnMmZn/mZkA
zJkzzJlmzJmZzJnMzJn/zJkA/5kz/5lm/5mZ/5nM/5n//5kAAMwzAMxmAMyZAMzMAMz/AMwA
M8wzM8xmM8yZM8zMM8z/M8wAZswzZsxmZsyZZszMZsz/ZswAmcwzmcxmmcyZmczMmcz/mcwA
zMwzzMxmzMyZzMzMzMz/zMwA/8wz/8xm/8yZ/8zM/8z//8wAAP8zAP9mAP+ZAP/MAP//AP8A
M/8zM/9mM/+ZM//MM///M/8AZv8zZv9mZv+ZZv/MZv//Zv8Amf8zmf9mmf+Zmf/Mmf//mf8A
zP8zzP9mzP+ZzP/MzP//zP8A//8z//9m//+Z///M//////8AuP8AAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC4
0k8YAAAAFklEQVR4nGPgJwAYRhWMKhhVMFIVAADLVTwBNA/g8AAAAABJRU5ErkJggg==
</office:binary-data>
</draw:fill-image>
<draw:marker draw:name="Arrow" svg:viewBox="0 0 20 30" svg:d="M10 0l-10 30h20z"/>
<draw:marker draw:name="Circle" svg:viewBox="0 0 1131 1131" svg:d="M462 1118l-102-29-102-51-93-72-72-93-51-102-29-102-13-105 13-102 29-106 51-102 72-89 93-72 102-50 102-34 106-9 101 9 106 34 98 50 93 72 72 89 51 102 29 106 13 102-13 105-29 102-51 102-72 93-93 72-98 51-106 29-101 13z"/>
<draw:stroke-dash draw:name="Dashed_20__28_var_29_" draw:display-name="Dashed (var)" draw:style="rect" draw:dots1="1" draw:dots1-length="197%" draw:distance="127%"/>
<draw:stroke-dash draw:name="Dashed_20__28_var_29__20_1" draw:display-name="Dashed (var) 1" draw:style="rect" draw:dots1="1" draw:dots1-length="0.02cm" draw:dots2="1" draw:dots2-length="0.02cm" draw:distance="0.02cm"/>
<draw:stroke-dash draw:name="Ultrafine_20_Dashed" draw:display-name="Ultrafine Dashed" draw:style="rect" draw:dots1="1" draw:dots1-length="0.051cm" draw:dots2="1" draw:dots2-length="0.051cm" draw:distance="0.051cm"/>
<style:default-style style:family="graphic">
<style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap"/>
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:punctuation-wrap="simple" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:use-window-font-color="true" style:font-name="Liberation Serif" fo:font-size="24pt" fo:language="en" fo:country="US" style:font-name-asian="DejaVu Sans" style:font-size-asian="24pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans" style:font-size-complex="24pt" style:language-complex="hi" style:country-complex="IN"/>
</style:default-style>
<style:style style:name="standard" style:family="graphic">
<style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_1" svg:stroke-width="0.051cm" svg:stroke-color="#000000" draw:marker-start-width="0.279cm" draw:marker-start-center="false" draw:marker-end-width="0.279cm" draw:marker-end-center="false" draw:fill="none" draw:fill-color="#729fcf" draw:fill-image-width="0cm" draw:fill-image-height="0cm" draw:textarea-horizontal-align="justify" fo:padding-top="0.125cm" fo:padding-bottom="0.125cm" fo:padding-left="0.25cm" fo:padding-right="0.25cm" draw:shadow="hidden" draw:shadow-offset-x="0.2cm" draw:shadow-offset-y="0.2cm" draw:shadow-color="#808080">
<text:list-style style:name="standard">
<text:list-level-style-bullet text:level="1" text:bullet-char="●">
<style:list-level-properties text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="2" text:bullet-char="●">
<style:list-level-properties text:space-before="0.6cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="3" text:bullet-char="●">
<style:list-level-properties text:space-before="1.2cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="4" text:bullet-char="●">
<style:list-level-properties text:space-before="1.8cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="5" text:bullet-char="●">
<style:list-level-properties text:space-before="2.4cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="6" text:bullet-char="●">
<style:list-level-properties text:space-before="3cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="7" text:bullet-char="●">
<style:list-level-properties text:space-before="3.6cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="8" text:bullet-char="●">
<style:list-level-properties text:space-before="4.2cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="9" text:bullet-char="●">
<style:list-level-properties text:space-before="4.8cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="10" text:bullet-char="●">
<style:list-level-properties text:space-before="5.4cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
</text:list-style>
</style:graphic-properties>
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0cm" fo:margin-bottom="0cm" fo:line-height="100%" fo:text-indent="0cm"/>
<style:text-properties fo:font-variant="normal" fo:text-transform="none" style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans" fo:font-family="'Liberation Sans'" style:font-family-generic="roman" style:font-pitch="variable" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:letter-kerning="true" style:font-name-asian="Droid Sans Fallback" style:font-family-asian="'Droid Sans Fallback'" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-size-asian="18pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="FreeSans" style:font-family-complex="FreeSans" style:font-family-generic-complex="system" style:font-pitch-complex="variable" style:font-size-complex="18pt" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="objectwitharrow" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="solid" svg:stroke-width="0.15cm" svg:stroke-color="#000000" draw:marker-start="Arrow" draw:marker-start-width="0.7cm" draw:marker-start-center="true" draw:marker-end-width="0.3cm"/>
</style:style>
<style:style style:name="objectwithshadow" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:shadow="visible" draw:shadow-offset-x="0.2cm" draw:shadow-offset-y="0.2cm" draw:shadow-color="#808080"/>
</style:style>
<style:style style:name="objectwithoutfill" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties svg:stroke-color="#000000" draw:marker-start-width="0.203cm" draw:fill="none" draw:fill-gradient-name="Gradient_20_4" draw:fill-hatch-name="Hatching_20_1" draw:fill-image-name="Bitmape_20_1"/>
</style:style>
<style:style style:name="Object_20_with_20_no_20_fill_20_and_20_no_20_line" style:display-name="Object with no fill and no line" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="none"/>
</style:style>
<style:style style:name="text" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="none"/>
</style:style>
<style:style style:name="textbody" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="none"/>
<style:text-properties fo:font-size="16pt"/>
</style:style>
<style:style style:name="textbodyjustfied" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="none"/>
<style:paragraph-properties fo:text-align="justify"/>
</style:style>
<style:style style:name="textbodyindent" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-indent="0.6cm"/>
</style:style>
<style:style style:name="title" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="none" draw:textarea-vertical-align="middle" draw:auto-grow-height="false"/>
<style:paragraph-properties fo:text-align="center"/>
<style:text-properties fo:font-size="14pt"/>
</style:style>
<style:style style:name="title1" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="solid" draw:fill-color="#008080" draw:shadow="visible" draw:shadow-offset-x="0.2cm" draw:shadow-offset-y="0.2cm" draw:shadow-color="#808080"/>
<style:paragraph-properties fo:text-align="center"/>
<style:text-properties fo:font-size="24pt"/>
</style:style>
<style:style style:name="title2" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties svg:stroke-width="0.05cm" draw:fill-color="#ffcc99" draw:shadow="visible" draw:shadow-offset-x="0.2cm" draw:shadow-offset-y="0.2cm" draw:shadow-color="#808080"/>
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0.2cm" fo:margin-top="0.1cm" fo:margin-bottom="0.1cm" fo:text-align="center" fo:text-indent="0cm"/>
<style:text-properties fo:font-size="36pt"/>
</style:style>
<style:style style:name="headline" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="none"/>
<style:paragraph-properties fo:margin-top="0.42cm" fo:margin-bottom="0.21cm"/>
<style:text-properties fo:font-size="24pt"/>
</style:style>
<style:style style:name="headline1" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="none"/>
<style:paragraph-properties fo:margin-top="0.42cm" fo:margin-bottom="0.21cm"/>
<style:text-properties fo:font-size="18pt" fo:font-weight="bold"/>
</style:style>
<style:style style:name="headline2" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="none"/>
<style:paragraph-properties fo:margin-top="0.42cm" fo:margin-bottom="0.21cm"/>
<style:text-properties fo:font-size="14pt" fo:font-style="italic" fo:font-weight="bold"/>
</style:style>
<style:style style:name="measure" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="solid" svg:stroke-color="#000000" draw:marker-start="Arrow" draw:marker-start-width="0.2cm" draw:marker-end="Arrow" draw:marker-end-width="0.2cm" draw:fill="none" draw:show-unit="true"/>
<style:text-properties fo:font-size="12pt"/>
</style:style>
<style:style style:name="Title_20_Box" style:display-name="Title Box" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:textarea-vertical-align="middle" draw:auto-grow-height="false"/>
<style:paragraph-properties fo:text-align="center"/>
<style:text-properties fo:font-size="14pt"/>
</style:style>
<style:style style:name="Boxed_20_Text" style:display-name="Boxed Text" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:auto-grow-height="false"/>
</style:style>
<style:style style:name="Unboxed_20_Text" style:display-name="Unboxed Text" style:family="graphic" style:parent-style-name="Boxed_20_Text">
<style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_1" svg:stroke-width="0.051cm" svg:stroke-color="#ffffff" draw:marker-start-width="0.279cm" draw:marker-start-center="false" draw:marker-end-width="0.279cm" draw:marker-end-center="false" svg:stroke-opacity="100%" draw:stroke-linejoin="round" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#ffffff" draw:secondary-fill-color="#729fcf" draw:gradient-step-count="0" draw:fill-hatch-solid="false" draw:opacity="100%" draw:fill-image-width="0cm" draw:fill-image-height="0cm" style:repeat="repeat" draw:fill-image-ref-point-x="0%" draw:fill-image-ref-point-y="0%" draw:fill-image-ref-point="center" draw:tile-repeat-offset="0% vertical" draw:textarea-horizontal-align="justify" draw:textarea-vertical-align="top" draw:auto-grow-height="false" draw:auto-grow-width="true" draw:fit-to-size="false" draw:fit-to-contour="false" fo:max-height="0cm" fo:max-width="0cm" fo:min-height="0cm" fo:min-width="0cm" fo:padding-top="0.125cm" fo:padding-bottom="0.125cm" fo:padding-left="0.25cm" fo:padding-right="0.25cm" fo:wrap-option="no-wrap" draw:shadow="hidden" draw:shadow-offset-x="0.2cm" draw:shadow-offset-y="0.2cm" draw:shadow-color="#808080" draw:shadow-opacity="100%" text:animation="none" text:animation-direction="left" text:animation-start-inside="false" text:animation-stop-inside="false" text:animation-repeat="0" text:animation-delay="P0D" text:animation-steps="0cm">
<text:list-style style:name="Unboxed_20_Text" style:display-name="Unboxed Text">
<text:list-level-style-bullet text:level="1" text:bullet-char="●">
<style:list-level-properties text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="2" text:bullet-char="●">
<style:list-level-properties text:space-before="0.6cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="3" text:bullet-char="●">
<style:list-level-properties text:space-before="1.2cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="4" text:bullet-char="●">
<style:list-level-properties text:space-before="1.8cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="5" text:bullet-char="●">
<style:list-level-properties text:space-before="2.4cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="6" text:bullet-char="●">
<style:list-level-properties text:space-before="3cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="7" text:bullet-char="●">
<style:list-level-properties text:space-before="3.6cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="8" text:bullet-char="●">
<style:list-level-properties text:space-before="4.2cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="9" text:bullet-char="●">
<style:list-level-properties text:space-before="4.8cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="10" text:bullet-char="●">
<style:list-level-properties text:space-before="5.4cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
</text:list-style>
</style:graphic-properties>
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0cm" fo:margin-bottom="0cm" fo:line-height="100%" fo:text-align="start" fo:text-indent="0cm" style:text-autospace="ideograph-alpha" style:punctuation-wrap="simple" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties fo:font-variant="normal" fo:text-transform="none" style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Liberation Sans2" fo:font-family="'Liberation Sans'" style:font-style-name="Regular" style:font-family-generic="swiss" style:font-pitch="variable" fo:font-size="9pt" fo:letter-spacing="normal" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:letter-kerning="true" style:font-name-asian="Droid Sans Fallback" style:font-family-asian="'Droid Sans Fallback'" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-size-asian="18pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="FreeSans" style:font-family-complex="FreeSans" style:font-family-generic-complex="system" style:font-pitch-complex="variable" style:font-size-complex="18pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:text-scale="100%" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color" fo:hyphenate="false"/>
</style:style>
<style:style style:name="Small_20_Unboxed_20_Text" style:display-name="Small Unboxed Text" style:family="graphic" style:parent-style-name="Unboxed_20_Text">
<style:graphic-properties draw:stroke="none" draw:fill="none"/>
<style:text-properties fo:font-size="7pt"/>
</style:style>
<style:style style:name="Switch_20_Label" style:display-name="Switch Label" style:family="graphic" style:parent-style-name="Boxed_20_Text">
<style:graphic-properties svg:stroke-width="0cm" draw:marker-start-width="0.203cm" draw:marker-end-width="0.203cm" draw:fill="solid" draw:fill-color="#ffffff" draw:fill-gradient-name="Gradient_20_2" draw:fill-hatch-name="Hatching_20_1" draw:fill-image-name="Bitmape_20_1" draw:shadow="visible" draw:shadow-offset-x="0.051cm" draw:shadow-offset-y="0.051cm"/>
</style:style>
<style:style style:name="Wire_20_Label_20_Text" style:display-name="Wire Label Text" style:family="graphic" style:parent-style-name="Boxed_20_Text">
<style:graphic-properties svg:stroke-color="#009900" draw:fill-gradient-name="Gradient_20_3" draw:fill-hatch-name="Hatching_20_1" draw:fill-image-name="Bitmape_20_1"/>
<style:text-properties fo:color="#009900"/>
</style:style>
</office:styles>
<office:automatic-styles>
<style:page-layout style:name="PM0">
<style:page-layout-properties fo:margin-top="0.635cm" fo:margin-bottom="0.635cm" fo:margin-left="0.635cm" fo:margin-right="0.635cm" fo:page-width="43.18cm" fo:page-height="27.94cm" style:print-orientation="landscape"/>
</style:page-layout>
<style:style style:name="dp1" style:family="drawing-page">
<style:drawing-page-properties draw:background-size="border" draw:fill="none"/>
</style:style>
<style:style style:name="dp2" style:family="drawing-page"/>
<number:date-style style:name="D1" number:automatic-order="true">
<number:day number:style="long"/>
<number:text>.</number:text>
<number:month number:style="long"/>
<number:text>.</number:text>
<number:year number:style="long"/>
</number:date-style>
<style:style style:name="gr1" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:textarea-vertical-align="middle" draw:auto-grow-height="false"/>
</style:style>
<style:style style:name="gr2" style:family="graphic" style:parent-style-name="Boxed_20_Text">
<style:graphic-properties draw:textarea-vertical-align="middle" style:protect="size"/>
</style:style>
<style:style style:name="gr3" style:family="graphic" style:parent-style-name="Boxed_20_Text">
<style:graphic-properties draw:textarea-vertical-align="middle"/>
</style:style>
<style:style style:name="gr4" style:family="graphic" style:parent-style-name="Title_20_Box">
<style:graphic-properties fo:min-height="2.29cm" fo:min-width="7.12cm"/>
</style:style>
<style:style style:name="gr5" style:family="graphic" style:parent-style-name="Object_20_with_20_no_20_fill_20_and_20_no_20_line">
<style:graphic-properties draw:stroke="none" draw:fill="none" draw:textarea-vertical-align="middle" draw:color-mode="standard" draw:luminance="0%" draw:contrast="0%" draw:gamma="100%" draw:red="0%" draw:green="0%" draw:blue="0%" fo:clip="rect(0cm, 0cm, 0cm, 0cm)" draw:image-opacity="100%" style:mirror="none"/>
</style:style>
<style:style style:name="gr6" style:family="graphic" style:parent-style-name="Boxed_20_Text">
<style:graphic-properties svg:stroke-color="#009900" draw:auto-grow-width="true" fo:min-height="0cm" fo:min-width="6.06cm"/>
</style:style>
<style:style style:name="gr7" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:fill="solid" draw:fill-color="#dddddd" draw:textarea-vertical-align="middle" draw:auto-grow-height="false"/>
</style:style>
<style:style style:name="gr8" style:family="graphic" style:parent-style-name="Small_20_Unboxed_20_Text">
<style:graphic-properties draw:auto-grow-width="true" fo:min-height="0cm" fo:min-width="0.658cm"/>
</style:style>
<style:style style:name="gr9" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:textarea-vertical-align="middle"/>
</style:style>
<style:style style:name="gr10" style:family="graphic" style:parent-style-name="Unboxed_20_Text">
<style:graphic-properties fo:min-width="1.649cm"/>
</style:style>
<style:style style:name="gr11" style:family="graphic" style:parent-style-name="objectwithoutfill">
<style:graphic-properties draw:fill="none" draw:textarea-vertical-align="middle"/>
</style:style>
<style:style style:name="gr12" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties svg:stroke-color="#990000" draw:textarea-horizontal-align="justify" draw:textarea-vertical-align="middle" draw:auto-grow-height="false"/>
</style:style>
<style:style style:name="gr13" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties svg:stroke-width="0cm" svg:stroke-color="#990000" draw:marker-start-width="0.203cm" draw:marker-end-width="0.203cm" draw:textarea-horizontal-align="justify" draw:textarea-vertical-align="middle" draw:auto-grow-height="false" fo:padding-top="0.1cm" fo:padding-bottom="0.1cm" fo:padding-left="0.225cm" fo:padding-right="0.225cm"/>
</style:style>
<style:style style:name="gr14" style:family="graphic" style:parent-style-name="Small_20_Unboxed_20_Text">
<style:graphic-properties fo:min-width="0.451cm"/>
</style:style>
<style:style style:name="gr15" style:family="graphic" style:parent-style-name="Small_20_Unboxed_20_Text">
<style:graphic-properties fo:min-width="0.701cm"/>
</style:style>
<style:style style:name="gr16" style:family="graphic" style:parent-style-name="Small_20_Unboxed_20_Text">
<style:graphic-properties fo:min-width="0.679cm"/>
</style:style>
<style:style style:name="gr17" style:family="graphic" style:parent-style-name="Small_20_Unboxed_20_Text">
<style:graphic-properties fo:min-width="0.603cm"/>
</style:style>
<style:style style:name="gr18" style:family="graphic" style:parent-style-name="Small_20_Unboxed_20_Text">
<style:graphic-properties fo:min-width="0.137cm"/>
</style:style>
<style:style style:name="gr19" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:textarea-horizontal-align="justify" draw:textarea-vertical-align="middle" draw:auto-grow-height="false"/>
</style:style>
<style:style style:name="gr20" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" svg:stroke-color="#000000" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-horizontal-align="left" draw:auto-grow-height="true" draw:auto-grow-width="true" fo:min-height="0.357cm" fo:min-width="0.425cm"/>
</style:style>
<style:style style:name="gr21" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:marker-start="" draw:marker-start-width="0.3cm" draw:marker-end="Circle" draw:marker-end-width="0.3cm" draw:textarea-vertical-align="middle"/>
</style:style>
<style:style style:name="gr22" style:family="graphic" style:parent-style-name="Unboxed_20_Text">
<style:graphic-properties fo:min-width="2.415cm"/>
</style:style>
<style:style style:name="gr23" style:family="graphic" style:parent-style-name="Unboxed_20_Text">
<style:graphic-properties fo:min-width="1.492cm"/>
</style:style>
<style:style style:name="gr24" style:family="graphic" style:parent-style-name="Unboxed_20_Text">
<style:graphic-properties fo:min-width="1.242cm"/>
</style:style>
<style:style style:name="gr25" style:family="graphic" style:parent-style-name="objectwithoutfill">
<style:graphic-properties draw:stroke="dash" draw:stroke-dash="Dashed_20__28_var_29_" svg:stroke-color="#6666ff" draw:fill="none" draw:textarea-vertical-align="middle"/>
</style:style>
<style:style style:name="gr26" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="solid" draw:fill-color="#ffffff" draw:textarea-horizontal-align="justify" draw:textarea-vertical-align="middle" draw:auto-grow-height="false"/>
</style:style>
<style:style style:name="gr27" style:family="graphic" style:parent-style-name="objectwithoutfill">
<style:graphic-properties svg:stroke-width="0.152cm" draw:marker-start-width="0.43cm" draw:marker-end-width="0.43cm" draw:fill="none" draw:textarea-vertical-align="middle" fo:padding-top="0.175cm" fo:padding-bottom="0.175cm" fo:padding-left="0.3cm" fo:padding-right="0.3cm"/>
</style:style>
<style:style style:name="gr28" style:family="graphic" style:parent-style-name="objectwithoutfill">
<style:graphic-properties draw:fill="solid" draw:fill-color="#ffffff" draw:textarea-vertical-align="middle"/>
</style:style>
<style:style style:name="gr29" style:family="graphic" style:parent-style-name="objectwithoutfill">
<style:graphic-properties draw:stroke="dash" draw:stroke-dash="Dashed_20__28_var_29_" draw:fill="none" draw:textarea-vertical-align="middle"/>
</style:style>
<style:style style:name="gr30" style:family="graphic" style:parent-style-name="Unboxed_20_Text">
<style:graphic-properties fo:min-width="1.844cm"/>
</style:style>
<style:style style:name="gr31" style:family="graphic" style:parent-style-name="Unboxed_20_Text">
<style:graphic-properties fo:min-width="2.161cm"/>
</style:style>
<style:style style:name="gr32" style:family="graphic" style:parent-style-name="Unboxed_20_Text">
<style:graphic-properties fo:min-width="2.144cm"/>
</style:style>
<style:style style:name="gr33" style:family="graphic" style:parent-style-name="Unboxed_20_Text">
<style:graphic-properties fo:min-width="2.042cm"/>
</style:style>
<style:style style:name="gr34" style:family="graphic" style:parent-style-name="Wire_20_Label_20_Text">
<style:graphic-properties draw:auto-grow-width="true" fo:min-height="0cm" fo:min-width="1.75cm"/>
</style:style>
<style:style style:name="gr35" style:family="graphic" style:parent-style-name="Wire_20_Label_20_Text">
<style:graphic-properties draw:fill="solid" draw:fill-color="#ffffff" draw:auto-grow-width="true" fo:min-height="0cm" fo:min-width="1.75cm"/>
</style:style>
<style:style style:name="gr36" style:family="graphic" style:parent-style-name="Wire_20_Label_20_Text">
<style:graphic-properties draw:auto-grow-width="true" fo:min-height="0cm" fo:min-width="1.767cm"/>
</style:style>
<style:style style:name="gr37" style:family="graphic" style:parent-style-name="Wire_20_Label_20_Text">
<style:graphic-properties draw:fill="solid" draw:fill-color="#ffffff" draw:auto-grow-width="true" fo:min-height="0cm" fo:min-width="1.767cm"/>
</style:style>
<style:style style:name="gr38" style:family="graphic" style:parent-style-name="Wire_20_Label_20_Text">
<style:graphic-properties draw:auto-grow-width="true" fo:min-height="0cm" fo:min-width="1.733cm"/>
</style:style>
<style:style style:name="gr39" style:family="graphic" style:parent-style-name="Wire_20_Label_20_Text">
<style:graphic-properties draw:auto-grow-width="true" fo:min-height="0cm" fo:min-width="1.784cm"/>
</style:style>
<style:style style:name="gr40" style:family="graphic" style:parent-style-name="Wire_20_Label_20_Text">
<style:graphic-properties draw:auto-grow-width="true" fo:min-height="0cm" fo:min-width="1.391cm"/>
</style:style>
<style:style style:name="gr41" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="dash" draw:stroke-dash="Ultrafine_20_Dashed" svg:stroke-color="#009900" draw:textarea-horizontal-align="justify" draw:textarea-vertical-align="middle" draw:auto-grow-height="false"/>
</style:style>
<style:style style:name="gr42" style:family="graphic" style:parent-style-name="objectwithoutfill">
<style:graphic-properties draw:stroke="dash" draw:stroke-dash="Ultrafine_20_Dashed" svg:stroke-color="#009900" draw:fill="none" draw:textarea-vertical-align="middle"/>
</style:style>
<style:style style:name="gr43" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:marker-start="Circle" draw:marker-start-width="0.203cm" draw:textarea-vertical-align="middle" draw:shadow="hidden" draw:shadow-offset-x="0.203cm" draw:shadow-offset-y="0.203cm"/>
</style:style>
<style:style style:name="gr44" style:family="graphic" style:parent-style-name="objectwithoutfill">
<style:graphic-properties draw:marker-start="Circle" draw:fill="none" draw:textarea-vertical-align="middle"/>
</style:style>
<style:style style:name="gr45" style:family="graphic" style:parent-style-name="Switch_20_Label">
<style:graphic-properties draw:auto-grow-width="true" fo:min-height="0cm" fo:min-width="0.946cm"/>
</style:style>
<style:style style:name="P1" style:family="paragraph">
<style:paragraph-properties fo:text-align="center"/>
</style:style>
<style:style style:name="P2" style:family="paragraph">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:text-align="center"/>
</style:style>
<style:style style:name="P3" style:family="paragraph">
<style:text-properties fo:color="#009900"/>
</style:style>
<style:style style:name="P4" style:family="paragraph">
<loext:graphic-properties draw:fill="solid" draw:fill-color="#dddddd"/>
<style:paragraph-properties fo:text-align="center"/>
</style:style>
<style:style style:name="P5" style:family="paragraph">
<loext:graphic-properties draw:fill="none" draw:fill-color="#ffffff"/>
</style:style>
<style:style style:name="P6" style:family="paragraph">
<style:text-properties fo:color="#6666ff"/>
</style:style>
<style:style style:name="P7" style:family="paragraph">
<loext:graphic-properties draw:fill="solid" draw:fill-color="#ffffff"/>
<style:paragraph-properties fo:text-align="center"/>
</style:style>
<style:style style:name="P8" style:family="paragraph">
<loext:graphic-properties draw:fill="solid" draw:fill-color="#ffffff"/>
</style:style>
<style:style style:name="T1" style:family="text">
<style:text-properties fo:color="#009900"/>
</style:style>
<style:style style:name="T2" style:family="text">
<style:text-properties fo:color="#6666ff"/>
</style:style>
<text:list-style style:name="L1">
<text:list-level-style-bullet text:level="1" text:bullet-char="●">
<style:list-level-properties text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="2" text:bullet-char="●">
<style:list-level-properties text:space-before="0.6cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="3" text:bullet-char="●">
<style:list-level-properties text:space-before="1.2cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="4" text:bullet-char="●">
<style:list-level-properties text:space-before="1.8cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="5" text:bullet-char="●">
<style:list-level-properties text:space-before="2.4cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="6" text:bullet-char="●">
<style:list-level-properties text:space-before="3cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="7" text:bullet-char="●">
<style:list-level-properties text:space-before="3.6cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="8" text:bullet-char="●">
<style:list-level-properties text:space-before="4.2cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="9" text:bullet-char="●">
<style:list-level-properties text:space-before="4.8cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="10" text:bullet-char="●">
<style:list-level-properties text:space-before="5.4cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
</text:list-style>
</office:automatic-styles>
<office:master-styles>
<draw:layer-set>
<draw:layer draw:name="layout"/>
<draw:layer draw:name="background"/>
<draw:layer draw:name="backgroundobjects"/>
<draw:layer draw:name="controls"/>
<draw:layer draw:name="measurelines"/>
</draw:layer-set>
<style:master-page style:name="Default" style:page-layout-name="PM0" draw:style-name="dp1">
<draw:custom-shape draw:style-name="gr1" draw:text-style-name="P1" draw:layer="backgroundobjects" svg:width="38.1cm" svg:height="25.4cm" svg:x="2.54cm" svg:y="1.27cm">
<text:p/>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
<draw:g>
<draw:custom-shape draw:style-name="gr2" draw:text-style-name="P1" draw:layer="backgroundobjects" svg:width="3.81cm" svg:height="0.635cm" svg:x="33.02cm" svg:y="24.13cm">
<text:p text:style-name="P1">Drawing #</text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
<draw:custom-shape draw:style-name="gr2" draw:text-style-name="P1" draw:layer="backgroundobjects" svg:width="3.81cm" svg:height="0.635cm" svg:x="33.02cm" svg:y="24.765cm">
<text:p text:style-name="P1">Modified</text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
<draw:custom-shape draw:style-name="gr2" draw:text-style-name="P1" draw:layer="backgroundobjects" svg:width="3.81cm" svg:height="0.635cm" svg:x="33.02cm" svg:y="25.4cm">
<text:p text:style-name="P1">Created</text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
<draw:custom-shape draw:style-name="gr2" draw:text-style-name="P1" draw:layer="backgroundobjects" svg:width="3.81cm" svg:height="0.635cm" svg:x="33.02cm" svg:y="26.035cm">
<text:p text:style-name="P1">Drawn By</text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
<draw:custom-shape draw:style-name="gr2" draw:text-style-name="P1" draw:layer="backgroundobjects" svg:width="3.81cm" svg:height="0.635cm" svg:x="36.83cm" svg:y="24.13cm">
<text:p text:style-name="P1">LIGHTS-2</text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
<draw:custom-shape draw:style-name="gr2" draw:text-style-name="P1" draw:layer="backgroundobjects" svg:width="3.81cm" svg:height="0.635cm" svg:x="36.83cm" svg:y="24.765cm">
<text:p text:style-name="P1"><text:date style:data-style-name="D1" text:date-value="2017-12-07">12/7/17</text:date></text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
<draw:custom-shape draw:style-name="gr2" draw:text-style-name="P1" draw:layer="backgroundobjects" svg:width="3.81cm" svg:height="0.635cm" svg:x="36.83cm" svg:y="25.4cm">
<text:p text:style-name="P1"><text:date style:data-style-name="D1" text:date-value="2016-07-24" text:fixed="true">7/24/16</text:date></text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
<draw:custom-shape draw:style-name="gr2" draw:text-style-name="P1" draw:layer="backgroundobjects" svg:width="3.81cm" svg:height="0.635cm" svg:x="36.83cm" svg:y="26.035cm">
<text:p text:style-name="P1">Art Zemon</text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
<draw:custom-shape draw:style-name="gr3" draw:text-style-name="P1" draw:layer="backgroundobjects" svg:width="15.24cm" svg:height="0.762cm" svg:x="25.4cm" svg:y="23.368cm">
<text:p text:style-name="P1">Bede BD-4C N114AC</text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
<draw:custom-shape draw:style-name="gr4" draw:layer="backgroundobjects" svg:width="7.62cm" svg:height="2.54cm" svg:x="25.4cm" svg:y="24.13cm">
<text:p>Landing & Taxi Lights</text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
</draw:g>
</style:master-page>
</office:master-styles>
<office:body>
<office:drawing>
<draw:page draw:name="page1" draw:style-name="dp2" draw:master-page-name="Default">
<draw:frame draw:style-name="gr5" draw:text-style-name="P2" draw:layer="measurelines" svg:width="13.961cm" svg:height="9.726cm" svg:x="2.748cm" svg:y="16.666cm">
<draw:image xlink:href="">
<office:binary-data>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
+XaoeDzJjzlva+V58nw/33hnlwoAAAAAAAAAAAAAAACceE/DONaaKlGaJoqnI8UWlBlZSGag
OJoq0SxM41pNzX8uwjVBra7q2pqWtq6rstJSdXlJpUZV08lIg/19VxFncX//ZI558Gc8doGc
eDxSMpmFgPwgcOvy5lsAAAAAAAAAAAAAAADged7TME6qNI2VJJGSqVWs6Snq52PUn4VxXNUc
nbSmsnBOOt/6tZpq6+uu5VR1fVXVjRWVW3UXxOncvX+yfxHoMa7eTf6LVcFxYRwL/Vj1nclE
aRS5fQLfv9BrAAAAAAAAAAAAAAAAgA/P+xnGsbZRk4niyUi9p9vqPn6sXj72v/5Gw/19efMw
TtE0ytOzKjm+78sPQwWlssJKRaVKVaVqTWG5/KzCzXzfos2VzRYnsYaHR2rfu+eeb62q0ih2
1XIqS8uqLi+7+wEAAAAAAAAAAAAAAIAXeS/TJVkUKxmOFfV66j54pJ1/+zc3ug8fa7C9Iz9N
3X6LYRz/zHZ2v5f/7ivIb/bT8/YvWlZFcaL+/p6V5dG001U0GMzCOGmi1rVrs2BPvX5BVwAA
AAAAAAAAAAAAAAAfovcyjJPGieLhSFGnp+79R9r+lz/rh//3/1MyGMhLYvlZdmr/ojKOeV4Y
p7h580cW9z9pWRXH6u/ta3x4pMHTp0rz43hWZadcckGc2tr6z33aAAAAAAAAAAAAAAAA+MC9
N2GceDxWNBopHg3V3561puo+eqSdf/8y3z5W3OspjaKTsM1ioKa6sjwfK2peu6ba2qr80M/n
HGl4eKBJtysvLGn108/kV2sa7O25MTo6clVxinmsPVacj3G/r97OjsJ6XVmWKh6O83WNNT4+
dseoLC+r3Gi8i8sEAAAAAAAAAAAAAACA99h7FcYZHR5osL+vo++/1/433+jgm2/VffzIhXO8
JDlpK2VNqnw9q4JTW1/T6qcfuxFWagqrNQVB4FpNTTodpXGsoFbX+l/8hTb++Edt/8u/KPnz
n9U/OjoJ9fgLc0f5sQb7B8rSVNNuV5N21wVx7L7VT/LjfPwxYRwAAAAAAAAAAAAAAAD8yHsT
xrGqOMODA7Uf3NfuV1/pyT/9s5788z/PW1Ml8tPU7Ve0lSoEsjDOutZ/+7mu/Zf/U3F/pGgw
yrdDjTsDDQ+PNOn1dfmv/lIbX3yhlY8/ds9vb28r+eYb93wb/nxeO0ocxxrkaxkfHWnw+IlG
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
ql/aVHVjwwVgxkdH8suVU2Ecf/6FuAVnLETTunZNlVZLzc3N/Hh9te/fd1VtfGuFdapKhU5a
as2COMns53zmoGKhni01r1xRlmauRZex8I1Vyik16grydfj5vJ5HayrgvWV/usF82CfiW/65
ng3jFDcLTjSChhqlhgvjWMUTqwZjrZys9ZCFS2y/twniLB73bICkuN+Ob2Eca+VUK9X0+ern
+sPmH7S1tPWswoq8k1BI8Xtxnzl7v1WwsdCItb160nuiw/Gh7nbuapSMXBDHqtZYS76aVztp
zfeigEtRJeaVYSRPLoxj1WHs2lkYJ/MyV2nHAjnjdOyGhZ6sjdXbhFUWX8NXBXJcGCc/9ige
uao4RWsyCyQtV5e1UlnRem1dl2qX3LC2YM+7lovX+P7xff3HwX/o7uCuq8zj1uPNKgtZEMfa
p7nn+m93fgAAAAAAAAAAAAAuxoWEcaxCjI3G5uap++PhUNN+X1G/51pATXt9jQ4ONWl3XXsq
pdnJV6FFVRzNt+VGXc3NS1r7+LbKS8sqWSuppSV3HC8M5xV1PJ185ekF8v1AQbms+tqaG7XV
Ve1//bULC7l2H8VYlFlblChf31jTwcC1zxq3264dVTV/fm1lddamCsCHq0j6/cQiVicVTzx/
VvXGL6lVbmmjuqH16roL5FiA5UH3gVarq25YUNBCJRaa8d8yuOeduS3eb6ENCwHZsa06zrXG
NX2y+olur9x+6/Ms2kxZRRgLnzzqP5q1z8rvc+25Og/d72u1Nfk13x3fluWfSTq9aN0vYmEi
C/ss15bVqrXctbPQil1TW0u9nP+7EDbdNbdQzpt6k/VY5Ro736PRkZ72nro2V+1x253nhr+h
leqKrjavaqu55YZVynkVa6243dt27wMLPFmrK6suZIEmC22F+b9tS+UlNUvNtzo/AAAAAAAA
AAAAABfjQsI4LzIZDNTbfqLuk8dq372n4zs/6OjO9/l92xq2jxWnyUlFnKIGgIVsrOpNmt+Z
FmVyFr5EL75TD9zPRfOP5FQLlkWL+7t5dbodVpqmmvT7yvb2lViRHN9XNB5rfHSstc8+U/BZ
iTAO8CErPlTi+XbxA+eNpik+bRIXnqiWqi44cnPppj5f+1yfrX6WHyLW0/5T3e/dd79/tvaZ
21qFnFpQc2GLtz1ucVustFKs50Wff2/LgkZWbUdV6XrrumujZAGY7rirzrCjv7/797q+dF2/
u/Q7/ebSb6SyVAkqLjzzvLW/7hqt0szHax/r1uotVbyKC6RYhZ7t/rarynM0PtJWa0s3mjfU
CN/8c7m4hsV6XsaO+/3R9/p6/2sdDg/zfxsyXapfclVxLIRzrXlNG/UNF56x6/U6LJz12fpn
7jpZEMeq7tjcFvwZxrMA1NXGVTe/nd/bVlMCAAAAAAAAAAAA8PN6p2Gc6XCgzvZT7X37Hzq+
87063991Y9ztajIaKUlnX4YWWRv7mrYIy1gYJytSNK8I4yTuS96Xh3FsJHr2vfzJMZNE435f
k+lU49FQ0WTsWmFN221XZad59aoaly//bNcIwM+s+GCJ5+Mt21Q9L4zTqrZccOQvr/2l/vO1
/6x/3f1X/a/t/6U/Pf2TOlsdVw3ncu2yC6uUKqWffNzszO3nCOIYq7ZjVWqsaov93Cg3XCjn
672v9S9P/kX//OSf9dHqR64izrXWNbe1cz17bd9knRY8Wa+v6/P1z/XHK39Ue9R2wwJAVp3H
WmVZKMemWC2v6nLjzT+XF9fyqvVYGOeHox/0Px7+D/fzp+uf6pP1T3Rj6YYuNy/rSuOKWpXW
LIT0mi2lrJqOBbRs7ffb9/Xt0bd63H2sXtRTZ9rR/mjfBUStytHV+tWfXMkJAAAAAAAAAAAA
wM/jwsM4yXTqWlJZ26fu4yc6vndfB99+p/YPd9V/8FC9x48VR9FJlZoiFOMCM7Wagnpdfj7q
m5uuLZVfLskLA3n+s28lnxXLmTWretFXqp7vq9xoqHFpQ0tb11zoZtTrazoayUsS6xmiNMuU
TCZK82H3Z5Opok5H2TRSbWNDjStXFFobrnxNNiygA+C0121D9HOy6i3WOsna/1hLo1E0cvdZ
K6mV8opr32SPW4imVq65lkeTZKKd/o4LZtTCmms1ZC2EinPxzrS1K8IlFsaxoIoFVjYaG7q1
cku/v/x77Qx3FOwGroJLb9LTOBorSRMlWaIse7vAzNkAzoseP09WucVu5aDshlXFuVy/rP3e
vmth9e3Bt+7a/vbSb9052s92ni9a/+uy41hVmE/XPtV2d1t+5iuKI/f6xEmsYX6z19Cu55ta
vIanKgxlz+63Y1i1GhtPuk/ce2N/sO8eqwZVF8CxMI5V8LGqOFbx6E1YqMnGleYV137rfue+
C/ookqv804/6rt2ZvXfP+zUFAAAAAAAAAAAAcH4uPIwzbnfUefg4H4909P33Ovz+O7W/v6fB
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