This repository was archived by the owner on Jul 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInstaller.resx
More file actions
1690 lines (1603 loc) · 157 KB
/
Copy pathInstaller.resx
File metadata and controls
1690 lines (1603 loc) · 157 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="licenseTextBox.Text" xml:space="preserve">
<value>Glest is a network multi-player real-time strategy game engine. It includes several factions, each one consisting of many 3d characters. The factions are loosely based on historical empires with added elements of fantasy, such as mummies produced by Egyptian priests, Indian shamans who summon thunderbirds for air assaults, and Norsemen who can build flying valkries and "Thors". Start the game by harvesting natural resources, then use the cash to produce an army. Single-player mode against the CPU is also available.
Glest is licensed under GPL3:
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright © 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for software and other kinds of works.
The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.
When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.
Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.
Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and modification follow.
TERMS AND CONDITIONS
0. Definitions.
“This License” refers to version 3 of the GNU General Public License.
“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.
“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations.
To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work.
A “covered work” means either the unmodified Program or a work based on the Program.
To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.
To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.
1. Source Code.
The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work.
A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.
The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.
The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.
The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.
The Corresponding Source for a work in source code form is that same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.
When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified it, and giving a relevant date.
b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”.
c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.
A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:
a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.
d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.
A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.
A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.
“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.
If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).
The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.
7. Additional Terms.
“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or authors of the material; or
e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.
All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).
However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.
Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.
An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.
11. Patents.
A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”.
A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.
In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.
If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.
A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.
If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.
Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
AAABAAUAEBAAAAEAIABoBAAAVgAAABgYAAABACAAiAkAAL4EAAAgIAAAAQAgAKgQAABGDgAAMDAAAAEA
IACoJQAA7h4AAAAAAAABACAAY/0AAJZEAAAoAAAAEAAAACAAAAABACAAAAAAAAAEAAAjLgAAIy4AAAAA
AAAAAAAANHWD/0dZWf9IXFz/Sl1d/0teXv9NX17/TmBf/05gX/9OYF//TmBe/01fXv9MXl7/Sl1d/0hc
XP9IWVr/NXWD/yJRWv8yHRD/NSMW/zgnGf88KRr/Pisb/0ArG/9BKxr/QSoa/0AqGv9AKxr/PCka/zkn
Gf81JBb/Mh0Q/yNQWf8kU1v/NSIV/zgqHP88LR//QS8f/0IwIf88OTD/PkhD/z5NSP8+R0D/PDku/z8x
Iv8/LR7/Oiod/zYjFf8kUlv/JVRc/zkmF/89LR//QjAf/zo5L/8lYGr/QomR/1RqZv9QWlH/S2tp/xZt
gf8VVmX/NkE7/z8tHv86Jhj/JlRc/ydVXf88KBn/Qi4e/zk8NP8RYHT/IKG6/09ZTf9ROCT/Uzkk/0dC
Nf8QfJb/CYKi/zBVV/9DLh3/PSgZ/yhVXf8oVl3/QCkZ/0IzJP8ZUl//CoWl/yqDk/9LNCH/UTwp/1g/
Kv9KQzX/En6Z/w+PsP8vUFH/Ri4c/0AqGv8pVl3/KVdd/0IpGP85PDX/DGN5/w6Ss/8yX2P/STEf/087
Kf9VRzX/R1xY/1asuv9qyNX/PW1y/0M8MP9BKxr/Kldd/ylXXf9DKBb/MkpJ/w+GpP8Qj6//N1BO/001
Iv9UPyz/W006/1xbTf9kYlP/YmBR/1VXSv9FPzP/QCoa/ypXXf8pV13/QycV/zdTUv8Tocb/DoOh/zZM
Sf9VPCj/VkIu/1xGMf9ZQi7/VT4p/1A5Jv9LNSP/QjEh/z8pGv8qV13/KVdd/0EoFv8+RT3/H7ba/xSJ
pv8vSEj/WT8q/1dDL/9ZRDH/WEMv/1VALP9MQDD/QUA1/0IxIf8+KRr/KVdd/yhWXf8/KBj/QzAf/z6S
nv83udb/IlVf/1Q9Kv9WQS3/VkEu/1VALf9SOyf/MkpJ/y5OUf9DMB//Pyoa/ylWXf8nVV3/PCcY/0As
HP9GQTT/Way1/z6arP88SUP/Tzkm/1A6Jv9OOSf/Q0c//yl8j/8uV1r/Qi0d/z0oGf8oVV3/JVRc/zgl
F/87LB7/Py0d/0g+MP9cgn//UomP/0lmZv9IXFj/SGRi/1B1dv9Ziov/Pl9d/zwpGv85JRf/JlRc/yNS
W/80IhT/Nygb/zsrHf8+LB3/QCwc/0c8Lf9NSz//Sk1C/0lDN/9EMyP/PzAg/z00KP84KBr/NSIU/yRS
W/8eTFb/LRgL/zAeEf8zIhT/NiQW/zglFv85JRb/OiUV/zolFf86JhX/OSUW/zckFf8zIRP/MB8R/y4Y
C/8fS1X/LGl4/zZKTP83Tk//OVBQ/zpRUf87UlH/PFJR/zxSUf88UlH/PFJR/ztSUf86UVD/OVBQ/zdO
T/82Skz/LWl3/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAoAAAAGAAAADAAAAABACAAAAAAAAAJAAAjLgAAIy4AAAAAAAAAAAAAMpGl/1R+
hv9UfYX/VH6F/1R+hv9Vf4b/VX+G/1Z/hv9WgIb/V4CG/1eAhv9XgIb/V4CG/1eAhv9XgIb/VoCG/1Z/
hv9Wf4b/VX+G/1V+hv9UfoX/VH2F/1R9hf8ykqb/HHWL/zIhF/80Ihf/NiUa/zgnG/86KRz/PCod/z4r
Hv8/LB//QC0f/0EuH/9BLh//QS4f/0EtH/9BLR//QCwe/z4rHv88Kh3/Oykd/zknG/82JRr/NCIX/zMh
F/8ddIr/GnGG/zAeEv8yIRT/NCUY/zcnGv85KRv/PCsc/z4sHf8/LR3/QC4e/0EuHv9CLh7/Qi4d/0Eu
Hv9BLR3/QC4e/z8tHf88Kxz/Oikb/zcnGv81JRj/MyIU/zEeEv8bcIb/GnKH/zMhFf81JBf/Nygb/zkr
Hf88LR//Py4f/0IvH/9EMB//RDAf/0EvIP8+MSX/PjQp/z40Jv8/LyD/RDAf/0QvHv9BLR3/Pi0e/zsr
Hf84KRv/NSUY/zMhFf8bcYf/G3KI/zUjFv83Jxn/Oisd/z0uH/9ALyD/QzAg/0UyIv84OTL/KlBV/zh0
gP9HfYf/QH6G/0V8gv9AeoH/JVhg/ypERf83OjL/QDEj/0AvH/87LB7/OCga/zUjFv8ccof/G3OH/zcl
F/86KRv/PS0e/0AvIP9EMB//QDcq/yFLUv8WeY//SLC9/2B+ef9ZUkP/UkQz/1ZIOP9RZ2H/EYGd/wVf
eP8JYXj/KlFW/0QvH/8+LR//Oiob/zglF/8cc4f/HHOI/zkmGP88Khz/QC4f/0QwH/8/OS7/F1Ni/wdz
j/8pwNn/UGtj/081If9QOSX/UTon/1I4I/9EQDP/D32Z/wp8mv8Jf5//JmZx/0YwHv9ALh//PSsc/zom
GP8dc4f/HHOI/zsnGf8+LBz/Qy8f/0Q0Jf8cU17/BmB5/w6jyP8rlaj/TTYj/044Jf9TPSr/VT8q/1Y8
J/9IRDf/D3yY/wuQs/8Kiqz/J2Rv/0gwHv9DLx//Pywc/zsoGf8dc4j/HXOI/zwoGf9BLRz/Ri8e/zJE
Qf8IXXT/C3aS/xGu1v84YmT/SzEd/0s3Jf9TPiv/V0Et/1k/Kf9KRTf/C3WQ/xKUtP8Jhab/JV5o/0kx
Hv9EMCD/QC0d/z0pGv8ddIf/HXSI/z0pGf9CLRz/RjEg/x1RXP8HXnb/Doyt/xOcv/8/SED/SDAe/0k1
JP9QPCr/VUAt/1RCL/88SkT/KYui/3rj8f9Sv9P/ImFu/z83Kv9DMiL/QS4e/z4pGv8edIf/HXSI/z4p
Gf9CLBv/QjUn/xRidf8Lco3/D5O1/xaIo/9DPTD/STMg/0s4Jv9TPyz/WEk3/1FrZ/9Wg4X/eK2r/4a5
tf+DtrP/Y5eZ/0hwcf9DRDr/QS0d/z4qGv8edIf/HXSH/z4pGf9DLBr/Pjgs/xN8lv8QkbL/EJS1/xZ8
lP9GOy3/TDYj/087Kf9XQi//Xkgz/1xJNf9dRzL/WUEs/1Q9Kf9ROyf/Tzso/0s6Kv9DMyT/Pywd/z0p
Gv8edIf/HXSH/z4pGf9DKxr/Qjot/xqSr/8SoMT/D4uq/xR1i/9HPjD/Uzsn/1Q/LP9WQi//XUgz/1tG
Mf9ZQy//V0As/1M+Kv9QOyj/TDgm/0Y1JP9BMCH/Piwd/z0pGv8edIf/HXSI/z4pGf9CKxr/RTQj/yCP
qf8UtuD/EoSh/w5hdf9EPTD/WD8q/1hCL/9WQS7/WkUx/1tGMf9ZRDD/VkEu/1Q/K/9QPCn/TDkn/0Y1
Jf9BMCH/Piwd/z0pGv8edIf/HXSI/z0oGf9BKxv/Ri0a/zB+iv8b0Pz/IaG//whbcP8+Qzr/WD4o/1lD
L/9XQy//WEQw/1lEMP9XQi//VEAt/1M+Kv9JQTL/OEtH/0U0JP9AMCH/Piwd/z0pGv8edIj/HHOI/zwo
Gf8/Kxv/RCwa/0JLQv81xeP/P8zr/w5qgv8uSUv/WD0n/1dALP9XQi7/V0Iv/1ZCL/9VQC3/Uj4r/1E6
J/8yTE3/JF1p/0YzIv9BMCH/Py0d/zwpGv8ddIj/HHOI/zonGP8+Kxv/QS0d/0UuHP9Id3n/V973/zmo
vv8VU2P/Tj4t/1Q8KP9TPir/Uz8s/1M+K/9SPSr/UTom/0Q7L/8OXHH/IGBt/0YyIf9CMCD/Piwd/zsn
Gf8dc4j/HHOI/zgmGP88Khv/Pi0e/0EtHf9FMiL/VIaI/23d6/83lKn/KUtQ/0w5Jv9QOSX/UDon/1A6
Jv9ONyT/QTov/yxlcf8qmLH/JGdz/0MvHv8/Lh7/PCoc/zkmGP8cc4f/G3OH/zYlF/85KBr/Oysd/z4u
H/9BLh3/RTEg/1ZrY/9wu77/U6a0/zprc/8/S0b/QkY8/0FIQP8+XV3/SIaR/2eeov9tuLz/Nn2G/z4r
HP89LB3/Oika/zckF/8ccof/G3KH/zQjFv83Jhn/OCoc/zssHv8+Lh//QC4e/0ItHP9GOiv/WmNZ/2F/
ff9ahIX/UIOE/1V8ff9VcG3/U1RI/0c1Jf9EQzj/RGJe/zwrHf86Khz/NycZ/zUiFv8bcof/GnGH/zIg
FP80Ixb/Nica/zgpHP86Kx3/PS0e/z8uHv8+LBz/Pioa/0IuHf9FMiH/RTMi/0QxIf9CLh3/QC0c/z8t
Hf89LBz/PCsc/zkpG/82Jxr/NCQW/zIgFP8acYb/GG+F/y4cEP8wHxL/MiIV/zMkF/82Jhn/OCga/zsq
G/86KRr/PCoa/z0rG/8+Kxv/Pisb/z0rG/89Kxv/PCob/zspGv85KBn/NyYY/zQlF/8yIhX/MB8S/y8c
EP8ZboT/E2d9/ycUC/8oFgv/KhkN/ywbD/8uHRD/MB4R/zIgEv8zIBL/NCET/zQiE/81IhP/NSIT/zQi
E/80IRL/MyES/zIgEv8wHhH/Lh0Q/ywbD/8qGQ3/KRYL/ycUC/8TZnz/M4ug/z5rdf8+bXb/Pm52/z9u
d/8/b3f/QG93/0Bwd/9BcHf/QXB3/0Fwd/9BcHf/QXB4/0Fwd/9BcHf/QXB3/0Bwd/9Ab3f/P293/z9u
d/8+bnb/Pm12/z9rdf8zip//AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACAA
AABAAAAAAQAgAAAAAAAAEAAAIy4AACMuAAAAAAAAAAAAACmTqf9Wl6T/WZWh/1iVov9YlqL/WJai/1mW
o/9ZlqP/WZaj/1mWo/9ZlqP/WZaj/1mWov9ZlqP/WZaj/1mWo/9ZlqP/WZaj/1mWo/9ZlqL/WZai/1mW
o/9ZlqP/WZaj/1mWo/9ZlqP/WJai/1iWov9YlaL/WZWh/1aXpP8plKr/HJi1/zo9Pf8+MCn/PjMs/0A1
Lf9BNi7/Qzcv/0Q4L/9FOTD/Rjow/0c6Mf9IOzH/STsx/0o8Mf9KPDH/Sjwx/0o8Mf9KPDH/Sjwx/0k7
Mf9JOzH/SDow/0c6MP9FOTD/RDgv/0M3L/9CNi7/QDUt/z8zLP8+MSn/Oj08/xyYtf8Tiqr/KyMe/y8a
DP8wHhD/MiAT/zMiFf81JBb/NyUX/zgmGP86Jxj/OygZ/zwpGf89KRn/PSoZ/z4qGv8+Khr/Pioa/z4q
Gv89Khn/PSkZ/zwpGf87KBj/OicY/zkmGP83JRf/NiQW/zQiFf8yIBP/MR4R/zAaDP8rIx3/FIuq/xOM
q/8tJyD/Mh4Q/zMiFf80JRj/Nica/zgpG/86Khz/PCsd/z4sHv8/LR7/QC4e/0EuHv9BLh7/Qi4e/0Iu
Hv9CLh7/Qi4e/0IuHv9BLh7/QS4e/0EuH/8+LR3/PSsd/zsqHP85KRv/Nyca/zUlGP80Ixb/Mh8R/y4m
IP8UjKv/E4ys/y8pIv80IBL/NSUY/zYnGv84Khz/Oise/zwtHv8+Lh//QC8f/0IvIP9DMCD/RDAf/0Uw
H/9FMB//RS8f/0UuHv9FLx7/RTAf/0UvHv9FMB//RDAg/0IvH/8/LR7/PSwe/zwrHf85KRz/Nygb/zUl
GP80IRP/Lygh/xSMq/8TjKz/MCsj/zYiFP83Jxn/OCoc/zosHv89Lh//Py8g/0EvIP9DMCD/RjAf/0Yy
If89NSn/MDk2/ytGS/8vUlv/LWJs/y1haP8vU1X/LkRC/zY6M/8+Nir/QjEh/0MuHf9CLh7/QC8f/z0s
Hv86Kx3/Nyga/zYjFP8xKSL/FIyr/xOMrP8xLCP/NyQV/zgoG/87Kx3/PS4f/z8vIP9CMCD/RTAg/0Yy
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
Hf9BLh7/QS4d/0EtHf9BLRz/QS0c/0EuHv9BLx7/QS8f/0AuHv8+LR3/PCsc/zopGv85KRv/Nygb/zUm
Gf80JBf/MyAS/y8nIP8Ti6r/Eoqp/yslH/8wHA7/MSAT/zIjFv8zJBf/NSYZ/zYnGf85KRr/Oyoc/zsq
G/86KRr/PCob/z4rHP8+Kxz/Pywc/z4sHP8+LBz/Piwc/z0rHP89Kxz/PCob/zspGv85KBr/OCcZ/zYm
GP80JRf/MiMW/zEgE/8wHA7/LCQe/xKKqf8QiKj/KCEc/y0XCf8uGw3/Lx0Q/zAfEf8yIRP/MyIU/zUj
Ff83JBX/OCUW/zglFf85Jhb/OiYW/zomFv86Jxf/OycX/zomFv86Jhb/OiYW/zkmFv84JRb/NyQV/zYj
FP80IhP/MiET/zEfEf8vHRD/LhsO/y0XCf8pIBv/EYmo/wt5l/8fHh//IxUO/yMYEf8kGhL/JhsT/ycd
FP8oHhX/KR8V/yogFv8rIBb/LCEW/y0hFv8uIhb/LiIX/y4iF/8uIhf/LiIX/y4iFv8tIRb/LCEW/ywg
Fv8rIBX/Kh8V/ygeFf8nHRT/JhsT/yUaEv8jGBH/IxUO/yAeHv8LeZb/PqO6/0yOnP9LjZv/So6c/0qO
nP9Kj5z/So+d/0uPnf9Lj53/S4+d/0qPnf9Lj53/S4+d/0uPnf9Lj53/S4+d/0uPnf9Lj53/S4+d/0uP
nf9Lj53/S4+d/0uPnf9Lj53/S4+d/0qPnf9Kj5z/So6c/0qOnP9LjZv/TI6c/z6iuP8AAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgA
AAAwAAAAYAAAAAEAIAAAAAAAACQAACMuAAAjLgAAAAAAAAAAAAASc4r/NIud/0WQof9DkKL/Q5Ci/0KR
o/9CkaP/QpGj/0KRo/9CkaP/QpGj/0KRo/9CkaP/QpGj/0KRo/9BkaP/QZCj/0GQo/9BkKP/QZCj/0GQ
o/9BkKP/QZCj/0GQo/9BkKP/QZCj/0GQo/9BkKP/QZCj/0GQo/9BkKP/QZCj/0GRo/9BkaP/QpGj/0KR
o/9CkaP/QpGj/0KRo/9CkaP/QpGj/0KRo/9CkaP/Q5Ci/0OQov9FkKH/NYue/xN0i/8hsc//V6y4/2+A
gv9tg4X/bYOF/22Ehv9uhIb/boSG/2+Fh/9vhYf/cIWH/3CFh/9whof/cIaH/3GGh/9xh4f/coeI/3KH
h/9yh4f/c4eH/3OIiP9ziIj/c4eH/3OIh/9ziIf/c4eH/3OHh/9ziIf/c4eH/3OHh/9yh4f/coeH/3GH
h/9xhof/cYaH/3CGh/9whof/cIWH/2+Fh/9vhYf/boSG/26Ehv9thIb/bYOF/22Dhf9wgIL/V6u2/yGy
0f8Oocb/GVNk/yoIAP8pEAT/KREG/yoSB/8rFAj/LBUJ/y0WCv8uFgr/LxcL/zAYC/8xGQz/MhkM/zMa
DP80Gw3/NRsN/zYcDf82HA3/NxwN/zcdDf83HQ3/NxwN/zgdDv84HQ3/Nx0N/zccDf83HQ3/NxwN/zcc
Df82HA3/NRsN/zQbDf80Ggz/MxoM/zIZDP8wGAv/MBcL/y8XCv8uFgr/LBUJ/ysUCP8qEwf/KREG/ykQ
BP8qCAD/GlFh/w6iyP8Pocf/Hlhm/zETBf8wHA//MB4R/zIgE/8yIhX/NCMW/zUkF/82JRj/NyYY/zgn
Gf85KBr/Oika/zspGv88Khv/PCob/z0rG/89Kxv/Pisb/z4rHP8+LBz/Piwb/z8sHP8/Kxz/Pisb/z4s
G/8+Kxz/Pisb/z4rG/89Kxv/PSob/zwqGv87KRr/Oika/zooGf85Jxn/NyYY/zYlGP81JBf/NCMW/zMi
Ff8yIBP/MR4R/zAdD/8yEwX/IFZk/xCjyf8Pocj/H1ln/zIUBv8wHhD/MSAT/zMiFf8zJBb/NCQY/zUm
Gf83Jxr/OCga/zkpG/87Khz/PCoc/z0rHP89LB3/Piwd/z8sHf8/LR3/QC0d/0AtHf9ALR3/QC0d/0At
Hf9BLR3/QC0d/0AtHf9ALR3/QC0d/z8sHP8/LB3/Piwc/z0rHP89Kxz/PCob/zsqG/86KRv/OSga/zcn
Gv82Jhn/NSUY/zQkFv8zIhX/MiAT/zEeEf8zFAb/IFZk/w+jyf8Pocj/H1ln/zMWB/8yHxL/MiEU/zQj
Fv80JRj/NSYa/zcoG/84KRz/OSoc/zsrHf88LB3/PSwe/z4tHv8/LR7/QC4e/0AuHv9BLh//Qi4f/0Iv
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
K/9UPyz/VT8r/1Y/Kv9XPin/STsr/xxCSv8Naob/VcPW/5z4//+l9///nfn//1bH2v8PbYn/FUFM/zow
I/9CLx7/RDAf/0QxIP9CLx//QS0d/z8qGv9BIA7/JVxm/w2iyf8Nocj/JF5o/0AgDf8/Khn/QSsb/0Mt
HP9GLx3/RzIi/xxYaP8FZ4H/CV92/wplff8Pj7D/D5W4/w2Xuv8Wjav/QT80/0guHP9IMiD/STQj/0o2
Jf9LOCf/Tzwq/1ZCLv9YQi7/VUY0/0BtcP83anL/L4GS/0+twP994ez/o/3//574/v+b9v7/n/j+/6T9
//+C5O7/UrDC/y6GmP8sZ3L/N1RU/0MxIf9CLx//QS0d/z8rG/9BIQ7/JVxm/w2iyf8Nocj/JF1o/0Ag
Df8/Khn/QSwb/0MtHP9FLRv/RDcq/xhpff8Ic4//CmyG/xCGpP8VosX/Doyt/wuStf8agpv/SDor/0ox
Hv9JMyH/SzUk/0s3Jv9MOij/UT0r/1lEMf9cRjH/Wko4/2KBev9oh4H/a4eA/3qLgf95iH3/coV6/3CE
eP9vg3f/boJ3/2+Cd/9zhHn/c4Z8/2SCe/9ggn7/TmNe/0IxI/9BLh7/QCwc/z8qG/9BIQ7/JVxm/w2i
yf8NoMf/JF1o/0AgDP8/Khn/QSwb/0MtG/9FLBr/Pzov/xRxiP8KgJ7/DHya/xSTs/8Wn8H/DYal/wuL
rf8aepD/STgn/0wzIP9KNCL/SzYl/0w4J/9OOyn/U0At/1lEMP9fSTP/XUYx/1lBLP9aQSv/WkAq/1g+
KP9XPCb/VTol/1M4I/9SNyL/TzYh/040IP9MNCD/SjMg/0kyIP9HMiD/RDEh/0IwIf9ALh7/QCwc/z4p
Gv9BIQ7/Jl1m/w2iyf8NoMf/JF1o/0EgDP9AKRn/Qisb/0QtHP9HLRv/PDcs/xB2kP8Pmb7/D5Cy/xWb
vf8Tmrz/Dous/wuIqP8XeI3/Rzgo/00zIP9MNiP/TTgm/087KP9SPiv/VUAt/1lEMP9eSTT/X0gz/1pF
Mf9aQy//WkQv/1lBLf9YQCv/Vj4q/1Q9KP9SOyf/UDom/085Jf9NOCX/Szcl/0k2JP9GNCP/QjIk/0Ev
IP9ALR7/Pysc/z4pGv9BIA7/Jlxm/w2iyf8NoMf/JF1o/0EgDP9AKRn/Qisb/0QtHP9HLRr/QT0x/xuT
r/8QqM//EZ3C/xKdwf8Qlrj/DYin/wuEo/8XeY7/Rzss/081If9POCX/UTso/1M+K/9TPyz/VUAt/1hE
L/9dSDP/X0kz/1xHMv9ZQzD/WkQv/1lCLv9YQSz/Vj8r/1Q+Kv9TPSn/UTso/086J/9NOSb/Szcm/0k2
Jf9FNCT/QjIk/0AvIP8/LR7/Pisc/z0pGf9BIA7/Jl1m/w2iyf8NoMj/JF1o/0AgDP8/KRj/QSsb/0Ms
G/9GLRr/SDoq/yePpv8Oosr/D5q+/xekyP8WlbX/CnSP/wp8mf8Vdo3/Rz4v/1A2Iv9TPCj/VkAr/1ZA
LP9UPyz/VEAt/1dDL/9bRzL/Xkgz/11HMv9ZRDD/WkQv/1lDL/9XQi7/VkAs/1Q/K/9SPSr/UTwp/086
KP9NOSf/Szgm/0g2Jf9ENCT/QTIj/0AvIP8/LR7/PSsc/z0pGf9BIQ7/JV1m/w2iyf8NoMj/JF1o/0Af
DP8/KRn/QSsb/0MsG/9GLRv/STIf/yWDl/8NqdT/D6HI/xy23P8bmbj/Bltx/whogf8RaX//Qz0v/00z
IP9VPSn/W0Qv/1hCLv9VQC3/VEAt/1dCL/9aRTH/XEcy/1xHMv9aRTH/WUQw/1lDMP9XQi7/VkEt/1U/
LP9TPir/UTwp/087Kf9OOij/TDkn/0g2Jf9ENCX/QTIj/0AvIP8/LB7/PSsc/z0qGv9BIQ7/JVxm/w2i
yf8Nocj/JF5o/0AgDP8/KRn/QSsa/0MsG/9FLRz/SC4b/zJ1fv8PuOT/Ebbh/xTD7/8jrc//B191/wZj
e/8NZHj/QD4y/0wyHv9VPCj/XEUv/1pFMf9XQi//VUAt/1ZCL/9ZRTH/WkYy/1tGMv9aRTH/WUQw/1hD
L/9XQi//VkEt/1RALP9TPiv/UT0q/087Kf9OOSf/Szgn/0c1Jf9ENCX/QjIj/0AvIP8+LR7/PSoc/z0q
Gv9BIA3/JVxm/w2iyf8Nocj/JF5o/0AfDP8/KRn/QCsa/0IsG/9FLRz/RywZ/0BZVf8Uwev/Esb0/xfK
9/8yyer/C2mC/wVedf8HZHz/O0Y//1A1IP9VPCj/WkIt/1pEL/9YRDD/VkIu/1ZCLv9XQzD/WUUx/1pF
Mf9ZRDH/WEMv/1dCL/9WQS7/VUAs/1M/LP9SPiv/UT0p/009K/88SUP/Rj0v/0c0I/9EMyT/QjEi/0Au
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
H/9BLx//Qi8f/0MwH/9DLh3/QSwc/0Y9MP9baWH/e56b/4vExv+Bzdb/Zr7O/2O5x/9Ktsf/QrPH/1m2
xf9fsL7/ZrfB/3aqrP9meXH/UUo8/0UyIv9DLRz/QSsa/0NUTf9QytX/OE9L/z4rG/88LB3/Oysd/zoq
HP85KBv/NyYY/zYkFv84Ggr/Ilhm/w6jyv8Oocj/IFto/zYZCf81IhX/NSUY/zYnGv83KBv/OCod/zor
Hv87LB7/PC0e/z4tH/8/Lh//QC8f/0IvH/9DMB//Qi8e/z8sG/8/Kxr/Qi8f/0g5Kv9VTT//YWNZ/2Rt
ZP9gcGb/X3Bm/2BoX/9bWk7/T0Iz/0c1Jf9DLx3/Qy8e/0MwH/9CLx//QS4e/0IyI/9PYFr/QTsw/zsr
HP87Kx3/OSkc/zgpG/83Jxr/NiUY/zUjFf83GQn/IVhl/w6jyf8Oocj/IFpn/zQXCP8zIRT/NCMW/zUl
GP82Jxr/OCkc/zkqHf85Kx3/Oiwe/zwtHv89LR7/Pi0e/z8uHv9BLx//QS8f/z8tHf8/LR3/QS4e/0Iv
H/9EMB7/Qy8e/0MvHv9DLh3/Qi4d/0IuHv9CLx7/QzAg/0MwIP9DMCD/Qi8f/0EvHv9ALh7/Py0e/z4s
Hf88KRr/Oyoc/zsrHP85Khz/OCgb/zYnGv81JRj/NSMW/zQhFP81Fwj/IVdl/w6jyf8Oocf/H1ln/zMW
B/8yHxL/MiIV/zMkF/80Jhn/Nica/zYoG/83KRz/OSod/zorHf87Kx3/PCwe/z4tHv8/LR7/Pi0d/zwr
HP8+LB3/Py0d/0EuH/9CLx//QS8f/0IwH/9BLx//QS8e/0EvH/9BLx//QS8f/0EvH/9ALh7/Py4e/z8t
Hf8+LB3/PSwc/zwrHP86Khz/OSkb/zgpG/83KBr/NicZ/zUlGP80JBf/MyIV/zIgEv80Fgf/IFZl/w6i
yP8NoMb/HVdm/zETBf8wHRD/MR8S/zEhFf8yIxb/MyQX/zQlGP81Jxn/Nica/zcoGv85KRv/Oyoc/z0s
Hf88Kxz/Oyob/zopGv87Khv/Piwc/z8sHf8+LBz/Pywd/0AtHf8/LR3/Pywd/z8sHf8/LR3/Piwd/z4s
Hf8+LBz/PSsc/zwrHP87Khv/Oikb/zopGv85KBr/NycZ/zYmGf81Jhj/NCQX/zMjFv8yIhT/MR8S/zAd
EP8yEwb/H1Vj/w6ix/8MnsX/HFZk/y8RA/8uGg3/LhwP/y8eEf8wIBP/MSEU/zIiFf8zIxb/MyQX/zUl
F/82Jhj/OCcZ/zooGf85KBn/OCcZ/zgnGP86KBn/PCoa/zwpGv87KRr/PCka/z0qGv88Khr/PCka/zsp
Gv88KRr/PCka/zspGv87KRn/OigZ/zkoGf85Jxj/OCcY/zcmGP82JRf/NSQX/zMkFv8yIxX/MiEV/zAg
E/8vHhL/Lx0Q/y4bDf8wEQT/HVRi/w2gxv8LncP/GlRj/y0OAf8rFwr/LBkM/y0bDv8tHA//Lx4R/zAf
Ev8xIBP/MSET/zIiFP80IxT/NSMV/zYkFf82JBb/NyQW/zclFv84JRb/OSYW/zkmFv85Jhb/OSYW/zkm
F/86Jhf/OSYW/zkmFv85Jhb/OSYW/zgmFv84JRb/NyUW/zckFv82JBX/NSMV/zQiFP8zIhT/MiET/zEg
E/8wHxL/Lx4R/y4dEP8tGw7/LBkM/ywYCv8tDgL/G1Jh/wyfxP8Kmr7/GE5e/ysHAP8qDwL/KxED/ysS
Bf8sFAb/LRUH/y4WCP8vFwj/MRgJ/zEZCf8yGgr/MxoK/zQbC/81HAv/NhwL/zYdC/83HQv/Nx0M/zge
DP84Hgz/Nx4M/zgeDP84Hgz/OB4M/zceDP84Hgz/Nx0M/zcdC/82HQv/NhwL/zUcC/80Gwr/NBoK/zMa
Cf8xGQn/MRgJ/zAYCP8vFgj/LRUH/y0UBv8sEwX/KxEE/yoQAv8sCAD/Gkxb/wqbv/8GfZz/D0pc/xcr
NP8WLzn/FjE5/xcxOv8XMjr/GDM6/xgzOv8YNDv/GTQ7/xk0O/8aNTv/GjU7/xo2PP8bNjz/GzY8/xs2
O/8cNjv/HDY7/xw2O/8dNjv/HDY8/xw2PP8cNjz/HDY8/xw2O/8cNjv/HDY7/xw2O/8bNjv/GzY7/xs2
O/8aNjv/GjU7/xo1O/8ZNDv/GTQ7/xk0O/8YMzr/GDM6/xcyOv8XMTr/FzE5/xYwOf8XKzT/D0ha/wZ9
nP9SxNz/csfV/27Bz/9twtH/bcLR/23C0f9swtH/bMLR/2zC0f9swtL/bMLS/2vC0v9rwtL/a8LS/2vC
0f9rwtH/a8LR/2vC0f9rwtH/a8LR/2vC0f9rwtH/a8LR/2vC0f9rwtH/a8LR/2vC0f9rwtH/a8LR/2vC
0f9rwtH/a8LR/2vC0f9rwtH/a8LR/2vC0f9rwtL/a8LS/2zC0v9swtH/bMLR/2zC0f9twtH/bcLR/23C
0f9uwc//csXT/1LD2/8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACJUE5HDQoaCgAAAA1JSERSAAABAAAA
AQAIBgAAAFxyqGYAAIAASURBVHja7P1ZtyxJdueH/baZR8QZ75hjZWVWZWUVqoBCYQYIoLvZ7BZXE+Ii
qQdS79KDvpqWnvWopSVKJJtNotEAasqacp7vfO+ZYnK3rQebzT3OOTczq0VS7blunggPd3NzM9vTfw8m
7r3/k0r3Ahz/HsxfBBzQg/b+LwqCPwT/ffLYdZ58/1XXXev4qvf/h+M/HL/tQ776vVcuc9l9Pt6r8boO
pPN/MbB5AKdvo/1DuovTz1kslO7wKdgbMNsDmQMD4ECGonG346HXIcovS7j/geD/w/G/9uPLMITr3LPr
GlP8bkANYEEH2K7APaVfPmC9+oLug3f+Z45uvMo39+bYPYHFG8BRuLkvHuKKhsvjt0n8X/Xe/y0c/1t8
/68iIf/XeHwNGsFz/14wAenwmvwa+o8Zzn7Bpx//LWfPPqf79IOn3Li7ZXH0Nq90A/AMOGL7uOfZeY/b
KiKKNQqiCCDpmXpFN/zvcuX714v8fx3Lw331Jv7D8Vs4hP8lrqBpNn55P1V3XzdFMaqJ4nBOGAYBKxwf
dBzcFTDn8PgTHn7+Kz7/5CNOHp/Tvfs5HJyes+x/wursA15/9Tanp8r/+A9L3v14ybOTLU6hM4oYT8ym
fR0puzh+VRl9uT7BP7/8+/clMb/Cc57n1v8tKgBw+aR/Jfr990X8z/ec9uqd06pyxTWSf2sucIAiqArD
AE4N85nw5jcX/NM/mXP7Bnzx8IKPPzvhw4/PuTiH7tkSlj0M7pTl2SmPvviUZ8/gH34MH3wCJyf+OV0H
1vh/Mtml+su15/eKcdSr7v8tHr812vsPysPlx/8yhfhXfqXRoZd+Hf+mlzeheORuGPy/foDZDJ7egwOF
F+7Ao6fw6BQen8BmA11nYb2GTz6DDz4Fq7Bcwr0ncLH0a9Vab0ZYAbFgpHEMTLzdrheWSy/YPRjXXQ9T
KMVlI/vvVcDGh10X6P3/10Mu/fpbYQ7ynD9O8fDrzOdVjEB3XKw77isBfwfYIXx2XlsfBvj8Afy//y0c
HnhaNtYzhtkMum5mUR3Y9p7wL85htfHcoXdwsoV+DXPrpf/MRjOg6ae95GWbhX/V/OllF13RhuGS4zk4
7s7jGovvedvVr3LzlxmHr3B8bcqLTH782g75EuP4PP0YnuPa6tDdz9HRh/BVLrl+yJ+deqnf9552ReDG
nr/k6Rmsejg8guOZ1+i7ztLNOsOsMxwdKnduKufrgdMzePgInjyEn352i0dPFjhrmBtlZgVjHAYQEwdO
C9vehg77t7Amv5BMqQumeWO14ZtfanaKs6DspBTTLn1T39dw1csJRUft2fb3UTfM6KuOW21aLPj4tVfh
rnGZeuuvxlWk+OR2/JKPa5JG1SVT3Tc5BEP7Y9OTZm2NeuEclw3u6NcRAOcm2ts1WuPnDKlHJmjNQ31d
aE6nuIDA4EicQMIN0SxQBHXe5u97YT0IQy+8ePOCP33rCa8eKXduw9EBHB0brDUwCAPQGbEsFsrRgTDr
YLu1nJ8NzLuBBxcLnp4d058fAoYVsMKBUb/+RgRddNo2g5B+KjkCkwzAXxZGRNqFrkU7cfC0oAdbX2sm
KLA8MeIAZuIxlxFQq5I8r+wtxqMdzivv2/FOxa9fl5mxgwwmOnxNHWGk6z6vbuGadsr7J1Aq1/7UcBTH
7vuFCQYy5D+Vm2sXownXuyg1GwZQcaxiPNqmBh2fVLILYEiEycPOsNi74JUXV7z2EhweduwfdGx64ezM
sVwLnbUwn3fcOhSODxwyF7ZLZbEQHlx0LBaGNV1oVIu/FLr6xALWhjAkdDIu+HaFxusT/c7CeW1EdUPg
4EGJUlJrvM5NMGQLWsz2aK7suN/eumL6CBfupOP8olp+3XlEhqVNO+1luxrSelivetxzHjLxqTp2SMbK
YZzGtDya8XXF9UxdT8M3dr3pAJiJcb+E05paI8n9C+cN+Kg66rWUJVruWOIHYT1HwTaE+6Otkm6LAJGM
1pQ/r83zyO1oXOx+LOfzBa+9MOPNN3pee0nYW3QYEU6XhvXGsO4HOqeCALMF7B9YDhZKP1eWq4Gbh5b9
uXCSHiYeZbAS3j8whMQBC9U86v6jDsd2SiaSGYOYsIC1pEBX0GXDscMAGlPr9hr7NtLIlcqoagT+SJIm
Lac+P6n5TyoWbnwdO5arjq/fyS9MqTVdTuZflQlcFuPhLyhV2emnudF90+bOWMOvWdlIUDfXyWSLOtEt
qa+vQC3FTSKR6tdfce1Qodoy7oCrG4+mild0wwsUcjExgErIku1tW4yA1mveuwDiOe8CvHlsePGWcPe2
YdFZNoOwHDydqkog4zAXnYH5zNBZYbEQ9veUWZd65ol+LqETkfC9lBVjAi1Gye+IbyZR4qu3IiWPRDhf
ykvJL5pEZqtigczy+Sq0II21hglrTYDApEx+YrWWE2G1UH35gHy/jCDc4r3qBgKd1itkbIEYtGUakzTl
rrogtfe1HO4yFX3MUHf9nC5yQ/XTqHWzAw8pCV6yheiq3ydMigaRHgnuUmJPEL92jWofLp91laqIusbW
KEwUNSQCVVu3zxAVV5duU6HQCEK7toYndHBZ8osEJNDT3mym7M2VvQUsZoZ5J2As1g5pWXSeP3pCNSLe
1SdCJyEC0IbJcIHzhYnxQUHqCUAj4ejIxx9/jxKrjiRsJ0YzJFbhA+MFbkVTz6uRbuDfGLSkLUcdEWgb
tXiFFS2XSRxGGsGumMmRJW+4UqKPD93NA1rL6DmOuqfukoueE8cXDQJi17N29LYy53T6tERtzU3cnN8j
yxwZtVdqJ1EgDe06lPo+CRqnuypZziZ6r89LnHatW43SuTHt4jFooANnvJZsFXo/IkYVY3wUr7XeBYhT
/05hyXSKgAqKenNbBaeZsDTFF0aV2jMCYzyxWxNItiIIRePKM5GWPVeWqMubeJ2/3xYD0U5MSeTWtIQZ
bf3yKsW0BJwGsSY5MVpwnIkJa0A+ac/HIxF80a9isWZ+EG0+Wz+m6tSEQbLjen/WXULcX80HkPmhXPK7
GaPuid6G6fasueJ6SYRSQziFhC0EfRaocZQLU7FSESfmWUBdwbjLG4PtYMLzBlzoWWjPRfbjpa4J4LfT
rDFE5lDORxdvx4AKEhhiNn399yEunOq85GXUGRRh27vwUwQBFaxkfDDQdvkZoCvXd6R1Tw+FRIxcPvw1
MScgEH5WxDNyWU+v1mp/MRwtQUmSDIXdtBPhjWZGPWiSlk9xXcFYSgE79TzPHZvzcZw0qmhTKPwuUhMk
EWIDjk46fyegtmteP/303/ah4x6POj6+Z/T7JCZwyf2TqOr0vI3Ol9cnLWaaOZT3mKrvZVisXnpdnraI
Lpj0f5W4dqRSYJMYlUAlWiwCyWxFVDHJ0VHQg4I0ocUSGIAEYdVJ0ZgGM0LVawX55mhvS7LtrbUFYQaz
oERBrSeWLPmCMhXUEA9qSFb5kySuUf4ImhhjAuGWNniUilHi2zzsyXwwlcFlCtXfj0GL7kswcSxVM5FV
WVuvq3IhVoxPqwfq1FJO6h0jW92010WuJS2bMU1/qht3NPgcx2XusaoXeS3UmEwJEk8YEq5h7raeDzu6
ztbtSEnA+fd82o+xowULCk1NQayrJLVzhTcoYQSCOFuLFgkRN1X7kpTlYYgR+vG8rfvtBKswJI3ZoSLg
DIIgOiAoQ4y+c0FX1thfUBGsMV7Cp3cz6fekr4i/Ngp1AboouCT8pyp5vuKd6Q5NXCUyDhq8NA16oVan
gRXnOU+BrFdyccK+S2eSeq3FtZodEcWdUhJWqSDgcYt83dQzG5U/tJUIuL0+tpHos/EWjFDhXZhC89XV
Nt/11fhrXrlbWbnmTXL9q7ScY9l9a62a5bamGGvZSIExNaw5eH2YMGEmwF6zw8RLwj2bFyMGXS0Oj41V
tER9f/wqqBe8hZZQMiItJH2mFakEgWgxphFkK+gimvleqNfz02nZ8XK1BXr3AT/hhBWwBmscKlrIHkUk
2OJBkmcwr3DvqcRRxlL4xZPkd6kTNkkC9ThEJfkz8dlqaahnsLHhUgBGt2MY6IxBhXZtoZiV99sWQIyf
ff8SdmHrJVrRlxZM0haaRXtoiQDXkrDGJnd4AK5B+6aNc9hR58FFq36n5qANIZdfzCRm6GdxyGqumJHE
z2j+ULWt1muMtZzPNyS+GifWRgbiNc/ouIruZxdfrFwHYYkKYAPW4BIKH9R969eoOt+buP5cxKGie88F
zUIUMdm8GIahEIgGZPBSefD0FDUVNb49GTLGYAhxRKLoYMJoOJyoF8qCHycjMGhiFFIrYZlJCHRC5lLx
wlKFyxhAmoqC+EvVP9owmrhTwcPTg0slJZ6U9MDWktRKS84mSHm5H4Rq7Qt5JpuVmEAWuQxXyKczz3WV
pK8Xf+5k5spT0jJfV92epH2pMZXtadNUAXBd69D69uKcCy9lJq6Y/j7ZbGuzTN5ftySgBXZwGciohZpl
pGkrzlAbwVnY6ZRr2gUZtAM70HD9yM1rJjDk2H+TMLRxkkxQEIIQlajZFMD6lCZawAJesJXvFok9nMvL
cowvSU28DV1KDGea4BCIt0WaCK0Uc52IOdr8GhhgHDLj38Jo4PhewkeBL7aU0FX30zkt+pImNBCwTSwo
DKJpFkBBqaYI/qtUPJuBGG9nBxzBloObJX5UiPxNWedy6XFXqffNItdow6VeTC+wUpNRM9EuaBkYNMK7
pG2RybjyAtQyLYGUzCYSR6WI1O/mTI0P5aPJpnD5Q1ptIpdoBtGNF/rfalTBdm81ArXxfcP1I42gxgg0
aHjG5jECGCI2EOEnF9D/iE0kf71W/Yk2uw3rfqjiBSS48gUzDAh4mx+vIYgIDJ4eDd6MHiQwlYAJCIVm
EVlCse7SapWagXZSLU7J/wUBKhPMPHQ5Ny4uLdJMtHHxJmM6daw8L40/2BiDqBacKkUQNUpC4d4qPX7h
2aWXSaP6VjKshFXWIJ4zuX3/zMAkhADUNdK5ZBLlYU3I4GgO54nNidSkYOqWbXAPVXFQTqcdfrsqtel1
L7wiWECmb60VgEnVaHyh7L4uT1+hGewoJ5U0rGZBl4y/Yp7lcystN2ixo+cUAqfiubUgKq8fmfulZhul
r2p6vlb3mizxNRJskP3JJM8CI2kcFFRVaeuRvqIWL9W5eG3nTzQ/lG0IZN+iAEO4xiQzBhVv0wt4HcBl
2z5gAMk0t4JoSbH149Dcjj+y6u3XoamBQ0Mi0lZV1gLxbafLiFb2X1RSUuCSxl/iJYUn39rQLQ0AVX7u
KKdjYk2JZlW20ATD+8lo0ZXM7hJhSumUaXo/3ZGd35t7KwJ24/M2zLCUdzdjPtTgn4vzmt6hXnxZYwtZ
oVETtNHmjg1F3CQQdvg9YwTN9Y1GYMLv1hv1DDGJLUkCl7xPRjI2MLjSjg/XAcZJKW9xZvDMZ4geKh/y
5+MFDM7FSAcNlo71TYb3cho1hEBTLtKP86Z+yAEQiZhAZAQGay2VwtisR8HXCx7/WDGTUs/0zCJF/wU2
5O2Rsf3a2vwpSKtYPWmwRFGnPqS4RCNLqS+V3M+rr7H1rYl2l29DR1wteyNcca7oFjkL0RXPDtxYI+EX
7xIvG5kixfBJvtdSLsqyXyXRuqyaVoJam2cUoiAMyc5OXPu4hpvANt8bbbHSEJIENjuvLwz48VNLg7cN
5oqNFZpc7lWc4WZekjeoxghEdvUh4FGmeSZkgLC4Vtr3lGa9KyF6tsBIptZr1KY9Mhw0bKVYSlkZiWp7
VsNBpKDlTOexHx0TXCGZ3Ri/oKP4Tmq8QWxeyNF+lAT/SxgAH4KoGU7Hw07ZPomRfaoRQc2YQvkitpD8
/nF11hwIJiUS+TuiKK9eMU184c83NUGZMkffWPLaU9SYQvDGVW5x4kKkdNnHYhnGVy7cW/HNfFOuWnch
zrKJmL0GUV5ymMvyAkrpPFwbXdzdN61zOKIDKPUlBdmGa0rVyYBLEX+2aj1Wqbc4gkj2fW57M6jnBS1G
MDTXWy+BtcQGAKwL+m6LDXjwwIb7hgQA2XRffL6fwfC8Il5BEW8Kqk9iE5EQLxCnQv26E7LN76KJ7lKO
gIggAVvYRkxNDQl/I9NyxVMKgdqNuEMLHCREMVgami+Okc9pSZfYQ+Fvj4RSEn7ujWaQt7yjXU+jBVYv
Omsjwm8KrwKJPfrLvRpV2lj5Tx6VGLWnNrqzAotLwKXUt9LadBPaUyUoW3tRc5ul3Rj+xExH56bGIB8m
qscNAZs27Fbr0RS5HgOZepfIVNxkstAlKkH6quM+XIIZVFnmMb6gWqjFfZpNA7OjvWhQV5hW0QeZxCyy
j7/GHvKcqUSlbSzRWy+PBi06KTHRqg99SzZ/xCvSvTWeIfkBhYZevEv5HpJMAKpGaS6qRt2KR/tNirfy
kl7wrFODqiVaxwFoPZBCXJTRx0+IvGuLPATJX3KDJuY+adyV6lzoy1HAqkdqE603Ut83HRZZ0C5SQJEJ
sQOYdN84vbXgnlriDy51uxzfbKb7T7bof8FzsOYS4pwgxPq81n81vFtD8NoQrxjB7GAKEb22ph5vm6jh
8vvSM1pvRlKtYyWo2k8/iCu0/3xDTDq1VUgvuNg/5ypGEE20CiOIFlxYxyrAYMIycUEjCZQ91NiAiASz
wHfEDZ5iJagSGiYzagKDBgwtYAAyBAxABDGSGGlyE2oQaOIwCkN8dzMgougQ41FCv61Seqj8/wMuUdB5
/JvcgFH8lx6ASsoWmkF0Uubx1sKXqZU0lLINqO7x9CXFhZIMm8zldkn+jF24XWpyMuO1/iUBPfFEAfAZ
k+HVFA6cc7Yz1uGqR5Vl0K6xEUJcptT5ncVYph7ntipzqT2Kc0aaaVYbvAmlLKrbHjc3bW6Y5Mee6kMe
g1arkOmLaTWDLOFryVsL4vxlfFrzImvsck9PWQ7GQJqqH5UXaEIbmPIWtNGzE6aa1wNie5LXS+nFKMY0
+/lD+xSaQKExRlprlPfxwEfJ1wxLV3LN2laOHZHQG/8IE2Apjap2NDckZvUForU2TFqG2bw667GCHOCT
ia+sJ2Aqm18LsMH3wybJb2sVsNF2TUB3g5yl1DI0RC9ao7ioHTiX7EpLkI7WhrVhCjOmyc5r4ooGOypi
54/KTTAmfm09GpIJRPXL2Oa5qyYuk7a8XRElWff1ivp+1u78SZt7s6Sczl0YhlC5R2MkXO67kLUzabAC
P84mYzoBdLcJLLD1sMcIQwlaXZzrcN7F3BA7kI01EwMAwYTron+fcF1Yhzb9HjCQ8Eed862pR+tjvICa
Yk4EjLiECcRl7VOCwzp3Af2PA2RcwBRMMX8erRSViimMGITESMAdk7hbPoREoZRalK9PWGdJ/KUJVNqf
QRUvmWYMQEmuvjQKbY+0yp8e99Y1Wv7YxIhhvEpgVgFUSlGOakDyVd59VzahhcSqbdh2sCflaYN9eMZe
SqXwS0n4I6LTSx6QGqgDe2S6iVE9u6uKiVSx+82H0eKRNF9+SlubPT4/fCmM/Wh0+fsmvAhlRmcLpeCC
JG+el3zqpfAr5GmaCzxOVUjvevIKXVUJYb/U14zWQyHpFTA1TtBqVyIBlYqaAF4bUS17PUGtBaGPp8Nj
XV11baVHTMxi8K0lkB3vf/QkFEjWmkLtl2T7W2NRDWEsYgPha0X4mdbLENEW7Q9akZq6d1HKpfoFnnNr
WBeeoG1xuYIJOWxhwFOL0fca7hMtI+MKc6FcpCnE3hOR0Ro9LmPrR7SqmlTTVA3ZWF+XIfozR9WJM+Ff
VYc3Ry9Gn/hQPEp2VF72ue+722yBxfqrS/7xeEzjDpEZWFP3IYGKieC8KqAJK4hsvRhniRGIGdWPGIEJ
jCCadcnmH2JcQO0tcEMIxEq5BWF9u5B3Kj5Wf2iwiuwlCPECQ9Tkwni4iAl5pjSEIDoRvx6jTW/MgIhJ
3gFvAng9NGsCwpA0lugqNP5fkRw1pQVE1tEV36qPk2ZUM40+is+GAdcMD6TfU9eLyibFBKp3uUlxkzYx
3FPEbxv/abqwWoRFbFoI+klL1gYCD8E8GtD92CdnpGqzLC6ixXOk6FPqRcRBLgHEKrMMDeG9NrdPQIbH
b4itmFR4HSawkuY+TIaDG1LceafZ0f+puyb1yEvQ/OoS3aEVVI1I8zHpmhOX7sIIogY31Ve/plIMViGp
21j9rA1wiZeAxqs2XrNR0CV5pY6cFSjJO1BF/IX/+fscIqbOl8mOfq4kYCoQsLhGwv8iE7dBJQu+f5/K
X+bza8j/z68W++HzlDMwk5B0LfsnjApwpHkM0tnGgWjVlCCRk3ZuCp9zuDcGahTqmZ9vzepZYZqI+Gwv
WxC+i4K/9BqUfn4XbDFNBoR/v6SZRHdZXf/eaXSplJrSFEk2odXxbGSYl8EDwfauMh0pitnkt7i6rXgk
12KMxAv9iCY2Mk2c4fHO1g9PPw8uKDxmkk7doPkdSksh4BhmKFSsFE8gpICfwflSd2E9DvE9nEsCQEUC
VkWS2C4+yMRswLDagnnmolBqIgiNaAKqNWidnjhCTcRBMJiwb4CnMUHQOI4iGFPGCRTAoXjswApsY11A
o/5EEHhl9Ypa+vuj2/VD+j5S4xJ/qidugviBSvJ7ZhKJP2gGkariuAXbxDS2kgfHGu3AeAwigf1NubDo
WtMyjDfa+oV2YlL4cfAAFBw1yeQGrJsasVz1J/ymtXbgX89Wbdj4XAhFTyoOQ8XEyh6YCJZm8LM0Z+qL
63Dl9rdmxi8Df/KPuwrsVE2Xo1E0WhblmJDI2QXW2tTN2EeGbHZoBCnTOUvf5J9PHoMdhVqCNlCzqBHA
kB0HUaBM6G2lrR69BmVNwqhTaNFOprSChtIfLcDhol+T86rZDoq9KDTubtpj1Z4sorrCy5sIythIMHVt
QGMsIi6rL8YkiTteIJJeOr1UxUTqJJz0YlVbxQBT0oFm/ULrK6N9rxNt+hzrsKhM2YcoqWuSaqPshrY6
LLXEzMzUpHsT8ZeMrHntHVkBAeibFt4GqijLOAKmvXq4QvgXCz9HG1dGoXeTT1oDWbvweqCp8bBwz9AE
LWWswFNjG9TkBg32v2mwmBCJFyTykCItTdS2/XtoPl/OToofMLGegCeiISXtxLRi/yQzhIi96FEZ2iza
rAn4dReyJQJW4DUB8biL4nNmEF/1lxgPYpJ3IBblE3GJCTmJ6nmkxTjnbWGSqEGUJkCzpsbSvyRKl1eR
1r9H66Qkft9gvZLDsBaBOsG5mDAAG1TkNP2J1ZaJPJ4kY8ZgPB/DkiWUN6uls9e4NReFgGyWWP80i1S7
dtXSvX73kb1ejXbLuGTy80jtT8BkINq0j0KRwgxV0IefknGyjhb37epVbHSMFreMK3yrI5cnHrhbm0g4
B0XE/IT9PrpHMyPIV2TzssUIAmRWtd/a7Fmg69SiD6ZhqSUUc11qA1E5SANbF1rRpAnkliotWvI60uZZ
GrvXhsemi4sYA8aXTPY9fOia7xNmQPZ3R9PaBlNXpBziKPlDhF8Mfg+aQDkJLbg0GSyU5kSarLea+BMG
UGXXRMMiIihBktsAJGhWGFPwdyL0rFL7c1XDzdoopipWR3bOS+PgLTEhqipeOQrTLdX+FM9dLoFdqvsY
6PIPKCYrvUg9vuXsjme8SfzX6bsiY8i0Hk2SoVoPRYgdUATShauiR8KEyju2SV8bGhMjzptxPr7DVhqB
eM2rwAickShqQn/Cc03eq8/70Yfg7VGPvkd3a6jgo+KDqZK56WLcwlDhS+JC/etQ0SfWA5CCQxhThFiE
SD+N+2towASaiEEGL1Ct9RqHG1wwBUKtzKSJZ0yusGin55BWAwi/7DQBddxA+qG4TwKQ4jUBre4dE3+t
3gsm24CNfDFRx5M8xxU3iOBItESSnhcTPVzZFcTkDRbTJI3edUz8qjqOy0+dbFTU8NcSt5GTUVvFl2aM
S+bnidEUzGKS8CeJ+rLjMg1lhw1fj2JtBjTmaMUMEowdmIXk8cklSaRpKInuqkWXgF+pGNCoX0kBKKtX
l5fVxqMX6DGsuGRGwSSQcgUXa7vAlLR6Rk00ghuHrRf+fS+zgpof1nSlfSqTIRQJSyvK+E/WqWiOkRtw
tHiEhFyq8YCCpioDWaWwOSi/qHCTByj6a8tdb1rJT3zpeC5FsGkenfhrI7krpLPMK4gCPdXbK7K2snJQ
SH47SfwmZp2pq0otY6Z86LFCTEs0Ozz2tmbVKQqybLpgONOEXzXo24k+810RhNLiFtP9u5ydFIMIBTMw
+WtU2dVHsUXfuqgJFaRMAs8zthiwBpc1UAj578W4p+uDxtnGEwxx3GJAlwnR9Kly0BDseS9pNZrgzkf4
pWzDmLcfTQITHLKpJmGaPECzJlBU/y1H0hiPCXhNQEFCyKMbApgfcwfKHAePZolqSkwbXIhvUL/eJAZT
VpGB/v4pvK9xA05cceVG64W6WVXyqTCjcGVD/M0Owi3yn9qvzV+SsZ74hObWpYHCxFAW2/S0kZmHxfri
FGXT1dIqfoqrY+dQaN1EyogUYJiuEASjSsFVEdLA+CJfSgzMBfRjZzhuxmAa2I68qXxd0XkqAag+VSQs
uavCjwo3wQgaMIXANNlACIvHQZqTUWmyVCmk1bRc0AhaICNkrOYIovCYYqXGjhXagIv4xCQ24KV27SVw
+V0lzmKjbVSLJ3sH4v0eGEy/ZqGUVPuilVzwgqtYdD2h9dVd+UsLEKQJTENCsyJKJCxq4aWLLkf4pUVt
c12AeEQBmEVF8uiHdhs7thjHGBHncqBAeL7/nrH7iOi54CMNGknag3CH5A8SRbUBNW1xvbrQXkFkVRzT
rlJepupzkvyp04X7suraZVh9dDHVFXpS6TOJNegnFo2DVkupsckY+FWbMjJaE+nuIFFbBlu4wSaYvo3z
IRkzuLZG4AZQSaZB1AgGF9Zvk2tg4lgEk32IdQiG+ESP7pug9e7yEpggqIdinJHn1QQcIjbk+ztUNdTB
KDCFIWIvrqgV4chFSeIuxrpTppdH3KN4ah211vpooqSQpFXKbjkI5WyFjyPYSQuOLHUb+amlORFnL6pF
wASKXqMLWqH6/kxhc09y6diUGzVPiTFMHFGCSXLQT/exbrJlcAHyMviFq142AhOSX8ZVaSPRlMU5EvPd
ge41kjXddwnPSdlpRGA4PstL1XrlRKCzbj59LtdN8dnFjTkmUPrw4Gb8gwAqzmfJH/tWawO1XJrCBiYM
8GASGMb3RVt8rAnUc+S0bbP+Et/Zu6yVKKxVFLlMKZXJj9UxBgGTDR5UzF2Nh/e0JmYBBHIb5be39f/z
KEcBmGuZxYCYSPzBUx03Fi0z5UIAyYj4Q6MZBSgiDzVKfk1uNdWiBDBjf75qSNIpCc4pRitsORFe3vip
tFEHTGHntvNsW8kfPuTSB7s9EeA8Xyj2EYjV4eqiooUb1JkdLU2tpgLAi0cLkJWw2GRqdgP9RudMIShq
8SExeDHnPLhaI0i1p11WtQQYduQU2BacdY4YMqpBhIuAHaK3wu99EddmjEcwwSSo6g2gKfchKRDluCVN
QHAxXdHlfnpnmWcUbigEYXIy5GSuwXovU/IumLBOol821hO/JhZcRQI+3+EnLwZaTq2Z+LFURapqKFpd
UbUr5CDT9F7xe0TAlUz8BQgJBbmkLcfyQysBOwFEltdpvTIp3Yrl4VJjtnmlIdy6O+Y+mQeN5M/D01b4
8QxBHZ4xFTUATZCwkY+UQdZxGnb1RNjlTWYHTkJiLvl7Sc1jl1IW8nUjeb7j84rmWy4h+R1qDz07bHYP
0pnYv+oOyX/CgEvzrEaPDFDB9LrN3v+rNIE6TsBpdpe3MSeNQtAc/jkpj9NN3bAbuOrG091cbCjgZIgL
2qZY7SBiyoq65SQlCMFHAtZ0GhdcSCRI+but5I9dKQijLpuTiHNS8hPsaw2JP+F+LQbHFNF3CTxT8t4B
MYY0eQtiM1Hih98LbdsDx9bnkIcIuHJqzQ7JHyuRqdqMmBPxCJe5fbF7ku+jaSR+8HG3DDmtu7YwwOXM
Yepza1KVQ5QWQnIFtwHk0WwIY6jqTeTCLNNYqKbBAvx6yqH3lUZQNF9K6hgqbUKsvz8dzdgYcBXYeKjs
M8QZTnn7LjEBQRtNgOAtE2I5iCEvQL9awt6CXhNwhSbg3YMmYFKDC27MqsZgwUBMYCDO5/3bUIszj31p
9u2O1+641lFzu1objKPtRouhXiR6aZuljV/JhtJ+iJK/dX0p2CCxU3RfI/mr/uxa6NW26EXjGgaXsomK
0+14TxmZ/b6SYpFAUzHoQnupDdLA31ozoFGDY1KRGIz4tOwYHRoDBk1I4orMfAT8l+CY5Nd3vQsxVFq6
mv1Yqg+d3mWlJMlXOrunYCfJO0ulOShM9jCi+URcQqVGUBJBktT14bUB7xbbX8x48c6CWwcG21mGYeDx
yYZHj9dsto3W07SVNQ5pHzBGENIJN2lYZ82s9GJpRSYjmmowtoneTTyl/nMFAyhQs7AFseeehQITGU0h
aX313PCQ8MGWe/NpRTGJyyWajT6hKclf3Re4titkeXuvMXlgA4ZWSeGJOPzyaaaxl12Zrqz5cdmlGSbb
uUL5tvhSNcBQuLaqfQw1hyA0Nr+vDVCwnBR1GNqycLA3Y38xZzYzzGbCftcxmwuzmbCYGeYzizXCzPq+
WuO3eTdGQpxHfBGPb4ixoRSD0vew3QxsNo5tr2z6gWFwbHvHZjuw6Qe2vdJvHcvVwPlyy3brComlDeqf
ToeRlqQ2S1kdU/I1me5DVl+MERmi6u21Hy1i6+N69PNWGxXOOToxfPPVY/75H7/A7317n6MD5eR8xb/9
+Qn//d894d5Jj9HeS2wX+hQ5aarSO2A07t5bhPiJ+ArSpSYQ6Tsg+KLjLEJ1PsXXhv4OUaMJmoF1HhwY
GHxxndifbVwbJvSjNStHww9cwgCuwgUq7uYcIyZfHa3d3/4mjeTPX7R4kh/4ugFTEn9zr+e2NYo9rjE4
ZW+1krmU+MWFlcSXYkG3MYxFmq2OT49s/jbuvpL8uZCqxTCfCS/cPeatb93kjZePuXV7n7s3LTf3O27f
nHN80HHrcM7+YcfCCvudYuY+/NR2gnQgJrjl1IETJBasFP9OuhnYrB3L9cB6pax6x8XacX7e8+x8y+nF
ipOLgWfPNnz2YMWvP3jKJ1+c8PjpKr3eOMQ/PrMcipgTJ4VbPhrW3qWYqjw3qn905WX3a6ERUD47i879
fcuf/vAW/5f/+pu8+qNDMD0sT/nufy98/PkZD8/6oipag0MU7VSuwfKXESBaU1XGeOrfaqWi+a1tJSle
BacsS4JX7z4+dmsAuvuUxhkoUulS/fPCKq4JpAzxjX8D2p2aCZIvPTtMdrLba8lvUrHPGukHMCZWhUl5
sp6RFll8Wqr8qVqsoK4YcBOviVhAeIat3yupq4nfaNIOymVRm2PB5k+hEbXkN9Yyn1mODmbsLSzzuWXe
CTMr7M9n7B/MeOHWPt954zbf/dYtbh/POT5ecPt4zq0bHfvHe7BnoZuRVbUIFwX9nQ2wQeiBnqQm+ZcM
GrZhD8se++Qs85mXguc9m4sNZ8ue0/MtT88GPvrilF++85hPvjjh2emKs/MNq1XPdjuw7h3nyy1n51s2
fQ1QevryROZxvFAa23izRkxhs7t6baTMxoDi53CBoF2mpALvz6eDu7csP3hDePV153EazmH/CW++9Izj
vQ0wgHq/fC7oo3lpFja8hOiKMocAHBp2+vGagOTIPuPnw4R4gqQJhMhAjdWAw1yIMwEPGXDEuBMCRhHr
HVySm73jmGYAjdrFrosau2gc8JF/y77+eNiUwFBcVRCRFhuNMo6Wc4W9POprgbgWxF+9WplwU/S1JP5K
6o/BgdoWbq8zFg0bPZYMpBYLml+tkfyzWcfLd27w5ms3efP1Q954dcFrL+zz4q0ZN47n7C3mHOzPuH1j
n9nCwmzmQcFFJHiAeXhuJNp4bIE1cAGcAGfhc/y3iS+BXyIz4BA4Dv+O/Dkzh2OYHzvuINxhy7eAP3Q9
/6W8hTtZcXK65vxszenJBQ8eLnn/8zN+88kpv3jvhA8+PuHxs/V4ZSXVX+q4glb0gWcEUuJfxfli2H1B
TklrazFb8ertNTf2TmF+BpwDHwEfsHx2wXJ1iLo9rxXF4iOp/Wk038doOXIZ+biKzLjrhWt2Wji38QFa
4VC776sPueL81SCgTnEWzXZ74fQA4g4d6crA6AqCK3z5XuMM2oMrfJdFgA9Ukt+bQ5H4E9BQPC9kgmvW
QCrJ36r8sbBGYetrgWEkWz8Z+43Er98+gVx1GG55xFiH8LsCwQXUWcNibrlz84hvvXqDH7x1i7fevM0b
ryx448UFb7x2CHf3gEVoZxb+xTHbAivgKV6aS/EvDWa47gI4BR6DewbbZ7A5heEc3JK0sM0c7CF0N2F+
G+wt4A6eEeyHJRSfEXOEHdBhbnbcunnELW4Ahh+4LX/40SnvfXrCL95/xj/84iG/eOchH31+wWrdo854
CQkpsKzSCKDYnMU/chhiTkcQ0SH7z4SqwG4IJdHt4FfCoFijvHK84lsvwyt3ljDv8UzvA/j8Zzz4TFku
3wI58O+kLoija2oCzjGEStIyDB4UtLZwogkUMf6KhOrVRY1BfIWi6P1IkdchK5HBm7c26D7ORFUzMPtY
/2EyVyUfz+EFKI8CpaSKo5q8R5OTMs6iF50ZYixmuGhNy32906Mbyd9EIFb79xW9mCT+GMFWPGIk9UsR
r63GUV87AikLs3GKE6vC4f6cN1875HvfOubVF/Z54fYeL79wyGsvHnPzaM7+/pw7Nzv2bs3g6BBP/PMw
dR1ZtV/hpflv4P67bO49496jnvM1Hng0ElRqBdkiugG3xg0nSH/O0K+gP0eGLY4eT3oC0mHsHOn2ke6Q
bn6MtQeY+QEq81BWW1A19DHXQeDlFw/Z/95NmL8CvAG8AuaIG98+4I9ePub7b97hX/31K3z00TN+/eFj
Pn94zheP1nz0+ZJ3Pjrj8ekmEZkGeiFqkVFItFqfQixamytCO+8qgyR7Ztbx5otb/uy7lh98ewbzW8DW
t/f5ks8ewfnKtUiMH5EkiK/QBCra8Cernaeb5VOvqRIPMMUO2nXsQEUHZRuOgm52RH2GY1QPoOxXArMi
gzfF3+Zaytp0wd8v4QUqWKxwz0WizPsAhjr98cWeg/hryZ+JP0r+SZTfSZL8yYdtSls/982pKTsdvAd5
1IapRJ9g17V1To0RDuYz7txe8HtvHfMv/vxl/uyHd3nz5X26u3tw0IEGySpRBbd44rd46R4AtpRo/BT4
AN77N3z49t/yi1+f8P7H8OQMepfM3qQZJ1BbC09GNIXjMlRF2SKyRbpz1Dz0IR/Wt+Pw7VoJ7YUhmHfw
5uuG//SfvsrxX3wf5qvQ95v+IfuW/f0D9jnk7nfu8se8AedLPnn/hJ++84T//t/e4x9++YTP7684Xw0M
qmhAxZ1G29kPj00LNMxDyNN3wU3g6/QHVdMZeqvcONzw3W/CH30PXvj2AXAX2MLZMedP4NFTWG999F/K
Ah2KXbFVgiaQd/LxNJIlhA3AZdQEGHwfYv0Cv16EssagADZEILpqB6IQHxDvi3Ukvf81rV8/gSF2oKD7
y0yFSzSAyEqKr7U4HUu8ne0UNJHORsZQmgwue0Fb/6r67adyhF+NyJaSv5XyYxNdm1e7JDowXlpe0Gr8
O18/EGcIPHnh1oxXX1jw6ov7fPPFBd/55hG/850bvHhnjzdemWFfmMMsELxE9bqU9AqcgvsEPrvH6uSC
Ta8+PsCdsD77nE8//Cnvv3fCB5/BF/fg6RlsNay/QAe98yxjCO9qC6EqYdqlmOtSemKgl6xtWoHOZJTB
AosZnJ87bux/yp9cXHD88hL2HrCVYwRh70YHrxzhTYkXgGM4POKbv7PPjeN9vvXaLf7yw6f88r0nfPz5
OY+fbnh6vuXe4yVPT3v6Ppd4k4R6l5IxAskGJ/mXwQ0c7SlvveL43uuWt17Zh1uzPE+n8ODE+DELbkR1
OhKOuXhoPtMejhyrU96dsgzrBtMa3oUHZEZfPOAKEMAV/3Yd3WU3F0u8eJMmTTMJQg9l27Sra/T3F9eh
2X9jtWg+5jxpUPsh75YbdhzSMOmxUGaF9mfJn3obKu1kDcVUxB+j8EZ+/UJTmCL8WJOudGdO7YuZWlWL
7YQ3v3nAf/JnL/CXf3iHH721zysvznMk39zCwQy6SEKzMDVzMni3xYN1n3Dx87/j7//hH/no44c8Ox28
F1a26LBifa6cncP5BSx7/1rOQW9gOcC6n7N0+2zYY+jnDK5jcDMwgdGot5PR4B6EKn5RxGsfwhrEMbcD
c7tmZpfsdz17QV2//wT+9qfw/sdPmO/9Gwb5KYP6Peu/98YR//SfvgHf/x7wu8CbwAHMD7nxLcvvfesm
v/fnL/FfsUGfXPDBR2f8/N1T/t3bj/nbnzzm/U/OWG5ihJwNjCDk0ZdZgSioJXoPD/cdv/fGwF/8cM4P
v9dhX94PYx3wkLMlj0+Us6Vh21tvb8cUdzG+Om+MBKw0gZhbQFBJBAZvQlinYKTYmUhxJsc9uOgtC5oA
ld8/xgcIqgMiFmP8ew1DeZ8EL8fX5QW45CiVgAp1baRgWcu8JKBxG0kvLu52o8bcRDsV2l8L5lGNvbSE
i3iA6oomujB/1aJtMxHH0Lx++DCbCTePLC/cmvPGq/v82e/d5q/++C7ffnnBrVfmcCMSdiT4GXCAV5Wj
xF8C5/DsGSzPwJ1y+vBjfvrTf+QnP/4Nn3wKJ+cw9P6WDuiDVjio/zx0sHVz1v2C9eyApeyzdnushn22
csDGzHEYhC4zSZuEEgndCSdEHcatQTdY3dCbgbVZcygXqJwzdCucrOhXW84+h/fvh3aGMwD2ZnD++Ak3
Dx7wo/4ZvLiGgxNYHMHM4L0Nd4Fb/nm3V7x565SX7hzz5qvHfOflI378myd89vCCk9Oes9OeJ+dbLpaw
HYbCaxDCplWxxnDrxoy3XoG//P2BP/9dww++beH2IZ7JPgb3gP7kCacXynrlQdxWyLodk195B4LqXx1t
9ahL4gOqmP4mPiDW/pheeJdL+l3HJQwgSuoc6ue96tI4NQpUtsgXz8YQ6V4g7bYTL/EmXAEjain5s383
1dyLpJgi/GwIvcznGUn+rPIbDK5E+TVG9AV8Ie5EFHGEpBDEG2wVkqu4oIUEAGhw7M0Nv/s7R/zl7x7w
B79zzA++e8zrrx6xmM9hJnA0IwMrM/wi3MOj6vPQ8glwHz7+kL/721/y/oefsd2csl2f8ejxIx58AacX
0AePneu9lN/0cMExKw5YbY9Yuzlbd4DTjp6OrZuh4nd4HOh8JdmmlELC10YCxcdWDLKP6B5OBgYU6xw9
PWYzYPs1nW6xsmbGik7P6Mw5c7tkT+BwA5/cg//x71a8/+HPmB1+Qbe4zQu353zv9X2OvvMWvPQXeAZw
4MdD5hy+vuCHLx7zw9+/w3/zdMkXDy/49Isl7398ztvvX/Dz90758ItTTk42flVYvxaHAd54cY8//sEe
f/R9yx99V/nD782Q145gfoBXqz+FZ+9zcfI5y3PYbA06hEEwIW4geBuMiN+7L+0j4FWAyjvgSJvPuMGb
tTZ897a/+tJiQihTp55HCMRtwiIWM5iCsYzoqwTkoogyDNjs/a2OMQO7UgPYad5GTleXRamIZrqhWhLX
EjYfpv554ktsZ5xn1/oFyrKBY5Q/RxJme16bdyjDhQNjSIZliC03wmJu2Z8bfvfbB/zLv77FP/nRMW98
45Cjbyxgb44n9jhpXZjMOV7qRdfeBayewvYenHzIz37yC/6H//HHvPPOks0W5rOMNYmAWXgB44BBLEte
4nS4y8XmBs/Wx2yc9YtSQDUWy4bRpBUZh9L8PJrOZE5ZjyUMsB1cELoarELFMDCXFfvmEcc8o+MR227N
k3M4ew9++T4Y+5D92UNeuQ2Pvgs/fPIFr/7BAby2j3c1EsbtyAc17a3ZP97w5utL3jw75wcfn/PW6xd8
940b/N3bj/nVB095drpFjHKwt+DOzTk//NaMP/vdff7wu8J3vgO8sg9yK7R/HzZfwNP3OD9/Rt+DGzTF
raimiv1pLEbxfEVtgalFvwsPqG1+U7gGddfDJlMPpg+9zkXPZwKUzr8qrkR9PjNEl1/kVD4fza/WNqK/
SfCJbzd6YsHxNOTZB7+sutwrEzSEqPqnzUAayV9mJypF5l1Mo43luFN4noYEmFhTDuqAZ0M3g2+8sM8P
vrPPn//uAX/0nX3e/NYeNw+FxS0De1GLiqqpDUO/jyf+g/D9MU9+8o/88ldvszr7gu3mER999hmffLTi
9CQIoYVnAmbmwbiVzli6G6z6I9bukNVwzLI/ZrlZsBxMqAcoaSjqUJLy8L+0lQcaD//0YUoQtqjk6yy9
mdG7GY4bLO0d5utT5uYEu1yykBX7ePjDrf30Pzr5hFc+/W954YWPuHG8z507Rxx+5y24+UfAS2GsLnxP
jzpe+JbleH/B77x5k3/+Zy/wyf0VD55uWMxmHCx8Qv3t44E3X4U7dx280Af//gt4r8QJnCzh6SNWF36M
BV+r0GLpI6AYdzJyDhfMCoiRiVkTMGGUnYvqbYGdOc07Kg0+iypWFPJAUk4EisFDVh0qLvjGfDuqEhRk
ZRgCezIa2iijPa8+nhsDyMdue2gyYIsiVqCAzmvi1zpwIQp8w+jcZDGetiZf0YUq514zJuCKe0e5/6Gu
Xqt0pMh1FWxn+M7rB/wnf3SXv/6Dff78R/scv9BlTX5GdgCbOOTz4h94t96S1Ucf8N/9m/+J/+lf/xtO
TzbMOj+n6w3sLcB2Hie0XQjilUNOt6/ydLjN+fom55sZgzOo2uTm07B5q9c7zDguKB4h6N1BDMWvDr80
c0RetuTymHusoL7TOWHNPpt+j87cwrDFypID84xD8xjpHjCXgdMNbO7Bp4+he/cDDhYfcPMQvvGNff7o
T/+SN//qFhxExrkNPTqEgwWLb/cs6HkB+G7SpBTYQL8GWYFZgcRw5z18NOPcL6RnZ5w+XnMWPKvG+rBb
V7zbKDR/sjpQ4SVIg+nPZAWgoZDkTYhfDHEnn91egefRBC4/noMBtKGswV+e9rWLAFmQcjFoPhVfiwQY
Y7c186qpEtsJC/DPNClRO8T4B+kfUV9CtpwW36PG4CLYoIDaYLfHpWurYp+pPVzAbuJzw7trFggvvzjj
h9864K/+8DZ/9vs3eOlWx/HNORwKzAa/1tR6bp+kwQIv9QWP6j+G9RnP3n3K3/34HX7+05/y0ScbVkvY
n8P+vgfO7AEx/ZuVm7FyN3jqXuRp/wLnm9ucbzr6fgh9LmHWBmJSag6ZQuxkdGrXCqg2C1HvD49z6flm
vVbUedNj4yzCDMMejj0w+1gOGPrHLIdTun7AOs8zFxaeLuDkZMlm+EfOVnt873feYe+1BRwc4IOLXscT
csxp6MNz4xx20MWgKR9H749F+PwAnn3Bxf1n3HsIy4tAnsb6tGkD4jzm5SV6luDOOYxqU1dAvHkkPktR
CDsSGYXBBK+AXwtDjGgM98V2Bhdopqz8o4QADVNsrOArGFvjs2+cGxv99hpawJfTAPRapy75rZC+rt7s
yksWFwi1Wkf4VKNM/G2LOXU0E2pbyUaTihW+j1QJV1oOlSYA3ntpO8O3Xlnwn/31Ef/5Xx7xO986YjHv
4CAQv4hfiwP+f2KDm+0AL31m+ECez+DZj3ny9of8f/7n+/z9z+/z+WdrcHCw52GDgz2Yzz0f2Sis9DZP
+hd4cPES58MRm2HBZrAM/dB4Pq5nA+ZDxpJ/CswpawY2FZil+JCK9za9UXyBtI075KRfcNHfZC4vs2+e
cMM+4Gj2iFlQjDY9PHwMpz99woef/T955+0j/uJHM177wWvwrb8GuQG8GJ5SLuVootni7yJ8PgzXPIHh
fXj4Pl88eMr9J3CxDCG3IiHxJq4IzZ7pYmfqcVxeKc4nDPi0nBrxrYqmPQp3eAV2HG269PNO+wQD0Eu/
tpGAUZlONf5DXrwh7LvXaAiRrDWJ4BpgIWX4VWwigv2TxmhVtHNK8gO4RvJrjeZHDCHXd4/VgP2EWDV0
Vrh50/KDbx3yT/5wn3/1Zwd89w0LxwpzhW7wkXsDQdOJmWfzENhz5M9tHsLTT+Dp29z77B/5yc8/5qc/
7fnkY1hvYW8P9vd8RF0382tq62Zc9Lc5G+7wYPkKD1Y32PSESjH9tN111ZHwQG/5ZwIuJfyUQVXeXDwt
bJqh6sbV2fNKAYKbcugwdKzYZ2v2EDPDyoy5PgazYQ5sezh/Ak+fbVmfPmHWw8X5Q164v8/tlw/g1Tdg
foxnrvt4Bht1kZjdGOMpLJ4BbIATePYe54/f48mTZ5xcgPb+ks5GQWSI+08YJznyr3Dz+S28x0k7cd3b
wYNMQ9ylOG4kVJgGxW1pt23nTEB5BxQT3P3KkOoRlIyicIc39TmuOq6IBNRLfgv8StvzzcdkM+1qpziC
veogq9wu1O6vJHXhhqsq9uZa66XkL8HCpClMVOhtA3/KhJ+9heV7b97gr350yH/yJ/v8ye/M2NsfYM95
wrdbP4Nq/cQ54411MwNziHdr7YM+4eQ3P+ZXb/9bPv/8PR7ce8IX9+Hefa8N7u3BYZD+s1nI2XNHnPcv
8GR9l0frm5ysjthu/KCasstFLIVt3i2P8TiyzeF2S5lYpWc0a5p+b2WU37Peh6WamNdBFBIVGhQi1YSV
O4TesNYjzsxtbswecTx/yH4o1qkOnj2Fn74DH91zdId/x50XH/PHP/oOb/35m3Dj28C3yHkS5XqJyzz+
toHVI3jwLk8ffMLZqWOzDbJLvctXouAq6Kyu2lzSwLRKXDnIiviANBYjpj3GFEZ5XF+D3V8el5oAJjkT
S/Ao5PALPugi1SP3tn+uhWtD+kRA1eO0F1l59cs6cmVbmyW5jZK63k/AhEShBB+EiEAbTIcYO64ubzrq
F2Lp9Pa2lyuJ31o/oWHVWjEc7Fl+761j/uVfvshf//4ef/CmYF7QEJY/gA4+6iZGJHYzkDnYPegO8JK/
g+0pZx++y09+/Hf84z/8Oz75FJ6cQr/1z1rsebBvb+Z5x2Bg7Y45277Is82LPFje5tlqQR/MQeNAY1SZ
1Atx0uwqcleaSI7xXJRH3HKtbm3im1S3xOWeg1/9esnMIGvMW5S+32c5LDjliHN3hJoZZvGAebdh5jz0
98Uj+Pg+bLcbjo5/yebsU24uHvDCd0/g5hoWLwaGG3MoIti6CP07Bx7A6Wec3v+MJ09WrNY+mMrOgj+/
6zDWV75KtflC4f9YVyDDHGF9x30DGq+A2lAZKcIPjReAsqag+hqDApiQKxCh2ZiNGL0MOWswZpcGL0Ok
15QBro00qI/EAC7XGHYg/nFNtSuqUQSSi3knuuTDKpPWWNbzi0E9E8qFa88lutXUv/x7CGhttthKKn98
ZJPH++KtOX/2o2P+4z895i9+d8HLL4C5LbCQlALqwT4HsdBjJ9AtoDsCbvjFd/aAD37yY37y03/knV+/
zacfwbMTWA8+Inh/7qX+fAFdB2uFs/4O5/0tHi9f5sn6BqfruSf+NG6Sa8VfOoHxx4ndgXZTdXGUUt5d
MpUlBm4q96GXEQJxB9yQdxAZgQsMo1fDwALd3MVg2Lh9jhaPObZPWBjFDt5O3/RwegK/ee8U6X7Ki798
yHzxLrfv3OVH37sFb70E9kXgFbzL7wCPu3wEw0/gwa/5/P5THjyBizUpscjDhRJiJto3K7D5yO/JCu4o
PsBJ4AOBMJP5IBPX75q6UE6u7ch1jmuEBl6jHsCu02UJaV+bLMsJmyP+Uuy/JH1ASs5Hjr8vdwBKO/c0
OlCO9c4Rg4pi1WTiV1K9/7y/i6mIP+UKJOdEk2OA4fbNjn/2Z0f8H/7ZEd//tuWVFwe40flovl5hEB9r
63rP0TsNDLiDWbT5F+CWfP6bd/kf/vW/5sf/+GMeP4FtUDkXM/9vbx9m1hO/E1gOd3m2eZmny1s8uIgu
vhzEkzaEkOusCCk4dSRGQ/4ywV0nZvwqszKBWJK1vEgcSUcIqkFSGmOsvQYGHYhq4zoerW+z7Pe51R/C
4RzLIzqzZW/fwypuA48ewd/+uxWq76PyPt94ybD8q1f4C16HV9+Eg7e8ecYan0j1M/ji73hw/z3uPdrw
5Nwvi8XMK25D2ALQaz0Wv9uxMiRN10OCBhM26gl6edjJZ1RtOMhsG5jAkJiAHyNfB0Cq6sIqEtKsCXkZ
Fkwob5e2StL8e4ovuQSA3DF5XzoXYOfx3AHJlUVZS/+SzRYLsNRQR+BnkuT5S+k0yNdr7eMviN8a4Tuv
Lfhnf3zAv/rLPX73W3DnhoMjB3PnJ2EgYEydX0Exr3Y+g3nhZz57yCe//DV//w//ll/8+td88QVsB5iF
xL/5Hux1oaCP8Xzlwt3g2XCTZ5vbPFrd4mJtPfFLxoljRbYpET5iB8WJhO8V1XdH1+bJGLeRE/ObxWBG
l5bXpHEPykRpG2c3uCSG4LWBjrPhEN1YupnArOO4e8yBuWBuQDuvul+cwXIFWwf92vHjm5/h3Bl3bz9j
dvCQ/RsfcvvWbeaLJXr2Nk8fvcMXXzzl6Slstp7xWpu1c0nmbWXp51zqy3hu5aAP95grb+JqJl6BEZOX
f825AMWcCqBeJhtxpcuYqB5Gea2pOq4rzI9CNWw2EE0rI0hgU8QNlIScqvcSWIGxwcEjCfjTEFmVJL+C
i6F+lJWBNO0CW2UXqpf833plwf/xf3eDf/UXM779EtjDrYfkZZNza4eOxF2MATv3RuRsL0SazcCd89kv
fsl/+//6b3n7Fz/j/v0tA55HLGbe5l90vmljvUJxsb3J4/5FHq5e4PH5Lc5WHVv1kjORt4HxIEY1vQT8
6umshf1k7OrkfZVkKeOEm8eVXcragLehhUw/RLMFKPVGCdU2HJnZOxUuhgVfnL/EcjHn5f0Zap9w1D1l
rwMNldCM9VrVegu/ehc+u3fCbHHCbPYRd24e8vqre9w4dlhOuViecH4Gy7WfOrHZU2u2YGYmYEoel3KS
dwt2odCFOm/b26AZRAmuIUcgZo26UAfAWb8mK6+ACqEQUKKpIdKIxB0zfEkxF4ATtd7ss05DsFIN+0vc
GnAo5umS4xoagF7jzFU/TF+aXIKXNNXaYerKe7Qm/qaBjBk2NQFd2W7GC2ad8MbLc/7mrw75z/4jT/zm
2HkMSbYhzkRB555aY8F9M/MjPz+C7g6wgM1jlh99zNtv/zve/sVP+OhDH6QzC0S/H5jArAulDQS2LDh1
t3m6usuTC0/8mxiaB0E0Bfpv51Yb6T9F/Nc5orSq4r0k7cZehqu6CA5Xw172w6TPSpYn5eYfuXx8vtJE
91hg/oMalsMM3d6hMxaJhTblKTPrgdOu8xGT28FnSD5+5rUpwwW3b1zw+BHcOPa1CxBP7POZTy+YRelv
wISQ3+zZc+zaWCNV+2tg/V1RehWIP1r0V2kBFm1lvJto6jloEL5UIFCZfRRYV5IKEdzwgTz+8gCdaBiZ
wBmTl6XYkSevkmAjFWq8J9ya+MuXrgMO/Q5A0Y2nFNl8rqkrgNdq59byw+/u89/8i2P+5Z90vP6ywoHm
/B2n3kB0EkJKFZh5PdTOYHYEi5vAXXBnPPvNr/mHv/83/Oxnv+DRo8FHbc18hNvezAf3pIUnPmV32d/k
6fI2909vcbbdI+5LYUqpG46RF15q4Ty+7pIjqAbVtWb6mvLHFFxZmGmRQ8Wxl5Ih5J99FmI5f0Hllsrj
4DUCUV8gc7Wd8dDdpncWlQ5kxvHsMYd2wM4DE9h6gFCBYeNp5GwJn96HR6e+3b053D6GO7fALAymU6wN
9feEgE5Gd2boYqjpZ8Luw02wYz0Xca2aQuVxEZkPbGAIz4kFRGNp/Vhpahh8xmCMTI0RgrE0WVsPszLb
Lq8DWB5dvntiqTwPNylE7Ghzlqm2dsTt7xzTrKXXv2kT5x9t+0T8Wj2zLXSiDhZzw/ffPOC/+mdH/M1/
NOflF3o4VA/qxeT6QbzqT0D7Y0SR7QLx38IHmVzAvU94++2f8pN//Ec+/GjLZuMthPkMFgtv73ezLHW2
g+VsuMWTzQs8PL/N6XLBNu6sG2P5S8yuHAeNBDMeyesRv15xXfHgEmhJVoAUwk/yGAeLREPVXikmUKAq
6FTuD5DAQiJLymfUwQrD4/WxV91VsKrMF4+Zi/MRhMYzgs56TasPz7zYhAIp+OjK/QVgDLOZobOKFYeN
OE6Bp3nHhfPJY6ZkTOH9Gq9AubqmxjWfbyKlwvpELmmk+D4OCShd5dc/rqkBmIn84mCzQ8hyKvZ9c5H5
xXiA0jnkr1GKLMCA4vs74srxAxKrwCYVv8QKFFyqJxi8AMX+AFXghoac66IHONifz/iTHxzwX/7Hh/z1
DzteujnAYUBqnRZgX5B3EmBip9ndt7gF3AY9hQ9/wW9+/WPe+dWP+eTTLc9OvfdnNvMuvtks/LP+VZzC
etjnyfouX5y/xLP1MX0YC4m74EhFfQU2Uh5yTYov7phSGS69YapoS7Tzc6PV0q6cK5oElhRwgocVg19Q
i9Yleg1C1Vx8ctGWOY83N7xtLWCs4ybPmM8G5rMgbA0MM28SuMEDhDFtWh0MCGIMxvgqO6bYKck7JzQp
fqlHce9FyC5g46sNxz0JXZLwDnVa1wB0kiS+CWqrk0gdfvdgn2Cd/f8uuFNj5OAQzY1QrcmEHYBc3AMj
rg3xuIitl87oKBjABAu7zlFMmFxyTdX6DrVpMpS91XB2/R5NjFZTCN+rmIFQ7sUa4bvfXPA3f33Af/bn
hjvHPXIc8tr9KvHRJ069FhCZoFqvynUR8d/zFz77jPff+Vt+/tO/56OPznkaCnJ2nbf35zGbL0AHDhic
5aI/5sHyBR5c3GC19SGgYxvStCwg/d0F5u86jBHKYKjqJt21j3EZCxBttTHuHPtdsYrkKC/38SmB16Kl
wqRO8yhZ0xUU5wbWm45H/THOKItujQFu2RPmXY8NoN4w+HEevBfNl0YDxHrix5kgdA1WylBokpPbCKEQ
qdf+8joODGHnQE+Pz/QRW9WkQY9+2tGuTraz4xkT03p9DCDFzjdZHpRFJkpjPMQDxPOlrU8BEeBRUe+2
Dy/gAhgTw3qLuAGDJDjZFViBMZH4a+zAWBP2DgySP1w3w/J739nnP/+nC/7pjxwvRjefxZfWUTz1ptUb
zAFVv82L2fdRft0B8BTcfbZf/Jx333+bd98/5/5jWPe+2908u/06G4AoYD3MOB/ucNK/yMn6mOXW+mXX
eN/a4N1Jpi6TH0eHiXbprlxSkRAI0y7eqcU14SYMn0uzb2Tz51VQ7PxcnA9TL45c3yHeHyWzc6y142R9
xAPzIqqCNQM37Qkz4ytQieK3PlP8Jj/izRUTPFXDAP2gzMPGSUZixKpgRIi7G5q4LVmkA8nVhp2zgWkN
/j7nG/KagPEVgUxZDdhzPLXBkh+iF6FIOMLlepGDzwWQSD9DoDGJIjfE2JppAp+I86yu63b+culRIJ7X
ubT82Ep/1ywq19zXPsBN/Nw+owAOs3dAKi3hhbuWv/nrOf/lX3e8cmeAI4XOu2Y84XdVEdbC6POq8GwO
e4de1PQfwf3/ic/e/Tnvvv+IDz/zSDSSVf6uy75mE2CFC3eLx9tv8KR/gdWwNz1fhaA2SFK3RVwVPHOd
w5hrXki0fdOjJz9oO/g0Ej5wqrhMI3EnYSTZNSztI4hYktTmXAESqjqWm457ehsnSme3zLqB4+4ca8KW
a8anasQK2t3gy7QPvbDeCNut4mags/zwwqmWPxlTCMBpr0AahfKSpP0UF7RNRJVnl5//MsF+2aFXn++u
asEYDfpY6ReSVMU3ewE0qXOxx97k9pqATQqdmeyXRrZPoQnQlPAq2o179vlNU4M9FS+Jkl8J+xIExUQd
FsurL874538841/+ieG1F3vsvgZ0NoB9TnyESUQzS1RTAso078KGb2fw6BM+f/tX/OyXj/j4U3h66gl8
HqT+LEj9rrDJerUs+2NONrd5ur7BZrDBuwBTs20ohHYkTpP96NN35R+ed/0IZreSEBiJc9EN2xiAmiW2
FB6GMuxXYqht3AEocAcptAIIG4iKIq6sTRx+FYNTx2o758nqDoezNXPj5/PInGPEwzRDaL8fSAVP+x6W
W2Vv7ThcZDwilkVHA+RRCCgjFqdDeL8Ymz/4tRc0WL8rcVzreQ3nOprxvCmpJB2Ool0MQ5GVugsLAAo3
bWmqFQylOeKpL1kRqLKyR41WJ0qmVtFyo7Ik4K5oq2mwqNsxemZpH3tBHxdmgQ8A33hxzt/81T5/8+eG
77zqsAcKs+g3MgHtV28wOhP8iiGv3BhP1Yv9AOGfwsUpX7z/Kf/d3z3h57+ELx4ETLTzl9ouSH088Qse
mV67Q86HfZ6u9zhbWXo3FCExxTQKQS2fHNZ0XEr87c2XHBIzi5rCL6ncVFUOQEIxl5qpl1mUGl6i1Agi
XWW5kb+UW4EF2MDPpdEc/lz2V3wy1/l6xhe8hKLMzIaFWSNdTxcVNwlCQ6N157hYK4cLPx8iORA9bt2d
VJeGMcX6PpcK5vRjsNl/G1rA15Ad+FwMIKlwQsHTIuWWtr/Eymhkn2QgzJgaUOwXoHHi8cBc3hK8sP1D
VZl8vRmlWKKKMTbQeijnVeTLHu5Z/vgHc/7TP+349isD+4shjID4BT4EsM+ph441BObbwAys9VD+4qan
7JOHrD99l7d/+Sk/+dWGDz/xkmWxCDZ/QKNtUBq8Www2eshZf8Ryu+BiO2MdinlkH7hU5eRGrj+BKuF+
F1GbiZJSOxDDaZ2jvS9Z7vV5jV0qNYO6061GkFJFSpOgaKy8P8n+xHAaw0OEwSlPV3uIucthd8FBt8GY
U6yo37koaF+u91rL4KDfKts+7+NoogZQyrcEjHomYaXYd0BMTlsPexCq9ViAdT7BbTB+K5AUOVhiAQQs
QOMOVcLQYgEFOqKIX0xKTkdM++4FbhWB6oErmT3sZADjQb7sukbj8YebvjR9aXY6HaH9jV3fKgtl+171
l5zGGx9RNHbjwPIn35/zL/5Q+d5rW16642B/CGmZElT/wQ9oKq8UJmAYgg4/g+4Q5ndg0/Psgyf85Mfv
8ZOffcK9h7AKVXtn82AhhL0+jARGoLA2wun2Bk+HF3m2ucNmOytMp7wQp4dOUmY2mgd8pKpL9Yepb2b6
9I7nKqMKH+n+MfcwRvLmmbGrOzQCCU27xMty56WI7kyPMFLt1pN+F/GawGaPx8sXmcmAquHW3lNfBSBY
dkZgwDOBVDdR82ukDMX0QzkgMpLK1akJKV19vZYWUJxsJfxlKke13q9/XL49OJArqfgaO7kCfrzUq0Yp
358cDxCV5xgPUNlw6R1b91KQ/kGT8MRe2lPRG+BnKVVLjbvKhv+76GZQxXbCd1+f8y//VPjhmwN3D/tQ
iFe9/tdLJnrnchRX2icrGPDdItSS72B5xjsfPuDvfvIp7364Yrn2YN8ihKV2nZc4xpDrnCpsdcZZf8DD
1V0er26y7f3iFWmWtNAsfkkMPp8NPuu29M7EOpGpz7ts/J3LwUxfWDDveKoEHHdrBDpmUlI/UaKJUJ4z
kdnnspleQgu9m/F0fRNreowZ2JufM7PbvIdhiL0wgXrjVuTiIr1LUlO9NyS/nH9aSZVVnh8SavL7cYh1
AQJ3Mb4KpmiJckerXhBTa3Mx/z9W1YirO76xDZ9d6kcIGHtOm2C3CbATONArr7u8LW0VgGnDPhLAVPsp
1EzT9/YR5ccb+8Kffk/5q99d843bit2XQPwS/lmS3wkKF0uco84T/uKm/239Adv7H3Pvs/f47IunPH7q
53ne5cwyExZcJ7mrg4BzHcvhgCfnh6zW3jiVhq4q9bb5LCVnIDphA1AkOVe/ZLYjoHAScmfnyct2rPMX
aMUE2lYu1QjilRPZydHkjHkC1TuJqRhfwhMcnG1mGLnBUXfKanvIgqdeE7N++mygS1XQHl/PJSR6pjWX
+LAkLGLyCLSnJe8SKmaYv+g4T2BSyhdawKVAQzMPX+K4/sYgRSSgEl9Y80lbSOwi5j+1E5NKiiJWJdpv
TNYESkygzA50pfZhxEt/9dfnar6C04wVLEzH91/v+Ce/P/D915aY/d5TaV/8c1F/iuW8NNeBFxN8eUew
OIbhBB7+jAcfvc2T+x9zdubR5Vmo3xfDUI14D2HYeMcj/8zY6D7LzR7rjZ3QMAOJV1SQrWNTEX6ciwDY
NZJ/imgniX9C3F+1oCL641QzI5fpNq7UCEbvUxBI6eaM0hmfpWdQXCw9Vry8AoMKF5sFp+sjnq0OMdpz
tHfG3Pm52YT4gm2vrDfCZg39RnHWeyek6LxoyVBDxJ6Qdw123gsQ1Twb7AoXd/gJtr0r/NuqEQuQtKt0
lO2xplbCAqIrOsUBhHoBKWcgvLttJi6lAwQtdses7mQAU7b4Vcfkpc4ViyMmCRXSu5I8WtsylSQPv7dx
AK1CUmrDAt//tuFv/iPlD7+7xhxsYNGHDfOGQPwGn7obWX7MCHGZgjsD833ojmF1wtPP7/PuBx/y4KHS
9yEi2GZfvxGvNET+YcRXujl3h5z1t1i7w7zdeOupKQjJtCdGY12jI9OqvRdN4jRzAJmYqQS7k0C9Gh1s
1Kr4GG2vi8BerS9OaQS6oxtSBiFEoSKx4bi/bthJWgyjfSDV51c8Wx+xP7uJoWfRbZh1Gx8lGHi8DL7o
6Kr3QVuLARgcBhcEVcGWIkhQhAK09n0WijW+JdWHqcnU+qKRFtCqDV/fcQ0vQPKFxOkrRmE63z9KK99n
OznRZfWfcnGlyihKRc3ePZTKtfrvdRVPf95K0gpeuS38F//E8V//x0tu3+y9judsCPGN4F/4GzecEAsS
tu2SaMTPMox/PvCbD9a8/Y7yyX2fgx6l/iyomaZw+9mwljfDgrP+DqfDHS76fd9WCPmdUvm95MnaklSM
Qkc0Xn1uYBWBBlmcXkyy80NDYIXKXwv+xDaKrbOZ1Ag8os9kQc24Iowh7ZaVmYAJ82/yE0VG7QwqnK6O
gok0cHNxzn63oVPvnYml+/qtstzAxcqnaOfAKs1p1wEY1EAKCqFQasYC0n6/JtjhLu6wGqsbhAaC5Fbn
wkamsR1bUlExFiXmlesFuOAaNoEb1cbQrkCl8VhfHtJ09f2XX15JgQkEuW3PyeT5EYC04/ZYrEaB40Ph
j75n+evf23D7dg8HWz84vfiiHj0wKM4pTnuULSnzR/tQv8340l7dofcEXDzg2f37vP/xkg8+8wE/4K2d
WeQXImk/yShDDKDasdoecrK+zWp9gFOTFm/+R1pspoH7FPWEtyN7b9q2l1y0V+pHlQsgWXfStDXiMpVx
nC6SED5cthXxCqF+YM3uMwAa24gXpR35KkVJJ19U8OPeHhsMp+tDTtc3OO/9/gm9eh4f6nr4NI+tlwOu
fP8J0qiYXcFwxkpSq91eg3T0qpN6xS1fph7QlwkESgym3gU42f7lNt+ak6Y81yRw0BwfYIrrXXleA1cM
trxJUYKhtmCQ/rlSkLfPFLhxKPz1Dzv+5s8G3nhJQ0GPrtAYQoDPEINLeo/FiCLWhvVqwATgr7sJ5yes
733E+++8w2effs7jZz733ATvoJn7GPMYGOlV2Uw2W1VO+wVPzg5ZbuvFlZZzirUpCcbb2dX6rta/Ie/L
U0zJBGCftFgduxpTcxURtLF340aTyh51kwlbZkojmNQtZHxC0BTL4S2LoFpqyZBipwvTIfzcq+V8s8fp
+piZbLmxd07XDXQSTHfJXpqkYJRhvHFow6OSxiahIpUpsICQS+xXWIiEEX9TxAI0lgBKWECw+WNcQIgb
SOCgzV4K/z3GAfhaglm4hmzA0oN9jeM5koF2fJ64RndcNMr2K7+3OQBccu3UEdi3CHzrFcM/+0PH7397
w9H+NqPUfQBNNJoJQZ3Fg0lCsJVRb8TbDhYh4efxp3z60S95/73f8PDBiuXKS4155y/tgkomkmGEevOX
GWcXC87WwjYSYCGpiw1nwivHfjQaflyBIzU9hO5qDJ6Wgly1uvJ5rEnJ1DuaWc9QpIgeBIJtH42XWvUv
7XlNDCSGNQM+5LfZqzzGDGhJgBU6XbxfwwRUha074MnFXUSUeTdwoztHAvbbdTlQy4QMwghERldlbacF
0yCudWnGs/ECxICnkfMvvq/kGIh6XtttWkcXjH7JX67hOgjH1QzAEAioYS3xRcOOOrEHJfiYO6VYl1H6
jAtkiV9t5BFewMf1BEopIga1sf01SAkFbh50fO8bhj9884xv3FmxOAiZIIMUVXwDa63CpaLSGTwYnfpL
ZhZEuThd8fGnT/n40xUnpyE2qPOKRWcC2GeyDZfSxh0Malhv99j0C3o1SfruANCnQboRWti0EQAoMZOw
oO+LPh/xp1akIeCyE5HZxZaLyFdPt3WRsMqZF8uES41q+NNjZEQS9uCrUOf4EE+oGSuomcBa5zxd3mA2
W3NzdsbR3rkv9CTee7M3h8XcF3tOGHAwX9L7SjTlAqgaa1Y6FzZgjes53u5y94povRh/YDpAB5wrdgcq
qvnYoCE4yciAaMCUKPLUovoyNAvDXY8JXM4ArrRLSpRTd7dR9GNKM9mxsUr6oBGAmTz8QlDjpeOLtzt+
9ztbXrq75ubti7BJpwmEb1PdZ1X8piGCl/4aDJBQpinlhro19MqzZ0s+u7/i3mM4X/vFY03Y/Cc8WwqJ
HbWBrTOstn777q2blUB7NEYao1jLNV1YuYVjL6rTrfSp7OPRDxOjO9K5i1uyRuVt7DB/YTJq46AoEB/F
XvLOSRXR5wuEFnBXyQyT0JAJJhCuEs17ISTxuoMJhMW1HQxn7NMtj3lx7xHDYOnMgITszFikdT4D11uM
9TsDVaNT8JSRIFZALUIfgL0sJN3gQUEVTRmcoOiQw6FbT0oZ6VgTQzuNk6GEPM/xpbcHryP8apvOT3iB
8qcSgeFKlz/7gAxNnMyExX617W+L8/7znRvwx28N/PD1Jbf2L2B/7Z+zCbWh3IDP+8TXYMP4bMMAOomE
qD+7533+3RxWJ/DsjHv3PuPegyWPT7zLqAsWghW8HZfiHIYABvrh2bg9LrbHLPtj0M7vOhuJt6x/FyyT
GssqEhniGpHya6FDJCm62/iTiU8lixnjXpKyEHMMvzBQcOTQvYzflk/RRIxSAcKlPlFrFWMVv+xvWD+i
ISbC1Ds/t0yAYO05ZUPHqj/gYjhiuT2D2Sn7XU7QgpwGIgFXmeBl2cxNoJYNTNHXibTiPWSD5gSp9Ff9
/8QpvppA0DkLeih5uKvAnLij0jjzEkIy62jc2M08wvGlGcDz85rrtRklfjpRmBKT7xbUTSPw1muO//RP
nvKdF5YcLragQ0jwIdj+BuccEkKKlI60wYnBl+DqbCjdewdkDo8/4/MP3+HjDz7m3sMzzpcZ6zRGfEYc
HlM0hb0u4h+7dnPOhhtcDDdxZu5PFgVJG+Mt3AypgH4Skdo4C6RY9Pm26vvIPm2IrannURYfHRNh6lgz