-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtipos.llano
948 lines (889 loc) · 105 KB
/
tipos.llano
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
An baseline es un número.
An ABC puntero es un puntero to un ABC.
An abcA es un número.
An abcC es un número.
An absolute position es un número.
An AddrInfoPtr es un puntero to un AddrInfo.
An alignment es un string [center, left, or right].
An amount es un número.
An anchor es un position.
An and-mask es un mask.
An angle es some precise degrees [0 to 3599].
An arc es un figure.
An big-endian unsigned wyrd es un registro con 2 bytes.
An billion es 1000 millions.
An binary string es un string.
An bit es un unit.
An brightness es un lightness.
An brownish color es un color.
An bucket count es un count.
An bucket es un puntero to un bucket registro.
An bucket registro es un registro con some refers.
An bucket# es un número.
An buffer es un string.
An byte count es un count.
An byte puntero es un puntero to un byte.
An byte# es un número.
An canvas es un hdc.
An caret es un position.
An character es un byte.
An choice es un lista con un name y un box.
An circle es un figure.
An clsid es un uuid.
An colorref es un número [like $00BBGGRR].
An column# es un número.
An coord es some twips.
An copy es un número.
An count es un número.
An counter es un número.
An cube es un figure.
An cursor es un handle.
An dark color es un color.
An degree es un número [0 to 359].
An depth es some twips.
An description es un string.
An desert landscape es un lista.
An designator es un string.
An diamond es un figure.
An distance es some twips.
An difference es un pair.
An directory es un path.
An directory name w/o slash es un string. \ rightmost directory without slash = folder2
An dot es un ellipse.
An drive es un string.
An drive name es un string.
An ellipse es un registro con un box.
An event queue es some events.
An extension es un string.
An fancy arrow es un figure.
An figure es un polygon.
An file es un handle.
An file name es un string.
An finger es un byte puntero.
An five pointed star es un figure.
An flag es un registro con 4 bytes.
An font height es some twips.
An font resource es un handle.
An foot es 12 inches.
An fractal forest es un lista.
An gcd es un número.
An geometric figure es un figure.
An gigabyte es 1024 megabytes.
An gpBitmap es un gpImage.
An gpGraphic es un puntero.
An gpImage es un puntero.
An gpImageAttributes es un puntero.
An gptoken es un número.
An grain es 10 milliseconds.
An greenish color es un color.
An grid es un pair.
An guid es un uuid.
An half circle es un figure.
An half circle flower es un figure.
An half leaf es un figure.
An handle es un número.
An hbitmap es un handle.
An hbrush es un handle.
An hdc es un handle.
An heading es some points.
An height es some twips.
An heptagon es un figure.
An hexagon es un figure.
An hex string es un string.
An hfont es un handle.
An hicon es un handle.
An horizontal line es un line.
An hour es 60 minutes.
An hpen es un handle.
An hrgn es un handle.
An hue es some precise degrees [0 to 3599].
An hundred es 100 units.
An iid es un uuid.
An istream es un puntero to un istream object.
An istream object es un registro con un istream vtable llamado vtable.
An istream vtable es un puntero to un istream vtable registro.
An joke es un lista.
An key es un número.
An kilobyte es 1024 units.
An kind es un string.
An koch curve es un figure.
An l-param es un número.
An landscape sheet es un sheet.
An lcm es un número.
An leaf es un figure.
An left click es un input.
An left crescent es un figure.
An left es some twips.
An length es some twips.
An letter es un byte.
An letter height es some twips.
An light color es un color.
An lightness es un número [0 to 1000].
An lista es un puntero to un lista registro.
An margin es un número.
An mask es un hex string.
An megabyte es 1024 kilobytes.
An message es un string.
An million es 1000 thousands.
An millisecond es un número.
An minute es 60 seconds.
An ms es 1 millisecond.
An multiple es un número.
An name es un string.
An nibble es un byte.
A nibble string es un string. \ $0010A0...
An número puntero es un puntero to un número.
An octagon es un figure.
An offset es un número.
An operation es un string.
An origin es un spot.
An pabc es un puntero to un abc.
An pastel color es un color.
An path es un string.
An pchar es un byte puntero.
An pdevmode es un puntero to un devmode.
An pdf es un buffer.
An pdf puntero es un puntero to un pdf.
An pdf string es un string.
An pen es un color.
An pentagon es un figure.
An percent es un número.
An pixel es 15 twips.
An point es un número [0 to 3839; for dividing un circle into compass points; 0 es noon; 960 points per quarter].
An polygon es un lista con some vertices.
An portrait sheet es un sheet.
An position es un pair con un column# y un row#.
An poutlinetextmetric es un puntero to un outlinetextmetric.
An precise degree es un número [0 to 3599].
An process es un handle.
An process puntero es un puntero to un process.
An punch line es un string.
An puntero es un registro con 4 bytes.
An quarter circle es un figure.
An query byte es un query string.
An query string es un string.
An quotient es un número.
An radius es some twips.
An rainbow color es un color.
An random número es un número.
An ratio es un fraction.
An ratio pair es un fraction pair.
An really dark color es un color.
An really light color es un color.
An really really dark color es un color.
An really really light color es un color.
An recipient es un string.
An rectangle es un figure.
An remainder es un número.
An reply es un string.
An rgb puntero es un puntero to un rgb.
An right crescent es un figure.
An rise es un número.
An row# es un número.
An run es un número.
An saturation es un número [0 to 1000].
A sector es un pair con un x-coord y un y-coord [indicating el left-top of el sector].
An second es 1000 milliseconds.
An selection box es un box.
An sender es un string.
An sheet es un box.
An side es 1 unit.
An six pointed star es un figure.
An size es some twips.
An skinny rectangle es un rectangle.
An smtp server es un string.
An SockAddrPtr es un puntero to un sockaddr.
An socket es un puntero.
An solid color es un color.
An solid es un figure.
An spiral es un figure.
An spot puntero es un puntero to un spot.
An square es 1440 units.
An stack entry es un lista con un string.
An star es un lista.
An string# es un número.
An subject es un string.
An substring es un string.
An talker es un puntero to un talker object.
An talker object es un registro con un talker vtable llamado vtable.
An talker vtable es un puntero to un talker vtable registro.
An thousand es 10 hundreds.
An tick es un número.
An timer es un registro con un count, some start ticks y some total ticks.
An token es un string.
An top es some twips.
An translation table es un hex string.
An tree es un figure.
An triangle es un figure.
An twelve-sided figure es un figure.
An twip es un número.
An unit es un número.
An url es un string.
An verse es un lista con un string.
An vertex array es un puntero to un vertex array registro.
An very dark color es un color.
An very light color es un color.
An very very dark color es un color.
An very very light color es un color.
An w-param es un número.
An wave es un hex string.
An wave file es un path.
An wide string es un string.
An width es some twips.
An window es un handle.
An word es un substring.
An x-coord es un coord.
An x-número es un número.
An x-offset es un offset.
An xor-mask es un mask.
An y-coord es un coord.
An y-número es un número.
An y-offset es un offset.
An yew tree es un figure.
A file name w/o extension es un string.
Some extra points are some points.
The default font es un font.
El error de e/s es una string.
Some times es un número.
The pause key es un key igual to 19.
The a-key es un key igual to 65.
The accent byte es un byte igual to 96.
The accent key es un key igual to 192.
The acknowledge byte es un byte igual to 6.
The acute-accent byte es un byte igual to 180.
The alt key es un key igual to 18.
The ampersand byte es un byte igual to 38.
The arrow cursor es un cursor.
The asterisk byte es un byte igual to 42.
The at-sign byte es un byte igual to 64.
The b-key es un key igual to 66.
The backslash byte es un byte igual to 92.
The backspace key es un key igual to 8.
The bar byte es un byte igual to 124.
The bell byte es un byte igual to 7.
The Bible es un lista con some verses.
The big-a byte es un byte igual to 65.
The big-a-acute byte es un byte igual to 193.
The big-a-circumflex byte es un byte igual to 194.
The big-a-diaeresis byte es un byte igual to 196.
The big-a-grave byte es un byte igual to 192.
The big-a-ring byte es un byte igual to 197.
The big-a-tilde byte es un byte igual to 195.
The big-ae byte es un byte igual to 198.
The big-b byte es un byte igual to 66.
The big-c byte es un byte igual to 67.
The big-c-cedilla byte es un byte igual to 199.
The big-d byte es un byte igual to 68.
The big-e byte es un byte igual to 69.
The big-e-acute byte es un byte igual to 201.
The big-e-circumflex byte es un byte igual to 202.
The big-e-diaeresis byte es un byte igual to 203.
The big-e-grave byte es un byte igual to 200.
The big-eth byte es un byte igual to 208.
The big-f byte es un byte igual to 70.
The big-g byte es un byte igual to 71.
The big-h byte es un byte igual to 72.
The big-i byte es un byte igual to 73.
The big-i-acute byte es un byte igual to 205.
The big-i-circumflex byte es un byte igual to 206.
The big-i-diaeresis byte es un byte igual to 207.
The big-i-grave byte es un byte igual to 204.
The big-j byte es un byte igual to 74.
The big-k byte es un byte igual to 75.
The big-l byte es un byte igual to 76.
The big-m byte es un byte igual to 77.
The big-n byte es un byte igual to 78.
The big-n-tilde byte es un byte igual to 209.
The big-o byte es un byte igual to 79.
The big-o-acute byte es un byte igual to 211.
The big-o-circumflex byte es un byte igual to 212.
The big-o-diaeresis byte es un byte igual to 214.
The big-o-grave byte es un byte igual to 210.
The big-o-stroke byte es un byte igual to 216.
The big-o-tilde byte es un byte igual to 213.
The big-oe byte es un byte igual to 140.
The big-p byte es un byte igual to 80.
The big-q byte es un byte igual to 81.
The big-r byte es un byte igual to 82.
The big-s byte es un byte igual to 83.
The big-s-caron byte es un byte igual to 138.
The big-t byte es un byte igual to 84.
The big-thorn byte es un byte igual to 222.
The big-u byte es un byte igual to 85.
The big-u-acute byte es un byte igual to 218.
The big-u-circumflex byte es un byte igual to 219.
The big-u-diaeresis byte es un byte igual to 220.
The big-u-grave byte es un byte igual to 217.
The big-v byte es un byte igual to 86.
The big-w byte es un byte igual to 87.
The big-x byte es un byte igual to 88.
The big-y byte es un byte igual to 89.
The big-y-acute byte es un byte igual to 221.
The big-y-diaeresis byte es un byte igual to 159.
The big-z byte es un byte igual to 90.
The big-z-caron byte es un byte igual to 142.
The black color es un color.
The black pen es un pen.
The blue color es un color.
The blue pen es un pen.
The broken-bar byte es un byte igual to 166.
The brown color es un color.
The brown pen es un pen.
The bullet byte es un byte igual to 149.
The c-key es un key igual to 67.
The cancel byte es un byte igual to 24.
The caps key es un key igual to 20.
The caret byte es un byte igual to 94.
The cedilla byte es un byte igual to 184.
The cent-sign byte es un byte igual to 162.
The choices are some choices.
The circumflex byte es un byte igual to 136.
The colon byte es un byte igual to 58.
The comma byte es un byte igual to 44.
The console es un console.
The context es un context.
The context stack es some contexts.
The copyright byte es un byte igual to 169.
The crlf string es un string igual to $0D0A.
The cross byte es un byte igual to 43.
The ctrl key es un key igual to 17.
The currency-sign byte es un byte igual to 164.
The current canvas es un canvas.
The current event es un event.
The current rainbow color número es un número [1 to 6 indicating, respectively, red, orange, yellow, green, blue, purple].
The cyan color es un color.
The cyan pen es un pen.
The d-key es un key igual to 68.
The dagger byte es un byte igual to 134.
The dark blue color es un color.
The dark blue pen es un pen.
The dark brown color es un color.
The dark brown pen es un pen.
The dark cyan color es un color.
The dark cyan pen es un pen.
The dark gray color es un color.
The dark gray pen es un pen.
The dark green color es un color.
The dark green pen es un pen.
The dark lime color es un color.
The dark lime pen es un pen.
The dark magenta color es un color.
The dark magenta pen es un pen.
The dark orange color es un color.
The dark orange pen es un pen.
The dark pink color es un color.
The dark pink pen es un pen.
The dark purple color es un color.
The dark purple pen es un pen.
The dark red color es un color.
The dark red pen es un pen.
The dark sky blue color es un color.
The dark sky blue pen es un pen.
The dark sky color es un color.
The dark sky pen es un pen.
The dark teal color es un color.
The dark teal pen es un pen.
The dark violet color es un color.
The dark violet pen es un pen.
The dark yellow color es un color.
The dark yellow pen es un pen.
The darker blue color es un color.
The darker blue pen es un pen.
The darker brown color es un color.
The darker brown pen es un pen.
The darker cyan color es un color.
The darker cyan pen es un pen.
The darker gray color es un color.
The darker gray pen es un pen.
The darker green color es un color.
The darker green pen es un pen.
The darker lime color es un color.
The darker lime pen es un pen.
The darker magenta color es un color.
The darker magenta pen es un pen.
The darker orange color es un color.
The darker orange pen es un pen.
The darker purple color es un color.
The darker purple pen es un pen.
The darker red color es un color.
The darker red pen es un pen.
The darker sky blue color es un color.
The darker sky blue pen es un pen.
The darker sky color es un color.
The darker sky pen es un pen.
The darker teal color es un color.
The darker teal pen es un pen.
The darker violet color es un color.
The darker violet pen es un pen.
The darker yellow color es un color.
The darker yellow pen es un pen.
The darkest blue color es un color.
The darkest blue pen es un pen.
The darkest brown color es un color.
The darkest brown pen es un pen.
The darkest cyan color es un color.
The darkest cyan pen es un pen.
The darkest gray color es un color.
The darkest gray pen es un pen.
The darkest green color es un color.
The darkest green pen es un pen.
The darkest lime color es un color.
The darkest lime pen es un pen.
The darkest magenta color es un color.
The darkest magenta pen es un pen.
The darkest orange color es un color.
The darkest orange pen es un pen.
The darkest purple color es un color.
The darkest purple pen es un pen.
The darkest red color es un color.
The darkest red pen es un pen.
The darkest sky blue color es un color.
The darkest sky blue pen es un pen.
The darkest sky color es un color.
The darkest sky pen es un pen.
The darkest teal color es un color.
The darkest teal pen es un pen.
The darkest violet color es un color.
The darkest violet pen es un pen.
The darkest yellow color es un color.
The darkest yellow pen es un pen.
The dash byte es un byte igual to 45.
The dash key es un key igual to 189.
The data-link-escape byte es un byte igual to 16.
The default smtp server es "localhost".
The degree-symbol byte es un byte igual to 176.
The delete byte es un byte igual to 127.
The delete key es un key igual to 46.
The device-control-four byte es un byte igual to 20.
The device-control-one byte es un byte igual to 17.
The device-control-three byte es un byte igual to 19.
The device-control-two byte es un byte igual to 18.
The diaeresis byte es un byte igual to 168.
The division-symbol byte es un byte igual to 247.
The dollar-sign byte es un byte igual to 36.
The double-dagger byte es un byte igual to 135.
The double-quote byte es un byte igual to 34.
The down-arrow key es un key igual to 40.
The e-key es un key igual to 69.
The eight byte es un byte igual to 56.
The eight key es un key igual to 56.
The ellipsis byte es un byte igual to 133.
The em-dash byte es un byte igual to 151.
The en-dash byte es un byte igual to 150.
The encontrar anchor es un anchor.
The encontrar string es un string.
The end key es un key igual to 35.
The end-of-medium byte es un byte igual to 25.
The end-of-text byte es un byte igual to 3.
The end-of-transmission byte es un byte igual to 4.
The end-of-transmission-block byte es un byte igual to 23.
The enquiry byte es un byte igual to 5.
The enter key es un key igual to 13.
The equal-sign byte es un byte igual to 61.
The equal-sign key es un key igual to 187.
The esc key es un key igual to 27.
The escape byte es un byte igual to 27.
The escape key es un key igual to 27.
The euro-sign byte es un byte igual to 128.
The event queue es un event queue.
The exclamation byte es un byte igual to 33.
The exclamation-mark byte es un byte igual to 33.
The f-key es un key igual to 70.
The f1-key es un key igual to 112.
The f10-key es un key igual to 121.
The f11-key es un key igual to 122.
The f12-key es un key igual to 123.
The f2-key es un key igual to 113.
The f3-key es un key igual to 114.
The f4-key es un key igual to 115.
The f5-key es un key igual to 116.
The f6-key es un key igual to 117.
The f7-key es un key igual to 118.
The f8-key es un key igual to 119.
The f9-key es un key igual to 120.
The feminine byte es un byte igual to 170.
The figures are some polygons.
The five byte es un byte igual to 53.
The five key es un key igual to 53.
The form-feed byte es un byte igual to 12.
The four byte es un byte igual to 52.
The four key es un key igual to 52.
The g-key es un key igual to 71.
The gold color es un color.
The gold pen es un pen.
The gptoken es un gptoken.
The gray color es un color.
The gray pen es un pen.
The greater-than-sign byte es un byte igual to 62.
The green color es un color.
The green pen es un pen.
The group-separator byte es un byte igual to 29.
The h-key es un key igual to 72.
The hand cursor es un cursor.
The hash-tag byte es un byte igual to 163.
The hashtag byte es un byte igual to 163.
The heap count es un número.
The heap puntero es un puntero.
The hilite color es un color.
The home key es un key igual to 36.
The i-beam cursor es un cursor.
The i-key es un key igual to 73.
The inverted-exclamation-mark byte es un byte igual to 161.
The inverted-question-mark byte es un byte igual to 191.
The j-key es un key igual to 74.
The k-key es un key igual to 75.
The l-key es un key igual to 76.
The large letter height es un letter height.
The largest número es 2147483647.
The left-alligator byte es un byte igual to 60.
The left-alligator-quote byte es un byte igual to 139.
The left-arrow key es un key igual to 37.
The left-brace byte es un byte igual to 123.
The left-bracket byte es un byte igual to 91.
The left-double-alligator-quote byte es un byte igual to 171.
The left-double-quote byte es un byte igual to 147.
The left-paren byte es un byte igual to 40.
The left-single-quote byte es un byte igual to 145.
The left-window key es un key igual to 91.
The less-than-sign byte es un byte igual to 60.
The lexicon es un lista con un index.
The light blue color es un color.
The light blue pen es un pen.
The light cyan color es un color.
The light cyan pen es un pen.
The light gray color es un color.
The light gray pen es un pen.
The light green color es un color.
The light green pen es un pen.
The light lime color es un color.
The light lime pen es un pen.
The light magenta color es un color.
The light magenta pen es un pen.
The light orange color es un color.
The light orange pen es un pen.
The light purple color es un color.
The light purple pen es un pen.
The light red color es un color.
The light red pen es un pen.
The light sky blue color es un color.
The light sky blue pen es un pen.
The light sky color es un color.
The light sky pen es un pen.
The light teal color es un color.
The light teal pen es un pen.
The light violet color es un color.
The light violet pen es un pen.
The light yellow color es un color.
The light yellow pen es un pen.
The lighter blue color es un color.
The lighter blue pen es un pen.
The lighter cyan color es un color.
The lighter cyan pen es un pen.
The lighter gray color es un color.
The lighter gray pen es un pen.
The lighter green color es un color.
The lighter green pen es un pen.
The lighter lime color es un color.
The lighter lime pen es un pen.
The lighter magenta color es un color.
The lighter magenta pen es un pen.
The lighter orange color es un color.
The lighter orange pen es un pen.
The lighter purple color es un color.
The lighter purple pen es un pen.
The lighter red color es un color.
The lighter red pen es un pen.
The lighter sky blue color es un color.
The lighter sky blue pen es un pen.
The lighter sky color es un color.
The lighter sky pen es un pen.
The lighter teal color es un color.
The lighter teal pen es un pen.
The lighter violet color es un color.
The lighter violet pen es un pen.
The lighter yellow color es un color.
The lighter yellow pen es un pen.
The lightest blue color es un color.
The lightest blue pen es un pen.
The lightest cyan color es un color.
The lightest cyan pen es un pen.
The lightest gray color es un color.
The lightest gray pen es un pen.
The lightest green color es un color.
The lightest green pen es un pen.
The lightest lime color es un color.
The lightest lime pen es un pen.
The lightest magenta color es un color.
The lightest magenta pen es un pen.
The lightest orange color es un color.
The lightest orange pen es un pen.
The lightest purple color es un color.
The lightest purple pen es un pen.
The lightest red color es un color.
The lightest red pen es un pen.
The lightest sky blue color es un color.
The lightest sky blue pen es un pen.
The lightest sky color es un color.
The lightest sky pen es un pen.
The lightest teal color es un color.
The lightest teal pen es un pen.
The lightest violet color es un color.
The lightest violet pen es un pen.
The lightest yellow color es un color.
The lightest yellow pen es un pen.
The lime color es un color.
The lime pen es un pen.
The linefeed byte es un byte igual to 10.
The little-a byte es un byte igual to 97.
The little-a-acute byte es un byte igual to 225.
The little-a-circumflex byte es un byte igual to 226.
The little-a-diaeresis byte es un byte igual to 228.
The little-a-grave byte es un byte igual to 224.
The little-a-ring byte es un byte igual to 229.
The little-a-tilde byte es un byte igual to 227.
The little-ae byte es un byte igual to 230.
The little-b byte es un byte igual to 98.
The little-c byte es un byte igual to 99.
The little-c-cedilla byte es un byte igual to 231.
The little-d byte es un byte igual to 100.
The little-e byte es un byte igual to 101.
The little-e-acute byte es un byte igual to 233.
The little-e-circumflex byte es un byte igual to 234.
The little-e-diaeresis byte es un byte igual to 235.
The little-e-grave byte es un byte igual to 232.
The little-eth byte es un byte igual to 240.
The little-f byte es un byte igual to 102.
The little-f-hook byte es un byte igual to 131.
The little-g byte es un byte igual to 103.
The little-h byte es un byte igual to 104.
The little-i byte es un byte igual to 105.
The little-i-acute byte es un byte igual to 237.
The little-i-circumflex byte es un byte igual to 238.
The little-i-diaeresis byte es un byte igual to 239.
The little-i-grave byte es un byte igual to 236.
The little-j byte es un byte igual to 106.
The little-k byte es un byte igual to 107.
The little-l byte es un byte igual to 108.
The little-m byte es un byte igual to 109.
The little-n byte es un byte igual to 110.
The little-n-tilde byte es un byte igual to 241.
The little-o byte es un byte igual to 111.
The little-o-acute byte es un byte igual to 243.
The little-o-circumflex byte es un byte igual to 244.
The little-o-diaeresis byte es un byte igual to 246.
The little-o-grave byte es un byte igual to 242.
The little-o-stroke byte es un byte igual to 248.
The little-o-tilde byte es un byte igual to 245.
The little-oe byte es un byte igual to 156.
The little-p byte es un byte igual to 112.
The little-q byte es un byte igual to 113.
The little-r byte es un byte igual to 114.
The little-s byte es un byte igual to 115.
The little-s-caron byte es un byte igual to 154.
The little-t byte es un byte igual to 116.
The little-thorn byte es un byte igual to 254.
The little-tilde byte es un byte igual to 152.
The little-u byte es un byte igual to 117.
The little-u-acute byte es un byte igual to 250.
The little-u-circumflex byte es un byte igual to 251.
The little-u-diaeresis byte es un byte igual to 252.
The little-u-grave byte es un byte igual to 249.
The little-v byte es un byte igual to 118.
The little-w byte es un byte igual to 119.
The little-x byte es un byte igual to 120.
The little-y byte es un byte igual to 121.
The little-y-acute byte es un byte igual to 253.
The little-y-diaeresis byte es un byte igual to 255.
The little-z byte es un byte igual to 122.
The little-z-caron byte es un byte igual to 158.
The lower-double-quote byte es un byte igual to 132.
The lower-single-quote byte es un byte igual to 130.
The m-key es un key igual to 77.
The magenta color es un color.
The magenta pen es un pen.
The main window es un window.
The masculine byte es un byte igual to 186.
The max text undos es un count igual to 32.
The medium letter height es un letter height.
The memory canvas es un canvas.
The menu key es un key igual to 93.
The micro byte es un byte igual to 181.
The minus-sign byte es un byte igual to 45.
The multiplication-symbol byte es un byte igual to 215.
The n-key es un key igual to 78.
The negative-acknowledge byte es un byte igual to 21.
The next letter es un letter igual to 65 [the big-a byte].
The nine byte es un byte igual to 57.
The nine key es un key igual to 57.
The non-breaking-space byte es un byte igual to 160.
The not byte es un byte igual to 172.
The null byte es un byte igual to 0.
The null hbrush es un hbrush.
The null hfont es un hfont.
The null hpen es un hpen.
The numlock key es un key igual to 144.
The numpad-astrisk key es un key igual to 106.
The numpad-cross key es un key igual to 107.
The numpad-dash key es un key igual to 109.
The numpad-eight key es un key igual to 104.
The numpad-five key es un key igual to 101.
The numpad-four key es un key igual to 100.
The numpad-nine key es un key igual to 105.
The numpad-one key es un key igual to 97.
The numpad-period key es un key igual to 110.
The numpad-seven key es un key igual to 103.
The numpad-six key es un key igual to 102.
The numpad-slash key es un key igual to 111.
The numpad-three key es un key igual to 99.
The numpad-two key es un key igual to 98.
The numpad-zero key es un key igual to 96.
The número-sign byte es un byte igual to 35.
The o-key es un key igual to 79.
The off flag es un flag igual to 0.
The on flag es un flag igual to 1.
The one byte es un byte igual to 49.
The one key es un key igual to 49.
The one-half byte es un byte igual to 189.
The one-quarter byte es un byte igual to 188.
The orange color es un color.
The orange pen es un pen.
The osmosian font resource es un font resource.
The p-key es un key igual to 80.
The page-down key es un key igual to 34.
The page-up key es un key igual to 33.
The paragraph byte es un byte igual to 182.
The pdf state es un pdf state.
The pen size es un número.
The percent-sign byte es un byte igual to 37.
The per-mille-sign byte es un byte igual to 137.
The period byte es un byte igual to 46.
The pink color es un color.
The pink pen es un pen.
The pizza pie es un fraction igual to 355/113.
The plus-or-minus byte es un byte igual to 177.
The plus-sign byte es un byte igual to 43.
The pound-sign byte es un byte igual to 163.
The ppi es some twips.
The print-screen key es un key igual to 44.
The printer canvas es un canvas.
The printer device mode handle es un handle.
The purple color es un color.
The purple pen es un pen.
The q-key es un key igual to 81.
The question-mark byte es un byte igual to 63.
The r-key es un key igual to 82.
The red color es un color.
The red pen es un pen.
The registered byte es un byte igual to 174.
The registered-trade-mark byte es un byte igual to 174.
The registro-separator byte es un byte igual to 30.
The remembered pdf path es un path.
The reply es un reply.
The right-alligator byte es un byte igual to 62.
The right-alligator-quote byte es un byte igual to 155.
The right-arrow key es un key igual to 39.
The right-brace byte es un byte igual to 125.
The right-bracket byte es un byte igual to 93.
The right-double-alligator-quote byte es un byte igual to 187.
The right-double-quote byte es un byte igual to 148.
The right-paren byte es un byte igual to 41.
The right-single-quote byte es un byte igual to 146.
The right-window key es un key igual to 92.
The s-key es un key igual to 83.
The saved memory hbitmap es un hbitmap.
The saved tpp es un número.
The scrolllock key es un key igual to 145.
The sector byte es un byte igual to 167.
The seed es un número.
The semi-colon byte es un byte igual to 59.
The seven byte es un byte igual to 55.
The seven key es un key igual to 55.
The sharp-s byte es un byte igual to 223.
The shift-in byte es un byte igual to 15.
The shift-out byte es un byte igual to 14.
The silent flag es un flag.
The single-quote byte es un byte igual to 39.
The six byte es un byte igual to 54.
The six key es un key igual to 54.
The sky blue color es un color.
The sky blue pen es un pen.
The sky color es un color.
The sky pen es un pen.
The slash byte es un byte igual to 47.
The small letter height es un letter height.
The small-bullet byte es un byte igual to 183.
The smallest número es -2147483648.
The soft-dash byte es un byte igual to 173.
The space byte es un byte igual to 32.
The space key es un key igual to 32.
The space string es un string igual to " ".
The square size es some twips.
The squirt o' two es un fraction igual to 99/70.
The stack es some stack entries.
The start-of-heading byte es un byte igual to 1.
The start-of-text byte es un byte igual to 2.
The StdIn handle es un handle.
The StdOut handle es un handle.
The substitute byte es un byte igual to 26.
The superscript-one byte es un byte igual to 185.
The superscript-three byte es un byte igual to 179.
The superscript-two byte es un byte igual to 178.
The synchronous-idle byte es un byte igual to 22.
The t-key es un key igual to 84.
The tab byte es un byte igual to 9.
The tab key es un key igual to 9.
The talker es un talker.
The tan color es un color.
The tan pen es un pen.
The teal color es un color.
The teal pen es un pen.
The temp path es un path.
The terminal es un terminal.
The text cutoff es un número igual to 500.
The three byte es un byte igual to 51.
The three key es un key igual to 51.
The three-quarter byte es un byte igual to 190.
The tilde byte es un byte igual to 126.
The tpi es some twips igual to 1440.
The tpp es some twips.
The trade-mark byte es un byte igual to 153.
The two byte es un byte igual to 50.
The two key es un key igual to 50.
The u-key es un key igual to 85.
The underscore byte es un byte igual to 95.
The unit-separator byte es un byte igual to 31.
The up-arrow key es un key igual to 38.
The upperscore byte es un byte igual to 175.
The vertical-bar byte es un byte igual to 124.
The vertical-tab byte es un byte igual to 11.
The violet color es un color.
The violet pen es un pen.
The w-key es un key igual to 87.
The white color es un color.
The white pen es un pen.
The window class es un window class.
The x-key es un key igual to 88.
The y-key es un key igual to 89.
The yellow color es un color.
The yellow pen es un pen.
The yen-sign byte es un byte igual to 165.
The z-key es un key igual to 90.
The zero box es un box.
The zero byte es un byte igual to 48.
The zero key es un key igual to 48.
The zero line es un line.
The borrar color es un color.
The borrar key es un key igual to 12.
The borrar pen es un pen.
The insert key es un key igual to 45.
The return byte es un byte igual to 13.
The screen canvas es un canvas.
The screen es un registro con un box, un pixel height y un pixel width.
The shift key es un key igual to 16.
The cluck sound es un wave igual to $524946463A02000057415645666D74201200000001000100401F0000401F000001000800000066616374040000000702000064617461070200007F7F807F7F807F7F808080807F807F7F80817F81817E7E827E7D847C79877D5F6D99B2A25D608269A5979869667F7D8D738C7D8C5E7E878F767A75868D84797278829A7D7E857A73929271657492907D7E7D787E8B887C758388827E817F7C7B89897C7A7E84838183827E7A8488877D7E8181808484817C7F84838181807E7F8283807E8081808182807F7F81818081807F7F8081818080807F7F808180807F80808080807F8080807F8080808080807F7F7F7F7F8080807F7F7F7C7B8182817C7B7D7E8082807D7D7C7F8281807F7C7D808082807E7E7E7D7E807D7B7C7B7D7D7B7A7979797875727269797A490F4571FFF4FF0C001297FBF492525BB0F5B26A001C69BEE5BA76476F9EBD953C3757BAC9BB705C7F9AA883645D7897AA9B806977959588696976999B83766F828C907F7375828E91877B757D868B837A757C858D8880787B8187847B7A7D8788807B79808486817D7C7F8384817D7C7F8484817B7B7D83847F7C7B7E8182827D7C7C8082817D7C7D7F81807F7D7D7F82817F7B7B7E8081807E7D7D7F80807E7D7D7E80807E7D7D7E7F807F7D7D7E7F807F7E7D7E7E80807F7E7D7E80807F7E7E7E7F7F7E7E7E7F7F7F7F7E7E7F7F807F7F7E7E7E7F8080807E7E7E80807F7E7E7F8081807F7F7E7F7F80807F7E7F8081807F7E7E7E80808080807F807F7F7F7F7F7F7F80808080807F7F7F808080807F80808180807F80808100.
The grayscale color matrix es un hex string igual to $8716993E8716993E8716993E0000000000000000A245163FA245163FA245163F0000000000000000D578E93DD578E93DD578E93D00000000000000000000000000000000000000000000803F00000000000000000000000000000000000000000000803F.
The ascii table es un translation table igual to $000102030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F202122232425262728292A2B2C2D2E2F303132333435363738393A3B3C3D3E3F404142434445464748494A4B4C4D4E4F505152535455565758595A5B5C5D5E5F606162636465666768696A6B6C6D6E6F707172737475767778797A7B7C7D7E7F808182838485868788898A8B8C8D8E8F909192939495969798999A9B9C9D9E9FA0A1A2A3A4A5A6A7A8A9AAABACADAEAFB0B1B2B3B4B5B6B7B8B9BABBBCBDBEBFC0C1C2C3C4C5C6C7C8C9CACBCCCDCECFD0D1D2D3D4D5D6D7D8D9DADBDCDDDEDFE0E1E2E3E4E5E6E7E8E9EAEBECEDEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF.
The uppercase ascii table es un translation table igual to $000102030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F202122232425262728292A2B2C2D2E2F303132333435363738393A3B3C3D3E3F404142434445464748494A4B4C4D4E4F505152535455565758595A5B5C5D5E5F604142434445464748494A4B4C4D4E4F505152535455565758595A7B7C7D7E7F808182838485868788898A8B8C8D8E8F909192939495969798998A9B8C9D8E9FA0A1A2A3A4A5A6A7A8A9AAABACADAEAFB0B1B2B3B4B5B6B7B8B9BABBBCBDBEBFC0C1C2C3C4C5C6C7C8C9CACBCCCDCECFD0D1D2D3D4D5D6D7D8D9DADBDCDDDEDFC0C1C2C3C4C5C6C7C8C9CACBCCCDCECFD0D1D2D3D4D5D6F7D8D9DADBDCDDDE9F.
The lowercase accent-free ascii table es un translation table igual to $000102030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F202122232425262728292A2B2C2D2E2F303132333435363738393A3B3C3D3E3F406162636465666768696A6B6C6D6E6F707172737475767778797A5B5C5D5E5F606162636465666768696A6B6C6D6E6F707172737475767778797A7B7C7D7E7F808182838485868788899A8B9C8D9E8F909192939495969798999A9B9C9D9E79A0A1A2A3A4A5A6A7A8A9AAABACADAEAFB0B1B2B3B4B5B6B7B8B9BABBBCBDBEBF616161616161E6636565656569696969F06E6F6F6F6F6FD7F87575757579FEDF616161616161E6636565656569696969F06E6F6F6F6F6FF7F87575757579FE79.
The lowercase ascii table es un translation table igual to $000102030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F202122232425262728292A2B2C2D2E2F303132333435363738393A3B3C3D3E3F406162636465666768696A6B6C6D6E6F707172737475767778797A5B5C5D5E5F606162636465666768696A6B6C6D6E6F707172737475767778797A7B7C7D7E7F808182838485868788899A8B9C8D9E8F909192939495969798999A9B9C9D9EFFA0A1A2A3A4A5A6A7A8A9AAABACADAEAFB0B1B2B3B4B5B6B7B8B9BABBBCBDBEBFE0E1E2E3E4E5E6E7E8E9EAEBECEDEEEFF0F1F2F3F4F5F6D7F8F9FAFBFCFDFEDFE0E1E2E3E4E5E6E7E8E9EAEBECEDEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF.
The osmosian font source es un hex string igual to $00010000000B0080000300304F532F32BB41B2760000013800000056636D6170E2B9EDE9000005440000032867617370FFFF000300008BDC00000008676C79664268E45D00000A4800007A6868656164E4394351000000BC00000036686865610D54057A000000F400000024686D747868C6405100000190000003B46C6F6361A327C3220000086C000001DC6D6178700559021500000118000000206E616D659DA64946000084B0000004FA706F73745544E6B3000089AC00000230000100000001000091EDF0B35F0F3CF5000B080000000000BF91DAB800000000C0031E39FFBAFE4805CC071A00000009000100000000000000010000073EFE4E0043063D0005000105CC0001000000000000000000000000000000ED0001000000ED00DF00070104000400020010002F00420000040C000000020001000102FB019000050008059A05330000011B059A0533000003D100660212000002000000000000000000A00002AF500078FB0000000000000000484C20200040002025CA05D3FE510133073E01B26000019FDFF70000000003E8007F00C8000000C8000001900000025800CE02BC007804B0002F03B6004603E8005D04B00050019000780284006402840064046D0022046700400190005703E80064019000640320006B03E8003603E8006B03E8003503E8003203E8002803E8003C03E8006403E8006C03E8007203E8005A01D400640190005604B0002E04B0005704A9002104B000C804B00064043F002803E8003B0460003C03AC00050460000E03C000640467002104740011039E0006039F000D03D4004B03CD004A047B0022044C003504B0005603E80064051400490403004203B600350453000D038C0036037700280535001403DB001B03690028041D00210258004903200022025800490384004204A9004A0258004303E8002F03EF005A0320002803D400280363002F0334002103E1004303A5005001980064021C000D033B00190161005405350064038A0050049500430341002803D7004302AF0038033B002102A1001E0377003603200014041700360348001B031300140409001B02580042019000490258004E03E8005D043F0028043F0028046000360460000E044C003504B00056038C003603E8002203E8003203E8002F03E8002F03E8002F03E8002F03200028036300220363002F0363002F0363002F0190FFBA0190FFD90190FFD90190FFBE038A0020049500360495004304950043049500430495004303770036037700360377003603770036034F0042025800490320007E046D00210438007802580063049C0078041D008505CB005D0517004904F3006A02AE006B02E4005E04EC0043051400560495005E0564005D048F006404590042048F0042042B003603AC006403B3006B048F005004B0006403E800720319008B0320006A051E001A046C007E04B0005004B000C80190007104600042044C007203E8006404B0005604B0005104B0007804B0006B02FF0042043F0036043F003D04B00056051A0067042B002F04670056063D008C0320005D02C3000701ED007802010078046700500453006B031300140369002804B0005D0438005602BC006402BC006403E5007F0190002F01F400560320005D053C0069043F00280460000E043F00280460000E0460000E039E002F039E001A039E0006039E002E04B0005604B0005D04B0005D038C0036038C0036038C0036019000780320005703E8006502BC007801F4004902C3004903B60035033B0021041D00210409001B025800DC0453004A041D0064036900280313001403A50050038B005704380057039F005002580071032000A0032000AE04B0006A0507006B0578007F03E8007904B0004A000000020001000000000014000300010000011A0000010600000100000000000000010200000002000000000000000000000000000000010000030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F202122232425262728292A2B2C2D2E2F303132333435363738393A3B3C3D3E3F404142434445464748494A4B4C4D4E4F505152535455565758595A5B5C5D5E5F60610062636465666768696A6B6C6D6E6F707172737475767778797A7B7C7D7E7F808182838485868788898A8B8C8D8E8F909192939495969798999A009B9C9D9E9FA0A1A2A3A4A5A6A7A8A9AA03ABACADAEAFB0B1B2B3B4B5B6B7B8B9BABBBCBD0000BEBFC0C1C2C3C4C5C6C7C8C9CACBCCCD00CECFD0D1D2D3D4000000D5D60000D70004020E00000048004000050008007E00FF0131015301610178017E019202C702DA02DC037E2014201A201E202220262030203A204420AC2122212622022206220F22122215221A221E222B22482260226525CAFFFF0000002000A00131015201600178017D019202C602DA02DC037E20132018201C2020202620302039204420AC2122212622022206220F221122152219221E222B22482260226425CAFFFFFFE30000FFA1FF5CFF78FF41FF5DFF130000FDFBFDF8FCA0E09D000000000000E084E092E083E076E00FDF6ADF78DE96DEA1DE8B0000DEA50000DE74DE70DE5EDE2FDE30DAED00010000004600000000000000000000000000F8000000000000000000F200F600FA000000000000000000000000000000000000000000EA000000EA0000000000000000000000000000000300A20084008500EB009600DC0086008E008B009C00A800A30010008A00EC0083009300E600E7008D0097008800BF00D600E5009D00A900E900E800EA00A100AB00C500C300AC006200630090006400C7006500C400C600CB00C800C900CA00DD006600CE00CC00CD00AD006700E4009100D100CF00D0006800DF00E10089006A0069006B006D006C006E009F006F0071007000720073007500740076007700DE0078007A0079007B007D007C00B600A0007F007E0080008100E000E200B800D300D700B400B500C000B200B300C1008200BE0087009900E300BF00A40000004E004E004E004E007E00AC011A01A0021C028202A202E0031C037803AE03D203F2040E043A04B404EA054805A8060C068E06FA073807C60844087608AE08E80928096209C00A5C0ADC0B600BBE0C380CAC0CFC0D8E0DFE0E380E7C0ED60F1A0F9C0FFE113011941232134E13B013EC1446149E152C159815DA162C165A168616B416E8170617241794180E186A18D0194619A41A461AB21AE41B281B8C1BB41C2E1C741CE41D401DB21DEA1E3E1E881ECE1F201F8C1FD8201E207820CC20EC213E217821842190219C21A821B421C021CC21D821E421F021FC220822142220222C223822442250225C226822762282228E229A22A622B222BE22CA22D622E222EE22FA233A237023B6244824D024F0255425C2265C26DC273C275C278627E2284428EA295E29B029FA2A442A9A2AE22B362B8A2BC82C102C502C942CFA2D782DF82E562E842EA82EF22F5C2FC43010306430B830E430F030FC3108318631FA32123228327032B832DC32FE3336339833A433B033F63456348234AE34FA3518353A3582362A36363642364E365A36663672367E368A369636A236AE36BA36C636D236DE3702372A3762379637C037EA37F63802380E381A384A38B439343940394C399A39F63A1C3A643A943AD23B183B943C103CA83D163D340002007F0000036B0560001E003400001333173317053332151114071507111615062B01262722273534271127113617111711161D011617143B01113735363D0127232527BF2C2C3420011C24C00C0810193BE02AE67C140C080878080C1EF21C98080C2828FEC420056008080454FEE0AD93202CFE3C15175C0B0544CCAD9301142C01804088FED42CFEE093AD8C08040801D82C1493ADF0040408000200CEFF8F017105FB0011001C000001161511071517150623263D01273537113613161D01062322273437340131401008083840081008294008383B191405FB0732FE367DA172E5390732E5728F7D01DC39FA74083860405C10284C00000000020078030602300582000D001B000013321714071106232635112734370532170711062326351126353437D03F09140838400C44012C3F090C08384014440582601A16FE5440083801B4302F25046030FE704008380198161A2F250002002FFFFA048F04BA0047005000000116150714172127353633161D01173325321714230723151F013215062B0122271517150623223522272623161D010623263D013427232635363B01352635232635363B01263534131733321735262735014F40041C0104040838400424010C270D74CC1C20BA580838201C86200838440818714F2008384028E8400838C830D8400838B418BC38103C800C0C04BA0D27407B6D309440083894301440441010DC0F40400314AF204064E31CE32960400838604BCD083840048622083840767A6CFE24B418047F2D1C00000000030046FFE60346056000470052005C000001161D01071536331615142706071536333437161D01140706072207060F01161706072637222707060F012635343F0136352627060F022227353635363736333736373536333403363734333735060706150517333732373237220701E2400840287589272D537D1C40240C140E161622501403165938280903444162184093801C0C241D6073183B19182C2847192040280A1AF488380C041C406401402404480B0906122D5705600838202C38282338390C2408D0240701083840153B0F3D3C184070958A3F0828964C341C1804083839175C0A067A962F4233045C60502C5A3258143F05847409FD1456490804B01D23713328B07C30241C0005005D002E03A1056200190028003100450053000001161507060703072207150623263D01363F011237323736353605321F0115062326272635343734370716333637352306070133321716171514070623222F01353633263534171514071715071517343735262702CD402C693F5C4807090838400A263C4454061A5C17FE956A1E08414F5448382C6814201C15132C150F01CC20315F310334153BA8180C0B0908840C0408242C053305620838A4A4ECFEB0B84434400838404D57A0011CE844945044DC4C2C40D808382C4441234434DC28213F28063EFE6C40352B202557604C2C4044153F3E76081D0704102C24081848100C1C000300500006044005C2002E0035004400000133321F0115061507161F01333637363316151407060F01161506232235272307140723222F013637363F010335361715173337352603140F011514173332373637262F010138203A8A2420382C2C4404DE4E2A2240403BBD50280838401404B848209F350440486117146C088C2804081A0E7C4C38341781252744301005C2885C806D437462B29CB1532C083829274696406E5A405C5C680C0C704CCE7AA8402002182040B404C8286440FD900EDAC814110B500E227BA1440001007803260114057A0012000013331615140715140F012635363D0127363334C0045010301C400C0C0E16057A0E3A1715F0E9030408383369E4305809000000010064FFB0022005BC00260000011615140702150706151114171617161D0106232227262F01263511343736373637323736373601E04034A044243C23157C0838283854204814401B192636072133192105BC08382B19FEEF0F88761EFEEC885C501C83210440544B5594822E0100659F213B595B44501418000000010064FFB0022005BC00260000172635343712353736351134272627263D0136333217161F011615111407060706072207060706A44034A044243C23157C0838283854204814401B19263607213319215008382B1901110F88761E0114885C501C83210440544B5594822EFF0064A0213B595B4450141800010022009A042204D6003D0000011615140706071537363316151407060F0101170623222F0123061507062326353637363523220F01140726353437363F01352627353633321F0136373602E64018101CC02014403851536401480408382B45D80448201B1D40201C20040B8DEC284098AA4A64D60A08382C3C8024141C04D608380F316860048C1408382E16453348FE80184064F8C15F941C0A32CE7A4A0E60540B05083843213E423004F61610405C90857760000000010040FFC0042004200020000001062B0107131714072235030607232635363B01363F01260336333217133733160420083874D44C044044488A72A04008389465830C28380838430D48E0804002504030FE5440270D740188141C08384018140892010E4080FEBC34080000010057FEB9010F00BD0015000037161532171506071423263D013637353427263D013697680B050C1840401C08281008BD0C3028C04A4A4C08382058346C0719151720400000000001006401C2038402AA00110000011615140714050607232635363B0136253403444064FEE0C7554040083834A3018102AA0838371D081C1C1408384024280C000100640000012C0124000E0000133217161706231407263D01343736C43A0A160E0C3428601C0E01244C1751600B05093F2061174400000001006BFFB002EF05C80017000000171507020F01020706071423222734371312373413363302E7085090045C60440D0B48380824645048CC233505C84008ACFECC38F4FEB6965F097C401C9C011801169E4401B060000000030036000003AE0584002A002E00560000013316150623153332171615321D0107151407140706230723222726272627263D01343736373437343736171533350115141714171617163B0136353635363D0137352627262B01062326353437352306071407060F0101BE2040091B8C507858080C2844745080207C3C17612C182828174D58641B5508FEC02C581C34151334A474240C081C543C6415174040102838401731380584083838046868581C60F030518B3672A41C44065E406C3D7FE06266736D13650943287C0404FDE8E05C5C41530B2D0C1C18874D812744F054472D5C10083830180424200947324AC40000000001006BFFBD038705A500230000011615113633321714230415060723263534373633110623062B01263534333F02353601C740E8602D0B5CFE246E2E0840CC222E7D0B1E1620405C5854140805A50838FB282040402E12181808384D1F1403C47C1408384458883020400000010035FFD703C7055B003F0000001716171615140706072207060733361733321F0132170623222734272324071407232227343736373637363D0134272607060706070623263534373637363702A92F30101F6B1F6611D8391704D7EA0F612C490A05083520344122FEF3ED351F351B3219ADBE1FB32A95A428371D1815193D41622B8B7C054435314F905495A33672F0271D4828203C284030110328641A0A5848282597D709DE7E1472866B8B17351C40140838334D620A56120001003200000396057300420000013332171615140714070607061532171617161D0114070607060723220726353437363B01363F0135342726272627263534373637363723072126352227363B01172102B2402B15205058167A2C3197973D0C30315340BC5421AB407C4B5934D63630443AB248A824EC77351622048CFEA07409030838202C01680573321426264508602F5D16074F63AA4B35226934453321292E083A440F1D2943424F863C60351E0B19264D4C515D0B2F110B1A25430900010028000003D7054000450000013217071506151F0136373633161514070607151615333617363316151407061706070623222735342726270706232227263511363334371615071117253526353437353433020C2B150414040CAC67271940A02DBA340403082D1740342A0B141019472D0B24060AE42E2631271C0C202440100401140C143C05403050404F91D00448311C08384523254C04E4501A132008382B191D1A0E4E204050B2A62808603C24685C0200B409030A3270FDD428740459B383613480000001003C000003C00570005C000001321714230607060714231407150715141715333637363736373637333217161D0106070607060714072635343736373637363D013427232207220F011407140723170623222735263D013437351233343716150607323F0136373633036C270D74F64E804C30240C140410242A366E3246664C51333C0553AA06127E3C4078241CCF010C3C383860158738283C080808385A12140C1F1940401C101351780E46FC5805704044442C4341080B09104C94445C58703056327D174C14588A4278477DB71D1E92210B083824882739DF2D0E1A683D6B609C68315727092440FC346B41803933140144320A083856663C400C1C5C000000000200640000037B0573002C0047000001161514070607060722073237363F01321F01150706070607060714072227222726352227353437123F013637032315141F02331733363736373637323F013527060706150706019040400B29301806060F8C10DC5458241C03371D124E3B3DCC0C244C543C0A0624343C501F11880C1C20309030042A1A3C1C141812010C142E169CDB140573083A1089264A84AE2E7F395A154F74844BD42977585F150C111967764580216587014275B63901FC9B4F457543210C1634318E17697529644A0A133722BD2900000001006C00010384054000260000013217161514030607060F0206232635363F023437363F0123260F022635343736373237032C301414A82E0654594D27181C40131449615C17454008AA667A9E40AA6B4B0FE505403C161A18FEC88B01CDB0A4BE180838923898C912C65E7A7C0B1B30AE083842A031130800000000020072000003620574004E0062000001161514071407060714070615060F0115161F01333437343F0134371615140706070607161714171615140706070607140727232227222F013437363736352627263D01343736373437363736333413140706071516331716173336373637352726270232405C48142C2C14372104239128084858703C406867052F1D495B340838064A132D3C2C405F351A3E14383F414012BE681C173D38422E2D3F2084461A130D10012B7020243C24300850057408383D0B0B051010071D0F112D4704142C2C1C1173228288210B08383068893F32522B811858223664641E622622210B08288868684C78484B152143561A0C611734481D1B390B2007FD45179D7840186C200C0C0D433E864460234D0002005AFFB9039E0592003C0054000001321F0232171617151407150607060706070607220F022635363B0137343F01363736370607060F01232635263D0134373536373637363F013E01011507151633141733363736372627222F0126070607220702AE392F241810100A221C1C0C0B0D3D232880132D7440400838246C3478242420185868297738209C540C1C262D27497F403240FE700C312728046969646E03190F191222485086134F0592686060CA212F10142C68515F0C80C3102F5D1C2404083840240C0C641EA1D9375D6B293F0C32224D6B0C393334B34B433B2D6324241AFD82304C40580C0818684C7E89737C2C2C212F66A40000000200640014017003D0000E001E000001321732171506070623263534373603161D01140722070623263D0136373601041C2C1B091E422014403C15015C380923310F400D272B03D028382064281408386B6510FD94193B403D3730180838206349440000020056FEB9011E034000150024000037161532171506071423263D013637353427263D0136133217161706231407263D0134373697680B050C1840401C08281008573A0A160E0C3428601C0EBD0C3028C04A4A4C08382058346C07191517204002834C1751600B05093F20611744000001002EFFF9043E043900220000052227262726272627263534253637363736331615140506051516173217161716150603BA39637D878CDC2838240180CE626A622E2640FEC48CFEA477CD0894596740080754497354C8100418246349343033453C0838539D404C047E8A78354B08384000000002005700DC0437030C00120028000001331615062B010607220F012635343F01253613331615062B0107230723062326353433373336373603B74040083854FEA290805C40689C0138E12F4040083840E0548C748844405CA49448D44F030C083840301020100838410B181C30FE940838401410200838402010041000000000010021000004310440002200001332171617161716171615140506070607062326353425362535262722272627263536A539637D878CDC283824FE80CE626A622E2640013C8C015C77CD089459674008044054497354C8100418246349343033453C0838539D404C047E8A78354B0838400000000200C8FF4F040005A90033003F00000132173217161D0106070607060715141F01142B0126353734272635343F013637363D013427232207061506232635343736253603321716150623270722273603205E16124A100D634E4AB41034083C084004241854583A6A7C4414DE36D8181C403C2E0126509B5B1D10083818202F190B05A924A05739206F5D612F6A02042E9E38800D274C265A534534343012627A3E147C582C451F1808382B2D21630CFA7D3E1D215B06067D5A0000000100640000046804B80071000001331732171615161D011407060723222F0107232627263536333633321F010623263D01232215141F013237353633161D01363F01353427262726272623342F0123220706070615061D0116171633163B013637363F01161514070623062B0122272627263D0134373637363736373637340270603C50484C3C5030540434400430206C384C182434745A2A08083840145C443C13210838404315042C130507111A12580854922A31434814477962322236705E3A38342440783F15721A809E5A5B69703806220933204C1E4A04B8145480406888208E3E461A400C0C163652967C38385C4008381440722610241C40083878382C2C346B49372D012738090F085026A67E3A432180873140083A121242080838364A20483C2B518B45646D9B015704783B5920240F0000020028FFCE03FC05E5004B005800000116151406153217141F01163B01371615140F011417161716171617321506232227262F012227263523060714070623220706072207062326353437343F0122273437363713363F013437360B0106072207333F0127342735020C402C0D23444C1206108040603048083020041206080838410B13090C1B4928080D539838482222320614081824402430200B053420086C13191838281C6814080701108C8C504805E50A4337501B651287BB2C220A434B0B0F14B120365F27035D224D7D234721CF501E0D190C2E22C07B3B642C0D3B5441197C86303220785B012E44304817AC1DFE69FED63960183039C11683180002003BFF8803B505C80053005F000013161D0137330417321715060714071533321F011615171514070615070615070623263534373635363F01363F013526232627262B0107232227151715161D01161D010623263D01263D012735273527113735361311171532373437363526238340042C0145096810097F342C7183543C08985C3C3C101B1D404C2C1E0E68223A0C052F2735493B908A1817150814100838401014080808087008AC564C28081805C808384C041206BC0446960F2504483C4B2D5064328A5014542A2A381C0A32546011231E1E64283018447C29131C08105060BC4F2D381517304008381C1517448CAC60F82C01802C3440FEFCFEF82C145409573A16300001003C0000041D055F003E0000013316151427062B0106070607220706071407061513171615141F01371732373316151407252435222726272635270334373437363736373237363334373402D018618120340813393F01154F2341203C06042084849EEC0E4F084095FEF8FEFE1468590F50080630402C4C14480F21443C84055F31404E280E100B3B0A45085D0B1E8859FEF7450F1F1D3E3C04042E0A404F2805091C373514722A4E011C58841962473A073D2A40120E080000000200050000038D05C000330052000013161D013320151617161F01161715071406071407140706070607062723170623263537352627361726272227353F01273F0136171507151407151716171637363736353637363726363526232627222726239D4070010457212157241F09142B4830341C79582C5B29080808385408571D1058230D070110143F142116741410180B0D5B677116441D1F3523050C131926520F291DCF05C00838381C14200761304050189C858454112B0A2A30633A1709022440153B2C040E42490A95CC3CE0A0952A4B1575F804602C6B35E4FC318B302B6A16540C13352C5893751D6C43251418000001000E000004160520005300000116151407232723072315071105333217062B012227230723150715161F01363B01173215062B01222723222723220F012327072322272627353723220F0126353437363711372326353437363717363B01173303564058D82CA4381414017C843A0E0838406E56D02C0808102008AF41ACCC48083830171508273DA437B9140C04041052161C100804093F1C4060440408104054174534232DAC2CAC052008383B11080C1850FEF004504010080C2C30FD57446C204040101074040404CC5AF64C20400408382E460F0D0108480838491B0804040C08000000000100640000039C06060035000013161D013305331617331615062B01262723252311140717153637363734371615140F010514071517150623263D0127352735371334B8404001082C286C5C400838646D3320FEF83C09013672A26C58407884FEFE500808384008081004060608383E200C08083840080C20FEC2275D643C150F24100D0B0838420E202C100440C0E6400838DEC0FC603454020C2D0000000001002100000421058C0065000001161514071407060706070607060F0115140706071516171617333217333637363F0235263D0123060F012635343736373637343716151407060F011F011106071407060706071407232623222726272627263D0136373237323F01363734373633343736025D405C2C012738283C241D13102814104438354704325A281963380C241C4C048B2D2440B4313F0F755440301769085C0C0818301B6D4020287845173A1A2E623F510814280E0E0D0F3C431D48391F343B058C0838351F0A0E090F3F153153167E1418193F2B4D906775411B181B252B2D3C68F0462A0C47450808384765200C1923250F08382B152A1A086834FEF84C20244053450D270B0518180A6A7B81112F94605C5464706F050632440913280000010011FFAC04640581004B0000131615061506151117253526031136331615111217153733161514071516173217150623263D01032627052315171516070617062322272637273527220F0126353437363327113437363736E74006040801FF100C0838400C10780840B8180C0808083840240B05FE1904120D10070308383A060414090E302C18403430340C04020C1B05800A32354B5544FEE068421041010B0100400838FF00FEF333082C083848240C8FE19C204008382001B0173D3E04D734854A283540443E6D7134CB240408382B19208401206D4C364A1C000000000100060000036605A40027000001331615062B012215161D011311331615062321263536332111342735262307232635363B0137330246C0400838D434181CF4400838FD40400838014C1C10148CA0400838A0A03405A40838400C534514FEF4FD2008384008384002E032CE34800C0838400C0001000D000003450580002C0000013217321F011617110223220706150607062B012635263D013633321716173336373437343F01352627352736024E453F09032122243E120E0E5C2470883020C04408383E062C64102FAD602830382F500805809524558290FF00FEEC28622A2E2A4036223B2920405432160C5024682020C8E4F75C108940000001004B000203BC0600003B000013161517160722171536133F011615140F02161716171615062322272627262715161D01161732071516071407223F01262F0135363511273727368B400D010409121BFB94404044C8A097CD96224408381E4AC3246DEC081306070B122140440D06030210020A040D080600083846394969FF09010E881408383117BCA020D6C61933254044DF288A3804153F146CD6426A3A312D0B907181B35034B61F010BDB103A4000000001004A000003BE0574002B00001316151407150715031217161715373337363736371615142706230607230623222734270313353735343736B6401810040C1C0F091458BE3B65147C5AAA34604ED01C1A2A4038281804102014057408381C18686C04FE40FEED4D173908041E120E0C2429384207201B1734942B75013401C0106C34601C200000010022000004440554005B00000132171617321732173337363336373437363B011615161D0114071112173217150623263D01262F0111373522072207060F01060F01150715062322352627032723140715070615220F01150623263D0112373637363D0137343734011C353B21130B210729044016120543903018185C0C141C04060A083840140C1014093B1331291F18240C080C08384410446810041C2034060C040838401C1E10140C1C1C05546423D17C8CC464165226722418400E1A1C2167FEB0FED28E844C40083844B6D6B4016C68183C601A6A506C4408087874407450B0014088204C3CC08973F610344008384801568817850E1A58681E563800000000010035FFA303F3059E0040000013161D01161F01141716171617161735131134273536333217321711140711161706272227262726273427222726272635231507111311062326351103113711368140265290840818323E114B1C1C08382E160C0C1C271333453416173719495C151B16DE3C040C04083840040C080540083858056390156B0127295B2044640120016E10300C403848FE8646C6FEE28D7045439C106825700B753005EB32124830FEBCFEFFFE984008380158012501403001304000000100560000045A057800DE000001173733173733161F0116173217161D0107171507171507171514030607060706070607062322272227262726353327353727353727353727353727353727353727353727353727353727353727353727353437363B011615140F01171506231715071715071715071715071715071715071715071715071715071715071617161516171617163736373637343712352735372735373427342726272623350723272207060722072207220723171507171507171507171507171507141715062322272635332735372735372735372735372735372735363734373637363702EE04041C040410364624290F151330040404040404101418104E15614C8C60501933395F25174C0404040404040404040404040404040404040C0404040404243C200440240404091B0404040C0404040404040404040404040404040418281C1C142014695F605D5F30201804040404341805271D2F041C041E76081C0612130D0E1204040404040404040404045008382E16480404040404040404040404041418400745299705780404040406322C38285038380C04041C04041C04040461FEE63F2540854334511B0D28AC5D0F9977041C04041C04041C04041C04041C04041C04041C04041C04041034041C04041C04040453194808381B290C041038041C04041034041C04041C04041C04041C04041C04041C04041C04041C04A52B26121F41232538062E455D970E36013B40041C04041C041A4E1D131933340404043C0553245C58041C04041C04041C04041C04041C04377D1040386B5D041C04041C04041C04041C04041C04041058303C48404C340C0000020064FFE60390060C003400440000011615140714071533363F01331615161715140F022207062317151423151617061707062322272637263D01372635113F02361323071136373637363735262B010607010040181404875D68847C1E0ED0906417891E16040C160C11111C08383014030E0D041014141C164A0C18911F0967D5371428508147060C0838142845170C1C241018181A4A485FB5685C94141C100824CA1E383846403C5D9A962134182D37019488649C70FE9090FE9496061D478E76381C0B2500010049FF7B049D05BF006E000001331615142306070607060F031517151417141F01163B0137323735273427263536333217321F0137363F01262F0123060714072635343F01363B01161716130706071407161716173217062326352627262722270623060723222726273427263D0127353736371237363F010259204064163A6A2A261E381C1008404060643824580A2A804018083829230B415C307A0614146034407A0638405080153F2050506814141C5C60810B290B210B0838583B1917110A265E1A372920EA721A4A20300820182458406B454005BF083844140C47555761989844242C34424A2147322640300488083C2117403C505C40C262B2A5350C450B1A0A083830384408083867FEFF7CA781107C863A261A3C40182837450E26306036027804741626496B142C40908F45011438770D1C000000010042FFC403EA056E00CF000013321733363315373317373332171617150717150717150717150717151407060706071407011617161506232227012227343732373637363537273537342F01062335062307171507171507171507171507171507171507171507171507172317150717150717150717150717150717150717150717150717150716152317150717150717150623263D013727353727353727332735372735372735372735372735372735372635332735372735372733273537273537273537273537273537273537273537273537273537273536338E231D0442325C0C040404986C453704040404040404042C53675B1B180190522E1408382F81FE88301C680E26903820040404F8103B316C1C04040404040404040404040404040404040C040404040410040404040404040C04040404041804040404040408384004040404041804040404040C040404040404041004040404040C04040404040404040404040404040404040404040D33056E291404110404362C541D04041D04051C05041D0404101E318E3B460B0C19FEA45413171B4280014367306E2E3383292104041D0455270511041914041D04051D04041D04041D04041D04041D04051D04041D046F051D04041D045F0C04051C05041D04041D043A0C04051C05041D048832041D04041D04041177096E0D04041D04041D04BA041D04041D043A0D04041D04041D04041D043D33041D04041D0470041D04041D04051C05041D04041D04041D04041D04051C05041D0404108D0000000100350000037D056C004000000116150627060F010623060715171417161F011617161D01140706070623072225273633321F01363F01363D012627252726232627263D013637363732373237360243B11AB66F1547202B400C5942228BFC302C1B353A1E7F4D1F75FEFF09093D1FE5425A30351F1E67FEE1051A2D3340580D2423470F2F30356F056C5F389EB51020243C45533C3C0D0B1A22481A361C58402567394F9404BD20409508366E403F15602B115404141B35215740613343353C3428000001000DFFA3041705440026000001330415161506232523150711140716151706232227352637113706072207062326353437343702A7380120180A32FEFC1814030710083840100E0A14F16D1B352E16406CF20544220A181C40200478FDB471A2774F40407008ABF602A05C140A2820083832360E1C0000010036FFF20350055D0039000001161D010717150717031607060F0106070607232627262F023327113633161D01071307141716171617363F013637323727132735372735360310400404040406021B063A2C3814202040D44F2C4C200804040838400404043C214302B94711241D0A1107041004040408055D08380C04041C0404FD63F016414F5D2D0A0C20437C1DDB6C640402504008380C04FDC4043EB2634D154A0C30441073940402CC041C04041040000100280000033C04D8003A000001161514070607060F0214070607060F01062322272227353727332735372627262F02363332173217161F021533343F01133637363F013602FC404C241C0B0D24281C18280E0E18161A390F0903040804040410281D4F4C200838380C060E505040080824283C0F091311581604D808381779698F174D986C0E3A5E52145C2C1454240C0448041C04A2568898E49C40486CF5ABE02414204C6C010C2355264E941400010014FFF704F80573005800000116170F02030603070E01072627262726272627230306070607060726272627262726272627263726272627373617160F0116171607161716170617161F02363F033617160716071617161F023312371337363704D81D0314080C2A08541E0728384404111F3E0C0A17043A053B292F19353E0E0C183A112C241A1E3B04180C0B01060E383F0604090D20053710022F024C0229190456053216150E383D022003130D161F1C3D0447082A11082805711C3854542BFE4E5BFEB66E3B310307633A89C7510973FEED3A9586273918073D0B7D63554D8319918D311B650128403F050E38340E542E359050136218AC24444301E52CF08BDF3F05065455231F6021857BCB01125801BE5F6E440000000001001BFFF9039B05C9004700000116151407060F01171617161716171615142B0122272227262F01262726270607060706070306070623263534373637363736373526272635363332171617321733343736373633032F405467351430110B3533132148441830240D13212310271517154B1D2030162E5C0F19181C404048283937313F0B49500838331507310D33044C4F3D1D2705C908382C74F52F2844091B256F113F05375C4C3C284418192B14245F411490465EFF00093F1808381B75E044BF3D5D47041B458F154044025E400C6CC3514C000000010028FF81034405A4002700000116151407060F01060706070607060714072635263F013E01272627263D013633321716171237360304405C2C284C2A1A17191A16260140400E452C2E1A1381707C0A327076415F9C321B05A408381E8A5577D47D5F4197455F38CF320A0838C483A87FB726E688123A044074959D01B14B4400000000010021FFD103FC0547003400000132171615140714070306072207061507153605171615140726250722353437343736373437363F0123040722072635343732372403111B21103C20B92C23076560046101928C543873FE68D85C3070552F6E523C1004FEB0941F4D40781B5D018E05473C15171C501A42FEEA7544D87D530404281C2136382E1657042C4412823DAFB070129E6390381B34140838430D203B00000000010049FF1002290648001D000013211615062B011517110711331615062321223D01343711371127353437C90100400838D8080CFC400838FF00A0240C084406480838402C2CFD40A0FD800838403C0C1A2E0270A002B42C602F2500010022FFB002A605C8001700001332171215161B0116150623223526272603272603273536623523CC485064240838480B0D44605C0490500805C860FE50449EFEEAFEE89C1C407C095F96014AF4380134AC084000000000010049FF1002290648001D000005212635363B013527113711232635363321321D0114071107111715140701A9FF00400838D8080CFC4008380100A0240C0844F00838402C2C02C0A002800838403C0C192FFD90A0FD4C2C602E260001004203CD02FE0585001F00000132173217163316150623263526272306070607062326353437363736373637021E37150917382418083854263E04446C3375141440400785584419530585545884181C40191B1AA2404C16560C08383018124A3C40342400000001004A0000044A00A8001000002516151407230507232635363B01372533040A4080F0FE70A02040083820A00190E4A80838430D0C0C0838400C0C000100430460023305DC001000001332171617163332170623222F01263536831D5323813315401408382850A4940805DC481060285C403C785137400002002FFFD0039303E80039004B0000013304151617161D01161506231707170623222F01352207060F012326272627353637363736213334273427232207060714072635343736333603151633141733363F01352723200706070601A76001002C2C1C14060E0C04100838410B080A628B3D5080315F23191B3D7D4B3B013D1C40A8681E4E260E40402C4242269A1B1D2498257BB80430FEDD254E5A1F03E82D3F33A9B53388161A2C68045840683818403F2D0403492454209040891F4432861A1E180D27270D0A324A1A4818FCC804400C08243070B4283C26762E0000000001005AFFAA03BC05FE0051000013161714071506171617363F0136373637363F013316171617161D01140706070607060F01060F0223263534333637363736373237363D01262F0123060F010615060F02060722272627033537362726AC401426160803260B1844262E41431C3C14604D3B1D0B0C200A0A091B164A5C4D833C18204058C04040241612090B20101C203C283428742E1A10431439391A0C1A010C150A0205FE08671CC5FCB2375AB12854DC2D574E1E0A2604104C1448154B40662E13390460167A8C585C2004083844728E53450B5940352F745410141C141CA533A11740824C0F5193800185AC9C12AD4D0000010028000002E80448003D0000011615062B0107060706070607060F0115161716171617141733363536371615140706230607232227262326272635223D0136373637343736373637323702A8400838344434406513123A211F101408141018143824783F3540501E2E295B402C581D07101C340C172133454042322957104804480838401C2B196E0A27494C24605457050C24082C0C1013313705083834184C181040300735294B5C40AB096359182C541C0C401C0000020028FF9C03C80610002D0041000001160703141715173734371615062314071F01140722352627230607062B01223527363736373637363F01171336011F01333237363727352F01372706070615070602EE5C52180408603C40142C94280440441408043ABA3B1920C4280D1F30300F314E42726A212EFDF9184020089E4268040804040CAC2080402306104F45FDE874A4887C2427090838600533C4242D0B641B651DA32C6C99AFE34458172948303B0B01BB98FAAC702A7D3245043080A07C571137711764CE00000001002FFFCB032B040B0051000001333217141F011516151407060706071407060F012635343734373637363734273427232207220706070615111417163B0136373637363736331615140706072207062B012227262711343736353637363701B780354B30044078063E555F58015710406C6008554348282C58243C132536222438254F0C1B5528403309272940454F300F752E1A20B636380858582523194F040B7C1476180C08383F15091733150C0C090F0408383810110B0B10202527315A24485027834A1AFEE23D2F100F2613311249400838256046283D24505050015029C36C1430103319000000010021FF6A031305D1003E0000013332171615062322272227230615061507173336333615060F01220715061D011607160306232637362736273537060F012635343727363F013637323736021B2461175C08381D2F0A12405450100E04644B8C0845532E710C0E0106041D6038250B0905060442421840E40E14081C23350B393B05D11C2D33402C102D075C80509216213F40140E1604251F2C71A475FEF168367993A88C8B243017310408384B49B6625A4C3F45242400000000030043FE5503CB04390046005800710000013217161507161506070E01070E013315370516171417161D011407060706070623222723222F013534373437363335263D013637352227262F013437363732373335262735360115163B01363736353635342F01070607060315161733321F01333237363F0135262325272306072207140246216B180C440C4834503C50071C14010C3933402C282F5124382A6A3E8E405983081C883014100714294F3F15047C6779147C04460A08FED862222C255F44443408C83D2B50233D2F1831933C040E2E7F35104F15FEF804044C3C2D4F04394C310F30364E53F13C29073A460404040830094F3C1C205F35412B19133C249424406117286C18041517202632044C273D4C3F895D1B240424201040FDF41C5C0C0C2507F01C0E0A0838212365FD59544907200428353F2834780404111F640A00010050FFB7035805C3004A00001316150F011507113237323F013637363736331615161D01161D0107151706070623263527323D013437353427353427230607060706070607060714070607150623223527263511123736C840240C080B090D371C2E22113FA421602C140C1B090B181C401B080C141404195B412C07150A16181050081C08384004100A220B05C30838909F3480FDCC3CC0448937342828142C4F79146B41A04C54DB021E180838CF1430393394445C203D47074019940143095B4C182484028348405CA1224A02800181327000000000020064FFDF010805B800140020000013161D0107111715170706232237263D012711363337223D01343B011615071714B0400C1410100838471B1414062E26443C0840040404000838204CFE944C74DB2E40C5663250500164BCBC740C800D274C4C270002000DFE7001BD0540000B002C000001321D01142B01263537273413161D01141F02151407140706232635343736373637363735342703222735360121443C08400404404014282060A0452B40343F4D12262A0E1C300907080540740C800D274C4C27FEAD0838203C48E4DCDC877530745008382B194731104C2A4EE04583011880204000000000010019FFBA031D05C70044000013161D010615111733363F013437323736333437161514070623060706072207321716171615161F01062322272227262F011514071407062F013637363D013711343735368540010404261E1C5809671D1F5440382C2C294B1C200D23165E4B0DA92B2108083840801E5B2B55611308104D3203141301010805C7083840EB7CFECC1C17311819475014141808382E16282A2A1C3434705C23D1263F1D2040FEAC1E6230543A8278643C023B43889236588C01407AF93440000000010054FFB6011005AD0015000013161707110615131417062322273703343711342736A2402E1814040808384616140414021505AD084560FEC03F3DFDBE38D440A0B002464242011067561000000000010064FF7B04E203D400530000013217321715363734373332173217321711161707263F011127342723061506072207151407142326352637112735232207060F0106070607160706232637352635262711363316151114173637323736373637025488180903386C28602A360B150C0C140A62631B0C182030990C04100F0C4C400410084C34540A1E181C1418101414083868281C080C0838400C140406420D1F4F3903D44C24302C100B05506048FDE46A503738594C022448251726360D37A4A011567E0838743501182CF094054B6C2C5C851767394014C028315793290140400838FECC1D0349337C063A5E0E00000000010050FF96033803F2002E000013161511373637363B013217141F01161314171407223534272627263523060706070615140715062326351103353690404C48443E1E203E2A3424202C084044400F1D3C046E3E182C3010083840080803F20838FEE88C6B3130781A82C42BFEA79D2B2D0B70EAF613C1862A4A961A8659372212F440083801B00100D040000200430000043704140025004A00000116150733161F011615161D0106071407062B01262F012627262726273534373637363736330115141714171E0117333637363F0135262726232723220F01263534373633272307220706026B600454753B4018141C28708A2A807867613E32172121034046724C0C5D3FFE94283C2856B664644C1420141804520E2C44085C3840482616084C6C2E86200414093F1C1E4E582A3E155B608C303D6358142E3E2C4C095F352F80228A644C270D40FE246813491C3C3C3A261D5F3C34547454286C144C0C0838380C300848882F00000000020028FE4D031F044A0027003A0000131615140F01153637363B011617161115060714070607062716071607262736372736351134373613111716373637363734232627230607060706D240280810717464144F552C2A3A4C2E777E6E061B1B4F5701100D3222381C2C04817C6937171D2C171D1C5728384C48044A083810603C04183A6C0F6D2EFEFE0CDA47105C2A524F22CE7478231948AED649396601B065C358FE60FE2C3022635A6A20A9F81E0E2B243625440000010043FE4E03D6043C004E00000116151407220F010607060F01151417163B0136373637363D0136373633161D01140714070615070617363F0116151407060F01232227263F0123060706232627262F01353437363F013637363334037340701E32B45048A03C08B40E1A1477316E1614121E291F40382018271B3517351C40182E375C0C39132C1B27041C802266A828412B1470293F9850A45C54043C0838410B285024304D8F701467250C245081872D1340761628083820119715633FB1E7D2A035440408380F313F350E907DEAC740402027211C585020CC64342C582C44440700010038FFC602A80426002100000116170627060F0206170615070623263537343734032734373215173637363736020C7E1E3478800C541C1911090D0838400D0524184048101B1D2490180426246A6B717444982858988D485B4008385B33BE310147E42D0B8C84184C5E7216000000010021FFB1030D042A003900000116151427060F010607163B01051617321715140714071407140706232227222736333217323736373437352723263522273534373637363336023B4D913B9D1C2E342F1984013C41130B055E58246C42421246320A08382A3A1E52364E46F0C07831135629977A4E27042A3638441E066E1876401804192B284026B11B3108241351282840402848522A0F981C040B1D6020229062524C14000001001EFFB00272057C00300000011615140711363B011615062B01220714171417061F010706232237222735263726272637062326353437363311363736012640106E4E20400838206256050F0312070D15384B2007010E020C04101367194038641C100418057C0838462AFEA41C0838402427A55D682F433D6E8AF41C300C902D871C644408382E16440198324A2400000000010036FF95033603DD002F000013161D010715161F0136133727353633321715071715141714171506232227222726352302232227263D01343F013536A640300CB828296F200408383F09041C281808382E1609171C0462526BB96428080803DD0838C0C0C4495F10510153604C60406060489850AFB1352F084038B47E62FEBC8C51778C467E28B4400000010014000002F803F00035000001161514071407060F01060722072317150623222726272627222726272635263536333217161716171617161734373637363736373602B840283C1C1814190F0B09040408382E161E2A1834112B3014303408384020130D240C261E363228243C140C0B211803F008381E5E49BB557B541E6234140440380F3D0B5178453F475D8C1040943B553335265E5B211E5EBAAE496F026A1800010036FFCE03EE041C0047000001161506150207060706070623222722272635262723060F01060F0115062322272627262F01353633161D01163317363736373637363F01363332171517121F013336373637123303AE4030380C141C26121428390F0F11380C0C0414183854100808383D0B1C380B1D1008384009134035131C101F050E0E10152B3B1928281C0C042008181C2F19041C083BD838FECF6E61537A042A587EC63D2686306B8A933F082E436083A72F3EB08643093A86ACCD51452B5C5141179558326037C4FEC44E37946355E60108000001001BFFDE032B03F6003100000116151407060F01153217161D010623222F01070607060706070623263534373437363F0126272635363332171617363736029B40701E32080AB65808382B4DA440334D2329162615174040682B4D2C6448540838126639573D632503F608382E561F790804A0531D04406488604B99217317491008381E621FA1626E48541C2830403C1D439F3D380000010014FE4802F103EC002A000001161707060F01061507020F01062326373436373626272627262726273633161F0114173736373536373602B73901290814251824462424181C4007242F18242835633D59200D0838545BAC3418141D141E1803EC1552662283BE3C50C0FED46E761808600F64E12173305E8641C124304014E2F41044985A903462626E0001001BFFC803FC0421003B00000132171407171407060F0114070615373637361734371615060726070607060706232635343F013437343F02060F01060F0126353437363736333402DC2D0B0C043C712F3C6C20E0063E7469246F0E59545AB8AB2F55201440404074487018735A5815A318405C5ACE955C0421461517272521E1495C0FB23E0D650A193D080A03093D501F372964472A2016093D36637716B8106ACE35312834045605093E30411D69540D0000010042FF3E01FE0642003A00000133161514230615071514171617161D0114230715161507140F011F011615062B01222F011233373427232635343F013637352F01263D013437360192204070880C381523101C245C71141C429340083840A42849230D71286040543010182C401450A806420838443E0610347947443C2311207034084CBCA00F29D074140838408292010C9079270838390F2C261A30608C4F49403642540000010049FF74012D063400110000131615111615140714072635112227343734C54028284040320A2406340838FA5C1D231D43320A083805B440113F230000000001004EFF3E01FE0642003A00001723263534333635373534272627263D0134333735263537343F0127232635363B01321F010223071417331615140F010607151F01161D01140706AE2040706E0C1D1623101C245C71141C5D6440083840A41B42220E71286040543010182C341444A8C20838443F0510347947443C2311207034084CB6A01028D08E08384081A0FEFB9073270838390F2C261A30607F4E4A403550540001005D0168037D02B40026000001161D010623140723262F01262B0106150623263D0134373633321F0114173336353235323736033D40251B5C606B29305622105C1824407036227527903C4C140807051802B4083820AC2319112B2450434D2408382033713030700709251F144C24000000FFFF0028FFCE03FC07060222002400000003008E009D0145FFFF0028FF5D03FC070902220024008F000300D500A50198FFFF0036FE5D041705CA02220026FA6B000300D6016AFF8FFFFF000E0000041607060222002800000003008D00A20152FFFF0035FFA303F30711022200310000000300D4000A01CBFFFF00560000045A070D0222003200000003008E00EA014CFFFF0036FFF20350070D0222003800000003008E0070014CFFFF0022FFD0038605C802220044F3000002008D5C140000FFFF0032FFD0039605BA0222004403000003004300AAFFDEFFFF002FFFD0039305B2022200440000000200D357FA0000FFFF002FFFD0039305780222004400000002008E74B70000FFFF002FFFD003930589022200440000000200D4DE430000FFFF002FFFD003930599022200440000000300D5008E0028FFFF0028FE5D02E804B302220046006B000200D6388F0000FFFF0022FFCB031E05A702220048F3000002008D33F30000FFFF002FFFCB032B05AD0222004800000003004300A0FFD1FFFF002FFFCB032B05B8022200480000000200D331000000FFFF002FFFCB032B057E0222004800000002008E48BD0000FFFFFFBAFFDF01AA05AD022200D2F3000003008DFF4FFFF9FFFFFFD9FFDF01C905A0022200D200000002004396C40000FFFFFFD9FFDF01B605B8022200D20000004200D39400333340000000FFFFFFBEFFDF01C20571022200D200000003008EFF60FFB0FFFF0020FF96033C0582022200510000000200D4BB3C0000FFFF00360000042A05C802220052F3000003008D00D60014FFFF00430000043705CF022200520000000300430112FFF3FFFF00430000043705B8022200520000000300D300C00000FFFF00430000043705850222005200000003008E0112FFC4FFFF0043000004370589022200520000000200D443430000FFFF0036FF95033605A70222005800000002008D66F30000FFFF0036FF95033605A0022200580000000300430093FFC4FFFF0036FF95033605B8022200580000000200D338000000FFFF0036FF95033605710222005800000002008E57B0000000010042FF95030205B5002A00000116150F01153733373217142306071715161315062B01222734373503273507232635363B01373534373401CA401C041404C82D0B708E1A040C40163A083F0920400CAC4040083840A82405B50A32883CE4041040440C0814049EFDE244A0601A264002348C081008384010F85B752700000002004903CE020905A600160021000001321732171617150623062322272627263D01343F0136071514173F0135342707060161231D2E162103111B2A325771243C105458356198200828403005A62838382C40785C2C03411652202D473C30F4300E26342C281B352C16000001007E003C02A205280031000001161D0133161506232227230607061D011433143B013237363316150623140723150623263D012227263D01343F01273536019640505C08381A16205262408450143B15151740183068180838407A461CC01C040805280838CC193B401411776A52283C082C1008385C0D13F0400838FC58332120E4A01444C84000000000010021FFAA041D058A0068000001321732173217062322272623270607061507220715161F012533161514072207171506070607220733173217161F013326353633321F01151407062B01222722272627262F01232207062B0126353437363732373523072326353433363727342735363336373637029962261F2D1B0908382636290F28AA16543010081A1A2801040840701B89040913211F0606346431B33F2D2808140838313B043820202014701040285C1B790864202C2117204094283C070904CC204064088428301B1D171D4296058A243C38403C180409171937443444223E40340838410B201CA05D172D3F1020683A0A18161A406014202E16243C302626161A0830180838317B2173449034083844081C4C0C4C707C1D43512300000000020078FF88039805B8004B0060000005262726353633321716173336373526272627263D0134373637352635223D01343F01363B01321716150623222F0123220F0115163316171617161716171514231407151615171407060714133427262F0123060F011514171617153637363F01021496461808381D2F235118625E52C656C64C70445C40084848614F1C4147280838263224084868180D1B1D7B028A6404160E1C6C6404607D2BA89C0C380C808E1610386CC40C581B3504781A42181C402C160E2890344C48156F4F9920384C1C1004365A1C402D633440442C1C404408583C24641947084C5820175140701E3204453334625E7D070C02F45854090B0C1523100C83113E42040C041814040001006301CF01F3038D0012000001333217161D01140F0123263D013437363334012425463F2545459373402A37038D454834504E46190C702380375E09000000020078FF310424059D003200410000013217361707151714171106232635112F01112307151615161503110623263511343734272326232227222726353437363736011417161732173503350607060706030C76224D0B080828083840280888080C1C0C0838400C0C14682C3F4D3480207C32BEADFE6770451F554F0C69672B3140059D0804404CE8EC40BCFD5C4008380294F0FC01041CF0ADB78D4FFEF4FEAC400838014039E73349242C983B79AC44355738FE608A5A190F2004013CF4164214282700000000010085002103790551004B00000133161516151714070623151617321F01150607060706232227343336373637363D0126232627263534373637363537353427262B010607060F01111716150623222F011134373637363734022D20745808902616715B2B29040953CB71E1432D0B64C672B410140E224167A0341E5E6C04300828383B45274510182408383B2918582D1F6B29055118185321507E5E28042F499C3C604B558B194040442C2C691F20107054442016462A1A34205C10101C311F18122A0C5828FE7C74261E407480016486463A0A4404140000000004005D003C05490558002500480065006E000001333217161716173217140706070607232227262726272635263D0134373635363316153334150623220706072207151417161F01163B013637363F013403272627262B012207263517321F011506230607231F0132170623222F02150623263511343334171533323735342B01033920607C4F1D7E120F09381A828662A0959B38942D2F2C0C789C88403C04053713C57507090320153B60B4809C70901632046C2010783038281E4E3C3CB232141C241C6404745C281808382B6D445C083840641C0436726440055890403CF8949C824658585E12500E7E22523A0E2B3D80AC84A60A8C0927606848DC734D3CA8361638344C681983137544900104403A5E48180927E86440205C20185C485840743040DC4008380240440787643404340000030049005E04C50532001E003B0059000001331617161532171617161716151407060F01232227262F0135343736373601151617163B013237323736353427262734272627342723220706150625321506232723061507151633163B01371615140722272227263D01343702A9205692301D3F37250B1110B459A78020BBE931470C6439CB83FE952745C0683482562884302439532407694428466AC85401A4A00838401084107739163A082C40605E4633A11C6C05320A56291B685D6711634F41E18B53350C941B8930C089A37DBB48FD68C46F21683C9041735E7E9769150F15270E0A40D72590945040101D1B101880180808383F0924A423194031570002006A031304760577002600420000013217161715062322353427060706070623222F01150623263D013437343732171417333637360533161514230623161D01170623222722032707232635343336333603C2430D491B083840401C08090B181C2341240838404024353720043C1C18FE442040701B11101408383A06130908642040706A5617057780EB9124405C18E41F35021E18481CD8400838E0763A0903580B19725E1808083844107583246C4044014C2C10083844140F0000000001006B0438025B05B4001000000017140F0106232227363332373637363302530894A450283808144015338123531D05B4403751783C405C286010480000000002005E04E5026205C1000D0019000001321D0106231715062322273536071615140F0123263D01363301EA78050B04193B3B150BDF4C54182040155305C140042804105C5C40400411372F410408382058000000010043FF24047B0474003E0000011615140F01331617161506232723060717331615062B012F0107140722070623263534371327232227263536331F013317132325232635363B01053337360377402C4434A147180838CC501448F84840083840D854443807091B1D40285C04D073791408388040906C6004FEE0C0400838C00120245434047408382028BC161A181C402462CE1C0838401808E8198B381C0A322F5101280438161A40240404012C1008384010E85800000200560064049E0524003B004200000132151733253332171423072315161F01331615062B012715132116150623211407263D010335210607060F0226353437343F013637363736373403333427060F0102824004200144042D0B8CF40C3014E44840083864B4240108400838FEF0384024FED4432D101C3024402458504B31333D2B0978D4401A265405245C3418404810049587040838400410FEA40838401A0A0838600160049C40125A4C080838163E2490AC8F4570643F452DFDCF37D1225A880003005EFF24043A05F00042005D0071000001161D01060F011714071516173217161D01020714070607062B01222706151407140F01263534373437343F01263D01373437363736373637363B01321F0133363736011514173637363736373437363727262B0106070615060706150601140F01060F0133363736373637363D0127262703CA402430140424311B1133281329500D67AA36804A1618284C204030281C04A8283C181C10249B294315402F652804420618FD386C3B593B310D4F1C2222046D1B245A2A50210F5018024864502C346898347843112E261848172105F0083820802828241F1104393B783E1A60FEEC1C16863359540C290F0B3D27510808381B3D183C1A2A187FBDA0B0498728580F5DAB0120441C505C24FC4CA8615BA5C3D23A377D0B295127045017413E323838906C3A016A0AAAAC9F69FC04403F3943618A42548C1147000003005D011E04ED03BA002D003C004E00000132171617161F01151407062B012627262706070623072627342F01353633343732173637343733321F013736331706070615161F0133323735262F0105231514171417323736372627230615060703954A2E8004282C084C415B204C64702C521E622A3C5C50500818282C1C185F3530404C341878451728412F3852823028441027356CFD48104450263622523814286C293703BA448C20443420602E4220073948545A425C081B7112AA2860580E06182E0205076C28804C7C3F3D2818833108203C256F7C8014108C243C443D5F6D13130D0B210002006400000420043C00230036000001161D01253316150623222723051407150623263D01343F01230607263534373637353601331615062322272322070607263534372536022840011C405C08381A162CFEE428083840200804E35D406823F908018810600838171504B1DB77AD4070016068043C0838C008193B401408817F40400838203A7664181C0838410B0C1CCC40FCA4153B4010300C240838410B381C0000020042003C041603F0001E002C000001161514070607060F02041716150623242526272635343F013637363736013305331615062B012523263536031E40346B3D6854702401E3911C0838FEDBFEF5765A40749884204C486EFDC2C00180E0400838E0FE80C0400803F008382B19681C68204C201C181B1D401C0C14180838392B684E1A482870FCD40808384008083840000000020042003C041603F0001E002C000000171617161F0116151407060704052227343736252F012627262726353437001714072305232227343733253301646E484C20849874405A76FEF5FEDB38081C9101E3247054683D6B344002A00840C0FE80E0380840E00180C003F07028481A4E682B39380818140C1C401D1B181C204C20681C68192B3808FCD440380808403808080000010036FFC403DA0584003C000013321516171633373637363316151407220F0115331615062B011517211615062B011711062326351127232235363317333527232635363B010027353676442672B50BEC23511513407C105C8CB8400838B80C0110400838F004083840088CA0083840900CC8400838ACFE9D31080584645183ACD80C6C0C08382D73607C0C083840047C08384050FEA040083801743C504010047C0838400126CA20400000010064FF1D031C03250030000001161D0116153217161506232227222706070623222723031423263D011332373637363B01161D0114173337363F013536029C40140606200838331D0A062020342C5038046C4040680A0E2513093B04402C044029130C080325083834739D30281C4050241F3D4460FE4C50083820019CE09527640838E08C2064417748344000000002006BFFC4032F04900028003900000132171615161D011407062314072322272635343736373637332F01262B0107150623263D01343736131433163B01323F01352723060714070601A3833184543C465230205A8E38440A724070243C342F2114C00838403C22A21C583808582C0C0C346F5D2810049060EA46C9A760B0486805078C2692924A264E1F19B46C600850400838602B2D20FC786460688460800C500A362200000001005000570410054B0038000001331615142304231617161716151407060706070607151617163B011615062B0122272627263D013437363736373637352726272635363337039C204064FDCC2836AA5C5C60540864497F327A63FD7FC13040083830C28EE458C4A04E52564A063E407DAB80191BCC054B08384494305C4430442C3E060B25255B0D7F04231D280838402820143A2A1039834C24461E0917042057616034542800010064FF95044803FD0028000013163321363316151407061D0113150623263D01033534372122270711100706232635363511363334C8AD5301B44D3F4034140C0838400C18FE3045830824161A4014101403FD241008381656497B24FE70F0400838F0019010A74D1820FE4CFE8E3A140A32A2E201C08C0E000000010072FEE1035A0651002D0000013217140F0106070607061511161511140F011407060F012635343736373637363F01113427113437363736373403222D0B4844035D40180820183488365A184048063E0F590D2F0C205C3F292054065140380C38174558801222FE987F6DFEE0581C740B8515470408382C280E1E045C027E0C014C627E01608BB9570D37391A000002008B035C02A705C80020002A00000133321F0115171407222707232227263D01363F0133161735342F0123072635341315141F013332372623011F60C23E240440301C3840693B74134544A03913581C7030404C6024481D070E3205C8A08C709C270D480C28275528720A040810044B29040C08383EFEAA180D23040C400002006A034802B60610001A002C00000132171417161D01062306072326352627263D0134373637333536171407270607061D0116173317333237352601B6343850442331313360942666147018701408403818333120452B242C44390F19061050155F932580A025070F15156B290F609E5A22260C40B01A0A040A3E2838644A1A085C647500000001001AFFD804A6042C00470000013332173217161532173217151407331615062321263534373637363D0126272627222722272307230615071516171617161716150623212635363B012F023534373637363B0101F28017212765940616090350C4400838FEA040382C18300C1808640E3A2A12604C4C3C402A2202562F15280838FEA0400838DC683430480844296B14042C184C995FB824C024B808384008382E16184C651BA425BB33752C14102C0C5CC0B632156F38301428400838409078BCCC394F2C30300000000003007EFFDE040A03FE003F004B005A000001321F0233363B0132171617151407060F01141F013633161D010623222717150623263D0107222726353437363B01373326272627230615142326353437360115173336353735232723220123151417163337353427342B01060172363E203004502020B6361008241C5C98A4581123400838BF6D0C08384080647C383C2014344C601C301C14185040406422015E0410C4140480140BFE77107C1513601C08643303FE503C783834133940153B4329202282141C083820407894204008383408A03E722B2D140CD547440C13654808389D372CFE7048141937202808FED40C3B690C080C3C68100C0000030050FEA00428051C0033004200550000013316151407060732171617161D01140F010607062B0122270306232635343F012627263D013637363F01363733173337363736011516173613373527230615061506250307151F013332373237363F01353427263503C8204044385021271D37302C382755A523402D73C40D3F4078703F59180C1407318413AD60401458323E15FD53224A71872820448C642E0206C8745C142818842C300A2E045438051C08383A06448C783D4F4F6160144C6848244848FE886C083845CFDC1F6D181CC0571D235980191F10944E460CFD28983C30D001144408081715541850C4FE7CD80830043C60076504702B75700C00000200C8FF4F040005A90033003F00000522272227263D0136373637363735342F01343B0116150714171615140F010607061D011417333237363536331615140706050613222726353633173732170601A85E16124A100D634E4AB41034083C084004241854583A6A7C4414DE36D8181C403C2EFEDA509B5A1E10083818202F190BB124A05739206F5D612F6A02042E9E38800D274C265A534534343012627A3E147C582C451F1808382B2D20640C05833E1E205B06067C5B00000000020071FF8F010D05FB0011001C00001627112735373534373217150715171114070235263536333217151407950810084038080810404814193B380840713D01F6849879F234083CF279AA85FE1D3508058C4C28105C40603808000001004200FD03EE0305001400001321053316151417150623263D0127232521263536820140018060400C0838400C20FE80FEC040080305080838859B6040083860E0080838400000010072FFD803E605AC0031000001331615142306071423161D01030623072227262726272306151423263D013437363F013217141317333711340335343736038620405C21C71834041030143F290C503A1E04544040445721203C20800C040434D08405AC0838400B0908E9FFC0FE2CB804940FD56761DB214808382013C1CF0D085C32FEF6243C01BCEB010520590B04000000010064FF4603A00642004B00000133161532170623222F012307140F01140F011517331615062B012715061506070607060F012322272635273437161D013217333736353735343735232635363B013534373437343736373602EC20800E0608382418240C28441C1C0480044008380480180A12294F0F4918401D53180440400E12183C4C14147C4008387C20204804542E0642142C2C4024083C175D7C2C68408C0408384004345FD110DC6F552A2E04403014242D0B0838101050429A9C54416B280838408C596739671F69255B180000000002005600AE0469032000240049000001333217163B013237363316151407062B012227262F01230607060714072635343736333413333217163B013237363316151407062B012227262F01230607060714072635343736333401A560334D6038781F25242C40543F396071471F551C7C10302F353840703C346160334D6038781F25242C40543F396071471F551C7C10302F353840703C340320446844440838206C3C3C14540811072F191A0A0838383C3C14FEBA446844440838206C3C3C14540811072F191A0A0838383C3C140000020051FFC50431042D001D002E0000013215161716171613321706230F012307230607232635343713363736371706070306153337333237262726272627023D441A323C7037710B0514406C809080D44F25084040A44440035D0434408C20E480A4761E494F5E364A02042D707E423DEB41FEF1285C1004080A16083818980198D9672375E85DC7FEA44A0E080CBF71C53F6729000000000200780000042C03F0001B0035000001161514070607061516171615062322272627263534373637363536051615140703060716171617161506232227262726353437133603BC4044693784C672600838206859BF44A435475408FEB04034E41C3806AA462E1008382D9F534D184CF84803F00A32465285639B11856B23354048578133254AB65D5B6C14401008381C38FEBC1C580B853F19151740903A4A28141C64016070000002006B0000041F03F0001B00350000001714171617161514070607062322273437363734272627263534370417131615140706070623222734373637363726270326353437011308544735A444BF59682038086072C6843769444001B848F84C184D539F2D3808102E46AA06381CE4344003F040146C5B5DB64A25338157484035236B85119B63855246320A1070FEA0641C14284A3A90401715193F850B581C0144381C380800000300420013029A00BA00080011001A00003716151407263D01361736333217062B01260526353437161D01068260604008D4153B3B1508382040013C60604008BA153B3B150838204060606040080F153B3B1508382040FFFF0036FF6A040A071A022200240E9C0003004300FD013EFFFF003DFF92041107170222002415C4000300D4003601D1FFFF00560000045A0703022200320000000300D4007401BD00020067005704AB05330039005800000116172116150623211617113337331615062B01072327230607060F011721321D01062327212723062B0126273427263D0137363F01363B01341714070607060722072207151633161F01333635363736353635112623262301D34D5B0170400838FEE01424C02C40400838342CCC040418100B211008016CA00A3264FEC0800C5020405662442C1C090B4C64480C2C38511B12160705070118143C242C241C3F0D3C1C3729261E0533064A083840247CFEF40808384008045765095710083C0C4008083812760D5F6C5CA0900864C8981B77121A597F23894C14A48C661A1C0C0C3E265A524F550110BC400003002F005703C303A7003300430050000001321716151734373437333217161D010607062B01161F0236331615140F0122272635230607062B0122272635113437363736170F0115161733323F01363D0126233425150733363536373534272306014B1824741C702C60424E2026324C2078253740281424404C2C619B2004175536661C246C48382448403080141C481813213C1C160E01041068301014304C3003A71C59232066360E064C392320873D3C93293014200838322608AC3B11573D60504E2601002F692C7C4888C844E42D2734382A1AD4641F0D306818240C48042410180000000001005601AA03F6022E000B000013172116150623212722273486F00240400838FDC0EC270D022E0408384004402B000001008C01B905CC02390009000013211615062321263536CC04C0400838FB404008023908384008384000000002005D037002A105D8001C00300000011615140714070607220715373316150623222F0135343734373633360516151407060715333217062322273536373633012D40302810180C04041040193B41330C242C3F0D2001484050160A083E0E153B5B29281C442005D808382B150A2E1E5244640408385C5038605E4623495C141008381C684B0D78605C74D07E2668000200070341024B05A9001C00300000012635343734373637323735072326353633321F0115140714070623062526353437363735232227363332171506070623017B40302810180C04041040193B41330C242C3F0D20FEB84050160A083D0F153B5B29281C4420034108382B150A2E1E5244640408385C5038605E4623495C141008381C684B0D78605C74D07E2668000100780333018405A70014000001331615062307061D013217062B01222F01343736012420400838301C4014093F204C1C04581F05A70838407046661C5C608C4CAD9B54000000000100780335018405A90014000013232635363337363D012227363B01321F01140706D820400838301C4014093F204C1C04581F03350838407046661C5C608C4CAD9B5400030050003C03F003C0000A00150021000001171615140723222735360117211615062321263536013217142B01222F0134333402106C2054283B1508FEB82C02F4400838FD00600801E0361A44202F25043403C028151F621E5C4040FE8C08083840093F40FECC786444147C0500000002006B000003C705880028003E000001161D01161716171617161F0114230603060723171506232227262726272627263D0134371237363717060706071516171615161733123735272627262F010247641010251F1E461D27101C4157150B04040838373D224259335D1B6C48FD0361170823612E86501484356F0477452C156F17351405881252381331315719734335387065FED92D67041040781D6F815F5F417616084430012B259612C8537142960458309C2041B701924A18543B8D47592C00FFFF0014FE4802F105770222005C00000002008E3CB60000FFFF0028FF81034406FA0222003C00000003008E006801390001005DFFDE04550572002B0000011615140F0106072207060706150607060714070607062326353437363F01363736373637363736373237360415402C6C2B39085820107059171C54742C041B1D40445E6648521638243E322739164E072125057208381937D03769801B319A0E55372F61097F342C1C083835576682705335375941532D6B0FA94430000001005600AD03BA050D0042000001331615062B010607060F0121161506232107211615062321141716331417161506232227222726352635232635363B01363F0127262726353633173336373633363702F640400838343A564C2820019C400838FE282001F4400838FE00B4304C441C0A3224385662903060400838640616040454442408388C28104479332E5E050D0838400133264A4C083840600838405E861C0B0D1B1D4014507F1D395708384001570404100418244010119F84290F0001006400A0023C039400190000011615140F01153217161F010623222726272635343F0136373601FC40A890226E77210408381F4D4157886C685A2A15039408382FD1800468442C18403C25533E3E2B555C71473000000001006400A0023C0394001900001217161F01161514070607062322273736373633352726353437CF152A5A686C8857414D1F38080421776E2290A84003943047715C552B3E3E53253C40182C44680480D12F38080000000001007FFFF9038305990033000001161D01133336331615142307231617211615062321121D010623263D01340323223D013633173303232722273633173503353601BF40088C3339405C449009130118400838FEF8340838403458A00A3264441804D42D0B0B2DD008080599083820FEE40C0838400CB15B083840FEF34B80400838803A011E3C0C4008010C04404004040118204000000001002F022A0147033E00100000133332153217140F012227222F01343736B9265011075117123A312E053E20033E6E383B2E051E551A352032000000010056FF25016201990014000017232635363337363D012227363B01321F01140706B620400838301C4014093F204C1C04581FDB0838407046661C5C608C4CAD9B54000002005DFED402A1013C001C00300000012635343734373637323735072326353633321F011514071407062306252635343736373523222736333217150607062301D140302810180C04041040193B41330C242C3F0D20FEB84050160A083D0F153B5B29281C4420FED408382C140A2E1F5144640408385C5038605E4623495C141008381D674B0D78605C74D07D276800070069006A04EC04AA00190033003F00520065006D00740000011615140F0106070607062314072635363736373637363F0136053217141F0214071407232227222F01373437363B0117333417061507333217333527342301321F01151423140723222722273534373237051737161F0115140706232227263D01363336051517333527230605151737352706037740A0649D0F32A64507244009BB581C02BA2B496415FDCD2050282C0820584061172C30041C4015170C0404141818040F196440140323325E144028401850260E4C2113FE6818242F550460290F6751141B1D3E01C230141C0417FE3B3C28283C04AA08382DE788AB3147B570090308384EBE6D330ED2495FAC10483C112740383824161A1C4C3854313710040B770D23381410540CFE285C4040A00B05385C803226180C0404086418602C5C18602711207C5088541C681810500C2034302433FFFF0028FF6403FC0718022200240096000300D300560160FFFF000E00000416070A022200280000000300D300740152FFFF0028FF7703FC070D0222002400A90003008D00970159FFFF000E0000041607070222002800000003008E00910146FFFF000E0000041607070222002800000003004300DD012BFFFF002FFFA3038F07140222002C29A30003008DFFEB0160FFFF001AFF95037A070B0222002C1495000300D3FFE60153FFFF00060000036607000222002C00000003008E0027013FFFFF002EFFB0038E07070222002C28B0000300430053012BFFFF0056FFCB045A06FA0222003200CB0003008D00E70146FFFF005DFFBD046107040222003207BD000300D300CC014CFFFF005DFF8F046106DE02220032078F00030043017E0102FFFF0036FFF2035006F20222003800000003008D006E013EFFFF0036FFF203500718022200380000000300D300440160FFFF0036FFF20350070002220038000000030043006A012400010078FFDF011C04000014000013161D0107111715170706232237263D0127113633C4400C1410100838471B1414062E04000838204CFE944C74DB2E40C5663250500164BC000000010057042402AB05B800160000013217161716150623222726270706232635343F01363701DB2E162A4A1808382B194616C84F1D403490495B05B8387153181C40344844A44008382B19783163000000010065043E0381054600240000013316171617163B01363F0116151407062B012227222F0123060722070623263D013437360175202B5D302C3B19081C2C2440682711203781103C38047A061C041824406816054603350B25201B41080838345C1450241411173424083820323E190002007803F50250057100130020000001161716151407062B012627263D01343F0136330715173337352623272306150601685F31583C38306047612C3034164A405C4830283C0404381605710C24442C77254008382F1D2022364824D0041C3014340411072A0000010049FECE017D00D6001A0000251615073217140722070623263D013437363D0123263534373637012540141D0F9C1513161A4044702840481F11D6083844788F4128140838203B052F2D2008382B453701000001004903FC02710574001900001332171617343732353633161506230607140722272627263536892E1621877808182440191B51333C30683C3C24080574380A96146C0C24083854454B210B804527321A4000FFFF0035FFB6037D07090222003600B6000300D7006C0195FFFF0021FFB1030D05D1022200560000000200D7275D0000FFFF0021FFD103FC07090222003D0000000300D7008A0195FFFF001BFFC803FC05E50222005D0000000200D772710000000200DCFF7A01780606000F001D000001161514071507150623263D0137353613161D0117150623263D01273536013840100C0838400C151F400C0838400C08060608381715D0A0A0400838A0A0E05CFBF40838A0A0C0400838C0A0A04000000002004A006B03FA053F0030004A000001161D01373337333217161F0115140706070607062322273433353327352306070623263534373637363D01342F0135361723061D01161D0136371615140F011136373637363D01022B01013E401C348C60466A503C044C7D9B65CB3F212D0B580404042B4115174048293F2C200808B4102420AD4B4070C8A781304C30488468053F0838080410545FCD4CC026A675533937104044083CC40D2F100838311B26120A0A4C9BED684040C4070920C8B4282C0C0838410B30FEF0315F184C7410D4012C0000030064000003B004980021003F00580000011615140706071716150623222F0106232635343736332627263522273633321736033217363332171417161D01140706230723202F013437363736373237361723070607060F0115163B013237363F013534273427263506028040383A12BC180A322E6A7090244034410B021E600B050838199F8E42231115135379403C5079375080FED149041C19378C20092F2236204C1C404B110432CA743755300C14585C4814049808382E16271544181C4030287808382B1934090B360628405C84FE401C0C6C073553314077755C14C84861173F2DA212280880342A464331045864301F2D40542F3D1B2912120C00FFFF0028FF4B034407000222003C00CA0003008D0045014CFFFF0014FE4802F105A00222005C00000002008D40EC000000020050FFF9034C05790024003300001316150715333217321716173217151407060714052315062307263D013735273711271136131517113336373637352726272623984008B49D731359152B09033C2567FED474062E18400C08081409771458F81C64182813357153057908382CC0687402A22440791B291F1814A8BC040838204CD02C2C012CE0014060FE5404D0FEE80917202058840B4D5800020057FE70031B05100030003E0000133215131533321716151714070607060723150607150706232635343735363735232635363B01033523263536333503341315133325363735342726232623B7441C80CD2F84047C5389057F18100C1018245C280C100840083808080840083820A8080C01043D27482E3A153F051070FED00468DA6E3C3D573414091B7041BF205C24163A241C10BC505C0838400138BC0838400401682DFDE7BCFED0441E2E04617F700800000000010057017C03B70240001500001316053317331617161506232227232723242726353697600100402CB433492408383933B42C34FECD511C0802401818080C041824400C081C1C1B1D4000000100500099033803A9002F0000011615140706071517141714171615062322272627071407062B0126353437343736372627263536333217161737363702F8404402B2843020140838375D3E2E885060140C405068017F20C4300838232D9A3E88453303A9083820441BA9046C093B0612161A40882828880A427008382947085C08781C80321E4038623288632D0000010071033401F105BC001D000001161D011615173316150623212635363B01372F010623263534373637340131400C0430400838FF00400838480404041E1E4030074105BC083880A89C0408384008384010DC1C2008381D3316422D000000000100A0034802B805C4002A00000116153217321D011407060F011533321D010623272126353437363F0135262B01060706232635343736330160B01D1710206A3220A0A00A3264FF005C8832421C0B69200533141440281C5405C40917346420601C701814043C0C4008193B386C1E3E2070101C500C08381D4358000100AE035502A605D5003000000133321F0114073217161D01140F011407232635363B01373237323734272627263534373437352723220F01263536333401624093211434362E0C5C7844A04008389460210B07115421471878141C80191F1C40184005D554542329741414202A6230090B08384024201C38141315181C3C1C09031004240408385C0C000003006A000004520554001D0035005700000116151117331615062B0107222734333527352306232635343734373536051615140706070607060706232635363F023637363736033332151615140F013316150623210722273437363F013523220706232635363334014E40082440083854742D0B5C0804181C4034440802B840B88331296F8F7D193B40046C84B43A5EB44815A5207C146C18D0400838FEEC542D0B6023450C281808181C401C2405540838FE6C280838401040440424B41808382B190A4E284018083828F8B0504D8FCBC57008384B95C8F86F79F3750CFD5434155B538D300838400C40246841633818201808385C100003006BFFFA048B056E001D0035005800000116151117331615062B0107222734333527352306232635343734373536051615140706070607060706232635363F023637363736131615113215062B0127161D010623263D0134272322352227353633161D0117331136014F40082440083854742D0B5C0804181C4034440802B840B88331296F8F7D193B40046C84B43A5EB44815274068083804140C0838400C68B80701083840287008056E0838FE6C280838401040440424B41808382B190A4E284018083828F8B0504D8FCBC57008384B95C8F86F79F3750CFDE40838FEDC44400443895040083850834D301C8040083848040120400003007FFFD105030565002D004B006B000001321F01150623151615171407140706072635343736353237352723072235343F01353423220F0123263534373405161514071407140103061506070623263534373637360134373637363303161507113217140F01150623263D0137232635373536331615071507331136021F3B351413255C04908C42824060845567106C3C649064103C484408409803284060B0FE64E8442711181C40587C28CC0138AC024A1F296840082D0B3C0808384008E45C20093F40080CB00905654840205C0836420C6D57112B1A1208383F091113700C1010443E2A4C0418201C083841270E020838267220A818FE68FEF4341C3F391808382C947642DC01380EB21A5244FDB408382CFEDC4030146C804008388064153B70706008382C7430013C600000020079014D038D043D0039004B00000132173736331615140F01161D0106071617161506232227222735230623222706230607263534373635263527363F012635273633321736333603151633363F013527262F010727230607060215336D701513406034380B293C20240838271D14440447414B611C2C313340443840041C14046C0408382759505811BD6F7D73110C2C172D10242C20481C12043D70500C083830302C742C2445333C102E1A403054083C34182507083832161709372D38781C0C640C1440604C1CFE88149449172C1074174D0C08082D371C0001004A04BD044A0565001000001333051733321714072327252326353437D6E40190A02038084020A0FE70F0804005550C0C4038080C0C0D4338080000002801E60001000000000000005000000001000000000001000800570001000000000002000700500001000000000003001500570001000000000004000800570001000000000005002E006C000100000000000600080057000100000000000A0040009A0003000104030002000C02CA0003000104050002001000DA0003000104060002000C00EA0003000104070002001000F60003000104080002001001060003000104090000007001160003000104090001001001940003000104090002000E01860003000104090003002A01940003000104090004001001940003000104090005005C01BE000300010409000600100194000300010409000A0080021A00030001040A0002000C02CA00030001040B00020010029A00030001040C0002000C02CA00030001040E0002000C02E80003000104100002000E02AA0003000104130002001202B80003000104140002000C02CA0003000104150002001002CA0003000104160002000C02CA0003000104190002000E02DA00030001041B0002001002E800030001041D0002000C02CA00030001041F0002000C02CA0003000104240002000E02F800030001042D0002000E030600030001080A0002000C02CA0003000108160002000C02CA000300010C0A0002000C02CA000300010C0C0002000C02CA4F736D6F7369616E20536C6F70707920A920323030352052656C6174696F6E616C2053797374656D7320436F72706F726174696F6E20323030352E20416C6C205269676874732052657365727665642E526567756C61726F736D6F7369616E3A56657273696F6E20312E303056657273696F6E20312E3030204E6F76656D62657220362C20323030352C20696E697469616C2072656C656173655468697320666F6E74207761732063726561746564207573696E6720466F6E742043726561746F7220352E302066726F6D20486967682D4C6F6769632E636F6D006F00620079010D0065006A006E00E9006E006F0072006D0061006C005300740061006E0064006100720064039A03B103BD03BF03BD03B903BA03AC004F0073006D006F007300690061006E002000A90020003200300030003600200054006800650020004F0073006D006F007300690061006E0020004F0072006400650072002E00200041006C006C0020005200690067006800740073002000520065007300650072007600650064002E0052006500670075006C00610072006F0073006D006F007300690061006E003A00560065007200730069006F006E00200033002E0030003000560065007200730069006F006E00200033002E003000300020004E006F00760065006D00620065007200200036002C00200032003000300035002C00200069006E0069007400690061006C002000720065006C0065006100730065005400680069007300200066006F006E00740020007700610073002000630072006500610074006500640020007500730069006E006700200046006F006E0074002000430072006500610074006F007200200035002E0030002000660072006F006D00200048006900670068002D004C006F006700690063002E0063006F006D004E006F0072006D00610061006C0069004E006F0072006D0061006C0065005300740061006E00640061006100720064004E006F0072006D0061006C006E0079041E0431044B0447043D044B0439004E006F0072006D00E1006C006E0065004E0061007600610064006E006F0041007200720075006E0074006100000002000000000000FF270096000000000000000000000000000000000000000000ED0000010201030003000400050006000700080009000A000B000C000D000E000F0010001100120013001400150016001700180019001A001B001C001D001E001F0020002100220023002400250026002700280029002A002B002C002D002E002F0030003100320033003400350036003700380039003A003B003C003D003E003F0040004100420043004400450046004700480049004A004B004C004D004E004F0050005100520053005400550056005700580059005A005B005C005D005E005F0060006100620063006400650066006700680069006A006B006C006D006E006F0070007100720073007400750076007700780079007A007B007C007D007E007F0080008100820083008400850086008700880089008A008B008C008D008E008F0090009100920093009400950096009700980099009A009C009D009E009F00A000A100A200A300A400A500A600A700A800A900AA00AB00AD00AE00AF00B000B100B200B300B400B500B600B700B800B900BA00BB00BC010400BE00BF00C200C300C400C500C600C700C800C900CA00CB00CC00CD00CE00CF00D000D100D300D400D500D600D700D800D900DD00DE00E100E400E500E600E700E800E900EA00EB00EC00ED00EE00EF00F001050106010700F400F500F600BD00DA052E6E756C6C106E6F6E6D61726B696E6772657475726E044575726F07756E693030423907756E693030423207756E693030423300000001FFFF0002.