-
Notifications
You must be signed in to change notification settings - Fork 0
/
ncss-uflash.py
executable file
·15311 lines (15256 loc) · 655 KB
/
ncss-uflash.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
This module contains functions for turning a Python script into a .hex file
and flashing it onto a BBC micro:bit.
"""
from __future__ import print_function
import argparse
import binascii
import ctypes
import os
import struct
import sys
from subprocess import check_output
import time
#: The magic start address in flash memory for a Python script.
_SCRIPT_ADDR = 0x3e000
#: The help text to be shown when requested.
_HELP_TEXT = """
Flash Python onto the BBC micro:bit or extract Python from a .hex file.
If no path to the micro:bit is provided uflash will attempt to autodetect the
correct path to the device. If no path to the Python script is provided uflash
will flash the unmodified MicroPython firmware onto the device. Use the -e flag
to recover a Python script from a hex file. Use the -r flag to specify a custom
version of the MicroPython runtime.
Documentation is here: https://uflash.readthedocs.io/en/latest/
"""
#: MAJOR, MINOR, RELEASE, STATUS [alpha, beta, final], VERSION
_VERSION = (1, 0, 8, )
def get_version():
"""
Returns a string representation of the version information of this project.
"""
return '.'.join([str(i) for i in _VERSION])
def strfunc(raw):
"""
Compatibility for 2 & 3 str()
"""
return str(raw) if sys.version_info[0] == 2 else str(raw, 'utf-8')
def hexlify(script):
"""
Takes the byte content of a Python script and returns a hex encoded
version of it.
Based on the hexlify script in the microbit-micropython repository.
"""
if not script:
return ''
# Convert line endings in case the file was created on Windows.
script = script.replace(b'\r\n', b'\n')
script = script.replace(b'\r', b'\n')
# Add header, pad to multiple of 16 bytes.
data = b'MP' + struct.pack('<H', len(script)) + script
# Padding with null bytes in a 2/3 compatible way
data = data + (b'\x00' * (16 - len(data) % 16))
assert len(data) <= 0x2000
# Convert to .hex format.
output = [':020000040003F7'] # extended linear address, 0x0003.
addr = _SCRIPT_ADDR
for i in range(0, len(data), 16):
chunk = data[i:min(i + 16, len(data))]
chunk = struct.pack('>BHB', len(chunk), addr & 0xffff, 0) + chunk
checksum = (-(sum(bytearray(chunk)))) & 0xff
hexline = ':%s%02X' % (strfunc(binascii.hexlify(chunk)).upper(),
checksum)
output.append(hexline)
addr += 16
return '\n'.join(output)
def unhexlify(blob):
"""
Takes a hexlified script and turns it back into a string of Python code.
"""
lines = blob.split('\n')[1:]
output = []
for line in lines:
# Discard the address, length etc. and reverse the hexlification
output.append(binascii.unhexlify(line[9:-2]))
# Check the header is correct ("MP<size>")
if (output[0][0:2].decode('utf-8') != u'MP'):
return ''
# Strip off header
output[0] = output[0][4:]
# and strip any null bytes from the end
output[-1] = output[-1].strip(b'\x00')
script = b''.join(output)
try:
result = script.decode('utf-8')
return result
except UnicodeDecodeError:
# Return an empty string because in certain rare circumstances (where
# the source hex doesn't include any embedded Python code) this
# function may be passed in "raw" bytes from MicroPython.
return ''
def embed_hex(runtime_hex, python_hex=None):
"""
Given a string representing the MicroPython runtime hex, will embed a
string representing a hex encoded Python script into it.
Returns a string representation of the resulting combination.
Will raise a ValueError if the runtime_hex is missing.
If the python_hex is missing, it will return the unmodified runtime_hex.
"""
if not runtime_hex:
raise ValueError('MicroPython runtime hex required.')
if not python_hex:
return runtime_hex
py_list = python_hex.split()
runtime_list = runtime_hex.split()
embedded_list = []
# The embedded list should be the original runtime with the Python based
# hex embedded two lines from the end.
embedded_list.extend(runtime_list[:-2])
embedded_list.extend(py_list)
embedded_list.extend(runtime_list[-2:])
return '\n'.join(embedded_list) + '\n'
def extract_script(embedded_hex):
"""
Given a hex file containing the MicroPython runtime and an embedded Python
script, will extract the original Python script.
Returns a string containing the original embedded script.
"""
hex_lines = embedded_hex.split('\n')
script_addr_high = hex((_SCRIPT_ADDR >> 16) & 0xffff)[2:].upper().zfill(4)
script_addr_low = hex(_SCRIPT_ADDR & 0xffff)[2:].upper().zfill(4)
start_script = None
within_range = False
# Look for the script start address
for loc, val in enumerate(hex_lines):
if val[0:9] == ':02000004':
# Reached an extended address record, check if within script range
within_range = val[9:13].upper() == script_addr_high
elif within_range and val[0:3] == ':10' and \
val[3:7].upper() == script_addr_low:
start_script = loc
break
if start_script:
# Find the end of the script
end_script = None
for loc, val in enumerate(hex_lines[start_script:]):
if val[9:41] == 'FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF':
end_script = loc + start_script
break
# Pass the extracted hex through unhexlify
return unhexlify('\n'.join(
hex_lines[start_script - 1:end_script if end_script else -3]))
return ''
def find_microbit():
"""
Returns a path on the filesystem that represents the plugged in BBC
micro:bit that is to be flashed. If no micro:bit is found, it returns
None.
Works on Linux, OSX and Windows. Will raise a NotImplementedError
exception if run on any other operating system.
"""
# Check what sort of operating system we're on.
if os.name == 'posix':
# 'posix' means we're on Linux or OSX (Mac).
# Call the unix "mount" command to list the mounted volumes.
mount_output = check_output('mount').splitlines()
mounted_volumes = [x.split()[2] for x in mount_output]
for volume in mounted_volumes:
if volume.endswith(b'MICROBIT'):
return volume.decode('utf-8') # Return a string not bytes.
elif os.name == 'nt':
# 'nt' means we're on Windows.
def get_volume_name(disk_name):
"""
Each disk or external device connected to windows has an attribute
called "volume name". This function returns the volume name for
the given disk/device.
Code from http://stackoverflow.com/a/12056414
"""
vol_name_buf = ctypes.create_unicode_buffer(1024)
ctypes.windll.kernel32.GetVolumeInformationW(
ctypes.c_wchar_p(disk_name), vol_name_buf,
ctypes.sizeof(vol_name_buf), None, None, None, None, 0)
return vol_name_buf.value
#
# In certain circumstances, volumes are allocated to USB
# storage devices which cause a Windows popup to raise if their
# volume contains no media. Wrapping the check in SetErrorMode
# with SEM_FAILCRITICALERRORS (1) prevents this popup.
#
old_mode = ctypes.windll.kernel32.SetErrorMode(1)
try:
for disk in 'ABCDEFGHIJKLMNOPQRSTUVWXYZ':
path = '{}:\\'.format(disk)
if (os.path.exists(path) and
get_volume_name(path) == 'MICROBIT'):
return path
finally:
ctypes.windll.kernel32.SetErrorMode(old_mode)
else:
# No support for unknown operating systems.
raise NotImplementedError('OS "{}" not supported.'.format(os.name))
def save_hex(hex_file, path):
"""
Given a string representation of a hex file, this function copies it to
the specified path thus causing the device mounted at that point to be
flashed.
If the hex_file is empty it will raise a ValueError.
If the filename at the end of the path does not end in '.hex' it will raise
a ValueError.
"""
if not hex_file:
raise ValueError('Cannot flash an empty .hex file.')
if not path.endswith('.hex'):
raise ValueError('The path to flash must be for a .hex file.')
with open(path, 'wb') as output:
output.write(hex_file.encode('ascii'))
def flash(path_to_python=None, paths_to_microbits=None, path_to_runtime=None):
"""
Given a path to a Python file will attempt to create a hex file and then
flash it onto the referenced BBC micro:bit.
If the path_to_python is unspecified it will simply flash the unmodified
MicroPython runtime onto the device.
If paths_to_microbits is unspecified it will attempt to find the device's
path on the filesystem automatically.
If the path_to_runtime is unspecified it will use the built in version of
the MicroPython runtime. This feature is useful if a custom build of
MicroPython is available.
If the automatic discovery fails, then it will raise an IOError.
"""
# Check for the correct version of Python.
if not ((sys.version_info[0] == 3 and sys.version_info[1] >= 3) or
(sys.version_info[0] == 2 and sys.version_info[1] >= 7)):
raise RuntimeError('Will only run on Python 2.7, or 3.3 and later.')
# Grab the Python script (if needed).
python_hex = ''
if path_to_python:
if not path_to_python.endswith('.py'):
raise ValueError('Python files must end in ".py".')
with open(path_to_python, 'rb') as python_script:
python_hex = hexlify(python_script.read())
runtime = _RUNTIME
# Load the hex for the runtime.
if path_to_runtime:
with open(path_to_runtime) as runtime_file:
runtime = runtime_file.read()
# Generate the resulting hex file.
micropython_hex = embed_hex(runtime, python_hex)
# Find the micro:bit.
if not paths_to_microbits:
found_microbit = find_microbit()
if found_microbit:
paths_to_microbits = [found_microbit]
# Attempt to write the hex file to the micro:bit.
if paths_to_microbits:
for path in paths_to_microbits:
hex_path = os.path.join(path, 'micropython.hex')
print('Flashing Python to: {}'.format(hex_path))
save_hex(micropython_hex, hex_path)
else:
raise IOError('Unable to find micro:bit. Is it plugged in?')
def extract(path_to_hex, output_path=None):
"""
Given a path_to_hex file this function will attempt to extract the
embedded script from it and save it either to output_path or stdout
"""
with open(path_to_hex, 'r') as hex_file:
python_script = extract_script(hex_file.read())
if output_path:
with open(output_path, 'w') as output_file:
output_file.write(python_script)
else:
print(python_script)
def watch_file(path, func, *args, **kwargs):
"""
Watch a file for changes by polling its last modification time. Call the
provided function with *args and **kwargs upon modification.
"""
if not path:
raise ValueError('Please specify a file to watch')
print('Watching "{}" for changes'.format(path))
last_modification_time = os.path.getmtime(path)
try:
while True:
time.sleep(1)
new_modification_time = os.path.getmtime(path)
if new_modification_time == last_modification_time:
continue
func(*args, **kwargs)
last_modification_time = new_modification_time
except KeyboardInterrupt:
pass
def main(argv=None):
"""
Entry point for the command line tool 'uflash'.
Will print help text if the optional first argument is "help". Otherwise
it will ensure the optional first argument ends in ".py" (the source
Python script).
An optional second argument is used to reference the path to the micro:bit
device. Any more arguments are ignored.
Exceptions are caught and printed for the user.
"""
if not argv:
argv = sys.argv[1:]
try:
parser = argparse.ArgumentParser(description=_HELP_TEXT)
parser.add_argument('source', nargs='?', default=None)
parser.add_argument('target', nargs='*', default=None)
parser.add_argument('-r', '--runtime', default=None,
help="Use the referenced MicroPython runtime.")
parser.add_argument('-e', '--extract',
action='store_true',
help=("Extract python source from a hex file"
" instead of creating the hex file."), )
parser.add_argument('-w', '--watch',
action='store_true',
help='Watch the source file for changes.')
args = parser.parse_args(argv)
if args.extract:
extract(args.source, args.target)
elif args.watch:
watch_file(args.source, flash,
path_to_python=args.source,
paths_to_microbits=args.target,
path_to_runtime=args.runtime)
else:
flash(path_to_python=args.source, paths_to_microbits=args.target,
path_to_runtime=args.runtime)
except Exception as ex:
# The exception of no return. Print the exception information.
print(ex)
#: A string representation of the MicroPython runtime hex.
_RUNTIME = """
:020000040000FA
:1000000000400020655A0100A15A0100A35A0100D6
:1000100000000000000000000000000000000000E0
:10002000000000000000000000000000A55A0100D0
:100030000000000000000000A75A0100A95A0100BA
:10004000AB5A0100852A0100C95E0100AB5A0100CC
:10005000AB5A01000000000069960100AB5A010094
:10006000A9510000AB5A01006D980100AB5A010084
:10007000AB5A0100AB5A0100AB5A0100AB5A010068
:10008000AB5A010021640100AB5A0100AB5A0100D8
:10009000AB5A01007D9501008D940100E5520000EE
:1000A000F5520000AB5A0100000000000000000003
:1000B0000000000000000000000000000000000040
:1000C00010B5064C2378002B07D1054B002B02D02E
:1000D000044800E000BF0123237010BDF22D002072
:1000E0000000000094A30300084B10B5002B03D0C0
:1000F0000749084800E000BF07480368002B03D009
:10010000064B002B00D0984710BDC04600000000F1
:100110001001002094A30300100100200000000043
:10012000144B002B00D1124B9D46402292029A1A8A
:10013000924600218B460F461148124A121A2AF0A5
:10014000F0F90D4B002B00D098470C4B002B00D042
:1001500098470020002104000D000B482AF045F9C3
:1001600020F024F82000290027F09FFE1FF0E2FC79
:100170000000080000400020000000000000000017
:1001800010010020F02F002069FF010010B5437915
:10019000012B03D1C06A23F0DDFF10BD0B00C26A42
:1001A0000249006B24F012F8F7E7C04654B1020090
:1001B00010B54379012B03D1C06A23F0EBFF10BDCA
:1001C0000B00C26A0249006B24F000F8F7E7C04652
:1001D00064B1020010B54379012B03D1C06A23F04A
:1001E000D9FF10BD0B00C26A0249006B23F0EEFF7D
:1001F000F7E7C04644B1020010B5024B3F2221F0A0
:1002000096FD10BD1F27020010B5024B912221F070
:100210008EFD10BD6D130000F7B50F0011001A0020
:10022000C38AC579868A019300230400C37183823F
:10023000C382104B21F07BFDA368002B18D1E18A0B
:10024000002908D0A38A002B05D1206B23F0E4FB02
:10025000206B23F074FAA38AE28A3900200021F08F
:1002600016FD6B1E9D416B469B88E571A682E3825D
:10027000F7BDC0467D0F0000836870B504000D0017
:10028000002B09D11100054826F08CFAA06020004F
:1002900029000C3021F0B2FD70BDC046ACDB02007D
:1002A000F0B58DB06B4601921B79040043710123B8
:1002B000E16203610B780D00012B06D00021954A05
:1002C0002000FFF7D9FF0DB0F0BD019B012B07D92E
:1002D000836B0A001E68030001990833406BB04726
:1002E000AB681800049324F06AFC63790490032B34
:1002F0000FD109900C2109A824F07AFCA36B02000D
:100300009B680999606B9847A3686883002B00D0AD
:10031000BCE0049824F053FC04900378002B3AD0FE
:100320000A3B0F2B32D809A921F085FC099B772BBA
:100330002AD006D803220292312B08D0764A04999B
:10034000BEE7812B1DD002220292992BF6D1049890
:1003500024F035FC5A21049004A824F049FC049DA3
:100360000390039B9D4218D16379012B04D9A36BA1
:1003700002995B68606B9847A368002B00D085E00A
:10038000A1E701230293E2E70023FBE70100634AB0
:100390002000FFF771FF0223F4E704952B78432B2D
:1003A00004D1280024F00BFC0500DAE7392B01D03A
:1003B0005B4AC4E705A9280024F00BFC037806007B
:1003C000912BF5D124F0FBFB059B9842F0D105A9B8
:1003D000300024F0FEFB037807000A3B0F2BE7D820
:1003E00024F0EDFB059B06009842E1D00378A02B9A
:1003F000DED124F0E4FB059B9842D9D106A9380050
:1004000021F019FC300024F0DFFB9C21079007A8A5
:1004100024F0EEFB0100079824F0C5FB069B0600C4
:100420002E2B1BD1012804D1079803780A3B0F2BF0
:1004300001D93C4A83E72669731C2361019B012B88
:1004400021D909A921F0F7FBA36B099ADB683100D8
:10045000606B9847002816D1334A70E72F2B1BD1C9
:10046000012803D107980378032B01D02F4A66E7B0
:10047000019B012B07D9A36B676B1E6924F07FFBDF
:1004800001003800B047A368002B8AD020000499EF
:100490000C3021F0B3FC16E7302B23D1012803D90F
:1004A00007980378032B01D0214A48E7019B012BD1
:1004B000E9D908A924F054FB01270790079803788D
:1004C000032B01D01B4A3AE709A924F049FBA36B8F
:1004D00007905B69099A0899606B01379847BE429B
:1004E000ECD1D0E7019B012BCDD9032800D95FE7E0
:1004F000079B1800099324F062FB0A9024F05FFB2D
:10050000A36B0B909F69320009AB0699606BB847EB
:10051000B9E7C046A0180300C4180300D1180300AF
:10052000F91803001C1903003819030048190300C7
:10053000641903008919030010B5024AFFF79CFEF5
:1005400010BDC046AB1903007FB50B7804000D0049
:100550004E1C002B0AD0032B0BD103A9280024F03A
:10056000FFFA03990600206B23F080F8300004B0F6
:1005700070BD012B07D18E1C49780529F6D0006B80
:1005800003F08CFBF2E7042B0BD14B788978006BDE
:100590000902194323F0B2F8280024F010FB0600EA
:1005A000E4E7052B15D14379042B04D02A49006BCD
:1005B00023F0B0F8F0E788784B780002184303A9DD
:1005C00025F021FF0399246B0FF0A0FE010020000D
:1005D000EEE71A000A3A0F2A09D803A9280021F0E9
:1005E0002AFB039906002000FFF7D0FDBEE7082B89
:1005F0000CD103A9280024F0A9FA039B226A9B00CE
:1006000006009958206B23F085F8AFE703AB02AAE8
:1006100001A9280024F004FB02990500206B03F0D7
:10062000F3FA019B0D4A9B009B58002B06D10C4A04
:1006300029002000FFF720FE039E97E7039A290078
:1006400020009847A368002BF6D0E368002BF3D175
:10065000029BE360F0E7C04608C9020048A9020017
:10066000E2170300F0B587B000920A000493531E0E
:100670009A410D00060004990098059224F093FA1F
:100680002C1E019009D02B780024842B05D1020068
:100690002100306B23F03EFA2C00019B009F013BB0
:1006A0000393059B0293049B9F421ED1002C39D1DA
:1006B000019A059B944663441900306B23F01EFA9F
:1006C000002D3CD1009B9F422AD0009B9C4239D1F7
:1006D000200024F079FA00220100300000F038F800
:1006E000009824F06CFA0090ECE73B78842B07D15B
:1006F000002C10D1039A0299306B23F00BFA3C00C6
:10070000380024F05CFA029B070001330293039B3C
:10071000013B0393C7E70D4A39003000FFF7ACFDFA
:1007200007B0F0BD002DCDD0AC4208D1200024F0A0
:100730004BFA00220100300000F00AF8C2E7002264
:100740002900F8E700220099C7E7C046D616030043
:10075000F0B50B7817001A000A3A85B004000D00B6
:100760000F2A10D803A9280021F065FA0399200068
:10077000002F01D0022F03D1FFF71AFD05B0F0BD05
:10078000FFF704FDFAE76A4A192B00D8CBE01A3BC1
:100790007C2B00D182E005DC252B08D0772B11D0F3
:1007A000644AC0E07E2B00D194E0912BF8D1002F59
:1007B00000D0B7E003A9280024F00BFA0200039B45
:1007C00000219BE002A9280024F003FA0600022F72
:1007D00003D001002000FFF7B7FE300024F0EFF94E
:1007E0000299060021F01EFA0028D9D13378922B05
:1007F00013D1300003A924F0ECF90600300024F0F6
:10080000DEF9039A0190904207D2022F03D0310003
:100810002000FFF799FE019EF0E73378A12B21D14C
:10082000022F06D1206B23F00FF8206B22F0CBFFB4
:100830000EE0300024F0C8F901002000FFF784FE2C
:10084000206B012FF2D122F0D3FF206B22F0A3FF07
:10085000300024F0B4F9029921F0E4F9002800D026
:100860008CE79DE7A22B9BD1300024F0ADF903A9C2
:1008700021F0E1F9012F07D1206B22F0AFFF03999E
:10088000206B22F066FFE3E7022F02D1206B22F0FB
:10089000C4FF0399206B22F089FFD9E703A9280040
:1008A00024F097F90399060021F0BCF9002800D044
:1008B00076E7002F36D1350003A9280024F089F906
:1008C000060024F07CF903789D2B1BD100231A002D
:1008D000310013E0002F25D103A9280024F079F975
:1008E0000399050021F09EF9021E02D03B003A0058
:1008F00066E72B789A2BDFD0030029002000FFF752
:10090000B1FE3BE79E2B05D103A924F062F9039BBE
:100910000200DDE7BE2B00D142E724F050F932009F
:1009200003004DE7044A29002000FFF7A5FC25E756
:10093000771603008F160300AA160300F0B50B7894
:100940008FB00A3B0400019103920F2B00D9E6E01F
:10095000080024F034F90378912B00D0DFE00198EF
:1009600024F02DF90BA924F034F9037842780A3BDE
:100970001B021343AD2B00D0D1E024F020F9037803
:100980000500A02B00D0CAE024F05EF9002800D0BA
:10099000C5E0280024F013F90B9B984200D0BEE07C
:1009A000280024F011F99C210C900CA824F020F9C7
:1009B00001230C9E070030000D9324F000F9050080
:1009C0000C90874200D1A0E024F0F9F80C90874207
:1009D0000AD00378032B00D0A1E00DA924F0C0F8C1
:1009E0000C90874200D09AE033784833DBB2022B78
:1009F00000D894E02B784833DBB2022B00D88EE08D
:100A00000B9B1800049324F0DAF8039A02909042AA
:100A100001D1002302930D9B27690593238B278324
:100A20000693638B0793E38B08937B1C0393BB1C98
:100A300009936B469B896383A38BE3833B1D2361EF
:100A40002B780393032B03D029002000FFF77CFDB4
:100A500031002000FFF778FDF91C206B22F009FF20
:100A6000B91C206B22F0CEFD206B22F0B7FE0022D5
:100A700001992000FFF76CFE04992000FFF764FD48
:100A8000791C206B22F0BEFD0599206B22F0EEFD53
:100A90001221206B22F09EFF206BF91C22F0B2FD88
:100AA000039B206B032B33D022F0A2FE206B22F09D
:100AB000B4FE059B1921002B00DA1A21206B22F0CD
:100AC00089FFBA1C0121206B22F0DFFE6B461B8BD5
:100AD00023836B469B8B63836B461B8CE383029B58
:100AE000002B03D019002000FFF72EFD3900206BEA
:100AF00022F088FD206B22F085FE039B032B02D0A1
:100B0000206B22F07FFE0FB0F0BD35002E4E6BE75C
:100B100022F064FE29002000FFF716FDC9E7238BB1
:100B200025690293638B6F1C0493E38B67830593A2
:100B3000AB1C0693A38B0198E383244B2B432383A5
:100B4000EB1C236124F03BF801002000FFF7FCFCC4
:100B50000600206B22F0EAFE3900206B22F052FDE5
:100B6000A91C206B22F0ECFE002201992000FFF767
:100B7000EFFD31002000FFF7E7FC0600206B22F0BC
:100B800038FD002803D13900206B22F072FEA91C29
:100B9000206B22F037FD206B22F0DEFE6B461B89B6
:100BA00023836B461B8A63836B469B8AE383039B89
:100BB000B34203D031002000FFF7C6FC2900206BB0
:100BC00022F020FD9FE7C046CB4C03000080FFFFD2
:100BD000F0B5170085B0040008000D0023F0EFFF0A
:100BE0003900060021F01EF8019000281ED023795C
:100BF000002B16D0E36A1E78002E12D1132120009C
:100C0000FFF7C4FA29002000FFF79EFC33003200F2
:100C10000121206B22F0BDFF206B22F0F3FD05B017
:100C2000F0BD29002000FFF78FFCF5E733783B2B60
:100C30001DD1290001222000FFF78AFD300023F09A
:100C4000C3FF4378811C4E3BDBB218260A2B01D828
:100C5000224AD65C2000FFF777FC3100206B22F09F
:100C6000B9FE022229002000FFF772FDD7E73C2BD6
:100C70002ED1300003A923F0ACFF06000700039B30
:100C80009F421FD101992000FFF75EFC206B22F0EC
:100C9000A5FD002229002000FFF75AFD019BB34269
:100CA000BDD0300023F08BFF019B0500834202D0B2
:100CB000206B22F093FD310000222000FFF748FD59
:100CC0002E00EBE7380023F07AFF01970700D6E704
:100CD00031002000FFF738FC019AC3E76C160300CF
:100CE000F0B589B0040005910492009302910029A7
:100CF0002AD1A379002B2CD0E36A1D78012D28D1AD
:100D000005212000FFF742FAE16A029B088D834229
:100D100006DB0021554A2000FFF7AEFA09B0F0BD0E
:100D2000CE6ADA00B21856782E420BD052880121D2
:100D3000206B22F0DCFB002302211A00206B22F042
:100D400028FFEBE70133E2E79C2105A823F050FFE1
:100D5000029000273E00059D03970197029BAB423E
:100D600016D1002E0AD0039B002B70D1206B22F0ED
:100D7000E6FC002F70D1206B22F0E1FC049B002BDD
:100D80006FD03300019A0099206B22F00BFFC5E76A
:100D90002B78B82B10D1B73B1E4202D0344A290021
:100DA000B9E7012328001E4323F00EFF039028001B
:100DB00023F005FF0500D1E7B92B0BD1B73B1E424D
:100DC00001D02C4AEBE7022328001E4323F0FCFE4F
:100DD0000700ECE7BA2B2CD1280023F0F5FE050024
:100DE00023F0EDFE0378BE2B0BD120000622290054
:100DF00021F041F8009B28000133009323F0DFFE2F
:100E0000D6E72B780A3B0F2B01D91B4AC7E707A966
:100E1000280020F010FF05000799206B22F06EFCDF
:100E200029002000FFF790FB019B0500013301938F
:100E300094E7019B002B01D0104AB0E72900200065
:100E4000FFF782FB009B05000133009386E70399BF
:100E50002000FFF779FB8CE739002000FFF774FBD7
:100E60008CE73300019A009968E7C046C81903006F
:100E7000E6190300FD190300151A0300361A0300D2
:100E8000F0B589B00400039103A8072123F0B0FE58
:100E90000027E36A02905E7E0398029B834215D18D
:100EA000180023F091FE029B03901B780100320092
:100EB0002000242B4CD120F075FF0500013F4AD2C1
:100EC00029002000FFF774F909B0F0BD05A923F04F
:100ED00080FE4021039003A823F08AFE06A90500A6
:100EE000039820F0A8FE069B01902A2B3CD1854256
:100EF00007D8214A00212000FFF7BEF9059B039384
:100F0000CAE7019823F05BFE8542F2D107A9019858
:100F100020F091FE079B2B2B24D02D2BE9D104260A
:100F2000ECE707A920F087FE07990390206B22F0D9
:100F300010FC03988542F4D10599280020F072FE38
:100F40000028DBD1A07129002000FFF7FDFAD5E7CA
:100F500021F09FF9B1E7002301211A00206B22F054
:100F600018FEABE70126C9E703992000FFF7ECFA6A
:100F700001370390DDE7C04677170300F7B50A781D
:100F80000E0013000821293B8B43DBB20400002B29
:100F900002D10133C371F7BD13002A3B8B43DBB28F
:100FA000002BF8D013000A3B0F2B2FD9282A11D180
:100FB00001A9300023F00DFE070023F000FE019B85
:100FC000984205D023F0FBFD019B0500984208D113
:100FD000002506E0300023F0F7FD070023F0EFFDC9
:100FE000050001A9380020F026FEE379002D02D08B
:100FF0002A78002A0CD1002BCDD1E38A002BCAD04D
:10100000184A31002000FFF737F9C4E73700DFE75F
:10101000002B1ED0A38A01339BB2A382012B09D1DE
:10102000E18A206B002911D022F0F6FC0021206B10
:1010300022F019FD29002000FFF786FA206B0199A4
:1010400022F05CFB206B22F01AFDA4E722F077FB74
:10105000ECE7E38A29000133E3822000FFF774FA0A
:1010600099E7C04695170300F0B504000E00056926
:1010700087B002936B1C0393AB1C03612900006BC8
:10108000170022F030FC200020F0DDFD31002000B0
:10109000FFF75AFA206B22F065FC691C206B22F0E6
:1010A000E8FB2900206B22F0ADFA206B22F0BEFD98
:1010B0002669731C2361029B9F4218D1A38B206B6E
:1010C000013BA38322F027FC206B22F0B3FD0399A0
:1010D000206B22F097FA0C9B002B03D01900200004
:1010E000FFF732FA3100206B22F08CFA1BE0380057
:1010F00023F06AFD00230593236905000193013362
:1011000023610378002B10D123F059FD23F057FD04
:10111000029B834224D03F4A29002000FFF7ACF80D
:10112000A38B013BA38307B0F0BD07006A2B07D157
:1011300023F04AFD070023F042FD05A920F07BFDC6
:10114000206B22F04BFB39002000FFF7FDF9212135
:10115000206B22F03FFC019A0021206B22F095FBCE
:10116000280023F02CFD0700206B22F04BFB059993
:1011700000294BD1206B22F045FB0025206B22F08B
:1011800041FB059BAB4209D02569206B6B1C236199
:10119000290022F0B4FB200020F055FD390020008A
:1011A000FFF7D2F9059B0700002B02D0206B22F03D
:1011B000D9FB206B22F0F7FB059B002B19D00F21E8
:1011C000206B02F06BFD2900206B22F01BFA0F212F
:1011D000206B02F063FD05992000FEF7E9FF200077
:1011E0000599FEF7F7FFA38B206B013BA38322F049
:1011F00092FB3100206B22F03CFB0199206B22F026
:1012000001FA0321206B22F0F9F954E72000FEF7E0
:10121000CFFFB2E7581A0300F0B587B003914379C6
:101220000400012B06D1C36A1B78002B04D11E4A8F
:10123000FFF722F807B0F0BD039B432103A80193F9
:1012400023F0D6FC02900398029B8342F2D005A9BA
:101250000B2720F0F0FC02AB059DFF1803903A002D
:101260002900E06A21F078FE3B780600002B03D1CC
:1012700003780E4A042B0AD12900E06A21F099FE76
:10128000002803D00378023B022B05D9084A0199B4
:101290002000FEF7F1FFD6E7042333702900E06A4F
:1012A00021F09AFECFE7C046FA1703001F1803008B
:1012B00040180300F0B587B0039144790500012C74
:1012C00009D1019103A8432123F092FC02900398D5
:1012D000029B834201D107B0F0BD05A90B2720F086
:1012E000AAFC02AB059EFF1803903A003100E86AA1
:1012F00021F032FE3B78002B08D10378012B05D07A
:10130000074A01992800FEF7B7FFE0E704703100B3
:10131000E86A21F045FE0028D9D00470D7E7C0461E
:10132000C317030010B5438B0400002B02D1054AFC
:10133000FEF7A2FFA28BE38B618BD21A206B02F027
:10134000D3FC10BD5F17030010B5038B0400002B06
:1013500002D1054AFEF790FFA28BE38B218BD21AB4
:10136000206B02F0C1FC10BD4A170300F7B50B78E3
:1013700004001A000A3A0E000F2A08D801A930000A
:1013800020F059FC01992000FEF724FFF7BD912BB6
:1013900044D16946300023F01CFC01002000FFF717
:1013A000D3F803780500922B10D101A923F011FC8A
:1013B0000500280023F003FC019B0700984205D09C
:1013C00029002000FFF7C0F83D00F2E72B78A12BA1
:1013D00016D1280023F0F8FB01002000FFF7B4F835
:1013E0000500206B22F03AFA0099280020F01AFC40
:1013F0000028CBD1214A31002000FEF73DFFC5E790
:10140000A22BF7D1280023F0DFFB01A920F013FC69
:1014100001990500206B22F00AFAE5E7962BE9D145
:10142000080023F011FC0028E4D1300023F0CCFBAD
:10143000060023F0C9FB050001002000FFF796FF1E
:10144000280023F0BCFB03789D2B9FD09E2B0ED150
:1014500001A923F0BEFB019B0500984296D0200015
:101460002900FFF783FF280023F0A9FBF3E7BE2B39
:10147000C0D001002000FFF779FF87E7F0160300D6
:10148000F7B502260D00C16A0400097E314005D07F
:10149000344A29002000FEF7EFFEF7BD01912978BC
:1014A00008000A380F281DD8280001A920F0C3FB26
:1014B000E279E36A002A03D09A8B01329A8302E030
:1014C0005A8B01325A83012601990029E5D06B46D7
:1014D000DF1C3A00E06A21F03FFD3B78002B3CD155
:1014E000214AD6E71A32914204D1280023F06CFB3E
:1014F00001A9DBE71A33994223D1E379002BC7D145
:1015000001272800E77123F09FFB03260028DBD189
:10151000280023F059FB0278E36A0A3A0F2A09D817
:1015200028001A7E17431F7623F04EFB01A920F0F6
:1015300082FBC9E71A7E280017431F7623F044FB7D
:10154000F2E7280023F040FB01A920F074FBE36AD6
:101550001A7E16431E760526B6E7022346700370F0
:101560009BE7C0467818030087180300C36A70B56C
:101570001B7804000D00012B04D00C4A0021FEF75B
:101580007BFE70BD1100280020F04CFB002807D026
:101590000F21206B02F082FB206B22F00DFBF0E7A5
:1015A00029002000FEF7D0FFF6E7C0465E180300D2
:1015B000C36A70B51B780400013B0D00012B04D9F0
:1015C000164A0021FEF758FE70BD1100280020F0D9
:1015D00029FB002807D00F21206B02F05FFB206B56
:1015E00022F005FBF0E72B78C22B11D1280023F065
:1015F000EBFA01002000FEF7A7FF206B22F096F91E
:10160000206B0F2102F04AFB206B22F0FFFADBE790
:1016100029002000FEF798FFE1E7C046771A030093
:10162000F0B50D0085B004001100280020F0FAFA92
:10163000071E05D00021206B22F015FA05B0F0BD81
:101640002B78AF2B0BD1206B012122F00CFA290053
:101650002000FEF779FF206B22F011FAEEE7AE2BA7
:1016600061D1280023F0B0FA050023F0A8FA029017
:101670000378B22B4DD103A923F0ABFA039B029060
:10168000984203D0992102A823F0B2FA2B78AF2B0D
:1016900020D103990298266B23F085FA411C300073
:1016A00022F0E1F929002000FEF74EFF206B22F026
:1016B000E6F90127029E039B9E4210D1002FBDD167
:1016C00031000298246B23F06EFA411C200022F0B6
:1016D000EEF9B3E729002000FEF736FFEAE733789A
:1016E000310020000193FEF72FFF019B0600002F21
:1016F0000BD0AF2B05D00F4A29002000FEF7BCFD10
:101700009CE7206B22F0BBF9D5E7AF2BD3D10A4A77
:10171000F2E72B780422AF2B00D00522290020000D
:1017200020F0A9FB8AE729002000FEF70DFF012128
:10173000206BCCE7081703002B170300F0B504005B
:101740000D00012362711100C56203612A0087B098
:10175000006B02F08DF96279012A02D100236B84BB
:10176000AB84AE6833781E2B0AD1300023F02CFAFC
:1017700001002000FEF7E8FE206B22F01DFA2AE0AF
:101780002B78002B08D131002000FEF7DDFE0F2161
:10179000206B02F083FAEFE7012B21D1300023F018
:1017A0000EFA63790500012B07D100230100E371D4
:1017B0000C22524B200020F0BAFA280023F0FFF947
:1017C00023F0FDF901002000FEF7BEFE206B21F0A2
:1017D00010FF0028DBD0206B02F0DCF907B0F0BD71
:1017E000022B17D1012A07D100231332E3713100F4
:1017F000434B200020F09BFA300023F0E0F9010079
:101800002000FEF7A1FE2B7E5B07B5D5206B21F0F3
:10181000F9FFBCE7033B032B3BD8300023F0CFF9A3
:1018200005A923F0D6F923F0CAF967790390012FAF
:1018300009D10B2202ABD2183900E06A21F08CFBEF
:10184000022303706F832B78032B14D10021206BAC
:1018500022F0EFF801212000FEF798FC0023059A02
:10186000009303993300200021F009F82B78062B10
:1018700000D081E78BE7042B04D10021206B22F0FC
:10188000F2F8E7E7052BE5D10021206B22F00FF9F4
:10189000E0E7012A06D105AA0521280021F05CFB1A
:1018A0000223037005A9A86820F0C5F90D212000C6
:1018B000FEF76CFC0C212000FEF77AFC2969206BF6
:1018C00021F01CFF11212000FEF772FCA86823F014
:1018D00076F923F074F901002000FEF735FE0521AA
:1018E000280021F029FB0378022B00D14FE7428822
:1018F0000521206B21F0FBFD3EE7C046AD24020030
:10190000A1240200F0B51E000F009BB00BAC00211B
:101910000690150020003C2228F003FE069B0B9742
:101920005B6826712362069B186823F048F923F050
:1019300026F96062800023F028FA0022069BA0624C
:1019400000951B681100200020F087F921F03BFE74
:101950000023029020630393002633001FE0FFF76B
:10196000EDFE15E0A268002A1DD1A16AB20055580B
:10197000002D13D06A69002A10D122F027FF6B7E58
:101980006861012229002000042BE8D1FEF788FCC1
:101990002369039A9A4200D2039301230136626AB3
:1019A00007929642DED3002BD6D1049301339C4696
:1019B000079B049A934202D00D9A002A2DD000264C
:1019C0000399029821F004FE3500149B04939E4273
:1019D00000D2ECE00D9B0393002B00D011E10298A4
:1019E00021F0FEFD002D02D0280024F0E3FD0024AC
:1019F000069823F033F9159B1B685D69149B0293CD
:101A00009C4200D20AE1159823F0D4F90D990029DF
:101A100000D10EE1080010F06EFC0499159B8900BE
:101A2000CB58002B38D06046197E01421CD01C8D4B
:101A3000601EC000002C17D00226D96A09184D7804
:101A400035422DD0002A0FD00F005088167805900F
:101A500050685578089011CF11C26A46928A0E706C
:101A60004A80089A4D704A6000211A8D19840592A7
:101A7000059A91421CDB0021059A8A4236DC5E6899
:101A8000002E09D00021328D09920A000998814266
:101A90003CDB0020002A65D1049B0133049387E7D7
:101AA000002A02D1012D00D10A00013C0838C1E70B
:101AB000D86ACA0082181878072802D15468052C01
:101AC00012D00138052804D81078002801D16046CA
:101AD00010701078022803D064465078204203D05A
:101AE000188C441C1C8450800131C1E7D86ACA009C
:101AF00082181078032807D164465078204203D119
:101B0000188C5080013018840131B5E7F06ACD009F
:101B100040190890007800240338012810D90131B9
:101B2000B4E7DF6AE00038180778042F07D1089D72
:101B30006F683D004768BD4201D1428001320134E7
:101B40000598A042EDDCEAE7DC6AC10061180C7878
:101B5000042C03D165464C782C4202D04C88A41842
:101B60004C80013005998142EEDC598B92B25118BC
:101B70005983198C52181A848EE7029B0222210085
:101B80000BA81793FFF7DAFD0D9B0493002B04D1EC
:101B9000032221000BA8FFF7D1FD0D9B0493002B1E
:101BA0002DD1042221000BA8FFF7C8FD27E00D9BD3
:101BB0000493002B00D00DE7159B0493049AB30007
:101BC0009C58002C1BD0637E042BD6D1002D03D152
:101BD000039824F0DEFC050000231793184B032222
:101BE00021000BA819931895FEF75AFB0D9B04933F
:101BF000002B04D1042221000BA8FEF751FB013673
:101C0000E3E6169B0EA8996820F0F8F8169B0E9A4A
:101C10001B690B990D980CF0A1FAE0E6159B029355
:101C2000029AA3009858002801D021F07CF90134D1
:101C3000E4E60A00280022F0D5FD1BB0F0BDC04646
:101C400014D60200FF2310B50324DB05CB18A343F1
:101C50000200181CA24204D0042A0BD00021002A42
:101C600001D0080010BD17F055FF07490028F8D033
:101C70000649F6E78022022112069B18A343194366
:101C8000034BC918EDE7C04638D6020030D6020033
:101C900000008080FF23DB0510B50400C818032373
:101CA0009843002386B001930733009310226033DA
:101CB00002A90DF033FC02A9200022F0AEFA2E2179
:101CC00002A828F018FD00280FD1652102A828F0ED
:101CD00012FD002809D16E2102A828F00CFD002871
:101CE00003D10349200022F098FA06B010BDC04687
:101CF000AA20030030B50C001100002285B01D00A1
:101D000000920123200008F03FFA002C23D028681D
:101D1000124B0340062B06D0032420420ED1104B59
:101D200002689A420AD103A90EF086FF00220399A5
:101D3000009213000DF068F905B030BD0300234098
:101D4000022BF9D009F080FB03000220A3431843C3
:101D5000044BC018F0E70448EEE7C046070080FFD8
:101D60007CC002000000808002008080F0B5050089
:101D700087B01000019109F067FB041C0390681FF5
:101D8000182800D9B2E017F0ADFD0D121F24354020
:101D90007176B1B1B1B1B10D121F24354071949D6E
:101DA000A2A7AC000198211C17F01EFF03E0211C24
:101DB000019818F059FA0190032301984C4A98436E
:101DC000013B03439B1871E0211C019818F060F956
:101DD000F1E70021201C17F09DFE002805D04549A1
:101DE000454824F0DFFC10F086FA03A901A820F092
:101DF000ADFFE1E70021201C17F08CFE0028EED19A
:101E0000211C019818F064F8D5E70021201C17F078
:101E100081FE0028E3D1211C01981AF0C7FD0021A2
:101E2000041C019017F076FE002807D0039A0023C7
:101E3000002A01DA80231B060193BDE70021201C44
:101E4000039E012717F06CFE002800D1071C00211B
:101E5000301C012517F064FE002800D1051CFFB2DC
:101E6000EDB2AF42A8D0311C201C9DE7211C019887
:101E70001AF080FE9FE70021201C17F04BFE00287F
:101E8000ADD103A901A820F061FF03220220019B2C
:101E90001749934303435B180493039B9343034302
:101EA0005B1804A9059305F015FF0300180007B09F
:101EB000F0BD0199201C17F047FE104B0028F5D10A
:101EC0000F4BF3E70199201C17F02AFEF5E7019963
:101ED000201C17F01FFEF0E70199201C17F03EFEB2
:101EE000EBE70199201C17F025FEE6E70023DDE76C
:101EF00000008080901A0300F0DC020038D6020057
:101F000030D60200014B58687047C0469C2E002016
:101F1000014B18687047C0469C2E0020F0B5194E42
:101F200087B03368050000200C00019324F0F0F81E
:101F300030600090206821F0C7F9019B07003360F2
:101F4000114E022D03D0A06809F032F906002100DD
:101F500063680831A81E039305F0BCFE009B049043
:101F60000593002203AB0321300000F0ABFE074BCA
:101F700004009F4203D00100380022F0A5FA20009F
:101F800007B0F0BD9C2E0020B8C5020008C90200B1
:101F9000F8B50326050007003540022D16D10E4B7B
:101FA0000340062B12D0FF23DB05C418B443201CCA
:101FB000002117F0B5FD002806D080231B06E41889
:101FC000B443064B2C43E7183800F8BD380001F045
:101FD000F5FE0700F8E7C046070080FF000080809C
:101FE00010B500F069FF0400200000F0B1FF0028E8
:101FF00001D1044810BD09F001FB0028F4D10248CA
:10200000F8E7C04638D6020030D6020010B500F01E
:1020100053FF0400200000F09BFF002801D104487A
:1020200010BD09F0EBFA0028F4D00248F8E7C046EA
:1020300030D6020038D6020007B5044B01900022CA
:102040006946022000930FF04DFB0EBD0604000010
:1020500010B509F031F9034B002800D1024B1800EC
:1020600010BDC04638D6020030D6020037B509F0A0
:1020700087F901AB7F2806D80121187001221800CA
:102080000EF02CF93EBD1F49820988420BD8402131
:1020900049420A431A703F220240802040421043C6
:1020A00058704231EAE7184C010BA0420ED82024A8
:1020B00064422143197080215F344942224020400C
:1020C0000A43014399705A700321D7E70F4CA0428D
:1020D00012D81024850C64422C431C703F258024A8
:1020E000294064422A40284021432243204359701A
:1020F0009A70D8700421C1E70549064824F052FBC4
:1021000010F0F9F8FF070000FFFF0000FFFF1000CC
:10211000A11A0300A8DC020010B5020002490A203F
:1021200000F056FF10BDC046BE04000010B502000E
:1021300002490A2000F04CFF10BDC0463E050000D9
:10214000F0B585B0019202900D000022314901984E
:1021500003930CF06DFD0090002801D043680093BC
:10216000029B012B10D0002634000196029B9E4258
:102170001FD0009B002B3DD12F68002C40D12C6834
:10218000019701360435F1E70024286800F094FE39
:1021900027000290029800F0DBFE051E0CD1002CF7
:1021A00007D122001C4901980CF042FD00281BD0E9
:1021B0004468200005B0F0BD009B2E00002B04D029
:1021C0002900180021F087F80600002C09D03A00F9
:1021D0003100039800F0FCFE104B984201D025001E
:1021E0003E002C003700D5E70D490E4824F0DAFAFE
:1021F00010F081F82968009821F06DF80700BCE71D
:10220000019A3900039800F0E3FE044B9842B8D1DC
:10221000B5E7C046D60600001E05000038D602000D
:10222000C21A0300A8DC020037B501A905000EF0B0
:1022300003FD1E4B04002B40062B05D0AB072AD113
:102240001B4B2A689A4226D10199200024F016F9E6
:102250000190012822D1207843B2002B04DB012019
:1022600023785B0018433EBD7F23013418403F3B79
:10227000034208D13F22237819009143802905D0D9
:1022800021F02EFDEFE798435B10F1E7800113404A
:1022900001341843EFE7019B012BE0D0019A054977
:1022A00005480BF0EBFE10F026F8C046070080FF53
:1022B0007CC00200DB1A030030DC0200F0B5140021
:1022C00087B0029003910022234920000CF0B0FC5B
:1022D00000220500214920000CF0AAFC0123040083
:1022E000049305931E4F002D07D068681D4B98423C
:1022F00003D004A90EF0A0FC07001B4E002C07D051
:102300006068184B984203D005A90EF095FC0600B2
:102310000024029B154D9C420AD10023059A01938B
:1023200000933100280003F047FD0E4807B0F0BDD0
:10233000002C07D00023049A019300933900280051
:1023400003F03AFD0399A3000022C958280008F0C1
:1023500047FF0134DDE7C046EE050000F60500004A
:102360009F9D030008C9020021480300BCB8020079
:102370007FB50D4D0400A84213D00C4E0122010080
:10238000300008F02DFF0A49300021F046FF0423F9
:102390000293084B0394DB6902AA032106480193C8
:1023A0009847280004B070BD08C90200BCB80200FC
:1023B0002148030080B80200A0AD020010B504005F
:1023C00086B06A4602A810210FF0DCFA0122210033
:1023D000684608F005FF02A902480DF049FF06B063
:1023E00010BDC0467CC0020070B50C68E30726D45F
:1023F000A30703D1254B22689A4220D0012820D977
:10240000486808F0BDFF0600200009F01DF8051C13
:10241000300018F0C3F8011C1D481AF0ABFB011C7A
:10242000041C281C17F034FE1AF050F8211C17F079
:102430004FFD032302249843164B0443E418200065
:1024400070BD200009F000F8051C1AF03FF8061CCA
:1024500018F086F8311C0400281C17F005FFFC2139
:102460008905051C17F056FB002803D00134012311
:102470009C4306E0BF21281C090617F04BFB0028EF
:10248000F5D1200021F02CFC0400D8E704C20200A2
:10249000000020410000808013B5040008000DF00A
:1024A0003FFF6A460100200000F08AFC009B0248C2
:1024B000002B00D1014816BD38D6020030D60200EC
:1024C00037B50024022800D98C6848680D680DF0E3
:1024D00027FF0A4B0100002C00D0094B28006A4658
:1024E00098470098002806D001990400002902D0DE
:1024F00006F070FB040020003EBDC046212E000007
:10250000C12D000070B50400080015000DF008FF93
:102510002A000100200000F0ABFC014870BDC0465D
:1025200008C9020010B500F0EDFC002804D10348F2
:1025300024F02BF90FF0DFFE10BDC04670DB020067
:1025400030B50B0085B01400012805D90A490B48A5
:1025500024F028F90FF0CFFE09480121C26801924A
:10256000019D0022A8472200039003A9012002F048
:1025700077FF039805B030BD151B030030DC020067
:1025800048B30200F8B50E0000280FD10400294B13
:102590001D680021080021F076FD00270600002DAF
:1025A00034D10025002C40D13000F8BD08688307E5
:1025B00015D10268204B9A420DD121F025FE05006D
:1025C000306808F0F5FD1D4BC26800249A42E0D146
:1025D00034680434DDE71A4903008A4202D008F067
:1025E000E7FD03009D6B002DEAD0164B2A689A4246
:1025F000E6D00025E4E7EA68FB009958002904D0FA
:10260000042902D0300002F0C9FE0137AB689F42B6
:10261000F1D3C6E7A268EB009958002904D0042939
:1026200002D0300002F0BAFE013563689D42F1D35A
:10263000BAE7C0469C2E002080B80200C5BA000050
:10264000B8C50200A0C7020070B5050000291CDB58
:10265000032905D80800002417F044F918180606C5
:102660000123023999430C00FE26B52109023143AA
:10267000280020F028FD002C04D005492800214323
:1026800020F021FDEE612C6270BD0024F226ECE703
:1026900080B0000010B588B001AA694604000BF0B4
:1026A00095FD009B022B2AD902AA322104A80FF023
:1026B00069F9019B13495A6802A821F079FE2000AC
:1026C00008F076FD104BC2689A4210D123680F497A